diff --git a/README.md b/README.md index 3900ceb..cfd5dcf 100644 --- a/README.md +++ b/README.md @@ -1,42 +1,40 @@ # User Engagement Project -Your final project for the class will incorporate deeper user engegement. The project should build upon many of the concepts learned throughout the class, incorporate some significant amount of interactivity, and storing and recalling data in a way that multiple users of the application can benefit from. _The focus of this project will be on engagement -- i.e. inviting members of the public to create or add to a dataset in some way._ +by Frank Chen -For this project you may extend your story map or your dashboard, as long as you have some realistic addition of functionality that allows for user engagement. You may also start a new project. +## Project Description +Welcome to **Retail Insights**, an interactive web platform designed to visualize and analyze critical trends in local economies and consumer behavior over the past five years. By mapping income changes, customer numbers, median spending, and dwell time in stores, our tool provides valuable insights for **small business owners**, **urban planners**, **researchers**, and **engaged consumers**. -## Timeline +What sets Retail Insights apart is its community-driven approach—users can actively contribute their own spending habits and in-store experiences, enriching the dataset and fostering a collaborative environment. This project not only empowers businesses and policymakers with data-driven decision-making capabilities but also enhances consumer awareness and participation in shaping their local economic landscape. -- This project will take us through the end of the semester on **December 4**, when we will have project presentations. -- To help you with your timeline, here are some milestones: - - **October 30**: Project proposal due - - **November 6**: Initial wireframes due - - **November 20**: Plan for completion - - **December 4**: Project presentations +Join us in building a comprehensive, real-time picture of our community’s economic health and consumer dynamics through your valuable contributions. -## Instructions +## Data Sources -Fork this repository, and add your project code to it. When you are ready to submit your project, refer to the Submission Checklist below. +I use two data sets from Dewey, a big data platform which is accessible to all PennID holders. I use API to acquire the data of July of each year, and the total size would be hundreds of gigabytes. The two data sets are: -## Project Proposal +1. [ADVAN monthly foot traffic data](https://app.deweydata.io/products/5acc9f39-1ca6-4535-b3ff-38f6b9baf85e/package). It includes aggregated raw counts of visits to POIs from a panel of mobile devices over a given month, detailing how often people visit, how long they stay, where they came from, where else they go, and more. -You proposal doesn't have to be deep. It should: -1. Make clear who the user of your project is. This should be more specific that "the general public". Refer to the [18F Method Card on Personas](https://guides.18f.gov/methods/decide/personas/) or the Digtal.gov article on [Improving Customer Experience with Digital Personas](https://digital.gov/2017/06/20/improving-customer-experience-with-digital-personas/). -2. Describe what you'll be doing in your tool to meet your user's needs. -3. Describe any datasets that you will be working with, including any data that users will put in. +2. [SafeGraph monthly spend patterns data](https://app.deweydata.io/products/eb6e748a-0fdd-4bc7-9dd7-bbed0890948d/package). It includes aggregated, anonymized credit and debit transaction data associated to specific POIs, including median spend per day, median spend per customer, and other detailed statistics, as well as where else consumers spend money and the breakdown of online/offline spending. -## Initial Wireframes +The two data sets can be joined by a shared column called PlaceKey, which is the unique and persistent ID tied to a POI. -Use wireframes to show what your project or your new feature will look like. You can use any tool you like to create these wireframes. +The images are from [Visit Philadelphia](https://www.visitphilly.com/). -## Plan for Completion +## How to Use -Describe what you will need to do to complete your project. This should include a list of tasks that you will need to complete, and a timeline for when you will complete them. I suggest using a tool like GitHub Projects to list out and manage your tasks/issues. +Upon visiting the website, you'll encounter an introduction page. Scroll down to learn more, and click the button to navigate to the dashboard. -## Submission Checklist +### Dashboard Features -- [ ] Pushed latest code to the `main` branch of your repository -- [ ] Linted JS and CSS code -- [ ] Turned on GitHub Pages for the repository and verified that your site works when deployed -- [ ] Submitted a pull request to the original repository in the class organization -- [ ] In the PR **title**, included your name at least -- [ ] In the PR **description**, included a brief description of your topic, and your target audience \ No newline at end of file +- **Interactive Map:** The dashboard displays a map with Points of Interest (POIs) marked. +- **Year Selection:** Use the dropdown in the top-left corner to select a specific year and visualize data for that period. +- **Selecting POIs:** + - **Map Click:** Click directly on a POI marker on the map. + - **Search Bar:** Alternatively, search for a POI by name using the search bar at the top. +- **POI Details:** Once a POI is selected, detailed information will appear on the right side of the map. +- **Data Trends:** Below the map and detailed information, you can view the trend data for the selected POI over the past five years. + +### Contribute to the Project + +We welcome your contributions! Click the red **"TAKE SURVEY"** button at the top of the page to participate. By completing the survey, you can share your spending habits and in-store time. Your responses will be added to our dataset and visualized on the map, helping to enhance the project. \ No newline at end of file diff --git a/assets/css/dashboard.css b/assets/css/dashboard.css new file mode 100644 index 0000000..ad268d5 --- /dev/null +++ b/assets/css/dashboard.css @@ -0,0 +1,284 @@ +/* Global Styles */ +*, *::before, *::after { + box-sizing: border-box; +} + +body { + margin: 0; + height: 100vh; + font-family: Lato, sans-serif; + display: flex; + flex-direction: column; +} + +/* Navbar Styles */ +nav { + width: 100%; +} + +.navbar { + display: flex; + justify-content: flex-start; + align-items: center; + background-color: #333; + padding: 0; + margin: 0; + list-style: none; +} + +.navbar li { + margin: 0; +} + +.navbar li a { + display: block; + padding: 14px 20px; + color: white; + text-decoration: none; +} + +.navbar li a:hover { + background-color: #111; +} + +/* Controls Styles */ +.controls { + display: flex; + align-items: center; + padding: 20px; + gap: 20px; /* Use gap for spacing between elements */ +} + +.controls select { + padding: 8px; + font-size: 16px; +} + +.search-container { + position: relative; + width: 300px; +} + +#search-input { + width: 100%; + padding: 8px; + font-size: 16px; +} + +.suggestions { + list-style-type: none; + margin: 0; + padding: 0; + border: 1px solid #ccc; + border-top: none; + max-height: 200px; + overflow-y: auto; + background-color: white; + position: absolute; + width: 100%; + z-index: 1000; +} + +.suggestions li { + padding: 8px; + cursor: pointer; +} + +.suggestions li:hover { + background-color: #f0f0f0; +} + +/* Map and Info Box */ +.map-info-container { + display: flex; + flex: 1; + min-height: 600px; /* Optional: Set a minimum height */ +} + +.map-container { + width: 65%; + height: 100%; /* Ensures it takes full height of the container */ + position: relative; +} + +#map { + width: 100%; + height: 100%; +} + +.info-box { + width: 35%; + padding: 20px; + flex: 1; + border: 1px solid #ccc; + background-color: #f9f9f9; + max-height: 100%; + box-sizing: border-box; +} + +.info-box h2 { + text-align: center; + margin-bottom: 20px; +} + +#info-table { + width: 100%; + border-collapse: collapse; +} + +#info-table th, #info-table td { + border: 1px solid #ddd; + padding: 8px; +} + +#info-table th { + background-color: #f2f2f2; + text-align: left; +} + +#info-table tr:nth-child(even) { + background-color: #f9f9f9; +} + +#info-table tr:hover { + background-color: #ddd; +} + +/* Chart Grid */ +.chart-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 20px; + padding: 20px; +} + +.chart-item { + border: 1px solid #ccc; + padding: 10px; + background-color: #f9f9f9; + min-height: 300px; /* Ensure enough space for charts */ + position: relative; /* To position SVGs correctly */ + display: flex; + align-items: center; + justify-content: center; +} + +.chart-item svg { + width: 100%; + height: 100%; +} + +/* Tooltip styling */ +.tooltip { + position: absolute; + text-align: center; + padding: 6px; + font: 12px sans-serif; + background: rgb(0 0 0 / 70%); + color: #fff; + border: 0; + border-radius: 4px; + pointer-events: none; + z-index: 10; +} + + +/* Legend Styles */ +.legend-box { + position: absolute; + bottom: 20px; + right: 20px; + background-color: white; + border: 1px solid gray; + padding: 10px; + z-index: 1000; + box-shadow: 0 0 10px rgb(0 0 0 / 10%); + font-size: 1em; + width: 180px; +} + +.legend-item { + display: flex; + justify-content: space-between; + align-items: center; + padding: 5px; + margin-bottom: 3px; + background-color: rgb(255 255 255 / 80%); + color: gray; +} + +.legend-color { + width: 20px; + height: 20px; + margin-right: 10px; + background-color: gray; /* default color */ +} + +.legend-item.highlight { + color: black; + font-weight: bold; +} + +.legend-title { + font-size: 1.02rem; + font-weight: 300; + margin-bottom: 0.5rem; + text-align: left; +} + +/* Popup Window */ +.popup { + display: flex; + position: fixed; + top: 20%; + left: 50%; + transform: translate(-50%, -20%); + width: 300px; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 8px; + box-shadow: 0 4px 6px rgb(0 0 0 / 10%); + z-index: 2000; + padding: 20px; + flex-direction: column; +} + +.popup.hidden { + display: none; +} + +.popup-content h3 { + margin-top: 0; + text-align: center; +} + +.popup-content label { + margin: 8px 0 4px; + font-weight: bold; +} + +.popup-content input { + padding: 8px; + width: 100%; + margin-bottom: 10px; + border: 1px solid #ccc; + border-radius: 4px; +} + +.popup-content button { + padding: 8px; + cursor: pointer; +} + +#survey-button { + background-color: #ff6f61; + color: #fff; + font-size: 1.2em; + font-weight: bold; + padding: 12px 20px; + border: none; + box-shadow: 0 4px 6px rgb(0 0 0 / 20%); + text-transform: uppercase; + cursor: pointer; + transition: all 0.3s ease; +} \ No newline at end of file diff --git a/assets/css/index.css b/assets/css/index.css new file mode 100644 index 0000000..a7f1db2 --- /dev/null +++ b/assets/css/index.css @@ -0,0 +1,246 @@ +/* Resetting margin and padding to remove white border */ +html, body { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +#intro { + background: url('../image/background.jpg') no-repeat center center/cover; +} + +#intro h2 { + color: #fff !important; + font-size: 10em !important; + padding: all 20%; +} + +#one { + background: url('../image/intro-background.png') no-repeat center center/cover; +} + +#one h2 { + color: #fff !important; + font-size: 3em !important; +} + +#one h3 { + color: #fff !important; + font-size: 1.5em !important; + font-weight: bold; +} + +#one h4 { + color: #fff !important; + font-size: 1.2em !important; + font-weight: normal; +} + +#one p { + color: #fff !important; + font-size: 1em !important; + padding-left: 20%; + padding-right: 20%; +} + + +/* Main Content Sections */ +#main-content { + margin-left: 0; + height: 100vh; + transition: margin-left 0.3s ease-in-out; + + scroll-snap-type: y mandatory; + padding: 0; +} + +/* Individual Section Styling */ +#main-content section { + height: 100vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin: 0; + padding: 0; + box-sizing: border-box; + transition: all 0.3s ease-in-out; + background-color: #fff; + + scroll-snap-type: y mandatory; + overflow-y: hidden; + font-family: Roboto, sans-serif; +} + +#main-content section h2 { + color: #0A9CA8; + font-size: 2em; + margin-bottom: 1em; + font-weight: bold; + transition: color 0.3s ease; +} + +#main-content section p { + color: #333; + line-height: 1.6em; + font-size: 1.1em; + margin-left: 5em; + margin-right: 5em; + transition: color 0.3s ease; +} + +#main-content section a { + color: #fff; + text-decoration: none; + transition: color 0.2s ease; +} + +/* Sidebar Toggle Button */ +#sidebar-toggle { + background-color: rgb(0 0 0 / 20%); + color: #fff; + border: none; + width: 40px; + height: 40px; + border-radius: 5px; + font-size: 1.5em; + font-weight: bold; + cursor: pointer; + transition: background-color 0.3s ease, transform 0.3s ease; + box-shadow: 0 4px 8px rgb(0 0 0 / 10%); + z-index: 1100; +} + +/* Hover Effect for Toggle Button */ +#sidebar-toggle:hover { + transform: scale(1.05); +} + +/* Sidebar Navigation */ +#sidebar { + position: fixed; + width: 20vw; + height: 100vh; + background: rgb(250 250 250 / 5%); + backdrop-filter: blur(5px); + color: #fff; + box-sizing: border-box; + transition: transform 0.3s ease-in-out; + z-index: 1000; + font-family: Roboto, sans-serif; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + box-shadow: 0 4px 8px rgb(0 0 0 / 10%); + transform: translateX(-100%); /* Initially hide the sidebar */ +} + +#sidebar.open { + transform: translateX(0); /* Sidebar visible when open */ +} + +#sidebar .inner { + width: 80%; + text-align: right; +} + +#sidebar nav ul { + list-style: none; + padding: 0; + margin: 0; + position: relative; +} + +#sidebar nav ul li { + margin: 1.5em 0; + position: relative; +} + +#sidebar nav ul li a { + color: rgb(255 255 255 / 60%); + text-decoration: none; + font-size: 1.1em; + letter-spacing: 0.05em; + transition: color 0.2s ease-in-out, font-weight 0.3s ease-in-out; + display: block; + padding-bottom: 5px; + position: relative; /* To position the pseudo-element correctly */ +} + +#sidebar nav ul li a:hover { + color: #fff; +} + +/* Default Persistent Horizontal Line for Each Link */ +#sidebar nav ul li a::after { + content: ''; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 2px; + background: linear-gradient(to right, #e4e4e4, #fafafa); /* Default gradient for inactive links */ + opacity: 1; + transition: background 0.3s ease-in-out; /* Smooth transition for background change */ +} + +/* Active Link Styling */ +#sidebar nav ul li a.active-link { + color: #fff; /* Change text color to white */ + opacity: 1; + font-weight: bold; +} + +#sidebar nav ul li a.active-link::after { + animation: lineInFromRight 0.5s forwards; + background: linear-gradient(to right, #e4e4e4, #FFD300); /* Gradient color for active link */ +} + +/* Keyframes for Line Animations */ + +@keyframes line-in-from-right { + 0% { + width: 0; + left: 100%; + } + + 100% { + width: 100%; + left: 0; + } +} + +/* Styling for Rectangle Areas */ +.rectangle-area { + width: 60vw; + display: flex; + justify-content: space-around; + flex-direction: column; + overflow: hidden; +} + +.rectangle { + width: 80%; + margin: 3em auto; + padding: 1%; + height: 60%; + background: rgb(255 255 255 / 20%); + backdrop-filter: blur(5px); + box-shadow: 0 4px 8px rgb(0 0 0 / 10%); + border-radius: 10px; + transition: transform 0.3s ease, box-shadow 0.3s ease; + text-align: center; +} + + + +.rectangle:hover { + transform: translateY(-10px); + box-shadow: 0 8px 16px rgb(0 0 0 20%); +} + + + + + diff --git a/assets/data/data.geojson b/assets/data/data.geojson new file mode 100644 index 0000000..71fe292 --- /dev/null +++ b/assets/data/data.geojson @@ -0,0 +1,16857 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-qzz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993907, "LONGITUDE": -75.096856, "DATE_RANGE_START": 2019, "Total Visits": 738.0, "Total Visitors": 663.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 110.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.63, "MEDIAN_SPEND_PER_CUSTOMER": 14.61 }, "geometry": { "type": "Point", "coordinates": [ -75.096856, 39.993907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-225@628-pjf-j7q", "LOCATION_NAME": "All The Way Live", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075711, "LONGITUDE": -75.205375, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 80.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 322.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.65, "MEDIAN_SPEND_PER_CUSTOMER": 47.28 }, "geometry": { "type": "Point", "coordinates": [ -75.205375, 40.075711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22d@628-pmf-n5z", "LOCATION_NAME": "Jake & Max's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954579, "LONGITUDE": -75.168468, "DATE_RANGE_START": 2019, "Total Visits": 13123.0, "Total Visitors": 4982.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 344.0, "Total Spend": 53.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 9.17 }, "geometry": { "type": "Point", "coordinates": [ -75.168468, 39.954579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 188.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 9895.0, "Total Transactions": 746.0, "Total Customers": 555.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2019, "Total Visits": 1134.0, "Total Visitors": 758.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4647.0, "Total Transactions": 858.0, "Total Customers": 451.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.21, "MEDIAN_SPEND_PER_CUSTOMER": 6.77 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024672, "LONGITUDE": -75.147508, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 120.0, "POI_CBG": 421010283003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3034.0, "Total Transactions": 540.0, "Total Customers": 278.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.62, "MEDIAN_SPEND_PER_CUSTOMER": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.147508, 40.024672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-y5f", "LOCATION_NAME": "Southside Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940448, "LONGITUDE": -75.17585, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 57.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.02, "MEDIAN_SPEND_PER_CUSTOMER": 17.02 }, "geometry": { "type": "Point", "coordinates": [ -75.17585, 39.940448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "LOCATION_NAME": "Ibis Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 32.0, "POI_CBG": 421010113002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1315.0, "Total Transactions": 70.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.36, "MEDIAN_SPEND_PER_CUSTOMER": 16.92 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2019, "Total Visits": 1421.0, "Total Visitors": 1048.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 944.0, "Total Transactions": 33.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.33, "MEDIAN_SPEND_PER_CUSTOMER": 37.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "LOCATION_NAME": "A& A Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2019, "Total Visits": 118.0, "Total Visitors": 75.0, "POI_CBG": 421010093001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1914.0, "Total Transactions": 150.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.03, "MEDIAN_SPEND_PER_CUSTOMER": 13.85 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039629, "LONGITUDE": -75.109938, "DATE_RANGE_START": 2019, "Total Visits": 1218.0, "Total Visitors": 1028.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11394.0, "Total Transactions": 501.0, "Total Customers": 378.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.37 }, "geometry": { "type": "Point", "coordinates": [ -75.109938, 40.039629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-gzf", "LOCATION_NAME": "AnM Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.023031, "LONGITUDE": -75.134802, "DATE_RANGE_START": 2019, "Total Visits": 421.0, "Total Visitors": 396.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2729.0, "Total Transactions": 198.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134802, 40.023031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p7x-6tv", "LOCATION_NAME": "Artifax", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.046392, "LONGITUDE": -75.058077, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 80.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 10.0, "Total Spend": 10327.0, "Total Transactions": 268.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.71, "MEDIAN_SPEND_PER_CUSTOMER": 32.25 }, "geometry": { "type": "Point", "coordinates": [ -75.058077, 40.046392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-68v", "LOCATION_NAME": "Winkel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947806, "LONGITUDE": -75.160351, "DATE_RANGE_START": 2019, "Total Visits": 1369.0, "Total Visitors": 949.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 105.0, "Total Spend": 76.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.9, "MEDIAN_SPEND_PER_CUSTOMER": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160351, 39.947806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgg-9xq", "LOCATION_NAME": "Boss Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.003922, "LONGITUDE": -75.168399, "DATE_RANGE_START": 2019, "Total Visits": 358.0, "Total Visitors": 225.0, "POI_CBG": 421010171003.0, "MEDIAN_DWELL": 55.0, "Total Spend": 546.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.0, "MEDIAN_SPEND_PER_CUSTOMER": 114.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168399, 40.003922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25q-222@628-pm9-tn5", "LOCATION_NAME": "Superhots By George", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948564, "LONGITUDE": -75.153931, "DATE_RANGE_START": 2019, "Total Visits": 5045.0, "Total Visitors": 3227.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 99.0, "Total Spend": 11689.0, "Total Transactions": 796.0, "Total Customers": 706.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.3, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153931, 39.948564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032503, "LONGITUDE": -75.08527, "DATE_RANGE_START": 2019, "Total Visits": 2842.0, "Total Visitors": 1981.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 575.0, "Total Transactions": 33.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.34, "MEDIAN_SPEND_PER_CUSTOMER": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.08527, 40.032503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.916033, "LONGITUDE": -75.188037, "DATE_RANGE_START": 2019, "Total Visits": 3573.0, "Total Visitors": 2532.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 55377.0, "Total Transactions": 456.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.62, "MEDIAN_SPEND_PER_CUSTOMER": 99.19 }, "geometry": { "type": "Point", "coordinates": [ -75.188037, 39.916033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2019, "Total Visits": 818.0, "Total Visitors": 636.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 715.0, "Total Transactions": 75.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-75z", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952267, "LONGITUDE": -75.166533, "DATE_RANGE_START": 2019, "Total Visits": 2335.0, "Total Visitors": 1111.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 164.0, "Total Spend": 5833.0, "Total Transactions": 455.0, "Total Customers": 405.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.37, "MEDIAN_SPEND_PER_CUSTOMER": 10.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166533, 39.952267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-435", "LOCATION_NAME": "State Liquor Stores", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.920248, "LONGITUDE": -75.188384, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 628.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 429.0, "Total Transactions": 22.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.188384, 39.920248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2019, "Total Visits": 741.0, "Total Visitors": 556.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4782.0, "Total Transactions": 182.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.89, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "LOCATION_NAME": "Jini Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.085837, "LONGITUDE": -74.962154, "DATE_RANGE_START": 2019, "Total Visits": 350.0, "Total Visitors": 290.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 937.0, "Total Transactions": 35.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.33, "MEDIAN_SPEND_PER_CUSTOMER": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -74.962154, 40.085837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8m-snq", "LOCATION_NAME": "Station Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.022297, "LONGITUDE": -75.077816, "DATE_RANGE_START": 2019, "Total Visits": 2032.0, "Total Visitors": 1264.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 19.0, "Total Spend": 3554.0, "Total Transactions": 100.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.1, "MEDIAN_SPEND_PER_CUSTOMER": 28.85 }, "geometry": { "type": "Point", "coordinates": [ -75.077816, 40.022297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnt-435", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.974417, "LONGITUDE": -75.121241, "DATE_RANGE_START": 2019, "Total Visits": 1124.0, "Total Visitors": 944.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5458.0, "Total Transactions": 85.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.42, "MEDIAN_SPEND_PER_CUSTOMER": 49.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121241, 39.974417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.930175, "LONGITUDE": -75.144763, "DATE_RANGE_START": 2019, "Total Visits": 3100.0, "Total Visitors": 2670.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 9714.0, "Total Transactions": 275.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 22.45 }, "geometry": { "type": "Point", "coordinates": [ -75.144763, 39.930175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.918005, "LONGITUDE": -75.188849, "DATE_RANGE_START": 2019, "Total Visits": 711.0, "Total Visitors": 535.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 12367.0, "Total Transactions": 253.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.23, "MEDIAN_SPEND_PER_CUSTOMER": 45.85 }, "geometry": { "type": "Point", "coordinates": [ -75.188849, 39.918005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2019, "Total Visits": 2422.0, "Total Visitors": 1677.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 351.0, "Total Spend": 15658.0, "Total Transactions": 98.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 107.19, "MEDIAN_SPEND_PER_CUSTOMER": 104.85 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "LOCATION_NAME": "Chillin Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 85.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1536.0, "Total Transactions": 93.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.69, "MEDIAN_SPEND_PER_CUSTOMER": 15.76 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp5-7qz", "LOCATION_NAME": "Sidekicks Sports Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.983939, "LONGITUDE": -75.136124, "DATE_RANGE_START": 2019, "Total Visits": 188.0, "Total Visitors": 70.0, "POI_CBG": 421010162003.0, "MEDIAN_DWELL": 123.0, "Total Spend": 227.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.5, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136124, 39.983939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmb-6x5", "LOCATION_NAME": "Mission Taqueria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950235, "LONGITUDE": -75.166639, "DATE_RANGE_START": 2019, "Total Visits": 506.0, "Total Visitors": 443.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1800.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.81, "MEDIAN_SPEND_PER_CUSTOMER": 50.26 }, "geometry": { "type": "Point", "coordinates": [ -75.166639, 39.950235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-649", "LOCATION_NAME": "The Barn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948417, "LONGITUDE": -75.22137, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 150.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 29.0, "Total Spend": 7641.0, "Total Transactions": 363.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.15 }, "geometry": { "type": "Point", "coordinates": [ -75.22137, 39.948417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "LOCATION_NAME": "King Wok Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 203.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 124.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.44, "MEDIAN_SPEND_PER_CUSTOMER": 17.44 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pm8-kxq", "LOCATION_NAME": "Victory Beer Hall", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.904214, "LONGITUDE": -75.169344, "DATE_RANGE_START": 2019, "Total Visits": 7226.0, "Total Visitors": 5990.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 66.0, "Total Spend": 20734.0, "Total Transactions": 845.0, "Total Customers": 656.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.6, "MEDIAN_SPEND_PER_CUSTOMER": 21.08 }, "geometry": { "type": "Point", "coordinates": [ -75.169344, 39.904214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "LOCATION_NAME": "City Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2019, "Total Visits": 836.0, "Total Visitors": 545.0, "POI_CBG": 421010042013.0, "MEDIAN_DWELL": 57.0, "Total Spend": 367.0, "Total Transactions": 23.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.75, "MEDIAN_SPEND_PER_CUSTOMER": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5zz", "LOCATION_NAME": "Top Tomato Pizza Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948971, "LONGITUDE": -75.159389, "DATE_RANGE_START": 2019, "Total Visits": 368.0, "Total Visitors": 227.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 147.0, "Total Spend": 4777.0, "Total Transactions": 273.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.89, "MEDIAN_SPEND_PER_CUSTOMER": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.159389, 39.948971 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-cqz", "LOCATION_NAME": "Pita Chip", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977951, "LONGITUDE": -75.158444, "DATE_RANGE_START": 2019, "Total Visits": 1729.0, "Total Visitors": 1453.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 57.0, "Total Spend": 3781.0, "Total Transactions": 386.0, "Total Customers": 338.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.37, "MEDIAN_SPEND_PER_CUSTOMER": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.158444, 39.977951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw4-rzf", "LOCATION_NAME": "La Tapenade Mediterranean Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.880653, "LONGITUDE": -75.238331, "DATE_RANGE_START": 2019, "Total Visits": 22481.0, "Total Visitors": 17362.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 7401.0, "Total Transactions": 315.0, "Total Customers": 283.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.38, "MEDIAN_SPEND_PER_CUSTOMER": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.238331, 39.880653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "LOCATION_NAME": "Ruth's Chris Steak House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952962, "LONGITUDE": -75.170263, "DATE_RANGE_START": 2019, "Total Visits": 4609.0, "Total Visitors": 2607.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 305.0, "Total Spend": 17831.0, "Total Transactions": 195.0, "Total Customers": 170.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.76, "MEDIAN_SPEND_PER_CUSTOMER": 73.63 }, "geometry": { "type": "Point", "coordinates": [ -75.170263, 39.952962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8m-x5z", "LOCATION_NAME": "Goody's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027482, "LONGITUDE": -75.061166, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 58.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 49.0, "Total Spend": 1748.0, "Total Transactions": 92.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.82, "MEDIAN_SPEND_PER_CUSTOMER": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -75.061166, 40.027482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9w-q4v", "LOCATION_NAME": "Cafe Michelangelo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.12143, "LONGITUDE": -75.016007, "DATE_RANGE_START": 2019, "Total Visits": 436.0, "Total Visitors": 343.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 10608.0, "Total Transactions": 158.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.51, "MEDIAN_SPEND_PER_CUSTOMER": 54.58 }, "geometry": { "type": "Point", "coordinates": [ -75.016007, 40.12143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "LOCATION_NAME": "Hatville Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2019, "Total Visits": 1796.0, "Total Visitors": 1687.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4289.0, "Total Transactions": 326.0, "Total Customers": 293.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.56, "MEDIAN_SPEND_PER_CUSTOMER": 12.11 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "LOCATION_NAME": "Wadsworth Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 58.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 273.0, "Total Spend": 2879.0, "Total Transactions": 175.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.61, "MEDIAN_SPEND_PER_CUSTOMER": 18.09 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "LOCATION_NAME": "Stock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 115.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 74238.0, "Total Transactions": 272.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 174.95, "MEDIAN_SPEND_PER_CUSTOMER": 223.95 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgj-cqz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977899, "LONGITUDE": -75.158476, "DATE_RANGE_START": 2019, "Total Visits": 1268.0, "Total Visitors": 1046.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 53.0, "Total Spend": 181.0, "Total Transactions": 15.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.12, "MEDIAN_SPEND_PER_CUSTOMER": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.158476, 39.977899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "LOCATION_NAME": "Soy Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2019, "Total Visits": 665.0, "Total Visitors": 485.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 168.0, "Total Spend": 2684.0, "Total Transactions": 188.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.69, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2019, "Total Visits": 325.0, "Total Visitors": 242.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8681.0, "Total Transactions": 1516.0, "Total Customers": 765.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.81, "MEDIAN_SPEND_PER_CUSTOMER": 7.31 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2019, "Total Visits": 2925.0, "Total Visitors": 2080.0, "POI_CBG": 421010085001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 11423.0, "Total Transactions": 1311.0, "Total Customers": 913.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.67, "MEDIAN_SPEND_PER_CUSTOMER": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00769, "LONGITUDE": -75.17457, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 75.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4935.0, "Total Transactions": 776.0, "Total Customers": 460.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.49, "MEDIAN_SPEND_PER_CUSTOMER": 7.42 }, "geometry": { "type": "Point", "coordinates": [ -75.17457, 40.00769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-tgk", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035436, "LONGITUDE": -75.099754, "DATE_RANGE_START": 2019, "Total Visits": 73.0, "Total Visitors": 62.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 16.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.78, "MEDIAN_SPEND_PER_CUSTOMER": 4.78 }, "geometry": { "type": "Point", "coordinates": [ -75.099754, 40.035436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-2zf", "LOCATION_NAME": "Helm", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971556, "LONGITUDE": -75.144508, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 8.0, "POI_CBG": 421010144001.0, "MEDIAN_DWELL": 131.0, "Total Spend": 972.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.88, "MEDIAN_SPEND_PER_CUSTOMER": 46.88 }, "geometry": { "type": "Point", "coordinates": [ -75.144508, 39.971556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pjf-t5f", "LOCATION_NAME": "The Foodery Chestnut Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069552, "LONGITUDE": -75.199381, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010257003.0, "MEDIAN_DWELL": 207.0, "Total Spend": 444.0, "Total Transactions": 38.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.1, "MEDIAN_SPEND_PER_CUSTOMER": 10.68 }, "geometry": { "type": "Point", "coordinates": [ -75.199381, 40.069552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pp2-85f", "LOCATION_NAME": "Tony's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985499, "LONGITUDE": -75.106228, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 23.0, "POI_CBG": 421010180021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1211.0, "Total Transactions": 92.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.78, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.106228, 39.985499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4003.0, "Total Transactions": 133.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.2, "MEDIAN_SPEND_PER_CUSTOMER": 27.85 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-vmk", "LOCATION_NAME": "E Frank Hopkins", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.906965, "LONGITUDE": -75.154623, "DATE_RANGE_START": 2019, "Total Visits": 496.0, "Total Visitors": 262.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 1691.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.88, "MEDIAN_SPEND_PER_CUSTOMER": 141.13 }, "geometry": { "type": "Point", "coordinates": [ -75.154623, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-n89", "LOCATION_NAME": "House of Grub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967901, "LONGITUDE": -75.127452, "DATE_RANGE_START": 2019, "Total Visits": 2389.0, "Total Visitors": 1854.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 195.0, "Total Spend": 966.0, "Total Transactions": 138.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 18.82 }, "geometry": { "type": "Point", "coordinates": [ -75.127452, 39.967901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-d35", "LOCATION_NAME": "Thomas'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970627, "LONGITUDE": -75.128561, "DATE_RANGE_START": 2019, "Total Visits": 343.0, "Total Visitors": 253.0, "POI_CBG": 421010143002.0, "MEDIAN_DWELL": 79.0, "Total Spend": 1806.0, "Total Transactions": 27.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.17, "MEDIAN_SPEND_PER_CUSTOMER": 34.17 }, "geometry": { "type": "Point", "coordinates": [ -75.128561, 39.970627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-nwk", "LOCATION_NAME": "La Casa Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005788, "LONGITUDE": -75.102968, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 145.0, "POI_CBG": 421010190001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 779.0, "Total Transactions": 38.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.75, "MEDIAN_SPEND_PER_CUSTOMER": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102968, 40.005788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 42.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 60.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pnw-pjv", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969267, "LONGITUDE": -75.133945, "DATE_RANGE_START": 2019, "Total Visits": 720.0, "Total Visitors": 608.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 40.0, "Total Spend": 3713.0, "Total Transactions": 258.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.133945, 39.969267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958195, "LONGITUDE": -75.208247, "DATE_RANGE_START": 2019, "Total Visits": 613.0, "Total Visitors": 475.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5023.0, "Total Transactions": 904.0, "Total Customers": 513.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.89, "MEDIAN_SPEND_PER_CUSTOMER": 6.47 }, "geometry": { "type": "Point", "coordinates": [ -75.208247, 39.958195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p7w-gc5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.072485, "LONGITUDE": -75.075778, "DATE_RANGE_START": 2019, "Total Visits": 773.0, "Total Visitors": 560.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 489.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.13, "MEDIAN_SPEND_PER_CUSTOMER": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.075778, 40.072485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940142, "LONGITUDE": -75.151529, "DATE_RANGE_START": 2019, "Total Visits": 313.0, "Total Visitors": 173.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 11821.0, "Total Transactions": 718.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.99, "MEDIAN_SPEND_PER_CUSTOMER": 24.26 }, "geometry": { "type": "Point", "coordinates": [ -75.151529, 39.940142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pmb-ygk", "LOCATION_NAME": "Oishii Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953252, "LONGITUDE": -75.15618, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 90.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3876.0, "Total Transactions": 252.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.83, "MEDIAN_SPEND_PER_CUSTOMER": 13.24 }, "geometry": { "type": "Point", "coordinates": [ -75.15618, 39.953252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.084266, "LONGITUDE": -74.961834, "DATE_RANGE_START": 2019, "Total Visits": 981.0, "Total Visitors": 888.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 13795.0, "Total Transactions": 961.0, "Total Customers": 840.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -74.961834, 40.084266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034271, "LONGITUDE": -75.216406, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 267.0, "POI_CBG": 421010213002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2170.0, "Total Transactions": 248.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.216406, 40.034271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p8m-v2k", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.029763, "LONGITUDE": -75.058989, "DATE_RANGE_START": 2019, "Total Visits": 515.0, "Total Visitors": 396.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 56.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 5.38 }, "geometry": { "type": "Point", "coordinates": [ -75.058989, 40.029763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pgb-tsq", "LOCATION_NAME": "Spring Garden Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.962555, "LONGITUDE": -75.157889, "DATE_RANGE_START": 2019, "Total Visits": 556.0, "Total Visitors": 430.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 165.0, "Total Spend": 5811.0, "Total Transactions": 203.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.157889, 39.962555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "LOCATION_NAME": "Beck's Cajun Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 9242.0, "Total Transactions": 658.0, "Total Customers": 570.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "LOCATION_NAME": "Pizzeria Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 42.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 572.0, "Total Spend": 1417.0, "Total Transactions": 68.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.57, "MEDIAN_SPEND_PER_CUSTOMER": 22.94 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027472, "LONGITUDE": -75.209408, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 20440.0, "Total Transactions": 850.0, "Total Customers": 601.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.48, "MEDIAN_SPEND_PER_CUSTOMER": 25.46 }, "geometry": { "type": "Point", "coordinates": [ -75.209408, 40.027472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg4-2rk", "LOCATION_NAME": "Maker artisan pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032925, "LONGITUDE": -75.168806, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010246001.0, "MEDIAN_DWELL": 568.0, "Total Spend": 1351.0, "Total Transactions": 100.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.79, "MEDIAN_SPEND_PER_CUSTOMER": 15.57 }, "geometry": { "type": "Point", "coordinates": [ -75.168806, 40.032925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-sdv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915109, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2019, "Total Visits": 596.0, "Total Visitors": 511.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 281.0, "Total Transactions": 23.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.37, "MEDIAN_SPEND_PER_CUSTOMER": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.915109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-ph6-gkz", "LOCATION_NAME": "Habeeb's Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.98437, "LONGITUDE": -75.230985, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": null, "Total Spend": 601.0, "Total Transactions": 67.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.37, "MEDIAN_SPEND_PER_CUSTOMER": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.230985, 39.98437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2019, "Total Visits": 976.0, "Total Visitors": 781.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 14082.0, "Total Transactions": 1601.0, "Total Customers": 956.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.44, "MEDIAN_SPEND_PER_CUSTOMER": 9.86 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2019, "Total Visits": 1014.0, "Total Visitors": 651.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 109.0, "Total Spend": 18593.0, "Total Transactions": 247.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.16, "MEDIAN_SPEND_PER_CUSTOMER": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-n3q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95343, "LONGITUDE": -75.165858, "DATE_RANGE_START": 2019, "Total Visits": 8037.0, "Total Visitors": 5037.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 73.0, "Total Spend": 4750.0, "Total Transactions": 1196.0, "Total Customers": 485.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.33, "MEDIAN_SPEND_PER_CUSTOMER": 4.95 }, "geometry": { "type": "Point", "coordinates": [ -75.165858, 39.95343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-php-p35", "LOCATION_NAME": "Rodney Food Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057226, "LONGITUDE": -75.155985, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 38.0, "POI_CBG": 421010265002.0, "MEDIAN_DWELL": 169.0, "Total Spend": 197.0, "Total Transactions": 32.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 6.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155985, 40.057226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "LOCATION_NAME": "Secret Garden", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 40.051859, "LONGITUDE": -75.235556, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2023.0, "Total Transactions": 55.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.95, "MEDIAN_SPEND_PER_CUSTOMER": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.235556, 40.051859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "LOCATION_NAME": "Polo Ralph Lauren Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2019, "Total Visits": 130.0, "Total Visitors": 97.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 53.0, "Total Spend": 9532.0, "Total Transactions": 118.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.3, "MEDIAN_SPEND_PER_CUSTOMER": 68.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "LOCATION_NAME": "Tiffany & Co.", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950223, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2019, "Total Visits": 998.0, "Total Visitors": 681.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 137.0, "Total Spend": 26684.0, "Total Transactions": 77.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.8, "MEDIAN_SPEND_PER_CUSTOMER": 159.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.950223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026858, "LONGITUDE": -75.208809, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 50.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10581.0, "Total Transactions": 1617.0, "Total Customers": 726.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.89, "MEDIAN_SPEND_PER_CUSTOMER": 7.81 }, "geometry": { "type": "Point", "coordinates": [ -75.208809, 40.026858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "LOCATION_NAME": "Mr. Tire", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 108.0, "POI_CBG": 421010316006.0, "MEDIAN_DWELL": 195.0, "Total Spend": 3774.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.14, "MEDIAN_SPEND_PER_CUSTOMER": 176.61 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p76-7t9", "LOCATION_NAME": "Mattress World", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.030695, "LONGITUDE": -75.023149, "DATE_RANGE_START": 2019, "Total Visits": 1254.0, "Total Visitors": 866.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 4279.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 376.92, "MEDIAN_SPEND_PER_CUSTOMER": 376.92 }, "geometry": { "type": "Point", "coordinates": [ -75.023149, 40.030695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm6-389", "LOCATION_NAME": "Best Buy", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.915668, "LONGITUDE": -75.138943, "DATE_RANGE_START": 2019, "Total Visits": 1739.0, "Total Visitors": 1393.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1273.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.01, "MEDIAN_SPEND_PER_CUSTOMER": 79.33 }, "geometry": { "type": "Point", "coordinates": [ -75.138943, 39.915668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm4-pjv", "LOCATION_NAME": "Cardenas Oil & Vinegar Taproom", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.937768, "LONGITUDE": -75.158238, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 40.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 70.0, "Total Spend": 1214.0, "Total Transactions": 27.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.81, "MEDIAN_SPEND_PER_CUSTOMER": 39.86 }, "geometry": { "type": "Point", "coordinates": [ -75.158238, 39.937768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "LOCATION_NAME": "Brewer's Outlet", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.953078, "LONGITUDE": -75.217954, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 508.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 57.0, "Total Spend": 16762.0, "Total Transactions": 448.0, "Total Customers": 356.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.217954, 39.953078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "LOCATION_NAME": "Beer Love", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2019, "Total Visits": 550.0, "Total Visitors": 393.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 5598.0, "Total Transactions": 228.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.98, "MEDIAN_SPEND_PER_CUSTOMER": 26.33 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-zzz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.058549, "LONGITUDE": -75.166373, "DATE_RANGE_START": 2019, "Total Visits": 603.0, "Total Visitors": 375.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1555.0, "Total Transactions": 98.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.78, "MEDIAN_SPEND_PER_CUSTOMER": 18.56 }, "geometry": { "type": "Point", "coordinates": [ -75.166373, 40.058549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.045974, "LONGITUDE": -75.070637, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 118.0, "POI_CBG": 421010314015.0, "MEDIAN_DWELL": 11.0, "Total Spend": 17306.0, "Total Transactions": 1832.0, "Total Customers": 984.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.71, "MEDIAN_SPEND_PER_CUSTOMER": 10.09 }, "geometry": { "type": "Point", "coordinates": [ -75.070637, 40.045974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp4-r49", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.975637, "LONGITUDE": -75.119836, "DATE_RANGE_START": 2019, "Total Visits": 3441.0, "Total Visitors": 2019.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3639.0, "Total Transactions": 87.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.119836, 39.975637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.065575, "LONGITUDE": -75.072105, "DATE_RANGE_START": 2019, "Total Visits": 613.0, "Total Visitors": 338.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1168.0, "Total Transactions": 52.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.01, "MEDIAN_SPEND_PER_CUSTOMER": 24.79 }, "geometry": { "type": "Point", "coordinates": [ -75.072105, 40.065575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-bhq", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.960816, "LONGITUDE": -75.224417, "DATE_RANGE_START": 2019, "Total Visits": 331.0, "Total Visitors": 270.0, "POI_CBG": 421010093003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1461.0, "Total Transactions": 188.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.3, "MEDIAN_SPEND_PER_CUSTOMER": 7.85 }, "geometry": { "type": "Point", "coordinates": [ -75.224417, 39.960816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-d5f", "LOCATION_NAME": "Allen Tire & Service", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.019598, "LONGITUDE": -75.06328, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 40.0, "POI_CBG": 421010319003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 2341.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 124.09, "MEDIAN_SPEND_PER_CUSTOMER": 125.72 }, "geometry": { "type": "Point", "coordinates": [ -75.06328, 40.019598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "LOCATION_NAME": "Banana Leaf", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953737, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 208.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1958.0, "Total Transactions": 67.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.38, "MEDIAN_SPEND_PER_CUSTOMER": 27.42 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.953737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "LOCATION_NAME": "Yummy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954519, "LONGITUDE": -75.170234, "DATE_RANGE_START": 2019, "Total Visits": 676.0, "Total Visitors": 463.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 14.0, "Total Spend": 5034.0, "Total Transactions": 245.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.12, "MEDIAN_SPEND_PER_CUSTOMER": 23.06 }, "geometry": { "type": "Point", "coordinates": [ -75.170234, 39.954519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955756, "LONGITUDE": -75.201691, "DATE_RANGE_START": 2019, "Total Visits": 3720.0, "Total Visitors": 2160.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 172.0, "Total Spend": 8729.0, "Total Transactions": 243.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.34, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.201691, 39.955756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "LOCATION_NAME": "Paisas Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2019, "Total Visits": 2798.0, "Total Visitors": 1912.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 340.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.83, "MEDIAN_SPEND_PER_CUSTOMER": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 148.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 20561.0, "Total Transactions": 1509.0, "Total Customers": 1116.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.56, "MEDIAN_SPEND_PER_CUSTOMER": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfy-2ff", "LOCATION_NAME": "Tasty Twisters Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035673, "LONGITUDE": -75.236122, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 60.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 599.0, "Total Transactions": 25.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.75, "MEDIAN_SPEND_PER_CUSTOMER": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.236122, 40.035673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@63s-dvr-hyv", "LOCATION_NAME": "A & C Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.925638, "LONGITUDE": -75.23463, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 158.0, "POI_CBG": 421010063001.0, "MEDIAN_DWELL": 97.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 12.93 }, "geometry": { "type": "Point", "coordinates": [ -75.23463, 39.925638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.037065, "LONGITUDE": -75.118922, "DATE_RANGE_START": 2019, "Total Visits": 197.0, "Total Visitors": 172.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 12625.0, "Total Transactions": 416.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.63, "MEDIAN_SPEND_PER_CUSTOMER": 23.35 }, "geometry": { "type": "Point", "coordinates": [ -75.118922, 40.037065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pg8-z2k", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.982802, "LONGITUDE": -75.187818, "DATE_RANGE_START": 2019, "Total Visits": 3351.0, "Total Visitors": 2239.0, "POI_CBG": 421010149006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 294.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.48, "MEDIAN_SPEND_PER_CUSTOMER": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.187818, 39.982802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.007189, "LONGITUDE": -75.137271, "DATE_RANGE_START": 2019, "Total Visits": 2480.0, "Total Visitors": 1667.0, "POI_CBG": 421010199001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 451.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.007189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pjf-vj9", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.071317, "LONGITUDE": -75.201046, "DATE_RANGE_START": 2019, "Total Visits": 465.0, "Total Visitors": 331.0, "POI_CBG": 421010257003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 300.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.0, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.201046, 40.071317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "LOCATION_NAME": "Forever 21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2019, "Total Visits": 1023.0, "Total Visitors": 964.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 17744.0, "Total Transactions": 645.0, "Total Customers": 583.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.56, "MEDIAN_SPEND_PER_CUSTOMER": 24.66 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "LOCATION_NAME": "H&M (Hennes & Mauritz)", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088823, "LONGITUDE": -74.961811, "DATE_RANGE_START": 2019, "Total Visits": 1026.0, "Total Visitors": 954.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 17797.0, "Total Transactions": 498.0, "Total Customers": 450.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.58, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961811, 40.088823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kmk", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.973034, "LONGITUDE": -75.158605, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 143.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 158.0, "Total Spend": 5791.0, "Total Transactions": 58.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.0, "MEDIAN_SPEND_PER_CUSTOMER": 84.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158605, 39.973034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2019, "Total Visits": 12633.0, "Total Visitors": 9132.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 19162.0, "Total Transactions": 530.0, "Total Customers": 461.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.85, "MEDIAN_SPEND_PER_CUSTOMER": 28.05 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-j9z", "LOCATION_NAME": "Citi Auto Group", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.007166, "LONGITUDE": -75.087699, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 47.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6663.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1000.0, "MEDIAN_SPEND_PER_CUSTOMER": 2000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087699, 40.007166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pg4-j9z", "LOCATION_NAME": "Boss Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.035423, "LONGITUDE": -75.173956, "DATE_RANGE_START": 2019, "Total Visits": 2152.0, "Total Visitors": 1439.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1874.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.5, "MEDIAN_SPEND_PER_CUSTOMER": 50.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173956, 40.035423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pp4-zxq", "LOCATION_NAME": "M R Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.988165, "LONGITUDE": -75.131689, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 57.0, "POI_CBG": 421010163003.0, "MEDIAN_DWELL": 307.0, "Total Spend": 2338.0, "Total Transactions": 148.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.33, "MEDIAN_SPEND_PER_CUSTOMER": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131689, 39.988165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-6tv", "LOCATION_NAME": "Allen Tire & Service", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.048405, "LONGITUDE": -75.096529, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5531.0, "Total Transactions": 33.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 128.39, "MEDIAN_SPEND_PER_CUSTOMER": 122.99 }, "geometry": { "type": "Point", "coordinates": [ -75.096529, 40.048405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj9-4sq", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.039267, "LONGITUDE": -75.144973, "DATE_RANGE_START": 2019, "Total Visits": 553.0, "Total Visitors": 455.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 70.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.5, "MEDIAN_SPEND_PER_CUSTOMER": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144973, 40.039267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmd-tvz", "LOCATION_NAME": "GIANT Heirloom Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.944771, "LONGITUDE": -75.180795, "DATE_RANGE_START": 2019, "Total Visits": 1499.0, "Total Visitors": 959.0, "POI_CBG": 421010013005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 246.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.77, "MEDIAN_SPEND_PER_CUSTOMER": 64.25 }, "geometry": { "type": "Point", "coordinates": [ -75.180795, 39.944771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.91267, "LONGITUDE": -75.154671, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 90.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 713.0, "Total Transactions": 28.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154671, 39.91267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "LOCATION_NAME": "Oregon Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 15.0, "POI_CBG": 421010372001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 145.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg4-mx5", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.04358, "LONGITUDE": -75.159446, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 27.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8214.0, "Total Transactions": 97.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.89, "MEDIAN_SPEND_PER_CUSTOMER": 46.43 }, "geometry": { "type": "Point", "coordinates": [ -75.159446, 40.04358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph6-whq", "LOCATION_NAME": "Italian Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986561, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1944.0, "Total Transactions": 125.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-2ff", "LOCATION_NAME": "Corner Bakery Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956861, "LONGITUDE": -75.196925, "DATE_RANGE_START": 2019, "Total Visits": 1024.0, "Total Visitors": 590.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 244.0, "Total Spend": 216.0, "Total Transactions": 20.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.196925, 39.956861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "LOCATION_NAME": "China Royal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 43.0, "POI_CBG": 421010333003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1100.0, "Total Transactions": 52.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.85, "MEDIAN_SPEND_PER_CUSTOMER": 27.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "LOCATION_NAME": "Lazos Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 40.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 352.0, "Total Spend": 2141.0, "Total Transactions": 138.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-zmk", "LOCATION_NAME": "The Good King Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941737, "LONGITUDE": -75.15419, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 60.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1575.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.76, "MEDIAN_SPEND_PER_CUSTOMER": 57.14 }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 39.941737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7v-w49", "LOCATION_NAME": "China Ruby", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055952, "LONGITUDE": -75.07383, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 57.0, "POI_CBG": 421010338002.0, "MEDIAN_DWELL": 136.0, "Total Spend": 1663.0, "Total Transactions": 72.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.9, "MEDIAN_SPEND_PER_CUSTOMER": 19.12 }, "geometry": { "type": "Point", "coordinates": [ -75.07383, 40.055952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pnw-m49", "LOCATION_NAME": "Baan Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967197, "LONGITUDE": -75.141229, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 87.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 69.0, "Total Spend": 3558.0, "Total Transactions": 108.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.35 }, "geometry": { "type": "Point", "coordinates": [ -75.141229, 39.967197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-v2k", "LOCATION_NAME": "Original Village Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.107293, "LONGITUDE": -75.037623, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 100.0, "POI_CBG": 421010357021.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3416.0, "Total Transactions": 150.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.52, "MEDIAN_SPEND_PER_CUSTOMER": 35.72 }, "geometry": { "type": "Point", "coordinates": [ -75.037623, 40.107293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-qzz", "LOCATION_NAME": "For Pete's Sake", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935493, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 173.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 283.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.4, "MEDIAN_SPEND_PER_CUSTOMER": 70.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.935493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-7yv", "LOCATION_NAME": "Olympia Gyro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953552, "LONGITUDE": -75.159357, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 4645.0, "Total Transactions": 287.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.47, "MEDIAN_SPEND_PER_CUSTOMER": 15.26 }, "geometry": { "type": "Point", "coordinates": [ -75.159357, 39.953552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948772, "LONGITUDE": -75.160716, "DATE_RANGE_START": 2019, "Total Visits": 733.0, "Total Visitors": 653.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 28547.0, "Total Transactions": 2594.0, "Total Customers": 1687.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.42, "MEDIAN_SPEND_PER_CUSTOMER": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160716, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2019, "Total Visits": 530.0, "Total Visitors": 366.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 161.0, "Total Spend": 7306.0, "Total Transactions": 480.0, "Total Customers": 355.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011206, "LONGITUDE": -75.113008, "DATE_RANGE_START": 2019, "Total Visits": 656.0, "Total Visitors": 418.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6346.0, "Total Transactions": 1204.0, "Total Customers": 495.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.31, "MEDIAN_SPEND_PER_CUSTOMER": 7.53 }, "geometry": { "type": "Point", "coordinates": [ -75.113008, 40.011206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-2c5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073477, "LONGITUDE": -75.033695, "DATE_RANGE_START": 2019, "Total Visits": 480.0, "Total Visitors": 248.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 4576.0, "Total Transactions": 713.0, "Total Customers": 400.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.033695, 40.073477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-6p9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046097, "LONGITUDE": -75.142598, "DATE_RANGE_START": 2019, "Total Visits": 1326.0, "Total Visitors": 951.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2109.0, "Total Transactions": 178.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.142598, 40.046097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 57.0, "Total Spend": 33528.0, "Total Transactions": 2112.0, "Total Customers": 1111.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp5-7wk", "LOCATION_NAME": "Friendly Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.984702, "LONGITUDE": -75.132436, "DATE_RANGE_START": 2019, "Total Visits": 16049.0, "Total Visitors": 6133.0, "POI_CBG": 421010162001.0, "MEDIAN_DWELL": 150.0, "Total Spend": 5.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.5, "MEDIAN_SPEND_PER_CUSTOMER": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132436, 39.984702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "LOCATION_NAME": "Somerton Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.110353, "LONGITUDE": -75.024095, "DATE_RANGE_START": 2019, "Total Visits": 1746.0, "Total Visitors": 1216.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2225.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 216.0, "MEDIAN_SPEND_PER_CUSTOMER": 668.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024095, 40.110353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946402, "LONGITUDE": -75.180743, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 63.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 10.0, "Total Spend": 13015.0, "Total Transactions": 1694.0, "Total Customers": 1019.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180743, 39.946402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039133, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2019, "Total Visits": 306.0, "Total Visitors": 253.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4644.0, "Total Transactions": 1011.0, "Total Customers": 470.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.37, "MEDIAN_SPEND_PER_CUSTOMER": 5.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 40.039133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvr-d5f", "LOCATION_NAME": "Y & B Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.921556, "LONGITUDE": -75.231623, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 703.0, "Total Transactions": 20.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 126.25 }, "geometry": { "type": "Point", "coordinates": [ -75.231623, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-gtv", "LOCATION_NAME": "Bruno's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067212, "LONGITUDE": -75.146516, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 75.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 100.0, "Total Spend": 2054.0, "Total Transactions": 112.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.02, "MEDIAN_SPEND_PER_CUSTOMER": 19.31 }, "geometry": { "type": "Point", "coordinates": [ -75.146516, 40.067212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgf-52k", "LOCATION_NAME": "Chengdu Famous Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959245, "LONGITUDE": -75.194556, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 58.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5232.0, "Total Transactions": 157.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.09, "MEDIAN_SPEND_PER_CUSTOMER": 36.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194556, 39.959245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 97.0, "POI_CBG": 421010347013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 787.0, "Total Transactions": 78.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.3, "MEDIAN_SPEND_PER_CUSTOMER": 8.86 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgc-wzf", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977954, "LONGITUDE": -75.224016, "DATE_RANGE_START": 2019, "Total Visits": 6270.0, "Total Visitors": 3353.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 7142.0, "Total Transactions": 571.0, "Total Customers": 485.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.224016, 39.977954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvr-2hq", "LOCATION_NAME": "Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.917185, "LONGITUDE": -75.216767, "DATE_RANGE_START": 2019, "Total Visits": 1507.0, "Total Visitors": 1103.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 7218.0, "Total Transactions": 42.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.0, "MEDIAN_SPEND_PER_CUSTOMER": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216767, 39.917185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993511, "LONGITUDE": -75.143942, "DATE_RANGE_START": 2019, "Total Visits": 1031.0, "Total Visitors": 636.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1824.0, "Total Transactions": 97.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.23, "MEDIAN_SPEND_PER_CUSTOMER": 23.09 }, "geometry": { "type": "Point", "coordinates": [ -75.143942, 39.993511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pg8-bp9", "LOCATION_NAME": "WokWorks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984089, "LONGITUDE": -75.183, "DATE_RANGE_START": 2019, "Total Visits": 725.0, "Total Visitors": 408.0, "POI_CBG": 421010151022.0, "MEDIAN_DWELL": 155.0, "Total Spend": 120.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.13, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.183, 39.984089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7w-pvz", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.044968, "LONGITUDE": -75.054721, "DATE_RANGE_START": 2019, "Total Visits": 242.0, "Total Visitors": 210.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2432.0, "Total Transactions": 180.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.55, "MEDIAN_SPEND_PER_CUSTOMER": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -75.054721, 40.044968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.016586, "LONGITUDE": -75.149894, "DATE_RANGE_START": 2019, "Total Visits": 2497.0, "Total Visitors": 1759.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 149.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.82, "MEDIAN_SPEND_PER_CUSTOMER": 44.82 }, "geometry": { "type": "Point", "coordinates": [ -75.149894, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-yn5", "LOCATION_NAME": "Encore", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973824, "LONGITUDE": -75.204593, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 90.0, "POI_CBG": 421010110003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1479.0, "Total Transactions": 43.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.5, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204593, 39.973824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-68v", "LOCATION_NAME": "Kinme", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947803, "LONGITUDE": -75.160062, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 77.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 2161.0, "Total Transactions": 62.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.84, "MEDIAN_SPEND_PER_CUSTOMER": 30.92 }, "geometry": { "type": "Point", "coordinates": [ -75.160062, 39.947803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.051298, "LONGITUDE": -75.065323, "DATE_RANGE_START": 2019, "Total Visits": 3833.0, "Total Visitors": 2873.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 7787.0, "Total Transactions": 205.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.55, "MEDIAN_SPEND_PER_CUSTOMER": 36.32 }, "geometry": { "type": "Point", "coordinates": [ -75.065323, 40.051298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "LOCATION_NAME": "King Food Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038528, "LONGITUDE": -75.036845, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 33.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 27.0, "Total Spend": 1185.0, "Total Transactions": 53.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.47, "MEDIAN_SPEND_PER_CUSTOMER": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.036845, 40.038528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2019, "Total Visits": 525.0, "Total Visitors": 295.0, "POI_CBG": 421010242001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1867.0, "Total Transactions": 240.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.31, "MEDIAN_SPEND_PER_CUSTOMER": 9.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgh-cwk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.003103, "LONGITUDE": -75.162138, "DATE_RANGE_START": 2019, "Total Visits": 513.0, "Total Visitors": 390.0, "POI_CBG": 421010202001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 848.0, "Total Transactions": 108.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 7.33 }, "geometry": { "type": "Point", "coordinates": [ -75.162138, 40.003103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-975", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953036, "LONGITUDE": -75.192281, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 320.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 14030.0, "Total Transactions": 2394.0, "Total Customers": 1389.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.7, "MEDIAN_SPEND_PER_CUSTOMER": 6.65 }, "geometry": { "type": "Point", "coordinates": [ -75.192281, 39.953036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2019, "Total Visits": 1073.0, "Total Visitors": 846.0, "POI_CBG": 421010348022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6676.0, "Total Transactions": 818.0, "Total Customers": 520.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.37, "MEDIAN_SPEND_PER_CUSTOMER": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-zmk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960742, "LONGITUDE": -75.234226, "DATE_RANGE_START": 2019, "Total Visits": 7364.0, "Total Visitors": 3928.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 18.0, "Total Spend": 57.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.79, "MEDIAN_SPEND_PER_CUSTOMER": 6.79 }, "geometry": { "type": "Point", "coordinates": [ -75.234226, 39.960742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-psq", "LOCATION_NAME": "Sherwin-Williams", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.937244, "LONGITUDE": -75.16006, "DATE_RANGE_START": 2019, "Total Visits": 145.0, "Total Visitors": 127.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 133.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.76, "MEDIAN_SPEND_PER_CUSTOMER": 40.01 }, "geometry": { "type": "Point", "coordinates": [ -75.16006, 39.937244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8m-v2k", "LOCATION_NAME": "Hung Vuong Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.030075, "LONGITUDE": -75.057846, "DATE_RANGE_START": 2019, "Total Visits": 328.0, "Total Visitors": 248.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 30.0, "Total Spend": 41744.0, "Total Transactions": 730.0, "Total Customers": 473.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.52, "MEDIAN_SPEND_PER_CUSTOMER": 45.32 }, "geometry": { "type": "Point", "coordinates": [ -75.057846, 40.030075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.095744, "LONGITUDE": -74.976099, "DATE_RANGE_START": 2019, "Total Visits": 1614.0, "Total Visitors": 1073.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 95883.0, "Total Transactions": 6270.0, "Total Customers": 2177.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.94, "MEDIAN_SPEND_PER_CUSTOMER": 23.31 }, "geometry": { "type": "Point", "coordinates": [ -74.976099, 40.095744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.979391, "LONGITUDE": -75.152636, "DATE_RANGE_START": 2019, "Total Visits": 3288.0, "Total Visitors": 1779.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 130.0, "Total Spend": 3076.0, "Total Transactions": 316.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.44, "MEDIAN_SPEND_PER_CUSTOMER": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.152636, 39.979391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039167, "LONGITUDE": -75.110538, "DATE_RANGE_START": 2019, "Total Visits": 2212.0, "Total Visitors": 1669.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1027.0, "Total Transactions": 33.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.77, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110538, 40.039167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "LOCATION_NAME": "Just To Serve You", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 25.0, "POI_CBG": 421010102001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 288.0, "Total Transactions": 15.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.98, "MEDIAN_SPEND_PER_CUSTOMER": 19.98 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-rx5", "LOCATION_NAME": "Shanks Original", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934821, "LONGITUDE": -75.142056, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 32.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 82.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.5, "MEDIAN_SPEND_PER_CUSTOMER": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 39.934821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-jjv", "LOCATION_NAME": "Just Salad", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951824, "LONGITUDE": -75.169805, "DATE_RANGE_START": 2019, "Total Visits": 1241.0, "Total Visitors": 989.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 68.0, "Total Spend": 298.0, "Total Transactions": 25.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.97, "MEDIAN_SPEND_PER_CUSTOMER": 11.97 }, "geometry": { "type": "Point", "coordinates": [ -75.169805, 39.951824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phy-5pv", "LOCATION_NAME": "E & S Mini Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023938, "LONGITUDE": -75.130466, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 113.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 502.0, "Total Spend": 190.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.9, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130466, 40.023938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-68v", "LOCATION_NAME": "The Bike Stop", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948357, "LONGITUDE": -75.159979, "DATE_RANGE_START": 2019, "Total Visits": 305.0, "Total Visitors": 200.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 74.0, "Total Spend": 9363.0, "Total Transactions": 676.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.9, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159979, 39.948357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3nq", "LOCATION_NAME": "Nick's Roast Beef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.083763, "LONGITUDE": -74.966105, "DATE_RANGE_START": 2019, "Total Visits": 1094.0, "Total Visitors": 888.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 51.0, "Total Spend": 2582.0, "Total Transactions": 70.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.97, "MEDIAN_SPEND_PER_CUSTOMER": 36.6 }, "geometry": { "type": "Point", "coordinates": [ -74.966105, 40.083763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "LOCATION_NAME": "Pho Cyclo Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2019, "Total Visits": 1889.0, "Total Visitors": 1313.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1695.0, "Total Transactions": 68.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.25, "MEDIAN_SPEND_PER_CUSTOMER": 23.81 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "LOCATION_NAME": "Anastasi Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2019, "Total Visits": 207.0, "Total Visitors": 203.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15984.0, "Total Transactions": 328.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.42, "MEDIAN_SPEND_PER_CUSTOMER": 49.06 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-mc5", "LOCATION_NAME": "Mole Poblano Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935124, "LONGITUDE": -75.158821, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 98.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2657.0, "Total Transactions": 55.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.04, "MEDIAN_SPEND_PER_CUSTOMER": 54.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158821, 39.935124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pmb-c3q", "LOCATION_NAME": "Kin Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.944553, "LONGITUDE": -75.158728, "DATE_RANGE_START": 2019, "Total Visits": 2155.0, "Total Visitors": 1459.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 139.0, "Total Spend": 4759.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.0, "MEDIAN_SPEND_PER_CUSTOMER": 81.48 }, "geometry": { "type": "Point", "coordinates": [ -75.158728, 39.944553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmf-rx5", "LOCATION_NAME": "Viet Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944017, "LONGITUDE": -75.170118, "DATE_RANGE_START": 2019, "Total Visits": 1504.0, "Total Visitors": 973.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 66.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.98, "MEDIAN_SPEND_PER_CUSTOMER": 19.98 }, "geometry": { "type": "Point", "coordinates": [ -75.170118, 39.944017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "LOCATION_NAME": "Fiorino", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 48.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5022.0, "Total Transactions": 48.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.96, "MEDIAN_SPEND_PER_CUSTOMER": 82.29 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2019, "Total Visits": 1379.0, "Total Visitors": 889.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 18.0, "Total Spend": 6995.0, "Total Transactions": 235.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.65, "MEDIAN_SPEND_PER_CUSTOMER": 30.71 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j7q", "LOCATION_NAME": "The Dandelion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951011, "LONGITUDE": -75.170702, "DATE_RANGE_START": 2019, "Total Visits": 460.0, "Total Visitors": 406.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 2077.0, "Total Transactions": 23.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.24, "MEDIAN_SPEND_PER_CUSTOMER": 63.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170702, 39.951011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9t-gzf", "LOCATION_NAME": "Holt's Cigar Company", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.103076, "LONGITUDE": -74.985848, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 83.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 343.0, "Total Spend": 2474.0, "Total Transactions": 35.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.38, "MEDIAN_SPEND_PER_CUSTOMER": 46.38 }, "geometry": { "type": "Point", "coordinates": [ -74.985848, 40.103076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 70.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 14.0, "Total Spend": 5902.0, "Total Transactions": 290.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.37, "MEDIAN_SPEND_PER_CUSTOMER": 21.42 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmv-5cq", "LOCATION_NAME": "Navy Yard Food Trucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.892125, "LONGITUDE": -75.174398, "DATE_RANGE_START": 2019, "Total Visits": 616.0, "Total Visitors": 346.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 66.0, "Total Spend": 192.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174398, 39.892125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-7yv", "LOCATION_NAME": "Carnival Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967096, "LONGITUDE": -75.208944, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 88.0, "POI_CBG": 421010106001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 229.0, "Total Transactions": 17.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.95, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.208944, 39.967096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "LOCATION_NAME": "SouthHouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2019, "Total Visits": 518.0, "Total Visitors": 280.0, "POI_CBG": 421010040023.0, "MEDIAN_DWELL": 238.0, "Total Spend": 4715.0, "Total Transactions": 127.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.34, "MEDIAN_SPEND_PER_CUSTOMER": 35.66 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "LOCATION_NAME": "Saigon Noodle Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074096, "LONGITUDE": -75.202561, "DATE_RANGE_START": 2019, "Total Visits": 665.0, "Total Visitors": 490.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 2051.0, "Total Transactions": 112.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.91, "MEDIAN_SPEND_PER_CUSTOMER": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202561, 40.074096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-wc5", "LOCATION_NAME": "Craft Hall", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962369, "LONGITUDE": -75.135937, "DATE_RANGE_START": 2019, "Total Visits": 1564.0, "Total Visitors": 1106.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 71.0, "Total Spend": 18279.0, "Total Transactions": 375.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.36, "MEDIAN_SPEND_PER_CUSTOMER": 39.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.962369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yd9", "LOCATION_NAME": "Tai Lake", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954672, "LONGITUDE": -75.156344, "DATE_RANGE_START": 2019, "Total Visits": 210.0, "Total Visitors": 183.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 7610.0, "Total Transactions": 95.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.9, "MEDIAN_SPEND_PER_CUSTOMER": 45.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156344, 39.954672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25n-223@628-pmf-33q", "LOCATION_NAME": "Martabak Ok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938993, "LONGITUDE": -75.173271, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 159.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.49, "MEDIAN_SPEND_PER_CUSTOMER": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.173271, 39.938993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "LOCATION_NAME": "El Balconcito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3565.0, "Total Transactions": 63.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "LOCATION_NAME": "Aya Asian Fusion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 87.0, "POI_CBG": 421010330006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3639.0, "Total Transactions": 137.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.62, "MEDIAN_SPEND_PER_CUSTOMER": 27.64 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "LOCATION_NAME": "Cafe Old Nelson", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954761, "LONGITUDE": -75.164691, "DATE_RANGE_START": 2019, "Total Visits": 565.0, "Total Visitors": 385.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 94.0, "Total Spend": 4335.0, "Total Transactions": 440.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.23, "MEDIAN_SPEND_PER_CUSTOMER": 11.94 }, "geometry": { "type": "Point", "coordinates": [ -75.164691, 39.954761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmd-rx5", "LOCATION_NAME": "Cotoletta Fitler Square", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947447, "LONGITUDE": -75.179191, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 62.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 264.0, "Total Spend": 6657.0, "Total Transactions": 73.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.78, "MEDIAN_SPEND_PER_CUSTOMER": 82.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179191, 39.947447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22b@628-pmb-7h5", "LOCATION_NAME": "Bain's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949072, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2019, "Total Visits": 16967.0, "Total Visitors": 10019.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 118.0, "Total Spend": 591.0, "Total Transactions": 62.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 10.07 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.949072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-4y9", "LOCATION_NAME": "CIBO Express Market", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.87575, "LONGITUDE": -75.24417, "DATE_RANGE_START": 2019, "Total Visits": 454923.0, "Total Visitors": 244998.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 131.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.2, "MEDIAN_SPEND_PER_CUSTOMER": 15.35 }, "geometry": { "type": "Point", "coordinates": [ -75.24417, 39.87575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8n-cqz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.03577, "LONGITUDE": -75.069964, "DATE_RANGE_START": 2019, "Total Visits": 2855.0, "Total Visitors": 2170.0, "POI_CBG": 421010313002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 331.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069964, 40.03577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-sdv", "LOCATION_NAME": "Independence Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950376, "LONGITUDE": -75.15103, "DATE_RANGE_START": 2019, "Total Visits": 3018.0, "Total Visitors": 2475.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 79684.0, "Total Transactions": 3944.0, "Total Customers": 2713.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.72, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15103, 39.950376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgj-pgk", "LOCATION_NAME": "Arthurs Dog House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992823, "LONGITUDE": -75.148113, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 62.0, "POI_CBG": 421010165003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 78.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.44, "MEDIAN_SPEND_PER_CUSTOMER": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.148113, 39.992823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.062718, "LONGITUDE": -75.083858, "DATE_RANGE_START": 2019, "Total Visits": 1419.0, "Total Visitors": 989.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9781.0, "Total Transactions": 265.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.66, "MEDIAN_SPEND_PER_CUSTOMER": 32.07 }, "geometry": { "type": "Point", "coordinates": [ -75.083858, 40.062718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "LOCATION_NAME": "LKQ", "TOP_CATEGORY": "Miscellaneous Durable Goods Merchant Wholesalers", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2019, "Total Visits": 688.0, "Total Visitors": 458.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 296.0, "Total Spend": 4032.0, "Total Transactions": 35.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 157.28 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.027117, "LONGITUDE": -75.0631, "DATE_RANGE_START": 2019, "Total Visits": 898.0, "Total Visitors": 720.0, "POI_CBG": 421010319001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 10270.0, "Total Transactions": 270.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.13, "MEDIAN_SPEND_PER_CUSTOMER": 26.75 }, "geometry": { "type": "Point", "coordinates": [ -75.0631, 40.027117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2019, "Total Visits": 301.0, "Total Visitors": 173.0, "POI_CBG": 421010191003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 994.0, "Total Transactions": 122.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.76, "MEDIAN_SPEND_PER_CUSTOMER": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-ph6-cdv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979947, "LONGITUDE": -75.248732, "DATE_RANGE_START": 2019, "Total Visits": 610.0, "Total Visitors": 365.0, "POI_CBG": 421010114001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2516.0, "Total Transactions": 72.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.98, "MEDIAN_SPEND_PER_CUSTOMER": 5.76 }, "geometry": { "type": "Point", "coordinates": [ -75.248732, 39.979947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2019, "Total Visits": 6017.0, "Total Visitors": 4236.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 75929.0, "Total Transactions": 3798.0, "Total Customers": 2564.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.19, "MEDIAN_SPEND_PER_CUSTOMER": 20.34 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.008575, "LONGITUDE": -75.193866, "DATE_RANGE_START": 2019, "Total Visits": 4511.0, "Total Visitors": 3140.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2578.0, "Total Transactions": 150.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.23, "MEDIAN_SPEND_PER_CUSTOMER": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.193866, 40.008575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2019, "Total Visits": 1797.0, "Total Visitors": 1034.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7790.0, "Total Transactions": 356.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9q-hqz", "LOCATION_NAME": "Pearle Vision", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.079188, "LONGITUDE": -75.028586, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 115.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 105.0, "Total Spend": 596.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 178.97, "MEDIAN_SPEND_PER_CUSTOMER": 178.97 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.079188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.025431, "LONGITUDE": -75.223871, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 103.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4476.0, "Total Transactions": 60.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.98, "MEDIAN_SPEND_PER_CUSTOMER": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223871, 40.025431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.058164, "LONGITUDE": -75.052414, "DATE_RANGE_START": 2019, "Total Visits": 715.0, "Total Visitors": 560.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 341.0, "Total Transactions": 15.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.66 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.058164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-qpv", "LOCATION_NAME": "Sunrise Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009015, "LONGITUDE": -75.137692, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010198006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 495.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.45, "MEDIAN_SPEND_PER_CUSTOMER": 24.45 }, "geometry": { "type": "Point", "coordinates": [ -75.137692, 40.009015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjf-jy9", "LOCATION_NAME": "Bredenbeck's Bakery & Ice Cream Parlor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072481, "LONGITUDE": -75.202392, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 18.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 98.0, "Total Spend": 16479.0, "Total Transactions": 771.0, "Total Customers": 618.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 14.24 }, "geometry": { "type": "Point", "coordinates": [ -75.202392, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pm3-st9", "LOCATION_NAME": "Laurel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929472, "LONGITUDE": -75.163723, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 90.0, "Total Spend": 1519.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.25, "MEDIAN_SPEND_PER_CUSTOMER": 48.55 }, "geometry": { "type": "Point", "coordinates": [ -75.163723, 39.929472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.977128, "LONGITUDE": -75.274366, "DATE_RANGE_START": 2019, "Total Visits": 635.0, "Total Visitors": 526.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 13579.0, "Total Transactions": 386.0, "Total Customers": 303.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.274366, 39.977128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2019, "Total Visits": 1459.0, "Total Visitors": 1279.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 72001.0, "Total Transactions": 5459.0, "Total Customers": 3851.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-223@628-pnx-7qz", "LOCATION_NAME": "Dolce & Caffe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962218, "LONGITUDE": -75.141391, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 4972.0, "Total Transactions": 505.0, "Total Customers": 306.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.141391, 39.962218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2019, "Total Visits": 1421.0, "Total Visitors": 979.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 98916.0, "Total Transactions": 6656.0, "Total Customers": 2907.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.47, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-tn5", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948145, "LONGITUDE": -75.153461, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 137.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 812.0, "Total Transactions": 73.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.153461, 39.948145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-sqz", "LOCATION_NAME": "Aesop", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949498, "LONGITUDE": -75.16734, "DATE_RANGE_START": 2019, "Total Visits": 20500.0, "Total Visitors": 10934.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 70.0, "Total Spend": 2583.0, "Total Transactions": 25.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.36, "MEDIAN_SPEND_PER_CUSTOMER": 70.74 }, "geometry": { "type": "Point", "coordinates": [ -75.16734, 39.949498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "LOCATION_NAME": "Eye Encounters", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2019, "Total Visits": 12893.0, "Total Visitors": 7288.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 63.0, "Total Spend": 980.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.0, "MEDIAN_SPEND_PER_CUSTOMER": 99.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-cdv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.033248, "LONGITUDE": -75.131604, "DATE_RANGE_START": 2019, "Total Visits": 1388.0, "Total Visitors": 909.0, "POI_CBG": 421010275003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 379.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.88, "MEDIAN_SPEND_PER_CUSTOMER": 24.76 }, "geometry": { "type": "Point", "coordinates": [ -75.131604, 40.033248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.959702, "LONGITUDE": -75.147615, "DATE_RANGE_START": 2019, "Total Visits": 480.0, "Total Visitors": 365.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 322201.0, "Total Transactions": 8544.0, "Total Customers": 5069.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.25, "MEDIAN_SPEND_PER_CUSTOMER": 37.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147615, 39.959702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2019, "Total Visits": 1168.0, "Total Visitors": 1028.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 12294.0, "Total Transactions": 870.0, "Total Customers": 661.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-tvz", "LOCATION_NAME": "Material Culture", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.01529, "LONGITUDE": -75.173584, "DATE_RANGE_START": 2019, "Total Visits": 2713.0, "Total Visitors": 1448.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 156.0, "Total Spend": 2896.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 351.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173584, 40.01529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-y5f", "LOCATION_NAME": "Mineralistic", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 39.941629, "LONGITUDE": -75.148231, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 102.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2449.0, "Total Transactions": 52.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.48, "MEDIAN_SPEND_PER_CUSTOMER": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.148231, 39.941629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pm9-wc5", "LOCATION_NAME": "Renaissance Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949053, "LONGITUDE": -75.147888, "DATE_RANGE_START": 2019, "Total Visits": 1567.0, "Total Visitors": 1286.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 57.0, "Total Spend": 34857.0, "Total Transactions": 193.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.24, "MEDIAN_SPEND_PER_CUSTOMER": 57.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147888, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "LOCATION_NAME": "Sampan", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949535, "LONGITUDE": -75.16221, "DATE_RANGE_START": 2019, "Total Visits": 9681.0, "Total Visitors": 6173.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 101.0, "Total Spend": 20452.0, "Total Transactions": 313.0, "Total Customers": 273.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.19, "MEDIAN_SPEND_PER_CUSTOMER": 49.86 }, "geometry": { "type": "Point", "coordinates": [ -75.16221, 39.949535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "LOCATION_NAME": "DaMo Pasta Lab", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 200.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5928.0, "Total Transactions": 290.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.43, "MEDIAN_SPEND_PER_CUSTOMER": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "LOCATION_NAME": "Dolce Carini Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2019, "Total Visits": 518.0, "Total Visitors": 341.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 90.0, "Total Spend": 2779.0, "Total Transactions": 242.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.94 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-jgk", "LOCATION_NAME": "The Happy Rooster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950462, "LONGITUDE": -75.16756, "DATE_RANGE_START": 2019, "Total Visits": 626.0, "Total Visitors": 471.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 119.0, "Total Spend": 8683.0, "Total Transactions": 237.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16756, 39.950462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-tvz", "LOCATION_NAME": "Devon Seafood Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949401, "LONGITUDE": -75.170553, "DATE_RANGE_START": 2019, "Total Visits": 1596.0, "Total Visitors": 1009.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 90.0, "Total Spend": 42984.0, "Total Transactions": 505.0, "Total Customers": 450.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.28, "MEDIAN_SPEND_PER_CUSTOMER": 70.82 }, "geometry": { "type": "Point", "coordinates": [ -75.170553, 39.949401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvr-cwk", "LOCATION_NAME": "Happy Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922171, "LONGITUDE": -75.230743, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 40.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 256.0, "Total Spend": 829.0, "Total Transactions": 28.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.55, "MEDIAN_SPEND_PER_CUSTOMER": 29.93 }, "geometry": { "type": "Point", "coordinates": [ -75.230743, 39.922171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-bhq", "LOCATION_NAME": "China House II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912259, "LONGITUDE": -75.233384, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 138.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 559.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.0, "MEDIAN_SPEND_PER_CUSTOMER": 102.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233384, 39.912259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "LOCATION_NAME": "Gallelli Formal Wear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2019, "Total Visits": 260.0, "Total Visitors": 238.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2622.0, "Total Transactions": 23.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 115.0, "MEDIAN_SPEND_PER_CUSTOMER": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "LOCATION_NAME": "Asian Chopsticks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 133.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1006.0, "Total Transactions": 47.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.24, "MEDIAN_SPEND_PER_CUSTOMER": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.094236, "LONGITUDE": -75.016653, "DATE_RANGE_START": 2019, "Total Visits": 701.0, "Total Visitors": 583.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 9204.0, "Total Transactions": 850.0, "Total Customers": 593.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.27, "MEDIAN_SPEND_PER_CUSTOMER": 11.08 }, "geometry": { "type": "Point", "coordinates": [ -75.016653, 40.094236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@63s-dw9-7dv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.877241, "LONGITUDE": -75.244155, "DATE_RANGE_START": 2019, "Total Visits": 2888.0, "Total Visitors": 2688.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 13468.0, "Total Transactions": 1871.0, "Total Customers": 1719.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 6.59 }, "geometry": { "type": "Point", "coordinates": [ -75.244155, 39.877241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006873, "LONGITUDE": -75.123103, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 162.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4457.0, "Total Transactions": 768.0, "Total Customers": 353.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.95, "MEDIAN_SPEND_PER_CUSTOMER": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123103, 40.006873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgc-zzz", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.979858, "LONGITUDE": -75.220169, "DATE_RANGE_START": 2019, "Total Visits": 946.0, "Total Visitors": 613.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 183.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.220169, 39.979858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-kj9", "LOCATION_NAME": "Sassafras Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953897, "LONGITUDE": -75.14465, "DATE_RANGE_START": 2019, "Total Visits": 202.0, "Total Visitors": 193.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 12829.0, "Total Transactions": 923.0, "Total Customers": 456.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.43, "MEDIAN_SPEND_PER_CUSTOMER": 17.18 }, "geometry": { "type": "Point", "coordinates": [ -75.14465, 39.953897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "LOCATION_NAME": "Total Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2019, "Total Visits": 575.0, "Total Visitors": 453.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 47.0, "Total Spend": 4627.0, "Total Transactions": 183.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.09, "MEDIAN_SPEND_PER_CUSTOMER": 31.47 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pm7-45f", "LOCATION_NAME": "Jerusalem Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.921866, "LONGITUDE": -75.185805, "DATE_RANGE_START": 2019, "Total Visits": 268.0, "Total Visitors": 237.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 481.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 144.38, "MEDIAN_SPEND_PER_CUSTOMER": 144.38 }, "geometry": { "type": "Point", "coordinates": [ -75.185805, 39.921866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg9-cyv", "LOCATION_NAME": "Mercado Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983185, "LONGITUDE": -75.169254, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 50.0, "POI_CBG": 421010152004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 165.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.169254, 39.983185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-435", "LOCATION_NAME": "Fresh Gulf Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.920683, "LONGITUDE": -75.187828, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 87.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 657.0, "Total Transactions": 30.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.2, "MEDIAN_SPEND_PER_CUSTOMER": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.187828, 39.920683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "LOCATION_NAME": "Harbison Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 105.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1600.0, "Total Transactions": 63.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.5, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2019, "Total Visits": 2497.0, "Total Visitors": 1571.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 7676.0, "Total Transactions": 495.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.22, "MEDIAN_SPEND_PER_CUSTOMER": 19.52 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087035, "LONGITUDE": -74.960571, "DATE_RANGE_START": 2019, "Total Visits": 2718.0, "Total Visitors": 2234.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 10304.0, "Total Transactions": 235.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.99, "MEDIAN_SPEND_PER_CUSTOMER": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -74.960571, 40.087035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-t7q", "LOCATION_NAME": "TNS Diamonds", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.94842, "LONGITUDE": -75.154396, "DATE_RANGE_START": 2019, "Total Visits": 3781.0, "Total Visitors": 3005.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1089.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 127.0, "MEDIAN_SPEND_PER_CUSTOMER": 127.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154396, 39.94842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p74-vfz", "LOCATION_NAME": "Liberty Bell Bicycle", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.03991, "LONGITUDE": -75.031204, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 118.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 44.0, "Total Spend": 102.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.031204, 40.03991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnt-3qz", "LOCATION_NAME": "JR's saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.97411, "LONGITUDE": -75.12273, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 83.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 78.0, "Total Spend": 674.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 202.21, "MEDIAN_SPEND_PER_CUSTOMER": 202.21 }, "geometry": { "type": "Point", "coordinates": [ -75.12273, 39.97411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "LOCATION_NAME": "New London Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010289013.0, "MEDIAN_DWELL": null, "Total Spend": 3808.0, "Total Transactions": 183.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.22, "MEDIAN_SPEND_PER_CUSTOMER": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-kpv", "LOCATION_NAME": "Artisans On the Avenue", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075688, "LONGITUDE": -75.206238, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 27.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 444.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 133.15, "MEDIAN_SPEND_PER_CUSTOMER": 133.15 }, "geometry": { "type": "Point", "coordinates": [ -75.206238, 40.075688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914447, "LONGITUDE": -75.156842, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1602.0, "Total Transactions": 177.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.156842, 39.914447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y9z", "LOCATION_NAME": "Delightful Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953218, "LONGITUDE": -75.155064, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 153.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1220.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.81, "MEDIAN_SPEND_PER_CUSTOMER": 26.81 }, "geometry": { "type": "Point", "coordinates": [ -75.155064, 39.953218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "LOCATION_NAME": "Blue Corn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2019, "Total Visits": 693.0, "Total Visitors": 561.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 34.0, "Total Spend": 88.0, "Total Transactions": 17.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.5, "MEDIAN_SPEND_PER_CUSTOMER": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pmb-7qz", "LOCATION_NAME": "Voyeur Nightclub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948348, "LONGITUDE": -75.161699, "DATE_RANGE_START": 2019, "Total Visits": 836.0, "Total Visitors": 568.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 56.0, "Total Spend": 32094.0, "Total Transactions": 1413.0, "Total Customers": 893.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.9, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161699, 39.948348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-st9", "LOCATION_NAME": "Osteria", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.965046, "LONGITUDE": -75.161654, "DATE_RANGE_START": 2019, "Total Visits": 2080.0, "Total Visitors": 1401.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 101.0, "Total Spend": 19036.0, "Total Transactions": 200.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.3, "MEDIAN_SPEND_PER_CUSTOMER": 62.65 }, "geometry": { "type": "Point", "coordinates": [ -75.161654, 39.965046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm3-syv", "LOCATION_NAME": "Bing Bing Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928965, "LONGITUDE": -75.164747, "DATE_RANGE_START": 2019, "Total Visits": 270.0, "Total Visitors": 237.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 30231.0, "Total Transactions": 596.0, "Total Customers": 571.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.94, "MEDIAN_SPEND_PER_CUSTOMER": 44.39 }, "geometry": { "type": "Point", "coordinates": [ -75.164747, 39.928965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "LOCATION_NAME": "Xi'an Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2019, "Total Visits": 203.0, "Total Visitors": 197.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2772.0, "Total Transactions": 98.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.52, "MEDIAN_SPEND_PER_CUSTOMER": 24.54 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-5vf", "LOCATION_NAME": "Mario Brothers Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048464, "LONGITUDE": -75.061807, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 108.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 21.0, "Total Spend": 290.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.13, "MEDIAN_SPEND_PER_CUSTOMER": 13.13 }, "geometry": { "type": "Point", "coordinates": [ -75.061807, 40.048464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "LOCATION_NAME": "In Riva", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2019, "Total Visits": 1922.0, "Total Visitors": 1526.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 32282.0, "Total Transactions": 545.0, "Total Customers": 486.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.25, "MEDIAN_SPEND_PER_CUSTOMER": 48.97 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dwf-wkz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902609, "LONGITUDE": -75.240437, "DATE_RANGE_START": 2019, "Total Visits": 811.0, "Total Visitors": 633.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 14.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.08, "MEDIAN_SPEND_PER_CUSTOMER": 4.08 }, "geometry": { "type": "Point", "coordinates": [ -75.240437, 39.902609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "LOCATION_NAME": "Hilltown Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 48.0, "POI_CBG": 421010213004.0, "MEDIAN_DWELL": 37.0, "Total Spend": 14295.0, "Total Transactions": 356.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.02, "MEDIAN_SPEND_PER_CUSTOMER": 46.67 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7w-psq", "LOCATION_NAME": "England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043231, "LONGITUDE": -75.052729, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 72.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 29.0, "Total Spend": 832.0, "Total Transactions": 35.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.19, "MEDIAN_SPEND_PER_CUSTOMER": 30.26 }, "geometry": { "type": "Point", "coordinates": [ -75.052729, 40.043231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2019, "Total Visits": 343.0, "Total Visitors": 268.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 23943.0, "Total Transactions": 430.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.46, "MEDIAN_SPEND_PER_CUSTOMER": 40.81 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "LOCATION_NAME": "Pizzeria Cappelli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948456, "LONGITUDE": -75.162098, "DATE_RANGE_START": 2019, "Total Visits": 207.0, "Total Visitors": 163.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 35.0, "Total Spend": 8638.0, "Total Transactions": 681.0, "Total Customers": 568.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.9, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162098, 39.948456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "LOCATION_NAME": "Crazy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2019, "Total Visits": 496.0, "Total Visitors": 385.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 61.0, "Total Spend": 12876.0, "Total Transactions": 423.0, "Total Customers": 378.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.48, "MEDIAN_SPEND_PER_CUSTOMER": 25.52 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931641, "LONGITUDE": -75.160608, "DATE_RANGE_START": 2019, "Total Visits": 200.0, "Total Visitors": 130.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4156.0, "Total Transactions": 780.0, "Total Customers": 411.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.19, "MEDIAN_SPEND_PER_CUSTOMER": 6.46 }, "geometry": { "type": "Point", "coordinates": [ -75.160608, 39.931641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vzz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953037, "LONGITUDE": -75.149632, "DATE_RANGE_START": 2019, "Total Visits": 830.0, "Total Visitors": 740.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5351.0, "Total Transactions": 904.0, "Total Customers": 483.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.81, "MEDIAN_SPEND_PER_CUSTOMER": 5.94 }, "geometry": { "type": "Point", "coordinates": [ -75.149632, 39.953037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2019, "Total Visits": 1557.0, "Total Visitors": 1248.0, "POI_CBG": 421010314021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5184.0, "Total Transactions": 162.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 27.26 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-qmk", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.030627, "LONGITUDE": -75.102315, "DATE_RANGE_START": 2019, "Total Visits": 1303.0, "Total Visitors": 1118.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 16207.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 387.66, "MEDIAN_SPEND_PER_CUSTOMER": 661.97 }, "geometry": { "type": "Point", "coordinates": [ -75.102315, 40.030627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.991664, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 122.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 131.0, "Total Spend": 1172.0, "Total Transactions": 77.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.27, "MEDIAN_SPEND_PER_CUSTOMER": 15.33 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.991664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "LOCATION_NAME": "Petrovsky Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2019, "Total Visits": 1211.0, "Total Visitors": 710.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 16029.0, "Total Transactions": 520.0, "Total Customers": 283.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.7, "MEDIAN_SPEND_PER_CUSTOMER": 35.47 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "LOCATION_NAME": "Arch Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953757, "LONGITUDE": -75.15607, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 205.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 94.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15607, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j7q", "LOCATION_NAME": "Boyds Philadelphia", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951667, "LONGITUDE": -75.171279, "DATE_RANGE_START": 2019, "Total Visits": 868.0, "Total Visitors": 533.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 88.0, "Total Spend": 44929.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 1901.0, "MEDIAN_SPEND_PER_CUSTOMER": 3348.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171279, 39.951667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-975", "LOCATION_NAME": "Piper Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.953175, "LONGITUDE": -75.192257, "DATE_RANGE_START": 2019, "Total Visits": 303.0, "Total Visitors": 232.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 58.0, "Total Spend": 1976.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.55, "MEDIAN_SPEND_PER_CUSTOMER": 85.55 }, "geometry": { "type": "Point", "coordinates": [ -75.192257, 39.953175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-z9f", "LOCATION_NAME": "Neighborhood Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.959949, "LONGITUDE": -75.235332, "DATE_RANGE_START": 2019, "Total Visits": 130.0, "Total Visitors": 103.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 130.0, "Total Spend": 559.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.75, "MEDIAN_SPEND_PER_CUSTOMER": 75.75 }, "geometry": { "type": "Point", "coordinates": [ -75.235332, 39.959949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2019, "Total Visits": 5613.0, "Total Visitors": 3899.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 16919.0, "Total Transactions": 746.0, "Total Customers": 538.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-28v", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030475, "LONGITUDE": -75.104415, "DATE_RANGE_START": 2019, "Total Visits": 3513.0, "Total Visitors": 2692.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 257.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.12, "MEDIAN_SPEND_PER_CUSTOMER": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.104415, 40.030475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.961276, "LONGITUDE": -75.199304, "DATE_RANGE_START": 2019, "Total Visits": 811.0, "Total Visitors": 561.0, "POI_CBG": 421010091003.0, "MEDIAN_DWELL": 110.0, "Total Spend": 3336.0, "Total Transactions": 100.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.6, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.199304, 39.961276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2019, "Total Visits": 8119.0, "Total Visitors": 5542.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 19.0, "Total Spend": 690585.0, "Total Transactions": 14483.0, "Total Customers": 8550.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2019, "Total Visits": 245.0, "Total Visitors": 192.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 52.0, "Total Spend": 862.0, "Total Transactions": 57.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.22, "MEDIAN_SPEND_PER_CUSTOMER": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923566, "LONGITUDE": -75.245262, "DATE_RANGE_START": 2019, "Total Visits": 1757.0, "Total Visitors": 1318.0, "POI_CBG": 421010064003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3336.0, "Total Transactions": 573.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.06, "MEDIAN_SPEND_PER_CUSTOMER": 7.23 }, "geometry": { "type": "Point", "coordinates": [ -75.245262, 39.923566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgg-yvz", "LOCATION_NAME": "Favors", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9991, "LONGITUDE": -75.171017, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 60.0, "POI_CBG": 421010172024.0, "MEDIAN_DWELL": 44.0, "Total Spend": 134.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.89, "MEDIAN_SPEND_PER_CUSTOMER": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.171017, 39.9991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmb-cqz", "LOCATION_NAME": "Chapterhouse Cafe & Gallery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941901, "LONGITUDE": -75.157292, "DATE_RANGE_START": 2019, "Total Visits": 3686.0, "Total Visitors": 2584.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 3419.0, "Total Transactions": 595.0, "Total Customers": 385.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.86, "MEDIAN_SPEND_PER_CUSTOMER": 6.16 }, "geometry": { "type": "Point", "coordinates": [ -75.157292, 39.941901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp5-ct9", "LOCATION_NAME": "Crispy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995185, "LONGITUDE": -75.112579, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 25.0, "POI_CBG": 421010178001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 758.0, "Total Transactions": 32.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.3, "MEDIAN_SPEND_PER_CUSTOMER": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112579, 39.995185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.990666, "LONGITUDE": -75.154886, "DATE_RANGE_START": 2019, "Total Visits": 493.0, "Total Visitors": 393.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 9527.0, "Total Transactions": 268.0, "Total Customers": 202.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.44, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154886, 39.990666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@63s-dvw-bhq", "LOCATION_NAME": "Pm Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.961425, "LONGITUDE": -75.224249, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 90.0, "POI_CBG": 421010093003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 166.0, "Total Transactions": 22.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.47, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224249, 39.961425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "LOCATION_NAME": "3 Brothers Pizza & Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421010379002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 911.0, "Total Transactions": 102.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.48 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2019, "Total Visits": 2207.0, "Total Visitors": 1829.0, "POI_CBG": 421010380002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13108.0, "Total Transactions": 593.0, "Total Customers": 446.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.01 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "LOCATION_NAME": "Athleta", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.94988, "LONGITUDE": -75.170326, "DATE_RANGE_START": 2019, "Total Visits": 803.0, "Total Visitors": 600.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 47.0, "Total Spend": 21538.0, "Total Transactions": 222.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.0, "MEDIAN_SPEND_PER_CUSTOMER": 82.99 }, "geometry": { "type": "Point", "coordinates": [ -75.170326, 39.94988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-zmk", "LOCATION_NAME": "Touch of Gold", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941921, "LONGITUDE": -75.153483, "DATE_RANGE_START": 2019, "Total Visits": 2100.0, "Total Visitors": 1601.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 2091.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 348.0, "MEDIAN_SPEND_PER_CUSTOMER": 348.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153483, 39.941921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pnw-psq", "LOCATION_NAME": "Unleashed by Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.969106, "LONGITUDE": -75.139264, "DATE_RANGE_START": 2019, "Total Visits": 865.0, "Total Visitors": 636.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1317.0, "Total Transactions": 50.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.92, "MEDIAN_SPEND_PER_CUSTOMER": 19.92 }, "geometry": { "type": "Point", "coordinates": [ -75.139264, 39.969106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "LOCATION_NAME": "Vintage Wine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2019, "Total Visits": 396.0, "Total Visitors": 298.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 13154.0, "Total Transactions": 260.0, "Total Customers": 233.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.74, "MEDIAN_SPEND_PER_CUSTOMER": 37.24 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-5zz", "LOCATION_NAME": "Panda Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949206, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2019, "Total Visits": 520.0, "Total Visitors": 248.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 264.0, "Total Spend": 728.0, "Total Transactions": 47.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.37, "MEDIAN_SPEND_PER_CUSTOMER": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.949206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947166, "LONGITUDE": -75.157345, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 85.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2979.0, "Total Transactions": 103.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.06, "MEDIAN_SPEND_PER_CUSTOMER": 22.23 }, "geometry": { "type": "Point", "coordinates": [ -75.157345, 39.947166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "LOCATION_NAME": "Spice C", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 168.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 212.0, "Total Spend": 1068.0, "Total Transactions": 25.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.22, "MEDIAN_SPEND_PER_CUSTOMER": 26.94 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "LOCATION_NAME": "Spice 28", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2019, "Total Visits": 433.0, "Total Visitors": 350.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 6025.0, "Total Transactions": 230.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.27, "MEDIAN_SPEND_PER_CUSTOMER": 21.55 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "LOCATION_NAME": "Fiesta Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075222, "LONGITUDE": -75.204582, "DATE_RANGE_START": 2019, "Total Visits": 268.0, "Total Visitors": 240.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 2925.0, "Total Transactions": 108.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.71, "MEDIAN_SPEND_PER_CUSTOMER": 22.95 }, "geometry": { "type": "Point", "coordinates": [ -75.204582, 40.075222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 326.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15253.0, "Total Transactions": 1411.0, "Total Customers": 848.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.85, "MEDIAN_SPEND_PER_CUSTOMER": 11.76 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-zfz", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956578, "LONGITUDE": -75.177927, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 137.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 131.0, "Total Spend": 1514.0, "Total Transactions": 122.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.3, "MEDIAN_SPEND_PER_CUSTOMER": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177927, 39.956578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-nqz", "LOCATION_NAME": "Pret A Manger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952934, "LONGITUDE": -75.19846, "DATE_RANGE_START": 2019, "Total Visits": 4666.0, "Total Visitors": 2392.0, "POI_CBG": 421010088011.0, "MEDIAN_DWELL": 191.0, "Total Spend": 33.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.43, "MEDIAN_SPEND_PER_CUSTOMER": 5.43 }, "geometry": { "type": "Point", "coordinates": [ -75.19846, 39.952934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972318, "LONGITUDE": -75.125675, "DATE_RANGE_START": 2019, "Total Visits": 190.0, "Total Visitors": 122.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3468.0, "Total Transactions": 601.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.64, "MEDIAN_SPEND_PER_CUSTOMER": 6.02 }, "geometry": { "type": "Point", "coordinates": [ -75.125675, 39.972318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "LOCATION_NAME": "Arctic Scoop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 137.0, "Total Spend": 3384.0, "Total Transactions": 331.0, "Total Customers": 292.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp4-wrk", "LOCATION_NAME": "Cosan Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.98972, "LONGITUDE": -75.133321, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 20.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 27.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.133321, 39.98972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj3-3nq", "LOCATION_NAME": "Mora Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022573, "LONGITUDE": -75.156258, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 22.0, "POI_CBG": 421010280001.0, "MEDIAN_DWELL": 158.0, "Total Spend": 831.0, "Total Transactions": 105.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156258, 40.022573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "LOCATION_NAME": "Mid Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2019, "Total Visits": 368.0, "Total Visitors": 178.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 152.0, "Total Spend": 342.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.92, "MEDIAN_SPEND_PER_CUSTOMER": 12.92 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnw-nnq", "LOCATION_NAME": "Kung Fu Necktie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.970272, "LONGITUDE": -75.135925, "DATE_RANGE_START": 2019, "Total Visits": 698.0, "Total Visitors": 600.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 4642.0, "Total Transactions": 212.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 39.970272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-4y9", "LOCATION_NAME": "Vino Volo", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.875903, "LONGITUDE": -75.243029, "DATE_RANGE_START": 2019, "Total Visits": 454923.0, "Total Visitors": 244998.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 245.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243029, 39.875903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "LOCATION_NAME": "Cafe Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2019, "Total Visits": 531.0, "Total Visitors": 433.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 4656.0, "Total Transactions": 112.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.26, "MEDIAN_SPEND_PER_CUSTOMER": 33.38 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-q75", "LOCATION_NAME": "Stacy's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979079, "LONGITUDE": -75.268686, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 108.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 12.0, "Total Spend": 302.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 21.71 }, "geometry": { "type": "Point", "coordinates": [ -75.268686, 39.979079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-2ff", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.057857, "LONGITUDE": -75.164182, "DATE_RANGE_START": 2019, "Total Visits": 498.0, "Total Visitors": 333.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 2364.0, "Total Transactions": 23.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.89, "MEDIAN_SPEND_PER_CUSTOMER": 42.22 }, "geometry": { "type": "Point", "coordinates": [ -75.164182, 40.057857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-6x5", "LOCATION_NAME": "Ocean Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950182, "LONGITUDE": -75.165953, "DATE_RANGE_START": 2019, "Total Visits": 1314.0, "Total Visitors": 1063.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 3858.0, "Total Transactions": 23.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 179.54, "MEDIAN_SPEND_PER_CUSTOMER": 182.32 }, "geometry": { "type": "Point", "coordinates": [ -75.165953, 39.950182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.966061, "LONGITUDE": -75.233588, "DATE_RANGE_START": 2019, "Total Visits": 490.0, "Total Visitors": 360.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 12875.0, "Total Transactions": 346.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.78, "MEDIAN_SPEND_PER_CUSTOMER": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.233588, 39.966061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2019, "Total Visits": 511.0, "Total Visitors": 375.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 16786.0, "Total Transactions": 1926.0, "Total Customers": 1328.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.05 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pnw-ndv", "LOCATION_NAME": "Cake Life Bake Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970543, "LONGITUDE": -75.134645, "DATE_RANGE_START": 2019, "Total Visits": 1629.0, "Total Visitors": 1116.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 60.0, "Total Spend": 10494.0, "Total Transactions": 638.0, "Total Customers": 478.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.03, "MEDIAN_SPEND_PER_CUSTOMER": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.134645, 39.970543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phy-skf", "LOCATION_NAME": "Phoenix Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.018943, "LONGITUDE": -75.136372, "DATE_RANGE_START": 2019, "Total Visits": 343.0, "Total Visitors": 210.0, "POI_CBG": 421010197001.0, "MEDIAN_DWELL": 81.0, "Total Spend": 262.0, "Total Transactions": 62.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 7.64 }, "geometry": { "type": "Point", "coordinates": [ -75.136372, 40.018943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-vfz", "LOCATION_NAME": "Pizza Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05103, "LONGITUDE": -75.059628, "DATE_RANGE_START": 2019, "Total Visits": 7146.0, "Total Visitors": 4769.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2458.0, "Total Transactions": 123.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.86, "MEDIAN_SPEND_PER_CUSTOMER": 18.08 }, "geometry": { "type": "Point", "coordinates": [ -75.059628, 40.05103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981705, "LONGITUDE": -75.180442, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 63.0, "POI_CBG": 421010149004.0, "MEDIAN_DWELL": 51.0, "Total Spend": 207.0, "Total Transactions": 22.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.06, "MEDIAN_SPEND_PER_CUSTOMER": 8.06 }, "geometry": { "type": "Point", "coordinates": [ -75.180442, 39.981705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992304, "LONGITUDE": -75.099808, "DATE_RANGE_START": 2019, "Total Visits": 366.0, "Total Visitors": 338.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 345.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099808, 39.992304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "LOCATION_NAME": "Rittenhouse Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2019, "Total Visits": 3366.0, "Total Visitors": 2150.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 28.0, "Total Spend": 46012.0, "Total Transactions": 2064.0, "Total Customers": 928.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.26, "MEDIAN_SPEND_PER_CUSTOMER": 24.93 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8f-9cq", "LOCATION_NAME": "D & R Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.012762, "LONGITUDE": -75.081478, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 45.0, "POI_CBG": 421010300005.0, "MEDIAN_DWELL": 17.0, "Total Spend": 144.0, "Total Transactions": 17.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 6.97 }, "geometry": { "type": "Point", "coordinates": [ -75.081478, 40.012762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953206, "LONGITUDE": -75.160514, "DATE_RANGE_START": 2019, "Total Visits": 700.0, "Total Visitors": 626.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2867.0, "Total Transactions": 311.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.17, "MEDIAN_SPEND_PER_CUSTOMER": 8.27 }, "geometry": { "type": "Point", "coordinates": [ -75.160514, 39.953206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2019, "Total Visits": 443.0, "Total Visitors": 365.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3862.0, "Total Transactions": 396.0, "Total Customers": 295.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.8, "MEDIAN_SPEND_PER_CUSTOMER": 10.64 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-226@628-p86-hbk", "LOCATION_NAME": "Bishos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075828, "LONGITUDE": -75.085199, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 153.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 770.0, "Total Transactions": 53.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.75 }, "geometry": { "type": "Point", "coordinates": [ -75.085199, 40.075828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-zxq", "LOCATION_NAME": "Federal Donuts South Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94181, "LONGITUDE": -75.152224, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 197.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6454.0, "Total Transactions": 528.0, "Total Customers": 491.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152224, 39.94181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 155.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1557.0, "Total Transactions": 270.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.56, "MEDIAN_SPEND_PER_CUSTOMER": 5.81 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2019, "Total Visits": 1111.0, "Total Visitors": 798.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1548.0, "Total Transactions": 217.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.61, "MEDIAN_SPEND_PER_CUSTOMER": 6.65 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-4sq", "LOCATION_NAME": "Potbelly Sandwich Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979564, "LONGITUDE": -75.153441, "DATE_RANGE_START": 2019, "Total Visits": 265.0, "Total Visitors": 145.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 154.0, "Total Spend": 8415.0, "Total Transactions": 781.0, "Total Customers": 526.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.61, "MEDIAN_SPEND_PER_CUSTOMER": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153441, 39.979564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p8j-bx5", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.037953, "LONGITUDE": -75.038426, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 47.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1115.0, "Total Transactions": 162.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.44, "MEDIAN_SPEND_PER_CUSTOMER": 5.57 }, "geometry": { "type": "Point", "coordinates": [ -75.038426, 40.037953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.959641, "LONGITUDE": -75.218508, "DATE_RANGE_START": 2019, "Total Visits": 608.0, "Total Visitors": 453.0, "POI_CBG": 421010104004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1998.0, "Total Transactions": 148.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.218508, 39.959641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@63s-dvv-rx5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923209, "LONGITUDE": -75.238375, "DATE_RANGE_START": 2019, "Total Visits": 525.0, "Total Visitors": 401.0, "POI_CBG": 421010063003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1288.0, "Total Transactions": 72.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.36, "MEDIAN_SPEND_PER_CUSTOMER": 21.55 }, "geometry": { "type": "Point", "coordinates": [ -75.238375, 39.923209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "LOCATION_NAME": "Hair Fashion & Beyond", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978135, "LONGITUDE": -75.158545, "DATE_RANGE_START": 2019, "Total Visits": 2232.0, "Total Visitors": 1632.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 7835.0, "Total Transactions": 400.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.09, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.158545, 39.978135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-5fz", "LOCATION_NAME": "Madison K", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.961127, "LONGITUDE": -75.141646, "DATE_RANGE_START": 2019, "Total Visits": 866.0, "Total Visitors": 678.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 215.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 64.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141646, 39.961127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2019, "Total Visits": 870.0, "Total Visitors": 411.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4109.0, "Total Transactions": 733.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.54, "MEDIAN_SPEND_PER_CUSTOMER": 8.04 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2019, "Total Visits": 1939.0, "Total Visitors": 1318.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6890.0, "Total Transactions": 400.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.01, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-3wk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.09991, "LONGITUDE": -75.009414, "DATE_RANGE_START": 2019, "Total Visits": 2672.0, "Total Visitors": 1984.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 678.0, "Total Transactions": 33.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.15, "MEDIAN_SPEND_PER_CUSTOMER": 36.64 }, "geometry": { "type": "Point", "coordinates": [ -75.009414, 40.09991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2019, "Total Visits": 4672.0, "Total Visitors": 2619.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9845.0, "Total Transactions": 568.0, "Total Customers": 355.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032146, "LONGITUDE": -75.063064, "DATE_RANGE_START": 2019, "Total Visits": 1502.0, "Total Visitors": 1006.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14904.0, "Total Transactions": 706.0, "Total Customers": 406.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063064, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-b8v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.934826, "LONGITUDE": -75.178911, "DATE_RANGE_START": 2019, "Total Visits": 250.0, "Total Visitors": 167.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1788.0, "Total Transactions": 187.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.13, "MEDIAN_SPEND_PER_CUSTOMER": 9.08 }, "geometry": { "type": "Point", "coordinates": [ -75.178911, 39.934826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9q-jsq", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.084384, "LONGITUDE": -75.022786, "DATE_RANGE_START": 2019, "Total Visits": 247.0, "Total Visitors": 217.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1426.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 113.96, "MEDIAN_SPEND_PER_CUSTOMER": 113.96 }, "geometry": { "type": "Point", "coordinates": [ -75.022786, 40.084384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmd-snq", "LOCATION_NAME": "Pure Design", "TOP_CATEGORY": "Florists", "LATITUDE": 39.946224, "LONGITUDE": -75.178525, "DATE_RANGE_START": 2019, "Total Visits": 142.0, "Total Visitors": 133.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1394.0, "Total Transactions": 23.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178525, 39.946224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2019, "Total Visits": 3803.0, "Total Visitors": 2678.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 140.0, "Total Spend": 13768.0, "Total Transactions": 525.0, "Total Customers": 436.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.067993, "LONGITUDE": -75.198422, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 202.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 3236.0, "Total Transactions": 103.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.32, "MEDIAN_SPEND_PER_CUSTOMER": 21.19 }, "geometry": { "type": "Point", "coordinates": [ -75.198422, 40.067993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-fzz", "LOCATION_NAME": "The Children's Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.917936, "LONGITUDE": -75.185126, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 195.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.34, "MEDIAN_SPEND_PER_CUSTOMER": 27.34 }, "geometry": { "type": "Point", "coordinates": [ -75.185126, 39.917936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj9-4d9", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.039716, "LONGITUDE": -75.144869, "DATE_RANGE_START": 2019, "Total Visits": 325.0, "Total Visitors": 262.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5574.0, "Total Transactions": 62.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.98, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144869, 40.039716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-vxq", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055747, "LONGITUDE": -75.073256, "DATE_RANGE_START": 2019, "Total Visits": 546.0, "Total Visitors": 396.0, "POI_CBG": 421010338002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 311.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073256, 40.055747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-gzf", "LOCATION_NAME": "Maximum Level Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957373, "LONGITUDE": -75.223958, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 55.0, "POI_CBG": 421010085002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 463.0, "Total Transactions": 15.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223958, 39.957373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pnx-sh5", "LOCATION_NAME": "The International", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.974951, "LONGITUDE": -75.134534, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 55.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 41.0, "Total Spend": 13948.0, "Total Transactions": 353.0, "Total Customers": 280.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.2, "MEDIAN_SPEND_PER_CUSTOMER": 31.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134534, 39.974951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.973475, "LONGITUDE": -75.159323, "DATE_RANGE_START": 2019, "Total Visits": 415.0, "Total Visitors": 350.0, "POI_CBG": 421010140003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1580.0, "Total Transactions": 87.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.09, "MEDIAN_SPEND_PER_CUSTOMER": 24.15 }, "geometry": { "type": "Point", "coordinates": [ -75.159323, 39.973475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.08189, "LONGITUDE": -75.037804, "DATE_RANGE_START": 2019, "Total Visits": 473.0, "Total Visitors": 301.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 397.0, "Total Transactions": 48.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.35, "MEDIAN_SPEND_PER_CUSTOMER": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.037804, 40.08189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvw-9pv", "LOCATION_NAME": "52nd Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963376, "LONGITUDE": -75.224566, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 22.0, "POI_CBG": 421010093005.0, "MEDIAN_DWELL": 302.0, "Total Spend": 968.0, "Total Transactions": 97.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.31, "MEDIAN_SPEND_PER_CUSTOMER": 10.73 }, "geometry": { "type": "Point", "coordinates": [ -75.224566, 39.963376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p86-hbk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.075694, "LONGITUDE": -75.084798, "DATE_RANGE_START": 2019, "Total Visits": 705.0, "Total Visitors": 490.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2732.0, "Total Transactions": 90.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.72, "MEDIAN_SPEND_PER_CUSTOMER": 35.67 }, "geometry": { "type": "Point", "coordinates": [ -75.084798, 40.075694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "LOCATION_NAME": "Bok Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.925217, "LONGITUDE": -75.160024, "DATE_RANGE_START": 2019, "Total Visits": 1561.0, "Total Visitors": 1186.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 75.0, "Total Spend": 58840.0, "Total Transactions": 3380.0, "Total Customers": 2084.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.37, "MEDIAN_SPEND_PER_CUSTOMER": 20.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160024, 39.925217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "LOCATION_NAME": "Javies Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.034848, "LONGITUDE": -75.234562, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 202.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 44216.0, "Total Transactions": 1602.0, "Total Customers": 971.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.08, "MEDIAN_SPEND_PER_CUSTOMER": 32.03 }, "geometry": { "type": "Point", "coordinates": [ -75.234562, 40.034848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp5-qxq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.997222, "LONGITUDE": -75.123675, "DATE_RANGE_START": 2019, "Total Visits": 296.0, "Total Visitors": 247.0, "POI_CBG": 421010177025.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1195.0, "Total Transactions": 42.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.39, "MEDIAN_SPEND_PER_CUSTOMER": 36.75 }, "geometry": { "type": "Point", "coordinates": [ -75.123675, 39.997222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-t5f", "LOCATION_NAME": "Cavanaugh's Riverdeck", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957746, "LONGITUDE": -75.137247, "DATE_RANGE_START": 2019, "Total Visits": 491.0, "Total Visitors": 393.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 346.0, "Total Transactions": 27.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.47, "MEDIAN_SPEND_PER_CUSTOMER": 14.34 }, "geometry": { "type": "Point", "coordinates": [ -75.137247, 39.957746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "LOCATION_NAME": "South", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2019, "Total Visits": 563.0, "Total Visitors": 483.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 85.0, "Total Spend": 8164.0, "Total Transactions": 296.0, "Total Customers": 252.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-835", "LOCATION_NAME": "Luhv Vegan Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953213, "LONGITUDE": -75.159384, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 3495.0, "Total Transactions": 300.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.63, "MEDIAN_SPEND_PER_CUSTOMER": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.159384, 39.953213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2019, "Total Visits": 433.0, "Total Visitors": 313.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 865.0, "Total Transactions": 42.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.98, "MEDIAN_SPEND_PER_CUSTOMER": 14.59 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.081571, "LONGITUDE": -75.172058, "DATE_RANGE_START": 2019, "Total Visits": 1837.0, "Total Visitors": 1238.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 894.0, "Total Transactions": 68.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.74, "MEDIAN_SPEND_PER_CUSTOMER": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.172058, 40.081571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "LOCATION_NAME": "Green Leaf Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 120.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 37.0, "Total Spend": 932.0, "Total Transactions": 43.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.73, "MEDIAN_SPEND_PER_CUSTOMER": 27.53 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2019, "Total Visits": 1118.0, "Total Visitors": 903.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2877.0, "Total Transactions": 153.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.71, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "LOCATION_NAME": "El Poquito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 143.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 97.0, "Total Spend": 35756.0, "Total Transactions": 613.0, "Total Customers": 520.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.24, "MEDIAN_SPEND_PER_CUSTOMER": 61.12 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-225@628-pmf-sqz", "LOCATION_NAME": "Rag & Bone", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950021, "LONGITUDE": -75.167636, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 165.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 11187.0, "Total Transactions": 58.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 111.0, "MEDIAN_SPEND_PER_CUSTOMER": 195.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167636, 39.950021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@63s-dvw-mrk", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.959737, "LONGITUDE": -75.225178, "DATE_RANGE_START": 2019, "Total Visits": 301.0, "Total Visitors": 255.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5802.0, "Total Transactions": 55.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.98, "MEDIAN_SPEND_PER_CUSTOMER": 75.59 }, "geometry": { "type": "Point", "coordinates": [ -75.225178, 39.959737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jgk", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921384, "LONGITUDE": -75.145, "DATE_RANGE_START": 2019, "Total Visits": 696.0, "Total Visitors": 600.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 232.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.44, "MEDIAN_SPEND_PER_CUSTOMER": 27.44 }, "geometry": { "type": "Point", "coordinates": [ -75.145, 39.921384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-h5z", "LOCATION_NAME": "Buena Onda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960932, "LONGITUDE": -75.170707, "DATE_RANGE_START": 2019, "Total Visits": 608.0, "Total Visitors": 338.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 646.0, "Total Spend": 17760.0, "Total Transactions": 823.0, "Total Customers": 666.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.67, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.170707, 39.960932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2019, "Total Visits": 1409.0, "Total Visitors": 958.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 8.0, "Total Spend": 325.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.13, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-789", "LOCATION_NAME": "VIX Emporium", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.94808, "LONGITUDE": -75.223905, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 110.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 2327.0, "Total Transactions": 63.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.43, "MEDIAN_SPEND_PER_CUSTOMER": 30.46 }, "geometry": { "type": "Point", "coordinates": [ -75.223905, 39.94808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.915644, "LONGITUDE": -75.139656, "DATE_RANGE_START": 2019, "Total Visits": 1069.0, "Total Visitors": 883.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3553.0, "Total Transactions": 305.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.58, "MEDIAN_SPEND_PER_CUSTOMER": 8.66 }, "geometry": { "type": "Point", "coordinates": [ -75.139656, 39.915644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.060394, "LONGITUDE": -75.164248, "DATE_RANGE_START": 2019, "Total Visits": 190.0, "Total Visitors": 163.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 18742.0, "Total Transactions": 455.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 30.65 }, "geometry": { "type": "Point", "coordinates": [ -75.164248, 40.060394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-dvz", "LOCATION_NAME": "Lighthouse Thrift Shop", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.051415, "LONGITUDE": -75.093615, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 58.0, "POI_CBG": 421010306007.0, "MEDIAN_DWELL": 16.0, "Total Spend": 51.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.43, "MEDIAN_SPEND_PER_CUSTOMER": 15.43 }, "geometry": { "type": "Point", "coordinates": [ -75.093615, 40.051415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmb-gkz", "LOCATION_NAME": "Effie's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945113, "LONGITUDE": -75.160611, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 23.0, "Total Spend": 3877.0, "Total Transactions": 55.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.26, "MEDIAN_SPEND_PER_CUSTOMER": 68.26 }, "geometry": { "type": "Point", "coordinates": [ -75.160611, 39.945113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "LOCATION_NAME": "Dragon Phoenix House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2019, "Total Visits": 168.0, "Total Visitors": 77.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 136.0, "Total Spend": 1137.0, "Total Transactions": 43.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.06, "MEDIAN_SPEND_PER_CUSTOMER": 32.24 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-mrk", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953042, "LONGITUDE": -75.167502, "DATE_RANGE_START": 2019, "Total Visits": 1596.0, "Total Visitors": 755.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 178.0, "Total Spend": 378.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.167502, 39.953042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-9cq", "LOCATION_NAME": "Federal Donuts West", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953537, "LONGITUDE": -75.193139, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 57.0, "Total Spend": 18259.0, "Total Transactions": 1527.0, "Total Customers": 1331.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193139, 39.953537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94013, "LONGITUDE": -75.165831, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 172.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5293.0, "Total Transactions": 991.0, "Total Customers": 520.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.19, "MEDIAN_SPEND_PER_CUSTOMER": 5.92 }, "geometry": { "type": "Point", "coordinates": [ -75.165831, 39.94013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-6x5", "LOCATION_NAME": "The North Face", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.949894, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2019, "Total Visits": 430.0, "Total Visitors": 323.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 7831.0, "Total Transactions": 95.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.0, "MEDIAN_SPEND_PER_CUSTOMER": 69.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2019, "Total Visits": 650.0, "Total Visitors": 493.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 921.0, "Total Transactions": 63.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "LOCATION_NAME": "Kostas Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96897, "LONGITUDE": -75.134955, "DATE_RANGE_START": 2019, "Total Visits": 406.0, "Total Visitors": 275.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 21789.0, "Total Transactions": 1073.0, "Total Customers": 683.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134955, 39.96897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-r49", "LOCATION_NAME": "IGA", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.975356, "LONGITUDE": -75.119618, "DATE_RANGE_START": 2019, "Total Visits": 2154.0, "Total Visitors": 1203.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3967.0, "Total Transactions": 140.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.04, "MEDIAN_SPEND_PER_CUSTOMER": 27.33 }, "geometry": { "type": "Point", "coordinates": [ -75.119618, 39.975356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm4-75z", "LOCATION_NAME": "Emily's Cold Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.930875, "LONGITUDE": -75.171865, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 85.0, "POI_CBG": 421010030015.0, "MEDIAN_DWELL": 10.0, "Total Spend": 268.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.5, "MEDIAN_SPEND_PER_CUSTOMER": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171865, 39.930875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj6-fj9", "LOCATION_NAME": "Sparks Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.04458, "LONGITUDE": -75.123446, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 43.0, "POI_CBG": 421010274025.0, "MEDIAN_DWELL": 169.0, "Total Spend": 506.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123446, 40.04458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6c5", "LOCATION_NAME": "Jefferson Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949825, "LONGITUDE": -75.158415, "DATE_RANGE_START": 2019, "Total Visits": 24205.0, "Total Visitors": 10594.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 255.0, "Total Spend": 3838.0, "Total Transactions": 170.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.949825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.061169, "LONGITUDE": -75.237242, "DATE_RANGE_START": 2019, "Total Visits": 760.0, "Total Visitors": 541.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6050.0, "Total Transactions": 247.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.4, "MEDIAN_SPEND_PER_CUSTOMER": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.237242, 40.061169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvw-jgk", "LOCATION_NAME": "Sun Ray Drugs", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957136, "LONGITUDE": -75.22573, "DATE_RANGE_START": 2019, "Total Visits": 320.0, "Total Visitors": 233.0, "POI_CBG": 421010085006.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1001.0, "Total Transactions": 72.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.54, "MEDIAN_SPEND_PER_CUSTOMER": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.22573, 39.957136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pj9-yvz", "LOCATION_NAME": "My Daughters Wedding", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.037569, "LONGITUDE": -75.130408, "DATE_RANGE_START": 2019, "Total Visits": 1577.0, "Total Visitors": 1064.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 225.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.4, "MEDIAN_SPEND_PER_CUSTOMER": 67.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130408, 40.037569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.91305, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2019, "Total Visits": 351.0, "Total Visitors": 305.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1873.0, "Total Transactions": 112.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.41, "MEDIAN_SPEND_PER_CUSTOMER": 17.08 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.91305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.021226, "LONGITUDE": -75.14987, "DATE_RANGE_START": 2019, "Total Visits": 1601.0, "Total Visitors": 1076.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 594.0, "Total Transactions": 57.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.28, "MEDIAN_SPEND_PER_CUSTOMER": 10.23 }, "geometry": { "type": "Point", "coordinates": [ -75.14987, 40.021226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998177, "LONGITUDE": -75.124544, "DATE_RANGE_START": 2019, "Total Visits": 383.0, "Total Visitors": 268.0, "POI_CBG": 421010177025.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1193.0, "Total Transactions": 197.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.7, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.124544, 39.998177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949499, "LONGITUDE": -75.166653, "DATE_RANGE_START": 2019, "Total Visits": 1541.0, "Total Visitors": 1191.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 17.0, "Total Spend": 26062.0, "Total Transactions": 2450.0, "Total Customers": 1686.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.21, "MEDIAN_SPEND_PER_CUSTOMER": 11.29 }, "geometry": { "type": "Point", "coordinates": [ -75.166653, 39.949499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.935654, "LONGITUDE": -75.186436, "DATE_RANGE_START": 2019, "Total Visits": 463.0, "Total Visitors": 263.0, "POI_CBG": 421010032004.0, "MEDIAN_DWELL": 99.0, "Total Spend": 202.0, "Total Transactions": 22.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.48, "MEDIAN_SPEND_PER_CUSTOMER": 15.62 }, "geometry": { "type": "Point", "coordinates": [ -75.186436, 39.935654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2019, "Total Visits": 1802.0, "Total Visitors": 810.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 2928.0, "Total Transactions": 53.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.19, "MEDIAN_SPEND_PER_CUSTOMER": 34.28 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-bhq", "LOCATION_NAME": "Pet Friendly Dog Bakery", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.025005, "LONGITUDE": -75.222997, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 93.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 326.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.51, "MEDIAN_SPEND_PER_CUSTOMER": 40.83 }, "geometry": { "type": "Point", "coordinates": [ -75.222997, 40.025005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-mzf", "LOCATION_NAME": "Cantina Dos Segundos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964821, "LONGITUDE": -75.140233, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 118.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 31916.0, "Total Transactions": 731.0, "Total Customers": 668.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.7, "MEDIAN_SPEND_PER_CUSTOMER": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140233, 39.964821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "LOCATION_NAME": "Oregon Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 143.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7341.0, "Total Transactions": 586.0, "Total Customers": 396.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.13, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@63s-dvw-dy9", "LOCATION_NAME": "Coffee Deli Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963737, "LONGITUDE": -75.220341, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010093001.0, "MEDIAN_DWELL": 360.0, "Total Spend": 78.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.53, "MEDIAN_SPEND_PER_CUSTOMER": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.220341, 39.963737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2019, "Total Visits": 410.0, "Total Visitors": 343.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 12048.0, "Total Transactions": 903.0, "Total Customers": 680.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.53 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012435, "LONGITUDE": -75.119008, "DATE_RANGE_START": 2019, "Total Visits": 924.0, "Total Visitors": 725.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13520.0, "Total Transactions": 1238.0, "Total Customers": 848.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.24, "MEDIAN_SPEND_PER_CUSTOMER": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119008, 40.012435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-pjv", "LOCATION_NAME": "Murph's Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968904, "LONGITUDE": -75.133385, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 25.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2809.0, "Total Transactions": 112.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.48, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133385, 39.968904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgh-xh5", "LOCATION_NAME": "Cure Discount Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.988199, "LONGITUDE": -75.156168, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 27.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 58.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156168, 39.988199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-5mk", "LOCATION_NAME": "West Elm", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950642, "LONGITUDE": -75.163094, "DATE_RANGE_START": 2019, "Total Visits": 1079.0, "Total Visitors": 705.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 115.0, "Total Spend": 13150.0, "Total Transactions": 115.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.64, "MEDIAN_SPEND_PER_CUSTOMER": 37.82 }, "geometry": { "type": "Point", "coordinates": [ -75.163094, 39.950642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.029917, "LONGITUDE": -75.0978, "DATE_RANGE_START": 2019, "Total Visits": 8668.0, "Total Visitors": 5230.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 149712.0, "Total Transactions": 1189.0, "Total Customers": 666.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.55, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0978, 40.029917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-r6k", "LOCATION_NAME": "Grindcore House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929019, "LONGITUDE": -75.151738, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 38.0, "POI_CBG": 421010027023.0, "MEDIAN_DWELL": 21.0, "Total Spend": 11200.0, "Total Transactions": 1169.0, "Total Customers": 468.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.62, "MEDIAN_SPEND_PER_CUSTOMER": 14.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151738, 39.929019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "LOCATION_NAME": "Tires Plus", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2019, "Total Visits": 618.0, "Total Visitors": 515.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 63.0, "Total Spend": 2695.0, "Total Transactions": 25.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.81, "MEDIAN_SPEND_PER_CUSTOMER": 62.81 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051659, "LONGITUDE": -75.008179, "DATE_RANGE_START": 2019, "Total Visits": 545.0, "Total Visitors": 420.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3771.0, "Total Transactions": 180.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.16 }, "geometry": { "type": "Point", "coordinates": [ -75.008179, 40.051659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-yvz", "LOCATION_NAME": "Panda Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037582, "LONGITUDE": -75.130053, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010274012.0, "MEDIAN_DWELL": 105.0, "Total Spend": 255.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.130053, 40.037582 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "LOCATION_NAME": "East Coast Tropicals", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 115.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 4956.0, "Total Transactions": 28.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 120.48, "MEDIAN_SPEND_PER_CUSTOMER": 121.07 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-w8v", "LOCATION_NAME": "Main Street Madness", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.018, "LONGITUDE": -75.213362, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 22.0, "POI_CBG": 421010209003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 212.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.5, "MEDIAN_SPEND_PER_CUSTOMER": 42.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213362, 40.018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj6-99f", "LOCATION_NAME": "Red Wine Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033146, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 163.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 53.0, "Total Spend": 549.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.28, "MEDIAN_SPEND_PER_CUSTOMER": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.033146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2019, "Total Visits": 866.0, "Total Visitors": 633.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 73298.0, "Total Transactions": 4654.0, "Total Customers": 2052.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.86, "MEDIAN_SPEND_PER_CUSTOMER": 21.35 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2019, "Total Visits": 1641.0, "Total Visitors": 770.0, "POI_CBG": 421010183001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17270.0, "Total Transactions": 1849.0, "Total Customers": 605.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.07, "MEDIAN_SPEND_PER_CUSTOMER": 13.32 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "LOCATION_NAME": "Red Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2019, "Total Visits": 1131.0, "Total Visitors": 929.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 63.0, "Total Spend": 17996.0, "Total Transactions": 308.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.0, "MEDIAN_SPEND_PER_CUSTOMER": 58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "LOCATION_NAME": "Rice & Mix", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2019, "Total Visits": 313.0, "Total Visitors": 255.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4263.0, "Total Transactions": 293.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "LOCATION_NAME": "Cleavers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951397, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2019, "Total Visits": 292.0, "Total Visitors": 273.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 23316.0, "Total Transactions": 1034.0, "Total Customers": 868.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.74, "MEDIAN_SPEND_PER_CUSTOMER": 20.68 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 39.951397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2019, "Total Visits": 240.0, "Total Visitors": 205.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 34528.0, "Total Transactions": 3227.0, "Total Customers": 1976.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.21, "MEDIAN_SPEND_PER_CUSTOMER": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-w8v", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955482, "LONGITUDE": -75.18177, "DATE_RANGE_START": 2019, "Total Visits": 425.0, "Total Visitors": 380.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 19078.0, "Total Transactions": 2180.0, "Total Customers": 1721.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.49 }, "geometry": { "type": "Point", "coordinates": [ -75.18177, 39.955482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm7-qj9", "LOCATION_NAME": "Cafe y Chocolate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924573, "LONGITUDE": -75.172685, "DATE_RANGE_START": 2019, "Total Visits": 538.0, "Total Visitors": 311.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 643.0, "Total Spend": 3053.0, "Total Transactions": 113.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.95, "MEDIAN_SPEND_PER_CUSTOMER": 30.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172685, 39.924573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "LOCATION_NAME": "Quails", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 230.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3886.0, "Total Transactions": 40.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.75, "MEDIAN_SPEND_PER_CUSTOMER": 83.75 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-rhq", "LOCATION_NAME": "Moonshine Philly", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925012, "LONGITUDE": -75.151601, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 27.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 122.0, "Total Spend": 11979.0, "Total Transactions": 282.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.58, "MEDIAN_SPEND_PER_CUSTOMER": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151601, 39.925012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-ty9", "LOCATION_NAME": "Sakura Japanese Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962988, "LONGITUDE": -75.163765, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 28.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2607.0, "Total Transactions": 113.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 22.44 }, "geometry": { "type": "Point", "coordinates": [ -75.163765, 39.962988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 39.932572, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2019, "Total Visits": 701.0, "Total Visitors": 621.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6106.0, "Total Transactions": 110.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.09, "MEDIAN_SPEND_PER_CUSTOMER": 39.22 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.119147, "LONGITUDE": -75.015143, "DATE_RANGE_START": 2019, "Total Visits": 5390.0, "Total Visitors": 2975.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 64150.0, "Total Transactions": 716.0, "Total Customers": 343.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.73, "MEDIAN_SPEND_PER_CUSTOMER": 51.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015143, 40.119147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "LOCATION_NAME": "Sue's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946236, "LONGITUDE": -75.145477, "DATE_RANGE_START": 2019, "Total Visits": 1094.0, "Total Visitors": 725.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 120.0, "Total Spend": 5752.0, "Total Transactions": 400.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.81, "MEDIAN_SPEND_PER_CUSTOMER": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.145477, 39.946236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.991985, "LONGITUDE": -75.178334, "DATE_RANGE_START": 2019, "Total Visits": 1522.0, "Total Visitors": 886.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1897.0, "Total Transactions": 133.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.36, "MEDIAN_SPEND_PER_CUSTOMER": 27.88 }, "geometry": { "type": "Point", "coordinates": [ -75.178334, 39.991985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-r49", "LOCATION_NAME": "The Richmond Bottle Shop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.975358, "LONGITUDE": -75.119619, "DATE_RANGE_START": 2019, "Total Visits": 2137.0, "Total Visitors": 1198.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 368.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.51, "MEDIAN_SPEND_PER_CUSTOMER": 36.56 }, "geometry": { "type": "Point", "coordinates": [ -75.119619, 39.975358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp5-5fz", "LOCATION_NAME": "El Sabor Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981887, "LONGITUDE": -75.135939, "DATE_RANGE_START": 2019, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010157001.0, "MEDIAN_DWELL": null, "Total Spend": 2179.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.57, "MEDIAN_SPEND_PER_CUSTOMER": 42.57 }, "geometry": { "type": "Point", "coordinates": [ -75.135939, 39.981887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjk-rff", "LOCATION_NAME": "The Cedars House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.083003, "LONGITUDE": -75.232456, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 18.0, "POI_CBG": 421010384001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1067.0, "Total Transactions": 70.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.35, "MEDIAN_SPEND_PER_CUSTOMER": 14.34 }, "geometry": { "type": "Point", "coordinates": [ -75.232456, 40.083003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "LOCATION_NAME": "Chestnut Hill Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 716.0, "Total Spend": 330.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj4-c89", "LOCATION_NAME": "Wister Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.034154, "LONGITUDE": -75.160332, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 27.0, "POI_CBG": 421010245002.0, "MEDIAN_DWELL": 712.0, "Total Spend": 20.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.99, "MEDIAN_SPEND_PER_CUSTOMER": 2.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160332, 40.034154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-4gk", "LOCATION_NAME": "I Heart Cambodia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921392, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 27.0, "POI_CBG": 421010041012.0, "MEDIAN_DWELL": 421.0, "Total Spend": 946.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.14, "MEDIAN_SPEND_PER_CUSTOMER": 49.18 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.921392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "LOCATION_NAME": "Jack's place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 38.0, "POI_CBG": 421010326007.0, "MEDIAN_DWELL": 7.0, "Total Spend": 127.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.72, "MEDIAN_SPEND_PER_CUSTOMER": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "LOCATION_NAME": "Villavillekula", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075713, "LONGITUDE": -75.205415, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 80.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 736.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.44, "MEDIAN_SPEND_PER_CUSTOMER": 67.44 }, "geometry": { "type": "Point", "coordinates": [ -75.205415, 40.075713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-47q", "LOCATION_NAME": "Kid City", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.921142, "LONGITUDE": -75.185929, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 185.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6155.0, "Total Transactions": 188.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.96, "MEDIAN_SPEND_PER_CUSTOMER": 25.12 }, "geometry": { "type": "Point", "coordinates": [ -75.185929, 39.921142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2019, "Total Visits": 1461.0, "Total Visitors": 938.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 142120.0, "Total Transactions": 696.0, "Total Customers": 453.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.31, "MEDIAN_SPEND_PER_CUSTOMER": 48.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-225@628-pm9-zs5", "LOCATION_NAME": "Aurora Grace", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.942077, "LONGITUDE": -75.150507, "DATE_RANGE_START": 2019, "Total Visits": 2189.0, "Total Visitors": 1819.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 36.0, "Total Spend": 956.0, "Total Transactions": 30.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.98, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150507, 39.942077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-gzf", "LOCATION_NAME": "Tria Cafe Wash West", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.946658, "LONGITUDE": -75.160853, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 143.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 636.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.01, "MEDIAN_SPEND_PER_CUSTOMER": 46.13 }, "geometry": { "type": "Point", "coordinates": [ -75.160853, 39.946658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-225@628-pgb-8y9", "LOCATION_NAME": "Parkway Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967017, "LONGITUDE": -75.177894, "DATE_RANGE_START": 2019, "Total Visits": 3883.0, "Total Visitors": 2310.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 132.0, "Total Spend": 2034.0, "Total Transactions": 47.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.85, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177894, 39.967017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.9542, "LONGITUDE": -75.225712, "DATE_RANGE_START": 2019, "Total Visits": 1921.0, "Total Visitors": 1158.0, "POI_CBG": 421010085003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 451.0, "Total Transactions": 33.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.48, "MEDIAN_SPEND_PER_CUSTOMER": 19.02 }, "geometry": { "type": "Point", "coordinates": [ -75.225712, 39.9542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2019, "Total Visits": 6240.0, "Total Visitors": 4471.0, "POI_CBG": 421010361002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8089.0, "Total Transactions": 355.0, "Total Customers": 245.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.24 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.002434, "LONGITUDE": -75.100336, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 90.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 70255.0, "Total Transactions": 53.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 384.41, "MEDIAN_SPEND_PER_CUSTOMER": 158.92 }, "geometry": { "type": "Point", "coordinates": [ -75.100336, 40.002434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "LOCATION_NAME": "Chubby's Fox Chase Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2019, "Total Visits": 163.0, "Total Visitors": 27.0, "POI_CBG": 421010341006.0, "MEDIAN_DWELL": 1357.0, "Total Spend": 593.0, "Total Transactions": 40.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.36, "MEDIAN_SPEND_PER_CUSTOMER": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-psq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.120378, "LONGITUDE": -75.018088, "DATE_RANGE_START": 2019, "Total Visits": 785.0, "Total Visitors": 573.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2033.0, "Total Transactions": 120.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.66, "MEDIAN_SPEND_PER_CUSTOMER": 12.31 }, "geometry": { "type": "Point", "coordinates": [ -75.018088, 40.120378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "LOCATION_NAME": "Dick's Sporting Goods", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.085609, "LONGITUDE": -74.967208, "DATE_RANGE_START": 2019, "Total Visits": 851.0, "Total Visitors": 741.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 34355.0, "Total Transactions": 598.0, "Total Customers": 526.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.14, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967208, 40.085609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pnt-3wk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974268, "LONGITUDE": -75.119829, "DATE_RANGE_START": 2019, "Total Visits": 250.0, "Total Visitors": 227.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1706.0, "Total Transactions": 80.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.69, "MEDIAN_SPEND_PER_CUSTOMER": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.119829, 39.974268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjj-wzf", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.073365, "LONGITUDE": -75.241949, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 183.0, "POI_CBG": 421010384001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 8006.0, "Total Transactions": 77.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.03, "MEDIAN_SPEND_PER_CUSTOMER": 29.42 }, "geometry": { "type": "Point", "coordinates": [ -75.241949, 40.073365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.954271, "LONGITUDE": -75.167991, "DATE_RANGE_START": 2019, "Total Visits": 12348.0, "Total Visitors": 6193.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 129.0, "Total Spend": 17910.0, "Total Transactions": 1049.0, "Total Customers": 653.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.23, "MEDIAN_SPEND_PER_CUSTOMER": 13.29 }, "geometry": { "type": "Point", "coordinates": [ -75.167991, 39.954271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046821, "LONGITUDE": -75.055507, "DATE_RANGE_START": 2019, "Total Visits": 415.0, "Total Visitors": 336.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 16.0, "Total Spend": 2151.0, "Total Transactions": 67.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.42, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.055507, 40.046821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.060462, "LONGITUDE": -75.081398, "DATE_RANGE_START": 2019, "Total Visits": 696.0, "Total Visitors": 511.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 255.0, "Total Transactions": 18.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.04 }, "geometry": { "type": "Point", "coordinates": [ -75.081398, 40.060462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-vvf", "LOCATION_NAME": "Steve Madden", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.089544, "LONGITUDE": -74.961668, "DATE_RANGE_START": 2019, "Total Visits": 461.0, "Total Visitors": 445.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 294.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.89, "MEDIAN_SPEND_PER_CUSTOMER": 23.89 }, "geometry": { "type": "Point", "coordinates": [ -74.961668, 40.089544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pmf-j35", "LOCATION_NAME": "Head Start Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950646, "LONGITUDE": -75.169071, "DATE_RANGE_START": 2019, "Total Visits": 375.0, "Total Visitors": 326.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4534.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 205.0, "MEDIAN_SPEND_PER_CUSTOMER": 235.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 39.950646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "LOCATION_NAME": "Dollar Value", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2019, "Total Visits": 350.0, "Total Visitors": 275.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1430.0, "Total Transactions": 100.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "LOCATION_NAME": "Loco Dollar", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998868, "LONGITUDE": -75.126992, "DATE_RANGE_START": 2019, "Total Visits": 435.0, "Total Visitors": 335.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 981.0, "Total Transactions": 53.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.09, "MEDIAN_SPEND_PER_CUSTOMER": 16.56 }, "geometry": { "type": "Point", "coordinates": [ -75.126992, 39.998868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2019, "Total Visits": 170.0, "Total Visitors": 157.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 33954.0, "Total Transactions": 865.0, "Total Customers": 705.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.84, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.063794, "LONGITUDE": -75.238861, "DATE_RANGE_START": 2019, "Total Visits": 538.0, "Total Visitors": 418.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 18225.0, "Total Transactions": 1911.0, "Total Customers": 1173.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.28, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.238861, 40.063794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pjf-kvf", "LOCATION_NAME": "The Bone Appetite", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.076504, "LONGITUDE": -75.206829, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 102.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4299.0, "Total Transactions": 123.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.94, "MEDIAN_SPEND_PER_CUSTOMER": 25.67 }, "geometry": { "type": "Point", "coordinates": [ -75.206829, 40.076504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "LOCATION_NAME": "Bar Bombon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 165.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 55.0, "Total Spend": 29668.0, "Total Transactions": 608.0, "Total Customers": 533.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.8, "MEDIAN_SPEND_PER_CUSTOMER": 46.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "LOCATION_NAME": "Le Viet Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2019, "Total Visits": 326.0, "Total Visitors": 243.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 2346.0, "Total Transactions": 68.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.1, "MEDIAN_SPEND_PER_CUSTOMER": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "LOCATION_NAME": "Dragon City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2019, "Total Visits": 220.0, "Total Visitors": 182.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1271.0, "Total Transactions": 67.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.48, "MEDIAN_SPEND_PER_CUSTOMER": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-phy-6kz", "LOCATION_NAME": "La Casa Del Sandwich", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024809, "LONGITUDE": -75.123343, "DATE_RANGE_START": 2019, "Total Visits": 688.0, "Total Visitors": 553.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 97.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.25, "MEDIAN_SPEND_PER_CUSTOMER": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.123343, 40.024809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-djv", "LOCATION_NAME": "Quality Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050855, "LONGITUDE": -75.094676, "DATE_RANGE_START": 2019, "Total Visits": 396.0, "Total Visitors": 273.0, "POI_CBG": 421010306007.0, "MEDIAN_DWELL": 59.0, "Total Spend": 40.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.02, "MEDIAN_SPEND_PER_CUSTOMER": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.094676, 40.050855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-975", "LOCATION_NAME": "DK Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952998, "LONGITUDE": -75.192279, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 57.0, "Total Spend": 5032.0, "Total Transactions": 400.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.76, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.192279, 39.952998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "LOCATION_NAME": "Cambria Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2019, "Total Visits": 13980.0, "Total Visitors": 8598.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 63.0, "Total Spend": 15492.0, "Total Transactions": 70.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 164.84, "MEDIAN_SPEND_PER_CUSTOMER": 197.63 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "LOCATION_NAME": "Revolution House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2019, "Total Visits": 335.0, "Total Visitors": 306.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 33540.0, "Total Transactions": 781.0, "Total Customers": 703.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.16, "MEDIAN_SPEND_PER_CUSTOMER": 36.06 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-mrk", "LOCATION_NAME": "Jerry's Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.965113, "LONGITUDE": -75.138904, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 42.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 63.0, "Total Spend": 15134.0, "Total Transactions": 311.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.56, "MEDIAN_SPEND_PER_CUSTOMER": 48.86 }, "geometry": { "type": "Point", "coordinates": [ -75.138904, 39.965113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "LOCATION_NAME": "Pasqually's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2019, "Total Visits": 125.0, "Total Visitors": 87.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 49.0, "Total Spend": 21749.0, "Total Transactions": 1236.0, "Total Customers": 655.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.67, "MEDIAN_SPEND_PER_CUSTOMER": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnz-jgk", "LOCATION_NAME": "Bonks Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986368, "LONGITUDE": -75.094326, "DATE_RANGE_START": 2019, "Total Visits": 306.0, "Total Visitors": 263.0, "POI_CBG": 421010378002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 2738.0, "Total Transactions": 62.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.72, "MEDIAN_SPEND_PER_CUSTOMER": 48.95 }, "geometry": { "type": "Point", "coordinates": [ -75.094326, 39.986368 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "LOCATION_NAME": "European Republic", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2019, "Total Visits": 5252.0, "Total Visitors": 3901.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 1615.0, "Total Transactions": 153.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.54, "MEDIAN_SPEND_PER_CUSTOMER": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 170.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4172.0, "Total Transactions": 335.0, "Total Customers": 257.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "LOCATION_NAME": "Cook and Shaker", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 77.0, "POI_CBG": 421010160001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 11904.0, "Total Transactions": 305.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.06 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7x-dgk", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04172, "LONGITUDE": -75.064728, "DATE_RANGE_START": 2019, "Total Visits": 340.0, "Total Visitors": 227.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 16.0, "Total Spend": 429.0, "Total Transactions": 67.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.06, "MEDIAN_SPEND_PER_CUSTOMER": 5.35 }, "geometry": { "type": "Point", "coordinates": [ -75.064728, 40.04172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3yv", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101772, "LONGITUDE": -75.007116, "DATE_RANGE_START": 2019, "Total Visits": 3083.0, "Total Visitors": 2600.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 62.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.75, "MEDIAN_SPEND_PER_CUSTOMER": 18.75 }, "geometry": { "type": "Point", "coordinates": [ -75.007116, 40.101772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-hdv", "LOCATION_NAME": "The Juice Room", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0592, "LONGITUDE": -75.189995, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 82.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2495.0, "Total Transactions": 272.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.83, "MEDIAN_SPEND_PER_CUSTOMER": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.189995, 40.0592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99223, "LONGITUDE": -75.09972, "DATE_RANGE_START": 2019, "Total Visits": 1131.0, "Total Visitors": 921.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 7189.0, "Total Transactions": 218.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.12, "MEDIAN_SPEND_PER_CUSTOMER": 30.87 }, "geometry": { "type": "Point", "coordinates": [ -75.09972, 39.99223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-rkz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914686, "LONGITUDE": -75.220838, "DATE_RANGE_START": 2019, "Total Visits": 451.0, "Total Visitors": 270.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1508.0, "Total Transactions": 237.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.58, "MEDIAN_SPEND_PER_CUSTOMER": 6.41 }, "geometry": { "type": "Point", "coordinates": [ -75.220838, 39.914686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-pn5", "LOCATION_NAME": "Yiro Yiro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954699, "LONGITUDE": -75.202157, "DATE_RANGE_START": 2019, "Total Visits": 516.0, "Total Visitors": 400.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 26.0, "Total Spend": 6161.0, "Total Transactions": 366.0, "Total Customers": 303.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.38, "MEDIAN_SPEND_PER_CUSTOMER": 16.08 }, "geometry": { "type": "Point", "coordinates": [ -75.202157, 39.954699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@63s-dvy-8sq", "LOCATION_NAME": "MK Food Service Equipment", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.95219, "LONGITUDE": -75.216689, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 53.0, "POI_CBG": 421010079001.0, "MEDIAN_DWELL": 503.0, "Total Spend": 535.0, "Total Transactions": 83.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.89, "MEDIAN_SPEND_PER_CUSTOMER": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.216689, 39.95219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-575", "LOCATION_NAME": "City Electric Supply", "TOP_CATEGORY": "Household Appliances and Electrical and Electronic Goods Merchant Wholesalers", "LATITUDE": 39.958795, "LONGITUDE": -75.142437, "DATE_RANGE_START": 2019, "Total Visits": 668.0, "Total Visitors": 628.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3109.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 198.07, "MEDIAN_SPEND_PER_CUSTOMER": 306.53 }, "geometry": { "type": "Point", "coordinates": [ -75.142437, 39.958795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w8v", "LOCATION_NAME": "Pro Image Sports", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087124, "LONGITUDE": -74.961763, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 208.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1109.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.18, "MEDIAN_SPEND_PER_CUSTOMER": 21.22 }, "geometry": { "type": "Point", "coordinates": [ -74.961763, 40.087124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-hbk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.996353, "LONGITUDE": -75.165984, "DATE_RANGE_START": 2019, "Total Visits": 625.0, "Total Visitors": 418.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 568.0, "Total Transactions": 50.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 21.16 }, "geometry": { "type": "Point", "coordinates": [ -75.165984, 39.996353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 483.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 312.0, "Total Transactions": 25.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.61, "MEDIAN_SPEND_PER_CUSTOMER": 15.33 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2019, "Total Visits": 678.0, "Total Visitors": 511.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2979.0, "Total Transactions": 326.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.05, "MEDIAN_SPEND_PER_CUSTOMER": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2019, "Total Visits": 410.0, "Total Visitors": 265.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 270.0, "Total Spend": 210.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.44, "MEDIAN_SPEND_PER_CUSTOMER": 31.44 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "LOCATION_NAME": "Pitchers Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.025059, "LONGITUDE": -75.223033, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 103.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 11789.0, "Total Transactions": 410.0, "Total Customers": 300.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223033, 40.025059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@63s-dvy-pn5", "LOCATION_NAME": "Hatch & Coop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954694, "LONGITUDE": -75.202176, "DATE_RANGE_START": 2019, "Total Visits": 1403.0, "Total Visitors": 974.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2183.0, "Total Transactions": 182.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.202176, 39.954694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "LOCATION_NAME": "Sahara Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2019, "Total Visits": 17755.0, "Total Visitors": 10176.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 86.0, "Total Spend": 4192.0, "Total Transactions": 140.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.91, "MEDIAN_SPEND_PER_CUSTOMER": 24.72 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgb-3dv", "LOCATION_NAME": "Rex Pizza & Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956427, "LONGITUDE": -75.165441, "DATE_RANGE_START": 2019, "Total Visits": 2117.0, "Total Visitors": 1458.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 70.0, "Total Spend": 2130.0, "Total Transactions": 155.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.76, "MEDIAN_SPEND_PER_CUSTOMER": 14.31 }, "geometry": { "type": "Point", "coordinates": [ -75.165441, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "LOCATION_NAME": "Luke's Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2019, "Total Visits": 300.0, "Total Visitors": 218.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 10924.0, "Total Transactions": 346.0, "Total Customers": 323.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.15, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgd-zfz", "LOCATION_NAME": "Ramen Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957167, "LONGITUDE": -75.192099, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 57.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 83.0, "Total Spend": 4861.0, "Total Transactions": 142.0, "Total Customers": 123.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.65, "MEDIAN_SPEND_PER_CUSTOMER": 31.83 }, "geometry": { "type": "Point", "coordinates": [ -75.192099, 39.957167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-jsq", "LOCATION_NAME": "Danny's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045112, "LONGITUDE": -75.117134, "DATE_RANGE_START": 2019, "Total Visits": 1204.0, "Total Visitors": 813.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 322.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.117134, 40.045112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwd-v9f", "LOCATION_NAME": "RevZilla", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.900369, "LONGITUDE": -75.195065, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 88.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 344.0, "Total Spend": 50786.0, "Total Transactions": 175.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 215.64, "MEDIAN_SPEND_PER_CUSTOMER": 248.49 }, "geometry": { "type": "Point", "coordinates": [ -75.195065, 39.900369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.008742, "LONGITUDE": -75.17653, "DATE_RANGE_START": 2019, "Total Visits": 3218.0, "Total Visitors": 2099.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 11943.0, "Total Transactions": 290.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.92, "MEDIAN_SPEND_PER_CUSTOMER": 32.01 }, "geometry": { "type": "Point", "coordinates": [ -75.17653, 40.008742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2019, "Total Visits": 6525.0, "Total Visitors": 4163.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 46529.0, "Total Transactions": 616.0, "Total Customers": 366.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.89, "MEDIAN_SPEND_PER_CUSTOMER": 92.53 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2019, "Total Visits": 460.0, "Total Visitors": 303.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 760.0, "Total Transactions": 35.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 13.18 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2019, "Total Visits": 506.0, "Total Visitors": 375.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 447.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.32, "MEDIAN_SPEND_PER_CUSTOMER": 6.32 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9w-sdv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.123431, "LONGITUDE": -75.01617, "DATE_RANGE_START": 2019, "Total Visits": 408.0, "Total Visitors": 303.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 113.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.01617, 40.123431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-xnq", "LOCATION_NAME": "Rose 4 U Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.95546, "LONGITUDE": -75.157664, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 254.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.14, "MEDIAN_SPEND_PER_CUSTOMER": 76.14 }, "geometry": { "type": "Point", "coordinates": [ -75.157664, 39.95546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "LOCATION_NAME": "Easy Pickins", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950651, "LONGITUDE": -75.160672, "DATE_RANGE_START": 2019, "Total Visits": 631.0, "Total Visitors": 473.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 12403.0, "Total Transactions": 455.0, "Total Customers": 401.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.98, "MEDIAN_SPEND_PER_CUSTOMER": 24.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160672, 39.950651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2019, "Total Visits": 685.0, "Total Visitors": 425.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 218.0, "Total Spend": 6767.0, "Total Transactions": 53.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 130.19, "MEDIAN_SPEND_PER_CUSTOMER": 156.92 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pmb-7t9", "LOCATION_NAME": "Jeans Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949139, "LONGITUDE": -75.163554, "DATE_RANGE_START": 2019, "Total Visits": 563.0, "Total Visitors": 363.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 116.0, "Total Spend": 2624.0, "Total Transactions": 263.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.21, "MEDIAN_SPEND_PER_CUSTOMER": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.163554, 39.949139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "LOCATION_NAME": "The Ranchito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 78.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 711.0, "Total Transactions": 42.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.875709, "LONGITUDE": -75.241464, "DATE_RANGE_START": 2019, "Total Visits": 454923.0, "Total Visitors": 244998.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 12119.0, "Total Transactions": 933.0, "Total Customers": 881.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.28, "MEDIAN_SPEND_PER_CUSTOMER": 11.62 }, "geometry": { "type": "Point", "coordinates": [ -75.241464, 39.875709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg9-ty9", "LOCATION_NAME": "Brandywine Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962927, "LONGITUDE": -75.163263, "DATE_RANGE_START": 2019, "Total Visits": 188.0, "Total Visitors": 152.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 117.0, "Total Spend": 110.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.02, "MEDIAN_SPEND_PER_CUSTOMER": 33.02 }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.962927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2019, "Total Visits": 676.0, "Total Visitors": 546.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 9.0, "Total Spend": 24379.0, "Total Transactions": 2224.0, "Total Customers": 1383.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.21, "MEDIAN_SPEND_PER_CUSTOMER": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.942529, "LONGITUDE": -75.164834, "DATE_RANGE_START": 2019, "Total Visits": 645.0, "Total Visitors": 355.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 99.0, "Total Spend": 1903.0, "Total Transactions": 82.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.14, "MEDIAN_SPEND_PER_CUSTOMER": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.164834, 39.942529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "LOCATION_NAME": "Dfti Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.95206, "LONGITUDE": -75.174572, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 85.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 158.0, "Total Spend": 11568.0, "Total Transactions": 132.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174572, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2019, "Total Visits": 435.0, "Total Visitors": 366.0, "POI_CBG": 421010012013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 49480.0, "Total Transactions": 5419.0, "Total Customers": 2574.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.29, "MEDIAN_SPEND_PER_CUSTOMER": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-wtv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054812, "LONGITUDE": -75.054903, "DATE_RANGE_START": 2019, "Total Visits": 526.0, "Total Visitors": 376.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2051.0, "Total Transactions": 158.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.45, "MEDIAN_SPEND_PER_CUSTOMER": 13.26 }, "geometry": { "type": "Point", "coordinates": [ -75.054903, 40.054812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pm4-ckf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.924823, "LONGITUDE": -75.17424, "DATE_RANGE_START": 2019, "Total Visits": 1592.0, "Total Visitors": 1108.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 187.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.23, "MEDIAN_SPEND_PER_CUSTOMER": 11.23 }, "geometry": { "type": "Point", "coordinates": [ -75.17424, 39.924823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "LOCATION_NAME": "Gap Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.050036, "LONGITUDE": -75.06262, "DATE_RANGE_START": 2019, "Total Visits": 861.0, "Total Visitors": 741.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1583.0, "Total Transactions": 38.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.99, "MEDIAN_SPEND_PER_CUSTOMER": 32.62 }, "geometry": { "type": "Point", "coordinates": [ -75.06262, 40.050036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-4n5", "LOCATION_NAME": "Shoe Factory", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.047111, "LONGITUDE": -75.070347, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 287.0, "POI_CBG": 421010310003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 4373.0, "Total Transactions": 180.0, "Total Customers": 168.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070347, 40.047111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "LOCATION_NAME": "Atomic City Comics", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.942034, "LONGITUDE": -75.153458, "DATE_RANGE_START": 2019, "Total Visits": 202.0, "Total Visitors": 177.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3072.0, "Total Transactions": 95.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.89, "MEDIAN_SPEND_PER_CUSTOMER": 32.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153458, 39.942034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-33q", "LOCATION_NAME": "Hello World", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.953792, "LONGITUDE": -75.195373, "DATE_RANGE_START": 2019, "Total Visits": 1098.0, "Total Visitors": 793.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 160.0, "Total Spend": 2516.0, "Total Transactions": 78.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.66, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.195373, 39.953792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "LOCATION_NAME": "Rittenhouse Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 65.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1009.0, "Total Transactions": 63.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.24, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-85f", "LOCATION_NAME": "North Catholic Book Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.984977, "LONGITUDE": -75.106527, "DATE_RANGE_START": 2019, "Total Visits": 195.0, "Total Visitors": 153.0, "POI_CBG": 421010180021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1699.0, "Total Transactions": 163.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.99, "MEDIAN_SPEND_PER_CUSTOMER": 4.99 }, "geometry": { "type": "Point", "coordinates": [ -75.106527, 39.984977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "LOCATION_NAME": "C Town Supermarkets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.99594, "LONGITUDE": -75.172136, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 162.0, "POI_CBG": 421010169011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 955.0, "Total Transactions": 95.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.16, "MEDIAN_SPEND_PER_CUSTOMER": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.172136, 39.99594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2019, "Total Visits": 2750.0, "Total Visitors": 2334.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 24359.0, "Total Transactions": 806.0, "Total Customers": 731.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 24.81 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 122.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 2921.0, "Total Transactions": 72.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.43, "MEDIAN_SPEND_PER_CUSTOMER": 34.69 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-y7q", "LOCATION_NAME": "Brothers Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.007979, "LONGITUDE": -75.150258, "DATE_RANGE_START": 2019, "Total Visits": 203.0, "Total Visitors": 178.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1332.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.99, "MEDIAN_SPEND_PER_CUSTOMER": 31.49 }, "geometry": { "type": "Point", "coordinates": [ -75.150258, 40.007979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2019, "Total Visits": 2897.0, "Total Visitors": 1871.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2288.0, "Total Transactions": 90.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.82 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "LOCATION_NAME": "Victoria's Secret", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090585, "LONGITUDE": -74.961564, "DATE_RANGE_START": 2019, "Total Visits": 841.0, "Total Visitors": 675.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 23.0, "Total Spend": 2686.0, "Total Transactions": 50.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.25, "MEDIAN_SPEND_PER_CUSTOMER": 51.4 }, "geometry": { "type": "Point", "coordinates": [ -74.961564, 40.090585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-3qz", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.017784, "LONGITUDE": -75.148619, "DATE_RANGE_START": 2019, "Total Visits": 173.0, "Total Visitors": 152.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2616.0, "Total Transactions": 52.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 51.83 }, "geometry": { "type": "Point", "coordinates": [ -75.148619, 40.017784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2019, "Total Visits": 460.0, "Total Visitors": 361.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 889.0, "Total Transactions": 57.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.7, "MEDIAN_SPEND_PER_CUSTOMER": 20.86 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-d5f", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992273, "LONGITUDE": -75.110947, "DATE_RANGE_START": 2019, "Total Visits": 416.0, "Total Visitors": 325.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1123.0, "Total Transactions": 158.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.79, "MEDIAN_SPEND_PER_CUSTOMER": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.110947, 39.992273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-ph6-gx5", "LOCATION_NAME": "Community Mini Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984629, "LONGITUDE": -75.229321, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 50.0, "POI_CBG": 421010119002.0, "MEDIAN_DWELL": 1005.0, "Total Spend": 56.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229321, 39.984629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.921823, "LONGITUDE": -75.170522, "DATE_RANGE_START": 2019, "Total Visits": 921.0, "Total Visitors": 551.0, "POI_CBG": 421010039012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 921.0, "Total Transactions": 98.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -75.170522, 39.921823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "LOCATION_NAME": "Academy Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 135.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 16.0, "Total Spend": 258.0, "Total Transactions": 15.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.87, "MEDIAN_SPEND_PER_CUSTOMER": 65.08 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23h@628-pmf-sqz", "LOCATION_NAME": "LUSH", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949954, "LONGITUDE": -75.167065, "DATE_RANGE_START": 2019, "Total Visits": 555.0, "Total Visitors": 436.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 24705.0, "Total Transactions": 904.0, "Total Customers": 831.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.79, "MEDIAN_SPEND_PER_CUSTOMER": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.167065, 39.949954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "LOCATION_NAME": "US Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 197.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2132.0, "Total Transactions": 115.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "LOCATION_NAME": "Theory", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949699, "LONGITUDE": -75.168323, "DATE_RANGE_START": 2019, "Total Visits": 415.0, "Total Visitors": 360.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2937.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 123.0, "MEDIAN_SPEND_PER_CUSTOMER": 123.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168323, 39.949699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.064353, "LONGITUDE": -75.238205, "DATE_RANGE_START": 2019, "Total Visits": 466.0, "Total Visitors": 323.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 559.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.238205, 40.064353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pm4-pvz", "LOCATION_NAME": "Pit Stop HQ", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.938787, "LONGITUDE": -75.157591, "DATE_RANGE_START": 2019, "Total Visits": 1554.0, "Total Visitors": 924.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 354.0, "Total Spend": 1796.0, "Total Transactions": 37.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.65, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157591, 39.938787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmd-s5z", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.945275, "LONGITUDE": -75.177239, "DATE_RANGE_START": 2019, "Total Visits": 323.0, "Total Visitors": 280.0, "POI_CBG": 421010012013.0, "MEDIAN_DWELL": 25.0, "Total Spend": 164.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.29, "MEDIAN_SPEND_PER_CUSTOMER": 24.29 }, "geometry": { "type": "Point", "coordinates": [ -75.177239, 39.945275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "LOCATION_NAME": "Suit Corner", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2019, "Total Visits": 2552.0, "Total Visitors": 2129.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1721.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.0, "MEDIAN_SPEND_PER_CUSTOMER": 89.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yd9", "LOCATION_NAME": "Sleep Inn", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954446, "LONGITUDE": -75.157043, "DATE_RANGE_START": 2019, "Total Visits": 795.0, "Total Visitors": 548.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 2256.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 183.65, "MEDIAN_SPEND_PER_CUSTOMER": 191.28 }, "geometry": { "type": "Point", "coordinates": [ -75.157043, 39.954446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "LOCATION_NAME": "Nom Nom Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 285.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 100.0, "Total Spend": 8411.0, "Total Transactions": 300.0, "Total Customers": 255.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.66, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-ty9", "LOCATION_NAME": "Front Street Dive", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.94928, "LONGITUDE": -75.14266, "DATE_RANGE_START": 2019, "Total Visits": 3558.0, "Total Visitors": 3110.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 24105.0, "Total Transactions": 705.0, "Total Customers": 586.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.51, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14266, 39.94928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmb-gzf", "LOCATION_NAME": "Cloud Factory Hookah Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946776, "LONGITUDE": -75.161155, "DATE_RANGE_START": 2019, "Total Visits": 253.0, "Total Visitors": 223.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 744.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 37.01 }, "geometry": { "type": "Point", "coordinates": [ -75.161155, 39.946776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pj6-k4v", "LOCATION_NAME": "Pelicana Chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04453, "LONGITUDE": -75.117658, "DATE_RANGE_START": 2019, "Total Visits": 1204.0, "Total Visitors": 813.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 277.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.48, "MEDIAN_SPEND_PER_CUSTOMER": 44.43 }, "geometry": { "type": "Point", "coordinates": [ -75.117658, 40.04453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "LOCATION_NAME": "Giorgio On Pine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 58.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 83.0, "Total Spend": 12664.0, "Total Transactions": 158.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.81, "MEDIAN_SPEND_PER_CUSTOMER": 68.79 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pjf-zvf", "LOCATION_NAME": "Cosimos Pizza Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076997, "LONGITUDE": -75.208562, "DATE_RANGE_START": 2019, "Total Visits": 145.0, "Total Visitors": 107.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 6958.0, "Total Transactions": 428.0, "Total Customers": 252.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.01, "MEDIAN_SPEND_PER_CUSTOMER": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.208562, 40.076997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p85-7nq", "LOCATION_NAME": "Tuscany Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056919, "LONGITUDE": -75.047895, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 55.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 496.0, "Total Spend": 551.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.08, "MEDIAN_SPEND_PER_CUSTOMER": 56.08 }, "geometry": { "type": "Point", "coordinates": [ -75.047895, 40.056919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-ndv", "LOCATION_NAME": "Kensington Quarters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97058, "LONGITUDE": -75.134713, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 235.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 16775.0, "Total Transactions": 220.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.64, "MEDIAN_SPEND_PER_CUSTOMER": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134713, 39.97058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "LOCATION_NAME": "Tacodelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 213.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5837.0, "Total Transactions": 483.0, "Total Customers": 358.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "LOCATION_NAME": "The Quick Fixx", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 90.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 59.0, "Total Spend": 6949.0, "Total Transactions": 358.0, "Total Customers": 262.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.85, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pm5-2ff", "LOCATION_NAME": "Wokano", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937057, "LONGITUDE": -75.161863, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 653.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3339.0, "Total Transactions": 78.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.6, "MEDIAN_SPEND_PER_CUSTOMER": 41.93 }, "geometry": { "type": "Point", "coordinates": [ -75.161863, 39.937057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phy-mff", "LOCATION_NAME": "Rivas Monica", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.028515, "LONGITUDE": -75.140923, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 30.0, "POI_CBG": 421010283001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 313.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.42, "MEDIAN_SPEND_PER_CUSTOMER": 46.42 }, "geometry": { "type": "Point", "coordinates": [ -75.140923, 40.028515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "LOCATION_NAME": "Mammoth Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969701, "LONGITUDE": -75.146132, "DATE_RANGE_START": 2019, "Total Visits": 398.0, "Total Visitors": 205.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 173.0, "Total Spend": 1506.0, "Total Transactions": 212.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146132, 39.969701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvw-hwk", "LOCATION_NAME": "Quick & Quality", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953576, "LONGITUDE": -75.219432, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 15.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 665.0, "Total Transactions": 33.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 199.75 }, "geometry": { "type": "Point", "coordinates": [ -75.219432, 39.953576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm3-t5f", "LOCATION_NAME": "Manatawny Still Works", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.929704, "LONGITUDE": -75.163451, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 130.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.1, "MEDIAN_SPEND_PER_CUSTOMER": 39.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163451, 39.929704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2019, "Total Visits": 505.0, "Total Visitors": 410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2063.0, "Total Transactions": 235.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.05, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "LOCATION_NAME": "Mega Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 127.0, "POI_CBG": 421010277003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 529.0, "Total Transactions": 47.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.39, "MEDIAN_SPEND_PER_CUSTOMER": 8.39 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.936469, "LONGITUDE": -75.160327, "DATE_RANGE_START": 2019, "Total Visits": 2963.0, "Total Visitors": 2209.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2489.0, "Total Transactions": 92.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.09, "MEDIAN_SPEND_PER_CUSTOMER": 28.26 }, "geometry": { "type": "Point", "coordinates": [ -75.160327, 39.936469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961453, "LONGITUDE": -75.144571, "DATE_RANGE_START": 2019, "Total Visits": 296.0, "Total Visitors": 235.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2014.0, "Total Transactions": 92.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144571, 39.961453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p85-hkf", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071857, "LONGITUDE": -75.030407, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 47.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1494.0, "Total Transactions": 93.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.05, "MEDIAN_SPEND_PER_CUSTOMER": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030407, 40.071857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-3wk", "LOCATION_NAME": "Cavanaughs Headhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942292, "LONGITUDE": -75.144972, "DATE_RANGE_START": 2019, "Total Visits": 1073.0, "Total Visitors": 805.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 34.0, "Total Spend": 14531.0, "Total Transactions": 505.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.24, "MEDIAN_SPEND_PER_CUSTOMER": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 39.942292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p9j-zj9", "LOCATION_NAME": "Kabobi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0995, "LONGITUDE": -75.010461, "DATE_RANGE_START": 2019, "Total Visits": 385.0, "Total Visitors": 358.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1676.0, "Total Transactions": 65.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.07, "MEDIAN_SPEND_PER_CUSTOMER": 32.17 }, "geometry": { "type": "Point", "coordinates": [ -75.010461, 40.0995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "LOCATION_NAME": "Crown Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2019, "Total Visits": 926.0, "Total Visitors": 620.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 18.0, "Total Spend": 2998.0, "Total Transactions": 77.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.24, "MEDIAN_SPEND_PER_CUSTOMER": 27.13 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2019, "Total Visits": 728.0, "Total Visitors": 583.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10895.0, "Total Transactions": 1043.0, "Total Customers": 621.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.73, "MEDIAN_SPEND_PER_CUSTOMER": 12.11 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "LOCATION_NAME": "Crown Chicken and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 227.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7107.0, "Total Transactions": 728.0, "Total Customers": 461.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.55, "MEDIAN_SPEND_PER_CUSTOMER": 10.31 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2019, "Total Visits": 1378.0, "Total Visitors": 1078.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9413.0, "Total Transactions": 996.0, "Total Customers": 660.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.9, "MEDIAN_SPEND_PER_CUSTOMER": 11.05 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065814, "LONGITUDE": -75.144222, "DATE_RANGE_START": 2019, "Total Visits": 1449.0, "Total Visitors": 1033.0, "POI_CBG": 421010266001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 411.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.6, "MEDIAN_SPEND_PER_CUSTOMER": 30.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144222, 40.065814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgk-28v", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.993135, "LONGITUDE": -75.152859, "DATE_RANGE_START": 2019, "Total Visits": 650.0, "Total Visitors": 460.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 91.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.72, "MEDIAN_SPEND_PER_CUSTOMER": 7.72 }, "geometry": { "type": "Point", "coordinates": [ -75.152859, 39.993135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "LOCATION_NAME": "Windfall Gallery", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 68.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 236.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.74, "MEDIAN_SPEND_PER_CUSTOMER": 70.74 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-xh5", "LOCATION_NAME": "C & R Building Supplies", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.937501, "LONGITUDE": -75.165521, "DATE_RANGE_START": 2019, "Total Visits": 2130.0, "Total Visitors": 1314.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 81.0, "Total Spend": 9501.0, "Total Transactions": 42.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.78, "MEDIAN_SPEND_PER_CUSTOMER": 208.01 }, "geometry": { "type": "Point", "coordinates": [ -75.165521, 39.937501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p76-yd9", "LOCATION_NAME": "American Uniform Sales", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.106001, "LONGITUDE": -74.984618, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 67.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 1450.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.0, "MEDIAN_SPEND_PER_CUSTOMER": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984618, 40.106001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.104996, "LONGITUDE": -75.007889, "DATE_RANGE_START": 2019, "Total Visits": 330.0, "Total Visitors": 70.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 296.0, "Total Spend": 21550.0, "Total Transactions": 33.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 163.79, "MEDIAN_SPEND_PER_CUSTOMER": 367.2 }, "geometry": { "type": "Point", "coordinates": [ -75.007889, 40.104996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9q-y5f", "LOCATION_NAME": "uBreakiFix", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.086714, "LONGITUDE": -75.0387, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 47.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1116.0, "Total Transactions": 40.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.0387, 40.086714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-xwk", "LOCATION_NAME": "aka.", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952073, "LONGITUDE": -75.184019, "DATE_RANGE_START": 2019, "Total Visits": 20567.0, "Total Visitors": 12558.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 107.0, "Total Spend": 3227.0, "Total Transactions": 68.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.53, "MEDIAN_SPEND_PER_CUSTOMER": 15.32 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.952073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2019, "Total Visits": 420.0, "Total Visitors": 315.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 937.0, "Total Transactions": 57.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.07, "MEDIAN_SPEND_PER_CUSTOMER": 12.87 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "LOCATION_NAME": "Pho Don", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 53.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 155.0, "Total Spend": 927.0, "Total Transactions": 57.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 19.21 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dqf", "LOCATION_NAME": "Five Brothers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033693, "LONGITUDE": -75.084934, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 51.0, "Total Spend": 1170.0, "Total Transactions": 117.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.83, "MEDIAN_SPEND_PER_CUSTOMER": 12.63 }, "geometry": { "type": "Point", "coordinates": [ -75.084934, 40.033693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-tsq", "LOCATION_NAME": "Charlie's Roast Pork", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931451, "LONGITUDE": -75.149656, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 132.0, "Total Spend": 821.0, "Total Transactions": 40.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.88, "MEDIAN_SPEND_PER_CUSTOMER": 16.88 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 39.931451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-wzf", "LOCATION_NAME": "Mayfair Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038525, "LONGITUDE": -75.036899, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 30.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 25.0, "Total Spend": 131.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.036899, 40.038525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm4-d35", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922429, "LONGITUDE": -75.169649, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 35.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 119.0, "Total Spend": 3466.0, "Total Transactions": 438.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.169649, 39.922429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmd-w49", "LOCATION_NAME": "Cook", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.94873, "LONGITUDE": -75.174113, "DATE_RANGE_START": 2019, "Total Visits": 2031.0, "Total Visitors": 1203.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 98.0, "Total Spend": 591.0, "Total Transactions": 25.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.54, "MEDIAN_SPEND_PER_CUSTOMER": 20.98 }, "geometry": { "type": "Point", "coordinates": [ -75.174113, 39.94873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034799, "LONGITUDE": -75.06613, "DATE_RANGE_START": 2019, "Total Visits": 188.0, "Total Visitors": 158.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2384.0, "Total Transactions": 97.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.85, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.06613, 40.034799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-8vz", "LOCATION_NAME": "Pret A Manger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952473, "LONGITUDE": -75.193453, "DATE_RANGE_START": 2019, "Total Visits": 1902.0, "Total Visitors": 1156.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 102.0, "Total Spend": 161.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.42, "MEDIAN_SPEND_PER_CUSTOMER": 5.42 }, "geometry": { "type": "Point", "coordinates": [ -75.193453, 39.952473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pzn-zj9", "LOCATION_NAME": "La Casa Di Lucias", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 40.132324, "LONGITUDE": -75.010926, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 120.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 62.0, "Total Spend": 538.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.92, "MEDIAN_SPEND_PER_CUSTOMER": 30.92 }, "geometry": { "type": "Point", "coordinates": [ -75.010926, 40.132324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-gzf", "LOCATION_NAME": "Bar X", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946786, "LONGITUDE": -75.161663, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 82.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 81.0, "Total Spend": 4654.0, "Total Transactions": 232.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161663, 39.946786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "LOCATION_NAME": "Smiley's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 68.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1380.0, "Total Transactions": 97.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 14.02 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-qj9", "LOCATION_NAME": "Suzani Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103023, "LONGITUDE": -75.030669, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 145.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 112.0, "Total Spend": 145.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.64, "MEDIAN_SPEND_PER_CUSTOMER": 43.64 }, "geometry": { "type": "Point", "coordinates": [ -75.030669, 40.103023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2019, "Total Visits": 255.0, "Total Visitors": 217.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 21.0, "Total Spend": 12198.0, "Total Transactions": 208.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.36, "MEDIAN_SPEND_PER_CUSTOMER": 49.28 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-j7q", "LOCATION_NAME": "Cavanaugh's Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951128, "LONGITUDE": -75.171573, "DATE_RANGE_START": 2019, "Total Visits": 361.0, "Total Visitors": 245.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 57.0, "Total Spend": 127.0, "Total Transactions": 15.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171573, 39.951128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "LOCATION_NAME": "DJ Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2019, "Total Visits": 1264.0, "Total Visitors": 936.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 44.0, "Total Spend": 4902.0, "Total Transactions": 133.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.52, "MEDIAN_SPEND_PER_CUSTOMER": 39.04 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw4-rzf", "LOCATION_NAME": "LOVE Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895174, "LONGITUDE": -75.227972, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 38178.0, "Total Transactions": 1776.0, "Total Customers": 1537.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.36, "MEDIAN_SPEND_PER_CUSTOMER": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.227972, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038624, "LONGITUDE": -75.106851, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6123.0, "Total Transactions": 426.0, "Total Customers": 350.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.98, "MEDIAN_SPEND_PER_CUSTOMER": 14.11 }, "geometry": { "type": "Point", "coordinates": [ -75.106851, 40.038624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmf-389", "LOCATION_NAME": "Ferguson", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.939235, "LONGITUDE": -75.174446, "DATE_RANGE_START": 2019, "Total Visits": 323.0, "Total Visitors": 285.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8097.0, "Total Transactions": 20.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.49, "MEDIAN_SPEND_PER_CUSTOMER": 79.65 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.939235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7y-dd9", "LOCATION_NAME": "Home Gallery Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.050405, "LONGITUDE": -75.093967, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 60.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": 245.0, "Total Spend": 9318.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 2311.14, "MEDIAN_SPEND_PER_CUSTOMER": 2311.14 }, "geometry": { "type": "Point", "coordinates": [ -75.093967, 40.050405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-z75", "LOCATION_NAME": "LL Flooring", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.099015, "LONGITUDE": -75.011125, "DATE_RANGE_START": 2019, "Total Visits": 92.0, "Total Visitors": 92.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 16241.0, "Total Transactions": 25.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 154.86, "MEDIAN_SPEND_PER_CUSTOMER": 348.62 }, "geometry": { "type": "Point", "coordinates": [ -75.011125, 40.099015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgy-mzf", "LOCATION_NAME": "Doc's World of Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.063477, "LONGITUDE": -75.238345, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 108.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.238345, 40.063477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.989253, "LONGITUDE": -75.090212, "DATE_RANGE_START": 2019, "Total Visits": 3137.0, "Total Visitors": 2137.0, "POI_CBG": 421010379006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1039.0, "Total Transactions": 50.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.24, "MEDIAN_SPEND_PER_CUSTOMER": 25.01 }, "geometry": { "type": "Point", "coordinates": [ -75.090212, 39.989253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-6x5", "LOCATION_NAME": "Bonobos", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949913, "LONGITUDE": -75.166858, "DATE_RANGE_START": 2019, "Total Visits": 448.0, "Total Visitors": 301.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2906.0, "Total Transactions": 25.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.8, "MEDIAN_SPEND_PER_CUSTOMER": 70.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166858, 39.949913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-hwk", "LOCATION_NAME": "The Men's Wearhouse", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.079413, "LONGITUDE": -75.029146, "DATE_RANGE_START": 2019, "Total Visits": 170.0, "Total Visitors": 132.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1323.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.99, "MEDIAN_SPEND_PER_CUSTOMER": 168.61 }, "geometry": { "type": "Point", "coordinates": [ -75.029146, 40.079413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-xqz", "LOCATION_NAME": "Kinky Choices", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.971585, "LONGITUDE": -75.147595, "DATE_RANGE_START": 2019, "Total Visits": 230.0, "Total Visitors": 160.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 2406.0, "Total Transactions": 58.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.23, "MEDIAN_SPEND_PER_CUSTOMER": 32.54 }, "geometry": { "type": "Point", "coordinates": [ -75.147595, 39.971585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2019, "Total Visits": 1656.0, "Total Visitors": 1239.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 12009.0, "Total Transactions": 300.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.98, "MEDIAN_SPEND_PER_CUSTOMER": 33.97 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 253.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13747.0, "Total Transactions": 841.0, "Total Customers": 735.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040673, "LONGITUDE": -75.076835, "DATE_RANGE_START": 2019, "Total Visits": 585.0, "Total Visitors": 380.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2157.0, "Total Transactions": 248.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.4, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.076835, 40.040673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.95137, "LONGITUDE": -75.166677, "DATE_RANGE_START": 2019, "Total Visits": 3148.0, "Total Visitors": 2465.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 15.0, "Total Spend": 32541.0, "Total Transactions": 2803.0, "Total Customers": 2222.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166677, 39.95137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-vvf", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955606, "LONGITUDE": -75.181993, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 5211.0, "Total Transactions": 663.0, "Total Customers": 508.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.64, "MEDIAN_SPEND_PER_CUSTOMER": 8.19 }, "geometry": { "type": "Point", "coordinates": [ -75.181993, 39.955606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2019, "Total Visits": 247.0, "Total Visitors": 160.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3356.0, "Total Transactions": 636.0, "Total Customers": 282.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.09, "MEDIAN_SPEND_PER_CUSTOMER": 7.26 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-ks5", "LOCATION_NAME": "Elwood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96637, "LONGITUDE": -75.134125, "DATE_RANGE_START": 2019, "Total Visits": 370.0, "Total Visitors": 346.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 391.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.76, "MEDIAN_SPEND_PER_CUSTOMER": 77.76 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 39.96637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2019, "Total Visits": 781.0, "Total Visitors": 525.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 35.0, "Total Spend": 2379.0, "Total Transactions": 170.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-td9", "LOCATION_NAME": "Volver", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946987, "LONGITUDE": -75.165701, "DATE_RANGE_START": 2019, "Total Visits": 2893.0, "Total Visitors": 2094.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 27.0, "Total Spend": 1306.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 206.35, "MEDIAN_SPEND_PER_CUSTOMER": 206.35 }, "geometry": { "type": "Point", "coordinates": [ -75.165701, 39.946987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6zf", "LOCATION_NAME": "Royal Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.085942, "LONGITUDE": -74.962636, "DATE_RANGE_START": 2019, "Total Visits": 465.0, "Total Visitors": 400.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 60.0, "Total Spend": 1251.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.23, "MEDIAN_SPEND_PER_CUSTOMER": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -74.962636, 40.085942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008154, "LONGITUDE": -75.17322, "DATE_RANGE_START": 2019, "Total Visits": 816.0, "Total Visitors": 668.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2481.0, "Total Transactions": 275.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.65, "MEDIAN_SPEND_PER_CUSTOMER": 7.05 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 40.008154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012072, "LONGITUDE": -75.115243, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 265.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 378.0, "Total Transactions": 27.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.06, "MEDIAN_SPEND_PER_CUSTOMER": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.115243, 40.012072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.945313, "LONGITUDE": -75.238538, "DATE_RANGE_START": 2019, "Total Visits": 1099.0, "Total Visitors": 806.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1997.0, "Total Transactions": 268.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 6.86 }, "geometry": { "type": "Point", "coordinates": [ -75.238538, 39.945313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "LOCATION_NAME": "The Gold Standard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2019, "Total Visits": 118.0, "Total Visitors": 107.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3171.0, "Total Transactions": 188.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.84, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-ks5", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95206, "LONGITUDE": -75.145094, "DATE_RANGE_START": 2019, "Total Visits": 408.0, "Total Visitors": 386.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8351.0, "Total Transactions": 1273.0, "Total Customers": 758.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.13, "MEDIAN_SPEND_PER_CUSTOMER": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.145094, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.099554, "LONGITUDE": -75.024268, "DATE_RANGE_START": 2019, "Total Visits": 2335.0, "Total Visitors": 1877.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 996.0, "Total Transactions": 218.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.97, "MEDIAN_SPEND_PER_CUSTOMER": 5.39 }, "geometry": { "type": "Point", "coordinates": [ -75.024268, 40.099554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "LOCATION_NAME": "Peddler Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 83.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 231.0, "Total Spend": 3287.0, "Total Transactions": 463.0, "Total Customers": 273.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081241, "LONGITUDE": -74.99492, "DATE_RANGE_START": 2019, "Total Visits": 195.0, "Total Visitors": 160.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2571.0, "Total Transactions": 466.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.44, "MEDIAN_SPEND_PER_CUSTOMER": 6.24 }, "geometry": { "type": "Point", "coordinates": [ -74.99492, 40.081241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-t9z", "LOCATION_NAME": "The Queen Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.02303, "LONGITUDE": -75.048349, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 63.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 51.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.66, "MEDIAN_SPEND_PER_CUSTOMER": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.048349, 40.02303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8d-m8v", "LOCATION_NAME": "Quicky Mart Express", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.012599, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2019, "Total Visits": 490.0, "Total Visitors": 315.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1926.0, "Total Transactions": 217.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.45, "MEDIAN_SPEND_PER_CUSTOMER": 12.43 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.012599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-5pv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952074, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2019, "Total Visits": 838.0, "Total Visitors": 650.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 70.0, "Total Spend": 7108.0, "Total Transactions": 1531.0, "Total Customers": 815.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.65, "MEDIAN_SPEND_PER_CUSTOMER": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.952074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-m6k", "LOCATION_NAME": "Brave New Worlds", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.951384, "LONGITUDE": -75.143026, "DATE_RANGE_START": 2019, "Total Visits": 2357.0, "Total Visitors": 1827.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 650.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.23, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.143026, 39.951384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7z-6tv", "LOCATION_NAME": "Dollar Discount", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.055124, "LONGITUDE": -75.090736, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 213.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 423.0, "Total Transactions": 27.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.2, "MEDIAN_SPEND_PER_CUSTOMER": 9.01 }, "geometry": { "type": "Point", "coordinates": [ -75.090736, 40.055124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-7yv", "LOCATION_NAME": "Home2 Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.953662, "LONGITUDE": -75.15975, "DATE_RANGE_START": 2019, "Total Visits": 8135.0, "Total Visitors": 6000.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 101.0, "Total Spend": 21557.0, "Total Transactions": 65.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 225.32, "MEDIAN_SPEND_PER_CUSTOMER": 302.34 }, "geometry": { "type": "Point", "coordinates": [ -75.15975, 39.953662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-n89", "LOCATION_NAME": "Southside Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960357, "LONGITUDE": -75.225351, "DATE_RANGE_START": 2019, "Total Visits": 506.0, "Total Visitors": 380.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 13.0, "Total Spend": 424.0, "Total Transactions": 27.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.1, "MEDIAN_SPEND_PER_CUSTOMER": 18.37 }, "geometry": { "type": "Point", "coordinates": [ -75.225351, 39.960357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-s3q", "LOCATION_NAME": "Lazaro's Pizzeria & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944595, "LONGITUDE": -75.171704, "DATE_RANGE_START": 2019, "Total Visits": 1441.0, "Total Visitors": 986.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 24.0, "Total Spend": 695.0, "Total Transactions": 32.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.32, "MEDIAN_SPEND_PER_CUSTOMER": 24.63 }, "geometry": { "type": "Point", "coordinates": [ -75.171704, 39.944595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-kpv", "LOCATION_NAME": "The Goat Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951177, "LONGITUDE": -75.172386, "DATE_RANGE_START": 2019, "Total Visits": 170.0, "Total Visitors": 135.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 62.0, "Total Spend": 609.0, "Total Transactions": 15.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.9, "MEDIAN_SPEND_PER_CUSTOMER": 47.14 }, "geometry": { "type": "Point", "coordinates": [ -75.172386, 39.951177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.945629, "LONGITUDE": -75.237997, "DATE_RANGE_START": 2019, "Total Visits": 408.0, "Total Visitors": 338.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 8.0, "Total Spend": 9125.0, "Total Transactions": 232.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.12, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.237997, 39.945629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021282, "LONGITUDE": -75.14902, "DATE_RANGE_START": 2019, "Total Visits": 1572.0, "Total Visitors": 1146.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3667.0, "Total Transactions": 345.0, "Total Customers": 303.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.95, "MEDIAN_SPEND_PER_CUSTOMER": 9.86 }, "geometry": { "type": "Point", "coordinates": [ -75.14902, 40.021282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-6p9", "LOCATION_NAME": "La Colombe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95153, "LONGITUDE": -75.165284, "DATE_RANGE_START": 2019, "Total Visits": 1724.0, "Total Visitors": 1294.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 35.0, "Total Spend": 455.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.59, "MEDIAN_SPEND_PER_CUSTOMER": 10.64 }, "geometry": { "type": "Point", "coordinates": [ -75.165284, 39.95153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2019, "Total Visits": 15596.0, "Total Visitors": 10171.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 3678.0, "Total Transactions": 496.0, "Total Customers": 368.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.73, "MEDIAN_SPEND_PER_CUSTOMER": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6hq", "LOCATION_NAME": "Milkboy Philadelphia", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949997, "LONGITUDE": -75.158798, "DATE_RANGE_START": 2019, "Total Visits": 1254.0, "Total Visitors": 845.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 121.0, "Total Spend": 2735.0, "Total Transactions": 100.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.32, "MEDIAN_SPEND_PER_CUSTOMER": 23.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158798, 39.949997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "LOCATION_NAME": "Cafe Lift", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 62.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 15957.0, "Total Transactions": 480.0, "Total Customers": 416.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-kzz", "LOCATION_NAME": "Bitar's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934662, "LONGITUDE": -75.160281, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 72.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 65.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.21, "MEDIAN_SPEND_PER_CUSTOMER": 19.61 }, "geometry": { "type": "Point", "coordinates": [ -75.160281, 39.934662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "LOCATION_NAME": "Royal's Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 77.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3957.0, "Total Transactions": 168.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.98, "MEDIAN_SPEND_PER_CUSTOMER": 23.56 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-t7q", "LOCATION_NAME": "Vetri Cucina", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946687, "LONGITUDE": -75.163203, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 137.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": 44.0, "Total Spend": 6213.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 426.4, "MEDIAN_SPEND_PER_CUSTOMER": 426.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163203, 39.946687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "LOCATION_NAME": "Munchies Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949457, "LONGITUDE": -75.153676, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 88.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3898.0, "Total Transactions": 443.0, "Total Customers": 262.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.17, "MEDIAN_SPEND_PER_CUSTOMER": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153676, 39.949457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "LOCATION_NAME": "Lebel Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2019, "Total Visits": 143.0, "Total Visitors": 113.0, "POI_CBG": 421010112003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2449.0, "Total Transactions": 133.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.63, "MEDIAN_SPEND_PER_CUSTOMER": 18.95 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030371, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2019, "Total Visits": 456.0, "Total Visitors": 393.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 877.0, "Total Transactions": 80.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.04, "MEDIAN_SPEND_PER_CUSTOMER": 11.06 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061832, "LONGITUDE": -75.084015, "DATE_RANGE_START": 2019, "Total Visits": 243.0, "Total Visitors": 217.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2017.0, "Total Transactions": 413.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.13, "MEDIAN_SPEND_PER_CUSTOMER": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.084015, 40.061832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035531, "LONGITUDE": -75.217119, "DATE_RANGE_START": 2019, "Total Visits": 242.0, "Total Visitors": 177.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5611.0, "Total Transactions": 953.0, "Total Customers": 523.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.67, "MEDIAN_SPEND_PER_CUSTOMER": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.217119, 40.035531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgb-47q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962439, "LONGITUDE": -75.1634, "DATE_RANGE_START": 2019, "Total Visits": 5720.0, "Total Visitors": 2432.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 294.0, "Total Spend": 8330.0, "Total Transactions": 870.0, "Total Customers": 613.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.1634, 39.962439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2019, "Total Visits": 180.0, "Total Visitors": 80.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 1123.0, "Total Spend": 8125.0, "Total Transactions": 1018.0, "Total Customers": 576.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.2, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "LOCATION_NAME": "Fishtown Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": null, "Total Spend": 1069.0, "Total Transactions": 33.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.29 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-ph6-gzf", "LOCATION_NAME": "Wynnefield Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.986069, "LONGITUDE": -75.231575, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 158.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 131.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.05, "MEDIAN_SPEND_PER_CUSTOMER": 33.05 }, "geometry": { "type": "Point", "coordinates": [ -75.231575, 39.986069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2019, "Total Visits": 471.0, "Total Visitors": 363.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2176.0, "Total Transactions": 92.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.55 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938246, "LONGITUDE": -75.166948, "DATE_RANGE_START": 2019, "Total Visits": 9440.0, "Total Visitors": 5565.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 7479.0, "Total Transactions": 1224.0, "Total Customers": 691.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.938246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 38.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 160.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2019, "Total Visits": 273.0, "Total Visitors": 172.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3075.0, "Total Transactions": 533.0, "Total Customers": 245.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.58, "MEDIAN_SPEND_PER_CUSTOMER": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-s5z", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.011216, "LONGITUDE": -75.115625, "DATE_RANGE_START": 2019, "Total Visits": 731.0, "Total Visitors": 575.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4270.0, "Total Transactions": 102.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.115625, 40.011216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952045, "LONGITUDE": -75.16824, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 102.0, "Total Spend": 6722.0, "Total Transactions": 262.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.04, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.16824, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "LOCATION_NAME": "Finish Line", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086808, "LONGITUDE": -74.961767, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 213.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2124.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 112.5, "MEDIAN_SPEND_PER_CUSTOMER": 112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961767, 40.086808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm9-t7q", "LOCATION_NAME": "Harry Merrill & Son", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.94877, "LONGITUDE": -75.154332, "DATE_RANGE_START": 2019, "Total Visits": 3781.0, "Total Visitors": 3005.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3875.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 129.6, "MEDIAN_SPEND_PER_CUSTOMER": 129.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154332, 39.94877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm3-t5f", "LOCATION_NAME": "Black & Brew", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93027, "LONGITUDE": -75.162757, "DATE_RANGE_START": 2019, "Total Visits": 220.0, "Total Visitors": 70.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 704.0, "Total Spend": 6898.0, "Total Transactions": 613.0, "Total Customers": 383.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.21, "MEDIAN_SPEND_PER_CUSTOMER": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.162757, 39.93027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.015127, "LONGITUDE": -75.178214, "DATE_RANGE_START": 2019, "Total Visits": 335.0, "Total Visitors": 230.0, "POI_CBG": 421010206001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3657.0, "Total Transactions": 685.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.73, "MEDIAN_SPEND_PER_CUSTOMER": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.178214, 40.015127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "LOCATION_NAME": "Sam's Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093002, "LONGITUDE": -74.958736, "DATE_RANGE_START": 2019, "Total Visits": 7091.0, "Total Visitors": 4441.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 249923.0, "Total Transactions": 4118.0, "Total Customers": 1726.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.05, "MEDIAN_SPEND_PER_CUSTOMER": 81.91 }, "geometry": { "type": "Point", "coordinates": [ -74.958736, 40.093002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2019, "Total Visits": 1014.0, "Total Visitors": 771.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1002.0, "Total Transactions": 55.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.32, "MEDIAN_SPEND_PER_CUSTOMER": 13.32 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-7qz", "LOCATION_NAME": "Pizza Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061876, "LONGITUDE": -75.055584, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 30.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 2962.0, "Total Transactions": 163.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.03, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.055584, 40.061876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "LOCATION_NAME": "Alexa Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010308003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1050.0, "Total Transactions": 35.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 23.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": null, "Total Spend": 5584.0, "Total Transactions": 283.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.45, "MEDIAN_SPEND_PER_CUSTOMER": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2019, "Total Visits": 696.0, "Total Visitors": 548.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 6517.0, "Total Transactions": 601.0, "Total Customers": 423.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.89, "MEDIAN_SPEND_PER_CUSTOMER": 11.46 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pj2-tsq", "LOCATION_NAME": "Beijing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.015027, "LONGITUDE": -75.108817, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010191004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3200.0, "Total Transactions": 128.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.95 }, "geometry": { "type": "Point", "coordinates": [ -75.108817, 40.015027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm3-xh5", "LOCATION_NAME": "Stephanie's Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.931071, "LONGITUDE": -75.159796, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 25.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 205.0, "Total Spend": 438.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159796, 39.931071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-ph6-gzf", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986348, "LONGITUDE": -75.231742, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 27.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 212.0, "Total Spend": 219.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.26, "MEDIAN_SPEND_PER_CUSTOMER": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.231742, 39.986348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-4d9", "LOCATION_NAME": "Americas Quality Tire", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.020793, "LONGITUDE": -75.063071, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010319003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 763.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063071, 40.020793 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "LOCATION_NAME": "Bloomsday Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 10.0, "Total Spend": 7930.0, "Total Transactions": 165.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.21, "MEDIAN_SPEND_PER_CUSTOMER": 41.72 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "LOCATION_NAME": "All The Way Live", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 43.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 148.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.33, "MEDIAN_SPEND_PER_CUSTOMER": 33.33 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kj9", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950618, "LONGITUDE": -75.175914, "DATE_RANGE_START": 2019, "Total Visits": 3268.0, "Total Visitors": 2097.0, "POI_CBG": 421010008031.0, "MEDIAN_DWELL": 251.0, "Total Spend": 50.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.79, "MEDIAN_SPEND_PER_CUSTOMER": 7.79 }, "geometry": { "type": "Point", "coordinates": [ -75.175914, 39.950618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25n-222@628-pm4-ct9", "LOCATION_NAME": "Okie Dokie Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924749, "LONGITUDE": -75.171055, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 68.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 279.0, "Total Transactions": 27.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.171055, 39.924749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "LOCATION_NAME": "Vapordelphia", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2019, "Total Visits": 1556.0, "Total Visitors": 1163.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 52.0, "Total Spend": 9181.0, "Total Transactions": 223.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 43.25 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009408, "LONGITUDE": -75.196533, "DATE_RANGE_START": 2019, "Total Visits": 418.0, "Total Visitors": 371.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8507.0, "Total Transactions": 1492.0, "Total Customers": 838.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.89, "MEDIAN_SPEND_PER_CUSTOMER": 6.78 }, "geometry": { "type": "Point", "coordinates": [ -75.196533, 40.009408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-mzf", "LOCATION_NAME": "4 Seasons", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003248, "LONGITUDE": -75.124064, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 102.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 6018.0, "Total Transactions": 526.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 6.05 }, "geometry": { "type": "Point", "coordinates": [ -75.124064, 40.003248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "LOCATION_NAME": "Scrub Pro", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2019, "Total Visits": 5667.0, "Total Visitors": 4183.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 6766.0, "Total Transactions": 135.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.9, "MEDIAN_SPEND_PER_CUSTOMER": 43.96 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "LOCATION_NAME": "Grossman Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.951777, "LONGITUDE": -75.14359, "DATE_RANGE_START": 2019, "Total Visits": 691.0, "Total Visitors": 503.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3675.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 899.0, "MEDIAN_SPEND_PER_CUSTOMER": 899.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14359, 39.951777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040921, "LONGITUDE": -75.065658, "DATE_RANGE_START": 2019, "Total Visits": 693.0, "Total Visitors": 463.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 158.0, "Total Transactions": 25.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.61, "MEDIAN_SPEND_PER_CUSTOMER": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.065658, 40.040921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-b8v", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.059227, "LONGITUDE": -75.045575, "DATE_RANGE_START": 2019, "Total Visits": 420.0, "Total Visitors": 328.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1623.0, "Total Transactions": 92.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.85, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.045575, 40.059227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@63s-dvq-vpv", "LOCATION_NAME": "Hair Outlet Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.92823, "LONGITUDE": -75.22885, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 58.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 2677.0, "Total Transactions": 115.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 19.94 }, "geometry": { "type": "Point", "coordinates": [ -75.22885, 39.92823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.974361, "LONGITUDE": -75.199089, "DATE_RANGE_START": 2019, "Total Visits": 2557.0, "Total Visitors": 2037.0, "POI_CBG": 421010110001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1471.0, "Total Transactions": 68.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -75.199089, 39.974361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.033829, "LONGITUDE": -75.072583, "DATE_RANGE_START": 2019, "Total Visits": 1128.0, "Total Visitors": 928.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8796.0, "Total Transactions": 388.0, "Total Customers": 257.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 28.52 }, "geometry": { "type": "Point", "coordinates": [ -75.072583, 40.033829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.992376, "LONGITUDE": -75.140508, "DATE_RANGE_START": 2019, "Total Visits": 1686.0, "Total Visitors": 1058.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11334.0, "Total Transactions": 531.0, "Total Customers": 368.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140508, 39.992376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-ph8-rx5", "LOCATION_NAME": "Royal Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.97851, "LONGITUDE": -75.271319, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 402.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 120.8, "MEDIAN_SPEND_PER_CUSTOMER": 120.8 }, "geometry": { "type": "Point", "coordinates": [ -75.271319, 39.97851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.076084, "LONGITUDE": -75.031448, "DATE_RANGE_START": 2019, "Total Visits": 1782.0, "Total Visitors": 1571.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 12045.0, "Total Transactions": 713.0, "Total Customers": 610.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.92, "MEDIAN_SPEND_PER_CUSTOMER": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.031448, 40.076084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "LOCATION_NAME": "Ganaan Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6138.0, "Total Transactions": 198.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.7, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-p7q", "LOCATION_NAME": "Turning Heads", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.993848, "LONGITUDE": -75.147504, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": null, "Total Spend": 267.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147504, 39.993848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "LOCATION_NAME": "Giovanni's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 85.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1494.0, "Total Transactions": 73.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.98, "MEDIAN_SPEND_PER_CUSTOMER": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "LOCATION_NAME": "Nike Factory Store", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 23.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 36126.0, "Total Transactions": 503.0, "Total Customers": 421.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.07, "MEDIAN_SPEND_PER_CUSTOMER": 46.87 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942147, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2019, "Total Visits": 255.0, "Total Visitors": 190.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 77.0, "Total Spend": 22191.0, "Total Transactions": 938.0, "Total Customers": 696.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.21, "MEDIAN_SPEND_PER_CUSTOMER": 23.56 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.942147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029727, "LONGITUDE": -75.09938, "DATE_RANGE_START": 2019, "Total Visits": 805.0, "Total Visitors": 688.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 8862.0, "Total Transactions": 650.0, "Total Customers": 511.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.61, "MEDIAN_SPEND_PER_CUSTOMER": 12.78 }, "geometry": { "type": "Point", "coordinates": [ -75.09938, 40.029727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2019, "Total Visits": 560.0, "Total Visitors": 368.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10194.0, "Total Transactions": 1596.0, "Total Customers": 670.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 8.28 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-rc5", "LOCATION_NAME": "The Olde Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946931, "LONGITUDE": -75.144178, "DATE_RANGE_START": 2019, "Total Visits": 160.0, "Total Visitors": 145.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 37.0, "Total Spend": 194.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.18, "MEDIAN_SPEND_PER_CUSTOMER": 32.89 }, "geometry": { "type": "Point", "coordinates": [ -75.144178, 39.946931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "LOCATION_NAME": "Keller Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072481, "LONGITUDE": -75.076705, "DATE_RANGE_START": 2019, "Total Visits": 430.0, "Total Visitors": 222.0, "POI_CBG": 421010341002.0, "MEDIAN_DWELL": 45.0, "Total Spend": 2607.0, "Total Transactions": 168.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.64, "MEDIAN_SPEND_PER_CUSTOMER": 23.01 }, "geometry": { "type": "Point", "coordinates": [ -75.076705, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-nqz", "LOCATION_NAME": "Thanal Indian Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955758, "LONGITUDE": -75.172555, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 137.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 10145.0, "Total Transactions": 207.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.08, "MEDIAN_SPEND_PER_CUSTOMER": 38.38 }, "geometry": { "type": "Point", "coordinates": [ -75.172555, 39.955758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmc-qmk", "LOCATION_NAME": "Federal Donuts 2nd Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932221, "LONGITUDE": -75.147485, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": null, "Total Spend": 12312.0, "Total Transactions": 993.0, "Total Customers": 881.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.147485, 39.932221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg2-4qf", "LOCATION_NAME": "Phu Fha Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029908, "LONGITUDE": -75.218798, "DATE_RANGE_START": 2019, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010213004.0, "MEDIAN_DWELL": null, "Total Spend": 796.0, "Total Transactions": 37.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.23, "MEDIAN_SPEND_PER_CUSTOMER": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.218798, 40.029908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pjf-t5f", "LOCATION_NAME": "Host", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.069687, "LONGITUDE": -75.200234, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 20.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 452.0, "Total Spend": 435.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.82, "MEDIAN_SPEND_PER_CUSTOMER": 14.84 }, "geometry": { "type": "Point", "coordinates": [ -75.200234, 40.069687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "LOCATION_NAME": "YOLO Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 28.0, "POI_CBG": 421010167024.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2625.0, "Total Transactions": 142.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2019, "Total Visits": 1233.0, "Total Visitors": 773.0, "POI_CBG": 421010389003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3111.0, "Total Transactions": 133.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.15, "MEDIAN_SPEND_PER_CUSTOMER": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2019, "Total Visits": 841.0, "Total Visitors": 673.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 6.0, "Total Spend": 14000.0, "Total Transactions": 650.0, "Total Customers": 433.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.35, "MEDIAN_SPEND_PER_CUSTOMER": 23.79 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-8vz", "LOCATION_NAME": "Mom's Organic Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950979, "LONGITUDE": -75.158689, "DATE_RANGE_START": 2019, "Total Visits": 673.0, "Total Visitors": 586.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 78807.0, "Total Transactions": 3633.0, "Total Customers": 1522.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.19, "MEDIAN_SPEND_PER_CUSTOMER": 27.23 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "LOCATION_NAME": "Not Just Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 855.0, "Total Transactions": 60.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.83, "MEDIAN_SPEND_PER_CUSTOMER": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-3kf", "LOCATION_NAME": "South Side Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925364, "LONGITUDE": -75.159106, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 18.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 240.0, "Total Spend": 437.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.71, "MEDIAN_SPEND_PER_CUSTOMER": 22.71 }, "geometry": { "type": "Point", "coordinates": [ -75.159106, 39.925364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-94v", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2019, "Total Visits": 22929.0, "Total Visitors": 13449.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 14797.0, "Total Transactions": 255.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.63, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pm9-wtv", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951286, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2019, "Total Visits": 59483.0, "Total Visitors": 32677.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 21347.0, "Total Transactions": 538.0, "Total Customers": 473.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.77, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.951286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050364, "LONGITUDE": -75.094508, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 92.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1766.0, "Total Transactions": 260.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.53, "MEDIAN_SPEND_PER_CUSTOMER": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094508, 40.050364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.016881, "LONGITUDE": -75.096377, "DATE_RANGE_START": 2019, "Total Visits": 187.0, "Total Visitors": 158.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1773.0, "Total Transactions": 205.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.41, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.096377, 40.016881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-qxq", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.991716, "LONGITUDE": -75.09926, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 167.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1205.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.0, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09926, 39.991716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg8-kmk", "LOCATION_NAME": "Brewerytown Beats", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.979092, "LONGITUDE": -75.178265, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 57.0, "POI_CBG": 421010138001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 70.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.178265, 39.979092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-qs5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.991422, "LONGITUDE": -75.097766, "DATE_RANGE_START": 2019, "Total Visits": 326.0, "Total Visitors": 262.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 219.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.77, "MEDIAN_SPEND_PER_CUSTOMER": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.097766, 39.991422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p8d-fmk", "LOCATION_NAME": "Renzi's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998034, "LONGITUDE": -75.074418, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 33.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 255.0, "Total Spend": 7270.0, "Total Transactions": 293.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.45, "MEDIAN_SPEND_PER_CUSTOMER": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -75.074418, 39.998034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-phz-tjv", "LOCATION_NAME": "Pizza express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998436, "LONGITUDE": -75.110266, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 35.0, "POI_CBG": 421010192004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1777.0, "Total Transactions": 115.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110266, 39.998436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-v75", "LOCATION_NAME": "W P Cooke", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 40.025446, "LONGITUDE": -75.147136, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 67.0, "POI_CBG": 421010283003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 108.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147136, 40.025446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.997473, "LONGITUDE": -75.074081, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 150.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4807.0, "Total Transactions": 223.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.83, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.074081, 39.997473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-gkz", "LOCATION_NAME": "Nifty Fifty's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079457, "LONGITUDE": -75.025402, "DATE_RANGE_START": 2019, "Total Visits": 1837.0, "Total Visitors": 1541.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 452.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.64, "MEDIAN_SPEND_PER_CUSTOMER": 45.13 }, "geometry": { "type": "Point", "coordinates": [ -75.025402, 40.079457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "LOCATION_NAME": "Spasso Italian Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2019, "Total Visits": 660.0, "Total Visitors": 581.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 11659.0, "Total Transactions": 142.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.36, "MEDIAN_SPEND_PER_CUSTOMER": 67.56 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-9cq", "LOCATION_NAME": "Dahlak", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948401, "LONGITUDE": -75.21737, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 232.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 51.0, "Total Spend": 9001.0, "Total Transactions": 365.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21737, 39.948401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmd-vmk", "LOCATION_NAME": "Erawan Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951764, "LONGITUDE": -75.178105, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 107.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 172.0, "Total Spend": 3483.0, "Total Transactions": 93.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.62, "MEDIAN_SPEND_PER_CUSTOMER": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.178105, 39.951764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmv-3bk", "LOCATION_NAME": "The Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895397, "LONGITUDE": -75.171867, "DATE_RANGE_START": 2019, "Total Visits": 1416.0, "Total Visitors": 693.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 412.0, "Total Spend": 289.0, "Total Transactions": 23.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.171867, 39.895397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "LOCATION_NAME": "Gia Pronto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 57.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 15659.0, "Total Transactions": 2135.0, "Total Customers": 1011.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 10.32 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@63s-dw9-7nq", "LOCATION_NAME": "LeBus Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.877284, "LONGITUDE": -75.241546, "DATE_RANGE_START": 2019, "Total Visits": 454923.0, "Total Visitors": 244998.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 1652.0, "Total Transactions": 203.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.13, "MEDIAN_SPEND_PER_CUSTOMER": 7.93 }, "geometry": { "type": "Point", "coordinates": [ -75.241546, 39.877284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950584, "LONGITUDE": -75.167188, "DATE_RANGE_START": 2019, "Total Visits": 670.0, "Total Visitors": 578.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8030.0, "Total Transactions": 1781.0, "Total Customers": 938.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.66, "MEDIAN_SPEND_PER_CUSTOMER": 5.07 }, "geometry": { "type": "Point", "coordinates": [ -75.167188, 39.950584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953718, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2019, "Total Visits": 550.0, "Total Visitors": 430.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12072.0, "Total Transactions": 2958.0, "Total Customers": 1403.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.45, "MEDIAN_SPEND_PER_CUSTOMER": 4.84 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.953718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-wrk", "LOCATION_NAME": "Lulu Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955024, "LONGITUDE": -75.212218, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010086012.0, "MEDIAN_DWELL": 200.0, "Total Spend": 2086.0, "Total Transactions": 172.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.7, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212218, 39.955024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p7x-dsq", "LOCATION_NAME": "Rib Rack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042525, "LONGITUDE": -75.063219, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 22.0, "POI_CBG": 421010314022.0, "MEDIAN_DWELL": 53.0, "Total Spend": 690.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.19, "MEDIAN_SPEND_PER_CUSTOMER": 59.19 }, "geometry": { "type": "Point", "coordinates": [ -75.063219, 40.042525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj4-8d9", "LOCATION_NAME": "New Germantown Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028807, "LONGITUDE": -75.162735, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 23.0, "POI_CBG": 421010245002.0, "MEDIAN_DWELL": 824.0, "Total Spend": 222.0, "Total Transactions": 17.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162735, 40.028807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-ffz", "LOCATION_NAME": "D'jakarta Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920881, "LONGITUDE": -75.173653, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 418.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.43, "MEDIAN_SPEND_PER_CUSTOMER": 26.69 }, "geometry": { "type": "Point", "coordinates": [ -75.173653, 39.920881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "LOCATION_NAME": "Einstein Brothers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994394, "LONGITUDE": -75.238422, "DATE_RANGE_START": 2019, "Total Visits": 441.0, "Total Visitors": 283.0, "POI_CBG": 421010117001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 3216.0, "Total Transactions": 195.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.78, "MEDIAN_SPEND_PER_CUSTOMER": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.238422, 39.994394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "LOCATION_NAME": "Engimono Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2019, "Total Visits": 267.0, "Total Visitors": 148.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 973.0, "Total Spend": 13425.0, "Total Transactions": 418.0, "Total Customers": 335.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.82, "MEDIAN_SPEND_PER_CUSTOMER": 31.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "LOCATION_NAME": "Mission BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2019, "Total Visits": 1113.0, "Total Visitors": 959.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 3220.0, "Total Transactions": 27.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.59, "MEDIAN_SPEND_PER_CUSTOMER": 27.29 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmb-7yv", "LOCATION_NAME": "John Yi Fish Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953479, "LONGITUDE": -75.159041, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 6069.0, "Total Transactions": 210.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.33, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159041, 39.953479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj7-k75", "LOCATION_NAME": "Got The Look", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.03117, "LONGITUDE": -75.103826, "DATE_RANGE_START": 2019, "Total Visits": 5667.0, "Total Visitors": 4183.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 18978.0, "Total Transactions": 430.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.99, "MEDIAN_SPEND_PER_CUSTOMER": 36.98 }, "geometry": { "type": "Point", "coordinates": [ -75.103826, 40.03117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2019, "Total Visits": 570.0, "Total Visitors": 433.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6501.0, "Total Transactions": 1298.0, "Total Customers": 693.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.09, "MEDIAN_SPEND_PER_CUSTOMER": 6.16 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.014677, "LONGITUDE": -75.130343, "DATE_RANGE_START": 2019, "Total Visits": 480.0, "Total Visitors": 381.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3890.0, "Total Transactions": 690.0, "Total Customers": 383.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.51, "MEDIAN_SPEND_PER_CUSTOMER": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.014677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2019, "Total Visits": 316.0, "Total Visitors": 242.0, "POI_CBG": 421010268003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3814.0, "Total Transactions": 653.0, "Total Customers": 326.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.82 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.011535, "LONGITUDE": -75.111695, "DATE_RANGE_START": 2019, "Total Visits": 620.0, "Total Visitors": 500.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2850.0, "Total Transactions": 185.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.99, "MEDIAN_SPEND_PER_CUSTOMER": 13.78 }, "geometry": { "type": "Point", "coordinates": [ -75.111695, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-28v", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.074524, "LONGITUDE": -75.032955, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 58.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 1624.0, "Total Transactions": 43.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.99, "MEDIAN_SPEND_PER_CUSTOMER": 38.66 }, "geometry": { "type": "Point", "coordinates": [ -75.032955, 40.074524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "LOCATION_NAME": "Tandy Leather Factory", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.102565, "LONGITUDE": -75.008773, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 316.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 866.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.67, "MEDIAN_SPEND_PER_CUSTOMER": 63.67 }, "geometry": { "type": "Point", "coordinates": [ -75.008773, 40.102565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.921672, "LONGITUDE": -75.186144, "DATE_RANGE_START": 2019, "Total Visits": 1906.0, "Total Visitors": 1418.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 11006.0, "Total Transactions": 263.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.98, "MEDIAN_SPEND_PER_CUSTOMER": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.186144, 39.921672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.993729, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2019, "Total Visits": 178.0, "Total Visitors": 128.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1914.0, "Total Transactions": 163.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.993729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "LOCATION_NAME": "DiNapoli Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2019, "Total Visits": 268.0, "Total Visitors": 223.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1470.0, "Total Transactions": 63.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.86, "MEDIAN_SPEND_PER_CUSTOMER": 27.85 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "LOCATION_NAME": "The Twisted Tail", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941828, "LONGITUDE": -75.145203, "DATE_RANGE_START": 2019, "Total Visits": 215.0, "Total Visitors": 198.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 42.0, "Total Spend": 31065.0, "Total Transactions": 545.0, "Total Customers": 385.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.15, "MEDIAN_SPEND_PER_CUSTOMER": 50.15 }, "geometry": { "type": "Point", "coordinates": [ -75.145203, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "LOCATION_NAME": "China Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2019, "Total Visits": 621.0, "Total Visitors": 518.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 34.0, "Total Spend": 5233.0, "Total Transactions": 93.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.43, "MEDIAN_SPEND_PER_CUSTOMER": 51.1 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmb-ce5", "LOCATION_NAME": "Ralphs Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940063, "LONGITUDE": -75.157832, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 132.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1091.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 144.0, "MEDIAN_SPEND_PER_CUSTOMER": 144.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157832, 39.940063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "LOCATION_NAME": "Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95002, "LONGITUDE": -75.162328, "DATE_RANGE_START": 2019, "Total Visits": 420.0, "Total Visitors": 315.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 94.0, "Total Spend": 153614.0, "Total Transactions": 4456.0, "Total Customers": 3580.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.6, "MEDIAN_SPEND_PER_CUSTOMER": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162328, 39.95002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f9f", "LOCATION_NAME": "El Balconcito II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052956, "LONGITUDE": -75.064913, "DATE_RANGE_START": 2019, "Total Visits": 1196.0, "Total Visitors": 735.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 70.0, "Total Spend": 5408.0, "Total Transactions": 98.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.42, "MEDIAN_SPEND_PER_CUSTOMER": 57.68 }, "geometry": { "type": "Point", "coordinates": [ -75.064913, 40.052956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@63s-dw4-rzf", "LOCATION_NAME": "Gachi Sushi and Noodle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895158, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7395.0, "Total Transactions": 408.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.78, "MEDIAN_SPEND_PER_CUSTOMER": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.895158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.899825, "LONGITUDE": -75.241379, "DATE_RANGE_START": 2019, "Total Visits": 711.0, "Total Visitors": 528.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 863.0, "Total Transactions": 73.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.95 }, "geometry": { "type": "Point", "coordinates": [ -75.241379, 39.899825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2019, "Total Visits": 1003.0, "Total Visitors": 810.0, "POI_CBG": 421010200001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5777.0, "Total Transactions": 810.0, "Total Customers": 601.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 8.06 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089385, "LONGITUDE": -74.964383, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 311.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4017.0, "Total Transactions": 680.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.17, "MEDIAN_SPEND_PER_CUSTOMER": 6.38 }, "geometry": { "type": "Point", "coordinates": [ -74.964383, 40.089385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj6-9s5", "LOCATION_NAME": "New Generation Super Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034686, "LONGITUDE": -75.115012, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 148.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 18.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.3, "MEDIAN_SPEND_PER_CUSTOMER": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115012, 40.034686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phj-rrk", "LOCATION_NAME": "Sunny Side Breakfast & Lunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071002, "LONGITUDE": -75.157739, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 48.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 12.0, "Total Spend": 419.0, "Total Transactions": 23.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.06, "MEDIAN_SPEND_PER_CUSTOMER": 20.06 }, "geometry": { "type": "Point", "coordinates": [ -75.157739, 40.071002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2019, "Total Visits": 633.0, "Total Visitors": 440.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5771.0, "Total Transactions": 923.0, "Total Customers": 473.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 7.72 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dy9", "LOCATION_NAME": "Firestone Complete Auto Care", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052472, "LONGITUDE": -75.06646, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 230.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 126.0, "Total Spend": 621.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.36, "MEDIAN_SPEND_PER_CUSTOMER": 76.36 }, "geometry": { "type": "Point", "coordinates": [ -75.06646, 40.052472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "LOCATION_NAME": "Beer Stop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.015837, "LONGITUDE": -75.130275, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 208.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4396.0, "Total Transactions": 98.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.95, "MEDIAN_SPEND_PER_CUSTOMER": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.130275, 40.015837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-pjv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.993233, "LONGITUDE": -75.096202, "DATE_RANGE_START": 2019, "Total Visits": 1008.0, "Total Visitors": 788.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2771.0, "Total Transactions": 143.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.05, "MEDIAN_SPEND_PER_CUSTOMER": 20.65 }, "geometry": { "type": "Point", "coordinates": [ -75.096202, 39.993233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "LOCATION_NAME": "Penn Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 125.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1124.0, "Total Transactions": 47.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.96, "MEDIAN_SPEND_PER_CUSTOMER": 24.73 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgc-zvf", "LOCATION_NAME": "Got The Look", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.976469, "LONGITUDE": -75.224485, "DATE_RANGE_START": 2019, "Total Visits": 396.0, "Total Visitors": 323.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 22.0, "Total Spend": 13028.0, "Total Transactions": 316.0, "Total Customers": 288.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.224485, 39.976469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-vfz", "LOCATION_NAME": "Philly Homebrew Outlet West", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.942809, "LONGITUDE": -75.210442, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 40.0, "POI_CBG": 421010074002.0, "MEDIAN_DWELL": 201.0, "Total Spend": 335.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.88, "MEDIAN_SPEND_PER_CUSTOMER": 23.88 }, "geometry": { "type": "Point", "coordinates": [ -75.210442, 39.942809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-gp9", "LOCATION_NAME": "Umai Umai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964683, "LONGITUDE": -75.174102, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 42.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 67.0, "Total Spend": 927.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.81, "MEDIAN_SPEND_PER_CUSTOMER": 40.81 }, "geometry": { "type": "Point", "coordinates": [ -75.174102, 39.964683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.068776, "LONGITUDE": -75.005362, "DATE_RANGE_START": 2019, "Total Visits": 496.0, "Total Visitors": 420.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9974.0, "Total Transactions": 555.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.79, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005362, 40.068776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.012783, "LONGITUDE": -75.150904, "DATE_RANGE_START": 2019, "Total Visits": 1572.0, "Total Visitors": 1193.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 17467.0, "Total Transactions": 331.0, "Total Customers": 257.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.07, "MEDIAN_SPEND_PER_CUSTOMER": 34.11 }, "geometry": { "type": "Point", "coordinates": [ -75.150904, 40.012783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pg9-t9z", "LOCATION_NAME": "A&A Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.965619, "LONGITUDE": -75.165824, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 53.0, "POI_CBG": 421010134022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 678.0, "Total Transactions": 83.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.45, "MEDIAN_SPEND_PER_CUSTOMER": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.165824, 39.965619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050139, "LONGITUDE": -75.066802, "DATE_RANGE_START": 2019, "Total Visits": 488.0, "Total Visitors": 386.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2665.0, "Total Transactions": 173.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.066802, 40.050139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-6ff", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.107593, "LONGITUDE": -75.02698, "DATE_RANGE_START": 2019, "Total Visits": 1139.0, "Total Visitors": 818.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4827.0, "Total Transactions": 301.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.02698, 40.107593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031321, "LONGITUDE": -75.083478, "DATE_RANGE_START": 2019, "Total Visits": 2710.0, "Total Visitors": 2021.0, "POI_CBG": 421010318004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 358.0, "Total Transactions": 17.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.02, "MEDIAN_SPEND_PER_CUSTOMER": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.083478, 40.031321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "LOCATION_NAME": "Jetro Cash & Carry", "TOP_CATEGORY": "Grocery and Related Product Merchant Wholesalers", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2019, "Total Visits": 4492.0, "Total Visitors": 3295.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 392131.0, "Total Transactions": 966.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 279.78, "MEDIAN_SPEND_PER_CUSTOMER": 582.56 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "LOCATION_NAME": "Hong Kong Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2019, "Total Visits": 1249.0, "Total Visitors": 938.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 6208.0, "Total Transactions": 138.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.44, "MEDIAN_SPEND_PER_CUSTOMER": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.049354, "LONGITUDE": -74.989522, "DATE_RANGE_START": 2019, "Total Visits": 1434.0, "Total Visitors": 899.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 19096.0, "Total Transactions": 2095.0, "Total Customers": 883.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.4, "MEDIAN_SPEND_PER_CUSTOMER": 11.14 }, "geometry": { "type": "Point", "coordinates": [ -74.989522, 40.049354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "LOCATION_NAME": "A Plus", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2019, "Total Visits": 493.0, "Total Visitors": 303.0, "POI_CBG": 421010298005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 690.0, "Total Transactions": 25.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "LOCATION_NAME": "Deluxe Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048286, "LONGITUDE": -75.012528, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 87.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 304.0, "Total Spend": 371.0, "Total Transactions": 15.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.5, "MEDIAN_SPEND_PER_CUSTOMER": 59.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012528, 40.048286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054006, "LONGITUDE": -75.193227, "DATE_RANGE_START": 2019, "Total Visits": 330.0, "Total Visitors": 273.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8798.0, "Total Transactions": 385.0, "Total Customers": 233.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 21.62 }, "geometry": { "type": "Point", "coordinates": [ -75.193227, 40.054006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phm-8sq", "LOCATION_NAME": "Oak Lane Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.055908, "LONGITUDE": -75.140617, "DATE_RANGE_START": 2019, "Total Visits": 133.0, "Total Visitors": 83.0, "POI_CBG": 421010268003.0, "MEDIAN_DWELL": 306.0, "Total Spend": 83.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140617, 40.055908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm9-zs5", "LOCATION_NAME": "Condom Kingdom", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.942054, "LONGITUDE": -75.150455, "DATE_RANGE_START": 2019, "Total Visits": 2189.0, "Total Visitors": 1819.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 36.0, "Total Spend": 1060.0, "Total Transactions": 35.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.25, "MEDIAN_SPEND_PER_CUSTOMER": 21.25 }, "geometry": { "type": "Point", "coordinates": [ -75.150455, 39.942054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "LOCATION_NAME": "Thai Kuu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2019, "Total Visits": 158.0, "Total Visitors": 138.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 4353.0, "Total Transactions": 117.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.06, "MEDIAN_SPEND_PER_CUSTOMER": 37.16 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "LOCATION_NAME": "Barclay Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948498, "LONGITUDE": -75.170757, "DATE_RANGE_START": 2019, "Total Visits": 1031.0, "Total Visitors": 640.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 180.0, "Total Spend": 26204.0, "Total Transactions": 107.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 225.85, "MEDIAN_SPEND_PER_CUSTOMER": 242.46 }, "geometry": { "type": "Point", "coordinates": [ -75.170757, 39.948498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "LOCATION_NAME": "HKS pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 35.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 254.0, "Total Spend": 8169.0, "Total Transactions": 318.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj6-bx5", "LOCATION_NAME": "Nam Vang Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037327, "LONGITUDE": -75.108009, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 145.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 15352.0, "Total Transactions": 212.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.0, "MEDIAN_SPEND_PER_CUSTOMER": 71.28 }, "geometry": { "type": "Point", "coordinates": [ -75.108009, 40.037327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "LOCATION_NAME": "Mr Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 103.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 171.0, "Total Spend": 3078.0, "Total Transactions": 173.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.04, "MEDIAN_SPEND_PER_CUSTOMER": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-k4v", "LOCATION_NAME": "Kisso Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954278, "LONGITUDE": -75.146239, "DATE_RANGE_START": 2019, "Total Visits": 3968.0, "Total Visitors": 2957.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 3133.0, "Total Transactions": 52.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.94, "MEDIAN_SPEND_PER_CUSTOMER": 49.85 }, "geometry": { "type": "Point", "coordinates": [ -75.146239, 39.954278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2019, "Total Visits": 583.0, "Total Visitors": 513.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 18424.0, "Total Transactions": 341.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.36, "MEDIAN_SPEND_PER_CUSTOMER": 48.3 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmb-xyv", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955915, "LONGITUDE": -75.155905, "DATE_RANGE_START": 2019, "Total Visits": 723.0, "Total Visitors": 541.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 162.0, "Total Transactions": 23.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.24, "MEDIAN_SPEND_PER_CUSTOMER": 5.24 }, "geometry": { "type": "Point", "coordinates": [ -75.155905, 39.955915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "LOCATION_NAME": "Malelani Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05294, "LONGITUDE": -75.186129, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 72.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 1185.0, "Total Transactions": 42.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.25, "MEDIAN_SPEND_PER_CUSTOMER": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186129, 40.05294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pj4-35z", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019242, "LONGITUDE": -75.149367, "DATE_RANGE_START": 2019, "Total Visits": 210.0, "Total Visitors": 205.0, "POI_CBG": 421010204002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.149367, 40.019242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962152, "LONGITUDE": -75.2011, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 48.0, "POI_CBG": 421010108004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 321.0, "Total Transactions": 30.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.2011, 39.962152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002693, "LONGITUDE": -75.222651, "DATE_RANGE_START": 2019, "Total Visits": 830.0, "Total Visitors": 641.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 13619.0, "Total Transactions": 1844.0, "Total Customers": 1076.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.89, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.222651, 40.002693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2019, "Total Visits": 1094.0, "Total Visitors": 761.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 12479.0, "Total Transactions": 1967.0, "Total Customers": 919.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.13, "MEDIAN_SPEND_PER_CUSTOMER": 7.68 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "LOCATION_NAME": "Girard Meat Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.972943, "LONGITUDE": -75.217427, "DATE_RANGE_START": 2019, "Total Visits": 576.0, "Total Visitors": 490.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3788.0, "Total Transactions": 128.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 32.68 }, "geometry": { "type": "Point", "coordinates": [ -75.217427, 39.972943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pj6-6hq", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042687, "LONGITUDE": -75.109486, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 147.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1116.0, "Total Transactions": 23.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.68, "MEDIAN_SPEND_PER_CUSTOMER": 44.85 }, "geometry": { "type": "Point", "coordinates": [ -75.109486, 40.042687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "LOCATION_NAME": "Capriccio Cafe and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955464, "LONGITUDE": -75.166555, "DATE_RANGE_START": 2019, "Total Visits": 491.0, "Total Visitors": 366.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 6934.0, "Total Transactions": 765.0, "Total Customers": 471.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.37, "MEDIAN_SPEND_PER_CUSTOMER": 8.92 }, "geometry": { "type": "Point", "coordinates": [ -75.166555, 39.955464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-x5z", "LOCATION_NAME": "Essen Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931036, "LONGITUDE": -75.161763, "DATE_RANGE_START": 2019, "Total Visits": 866.0, "Total Visitors": 685.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4955.0, "Total Transactions": 388.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.161763, 39.931036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwd-pjv", "LOCATION_NAME": "Urban Shop 543", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.889355, "LONGITUDE": -75.175351, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 102.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 172.0, "Total Spend": 389.0, "Total Transactions": 62.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.56, "MEDIAN_SPEND_PER_CUSTOMER": 50.28 }, "geometry": { "type": "Point", "coordinates": [ -75.175351, 39.889355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pp4-vfz", "LOCATION_NAME": "Franco's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982045, "LONGITUDE": -75.121584, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 23.0, "POI_CBG": 421010160004.0, "MEDIAN_DWELL": 302.0, "Total Spend": 1405.0, "Total Transactions": 70.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.36, "MEDIAN_SPEND_PER_CUSTOMER": 23.85 }, "geometry": { "type": "Point", "coordinates": [ -75.121584, 39.982045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dw2-7yv", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958784, "LONGITUDE": -75.241349, "DATE_RANGE_START": 2019, "Total Visits": 761.0, "Total Visitors": 461.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 309.0, "Total Spend": 591.0, "Total Transactions": 35.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.47, "MEDIAN_SPEND_PER_CUSTOMER": 14.47 }, "geometry": { "type": "Point", "coordinates": [ -75.241349, 39.958784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-phq-nbk", "LOCATION_NAME": "Reyes Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.054327, "LONGITUDE": -75.148175, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 23.0, "POI_CBG": 421010267004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 821.0, "Total Transactions": 100.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148175, 40.054327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "LOCATION_NAME": "Old English Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 113.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 267.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 29.65 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "LOCATION_NAME": "Crunchik'n", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2019, "Total Visits": 2693.0, "Total Visitors": 1854.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 98.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.98, "MEDIAN_SPEND_PER_CUSTOMER": 22.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2019, "Total Visits": 488.0, "Total Visitors": 310.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 91.0, "Total Spend": 6019.0, "Total Transactions": 505.0, "Total Customers": 401.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.02, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "LOCATION_NAME": "Mulberry Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951945, "LONGITUDE": -75.144635, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 125.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13700.0, "Total Transactions": 748.0, "Total Customers": 393.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.8, "MEDIAN_SPEND_PER_CUSTOMER": 23.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144635, 39.951945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2019, "Total Visits": 8184.0, "Total Visitors": 5962.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 3414.0, "Total Transactions": 160.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.2, "MEDIAN_SPEND_PER_CUSTOMER": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 53.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3452.0, "Total Transactions": 476.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.88 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm9-y9z", "LOCATION_NAME": "Lil' Pop Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94178, "LONGITUDE": -75.149245, "DATE_RANGE_START": 2019, "Total Visits": 1857.0, "Total Visitors": 1744.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1701.0, "Total Transactions": 198.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.99, "MEDIAN_SPEND_PER_CUSTOMER": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.94178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953617, "LONGITUDE": -75.167012, "DATE_RANGE_START": 2019, "Total Visits": 7009.0, "Total Visitors": 4229.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 128.0, "Total Spend": 2713.0, "Total Transactions": 513.0, "Total Customers": 293.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.51, "MEDIAN_SPEND_PER_CUSTOMER": 6.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167012, 39.953617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-phy-7bk", "LOCATION_NAME": "Front Street Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.023724, "LONGITUDE": -75.123608, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 60.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 519.0, "Total Spend": 15068.0, "Total Transactions": 405.0, "Total Customers": 343.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.98, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123608, 40.023724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvw-wzf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.958527, "LONGITUDE": -75.235976, "DATE_RANGE_START": 2019, "Total Visits": 495.0, "Total Visitors": 331.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1278.0, "Total Transactions": 168.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235976, 39.958527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.9622, "LONGITUDE": -75.172139, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 130.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 71.0, "Total Spend": 2818.0, "Total Transactions": 37.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.32, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.172139, 39.9622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "LOCATION_NAME": "Medical Tower Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.948045, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2019, "Total Visits": 2420.0, "Total Visitors": 1562.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 78.0, "Total Spend": 1926.0, "Total Transactions": 67.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.37, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.948045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043955, "LONGITUDE": -75.231236, "DATE_RANGE_START": 2019, "Total Visits": 401.0, "Total Visitors": 316.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 289.0, "Total Transactions": 27.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.78, "MEDIAN_SPEND_PER_CUSTOMER": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.231236, 40.043955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "LOCATION_NAME": "OfficeMax", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.043545, "LONGITUDE": -75.054368, "DATE_RANGE_START": 2019, "Total Visits": 3296.0, "Total Visitors": 2499.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9869.0, "Total Transactions": 333.0, "Total Customers": 277.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.32, "MEDIAN_SPEND_PER_CUSTOMER": 16.07 }, "geometry": { "type": "Point", "coordinates": [ -75.054368, 40.043545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-kvf", "LOCATION_NAME": "Antique Gallery", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.076502, "LONGITUDE": -75.206969, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 127.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 162.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.6, "MEDIAN_SPEND_PER_CUSTOMER": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.206969, 40.076502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.966876, "LONGITUDE": -75.233151, "DATE_RANGE_START": 2019, "Total Visits": 2310.0, "Total Visitors": 1461.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 752.0, "Total Transactions": 52.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.69, "MEDIAN_SPEND_PER_CUSTOMER": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.233151, 39.966876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.02991, "LONGITUDE": -75.186134, "DATE_RANGE_START": 2019, "Total Visits": 3618.0, "Total Visitors": 2467.0, "POI_CBG": 421010239002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2960.0, "Total Transactions": 138.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.63, "MEDIAN_SPEND_PER_CUSTOMER": 20.09 }, "geometry": { "type": "Point", "coordinates": [ -75.186134, 40.02991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-33q", "LOCATION_NAME": "LOFT", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.953717, "LONGITUDE": -75.195101, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 100.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3276.0, "Total Transactions": 63.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.8, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195101, 39.953717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "LOCATION_NAME": "Front Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970159, "LONGITUDE": -75.135552, "DATE_RANGE_START": 2019, "Total Visits": 773.0, "Total Visitors": 658.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 5524.0, "Total Transactions": 198.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.36, "MEDIAN_SPEND_PER_CUSTOMER": 25.52 }, "geometry": { "type": "Point", "coordinates": [ -75.135552, 39.970159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj6-8y9", "LOCATION_NAME": "El Rinconcito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031782, "LONGITUDE": -75.107117, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 140.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 447.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.107117, 40.031782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95261, "LONGITUDE": -75.174957, "DATE_RANGE_START": 2019, "Total Visits": 585.0, "Total Visitors": 346.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 167.0, "Total Spend": 463.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.174957, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "LOCATION_NAME": "Independence Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14375.0, "Total Transactions": 515.0, "Total Customers": 431.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.37, "MEDIAN_SPEND_PER_CUSTOMER": 26.34 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "LOCATION_NAME": "Moshulu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941589, "LONGITUDE": -75.141261, "DATE_RANGE_START": 2019, "Total Visits": 2424.0, "Total Visitors": 2165.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 60680.0, "Total Transactions": 1108.0, "Total Customers": 898.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.96, "MEDIAN_SPEND_PER_CUSTOMER": 41.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141261, 39.941589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-jjv", "LOCATION_NAME": "Pastrami & Things", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952406, "LONGITUDE": -75.170418, "DATE_RANGE_START": 2019, "Total Visits": 540.0, "Total Visitors": 421.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 47.0, "Total Spend": 263.0, "Total Transactions": 38.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.88 }, "geometry": { "type": "Point", "coordinates": [ -75.170418, 39.952406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2019, "Total Visits": 865.0, "Total Visitors": 681.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 14311.0, "Total Transactions": 1446.0, "Total Customers": 865.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.31, "MEDIAN_SPEND_PER_CUSTOMER": 11.59 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951369, "LONGITUDE": -75.166562, "DATE_RANGE_START": 2019, "Total Visits": 730.0, "Total Visitors": 501.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 73.0, "Total Spend": 15882.0, "Total Transactions": 1154.0, "Total Customers": 994.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166562, 39.951369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@63s-dvq-6ff", "LOCATION_NAME": "Citizens Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954856, "LONGITUDE": -75.229978, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010085004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 60.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.06, "MEDIAN_SPEND_PER_CUSTOMER": 18.06 }, "geometry": { "type": "Point", "coordinates": [ -75.229978, 39.954856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "LOCATION_NAME": "Christies Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 17.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 193.0, "Total Spend": 5959.0, "Total Transactions": 518.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.49, "MEDIAN_SPEND_PER_CUSTOMER": 18.73 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25p-222@628-pm4-cwk", "LOCATION_NAME": "Station Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925815, "LONGITUDE": -75.172603, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 27.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4884.0, "Total Transactions": 170.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172603, 39.925815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2019, "Total Visits": 283.0, "Total Visitors": 198.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5089.0, "Total Transactions": 946.0, "Total Customers": 566.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.62, "MEDIAN_SPEND_PER_CUSTOMER": 5.96 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "LOCATION_NAME": "Sprouts Farmers Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2019, "Total Visits": 3233.0, "Total Visitors": 1952.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 412353.0, "Total Transactions": 11094.0, "Total Customers": 5069.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.96, "MEDIAN_SPEND_PER_CUSTOMER": 47.87 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-jgk", "LOCATION_NAME": "AM Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.971594, "LONGITUDE": -75.225601, "DATE_RANGE_START": 2019, "Total Visits": 501.0, "Total Visitors": 343.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1473.0, "Total Transactions": 243.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.47, "MEDIAN_SPEND_PER_CUSTOMER": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.225601, 39.971594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-p8d-8y9", "LOCATION_NAME": "T & J Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.00933, "LONGITUDE": -75.084903, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 68.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 91.0, "Total Spend": 217.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 21.48 }, "geometry": { "type": "Point", "coordinates": [ -75.084903, 40.00933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-ty9", "LOCATION_NAME": "Shane Confectionery", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.949497, "LONGITUDE": -75.14262, "DATE_RANGE_START": 2019, "Total Visits": 3558.0, "Total Visitors": 3110.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3452.0, "Total Transactions": 188.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.55 }, "geometry": { "type": "Point", "coordinates": [ -75.14262, 39.949497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22h@628-pmf-n3q", "LOCATION_NAME": "Genji", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953358, "LONGITUDE": -75.165439, "DATE_RANGE_START": 2019, "Total Visits": 1019.0, "Total Visitors": 633.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 89.0, "Total Spend": 1780.0, "Total Transactions": 95.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 14.47 }, "geometry": { "type": "Point", "coordinates": [ -75.165439, 39.953358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-wx5", "LOCATION_NAME": "Gap Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090197, "LONGITUDE": -74.960879, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 82.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2821.0, "Total Transactions": 60.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.57, "MEDIAN_SPEND_PER_CUSTOMER": 38.16 }, "geometry": { "type": "Point", "coordinates": [ -74.960879, 40.090197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-2hq", "LOCATION_NAME": "Venus Video", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.917066, "LONGITUDE": -75.216791, "DATE_RANGE_START": 2019, "Total Visits": 1507.0, "Total Visitors": 1103.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 2533.0, "Total Transactions": 73.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.216791, 39.917066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "LOCATION_NAME": "Zumiez", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2019, "Total Visits": 420.0, "Total Visitors": 373.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3896.0, "Total Transactions": 77.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.52, "MEDIAN_SPEND_PER_CUSTOMER": 37.52 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm6-gkz", "LOCATION_NAME": "South View Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919441, "LONGITUDE": -75.153896, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 20.0, "POI_CBG": 421010042024.0, "MEDIAN_DWELL": 154.0, "Total Spend": 423.0, "Total Transactions": 57.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 10.34 }, "geometry": { "type": "Point", "coordinates": [ -75.153896, 39.919441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 45.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 100.0, "Total Spend": 3090.0, "Total Transactions": 172.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.01, "MEDIAN_SPEND_PER_CUSTOMER": 16.01 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmf-s3q", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944594, "LONGITUDE": -75.171766, "DATE_RANGE_START": 2019, "Total Visits": 178.0, "Total Visitors": 128.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 27.0, "Total Spend": 7903.0, "Total Transactions": 870.0, "Total Customers": 690.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.89, "MEDIAN_SPEND_PER_CUSTOMER": 7.94 }, "geometry": { "type": "Point", "coordinates": [ -75.171766, 39.944594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pfz-ch5", "LOCATION_NAME": "Pilgrim Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022764, "LONGITUDE": -75.219439, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 308.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 22.0, "Total Spend": 4736.0, "Total Transactions": 675.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.78, "MEDIAN_SPEND_PER_CUSTOMER": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.219439, 40.022764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgh-6p9", "LOCATION_NAME": "New Station Pizza 8", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010722, "LONGITUDE": -75.164603, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010202004.0, "MEDIAN_DWELL": 116.0, "Total Spend": 2578.0, "Total Transactions": 175.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.91, "MEDIAN_SPEND_PER_CUSTOMER": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.164603, 40.010722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.036515, "LONGITUDE": -75.108096, "DATE_RANGE_START": 2019, "Total Visits": 225.0, "Total Visitors": 188.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 7364.0, "Total Transactions": 172.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.62, "MEDIAN_SPEND_PER_CUSTOMER": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.108096, 40.036515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.916081, "LONGITUDE": -75.185496, "DATE_RANGE_START": 2019, "Total Visits": 5282.0, "Total Visitors": 3158.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 200754.0, "Total Transactions": 1194.0, "Total Customers": 661.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.76, "MEDIAN_SPEND_PER_CUSTOMER": 57.93 }, "geometry": { "type": "Point", "coordinates": [ -75.185496, 39.916081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj9-zmk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.036925, "LONGITUDE": -75.130756, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 45.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 705.0, "Total Transactions": 35.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.26, "MEDIAN_SPEND_PER_CUSTOMER": 22.17 }, "geometry": { "type": "Point", "coordinates": [ -75.130756, 40.036925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2019, "Total Visits": 623.0, "Total Visitors": 486.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3630.0, "Total Transactions": 207.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.29, "MEDIAN_SPEND_PER_CUSTOMER": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "LOCATION_NAME": "Primal Nutrition", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 45.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2602.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.75, "MEDIAN_SPEND_PER_CUSTOMER": 48.75 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2019, "Total Visits": 3959.0, "Total Visitors": 2700.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 3.0, "Total Spend": 18388.0, "Total Transactions": 1014.0, "Total Customers": 606.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.29 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-x89", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030078, "LONGITUDE": -75.146229, "DATE_RANGE_START": 2019, "Total Visits": 6201.0, "Total Visitors": 3615.0, "POI_CBG": 421010282001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 253.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.97, "MEDIAN_SPEND_PER_CUSTOMER": 28.58 }, "geometry": { "type": "Point", "coordinates": [ -75.146229, 40.030078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "LOCATION_NAME": "Anthropologie", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950352, "LONGITUDE": -75.170778, "DATE_RANGE_START": 2019, "Total Visits": 8022.0, "Total Visitors": 4976.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 101.0, "Total Spend": 189466.0, "Total Transactions": 2014.0, "Total Customers": 1314.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.94, "MEDIAN_SPEND_PER_CUSTOMER": 59.85 }, "geometry": { "type": "Point", "coordinates": [ -75.170778, 39.950352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2019, "Total Visits": 871.0, "Total Visitors": 441.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 237.0, "Total Spend": 4340.0, "Total Transactions": 123.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.14, "MEDIAN_SPEND_PER_CUSTOMER": 29.18 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-sqz", "LOCATION_NAME": "Holts Cigar Company", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.949481, "LONGITUDE": -75.167107, "DATE_RANGE_START": 2019, "Total Visits": 1001.0, "Total Visitors": 758.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 80.0, "Total Spend": 13893.0, "Total Transactions": 153.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.22, "MEDIAN_SPEND_PER_CUSTOMER": 92.22 }, "geometry": { "type": "Point", "coordinates": [ -75.167107, 39.949481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "LOCATION_NAME": "Blick Art Materials", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2019, "Total Visits": 480.0, "Total Visitors": 272.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 130.0, "Total Spend": 441.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.35, "MEDIAN_SPEND_PER_CUSTOMER": 12.35 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-3qz", "LOCATION_NAME": "Jana Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.020931, "LONGITUDE": -75.117668, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 20.0, "POI_CBG": 421010289011.0, "MEDIAN_DWELL": 26.0, "Total Spend": 136.0, "Total Transactions": 8.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.11, "MEDIAN_SPEND_PER_CUSTOMER": 40.89 }, "geometry": { "type": "Point", "coordinates": [ -75.117668, 40.020931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-xdv", "LOCATION_NAME": "Tiffin", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970151, "LONGITUDE": -75.148856, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 92.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 85.0, "Total Spend": 288.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.96, "MEDIAN_SPEND_PER_CUSTOMER": 71.96 }, "geometry": { "type": "Point", "coordinates": [ -75.148856, 39.970151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "LOCATION_NAME": "Shing Kee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 140.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 2049.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.83, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2019, "Total Visits": 197.0, "Total Visitors": 168.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8448.0, "Total Transactions": 466.0, "Total Customers": 401.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.11, "MEDIAN_SPEND_PER_CUSTOMER": 16.46 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pft-yjv", "LOCATION_NAME": "Murphy's Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031371, "LONGITUDE": -75.207978, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 82.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 103.0, "Total Spend": 1294.0, "Total Transactions": 30.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.89, "MEDIAN_SPEND_PER_CUSTOMER": 46.28 }, "geometry": { "type": "Point", "coordinates": [ -75.207978, 40.031371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "LOCATION_NAME": "Fishtown Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 30.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1215.0, "Total Transactions": 68.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.69, "MEDIAN_SPEND_PER_CUSTOMER": 17.09 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-x3q", "LOCATION_NAME": "New Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986317, "LONGITUDE": -75.131538, "DATE_RANGE_START": 2019, "Total Visits": 1939.0, "Total Visitors": 1463.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1732.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131538, 39.986317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pg2-zj9", "LOCATION_NAME": "Panda Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054638, "LONGITUDE": -75.193918, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 58.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 1691.0, "Total Transactions": 105.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.3, "MEDIAN_SPEND_PER_CUSTOMER": 16.47 }, "geometry": { "type": "Point", "coordinates": [ -75.193918, 40.054638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.016586, "LONGITUDE": -75.096388, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 178.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4140.0, "Total Transactions": 258.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.97, "MEDIAN_SPEND_PER_CUSTOMER": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.096388, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921808, "LONGITUDE": -75.146286, "DATE_RANGE_START": 2019, "Total Visits": 378.0, "Total Visitors": 356.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4313.0, "Total Transactions": 247.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.21, "MEDIAN_SPEND_PER_CUSTOMER": 16.42 }, "geometry": { "type": "Point", "coordinates": [ -75.146286, 39.921808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2019, "Total Visits": 611.0, "Total Visitors": 545.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5202.0, "Total Transactions": 531.0, "Total Customers": 401.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.95, "MEDIAN_SPEND_PER_CUSTOMER": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047033, "LONGITUDE": -74.993404, "DATE_RANGE_START": 2019, "Total Visits": 386.0, "Total Visitors": 245.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4296.0, "Total Transactions": 696.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -74.993404, 40.047033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-5s5", "LOCATION_NAME": "Say Cheese", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007571, "LONGITUDE": -75.186532, "DATE_RANGE_START": 2019, "Total Visits": 801.0, "Total Visitors": 458.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 63.0, "Total Spend": 90.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186532, 40.007571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pg2-n5z", "LOCATION_NAME": "Torres Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051691, "LONGITUDE": -75.181363, "DATE_RANGE_START": 2019, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010253002.0, "MEDIAN_DWELL": null, "Total Spend": 150.0, "Total Transactions": 20.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.29, "MEDIAN_SPEND_PER_CUSTOMER": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.051691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2zf", "LOCATION_NAME": "West Point Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965894, "LONGITUDE": -75.245802, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010096005.0, "MEDIAN_DWELL": 11.0, "Total Spend": 405.0, "Total Transactions": 23.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.03, "MEDIAN_SPEND_PER_CUSTOMER": 15.22 }, "geometry": { "type": "Point", "coordinates": [ -75.245802, 39.965894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-phy-49z", "LOCATION_NAME": "B & O Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.022553, "LONGITUDE": -75.123914, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 82.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 811.0, "Total Transactions": 37.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.25, "MEDIAN_SPEND_PER_CUSTOMER": 24.25 }, "geometry": { "type": "Point", "coordinates": [ -75.123914, 40.022553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.914298, "LONGITUDE": -75.149292, "DATE_RANGE_START": 2019, "Total Visits": 3266.0, "Total Visitors": 2284.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2065.0, "Total Transactions": 113.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 25.85 }, "geometry": { "type": "Point", "coordinates": [ -75.149292, 39.914298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2019, "Total Visits": 386.0, "Total Visitors": 255.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6646.0, "Total Transactions": 1101.0, "Total Customers": 606.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.95, "MEDIAN_SPEND_PER_CUSTOMER": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2019, "Total Visits": 1681.0, "Total Visitors": 1184.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 8222.0, "Total Transactions": 1249.0, "Total Customers": 606.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.49, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5mk", "LOCATION_NAME": "U Bahn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95079, "LONGITUDE": -75.16242, "DATE_RANGE_START": 2019, "Total Visits": 34207.0, "Total Visitors": 20410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 35146.0, "Total Transactions": 1348.0, "Total Customers": 865.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16242, 39.95079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmd-w49", "LOCATION_NAME": "Twenty Manning", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948622, "LONGITUDE": -75.17407, "DATE_RANGE_START": 2019, "Total Visits": 405.0, "Total Visitors": 230.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 83.0, "Total Spend": 4247.0, "Total Transactions": 65.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.6, "MEDIAN_SPEND_PER_CUSTOMER": 50.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17407, 39.948622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7bk", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948987, "LONGITUDE": -75.16307, "DATE_RANGE_START": 2019, "Total Visits": 1586.0, "Total Visitors": 1234.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 23.0, "Total Spend": 14515.0, "Total Transactions": 553.0, "Total Customers": 483.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.17, "MEDIAN_SPEND_PER_CUSTOMER": 24.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16307, 39.948987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "LOCATION_NAME": "Maggiano's Little Italy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953256, "LONGITUDE": -75.160263, "DATE_RANGE_START": 2019, "Total Visits": 1148.0, "Total Visitors": 983.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 36542.0, "Total Transactions": 686.0, "Total Customers": 608.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.66, "MEDIAN_SPEND_PER_CUSTOMER": 36.31 }, "geometry": { "type": "Point", "coordinates": [ -75.160263, 39.953256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-47q", "LOCATION_NAME": "The Lunar Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982358, "LONGITUDE": -75.103191, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 75.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 48.0, "Total Spend": 7331.0, "Total Transactions": 148.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.1, "MEDIAN_SPEND_PER_CUSTOMER": 47.08 }, "geometry": { "type": "Point", "coordinates": [ -75.103191, 39.982358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 143.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 22.0, "Total Spend": 5100.0, "Total Transactions": 170.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.93, "MEDIAN_SPEND_PER_CUSTOMER": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2019, "Total Visits": 1314.0, "Total Visitors": 1039.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6566.0, "Total Transactions": 1151.0, "Total Customers": 600.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.65, "MEDIAN_SPEND_PER_CUSTOMER": 6.55 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "LOCATION_NAME": "Curran's Irish Inn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2019, "Total Visits": 939.0, "Total Visitors": 778.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 63.0, "Total Spend": 3294.0, "Total Transactions": 80.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.75 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "LOCATION_NAME": "Canto House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955533, "LONGITUDE": -75.155568, "DATE_RANGE_START": 2019, "Total Visits": 11720.0, "Total Visitors": 7916.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 3310.0, "Total Transactions": 113.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.93, "MEDIAN_SPEND_PER_CUSTOMER": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155568, 39.955533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 33277.0, "Total Transactions": 515.0, "Total Customers": 470.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.04, "MEDIAN_SPEND_PER_CUSTOMER": 47.61 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-ygk", "LOCATION_NAME": "Pho Cali", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953422, "LONGITUDE": -75.156467, "DATE_RANGE_START": 2019, "Total Visits": 468.0, "Total Visitors": 410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 3002.0, "Total Transactions": 108.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.6, "MEDIAN_SPEND_PER_CUSTOMER": 26.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156467, 39.953422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "LOCATION_NAME": "Cafe Thanh Truc", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 52.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 25.0, "Total Spend": 283.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.72, "MEDIAN_SPEND_PER_CUSTOMER": 30.72 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-3kf", "LOCATION_NAME": "Mirage Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941399, "LONGITUDE": -75.144795, "DATE_RANGE_START": 2019, "Total Visits": 2409.0, "Total Visitors": 1974.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 37.0, "Total Spend": 10553.0, "Total Transactions": 228.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.16, "MEDIAN_SPEND_PER_CUSTOMER": 44.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144795, 39.941399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "LOCATION_NAME": "Lucha Cartel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 295.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 37041.0, "Total Transactions": 971.0, "Total Customers": 821.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032189, "LONGITUDE": -75.214079, "DATE_RANGE_START": 2019, "Total Visits": 521.0, "Total Visitors": 365.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 32.0, "Total Spend": 9425.0, "Total Transactions": 531.0, "Total Customers": 455.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.6, "MEDIAN_SPEND_PER_CUSTOMER": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.214079, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm8-kxq", "LOCATION_NAME": "NBC Sports Arena", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904477, "LONGITUDE": -75.169135, "DATE_RANGE_START": 2019, "Total Visits": 7977.0, "Total Visitors": 6593.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 67593.0, "Total Transactions": 3381.0, "Total Customers": 2432.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.15 }, "geometry": { "type": "Point", "coordinates": [ -75.169135, 39.904477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmf-zj9", "LOCATION_NAME": "Arch Brunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955759, "LONGITUDE": -75.17646, "DATE_RANGE_START": 2019, "Total Visits": 4434.0, "Total Visitors": 3385.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 67.0, "Total Spend": 646.0, "Total Transactions": 28.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17646, 39.955759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "LOCATION_NAME": "Red Poke Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 98.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2231.0, "Total Transactions": 125.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.15, "MEDIAN_SPEND_PER_CUSTOMER": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgk-z9f", "LOCATION_NAME": "Fuwa Deli&beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99997, "LONGITUDE": -75.209417, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 57.0, "POI_CBG": 421010122041.0, "MEDIAN_DWELL": 5.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.52, "MEDIAN_SPEND_PER_CUSTOMER": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.209417, 39.99997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "LOCATION_NAME": "Schmear It", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956751, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2019, "Total Visits": 12156.0, "Total Visitors": 6523.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 84.0, "Total Spend": 3219.0, "Total Transactions": 438.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.008773, "LONGITUDE": -75.176588, "DATE_RANGE_START": 2019, "Total Visits": 3218.0, "Total Visitors": 2099.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 15140.0, "Total Transactions": 598.0, "Total Customers": 560.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.41, "MEDIAN_SPEND_PER_CUSTOMER": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.176588, 40.008773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055372, "LONGITUDE": -75.089592, "DATE_RANGE_START": 2019, "Total Visits": 1737.0, "Total Visitors": 1179.0, "POI_CBG": 421010307002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 353.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.81, "MEDIAN_SPEND_PER_CUSTOMER": 41.34 }, "geometry": { "type": "Point", "coordinates": [ -75.089592, 40.055372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026583, "LONGITUDE": -75.209516, "DATE_RANGE_START": 2019, "Total Visits": 1712.0, "Total Visitors": 1321.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 300.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209516, 40.026583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-6p9", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950763, "LONGITUDE": -75.164862, "DATE_RANGE_START": 2019, "Total Visits": 748.0, "Total Visitors": 451.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 129.0, "Total Spend": 4686.0, "Total Transactions": 65.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.0, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164862, 39.950763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-5cq", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950795, "LONGITUDE": -75.160907, "DATE_RANGE_START": 2019, "Total Visits": 783.0, "Total Visitors": 598.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 79.0, "Total Spend": 6213.0, "Total Transactions": 83.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.0, "MEDIAN_SPEND_PER_CUSTOMER": 69.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160907, 39.950795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-phn-87q", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.080555, "LONGITUDE": -75.171342, "DATE_RANGE_START": 2019, "Total Visits": 163.0, "Total Visitors": 158.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 4310.0, "Total Transactions": 43.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.74, "MEDIAN_SPEND_PER_CUSTOMER": 109.96 }, "geometry": { "type": "Point", "coordinates": [ -75.171342, 40.080555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-kvf", "LOCATION_NAME": "Long In the Tooth", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.951536, "LONGITUDE": -75.174727, "DATE_RANGE_START": 2019, "Total Visits": 2805.0, "Total Visitors": 1862.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 101.0, "Total Spend": 713.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.9, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174727, 39.951536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984509, "LONGITUDE": -75.121352, "DATE_RANGE_START": 2019, "Total Visits": 666.0, "Total Visitors": 491.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2590.0, "Total Transactions": 108.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.3, "MEDIAN_SPEND_PER_CUSTOMER": 35.11 }, "geometry": { "type": "Point", "coordinates": [ -75.121352, 39.984509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-y9z", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954522, "LONGITUDE": -75.184483, "DATE_RANGE_START": 2019, "Total Visits": 4626.0, "Total Visitors": 2875.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 79.0, "Total Spend": 5795.0, "Total Transactions": 631.0, "Total Customers": 475.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.184483, 39.954522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgf-33q", "LOCATION_NAME": "Kiwi Frozen Yogurt", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954562, "LONGITUDE": -75.195031, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 756.0, "Total Transactions": 45.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195031, 39.954562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pm9-wzf", "LOCATION_NAME": "GIANT Heirloom Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.951718, "LONGITUDE": -75.153682, "DATE_RANGE_START": 2019, "Total Visits": 59483.0, "Total Visitors": 32677.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 85.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.46, "MEDIAN_SPEND_PER_CUSTOMER": 16.46 }, "geometry": { "type": "Point", "coordinates": [ -75.153682, 39.951718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.00641, "LONGITUDE": -75.099483, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 208.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1867.0, "Total Transactions": 107.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.75, "MEDIAN_SPEND_PER_CUSTOMER": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099483, 40.00641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02088, "LONGITUDE": -75.134701, "DATE_RANGE_START": 2019, "Total Visits": 311.0, "Total Visitors": 232.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2165.0, "Total Transactions": 97.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.65, "MEDIAN_SPEND_PER_CUSTOMER": 28.56 }, "geometry": { "type": "Point", "coordinates": [ -75.134701, 40.02088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvx-jd9", "LOCATION_NAME": "Song's Capital Discount", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.972561, "LONGITUDE": -75.225887, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 67.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 67.0, "Total Spend": 96.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.225887, 39.972561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-pvz", "LOCATION_NAME": "12 Steps Down", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.939056, "LONGITUDE": -75.157629, "DATE_RANGE_START": 2019, "Total Visits": 133.0, "Total Visitors": 112.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 197.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157629, 39.939056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "LOCATION_NAME": "iMunch Cafe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5190.0, "Total Transactions": 383.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.94, "MEDIAN_SPEND_PER_CUSTOMER": 15.55 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9w-zmk", "LOCATION_NAME": "Hendrix Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.118281, "LONGITUDE": -75.017944, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 453.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 242.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.017944, 40.118281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 125.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5568.0, "Total Transactions": 92.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.99, "MEDIAN_SPEND_PER_CUSTOMER": 64.98 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-87q", "LOCATION_NAME": "Rittenhouse Needlepoint", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.953747, "LONGITUDE": -75.160369, "DATE_RANGE_START": 2019, "Total Visits": 12651.0, "Total Visitors": 8910.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 298.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.22, "MEDIAN_SPEND_PER_CUSTOMER": 19.22 }, "geometry": { "type": "Point", "coordinates": [ -75.160369, 39.953747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "LOCATION_NAME": "Liberty Smokes", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.912433, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2019, "Total Visits": 1491.0, "Total Visitors": 986.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 93.0, "Total Spend": 1234.0, "Total Transactions": 27.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.99, "MEDIAN_SPEND_PER_CUSTOMER": 42.14 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.912433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-whq", "LOCATION_NAME": "Ocean City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95631, "LONGITUDE": -75.15439, "DATE_RANGE_START": 2019, "Total Visits": 460.0, "Total Visitors": 363.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 2840.0, "Total Transactions": 70.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.0, "MEDIAN_SPEND_PER_CUSTOMER": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15439, 39.95631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "LOCATION_NAME": "El Punto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 112.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2312.0, "Total Transactions": 148.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.25, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-66k", "LOCATION_NAME": "Hatch and choop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94951, "LONGITUDE": -75.160766, "DATE_RANGE_START": 2019, "Total Visits": 773.0, "Total Visitors": 520.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 57.0, "Total Spend": 653.0, "Total Transactions": 48.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.25 }, "geometry": { "type": "Point", "coordinates": [ -75.160766, 39.94951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "LOCATION_NAME": "Axis Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95523, "LONGITUDE": -75.194652, "DATE_RANGE_START": 2019, "Total Visits": 1389.0, "Total Visitors": 936.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 9892.0, "Total Transactions": 851.0, "Total Customers": 505.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.18, "MEDIAN_SPEND_PER_CUSTOMER": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.194652, 39.95523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5zz", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949143, "LONGITUDE": -75.1591, "DATE_RANGE_START": 2019, "Total Visits": 4531.0, "Total Visitors": 3050.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 87.0, "Total Spend": 558.0, "Total Transactions": 38.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.83, "MEDIAN_SPEND_PER_CUSTOMER": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.1591, 39.949143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "LOCATION_NAME": "Chew Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 128.0, "POI_CBG": 421010252007.0, "MEDIAN_DWELL": 155.0, "Total Spend": 918.0, "Total Transactions": 75.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-j35", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950756, "LONGITUDE": -75.17035, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 168.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 13704.0, "Total Transactions": 898.0, "Total Customers": 778.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.83, "MEDIAN_SPEND_PER_CUSTOMER": 14.26 }, "geometry": { "type": "Point", "coordinates": [ -75.17035, 39.950756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "LOCATION_NAME": "Scoop Deville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949429, "LONGITUDE": -75.162851, "DATE_RANGE_START": 2019, "Total Visits": 1014.0, "Total Visitors": 650.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 78.0, "Total Spend": 1879.0, "Total Transactions": 172.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.56, "MEDIAN_SPEND_PER_CUSTOMER": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.162851, 39.949429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969391, "LONGITUDE": -75.159457, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 97.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6769.0, "Total Transactions": 1131.0, "Total Customers": 625.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.7, "MEDIAN_SPEND_PER_CUSTOMER": 6.39 }, "geometry": { "type": "Point", "coordinates": [ -75.159457, 39.969391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "LOCATION_NAME": "The Cheesecake Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949381, "LONGITUDE": -75.165741, "DATE_RANGE_START": 2019, "Total Visits": 2730.0, "Total Visitors": 2037.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 63.0, "Total Spend": 61000.0, "Total Transactions": 1363.0, "Total Customers": 1221.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.13 }, "geometry": { "type": "Point", "coordinates": [ -75.165741, 39.949381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-33q", "LOCATION_NAME": "Urban Outfitters", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.953788, "LONGITUDE": -75.194952, "DATE_RANGE_START": 2019, "Total Visits": 430.0, "Total Visitors": 373.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9544.0, "Total Transactions": 210.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.44, "MEDIAN_SPEND_PER_CUSTOMER": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194952, 39.953788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "LOCATION_NAME": "El Vez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2019, "Total Visits": 1569.0, "Total Visitors": 1226.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 122544.0, "Total Transactions": 2009.0, "Total Customers": 1811.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.63, "MEDIAN_SPEND_PER_CUSTOMER": 51.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgm-3qz", "LOCATION_NAME": "LeBus East Falls", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00891, "LONGITUDE": -75.193713, "DATE_RANGE_START": 2019, "Total Visits": 593.0, "Total Visitors": 491.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4336.0, "Total Transactions": 93.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.79, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193713, 40.00891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "LOCATION_NAME": "Main Street Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 60.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3927.0, "Total Transactions": 122.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.1, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-9pv", "LOCATION_NAME": "The Buffalo House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043677, "LONGITUDE": -75.017847, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 88.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1285.0, "Total Transactions": 58.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.017847, 40.043677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-223@628-pm9-whq", "LOCATION_NAME": "Las Bugambilias", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949643, "LONGITUDE": -75.145551, "DATE_RANGE_START": 2019, "Total Visits": 486.0, "Total Visitors": 383.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 2964.0, "Total Transactions": 58.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.37, "MEDIAN_SPEND_PER_CUSTOMER": 50.37 }, "geometry": { "type": "Point", "coordinates": [ -75.145551, 39.949643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "LOCATION_NAME": "Spring Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2019, "Total Visits": 550.0, "Total Visitors": 395.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 77.0, "Total Spend": 2985.0, "Total Transactions": 192.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.74, "MEDIAN_SPEND_PER_CUSTOMER": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-jjv", "LOCATION_NAME": "House of Our Own Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.951372, "LONGITUDE": -75.201884, "DATE_RANGE_START": 2019, "Total Visits": 1053.0, "Total Visitors": 698.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 97.0, "Total Spend": 114.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.56, "MEDIAN_SPEND_PER_CUSTOMER": 34.19 }, "geometry": { "type": "Point", "coordinates": [ -75.201884, 39.951372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951926, "LONGITUDE": -75.161906, "DATE_RANGE_START": 2019, "Total Visits": 10614.0, "Total Visitors": 7344.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 30923.0, "Total Transactions": 366.0, "Total Customers": 311.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.5, "MEDIAN_SPEND_PER_CUSTOMER": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -75.161906, 39.951926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.990629, "LONGITUDE": -75.10302, "DATE_RANGE_START": 2019, "Total Visits": 818.0, "Total Visitors": 661.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 29063.0, "Total Transactions": 708.0, "Total Customers": 545.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.31, "MEDIAN_SPEND_PER_CUSTOMER": 41.02 }, "geometry": { "type": "Point", "coordinates": [ -75.10302, 39.990629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-r49", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044228, "LONGITUDE": -75.087251, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 123.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 28.0, "Total Spend": 5532.0, "Total Transactions": 235.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.64, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087251, 40.044228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@63s-dw2-4gk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.965722, "LONGITUDE": -75.246681, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 100.0, "POI_CBG": 421010096004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 618.0, "Total Transactions": 40.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.22, "MEDIAN_SPEND_PER_CUSTOMER": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -75.246681, 39.965722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp4-zfz", "LOCATION_NAME": "Liberty Gas Station", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991196, "LONGITUDE": -75.131119, "DATE_RANGE_START": 2019, "Total Visits": 341.0, "Total Visitors": 280.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 16462.0, "Total Transactions": 148.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131119, 39.991196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-s89", "LOCATION_NAME": "SuitSupply", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.948725, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2019, "Total Visits": 1559.0, "Total Visitors": 1049.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 60.0, "Total Spend": 4744.0, "Total Transactions": 22.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 168.0, "MEDIAN_SPEND_PER_CUSTOMER": 178.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.948725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "LOCATION_NAME": "P.C. Richard & Son", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.046246, "LONGITUDE": -75.059899, "DATE_RANGE_START": 2019, "Total Visits": 791.0, "Total Visitors": 623.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 21.0, "Total Spend": 8164.0, "Total Transactions": 27.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 166.31, "MEDIAN_SPEND_PER_CUSTOMER": 172.77 }, "geometry": { "type": "Point", "coordinates": [ -75.059899, 40.046246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm4-ckf", "LOCATION_NAME": "A Plus Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924818, "LONGITUDE": -75.174415, "DATE_RANGE_START": 2019, "Total Visits": 212.0, "Total Visitors": 170.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 3.0, "Total Spend": 84.0, "Total Transactions": 18.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.5, "MEDIAN_SPEND_PER_CUSTOMER": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174415, 39.924818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-zmk", "LOCATION_NAME": "The Fresh Grocer", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.940294, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2019, "Total Visits": 3575.0, "Total Visitors": 1962.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1153.0, "Total Transactions": 30.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.42, "MEDIAN_SPEND_PER_CUSTOMER": 19.39 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 39.940294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2019, "Total Visits": 133.0, "Total Visitors": 100.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 95.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.69, "MEDIAN_SPEND_PER_CUSTOMER": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pgb-tn5", "LOCATION_NAME": "JC Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962905, "LONGITUDE": -75.15611, "DATE_RANGE_START": 2019, "Total Visits": 330.0, "Total Visitors": 198.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 1847.0, "Total Transactions": 188.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.15611, 39.962905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2019, "Total Visits": 2077.0, "Total Visitors": 1459.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5075.0, "Total Transactions": 253.0, "Total Customers": 170.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.25, "MEDIAN_SPEND_PER_CUSTOMER": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2019, "Total Visits": 695.0, "Total Visitors": 475.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 27055.0, "Total Transactions": 1273.0, "Total Customers": 653.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.35, "MEDIAN_SPEND_PER_CUSTOMER": 23.58 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040851, "LONGITUDE": -75.075239, "DATE_RANGE_START": 2019, "Total Visits": 740.0, "Total Visitors": 495.0, "POI_CBG": 421010313004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 988.0, "Total Transactions": 47.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.88, "MEDIAN_SPEND_PER_CUSTOMER": 23.58 }, "geometry": { "type": "Point", "coordinates": [ -75.075239, 40.040851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7v-skf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055128, "LONGITUDE": -75.073724, "DATE_RANGE_START": 2019, "Total Visits": 1761.0, "Total Visitors": 1269.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 514.0, "Total Transactions": 23.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 23.54 }, "geometry": { "type": "Point", "coordinates": [ -75.073724, 40.055128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "LOCATION_NAME": "San Lucas Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 10.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 47.0, "Total Spend": 809.0, "Total Transactions": 43.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-wkz", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.922348, "LONGITUDE": -75.146462, "DATE_RANGE_START": 2019, "Total Visits": 1829.0, "Total Visitors": 1502.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2698.0, "Total Transactions": 57.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.82, "MEDIAN_SPEND_PER_CUSTOMER": 45.96 }, "geometry": { "type": "Point", "coordinates": [ -75.146462, 39.922348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.902552, "LONGITUDE": -75.240445, "DATE_RANGE_START": 2019, "Total Visits": 811.0, "Total Visitors": 633.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2735.0, "Total Transactions": 87.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.19, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.240445, 39.902552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26j-222@628-pgb-6x5", "LOCATION_NAME": "The Black Taxi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968738, "LONGITUDE": -75.178186, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 49.0, "Total Spend": 15049.0, "Total Transactions": 450.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.73 }, "geometry": { "type": "Point", "coordinates": [ -75.178186, 39.968738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-r49", "LOCATION_NAME": "Jade Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926873, "LONGITUDE": -75.154236, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 30.0, "POI_CBG": 421010027012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 129.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.65, "MEDIAN_SPEND_PER_CUSTOMER": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.154236, 39.926873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "LOCATION_NAME": "Wooden Shoe Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.942084, "LONGITUDE": -75.154166, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 135.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1201.0, "Total Transactions": 50.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.79, "MEDIAN_SPEND_PER_CUSTOMER": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.154166, 39.942084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm3-vzz", "LOCATION_NAME": "A Novel Idea", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.928207, "LONGITUDE": -75.165695, "DATE_RANGE_START": 2019, "Total Visits": 881.0, "Total Visitors": 723.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 883.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.38, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.165695, 39.928207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-yd9", "LOCATION_NAME": "Essene Market & Cafe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940035, "LONGITUDE": -75.149067, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 112.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 189.0, "Total Transactions": 13.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.86, "MEDIAN_SPEND_PER_CUSTOMER": 56.75 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.907673, "LONGITUDE": -75.189086, "DATE_RANGE_START": 2019, "Total Visits": 5717.0, "Total Visitors": 3695.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1341.0, "Total Transactions": 95.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.189086, 39.907673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.99726, "LONGITUDE": -75.153396, "DATE_RANGE_START": 2019, "Total Visits": 2515.0, "Total Visitors": 1937.0, "POI_CBG": 421010174002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11789.0, "Total Transactions": 555.0, "Total Customers": 400.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153396, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "LOCATION_NAME": "Michaels Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.082446, "LONGITUDE": -75.023342, "DATE_RANGE_START": 2019, "Total Visits": 1211.0, "Total Visitors": 1023.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 13652.0, "Total Transactions": 451.0, "Total Customers": 393.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.25, "MEDIAN_SPEND_PER_CUSTOMER": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.023342, 40.082446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "LOCATION_NAME": "Navy Exchange", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2019, "Total Visits": 1271.0, "Total Visitors": 423.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 284.0, "Total Spend": 14394.0, "Total Transactions": 628.0, "Total Customers": 278.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.37, "MEDIAN_SPEND_PER_CUSTOMER": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.995094, "LONGITUDE": -75.095646, "DATE_RANGE_START": 2019, "Total Visits": 690.0, "Total Visitors": 565.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 795.0, "Total Transactions": 43.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.32, "MEDIAN_SPEND_PER_CUSTOMER": 23.44 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 39.995094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-9s5", "LOCATION_NAME": "Parkside Beef & Ale", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954767, "LONGITUDE": -75.164606, "DATE_RANGE_START": 2019, "Total Visits": 476.0, "Total Visitors": 331.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 319.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 20.02 }, "geometry": { "type": "Point", "coordinates": [ -75.164606, 39.954767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "LOCATION_NAME": "Solly Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 52.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 266.0, "Total Spend": 1297.0, "Total Transactions": 62.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.12, "MEDIAN_SPEND_PER_CUSTOMER": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-py9", "LOCATION_NAME": "Jasmine Rice Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947082, "LONGITUDE": -75.168176, "DATE_RANGE_START": 2019, "Total Visits": 1562.0, "Total Visitors": 973.0, "POI_CBG": 421010012021.0, "MEDIAN_DWELL": 278.0, "Total Spend": 779.0, "Total Transactions": 27.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.22, "MEDIAN_SPEND_PER_CUSTOMER": 26.22 }, "geometry": { "type": "Point", "coordinates": [ -75.168176, 39.947082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5fz", "LOCATION_NAME": "Zio's Brick Oven Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950079, "LONGITUDE": -75.161743, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 197.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 5113.0, "Total Transactions": 411.0, "Total Customers": 310.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.161743, 39.950079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xkf", "LOCATION_NAME": "Lee How Fook", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956286, "LONGITUDE": -75.157078, "DATE_RANGE_START": 2019, "Total Visits": 1208.0, "Total Visitors": 870.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 1525.0, "Total Transactions": 38.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.67, "MEDIAN_SPEND_PER_CUSTOMER": 36.07 }, "geometry": { "type": "Point", "coordinates": [ -75.157078, 39.956286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pm9-wc5", "LOCATION_NAME": "Pinch Dumplings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949677, "LONGITUDE": -75.147569, "DATE_RANGE_START": 2019, "Total Visits": 1471.0, "Total Visitors": 1114.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 2119.0, "Total Transactions": 157.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 13.07 }, "geometry": { "type": "Point", "coordinates": [ -75.147569, 39.949677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-p8j-cqz", "LOCATION_NAME": "Oriental Taste", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037313, "LONGITUDE": -75.042418, "DATE_RANGE_START": 2019, "Total Visits": 1834.0, "Total Visitors": 1393.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 288.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.39, "MEDIAN_SPEND_PER_CUSTOMER": 86.39 }, "geometry": { "type": "Point", "coordinates": [ -75.042418, 40.037313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951061, "LONGITUDE": -75.168264, "DATE_RANGE_START": 2019, "Total Visits": 1016.0, "Total Visitors": 750.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 141.0, "Total Spend": 13254.0, "Total Transactions": 413.0, "Total Customers": 395.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.44, "MEDIAN_SPEND_PER_CUSTOMER": 26.39 }, "geometry": { "type": "Point", "coordinates": [ -75.168264, 39.951061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8m-v2k", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.029454, "LONGITUDE": -75.058288, "DATE_RANGE_START": 2019, "Total Visits": 310.0, "Total Visitors": 247.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4159.0, "Total Transactions": 75.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.58, "MEDIAN_SPEND_PER_CUSTOMER": 42.1 }, "geometry": { "type": "Point", "coordinates": [ -75.058288, 40.029454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvx-3dv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.967245, "LONGITUDE": -75.215949, "DATE_RANGE_START": 2019, "Total Visits": 530.0, "Total Visitors": 356.0, "POI_CBG": 421010105001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 837.0, "Total Transactions": 70.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.77, "MEDIAN_SPEND_PER_CUSTOMER": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.215949, 39.967245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "LOCATION_NAME": "Olive Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2019, "Total Visits": 1434.0, "Total Visitors": 1261.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 54.0, "Total Spend": 27451.0, "Total Transactions": 558.0, "Total Customers": 503.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.49, "MEDIAN_SPEND_PER_CUSTOMER": 49.25 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2019, "Total Visits": 578.0, "Total Visitors": 460.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1737.0, "Total Transactions": 42.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.42, "MEDIAN_SPEND_PER_CUSTOMER": 25.42 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-k4v", "LOCATION_NAME": "Paradise Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968728, "LONGITUDE": -75.136484, "DATE_RANGE_START": 2019, "Total Visits": 1206.0, "Total Visitors": 868.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 105.0, "Total Spend": 299.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.07, "MEDIAN_SPEND_PER_CUSTOMER": 18.18 }, "geometry": { "type": "Point", "coordinates": [ -75.136484, 39.968728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-vcq", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.998344, "LONGITUDE": -75.136151, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 140.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2076.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.47, "MEDIAN_SPEND_PER_CUSTOMER": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.136151, 39.998344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "LOCATION_NAME": "Prohibition Taproom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2019, "Total Visits": 240.0, "Total Visitors": 190.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 18358.0, "Total Transactions": 456.0, "Total Customers": 368.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.68, "MEDIAN_SPEND_PER_CUSTOMER": 37.82 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pmf-skf", "LOCATION_NAME": "Butcher and Singer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948984, "LONGITUDE": -75.166282, "DATE_RANGE_START": 2019, "Total Visits": 8354.0, "Total Visitors": 5390.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 58.0, "Total Spend": 29928.0, "Total Transactions": 172.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 169.48, "MEDIAN_SPEND_PER_CUSTOMER": 178.36 }, "geometry": { "type": "Point", "coordinates": [ -75.166282, 39.948984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2019, "Total Visits": 1061.0, "Total Visitors": 703.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 21965.0, "Total Transactions": 2350.0, "Total Customers": 1054.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.87, "MEDIAN_SPEND_PER_CUSTOMER": 11.42 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 242.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 432.0, "Total Transactions": 52.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.16, "MEDIAN_SPEND_PER_CUSTOMER": 10.17 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "LOCATION_NAME": "Bourbon & Branch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 132.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 25082.0, "Total Transactions": 803.0, "Total Customers": 591.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.44, "MEDIAN_SPEND_PER_CUSTOMER": 30.08 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2019, "Total Visits": 984.0, "Total Visitors": 723.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 20897.0, "Total Transactions": 2707.0, "Total Customers": 1691.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.9, "MEDIAN_SPEND_PER_CUSTOMER": 8.61 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "LOCATION_NAME": "Pickwick Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952852, "LONGITUDE": -75.169574, "DATE_RANGE_START": 2019, "Total Visits": 448.0, "Total Visitors": 295.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 108.0, "Total Spend": 2500.0, "Total Transactions": 200.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.91, "MEDIAN_SPEND_PER_CUSTOMER": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169574, 39.952852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953381, "LONGITUDE": -75.209698, "DATE_RANGE_START": 2019, "Total Visits": 1269.0, "Total Visitors": 838.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 25149.0, "Total Transactions": 1476.0, "Total Customers": 721.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.06, "MEDIAN_SPEND_PER_CUSTOMER": 21.16 }, "geometry": { "type": "Point", "coordinates": [ -75.209698, 39.953381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2019, "Total Visits": 1283.0, "Total Visitors": 909.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 11743.0, "Total Transactions": 561.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.83, "MEDIAN_SPEND_PER_CUSTOMER": 22.29 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfv-649", "LOCATION_NAME": "Pelham Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043444, "LONGITUDE": -75.190762, "DATE_RANGE_START": 2019, "Total Visits": 1771.0, "Total Visitors": 971.0, "POI_CBG": 421010237001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 173.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.62, "MEDIAN_SPEND_PER_CUSTOMER": 51.83 }, "geometry": { "type": "Point", "coordinates": [ -75.190762, 40.043444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p72-hqz", "LOCATION_NAME": "Dagwood's Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05063, "LONGITUDE": -74.999822, "DATE_RANGE_START": 2019, "Total Visits": 623.0, "Total Visitors": 523.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 58.0, "Total Spend": 517.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.44, "MEDIAN_SPEND_PER_CUSTOMER": 69.15 }, "geometry": { "type": "Point", "coordinates": [ -74.999822, 40.05063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2019, "Total Visits": 966.0, "Total Visitors": 823.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1997.0, "Total Transactions": 173.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-y5f", "LOCATION_NAME": "Neighborhood Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9409, "LONGITUDE": -75.147453, "DATE_RANGE_START": 2019, "Total Visits": 1489.0, "Total Visitors": 1156.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 45.0, "Total Spend": 2817.0, "Total Transactions": 102.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.6, "MEDIAN_SPEND_PER_CUSTOMER": 29.97 }, "geometry": { "type": "Point", "coordinates": [ -75.147453, 39.9409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.005384, "LONGITUDE": -75.097837, "DATE_RANGE_START": 2019, "Total Visits": 500.0, "Total Visitors": 423.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 726.0, "Total Transactions": 88.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.4, "MEDIAN_SPEND_PER_CUSTOMER": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.097837, 40.005384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgd-zpv", "LOCATION_NAME": "PaperMill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955405, "LONGITUDE": -75.190449, "DATE_RANGE_START": 2019, "Total Visits": 7128.0, "Total Visitors": 3733.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 69.0, "Total Spend": 1480.0, "Total Transactions": 107.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190449, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-yd9", "LOCATION_NAME": "C & R Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.938173, "LONGITUDE": -75.170563, "DATE_RANGE_START": 2019, "Total Visits": 1304.0, "Total Visitors": 798.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 27.0, "Total Spend": 632.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.7, "MEDIAN_SPEND_PER_CUSTOMER": 61.62 }, "geometry": { "type": "Point", "coordinates": [ -75.170563, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgm-249", "LOCATION_NAME": "Alice Alexander", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.007598, "LONGITUDE": -75.190878, "DATE_RANGE_START": 2019, "Total Visits": 858.0, "Total Visitors": 685.0, "POI_CBG": 421010170001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1625.0, "Total Transactions": 100.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.37, "MEDIAN_SPEND_PER_CUSTOMER": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.190878, 40.007598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950972, "LONGITUDE": -75.198395, "DATE_RANGE_START": 2019, "Total Visits": 3853.0, "Total Visitors": 2225.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 69643.0, "Total Transactions": 9113.0, "Total Customers": 3631.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.12, "MEDIAN_SPEND_PER_CUSTOMER": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.198395, 39.950972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-649", "LOCATION_NAME": "Quaker Valley Foods", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.094265, "LONGITUDE": -75.010029, "DATE_RANGE_START": 2019, "Total Visits": 536.0, "Total Visitors": 197.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 227.0, "Total Spend": 156567.0, "Total Transactions": 107.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 1188.26, "MEDIAN_SPEND_PER_CUSTOMER": 503.67 }, "geometry": { "type": "Point", "coordinates": [ -75.010029, 40.094265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj2-btv", "LOCATION_NAME": "Bentoulis Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01065, "LONGITUDE": -75.102956, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 87.0, "POI_CBG": 421010191002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 682.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.1, "MEDIAN_SPEND_PER_CUSTOMER": 17.49 }, "geometry": { "type": "Point", "coordinates": [ -75.102956, 40.01065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2019, "Total Visits": 558.0, "Total Visitors": 481.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 968.0, "Total Transactions": 70.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.55, "MEDIAN_SPEND_PER_CUSTOMER": 13.89 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2019, "Total Visits": 1269.0, "Total Visitors": 1078.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14093.0, "Total Transactions": 1251.0, "Total Customers": 913.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.92, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5s5", "LOCATION_NAME": "Federal Donuts East Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951076, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2019, "Total Visits": 1394.0, "Total Visitors": 1096.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 5974.0, "Total Transactions": 470.0, "Total Customers": 456.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.951076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "LOCATION_NAME": "Bubblefish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2019, "Total Visits": 6866.0, "Total Visitors": 4814.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 14483.0, "Total Transactions": 396.0, "Total Customers": 358.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.61, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2019, "Total Visits": 2539.0, "Total Visitors": 2192.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13381.0, "Total Transactions": 598.0, "Total Customers": 488.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 22.75 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "LOCATION_NAME": "Express Fuel", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026572, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2019, "Total Visits": 215.0, "Total Visitors": 163.0, "POI_CBG": 421010302004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2035.0, "Total Transactions": 185.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.954256, "LONGITUDE": -75.167978, "DATE_RANGE_START": 2019, "Total Visits": 12348.0, "Total Visitors": 6193.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 129.0, "Total Spend": 675.0, "Total Transactions": 115.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.08, "MEDIAN_SPEND_PER_CUSTOMER": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.167978, 39.954256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-kcq", "LOCATION_NAME": "Cosmic Cafe and Ciderhouse", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969067, "LONGITUDE": -75.185279, "DATE_RANGE_START": 2019, "Total Visits": 588.0, "Total Visitors": 500.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 663.0, "Total Transactions": 53.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185279, 39.969067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5mk", "LOCATION_NAME": "Fogo de Chão", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950928, "LONGITUDE": -75.162963, "DATE_RANGE_START": 2019, "Total Visits": 34207.0, "Total Visitors": 20410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 52616.0, "Total Transactions": 393.0, "Total Customers": 376.0, "MEDIAN_SPEND_PER_TRANSACTION": 109.0, "MEDIAN_SPEND_PER_CUSTOMER": 114.56 }, "geometry": { "type": "Point", "coordinates": [ -75.162963, 39.950928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-2zf", "LOCATION_NAME": "Vapor Funky Monkey", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.024206, "LONGITUDE": -75.220514, "DATE_RANGE_START": 2019, "Total Visits": 1008.0, "Total Visitors": 596.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 92.0, "Total Spend": 243.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.95, "MEDIAN_SPEND_PER_CUSTOMER": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.220514, 40.024206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmb-5fz", "LOCATION_NAME": "1225Raw Sushi and Sake Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950027, "LONGITUDE": -75.161491, "DATE_RANGE_START": 2019, "Total Visits": 250.0, "Total Visitors": 190.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 4597.0, "Total Transactions": 90.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.34, "MEDIAN_SPEND_PER_CUSTOMER": 45.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161491, 39.950027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j9z", "LOCATION_NAME": "Rouge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949689, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2019, "Total Visits": 706.0, "Total Visitors": 370.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 304.0, "Total Spend": 14996.0, "Total Transactions": 252.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.76, "MEDIAN_SPEND_PER_CUSTOMER": 55.85 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.949689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2019, "Total Visits": 293.0, "Total Visitors": 178.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1518.0, "Total Transactions": 157.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.94, "MEDIAN_SPEND_PER_CUSTOMER": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.112307, "LONGITUDE": -75.022895, "DATE_RANGE_START": 2019, "Total Visits": 1268.0, "Total Visitors": 913.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4338.0, "Total Transactions": 240.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.1, "MEDIAN_SPEND_PER_CUSTOMER": 17.77 }, "geometry": { "type": "Point", "coordinates": [ -75.022895, 40.112307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pj8-g6k", "LOCATION_NAME": "Summerdale Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.033196, "LONGITUDE": -75.090605, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 47.0, "POI_CBG": 421010390007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.75, "MEDIAN_SPEND_PER_CUSTOMER": 2.75 }, "geometry": { "type": "Point", "coordinates": [ -75.090605, 40.033196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951447, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2019, "Total Visits": 2110.0, "Total Visitors": 1804.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 18083.0, "Total Transactions": 1174.0, "Total Customers": 820.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.68, "MEDIAN_SPEND_PER_CUSTOMER": 13.93 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.951447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "255-222@628-pm9-y9z", "LOCATION_NAME": "Milkboy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941731, "LONGITUDE": -75.1493, "DATE_RANGE_START": 2019, "Total Visits": 1857.0, "Total Visitors": 1744.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2207.0, "Total Transactions": 67.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.8, "MEDIAN_SPEND_PER_CUSTOMER": 25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.941731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "LOCATION_NAME": "Xiandu Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2019, "Total Visits": 4531.0, "Total Visitors": 3050.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 87.0, "Total Spend": 11978.0, "Total Transactions": 293.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.47, "MEDIAN_SPEND_PER_CUSTOMER": 35.57 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010746, "LONGITUDE": -75.175382, "DATE_RANGE_START": 2019, "Total Visits": 798.0, "Total Visitors": 703.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 946.0, "Total Transactions": 73.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.85, "MEDIAN_SPEND_PER_CUSTOMER": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.175382, 40.010746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032001, "LONGITUDE": -75.213304, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 105.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3952.0, "Total Transactions": 153.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.83, "MEDIAN_SPEND_PER_CUSTOMER": 26.57 }, "geometry": { "type": "Point", "coordinates": [ -75.213304, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2019, "Total Visits": 1218.0, "Total Visitors": 800.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2097.0, "Total Transactions": 105.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.99, "MEDIAN_SPEND_PER_CUSTOMER": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.085969, "LONGITUDE": -75.04681, "DATE_RANGE_START": 2019, "Total Visits": 586.0, "Total Visitors": 435.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1668.0, "Total Transactions": 98.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.35, "MEDIAN_SPEND_PER_CUSTOMER": 14.42 }, "geometry": { "type": "Point", "coordinates": [ -75.04681, 40.085969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2019, "Total Visits": 943.0, "Total Visitors": 665.0, "POI_CBG": 421010320003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1358.0, "Total Transactions": 75.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.49, "MEDIAN_SPEND_PER_CUSTOMER": 12.49 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-5vf", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048428, "LONGITUDE": -75.061751, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 167.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1834.0, "Total Transactions": 145.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 11.95 }, "geometry": { "type": "Point", "coordinates": [ -75.061751, 40.048428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-8d9", "LOCATION_NAME": "New Star Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034004, "LONGITUDE": -75.139986, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 28.0, "POI_CBG": 421010282001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1368.0, "Total Transactions": 82.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139986, 40.034004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "LOCATION_NAME": "Annies Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010100004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 216.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm3-vpv", "LOCATION_NAME": "Mesh Vintage", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.927333, "LONGITUDE": -75.166704, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 423.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166704, 39.927333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-n3q", "LOCATION_NAME": "Double Connect", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.959668, "LONGITUDE": -75.224073, "DATE_RANGE_START": 2019, "Total Visits": 31152.0, "Total Visitors": 11593.0, "POI_CBG": 421010085001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 466.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.5, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224073, 39.959668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.032157, "LONGITUDE": -75.050449, "DATE_RANGE_START": 2019, "Total Visits": 1159.0, "Total Visitors": 866.0, "POI_CBG": 421010325001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3510.0, "Total Transactions": 142.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.68, "MEDIAN_SPEND_PER_CUSTOMER": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.050449, 40.032157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2019, "Total Visits": 1121.0, "Total Visitors": 686.0, "POI_CBG": 421010311013.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2825.0, "Total Transactions": 125.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.9, "MEDIAN_SPEND_PER_CUSTOMER": 20.38 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-brk", "LOCATION_NAME": "North Penn Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.002096, "LONGITUDE": -75.167568, "DATE_RANGE_START": 2019, "Total Visits": 292.0, "Total Visitors": 222.0, "POI_CBG": 421010172013.0, "MEDIAN_DWELL": 8.0, "Total Spend": 223.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.88, "MEDIAN_SPEND_PER_CUSTOMER": 66.88 }, "geometry": { "type": "Point", "coordinates": [ -75.167568, 40.002096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "LOCATION_NAME": "Stargazy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": null, "Total Spend": 1798.0, "Total Transactions": 88.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "LOCATION_NAME": "Calvin Klein", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 107.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9087.0, "Total Transactions": 145.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.88 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8t-vvf", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.089192, "LONGITUDE": -74.961438, "DATE_RANGE_START": 2019, "Total Visits": 665.0, "Total Visitors": 608.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1999.0, "Total Transactions": 27.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.73, "MEDIAN_SPEND_PER_CUSTOMER": 74.48 }, "geometry": { "type": "Point", "coordinates": [ -74.961438, 40.089192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-cyv", "LOCATION_NAME": "Jaggie's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.975337, "LONGITUDE": -75.244317, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 27.0, "POI_CBG": 421010101006.0, "MEDIAN_DWELL": 101.0, "Total Spend": 127.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244317, 39.975337 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.027243, "LONGITUDE": -75.110271, "DATE_RANGE_START": 2019, "Total Visits": 2039.0, "Total Visitors": 1569.0, "POI_CBG": 421010292001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 615.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.06, "MEDIAN_SPEND_PER_CUSTOMER": 33.12 }, "geometry": { "type": "Point", "coordinates": [ -75.110271, 40.027243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.084661, "LONGITUDE": -74.961825, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 555.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 6863.0, "Total Transactions": 168.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.35, "MEDIAN_SPEND_PER_CUSTOMER": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -74.961825, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "LOCATION_NAME": "Walmart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.031276, "LONGITUDE": -75.099634, "DATE_RANGE_START": 2019, "Total Visits": 13224.0, "Total Visitors": 8767.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 342702.0, "Total Transactions": 6761.0, "Total Customers": 4399.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.34, "MEDIAN_SPEND_PER_CUSTOMER": 40.91 }, "geometry": { "type": "Point", "coordinates": [ -75.099634, 40.031276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg9-x5z", "LOCATION_NAME": "Vineyards Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96989, "LONGITUDE": -75.162961, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 40.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 3669.0, "Total Transactions": 476.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.06, "MEDIAN_SPEND_PER_CUSTOMER": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.162961, 39.96989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2019, "Total Visits": 416.0, "Total Visitors": 320.0, "POI_CBG": 421010171003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 456.0, "Total Transactions": 35.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.49, "MEDIAN_SPEND_PER_CUSTOMER": 17.73 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.0471, "LONGITUDE": -75.142281, "DATE_RANGE_START": 2019, "Total Visits": 5404.0, "Total Visitors": 3448.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 21353.0, "Total Transactions": 968.0, "Total Customers": 635.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.01 }, "geometry": { "type": "Point", "coordinates": [ -75.142281, 40.0471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9s-ct9", "LOCATION_NAME": "City Cigars", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.123352, "LONGITUDE": -75.014613, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 65.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 81.0, "Total Spend": 1134.0, "Total Transactions": 40.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.53 }, "geometry": { "type": "Point", "coordinates": [ -75.014613, 40.123352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2019, "Total Visits": 1033.0, "Total Visitors": 815.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 35514.0, "Total Transactions": 996.0, "Total Customers": 701.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.37, "MEDIAN_SPEND_PER_CUSTOMER": 37.23 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8b-cbk", "LOCATION_NAME": "Smoker's Palace", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.017474, "LONGITUDE": -75.051228, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 77.0, "POI_CBG": 421010323001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2981.0, "Total Transactions": 102.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.61, "MEDIAN_SPEND_PER_CUSTOMER": 38.46 }, "geometry": { "type": "Point", "coordinates": [ -75.051228, 40.017474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2019, "Total Visits": 760.0, "Total Visitors": 653.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5396.0, "Total Transactions": 551.0, "Total Customers": 426.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.36, "MEDIAN_SPEND_PER_CUSTOMER": 10.08 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5mk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950727, "LONGITUDE": -75.161879, "DATE_RANGE_START": 2019, "Total Visits": 280.0, "Total Visitors": 248.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 7203.0, "Total Transactions": 1268.0, "Total Customers": 765.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.81, "MEDIAN_SPEND_PER_CUSTOMER": 5.58 }, "geometry": { "type": "Point", "coordinates": [ -75.161879, 39.950727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-h89", "LOCATION_NAME": "Kite & Key", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960365, "LONGITUDE": -75.169693, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 157.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 605.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.15, "MEDIAN_SPEND_PER_CUSTOMER": 56.15 }, "geometry": { "type": "Point", "coordinates": [ -75.169693, 39.960365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-vmk", "LOCATION_NAME": "Maxi's Pizza Subs and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982213, "LONGITUDE": -75.15602, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 100.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1867.0, "Total Transactions": 113.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 14.59 }, "geometry": { "type": "Point", "coordinates": [ -75.15602, 39.982213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm4-grk", "LOCATION_NAME": "AmeriThai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923914, "LONGITUDE": -75.167514, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 58.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1433.0, "Total Transactions": 40.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.92, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.167514, 39.923914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "LOCATION_NAME": "Wah Gi Wah Halal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956965, "LONGITUDE": -75.211135, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 229.0, "Total Spend": 2971.0, "Total Transactions": 87.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 35.92 }, "geometry": { "type": "Point", "coordinates": [ -75.211135, 39.956965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7x-b6k", "LOCATION_NAME": "New England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040059, "LONGITUDE": -75.066331, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 68.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 400.0, "Total Transactions": 15.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.32, "MEDIAN_SPEND_PER_CUSTOMER": 27.81 }, "geometry": { "type": "Point", "coordinates": [ -75.066331, 40.040059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-wzf", "LOCATION_NAME": "Firestone Complete Auto Care", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.087378, "LONGITUDE": -75.035984, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 32.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2780.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 136.39, "MEDIAN_SPEND_PER_CUSTOMER": 136.39 }, "geometry": { "type": "Point", "coordinates": [ -75.035984, 40.087378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2019, "Total Visits": 565.0, "Total Visitors": 431.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 6622.0, "Total Transactions": 237.0, "Total Customers": 215.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.13, "MEDIAN_SPEND_PER_CUSTOMER": 26.14 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-cqz", "LOCATION_NAME": "Little Morocco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925459, "LONGITUDE": -75.170748, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 42.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 51.0, "Total Spend": 735.0, "Total Transactions": 40.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.93, "MEDIAN_SPEND_PER_CUSTOMER": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.170748, 39.925459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-ty9", "LOCATION_NAME": "La Famiglia Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949369, "LONGITUDE": -75.142406, "DATE_RANGE_START": 2019, "Total Visits": 336.0, "Total Visitors": 325.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 2709.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.17, "MEDIAN_SPEND_PER_CUSTOMER": 82.17 }, "geometry": { "type": "Point", "coordinates": [ -75.142406, 39.949369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "LOCATION_NAME": "Jamba", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.87525, "LONGITUDE": -75.241494, "DATE_RANGE_START": 2019, "Total Visits": 305816.0, "Total Visitors": 187584.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 3725.0, "Total Transactions": 370.0, "Total Customers": 360.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.26, "MEDIAN_SPEND_PER_CUSTOMER": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.241494, 39.87525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950691, "LONGITUDE": -75.151871, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 340.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 111.0, "Total Spend": 5950.0, "Total Transactions": 1153.0, "Total Customers": 680.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.21, "MEDIAN_SPEND_PER_CUSTOMER": 5.39 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.950691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948446, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2019, "Total Visits": 735.0, "Total Visitors": 455.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 86.0, "Total Spend": 5441.0, "Total Transactions": 1191.0, "Total Customers": 578.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.66, "MEDIAN_SPEND_PER_CUSTOMER": 6.24 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.948446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002692, "LONGITUDE": -75.214454, "DATE_RANGE_START": 2019, "Total Visits": 698.0, "Total Visitors": 515.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6550.0, "Total Transactions": 1129.0, "Total Customers": 656.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 6.53 }, "geometry": { "type": "Point", "coordinates": [ -75.214454, 40.002692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2019, "Total Visits": 858.0, "Total Visitors": 601.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4477.0, "Total Transactions": 723.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.83, "MEDIAN_SPEND_PER_CUSTOMER": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2019, "Total Visits": 776.0, "Total Visitors": 605.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 16742.0, "Total Transactions": 830.0, "Total Customers": 451.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.22, "MEDIAN_SPEND_PER_CUSTOMER": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 102.0, "Total Spend": 6157.0, "Total Transactions": 202.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.99, "MEDIAN_SPEND_PER_CUSTOMER": 33.24 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-8d9", "LOCATION_NAME": "Hilton Garden Inn", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.953445, "LONGITUDE": -75.157985, "DATE_RANGE_START": 2019, "Total Visits": 28837.0, "Total Visitors": 16617.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 33608.0, "Total Transactions": 192.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.4, "MEDIAN_SPEND_PER_CUSTOMER": 127.43 }, "geometry": { "type": "Point", "coordinates": [ -75.157985, 39.953445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "LOCATION_NAME": "Tommy Hilfiger", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089952, "LONGITUDE": -74.962035, "DATE_RANGE_START": 2019, "Total Visits": 355.0, "Total Visitors": 336.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8376.0, "Total Transactions": 122.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.97, "MEDIAN_SPEND_PER_CUSTOMER": 50.13 }, "geometry": { "type": "Point", "coordinates": [ -74.962035, 40.089952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "LOCATION_NAME": "Bellini", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2019, "Total Visits": 272.0, "Total Visitors": 235.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2522.0, "Total Transactions": 27.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.86, "MEDIAN_SPEND_PER_CUSTOMER": 63.86 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kcq", "LOCATION_NAME": "Almaz Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95075, "LONGITUDE": -75.173912, "DATE_RANGE_START": 2019, "Total Visits": 130.0, "Total Visitors": 93.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1620.0, "Total Transactions": 53.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.12, "MEDIAN_SPEND_PER_CUSTOMER": 23.12 }, "geometry": { "type": "Point", "coordinates": [ -75.173912, 39.95075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "LOCATION_NAME": "George's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 193.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3093.0, "Total Transactions": 157.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 16.94 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-ph8-rtv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978949, "LONGITUDE": -75.271415, "DATE_RANGE_START": 2019, "Total Visits": 1033.0, "Total Visitors": 805.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 56.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.271415, 39.978949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "LOCATION_NAME": "Tony Luke's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.906891, "LONGITUDE": -75.166013, "DATE_RANGE_START": 2019, "Total Visits": 2585.0, "Total Visitors": 2427.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 750.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.3, "MEDIAN_SPEND_PER_CUSTOMER": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166013, 39.906891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "LOCATION_NAME": "Ruby Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2019, "Total Visits": 1314.0, "Total Visitors": 1163.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 15159.0, "Total Transactions": 423.0, "Total Customers": 390.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.04, "MEDIAN_SPEND_PER_CUSTOMER": 35.69 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999351, "LONGITUDE": -75.132987, "DATE_RANGE_START": 2019, "Total Visits": 220.0, "Total Visitors": 198.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 593.0, "Total Transactions": 48.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 14.17 }, "geometry": { "type": "Point", "coordinates": [ -75.132987, 39.999351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgj-c5z", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979163, "LONGITUDE": -75.160092, "DATE_RANGE_START": 2019, "Total Visits": 656.0, "Total Visitors": 405.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 120.0, "Total Spend": 4096.0, "Total Transactions": 416.0, "Total Customers": 310.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.28, "MEDIAN_SPEND_PER_CUSTOMER": 10.24 }, "geometry": { "type": "Point", "coordinates": [ -75.160092, 39.979163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "LOCATION_NAME": "Chuck E. Cheese's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921782, "LONGITUDE": -75.1449, "DATE_RANGE_START": 2019, "Total Visits": 240.0, "Total Visitors": 220.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1016.0, "Total Transactions": 60.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.1449, 39.921782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2019, "Total Visits": 631.0, "Total Visitors": 550.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5420.0, "Total Transactions": 135.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2019, "Total Visits": 475.0, "Total Visitors": 381.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6777.0, "Total Transactions": 723.0, "Total Customers": 486.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.97, "MEDIAN_SPEND_PER_CUSTOMER": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956616, "LONGITUDE": -75.194139, "DATE_RANGE_START": 2019, "Total Visits": 388.0, "Total Visitors": 301.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10225.0, "Total Transactions": 2125.0, "Total Customers": 916.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.98, "MEDIAN_SPEND_PER_CUSTOMER": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.194139, 39.956616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032682, "LONGITUDE": -75.084504, "DATE_RANGE_START": 2019, "Total Visits": 590.0, "Total Visitors": 416.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1831.0, "Total Transactions": 330.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.72, "MEDIAN_SPEND_PER_CUSTOMER": 6.47 }, "geometry": { "type": "Point", "coordinates": [ -75.084504, 40.032682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 37.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 7898.0, "Total Transactions": 288.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.96, "MEDIAN_SPEND_PER_CUSTOMER": 27.74 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-cbk", "LOCATION_NAME": "Torres", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01446, "LONGITUDE": -75.065885, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 820.0, "Total Transactions": 25.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.94, "MEDIAN_SPEND_PER_CUSTOMER": 28.51 }, "geometry": { "type": "Point", "coordinates": [ -75.065885, 40.01446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "LOCATION_NAME": "Grace Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 2608.0, "Total Transactions": 90.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "LOCATION_NAME": "General Tso", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 35.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 876.0, "Total Transactions": 47.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.36, "MEDIAN_SPEND_PER_CUSTOMER": 26.02 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-fcq", "LOCATION_NAME": "Yeager Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.97236, "LONGITUDE": -75.226332, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 37.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 227.0, "Total Spend": 30059.0, "Total Transactions": 1104.0, "Total Customers": 833.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.39, "MEDIAN_SPEND_PER_CUSTOMER": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.226332, 39.97236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-8sq", "LOCATION_NAME": "Highline Automotive", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.008707, "LONGITUDE": -75.082395, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 247.0, "POI_CBG": 421010294003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 408.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 122.47, "MEDIAN_SPEND_PER_CUSTOMER": 122.47 }, "geometry": { "type": "Point", "coordinates": [ -75.082395, 40.008707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2019, "Total Visits": 743.0, "Total Visitors": 603.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3591.0, "Total Transactions": 120.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 103.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9871.0, "Total Transactions": 253.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8d-8n5", "LOCATION_NAME": "Margaret Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.007563, "LONGITUDE": -75.076393, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 75.0, "POI_CBG": 421010380002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 157.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.076393, 40.007563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2019, "Total Visits": 1388.0, "Total Visitors": 1068.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 173766.0, "Total Transactions": 10038.0, "Total Customers": 4851.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.17, "MEDIAN_SPEND_PER_CUSTOMER": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-jqf", "LOCATION_NAME": "Brewers Outlet Of Mt Airy & Chestnut Hill", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.063253, "LONGITUDE": -75.192693, "DATE_RANGE_START": 2019, "Total Visits": 292.0, "Total Visitors": 233.0, "POI_CBG": 421010256003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16905.0, "Total Transactions": 500.0, "Total Customers": 393.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.9, "MEDIAN_SPEND_PER_CUSTOMER": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.192693, 40.063253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-y5f", "LOCATION_NAME": "Haagen Dazs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941281, "LONGITUDE": -75.147232, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 55.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3657.0, "Total Transactions": 363.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147232, 39.941281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-j7q", "LOCATION_NAME": "Smokin Stogies N Stuff", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.951529, "LONGITUDE": -75.170525, "DATE_RANGE_START": 2019, "Total Visits": 606.0, "Total Visitors": 553.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6041.0, "Total Transactions": 265.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.170525, 39.951529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-mzf", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.958726, "LONGITUDE": -75.2256, "DATE_RANGE_START": 2019, "Total Visits": 263.0, "Total Visitors": 222.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1370.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.87, "MEDIAN_SPEND_PER_CUSTOMER": 80.87 }, "geometry": { "type": "Point", "coordinates": [ -75.2256, 39.958726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2019, "Total Visits": 643.0, "Total Visitors": 545.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 33782.0, "Total Transactions": 1313.0, "Total Customers": 776.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.04, "MEDIAN_SPEND_PER_CUSTOMER": 30.28 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093157, "LONGITUDE": -75.032901, "DATE_RANGE_START": 2019, "Total Visits": 163.0, "Total Visitors": 137.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1345.0, "Total Transactions": 82.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.32, "MEDIAN_SPEND_PER_CUSTOMER": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.032901, 40.093157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.928169, "LONGITUDE": -75.230056, "DATE_RANGE_START": 2019, "Total Visits": 1281.0, "Total Visitors": 933.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 670.0, "Total Transactions": 42.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.07, "MEDIAN_SPEND_PER_CUSTOMER": 26.46 }, "geometry": { "type": "Point", "coordinates": [ -75.230056, 39.928169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "LOCATION_NAME": "Mariposa Food Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947933, "LONGITUDE": -75.220657, "DATE_RANGE_START": 2019, "Total Visits": 222.0, "Total Visitors": 182.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 73083.0, "Total Transactions": 2900.0, "Total Customers": 1154.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.75 }, "geometry": { "type": "Point", "coordinates": [ -75.220657, 39.947933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "LOCATION_NAME": "Weavers Way Co Op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 128.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 62589.0, "Total Transactions": 2100.0, "Total Customers": 954.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.04, "MEDIAN_SPEND_PER_CUSTOMER": 38.74 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-8d9", "LOCATION_NAME": "Bee Natural", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952966, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 1838.0, "Total Transactions": 88.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.952966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-qs5", "LOCATION_NAME": "Panasian Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030993, "LONGITUDE": -75.10376, "DATE_RANGE_START": 2019, "Total Visits": 1921.0, "Total Visitors": 1664.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 5620.0, "Total Transactions": 180.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.24, "MEDIAN_SPEND_PER_CUSTOMER": 32.51 }, "geometry": { "type": "Point", "coordinates": [ -75.10376, 40.030993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-qmk", "LOCATION_NAME": "Yeeroh", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943614, "LONGITUDE": -75.166117, "DATE_RANGE_START": 2019, "Total Visits": 73.0, "Total Visitors": 65.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 3084.0, "Total Transactions": 167.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.22, "MEDIAN_SPEND_PER_CUSTOMER": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.166117, 39.943614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-zxq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.002963, "LONGITUDE": -75.152983, "DATE_RANGE_START": 2019, "Total Visits": 448.0, "Total Visitors": 380.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3130.0, "Total Transactions": 232.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.98, "MEDIAN_SPEND_PER_CUSTOMER": 14.29 }, "geometry": { "type": "Point", "coordinates": [ -75.152983, 40.002963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2019, "Total Visits": 631.0, "Total Visitors": 436.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6912.0, "Total Transactions": 340.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.31, "MEDIAN_SPEND_PER_CUSTOMER": 19.09 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947336, "LONGITUDE": -75.228833, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 523.0, "POI_CBG": 421010073004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6454.0, "Total Transactions": 237.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.94, "MEDIAN_SPEND_PER_CUSTOMER": 22.13 }, "geometry": { "type": "Point", "coordinates": [ -75.228833, 39.947336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-y35", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.119184, "LONGITUDE": -75.01709, "DATE_RANGE_START": 2019, "Total Visits": 548.0, "Total Visitors": 456.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4885.0, "Total Transactions": 801.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.16, "MEDIAN_SPEND_PER_CUSTOMER": 7.21 }, "geometry": { "type": "Point", "coordinates": [ -75.01709, 40.119184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087324, "LONGITUDE": -75.039996, "DATE_RANGE_START": 2019, "Total Visits": 380.0, "Total Visitors": 285.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1577.0, "Total Transactions": 308.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.99, "MEDIAN_SPEND_PER_CUSTOMER": 5.77 }, "geometry": { "type": "Point", "coordinates": [ -75.039996, 40.087324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "LOCATION_NAME": "Beijing Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 27.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1980.0, "Total Transactions": 95.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.71, "MEDIAN_SPEND_PER_CUSTOMER": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pmb-yqf", "LOCATION_NAME": "Vivi Bubble Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954838, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 120.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 7092.0, "Total Transactions": 845.0, "Total Customers": 730.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.954838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2019, "Total Visits": 403.0, "Total Visitors": 306.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11368.0, "Total Transactions": 1731.0, "Total Customers": 800.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "LOCATION_NAME": "Four Seasons Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2019, "Total Visits": 501.0, "Total Visitors": 385.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 14346.0, "Total Transactions": 456.0, "Total Customers": 388.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.77, "MEDIAN_SPEND_PER_CUSTOMER": 31.45 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "LOCATION_NAME": "New Quality Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 80.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 68.0, "Total Spend": 268.0, "Total Transactions": 17.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.29, "MEDIAN_SPEND_PER_CUSTOMER": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "LOCATION_NAME": "Big Ben Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 55.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5690.0, "Total Transactions": 232.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.72, "MEDIAN_SPEND_PER_CUSTOMER": 27.84 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-75z", "LOCATION_NAME": "Pizza Brain", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980599, "LONGITUDE": -75.128225, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 198.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 13.0, "Total Spend": 7259.0, "Total Transactions": 373.0, "Total Customers": 320.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.84, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.128225, 39.980599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pg3-789", "LOCATION_NAME": "Queen Express Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066992, "LONGITUDE": -75.177976, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 52.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 931.0, "Total Spend": 53.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.05, "MEDIAN_SPEND_PER_CUSTOMER": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.177976, 40.066992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.037244, "LONGITUDE": -75.17465, "DATE_RANGE_START": 2019, "Total Visits": 370.0, "Total Visitors": 308.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10206.0, "Total Transactions": 240.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.97, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.17465, 40.037244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp5-gff", "LOCATION_NAME": "Stop One Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.985559, "LONGITUDE": -75.111594, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 63.0, "POI_CBG": 421010179003.0, "MEDIAN_DWELL": 854.0, "Total Spend": 103.0, "Total Transactions": 15.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.29, "MEDIAN_SPEND_PER_CUSTOMER": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.111594, 39.985559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2019, "Total Visits": 1286.0, "Total Visitors": 948.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 89121.0, "Total Transactions": 5767.0, "Total Customers": 2500.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.26, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949907, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2019, "Total Visits": 668.0, "Total Visitors": 511.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3010.0, "Total Transactions": 386.0, "Total Customers": 202.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.09, "MEDIAN_SPEND_PER_CUSTOMER": 6.99 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.949907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-pqf", "LOCATION_NAME": "Tico's Tacos Tex Mex", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944355, "LONGITUDE": -75.169738, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 28.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2370.0, "Total Transactions": 130.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.71, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.169738, 39.944355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.038428, "LONGITUDE": -75.106684, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 65.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 146.0, "Total Spend": 40179.0, "Total Transactions": 1104.0, "Total Customers": 776.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.62, "MEDIAN_SPEND_PER_CUSTOMER": 27.08 }, "geometry": { "type": "Point", "coordinates": [ -75.106684, 40.038428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2019, "Total Visits": 210.0, "Total Visitors": 177.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 436.0, "Total Transactions": 48.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.46, "MEDIAN_SPEND_PER_CUSTOMER": 11.12 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-qs5", "LOCATION_NAME": "Flying Fish Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.91592, "LONGITUDE": -75.163019, "DATE_RANGE_START": 2019, "Total Visits": 636.0, "Total Visitors": 326.0, "POI_CBG": 421010041023.0, "MEDIAN_DWELL": 348.0, "Total Spend": 1374.0, "Total Transactions": 28.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.85 }, "geometry": { "type": "Point", "coordinates": [ -75.163019, 39.91592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wkz", "LOCATION_NAME": "Xenos Candy 'N' Gifts", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948713, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2019, "Total Visits": 5252.0, "Total Visitors": 3901.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 546.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.07, "MEDIAN_SPEND_PER_CUSTOMER": 15.07 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.948713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944289, "LONGITUDE": -75.17218, "DATE_RANGE_START": 2019, "Total Visits": 1251.0, "Total Visitors": 743.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 18921.0, "Total Transactions": 1031.0, "Total Customers": 560.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.6, "MEDIAN_SPEND_PER_CUSTOMER": 17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17218, 39.944289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-t9z", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947992, "LONGITUDE": -75.154441, "DATE_RANGE_START": 2019, "Total Visits": 1987.0, "Total Visitors": 1471.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1611.0, "Total Transactions": 195.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.49, "MEDIAN_SPEND_PER_CUSTOMER": 7.55 }, "geometry": { "type": "Point", "coordinates": [ -75.154441, 39.947992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9s-j9z", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.111439, "LONGITUDE": -75.002407, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 152.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 40.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.5, "MEDIAN_SPEND_PER_CUSTOMER": 4.72 }, "geometry": { "type": "Point", "coordinates": [ -75.002407, 40.111439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phn-qj9", "LOCATION_NAME": "Stenton Beer Distributors", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.067357, "LONGITUDE": -75.178619, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 82.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 795.0, "Total Transactions": 38.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.178619, 40.067357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.080322, "LONGITUDE": -75.171913, "DATE_RANGE_START": 2019, "Total Visits": 698.0, "Total Visitors": 508.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1502.0, "Total Transactions": 88.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.49, "MEDIAN_SPEND_PER_CUSTOMER": 15.22 }, "geometry": { "type": "Point", "coordinates": [ -75.171913, 40.080322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2019, "Total Visits": 621.0, "Total Visitors": 538.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 21164.0, "Total Transactions": 1254.0, "Total Customers": 678.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.41 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p7c-3dv", "LOCATION_NAME": "Marathon", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.06844, "LONGITUDE": -75.007839, "DATE_RANGE_START": 2019, "Total Visits": 193.0, "Total Visitors": 122.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 13.0, "Total Spend": 441.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.75, "MEDIAN_SPEND_PER_CUSTOMER": 41.75 }, "geometry": { "type": "Point", "coordinates": [ -75.007839, 40.06844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-p9z", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.014187, "LONGITUDE": -75.131595, "DATE_RANGE_START": 2019, "Total Visits": 790.0, "Total Visitors": 590.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 309.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 66.05 }, "geometry": { "type": "Point", "coordinates": [ -75.131595, 40.014187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-94v", "LOCATION_NAME": "Journeys", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2019, "Total Visits": 22929.0, "Total Visitors": 13449.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 425.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8f-7dv", "LOCATION_NAME": "Risque Video", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.00855, "LONGITUDE": -75.072772, "DATE_RANGE_START": 2019, "Total Visits": 1058.0, "Total Visitors": 913.0, "POI_CBG": 421010380002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 72.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072772, 40.00855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "LOCATION_NAME": "Walmart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.083037, "LONGITUDE": -75.022233, "DATE_RANGE_START": 2019, "Total Visits": 16825.0, "Total Visitors": 10671.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 306752.0, "Total Transactions": 6465.0, "Total Customers": 3939.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.61, "MEDIAN_SPEND_PER_CUSTOMER": 43.79 }, "geometry": { "type": "Point", "coordinates": [ -75.022233, 40.083037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.964853, "LONGITUDE": -75.204438, "DATE_RANGE_START": 2019, "Total Visits": 523.0, "Total Visitors": 320.0, "POI_CBG": 421010107002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 736.0, "Total Transactions": 112.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.52 }, "geometry": { "type": "Point", "coordinates": [ -75.204438, 39.964853 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgg-n3q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998932, "LONGITUDE": -75.167191, "DATE_RANGE_START": 2019, "Total Visits": 598.0, "Total Visitors": 391.0, "POI_CBG": 421010172011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 746.0, "Total Transactions": 95.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.9, "MEDIAN_SPEND_PER_CUSTOMER": 8.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167191, 39.998932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "LOCATION_NAME": "Bleu Martini", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949349, "LONGITUDE": -75.144205, "DATE_RANGE_START": 2019, "Total Visits": 2913.0, "Total Visitors": 2387.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 22182.0, "Total Transactions": 491.0, "Total Customers": 378.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.3, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144205, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "LOCATION_NAME": "Marcello's Pizza Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2019, "Total Visits": 1746.0, "Total Visitors": 1216.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 79.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.51, "MEDIAN_SPEND_PER_CUSTOMER": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gp9", "LOCATION_NAME": "Libertine", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.94681, "LONGITUDE": -75.162398, "DATE_RANGE_START": 2019, "Total Visits": 603.0, "Total Visitors": 401.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 199.0, "Total Spend": 4654.0, "Total Transactions": 95.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.8, "MEDIAN_SPEND_PER_CUSTOMER": 46.83 }, "geometry": { "type": "Point", "coordinates": [ -75.162398, 39.94681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p8m-54v", "LOCATION_NAME": "Johnnie's Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022812, "LONGITUDE": -75.063613, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 18.0, "POI_CBG": 421010319004.0, "MEDIAN_DWELL": 105.0, "Total Spend": 377.0, "Total Transactions": 15.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.04 }, "geometry": { "type": "Point", "coordinates": [ -75.063613, 40.022812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "LOCATION_NAME": "The Pizza Store", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 58.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 756.0, "Total Transactions": 53.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.14, "MEDIAN_SPEND_PER_CUSTOMER": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "LOCATION_NAME": "L'anima", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 118.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 772.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 127.42, "MEDIAN_SPEND_PER_CUSTOMER": 127.42 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg8-ks5", "LOCATION_NAME": "Blue Jay Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974422, "LONGITUDE": -75.183713, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 25.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": null, "Total Spend": 2270.0, "Total Transactions": 147.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 14.31 }, "geometry": { "type": "Point", "coordinates": [ -75.183713, 39.974422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-yqf", "LOCATION_NAME": "Shiao Lan Kung", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955257, "LONGITUDE": -75.155387, "DATE_RANGE_START": 2019, "Total Visits": 11720.0, "Total Visitors": 7916.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 2909.0, "Total Transactions": 57.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.37, "MEDIAN_SPEND_PER_CUSTOMER": 49.23 }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.955257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-zmk", "LOCATION_NAME": "Colney Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036792, "LONGITUDE": -75.130653, "DATE_RANGE_START": 2019, "Total Visits": 1577.0, "Total Visitors": 1064.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5432.0, "Total Transactions": 308.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.95, "MEDIAN_SPEND_PER_CUSTOMER": 20.45 }, "geometry": { "type": "Point", "coordinates": [ -75.130653, 40.036792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pg9-td9", "LOCATION_NAME": "Tela's Market & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967388, "LONGITUDE": -75.168391, "DATE_RANGE_START": 2019, "Total Visits": 550.0, "Total Visitors": 391.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 47.0, "Total Spend": 36093.0, "Total Transactions": 2465.0, "Total Customers": 1219.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.31, "MEDIAN_SPEND_PER_CUSTOMER": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.168391, 39.967388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pzn-zj9", "LOCATION_NAME": "Sweeney's Station Saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.131466, "LONGITUDE": -75.011396, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1586.0, "Total Transactions": 57.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.06, "MEDIAN_SPEND_PER_CUSTOMER": 30.55 }, "geometry": { "type": "Point", "coordinates": [ -75.011396, 40.131466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-n5z", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954037, "LONGITUDE": -75.200292, "DATE_RANGE_START": 2019, "Total Visits": 1667.0, "Total Visitors": 1164.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 9424.0, "Total Transactions": 1734.0, "Total Customers": 956.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.75, "MEDIAN_SPEND_PER_CUSTOMER": 6.73 }, "geometry": { "type": "Point", "coordinates": [ -75.200292, 39.954037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "LOCATION_NAME": "New Delhi Indian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2019, "Total Visits": 373.0, "Total Visitors": 280.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 8544.0, "Total Transactions": 326.0, "Total Customers": 295.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.24, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5zz", "LOCATION_NAME": "Moriartys Restaurant & Irish Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948666, "LONGITUDE": -75.159836, "DATE_RANGE_START": 2019, "Total Visits": 262.0, "Total Visitors": 235.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 40.0, "Total Spend": 25077.0, "Total Transactions": 623.0, "Total Customers": 560.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.38, "MEDIAN_SPEND_PER_CUSTOMER": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159836, 39.948666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "LOCATION_NAME": "Vernick Food & Drink", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2019, "Total Visits": 5072.0, "Total Visitors": 3183.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 78.0, "Total Spend": 20670.0, "Total Transactions": 130.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 132.09, "MEDIAN_SPEND_PER_CUSTOMER": 137.46 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2019, "Total Visits": 348.0, "Total Visitors": 320.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2687.0, "Total Transactions": 323.0, "Total Customers": 252.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 8.79 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "LOCATION_NAME": "Linden Italian Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054575, "LONGITUDE": -75.004237, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 198.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 625.0, "Total Transactions": 53.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004237, 40.054575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2019, "Total Visits": 708.0, "Total Visitors": 595.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 15886.0, "Total Transactions": 1303.0, "Total Customers": 941.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.13, "MEDIAN_SPEND_PER_CUSTOMER": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgf-3bk", "LOCATION_NAME": "Old Nelson Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956093, "LONGITUDE": -75.194408, "DATE_RANGE_START": 2019, "Total Visits": 406.0, "Total Visitors": 258.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5849.0, "Total Transactions": 611.0, "Total Customers": 491.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.48, "MEDIAN_SPEND_PER_CUSTOMER": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.194408, 39.956093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-d35", "LOCATION_NAME": "Saqqara Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943438, "LONGITUDE": -75.165102, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 63.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 1276.0, "Total Transactions": 45.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165102, 39.943438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7nq", "LOCATION_NAME": "Woody's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948953, "LONGITUDE": -75.162366, "DATE_RANGE_START": 2019, "Total Visits": 4126.0, "Total Visitors": 2785.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 144.0, "Total Spend": 51396.0, "Total Transactions": 2375.0, "Total Customers": 1438.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.4, "MEDIAN_SPEND_PER_CUSTOMER": 26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162366, 39.948953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-pvz", "LOCATION_NAME": "Triple Play Sports", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.939041, "LONGITUDE": -75.157707, "DATE_RANGE_START": 2019, "Total Visits": 668.0, "Total Visitors": 478.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2957.0, "Total Transactions": 50.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.0, "MEDIAN_SPEND_PER_CUSTOMER": 69.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157707, 39.939041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8t-w8v", "LOCATION_NAME": "jasmine Inc", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087715, "LONGITUDE": -74.961773, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 203.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 598.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.45, "MEDIAN_SPEND_PER_CUSTOMER": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -74.961773, 40.087715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-skf", "LOCATION_NAME": "Good Dog Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948847, "LONGITUDE": -75.166287, "DATE_RANGE_START": 2019, "Total Visits": 371.0, "Total Visitors": 232.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 26.0, "Total Spend": 17996.0, "Total Transactions": 521.0, "Total Customers": 458.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.31, "MEDIAN_SPEND_PER_CUSTOMER": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166287, 39.948847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-223@628-phy-rc5", "LOCATION_NAME": "Tierra Colombiana Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020572, "LONGITUDE": -75.133736, "DATE_RANGE_START": 2019, "Total Visits": 401.0, "Total Visitors": 358.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1782.0, "Total Transactions": 25.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.04, "MEDIAN_SPEND_PER_CUSTOMER": 71.52 }, "geometry": { "type": "Point", "coordinates": [ -75.133736, 40.020572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-zpv", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.97922, "LONGITUDE": -75.22266, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 168.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4947.0, "Total Transactions": 88.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.22266, 39.97922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2019, "Total Visits": 1531.0, "Total Visitors": 1054.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1671.0, "Total Transactions": 110.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "LOCATION_NAME": "Fiesta Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 351.0, "Total Spend": 2743.0, "Total Transactions": 165.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.77, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942567, "LONGITUDE": -75.179023, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1148.0, "Total Transactions": 178.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 7.24 }, "geometry": { "type": "Point", "coordinates": [ -75.179023, 39.942567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-45f", "LOCATION_NAME": "Md Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977208, "LONGITUDE": -75.147273, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 32.0, "POI_CBG": 421010145001.0, "MEDIAN_DWELL": 224.0, "Total Spend": 603.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147273, 39.977208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 29651.0, "Total Transactions": 623.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.37, "MEDIAN_SPEND_PER_CUSTOMER": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pp5-kpv", "LOCATION_NAME": "Port Richmond Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.985432, "LONGITUDE": -75.107476, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 92.0, "POI_CBG": 421010180023.0, "MEDIAN_DWELL": 116.0, "Total Spend": 1107.0, "Total Transactions": 80.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 21.35 }, "geometry": { "type": "Point", "coordinates": [ -75.107476, 39.985432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-v2k", "LOCATION_NAME": "Temple Rainbow", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986143, "LONGITUDE": -75.156606, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 73.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 1010.0, "Total Spend": 98.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.156606, 39.986143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "LOCATION_NAME": "Sawatdee Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 75.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1560.0, "Total Transactions": 38.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.13, "MEDIAN_SPEND_PER_CUSTOMER": 33.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmf-ht9", "LOCATION_NAME": "Devon & Blakely", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953611, "LONGITUDE": -75.170322, "DATE_RANGE_START": 2019, "Total Visits": 9281.0, "Total Visitors": 5080.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 233.0, "Total Spend": 2600.0, "Total Transactions": 272.0, "Total Customers": 202.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.18, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 39.953611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "LOCATION_NAME": "The Ritz-Carlton", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2019, "Total Visits": 18388.0, "Total Visitors": 12258.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 80.0, "Total Spend": 11480.0, "Total Transactions": 53.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 103.95, "MEDIAN_SPEND_PER_CUSTOMER": 211.79 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "LOCATION_NAME": "Locust Rendezvous", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948535, "LONGITUDE": -75.165879, "DATE_RANGE_START": 2019, "Total Visits": 2827.0, "Total Visitors": 1907.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 61.0, "Total Spend": 14581.0, "Total Transactions": 391.0, "Total Customers": 321.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.79, "MEDIAN_SPEND_PER_CUSTOMER": 34.58 }, "geometry": { "type": "Point", "coordinates": [ -75.165879, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgj-cqz", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977801, "LONGITUDE": -75.158494, "DATE_RANGE_START": 2019, "Total Visits": 9558.0, "Total Visitors": 6158.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1546.0, "Total Transactions": 82.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.6, "MEDIAN_SPEND_PER_CUSTOMER": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158494, 39.977801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "LOCATION_NAME": "Ocean Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95567, "LONGITUDE": -75.156821, "DATE_RANGE_START": 2019, "Total Visits": 7019.0, "Total Visitors": 5402.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 8923.0, "Total Transactions": 163.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.93, "MEDIAN_SPEND_PER_CUSTOMER": 51.25 }, "geometry": { "type": "Point", "coordinates": [ -75.156821, 39.95567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 87.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 32.0, "Total Spend": 81.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.23, "MEDIAN_SPEND_PER_CUSTOMER": 24.23 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999771, "LONGITUDE": -75.153727, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 215.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 720.0, "Total Transactions": 68.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.01, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153727, 39.999771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "LOCATION_NAME": "Southgate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2019, "Total Visits": 1148.0, "Total Visitors": 738.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 234.0, "Total Spend": 9648.0, "Total Transactions": 187.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.11, "MEDIAN_SPEND_PER_CUSTOMER": 45.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991684, "LONGITUDE": -75.154551, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 122.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 131.0, "Total Spend": 3633.0, "Total Transactions": 441.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.94, "MEDIAN_SPEND_PER_CUSTOMER": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154551, 39.991684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "LOCATION_NAME": "Fette Sau", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 97.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 55.0, "Total Spend": 31180.0, "Total Transactions": 1096.0, "Total Customers": 815.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 30.56 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvv-249", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.916025, "LONGITUDE": -75.24632, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 78.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 268.0, "Total Spend": 3058.0, "Total Transactions": 53.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.65, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.24632, 39.916025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-td9", "LOCATION_NAME": "Milano's Pizzeria and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948998, "LONGITUDE": -75.157083, "DATE_RANGE_START": 2019, "Total Visits": 303.0, "Total Visitors": 240.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1567.0, "Total Transactions": 127.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.48, "MEDIAN_SPEND_PER_CUSTOMER": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157083, 39.948998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2019, "Total Visits": 938.0, "Total Visitors": 670.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 6138.0, "Total Transactions": 1433.0, "Total Customers": 618.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.77, "MEDIAN_SPEND_PER_CUSTOMER": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97281, "LONGITUDE": -75.134837, "DATE_RANGE_START": 2019, "Total Visits": 1802.0, "Total Visitors": 810.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 10406.0, "Total Transactions": 1198.0, "Total Customers": 898.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134837, 39.97281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-j7q", "LOCATION_NAME": "Frecon Farms", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950808, "LONGITUDE": -75.171348, "DATE_RANGE_START": 2019, "Total Visits": 8022.0, "Total Visitors": 4976.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 101.0, "Total Spend": 924.0, "Total Transactions": 70.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171348, 39.950808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033486, "LONGITUDE": -75.130876, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 198.0, "POI_CBG": 421010274013.0, "MEDIAN_DWELL": 23.0, "Total Spend": 5388.0, "Total Transactions": 911.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.94, "MEDIAN_SPEND_PER_CUSTOMER": 8.11 }, "geometry": { "type": "Point", "coordinates": [ -75.130876, 40.033486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "LOCATION_NAME": "Bassetts Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2019, "Total Visits": 230.0, "Total Visitors": 210.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11509.0, "Total Transactions": 1071.0, "Total Customers": 1018.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.05, "MEDIAN_SPEND_PER_CUSTOMER": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-8d9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953621, "LONGITUDE": -75.157784, "DATE_RANGE_START": 2019, "Total Visits": 1156.0, "Total Visitors": 979.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 5501.0, "Total Transactions": 1053.0, "Total Customers": 765.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.1, "MEDIAN_SPEND_PER_CUSTOMER": 4.68 }, "geometry": { "type": "Point", "coordinates": [ -75.157784, 39.953621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "LOCATION_NAME": "Sunglass Hut", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952036, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2019, "Total Visits": 541.0, "Total Visitors": 445.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 14.0, "Total Spend": 8213.0, "Total Transactions": 40.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 189.54, "MEDIAN_SPEND_PER_CUSTOMER": 186.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-tjv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949514, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2019, "Total Visits": 245.0, "Total Visitors": 203.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8599.0, "Total Transactions": 1754.0, "Total Customers": 731.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.02, "MEDIAN_SPEND_PER_CUSTOMER": 6.04 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-5vf", "LOCATION_NAME": "Wellcare Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048598, "LONGITUDE": -75.061857, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 123.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 33.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.96, "MEDIAN_SPEND_PER_CUSTOMER": 9.96 }, "geometry": { "type": "Point", "coordinates": [ -75.061857, 40.048598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "LOCATION_NAME": "Hunan Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 2.0, "Total Spend": 999.0, "Total Transactions": 98.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.35, "MEDIAN_SPEND_PER_CUSTOMER": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-9j9", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952975, "LONGITUDE": -75.164449, "DATE_RANGE_START": 2019, "Total Visits": 558.0, "Total Visitors": 456.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 137.0, "Total Transactions": 20.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.59, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.164449, 39.952975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947944, "LONGITUDE": -75.171288, "DATE_RANGE_START": 2019, "Total Visits": 395.0, "Total Visitors": 303.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8189.0, "Total Transactions": 1318.0, "Total Customers": 698.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.81, "MEDIAN_SPEND_PER_CUSTOMER": 7.02 }, "geometry": { "type": "Point", "coordinates": [ -75.171288, 39.947944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.028872, "LONGITUDE": -75.206199, "DATE_RANGE_START": 2019, "Total Visits": 3849.0, "Total Visitors": 2860.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1950.0, "Total Transactions": 120.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.14, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206199, 40.028872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085814, "LONGITUDE": -74.963569, "DATE_RANGE_START": 2019, "Total Visits": 4271.0, "Total Visitors": 3338.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 25.0, "Total Spend": 25965.0, "Total Transactions": 473.0, "Total Customers": 405.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.7, "MEDIAN_SPEND_PER_CUSTOMER": 43.22 }, "geometry": { "type": "Point", "coordinates": [ -74.963569, 40.085814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-nnq", "LOCATION_NAME": "M & M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.02486, "LONGITUDE": -75.210261, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 17.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 60.0, "Total Spend": 622.0, "Total Transactions": 60.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.45, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.210261, 40.02486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p7v-ffz", "LOCATION_NAME": "E Z Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.054304, "LONGITUDE": -75.070914, "DATE_RANGE_START": 2019, "Total Visits": 471.0, "Total Visitors": 328.0, "POI_CBG": 421010335003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6960.0, "Total Transactions": 403.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.18, "MEDIAN_SPEND_PER_CUSTOMER": 20.36 }, "geometry": { "type": "Point", "coordinates": [ -75.070914, 40.054304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030538, "LONGITUDE": -75.181434, "DATE_RANGE_START": 2019, "Total Visits": 701.0, "Total Visitors": 565.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2997.0, "Total Transactions": 203.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.66, "MEDIAN_SPEND_PER_CUSTOMER": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.181434, 40.030538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.983382, "LONGITUDE": -75.10116, "DATE_RANGE_START": 2019, "Total Visits": 2240.0, "Total Visitors": 1561.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 677.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.23, "MEDIAN_SPEND_PER_CUSTOMER": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -75.10116, 39.983382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.048384, "LONGITUDE": -75.056563, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 147.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3346.0, "Total Transactions": 35.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.0, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056563, 40.048384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "LOCATION_NAME": "ALDO", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.952094, "LONGITUDE": -75.167619, "DATE_RANGE_START": 2019, "Total Visits": 2006.0, "Total Visitors": 1268.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 84.0, "Total Spend": 7676.0, "Total Transactions": 150.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.49 }, "geometry": { "type": "Point", "coordinates": [ -75.167619, 39.952094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pfz-bhq", "LOCATION_NAME": "Latitudes and Longitudes", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.02537, "LONGITUDE": -75.222819, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 68.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 108.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222819, 40.02537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2019, "Total Visits": 865.0, "Total Visitors": 720.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 514.0, "Total Transactions": 23.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.78, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "LOCATION_NAME": "Fuel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 40.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2686.0, "Total Transactions": 192.0, "Total Customers": 170.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.21, "MEDIAN_SPEND_PER_CUSTOMER": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-z9f", "LOCATION_NAME": "Rosarios Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934489, "LONGITUDE": -75.169442, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 35.0, "POI_CBG": 421010022002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1295.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.9, "MEDIAN_SPEND_PER_CUSTOMER": 29.05 }, "geometry": { "type": "Point", "coordinates": [ -75.169442, 39.934489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-kpv", "LOCATION_NAME": "Sophy Curson", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951064, "LONGITUDE": -75.172395, "DATE_RANGE_START": 2019, "Total Visits": 618.0, "Total Visitors": 510.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4784.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1436.0, "MEDIAN_SPEND_PER_CUSTOMER": 1436.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172395, 39.951064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmb-8sq", "LOCATION_NAME": "South Fellini", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951564, "LONGITUDE": -75.158766, "DATE_RANGE_START": 2019, "Total Visits": 12633.0, "Total Visitors": 9132.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3448.0, "Total Transactions": 85.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158766, 39.951564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951643, "LONGITUDE": -75.17217, "DATE_RANGE_START": 2019, "Total Visits": 2725.0, "Total Visitors": 1946.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 74387.0, "Total Transactions": 2893.0, "Total Customers": 1851.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.89, "MEDIAN_SPEND_PER_CUSTOMER": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.17217, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgj-9xq", "LOCATION_NAME": "Brothers Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.990985, "LONGITUDE": -75.167059, "DATE_RANGE_START": 2019, "Total Visits": 73.0, "Total Visitors": 68.0, "POI_CBG": 421010168006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 316.0, "Total Transactions": 35.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.167059, 39.990985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2019, "Total Visits": 346.0, "Total Visitors": 237.0, "POI_CBG": 421010188007.0, "MEDIAN_DWELL": 4.0, "Total Spend": 179.0, "Total Transactions": 18.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.01, "MEDIAN_SPEND_PER_CUSTOMER": 2.63 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 606.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4155.0, "Total Transactions": 238.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.930286, "LONGITUDE": -75.155935, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 48.0, "POI_CBG": 421010028013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2540.0, "Total Transactions": 205.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.35, "MEDIAN_SPEND_PER_CUSTOMER": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.155935, 39.930286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-227@628-pmf-j35", "LOCATION_NAME": "Cheys Kitchen", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950469, "LONGITUDE": -75.169274, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 85.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 1630.0, "Total Transactions": 127.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.44, "MEDIAN_SPEND_PER_CUSTOMER": 11.33 }, "geometry": { "type": "Point", "coordinates": [ -75.169274, 39.950469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "LOCATION_NAME": "Fat Tuesday", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2019, "Total Visits": 182.0, "Total Visitors": 172.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 17361.0, "Total Transactions": 1019.0, "Total Customers": 826.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "LOCATION_NAME": "Monde Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.952049, "LONGITUDE": -75.175756, "DATE_RANGE_START": 2019, "Total Visits": 1473.0, "Total Visitors": 1049.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 23054.0, "Total Transactions": 1646.0, "Total Customers": 775.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.24, "MEDIAN_SPEND_PER_CUSTOMER": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.175756, 39.952049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.909224, "LONGITUDE": -75.174004, "DATE_RANGE_START": 2019, "Total Visits": 808.0, "Total Visitors": 626.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4234.0, "Total Transactions": 198.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.87, "MEDIAN_SPEND_PER_CUSTOMER": 19.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174004, 39.909224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2019, "Total Visits": 701.0, "Total Visitors": 500.0, "POI_CBG": 421010337022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3456.0, "Total Transactions": 252.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.98, "MEDIAN_SPEND_PER_CUSTOMER": 11.84 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pp5-49z", "LOCATION_NAME": "Minnow Lane", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.97911, "LONGITUDE": -75.129647, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 278.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 16.0, "Total Spend": 808.0, "Total Transactions": 23.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.52, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129647, 39.97911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phy-xwk", "LOCATION_NAME": "Banana's Bar & Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.033188, "LONGITUDE": -75.116286, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 80.0, "POI_CBG": 421010273002.0, "MEDIAN_DWELL": 52.0, "Total Spend": 1262.0, "Total Transactions": 68.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.72, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116286, 40.033188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-nwk", "LOCATION_NAME": "Louie Louie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953483, "LONGITUDE": -75.196032, "DATE_RANGE_START": 2019, "Total Visits": 373.0, "Total Visitors": 295.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 112.0, "Total Spend": 25959.0, "Total Transactions": 435.0, "Total Customers": 400.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.92, "MEDIAN_SPEND_PER_CUSTOMER": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.196032, 39.953483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2019, "Total Visits": 736.0, "Total Visitors": 596.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5249.0, "Total Transactions": 513.0, "Total Customers": 400.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.52, "MEDIAN_SPEND_PER_CUSTOMER": 10.21 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "LOCATION_NAME": "Nifty Fifty's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 57.0, "POI_CBG": 421010372003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4085.0, "Total Transactions": 127.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.89, "MEDIAN_SPEND_PER_CUSTOMER": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "LOCATION_NAME": "Morgan's Pier", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955033, "LONGITUDE": -75.13891, "DATE_RANGE_START": 2019, "Total Visits": 1021.0, "Total Visitors": 928.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 144114.0, "Total Transactions": 5499.0, "Total Customers": 3566.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13891, 39.955033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992778, "LONGITUDE": -75.097644, "DATE_RANGE_START": 2019, "Total Visits": 485.0, "Total Visitors": 395.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5899.0, "Total Transactions": 401.0, "Total Customers": 330.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.21, "MEDIAN_SPEND_PER_CUSTOMER": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.097644, 39.992778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933087, "LONGITUDE": -75.144618, "DATE_RANGE_START": 2019, "Total Visits": 2132.0, "Total Visitors": 1687.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14873.0, "Total Transactions": 2487.0, "Total Customers": 1043.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.15, "MEDIAN_SPEND_PER_CUSTOMER": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.144618, 39.933087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-tqf", "LOCATION_NAME": "Passeros Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949637, "LONGITUDE": -75.155037, "DATE_RANGE_START": 2019, "Total Visits": 586.0, "Total Visitors": 461.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1418.0, "Total Transactions": 270.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.12, "MEDIAN_SPEND_PER_CUSTOMER": 5.95 }, "geometry": { "type": "Point", "coordinates": [ -75.155037, 39.949637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dvy-mx5", "LOCATION_NAME": "Tea Do", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95462, "LONGITUDE": -75.199919, "DATE_RANGE_START": 2019, "Total Visits": 3705.0, "Total Visitors": 2354.0, "POI_CBG": 421010088012.0, "MEDIAN_DWELL": 57.0, "Total Spend": 1961.0, "Total Transactions": 222.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.83, "MEDIAN_SPEND_PER_CUSTOMER": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.199919, 39.95462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-6zf", "LOCATION_NAME": "Danis Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.02883, "LONGITUDE": -75.063054, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 83.0, "POI_CBG": 421010317003.0, "MEDIAN_DWELL": 87.0, "Total Spend": 7329.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 1000.0, "MEDIAN_SPEND_PER_CUSTOMER": 1200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063054, 40.02883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "LOCATION_NAME": "Philly Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.010118, "LONGITUDE": -75.081162, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 248.0, "POI_CBG": 421010294003.0, "MEDIAN_DWELL": 33.0, "Total Spend": 12544.0, "Total Transactions": 93.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.83, "MEDIAN_SPEND_PER_CUSTOMER": 32.88 }, "geometry": { "type": "Point", "coordinates": [ -75.081162, 40.010118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9k-jvz", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.093114, "LONGITUDE": -75.019569, "DATE_RANGE_START": 2019, "Total Visits": 530.0, "Total Visitors": 381.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2085.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.72, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.019569, 40.093114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfy-zj9", "LOCATION_NAME": "Nadeau Furniture with a Soul", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.022884, "LONGITUDE": -75.218834, "DATE_RANGE_START": 2019, "Total Visits": 1418.0, "Total Visitors": 1038.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 55.0, "Total Spend": 5218.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 111.96, "MEDIAN_SPEND_PER_CUSTOMER": 111.96 }, "geometry": { "type": "Point", "coordinates": [ -75.218834, 40.022884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-j7q", "LOCATION_NAME": "Sues Produce Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951234, "LONGITUDE": -75.170685, "DATE_RANGE_START": 2019, "Total Visits": 565.0, "Total Visitors": 495.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 2173.0, "Total Transactions": 130.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.07, "MEDIAN_SPEND_PER_CUSTOMER": 14.16 }, "geometry": { "type": "Point", "coordinates": [ -75.170685, 39.951234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "LOCATION_NAME": "Rieker's Prime Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 177.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4100.0, "Total Transactions": 113.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.11, "MEDIAN_SPEND_PER_CUSTOMER": 36.78 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2019, "Total Visits": 418.0, "Total Visitors": 358.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 664.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.53, "MEDIAN_SPEND_PER_CUSTOMER": 12.27 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-5fz", "LOCATION_NAME": "Express Weed Mart", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949594, "LONGITUDE": -75.16074, "DATE_RANGE_START": 2019, "Total Visits": 6683.0, "Total Visitors": 4511.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 2307.0, "Total Transactions": 78.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.97, "MEDIAN_SPEND_PER_CUSTOMER": 21.32 }, "geometry": { "type": "Point", "coordinates": [ -75.16074, 39.949594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pmf-j35", "LOCATION_NAME": "Sephora", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.95125, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2019, "Total Visits": 1734.0, "Total Visitors": 1221.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 67.0, "Total Spend": 1705.0, "Total Transactions": 15.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 122.04, "MEDIAN_SPEND_PER_CUSTOMER": 28.89 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.95125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p83-y5f", "LOCATION_NAME": "Pennypack Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 40.085429, "LONGITUDE": -75.045472, "DATE_RANGE_START": 2019, "Total Visits": 663.0, "Total Visitors": 515.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 295.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.5, "MEDIAN_SPEND_PER_CUSTOMER": 88.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045472, 40.085429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2019, "Total Visits": 358.0, "Total Visitors": 305.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2385.0, "Total Transactions": 215.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.66, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmd-xqz", "LOCATION_NAME": "Cafe Ynez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939765, "LONGITUDE": -75.177339, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 103.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 153.0, "Total Spend": 336.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177339, 39.939765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg4-47q", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030031, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2019, "Total Visits": 1404.0, "Total Visitors": 845.0, "POI_CBG": 421010242001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 978.0, "Total Transactions": 40.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.96, "MEDIAN_SPEND_PER_CUSTOMER": 24.05 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 40.030031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj4-zpv", "LOCATION_NAME": "Temple University", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 40.004657, "LONGITUDE": -75.152205, "DATE_RANGE_START": 2019, "Total Visits": 15315.0, "Total Visitors": 8833.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 3815.0, "Total Transactions": 137.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 40.004657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043781, "LONGITUDE": -75.017638, "DATE_RANGE_START": 2019, "Total Visits": 273.0, "Total Visitors": 203.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 266.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.45, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017638, 40.043781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.100724, "LONGITUDE": -75.010588, "DATE_RANGE_START": 2019, "Total Visits": 880.0, "Total Visitors": 710.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 3812.0, "Total Transactions": 117.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.010588, 40.100724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "LOCATION_NAME": "1 Stop Smoke Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 97.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1524.0, "Total Transactions": 55.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-v9f", "LOCATION_NAME": "Tang Pharmacy V", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068833, "LONGITUDE": -75.157234, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": null, "Total Spend": 235.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157234, 40.068833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-sbk", "LOCATION_NAME": "The Igloo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945135, "LONGITUDE": -75.179463, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1815.0, "Total Transactions": 197.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.55, "MEDIAN_SPEND_PER_CUSTOMER": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.179463, 39.945135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.070297, "LONGITUDE": -75.030572, "DATE_RANGE_START": 2019, "Total Visits": 506.0, "Total Visitors": 415.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4030.0, "Total Transactions": 258.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 20.23 }, "geometry": { "type": "Point", "coordinates": [ -75.030572, 40.070297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "LOCATION_NAME": "Gaffney Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2019, "Total Visits": 253.0, "Total Visitors": 213.0, "POI_CBG": 421010246001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 4732.0, "Total Transactions": 165.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.9, "MEDIAN_SPEND_PER_CUSTOMER": 22.91 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008821, "LONGITUDE": -75.175673, "DATE_RANGE_START": 2019, "Total Visits": 1171.0, "Total Visitors": 959.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1893.0, "Total Transactions": 103.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.62, "MEDIAN_SPEND_PER_CUSTOMER": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.175673, 40.008821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8n-6kz", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.027244, "LONGITUDE": -75.059172, "DATE_RANGE_START": 2019, "Total Visits": 245.0, "Total Visitors": 185.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 60.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.08, "MEDIAN_SPEND_PER_CUSTOMER": 18.08 }, "geometry": { "type": "Point", "coordinates": [ -75.059172, 40.027244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-s89", "LOCATION_NAME": "Best Buy Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.078011, "LONGITUDE": -75.024952, "DATE_RANGE_START": 2019, "Total Visits": 6281.0, "Total Visitors": 4394.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 2405.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 722.0, "MEDIAN_SPEND_PER_CUSTOMER": 722.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024952, 40.078011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "LOCATION_NAME": "Beer Baron", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2019, "Total Visits": 1604.0, "Total Visitors": 973.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 10256.0, "Total Transactions": 335.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.49, "MEDIAN_SPEND_PER_CUSTOMER": 33.77 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-mp9", "LOCATION_NAME": "Concourse Dance Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95318, "LONGITUDE": -75.167893, "DATE_RANGE_START": 2019, "Total Visits": 2957.0, "Total Visitors": 1614.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 204.0, "Total Spend": 5296.0, "Total Transactions": 130.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 39.95318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dw2-c3q", "LOCATION_NAME": "Tony Boys Breakfast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962196, "LONGITUDE": -75.240563, "DATE_RANGE_START": 2019, "Total Visits": 1694.0, "Total Visitors": 1159.0, "POI_CBG": 421010095003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 121.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.45, "MEDIAN_SPEND_PER_CUSTOMER": 36.45 }, "geometry": { "type": "Point", "coordinates": [ -75.240563, 39.962196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@63s-dw4-rzf", "LOCATION_NAME": "Local Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895174, "LONGITUDE": -75.227977, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 47316.0, "Total Transactions": 1767.0, "Total Customers": 1492.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.31, "MEDIAN_SPEND_PER_CUSTOMER": 26.32 }, "geometry": { "type": "Point", "coordinates": [ -75.227977, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "LOCATION_NAME": "Yummy Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 88.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3679.0, "Total Transactions": 275.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9973, "LONGITUDE": -75.092737, "DATE_RANGE_START": 2019, "Total Visits": 2357.0, "Total Visitors": 1817.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 31471.0, "Total Transactions": 2350.0, "Total Customers": 1621.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.78, "MEDIAN_SPEND_PER_CUSTOMER": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.092737, 39.9973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-54v", "LOCATION_NAME": "United Fried Chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039073, "LONGITUDE": -75.143922, "DATE_RANGE_START": 2019, "Total Visits": 182.0, "Total Visitors": 163.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 925.0, "Total Transactions": 90.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.55, "MEDIAN_SPEND_PER_CUSTOMER": 10.87 }, "geometry": { "type": "Point", "coordinates": [ -75.143922, 40.039073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "LOCATION_NAME": "The Tasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 63.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 46.0, "Total Spend": 12360.0, "Total Transactions": 646.0, "Total Customers": 410.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.81, "MEDIAN_SPEND_PER_CUSTOMER": 23.12 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2019, "Total Visits": 585.0, "Total Visitors": 436.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5210.0, "Total Transactions": 635.0, "Total Customers": 320.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.84 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-p5f", "LOCATION_NAME": "Beaty American", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.978949, "LONGITUDE": -75.139763, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 62.0, "POI_CBG": 421010156001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 696.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.96, "MEDIAN_SPEND_PER_CUSTOMER": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.139763, 39.978949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.99445, "LONGITUDE": -75.09179, "DATE_RANGE_START": 2019, "Total Visits": 5850.0, "Total Visitors": 3448.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5414.0, "Total Transactions": 110.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.17, "MEDIAN_SPEND_PER_CUSTOMER": 56.4 }, "geometry": { "type": "Point", "coordinates": [ -75.09179, 39.99445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2019, "Total Visits": 1681.0, "Total Visitors": 1313.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4649.0, "Total Transactions": 263.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.98, "MEDIAN_SPEND_PER_CUSTOMER": 15.89 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dtn-hqz", "LOCATION_NAME": "Bruegger's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.89519, "LONGITUDE": -75.227949, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12966.0, "Total Transactions": 1586.0, "Total Customers": 1024.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227949, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-c89", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007079, "LONGITUDE": -75.128063, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 501.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 63.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.83, "MEDIAN_SPEND_PER_CUSTOMER": 18.83 }, "geometry": { "type": "Point", "coordinates": [ -75.128063, 40.007079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnz-xyv", "LOCATION_NAME": "Hong Kong Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988418, "LONGITUDE": -75.102851, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 47.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 382.0, "Total Transactions": 30.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.82, "MEDIAN_SPEND_PER_CUSTOMER": 8.59 }, "geometry": { "type": "Point", "coordinates": [ -75.102851, 39.988418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-6tv", "LOCATION_NAME": "Smoothie King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951888, "LONGITUDE": -75.167584, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 102.0, "Total Spend": 6887.0, "Total Transactions": 894.0, "Total Customers": 618.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.58, "MEDIAN_SPEND_PER_CUSTOMER": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.167584, 39.951888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2019, "Total Visits": 380.0, "Total Visitors": 278.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4737.0, "Total Transactions": 765.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.3, "MEDIAN_SPEND_PER_CUSTOMER": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-grk", "LOCATION_NAME": "Federal Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963015, "LONGITUDE": -75.174167, "DATE_RANGE_START": 2019, "Total Visits": 6276.0, "Total Visitors": 3630.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 9444.0, "Total Transactions": 810.0, "Total Customers": 710.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.13, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.174167, 39.963015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "LOCATION_NAME": "Adobe Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1614.0, "Total Transactions": 27.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.71, "MEDIAN_SPEND_PER_CUSTOMER": 52.66 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "LOCATION_NAME": "Tomo Sushi & Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11204.0, "Total Transactions": 247.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.68, "MEDIAN_SPEND_PER_CUSTOMER": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pj3-wrk", "LOCATION_NAME": "Silver Chopsticks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024907, "LONGITUDE": -75.14743, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010283003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 176.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.59, "MEDIAN_SPEND_PER_CUSTOMER": 13.59 }, "geometry": { "type": "Point", "coordinates": [ -75.14743, 40.024907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24p-222@628-pm7-r6k", "LOCATION_NAME": "Sit & Spin Records", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.923599, "LONGITUDE": -75.180744, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010037021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 90.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180744, 39.923599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "LOCATION_NAME": "King of Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010037021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 190.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.73, "MEDIAN_SPEND_PER_CUSTOMER": 24.73 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "LOCATION_NAME": "New Pizza Villa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1073.0, "Total Transactions": 52.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.04, "MEDIAN_SPEND_PER_CUSTOMER": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4qf", "LOCATION_NAME": "Sun Rise Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.021353, "LONGITUDE": -75.125766, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010288001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 517.0, "Total Transactions": 38.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.22, "MEDIAN_SPEND_PER_CUSTOMER": 13.36 }, "geometry": { "type": "Point", "coordinates": [ -75.125766, 40.021353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj7-kmk", "LOCATION_NAME": "No 1 Waterice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021183, "LONGITUDE": -75.094108, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010301004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 38.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094108, 40.021183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@63s-dvy-wtv", "LOCATION_NAME": "Don Barriga Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953099, "LONGITUDE": -75.211951, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 32.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 116.0, "Total Spend": 7571.0, "Total Transactions": 310.0, "Total Customers": 255.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.04, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.211951, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm6-gx5", "LOCATION_NAME": "King Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915882, "LONGITUDE": -75.152424, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 13.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 10.0, "Total Spend": 80.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.25, "MEDIAN_SPEND_PER_CUSTOMER": 23.88 }, "geometry": { "type": "Point", "coordinates": [ -75.152424, 39.915882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfv-94v", "LOCATION_NAME": "The Nesting House", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.04661, "LONGITUDE": -75.195379, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 28.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7594.0, "Total Transactions": 153.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.29, "MEDIAN_SPEND_PER_CUSTOMER": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.195379, 40.04661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 107.0, "Total Spend": 36.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "LOCATION_NAME": "Brick House Bar & Grille", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2019, "Total Visits": 488.0, "Total Visitors": 356.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 48.0, "Total Spend": 3466.0, "Total Transactions": 115.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.91, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmc-vzz", "LOCATION_NAME": "Chopstick House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926547, "LONGITUDE": -75.14612, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 117.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1036.0, "Total Transactions": 50.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.18, "MEDIAN_SPEND_PER_CUSTOMER": 23.05 }, "geometry": { "type": "Point", "coordinates": [ -75.14612, 39.926547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-3kf", "LOCATION_NAME": "Bistro Romano", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941964, "LONGITUDE": -75.144702, "DATE_RANGE_START": 2019, "Total Visits": 145.0, "Total Visitors": 142.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 73.0, "Total Spend": 503.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 150.98, "MEDIAN_SPEND_PER_CUSTOMER": 150.98 }, "geometry": { "type": "Point", "coordinates": [ -75.144702, 39.941964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.96715, "LONGITUDE": -75.175689, "DATE_RANGE_START": 2019, "Total Visits": 974.0, "Total Visitors": 808.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1005.0, "Total Transactions": 78.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.77, "MEDIAN_SPEND_PER_CUSTOMER": 10.31 }, "geometry": { "type": "Point", "coordinates": [ -75.175689, 39.96715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2019, "Total Visits": 2594.0, "Total Visitors": 1601.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16220.0, "Total Transactions": 833.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.4, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "LOCATION_NAME": "Destination XL", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2019, "Total Visits": 187.0, "Total Visitors": 170.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4571.0, "Total Transactions": 52.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.5, "MEDIAN_SPEND_PER_CUSTOMER": 62.61 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kcq", "LOCATION_NAME": "Silver Legends", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950384, "LONGITUDE": -75.174268, "DATE_RANGE_START": 2019, "Total Visits": 846.0, "Total Visitors": 466.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 187.0, "Total Spend": 464.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.36, "MEDIAN_SPEND_PER_CUSTOMER": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.174268, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tn5", "LOCATION_NAME": "Unclaimed Diamonds", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949045, "LONGITUDE": -75.153751, "DATE_RANGE_START": 2019, "Total Visits": 118.0, "Total Visitors": 113.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1586.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153751, 39.949045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2019, "Total Visits": 598.0, "Total Visitors": 478.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 711.0, "Total Transactions": 38.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.26, "MEDIAN_SPEND_PER_CUSTOMER": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.912527, "LONGITUDE": -75.154627, "DATE_RANGE_START": 2019, "Total Visits": 441.0, "Total Visitors": 368.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1790.0, "Total Transactions": 48.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.9, "MEDIAN_SPEND_PER_CUSTOMER": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154627, 39.912527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "LOCATION_NAME": "Royal Boucherie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948704, "LONGITUDE": -75.144251, "DATE_RANGE_START": 2019, "Total Visits": 2074.0, "Total Visitors": 1661.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 24563.0, "Total Transactions": 243.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.91, "MEDIAN_SPEND_PER_CUSTOMER": 79.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144251, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-d9z", "LOCATION_NAME": "Garden Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960516, "LONGITUDE": -75.17253, "DATE_RANGE_START": 2019, "Total Visits": 918.0, "Total Visitors": 806.0, "POI_CBG": 421010125003.0, "MEDIAN_DWELL": 65.0, "Total Spend": 80.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.85, "MEDIAN_SPEND_PER_CUSTOMER": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.17253, 39.960516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-kfz", "LOCATION_NAME": "Machi Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950008, "LONGITUDE": -75.173818, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 85.0, "POI_CBG": 421010008034.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3205.0, "Total Transactions": 117.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.173818, 39.950008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "LOCATION_NAME": "Sumo Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": 39.0, "Total Spend": 2495.0, "Total Transactions": 93.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.76, "MEDIAN_SPEND_PER_CUSTOMER": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "LOCATION_NAME": "Spice Finch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2019, "Total Visits": 3761.0, "Total Visitors": 2350.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 242.0, "Total Spend": 18589.0, "Total Transactions": 270.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.18, "MEDIAN_SPEND_PER_CUSTOMER": 63.05 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 92.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 622.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.33, "MEDIAN_SPEND_PER_CUSTOMER": 18.33 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2019, "Total Visits": 381.0, "Total Visitors": 288.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 35.0, "Total Spend": 7322.0, "Total Transactions": 393.0, "Total Customers": 323.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.24, "MEDIAN_SPEND_PER_CUSTOMER": 17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfz-pjv", "LOCATION_NAME": "Nathan's Famous", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022386, "LONGITUDE": -75.209026, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 98.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 106.0, "Total Spend": 945.0, "Total Transactions": 97.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.39, "MEDIAN_SPEND_PER_CUSTOMER": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.209026, 40.022386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "LOCATION_NAME": "Royal Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 95.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1199.0, "Total Transactions": 70.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.41, "MEDIAN_SPEND_PER_CUSTOMER": 15.82 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "LOCATION_NAME": "Falafel Time", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 63.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 1957.0, "Total Transactions": 130.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 12.87 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044029, "LONGITUDE": -75.102175, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 128.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3117.0, "Total Transactions": 583.0, "Total Customers": 275.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.45, "MEDIAN_SPEND_PER_CUSTOMER": 6.86 }, "geometry": { "type": "Point", "coordinates": [ -75.102175, 40.044029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pm4-nh5", "LOCATION_NAME": "The Chilly Banana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937277, "LONGITUDE": -75.154779, "DATE_RANGE_START": 2019, "Total Visits": 168.0, "Total Visitors": 127.0, "POI_CBG": 421010024001.0, "MEDIAN_DWELL": 176.0, "Total Spend": 1312.0, "Total Transactions": 150.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.7, "MEDIAN_SPEND_PER_CUSTOMER": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.154779, 39.937277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.029702, "LONGITUDE": -75.035384, "DATE_RANGE_START": 2019, "Total Visits": 2009.0, "Total Visitors": 1314.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 721.0, "Total Transactions": 37.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.67, "MEDIAN_SPEND_PER_CUSTOMER": 20.03 }, "geometry": { "type": "Point", "coordinates": [ -75.035384, 40.029702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "LOCATION_NAME": "Banana Republic Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952113, "LONGITUDE": -75.172438, "DATE_RANGE_START": 2019, "Total Visits": 1356.0, "Total Visitors": 984.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 13144.0, "Total Transactions": 233.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 43.99 }, "geometry": { "type": "Point", "coordinates": [ -75.172438, 39.952113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "LOCATION_NAME": "Wyndham", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952204, "LONGITUDE": -75.146959, "DATE_RANGE_START": 2019, "Total Visits": 5748.0, "Total Visitors": 3648.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 356.0, "Total Spend": 59929.0, "Total Transactions": 386.0, "Total Customers": 283.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.87, "MEDIAN_SPEND_PER_CUSTOMER": 67.78 }, "geometry": { "type": "Point", "coordinates": [ -75.146959, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "LOCATION_NAME": "Drury Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2019, "Total Visits": 586.0, "Total Visitors": 478.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 91.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-vpv", "LOCATION_NAME": "Urban Saloon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967182, "LONGITUDE": -75.172904, "DATE_RANGE_START": 2019, "Total Visits": 1163.0, "Total Visitors": 924.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 33.0, "Total Spend": 40918.0, "Total Transactions": 1046.0, "Total Customers": 785.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.02, "MEDIAN_SPEND_PER_CUSTOMER": 36.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172904, 39.967182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-49z", "LOCATION_NAME": "Academic Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957909, "LONGITUDE": -75.188916, "DATE_RANGE_START": 2019, "Total Visits": 1832.0, "Total Visitors": 770.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 151.0, "Total Spend": 232.0, "Total Transactions": 23.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.09, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.188916, 39.957909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.048258, "LONGITUDE": -75.056175, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 137.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 16.0, "Total Spend": 12877.0, "Total Transactions": 243.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.2, "MEDIAN_SPEND_PER_CUSTOMER": 41.46 }, "geometry": { "type": "Point", "coordinates": [ -75.056175, 40.048258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pgj-pgk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992811, "LONGITUDE": -75.147675, "DATE_RANGE_START": 2019, "Total Visits": 540.0, "Total Visitors": 431.0, "POI_CBG": 421010164003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1133.0, "Total Transactions": 130.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 8.57 }, "geometry": { "type": "Point", "coordinates": [ -75.147675, 39.992811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-pgk", "LOCATION_NAME": "Best Sunny Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992784, "LONGITUDE": -75.148123, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 98.0, "POI_CBG": 421010165003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 141.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.6, "MEDIAN_SPEND_PER_CUSTOMER": 11.31 }, "geometry": { "type": "Point", "coordinates": [ -75.148123, 39.992784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-4y9", "LOCATION_NAME": "Ez Dollar Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.923795, "LONGITUDE": -75.163033, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 45.0, "POI_CBG": 421010040011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 755.0, "Total Transactions": 30.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 226.61 }, "geometry": { "type": "Point", "coordinates": [ -75.163033, 39.923795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954574, "LONGITUDE": -75.169932, "DATE_RANGE_START": 2019, "Total Visits": 1802.0, "Total Visitors": 1079.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 100.0, "Total Spend": 23582.0, "Total Transactions": 631.0, "Total Customers": 540.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.74, "MEDIAN_SPEND_PER_CUSTOMER": 28.72 }, "geometry": { "type": "Point", "coordinates": [ -75.169932, 39.954574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-xnq", "LOCATION_NAME": "Mr Chef Wynnefield", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991211, "LONGITUDE": -75.226105, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 160.0, "POI_CBG": 421010119004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 302.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226105, 39.991211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.052515, "LONGITUDE": -75.058505, "DATE_RANGE_START": 2019, "Total Visits": 1169.0, "Total Visitors": 993.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3320.0, "Total Transactions": 105.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 21.17 }, "geometry": { "type": "Point", "coordinates": [ -75.058505, 40.052515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.938146, "LONGITUDE": -75.172721, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 160.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 10146.0, "Total Transactions": 242.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.172721, 39.938146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pm4-pjv", "LOCATION_NAME": "Di Bruno Bros", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.938055, "LONGITUDE": -75.158145, "DATE_RANGE_START": 2019, "Total Visits": 693.0, "Total Visitors": 561.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 34.0, "Total Spend": 19547.0, "Total Transactions": 1233.0, "Total Customers": 1016.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.93, "MEDIAN_SPEND_PER_CUSTOMER": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158145, 39.938055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045558, "LONGITUDE": -75.087582, "DATE_RANGE_START": 2019, "Total Visits": 1308.0, "Total Visitors": 948.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3551.0, "Total Transactions": 172.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.69, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087582, 40.045558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phn-qmk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068844, "LONGITUDE": -75.18088, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 97.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2111.0, "Total Transactions": 88.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.68, "MEDIAN_SPEND_PER_CUSTOMER": 21.42 }, "geometry": { "type": "Point", "coordinates": [ -75.18088, 40.068844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.095101, "LONGITUDE": -74.975911, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 178.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5681.0, "Total Transactions": 288.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.8, "MEDIAN_SPEND_PER_CUSTOMER": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.975911, 40.095101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045256, "LONGITUDE": -75.086611, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 316.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 799.0, "Total Transactions": 52.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.12, "MEDIAN_SPEND_PER_CUSTOMER": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.086611, 40.045256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2019, "Total Visits": 508.0, "Total Visitors": 401.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 620.0, "Total Transactions": 35.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.49 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992401, "LONGITUDE": -75.110955, "DATE_RANGE_START": 2019, "Total Visits": 416.0, "Total Visitors": 325.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 207.0, "Total Transactions": 23.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.74, "MEDIAN_SPEND_PER_CUSTOMER": 12.76 }, "geometry": { "type": "Point", "coordinates": [ -75.110955, 39.992401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "LOCATION_NAME": "Accent On Animals", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2019, "Total Visits": 1556.0, "Total Visitors": 1163.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 1749.0, "Total Transactions": 78.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.08158, "LONGITUDE": -75.02629, "DATE_RANGE_START": 2019, "Total Visits": 745.0, "Total Visitors": 618.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 14372.0, "Total Transactions": 395.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.02629, 40.08158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "LOCATION_NAME": "NO 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2019, "Total Visits": 781.0, "Total Visitors": 636.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1134.0, "Total Transactions": 53.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.6, "MEDIAN_SPEND_PER_CUSTOMER": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "LOCATION_NAME": "El Merkury", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 127.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 895.0, "Total Transactions": 52.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg2-fmk", "LOCATION_NAME": "Fino's Pizzeria & Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054534, "LONGITUDE": -75.186974, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 241.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.08, "MEDIAN_SPEND_PER_CUSTOMER": 13.08 }, "geometry": { "type": "Point", "coordinates": [ -75.186974, 40.054534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "LOCATION_NAME": "El Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2019, "Total Visits": 142.0, "Total Visitors": 62.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 534.0, "Total Spend": 4157.0, "Total Transactions": 338.0, "Total Customers": 247.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041625, "LONGITUDE": -75.064814, "DATE_RANGE_START": 2019, "Total Visits": 320.0, "Total Visitors": 192.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4198.0, "Total Transactions": 163.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.32, "MEDIAN_SPEND_PER_CUSTOMER": 20.71 }, "geometry": { "type": "Point", "coordinates": [ -75.064814, 40.041625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zpv", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917091, "LONGITUDE": -75.187282, "DATE_RANGE_START": 2019, "Total Visits": 29910.0, "Total Visitors": 14422.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 2938.0, "Total Transactions": 50.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.22, "MEDIAN_SPEND_PER_CUSTOMER": 38.22 }, "geometry": { "type": "Point", "coordinates": [ -75.187282, 39.917091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-c3q", "LOCATION_NAME": "Yarnphoria", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.944703, "LONGITUDE": -75.159061, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 65.0, "Total Spend": 480.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159061, 39.944703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-p82-nqz", "LOCATION_NAME": "On Charcoal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041319, "LONGITUDE": -75.075986, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 33.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 577.0, "Total Spend": 341.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.38, "MEDIAN_SPEND_PER_CUSTOMER": 102.38 }, "geometry": { "type": "Point", "coordinates": [ -75.075986, 40.041319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p8h-s89", "LOCATION_NAME": "Sophies Bridal", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.025369, "LONGITUDE": -75.043875, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 40.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 274.0, "Total Spend": 133.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043875, 40.025369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pjf-kvf", "LOCATION_NAME": "Tailored Home", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.076272, "LONGITUDE": -75.207332, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 598.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 265.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.7, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.207332, 40.076272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 98.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3284.0, "Total Transactions": 108.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.26, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-hdv", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009459, "LONGITUDE": -75.174254, "DATE_RANGE_START": 2019, "Total Visits": 6541.0, "Total Visitors": 3916.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 883.0, "Total Transactions": 33.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.86, "MEDIAN_SPEND_PER_CUSTOMER": 60.01 }, "geometry": { "type": "Point", "coordinates": [ -75.174254, 40.009459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "LOCATION_NAME": "Four Seasons Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2019, "Total Visits": 315.0, "Total Visitors": 267.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 426.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.08, "MEDIAN_SPEND_PER_CUSTOMER": 19.08 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pgf-fj9", "LOCATION_NAME": "Cleopatra Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.956516, "LONGITUDE": -75.206034, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 165.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 288.0, "Total Spend": 723.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206034, 39.956516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "LOCATION_NAME": "Cantinho Brasileiro Restaurante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2019, "Total Visits": 168.0, "Total Visitors": 117.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1320.0, "Total Transactions": 80.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "LOCATION_NAME": "Dannys Wok 3", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2019, "Total Visits": 306.0, "Total Visitors": 292.0, "POI_CBG": 421010204002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2479.0, "Total Transactions": 63.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.84, "MEDIAN_SPEND_PER_CUSTOMER": 31.93 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnx-dsq", "LOCATION_NAME": "Cedar Point Bar and Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976851, "LONGITUDE": -75.127783, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 93.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 25086.0, "Total Transactions": 615.0, "Total Customers": 458.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.24 }, "geometry": { "type": "Point", "coordinates": [ -75.127783, 39.976851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfx-ks5", "LOCATION_NAME": "Gregs Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026584, "LONGITUDE": -75.226738, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 5385.0, "Total Transactions": 225.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.55, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.226738, 40.026584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-jjv", "LOCATION_NAME": "Pelicana chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95156, "LONGITUDE": -75.203327, "DATE_RANGE_START": 2019, "Total Visits": 222.0, "Total Visitors": 158.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 65.0, "Total Spend": 883.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.88, "MEDIAN_SPEND_PER_CUSTOMER": 44.88 }, "geometry": { "type": "Point", "coordinates": [ -75.203327, 39.95156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp2-q75", "LOCATION_NAME": "Kensington Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995547, "LONGITUDE": -75.102511, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 98.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 125.0, "Total Spend": 752.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.5, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102511, 39.995547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2019, "Total Visits": 173.0, "Total Visitors": 128.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 908.0, "Total Transactions": 40.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.08, "MEDIAN_SPEND_PER_CUSTOMER": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950371, "LONGITUDE": -75.158373, "DATE_RANGE_START": 2019, "Total Visits": 435.0, "Total Visitors": 320.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 14842.0, "Total Transactions": 1736.0, "Total Customers": 1276.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.44, "MEDIAN_SPEND_PER_CUSTOMER": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158373, 39.950371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgh-vmk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982434, "LONGITUDE": -75.155908, "DATE_RANGE_START": 2019, "Total Visits": 1231.0, "Total Visitors": 726.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 166.0, "Total Spend": 3614.0, "Total Transactions": 388.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.82, "MEDIAN_SPEND_PER_CUSTOMER": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155908, 39.982434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yqf", "LOCATION_NAME": "T Swirl Crepe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955094, "LONGITUDE": -75.156151, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 215.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 4210.0, "Total Transactions": 262.0, "Total Customers": 245.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.156151, 39.955094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-grk", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979416, "LONGITUDE": -75.154998, "DATE_RANGE_START": 2019, "Total Visits": 3425.0, "Total Visitors": 1964.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 121.0, "Total Spend": 1104.0, "Total Transactions": 97.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.28, "MEDIAN_SPEND_PER_CUSTOMER": 10.28 }, "geometry": { "type": "Point", "coordinates": [ -75.154998, 39.979416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "LOCATION_NAME": "Union Tap House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 77.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 51.0, "Total Spend": 131.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.75, "MEDIAN_SPEND_PER_CUSTOMER": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992457, "LONGITUDE": -75.097895, "DATE_RANGE_START": 2019, "Total Visits": 200.0, "Total Visitors": 182.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6602.0, "Total Transactions": 486.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.23, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.097895, 39.992457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-kcq", "LOCATION_NAME": "Sweet Charlie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95076, "LONGITUDE": -75.173342, "DATE_RANGE_START": 2019, "Total Visits": 3147.0, "Total Visitors": 2305.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 35.0, "Total Spend": 10361.0, "Total Transactions": 886.0, "Total Customers": 831.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173342, 39.95076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7yv", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953782, "LONGITUDE": -75.159676, "DATE_RANGE_START": 2019, "Total Visits": 3410.0, "Total Visitors": 2962.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 22791.0, "Total Transactions": 1949.0, "Total Customers": 1359.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.57, "MEDIAN_SPEND_PER_CUSTOMER": 12.23 }, "geometry": { "type": "Point", "coordinates": [ -75.159676, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-gtv", "LOCATION_NAME": "Greenstreet Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946471, "LONGITUDE": -75.159628, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 47.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 146.0, "Total Spend": 145.0, "Total Transactions": 25.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159628, 39.946471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-syv", "LOCATION_NAME": "Tony's Auto Service", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.915674, "LONGITUDE": -75.160462, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 70.0, "POI_CBG": 421010041022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6381.0, "Total Transactions": 52.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.07, "MEDIAN_SPEND_PER_CUSTOMER": 19.73 }, "geometry": { "type": "Point", "coordinates": [ -75.160462, 39.915674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-sbk", "LOCATION_NAME": "Frankinstien Bike Worx", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.947579, "LONGITUDE": -75.167633, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 105.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 60.0, "Total Spend": 788.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.88, "MEDIAN_SPEND_PER_CUSTOMER": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.167633, 39.947579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-pjv", "LOCATION_NAME": "Mizu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955254, "LONGITUDE": -75.202132, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 35.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3297.0, "Total Transactions": 128.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.26, "MEDIAN_SPEND_PER_CUSTOMER": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202132, 39.955254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nyv", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.931469, "LONGITUDE": -75.144907, "DATE_RANGE_START": 2019, "Total Visits": 1341.0, "Total Visitors": 1094.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 8330.0, "Total Transactions": 87.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.24, "MEDIAN_SPEND_PER_CUSTOMER": 51.08 }, "geometry": { "type": "Point", "coordinates": [ -75.144907, 39.931469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj8-2c5", "LOCATION_NAME": "US1 Car Stereo", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029189, "LONGITUDE": -75.103473, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 93.0, "POI_CBG": 421010292002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5100.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 216.0, "MEDIAN_SPEND_PER_CUSTOMER": 216.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103473, 40.029189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-rkz", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.028707, "LONGITUDE": -75.099267, "DATE_RANGE_START": 2019, "Total Visits": 2750.0, "Total Visitors": 2334.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1437.0, "Total Transactions": 23.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.47, "MEDIAN_SPEND_PER_CUSTOMER": 33.18 }, "geometry": { "type": "Point", "coordinates": [ -75.099267, 40.028707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p83-zcq", "LOCATION_NAME": "Kuttanadu Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.083172, "LONGITUDE": -75.048353, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 57.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2199.0, "Total Transactions": 92.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.29, "MEDIAN_SPEND_PER_CUSTOMER": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048353, 40.083172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2019, "Total Visits": 583.0, "Total Visitors": 363.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2784.0, "Total Transactions": 273.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.58, "MEDIAN_SPEND_PER_CUSTOMER": 10.73 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5s5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950566, "LONGITUDE": -75.160281, "DATE_RANGE_START": 2019, "Total Visits": 1652.0, "Total Visitors": 1411.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1413.0, "Total Transactions": 150.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.42, "MEDIAN_SPEND_PER_CUSTOMER": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.160281, 39.950566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 255.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1643.0, "Total Transactions": 87.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.35, "MEDIAN_SPEND_PER_CUSTOMER": 13.46 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pgh-v2k", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.985827, "LONGITUDE": -75.15577, "DATE_RANGE_START": 2019, "Total Visits": 550.0, "Total Visitors": 423.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6468.0, "Total Transactions": 350.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.02, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.985827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg8-kzz", "LOCATION_NAME": "2637brew", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.974293, "LONGITUDE": -75.180147, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 47.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 85.0, "Total Spend": 11168.0, "Total Transactions": 238.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.81 }, "geometry": { "type": "Point", "coordinates": [ -75.180147, 39.974293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-8d9", "LOCATION_NAME": "Tom's Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953328, "LONGITUDE": -75.157763, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 14106.0, "Total Transactions": 378.0, "Total Customers": 346.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.11, "MEDIAN_SPEND_PER_CUSTOMER": 33.25 }, "geometry": { "type": "Point", "coordinates": [ -75.157763, 39.953328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-6x5", "LOCATION_NAME": "Giuseppe & Sons", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950627, "LONGITUDE": -75.166809, "DATE_RANGE_START": 2019, "Total Visits": 12130.0, "Total Visitors": 8380.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 16492.0, "Total Transactions": 203.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.7, "MEDIAN_SPEND_PER_CUSTOMER": 69.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166809, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dwg-cbk", "LOCATION_NAME": "Hot Spot Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.916984, "LONGITUDE": -75.237394, "DATE_RANGE_START": 2019, "Total Visits": 145.0, "Total Visitors": 133.0, "POI_CBG": 421010060005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3189.0, "Total Transactions": 155.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.23, "MEDIAN_SPEND_PER_CUSTOMER": 25.66 }, "geometry": { "type": "Point", "coordinates": [ -75.237394, 39.916984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "LOCATION_NAME": "Domenic's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 57.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 82.0, "Total Spend": 652.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-t5f", "LOCATION_NAME": "Perla", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930011, "LONGITUDE": -75.162803, "DATE_RANGE_START": 2019, "Total Visits": 346.0, "Total Visitors": 193.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 202.0, "Total Spend": 3568.0, "Total Transactions": 45.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.08, "MEDIAN_SPEND_PER_CUSTOMER": 65.08 }, "geometry": { "type": "Point", "coordinates": [ -75.162803, 39.930011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-qzz", "LOCATION_NAME": "Fortune Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944339, "LONGITUDE": -75.172891, "DATE_RANGE_START": 2019, "Total Visits": 1128.0, "Total Visitors": 666.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 195.0, "Total Spend": 56.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.74, "MEDIAN_SPEND_PER_CUSTOMER": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.172891, 39.944339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992769, "LONGITUDE": -75.100237, "DATE_RANGE_START": 2019, "Total Visits": 430.0, "Total Visitors": 318.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 7231.0, "Total Transactions": 295.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.61, "MEDIAN_SPEND_PER_CUSTOMER": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100237, 39.992769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmb-5pv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952298, "LONGITUDE": -75.160846, "DATE_RANGE_START": 2019, "Total Visits": 2255.0, "Total Visitors": 1576.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 140.0, "Total Spend": 9471.0, "Total Transactions": 1321.0, "Total Customers": 861.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.56, "MEDIAN_SPEND_PER_CUSTOMER": 7.24 }, "geometry": { "type": "Point", "coordinates": [ -75.160846, 39.952298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-t7q", "LOCATION_NAME": "Craftsman Row Saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949101, "LONGITUDE": -75.154283, "DATE_RANGE_START": 2019, "Total Visits": 623.0, "Total Visitors": 525.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 18388.0, "Total Transactions": 498.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.83, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154283, 39.949101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "LOCATION_NAME": "Brauhaus Schmitz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942007, "LONGITUDE": -75.154702, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 285.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 16870.0, "Total Transactions": 355.0, "Total Customers": 311.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.7, "MEDIAN_SPEND_PER_CUSTOMER": 42.72 }, "geometry": { "type": "Point", "coordinates": [ -75.154702, 39.942007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-zs5", "LOCATION_NAME": "Kilimandjaro Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949245, "LONGITUDE": -75.213733, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 222.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 63.0, "Total Spend": 145.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.5, "MEDIAN_SPEND_PER_CUSTOMER": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213733, 39.949245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "LOCATION_NAME": "Moy Fong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 87.0, "POI_CBG": 421010264005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3685.0, "Total Transactions": 198.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.48, "MEDIAN_SPEND_PER_CUSTOMER": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-yqf", "LOCATION_NAME": "M Kee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955229, "LONGITUDE": -75.156117, "DATE_RANGE_START": 2019, "Total Visits": 390.0, "Total Visitors": 360.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1680.0, "Total Transactions": 57.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.6, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156117, 39.955229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22c@63s-dw9-7nq", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.878147, "LONGITUDE": -75.237777, "DATE_RANGE_START": 2019, "Total Visits": 2938.0, "Total Visitors": 2647.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2938.0, "Total Transactions": 235.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 10.85 }, "geometry": { "type": "Point", "coordinates": [ -75.237777, 39.878147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "LOCATION_NAME": "La Tienda MiniMarket", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 42.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 180.0, "Total Spend": 98.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.046202, "LONGITUDE": -75.056569, "DATE_RANGE_START": 2019, "Total Visits": 1832.0, "Total Visitors": 1301.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 11464.0, "Total Transactions": 2007.0, "Total Customers": 1008.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.74, "MEDIAN_SPEND_PER_CUSTOMER": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.056569, 40.046202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2019, "Total Visits": 313.0, "Total Visitors": 200.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4991.0, "Total Transactions": 861.0, "Total Customers": 368.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.95, "MEDIAN_SPEND_PER_CUSTOMER": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967006, "LONGITUDE": -75.169701, "DATE_RANGE_START": 2019, "Total Visits": 751.0, "Total Visitors": 518.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 11879.0, "Total Transactions": 725.0, "Total Customers": 433.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.47 }, "geometry": { "type": "Point", "coordinates": [ -75.169701, 39.967006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2019, "Total Visits": 870.0, "Total Visitors": 568.0, "POI_CBG": 421010096001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3193.0, "Total Transactions": 207.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.54, "MEDIAN_SPEND_PER_CUSTOMER": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgg-rc5", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.003796, "LONGITUDE": -75.180647, "DATE_RANGE_START": 2019, "Total Visits": 496.0, "Total Visitors": 421.0, "POI_CBG": 421010171004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2982.0, "Total Transactions": 207.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 13.44 }, "geometry": { "type": "Point", "coordinates": [ -75.180647, 40.003796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "LOCATION_NAME": "Muslim Fashion", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2019, "Total Visits": 1949.0, "Total Visitors": 1464.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 19.0, "Total Spend": 686.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.0, "MEDIAN_SPEND_PER_CUSTOMER": 78.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-y9z", "LOCATION_NAME": "South Street Art Mart", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941857, "LONGITUDE": -75.149316, "DATE_RANGE_START": 2019, "Total Visits": 1857.0, "Total Visitors": 1744.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 179.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.88, "MEDIAN_SPEND_PER_CUSTOMER": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.149316, 39.941857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj6-bx5", "LOCATION_NAME": "Sunny Park Gift Shop", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.037273, "LONGITUDE": -75.107834, "DATE_RANGE_START": 2019, "Total Visits": 1246.0, "Total Visitors": 934.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2063.0, "Total Transactions": 400.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.76, "MEDIAN_SPEND_PER_CUSTOMER": 4.52 }, "geometry": { "type": "Point", "coordinates": [ -75.107834, 40.037273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "LOCATION_NAME": "Bruno's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 108.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 124.0, "Total Spend": 814.0, "Total Transactions": 48.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 15.23 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phq-2hq", "LOCATION_NAME": "X Mark's the Spot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060083, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 115.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 52.0, "Total Spend": 573.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.5, "MEDIAN_SPEND_PER_CUSTOMER": 39.25 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 40.060083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-rkz", "LOCATION_NAME": "Zahav", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946194, "LONGITUDE": -75.145279, "DATE_RANGE_START": 2019, "Total Visits": 1094.0, "Total Visitors": 725.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 120.0, "Total Spend": 42684.0, "Total Transactions": 300.0, "Total Customers": 293.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.0, "MEDIAN_SPEND_PER_CUSTOMER": 127.99 }, "geometry": { "type": "Point", "coordinates": [ -75.145279, 39.946194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "LOCATION_NAME": "The Flavor Spot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2019, "Total Visits": 147.0, "Total Visitors": 142.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1132.0, "Total Transactions": 68.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22b@628-pm9-bp9", "LOCATION_NAME": "The Prime Rib", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.909183, "LONGITUDE": -75.164667, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 471.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1495.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 235.82, "MEDIAN_SPEND_PER_CUSTOMER": 235.82 }, "geometry": { "type": "Point", "coordinates": [ -75.164667, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "LOCATION_NAME": "Angelo's Pizza House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 52.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 592.0, "Total Transactions": 48.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.18, "MEDIAN_SPEND_PER_CUSTOMER": 11.23 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-s5z", "LOCATION_NAME": "Restaurant Depot", "TOP_CATEGORY": "Grocery and Related Product Merchant Wholesalers", "LATITUDE": 40.009243, "LONGITUDE": -75.177699, "DATE_RANGE_START": 2019, "Total Visits": 2307.0, "Total Visitors": 1258.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1221.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 366.56, "MEDIAN_SPEND_PER_CUSTOMER": 366.56 }, "geometry": { "type": "Point", "coordinates": [ -75.177699, 40.009243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029093, "LONGITUDE": -75.118871, "DATE_RANGE_START": 2019, "Total Visits": 638.0, "Total Visitors": 471.0, "POI_CBG": 421010290004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2583.0, "Total Transactions": 82.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.91, "MEDIAN_SPEND_PER_CUSTOMER": 18.86 }, "geometry": { "type": "Point", "coordinates": [ -75.118871, 40.029093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgy-r6k", "LOCATION_NAME": "Hopkins Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.051828, "LONGITUDE": -75.236578, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 55.0, "POI_CBG": 421010219001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 692.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236578, 40.051828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033268, "LONGITUDE": -75.084729, "DATE_RANGE_START": 2019, "Total Visits": 833.0, "Total Visitors": 580.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3011.0, "Total Transactions": 368.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.49, "MEDIAN_SPEND_PER_CUSTOMER": 8.88 }, "geometry": { "type": "Point", "coordinates": [ -75.084729, 40.033268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950471, "LONGITUDE": -75.146166, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 95.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1590.0, "Total Transactions": 53.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.72, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.146166, 39.950471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "LOCATION_NAME": "The Plough & the Stars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2019, "Total Visits": 591.0, "Total Visitors": 415.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 4505.0, "Total Transactions": 137.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.35, "MEDIAN_SPEND_PER_CUSTOMER": 26.13 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-whq", "LOCATION_NAME": "Mac's Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949782, "LONGITUDE": -75.144728, "DATE_RANGE_START": 2019, "Total Visits": 5252.0, "Total Visitors": 3901.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 10024.0, "Total Transactions": 285.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.3, "MEDIAN_SPEND_PER_CUSTOMER": 28.12 }, "geometry": { "type": "Point", "coordinates": [ -75.144728, 39.949782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-y7q", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085978, "LONGITUDE": -75.039162, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 80.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 48.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.039162, 40.085978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924749, "LONGITUDE": -75.169152, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 65.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2073.0, "Total Transactions": 228.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 8.85 }, "geometry": { "type": "Point", "coordinates": [ -75.169152, 39.924749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942532, "LONGITUDE": -75.157241, "DATE_RANGE_START": 2019, "Total Visits": 931.0, "Total Visitors": 798.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6524.0, "Total Transactions": 1114.0, "Total Customers": 720.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.59, "MEDIAN_SPEND_PER_CUSTOMER": 5.59 }, "geometry": { "type": "Point", "coordinates": [ -75.157241, 39.942532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953365, "LONGITUDE": -75.173088, "DATE_RANGE_START": 2019, "Total Visits": 1289.0, "Total Visitors": 880.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 64.0, "Total Spend": 16327.0, "Total Transactions": 2970.0, "Total Customers": 1726.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.27, "MEDIAN_SPEND_PER_CUSTOMER": 5.94 }, "geometry": { "type": "Point", "coordinates": [ -75.173088, 39.953365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "LOCATION_NAME": "Rays Cafe & Tea House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 58.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1162.0, "Total Transactions": 173.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.63, "MEDIAN_SPEND_PER_CUSTOMER": 11.07 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hh5", "LOCATION_NAME": "Square on Square", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94849, "LONGITUDE": -75.174456, "DATE_RANGE_START": 2019, "Total Visits": 2100.0, "Total Visitors": 1183.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 134.0, "Total Spend": 3123.0, "Total Transactions": 133.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.31, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.174456, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-k75", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.08259, "LONGITUDE": -75.022988, "DATE_RANGE_START": 2019, "Total Visits": 16825.0, "Total Visitors": 10671.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1804.0, "Total Transactions": 207.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.022988, 40.08259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-jgk", "LOCATION_NAME": "DanDan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950263, "LONGITUDE": -75.1676, "DATE_RANGE_START": 2019, "Total Visits": 300.0, "Total Visitors": 230.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 17281.0, "Total Transactions": 471.0, "Total Customers": 425.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.95, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1676, 39.950263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg9-ty9", "LOCATION_NAME": "I Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963033, "LONGITUDE": -75.164167, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 57.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1253.0, "Total Transactions": 85.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.164167, 39.963033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "LOCATION_NAME": "The Sidecar Bar & Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 42.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 7890.0, "Total Transactions": 197.0, "Total Customers": 168.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.24, "MEDIAN_SPEND_PER_CUSTOMER": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmb-m8v", "LOCATION_NAME": "Cafe Ole", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953535, "LONGITUDE": -75.144687, "DATE_RANGE_START": 2019, "Total Visits": 306.0, "Total Visitors": 95.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 431.0, "Total Spend": 48.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.39, "MEDIAN_SPEND_PER_CUSTOMER": 14.39 }, "geometry": { "type": "Point", "coordinates": [ -75.144687, 39.953535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj4-v4v", "LOCATION_NAME": "Taqueria La Raza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999423, "LONGITUDE": -75.134255, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 52.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 191.0, "Total Spend": 1007.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.68, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134255, 39.999423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "LOCATION_NAME": "Quaker Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060542, "LONGITUDE": -75.084471, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 123.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2573.0, "Total Transactions": 102.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.58, "MEDIAN_SPEND_PER_CUSTOMER": 27.67 }, "geometry": { "type": "Point", "coordinates": [ -75.084471, 40.060542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "LOCATION_NAME": "Real Food Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949409, "LONGITUDE": -75.167315, "DATE_RANGE_START": 2019, "Total Visits": 878.0, "Total Visitors": 653.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 44.0, "Total Spend": 5273.0, "Total Transactions": 398.0, "Total Customers": 353.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 12.37 }, "geometry": { "type": "Point", "coordinates": [ -75.167315, 39.949409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-h89", "LOCATION_NAME": "Gyu-Kaku", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960773, "LONGITUDE": -75.170117, "DATE_RANGE_START": 2019, "Total Visits": 783.0, "Total Visitors": 593.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 20423.0, "Total Transactions": 316.0, "Total Customers": 293.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.51, "MEDIAN_SPEND_PER_CUSTOMER": 59.91 }, "geometry": { "type": "Point", "coordinates": [ -75.170117, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "LOCATION_NAME": "Alaska King Crab House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2019, "Total Visits": 493.0, "Total Visitors": 443.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 587.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040654, "LONGITUDE": -75.144015, "DATE_RANGE_START": 2019, "Total Visits": 193.0, "Total Visitors": 165.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 34.0, "Total Spend": 3566.0, "Total Transactions": 178.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.33, "MEDIAN_SPEND_PER_CUSTOMER": 19.56 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.040654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-kfz", "LOCATION_NAME": "SoBol UCity", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951073, "LONGITUDE": -75.198726, "DATE_RANGE_START": 2019, "Total Visits": 3853.0, "Total Visitors": 2225.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 12860.0, "Total Transactions": 1128.0, "Total Customers": 821.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.69, "MEDIAN_SPEND_PER_CUSTOMER": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.198726, 39.951073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "LOCATION_NAME": "Pizza & Steak Master", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 15.0, "POI_CBG": 421010253001.0, "MEDIAN_DWELL": 579.0, "Total Spend": 1582.0, "Total Transactions": 77.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.06, "MEDIAN_SPEND_PER_CUSTOMER": 28.33 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-rzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895169, "LONGITUDE": -75.227984, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 110.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.41, "MEDIAN_SPEND_PER_CUSTOMER": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -75.227984, 39.895169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "LOCATION_NAME": "El Fuego", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2019, "Total Visits": 212.0, "Total Visitors": 175.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2492.0, "Total Transactions": 208.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.57, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-v75", "LOCATION_NAME": "Buffalo Billiards", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948098, "LONGITUDE": -75.143221, "DATE_RANGE_START": 2019, "Total Visits": 1093.0, "Total Visitors": 741.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 96.0, "Total Spend": 19983.0, "Total Transactions": 750.0, "Total Customers": 580.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.67, "MEDIAN_SPEND_PER_CUSTOMER": 24.06 }, "geometry": { "type": "Point", "coordinates": [ -75.143221, 39.948098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "LOCATION_NAME": "Ristorante Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 48.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 7426.0, "Total Transactions": 80.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.05, "MEDIAN_SPEND_PER_CUSTOMER": 83.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087623, "LONGITUDE": -74.965267, "DATE_RANGE_START": 2019, "Total Visits": 1881.0, "Total Visitors": 1579.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16729.0, "Total Transactions": 1414.0, "Total Customers": 1059.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 12.51 }, "geometry": { "type": "Point", "coordinates": [ -74.965267, 40.087623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "LOCATION_NAME": "Arby's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2019, "Total Visits": 465.0, "Total Visitors": 428.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4816.0, "Total Transactions": 403.0, "Total Customers": 328.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.02, "MEDIAN_SPEND_PER_CUSTOMER": 11.64 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044629, "LONGITUDE": -75.142895, "DATE_RANGE_START": 2019, "Total Visits": 1173.0, "Total Visitors": 916.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6388.0, "Total Transactions": 675.0, "Total Customers": 503.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.34, "MEDIAN_SPEND_PER_CUSTOMER": 10.16 }, "geometry": { "type": "Point", "coordinates": [ -75.142895, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-qs5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031776, "LONGITUDE": -75.104312, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 120.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2258.0, "Total Transactions": 405.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.53, "MEDIAN_SPEND_PER_CUSTOMER": 5.83 }, "geometry": { "type": "Point", "coordinates": [ -75.104312, 40.031776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-rzf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.996049, "LONGITUDE": -75.092849, "DATE_RANGE_START": 2019, "Total Visits": 666.0, "Total Visitors": 356.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1312.0, "Total Transactions": 213.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.59, "MEDIAN_SPEND_PER_CUSTOMER": 6.03 }, "geometry": { "type": "Point", "coordinates": [ -75.092849, 39.996049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgf-h3q", "LOCATION_NAME": "A Part Of Me", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.960878, "LONGITUDE": -75.198538, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 207.0, "POI_CBG": 421010091001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 566.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 113.0, "MEDIAN_SPEND_PER_CUSTOMER": 170.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198538, 39.960878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "LOCATION_NAME": "Tap Room On 19th", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010038001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 11071.0, "Total Transactions": 277.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.88, "MEDIAN_SPEND_PER_CUSTOMER": 42.69 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-89z", "LOCATION_NAME": "Dasiwa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969169, "LONGITUDE": -75.179702, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 18.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6412.0, "Total Transactions": 148.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.4, "MEDIAN_SPEND_PER_CUSTOMER": 42.38 }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.969169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm4-t7q", "LOCATION_NAME": "Mifflin Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924805, "LONGITUDE": -75.154427, "DATE_RANGE_START": 2019, "Total Visits": 495.0, "Total Visitors": 252.0, "POI_CBG": 421010042014.0, "MEDIAN_DWELL": 180.0, "Total Spend": 498.0, "Total Transactions": 53.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 10.97 }, "geometry": { "type": "Point", "coordinates": [ -75.154427, 39.924805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2019, "Total Visits": 1043.0, "Total Visitors": 850.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 92442.0, "Total Transactions": 5280.0, "Total Customers": 2867.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "LOCATION_NAME": "Desi Chaat House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 27.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1671.0, "Total Transactions": 135.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.55, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgf-y9z", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.969714, "LONGITUDE": -75.196116, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1831.0, "Total Transactions": 258.0, "Total Customers": 252.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.85, "MEDIAN_SPEND_PER_CUSTOMER": 5.85 }, "geometry": { "type": "Point", "coordinates": [ -75.196116, 39.969714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "LOCATION_NAME": "Tony's Luke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 38.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 11870.0, "Total Transactions": 506.0, "Total Customers": 465.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.36, "MEDIAN_SPEND_PER_CUSTOMER": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnx-9s5", "LOCATION_NAME": "Interstate Drafthouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971824, "LONGITUDE": -75.128675, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 40.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 84.0, "Total Spend": 17517.0, "Total Transactions": 403.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.85, "MEDIAN_SPEND_PER_CUSTOMER": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128675, 39.971824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2019, "Total Visits": 1961.0, "Total Visitors": 1236.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 3192.0, "Total Transactions": 132.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.86, "MEDIAN_SPEND_PER_CUSTOMER": 19.06 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": 298.0, "Total Spend": 7388.0, "Total Transactions": 1009.0, "Total Customers": 575.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.85, "MEDIAN_SPEND_PER_CUSTOMER": 6.98 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "LOCATION_NAME": "Kaffa Crossing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956859, "LONGITUDE": -75.210414, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 38.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 30.0, "Total Spend": 443.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.4, "MEDIAN_SPEND_PER_CUSTOMER": 40.4 }, "geometry": { "type": "Point", "coordinates": [ -75.210414, 39.956859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "LOCATION_NAME": "R.E. Michel", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2019, "Total Visits": 193.0, "Total Visitors": 145.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 2536.0, "Total Transactions": 17.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.04, "MEDIAN_SPEND_PER_CUSTOMER": 272.16 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "LOCATION_NAME": "CHAPMAN NISSAN", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.910684, "LONGITUDE": -75.224285, "DATE_RANGE_START": 2019, "Total Visits": 1139.0, "Total Visitors": 708.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 69.0, "Total Spend": 21926.0, "Total Transactions": 85.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.21, "MEDIAN_SPEND_PER_CUSTOMER": 80.95 }, "geometry": { "type": "Point", "coordinates": [ -75.224285, 39.910684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgf-kj9", "LOCATION_NAME": "Wheel Fun Rentals Boathouse Row", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.969459, "LONGITUDE": -75.187508, "DATE_RANGE_START": 2019, "Total Visits": 543.0, "Total Visitors": 498.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2680.0, "Total Transactions": 93.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.187508, 39.969459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.015701, "LONGITUDE": -75.13771, "DATE_RANGE_START": 2019, "Total Visits": 230.0, "Total Visitors": 183.0, "POI_CBG": 421010197004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6691.0, "Total Transactions": 200.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.97, "MEDIAN_SPEND_PER_CUSTOMER": 27.53 }, "geometry": { "type": "Point", "coordinates": [ -75.13771, 40.015701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.059864, "LONGITUDE": -75.166534, "DATE_RANGE_START": 2019, "Total Visits": 615.0, "Total Visitors": 458.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1505.0, "Total Transactions": 87.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.55, "MEDIAN_SPEND_PER_CUSTOMER": 18.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166534, 40.059864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rx5", "LOCATION_NAME": "Hair Hair", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978114, "LONGITUDE": -75.271405, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 95.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 19226.0, "Total Transactions": 641.0, "Total Customers": 541.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 25.3 }, "geometry": { "type": "Point", "coordinates": [ -75.271405, 39.978114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "LOCATION_NAME": "Johns Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03316, "LONGITUDE": -75.177034, "DATE_RANGE_START": 2019, "Total Visits": 168.0, "Total Visitors": 147.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4952.0, "Total Transactions": 242.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.53, "MEDIAN_SPEND_PER_CUSTOMER": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.177034, 40.03316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-b49", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030422, "LONGITUDE": -75.153419, "DATE_RANGE_START": 2019, "Total Visits": 1391.0, "Total Visitors": 1011.0, "POI_CBG": 421010280003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 463.0, "Total Transactions": 25.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 22.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153419, 40.030422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "LOCATION_NAME": "Uniqlo", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951014, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2019, "Total Visits": 936.0, "Total Visitors": 675.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 111.0, "Total Spend": 66556.0, "Total Transactions": 1474.0, "Total Customers": 1324.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.9, "MEDIAN_SPEND_PER_CUSTOMER": 34.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.951014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-yd9", "LOCATION_NAME": "Kayuh Bicycles & Cafe", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.973645, "LONGITUDE": -75.17798, "DATE_RANGE_START": 2019, "Total Visits": 648.0, "Total Visitors": 480.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1708.0, "Total Transactions": 223.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.17798, 39.973645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "LOCATION_NAME": "The Book Trader", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 92.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1005.0, "Total Transactions": 45.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.07, "MEDIAN_SPEND_PER_CUSTOMER": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "LOCATION_NAME": "Mostly Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.94129, "LONGITUDE": -75.151876, "DATE_RANGE_START": 2019, "Total Visits": 292.0, "Total Visitors": 195.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 73.0, "Total Spend": 825.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.85 }, "geometry": { "type": "Point", "coordinates": [ -75.151876, 39.94129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvx-59f", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.972941, "LONGITUDE": -75.217366, "DATE_RANGE_START": 2019, "Total Visits": 450.0, "Total Visitors": 373.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1626.0, "Total Transactions": 188.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.43, "MEDIAN_SPEND_PER_CUSTOMER": 7.24 }, "geometry": { "type": "Point", "coordinates": [ -75.217366, 39.972941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2019, "Total Visits": 851.0, "Total Visitors": 550.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1204.0, "Total Transactions": 90.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.74, "MEDIAN_SPEND_PER_CUSTOMER": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2019, "Total Visits": 1714.0, "Total Visitors": 1236.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 401.0, "Total Transactions": 35.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.35 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 10.0, "POI_CBG": 421010298002.0, "MEDIAN_DWELL": 395.0, "Total Spend": 1504.0, "Total Transactions": 90.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.1, "MEDIAN_SPEND_PER_CUSTOMER": 18.33 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.916923, "LONGITUDE": -75.236784, "DATE_RANGE_START": 2019, "Total Visits": 273.0, "Total Visitors": 235.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8219.0, "Total Transactions": 177.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 30.11 }, "geometry": { "type": "Point", "coordinates": [ -75.236784, 39.916923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-yjv", "LOCATION_NAME": "LL Flooring", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.927832, "LONGITUDE": -75.145672, "DATE_RANGE_START": 2019, "Total Visits": 623.0, "Total Visitors": 575.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4226.0, "Total Transactions": 8.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 762.0, "MEDIAN_SPEND_PER_CUSTOMER": 1268.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145672, 39.927832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj7-sqz", "LOCATION_NAME": "Pizza Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017091, "LONGITUDE": -75.096438, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 27.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2222.0, "Total Transactions": 98.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.34, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.096438, 40.017091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cbk", "LOCATION_NAME": "Saffron Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002525, "LONGITUDE": -75.153041, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 30.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 167.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.153041, 40.002525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "LOCATION_NAME": "J&J Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.925365, "LONGITUDE": -75.157449, "DATE_RANGE_START": 2019, "Total Visits": 215.0, "Total Visitors": 135.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 267.0, "Total Spend": 2446.0, "Total Transactions": 245.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.04, "MEDIAN_SPEND_PER_CUSTOMER": 12.76 }, "geometry": { "type": "Point", "coordinates": [ -75.157449, 39.925365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-fvf", "LOCATION_NAME": "Jennifer Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.944398, "LONGITUDE": -75.216558, "DATE_RANGE_START": 2019, "Total Visits": 187.0, "Total Visitors": 140.0, "POI_CBG": 421010078002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 277.0, "Total Transactions": 23.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.77, "MEDIAN_SPEND_PER_CUSTOMER": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.216558, 39.944398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2019, "Total Visits": 3928.0, "Total Visitors": 2622.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 236384.0, "Total Transactions": 3012.0, "Total Customers": 1786.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.12, "MEDIAN_SPEND_PER_CUSTOMER": 41.68 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-3wk", "LOCATION_NAME": "Christian Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.942022, "LONGITUDE": -75.180801, "DATE_RANGE_START": 2019, "Total Visits": 143.0, "Total Visitors": 90.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1639.0, "Total Transactions": 177.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180801, 39.942022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22h@628-pmb-7yv", "LOCATION_NAME": "Sweet As Fudge Candy Shoppe", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.954075, "LONGITUDE": -75.15933, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 2137.0, "Total Transactions": 165.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.25, "MEDIAN_SPEND_PER_CUSTOMER": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15933, 39.954075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978284, "LONGITUDE": -75.224461, "DATE_RANGE_START": 2019, "Total Visits": 713.0, "Total Visitors": 603.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 52677.0, "Total Transactions": 1784.0, "Total Customers": 1514.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.56, "MEDIAN_SPEND_PER_CUSTOMER": 24.79 }, "geometry": { "type": "Point", "coordinates": [ -75.224461, 39.978284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj9-6p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.042256, "LONGITUDE": -75.144223, "DATE_RANGE_START": 2019, "Total Visits": 200.0, "Total Visitors": 170.0, "POI_CBG": 421010278002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 501.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.07, "MEDIAN_SPEND_PER_CUSTOMER": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144223, 40.042256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.055974, "LONGITUDE": -75.005102, "DATE_RANGE_START": 2019, "Total Visits": 336.0, "Total Visitors": 230.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 7.0, "Total Spend": 306.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.01, "MEDIAN_SPEND_PER_CUSTOMER": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.005102, 40.055974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-b49", "LOCATION_NAME": "E Cigs International", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.03586, "LONGITUDE": -75.217916, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 87.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 806.0, "Total Transactions": 22.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 45.35 }, "geometry": { "type": "Point", "coordinates": [ -75.217916, 40.03586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2019, "Total Visits": 356.0, "Total Visitors": 230.0, "POI_CBG": 421010215001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 9356.0, "Total Transactions": 282.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.63, "MEDIAN_SPEND_PER_CUSTOMER": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-jgk", "LOCATION_NAME": "Furniture Unlimited II", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.035258, "LONGITUDE": -75.175116, "DATE_RANGE_START": 2019, "Total Visits": 3793.0, "Total Visitors": 2379.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 826.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 247.86, "MEDIAN_SPEND_PER_CUSTOMER": 247.86 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.035258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2019, "Total Visits": 275.0, "Total Visitors": 205.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4346.0, "Total Transactions": 483.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-p8j-9mk", "LOCATION_NAME": "Capriotti Bros", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.035466, "LONGITUDE": -75.044048, "DATE_RANGE_START": 2019, "Total Visits": 548.0, "Total Visitors": 396.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 369.0, "Total Transactions": 27.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.34, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044048, 40.035466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pm7-sh5", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.922929, "LONGITUDE": -75.18437, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 92.0, "POI_CBG": 421010037022.0, "MEDIAN_DWELL": 104.0, "Total Spend": 166.0, "Total Transactions": 25.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.22, "MEDIAN_SPEND_PER_CUSTOMER": 5.22 }, "geometry": { "type": "Point", "coordinates": [ -75.18437, 39.922929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-rc5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977844, "LONGITUDE": -75.118479, "DATE_RANGE_START": 2019, "Total Visits": 1889.0, "Total Visitors": 1319.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7024.0, "Total Transactions": 288.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 17.37 }, "geometry": { "type": "Point", "coordinates": [ -75.118479, 39.977844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2019, "Total Visits": 728.0, "Total Visitors": 536.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3433.0, "Total Transactions": 132.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.55, "MEDIAN_SPEND_PER_CUSTOMER": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "LOCATION_NAME": "Beauty Point", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.980086, "LONGITUDE": -75.235032, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 113.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 251.0, "Total Spend": 3590.0, "Total Transactions": 122.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.56, "MEDIAN_SPEND_PER_CUSTOMER": 22.11 }, "geometry": { "type": "Point", "coordinates": [ -75.235032, 39.980086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm3-zpv", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919286, "LONGITUDE": -75.159152, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 50.0, "POI_CBG": 421010041021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 72.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.17, "MEDIAN_SPEND_PER_CUSTOMER": 15.17 }, "geometry": { "type": "Point", "coordinates": [ -75.159152, 39.919286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgf-fpv", "LOCATION_NAME": "Kabobeesh", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956522, "LONGITUDE": -75.206506, "DATE_RANGE_START": 2019, "Total Visits": 267.0, "Total Visitors": 220.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 32.0, "Total Spend": 6553.0, "Total Transactions": 218.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.23, "MEDIAN_SPEND_PER_CUSTOMER": 24.29 }, "geometry": { "type": "Point", "coordinates": [ -75.206506, 39.956522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-n3q", "LOCATION_NAME": "Naya Market St", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953238, "LONGITUDE": -75.167055, "DATE_RANGE_START": 2019, "Total Visits": 1752.0, "Total Visitors": 1198.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 29.0, "Total Spend": 1509.0, "Total Transactions": 130.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.953238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923962, "LONGITUDE": -75.142554, "DATE_RANGE_START": 2019, "Total Visits": 1051.0, "Total Visitors": 904.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 10374.0, "Total Transactions": 1276.0, "Total Customers": 956.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.92, "MEDIAN_SPEND_PER_CUSTOMER": 8.27 }, "geometry": { "type": "Point", "coordinates": [ -75.142554, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "LOCATION_NAME": "Nori Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 53.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 67.0, "Total Spend": 3617.0, "Total Transactions": 113.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.82, "MEDIAN_SPEND_PER_CUSTOMER": 30.57 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2019, "Total Visits": 655.0, "Total Visitors": 440.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5671.0, "Total Transactions": 893.0, "Total Customers": 396.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.09, "MEDIAN_SPEND_PER_CUSTOMER": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "LOCATION_NAME": "Hibiscus Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 52.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3007.0, "Total Transactions": 163.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.82, "MEDIAN_SPEND_PER_CUSTOMER": 15.92 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "LOCATION_NAME": "Ox Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2019, "Total Visits": 3623.0, "Total Visitors": 2943.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3340.0, "Total Transactions": 445.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "LOCATION_NAME": "lululemon athletica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2019, "Total Visits": 576.0, "Total Visitors": 485.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 24.0, "Total Spend": 25726.0, "Total Transactions": 252.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.0, "MEDIAN_SPEND_PER_CUSTOMER": 88.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-5xq", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.051379, "LONGITUDE": -75.010945, "DATE_RANGE_START": 2019, "Total Visits": 728.0, "Total Visitors": 471.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 203.0, "Total Transactions": 17.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.34, "MEDIAN_SPEND_PER_CUSTOMER": 10.63 }, "geometry": { "type": "Point", "coordinates": [ -75.010945, 40.051379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.970561, "LONGITUDE": -75.155313, "DATE_RANGE_START": 2019, "Total Visits": 886.0, "Total Visitors": 643.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1023.0, "Total Transactions": 93.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.44, "MEDIAN_SPEND_PER_CUSTOMER": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155313, 39.970561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.96694, "LONGITUDE": -75.233446, "DATE_RANGE_START": 2019, "Total Visits": 959.0, "Total Visitors": 660.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2337.0, "Total Transactions": 243.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.233446, 39.96694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "LOCATION_NAME": "Fairmount Pizza and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2019, "Total Visits": 260.0, "Total Visitors": 238.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 14078.0, "Total Transactions": 993.0, "Total Customers": 715.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 13.34 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-jjv", "LOCATION_NAME": "The Continental Mid Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951903, "LONGITUDE": -75.170452, "DATE_RANGE_START": 2019, "Total Visits": 2290.0, "Total Visitors": 1891.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 58.0, "Total Spend": 24695.0, "Total Transactions": 431.0, "Total Customers": 388.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.38, "MEDIAN_SPEND_PER_CUSTOMER": 45.94 }, "geometry": { "type": "Point", "coordinates": [ -75.170452, 39.951903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-z75", "LOCATION_NAME": "Pierogi Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101174, "LONGITUDE": -75.028995, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 148.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 14.0, "Total Spend": 318.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028995, 40.101174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 5496.0, "Total Transactions": 535.0, "Total Customers": 436.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "LOCATION_NAME": "Frieda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 73.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3064.0, "Total Transactions": 163.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 18.56 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029034, "LONGITUDE": -75.099595, "DATE_RANGE_START": 2019, "Total Visits": 1181.0, "Total Visitors": 873.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 42496.0, "Total Transactions": 3381.0, "Total Customers": 2309.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.15, "MEDIAN_SPEND_PER_CUSTOMER": 14.39 }, "geometry": { "type": "Point", "coordinates": [ -75.099595, 40.029034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "LOCATION_NAME": "Cold Stone Creamery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978153, "LONGITUDE": -75.119499, "DATE_RANGE_START": 2019, "Total Visits": 212.0, "Total Visitors": 187.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6532.0, "Total Transactions": 530.0, "Total Customers": 443.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.55, "MEDIAN_SPEND_PER_CUSTOMER": 12.23 }, "geometry": { "type": "Point", "coordinates": [ -75.119499, 39.978153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2019, "Total Visits": 420.0, "Total Visitors": 295.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9844.0, "Total Transactions": 1587.0, "Total Customers": 721.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-whq", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.051934, "LONGITUDE": -75.058717, "DATE_RANGE_START": 2019, "Total Visits": 916.0, "Total Visitors": 758.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6279.0, "Total Transactions": 77.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.77, "MEDIAN_SPEND_PER_CUSTOMER": 55.05 }, "geometry": { "type": "Point", "coordinates": [ -75.058717, 40.051934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.986359, "LONGITUDE": -75.179573, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 476.0, "POI_CBG": 421010151021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 264.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.3, "MEDIAN_SPEND_PER_CUSTOMER": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179573, 39.986359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wtv", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951227, "LONGITUDE": -75.152425, "DATE_RANGE_START": 2019, "Total Visits": 1293.0, "Total Visitors": 978.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 23927.0, "Total Transactions": 2082.0, "Total Customers": 1539.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.38, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152425, 39.951227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "LOCATION_NAME": "Buffalo Exchange", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.951062, "LONGITUDE": -75.166599, "DATE_RANGE_START": 2019, "Total Visits": 12130.0, "Total Visitors": 8380.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 53101.0, "Total Transactions": 1647.0, "Total Customers": 1386.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.92, "MEDIAN_SPEND_PER_CUSTOMER": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.166599, 39.951062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995073, "LONGITUDE": -75.126158, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 78.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1274.0, "Total Transactions": 143.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.126158, 39.995073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "LOCATION_NAME": "Beer Express", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2019, "Total Visits": 430.0, "Total Visitors": 350.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8076.0, "Total Transactions": 292.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 28.11 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-gc5", "LOCATION_NAME": "Verree Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.072408, "LONGITUDE": -75.076041, "DATE_RANGE_START": 2019, "Total Visits": 142.0, "Total Visitors": 93.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 43.0, "Total Spend": 423.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.45 }, "geometry": { "type": "Point", "coordinates": [ -75.076041, 40.072408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dvy-89z", "LOCATION_NAME": "Firehouse Bicycles", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.947728, "LONGITUDE": -75.222697, "DATE_RANGE_START": 2019, "Total Visits": 1682.0, "Total Visitors": 1193.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 39.0, "Total Spend": 2881.0, "Total Transactions": 30.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.7, "MEDIAN_SPEND_PER_CUSTOMER": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222697, 39.947728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2019, "Total Visits": 573.0, "Total Visitors": 403.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2774.0, "Total Transactions": 341.0, "Total Customers": 227.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "LOCATION_NAME": "Overbrook Pizza Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 27.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4471.0, "Total Transactions": 267.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.96, "MEDIAN_SPEND_PER_CUSTOMER": 18.42 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "LOCATION_NAME": "Papa Joe's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 35.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 1139.0, "Total Spend": 32.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.54, "MEDIAN_SPEND_PER_CUSTOMER": 9.54 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-8y9", "LOCATION_NAME": "Accu Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953369, "LONGITUDE": -75.218457, "DATE_RANGE_START": 2019, "Total Visits": 260.0, "Total Visitors": 195.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3565.0, "Total Transactions": 197.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.67, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.218457, 39.953369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "LOCATION_NAME": "Monk's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2019, "Total Visits": 358.0, "Total Visitors": 298.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 61.0, "Total Spend": 34242.0, "Total Transactions": 618.0, "Total Customers": 576.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.91, "MEDIAN_SPEND_PER_CUSTOMER": 45.73 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "LOCATION_NAME": "Sorrento's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 50.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1409.0, "Total Transactions": 75.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2019, "Total Visits": 328.0, "Total Visitors": 280.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 968.0, "Total Transactions": 60.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.36, "MEDIAN_SPEND_PER_CUSTOMER": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081002, "LONGITUDE": -75.170911, "DATE_RANGE_START": 2019, "Total Visits": 580.0, "Total Visitors": 460.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 9945.0, "Total Transactions": 771.0, "Total Customers": 576.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 13.58 }, "geometry": { "type": "Point", "coordinates": [ -75.170911, 40.081002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2019, "Total Visits": 371.0, "Total Visitors": 321.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7991.0, "Total Transactions": 1213.0, "Total Customers": 775.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.32, "MEDIAN_SPEND_PER_CUSTOMER": 6.41 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-7yv", "LOCATION_NAME": "Old City Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953757, "LONGITUDE": -75.158885, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 22023.0, "Total Transactions": 3673.0, "Total Customers": 2062.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.75, "MEDIAN_SPEND_PER_CUSTOMER": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158885, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 222.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3720.0, "Total Transactions": 701.0, "Total Customers": 283.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.62, "MEDIAN_SPEND_PER_CUSTOMER": 7.81 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-zj9", "LOCATION_NAME": "Arch Gourmet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955807, "LONGITUDE": -75.176416, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2700.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176416, 39.955807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj4-7wk", "LOCATION_NAME": "Vernie's Soul Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027362, "LONGITUDE": -75.153997, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010280003.0, "MEDIAN_DWELL": null, "Total Spend": 1085.0, "Total Transactions": 48.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.153997, 40.027362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "LOCATION_NAME": "Galaxy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 33.0, "POI_CBG": 421010338004.0, "MEDIAN_DWELL": 38.0, "Total Spend": 336.0, "Total Transactions": 27.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.78, "MEDIAN_SPEND_PER_CUSTOMER": 10.86 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-73q", "LOCATION_NAME": "Byrne's Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984147, "LONGITUDE": -75.098754, "DATE_RANGE_START": 2019, "Total Visits": 288.0, "Total Visitors": 265.0, "POI_CBG": 421010378002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6340.0, "Total Transactions": 138.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.0, "MEDIAN_SPEND_PER_CUSTOMER": 47.26 }, "geometry": { "type": "Point", "coordinates": [ -75.098754, 39.984147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phy-v9f", "LOCATION_NAME": "The Crab Shack 2", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030196, "LONGITUDE": -75.117947, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 233.0, "POI_CBG": 421010290004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2628.0, "Total Transactions": 90.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.3, "MEDIAN_SPEND_PER_CUSTOMER": 28.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117947, 40.030196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "LOCATION_NAME": "Asian Bamboo House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 108.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3277.0, "Total Transactions": 118.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.42, "MEDIAN_SPEND_PER_CUSTOMER": 30.83 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvr-cyv", "LOCATION_NAME": "Chrisetta's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9211, "LONGITUDE": -75.231507, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010062001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 500.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 150.0, "MEDIAN_SPEND_PER_CUSTOMER": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231507, 39.9211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "LOCATION_NAME": "Castor Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 53.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 423.0, "Total Spend": 1673.0, "Total Transactions": 95.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.67, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6p9", "LOCATION_NAME": "DelFrisco's Double Eagle Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950881, "LONGITUDE": -75.165456, "DATE_RANGE_START": 2019, "Total Visits": 4581.0, "Total Visitors": 3505.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 75.0, "Total Spend": 64470.0, "Total Transactions": 520.0, "Total Customers": 463.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.63, "MEDIAN_SPEND_PER_CUSTOMER": 104.56 }, "geometry": { "type": "Point", "coordinates": [ -75.165456, 39.950881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-t5f", "LOCATION_NAME": "Golden Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965831, "LONGITUDE": -75.160375, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 58.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1036.0, "Total Transactions": 58.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.92, "MEDIAN_SPEND_PER_CUSTOMER": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.160375, 39.965831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p82-3wk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039012, "LONGITUDE": -75.097789, "DATE_RANGE_START": 2019, "Total Visits": 425.0, "Total Visitors": 268.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 134.0, "Total Spend": 1786.0, "Total Transactions": 187.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.097789, 40.039012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.101484, "LONGITUDE": -75.030277, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 267.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1059.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.63, "MEDIAN_SPEND_PER_CUSTOMER": 57.63 }, "geometry": { "type": "Point", "coordinates": [ -75.030277, 40.101484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pgg-p9z", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.004888, "LONGITUDE": -75.180206, "DATE_RANGE_START": 2019, "Total Visits": 403.0, "Total Visitors": 292.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4145.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 216.49, "MEDIAN_SPEND_PER_CUSTOMER": 216.49 }, "geometry": { "type": "Point", "coordinates": [ -75.180206, 40.004888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938259, "LONGITUDE": -75.21557, "DATE_RANGE_START": 2019, "Total Visits": 435.0, "Total Visitors": 356.0, "POI_CBG": 421010074005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7110.0, "Total Transactions": 508.0, "Total Customers": 398.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.21557, 39.938259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-35z", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957614, "LONGITUDE": -75.214932, "DATE_RANGE_START": 2019, "Total Visits": 1581.0, "Total Visitors": 1171.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 31.0, "Total Spend": 3952.0, "Total Transactions": 208.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.63, "MEDIAN_SPEND_PER_CUSTOMER": 19.59 }, "geometry": { "type": "Point", "coordinates": [ -75.214932, 39.957614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.030253, "LONGITUDE": -75.101415, "DATE_RANGE_START": 2019, "Total Visits": 1502.0, "Total Visitors": 1321.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 7122.0, "Total Transactions": 133.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.03, "MEDIAN_SPEND_PER_CUSTOMER": 41.35 }, "geometry": { "type": "Point", "coordinates": [ -75.101415, 40.030253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "LOCATION_NAME": "Urban Outfitters", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950066, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2019, "Total Visits": 1549.0, "Total Visitors": 1339.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 12619.0, "Total Transactions": 257.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "LOCATION_NAME": "Fleishman Fabrics & Supplies", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.93943, "LONGITUDE": -75.149516, "DATE_RANGE_START": 2019, "Total Visits": 486.0, "Total Visitors": 336.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 106.0, "Total Spend": 3284.0, "Total Transactions": 47.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.73, "MEDIAN_SPEND_PER_CUSTOMER": 38.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149516, 39.93943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.021323, "LONGITUDE": -75.133522, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 328.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1722.0, "Total Transactions": 205.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 8.88 }, "geometry": { "type": "Point", "coordinates": [ -75.133522, 40.021323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-236@63s-dw4-rzf", "LOCATION_NAME": "L'Occitane", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.895196, "LONGITUDE": -75.227963, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4483.0, "Total Transactions": 108.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.227963, 39.895196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.921602, "LONGITUDE": -75.193164, "DATE_RANGE_START": 2019, "Total Visits": 2535.0, "Total Visitors": 1941.0, "POI_CBG": 421010036003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 458.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193164, 39.921602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-kpv", "LOCATION_NAME": "Foreign Bazaar", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.952092, "LONGITUDE": -75.172676, "DATE_RANGE_START": 2019, "Total Visits": 260.0, "Total Visitors": 193.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 80.0, "Total Spend": 849.0, "Total Transactions": 30.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.6, "MEDIAN_SPEND_PER_CUSTOMER": 24.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172676, 39.952092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "LOCATION_NAME": "Thunderbird Salvage", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 135.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 5869.0, "Total Transactions": 215.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.25, "MEDIAN_SPEND_PER_CUSTOMER": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pm3-vpv", "LOCATION_NAME": "Philadelphia Scooters", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.936705, "LONGITUDE": -75.186573, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 90.0, "POI_CBG": 421010020002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 453.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 135.95, "MEDIAN_SPEND_PER_CUSTOMER": 135.95 }, "geometry": { "type": "Point", "coordinates": [ -75.186573, 39.936705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2019, "Total Visits": 232.0, "Total Visitors": 208.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6656.0, "Total Transactions": 208.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.46, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 243.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7548.0, "Total Transactions": 187.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "LOCATION_NAME": "Harbor Freight Tools", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2019, "Total Visits": 1106.0, "Total Visitors": 933.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 33927.0, "Total Transactions": 538.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.85, "MEDIAN_SPEND_PER_CUSTOMER": 37.54 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-syv", "LOCATION_NAME": "Snyder Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926819, "LONGITUDE": -75.191169, "DATE_RANGE_START": 2019, "Total Visits": 598.0, "Total Visitors": 255.0, "POI_CBG": 421010036003.0, "MEDIAN_DWELL": 210.0, "Total Spend": 19.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.63, "MEDIAN_SPEND_PER_CUSTOMER": 5.63 }, "geometry": { "type": "Point", "coordinates": [ -75.191169, 39.926819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-835", "LOCATION_NAME": "Iovine Brothers Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.952988, "LONGITUDE": -75.158802, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 11367.0, "Total Transactions": 948.0, "Total Customers": 648.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.26, "MEDIAN_SPEND_PER_CUSTOMER": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158802, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.037805, "LONGITUDE": -75.117796, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 143.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 142.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.62, "MEDIAN_SPEND_PER_CUSTOMER": 42.51 }, "geometry": { "type": "Point", "coordinates": [ -75.117796, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-6x5", "LOCATION_NAME": "Brooks Brothers", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949887, "LONGITUDE": -75.166618, "DATE_RANGE_START": 2019, "Total Visits": 541.0, "Total Visitors": 406.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 62.0, "Total Spend": 8963.0, "Total Transactions": 60.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 104.0, "MEDIAN_SPEND_PER_CUSTOMER": 127.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166618, 39.949887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2019, "Total Visits": 725.0, "Total Visitors": 638.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 106.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.88, "MEDIAN_SPEND_PER_CUSTOMER": 31.88 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "LOCATION_NAME": "10 Spot/MadRag", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.917816, "LONGITUDE": -75.185164, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 19699.0, "Total Transactions": 665.0, "Total Customers": 538.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.68, "MEDIAN_SPEND_PER_CUSTOMER": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.185164, 39.917816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "LOCATION_NAME": "Journeys", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2019, "Total Visits": 225.0, "Total Visitors": 200.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2765.0, "Total Transactions": 48.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.99, "MEDIAN_SPEND_PER_CUSTOMER": 56.74 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.931302, "LONGITUDE": -75.225599, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 295.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1332.0, "Total Transactions": 175.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225599, 39.931302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050125, "LONGITUDE": -75.141867, "DATE_RANGE_START": 2019, "Total Visits": 326.0, "Total Visitors": 257.0, "POI_CBG": 421010268004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2463.0, "Total Transactions": 285.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.13, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.141867, 40.050125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2019, "Total Visits": 263.0, "Total Visitors": 175.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 538.0, "Total Transactions": 35.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pp2-47q", "LOCATION_NAME": "Tinys Bottle Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.982331, "LONGITUDE": -75.103167, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 75.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 48.0, "Total Spend": 366.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.05, "MEDIAN_SPEND_PER_CUSTOMER": 23.05 }, "geometry": { "type": "Point", "coordinates": [ -75.103167, 39.982331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "LOCATION_NAME": "Guzman Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010177023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 121.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 11.29 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-gkz", "LOCATION_NAME": "Ristorante Aroma", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944903, "LONGITUDE": -75.160742, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 945.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.28, "MEDIAN_SPEND_PER_CUSTOMER": 98.28 }, "geometry": { "type": "Point", "coordinates": [ -75.160742, 39.944903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgd-z9f", "LOCATION_NAME": "UrHomeInPhilly", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.956628, "LONGITUDE": -75.194459, "DATE_RANGE_START": 2019, "Total Visits": 12156.0, "Total Visitors": 6523.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 84.0, "Total Spend": 440.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 35.39 }, "geometry": { "type": "Point", "coordinates": [ -75.194459, 39.956628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw4-q75", "LOCATION_NAME": "Aloft Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.891128, "LONGITUDE": -75.233821, "DATE_RANGE_START": 2019, "Total Visits": 1486.0, "Total Visitors": 993.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 286.0, "Total Spend": 1350.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 190.05, "MEDIAN_SPEND_PER_CUSTOMER": 190.05 }, "geometry": { "type": "Point", "coordinates": [ -75.233821, 39.891128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "LOCATION_NAME": "1 Tippling Place", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2019, "Total Visits": 197.0, "Total Visitors": 125.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 240.0, "Total Spend": 3424.0, "Total Transactions": 85.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-nwk", "LOCATION_NAME": "One Pound Cheesesteaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989593, "LONGITUDE": -75.125509, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 163.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 87.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125509, 39.989593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-jsq", "LOCATION_NAME": "Rione", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951947, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 75.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3286.0, "Total Transactions": 267.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 11.58 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.951947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmb-dy9", "LOCATION_NAME": "Dante & Luigi's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940085, "LONGITUDE": -75.159485, "DATE_RANGE_START": 2019, "Total Visits": 190.0, "Total Visitors": 102.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 234.0, "Total Spend": 769.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 122.5, "MEDIAN_SPEND_PER_CUSTOMER": 122.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159485, 39.940085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-f9f", "LOCATION_NAME": "Dimension Latin Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052647, "LONGITUDE": -75.065236, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 102.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 43.0, "Total Spend": 2730.0, "Total Transactions": 70.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.64, "MEDIAN_SPEND_PER_CUSTOMER": 45.32 }, "geometry": { "type": "Point", "coordinates": [ -75.065236, 40.052647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-2zf", "LOCATION_NAME": "Asia Mix Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103233, "LONGITUDE": -75.010226, "DATE_RANGE_START": 2019, "Total Visits": 781.0, "Total Visitors": 636.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 291.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.33, "MEDIAN_SPEND_PER_CUSTOMER": 45.33 }, "geometry": { "type": "Point", "coordinates": [ -75.010226, 40.103233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-7h5", "LOCATION_NAME": "Estia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948448, "LONGITUDE": -75.165269, "DATE_RANGE_START": 2019, "Total Visits": 835.0, "Total Visitors": 570.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 84.0, "Total Spend": 12225.0, "Total Transactions": 110.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.4, "MEDIAN_SPEND_PER_CUSTOMER": 93.01 }, "geometry": { "type": "Point", "coordinates": [ -75.165269, 39.948448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj2-7bk", "LOCATION_NAME": "Pizza House Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.997808, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2019, "Total Visits": 341.0, "Total Visitors": 175.0, "POI_CBG": 421010177023.0, "MEDIAN_DWELL": 98.0, "Total Spend": 479.0, "Total Transactions": 32.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.19, "MEDIAN_SPEND_PER_CUSTOMER": 12.19 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.997808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pm9-wc5", "LOCATION_NAME": "Rebel Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949731, "LONGITUDE": -75.148051, "DATE_RANGE_START": 2019, "Total Visits": 8470.0, "Total Visitors": 6511.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 7519.0, "Total Transactions": 541.0, "Total Customers": 408.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 14.39 }, "geometry": { "type": "Point", "coordinates": [ -75.148051, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "LOCATION_NAME": "Checkers Drive-In Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 85.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 3052.0, "Total Transactions": 301.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032699, "LONGITUDE": -75.063191, "DATE_RANGE_START": 2019, "Total Visits": 785.0, "Total Visitors": 618.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1868.0, "Total Transactions": 137.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.39, "MEDIAN_SPEND_PER_CUSTOMER": 15.69 }, "geometry": { "type": "Point", "coordinates": [ -75.063191, 40.032699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-hh5", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951987, "LONGITUDE": -75.171121, "DATE_RANGE_START": 2019, "Total Visits": 1832.0, "Total Visitors": 1143.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 131.0, "Total Spend": 394.0, "Total Transactions": 25.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.1, "MEDIAN_SPEND_PER_CUSTOMER": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171121, 39.951987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919412, "LONGITUDE": -75.187304, "DATE_RANGE_START": 2019, "Total Visits": 1964.0, "Total Visitors": 1321.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 15434.0, "Total Transactions": 1632.0, "Total Customers": 1088.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.12, "MEDIAN_SPEND_PER_CUSTOMER": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.187304, 39.919412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2019, "Total Visits": 771.0, "Total Visitors": 556.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6221.0, "Total Transactions": 1001.0, "Total Customers": 623.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.07, "MEDIAN_SPEND_PER_CUSTOMER": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-wx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950748, "LONGITUDE": -75.151909, "DATE_RANGE_START": 2019, "Total Visits": 465.0, "Total Visitors": 410.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5525.0, "Total Transactions": 1338.0, "Total Customers": 505.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.66, "MEDIAN_SPEND_PER_CUSTOMER": 6.03 }, "geometry": { "type": "Point", "coordinates": [ -75.151909, 39.950748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-kj9", "LOCATION_NAME": "The Pleasure Chest", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950864, "LONGITUDE": -75.175215, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 60.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 385.0, "Total Spend": 856.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.02, "MEDIAN_SPEND_PER_CUSTOMER": 62.02 }, "geometry": { "type": "Point", "coordinates": [ -75.175215, 39.950864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dtm-v75", "LOCATION_NAME": "Delta Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.873088, "LONGITUDE": -75.27466, "DATE_RANGE_START": 2019, "Total Visits": 2545.0, "Total Visitors": 1637.0, "POI_CBG": 420454037012.0, "MEDIAN_DWELL": 287.0, "Total Spend": 4299.0, "Total Transactions": 77.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27466, 39.873088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-td9", "LOCATION_NAME": "Watkins Drinkery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927952, "LONGITUDE": -75.162075, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 37.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 89.0, "Total Spend": 9915.0, "Total Transactions": 253.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.95, "MEDIAN_SPEND_PER_CUSTOMER": 51.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162075, 39.927952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "LOCATION_NAME": "The Beer Peddlers", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 67.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 15120.0, "Total Transactions": 508.0, "Total Customers": 395.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.021127, "LONGITUDE": -75.149781, "DATE_RANGE_START": 2019, "Total Visits": 994.0, "Total Visitors": 713.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3216.0, "Total Transactions": 103.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.32, "MEDIAN_SPEND_PER_CUSTOMER": 24.14 }, "geometry": { "type": "Point", "coordinates": [ -75.149781, 40.021127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "LOCATION_NAME": "South Square Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2019, "Total Visits": 483.0, "Total Visitors": 360.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 7.0, "Total Spend": 66912.0, "Total Transactions": 2955.0, "Total Customers": 1228.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.98, "MEDIAN_SPEND_PER_CUSTOMER": 27.75 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2019, "Total Visits": 405.0, "Total Visitors": 267.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2274.0, "Total Transactions": 205.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.45, "MEDIAN_SPEND_PER_CUSTOMER": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-7qz", "LOCATION_NAME": "Wax Downtown", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948559, "LONGITUDE": -75.153964, "DATE_RANGE_START": 2019, "Total Visits": 5045.0, "Total Visitors": 3227.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 99.0, "Total Spend": 427.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153964, 39.948559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2019, "Total Visits": 721.0, "Total Visitors": 528.0, "POI_CBG": 421010275001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2781.0, "Total Transactions": 148.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.04, "MEDIAN_SPEND_PER_CUSTOMER": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.913456, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 93.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5219.0, "Total Transactions": 155.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.043988, "LONGITUDE": -75.054077, "DATE_RANGE_START": 2019, "Total Visits": 6946.0, "Total Visitors": 4934.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 892.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.054077, 40.043988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmb-rp9", "LOCATION_NAME": "Recess Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947601, "LONGITUDE": -75.143229, "DATE_RANGE_START": 2019, "Total Visits": 2002.0, "Total Visitors": 1378.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 37.0, "Total Spend": 9640.0, "Total Transactions": 153.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.18, "MEDIAN_SPEND_PER_CUSTOMER": 46.16 }, "geometry": { "type": "Point", "coordinates": [ -75.143229, 39.947601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-66k", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.049027, "LONGITUDE": -75.060408, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 235.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9421.0, "Total Transactions": 167.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.83, "MEDIAN_SPEND_PER_CUSTOMER": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.060408, 40.049027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgh-6ff", "LOCATION_NAME": "Lou & Choo's Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011812, "LONGITUDE": -75.163369, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 238.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 57.0, "Total Spend": 1557.0, "Total Transactions": 52.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163369, 40.011812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg8-ks5", "LOCATION_NAME": "SPOT Gourmet Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974624, "LONGITUDE": -75.182611, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 22.0, "Total Spend": 364.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.44, "MEDIAN_SPEND_PER_CUSTOMER": 27.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.974624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012134, "LONGITUDE": -75.088896, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 273.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1767.0, "Total Transactions": 198.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.088896, 40.012134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034612, "LONGITUDE": -75.175438, "DATE_RANGE_START": 2019, "Total Visits": 3793.0, "Total Visitors": 2379.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 1205.0, "Total Transactions": 135.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.175438, 40.034612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "LOCATION_NAME": "China Gate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2019, "Total Visits": 926.0, "Total Visitors": 620.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1201.0, "Total Transactions": 57.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.93, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-7qz", "LOCATION_NAME": "Vedge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947987, "LONGITUDE": -75.161387, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 158.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 34.0, "Total Spend": 25739.0, "Total Transactions": 228.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.16, "MEDIAN_SPEND_PER_CUSTOMER": 107.48 }, "geometry": { "type": "Point", "coordinates": [ -75.161387, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "LOCATION_NAME": "A Lin Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 10.0, "Total Spend": 519.0, "Total Transactions": 28.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.55, "MEDIAN_SPEND_PER_CUSTOMER": 19.38 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmd-vfz", "LOCATION_NAME": "Tsuki Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951096, "LONGITUDE": -75.177135, "DATE_RANGE_START": 2019, "Total Visits": 345.0, "Total Visitors": 308.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2039.0, "Total Transactions": 77.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.48, "MEDIAN_SPEND_PER_CUSTOMER": 23.01 }, "geometry": { "type": "Point", "coordinates": [ -75.177135, 39.951096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-6ff", "LOCATION_NAME": "R & R Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.047175, "LONGITUDE": -75.05967, "DATE_RANGE_START": 2019, "Total Visits": 451.0, "Total Visitors": 396.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1116.0, "Total Transactions": 87.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.1, "MEDIAN_SPEND_PER_CUSTOMER": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.05967, 40.047175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "LOCATION_NAME": "Wilson's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2019, "Total Visits": 598.0, "Total Visitors": 480.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 150.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.58, "MEDIAN_SPEND_PER_CUSTOMER": 10.84 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2019, "Total Visits": 638.0, "Total Visitors": 475.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 121.0, "Total Spend": 5835.0, "Total Transactions": 508.0, "Total Customers": 396.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.7, "MEDIAN_SPEND_PER_CUSTOMER": 11.35 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pj3-wff", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.024012, "LONGITUDE": -75.148537, "DATE_RANGE_START": 2019, "Total Visits": 450.0, "Total Visitors": 366.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2262.0, "Total Transactions": 123.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.29, "MEDIAN_SPEND_PER_CUSTOMER": 15.28 }, "geometry": { "type": "Point", "coordinates": [ -75.148537, 40.024012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.95427, "LONGITUDE": -75.201494, "DATE_RANGE_START": 2019, "Total Visits": 4927.0, "Total Visitors": 2958.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 83.0, "Total Spend": 23905.0, "Total Transactions": 1574.0, "Total Customers": 755.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.18, "MEDIAN_SPEND_PER_CUSTOMER": 20.29 }, "geometry": { "type": "Point", "coordinates": [ -75.201494, 39.95427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-xyv", "LOCATION_NAME": "M S Mart", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.95623, "LONGITUDE": -75.155785, "DATE_RANGE_START": 2019, "Total Visits": 3835.0, "Total Visitors": 2537.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 123.0, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.8, "MEDIAN_SPEND_PER_CUSTOMER": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155785, 39.95623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2019, "Total Visits": 282.0, "Total Visitors": 257.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1797.0, "Total Transactions": 38.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.08, "MEDIAN_SPEND_PER_CUSTOMER": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-w8v", "LOCATION_NAME": "Aéropostale", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.086851, "LONGITUDE": -74.962597, "DATE_RANGE_START": 2019, "Total Visits": 212.0, "Total Visitors": 208.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1853.0, "Total Transactions": 47.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.02, "MEDIAN_SPEND_PER_CUSTOMER": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962597, 40.086851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p8j-6hq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026851, "LONGITUDE": -75.028938, "DATE_RANGE_START": 2019, "Total Visits": 976.0, "Total Visitors": 786.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 638.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.22, "MEDIAN_SPEND_PER_CUSTOMER": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.028938, 40.026851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "LOCATION_NAME": "Neighborhood Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2019, "Total Visits": 631.0, "Total Visitors": 403.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 201.0, "Total Spend": 859.0, "Total Transactions": 57.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.93, "MEDIAN_SPEND_PER_CUSTOMER": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y7q", "LOCATION_NAME": "Day N Nite", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.954252, "LONGITUDE": -75.1549, "DATE_RANGE_START": 2019, "Total Visits": 6866.0, "Total Visitors": 4814.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 4348.0, "Total Transactions": 83.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.63, "MEDIAN_SPEND_PER_CUSTOMER": 43.98 }, "geometry": { "type": "Point", "coordinates": [ -75.1549, 39.954252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm9-whq", "LOCATION_NAME": "Old City Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949756, "LONGITUDE": -75.145531, "DATE_RANGE_START": 2019, "Total Visits": 2119.0, "Total Visitors": 1621.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 3289.0, "Total Transactions": 180.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.13, "MEDIAN_SPEND_PER_CUSTOMER": 17.97 }, "geometry": { "type": "Point", "coordinates": [ -75.145531, 39.949756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7v-fmk", "LOCATION_NAME": "Ernie's Original Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054659, "LONGITUDE": -75.072746, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 120.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 184.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.6, "MEDIAN_SPEND_PER_CUSTOMER": 26.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072746, 40.054659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2019, "Total Visits": 481.0, "Total Visitors": 396.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 10760.0, "Total Transactions": 1339.0, "Total Customers": 978.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 8.88 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-hkf", "LOCATION_NAME": "The Coventry Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953273, "LONGITUDE": -75.173676, "DATE_RANGE_START": 2019, "Total Visits": 7013.0, "Total Visitors": 3256.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 380.0, "Total Spend": 14903.0, "Total Transactions": 1727.0, "Total Customers": 655.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.91, "MEDIAN_SPEND_PER_CUSTOMER": 13.38 }, "geometry": { "type": "Point", "coordinates": [ -75.173676, 39.953273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pj2-d35", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.010891, "LONGITUDE": -75.107156, "DATE_RANGE_START": 2019, "Total Visits": 370.0, "Total Visitors": 245.0, "POI_CBG": 421010191006.0, "MEDIAN_DWELL": 24.0, "Total Spend": 3048.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107156, 40.010891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-j5f", "LOCATION_NAME": "Kitchen Kapers", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.949485, "LONGITUDE": -75.169064, "DATE_RANGE_START": 2019, "Total Visits": 596.0, "Total Visitors": 446.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 68.0, "Total Spend": 2431.0, "Total Transactions": 72.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.1, "MEDIAN_SPEND_PER_CUSTOMER": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169064, 39.949485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "LOCATION_NAME": "Fairmart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 53.0, "POI_CBG": 421010131001.0, "MEDIAN_DWELL": 179.0, "Total Spend": 2238.0, "Total Transactions": 273.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.77, "MEDIAN_SPEND_PER_CUSTOMER": 11.83 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2019, "Total Visits": 878.0, "Total Visitors": 593.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7752.0, "Total Transactions": 513.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.85, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pjk-3bk", "LOCATION_NAME": "Posh", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.068847, "LONGITUDE": -75.240209, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 67.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1234.0, "Total Transactions": 28.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240209, 40.068847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.91807, "LONGITUDE": -75.17894, "DATE_RANGE_START": 2019, "Total Visits": 1737.0, "Total Visitors": 1143.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 430.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17894, 39.91807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8v-b8v", "LOCATION_NAME": "Sam's Club Fuel Center", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.091819, "LONGITUDE": -74.963857, "DATE_RANGE_START": 2019, "Total Visits": 2780.0, "Total Visitors": 1724.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1446.0, "Total Transactions": 37.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.13, "MEDIAN_SPEND_PER_CUSTOMER": 143.19 }, "geometry": { "type": "Point", "coordinates": [ -74.963857, 40.091819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.068237, "LONGITUDE": -75.156911, "DATE_RANGE_START": 2019, "Total Visits": 3250.0, "Total Visitors": 2047.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1103.0, "Total Transactions": 57.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.74, "MEDIAN_SPEND_PER_CUSTOMER": 15.69 }, "geometry": { "type": "Point", "coordinates": [ -75.156911, 40.068237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8j-cyv", "LOCATION_NAME": "Apex Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.035775, "LONGITUDE": -75.04334, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 55.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 331.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.5, "MEDIAN_SPEND_PER_CUSTOMER": 99.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04334, 40.035775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.074794, "LONGITUDE": -75.032684, "DATE_RANGE_START": 2019, "Total Visits": 1294.0, "Total Visitors": 1088.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2598.0, "Total Transactions": 292.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032684, 40.074794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm5-fj9", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.913638, "LONGITUDE": -75.149864, "DATE_RANGE_START": 2019, "Total Visits": 275.0, "Total Visitors": 258.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3178.0, "Total Transactions": 133.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.88, "MEDIAN_SPEND_PER_CUSTOMER": 17.64 }, "geometry": { "type": "Point", "coordinates": [ -75.149864, 39.913638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mx5", "LOCATION_NAME": "Jos. A. Bank Clothiers", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952606, "LONGITUDE": -75.168302, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 102.0, "Total Spend": 8436.0, "Total Transactions": 55.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.0, "MEDIAN_SPEND_PER_CUSTOMER": 99.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168302, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-wkz", "LOCATION_NAME": "rue21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088728, "LONGITUDE": -74.961198, "DATE_RANGE_START": 2019, "Total Visits": 460.0, "Total Visitors": 446.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 452449.0, "Total Transactions": 10031.0, "Total Customers": 8983.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.98, "MEDIAN_SPEND_PER_CUSTOMER": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -74.961198, 40.088728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-jjv", "LOCATION_NAME": "Blue Sole Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951916, "LONGITUDE": -75.17056, "DATE_RANGE_START": 2019, "Total Visits": 720.0, "Total Visitors": 568.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 42.0, "Total Spend": 2390.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 365.0, "MEDIAN_SPEND_PER_CUSTOMER": 365.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17056, 39.951916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "LOCATION_NAME": "Roses Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2019, "Total Visits": 979.0, "Total Visitors": 691.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 264.0, "Total Spend": 720.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "LOCATION_NAME": "Menagerie Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 127.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 9789.0, "Total Transactions": 1537.0, "Total Customers": 958.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.25, "MEDIAN_SPEND_PER_CUSTOMER": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "LOCATION_NAME": "Street Side", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 35.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 78.0, "Total Spend": 3417.0, "Total Transactions": 157.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.03, "MEDIAN_SPEND_PER_CUSTOMER": 22.06 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.028739, "LONGITUDE": -75.099173, "DATE_RANGE_START": 2019, "Total Visits": 2750.0, "Total Visitors": 2334.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 13733.0, "Total Transactions": 821.0, "Total Customers": 705.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.099173, 40.028739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-9fz", "LOCATION_NAME": "D M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979141, "LONGITUDE": -75.171311, "DATE_RANGE_START": 2019, "Total Visits": 92.0, "Total Visitors": 72.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 462.0, "Total Transactions": 62.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.171311, 39.979141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@63s-dvr-hdv", "LOCATION_NAME": "A&e Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.922107, "LONGITUDE": -75.227751, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010067003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 176.0, "Total Transactions": 20.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 13.71 }, "geometry": { "type": "Point", "coordinates": [ -75.227751, 39.922107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 67.0, "POI_CBG": 421010149005.0, "MEDIAN_DWELL": 467.0, "Total Spend": 283.0, "Total Transactions": 33.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.79, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm9-5cq", "LOCATION_NAME": "Friends Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.91628, "LONGITUDE": -75.165627, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 67.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 53.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.23, "MEDIAN_SPEND_PER_CUSTOMER": 8.23 }, "geometry": { "type": "Point", "coordinates": [ -75.165627, 39.91628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "LOCATION_NAME": "Green Farm", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2019, "Total Visits": 676.0, "Total Visitors": 481.0, "POI_CBG": 421010357012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8625.0, "Total Transactions": 321.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 26.9 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-gzf", "LOCATION_NAME": "Romano Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.023038, "LONGITUDE": -75.133728, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 105.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1346.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.5, "MEDIAN_SPEND_PER_CUSTOMER": 105.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133728, 40.023038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-jd9", "LOCATION_NAME": "The Body Shop", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952033, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2019, "Total Visits": 571.0, "Total Visitors": 468.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5747.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 975.0, "MEDIAN_SPEND_PER_CUSTOMER": 975.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.035916, "LONGITUDE": -75.217328, "DATE_RANGE_START": 2019, "Total Visits": 2300.0, "Total Visitors": 1396.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 914.0, "Total Transactions": 42.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.27, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217328, 40.035916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phk-yvz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.054755, "LONGITUDE": -75.125732, "DATE_RANGE_START": 2019, "Total Visits": 2229.0, "Total Visitors": 1386.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 664.0, "Total Transactions": 27.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.94, "MEDIAN_SPEND_PER_CUSTOMER": 21.16 }, "geometry": { "type": "Point", "coordinates": [ -75.125732, 40.054755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.912374, "LONGITUDE": -75.156918, "DATE_RANGE_START": 2019, "Total Visits": 2937.0, "Total Visitors": 2349.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 25.0, "Total Spend": 4679.0, "Total Transactions": 108.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.97, "MEDIAN_SPEND_PER_CUSTOMER": 31.71 }, "geometry": { "type": "Point", "coordinates": [ -75.156918, 39.912374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-jjv", "LOCATION_NAME": "Allen Edmonds", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.9515, "LONGITUDE": -75.170237, "DATE_RANGE_START": 2019, "Total Visits": 1154.0, "Total Visitors": 969.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2448.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 129.0, "MEDIAN_SPEND_PER_CUSTOMER": 129.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170237, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2019, "Total Visits": 1119.0, "Total Visitors": 723.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 62.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 5.38 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-ph6-9mk", "LOCATION_NAME": "Amatullah's Treasures", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.97541, "LONGITUDE": -75.246023, "DATE_RANGE_START": 2019, "Total Visits": 200.0, "Total Visitors": 102.0, "POI_CBG": 421010114001.0, "MEDIAN_DWELL": 801.0, "Total Spend": 167.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246023, 39.97541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035458, "LONGITUDE": -75.049099, "DATE_RANGE_START": 2019, "Total Visits": 505.0, "Total Visitors": 316.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7068.0, "Total Transactions": 255.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.42, "MEDIAN_SPEND_PER_CUSTOMER": 35.48 }, "geometry": { "type": "Point", "coordinates": [ -75.049099, 40.035458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj8-qj9", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.032177, "LONGITUDE": -75.103052, "DATE_RANGE_START": 2019, "Total Visits": 641.0, "Total Visitors": 578.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 208.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.45, "MEDIAN_SPEND_PER_CUSTOMER": 62.45 }, "geometry": { "type": "Point", "coordinates": [ -75.103052, 40.032177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926446, "LONGITUDE": -75.145402, "DATE_RANGE_START": 2019, "Total Visits": 1126.0, "Total Visitors": 883.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 67872.0, "Total Transactions": 7064.0, "Total Customers": 3821.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.07, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phq-k75", "LOCATION_NAME": "Rodriguez Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.057192, "LONGITUDE": -75.148867, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 122.0, "POI_CBG": 421010267007.0, "MEDIAN_DWELL": 3.0, "Total Spend": 393.0, "Total Transactions": 58.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.148867, 40.057192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2019, "Total Visits": 1408.0, "Total Visitors": 870.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 33030.0, "Total Transactions": 2195.0, "Total Customers": 983.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.15, "MEDIAN_SPEND_PER_CUSTOMER": 13.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "LOCATION_NAME": "Repo Records", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2019, "Total Visits": 2524.0, "Total Visitors": 1936.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 10508.0, "Total Transactions": 298.0, "Total Customers": 277.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2019, "Total Visits": 4877.0, "Total Visitors": 2655.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 43599.0, "Total Transactions": 1031.0, "Total Customers": 581.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.64, "MEDIAN_SPEND_PER_CUSTOMER": 41.9 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "LOCATION_NAME": "Trader Joe's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954199, "LONGITUDE": -75.176054, "DATE_RANGE_START": 2019, "Total Visits": 3017.0, "Total Visitors": 2170.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 717665.0, "Total Transactions": 16532.0, "Total Customers": 8882.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.07, "MEDIAN_SPEND_PER_CUSTOMER": 56.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176054, 39.954199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-g49", "LOCATION_NAME": "Ham Bone", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.977503, "LONGITUDE": -75.13156, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 148.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6247.0, "Total Transactions": 155.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.54, "MEDIAN_SPEND_PER_CUSTOMER": 35.68 }, "geometry": { "type": "Point", "coordinates": [ -75.13156, 39.977503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "LOCATION_NAME": "Ruckus Gallery", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2019, "Total Visits": 1136.0, "Total Visitors": 840.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 121.0, "Total Spend": 12578.0, "Total Transactions": 260.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.49, "MEDIAN_SPEND_PER_CUSTOMER": 41.19 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2019, "Total Visits": 3238.0, "Total Visitors": 2349.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 9.0, "Total Spend": 10706.0, "Total Transactions": 596.0, "Total Customers": 356.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.09 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-33q", "LOCATION_NAME": "Capital Auto Auction", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.025317, "LONGITUDE": -75.026634, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 125.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 88.0, "Total Spend": 100.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.026634, 40.025317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031206, "LONGITUDE": -75.124676, "DATE_RANGE_START": 2019, "Total Visits": 1171.0, "Total Visitors": 766.0, "POI_CBG": 421010286005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 472.0, "Total Transactions": 22.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.19, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124676, 40.031206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2019, "Total Visits": 2732.0, "Total Visitors": 1751.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 15.0, "Total Spend": 139712.0, "Total Transactions": 3470.0, "Total Customers": 1552.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.31, "MEDIAN_SPEND_PER_CUSTOMER": 48.89 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@63s-dvy-xwk", "LOCATION_NAME": "Lil' Pop Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953164, "LONGITUDE": -75.210265, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1644.0, "Total Transactions": 185.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.83, "MEDIAN_SPEND_PER_CUSTOMER": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.210265, 39.953164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pm9-yn5", "LOCATION_NAME": "Marsh Mane", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.941856, "LONGITUDE": -75.148769, "DATE_RANGE_START": 2019, "Total Visits": 3335.0, "Total Visitors": 2748.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 21.0, "Total Spend": 96.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.8, "MEDIAN_SPEND_PER_CUSTOMER": 28.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148769, 39.941856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-7bk", "LOCATION_NAME": "VIP Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.94892, "LONGITUDE": -75.162809, "DATE_RANGE_START": 2019, "Total Visits": 610.0, "Total Visitors": 403.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 149.0, "Total Spend": 26052.0, "Total Transactions": 1772.0, "Total Customers": 968.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.09, "MEDIAN_SPEND_PER_CUSTOMER": 15.84 }, "geometry": { "type": "Point", "coordinates": [ -75.162809, 39.94892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvr-gtv", "LOCATION_NAME": "Jo Jo's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926055, "LONGITUDE": -75.227662, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 30.0, "POI_CBG": 421010067005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 755.0, "Total Transactions": 67.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.13, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227662, 39.926055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "LOCATION_NAME": "Philadelphia Bikesmith", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.962935, "LONGITUDE": -75.169326, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 32.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 339.0, "Total Spend": 12989.0, "Total Transactions": 135.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.7, "MEDIAN_SPEND_PER_CUSTOMER": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169326, 39.962935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.912498, "LONGITUDE": -75.15633, "DATE_RANGE_START": 2019, "Total Visits": 2707.0, "Total Visitors": 2097.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 23.0, "Total Spend": 4930.0, "Total Transactions": 122.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.37, "MEDIAN_SPEND_PER_CUSTOMER": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.15633, 39.912498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.04687, "LONGITUDE": -75.054304, "DATE_RANGE_START": 2019, "Total Visits": 3788.0, "Total Visitors": 2983.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 22.0, "Total Spend": 12624.0, "Total Transactions": 137.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.38, "MEDIAN_SPEND_PER_CUSTOMER": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -75.054304, 40.04687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 35.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8686.0, "Total Transactions": 393.0, "Total Customers": 285.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.93, "MEDIAN_SPEND_PER_CUSTOMER": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.993791, "LONGITUDE": -75.155151, "DATE_RANGE_START": 2019, "Total Visits": 2732.0, "Total Visitors": 1992.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 832.0, "Total Transactions": 35.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -75.155151, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044581, "LONGITUDE": -75.086995, "DATE_RANGE_START": 2019, "Total Visits": 1151.0, "Total Visitors": 904.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 398.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 24.29 }, "geometry": { "type": "Point", "coordinates": [ -75.086995, 40.044581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.044593, "LONGITUDE": -75.101222, "DATE_RANGE_START": 2019, "Total Visits": 321.0, "Total Visitors": 220.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 6.0, "Total Spend": 931.0, "Total Transactions": 67.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.94, "MEDIAN_SPEND_PER_CUSTOMER": 16.07 }, "geometry": { "type": "Point", "coordinates": [ -75.101222, 40.044593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "LOCATION_NAME": "Frame Fatale", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2019, "Total Visits": 1061.0, "Total Visitors": 766.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 45.0, "Total Spend": 2184.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.32, "MEDIAN_SPEND_PER_CUSTOMER": 71.37 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pj6-k4v", "LOCATION_NAME": "H Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.044993, "LONGITUDE": -75.117488, "DATE_RANGE_START": 2019, "Total Visits": 1204.0, "Total Visitors": 813.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 47081.0, "Total Transactions": 4354.0, "Total Customers": 3740.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.04, "MEDIAN_SPEND_PER_CUSTOMER": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.117488, 40.044993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-zj9", "LOCATION_NAME": "Pantry I Food Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013698, "LONGITUDE": -75.069042, "DATE_RANGE_START": 2019, "Total Visits": 515.0, "Total Visitors": 321.0, "POI_CBG": 421010298005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 802.0, "Total Transactions": 82.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.99, "MEDIAN_SPEND_PER_CUSTOMER": 11.14 }, "geometry": { "type": "Point", "coordinates": [ -75.069042, 40.013698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-btv", "LOCATION_NAME": "Ridge Gas & Minimart", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.980802, "LONGITUDE": -75.173001, "DATE_RANGE_START": 2019, "Total Visits": 336.0, "Total Visitors": 262.0, "POI_CBG": 421010149001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1463.0, "Total Transactions": 98.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173001, 39.980802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pp5-ht9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.983672, "LONGITUDE": -75.115989, "DATE_RANGE_START": 2019, "Total Visits": 953.0, "Total Visitors": 606.0, "POI_CBG": 421010179005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 343.0, "Total Transactions": 18.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.27, "MEDIAN_SPEND_PER_CUSTOMER": 28.84 }, "geometry": { "type": "Point", "coordinates": [ -75.115989, 39.983672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pgb-7t9", "LOCATION_NAME": "Plants Etc", "TOP_CATEGORY": "Florists", "LATITUDE": 39.967525, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 705.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.967525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "LOCATION_NAME": "Uncle Oogie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 232.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.57, "MEDIAN_SPEND_PER_CUSTOMER": 15.57 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-hdv", "LOCATION_NAME": "Miss Rachel's Pantry", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 39.926531, "LONGITUDE": -75.173779, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 7.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 9.0, "Total Spend": 146.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.16, "MEDIAN_SPEND_PER_CUSTOMER": 11.16 }, "geometry": { "type": "Point", "coordinates": [ -75.173779, 39.926531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phc-pd9", "LOCATION_NAME": "Bala Inn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.000031, "LONGITUDE": -75.228413, "DATE_RANGE_START": 2019, "Total Visits": 743.0, "Total Visitors": 568.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 54.0, "Total Spend": 2688.0, "Total Transactions": 108.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228413, 40.000031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-mff", "LOCATION_NAME": "Con Murphy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955696, "LONGITUDE": -75.167996, "DATE_RANGE_START": 2019, "Total Visits": 326.0, "Total Visitors": 258.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 22297.0, "Total Transactions": 481.0, "Total Customers": 406.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.05, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167996, 39.955696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "LOCATION_NAME": "Vietnam Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2019, "Total Visits": 288.0, "Total Visitors": 235.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 42.0, "Total Spend": 14809.0, "Total Transactions": 353.0, "Total Customers": 306.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.92, "MEDIAN_SPEND_PER_CUSTOMER": 36.13 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "LOCATION_NAME": "Charley's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2019, "Total Visits": 886.0, "Total Visitors": 771.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4769.0, "Total Transactions": 313.0, "Total Customers": 292.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.26, "MEDIAN_SPEND_PER_CUSTOMER": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-5s5", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049399, "LONGITUDE": -75.061192, "DATE_RANGE_START": 2019, "Total Visits": 1091.0, "Total Visitors": 840.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 5504.0, "Total Transactions": 463.0, "Total Customers": 410.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.061192, 40.049399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "LOCATION_NAME": "CAVA", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95186, "LONGITUDE": -75.16924, "DATE_RANGE_START": 2019, "Total Visits": 2284.0, "Total Visitors": 1857.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 22.0, "Total Spend": 26759.0, "Total Transactions": 2129.0, "Total Customers": 1554.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.66, "MEDIAN_SPEND_PER_CUSTOMER": 12.23 }, "geometry": { "type": "Point", "coordinates": [ -75.16924, 39.95186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-t9z", "LOCATION_NAME": "Last Drop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945156, "LONGITUDE": -75.163064, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 531.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 132.0, "Total Transactions": 15.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.67, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163064, 39.945156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-qpv", "LOCATION_NAME": "New York Bagel Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97966, "LONGITUDE": -75.268066, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 528.0, "POI_CBG": 421010098011.0, "MEDIAN_DWELL": 29.0, "Total Spend": 12312.0, "Total Transactions": 411.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.1, "MEDIAN_SPEND_PER_CUSTOMER": 25.4 }, "geometry": { "type": "Point", "coordinates": [ -75.268066, 39.97966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952204, "LONGITUDE": -75.166371, "DATE_RANGE_START": 2019, "Total Visits": 23448.0, "Total Visitors": 11995.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 225.0, "Total Spend": 6373.0, "Total Transactions": 1404.0, "Total Customers": 613.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.08, "MEDIAN_SPEND_PER_CUSTOMER": 5.59 }, "geometry": { "type": "Point", "coordinates": [ -75.166371, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "LOCATION_NAME": "Philly's Famous Italian Ices", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 48.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 63.0, "Total Spend": 1109.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-yvz", "LOCATION_NAME": "Hong Kong Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9915, "LONGITUDE": -75.15937, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 13.0, "POI_CBG": 421010167022.0, "MEDIAN_DWELL": 534.0, "Total Spend": 16.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.67, "MEDIAN_SPEND_PER_CUSTOMER": 4.67 }, "geometry": { "type": "Point", "coordinates": [ -75.15937, 39.9915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pjg-2ff", "LOCATION_NAME": "ESF Camps Chestnut Hill", "TOP_CATEGORY": "RV (Recreational Vehicle) Parks and Recreational Camps", "LATITUDE": 40.080429, "LONGITUDE": -75.215544, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 28.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 514.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.09, "MEDIAN_SPEND_PER_CUSTOMER": 5.76 }, "geometry": { "type": "Point", "coordinates": [ -75.215544, 40.080429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-k75", "LOCATION_NAME": "Lendy's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.988027, "LONGITUDE": -75.143801, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 13.0, "POI_CBG": 421010164004.0, "MEDIAN_DWELL": 214.0, "Total Spend": 133.0, "Total Transactions": 22.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.143801, 39.988027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-ph6-q4v", "LOCATION_NAME": "Lucky Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976559, "LONGITUDE": -75.232622, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 13.0, "POI_CBG": 421010112007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 81.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.232622, 39.976559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-jjv", "LOCATION_NAME": "Hakim's Bookstore", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.95665, "LONGITUDE": -75.225827, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 25.0, "POI_CBG": 421010085006.0, "MEDIAN_DWELL": 59.0, "Total Spend": 1281.0, "Total Transactions": 142.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.16, "MEDIAN_SPEND_PER_CUSTOMER": 5.58 }, "geometry": { "type": "Point", "coordinates": [ -75.225827, 39.95665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgg-p5f", "LOCATION_NAME": "Mimmo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004649, "LONGITUDE": -75.17882, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010171004.0, "MEDIAN_DWELL": 271.0, "Total Spend": 1211.0, "Total Transactions": 70.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.61, "MEDIAN_SPEND_PER_CUSTOMER": 18.71 }, "geometry": { "type": "Point", "coordinates": [ -75.17882, 40.004649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pg8-jjv", "LOCATION_NAME": "Deborah's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97383, "LONGITUDE": -75.179259, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 251.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.179259, 39.97383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7v-f2k", "LOCATION_NAME": "Bob's Discount Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.051318, "LONGITUDE": -75.065293, "DATE_RANGE_START": 2019, "Total Visits": 3908.0, "Total Visitors": 2923.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 10568.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 386.65, "MEDIAN_SPEND_PER_CUSTOMER": 493.06 }, "geometry": { "type": "Point", "coordinates": [ -75.065293, 40.051318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-g8v", "LOCATION_NAME": "Khaamar Baari Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046044, "LONGITUDE": -75.070773, "DATE_RANGE_START": 2019, "Total Visits": 120.0, "Total Visitors": 88.0, "POI_CBG": 421010314015.0, "MEDIAN_DWELL": 7.0, "Total Spend": 519.0, "Total Transactions": 18.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 50.34 }, "geometry": { "type": "Point", "coordinates": [ -75.070773, 40.046044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pj8-tgk", "LOCATION_NAME": "New Ben City Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035691, "LONGITUDE": -75.100546, "DATE_RANGE_START": 2019, "Total Visits": 1294.0, "Total Visitors": 796.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 818.0, "Total Transactions": 103.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.29, "MEDIAN_SPEND_PER_CUSTOMER": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.100546, 40.035691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-qfz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.976667, "LONGITUDE": -75.231099, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 125.0, "POI_CBG": 421010112001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1727.0, "Total Transactions": 75.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.05, "MEDIAN_SPEND_PER_CUSTOMER": 37.15 }, "geometry": { "type": "Point", "coordinates": [ -75.231099, 39.976667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951608, "LONGITUDE": -75.168943, "DATE_RANGE_START": 2019, "Total Visits": 1961.0, "Total Visitors": 1709.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1116.0, "Total Transactions": 45.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.62, "MEDIAN_SPEND_PER_CUSTOMER": 25.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168943, 39.951608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-kfz", "LOCATION_NAME": "UrHomeInPhilly", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949546, "LONGITUDE": -75.173863, "DATE_RANGE_START": 2019, "Total Visits": 197.0, "Total Visitors": 150.0, "POI_CBG": 421010008034.0, "MEDIAN_DWELL": 24.0, "Total Spend": 134.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.173863, 39.949546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-skf", "LOCATION_NAME": "Max Brenner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949114, "LONGITUDE": -75.166283, "DATE_RANGE_START": 2019, "Total Visits": 843.0, "Total Visitors": 520.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 99.0, "Total Spend": 1907.0, "Total Transactions": 32.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.26, "MEDIAN_SPEND_PER_CUSTOMER": 43.26 }, "geometry": { "type": "Point", "coordinates": [ -75.166283, 39.949114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "LOCATION_NAME": "Seorabol Korean Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2019, "Total Visits": 425.0, "Total Visitors": 310.0, "POI_CBG": 421010274023.0, "MEDIAN_DWELL": 65.0, "Total Spend": 7748.0, "Total Transactions": 102.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.68, "MEDIAN_SPEND_PER_CUSTOMER": 66.87 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-dd9", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991806, "LONGITUDE": -75.113116, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 50.0, "POI_CBG": 421010178003.0, "MEDIAN_DWELL": 630.0, "Total Spend": 2335.0, "Total Transactions": 143.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.58, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.113116, 39.991806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pp5-k4v", "LOCATION_NAME": "Ho Le Chan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987263, "LONGITUDE": -75.109046, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 73.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 521.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.85 }, "geometry": { "type": "Point", "coordinates": [ -75.109046, 39.987263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "LOCATION_NAME": "Tandoori bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 280.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4452.0, "Total Transactions": 133.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.5, "MEDIAN_SPEND_PER_CUSTOMER": 36.52 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "LOCATION_NAME": "Little Pete's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2019, "Total Visits": 3883.0, "Total Visitors": 2310.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 132.0, "Total Spend": 1331.0, "Total Transactions": 45.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.12, "MEDIAN_SPEND_PER_CUSTOMER": 26.24 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2019, "Total Visits": 793.0, "Total Visitors": 618.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 559.0, "Total Transactions": 45.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.82, "MEDIAN_SPEND_PER_CUSTOMER": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007477, "LONGITUDE": -75.212304, "DATE_RANGE_START": 2019, "Total Visits": 736.0, "Total Visitors": 556.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 23.0, "Total Spend": 30855.0, "Total Transactions": 2404.0, "Total Customers": 1806.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.53 }, "geometry": { "type": "Point", "coordinates": [ -75.212304, 40.007477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 282.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 630.0, "Total Transactions": 55.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.73, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "LOCATION_NAME": "Sweet Creations Unlimited", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.017723, "LONGITUDE": -75.059702, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 25.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 141.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.46, "MEDIAN_SPEND_PER_CUSTOMER": 19.46 }, "geometry": { "type": "Point", "coordinates": [ -75.059702, 40.017723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2019, "Total Visits": 1326.0, "Total Visitors": 951.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 40724.0, "Total Transactions": 1931.0, "Total Customers": 1196.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.97, "MEDIAN_SPEND_PER_CUSTOMER": 27.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-p5f", "LOCATION_NAME": "M & L Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.934764, "LONGITUDE": -75.153674, "DATE_RANGE_START": 2019, "Total Visits": 425.0, "Total Visitors": 350.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2019.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 606.0, "MEDIAN_SPEND_PER_CUSTOMER": 606.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153674, 39.934764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "LOCATION_NAME": "Eyes Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941491, "LONGITUDE": -75.149374, "DATE_RANGE_START": 2019, "Total Visits": 568.0, "Total Visitors": 555.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2850.0, "Total Transactions": 63.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.08, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149374, 39.941491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-p7q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.01382, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2019, "Total Visits": 267.0, "Total Visitors": 172.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1236.0, "Total Transactions": 130.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.15, "MEDIAN_SPEND_PER_CUSTOMER": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 40.01382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "LOCATION_NAME": "Bad Brother", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": null, "Total Spend": 341.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.3, "MEDIAN_SPEND_PER_CUSTOMER": 102.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvq-649", "LOCATION_NAME": "Three Sister Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954366, "LONGITUDE": -75.229741, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 25.0, "POI_CBG": 421010085004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 218.0, "Total Transactions": 22.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.25, "MEDIAN_SPEND_PER_CUSTOMER": 5.25 }, "geometry": { "type": "Point", "coordinates": [ -75.229741, 39.954366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "LOCATION_NAME": "Tokyo Sushi & Catering", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2019, "Total Visits": 13123.0, "Total Visitors": 4982.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 344.0, "Total Spend": 10395.0, "Total Transactions": 820.0, "Total Customers": 525.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947387, "LONGITUDE": -75.16433, "DATE_RANGE_START": 2019, "Total Visits": 7884.0, "Total Visitors": 4358.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 308.0, "Total Spend": 3236.0, "Total Transactions": 486.0, "Total Customers": 345.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 6.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16433, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-ks5", "LOCATION_NAME": "Born Yesterday", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950495, "LONGITUDE": -75.17265, "DATE_RANGE_START": 2019, "Total Visits": 2419.0, "Total Visitors": 1736.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 56.0, "Total Spend": 6977.0, "Total Transactions": 133.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.56, "MEDIAN_SPEND_PER_CUSTOMER": 43.56 }, "geometry": { "type": "Point", "coordinates": [ -75.17265, 39.950495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9t-r6k", "LOCATION_NAME": "Hong Kong Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095743, "LONGITUDE": -74.974916, "DATE_RANGE_START": 2019, "Total Visits": 147.0, "Total Visitors": 103.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1495.0, "Total Transactions": 65.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.2, "MEDIAN_SPEND_PER_CUSTOMER": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -74.974916, 40.095743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979849, "LONGITUDE": -75.269293, "DATE_RANGE_START": 2019, "Total Visits": 811.0, "Total Visitors": 700.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 195.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.269293, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "LOCATION_NAME": "The Love", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2019, "Total Visits": 8022.0, "Total Visitors": 4976.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 101.0, "Total Spend": 43986.0, "Total Transactions": 435.0, "Total Customers": 416.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.72, "MEDIAN_SPEND_PER_CUSTOMER": 83.84 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pmf-jd9", "LOCATION_NAME": "SoBol Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951746, "LONGITUDE": -75.168892, "DATE_RANGE_START": 2019, "Total Visits": 6869.0, "Total Visitors": 5219.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4950.0, "Total Transactions": 441.0, "Total Customers": 396.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.69, "MEDIAN_SPEND_PER_CUSTOMER": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.168892, 39.951746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076409, "LONGITUDE": -75.206721, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 118.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 7480.0, "Total Transactions": 979.0, "Total Customers": 645.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.43, "MEDIAN_SPEND_PER_CUSTOMER": 7.67 }, "geometry": { "type": "Point", "coordinates": [ -75.206721, 40.076409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-ph5-py9", "LOCATION_NAME": "Papp's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982659, "LONGITUDE": -75.241682, "DATE_RANGE_START": 2019, "Total Visits": 92.0, "Total Visitors": 58.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1044.0, "Total Transactions": 113.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 10.21 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.982659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phz-ch5", "LOCATION_NAME": "Cafe Liz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034261, "LONGITUDE": -75.129795, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 102.0, "POI_CBG": 421010274013.0, "MEDIAN_DWELL": 49.0, "Total Spend": 2862.0, "Total Transactions": 47.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.0, "MEDIAN_SPEND_PER_CUSTOMER": 103.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129795, 40.034261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmf-n5z", "LOCATION_NAME": "Di Bruno Bros", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954896, "LONGITUDE": -75.168695, "DATE_RANGE_START": 2019, "Total Visits": 13123.0, "Total Visitors": 4982.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 344.0, "Total Spend": 52241.0, "Total Transactions": 2905.0, "Total Customers": 1971.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.78, "MEDIAN_SPEND_PER_CUSTOMER": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.168695, 39.954896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj4-3qz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017536, "LONGITUDE": -75.148496, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 72.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7167.0, "Total Transactions": 306.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.43, "MEDIAN_SPEND_PER_CUSTOMER": 22.51 }, "geometry": { "type": "Point", "coordinates": [ -75.148496, 40.017536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-3nq", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084019, "LONGITUDE": -74.96509, "DATE_RANGE_START": 2019, "Total Visits": 738.0, "Total Visitors": 640.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 94.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.21, "MEDIAN_SPEND_PER_CUSTOMER": 28.21 }, "geometry": { "type": "Point", "coordinates": [ -74.96509, 40.084019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@628-pmf-n3q", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953446, "LONGITUDE": -75.165892, "DATE_RANGE_START": 2019, "Total Visits": 8037.0, "Total Visitors": 5037.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 73.0, "Total Spend": 4195.0, "Total Transactions": 610.0, "Total Customers": 408.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.57, "MEDIAN_SPEND_PER_CUSTOMER": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.165892, 39.953446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "LOCATION_NAME": "Volo Coffeehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 23.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4495.0, "Total Transactions": 490.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2019, "Total Visits": 205.0, "Total Visitors": 123.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 202.0, "Total Spend": 5903.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.44, "MEDIAN_SPEND_PER_CUSTOMER": 125.44 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "LOCATION_NAME": "IKEA", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.917106, "LONGITUDE": -75.141639, "DATE_RANGE_START": 2019, "Total Visits": 8390.0, "Total Visitors": 6923.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 531660.0, "Total Transactions": 5134.0, "Total Customers": 3266.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.83, "MEDIAN_SPEND_PER_CUSTOMER": 69.98 }, "geometry": { "type": "Point", "coordinates": [ -75.141639, 39.917106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2019, "Total Visits": 3710.0, "Total Visitors": 2607.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 278590.0, "Total Transactions": 3553.0, "Total Customers": 2507.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.36, "MEDIAN_SPEND_PER_CUSTOMER": 40.03 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "LOCATION_NAME": "Old Nelson Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951893, "LONGITUDE": -75.173688, "DATE_RANGE_START": 2019, "Total Visits": 923.0, "Total Visitors": 595.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 153.0, "Total Spend": 121668.0, "Total Transactions": 11662.0, "Total Customers": 5087.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.9, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.173688, 39.951893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2019, "Total Visits": 260.0, "Total Visitors": 172.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 620.0, "Total Transactions": 52.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.12, "MEDIAN_SPEND_PER_CUSTOMER": 7.27 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955622, "LONGITUDE": -75.192214, "DATE_RANGE_START": 2019, "Total Visits": 5219.0, "Total Visitors": 3127.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 85.0, "Total Spend": 1819.0, "Total Transactions": 245.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.58, "MEDIAN_SPEND_PER_CUSTOMER": 8.22 }, "geometry": { "type": "Point", "coordinates": [ -75.192214, 39.955622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.055425, "LONGITUDE": -75.00482, "DATE_RANGE_START": 2019, "Total Visits": 904.0, "Total Visitors": 668.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1153.0, "Total Transactions": 40.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.3, "MEDIAN_SPEND_PER_CUSTOMER": 20.39 }, "geometry": { "type": "Point", "coordinates": [ -75.00482, 40.055425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "LOCATION_NAME": "Quetzally", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941598, "LONGITUDE": -75.163087, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1257.0, "Total Transactions": 58.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.06, "MEDIAN_SPEND_PER_CUSTOMER": 21.98 }, "geometry": { "type": "Point", "coordinates": [ -75.163087, 39.941598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.074942, "LONGITUDE": -75.035038, "DATE_RANGE_START": 2019, "Total Visits": 3998.0, "Total Visitors": 2577.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 934.0, "Total Transactions": 33.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.3, "MEDIAN_SPEND_PER_CUSTOMER": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.035038, 40.074942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052422, "LONGITUDE": -75.00877, "DATE_RANGE_START": 2019, "Total Visits": 628.0, "Total Visitors": 566.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10929.0, "Total Transactions": 292.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.00877, 40.052422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "LOCATION_NAME": "1 Stop Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2019, "Total Visits": 170.0, "Total Visitors": 125.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2733.0, "Total Transactions": 165.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 17.01 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.045071, "LONGITUDE": -75.088214, "DATE_RANGE_START": 2019, "Total Visits": 2224.0, "Total Visitors": 1396.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 20897.0, "Total Transactions": 986.0, "Total Customers": 641.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.89 }, "geometry": { "type": "Point", "coordinates": [ -75.088214, 40.045071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.029581, "LONGITUDE": -75.100406, "DATE_RANGE_START": 2019, "Total Visits": 1421.0, "Total Visitors": 1296.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 13666.0, "Total Transactions": 292.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.44, "MEDIAN_SPEND_PER_CUSTOMER": 36.97 }, "geometry": { "type": "Point", "coordinates": [ -75.100406, 40.029581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-7yv", "LOCATION_NAME": "Bee Natural", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953663, "LONGITUDE": -75.158929, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 770.0, "Total Transactions": 57.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158929, 39.953663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-snq", "LOCATION_NAME": "Motel 6", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 40.103426, "LONGITUDE": -75.005145, "DATE_RANGE_START": 2019, "Total Visits": 1591.0, "Total Visitors": 1019.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 292.0, "Total Spend": 390.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 117.05, "MEDIAN_SPEND_PER_CUSTOMER": 117.05 }, "geometry": { "type": "Point", "coordinates": [ -75.005145, 40.103426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dw9-wtv", "LOCATION_NAME": "Revive 21", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.880826, "LONGITUDE": -75.237536, "DATE_RANGE_START": 2019, "Total Visits": 22481.0, "Total Visitors": 17362.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 10551.0, "Total Transactions": 333.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.1, "MEDIAN_SPEND_PER_CUSTOMER": 28.29 }, "geometry": { "type": "Point", "coordinates": [ -75.237536, 39.880826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "LOCATION_NAME": "TGI Fridays", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2019, "Total Visits": 1861.0, "Total Visitors": 1446.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 57.0, "Total Spend": 31279.0, "Total Transactions": 796.0, "Total Customers": 710.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.92, "MEDIAN_SPEND_PER_CUSTOMER": 37.54 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-9cq", "LOCATION_NAME": "White Dog Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953556, "LONGITUDE": -75.192905, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 57.0, "Total Spend": 30926.0, "Total Transactions": 490.0, "Total Customers": 446.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.91, "MEDIAN_SPEND_PER_CUSTOMER": 47.72 }, "geometry": { "type": "Point", "coordinates": [ -75.192905, 39.953556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-jd9", "LOCATION_NAME": "Ten Asian Food Hall", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951674, "LONGITUDE": -75.169299, "DATE_RANGE_START": 2019, "Total Visits": 5535.0, "Total Visitors": 4198.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 9490.0, "Total Transactions": 848.0, "Total Customers": 620.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.58, "MEDIAN_SPEND_PER_CUSTOMER": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.169299, 39.951674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "LOCATION_NAME": "Gallo's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057623, "LONGITUDE": -75.044487, "DATE_RANGE_START": 2019, "Total Visits": 833.0, "Total Visitors": 723.0, "POI_CBG": 421010333001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 15597.0, "Total Transactions": 195.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 62.27 }, "geometry": { "type": "Point", "coordinates": [ -75.044487, 40.057623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "LOCATION_NAME": "Triangle Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 68.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 41.0, "Total Spend": 25322.0, "Total Transactions": 631.0, "Total Customers": 523.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.08, "MEDIAN_SPEND_PER_CUSTOMER": 39.28 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "LOCATION_NAME": "The Bayou Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 168.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 93.0, "Total Spend": 10806.0, "Total Transactions": 401.0, "Total Customers": 326.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.03 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2019, "Total Visits": 240.0, "Total Visitors": 210.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6375.0, "Total Transactions": 393.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.56, "MEDIAN_SPEND_PER_CUSTOMER": 20.92 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079147, "LONGITUDE": -75.02653, "DATE_RANGE_START": 2019, "Total Visits": 701.0, "Total Visitors": 606.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8198.0, "Total Transactions": 568.0, "Total Customers": 460.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.02653, 40.079147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2019, "Total Visits": 885.0, "Total Visitors": 726.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 19322.0, "Total Transactions": 2019.0, "Total Customers": 1414.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.2, "MEDIAN_SPEND_PER_CUSTOMER": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "LOCATION_NAME": "Somerset Splits", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010180013.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1279.0, "Total Transactions": 92.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.22, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm4-g8v", "LOCATION_NAME": "V Marks the Shop", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.926043, "LONGITUDE": -75.171734, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 18.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 93.0, "Total Spend": 880.0, "Total Transactions": 28.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.95, "MEDIAN_SPEND_PER_CUSTOMER": 14.38 }, "geometry": { "type": "Point", "coordinates": [ -75.171734, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "LOCATION_NAME": "Pinoy Groseri", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 30.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 1299.0, "Total Spend": 556.0, "Total Transactions": 18.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.87, "MEDIAN_SPEND_PER_CUSTOMER": 36.31 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-x3q", "LOCATION_NAME": "Medina mini market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984945, "LONGITUDE": -75.147239, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 38.0, "POI_CBG": 421010377003.0, "MEDIAN_DWELL": 95.0, "Total Spend": 49.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.14, "MEDIAN_SPEND_PER_CUSTOMER": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.147239, 39.984945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-5vf", "LOCATION_NAME": "Hot Pot Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.018926, "LONGITUDE": -75.155968, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 77.0, "POI_CBG": 421010205001.0, "MEDIAN_DWELL": 86.0, "Total Spend": 81.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.32, "MEDIAN_SPEND_PER_CUSTOMER": 24.32 }, "geometry": { "type": "Point", "coordinates": [ -75.155968, 40.018926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "LOCATION_NAME": "Dim Sum & Noodle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962276, "LONGITUDE": -75.172659, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 172.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 167.0, "Total Spend": 7936.0, "Total Transactions": 248.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.05, "MEDIAN_SPEND_PER_CUSTOMER": 30.73 }, "geometry": { "type": "Point", "coordinates": [ -75.172659, 39.962276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2019, "Total Visits": 576.0, "Total Visitors": 458.0, "POI_CBG": 421010317003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 8558.0, "Total Transactions": 805.0, "Total Customers": 565.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.01, "MEDIAN_SPEND_PER_CUSTOMER": 11.65 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-v4v", "LOCATION_NAME": "Olde City Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949709, "LONGITUDE": -75.144055, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 258.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 725.0, "Total Transactions": 68.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 22.83 }, "geometry": { "type": "Point", "coordinates": [ -75.144055, 39.949709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2019, "Total Visits": 1146.0, "Total Visitors": 913.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8052.0, "Total Transactions": 323.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.39, "MEDIAN_SPEND_PER_CUSTOMER": 23.47 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pmf-jd9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.9512, "LONGITUDE": -75.168586, "DATE_RANGE_START": 2019, "Total Visits": 3245.0, "Total Visitors": 2289.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 180.0, "Total Spend": 18752.0, "Total Transactions": 1299.0, "Total Customers": 918.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.13 }, "geometry": { "type": "Point", "coordinates": [ -75.168586, 39.9512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phz-q4v", "LOCATION_NAME": "Jj's Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.005715, "LONGITUDE": -75.107525, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 80.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 64.0, "Total Spend": 1109.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107525, 40.005715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2019, "Total Visits": 2051.0, "Total Visitors": 1324.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 86.0, "Total Spend": 11192.0, "Total Transactions": 207.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.85, "MEDIAN_SPEND_PER_CUSTOMER": 46.29 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-y7q", "LOCATION_NAME": "Siu Kee Duck House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953918, "LONGITUDE": -75.155876, "DATE_RANGE_START": 2019, "Total Visits": 6866.0, "Total Visitors": 4814.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 126.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.3, "MEDIAN_SPEND_PER_CUSTOMER": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155876, 39.953918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-zvf", "LOCATION_NAME": "Tavern On the Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077151, "LONGITUDE": -75.208916, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 65.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 4672.0, "Total Transactions": 95.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.76 }, "geometry": { "type": "Point", "coordinates": [ -75.208916, 40.077151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phz-wkz", "LOCATION_NAME": "Steve's Old Pizza London", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.997988, "LONGITUDE": -75.101209, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 72.0, "POI_CBG": 421010188002.0, "MEDIAN_DWELL": 269.0, "Total Spend": 1714.0, "Total Transactions": 78.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.74, "MEDIAN_SPEND_PER_CUSTOMER": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.101209, 39.997988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-v75", "LOCATION_NAME": "JJ Bootleggers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94896, "LONGITUDE": -75.143844, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 17467.0, "Total Transactions": 585.0, "Total Customers": 475.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.28 }, "geometry": { "type": "Point", "coordinates": [ -75.143844, 39.94896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2019, "Total Visits": 29365.0, "Total Visitors": 13895.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 133.0, "Total Spend": 14668.0, "Total Transactions": 1433.0, "Total Customers": 870.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.94, "MEDIAN_SPEND_PER_CUSTOMER": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-54v", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991295, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2019, "Total Visits": 581.0, "Total Visitors": 431.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 22.0, "Total Spend": 280.0, "Total Transactions": 23.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.38, "MEDIAN_SPEND_PER_CUSTOMER": 9.61 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978087, "LONGITUDE": -75.11955, "DATE_RANGE_START": 2019, "Total Visits": 888.0, "Total Visitors": 541.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 11337.0, "Total Transactions": 1669.0, "Total Customers": 856.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.11955, 39.978087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2019, "Total Visits": 706.0, "Total Visitors": 478.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3029.0, "Total Transactions": 541.0, "Total Customers": 257.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.91, "MEDIAN_SPEND_PER_CUSTOMER": 6.84 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 7374.0, "Total Transactions": 1887.0, "Total Customers": 1079.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.45, "MEDIAN_SPEND_PER_CUSTOMER": 4.31 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-c89", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068373, "LONGITUDE": -75.068436, "DATE_RANGE_START": 2019, "Total Visits": 581.0, "Total Visitors": 343.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3756.0, "Total Transactions": 586.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.068436, 40.068373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-ks5", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951718, "LONGITUDE": -75.144312, "DATE_RANGE_START": 2019, "Total Visits": 1532.0, "Total Visitors": 1138.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 4206.0, "Total Transactions": 336.0, "Total Customers": 255.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.86, "MEDIAN_SPEND_PER_CUSTOMER": 12.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 39.951718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj5-435", "LOCATION_NAME": "1 Stop Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009415, "LONGITUDE": -75.15067, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 108.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 478.0, "Total Transactions": 57.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.03, "MEDIAN_SPEND_PER_CUSTOMER": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15067, 40.009415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "LOCATION_NAME": "El Coqui Panaderia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 140.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6054.0, "Total Transactions": 386.0, "Total Customers": 275.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj4-y7q", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.007623, "LONGITUDE": -75.150494, "DATE_RANGE_START": 2019, "Total Visits": 660.0, "Total Visitors": 516.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4919.0, "Total Transactions": 47.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.5, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150494, 40.007623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 153.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1929.0, "Total Transactions": 168.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.19, "MEDIAN_SPEND_PER_CUSTOMER": 10.42 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "LOCATION_NAME": "The Little Apple", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.025728, "LONGITUDE": -75.223969, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 85.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3319.0, "Total Transactions": 93.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223969, 40.025728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvx-vs5", "LOCATION_NAME": "Curry Bird", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944122, "LONGITUDE": -75.209774, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 15.0, "POI_CBG": 421010074001.0, "MEDIAN_DWELL": null, "Total Spend": 771.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.65, "MEDIAN_SPEND_PER_CUSTOMER": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.209774, 39.944122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pjf-kcq", "LOCATION_NAME": "Kimberly James Bridal", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075732, "LONGITUDE": -75.206965, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 128.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 60.0, "Total Spend": 150.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206965, 40.075732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-w6k", "LOCATION_NAME": "Food & Friends", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948295, "LONGITUDE": -75.174192, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 242.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 32.0, "Total Spend": 39015.0, "Total Transactions": 2195.0, "Total Customers": 1108.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.85, "MEDIAN_SPEND_PER_CUSTOMER": 22.19 }, "geometry": { "type": "Point", "coordinates": [ -75.174192, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm4-mc5", "LOCATION_NAME": "Meat Market El Pueblo", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.935181, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2019, "Total Visits": 143.0, "Total Visitors": 138.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1058.0, "Total Transactions": 40.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.46, "MEDIAN_SPEND_PER_CUSTOMER": 17.46 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.935181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-223@628-p8n-389", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02098, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2019, "Total Visits": 358.0, "Total Visitors": 253.0, "POI_CBG": 421010323001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1220.0, "Total Transactions": 100.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.27, "MEDIAN_SPEND_PER_CUSTOMER": 11.16 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.02098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2019, "Total Visits": 1854.0, "Total Visitors": 1113.0, "POI_CBG": 421010012021.0, "MEDIAN_DWELL": 37.0, "Total Spend": 27749.0, "Total Transactions": 1634.0, "Total Customers": 815.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.76, "MEDIAN_SPEND_PER_CUSTOMER": 19.95 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "LOCATION_NAME": "Cuba Libre Restaurant & Rum Bar Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2019, "Total Visits": 348.0, "Total Visitors": 283.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 1214.0, "Total Transactions": 90.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-ty9", "LOCATION_NAME": "La Fontana Della Citta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947768, "LONGITUDE": -75.169697, "DATE_RANGE_START": 2019, "Total Visits": 360.0, "Total Visitors": 293.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 82.0, "Total Spend": 4209.0, "Total Transactions": 62.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.2, "MEDIAN_SPEND_PER_CUSTOMER": 55.27 }, "geometry": { "type": "Point", "coordinates": [ -75.169697, 39.947768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj5-3yv", "LOCATION_NAME": "Bravo Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010478, "LONGITUDE": -75.151556, "DATE_RANGE_START": 2019, "Total Visits": 1221.0, "Total Visitors": 951.0, "POI_CBG": 421010201021.0, "MEDIAN_DWELL": 17.0, "Total Spend": 607.0, "Total Transactions": 17.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.17, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.151556, 40.010478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6rk", "LOCATION_NAME": "Le Pain Quotidien", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949701, "LONGITUDE": -75.165264, "DATE_RANGE_START": 2019, "Total Visits": 395.0, "Total Visitors": 252.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 158.0, "Total Spend": 95.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.49, "MEDIAN_SPEND_PER_CUSTOMER": 17.49 }, "geometry": { "type": "Point", "coordinates": [ -75.165264, 39.949701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "LOCATION_NAME": "Suraya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2019, "Total Visits": 850.0, "Total Visitors": 721.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 79.0, "Total Spend": 117362.0, "Total Transactions": 1423.0, "Total Customers": 1178.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.74, "MEDIAN_SPEND_PER_CUSTOMER": 54.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phz-2c5", "LOCATION_NAME": "New Supermarket", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021812, "LONGITUDE": -75.114561, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 42.0, "POI_CBG": 421010289022.0, "MEDIAN_DWELL": 929.0, "Total Spend": 1440.0, "Total Transactions": 140.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.114561, 40.021812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2019, "Total Visits": 2070.0, "Total Visitors": 1118.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 17075.0, "Total Transactions": 835.0, "Total Customers": 515.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.35, "MEDIAN_SPEND_PER_CUSTOMER": 25.01 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjb-6ff", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.04808, "LONGITUDE": -75.143086, "DATE_RANGE_START": 2019, "Total Visits": 2893.0, "Total Visitors": 2087.0, "POI_CBG": 421010277001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 88.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.43, "MEDIAN_SPEND_PER_CUSTOMER": 26.43 }, "geometry": { "type": "Point", "coordinates": [ -75.143086, 40.04808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "LOCATION_NAME": "Windsor", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08613, "LONGITUDE": -74.962864, "DATE_RANGE_START": 2019, "Total Visits": 292.0, "Total Visitors": 282.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7769.0, "Total Transactions": 180.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.4, "MEDIAN_SPEND_PER_CUSTOMER": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -74.962864, 40.08613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055857, "LONGITUDE": -75.157863, "DATE_RANGE_START": 2019, "Total Visits": 883.0, "Total Visitors": 661.0, "POI_CBG": 421010265006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7073.0, "Total Transactions": 768.0, "Total Customers": 566.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.6, "MEDIAN_SPEND_PER_CUSTOMER": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157863, 40.055857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmf-tvz", "LOCATION_NAME": "Aurora Grace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949402, "LONGITUDE": -75.170471, "DATE_RANGE_START": 2019, "Total Visits": 1596.0, "Total Visitors": 1009.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 90.0, "Total Spend": 567.0, "Total Transactions": 37.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.170471, 39.949402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "LOCATION_NAME": "Monster Pets", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 252.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4455.0, "Total Transactions": 100.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.79, "MEDIAN_SPEND_PER_CUSTOMER": 38.32 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-tsq", "LOCATION_NAME": "Pennsport Beer Boutique", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.931601, "LONGITUDE": -75.149607, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 85.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 36.0, "Total Spend": 1394.0, "Total Transactions": 60.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149607, 39.931601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjf-zvf", "LOCATION_NAME": "McNally's Tavern Chestnut Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077129, "LONGITUDE": -75.208866, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 52.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 4491.0, "Total Transactions": 98.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.18, "MEDIAN_SPEND_PER_CUSTOMER": 39.87 }, "geometry": { "type": "Point", "coordinates": [ -75.208866, 40.077129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmf-kzz", "LOCATION_NAME": "City Tap House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95591, "LONGITUDE": -75.169553, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 178.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 8182.0, "Total Transactions": 173.0, "Total Customers": 168.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.58, "MEDIAN_SPEND_PER_CUSTOMER": 37.45 }, "geometry": { "type": "Point", "coordinates": [ -75.169553, 39.95591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-5mk", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961178, "LONGITUDE": -75.143721, "DATE_RANGE_START": 2019, "Total Visits": 991.0, "Total Visitors": 693.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 5351.0, "Total Transactions": 105.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.11, "MEDIAN_SPEND_PER_CUSTOMER": 42.84 }, "geometry": { "type": "Point", "coordinates": [ -75.143721, 39.961178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pp5-p35", "LOCATION_NAME": "Martin's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991299, "LONGITUDE": -75.123216, "DATE_RANGE_START": 2019, "Total Visits": 1524.0, "Total Visitors": 1074.0, "POI_CBG": 421010177022.0, "MEDIAN_DWELL": 14.0, "Total Spend": 335.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.58, "MEDIAN_SPEND_PER_CUSTOMER": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.123216, 39.991299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj2-mrk", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006514, "LONGITUDE": -75.095617, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 120.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1374.0, "Total Transactions": 127.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.095617, 40.006514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "LOCATION_NAME": "Nordstrom Rack", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951246, "LONGITUDE": -75.168975, "DATE_RANGE_START": 2019, "Total Visits": 3251.0, "Total Visitors": 2625.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 150864.0, "Total Transactions": 2445.0, "Total Customers": 2192.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.31, "MEDIAN_SPEND_PER_CUSTOMER": 49.94 }, "geometry": { "type": "Point", "coordinates": [ -75.168975, 39.951246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "LOCATION_NAME": "Kitchen Kapers", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 598.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1640.0, "Total Transactions": 43.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 24.81 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm9-y9z", "LOCATION_NAME": "Urban Princess Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941138, "LONGITUDE": -75.149398, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 128.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1015.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.92, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149398, 39.941138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "LOCATION_NAME": "Kashmir Garden Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 118.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 10269.0, "Total Transactions": 306.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.23, "MEDIAN_SPEND_PER_CUSTOMER": 36.88 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24r-222@628-pm7-kmk", "LOCATION_NAME": "8 Brothers Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.933486, "LONGITUDE": -75.18947, "DATE_RANGE_START": 2019, "Total Visits": 230.0, "Total Visitors": 142.0, "POI_CBG": 421010032006.0, "MEDIAN_DWELL": 68.0, "Total Spend": 254.0, "Total Transactions": 27.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18947, 39.933486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kzz", "LOCATION_NAME": "Curio Collection", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.95668, "LONGITUDE": -75.169667, "DATE_RANGE_START": 2019, "Total Visits": 5180.0, "Total Visitors": 3583.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 142.0, "Total Spend": 173.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169667, 39.95668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-w6k", "LOCATION_NAME": "Society Hill Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.948794, "LONGITUDE": -75.146118, "DATE_RANGE_START": 2019, "Total Visits": 265.0, "Total Visitors": 257.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 821.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 122.48, "MEDIAN_SPEND_PER_CUSTOMER": 122.48 }, "geometry": { "type": "Point", "coordinates": [ -75.146118, 39.948794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-jd9", "LOCATION_NAME": "Westin Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952041, "LONGITUDE": -75.168491, "DATE_RANGE_START": 2019, "Total Visits": 8057.0, "Total Visitors": 5229.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 54.0, "Total Spend": 37354.0, "Total Transactions": 208.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.0, "MEDIAN_SPEND_PER_CUSTOMER": 92.38 }, "geometry": { "type": "Point", "coordinates": [ -75.168491, 39.952041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "LOCATION_NAME": "Fairfield Inn & Suites by Marriott", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2019, "Total Visits": 3816.0, "Total Visitors": 2389.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 220.0, "Total Spend": 21767.0, "Total Transactions": 173.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 122.77, "MEDIAN_SPEND_PER_CUSTOMER": 145.02 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "LOCATION_NAME": "Stateside", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 12126.0, "Total Transactions": 310.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.42, "MEDIAN_SPEND_PER_CUSTOMER": 36.07 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "LOCATION_NAME": "Butcher Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95199, "LONGITUDE": -75.174938, "DATE_RANGE_START": 2019, "Total Visits": 2805.0, "Total Visitors": 1862.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 101.0, "Total Spend": 25822.0, "Total Transactions": 448.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.0, "MEDIAN_SPEND_PER_CUSTOMER": 51.23 }, "geometry": { "type": "Point", "coordinates": [ -75.174938, 39.95199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2019, "Total Visits": 463.0, "Total Visitors": 333.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3901.0, "Total Transactions": 620.0, "Total Customers": 333.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.95, "MEDIAN_SPEND_PER_CUSTOMER": 7.21 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-5zz", "LOCATION_NAME": "Crunchik'n", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948207, "LONGITUDE": -75.159314, "DATE_RANGE_START": 2019, "Total Visits": 190.0, "Total Visitors": 115.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 96.0, "Total Spend": 267.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 18.37 }, "geometry": { "type": "Point", "coordinates": [ -75.159314, 39.948207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "LOCATION_NAME": "Penrose Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2019, "Total Visits": 1794.0, "Total Visitors": 1459.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 30.0, "Total Spend": 30657.0, "Total Transactions": 848.0, "Total Customers": 718.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.66, "MEDIAN_SPEND_PER_CUSTOMER": 33.41 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "LOCATION_NAME": "SquareBurger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 65.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 140.0, "Total Spend": 1090.0, "Total Transactions": 68.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 12.72 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "LOCATION_NAME": "Venu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911404, "LONGITUDE": -75.170366, "DATE_RANGE_START": 2019, "Total Visits": 3150.0, "Total Visitors": 2499.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 24395.0, "Total Transactions": 946.0, "Total Customers": 463.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.09, "MEDIAN_SPEND_PER_CUSTOMER": 36.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170366, 39.911404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-249", "LOCATION_NAME": "On Point Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937259, "LONGITUDE": -75.177106, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 47.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 4615.0, "Total Transactions": 130.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.37, "MEDIAN_SPEND_PER_CUSTOMER": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177106, 39.937259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 87.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 304.0, "Total Spend": 1269.0, "Total Transactions": 60.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.96, "MEDIAN_SPEND_PER_CUSTOMER": 19.54 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dw9-835", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.878257, "LONGITUDE": -75.238877, "DATE_RANGE_START": 2019, "Total Visits": 1381.0, "Total Visitors": 1268.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 8302.0, "Total Transactions": 780.0, "Total Customers": 725.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.48, "MEDIAN_SPEND_PER_CUSTOMER": 9.49 }, "geometry": { "type": "Point", "coordinates": [ -75.238877, 39.878257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-8n5", "LOCATION_NAME": "Federal Donuts North", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964219, "LONGITUDE": -75.14909, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 80.0, "POI_CBG": 421010131001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 370.0, "Total Transactions": 27.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.05, "MEDIAN_SPEND_PER_CUSTOMER": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14909, 39.964219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-d35", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922445, "LONGITUDE": -75.169848, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 165.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7670.0, "Total Transactions": 1083.0, "Total Customers": 661.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.67, "MEDIAN_SPEND_PER_CUSTOMER": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.169848, 39.922445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pm3-vs5", "LOCATION_NAME": "Mike & Matt's Italian Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926268, "LONGITUDE": -75.165968, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 15.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 160.0, "Total Spend": 432.0, "Total Transactions": 40.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165968, 39.926268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-qpv", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007797, "LONGITUDE": -75.141965, "DATE_RANGE_START": 2019, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010199002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 286.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.1, "MEDIAN_SPEND_PER_CUSTOMER": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.141965, 40.007797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-ph9-pqf", "LOCATION_NAME": "Rice and Things", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974763, "LONGITUDE": -75.261333, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 23.0, "POI_CBG": 421010098021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1671.0, "Total Transactions": 75.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.261333, 39.974763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phz-6c5", "LOCATION_NAME": "L & M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.0235, "LONGITUDE": -75.115742, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010289023.0, "MEDIAN_DWELL": 13.0, "Total Spend": 145.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.115742, 40.0235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-grk", "LOCATION_NAME": "Nick's Charcoal Pit", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923906, "LONGITUDE": -75.167451, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 30.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1185.0, "Total Transactions": 48.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.4, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167451, 39.923906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmd-zcq", "LOCATION_NAME": "Los Camaradas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940826, "LONGITUDE": -75.179816, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010013003.0, "MEDIAN_DWELL": 72.0, "Total Spend": 13554.0, "Total Transactions": 330.0, "Total Customers": 280.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.22, "MEDIAN_SPEND_PER_CUSTOMER": 35.87 }, "geometry": { "type": "Point", "coordinates": [ -75.179816, 39.940826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-nnq", "LOCATION_NAME": "Square Pie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938609, "LONGITUDE": -75.152665, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 110.0, "Total Spend": 2117.0, "Total Transactions": 67.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.24, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.152665, 39.938609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-j5f", "LOCATION_NAME": "Poppy's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074185, "LONGITUDE": -75.202466, "DATE_RANGE_START": 2019, "Total Visits": 665.0, "Total Visitors": 490.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 784.0, "Total Transactions": 115.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.4, "MEDIAN_SPEND_PER_CUSTOMER": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202466, 40.074185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086321, "LONGITUDE": -74.971748, "DATE_RANGE_START": 2019, "Total Visits": 2399.0, "Total Visitors": 1687.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10812.0, "Total Transactions": 1964.0, "Total Customers": 623.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.51, "MEDIAN_SPEND_PER_CUSTOMER": 9.06 }, "geometry": { "type": "Point", "coordinates": [ -74.971748, 40.086321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "LOCATION_NAME": "Bistrot La Minette", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 98.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 119.0, "Total Spend": 5548.0, "Total Transactions": 53.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 92.53, "MEDIAN_SPEND_PER_CUSTOMER": 92.87 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfy-h3q", "LOCATION_NAME": "Mr P Pizza & Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044177, "LONGITUDE": -75.231987, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 90.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1845.0, "Total Transactions": 132.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.97, "MEDIAN_SPEND_PER_CUSTOMER": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.231987, 40.044177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "LOCATION_NAME": "Oneals Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 52.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 7989.0, "Total Transactions": 232.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.1, "MEDIAN_SPEND_PER_CUSTOMER": 29.35 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-5mk", "LOCATION_NAME": "McGillin's Olde Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95021, "LONGITUDE": -75.162564, "DATE_RANGE_START": 2019, "Total Visits": 373.0, "Total Visitors": 326.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 44406.0, "Total Transactions": 2175.0, "Total Customers": 1529.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162564, 39.95021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg2-hdv", "LOCATION_NAME": "Golden Crust Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059871, "LONGITUDE": -75.190661, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 78.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2931.0, "Total Transactions": 200.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.87, "MEDIAN_SPEND_PER_CUSTOMER": 15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.190661, 40.059871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-6ff", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948341, "LONGITUDE": -75.157035, "DATE_RANGE_START": 2019, "Total Visits": 2284.0, "Total Visitors": 1547.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 52.0, "Total Spend": 820.0, "Total Transactions": 53.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.09, "MEDIAN_SPEND_PER_CUSTOMER": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.157035, 39.948341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p85-2hq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066275, "LONGITUDE": -75.051537, "DATE_RANGE_START": 2019, "Total Visits": 580.0, "Total Visitors": 435.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 918.0, "Total Transactions": 182.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.1, "MEDIAN_SPEND_PER_CUSTOMER": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051537, 40.066275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmd-yjv", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937442, "LONGITUDE": -75.176792, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 57.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 525.0, "Total Spend": 6266.0, "Total Transactions": 758.0, "Total Customers": 613.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.59, "MEDIAN_SPEND_PER_CUSTOMER": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.176792, 39.937442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23c@628-pmf-mrk", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952393, "LONGITUDE": -75.168002, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 102.0, "Total Spend": 3081.0, "Total Transactions": 227.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.62, "MEDIAN_SPEND_PER_CUSTOMER": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.168002, 39.952393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-52k", "LOCATION_NAME": "Orient Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980968, "LONGITUDE": -75.15329, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1681.0, "Total Transactions": 198.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15329, 39.980968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pzn-zfz", "LOCATION_NAME": "Syriana Hookah Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.132652, "LONGITUDE": -75.012051, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 30.0, "Total Spend": 176.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.88, "MEDIAN_SPEND_PER_CUSTOMER": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.012051, 40.132652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfw-g6k", "LOCATION_NAME": "Apollo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012812, "LONGITUDE": -75.190541, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010207003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 793.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.9, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.190541, 40.012812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "LOCATION_NAME": "Tavern On Camac", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947272, "LONGITUDE": -75.161618, "DATE_RANGE_START": 2019, "Total Visits": 421.0, "Total Visitors": 305.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 50.0, "Total Spend": 30897.0, "Total Transactions": 1378.0, "Total Customers": 723.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 27.28 }, "geometry": { "type": "Point", "coordinates": [ -75.161618, 39.947272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qmk", "LOCATION_NAME": "Sea Soul", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038264, "LONGITUDE": -75.11969, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 127.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 277.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.59, "MEDIAN_SPEND_PER_CUSTOMER": 11.74 }, "geometry": { "type": "Point", "coordinates": [ -75.11969, 40.038264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-7nq", "LOCATION_NAME": "Chatayee Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94915, "LONGITUDE": -75.161857, "DATE_RANGE_START": 2019, "Total Visits": 2540.0, "Total Visitors": 1722.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 1326.0, "Total Transactions": 35.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.44, "MEDIAN_SPEND_PER_CUSTOMER": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161857, 39.94915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "LOCATION_NAME": "Vientiane Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 67.0, "POI_CBG": 421010161003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 158.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.5, "MEDIAN_SPEND_PER_CUSTOMER": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-f4v", "LOCATION_NAME": "Action Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064215, "LONGITUDE": -75.153872, "DATE_RANGE_START": 2019, "Total Visits": 120.0, "Total Visitors": 58.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 342.0, "Total Spend": 869.0, "Total Transactions": 50.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.97, "MEDIAN_SPEND_PER_CUSTOMER": 18.28 }, "geometry": { "type": "Point", "coordinates": [ -75.153872, 40.064215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "LOCATION_NAME": "Lucky 13 Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927169, "LONGITUDE": -75.167128, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 58.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 6020.0, "Total Transactions": 223.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.96, "MEDIAN_SPEND_PER_CUSTOMER": 31.35 }, "geometry": { "type": "Point", "coordinates": [ -75.167128, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm9-z2k", "LOCATION_NAME": "Royal Sushi & Izakaya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938134, "LONGITUDE": -75.146531, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 232.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": 81.0, "Total Spend": 32539.0, "Total Transactions": 386.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.2, "MEDIAN_SPEND_PER_CUSTOMER": 71.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146531, 39.938134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-v75", "LOCATION_NAME": "Margherita Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948535, "LONGITUDE": -75.144159, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3866.0, "Total Transactions": 328.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mzf", "LOCATION_NAME": "Passero's Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954206, "LONGITUDE": -75.167446, "DATE_RANGE_START": 2019, "Total Visits": 12348.0, "Total Visitors": 6193.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 129.0, "Total Spend": 749.0, "Total Transactions": 143.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.1, "MEDIAN_SPEND_PER_CUSTOMER": 5.78 }, "geometry": { "type": "Point", "coordinates": [ -75.167446, 39.954206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "LOCATION_NAME": "Chicko Tako", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 108.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3064.0, "Total Transactions": 167.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.85, "MEDIAN_SPEND_PER_CUSTOMER": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-xnq", "LOCATION_NAME": "Dae Bak", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955289, "LONGITUDE": -75.156637, "DATE_RANGE_START": 2019, "Total Visits": 8184.0, "Total Visitors": 5962.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 4417.0, "Total Transactions": 102.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.12, "MEDIAN_SPEND_PER_CUSTOMER": 35.53 }, "geometry": { "type": "Point", "coordinates": [ -75.156637, 39.955289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "LOCATION_NAME": "Sam's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 65.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 10.0, "Total Spend": 311.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.25, "MEDIAN_SPEND_PER_CUSTOMER": 17.13 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-649", "LOCATION_NAME": "Peking Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948431, "LONGITUDE": -75.221496, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 80.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 542.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.08 }, "geometry": { "type": "Point", "coordinates": [ -75.221496, 39.948431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 132.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3914.0, "Total Transactions": 210.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.17, "MEDIAN_SPEND_PER_CUSTOMER": 20.91 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017737, "LONGITUDE": -75.148813, "DATE_RANGE_START": 2019, "Total Visits": 285.0, "Total Visitors": 262.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3616.0, "Total Transactions": 296.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 11.42 }, "geometry": { "type": "Point", "coordinates": [ -75.148813, 40.017737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "LOCATION_NAME": "American Sardine Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 68.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1608.0, "Total Transactions": 52.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.55, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-whq", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949985, "LONGITUDE": -75.146017, "DATE_RANGE_START": 2019, "Total Visits": 247.0, "Total Visitors": 227.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1184.0, "Total Transactions": 58.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.83, "MEDIAN_SPEND_PER_CUSTOMER": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.146017, 39.949985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8f-9xq", "LOCATION_NAME": "Leandro's Pizza House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013813, "LONGITUDE": -75.08597, "DATE_RANGE_START": 2019, "Total Visits": 435.0, "Total Visitors": 296.0, "POI_CBG": 421010294003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 175.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.74, "MEDIAN_SPEND_PER_CUSTOMER": 21.78 }, "geometry": { "type": "Point", "coordinates": [ -75.08597, 40.013813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2019, "Total Visits": 946.0, "Total Visitors": 753.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8505.0, "Total Transactions": 991.0, "Total Customers": 666.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.43, "MEDIAN_SPEND_PER_CUSTOMER": 9.46 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-75z", "LOCATION_NAME": "North Third", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963481, "LONGITUDE": -75.142676, "DATE_RANGE_START": 2019, "Total Visits": 120.0, "Total Visitors": 107.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 2302.0, "Total Transactions": 40.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.82, "MEDIAN_SPEND_PER_CUSTOMER": 41.29 }, "geometry": { "type": "Point", "coordinates": [ -75.142676, 39.963481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962408, "LONGITUDE": -75.163643, "DATE_RANGE_START": 2019, "Total Visits": 1246.0, "Total Visitors": 490.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 231.0, "Total Spend": 9902.0, "Total Transactions": 1944.0, "Total Customers": 934.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.18, "MEDIAN_SPEND_PER_CUSTOMER": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.163643, 39.962408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pgg-b8v", "LOCATION_NAME": "Shrimp Express II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.000369, "LONGITUDE": -75.16696, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 40.0, "POI_CBG": 421010172013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 418.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.6, "MEDIAN_SPEND_PER_CUSTOMER": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16696, 40.000369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-xnq", "LOCATION_NAME": "Dim Sum Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955197, "LONGITUDE": -75.156774, "DATE_RANGE_START": 2019, "Total Visits": 810.0, "Total Visitors": 761.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 478.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.75, "MEDIAN_SPEND_PER_CUSTOMER": 61.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 39.955197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "LOCATION_NAME": "Menchie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2019, "Total Visits": 296.0, "Total Visitors": 273.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 761.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003544, "LONGITUDE": -75.165622, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 177.0, "POI_CBG": 421010202001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2228.0, "Total Transactions": 353.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.8, "MEDIAN_SPEND_PER_CUSTOMER": 6.13 }, "geometry": { "type": "Point", "coordinates": [ -75.165622, 40.003544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "LOCATION_NAME": "Reggae Reggae Vibes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421010144003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2666.0, "Total Transactions": 145.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 15.31 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-3yv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022096, "LONGITUDE": -75.125775, "DATE_RANGE_START": 2019, "Total Visits": 840.0, "Total Visitors": 548.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 943.0, "Total Transactions": 55.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125775, 40.022096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pjf-ks5", "LOCATION_NAME": "Threadwell", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.075533, "LONGITUDE": -75.206071, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 608.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.6, "MEDIAN_SPEND_PER_CUSTOMER": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.206071, 40.075533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-qj9", "LOCATION_NAME": "Evergreen Young's Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.065852, "LONGITUDE": -75.083408, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 47.0, "POI_CBG": 421010339001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2376.0, "Total Transactions": 25.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083408, 40.065852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-575", "LOCATION_NAME": "Aldo's Pizzarama", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.108537, "LONGITUDE": -75.025505, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 25.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1044.0, "Total Transactions": 47.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.53, "MEDIAN_SPEND_PER_CUSTOMER": 17.55 }, "geometry": { "type": "Point", "coordinates": [ -75.025505, 40.108537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm4-8sq", "LOCATION_NAME": "Olivares Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.934795, "LONGITUDE": -75.173301, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 35.0, "POI_CBG": 421010030023.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1105.0, "Total Transactions": 113.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173301, 39.934795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084825, "LONGITUDE": -74.9723, "DATE_RANGE_START": 2019, "Total Visits": 142.0, "Total Visitors": 105.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3996.0, "Total Transactions": 168.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 17.43 }, "geometry": { "type": "Point", "coordinates": [ -74.9723, 40.084825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-vj9", "LOCATION_NAME": "Fairmount Pet Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.967037, "LONGITUDE": -75.17115, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8435.0, "Total Transactions": 282.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 29.12 }, "geometry": { "type": "Point", "coordinates": [ -75.17115, 39.967037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.087401, "LONGITUDE": -74.970519, "DATE_RANGE_START": 2019, "Total Visits": 2367.0, "Total Visitors": 1799.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 936.0, "Total Transactions": 62.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.59, "MEDIAN_SPEND_PER_CUSTOMER": 20.44 }, "geometry": { "type": "Point", "coordinates": [ -74.970519, 40.087401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "LOCATION_NAME": "Carter's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075968, "LONGITUDE": -75.031512, "DATE_RANGE_START": 2019, "Total Visits": 295.0, "Total Visitors": 290.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3176.0, "Total Transactions": 88.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.89, "MEDIAN_SPEND_PER_CUSTOMER": 31.71 }, "geometry": { "type": "Point", "coordinates": [ -75.031512, 40.075968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087098, "LONGITUDE": -74.962333, "DATE_RANGE_START": 2019, "Total Visits": 541.0, "Total Visitors": 511.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 922.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.49, "MEDIAN_SPEND_PER_CUSTOMER": 57.49 }, "geometry": { "type": "Point", "coordinates": [ -74.962333, 40.087098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgj-zvf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.99726, "LONGITUDE": -75.154252, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 99.0, "Total Spend": 4257.0, "Total Transactions": 88.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.154252, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.0441, "LONGITUDE": -75.232794, "DATE_RANGE_START": 2019, "Total Visits": 1168.0, "Total Visitors": 786.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 158500.0, "Total Transactions": 4611.0, "Total Customers": 2477.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.77, "MEDIAN_SPEND_PER_CUSTOMER": 39.31 }, "geometry": { "type": "Point", "coordinates": [ -75.232794, 40.0441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.031655, "LONGITUDE": -75.099529, "DATE_RANGE_START": 2019, "Total Visits": 13014.0, "Total Visitors": 8648.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 707.0, "Total Transactions": 55.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.56, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.099529, 40.031655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-j9z", "LOCATION_NAME": "A Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95037, "LONGITUDE": -75.170503, "DATE_RANGE_START": 2019, "Total Visits": 5742.0, "Total Visitors": 4188.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 70.0, "Total Spend": 3954.0, "Total Transactions": 167.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170503, 39.95037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-y7q", "LOCATION_NAME": "Chu Shang Spicy 厨尚麻辣", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95387, "LONGITUDE": -75.155752, "DATE_RANGE_START": 2019, "Total Visits": 413.0, "Total Visitors": 315.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 1820.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.38 }, "geometry": { "type": "Point", "coordinates": [ -75.155752, 39.95387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "LOCATION_NAME": "Pho Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 90.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5186.0, "Total Transactions": 152.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.27, "MEDIAN_SPEND_PER_CUSTOMER": 33.16 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-tgk", "LOCATION_NAME": "Southside Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019691, "LONGITUDE": -75.174271, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 134.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.23, "MEDIAN_SPEND_PER_CUSTOMER": 40.23 }, "geometry": { "type": "Point", "coordinates": [ -75.174271, 40.019691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfz-bx5", "LOCATION_NAME": "Manayunk Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024589, "LONGITUDE": -75.221155, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 80.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 67.0, "Total Spend": 10570.0, "Total Transactions": 310.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.84, "MEDIAN_SPEND_PER_CUSTOMER": 34.19 }, "geometry": { "type": "Point", "coordinates": [ -75.221155, 40.024589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2019, "Total Visits": 453.0, "Total Visitors": 338.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 33.0, "Total Spend": 8466.0, "Total Transactions": 698.0, "Total Customers": 533.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.91, "MEDIAN_SPEND_PER_CUSTOMER": 10.85 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zvf", "LOCATION_NAME": "M2O Burgers & Salads", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940282, "LONGITUDE": -75.150883, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 55.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 150.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.12, "MEDIAN_SPEND_PER_CUSTOMER": 27.36 }, "geometry": { "type": "Point", "coordinates": [ -75.150883, 39.940282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p74-wtv", "LOCATION_NAME": "Oteri's Italian Bakery Frankford Ave", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038952, "LONGITUDE": -75.035677, "DATE_RANGE_START": 2019, "Total Visits": 173.0, "Total Visitors": 132.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1298.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 31.48 }, "geometry": { "type": "Point", "coordinates": [ -75.035677, 40.038952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2019, "Total Visits": 4591.0, "Total Visitors": 3243.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 113313.0, "Total Transactions": 1519.0, "Total Customers": 1013.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.24, "MEDIAN_SPEND_PER_CUSTOMER": 40.46 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "LOCATION_NAME": "Race Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2019, "Total Visits": 125.0, "Total Visitors": 97.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1032.0, "Total Transactions": 133.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.71 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-8n5", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.959397, "LONGITUDE": -75.213118, "DATE_RANGE_START": 2019, "Total Visits": 889.0, "Total Visitors": 700.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 40.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213118, 39.959397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-sbk", "LOCATION_NAME": "Spruce Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947568, "LONGITUDE": -75.167428, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 228.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 13.0, "Total Spend": 18565.0, "Total Transactions": 845.0, "Total Customers": 520.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.167428, 39.947568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954892, "LONGITUDE": -75.206728, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 223.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3104.0, "Total Transactions": 287.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.03, "MEDIAN_SPEND_PER_CUSTOMER": 8.79 }, "geometry": { "type": "Point", "coordinates": [ -75.206728, 39.954892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8j-bp9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.035986, "LONGITUDE": -75.039532, "DATE_RANGE_START": 2019, "Total Visits": 403.0, "Total Visitors": 303.0, "POI_CBG": 421010330006.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2461.0, "Total Transactions": 147.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 20.09 }, "geometry": { "type": "Point", "coordinates": [ -75.039532, 40.035986 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg9-wc5", "LOCATION_NAME": "Fairmount Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.964685, "LONGITUDE": -75.169302, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 62.0, "POI_CBG": 421010134023.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1357.0, "Total Transactions": 35.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.55, "MEDIAN_SPEND_PER_CUSTOMER": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.169302, 39.964685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w49", "LOCATION_NAME": "The Children's Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087614, "LONGITUDE": -74.96103, "DATE_RANGE_START": 2019, "Total Visits": 886.0, "Total Visitors": 771.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 365.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.47, "MEDIAN_SPEND_PER_CUSTOMER": 19.79 }, "geometry": { "type": "Point", "coordinates": [ -74.96103, 40.087614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950226, "LONGITUDE": -75.169589, "DATE_RANGE_START": 2019, "Total Visits": 530.0, "Total Visitors": 361.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 144.0, "Total Spend": 27904.0, "Total Transactions": 321.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.5, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169589, 39.950226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2019, "Total Visits": 2014.0, "Total Visitors": 1314.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 4591.0, "Total Transactions": 118.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.81, "MEDIAN_SPEND_PER_CUSTOMER": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgk-2rk", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.994689, "LONGITUDE": -75.158268, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 137.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 204.0, "Total Spend": 7.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.0, "MEDIAN_SPEND_PER_CUSTOMER": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158268, 39.994689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "LOCATION_NAME": "Riverwards Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2019, "Total Visits": 288.0, "Total Visitors": 175.0, "POI_CBG": 421010158001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 54458.0, "Total Transactions": 2285.0, "Total Customers": 988.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.48, "MEDIAN_SPEND_PER_CUSTOMER": 32.01 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwg-f4v", "LOCATION_NAME": "Lucky Star Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913515, "LONGITUDE": -75.242295, "DATE_RANGE_START": 2019, "Total Visits": 425.0, "Total Visitors": 292.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1224.0, "Total Transactions": 170.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.63, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.913515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvz-2p9", "LOCATION_NAME": "Chestnut Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956923, "LONGITUDE": -75.214531, "DATE_RANGE_START": 2019, "Total Visits": 380.0, "Total Visitors": 316.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1229.0, "Total Transactions": 75.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214531, 39.956923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5s5", "LOCATION_NAME": "Loews Philadelphia Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951431, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2019, "Total Visits": 25752.0, "Total Visitors": 14147.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 267.0, "Total Spend": 72029.0, "Total Transactions": 750.0, "Total Customers": 576.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.8, "MEDIAN_SPEND_PER_CUSTOMER": 37.93 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 39.951431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2019, "Total Visits": 296.0, "Total Visitors": 260.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1780.0, "Total Transactions": 33.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.09, "MEDIAN_SPEND_PER_CUSTOMER": 31.76 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 235.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 86.0, "Total Spend": 5508.0, "Total Transactions": 148.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 28.31 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5s5", "LOCATION_NAME": "ROOST East Market", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951349, "LONGITUDE": -75.159655, "DATE_RANGE_START": 2019, "Total Visits": 9495.0, "Total Visitors": 6276.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 3612.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 261.83, "MEDIAN_SPEND_PER_CUSTOMER": 262.83 }, "geometry": { "type": "Point", "coordinates": [ -75.159655, 39.951349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-jd9", "LOCATION_NAME": "Club Quarters Philadelphia", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951302, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2019, "Total Visits": 1009.0, "Total Visitors": 708.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 186.0, "Total Spend": 1363.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.26, "MEDIAN_SPEND_PER_CUSTOMER": 42.26 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.951302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 68.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 22.0, "Total Spend": 214.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.95, "MEDIAN_SPEND_PER_CUSTOMER": 16.95 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-8vz", "LOCATION_NAME": "Dizengoff", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953032, "LONGITUDE": -75.192553, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 57.0, "Total Spend": 3476.0, "Total Transactions": 207.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192553, 39.953032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-9mk", "LOCATION_NAME": "Bravo Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010647, "LONGITUDE": -75.151533, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 92.0, "POI_CBG": 421010201021.0, "MEDIAN_DWELL": 162.0, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.68, "MEDIAN_SPEND_PER_CUSTOMER": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.151533, 40.010647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025386, "LONGITUDE": -75.223869, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 78.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4823.0, "Total Transactions": 128.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.72, "MEDIAN_SPEND_PER_CUSTOMER": 28.45 }, "geometry": { "type": "Point", "coordinates": [ -75.223869, 40.025386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "LOCATION_NAME": "La Calaca Feliz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 115.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 46.0, "Total Spend": 35109.0, "Total Transactions": 661.0, "Total Customers": 573.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.68, "MEDIAN_SPEND_PER_CUSTOMER": 50.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-ty9", "LOCATION_NAME": "Stir", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965783, "LONGITUDE": -75.181173, "DATE_RANGE_START": 2019, "Total Visits": 5312.0, "Total Visitors": 4829.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 2718.0, "Total Transactions": 125.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181173, 39.965783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "LOCATION_NAME": "In & Out Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 52.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 109.0, "Total Spend": 503.0, "Total Transactions": 28.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.67, "MEDIAN_SPEND_PER_CUSTOMER": 22.25 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y9z", "LOCATION_NAME": "Copabanana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941497, "LONGITUDE": -75.14907, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 331.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 16835.0, "Total Transactions": 386.0, "Total Customers": 360.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.91, "MEDIAN_SPEND_PER_CUSTOMER": 33.14 }, "geometry": { "type": "Point", "coordinates": [ -75.14907, 39.941497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5zz", "LOCATION_NAME": "Chix & Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94898, "LONGITUDE": -75.159094, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 138.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 3030.0, "Total Transactions": 255.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.95, "MEDIAN_SPEND_PER_CUSTOMER": 10.42 }, "geometry": { "type": "Point", "coordinates": [ -75.159094, 39.94898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp4-tvz", "LOCATION_NAME": "Best Deli II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978727, "LONGITUDE": -75.115372, "DATE_RANGE_START": 2019, "Total Visits": 368.0, "Total Visitors": 210.0, "POI_CBG": 421010378003.0, "MEDIAN_DWELL": 302.0, "Total Spend": 1868.0, "Total Transactions": 135.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.2, "MEDIAN_SPEND_PER_CUSTOMER": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.115372, 39.978727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-xkf", "LOCATION_NAME": "Vietnam Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956332, "LONGITUDE": -75.157056, "DATE_RANGE_START": 2019, "Total Visits": 580.0, "Total Visitors": 420.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 125.0, "Total Spend": 4588.0, "Total Transactions": 98.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.73, "MEDIAN_SPEND_PER_CUSTOMER": 38.83 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.956332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952029, "LONGITUDE": -75.167533, "DATE_RANGE_START": 2019, "Total Visits": 2767.0, "Total Visitors": 1619.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 151.0, "Total Spend": 20951.0, "Total Transactions": 2037.0, "Total Customers": 1394.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.67, "MEDIAN_SPEND_PER_CUSTOMER": 11.07 }, "geometry": { "type": "Point", "coordinates": [ -75.167533, 39.952029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2019, "Total Visits": 418.0, "Total Visitors": 351.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 779.0, "Total Transactions": 63.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.46 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "LOCATION_NAME": "Cafe Square One", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948829, "LONGITUDE": -75.146095, "DATE_RANGE_START": 2019, "Total Visits": 265.0, "Total Visitors": 257.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6391.0, "Total Transactions": 556.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.146095, 39.948829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029744, "LONGITUDE": -75.099335, "DATE_RANGE_START": 2019, "Total Visits": 273.0, "Total Visitors": 252.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 875.0, "Total Transactions": 35.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 28.34 }, "geometry": { "type": "Point", "coordinates": [ -75.099335, 40.029744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 223.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3310.0, "Total Transactions": 360.0, "Total Customers": 257.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.2, "MEDIAN_SPEND_PER_CUSTOMER": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "LOCATION_NAME": "Weavers Way Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 105.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 128666.0, "Total Transactions": 3941.0, "Total Customers": 1329.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.47, "MEDIAN_SPEND_PER_CUSTOMER": 47.88 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-gkz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043254, "LONGITUDE": -75.158799, "DATE_RANGE_START": 2019, "Total Visits": 586.0, "Total Visitors": 435.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3716.0, "Total Transactions": 147.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.66, "MEDIAN_SPEND_PER_CUSTOMER": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.158799, 40.043254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-xkf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.94872, "LONGITUDE": -75.21312, "DATE_RANGE_START": 2019, "Total Visits": 4418.0, "Total Visitors": 2495.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3190.0, "Total Transactions": 158.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 17.97 }, "geometry": { "type": "Point", "coordinates": [ -75.21312, 39.94872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-sqz", "LOCATION_NAME": "Ashton Cigar Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949464, "LONGITUDE": -75.167106, "DATE_RANGE_START": 2019, "Total Visits": 855.0, "Total Visitors": 635.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 84.0, "Total Spend": 23040.0, "Total Transactions": 313.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.59, "MEDIAN_SPEND_PER_CUSTOMER": 63.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167106, 39.949464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm8-kxq", "LOCATION_NAME": "1100 Social", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904301, "LONGITUDE": -75.169143, "DATE_RANGE_START": 2019, "Total Visits": 2342.0, "Total Visitors": 2127.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 10780.0, "Total Transactions": 588.0, "Total Customers": 436.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169143, 39.904301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "LOCATION_NAME": "Romeo Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924602, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2019, "Total Visits": 611.0, "Total Visitors": 370.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 41.0, "Total Spend": 415.0, "Total Transactions": 33.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.924602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2019, "Total Visits": 3461.0, "Total Visitors": 2414.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 66.0, "Total Spend": 31984.0, "Total Transactions": 2207.0, "Total Customers": 1389.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.07, "MEDIAN_SPEND_PER_CUSTOMER": 15.73 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm3-zmk", "LOCATION_NAME": "Aslam Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.919814, "LONGITUDE": -75.159051, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010041021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1673.0, "Total Transactions": 75.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159051, 39.919814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8h-789", "LOCATION_NAME": "Palm Tree Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029254, "LONGITUDE": -75.03641, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5191.0, "Total Transactions": 370.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.47, "MEDIAN_SPEND_PER_CUSTOMER": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.03641, 40.029254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "LOCATION_NAME": "John's Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 37.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1457.0, "Total Transactions": 150.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.53, "MEDIAN_SPEND_PER_CUSTOMER": 12.33 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "LOCATION_NAME": "Joes Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95039, "LONGITUDE": -75.167575, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 470.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 202.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.01, "MEDIAN_SPEND_PER_CUSTOMER": 19.27 }, "geometry": { "type": "Point", "coordinates": [ -75.167575, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "LOCATION_NAME": "Bottle Bar East", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 177.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 52.0, "Total Spend": 40150.0, "Total Transactions": 1424.0, "Total Customers": 956.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.5, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-4y9", "LOCATION_NAME": "Guido's Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.92079, "LONGITUDE": -75.166881, "DATE_RANGE_START": 2019, "Total Visits": 160.0, "Total Visitors": 113.0, "POI_CBG": 421010040024.0, "MEDIAN_DWELL": 144.0, "Total Spend": 200.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.65, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.166881, 39.92079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.980937, "LONGITUDE": -75.144152, "DATE_RANGE_START": 2019, "Total Visits": 2242.0, "Total Visitors": 1542.0, "POI_CBG": 421010156002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 7388.0, "Total Transactions": 205.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.92, "MEDIAN_SPEND_PER_CUSTOMER": 30.03 }, "geometry": { "type": "Point", "coordinates": [ -75.144152, 39.980937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962963, "LONGITUDE": -75.174058, "DATE_RANGE_START": 2019, "Total Visits": 6276.0, "Total Visitors": 3630.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 304363.0, "Total Transactions": 9528.0, "Total Customers": 4048.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.28, "MEDIAN_SPEND_PER_CUSTOMER": 32.66 }, "geometry": { "type": "Point", "coordinates": [ -75.174058, 39.962963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pj2-94v", "LOCATION_NAME": "Hoagies Plus", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0012, "LONGITUDE": -75.114597, "DATE_RANGE_START": 2019, "Total Visits": 428.0, "Total Visitors": 207.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 321.0, "Total Spend": 1394.0, "Total Transactions": 68.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.8, "MEDIAN_SPEND_PER_CUSTOMER": 19.24 }, "geometry": { "type": "Point", "coordinates": [ -75.114597, 40.0012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.924926, "LONGITUDE": -75.169063, "DATE_RANGE_START": 2019, "Total Visits": 2560.0, "Total Visitors": 1456.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3696.0, "Total Transactions": 197.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.26, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169063, 39.924926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "LOCATION_NAME": "Evergreen Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949185, "LONGITUDE": -75.147628, "DATE_RANGE_START": 2019, "Total Visits": 1924.0, "Total Visitors": 1507.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5832.0, "Total Transactions": 506.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.15, "MEDIAN_SPEND_PER_CUSTOMER": 15.86 }, "geometry": { "type": "Point", "coordinates": [ -75.147628, 39.949185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979068, "LONGITUDE": -75.159667, "DATE_RANGE_START": 2019, "Total Visits": 825.0, "Total Visitors": 548.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2628.0, "Total Transactions": 368.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.59, "MEDIAN_SPEND_PER_CUSTOMER": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.159667, 39.979068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "LOCATION_NAME": "Jo-Ann Fabric and Craft Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2019, "Total Visits": 283.0, "Total Visitors": 250.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8273.0, "Total Transactions": 282.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.46, "MEDIAN_SPEND_PER_CUSTOMER": 26.23 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-r6k", "LOCATION_NAME": "Loop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.944579, "LONGITUDE": -75.174065, "DATE_RANGE_START": 2019, "Total Visits": 631.0, "Total Visitors": 403.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 201.0, "Total Spend": 2987.0, "Total Transactions": 63.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.56, "MEDIAN_SPEND_PER_CUSTOMER": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174065, 39.944579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2019, "Total Visits": 571.0, "Total Visitors": 440.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1349.0, "Total Transactions": 130.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.4, "MEDIAN_SPEND_PER_CUSTOMER": 6.15 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-y7q", "LOCATION_NAME": "K & A Gift Shop", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953734, "LONGITUDE": -75.155203, "DATE_RANGE_START": 2019, "Total Visits": 6866.0, "Total Visitors": 4814.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 2190.0, "Total Transactions": 393.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.87, "MEDIAN_SPEND_PER_CUSTOMER": 5.26 }, "geometry": { "type": "Point", "coordinates": [ -75.155203, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.93927, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2019, "Total Visits": 668.0, "Total Visitors": 478.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6715.0, "Total Transactions": 403.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.17, "MEDIAN_SPEND_PER_CUSTOMER": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.93927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "LOCATION_NAME": "Fairdale Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084494, "LONGITUDE": -74.972673, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 48.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 6.0, "Total Spend": 214.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.41, "MEDIAN_SPEND_PER_CUSTOMER": 64.19 }, "geometry": { "type": "Point", "coordinates": [ -74.972673, 40.084494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.951277, "LONGITUDE": -75.177618, "DATE_RANGE_START": 2019, "Total Visits": 3521.0, "Total Visitors": 2678.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2950.0, "Total Transactions": 150.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.77, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177618, 39.951277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-vzz", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.926515, "LONGITUDE": -75.145923, "DATE_RANGE_START": 2019, "Total Visits": 556.0, "Total Visitors": 511.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2935.0, "Total Transactions": 117.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.42, "MEDIAN_SPEND_PER_CUSTOMER": 24.77 }, "geometry": { "type": "Point", "coordinates": [ -75.145923, 39.926515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-p7q", "LOCATION_NAME": "Garage Fishtown", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.968647, "LONGITUDE": -75.134215, "DATE_RANGE_START": 2019, "Total Visits": 187.0, "Total Visitors": 177.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 561.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.5, "MEDIAN_SPEND_PER_CUSTOMER": 61.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134215, 39.968647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yjv", "LOCATION_NAME": "Zio Pizza Palace & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955076, "LONGITUDE": -75.154189, "DATE_RANGE_START": 2019, "Total Visits": 220.0, "Total Visitors": 205.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8572.0, "Total Transactions": 330.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154189, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfy-d35", "LOCATION_NAME": "Something Different", "TOP_CATEGORY": "Florists", "LATITUDE": 40.033667, "LONGITUDE": -75.220915, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 82.0, "POI_CBG": 421010213005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 170.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220915, 40.033667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959088, "LONGITUDE": -75.1625, "DATE_RANGE_START": 2019, "Total Visits": 2813.0, "Total Visitors": 1674.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 171.0, "Total Spend": 2473.0, "Total Transactions": 193.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.9, "MEDIAN_SPEND_PER_CUSTOMER": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.1625, 39.959088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "LOCATION_NAME": "Honey Bee Gourmet Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945912, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 313.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 28.0, "Total Spend": 80.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 39.945912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948525, "LONGITUDE": -75.166014, "DATE_RANGE_START": 2019, "Total Visits": 840.0, "Total Visitors": 631.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 10.0, "Total Spend": 7286.0, "Total Transactions": 1569.0, "Total Customers": 795.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.84, "MEDIAN_SPEND_PER_CUSTOMER": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166014, 39.948525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "LOCATION_NAME": "Chill On the Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 72.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1171.0, "Total Transactions": 137.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.04, "MEDIAN_SPEND_PER_CUSTOMER": 7.81 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 268.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2703.0, "Total Transactions": 448.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-ch5", "LOCATION_NAME": "La Roca", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023561, "LONGITUDE": -75.219763, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 155.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 48.0, "Total Spend": 14226.0, "Total Transactions": 400.0, "Total Customers": 345.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.78, "MEDIAN_SPEND_PER_CUSTOMER": 31.44 }, "geometry": { "type": "Point", "coordinates": [ -75.219763, 40.023561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-s89", "LOCATION_NAME": "Blume", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948455, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2019, "Total Visits": 994.0, "Total Visitors": 686.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 9.0, "Total Spend": 26823.0, "Total Transactions": 665.0, "Total Customers": 580.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.65, "MEDIAN_SPEND_PER_CUSTOMER": 35.75 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 39.948455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgf-7kf", "LOCATION_NAME": "Lavish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967761, "LONGITUDE": -75.210086, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 73.0, "POI_CBG": 421010106001.0, "MEDIAN_DWELL": 79.0, "Total Spend": 2034.0, "Total Transactions": 47.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.0, "MEDIAN_SPEND_PER_CUSTOMER": 51.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210086, 39.967761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pm9-wc5", "LOCATION_NAME": "Rustica Rosticceria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949727, "LONGITUDE": -75.148072, "DATE_RANGE_START": 2019, "Total Visits": 8470.0, "Total Visitors": 6511.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 246.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.148072, 39.949727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2019, "Total Visits": 12156.0, "Total Visitors": 6523.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 84.0, "Total Spend": 5138.0, "Total Transactions": 496.0, "Total Customers": 323.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.53, "MEDIAN_SPEND_PER_CUSTOMER": 10.87 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 67.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1278.0, "Total Transactions": 132.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.8, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "LOCATION_NAME": "Bardot Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2019, "Total Visits": 441.0, "Total Visitors": 316.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 8895.0, "Total Transactions": 285.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.74 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "LOCATION_NAME": "Mac Mart Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951438, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2019, "Total Visits": 606.0, "Total Visitors": 553.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7600.0, "Total Transactions": 501.0, "Total Customers": 445.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.11, "MEDIAN_SPEND_PER_CUSTOMER": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "LOCATION_NAME": "Good Day Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 262.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2208.0, "Total Transactions": 227.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 10.05 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmf-rx5", "LOCATION_NAME": "Indian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944053, "LONGITUDE": -75.169964, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 47.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 489.0, "Total Spend": 1036.0, "Total Transactions": 27.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.35, "MEDIAN_SPEND_PER_CUSTOMER": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.169964, 39.944053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-j7q", "LOCATION_NAME": "Byblos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951257, "LONGITUDE": -75.170681, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 310.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 11894.0, "Total Transactions": 188.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.8, "MEDIAN_SPEND_PER_CUSTOMER": 53.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170681, 39.951257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "LOCATION_NAME": "Unit Su Vege", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2019, "Total Visits": 721.0, "Total Visitors": 441.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 67.0, "Total Spend": 5749.0, "Total Transactions": 175.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.17, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-835", "LOCATION_NAME": "Down Home Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952864, "LONGITUDE": -75.159035, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 11011.0, "Total Transactions": 393.0, "Total Customers": 375.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.34, "MEDIAN_SPEND_PER_CUSTOMER": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159035, 39.952864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-syv", "LOCATION_NAME": "Sushi Garden & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944749, "LONGITUDE": -75.164917, "DATE_RANGE_START": 2019, "Total Visits": 345.0, "Total Visitors": 311.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1692.0, "Total Transactions": 68.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.57, "MEDIAN_SPEND_PER_CUSTOMER": 19.38 }, "geometry": { "type": "Point", "coordinates": [ -75.164917, 39.944749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-8sq", "LOCATION_NAME": "Cinnabon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952174, "LONGITUDE": -75.158425, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 1848.0, "Total Transactions": 277.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.84, "MEDIAN_SPEND_PER_CUSTOMER": 5.35 }, "geometry": { "type": "Point", "coordinates": [ -75.158425, 39.952174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032059, "LONGITUDE": -75.213927, "DATE_RANGE_START": 2019, "Total Visits": 585.0, "Total Visitors": 400.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 7667.0, "Total Transactions": 1129.0, "Total Customers": 643.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.35, "MEDIAN_SPEND_PER_CUSTOMER": 7.67 }, "geometry": { "type": "Point", "coordinates": [ -75.213927, 40.032059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025459, "LONGITUDE": -75.149625, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 68.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 455.0, "Total Transactions": 38.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.149625, 40.025459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019964, "LONGITUDE": -75.174488, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 243.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3089.0, "Total Transactions": 615.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.99, "MEDIAN_SPEND_PER_CUSTOMER": 6.67 }, "geometry": { "type": "Point", "coordinates": [ -75.174488, 40.019964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-4sq", "LOCATION_NAME": "NOTO Philadelphia", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957795, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2019, "Total Visits": 193.0, "Total Visitors": 162.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 27804.0, "Total Transactions": 606.0, "Total Customers": 356.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.957795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "LOCATION_NAME": "Davids Mai Lai Wah", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955591, "LONGITUDE": -75.155966, "DATE_RANGE_START": 2019, "Total Visits": 788.0, "Total Visitors": 698.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10677.0, "Total Transactions": 268.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.35, "MEDIAN_SPEND_PER_CUSTOMER": 37.33 }, "geometry": { "type": "Point", "coordinates": [ -75.155966, 39.955591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8h-5xq", "LOCATION_NAME": "New Station Pizza Iv", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026249, "LONGITUDE": -75.043153, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 37.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 166.0, "Total Spend": 767.0, "Total Transactions": 55.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.56, "MEDIAN_SPEND_PER_CUSTOMER": 13.13 }, "geometry": { "type": "Point", "coordinates": [ -75.043153, 40.026249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-snq", "LOCATION_NAME": "Alice Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948159, "LONGITUDE": -75.166048, "DATE_RANGE_START": 2019, "Total Visits": 8700.0, "Total Visitors": 5255.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 162.0, "Total Spend": 4597.0, "Total Transactions": 252.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.77, "MEDIAN_SPEND_PER_CUSTOMER": 14.09 }, "geometry": { "type": "Point", "coordinates": [ -75.166048, 39.948159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-p35", "LOCATION_NAME": "Fiore Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989223, "LONGITUDE": -75.127044, "DATE_RANGE_START": 2019, "Total Visits": 386.0, "Total Visitors": 333.0, "POI_CBG": 421010163001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1117.0, "Total Transactions": 58.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.89, "MEDIAN_SPEND_PER_CUSTOMER": 19.85 }, "geometry": { "type": "Point", "coordinates": [ -75.127044, 39.989223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "LOCATION_NAME": "Barbuzzo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950022, "LONGITUDE": -75.162126, "DATE_RANGE_START": 2019, "Total Visits": 5653.0, "Total Visitors": 4028.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 74.0, "Total Spend": 32223.0, "Total Transactions": 483.0, "Total Customers": 456.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.05, "MEDIAN_SPEND_PER_CUSTOMER": 55.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162126, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg3-jqf", "LOCATION_NAME": "Jansen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062669, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 62.0, "POI_CBG": 421010388001.0, "MEDIAN_DWELL": 104.0, "Total Spend": 5436.0, "Total Transactions": 35.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.0, "MEDIAN_SPEND_PER_CUSTOMER": 174.28 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 40.062669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-qpv", "LOCATION_NAME": "Shalom Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979511, "LONGITUDE": -75.26908, "DATE_RANGE_START": 2019, "Total Visits": 1188.0, "Total Visitors": 845.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 55.0, "Total Spend": 2015.0, "Total Transactions": 68.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 25.68 }, "geometry": { "type": "Point", "coordinates": [ -75.26908, 39.979511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "LOCATION_NAME": "Bleu Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 63.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 82.0, "Total Spend": 3658.0, "Total Transactions": 78.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.1, "MEDIAN_SPEND_PER_CUSTOMER": 32.16 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9q-ht9", "LOCATION_NAME": "Bubbakoo's Burritos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078769, "LONGITUDE": -75.027229, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 98.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5432.0, "Total Transactions": 298.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.61, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.027229, 40.078769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-6zf", "LOCATION_NAME": "Petes Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964375, "LONGITUDE": -75.204736, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 135.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1025.0, "Total Transactions": 47.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.6, "MEDIAN_SPEND_PER_CUSTOMER": 18.67 }, "geometry": { "type": "Point", "coordinates": [ -75.204736, 39.964375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-4jv", "LOCATION_NAME": "Del Rossi's Cheesesteak", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961482, "LONGITUDE": -75.14504, "DATE_RANGE_START": 2019, "Total Visits": 268.0, "Total Visitors": 185.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 10917.0, "Total Transactions": 618.0, "Total Customers": 486.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.01, "MEDIAN_SPEND_PER_CUSTOMER": 16.78 }, "geometry": { "type": "Point", "coordinates": [ -75.14504, 39.961482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8j-bff", "LOCATION_NAME": "Mayfair Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037436, "LONGITUDE": -75.038227, "DATE_RANGE_START": 2019, "Total Visits": 247.0, "Total Visitors": 140.0, "POI_CBG": 421010330003.0, "MEDIAN_DWELL": 127.0, "Total Spend": 3806.0, "Total Transactions": 142.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.88, "MEDIAN_SPEND_PER_CUSTOMER": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038227, 40.037436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pmf-pvz", "LOCATION_NAME": "Bistro La Baia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945165, "LONGITUDE": -75.170267, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 42.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2180.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 82.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.945165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-cbk", "LOCATION_NAME": "Oregon Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913868, "LONGITUDE": -75.152939, "DATE_RANGE_START": 2019, "Total Visits": 979.0, "Total Visitors": 705.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 43.0, "Total Spend": 897.0, "Total Transactions": 23.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.36, "MEDIAN_SPEND_PER_CUSTOMER": 41.09 }, "geometry": { "type": "Point", "coordinates": [ -75.152939, 39.913868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2019, "Total Visits": 232.0, "Total Visitors": 198.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 463.0, "Total Transactions": 40.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.74, "MEDIAN_SPEND_PER_CUSTOMER": 8.85 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2019, "Total Visits": 1183.0, "Total Visitors": 898.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7038.0, "Total Transactions": 786.0, "Total Customers": 523.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.6, "MEDIAN_SPEND_PER_CUSTOMER": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079208, "LONGITUDE": -75.02664, "DATE_RANGE_START": 2019, "Total Visits": 408.0, "Total Visitors": 373.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7870.0, "Total Transactions": 426.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.18, "MEDIAN_SPEND_PER_CUSTOMER": 16.84 }, "geometry": { "type": "Point", "coordinates": [ -75.02664, 40.079208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 596.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7130.0, "Total Transactions": 725.0, "Total Customers": 528.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.39, "MEDIAN_SPEND_PER_CUSTOMER": 9.99 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pgb-6tv", "LOCATION_NAME": "Fairmount Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.968987, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 15.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 39.0, "Total Spend": 444.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 133.37, "MEDIAN_SPEND_PER_CUSTOMER": 133.37 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.968987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgk-z9f", "LOCATION_NAME": "Beauty & Fashion City", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999963, "LONGITUDE": -75.209335, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 32.0, "POI_CBG": 421010122041.0, "MEDIAN_DWELL": 2.0, "Total Spend": 468.0, "Total Transactions": 23.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.94, "MEDIAN_SPEND_PER_CUSTOMER": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.209335, 39.999963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dwg-f75", "LOCATION_NAME": "Aya's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915076, "LONGITUDE": -75.240053, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 40.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": 67.0, "Total Spend": 668.0, "Total Transactions": 27.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.48, "MEDIAN_SPEND_PER_CUSTOMER": 38.53 }, "geometry": { "type": "Point", "coordinates": [ -75.240053, 39.915076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-2ff", "LOCATION_NAME": "Bus Stop", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.939675, "LONGITUDE": -75.149432, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 17.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 104.0, "Total Spend": 682.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.1, "MEDIAN_SPEND_PER_CUSTOMER": 77.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149432, 39.939675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "LOCATION_NAME": "Lee's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 22.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 519.0, "Total Spend": 1767.0, "Total Transactions": 150.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032491, "LONGITUDE": -75.214429, "DATE_RANGE_START": 2019, "Total Visits": 282.0, "Total Visitors": 220.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2122.0, "Total Transactions": 87.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.81, "MEDIAN_SPEND_PER_CUSTOMER": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.214429, 40.032491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmf-y7q", "LOCATION_NAME": "Sunset Social", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952424, "LONGITUDE": -75.183701, "DATE_RANGE_START": 2019, "Total Visits": 2840.0, "Total Visitors": 1771.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 62.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.78, "MEDIAN_SPEND_PER_CUSTOMER": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.183701, 39.952424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-435", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.918945, "LONGITUDE": -75.143088, "DATE_RANGE_START": 2019, "Total Visits": 660.0, "Total Visitors": 520.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 37700.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 1025.67, "MEDIAN_SPEND_PER_CUSTOMER": 1025.67 }, "geometry": { "type": "Point", "coordinates": [ -75.143088, 39.918945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-phc-rkz", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.999213, "LONGITUDE": -75.22984, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 63.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 86.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.36, "MEDIAN_SPEND_PER_CUSTOMER": 5.71 }, "geometry": { "type": "Point", "coordinates": [ -75.22984, 39.999213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7x-5zz", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048936, "LONGITUDE": -75.06319, "DATE_RANGE_START": 2019, "Total Visits": 270.0, "Total Visitors": 227.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 879.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.2, "MEDIAN_SPEND_PER_CUSTOMER": 15.2 }, "geometry": { "type": "Point", "coordinates": [ -75.06319, 40.048936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.037208, "LONGITUDE": -75.172767, "DATE_RANGE_START": 2019, "Total Visits": 1253.0, "Total Visitors": 873.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 20831.0, "Total Transactions": 933.0, "Total Customers": 585.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172767, 40.037208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.042819, "LONGITUDE": -75.181027, "DATE_RANGE_START": 2019, "Total Visits": 2006.0, "Total Visitors": 1256.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1678.0, "Total Transactions": 90.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.93, "MEDIAN_SPEND_PER_CUSTOMER": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.181027, 40.042819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-zxq", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941838, "LONGITUDE": -75.152721, "DATE_RANGE_START": 2019, "Total Visits": 303.0, "Total Visitors": 272.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 5880.0, "Total Transactions": 90.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.47, "MEDIAN_SPEND_PER_CUSTOMER": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -75.152721, 39.941838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pfz-bzf", "LOCATION_NAME": "Gary Mann Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.025665, "LONGITUDE": -75.223674, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 105.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 342.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.0, "MEDIAN_SPEND_PER_CUSTOMER": 102.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223674, 40.025665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2019, "Total Visits": 896.0, "Total Visitors": 735.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 60449.0, "Total Transactions": 1339.0, "Total Customers": 1116.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 39.05 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.004616, "LONGITUDE": -75.104425, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 175.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 101.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.63, "MEDIAN_SPEND_PER_CUSTOMER": 14.63 }, "geometry": { "type": "Point", "coordinates": [ -75.104425, 40.004616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-zs5", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.941661, "LONGITUDE": -75.151237, "DATE_RANGE_START": 2019, "Total Visits": 2524.0, "Total Visitors": 1936.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 851.0, "Total Transactions": 37.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.46, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151237, 39.941661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "LOCATION_NAME": "Cafe La Maude", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 27.0, "POI_CBG": 421010367002.0, "MEDIAN_DWELL": 270.0, "Total Spend": 19700.0, "Total Transactions": 383.0, "Total Customers": 348.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.43, "MEDIAN_SPEND_PER_CUSTOMER": 51.36 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pj5-3nq", "LOCATION_NAME": "Erie Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009145, "LONGITUDE": -75.152232, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 32.0, "POI_CBG": 421010201022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1323.0, "Total Transactions": 145.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.152232, 40.009145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "LOCATION_NAME": "Fountain Porter", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 80.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 40.0, "Total Spend": 3713.0, "Total Transactions": 133.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.32, "MEDIAN_SPEND_PER_CUSTOMER": 30.71 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "LOCATION_NAME": "Castle Roxx", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 118.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 27.0, "Total Spend": 3238.0, "Total Transactions": 117.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "LOCATION_NAME": "Garden Court Eatery & Beer", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952636, "LONGITUDE": -75.21767, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 508.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 57.0, "Total Spend": 8215.0, "Total Transactions": 511.0, "Total Customers": 295.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.05, "MEDIAN_SPEND_PER_CUSTOMER": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.21767, 39.952636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm4-s5z", "LOCATION_NAME": "The Pizza Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927861, "LONGITUDE": -75.157274, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 112.0, "POI_CBG": 421010028011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 791.0, "Total Transactions": 65.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.82 }, "geometry": { "type": "Point", "coordinates": [ -75.157274, 39.927861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-kcq", "LOCATION_NAME": "Holme Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056893, "LONGITUDE": -75.027632, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 42.0, "POI_CBG": 421010347021.0, "MEDIAN_DWELL": 32.0, "Total Spend": 309.0, "Total Transactions": 15.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 15.71 }, "geometry": { "type": "Point", "coordinates": [ -75.027632, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "LOCATION_NAME": "Yamitsuki Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2019, "Total Visits": 685.0, "Total Visitors": 585.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4786.0, "Total Transactions": 157.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.38, "MEDIAN_SPEND_PER_CUSTOMER": 31.36 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23b@63s-dw4-rzf", "LOCATION_NAME": "Bar Symon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.87555, "LONGITUDE": -75.238035, "DATE_RANGE_START": 2019, "Total Visits": 454923.0, "Total Visitors": 244998.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 253.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.54, "MEDIAN_SPEND_PER_CUSTOMER": 32.54 }, "geometry": { "type": "Point", "coordinates": [ -75.238035, 39.87555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgh-vcq", "LOCATION_NAME": "El Guaco Loco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983075, "LONGITUDE": -75.154536, "DATE_RANGE_START": 2019, "Total Visits": 1806.0, "Total Visitors": 756.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 246.0, "Total Spend": 1476.0, "Total Transactions": 173.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154536, 39.983075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9p-tgk", "LOCATION_NAME": "Maxi Gastronome", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.10649, "LONGITUDE": -75.029058, "DATE_RANGE_START": 2019, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": null, "Total Spend": 428.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.22, "MEDIAN_SPEND_PER_CUSTOMER": 49.11 }, "geometry": { "type": "Point", "coordinates": [ -75.029058, 40.10649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-9j9", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953347, "LONGITUDE": -75.165403, "DATE_RANGE_START": 2019, "Total Visits": 8037.0, "Total Visitors": 5037.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 73.0, "Total Spend": 539.0, "Total Transactions": 40.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.53, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165403, 39.953347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955218, "LONGITUDE": -75.155815, "DATE_RANGE_START": 2019, "Total Visits": 401.0, "Total Visitors": 328.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 5219.0, "Total Transactions": 105.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.15, "MEDIAN_SPEND_PER_CUSTOMER": 50.75 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 39.955218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-dqf", "LOCATION_NAME": "Asian Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918335, "LONGITUDE": -75.181058, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 292.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 336.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.59, "MEDIAN_SPEND_PER_CUSTOMER": 56.59 }, "geometry": { "type": "Point", "coordinates": [ -75.181058, 39.918335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-rtv", "LOCATION_NAME": "Takka Grill and Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029529, "LONGITUDE": -75.180791, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 40.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1944.0, "Total Transactions": 118.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.68, "MEDIAN_SPEND_PER_CUSTOMER": 15.44 }, "geometry": { "type": "Point", "coordinates": [ -75.180791, 40.029529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2019, "Total Visits": 483.0, "Total Visitors": 401.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7950.0, "Total Transactions": 658.0, "Total Customers": 491.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.69, "MEDIAN_SPEND_PER_CUSTOMER": 11.84 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949164, "LONGITUDE": -75.163217, "DATE_RANGE_START": 2019, "Total Visits": 428.0, "Total Visitors": 373.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3458.0, "Total Transactions": 753.0, "Total Customers": 423.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.66, "MEDIAN_SPEND_PER_CUSTOMER": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163217, 39.949164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "LOCATION_NAME": "Open House", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950268, "LONGITUDE": -75.161745, "DATE_RANGE_START": 2019, "Total Visits": 343.0, "Total Visitors": 310.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 15494.0, "Total Transactions": 438.0, "Total Customers": 405.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 31.05 }, "geometry": { "type": "Point", "coordinates": [ -75.161745, 39.950268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-hnq", "LOCATION_NAME": "The Ranstead Room", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952421, "LONGITUDE": -75.173819, "DATE_RANGE_START": 2019, "Total Visits": 7677.0, "Total Visitors": 4692.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 77.0, "Total Spend": 11463.0, "Total Transactions": 220.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.39, "MEDIAN_SPEND_PER_CUSTOMER": 41.12 }, "geometry": { "type": "Point", "coordinates": [ -75.173819, 39.952421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2019, "Total Visits": 1812.0, "Total Visitors": 1174.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 90.0, "Total Spend": 16936.0, "Total Transactions": 1732.0, "Total Customers": 1038.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.26, "MEDIAN_SPEND_PER_CUSTOMER": 11.32 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgf-33q", "LOCATION_NAME": "Ochatto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954494, "LONGITUDE": -75.195113, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 203.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 31.0, "Total Spend": 10935.0, "Total Transactions": 436.0, "Total Customers": 335.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.67, "MEDIAN_SPEND_PER_CUSTOMER": 23.26 }, "geometry": { "type": "Point", "coordinates": [ -75.195113, 39.954494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-hnq", "LOCATION_NAME": "Stock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952182, "LONGITUDE": -75.173159, "DATE_RANGE_START": 2019, "Total Visits": 12893.0, "Total Visitors": 7288.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 63.0, "Total Spend": 19552.0, "Total Transactions": 85.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 193.95, "MEDIAN_SPEND_PER_CUSTOMER": 211.95 }, "geometry": { "type": "Point", "coordinates": [ -75.173159, 39.952182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-djv", "LOCATION_NAME": "Pastificio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911498, "LONGITUDE": -75.174639, "DATE_RANGE_START": 2019, "Total Visits": 3373.0, "Total Visitors": 2817.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 7778.0, "Total Transactions": 292.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.98, "MEDIAN_SPEND_PER_CUSTOMER": 20.59 }, "geometry": { "type": "Point", "coordinates": [ -75.174639, 39.911498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8n-3nq", "LOCATION_NAME": "Perrys Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023149, "LONGITUDE": -75.061553, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010319002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 461.0, "Total Transactions": 37.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061553, 40.023149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "LOCATION_NAME": "Roses", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.039098, "LONGITUDE": -75.107749, "DATE_RANGE_START": 2019, "Total Visits": 1023.0, "Total Visitors": 800.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 26241.0, "Total Transactions": 673.0, "Total Customers": 535.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.17, "MEDIAN_SPEND_PER_CUSTOMER": 32.83 }, "geometry": { "type": "Point", "coordinates": [ -75.107749, 40.039098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.031024, "LONGITUDE": -75.099091, "DATE_RANGE_START": 2019, "Total Visits": 1051.0, "Total Visitors": 921.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 9498.0, "Total Transactions": 205.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 24.27 }, "geometry": { "type": "Point", "coordinates": [ -75.099091, 40.031024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "LOCATION_NAME": "S & S Foods", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924738, "LONGITUDE": -75.144356, "DATE_RANGE_START": 2019, "Total Visits": 770.0, "Total Visitors": 646.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 8083.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 186.0, "MEDIAN_SPEND_PER_CUSTOMER": 178.14 }, "geometry": { "type": "Point", "coordinates": [ -75.144356, 39.924738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2019, "Total Visits": 406.0, "Total Visitors": 267.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 179.0, "Total Transactions": 27.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.37, "MEDIAN_SPEND_PER_CUSTOMER": 5.37 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2019, "Total Visits": 1917.0, "Total Visitors": 1356.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 30302.0, "Total Transactions": 1546.0, "Total Customers": 1043.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.19, "MEDIAN_SPEND_PER_CUSTOMER": 16.62 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-xt9", "LOCATION_NAME": "Four Points By Sheraton", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.955952, "LONGITUDE": -75.159173, "DATE_RANGE_START": 2019, "Total Visits": 1126.0, "Total Visitors": 851.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 164.0, "Total Spend": 3124.0, "Total Transactions": 20.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 113.12, "MEDIAN_SPEND_PER_CUSTOMER": 202.35 }, "geometry": { "type": "Point", "coordinates": [ -75.159173, 39.955952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pnw-x89", "LOCATION_NAME": "Pretty Girls Cook", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97001, "LONGITUDE": -75.147605, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 53.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 4007.0, "Total Transactions": 160.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.48, "MEDIAN_SPEND_PER_CUSTOMER": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.147605, 39.97001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pgb-fxq", "LOCATION_NAME": "Cherry Street Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95699, "LONGITUDE": -75.175753, "DATE_RANGE_START": 2019, "Total Visits": 503.0, "Total Visitors": 373.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 80.0, "Total Spend": 3689.0, "Total Transactions": 102.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175753, 39.95699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm3-vzz", "LOCATION_NAME": "LaScala's Birra", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928592, "LONGITUDE": -75.165123, "DATE_RANGE_START": 2019, "Total Visits": 881.0, "Total Visitors": 723.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 15301.0, "Total Transactions": 346.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.31, "MEDIAN_SPEND_PER_CUSTOMER": 40.56 }, "geometry": { "type": "Point", "coordinates": [ -75.165123, 39.928592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-6hq", "LOCATION_NAME": "Wrap Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949717, "LONGITUDE": -75.158951, "DATE_RANGE_START": 2019, "Total Visits": 660.0, "Total Visitors": 448.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 10325.0, "Total Transactions": 308.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.92 }, "geometry": { "type": "Point", "coordinates": [ -75.158951, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "LOCATION_NAME": "South Street Souvlaki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2019, "Total Visits": 986.0, "Total Visitors": 746.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 201.0, "Total Spend": 159.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.82, "MEDIAN_SPEND_PER_CUSTOMER": 47.82 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pg3-789", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067023, "LONGITUDE": -75.178027, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 40.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 425.0, "Total Spend": 277.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.85, "MEDIAN_SPEND_PER_CUSTOMER": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.178027, 40.067023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "LOCATION_NAME": "Park Manor Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 263.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4558.0, "Total Transactions": 375.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.52, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-tn5", "LOCATION_NAME": "Koto Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948858, "LONGITUDE": -75.153256, "DATE_RANGE_START": 2019, "Total Visits": 2209.0, "Total Visitors": 1522.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 79.0, "Total Spend": 6117.0, "Total Transactions": 235.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.33, "MEDIAN_SPEND_PER_CUSTOMER": 26.26 }, "geometry": { "type": "Point", "coordinates": [ -75.153256, 39.948858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2019, "Total Visits": 416.0, "Total Visitors": 341.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6783.0, "Total Transactions": 748.0, "Total Customers": 541.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.69, "MEDIAN_SPEND_PER_CUSTOMER": 9.13 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 267.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8926.0, "Total Transactions": 1522.0, "Total Customers": 736.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.45 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2019, "Total Visits": 491.0, "Total Visitors": 338.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6196.0, "Total Transactions": 1018.0, "Total Customers": 398.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.48, "MEDIAN_SPEND_PER_CUSTOMER": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956525, "LONGITUDE": -75.195111, "DATE_RANGE_START": 2019, "Total Visits": 12156.0, "Total Visitors": 6523.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 84.0, "Total Spend": 12448.0, "Total Transactions": 1982.0, "Total Customers": 1141.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.195111, 39.956525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "LOCATION_NAME": "Sang Kee Peking Duck House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2019, "Total Visits": 445.0, "Total Visitors": 418.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 20799.0, "Total Transactions": 693.0, "Total Customers": 633.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "LOCATION_NAME": "Ruby Tuesday", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.887819, "LONGITUDE": -75.247004, "DATE_RANGE_START": 2019, "Total Visits": 1078.0, "Total Visitors": 943.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 17081.0, "Total Transactions": 411.0, "Total Customers": 350.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.22, "MEDIAN_SPEND_PER_CUSTOMER": 43.17 }, "geometry": { "type": "Point", "coordinates": [ -75.247004, 39.887819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "LOCATION_NAME": "El Rey", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2019, "Total Visits": 503.0, "Total Visitors": 435.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 42.0, "Total Spend": 33191.0, "Total Transactions": 795.0, "Total Customers": 725.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.66, "MEDIAN_SPEND_PER_CUSTOMER": 34.08 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-yqf", "LOCATION_NAME": "Chubby Cattle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954989, "LONGITUDE": -75.156236, "DATE_RANGE_START": 2019, "Total Visits": 8184.0, "Total Visitors": 5962.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 12357.0, "Total Transactions": 163.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.97, "MEDIAN_SPEND_PER_CUSTOMER": 72.03 }, "geometry": { "type": "Point", "coordinates": [ -75.156236, 39.954989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2019, "Total Visits": 581.0, "Total Visitors": 458.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 5.0, "Total Spend": 91.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.73, "MEDIAN_SPEND_PER_CUSTOMER": 12.92 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-tn5", "LOCATION_NAME": "Fat Salmon Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948136, "LONGITUDE": -75.153395, "DATE_RANGE_START": 2019, "Total Visits": 243.0, "Total Visitors": 177.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 15529.0, "Total Transactions": 368.0, "Total Customers": 321.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.02, "MEDIAN_SPEND_PER_CUSTOMER": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153395, 39.948136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2019, "Total Visits": 1641.0, "Total Visitors": 1527.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5446.0, "Total Transactions": 336.0, "Total Customers": 328.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.28, "MEDIAN_SPEND_PER_CUSTOMER": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-9vf", "LOCATION_NAME": "Clearfield Grocery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.990892, "LONGITUDE": -75.111783, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 53.0, "POI_CBG": 421010179004.0, "MEDIAN_DWELL": 145.0, "Total Spend": 159.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.75, "MEDIAN_SPEND_PER_CUSTOMER": 47.68 }, "geometry": { "type": "Point", "coordinates": [ -75.111783, 39.990892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 83.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 7440.0, "Total Transactions": 1103.0, "Total Customers": 556.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.54, "MEDIAN_SPEND_PER_CUSTOMER": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914434, "LONGITUDE": -75.156267, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 491.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4220.0, "Total Transactions": 770.0, "Total Customers": 438.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.6, "MEDIAN_SPEND_PER_CUSTOMER": 6.03 }, "geometry": { "type": "Point", "coordinates": [ -75.156267, 39.914434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095264, "LONGITUDE": -75.015635, "DATE_RANGE_START": 2019, "Total Visits": 2194.0, "Total Visitors": 1599.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6281.0, "Total Transactions": 773.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.54, "MEDIAN_SPEND_PER_CUSTOMER": 9.77 }, "geometry": { "type": "Point", "coordinates": [ -75.015635, 40.095264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "LOCATION_NAME": "Boostin' Bowls", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6272.0, "Total Transactions": 450.0, "Total Customers": 338.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.6, "MEDIAN_SPEND_PER_CUSTOMER": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-php-zs5", "LOCATION_NAME": "The Mattress Man", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.061005, "LONGITUDE": -75.167487, "DATE_RANGE_START": 2019, "Total Visits": 158.0, "Total Visitors": 135.0, "POI_CBG": 421010264005.0, "MEDIAN_DWELL": 26.0, "Total Spend": 2995.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 899.08, "MEDIAN_SPEND_PER_CUSTOMER": 899.08 }, "geometry": { "type": "Point", "coordinates": [ -75.167487, 40.061005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "LOCATION_NAME": "Girard Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 35.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 64.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.24 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj2-mp9", "LOCATION_NAME": "The Apple Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.005425, "LONGITUDE": -75.098798, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 62.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 31.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098798, 40.005425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pfv-649", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043396, "LONGITUDE": -75.190646, "DATE_RANGE_START": 2019, "Total Visits": 503.0, "Total Visitors": 368.0, "POI_CBG": 421010237001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5055.0, "Total Transactions": 558.0, "Total Customers": 293.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.35, "MEDIAN_SPEND_PER_CUSTOMER": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.190646, 40.043396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.069743, "LONGITUDE": -75.051689, "DATE_RANGE_START": 2019, "Total Visits": 700.0, "Total Visitors": 546.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 88.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051689, 40.069743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-y7q", "LOCATION_NAME": "The Post", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952733, "LONGITUDE": -75.18366, "DATE_RANGE_START": 2019, "Total Visits": 1219.0, "Total Visitors": 826.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 31.0, "Total Spend": 7592.0, "Total Transactions": 223.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.99, "MEDIAN_SPEND_PER_CUSTOMER": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.18366, 39.952733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "LOCATION_NAME": "Papa Nick's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 47.0, "POI_CBG": 421010272003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 788.0, "Total Transactions": 42.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.95, "MEDIAN_SPEND_PER_CUSTOMER": 18.74 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2019, "Total Visits": 16237.0, "Total Visitors": 9386.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 85.0, "Total Spend": 18245.0, "Total Transactions": 446.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.93, "MEDIAN_SPEND_PER_CUSTOMER": 31.08 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "LOCATION_NAME": "Georgian Bread Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2019, "Total Visits": 436.0, "Total Visitors": 356.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 218.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2019, "Total Visits": 590.0, "Total Visitors": 411.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 28978.0, "Total Transactions": 786.0, "Total Customers": 698.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.93, "MEDIAN_SPEND_PER_CUSTOMER": 31.37 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "LOCATION_NAME": "Greek Lady", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2019, "Total Visits": 740.0, "Total Visitors": 663.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 51.0, "Total Spend": 18903.0, "Total Transactions": 1318.0, "Total Customers": 941.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "LOCATION_NAME": "Super Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 48.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 100.0, "Total Spend": 795.0, "Total Transactions": 45.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.92, "MEDIAN_SPEND_PER_CUSTOMER": 20.54 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "LOCATION_NAME": "New Deck Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953506, "LONGITUDE": -75.192591, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 57.0, "Total Spend": 24993.0, "Total Transactions": 766.0, "Total Customers": 626.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.42, "MEDIAN_SPEND_PER_CUSTOMER": 32.65 }, "geometry": { "type": "Point", "coordinates": [ -75.192591, 39.953506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "LOCATION_NAME": "Cafe Soho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2019, "Total Visits": 293.0, "Total Visitors": 245.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 16740.0, "Total Transactions": 455.0, "Total Customers": 375.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.42 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 65.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032391, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2019, "Total Visits": 856.0, "Total Visitors": 675.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8998.0, "Total Transactions": 830.0, "Total Customers": 655.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.14, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.032391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 148.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4640.0, "Total Transactions": 771.0, "Total Customers": 330.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.27, "MEDIAN_SPEND_PER_CUSTOMER": 8.98 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-8y9", "LOCATION_NAME": "The Pharmacy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934901, "LONGITUDE": -75.174223, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 82.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 72.0, "Total Spend": 86.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.81, "MEDIAN_SPEND_PER_CUSTOMER": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.174223, 39.934901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "LOCATION_NAME": "Shot Tower Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2019, "Total Visits": 250.0, "Total Visitors": 185.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5488.0, "Total Transactions": 578.0, "Total Customers": 311.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "LOCATION_NAME": "Cry Baby Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2019, "Total Visits": 1489.0, "Total Visitors": 1156.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 45.0, "Total Spend": 6034.0, "Total Transactions": 58.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.56, "MEDIAN_SPEND_PER_CUSTOMER": 95.24 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "LOCATION_NAME": "Thai Singha House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95527, "LONGITUDE": -75.20037, "DATE_RANGE_START": 2019, "Total Visits": 2469.0, "Total Visitors": 1544.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 54.0, "Total Spend": 1910.0, "Total Transactions": 80.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.51, "MEDIAN_SPEND_PER_CUSTOMER": 21.81 }, "geometry": { "type": "Point", "coordinates": [ -75.20037, 39.95527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-y9z", "LOCATION_NAME": "Bella Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941863, "LONGITUDE": -75.148989, "DATE_RANGE_START": 2019, "Total Visits": 3335.0, "Total Visitors": 2748.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 21.0, "Total Spend": 570.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148989, 39.941863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2019, "Total Visits": 911.0, "Total Visitors": 685.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 9992.0, "Total Transactions": 958.0, "Total Customers": 690.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.61, "MEDIAN_SPEND_PER_CUSTOMER": 10.33 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7v-f2k", "LOCATION_NAME": "Raymour & Flanigan Outlet", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.051034, "LONGITUDE": -75.064888, "DATE_RANGE_START": 2019, "Total Visits": 1076.0, "Total Visitors": 896.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 945.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 283.63, "MEDIAN_SPEND_PER_CUSTOMER": 283.63 }, "geometry": { "type": "Point", "coordinates": [ -75.064888, 40.051034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040962, "LONGITUDE": -75.223848, "DATE_RANGE_START": 2019, "Total Visits": 1059.0, "Total Visitors": 785.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 12122.0, "Total Transactions": 441.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.79, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223848, 40.040962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2019, "Total Visits": 1879.0, "Total Visitors": 1371.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3751.0, "Total Transactions": 198.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-8sq", "LOCATION_NAME": "Edible Arrangements", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.949551, "LONGITUDE": -75.160537, "DATE_RANGE_START": 2019, "Total Visits": 813.0, "Total Visitors": 633.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 143.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.98, "MEDIAN_SPEND_PER_CUSTOMER": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160537, 39.949551 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-975", "LOCATION_NAME": "Avril 50", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.953493, "LONGITUDE": -75.192528, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 57.0, "Total Spend": 988.0, "Total Transactions": 40.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.51, "MEDIAN_SPEND_PER_CUSTOMER": 26.35 }, "geometry": { "type": "Point", "coordinates": [ -75.192528, 39.953493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj2-dvz", "LOCATION_NAME": "Sosa Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009118, "LONGITUDE": -75.102792, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010191003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 57.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.11, "MEDIAN_SPEND_PER_CUSTOMER": 8.11 }, "geometry": { "type": "Point", "coordinates": [ -75.102792, 40.009118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p74-y5f", "LOCATION_NAME": "Mr Wheelchair", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 40.041366, "LONGITUDE": -75.028788, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010331023.0, "MEDIAN_DWELL": null, "Total Spend": 763.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 229.0, "MEDIAN_SPEND_PER_CUSTOMER": 229.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028788, 40.041366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904365, "LONGITUDE": -75.169382, "DATE_RANGE_START": 2019, "Total Visits": 7977.0, "Total Visitors": 6593.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 5231.0, "Total Transactions": 323.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.28, "MEDIAN_SPEND_PER_CUSTOMER": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169382, 39.904365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "LOCATION_NAME": "Capital Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 85.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3095.0, "Total Transactions": 155.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.05, "MEDIAN_SPEND_PER_CUSTOMER": 18.53 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "LOCATION_NAME": "Khyber Pass Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2019, "Total Visits": 683.0, "Total Visitors": 636.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 24100.0, "Total Transactions": 616.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.49, "MEDIAN_SPEND_PER_CUSTOMER": 35.14 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-p35", "LOCATION_NAME": "Jhoandra Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007461, "LONGITUDE": -75.138722, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 55.0, "POI_CBG": 421010199001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 87.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138722, 40.007461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "LOCATION_NAME": "Pub & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 73.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 78.0, "Total Spend": 7367.0, "Total Transactions": 97.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.96, "MEDIAN_SPEND_PER_CUSTOMER": 55.85 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dwf-td9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902299, "LONGITUDE": -75.242062, "DATE_RANGE_START": 2019, "Total Visits": 143.0, "Total Visitors": 128.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5419.0, "Total Transactions": 408.0, "Total Customers": 330.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.78 }, "geometry": { "type": "Point", "coordinates": [ -75.242062, 39.902299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2019, "Total Visits": 440.0, "Total Visitors": 393.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8817.0, "Total Transactions": 778.0, "Total Customers": 591.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.04, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-ks5", "LOCATION_NAME": "The Spice Rack", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.075333, "LONGITUDE": -75.206122, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 303.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206122, 40.075333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7y-gzf", "LOCATION_NAME": "Mill Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.053776, "LONGITUDE": -75.092099, "DATE_RANGE_START": 2019, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": null, "Total Spend": 656.0, "Total Transactions": 47.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092099, 40.053776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kj9", "LOCATION_NAME": "Fleur De Lis Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950913, "LONGITUDE": -75.176137, "DATE_RANGE_START": 2019, "Total Visits": 6045.0, "Total Visitors": 4211.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1796.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.4, "MEDIAN_SPEND_PER_CUSTOMER": 82.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176137, 39.950913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgg-pvz", "LOCATION_NAME": "Piccadilly Club", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.003812, "LONGITUDE": -75.178504, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 53.0, "POI_CBG": 421010171004.0, "MEDIAN_DWELL": 101.0, "Total Spend": 993.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 154.0, "MEDIAN_SPEND_PER_CUSTOMER": 298.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178504, 40.003812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "LOCATION_NAME": "House of Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2019, "Total Visits": 1834.0, "Total Visitors": 1393.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2221.0, "Total Transactions": 70.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.61, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-rkz", "LOCATION_NAME": "Cafe Lutecia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946587, "LONGITUDE": -75.179627, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 80.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 465.0, "Total Spend": 3049.0, "Total Transactions": 105.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.35, "MEDIAN_SPEND_PER_CUSTOMER": 27.02 }, "geometry": { "type": "Point", "coordinates": [ -75.179627, 39.946587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 137.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7521.0, "Total Transactions": 605.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 12.51 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pg5-2tv", "LOCATION_NAME": "Morton Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.04563, "LONGITUDE": -75.176218, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 57.0, "POI_CBG": 421010252004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 34.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.63, "MEDIAN_SPEND_PER_CUSTOMER": 4.25 }, "geometry": { "type": "Point", "coordinates": [ -75.176218, 40.04563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "LOCATION_NAME": "The Bottle Shop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 42.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 14954.0, "Total Transactions": 773.0, "Total Customers": 546.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p74-vs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.040935, "LONGITUDE": -75.030449, "DATE_RANGE_START": 2019, "Total Visits": 1374.0, "Total Visitors": 781.0, "POI_CBG": 421010331023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 427.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.31, "MEDIAN_SPEND_PER_CUSTOMER": 27.37 }, "geometry": { "type": "Point", "coordinates": [ -75.030449, 40.040935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-235@628-pmf-jd9", "LOCATION_NAME": "The Men's Wearhouse", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951253, "LONGITUDE": -75.168383, "DATE_RANGE_START": 2019, "Total Visits": 1646.0, "Total Visitors": 1166.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 180.0, "Total Spend": 5361.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 139.98, "MEDIAN_SPEND_PER_CUSTOMER": 159.07 }, "geometry": { "type": "Point", "coordinates": [ -75.168383, 39.951253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-hdv", "LOCATION_NAME": "The Book Corner", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.960171, "LONGITUDE": -75.171295, "DATE_RANGE_START": 2019, "Total Visits": 911.0, "Total Visitors": 700.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 1100.0, "Total Transactions": 130.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.171295, 39.960171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-bzf", "LOCATION_NAME": "Penn City Auto Stores", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.915656, "LONGITUDE": -75.239326, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 23.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": 223.0, "Total Spend": 6307.0, "Total Transactions": 60.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.45, "MEDIAN_SPEND_PER_CUSTOMER": 69.98 }, "geometry": { "type": "Point", "coordinates": [ -75.239326, 39.915656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "LOCATION_NAME": "Frank's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 25.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2010.0, "Total Transactions": 113.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.92, "MEDIAN_SPEND_PER_CUSTOMER": 23.86 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg9-vzz", "LOCATION_NAME": "Fairmount Bicycles", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.967501, "LONGITUDE": -75.170829, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 30.0, "POI_CBG": 421010135002.0, "MEDIAN_DWELL": 817.0, "Total Spend": 6880.0, "Total Transactions": 80.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170829, 39.967501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj5-jqf", "LOCATION_NAME": "Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002083, "LONGITUDE": -75.132811, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 77.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1205.0, "Total Transactions": 58.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.76, "MEDIAN_SPEND_PER_CUSTOMER": 22.26 }, "geometry": { "type": "Point", "coordinates": [ -75.132811, 40.002083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-249", "LOCATION_NAME": "Two Brothers Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003487, "LONGITUDE": -75.150398, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 52.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 56.0, "Total Spend": 4505.0, "Total Transactions": 217.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 21.88 }, "geometry": { "type": "Point", "coordinates": [ -75.150398, 40.003487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "LOCATION_NAME": "City View Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2019, "Total Visits": 380.0, "Total Visitors": 316.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 25856.0, "Total Transactions": 1776.0, "Total Customers": 1244.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.07, "MEDIAN_SPEND_PER_CUSTOMER": 15.82 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pmf-hh5", "LOCATION_NAME": "Koreana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952324, "LONGITUDE": -75.171634, "DATE_RANGE_START": 2019, "Total Visits": 371.0, "Total Visitors": 282.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 60.0, "Total Spend": 7496.0, "Total Transactions": 520.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.43, "MEDIAN_SPEND_PER_CUSTOMER": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.171634, 39.952324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "LOCATION_NAME": "Champ's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 108.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 18032.0, "Total Transactions": 1008.0, "Total Customers": 765.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.2, "MEDIAN_SPEND_PER_CUSTOMER": 18.38 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "LOCATION_NAME": "2nd Street Brew House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 52.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 41.0, "Total Spend": 5133.0, "Total Transactions": 185.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.5, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8sq", "LOCATION_NAME": "District Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95167, "LONGITUDE": -75.159171, "DATE_RANGE_START": 2019, "Total Visits": 12633.0, "Total Visitors": 9132.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.68, "MEDIAN_SPEND_PER_CUSTOMER": 12.68 }, "geometry": { "type": "Point", "coordinates": [ -75.159171, 39.95167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ygk", "LOCATION_NAME": "QT Vietnamese Sandwich", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953408, "LONGITUDE": -75.156559, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 486.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 745.0, "Total Transactions": 63.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156559, 39.953408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm8-djv", "LOCATION_NAME": "Celebre Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911364, "LONGITUDE": -75.175337, "DATE_RANGE_START": 2019, "Total Visits": 160.0, "Total Visitors": 128.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 91.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.35, "MEDIAN_SPEND_PER_CUSTOMER": 27.35 }, "geometry": { "type": "Point", "coordinates": [ -75.175337, 39.911364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "LOCATION_NAME": "Microtel Inn and Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2019, "Total Visits": 1109.0, "Total Visitors": 741.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 309.0, "Total Spend": 9715.0, "Total Transactions": 70.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.56, "MEDIAN_SPEND_PER_CUSTOMER": 105.72 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "LOCATION_NAME": "Charlie Was a Sinner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 235.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 30011.0, "Total Transactions": 546.0, "Total Customers": 511.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.66, "MEDIAN_SPEND_PER_CUSTOMER": 43.46 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgd-z9f", "LOCATION_NAME": "Pita Chip", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956634, "LONGITUDE": -75.194194, "DATE_RANGE_START": 2019, "Total Visits": 12156.0, "Total Visitors": 6523.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 84.0, "Total Spend": 11148.0, "Total Transactions": 1118.0, "Total Customers": 800.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.37, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.194194, 39.956634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2019, "Total Visits": 496.0, "Total Visitors": 381.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2802.0, "Total Transactions": 356.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.55, "MEDIAN_SPEND_PER_CUSTOMER": 8.09 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-vvf", "LOCATION_NAME": "Pret A Manger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955744, "LONGITUDE": -75.181965, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 21298.0, "Total Transactions": 2419.0, "Total Customers": 1811.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.181965, 39.955744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pg9-vpv", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967164, "LONGITUDE": -75.172278, "DATE_RANGE_START": 2019, "Total Visits": 1163.0, "Total Visitors": 924.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 33.0, "Total Spend": 5345.0, "Total Transactions": 688.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.08, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172278, 39.967164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "LOCATION_NAME": "Crash Bang Boom", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2019, "Total Visits": 1857.0, "Total Visitors": 1744.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 290.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.16, "MEDIAN_SPEND_PER_CUSTOMER": 76.16 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 40.079117, "LONGITUDE": -75.027659, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 175.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 213.0, "Total Spend": 2586.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.33, "MEDIAN_SPEND_PER_CUSTOMER": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.027659, 40.079117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "LOCATION_NAME": "Best Buy Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.078042, "LONGITUDE": -75.024894, "DATE_RANGE_START": 2019, "Total Visits": 6281.0, "Total Visitors": 4394.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 5990.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 600.0, "MEDIAN_SPEND_PER_CUSTOMER": 600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024894, 40.078042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "LOCATION_NAME": "Royal Farms", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2019, "Total Visits": 2052.0, "Total Visitors": 1514.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 40983.0, "Total Transactions": 2339.0, "Total Customers": 1131.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.23, "MEDIAN_SPEND_PER_CUSTOMER": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "LOCATION_NAME": "Evan's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 32.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 27.0, "Total Spend": 3989.0, "Total Transactions": 278.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.47, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "LOCATION_NAME": "Marine Layer", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949625, "LONGITUDE": -75.16782, "DATE_RANGE_START": 2019, "Total Visits": 2555.0, "Total Visitors": 1889.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 30.0, "Total Spend": 1402.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 104.0, "MEDIAN_SPEND_PER_CUSTOMER": 115.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16782, 39.949625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2019, "Total Visits": 483.0, "Total Visitors": 360.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 152.0, "Total Spend": 4361.0, "Total Transactions": 47.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 112.45 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvw-gzf", "LOCATION_NAME": "Connie's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957128, "LONGITUDE": -75.225058, "DATE_RANGE_START": 2019, "Total Visits": 303.0, "Total Visitors": 272.0, "POI_CBG": 421010085002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.24, "MEDIAN_SPEND_PER_CUSTOMER": 3.24 }, "geometry": { "type": "Point", "coordinates": [ -75.225058, 39.957128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 65.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 64.0, "Total Spend": 13238.0, "Total Transactions": 1059.0, "Total Customers": 593.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.98, "MEDIAN_SPEND_PER_CUSTOMER": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.952664, "LONGITUDE": -75.15622, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 60.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1844.0, "Total Transactions": 237.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.86, "MEDIAN_SPEND_PER_CUSTOMER": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.15622, 39.952664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2019, "Total Visits": 875.0, "Total Visitors": 575.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 611.0, "Total Transactions": 80.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.96, "MEDIAN_SPEND_PER_CUSTOMER": 9.06 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-f75", "LOCATION_NAME": "Beer City", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.972301, "LONGITUDE": -75.125884, "DATE_RANGE_START": 2019, "Total Visits": 538.0, "Total Visitors": 358.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 64.0, "Total Spend": 12270.0, "Total Transactions": 498.0, "Total Customers": 346.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.97, "MEDIAN_SPEND_PER_CUSTOMER": 27.89 }, "geometry": { "type": "Point", "coordinates": [ -75.125884, 39.972301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "LOCATION_NAME": "Northeast Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2019, "Total Visits": 145.0, "Total Visitors": 80.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 82.0, "Total Spend": 2742.0, "Total Transactions": 78.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.29, "MEDIAN_SPEND_PER_CUSTOMER": 43.07 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947798, "LONGITUDE": -75.1598, "DATE_RANGE_START": 2019, "Total Visits": 2177.0, "Total Visitors": 1487.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 43.0, "Total Spend": 13147.0, "Total Transactions": 846.0, "Total Customers": 491.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.87, "MEDIAN_SPEND_PER_CUSTOMER": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.1598, 39.947798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-3dv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940442, "LONGITUDE": -75.166876, "DATE_RANGE_START": 2019, "Total Visits": 533.0, "Total Visitors": 351.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4922.0, "Total Transactions": 262.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.76, "MEDIAN_SPEND_PER_CUSTOMER": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.166876, 39.940442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-6tv", "LOCATION_NAME": "Eternity Fashion", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951034, "LONGITUDE": -75.166595, "DATE_RANGE_START": 2019, "Total Visits": 646.0, "Total Visitors": 368.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 91.0, "Total Spend": 11840.0, "Total Transactions": 323.0, "Total Customers": 300.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.98, "MEDIAN_SPEND_PER_CUSTOMER": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166595, 39.951034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-vcq", "LOCATION_NAME": "The Dolphin Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.930579, "LONGITUDE": -75.167937, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 72.0, "POI_CBG": 421010029002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 703.0, "Total Transactions": 27.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167937, 39.930579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "LOCATION_NAME": "Varga Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 167.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 17.0, "Total Spend": 13084.0, "Total Transactions": 348.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.02, "MEDIAN_SPEND_PER_CUSTOMER": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "LOCATION_NAME": "Moonlight Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 258.0, "POI_CBG": 421010265004.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1782.0, "Total Transactions": 68.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp4-qmk", "LOCATION_NAME": "Pizza Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978207, "LONGITUDE": -75.119477, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 95.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4789.0, "Total Transactions": 223.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.26, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.119477, 39.978207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgj-75z", "LOCATION_NAME": "L & K Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.98765, "LONGITUDE": -75.167446, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 105.0, "POI_CBG": 421010152002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 65.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.55, "MEDIAN_SPEND_PER_CUSTOMER": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167446, 39.98765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "LOCATION_NAME": "Cottman Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 208.0, "POI_CBG": 421010331013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4001.0, "Total Transactions": 165.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.39, "MEDIAN_SPEND_PER_CUSTOMER": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p7v-qj9", "LOCATION_NAME": "Oxford Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.066404, "LONGITUDE": -75.083593, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 118.0, "POI_CBG": 421010339001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 19080.0, "Total Transactions": 571.0, "Total Customers": 335.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.74, "MEDIAN_SPEND_PER_CUSTOMER": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.083593, 40.066404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-qvf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.03237, "LONGITUDE": -75.101559, "DATE_RANGE_START": 2019, "Total Visits": 873.0, "Total Visitors": 788.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6487.0, "Total Transactions": 105.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.78, "MEDIAN_SPEND_PER_CUSTOMER": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.101559, 40.03237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp2-qzz", "LOCATION_NAME": "Cambridge Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.994215, "LONGITUDE": -75.097432, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 127.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.32, "MEDIAN_SPEND_PER_CUSTOMER": 12.32 }, "geometry": { "type": "Point", "coordinates": [ -75.097432, 39.994215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.031542, "LONGITUDE": -75.100256, "DATE_RANGE_START": 2019, "Total Visits": 220.0, "Total Visitors": 203.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5222.0, "Total Transactions": 88.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.48, "MEDIAN_SPEND_PER_CUSTOMER": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.100256, 40.031542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045011, "LONGITUDE": -75.144262, "DATE_RANGE_START": 2019, "Total Visits": 635.0, "Total Visitors": 516.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 432.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.13, "MEDIAN_SPEND_PER_CUSTOMER": 15.78 }, "geometry": { "type": "Point", "coordinates": [ -75.144262, 40.045011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dwg-g6k", "LOCATION_NAME": "United", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.917055, "LONGITUDE": -75.235223, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 60.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12517.0, "Total Transactions": 330.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.11 }, "geometry": { "type": "Point", "coordinates": [ -75.235223, 39.917055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.92482, "LONGITUDE": -75.146253, "DATE_RANGE_START": 2019, "Total Visits": 9861.0, "Total Visitors": 6550.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 526075.0, "Total Transactions": 10173.0, "Total Customers": 5963.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.47, "MEDIAN_SPEND_PER_CUSTOMER": 53.37 }, "geometry": { "type": "Point", "coordinates": [ -75.146253, 39.92482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2019, "Total Visits": 4019.0, "Total Visitors": 2718.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 257408.0, "Total Transactions": 8222.0, "Total Customers": 4393.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.2, "MEDIAN_SPEND_PER_CUSTOMER": 36.86 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp4-kfz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.987233, "LONGITUDE": -75.129676, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 461.0, "POI_CBG": 421010161004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2253.0, "Total Transactions": 210.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.68, "MEDIAN_SPEND_PER_CUSTOMER": 10.82 }, "geometry": { "type": "Point", "coordinates": [ -75.129676, 39.987233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j9z", "LOCATION_NAME": "aka.", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.950397, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2019, "Total Visits": 656.0, "Total Visitors": 523.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 136.0, "Total Spend": 4626.0, "Total Transactions": 173.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.13, "MEDIAN_SPEND_PER_CUSTOMER": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.950397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmf-jgk", "LOCATION_NAME": "Dizengoff", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950806, "LONGITUDE": -75.168528, "DATE_RANGE_START": 2019, "Total Visits": 851.0, "Total Visitors": 628.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 112.0, "Total Spend": 12138.0, "Total Transactions": 750.0, "Total Customers": 643.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.2, "MEDIAN_SPEND_PER_CUSTOMER": 14.95 }, "geometry": { "type": "Point", "coordinates": [ -75.168528, 39.950806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "LOCATION_NAME": "My Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945111, "LONGITUDE": -75.178763, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 117.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1965.0, "Total Transactions": 60.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.35, "MEDIAN_SPEND_PER_CUSTOMER": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178763, 39.945111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-59f", "LOCATION_NAME": "Bellissima Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058663, "LONGITUDE": -75.059466, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 123.0, "POI_CBG": 421010336002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1812.0, "Total Transactions": 80.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.38, "MEDIAN_SPEND_PER_CUSTOMER": 24.75 }, "geometry": { "type": "Point", "coordinates": [ -75.059466, 40.058663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "LOCATION_NAME": "Steak 'Em Up", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 77.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2427.0, "Total Transactions": 115.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.15, "MEDIAN_SPEND_PER_CUSTOMER": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "LOCATION_NAME": "Race Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2019, "Total Visits": 158.0, "Total Visitors": 132.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 7369.0, "Total Transactions": 157.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.5, "MEDIAN_SPEND_PER_CUSTOMER": 41.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "LOCATION_NAME": "Oyster House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2019, "Total Visits": 741.0, "Total Visitors": 640.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 50.0, "Total Spend": 51999.0, "Total Transactions": 650.0, "Total Customers": 565.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.12, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "LOCATION_NAME": "Trio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968734, "LONGITUDE": -75.180754, "DATE_RANGE_START": 2019, "Total Visits": 343.0, "Total Visitors": 175.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 62.0, "Total Spend": 9303.0, "Total Transactions": 508.0, "Total Customers": 353.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.72, "MEDIAN_SPEND_PER_CUSTOMER": 14.39 }, "geometry": { "type": "Point", "coordinates": [ -75.180754, 39.968734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "LOCATION_NAME": "Yiro Yiro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032303, "LONGITUDE": -75.214323, "DATE_RANGE_START": 2019, "Total Visits": 3205.0, "Total Visitors": 1774.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 7094.0, "Total Transactions": 411.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.214323, 40.032303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "LOCATION_NAME": "Museum Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2019, "Total Visits": 188.0, "Total Visitors": 142.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3593.0, "Total Transactions": 353.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.4, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2019, "Total Visits": 16667.0, "Total Visitors": 9353.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 21783.0, "Total Transactions": 511.0, "Total Customers": 406.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 31.83 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "LOCATION_NAME": "Shoe Carnival", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.049924, "LONGITUDE": -75.062397, "DATE_RANGE_START": 2019, "Total Visits": 1311.0, "Total Visitors": 1033.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 13793.0, "Total Transactions": 262.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.97, "MEDIAN_SPEND_PER_CUSTOMER": 57.85 }, "geometry": { "type": "Point", "coordinates": [ -75.062397, 40.049924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-jjv", "LOCATION_NAME": "MAC Cosmetics", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951489, "LONGITUDE": -75.170193, "DATE_RANGE_START": 2019, "Total Visits": 4751.0, "Total Visitors": 3187.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 114.0, "Total Spend": 1803.0, "Total Transactions": 40.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.48, "MEDIAN_SPEND_PER_CUSTOMER": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.170193, 39.951489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-mx5", "LOCATION_NAME": "Real Food Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952907, "LONGITUDE": -75.169077, "DATE_RANGE_START": 2019, "Total Visits": 15803.0, "Total Visitors": 8064.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 258.0, "Total Spend": 7767.0, "Total Transactions": 580.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.1, "MEDIAN_SPEND_PER_CUSTOMER": 12.91 }, "geometry": { "type": "Point", "coordinates": [ -75.169077, 39.952907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "LOCATION_NAME": "Ritz Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2019, "Total Visits": 1389.0, "Total Visitors": 1126.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 11646.0, "Total Transactions": 408.0, "Total Customers": 330.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.89, "MEDIAN_SPEND_PER_CUSTOMER": 28.42 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2019, "Total Visits": 130.0, "Total Visitors": 75.0, "POI_CBG": 421010093005.0, "MEDIAN_DWELL": 86.0, "Total Spend": 787.0, "Total Transactions": 53.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.52, "MEDIAN_SPEND_PER_CUSTOMER": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p72-5s5", "LOCATION_NAME": "Three Monkeys Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.053948, "LONGITUDE": -74.983889, "DATE_RANGE_START": 2019, "Total Visits": 845.0, "Total Visitors": 656.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 876.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.37, "MEDIAN_SPEND_PER_CUSTOMER": 64.54 }, "geometry": { "type": "Point", "coordinates": [ -74.983889, 40.053948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnz-zj9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.99116, "LONGITUDE": -75.102091, "DATE_RANGE_START": 2019, "Total Visits": 553.0, "Total Visitors": 408.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 665.0, "Total Transactions": 28.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.16 }, "geometry": { "type": "Point", "coordinates": [ -75.102091, 39.99116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgf-6zf", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.963777, "LONGITUDE": -75.203645, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 145.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2638.0, "Total Transactions": 37.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.98, "MEDIAN_SPEND_PER_CUSTOMER": 62.48 }, "geometry": { "type": "Point", "coordinates": [ -75.203645, 39.963777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029081, "LONGITUDE": -75.125232, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 223.0, "POI_CBG": 421010286001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 15798.0, "Total Transactions": 351.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 31.44 }, "geometry": { "type": "Point", "coordinates": [ -75.125232, 40.029081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "LOCATION_NAME": "Clarkville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949731, "LONGITUDE": -75.209453, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 65.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 17634.0, "Total Transactions": 541.0, "Total Customers": 475.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.28, "MEDIAN_SPEND_PER_CUSTOMER": 29.84 }, "geometry": { "type": "Point", "coordinates": [ -75.209453, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-wc5", "LOCATION_NAME": "Renzis Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029921, "LONGITUDE": -75.062595, "DATE_RANGE_START": 2019, "Total Visits": 182.0, "Total Visitors": 100.0, "POI_CBG": 421010316004.0, "MEDIAN_DWELL": 838.0, "Total Spend": 2320.0, "Total Transactions": 103.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.08, "MEDIAN_SPEND_PER_CUSTOMER": 23.57 }, "geometry": { "type": "Point", "coordinates": [ -75.062595, 40.029921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "LOCATION_NAME": "Double Knot", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2019, "Total Visits": 553.0, "Total Visitors": 446.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 33298.0, "Total Transactions": 546.0, "Total Customers": 400.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.6, "MEDIAN_SPEND_PER_CUSTOMER": 46.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "LOCATION_NAME": "Sonnys Famous Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949796, "LONGITUDE": -75.144721, "DATE_RANGE_START": 2019, "Total Visits": 120.0, "Total Visitors": 102.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 28094.0, "Total Transactions": 1329.0, "Total Customers": 1204.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144721, 39.949796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phj-rp9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.07278, "LONGITUDE": -75.15833, "DATE_RANGE_START": 2019, "Total Visits": 2475.0, "Total Visitors": 1662.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 6.0, "Total Spend": 447.0, "Total Transactions": 15.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.07, "MEDIAN_SPEND_PER_CUSTOMER": 34.37 }, "geometry": { "type": "Point", "coordinates": [ -75.15833, 40.07278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "LOCATION_NAME": "House of Kosher", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2019, "Total Visits": 375.0, "Total Visitors": 233.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 16443.0, "Total Transactions": 208.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.01, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-qs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.912518, "LONGITUDE": -75.243563, "DATE_RANGE_START": 2019, "Total Visits": 1459.0, "Total Visitors": 1008.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 910.0, "Total Transactions": 42.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.26, "MEDIAN_SPEND_PER_CUSTOMER": 25.72 }, "geometry": { "type": "Point", "coordinates": [ -75.243563, 39.912518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-y5f", "LOCATION_NAME": "Reef Restaurant & Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941163, "LONGITUDE": -75.147404, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 122.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 335.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.78, "MEDIAN_SPEND_PER_CUSTOMER": 51.78 }, "geometry": { "type": "Point", "coordinates": [ -75.147404, 39.941163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012073, "LONGITUDE": -75.115248, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 265.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 557.0, "Total Transactions": 45.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.115248, 40.012073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2019, "Total Visits": 401.0, "Total Visitors": 250.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1279.0, "Total Transactions": 202.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.05, "MEDIAN_SPEND_PER_CUSTOMER": 5.81 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6x5", "LOCATION_NAME": "Amma's South Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950885, "LONGITUDE": -75.166421, "DATE_RANGE_START": 2019, "Total Visits": 12130.0, "Total Visitors": 8380.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 16597.0, "Total Transactions": 451.0, "Total Customers": 398.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.27, "MEDIAN_SPEND_PER_CUSTOMER": 32.29 }, "geometry": { "type": "Point", "coordinates": [ -75.166421, 39.950885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2019, "Total Visits": 651.0, "Total Visitors": 493.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4497.0, "Total Transactions": 745.0, "Total Customers": 380.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.16, "MEDIAN_SPEND_PER_CUSTOMER": 7.24 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2019, "Total Visits": 285.0, "Total Visitors": 220.0, "POI_CBG": 421010101005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4837.0, "Total Transactions": 760.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.45, "MEDIAN_SPEND_PER_CUSTOMER": 7.53 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "LOCATION_NAME": "Hadramout", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 63.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 184.0, "Total Spend": 3719.0, "Total Transactions": 108.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.46, "MEDIAN_SPEND_PER_CUSTOMER": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pg2-hbk", "LOCATION_NAME": "Milo The Meeting House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060155, "LONGITUDE": -75.19073, "DATE_RANGE_START": 2019, "Total Visits": 381.0, "Total Visitors": 318.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 23.0, "Total Spend": 2159.0, "Total Transactions": 93.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.08, "MEDIAN_SPEND_PER_CUSTOMER": 24.62 }, "geometry": { "type": "Point", "coordinates": [ -75.19073, 40.060155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2019, "Total Visits": 2004.0, "Total Visitors": 1276.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 51342.0, "Total Transactions": 7872.0, "Total Customers": 3060.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.48, "MEDIAN_SPEND_PER_CUSTOMER": 9.11 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmb-kj9", "LOCATION_NAME": "Oui", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953782, "LONGITUDE": -75.145092, "DATE_RANGE_START": 2019, "Total Visits": 2247.0, "Total Visitors": 1801.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 96.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.8, "MEDIAN_SPEND_PER_CUSTOMER": 28.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145092, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-wx5", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.903669, "LONGITUDE": -75.238891, "DATE_RANGE_START": 2019, "Total Visits": 871.0, "Total Visitors": 633.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 2195.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.35, "MEDIAN_SPEND_PER_CUSTOMER": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.238891, 39.903669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "LOCATION_NAME": "Fair Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.968488, "LONGITUDE": -75.180495, "DATE_RANGE_START": 2019, "Total Visits": 1131.0, "Total Visitors": 750.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 221.0, "Total Spend": 4511.0, "Total Transactions": 435.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.2, "MEDIAN_SPEND_PER_CUSTOMER": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.180495, 39.968488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2019, "Total Visits": 573.0, "Total Visitors": 461.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8773.0, "Total Transactions": 1439.0, "Total Customers": 755.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.91, "MEDIAN_SPEND_PER_CUSTOMER": 7.66 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phq-gff", "LOCATION_NAME": "Takka Grill & Shrimpie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067474, "LONGITUDE": -75.147141, "DATE_RANGE_START": 2019, "Total Visits": 446.0, "Total Visitors": 230.0, "POI_CBG": 421010266003.0, "MEDIAN_DWELL": 461.0, "Total Spend": 1524.0, "Total Transactions": 98.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147141, 40.067474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953745, "LONGITUDE": -75.172854, "DATE_RANGE_START": 2019, "Total Visits": 5797.0, "Total Visitors": 3073.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 120.0, "Total Spend": 17762.0, "Total Transactions": 1078.0, "Total Customers": 710.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.14, "MEDIAN_SPEND_PER_CUSTOMER": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.172854, 39.953745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg4-grk", "LOCATION_NAME": "1beautysupplypa", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.030533, "LONGITUDE": -75.181364, "DATE_RANGE_START": 2019, "Total Visits": 919.0, "Total Visitors": 700.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5970.0, "Total Transactions": 250.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.98, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.181364, 40.030533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.005166, "LONGITUDE": -75.108882, "DATE_RANGE_START": 2019, "Total Visits": 2830.0, "Total Visitors": 1871.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 33066.0, "Total Transactions": 1566.0, "Total Customers": 800.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.34 }, "geometry": { "type": "Point", "coordinates": [ -75.108882, 40.005166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmf-j35", "LOCATION_NAME": "Benjamin Lovell Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.95135, "LONGITUDE": -75.169937, "DATE_RANGE_START": 2019, "Total Visits": 4751.0, "Total Visitors": 3187.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 114.0, "Total Spend": 7053.0, "Total Transactions": 52.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.0, "MEDIAN_SPEND_PER_CUSTOMER": 116.98 }, "geometry": { "type": "Point", "coordinates": [ -75.169937, 39.95135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2019, "Total Visits": 2527.0, "Total Visitors": 2154.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 39898.0, "Total Transactions": 3097.0, "Total Customers": 2034.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.17, "MEDIAN_SPEND_PER_CUSTOMER": 14.9 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.041766, "LONGITUDE": -75.026083, "DATE_RANGE_START": 2019, "Total Visits": 295.0, "Total Visitors": 220.0, "POI_CBG": 421010329001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 739.0, "Total Transactions": 53.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.98, "MEDIAN_SPEND_PER_CUSTOMER": 12.85 }, "geometry": { "type": "Point", "coordinates": [ -75.026083, 40.041766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.931453, "LONGITUDE": -75.160518, "DATE_RANGE_START": 2019, "Total Visits": 1258.0, "Total Visitors": 688.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 16.0, "Total Spend": 20453.0, "Total Transactions": 914.0, "Total Customers": 480.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.98, "MEDIAN_SPEND_PER_CUSTOMER": 20.91 }, "geometry": { "type": "Point", "coordinates": [ -75.160518, 39.931453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "LOCATION_NAME": "Finn Mccools Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 486.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 7223.0, "Total Transactions": 300.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.6, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2019, "Total Visits": 1251.0, "Total Visitors": 969.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 392.0, "Total Transactions": 35.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.91, "MEDIAN_SPEND_PER_CUSTOMER": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pj4-s89", "LOCATION_NAME": "Marv Loves Too", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.992943, "LONGITUDE": -75.134756, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 42.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 48.0, "Total Spend": 733.0, "Total Transactions": 33.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134756, 39.992943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp5-7dv", "LOCATION_NAME": "Martha", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.982345, "LONGITUDE": -75.128218, "DATE_RANGE_START": 2019, "Total Visits": 331.0, "Total Visitors": 195.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 20818.0, "Total Transactions": 610.0, "Total Customers": 445.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.48, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128218, 39.982345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "LOCATION_NAME": "Time Out Sports Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 125.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 70.0, "Total Spend": 2246.0, "Total Transactions": 92.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.8, "MEDIAN_SPEND_PER_CUSTOMER": 36.67 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-wrk", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993383, "LONGITUDE": -75.155194, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 47.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 238.0, "Total Spend": 13544.0, "Total Transactions": 615.0, "Total Customers": 453.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.61 }, "geometry": { "type": "Point", "coordinates": [ -75.155194, 39.993383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "LOCATION_NAME": "El Camino Real", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2019, "Total Visits": 376.0, "Total Visitors": 295.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 423.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.64, "MEDIAN_SPEND_PER_CUSTOMER": 68.43 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-w6k", "LOCATION_NAME": "National Mechanics", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.94956, "LONGITUDE": -75.146014, "DATE_RANGE_START": 2019, "Total Visits": 410.0, "Total Visitors": 361.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 8097.0, "Total Transactions": 210.0, "Total Customers": 168.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.16, "MEDIAN_SPEND_PER_CUSTOMER": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146014, 39.94956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "LOCATION_NAME": "Frankford Hall", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2019, "Total Visits": 1121.0, "Total Visitors": 969.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 52.0, "Total Spend": 73218.0, "Total Transactions": 3691.0, "Total Customers": 2569.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.99, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "LOCATION_NAME": "Golden Crust Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 82.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2851.0, "Total Transactions": 160.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.45, "MEDIAN_SPEND_PER_CUSTOMER": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm4-pvz", "LOCATION_NAME": "George's Sandwich Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938819, "LONGITUDE": -75.157978, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 152.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1006.0, "Total Transactions": 73.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157978, 39.938819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "LOCATION_NAME": "Standard Tap", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964257, "LONGITUDE": -75.140401, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 143.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 28305.0, "Total Transactions": 671.0, "Total Customers": 570.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.28 }, "geometry": { "type": "Point", "coordinates": [ -75.140401, 39.964257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22q@628-pmb-835", "LOCATION_NAME": "Pearl's Oyster Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95321, "LONGITUDE": -75.159401, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 8195.0, "Total Transactions": 300.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.98, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.159401, 39.95321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2019, "Total Visits": 1224.0, "Total Visitors": 1023.0, "POI_CBG": 421010098011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12319.0, "Total Transactions": 1396.0, "Total Customers": 968.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.06, "MEDIAN_SPEND_PER_CUSTOMER": 9.05 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "LOCATION_NAME": "Little Italy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2019, "Total Visits": 188.0, "Total Visitors": 163.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1416.0, "Total Transactions": 113.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.76, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmb-835", "LOCATION_NAME": "Beck's Cajun Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953182, "LONGITUDE": -75.159431, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 3525.0, "Total Transactions": 253.0, "Total Customers": 233.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.52, "MEDIAN_SPEND_PER_CUSTOMER": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.159431, 39.953182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 70.0, "POI_CBG": 421010110003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 347.0, "Total Transactions": 25.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.7, "MEDIAN_SPEND_PER_CUSTOMER": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-ks5", "LOCATION_NAME": "Zama", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950901, "LONGITUDE": -75.172392, "DATE_RANGE_START": 2019, "Total Visits": 853.0, "Total Visitors": 635.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 18397.0, "Total Transactions": 192.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.78, "MEDIAN_SPEND_PER_CUSTOMER": 92.11 }, "geometry": { "type": "Point", "coordinates": [ -75.172392, 39.950901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phy-h3q", "LOCATION_NAME": "Latin Fashion", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.022384, "LONGITUDE": -75.133854, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 48.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 458.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 137.5, "MEDIAN_SPEND_PER_CUSTOMER": 137.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133854, 40.022384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 62.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 16996.0, "Total Transactions": 351.0, "Total Customers": 328.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-bp9", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.064931, "LONGITUDE": -74.985003, "DATE_RANGE_START": 2019, "Total Visits": 4039.0, "Total Visitors": 2119.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 472.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 41.83 }, "geometry": { "type": "Point", "coordinates": [ -74.985003, 40.064931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-mc5", "LOCATION_NAME": "Wings & More", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.935358, "LONGITUDE": -75.158798, "DATE_RANGE_START": 2019, "Total Visits": 190.0, "Total Visitors": 180.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 340.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.0, "MEDIAN_SPEND_PER_CUSTOMER": 102.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158798, 39.935358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "LOCATION_NAME": "Jomici Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2019, "Total Visits": 503.0, "Total Visitors": 375.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 74.0, "Total Spend": 405.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.48, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-vvf", "LOCATION_NAME": "Au Bon Pain", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955579, "LONGITUDE": -75.182324, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 120.0, "Total Transactions": 15.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 26.73 }, "geometry": { "type": "Point", "coordinates": [ -75.182324, 39.955579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.014555, "LONGITUDE": -75.15728, "DATE_RANGE_START": 2019, "Total Visits": 2715.0, "Total Visitors": 1877.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 16434.0, "Total Transactions": 813.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.62 }, "geometry": { "type": "Point", "coordinates": [ -75.15728, 40.014555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950896, "LONGITUDE": -75.166342, "DATE_RANGE_START": 2019, "Total Visits": 585.0, "Total Visitors": 413.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 7269.0, "Total Transactions": 750.0, "Total Customers": 631.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.28, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.166342, 39.950896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "LOCATION_NAME": "Dancewear On Broad LLC", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 931.0, "Total Transactions": 23.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.14, "MEDIAN_SPEND_PER_CUSTOMER": 36.32 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "LOCATION_NAME": "Vic Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2019, "Total Visits": 348.0, "Total Visitors": 283.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 89.0, "Total Spend": 7405.0, "Total Transactions": 228.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.11, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "LOCATION_NAME": "Martinez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997199, "LONGITUDE": -75.175295, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010172022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 287.0, "Total Transactions": 27.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.7, "MEDIAN_SPEND_PER_CUSTOMER": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175295, 39.997199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2019, "Total Visits": 8965.0, "Total Visitors": 5427.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 222316.0, "Total Transactions": 4727.0, "Total Customers": 2577.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.76, "MEDIAN_SPEND_PER_CUSTOMER": 52.38 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-7t9", "LOCATION_NAME": "Flowers Etcetera By Denise", "TOP_CATEGORY": "Florists", "LATITUDE": 39.961729, "LONGITUDE": -75.140942, "DATE_RANGE_START": 2019, "Total Visits": 202.0, "Total Visitors": 192.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 272.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140942, 39.961729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm4-k2k", "LOCATION_NAME": "Cellular 2000 LLC", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.93569, "LONGITUDE": -75.155206, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 62.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 525.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 72.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155206, 39.93569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phc-r8v", "LOCATION_NAME": "Sherwin-Williams", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.998314, "LONGITUDE": -75.231577, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 53.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 98.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.51, "MEDIAN_SPEND_PER_CUSTOMER": 29.51 }, "geometry": { "type": "Point", "coordinates": [ -75.231577, 39.998314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-cqz", "LOCATION_NAME": "Tropical Smoothie Café", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977828, "LONGITUDE": -75.158485, "DATE_RANGE_START": 2019, "Total Visits": 1018.0, "Total Visitors": 843.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 19.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.66, "MEDIAN_SPEND_PER_CUSTOMER": 5.66 }, "geometry": { "type": "Point", "coordinates": [ -75.158485, 39.977828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "LOCATION_NAME": "Four Seasons Hotels and Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.955061, "LONGITUDE": -75.170762, "DATE_RANGE_START": 2019, "Total Visits": 11542.0, "Total Visitors": 4349.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 317.0, "Total Spend": 3428.0, "Total Transactions": 107.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.4, "MEDIAN_SPEND_PER_CUSTOMER": 24.01 }, "geometry": { "type": "Point", "coordinates": [ -75.170762, 39.955061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pfy-vmk", "LOCATION_NAME": "Triumph Motorcycles", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 40.019956, "LONGITUDE": -75.21517, "DATE_RANGE_START": 2019, "Total Visits": 215.0, "Total Visitors": 190.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 12993.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 1500.0, "MEDIAN_SPEND_PER_CUSTOMER": 1500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21517, 40.019956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-8d9", "LOCATION_NAME": "Moge Tee Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953994, "LONGITUDE": -75.157412, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 298.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 38.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.73, "MEDIAN_SPEND_PER_CUSTOMER": 5.73 }, "geometry": { "type": "Point", "coordinates": [ -75.157412, 39.953994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-t5f", "LOCATION_NAME": "Pho Viet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035248, "LONGITUDE": -75.100976, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 153.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 3101.0, "Total Transactions": 117.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.25, "MEDIAN_SPEND_PER_CUSTOMER": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100976, 40.035248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "LOCATION_NAME": "Paradise Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 35.0, "POI_CBG": 421010190004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 492.0, "Total Transactions": 25.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.69 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pg8-grk", "LOCATION_NAME": "Norris Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.986859, "LONGITUDE": -75.183863, "DATE_RANGE_START": 2019, "Total Visits": 433.0, "Total Visitors": 255.0, "POI_CBG": 421010151023.0, "MEDIAN_DWELL": 85.0, "Total Spend": 304.0, "Total Transactions": 20.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.84, "MEDIAN_SPEND_PER_CUSTOMER": 13.26 }, "geometry": { "type": "Point", "coordinates": [ -75.183863, 39.986859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p74-z75", "LOCATION_NAME": "Seafood Bay Inc", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041659, "LONGITUDE": -75.028001, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010331022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 344.0, "Total Transactions": 22.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.46, "MEDIAN_SPEND_PER_CUSTOMER": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.028001, 40.041659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnw-nt9", "LOCATION_NAME": "Fishtown Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.970532, "LONGITUDE": -75.134266, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 37.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 85.0, "Total Spend": 13801.0, "Total Transactions": 565.0, "Total Customers": 421.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.64, "MEDIAN_SPEND_PER_CUSTOMER": 23.64 }, "geometry": { "type": "Point", "coordinates": [ -75.134266, 39.970532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-k75", "LOCATION_NAME": "Best Buy", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.082306, "LONGITUDE": -75.023635, "DATE_RANGE_START": 2019, "Total Visits": 1586.0, "Total Visitors": 1298.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1817.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.03, "MEDIAN_SPEND_PER_CUSTOMER": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.023635, 40.082306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8m-b8v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.016255, "LONGITUDE": -75.061394, "DATE_RANGE_START": 2019, "Total Visits": 463.0, "Total Visitors": 280.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1357.0, "Total Transactions": 158.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061394, 40.016255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-wkz", "LOCATION_NAME": "Kelly's Cajun Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088195, "LONGITUDE": -74.961933, "DATE_RANGE_START": 2019, "Total Visits": 1153.0, "Total Visitors": 958.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 466.0, "Total Transactions": 43.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.02, "MEDIAN_SPEND_PER_CUSTOMER": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -74.961933, 40.088195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2019, "Total Visits": 501.0, "Total Visitors": 460.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 8963.0, "Total Transactions": 296.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.79, "MEDIAN_SPEND_PER_CUSTOMER": 29.11 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "LOCATION_NAME": "Love Vape", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2019, "Total Visits": 240.0, "Total Visitors": 187.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 176.0, "Total Spend": 4467.0, "Total Transactions": 153.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050926, "LONGITUDE": -75.066019, "DATE_RANGE_START": 2019, "Total Visits": 2897.0, "Total Visitors": 1926.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 719.0, "Total Transactions": 28.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.15, "MEDIAN_SPEND_PER_CUSTOMER": 26.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066019, 40.050926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2019, "Total Visits": 766.0, "Total Visitors": 535.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 19348.0, "Total Transactions": 2031.0, "Total Customers": 941.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 10.97 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-qzz", "LOCATION_NAME": "Umai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944367, "LONGITUDE": -75.173187, "DATE_RANGE_START": 2019, "Total Visits": 197.0, "Total Visitors": 142.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 438.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.06, "MEDIAN_SPEND_PER_CUSTOMER": 41.06 }, "geometry": { "type": "Point", "coordinates": [ -75.173187, 39.944367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kcq", "LOCATION_NAME": "Tselaine", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950645, "LONGITUDE": -75.173695, "DATE_RANGE_START": 2019, "Total Visits": 3147.0, "Total Visitors": 2305.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 35.0, "Total Spend": 1874.0, "Total Transactions": 40.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.66, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.173695, 39.950645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-snq", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948548, "LONGITUDE": -75.166465, "DATE_RANGE_START": 2019, "Total Visits": 20500.0, "Total Visitors": 10934.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 70.0, "Total Spend": 1129.0, "Total Transactions": 190.0, "Total Customers": 180.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 5.53 }, "geometry": { "type": "Point", "coordinates": [ -75.166465, 39.948548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8d-bzf", "LOCATION_NAME": "Bridesburg Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.995886, "LONGITUDE": -75.076645, "DATE_RANGE_START": 2019, "Total Visits": 160.0, "Total Visitors": 63.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 288.0, "Total Spend": 217.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.0, "MEDIAN_SPEND_PER_CUSTOMER": 59.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076645, 39.995886 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vxq", "LOCATION_NAME": "Liberty Bell Bicycle", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.926446, "LONGITUDE": -75.166883, "DATE_RANGE_START": 2019, "Total Visits": 565.0, "Total Visitors": 280.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 436.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.79, "MEDIAN_SPEND_PER_CUSTOMER": 7.79 }, "geometry": { "type": "Point", "coordinates": [ -75.166883, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "LOCATION_NAME": "J & P Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953491, "LONGITUDE": -75.218951, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 100.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1313.0, "Total Transactions": 25.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 21.13 }, "geometry": { "type": "Point", "coordinates": [ -75.218951, 39.953491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@628-pmf-mrk", "LOCATION_NAME": "Bain's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952412, "LONGITUDE": -75.168016, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 102.0, "Total Spend": 1557.0, "Total Transactions": 170.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.91, "MEDIAN_SPEND_PER_CUSTOMER": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168016, 39.952412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgy-kj9", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.062824, "LONGITUDE": -75.237514, "DATE_RANGE_START": 2019, "Total Visits": 560.0, "Total Visitors": 383.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 69.0, "Total Spend": 7735.0, "Total Transactions": 118.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.19, "MEDIAN_SPEND_PER_CUSTOMER": 49.59 }, "geometry": { "type": "Point", "coordinates": [ -75.237514, 40.062824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "LOCATION_NAME": "Buffalo Wild Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.082615, "LONGITUDE": -75.025718, "DATE_RANGE_START": 2019, "Total Visits": 2592.0, "Total Visitors": 2244.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 19988.0, "Total Transactions": 535.0, "Total Customers": 480.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.68, "MEDIAN_SPEND_PER_CUSTOMER": 34.74 }, "geometry": { "type": "Point", "coordinates": [ -75.025718, 40.082615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pmf-jgk", "LOCATION_NAME": "Abe Fisher", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950786, "LONGITUDE": -75.168347, "DATE_RANGE_START": 2019, "Total Visits": 1019.0, "Total Visitors": 708.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 13826.0, "Total Transactions": 110.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 121.34, "MEDIAN_SPEND_PER_CUSTOMER": 118.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168347, 39.950786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w49", "LOCATION_NAME": "Sam Ash Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.087105, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2019, "Total Visits": 263.0, "Total Visitors": 225.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 8860.0, "Total Transactions": 130.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 24.94 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "LOCATION_NAME": "Yakitori Boy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2019, "Total Visits": 295.0, "Total Visitors": 243.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 25887.0, "Total Transactions": 501.0, "Total Customers": 433.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 37.93 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "LOCATION_NAME": "Pat's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 123.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6224.0, "Total Transactions": 411.0, "Total Customers": 338.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-btv", "LOCATION_NAME": "Kraftwork", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971499, "LONGITUDE": -75.127358, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 48.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 15977.0, "Total Transactions": 388.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.95, "MEDIAN_SPEND_PER_CUSTOMER": 40.88 }, "geometry": { "type": "Point", "coordinates": [ -75.127358, 39.971499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "LOCATION_NAME": "La Rosa Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 67.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 823.0, "Total Transactions": 73.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-2tv", "LOCATION_NAME": "Tacony Latin Flavor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020803, "LONGITUDE": -75.053805, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010323002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1022.0, "Total Transactions": 15.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053805, 40.020803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-66k", "LOCATION_NAME": "Oloroso", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948946, "LONGITUDE": -75.159995, "DATE_RANGE_START": 2019, "Total Visits": 4531.0, "Total Visitors": 3050.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 87.0, "Total Spend": 4554.0, "Total Transactions": 57.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.3, "MEDIAN_SPEND_PER_CUSTOMER": 71.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159995, 39.948946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "LOCATION_NAME": "Lets Grub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 65.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 482.0, "Total Transactions": 32.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8j-bkz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.037321, "LONGITUDE": -75.040337, "DATE_RANGE_START": 2019, "Total Visits": 410.0, "Total Visitors": 313.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1809.0, "Total Transactions": 210.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.040337, 40.037321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "LOCATION_NAME": "Dollar Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2019, "Total Visits": 316.0, "Total Visitors": 258.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4454.0, "Total Transactions": 87.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.95, "MEDIAN_SPEND_PER_CUSTOMER": 19.63 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045678, "LONGITUDE": -75.11816, "DATE_RANGE_START": 2019, "Total Visits": 303.0, "Total Visitors": 230.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3458.0, "Total Transactions": 330.0, "Total Customers": 235.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.71, "MEDIAN_SPEND_PER_CUSTOMER": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.11816, 40.045678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-zs5", "LOCATION_NAME": "Golden Triangle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94154, "LONGITUDE": -75.15097, "DATE_RANGE_START": 2019, "Total Visits": 215.0, "Total Visitors": 150.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 357.0, "Total Spend": 2896.0, "Total Transactions": 135.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.12, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15097, 39.94154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "LOCATION_NAME": "Amada", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 175.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 64.0, "Total Spend": 26901.0, "Total Transactions": 298.0, "Total Customers": 277.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.06, "MEDIAN_SPEND_PER_CUSTOMER": 75.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-t7q", "LOCATION_NAME": "Maria's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013401, "LONGITUDE": -75.135844, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 92.0, "POI_CBG": 421010197002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 592.0, "Total Transactions": 35.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 26.46 }, "geometry": { "type": "Point", "coordinates": [ -75.135844, 40.013401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.91709, "LONGITUDE": -75.185434, "DATE_RANGE_START": 2019, "Total Visits": 270.0, "Total Visitors": 217.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5612.0, "Total Transactions": 185.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 16.59 }, "geometry": { "type": "Point", "coordinates": [ -75.185434, 39.91709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "LOCATION_NAME": "Colonial Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 48.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3447.0, "Total Transactions": 220.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.94, "MEDIAN_SPEND_PER_CUSTOMER": 19.66 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-jjv", "LOCATION_NAME": "Copabanana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951555, "LONGITUDE": -75.203266, "DATE_RANGE_START": 2019, "Total Visits": 465.0, "Total Visitors": 376.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 58.0, "Total Spend": 37159.0, "Total Transactions": 958.0, "Total Customers": 860.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.23, "MEDIAN_SPEND_PER_CUSTOMER": 33.02 }, "geometry": { "type": "Point", "coordinates": [ -75.203266, 39.951555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2019, "Total Visits": 949.0, "Total Visitors": 681.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1956.0, "Total Transactions": 267.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.15, "MEDIAN_SPEND_PER_CUSTOMER": 7.08 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2019, "Total Visits": 803.0, "Total Visitors": 621.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12375.0, "Total Transactions": 650.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.02, "MEDIAN_SPEND_PER_CUSTOMER": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "LOCATION_NAME": "Circle Thrift", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.980269, "LONGITUDE": -75.128616, "DATE_RANGE_START": 2019, "Total Visits": 683.0, "Total Visitors": 343.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 188.0, "Total Spend": 5404.0, "Total Transactions": 405.0, "Total Customers": 330.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.83, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128616, 39.980269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-qcq", "LOCATION_NAME": "Grilly Cheese", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941662, "LONGITUDE": -75.166242, "DATE_RANGE_START": 2019, "Total Visits": 586.0, "Total Visitors": 421.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 73.0, "Total Spend": 36.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.93, "MEDIAN_SPEND_PER_CUSTOMER": 10.93 }, "geometry": { "type": "Point", "coordinates": [ -75.166242, 39.941662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pm6-f2k", "LOCATION_NAME": "Bobs Food Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.920704, "LONGITUDE": -75.15184, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 62.0, "POI_CBG": 421010042012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 468.0, "Total Transactions": 80.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.2, "MEDIAN_SPEND_PER_CUSTOMER": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.15184, 39.920704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2019, "Total Visits": 2560.0, "Total Visitors": 1456.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 14.0, "Total Spend": 12939.0, "Total Transactions": 3093.0, "Total Customers": 1286.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.45, "MEDIAN_SPEND_PER_CUSTOMER": 5.16 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-cyv", "LOCATION_NAME": "El Provocon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039466, "LONGITUDE": -75.056309, "DATE_RANGE_START": 2019, "Total Visits": 295.0, "Total Visitors": 197.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2081.0, "Total Transactions": 147.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.36, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056309, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pjk-3nq", "LOCATION_NAME": "Pina's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069435, "LONGITUDE": -75.239981, "DATE_RANGE_START": 2019, "Total Visits": 610.0, "Total Visitors": 415.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 2297.0, "Total Transactions": 118.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.5, "MEDIAN_SPEND_PER_CUSTOMER": 23.85 }, "geometry": { "type": "Point", "coordinates": [ -75.239981, 40.069435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 122.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1044.0, "Total Transactions": 72.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.06, "MEDIAN_SPEND_PER_CUSTOMER": 11.81 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm9-yd9", "LOCATION_NAME": "Famous 4th Street Delicatessen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940489, "LONGITUDE": -75.149633, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 170.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 18754.0, "Total Transactions": 561.0, "Total Customers": 441.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.19, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149633, 39.940489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9p-pvz", "LOCATION_NAME": "Da Franco Pizzeria & Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.105135, "LONGITUDE": -75.033737, "DATE_RANGE_START": 2019, "Total Visits": 666.0, "Total Visitors": 438.0, "POI_CBG": 421010356022.0, "MEDIAN_DWELL": 45.0, "Total Spend": 584.0, "Total Transactions": 28.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.45, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.033737, 40.105135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phz-s89", "LOCATION_NAME": "Torres Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.998232, "LONGITUDE": -75.106593, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 25.0, "POI_CBG": 421010188007.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1498.0, "Total Transactions": 183.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.14, "MEDIAN_SPEND_PER_CUSTOMER": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.106593, 39.998232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2019, "Total Visits": 700.0, "Total Visitors": 621.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 81.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.37 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-bhq", "LOCATION_NAME": "Lloyd Whiskey Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.971373, "LONGITUDE": -75.127654, "DATE_RANGE_START": 2019, "Total Visits": 440.0, "Total Visitors": 292.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 52.0, "Total Spend": 10598.0, "Total Transactions": 223.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.1, "MEDIAN_SPEND_PER_CUSTOMER": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.127654, 39.971373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2019, "Total Visits": 801.0, "Total Visitors": 710.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11052.0, "Total Transactions": 1148.0, "Total Customers": 901.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.95, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "LOCATION_NAME": "Apricot Stone", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 103.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 43.0, "Total Spend": 4479.0, "Total Transactions": 90.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.26, "MEDIAN_SPEND_PER_CUSTOMER": 44.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-w8v", "LOCATION_NAME": "Friday Saturday Sunday", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948822, "LONGITUDE": -75.175905, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 52.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 93.0, "Total Spend": 21254.0, "Total Transactions": 193.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.77, "MEDIAN_SPEND_PER_CUSTOMER": 107.36 }, "geometry": { "type": "Point", "coordinates": [ -75.175905, 39.948822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pg2-hdv", "LOCATION_NAME": "Trattoria Moma", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059314, "LONGITUDE": -75.190082, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 47.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 46.0, "Total Spend": 2003.0, "Total Transactions": 25.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.92, "MEDIAN_SPEND_PER_CUSTOMER": 62.92 }, "geometry": { "type": "Point", "coordinates": [ -75.190082, 40.059314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "LOCATION_NAME": "Milkcrate Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2019, "Total Visits": 405.0, "Total Visitors": 267.0, "POI_CBG": 421010143002.0, "MEDIAN_DWELL": 52.0, "Total Spend": 13904.0, "Total Transactions": 1136.0, "Total Customers": 545.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "LOCATION_NAME": "Miller's Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079795, "LONGITUDE": -75.028682, "DATE_RANGE_START": 2019, "Total Visits": 1789.0, "Total Visitors": 1453.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 48190.0, "Total Transactions": 1189.0, "Total Customers": 1016.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.76, "MEDIAN_SPEND_PER_CUSTOMER": 40.33 }, "geometry": { "type": "Point", "coordinates": [ -75.028682, 40.079795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-kvf", "LOCATION_NAME": "The Wellness Refinery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950375, "LONGITUDE": -75.144624, "DATE_RANGE_START": 2019, "Total Visits": 2252.0, "Total Visitors": 1754.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2997.0, "Total Transactions": 167.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144624, 39.950375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pjg-qcq", "LOCATION_NAME": "DanceFit Chestnut Hill", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 40.08043, "LONGITUDE": -75.207859, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 22.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 283.0, "Total Spend": 758.0, "Total Transactions": 38.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.13 }, "geometry": { "type": "Point", "coordinates": [ -75.207859, 40.08043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-r6k", "LOCATION_NAME": "United Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029584, "LONGITUDE": -75.100403, "DATE_RANGE_START": 2019, "Total Visits": 1421.0, "Total Visitors": 1296.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 15568.0, "Total Transactions": 436.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.29, "MEDIAN_SPEND_PER_CUSTOMER": 35.38 }, "geometry": { "type": "Point", "coordinates": [ -75.100403, 40.029584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "LOCATION_NAME": "Warwick Hotel Rittenhouse Square", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949172, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2019, "Total Visits": 3761.0, "Total Visitors": 2350.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 242.0, "Total Spend": 2543.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 194.48, "MEDIAN_SPEND_PER_CUSTOMER": 194.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.949172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "LOCATION_NAME": "Sunny Side Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 265.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 681.0, "Total Transactions": 40.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.93, "MEDIAN_SPEND_PER_CUSTOMER": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-vxq", "LOCATION_NAME": "Jersey Mike's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955112, "LONGITUDE": -75.18233, "DATE_RANGE_START": 2019, "Total Visits": 511.0, "Total Visitors": 438.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 11374.0, "Total Transactions": 984.0, "Total Customers": 850.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.1, "MEDIAN_SPEND_PER_CUSTOMER": 11.52 }, "geometry": { "type": "Point", "coordinates": [ -75.18233, 39.955112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgj-2ff", "LOCATION_NAME": "Pita & Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979339, "LONGITUDE": -75.155043, "DATE_RANGE_START": 2019, "Total Visits": 3425.0, "Total Visitors": 1964.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 121.0, "Total Spend": 350.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.0, "MEDIAN_SPEND_PER_CUSTOMER": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155043, 39.979339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phy-wx5", "LOCATION_NAME": "Brother's Pizza House II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026513, "LONGITUDE": -75.12182, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 95.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 141.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.69, "MEDIAN_SPEND_PER_CUSTOMER": 16.69 }, "geometry": { "type": "Point", "coordinates": [ -75.12182, 40.026513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2019, "Total Visits": 613.0, "Total Visitors": 433.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 149.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.49, "MEDIAN_SPEND_PER_CUSTOMER": 10.58 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rp9", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917838, "LONGITUDE": -75.186989, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 100.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 6422.0, "Total Transactions": 268.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.21, "MEDIAN_SPEND_PER_CUSTOMER": 25.14 }, "geometry": { "type": "Point", "coordinates": [ -75.186989, 39.917838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "LOCATION_NAME": "Melograno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951247, "LONGITUDE": -75.174115, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 140.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 452.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.22, "MEDIAN_SPEND_PER_CUSTOMER": 62.22 }, "geometry": { "type": "Point", "coordinates": [ -75.174115, 39.951247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5pv", "LOCATION_NAME": "Hard Rock Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952216, "LONGITUDE": -75.159642, "DATE_RANGE_START": 2019, "Total Visits": 1692.0, "Total Visitors": 1324.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 85.0, "Total Spend": 32368.0, "Total Transactions": 601.0, "Total Customers": 526.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 39.46 }, "geometry": { "type": "Point", "coordinates": [ -75.159642, 39.952216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "LOCATION_NAME": "Kohl's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.062537, "LONGITUDE": -75.235162, "DATE_RANGE_START": 2019, "Total Visits": 1546.0, "Total Visitors": 1173.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 49145.0, "Total Transactions": 885.0, "Total Customers": 711.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.79, "MEDIAN_SPEND_PER_CUSTOMER": 47.25 }, "geometry": { "type": "Point", "coordinates": [ -75.235162, 40.062537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p8d-rp9", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998893, "LONGITUDE": -75.091892, "DATE_RANGE_START": 2019, "Total Visits": 11232.0, "Total Visitors": 6856.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 218372.0, "Total Transactions": 4639.0, "Total Customers": 2920.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.16, "MEDIAN_SPEND_PER_CUSTOMER": 40.59 }, "geometry": { "type": "Point", "coordinates": [ -75.091892, 39.998893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-t5f", "LOCATION_NAME": "B N B Cigars", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.069906, "LONGITUDE": -75.200386, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 40.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 3450.0, "Total Transactions": 100.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.49, "MEDIAN_SPEND_PER_CUSTOMER": 28.77 }, "geometry": { "type": "Point", "coordinates": [ -75.200386, 40.069906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.012396, "LONGITUDE": -75.112446, "DATE_RANGE_START": 2019, "Total Visits": 205.0, "Total Visitors": 162.0, "POI_CBG": 421010289012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10771.0, "Total Transactions": 606.0, "Total Customers": 346.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112446, 40.012396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p8m-syv", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02299, "LONGITUDE": -75.075925, "DATE_RANGE_START": 2019, "Total Visits": 1552.0, "Total Visitors": 1018.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2749.0, "Total Transactions": 203.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.22, "MEDIAN_SPEND_PER_CUSTOMER": 16.09 }, "geometry": { "type": "Point", "coordinates": [ -75.075925, 40.02299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "LOCATION_NAME": "Platinum", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2019, "Total Visits": 170.0, "Total Visitors": 162.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 3145.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 150.0, "MEDIAN_SPEND_PER_CUSTOMER": 194.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2019, "Total Visits": 2693.0, "Total Visitors": 1854.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 16262.0, "Total Transactions": 3496.0, "Total Customers": 1719.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.97, "MEDIAN_SPEND_PER_CUSTOMER": 6.35 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 85.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 482.0, "Total Spend": 1433.0, "Total Transactions": 205.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.86, "MEDIAN_SPEND_PER_CUSTOMER": 7.52 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj3-cbk", "LOCATION_NAME": "Furniture Mecca", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.016794, "LONGITUDE": -75.150696, "DATE_RANGE_START": 2019, "Total Visits": 2169.0, "Total Visitors": 1552.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 461.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 138.26, "MEDIAN_SPEND_PER_CUSTOMER": 138.26 }, "geometry": { "type": "Point", "coordinates": [ -75.150696, 40.016794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-p75-9cq", "LOCATION_NAME": "Deals", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043742, "LONGITUDE": -75.019324, "DATE_RANGE_START": 2019, "Total Visits": 3468.0, "Total Visitors": 2100.0, "POI_CBG": 421019802001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 18.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.54, "MEDIAN_SPEND_PER_CUSTOMER": 5.54 }, "geometry": { "type": "Point", "coordinates": [ -75.019324, 40.043742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-d7q", "LOCATION_NAME": "Alex's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034052, "LONGITUDE": -75.220933, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": null, "Total Spend": 2769.0, "Total Transactions": 155.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.54, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.220933, 40.034052 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwb-pvz", "LOCATION_NAME": "TMK Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.91064, "LONGITUDE": -75.220471, "DATE_RANGE_START": 2019, "Total Visits": 528.0, "Total Visitors": 228.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 3947.0, "Total Transactions": 295.0, "Total Customers": 247.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.33, "MEDIAN_SPEND_PER_CUSTOMER": 8.02 }, "geometry": { "type": "Point", "coordinates": [ -75.220471, 39.91064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "LOCATION_NAME": "VaporFi", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2019, "Total Visits": 2054.0, "Total Visitors": 1371.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 125.0, "Total Spend": 2743.0, "Total Transactions": 42.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.86, "MEDIAN_SPEND_PER_CUSTOMER": 53.89 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pnw-m6k", "LOCATION_NAME": "GIANT Heirloom Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.966473, "LONGITUDE": -75.140367, "DATE_RANGE_START": 2019, "Total Visits": 478.0, "Total Visitors": 293.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 96.0, "Total Spend": 159.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.68, "MEDIAN_SPEND_PER_CUSTOMER": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.140367, 39.966473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-tjv", "LOCATION_NAME": "Children's Hospital Of Philadelphia", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.94747, "LONGITUDE": -75.195382, "DATE_RANGE_START": 2019, "Total Visits": 4559.0, "Total Visitors": 1924.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 268.0, "Total Spend": 1894.0, "Total Transactions": 343.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195382, 39.94747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2019, "Total Visits": 545.0, "Total Visitors": 418.0, "POI_CBG": 421010061001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1516.0, "Total Transactions": 83.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.09, "MEDIAN_SPEND_PER_CUSTOMER": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-p8f-9pv", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.014668, "LONGITUDE": -75.088538, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 302.0, "Total Spend": 1889.0, "Total Transactions": 195.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.98, "MEDIAN_SPEND_PER_CUSTOMER": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.088538, 40.014668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2019, "Total Visits": 2046.0, "Total Visitors": 1408.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9010.0, "Total Transactions": 380.0, "Total Customers": 277.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.36, "MEDIAN_SPEND_PER_CUSTOMER": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-3dv", "LOCATION_NAME": "Sheraton Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.95502, "LONGITUDE": -75.193986, "DATE_RANGE_START": 2019, "Total Visits": 3518.0, "Total Visitors": 1869.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 423.0, "Total Spend": 2047.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 118.21, "MEDIAN_SPEND_PER_CUSTOMER": 166.41 }, "geometry": { "type": "Point", "coordinates": [ -75.193986, 39.95502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "LOCATION_NAME": "Le Meridien", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2019, "Total Visits": 2499.0, "Total Visitors": 1388.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 300.0, "Total Spend": 36397.0, "Total Transactions": 222.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.86, "MEDIAN_SPEND_PER_CUSTOMER": 90.68 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "LOCATION_NAME": "Evo Brickoven Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 53.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 3300.0, "Total Transactions": 147.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.92, "MEDIAN_SPEND_PER_CUSTOMER": 20.27 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "LOCATION_NAME": "Local 44", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952832, "LONGITUDE": -75.210325, "DATE_RANGE_START": 2019, "Total Visits": 708.0, "Total Visitors": 415.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 219.0, "Total Spend": 22204.0, "Total Transactions": 658.0, "Total Customers": 470.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.88, "MEDIAN_SPEND_PER_CUSTOMER": 35.06 }, "geometry": { "type": "Point", "coordinates": [ -75.210325, 39.952832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phk-yvz", "LOCATION_NAME": "Gogi BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054866, "LONGITUDE": -75.125965, "DATE_RANGE_START": 2019, "Total Visits": 202.0, "Total Visitors": 157.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 79.0, "Total Spend": 3881.0, "Total Transactions": 57.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.03, "MEDIAN_SPEND_PER_CUSTOMER": 64.64 }, "geometry": { "type": "Point", "coordinates": [ -75.125965, 40.054866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm6-fj9", "LOCATION_NAME": "Anthony's Saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.917977, "LONGITUDE": -75.148931, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 27.0, "POI_CBG": 421010042021.0, "MEDIAN_DWELL": 181.0, "Total Spend": 1527.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 371.74, "MEDIAN_SPEND_PER_CUSTOMER": 458.42 }, "geometry": { "type": "Point", "coordinates": [ -75.148931, 39.917977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "LOCATION_NAME": "Rustica", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964423, "LONGITUDE": -75.140069, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 250.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 5659.0, "Total Transactions": 278.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.1, "MEDIAN_SPEND_PER_CUSTOMER": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.140069, 39.964423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-nt9", "LOCATION_NAME": "Seven Arts Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.955549, "LONGITUDE": -75.144273, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 53.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 244.0, "Total Spend": 5145.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 192.63, "MEDIAN_SPEND_PER_CUSTOMER": 241.06 }, "geometry": { "type": "Point", "coordinates": [ -75.144273, 39.955549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "256-222@628-pm4-nqz", "LOCATION_NAME": "Saloon Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939873, "LONGITUDE": -75.154572, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010018001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 259.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.74, "MEDIAN_SPEND_PER_CUSTOMER": 77.74 }, "geometry": { "type": "Point", "coordinates": [ -75.154572, 39.939873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2019, "Total Visits": 921.0, "Total Visitors": 776.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 12192.0, "Total Transactions": 1334.0, "Total Customers": 878.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.52, "MEDIAN_SPEND_PER_CUSTOMER": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-sbk", "LOCATION_NAME": "Howl At The Moon Philadelphia", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947729, "LONGITUDE": -75.166598, "DATE_RANGE_START": 2019, "Total Visits": 715.0, "Total Visitors": 483.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 73.0, "Total Spend": 54221.0, "Total Transactions": 2192.0, "Total Customers": 1291.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166598, 39.947729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zvf", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.997217, "LONGITUDE": -75.154386, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 159.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.86, "MEDIAN_SPEND_PER_CUSTOMER": 47.86 }, "geometry": { "type": "Point", "coordinates": [ -75.154386, 39.997217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "LOCATION_NAME": "Luigi's Pizza Fresca", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2019, "Total Visits": 583.0, "Total Visitors": 451.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1668.0, "Total Transactions": 90.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.68, "MEDIAN_SPEND_PER_CUSTOMER": 23.33 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "LOCATION_NAME": "CLo", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010195022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 14425.0, "Total Transactions": 548.0, "Total Customers": 348.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "LOCATION_NAME": "Kei Sushi Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 58.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 55.0, "Total Spend": 7913.0, "Total Transactions": 190.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.35, "MEDIAN_SPEND_PER_CUSTOMER": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-kmk", "LOCATION_NAME": "Philly Sunnyside Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974534, "LONGITUDE": -75.181976, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 57.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 457.0, "Total Transactions": 23.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.9, "MEDIAN_SPEND_PER_CUSTOMER": 27.59 }, "geometry": { "type": "Point", "coordinates": [ -75.181976, 39.974534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-vj9", "LOCATION_NAME": "Baker Street Bread Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071164, "LONGITUDE": -75.200774, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 103.0, "POI_CBG": 421010257003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6118.0, "Total Transactions": 406.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.37, "MEDIAN_SPEND_PER_CUSTOMER": 12.86 }, "geometry": { "type": "Point", "coordinates": [ -75.200774, 40.071164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962306, "LONGITUDE": -75.172957, "DATE_RANGE_START": 2019, "Total Visits": 350.0, "Total Visitors": 245.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 18492.0, "Total Transactions": 851.0, "Total Customers": 633.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.72 }, "geometry": { "type": "Point", "coordinates": [ -75.172957, 39.962306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p74-cyv", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041879, "LONGITUDE": -75.027519, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 52.0, "POI_CBG": 421010331022.0, "MEDIAN_DWELL": 22.0, "Total Spend": 750.0, "Total Transactions": 57.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.9, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.027519, 40.041879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 310.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15043.0, "Total Transactions": 1494.0, "Total Customers": 949.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.7, "MEDIAN_SPEND_PER_CUSTOMER": 10.77 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-n5z", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954715, "LONGITUDE": -75.168495, "DATE_RANGE_START": 2019, "Total Visits": 13123.0, "Total Visitors": 4982.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 344.0, "Total Spend": 7455.0, "Total Transactions": 811.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.53, "MEDIAN_SPEND_PER_CUSTOMER": 10.31 }, "geometry": { "type": "Point", "coordinates": [ -75.168495, 39.954715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-835", "LOCATION_NAME": "Nanee's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953311, "LONGITUDE": -75.158833, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 2449.0, "Total Transactions": 152.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.09, "MEDIAN_SPEND_PER_CUSTOMER": 14.49 }, "geometry": { "type": "Point", "coordinates": [ -75.158833, 39.953311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949521, "LONGITUDE": -75.167452, "DATE_RANGE_START": 2019, "Total Visits": 2657.0, "Total Visitors": 2046.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 20.0, "Total Spend": 15202.0, "Total Transactions": 2713.0, "Total Customers": 1626.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.59, "MEDIAN_SPEND_PER_CUSTOMER": 5.78 }, "geometry": { "type": "Point", "coordinates": [ -75.167452, 39.949521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-rff", "LOCATION_NAME": "Montana Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042892, "LONGITUDE": -75.073677, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 98.0, "POI_CBG": 421010313004.0, "MEDIAN_DWELL": 22.0, "Total Spend": 162.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 20.11 }, "geometry": { "type": "Point", "coordinates": [ -75.073677, 40.042892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "LOCATION_NAME": "Triple Joy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 102.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1384.0, "Total Transactions": 110.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.62, "MEDIAN_SPEND_PER_CUSTOMER": 15.87 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2019, "Total Visits": 793.0, "Total Visitors": 681.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 270.0, "Total Transactions": 30.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.31, "MEDIAN_SPEND_PER_CUSTOMER": 11.01 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980352, "LONGITUDE": -75.234957, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 93.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3431.0, "Total Transactions": 282.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 11.21 }, "geometry": { "type": "Point", "coordinates": [ -75.234957, 39.980352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2019, "Total Visits": 205.0, "Total Visitors": 170.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2620.0, "Total Transactions": 480.0, "Total Customers": 292.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.9, "MEDIAN_SPEND_PER_CUSTOMER": 6.56 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-pn5", "LOCATION_NAME": "Luna Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976619, "LONGITUDE": -75.140834, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 52.0, "POI_CBG": 421010156001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 1137.0, "Total Transactions": 127.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.62, "MEDIAN_SPEND_PER_CUSTOMER": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.140834, 39.976619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2019, "Total Visits": 438.0, "Total Visitors": 295.0, "POI_CBG": 421010041013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 603.0, "Total Transactions": 52.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.91, "MEDIAN_SPEND_PER_CUSTOMER": 10.52 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2019, "Total Visits": 1311.0, "Total Visitors": 994.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2631.0, "Total Transactions": 207.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.35, "MEDIAN_SPEND_PER_CUSTOMER": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.067745, "LONGITUDE": -75.198, "DATE_RANGE_START": 2019, "Total Visits": 528.0, "Total Visitors": 430.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 10348.0, "Total Transactions": 351.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.198, 40.067745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2019, "Total Visits": 578.0, "Total Visitors": 438.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2259.0, "Total Transactions": 102.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.45, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pm9-tqf", "LOCATION_NAME": "Jefferson Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949885, "LONGITUDE": -75.154967, "DATE_RANGE_START": 2019, "Total Visits": 9098.0, "Total Visitors": 4954.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 155.0, "Total Spend": 4202.0, "Total Transactions": 193.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.49, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154967, 39.949885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph6-p5f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.977589, "LONGITUDE": -75.227009, "DATE_RANGE_START": 2019, "Total Visits": 1882.0, "Total Visitors": 1439.0, "POI_CBG": 421010118003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 996.0, "Total Transactions": 45.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.07, "MEDIAN_SPEND_PER_CUSTOMER": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.227009, 39.977589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "LOCATION_NAME": "Kiehl's", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2019, "Total Visits": 924.0, "Total Visitors": 648.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 114.0, "Total Spend": 9656.0, "Total Transactions": 213.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 39.42 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.029566, "LONGITUDE": -75.100398, "DATE_RANGE_START": 2019, "Total Visits": 1421.0, "Total Visitors": 1296.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 4733.0, "Total Transactions": 128.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.97, "MEDIAN_SPEND_PER_CUSTOMER": 37.97 }, "geometry": { "type": "Point", "coordinates": [ -75.100398, 40.029566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "LOCATION_NAME": "Vince.", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2019, "Total Visits": 5742.0, "Total Visitors": 4188.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 70.0, "Total Spend": 6906.0, "Total Transactions": 30.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 177.0, "MEDIAN_SPEND_PER_CUSTOMER": 177.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-vcq", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.923962, "LONGITUDE": -75.139231, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 198.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3169.0, "Total Transactions": 43.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.34, "MEDIAN_SPEND_PER_CUSTOMER": 69.85 }, "geometry": { "type": "Point", "coordinates": [ -75.139231, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p9w-sbk", "LOCATION_NAME": "Spiritual World", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.124382, "LONGITUDE": -75.015592, "DATE_RANGE_START": 2019, "Total Visits": 851.0, "Total Visitors": 575.0, "POI_CBG": 421010365013.0, "MEDIAN_DWELL": 17.0, "Total Spend": 357.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.48, "MEDIAN_SPEND_PER_CUSTOMER": 38.48 }, "geometry": { "type": "Point", "coordinates": [ -75.015592, 40.124382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-brk", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.994031, "LONGITUDE": -75.091432, "DATE_RANGE_START": 2019, "Total Visits": 341.0, "Total Visitors": 326.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4668.0, "Total Transactions": 112.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.29, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091432, 39.994031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.898752, "LONGITUDE": -75.240579, "DATE_RANGE_START": 2019, "Total Visits": 1016.0, "Total Visitors": 776.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 679.0, "Total Transactions": 45.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.24, "MEDIAN_SPEND_PER_CUSTOMER": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.240579, 39.898752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-pn5", "LOCATION_NAME": "Good's Vintage", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.93696, "LONGITUDE": -75.158415, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 75.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 191.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.84, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.93696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvx-w49", "LOCATION_NAME": "Millcreek Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948179, "LONGITUDE": -75.207276, "DATE_RANGE_START": 2019, "Total Visits": 125.0, "Total Visitors": 92.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 646.0, "Total Transactions": 27.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.38, "MEDIAN_SPEND_PER_CUSTOMER": 17.38 }, "geometry": { "type": "Point", "coordinates": [ -75.207276, 39.948179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "LOCATION_NAME": "Pub On Passyunk East", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 102.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 43.0, "Total Spend": 23073.0, "Total Transactions": 748.0, "Total Customers": 608.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm4-4gk", "LOCATION_NAME": "El Sabor Catracho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.92144, "LONGITUDE": -75.158323, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 123.0, "POI_CBG": 421010041012.0, "MEDIAN_DWELL": 356.0, "Total Spend": 681.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.158323, 39.92144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj4-zzz", "LOCATION_NAME": "Wok Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005065, "LONGITUDE": -75.150775, "DATE_RANGE_START": 2019, "Total Visits": 18626.0, "Total Visitors": 7351.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 243.0, "Total Spend": 399.0, "Total Transactions": 28.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.94 }, "geometry": { "type": "Point", "coordinates": [ -75.150775, 40.005065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-x3q", "LOCATION_NAME": "Manakeesh Cafe Bakery & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95498, "LONGITUDE": -75.211488, "DATE_RANGE_START": 2019, "Total Visits": 560.0, "Total Visitors": 295.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 268.0, "Total Spend": 11160.0, "Total Transactions": 525.0, "Total Customers": 443.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.85, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.211488, 39.95498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3qz", "LOCATION_NAME": "Grand China Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085175, "LONGITUDE": -74.967524, "DATE_RANGE_START": 2019, "Total Visits": 1627.0, "Total Visitors": 1413.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 35.0, "Total Spend": 12005.0, "Total Transactions": 300.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.16, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -74.967524, 40.085175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2019, "Total Visits": 1627.0, "Total Visitors": 1226.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8807.0, "Total Transactions": 981.0, "Total Customers": 765.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.42, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "LOCATION_NAME": "Function Coffee Labs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2019, "Total Visits": 2387.0, "Total Visitors": 1756.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 25.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.45, "MEDIAN_SPEND_PER_CUSTOMER": 7.45 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2019, "Total Visits": 366.0, "Total Visitors": 296.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1926.0, "Total Transactions": 275.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-rx5", "LOCATION_NAME": "Choice Beer Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944126, "LONGITUDE": -75.170213, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 70.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 548.0, "Total Spend": 111.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.21, "MEDIAN_SPEND_PER_CUSTOMER": 23.21 }, "geometry": { "type": "Point", "coordinates": [ -75.170213, 39.944126 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.080948, "LONGITUDE": -75.025099, "DATE_RANGE_START": 2019, "Total Visits": 10306.0, "Total Visitors": 6828.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 141682.0, "Total Transactions": 2049.0, "Total Customers": 1313.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.81, "MEDIAN_SPEND_PER_CUSTOMER": 36.79 }, "geometry": { "type": "Point", "coordinates": [ -75.025099, 40.080948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-wzf", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977998, "LONGITUDE": -75.223963, "DATE_RANGE_START": 2019, "Total Visits": 8084.0, "Total Visitors": 4411.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 346.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.9, "MEDIAN_SPEND_PER_CUSTOMER": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.223963, 39.977998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996676, "LONGITUDE": -75.089544, "DATE_RANGE_START": 2019, "Total Visits": 1214.0, "Total Visitors": 968.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4580.0, "Total Transactions": 172.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.7, "MEDIAN_SPEND_PER_CUSTOMER": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.089544, 39.996676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.134399, "LONGITUDE": -75.01003, "DATE_RANGE_START": 2019, "Total Visits": 715.0, "Total Visitors": 545.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6180.0, "Total Transactions": 182.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01003, 40.134399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.940581, "LONGITUDE": -75.165835, "DATE_RANGE_START": 2019, "Total Visits": 1642.0, "Total Visitors": 1219.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2542.0, "Total Transactions": 105.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.26, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165835, 39.940581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8y9", "LOCATION_NAME": "Windsor", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951878, "LONGITUDE": -75.155445, "DATE_RANGE_START": 2019, "Total Visits": 59483.0, "Total Visitors": 32677.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 87.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155445, 39.951878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.923624, "LONGITUDE": -75.139475, "DATE_RANGE_START": 2019, "Total Visits": 916.0, "Total Visitors": 770.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 18736.0, "Total Transactions": 430.0, "Total Customers": 381.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.19, "MEDIAN_SPEND_PER_CUSTOMER": 36.99 }, "geometry": { "type": "Point", "coordinates": [ -75.139475, 39.923624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.91784, "LONGITUDE": -75.186842, "DATE_RANGE_START": 2019, "Total Visits": 381.0, "Total Visitors": 348.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6299.0, "Total Transactions": 132.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.186842, 39.91784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.917114, "LONGITUDE": -75.139852, "DATE_RANGE_START": 2019, "Total Visits": 1296.0, "Total Visitors": 1186.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 18864.0, "Total Transactions": 1054.0, "Total Customers": 933.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.79, "MEDIAN_SPEND_PER_CUSTOMER": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.139852, 39.917114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2019, "Total Visits": 4726.0, "Total Visitors": 1822.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 46.0, "Total Spend": 4418.0, "Total Transactions": 70.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.98, "MEDIAN_SPEND_PER_CUSTOMER": 24.35 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "LOCATION_NAME": "Reyes Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.961179, "LONGITUDE": -75.244847, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010083011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 581.0, "Total Transactions": 67.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.7, "MEDIAN_SPEND_PER_CUSTOMER": 16.93 }, "geometry": { "type": "Point", "coordinates": [ -75.244847, 39.961179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kfz", "LOCATION_NAME": "The Rittenhouse Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949841, "LONGITUDE": -75.173264, "DATE_RANGE_START": 2019, "Total Visits": 1716.0, "Total Visitors": 953.0, "POI_CBG": 421010008034.0, "MEDIAN_DWELL": 205.0, "Total Spend": 38060.0, "Total Transactions": 97.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.5, "MEDIAN_SPEND_PER_CUSTOMER": 66.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173264, 39.949841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwf-j35", "LOCATION_NAME": "Airgas", "TOP_CATEGORY": "Chemical and Allied Products Merchant Wholesalers", "LATITUDE": 39.90125, "LONGITUDE": -75.230162, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 88.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 94.0, "Total Spend": 87.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230162, 39.90125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pgb-nh5", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.969197, "LONGITUDE": -75.159372, "DATE_RANGE_START": 2019, "Total Visits": 311.0, "Total Visitors": 263.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4355.0, "Total Transactions": 47.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.8, "MEDIAN_SPEND_PER_CUSTOMER": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159372, 39.969197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006521, "LONGITUDE": -75.100325, "DATE_RANGE_START": 2019, "Total Visits": 1552.0, "Total Visitors": 1114.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3027.0, "Total Transactions": 122.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.08, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100325, 40.006521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974271, "LONGITUDE": -75.11985, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 353.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 670.0, "Total Transactions": 55.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.11985, 39.974271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "LOCATION_NAME": "The Capital Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950707, "LONGITUDE": -75.163622, "DATE_RANGE_START": 2019, "Total Visits": 806.0, "Total Visitors": 660.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 31308.0, "Total Transactions": 160.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 122.49, "MEDIAN_SPEND_PER_CUSTOMER": 122.65 }, "geometry": { "type": "Point", "coordinates": [ -75.163622, 39.950707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-nwk", "LOCATION_NAME": "Hiroki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971334, "LONGITUDE": -75.135176, "DATE_RANGE_START": 2019, "Total Visits": 378.0, "Total Visitors": 316.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11677.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 400.0, "MEDIAN_SPEND_PER_CUSTOMER": 404.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135176, 39.971334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pnx-7bk", "LOCATION_NAME": "Honey's Sit N Eat", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963975, "LONGITUDE": -75.144545, "DATE_RANGE_START": 2019, "Total Visits": 480.0, "Total Visitors": 313.0, "POI_CBG": 421010367002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 129.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144545, 39.963975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-vfz", "LOCATION_NAME": "Panorama", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950151, "LONGITUDE": -75.142176, "DATE_RANGE_START": 2019, "Total Visits": 4601.0, "Total Visitors": 3770.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4746.0, "Total Transactions": 55.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.55, "MEDIAN_SPEND_PER_CUSTOMER": 72.55 }, "geometry": { "type": "Point", "coordinates": [ -75.142176, 39.950151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983085, "LONGITUDE": -75.241704, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 42.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 34.0, "Total Spend": 11696.0, "Total Transactions": 513.0, "Total Customers": 366.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.241704, 39.983085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 48.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 508.0, "Total Spend": 18652.0, "Total Transactions": 810.0, "Total Customers": 615.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-mrk", "LOCATION_NAME": "Auntie Anne's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952065, "LONGITUDE": -75.167537, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 102.0, "Total Spend": 17.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.16, "MEDIAN_SPEND_PER_CUSTOMER": 5.16 }, "geometry": { "type": "Point", "coordinates": [ -75.167537, 39.952065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pfx-kzz", "LOCATION_NAME": "Haggerty Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029098, "LONGITUDE": -75.225579, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010214004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1691.0, "Total Transactions": 122.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.49, "MEDIAN_SPEND_PER_CUSTOMER": 15.46 }, "geometry": { "type": "Point", "coordinates": [ -75.225579, 40.029098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-224@628-pm4-nkf", "LOCATION_NAME": "Felly Bistro On Pass", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938821, "LONGITUDE": -75.152405, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 214.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.09, "MEDIAN_SPEND_PER_CUSTOMER": 64.09 }, "geometry": { "type": "Point", "coordinates": [ -75.152405, 39.938821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phy-47q", "LOCATION_NAME": "Feltonville Express Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02367, "LONGITUDE": -75.124313, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 42.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 290.0, "Total Spend": 3207.0, "Total Transactions": 152.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.46, "MEDIAN_SPEND_PER_CUSTOMER": 24.59 }, "geometry": { "type": "Point", "coordinates": [ -75.124313, 40.02367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-68v", "LOCATION_NAME": "Strangelove's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948065, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2019, "Total Visits": 2177.0, "Total Visitors": 1487.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 43.0, "Total Spend": 11112.0, "Total Transactions": 292.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.9, "MEDIAN_SPEND_PER_CUSTOMER": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.948065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "LOCATION_NAME": "Henry James Saloon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 60.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 1874.0, "Total Transactions": 47.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.04, "MEDIAN_SPEND_PER_CUSTOMER": 35.17 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "LOCATION_NAME": "Tavares Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 105.0, "POI_CBG": 421010247005.0, "MEDIAN_DWELL": 197.0, "Total Spend": 52.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.85, "MEDIAN_SPEND_PER_CUSTOMER": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phk-yvz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054784, "LONGITUDE": -75.126802, "DATE_RANGE_START": 2019, "Total Visits": 350.0, "Total Visitors": 250.0, "POI_CBG": 421010269001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1688.0, "Total Transactions": 103.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.21, "MEDIAN_SPEND_PER_CUSTOMER": 19.06 }, "geometry": { "type": "Point", "coordinates": [ -75.126802, 40.054784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "LOCATION_NAME": "Bookhaven", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 52.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1285.0, "Total Transactions": 53.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.03, "MEDIAN_SPEND_PER_CUSTOMER": 24.03 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.101947, "LONGITUDE": -75.011258, "DATE_RANGE_START": 2019, "Total Visits": 4541.0, "Total Visitors": 3258.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 109389.0, "Total Transactions": 2697.0, "Total Customers": 1574.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.99, "MEDIAN_SPEND_PER_CUSTOMER": 43.15 }, "geometry": { "type": "Point", "coordinates": [ -75.011258, 40.101947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-389", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.084522, "LONGITUDE": -74.967251, "DATE_RANGE_START": 2019, "Total Visits": 616.0, "Total Visitors": 548.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 35.0, "Total Spend": 2227.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 668.49, "MEDIAN_SPEND_PER_CUSTOMER": 668.49 }, "geometry": { "type": "Point", "coordinates": [ -74.967251, 40.084522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qcq", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039147, "LONGITUDE": -75.118804, "DATE_RANGE_START": 2019, "Total Visits": 4426.0, "Total Visitors": 2632.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1326.0, "Total Transactions": 32.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.34, "MEDIAN_SPEND_PER_CUSTOMER": 93.04 }, "geometry": { "type": "Point", "coordinates": [ -75.118804, 40.039147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2019, "Total Visits": 305.0, "Total Visitors": 203.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 30.0, "Total Spend": 1384.0, "Total Transactions": 65.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.19, "MEDIAN_SPEND_PER_CUSTOMER": 11.19 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2019, "Total Visits": 2115.0, "Total Visitors": 1204.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 28487.0, "Total Transactions": 2958.0, "Total Customers": 1156.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.4, "MEDIAN_SPEND_PER_CUSTOMER": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "LOCATION_NAME": "Brandy Melville", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2019, "Total Visits": 1054.0, "Total Visitors": 906.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 22135.0, "Total Transactions": 583.0, "Total Customers": 521.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.080365, "LONGITUDE": -75.171922, "DATE_RANGE_START": 2019, "Total Visits": 282.0, "Total Visitors": 240.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2207.0, "Total Transactions": 300.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.171922, 40.080365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8m-6rk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.026735, "LONGITUDE": -75.064295, "DATE_RANGE_START": 2019, "Total Visits": 653.0, "Total Visitors": 510.0, "POI_CBG": 421010319001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 776.0, "Total Transactions": 60.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.52, "MEDIAN_SPEND_PER_CUSTOMER": 14.52 }, "geometry": { "type": "Point", "coordinates": [ -75.064295, 40.026735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.120348, "LONGITUDE": -75.015989, "DATE_RANGE_START": 2019, "Total Visits": 786.0, "Total Visitors": 621.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 646.0, "Total Transactions": 40.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.91, "MEDIAN_SPEND_PER_CUSTOMER": 30.02 }, "geometry": { "type": "Point", "coordinates": [ -75.015989, 40.120348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfz-ch5", "LOCATION_NAME": "Craft Manayunk", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022994, "LONGITUDE": -75.219064, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 95.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 45.0, "Total Spend": 16089.0, "Total Transactions": 391.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.4, "MEDIAN_SPEND_PER_CUSTOMER": 34.08 }, "geometry": { "type": "Point", "coordinates": [ -75.219064, 40.022994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2019, "Total Visits": 675.0, "Total Visitors": 560.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 482.0, "Total Transactions": 37.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.55, "MEDIAN_SPEND_PER_CUSTOMER": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2019, "Total Visits": 640.0, "Total Visitors": 515.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 77.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.31, "MEDIAN_SPEND_PER_CUSTOMER": 15.31 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phd-h89", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002639, "LONGITUDE": -75.222769, "DATE_RANGE_START": 2019, "Total Visits": 315.0, "Total Visitors": 292.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6816.0, "Total Transactions": 375.0, "Total Customers": 321.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.8, "MEDIAN_SPEND_PER_CUSTOMER": 15.86 }, "geometry": { "type": "Point", "coordinates": [ -75.222769, 40.002639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p75-9vf", "LOCATION_NAME": "Ashburner Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040603, "LONGITUDE": -75.015474, "DATE_RANGE_START": 2019, "Total Visits": 441.0, "Total Visitors": 345.0, "POI_CBG": 421010349003.0, "MEDIAN_DWELL": 72.0, "Total Spend": 5278.0, "Total Transactions": 105.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.88, "MEDIAN_SPEND_PER_CUSTOMER": 42.58 }, "geometry": { "type": "Point", "coordinates": [ -75.015474, 40.040603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8j-ct9", "LOCATION_NAME": "New London Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036249, "LONGITUDE": -75.042416, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 47.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 124.0, "Total Spend": 1261.0, "Total Transactions": 47.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.93, "MEDIAN_SPEND_PER_CUSTOMER": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.042416, 40.036249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "LOCATION_NAME": "A Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950427, "LONGITUDE": -75.170427, "DATE_RANGE_START": 2019, "Total Visits": 1349.0, "Total Visitors": 1068.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 34790.0, "Total Transactions": 1128.0, "Total Customers": 858.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -75.170427, 39.950427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "LOCATION_NAME": "Morimoto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2019, "Total Visits": 596.0, "Total Visitors": 438.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 90.0, "Total Spend": 29416.0, "Total Transactions": 167.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 155.81, "MEDIAN_SPEND_PER_CUSTOMER": 161.32 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-p9z", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953614, "LONGITUDE": -75.202983, "DATE_RANGE_START": 2019, "Total Visits": 395.0, "Total Visitors": 350.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4864.0, "Total Transactions": 301.0, "Total Customers": 275.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.07, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202983, 39.953614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-tgk", "LOCATION_NAME": "Phoenix Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.996785, "LONGITUDE": -75.113541, "DATE_RANGE_START": 2019, "Total Visits": 1946.0, "Total Visitors": 1338.0, "POI_CBG": 421010177012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 445.0, "Total Transactions": 98.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.69, "MEDIAN_SPEND_PER_CUSTOMER": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -75.113541, 39.996785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2019, "Total Visits": 678.0, "Total Visitors": 506.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 12088.0, "Total Transactions": 2044.0, "Total Customers": 1174.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.16, "MEDIAN_SPEND_PER_CUSTOMER": 7.01 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-9cq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953242, "LONGITUDE": -75.19352, "DATE_RANGE_START": 2019, "Total Visits": 282.0, "Total Visitors": 168.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 228.0, "Total Spend": 9245.0, "Total Transactions": 2057.0, "Total Customers": 853.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.45, "MEDIAN_SPEND_PER_CUSTOMER": 6.19 }, "geometry": { "type": "Point", "coordinates": [ -75.19352, 39.953242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977256, "LONGITUDE": -75.226088, "DATE_RANGE_START": 2019, "Total Visits": 282.0, "Total Visitors": 213.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2283.0, "Total Transactions": 440.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.59, "MEDIAN_SPEND_PER_CUSTOMER": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226088, 39.977256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-r49", "LOCATION_NAME": "PA Auto Sales com", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.104341, "LONGITUDE": -75.003284, "DATE_RANGE_START": 2019, "Total Visits": 3028.0, "Total Visitors": 2330.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 19219.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 2000.0, "MEDIAN_SPEND_PER_CUSTOMER": 2000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003284, 40.104341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "LOCATION_NAME": "CB2", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2019, "Total Visits": 3122.0, "Total Visitors": 1992.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 86.0, "Total Spend": 13294.0, "Total Transactions": 152.0, "Total Customers": 123.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.43, "MEDIAN_SPEND_PER_CUSTOMER": 48.23 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pgg-j7q", "LOCATION_NAME": "B & R Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.994344, "LONGITUDE": -75.169339, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 20.0, "POI_CBG": 421010168005.0, "MEDIAN_DWELL": 42.0, "Total Spend": 93.0, "Total Transactions": 18.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169339, 39.994344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7w-wc5", "LOCATION_NAME": "McNally's Tavern Mayfair", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035746, "LONGITUDE": -75.049243, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 20.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2236.0, "Total Transactions": 47.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.18, "MEDIAN_SPEND_PER_CUSTOMER": 46.18 }, "geometry": { "type": "Point", "coordinates": [ -75.049243, 40.035746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-835", "LOCATION_NAME": "3J's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963054, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 22.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 25707.0, "Total Transactions": 2292.0, "Total Customers": 1039.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.85, "MEDIAN_SPEND_PER_CUSTOMER": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "LOCATION_NAME": "Comfort & Floyd", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 22.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 51.0, "Total Spend": 2722.0, "Total Transactions": 88.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.64, "MEDIAN_SPEND_PER_CUSTOMER": 36.29 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 430.0, "Total Transactions": 32.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055662, "LONGITUDE": -75.049241, "DATE_RANGE_START": 2019, "Total Visits": 2185.0, "Total Visitors": 1632.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 80200.0, "Total Transactions": 4922.0, "Total Customers": 2369.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.92, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049241, 40.055662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "LOCATION_NAME": "Fishtown Social", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 87.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 285.0, "Total Spend": 9425.0, "Total Transactions": 173.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.2, "MEDIAN_SPEND_PER_CUSTOMER": 48.96 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-225@628-pjk-3nq", "LOCATION_NAME": "Lucky Star Asian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069778, "LONGITUDE": -75.239531, "DATE_RANGE_START": 2019, "Total Visits": 610.0, "Total Visitors": 415.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 154.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.13, "MEDIAN_SPEND_PER_CUSTOMER": 30.13 }, "geometry": { "type": "Point", "coordinates": [ -75.239531, 40.069778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm8-9fz", "LOCATION_NAME": "Philadium Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91258, "LONGITUDE": -75.17636, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 63.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 1031.0, "Total Transactions": 27.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17636, 39.91258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-bp9", "LOCATION_NAME": "Sang Kee Noodle House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.909183, "LONGITUDE": -75.16467, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 471.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 2696.0, "Total Transactions": 120.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.96 }, "geometry": { "type": "Point", "coordinates": [ -75.16467, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "LOCATION_NAME": "Xian Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9532, "LONGITUDE": -75.154945, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 100.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1217.0, "Total Spend": 2374.0, "Total Transactions": 85.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.44, "MEDIAN_SPEND_PER_CUSTOMER": 25.97 }, "geometry": { "type": "Point", "coordinates": [ -75.154945, 39.9532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "LOCATION_NAME": "Philadelphia Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991113, "LONGITUDE": -75.130735, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 78.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5782.0, "Total Transactions": 23.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130735, 39.991113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm3-vxq", "LOCATION_NAME": "Noir Restaurant & Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926292, "LONGITUDE": -75.16736, "DATE_RANGE_START": 2019, "Total Visits": 1234.0, "Total Visitors": 778.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 92.0, "Total Spend": 4175.0, "Total Transactions": 55.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.58, "MEDIAN_SPEND_PER_CUSTOMER": 50.85 }, "geometry": { "type": "Point", "coordinates": [ -75.16736, 39.926292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "LOCATION_NAME": "Macaroni's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2019, "Total Visits": 330.0, "Total Visitors": 248.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 79.0, "Total Spend": 6526.0, "Total Transactions": 70.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.82, "MEDIAN_SPEND_PER_CUSTOMER": 100.13 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p7w-x3q", "LOCATION_NAME": "Mobil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.035465, "LONGITUDE": -75.049236, "DATE_RANGE_START": 2019, "Total Visits": 2269.0, "Total Visitors": 1234.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1416.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.98, "MEDIAN_SPEND_PER_CUSTOMER": 119.96 }, "geometry": { "type": "Point", "coordinates": [ -75.049236, 40.035465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.105422, "LONGITUDE": -75.032802, "DATE_RANGE_START": 2019, "Total Visits": 1469.0, "Total Visitors": 931.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 311.0, "Total Transactions": 23.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.84, "MEDIAN_SPEND_PER_CUSTOMER": 19.73 }, "geometry": { "type": "Point", "coordinates": [ -75.032802, 40.105422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "LOCATION_NAME": "Gennaro's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 82.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2159.0, "Total Transactions": 175.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945401, "LONGITUDE": -75.178709, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 147.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8285.0, "Total Transactions": 1149.0, "Total Customers": 633.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.62, "MEDIAN_SPEND_PER_CUSTOMER": 6.37 }, "geometry": { "type": "Point", "coordinates": [ -75.178709, 39.945401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-p7b-qs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.063609, "LONGITUDE": -75.021861, "DATE_RANGE_START": 2019, "Total Visits": 1731.0, "Total Visitors": 988.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 420.0, "Total Transactions": 30.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.21, "MEDIAN_SPEND_PER_CUSTOMER": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.021861, 40.063609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2019, "Total Visits": 536.0, "Total Visitors": 378.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2293.0, "Total Transactions": 225.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.53, "MEDIAN_SPEND_PER_CUSTOMER": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "LOCATION_NAME": "Two Brothers", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.943904, "LONGITUDE": -75.228136, "DATE_RANGE_START": 2019, "Total Visits": 173.0, "Total Visitors": 112.0, "POI_CBG": 421010071024.0, "MEDIAN_DWELL": 229.0, "Total Spend": 764.0, "Total Transactions": 88.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.6 }, "geometry": { "type": "Point", "coordinates": [ -75.228136, 39.943904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "LOCATION_NAME": "Moore Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.926601, "LONGITUDE": -75.156132, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 200.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 12144.0, "Total Transactions": 360.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.156132, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.061568, "LONGITUDE": -75.05681, "DATE_RANGE_START": 2019, "Total Visits": 320.0, "Total Visitors": 233.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1254.0, "Total Transactions": 60.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.91, "MEDIAN_SPEND_PER_CUSTOMER": 15.58 }, "geometry": { "type": "Point", "coordinates": [ -75.05681, 40.061568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2019, "Total Visits": 413.0, "Total Visitors": 277.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 12068.0, "Total Transactions": 580.0, "Total Customers": 262.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.24 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmd-tvz", "LOCATION_NAME": "The Indie Shelf", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944748, "LONGITUDE": -75.180225, "DATE_RANGE_START": 2019, "Total Visits": 475.0, "Total Visitors": 405.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1842.0, "Total Transactions": 45.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180225, 39.944748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "LOCATION_NAME": "Produce Junction", "TOP_CATEGORY": "Florists", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2019, "Total Visits": 393.0, "Total Visitors": 330.0, "POI_CBG": 421010120001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 960.0, "Total Transactions": 45.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pp5-p35", "LOCATION_NAME": "Q & A Wholesale", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.990714, "LONGITUDE": -75.123434, "DATE_RANGE_START": 2019, "Total Visits": 142.0, "Total Visitors": 135.0, "POI_CBG": 421010178007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.123434, 39.990714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "LOCATION_NAME": "Greene Street", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 598.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2610.0, "Total Transactions": 65.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.78 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg9-ty9", "LOCATION_NAME": "Milano Di Rouge", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.962944, "LONGITUDE": -75.163384, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 851.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 57.8 }, "geometry": { "type": "Point", "coordinates": [ -75.163384, 39.962944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-n89", "LOCATION_NAME": "Cramer's Uniforms", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.959947, "LONGITUDE": -75.225879, "DATE_RANGE_START": 2019, "Total Visits": 31152.0, "Total Visitors": 11593.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 21.0, "Total Spend": 550.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225879, 39.959947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p8j-cqz", "LOCATION_NAME": "Infinity Jewelers", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.03712, "LONGITUDE": -75.041991, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 60.0, "Total Spend": 661.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 120.0, "MEDIAN_SPEND_PER_CUSTOMER": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041991, 40.03712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-phy-kcq", "LOCATION_NAME": "La Parrillada", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027461, "LONGITUDE": -75.132799, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 37.0, "POI_CBG": 421010285001.0, "MEDIAN_DWELL": 160.0, "Total Spend": 251.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 50.11 }, "geometry": { "type": "Point", "coordinates": [ -75.132799, 40.027461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.060844, "LONGITUDE": -75.192031, "DATE_RANGE_START": 2019, "Total Visits": 665.0, "Total Visitors": 513.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 52557.0, "Total Transactions": 4869.0, "Total Customers": 2249.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.192031, 40.060844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2019, "Total Visits": 3858.0, "Total Visitors": 2192.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 97065.0, "Total Transactions": 13732.0, "Total Customers": 5164.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918299, "LONGITUDE": -75.180698, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 118.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7109.0, "Total Transactions": 423.0, "Total Customers": 283.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.49, "MEDIAN_SPEND_PER_CUSTOMER": 13.39 }, "geometry": { "type": "Point", "coordinates": [ -75.180698, 39.918299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-3bk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.916261, "LONGITUDE": -75.173391, "DATE_RANGE_START": 2019, "Total Visits": 306.0, "Total Visitors": 243.0, "POI_CBG": 421010039022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2725.0, "Total Transactions": 123.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.7, "MEDIAN_SPEND_PER_CUSTOMER": 37.29 }, "geometry": { "type": "Point", "coordinates": [ -75.173391, 39.916261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "LOCATION_NAME": "Nautica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087648, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2019, "Total Visits": 886.0, "Total Visitors": 771.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3135.0, "Total Transactions": 87.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "LOCATION_NAME": "Off Broadway Shoe Warehouse", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2019, "Total Visits": 961.0, "Total Visitors": 873.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 3611.0, "Total Transactions": 42.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.23, "MEDIAN_SPEND_PER_CUSTOMER": 72.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "LOCATION_NAME": "Saks Off Fifth", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.088158, "LONGITUDE": -74.961632, "DATE_RANGE_START": 2019, "Total Visits": 3396.0, "Total Visitors": 2812.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 29.0, "Total Spend": 21649.0, "Total Transactions": 185.0, "Total Customers": 168.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.98, "MEDIAN_SPEND_PER_CUSTOMER": 66.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961632, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-y5f", "LOCATION_NAME": "Philly Dream Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94126, "LONGITUDE": -75.147502, "DATE_RANGE_START": 2019, "Total Visits": 1489.0, "Total Visitors": 1156.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 45.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147502, 39.94126 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-dqf", "LOCATION_NAME": "Good Neighbor Mini Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.941908, "LONGITUDE": -75.220217, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 42.0, "POI_CBG": 421010073001.0, "MEDIAN_DWELL": 178.0, "Total Spend": 192.0, "Total Transactions": 37.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.37, "MEDIAN_SPEND_PER_CUSTOMER": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.220217, 39.941908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044956, "LONGITUDE": -75.143877, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7218.0, "Total Transactions": 333.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.46 }, "geometry": { "type": "Point", "coordinates": [ -75.143877, 40.044956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-syv", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981631, "LONGITUDE": -75.144038, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 18.0, "POI_CBG": 421010156002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 989.0, "Total Transactions": 62.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.6, "MEDIAN_SPEND_PER_CUSTOMER": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144038, 39.981631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-st9", "LOCATION_NAME": "Cantina Los Caballitos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928871, "LONGITUDE": -75.16446, "DATE_RANGE_START": 2019, "Total Visits": 376.0, "Total Visitors": 277.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 61.0, "Total Spend": 55759.0, "Total Transactions": 1278.0, "Total Customers": 1074.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.46, "MEDIAN_SPEND_PER_CUSTOMER": 41.48 }, "geometry": { "type": "Point", "coordinates": [ -75.16446, 39.928871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "LOCATION_NAME": "Smokey Joes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2019, "Total Visits": 441.0, "Total Visitors": 381.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 28.0, "Total Spend": 7922.0, "Total Transactions": 358.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "LOCATION_NAME": "Garden's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 90.0, "POI_CBG": 421010139003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1924.0, "Total Transactions": 152.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@63s-dvr-j9z", "LOCATION_NAME": "Kingston 11", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926444, "LONGITUDE": -75.233508, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 57.0, "POI_CBG": 421010066003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 289.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.3, "MEDIAN_SPEND_PER_CUSTOMER": 30.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233508, 39.926444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-brk", "LOCATION_NAME": "East Coast Wings + Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993916, "LONGITUDE": -75.091363, "DATE_RANGE_START": 2019, "Total Visits": 225.0, "Total Visitors": 193.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 8380.0, "Total Transactions": 213.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.98, "MEDIAN_SPEND_PER_CUSTOMER": 38.31 }, "geometry": { "type": "Point", "coordinates": [ -75.091363, 39.993916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p8n-btv", "LOCATION_NAME": "El New Sunrise Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.03352, "LONGITUDE": -75.066168, "DATE_RANGE_START": 2019, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 77.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.066168, 40.03352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-8jv", "LOCATION_NAME": "The Nile Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039401, "LONGITUDE": -75.177975, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 129.0, "Total Spend": 1857.0, "Total Transactions": 82.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.7, "MEDIAN_SPEND_PER_CUSTOMER": 21.16 }, "geometry": { "type": "Point", "coordinates": [ -75.177975, 40.039401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp5-g49", "LOCATION_NAME": "Aramingo's Best Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984627, "LONGITUDE": -75.113365, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 35.0, "POI_CBG": 421010179003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2624.0, "Total Transactions": 123.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.2, "MEDIAN_SPEND_PER_CUSTOMER": 30.81 }, "geometry": { "type": "Point", "coordinates": [ -75.113365, 39.984627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "LOCATION_NAME": "Nova Star Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.969977, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 42.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 270.0, "Total Spend": 1247.0, "Total Transactions": 35.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.09 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmf-qfz", "LOCATION_NAME": "Entree Byob", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943935, "LONGITUDE": -75.169156, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 105.0, "Total Spend": 2178.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.33, "MEDIAN_SPEND_PER_CUSTOMER": 70.33 }, "geometry": { "type": "Point", "coordinates": [ -75.169156, 39.943935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kxq", "LOCATION_NAME": "Benjamin Lovell Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951787, "LONGITUDE": -75.145456, "DATE_RANGE_START": 2019, "Total Visits": 738.0, "Total Visitors": 570.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 4935.0, "Total Transactions": 48.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.99, "MEDIAN_SPEND_PER_CUSTOMER": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145456, 39.951787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "LOCATION_NAME": "Jack B Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.939115, "LONGITUDE": -75.149838, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 98.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2237.0, "Total Transactions": 35.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149838, 39.939115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-ygk", "LOCATION_NAME": "Straight From the Heart Bookstore", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 40.130239, "LONGITUDE": -75.016705, "DATE_RANGE_START": 2019, "Total Visits": 1597.0, "Total Visitors": 768.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 80.0, "Total Spend": 297.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.26, "MEDIAN_SPEND_PER_CUSTOMER": 45.67 }, "geometry": { "type": "Point", "coordinates": [ -75.016705, 40.130239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "LOCATION_NAME": "Bloomingdale's Outlet Philadelphia", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 102.0, "Total Spend": 13231.0, "Total Transactions": 202.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.98, "MEDIAN_SPEND_PER_CUSTOMER": 54.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22n@63s-dw9-7nq", "LOCATION_NAME": "Sunglass Hut", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.873547, "LONGITUDE": -75.247282, "DATE_RANGE_START": 2019, "Total Visits": 7088.0, "Total Visitors": 6390.0, "POI_CBG": 420459800001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 6303.0, "Total Transactions": 35.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 189.84, "MEDIAN_SPEND_PER_CUSTOMER": 189.84 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.873547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmf-mc5", "LOCATION_NAME": "Assembly Rooftop Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.956953, "LONGITUDE": -75.169629, "DATE_RANGE_START": 2019, "Total Visits": 9115.0, "Total Visitors": 7169.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 100.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169629, 39.956953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "LOCATION_NAME": "New Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2019, "Total Visits": 1083.0, "Total Visitors": 573.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 122.0, "Total Spend": 1044.0, "Total Transactions": 68.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.06, "MEDIAN_SPEND_PER_CUSTOMER": 16.31 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wc5", "LOCATION_NAME": "Kids Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.08622, "LONGITUDE": -74.962809, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 233.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 850.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.5, "MEDIAN_SPEND_PER_CUSTOMER": 56.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962809, 40.08622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-j35", "LOCATION_NAME": "18th Street Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951252, "LONGITUDE": -75.170272, "DATE_RANGE_START": 2019, "Total Visits": 956.0, "Total Visitors": 643.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 194.0, "Total Spend": 1564.0, "Total Transactions": 32.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.98 }, "geometry": { "type": "Point", "coordinates": [ -75.170272, 39.951252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-q9f", "LOCATION_NAME": "BEL Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.105145, "LONGITUDE": -75.032134, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 55.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.64, "MEDIAN_SPEND_PER_CUSTOMER": 13.64 }, "geometry": { "type": "Point", "coordinates": [ -75.032134, 40.105145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmb-ce5", "LOCATION_NAME": "Angelo's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940639, "LONGITUDE": -75.157632, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 102.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 374.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.33, "MEDIAN_SPEND_PER_CUSTOMER": 37.65 }, "geometry": { "type": "Point", "coordinates": [ -75.157632, 39.940639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-835", "LOCATION_NAME": "Little Thai Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953099, "LONGITUDE": -75.159123, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 4225.0, "Total Transactions": 275.0, "Total Customers": 247.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.159123, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9w-sbk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.124225, "LONGITUDE": -75.015653, "DATE_RANGE_START": 2019, "Total Visits": 1771.0, "Total Visitors": 1284.0, "POI_CBG": 421010365013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 988.0, "Total Transactions": 45.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.59, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.015653, 40.124225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgj-4qf", "LOCATION_NAME": "Eddie's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980774, "LONGITUDE": -75.153402, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 82.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 370.0, "Total Transactions": 60.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 5.75 }, "geometry": { "type": "Point", "coordinates": [ -75.153402, 39.980774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-rhq", "LOCATION_NAME": "Singh Tire Center", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.982111, "LONGITUDE": -75.138488, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 38.0, "POI_CBG": 421010156001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 150.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138488, 39.982111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "LOCATION_NAME": "Golden Nugget Jewelers III", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2019, "Total Visits": 3971.0, "Total Visitors": 2995.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 95180.0, "Total Transactions": 53.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 675.0, "MEDIAN_SPEND_PER_CUSTOMER": 850.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "LOCATION_NAME": "Barcade", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96746, "LONGITUDE": -75.134594, "DATE_RANGE_START": 2019, "Total Visits": 1236.0, "Total Visitors": 1006.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 28427.0, "Total Transactions": 1154.0, "Total Customers": 978.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.4, "MEDIAN_SPEND_PER_CUSTOMER": 20.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134594, 39.96746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnt-tgk", "LOCATION_NAME": "Hinge Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979226, "LONGITUDE": -75.112172, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 57.0, "POI_CBG": 421010180011.0, "MEDIAN_DWELL": 169.0, "Total Spend": 2500.0, "Total Transactions": 60.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.24, "MEDIAN_SPEND_PER_CUSTOMER": 40.34 }, "geometry": { "type": "Point", "coordinates": [ -75.112172, 39.979226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-8y9", "LOCATION_NAME": "Dollar Days Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.952899, "LONGITUDE": -75.218099, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 508.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 57.0, "Total Spend": 2912.0, "Total Transactions": 203.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.27, "MEDIAN_SPEND_PER_CUSTOMER": 13.76 }, "geometry": { "type": "Point", "coordinates": [ -75.218099, 39.952899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9s-92k", "LOCATION_NAME": "House Of Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.114993, "LONGITUDE": -74.997145, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 72.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 413.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 123.84, "MEDIAN_SPEND_PER_CUSTOMER": 123.84 }, "geometry": { "type": "Point", "coordinates": [ -74.997145, 40.114993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-hwk", "LOCATION_NAME": "Mr Bar Stool", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.953666, "LONGITUDE": -75.142763, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 112.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1567.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 470.34, "MEDIAN_SPEND_PER_CUSTOMER": 470.34 }, "geometry": { "type": "Point", "coordinates": [ -75.142763, 39.953666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.878244, "LONGITUDE": -75.24235, "DATE_RANGE_START": 2019, "Total Visits": 70643.0, "Total Visitors": 56252.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2213.0, "Total Transactions": 165.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.52, "MEDIAN_SPEND_PER_CUSTOMER": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.24235, 39.878244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040308, "LONGITUDE": -75.143944, "DATE_RANGE_START": 2019, "Total Visits": 738.0, "Total Visitors": 526.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3132.0, "Total Transactions": 210.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.22, "MEDIAN_SPEND_PER_CUSTOMER": 12.03 }, "geometry": { "type": "Point", "coordinates": [ -75.143944, 40.040308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-grk", "LOCATION_NAME": "Bargain world", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.941099, "LONGITUDE": -75.21263, "DATE_RANGE_START": 2019, "Total Visits": 380.0, "Total Visitors": 270.0, "POI_CBG": 421010074002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 133.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.59, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.21263, 39.941099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.029597, "LONGITUDE": -75.145391, "DATE_RANGE_START": 2019, "Total Visits": 490.0, "Total Visitors": 360.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1579.0, "Total Transactions": 88.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.99, "MEDIAN_SPEND_PER_CUSTOMER": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.145391, 40.029597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pmb-btv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.943154, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2019, "Total Visits": 3506.0, "Total Visitors": 2237.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 14829.0, "Total Transactions": 790.0, "Total Customers": 476.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.45, "MEDIAN_SPEND_PER_CUSTOMER": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.943154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-47q", "LOCATION_NAME": "Beauty Time", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040779, "LONGITUDE": -75.109561, "DATE_RANGE_START": 2019, "Total Visits": 486.0, "Total Visitors": 408.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6801.0, "Total Transactions": 238.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 23.72 }, "geometry": { "type": "Point", "coordinates": [ -75.109561, 40.040779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "LOCATION_NAME": "BP", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032516, "LONGITUDE": -75.084558, "DATE_RANGE_START": 2019, "Total Visits": 3483.0, "Total Visitors": 2262.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4449.0, "Total Transactions": 227.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.95, "MEDIAN_SPEND_PER_CUSTOMER": 16.89 }, "geometry": { "type": "Point", "coordinates": [ -75.084558, 40.032516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-php-pgk", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.058417, "LONGITUDE": -75.162783, "DATE_RANGE_START": 2019, "Total Visits": 280.0, "Total Visitors": 210.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 591.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.09, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162783, 40.058417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 53.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 408.0, "Total Spend": 5396.0, "Total Transactions": 127.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.97, "MEDIAN_SPEND_PER_CUSTOMER": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-php-s3q", "LOCATION_NAME": "Tejade Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.060966, "LONGITUDE": -75.161233, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010264004.0, "MEDIAN_DWELL": 13.0, "Total Spend": 884.0, "Total Transactions": 128.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.57 }, "geometry": { "type": "Point", "coordinates": [ -75.161233, 40.060966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "LOCATION_NAME": "East Falls Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010170001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14630.0, "Total Transactions": 493.0, "Total Customers": 345.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.71, "MEDIAN_SPEND_PER_CUSTOMER": 26.78 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmd-sbk", "LOCATION_NAME": "Bicycle Therapy", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.945493, "LONGITUDE": -75.178987, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 82.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 7.0, "Total Spend": 10681.0, "Total Transactions": 67.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.6, "MEDIAN_SPEND_PER_CUSTOMER": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178987, 39.945493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-nwk", "LOCATION_NAME": "Centro Musical", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.991818, "LONGITUDE": -75.139984, "DATE_RANGE_START": 2019, "Total Visits": 1149.0, "Total Visitors": 646.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 408.0, "Total Spend": 109.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 39.991818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "LOCATION_NAME": "The Last Word Bookshop", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2019, "Total Visits": 1849.0, "Total Visitors": 1526.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 79.0, "Total Spend": 3053.0, "Total Transactions": 168.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.94 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnw-yvz", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.97112, "LONGITUDE": -75.151073, "DATE_RANGE_START": 2019, "Total Visits": 1416.0, "Total Visitors": 1034.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 473.0, "Total Transactions": 28.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.63, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.151073, 39.97112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-ks5", "LOCATION_NAME": "ICI Macarons & Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951938, "LONGITUDE": -75.144396, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 240.0, "Total Spend": 3979.0, "Total Transactions": 178.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144396, 39.951938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj9-grk", "LOCATION_NAME": "Nedro Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.043815, "LONGITUDE": -75.156105, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010279014.0, "MEDIAN_DWELL": 47.0, "Total Spend": 220.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.91, "MEDIAN_SPEND_PER_CUSTOMER": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.156105, 40.043815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.063003, "LONGITUDE": -75.237723, "DATE_RANGE_START": 2019, "Total Visits": 483.0, "Total Visitors": 395.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 22348.0, "Total Transactions": 533.0, "Total Customers": 423.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.45, "MEDIAN_SPEND_PER_CUSTOMER": 40.34 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 40.063003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "LOCATION_NAME": "Friendship Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03925, "LONGITUDE": -75.04588, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 61.0, "Total Spend": 154.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.49, "MEDIAN_SPEND_PER_CUSTOMER": 23.25 }, "geometry": { "type": "Point", "coordinates": [ -75.04588, 40.03925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-xwk", "LOCATION_NAME": "Walnut Street Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952066, "LONGITUDE": -75.183753, "DATE_RANGE_START": 2019, "Total Visits": 10318.0, "Total Visitors": 5850.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 301.0, "Total Spend": 6145.0, "Total Transactions": 263.0, "Total Customers": 180.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.07, "MEDIAN_SPEND_PER_CUSTOMER": 29.91 }, "geometry": { "type": "Point", "coordinates": [ -75.183753, 39.952066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-phy-rc5", "LOCATION_NAME": "TABU Hookah Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.02058, "LONGITUDE": -75.133817, "DATE_RANGE_START": 2019, "Total Visits": 788.0, "Total Visitors": 543.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 41700.0, "Total Transactions": 2095.0, "Total Customers": 1018.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.01, "MEDIAN_SPEND_PER_CUSTOMER": 26.02 }, "geometry": { "type": "Point", "coordinates": [ -75.133817, 40.02058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pm8-kxq", "LOCATION_NAME": "Broad Street Bullies", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.904586, "LONGITUDE": -75.16953, "DATE_RANGE_START": 2019, "Total Visits": 3740.0, "Total Visitors": 3152.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 2661.0, "Total Transactions": 68.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.75, "MEDIAN_SPEND_PER_CUSTOMER": 40.08 }, "geometry": { "type": "Point", "coordinates": [ -75.16953, 39.904586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "LOCATION_NAME": "Drinkers Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952101, "LONGITUDE": -75.17208, "DATE_RANGE_START": 2019, "Total Visits": 738.0, "Total Visitors": 631.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 42933.0, "Total Transactions": 1806.0, "Total Customers": 1244.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17208, 39.952101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-4vz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077481, "LONGITUDE": -75.031225, "DATE_RANGE_START": 2019, "Total Visits": 413.0, "Total Visitors": 401.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3010.0, "Total Transactions": 213.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.97, "MEDIAN_SPEND_PER_CUSTOMER": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.031225, 40.077481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pg8-ks5", "LOCATION_NAME": "Rybrew", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974204, "LONGITUDE": -75.182529, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 25.0, "Total Spend": 20303.0, "Total Transactions": 1231.0, "Total Customers": 705.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.48, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.182529, 39.974204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pm5-bzf", "LOCATION_NAME": "Mr Wish USA", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912953, "LONGITUDE": -75.153917, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 268.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 22.0, "Total Spend": 14.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.32, "MEDIAN_SPEND_PER_CUSTOMER": 4.32 }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.912953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94797, "LONGITUDE": -75.154128, "DATE_RANGE_START": 2019, "Total Visits": 675.0, "Total Visitors": 573.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9338.0, "Total Transactions": 1507.0, "Total Customers": 963.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.81, "MEDIAN_SPEND_PER_CUSTOMER": 5.89 }, "geometry": { "type": "Point", "coordinates": [ -75.154128, 39.94797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-47q", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.921468, "LONGITUDE": -75.184708, "DATE_RANGE_START": 2019, "Total Visits": 378.0, "Total Visitors": 298.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6024.0, "Total Transactions": 38.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.28, "MEDIAN_SPEND_PER_CUSTOMER": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.184708, 39.921468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2019, "Total Visits": 1031.0, "Total Visitors": 836.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5155.0, "Total Transactions": 949.0, "Total Customers": 440.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.6, "MEDIAN_SPEND_PER_CUSTOMER": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pm9-wc5", "LOCATION_NAME": "Scoop DeVille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949779, "LONGITUDE": -75.148514, "DATE_RANGE_START": 2019, "Total Visits": 4401.0, "Total Visitors": 3576.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 5197.0, "Total Transactions": 505.0, "Total Customers": 468.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.148514, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj9-5j9", "LOCATION_NAME": "D & D Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.042578, "LONGITUDE": -75.140373, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 60.0, "POI_CBG": 421010276003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 88.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.45, "MEDIAN_SPEND_PER_CUSTOMER": 7.79 }, "geometry": { "type": "Point", "coordinates": [ -75.140373, 40.042578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "LOCATION_NAME": "S and J Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948539, "LONGITUDE": -75.227093, "DATE_RANGE_START": 2019, "Total Visits": 418.0, "Total Visitors": 232.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 382.0, "Total Spend": 2507.0, "Total Transactions": 72.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.83, "MEDIAN_SPEND_PER_CUSTOMER": 25.14 }, "geometry": { "type": "Point", "coordinates": [ -75.227093, 39.948539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9m-gtv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.080307, "LONGITUDE": -74.99459, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 222.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 740.0, "Total Transactions": 37.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.24, "MEDIAN_SPEND_PER_CUSTOMER": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -74.99459, 40.080307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-6hq", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.087733, "LONGITUDE": -74.961181, "DATE_RANGE_START": 2019, "Total Visits": 886.0, "Total Visitors": 771.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1071.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 33.74 }, "geometry": { "type": "Point", "coordinates": [ -74.961181, 40.087733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgk-z9f", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999874, "LONGITUDE": -75.209033, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 27.0, "POI_CBG": 421010122041.0, "MEDIAN_DWELL": 3.0, "Total Spend": 174.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.9, "MEDIAN_SPEND_PER_CUSTOMER": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.209033, 39.999874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-n5z", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954145, "LONGITUDE": -75.201008, "DATE_RANGE_START": 2019, "Total Visits": 551.0, "Total Visitors": 366.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 91.0, "Total Spend": 790.0, "Total Transactions": 52.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.38, "MEDIAN_SPEND_PER_CUSTOMER": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.201008, 39.954145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pm4-2x5", "LOCATION_NAME": "Stadium Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919559, "LONGITUDE": -75.163925, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 40.0, "POI_CBG": 421010040021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.08, "MEDIAN_SPEND_PER_CUSTOMER": 20.08 }, "geometry": { "type": "Point", "coordinates": [ -75.163925, 39.919559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pnx-cbk", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97443, "LONGITUDE": -75.13265, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 43.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3125.0, "Total Transactions": 213.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.63, "MEDIAN_SPEND_PER_CUSTOMER": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.13265, 39.97443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050984, "LONGITUDE": -75.010119, "DATE_RANGE_START": 2019, "Total Visits": 984.0, "Total Visitors": 560.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4525.0, "Total Transactions": 773.0, "Total Customers": 340.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.96, "MEDIAN_SPEND_PER_CUSTOMER": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.010119, 40.050984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "LOCATION_NAME": "RIM Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 72.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 705.0, "Total Transactions": 43.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-jd9", "LOCATION_NAME": "The Children's Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950539, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2019, "Total Visits": 2300.0, "Total Visitors": 1672.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 43.0, "Total Spend": 1393.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.12, "MEDIAN_SPEND_PER_CUSTOMER": 59.12 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "LOCATION_NAME": "Popi's Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 93.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 7161.0, "Total Transactions": 93.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.34, "MEDIAN_SPEND_PER_CUSTOMER": 72.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "LOCATION_NAME": "Aldo Lamberti Trattoria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.874852, "LONGITUDE": -75.241162, "DATE_RANGE_START": 2019, "Total Visits": 19356.0, "Total Visitors": 16699.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 41.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.33, "MEDIAN_SPEND_PER_CUSTOMER": 12.33 }, "geometry": { "type": "Point", "coordinates": [ -75.241162, 39.874852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnw-nh5", "LOCATION_NAME": "Sancho Pistolas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969014, "LONGITUDE": -75.135132, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 278.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 1794.0, "Total Transactions": 40.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.61, "MEDIAN_SPEND_PER_CUSTOMER": 31.92 }, "geometry": { "type": "Point", "coordinates": [ -75.135132, 39.969014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "LOCATION_NAME": "Higher Grounds", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": null, "Total Spend": 2039.0, "Total Transactions": 203.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.9, "MEDIAN_SPEND_PER_CUSTOMER": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p85-7wk", "LOCATION_NAME": "Merc Bros Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058617, "LONGITUDE": -75.046078, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 74.0, "Total Spend": 100.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.02, "MEDIAN_SPEND_PER_CUSTOMER": 30.02 }, "geometry": { "type": "Point", "coordinates": [ -75.046078, 40.058617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-2hq", "LOCATION_NAME": "O Sole Mio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937827, "LONGITUDE": -75.148269, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 35.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": 779.0, "Total Spend": 4777.0, "Total Transactions": 431.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.08 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 39.937827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pnx-bzf", "LOCATION_NAME": "Heffe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973095, "LONGITUDE": -75.13376, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 38.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 235.0, "Total Spend": 31.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.13376, 39.973095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.991689, "LONGITUDE": -75.090963, "DATE_RANGE_START": 2019, "Total Visits": 6053.0, "Total Visitors": 3646.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 84954.0, "Total Transactions": 964.0, "Total Customers": 581.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.98, "MEDIAN_SPEND_PER_CUSTOMER": 53.88 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 39.991689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "LOCATION_NAME": "Claudio's Specialty Foods", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 47.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 82.0, "Total Spend": 1715.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.8, "MEDIAN_SPEND_PER_CUSTOMER": 30.21 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "LOCATION_NAME": "Rapoport Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2019, "Total Visits": 311.0, "Total Visitors": 263.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 55.0, "Total Spend": 284.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.73, "MEDIAN_SPEND_PER_CUSTOMER": 21.77 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-225@628-pp5-dgk", "LOCATION_NAME": "A & F Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.993258, "LONGITUDE": -75.110206, "DATE_RANGE_START": 2019, "Total Visits": 716.0, "Total Visitors": 466.0, "POI_CBG": 421010188005.0, "MEDIAN_DWELL": 342.0, "Total Spend": 288.0, "Total Transactions": 17.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 15.88 }, "geometry": { "type": "Point", "coordinates": [ -75.110206, 39.993258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952459, "LONGITUDE": -75.162267, "DATE_RANGE_START": 2019, "Total Visits": 7859.0, "Total Visitors": 5342.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 120.0, "Total Spend": 7469.0, "Total Transactions": 1584.0, "Total Customers": 823.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.1, "MEDIAN_SPEND_PER_CUSTOMER": 5.63 }, "geometry": { "type": "Point", "coordinates": [ -75.162267, 39.952459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043491, "LONGITUDE": -75.159296, "DATE_RANGE_START": 2019, "Total Visits": 406.0, "Total Visitors": 280.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4583.0, "Total Transactions": 790.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.72, "MEDIAN_SPEND_PER_CUSTOMER": 7.03 }, "geometry": { "type": "Point", "coordinates": [ -75.159296, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085593, "LONGITUDE": -74.962215, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 58.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 88.0, "Total Spend": 1631.0, "Total Transactions": 45.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.99, "MEDIAN_SPEND_PER_CUSTOMER": 37.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962215, 40.085593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2019, "Total Visits": 813.0, "Total Visitors": 680.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 6122.0, "Total Transactions": 120.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.9 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.912981, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 58.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4701.0, "Total Transactions": 75.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.19, "MEDIAN_SPEND_PER_CUSTOMER": 43.72 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.912981 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "LOCATION_NAME": "A Z Budget", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2019, "Total Visits": 257.0, "Total Visitors": 190.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 627.0, "Total Transactions": 27.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.56, "MEDIAN_SPEND_PER_CUSTOMER": 19.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.991624, "LONGITUDE": -75.134387, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 207.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 8.0, "Total Spend": 7291.0, "Total Transactions": 195.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.134387, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2019, "Total Visits": 740.0, "Total Visitors": 473.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5043.0, "Total Transactions": 1129.0, "Total Customers": 473.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.97, "MEDIAN_SPEND_PER_CUSTOMER": 6.15 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-h5z", "LOCATION_NAME": "Ground Up Coffee Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926043, "LONGITUDE": -75.168183, "DATE_RANGE_START": 2019, "Total Visits": 1537.0, "Total Visitors": 983.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 141.0, "Total Spend": 355.0, "Total Transactions": 62.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.25, "MEDIAN_SPEND_PER_CUSTOMER": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168183, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmf-j5f", "LOCATION_NAME": "Stir", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949714, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2019, "Total Visits": 7944.0, "Total Visitors": 5157.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 60.0, "Total Spend": 1839.0, "Total Transactions": 78.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.949714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "LOCATION_NAME": "Mustard Greens Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 123.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 314.0, "Total Spend": 2664.0, "Total Transactions": 42.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.04, "MEDIAN_SPEND_PER_CUSTOMER": 52.24 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 160.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 12.0, "Total Spend": 681.0, "Total Transactions": 30.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.44, "MEDIAN_SPEND_PER_CUSTOMER": 18.14 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "LOCATION_NAME": "Giovani's Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951522, "LONGITUDE": -75.166746, "DATE_RANGE_START": 2019, "Total Visits": 2998.0, "Total Visitors": 2026.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 45.0, "Total Spend": 12121.0, "Total Transactions": 825.0, "Total Customers": 565.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166746, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "LOCATION_NAME": "Best In Town Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 97.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1590.0, "Total Transactions": 82.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.56, "MEDIAN_SPEND_PER_CUSTOMER": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-y9z", "LOCATION_NAME": "Alyan's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941428, "LONGITUDE": -75.149062, "DATE_RANGE_START": 2019, "Total Visits": 3623.0, "Total Visitors": 2943.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4037.0, "Total Transactions": 150.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.02, "MEDIAN_SPEND_PER_CUSTOMER": 21.63 }, "geometry": { "type": "Point", "coordinates": [ -75.149062, 39.941428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 213.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5511.0, "Total Transactions": 461.0, "Total Customers": 368.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.57, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2019, "Total Visits": 790.0, "Total Visitors": 613.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 769.0, "Total Transactions": 65.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.23, "MEDIAN_SPEND_PER_CUSTOMER": 8.11 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2019, "Total Visits": 625.0, "Total Visitors": 355.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 27893.0, "Total Transactions": 2604.0, "Total Customers": 1499.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.21, "MEDIAN_SPEND_PER_CUSTOMER": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "LOCATION_NAME": "Tampopo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953009, "LONGITUDE": -75.210311, "DATE_RANGE_START": 2019, "Total Visits": 708.0, "Total Visitors": 415.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 219.0, "Total Spend": 4800.0, "Total Transactions": 245.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 15.58 }, "geometry": { "type": "Point", "coordinates": [ -75.210311, 39.953009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "LOCATION_NAME": "Broad Street Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 153.0, "POI_CBG": 421010023001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 13868.0, "Total Transactions": 556.0, "Total Customers": 471.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.18, "MEDIAN_SPEND_PER_CUSTOMER": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmd-hyv", "LOCATION_NAME": "Spirit of Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941503, "LONGITUDE": -75.140368, "DATE_RANGE_START": 2019, "Total Visits": 696.0, "Total Visitors": 625.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 121.0, "Total Spend": 7526.0, "Total Transactions": 192.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.5, "MEDIAN_SPEND_PER_CUSTOMER": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140368, 39.941503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "LOCATION_NAME": "Asia On the Parkway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95574, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2019, "Total Visits": 3678.0, "Total Visitors": 2487.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 139.0, "Total Spend": 7025.0, "Total Transactions": 183.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 37.63 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.95574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-d35", "LOCATION_NAME": "honeygrow", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978435, "LONGITUDE": -75.157453, "DATE_RANGE_START": 2019, "Total Visits": 516.0, "Total Visitors": 370.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 313.0, "Total Spend": 538.0, "Total Transactions": 40.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.85, "MEDIAN_SPEND_PER_CUSTOMER": 13.28 }, "geometry": { "type": "Point", "coordinates": [ -75.157453, 39.978435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-68v", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051732, "LONGITUDE": -75.010927, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 55.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 332.0, "Total Spend": 3887.0, "Total Transactions": 165.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.49, "MEDIAN_SPEND_PER_CUSTOMER": 25.17 }, "geometry": { "type": "Point", "coordinates": [ -75.010927, 40.051732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "LOCATION_NAME": "Pizza Boli's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010190001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 517.0, "Total Transactions": 28.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 21.18 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94836, "LONGITUDE": -75.206367, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 40.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4384.0, "Total Transactions": 721.0, "Total Customers": 366.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.28, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.206367, 39.94836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "LOCATION_NAME": "No 1 Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2019, "Total Visits": 120.0, "Total Visitors": 80.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 187.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.93, "MEDIAN_SPEND_PER_CUSTOMER": 17.93 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-9vf", "LOCATION_NAME": "Soul Boat", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931707, "LONGITUDE": -75.169132, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010030024.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1069.0, "Total Transactions": 68.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.53, "MEDIAN_SPEND_PER_CUSTOMER": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.169132, 39.931707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "LOCATION_NAME": "T cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947904, "LONGITUDE": -75.142953, "DATE_RANGE_START": 2019, "Total Visits": 650.0, "Total Visitors": 516.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 61.0, "Total Spend": 36913.0, "Total Transactions": 1637.0, "Total Customers": 1006.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.142953, 39.947904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032663, "LONGITUDE": -75.179788, "DATE_RANGE_START": 2019, "Total Visits": 416.0, "Total Visitors": 292.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10469.0, "Total Transactions": 1767.0, "Total Customers": 748.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.89, "MEDIAN_SPEND_PER_CUSTOMER": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.179788, 40.032663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "LOCATION_NAME": "Taco Loco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1547.0, "Total Transactions": 125.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.53, "MEDIAN_SPEND_PER_CUSTOMER": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-ysq", "LOCATION_NAME": "C & R Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.93947, "LONGITUDE": -75.209529, "DATE_RANGE_START": 2019, "Total Visits": 476.0, "Total Visitors": 380.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 4766.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 198.3, "MEDIAN_SPEND_PER_CUSTOMER": 226.33 }, "geometry": { "type": "Point", "coordinates": [ -75.209529, 39.93947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-ht9", "LOCATION_NAME": "Sonesta Philadelphia Rittenhouse Square", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952877, "LONGITUDE": -75.170604, "DATE_RANGE_START": 2019, "Total Visits": 3386.0, "Total Visitors": 1826.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 207.0, "Total Spend": 43845.0, "Total Transactions": 150.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 237.89, "MEDIAN_SPEND_PER_CUSTOMER": 270.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170604, 39.952877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2019, "Total Visits": 1359.0, "Total Visitors": 1096.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 180747.0, "Total Transactions": 11105.0, "Total Customers": 6240.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "LOCATION_NAME": "Prince Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 93.0, "POI_CBG": 421010288002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6848.0, "Total Transactions": 323.0, "Total Customers": 257.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.9, "MEDIAN_SPEND_PER_CUSTOMER": 22.81 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "LOCATION_NAME": "University City Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2019, "Total Visits": 193.0, "Total Visitors": 180.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2198.0, "Total Transactions": 55.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.75 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-cdv", "LOCATION_NAME": "Holiday Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.04293, "LONGITUDE": -75.010392, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 37.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1572.0, "Total Transactions": 50.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.62, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010392, 40.04293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pg4-w49", "LOCATION_NAME": "Pauline's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040848, "LONGITUDE": -75.157522, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010279022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1654.0, "Total Transactions": 168.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.13, "MEDIAN_SPEND_PER_CUSTOMER": 15.59 }, "geometry": { "type": "Point", "coordinates": [ -75.157522, 40.040848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "LOCATION_NAME": "M & M Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 103.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 23.0, "Total Spend": 805.0, "Total Transactions": 37.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2019, "Total Visits": 943.0, "Total Visitors": 798.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1270.0, "Total Transactions": 75.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2019, "Total Visits": 296.0, "Total Visitors": 215.0, "POI_CBG": 421010278002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1502.0, "Total Transactions": 115.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.52, "MEDIAN_SPEND_PER_CUSTOMER": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.978487, "LONGITUDE": -75.271145, "DATE_RANGE_START": 2019, "Total Visits": 1249.0, "Total Visitors": 1048.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 15.0, "Total Spend": 36999.0, "Total Transactions": 936.0, "Total Customers": 798.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.63, "MEDIAN_SPEND_PER_CUSTOMER": 32.97 }, "geometry": { "type": "Point", "coordinates": [ -75.271145, 39.978487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-249", "LOCATION_NAME": "Moon Arrow", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.939446, "LONGITUDE": -75.149912, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 604.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.79, "MEDIAN_SPEND_PER_CUSTOMER": 41.79 }, "geometry": { "type": "Point", "coordinates": [ -75.149912, 39.939446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnz-xyv", "LOCATION_NAME": "Moju's Family Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988309, "LONGITUDE": -75.102423, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010379002.0, "MEDIAN_DWELL": 190.0, "Total Spend": 743.0, "Total Transactions": 37.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.25, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102423, 39.988309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnw-zzz", "LOCATION_NAME": "L & M Auto Repair", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.973171, "LONGITUDE": -75.147843, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010145002.0, "MEDIAN_DWELL": 163.0, "Total Spend": 433.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 130.11, "MEDIAN_SPEND_PER_CUSTOMER": 130.11 }, "geometry": { "type": "Point", "coordinates": [ -75.147843, 39.973171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 27.0, "POI_CBG": 421010314022.0, "MEDIAN_DWELL": 62.0, "Total Spend": 739.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.6, "MEDIAN_SPEND_PER_CUSTOMER": 70.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26h-222@628-pm3-zmk", "LOCATION_NAME": "Wendy's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920091, "LONGITUDE": -75.159002, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010041021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 691.0, "Total Transactions": 33.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.06, "MEDIAN_SPEND_PER_CUSTOMER": 22.29 }, "geometry": { "type": "Point", "coordinates": [ -75.159002, 39.920091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "LOCATION_NAME": "Hoagie Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010266007.0, "MEDIAN_DWELL": 192.0, "Total Spend": 1998.0, "Total Transactions": 112.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.2, "MEDIAN_SPEND_PER_CUSTOMER": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 27.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 75.0, "Total Spend": 2657.0, "Total Transactions": 98.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.982036, "LONGITUDE": -75.156118, "DATE_RANGE_START": 2019, "Total Visits": 786.0, "Total Visitors": 338.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 2415.0, "Total Transactions": 436.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.3, "MEDIAN_SPEND_PER_CUSTOMER": 7.47 }, "geometry": { "type": "Point", "coordinates": [ -75.156118, 39.982036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-kfz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991954, "LONGITUDE": -75.178916, "DATE_RANGE_START": 2019, "Total Visits": 730.0, "Total Visitors": 443.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1064.0, "Total Transactions": 52.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.31 }, "geometry": { "type": "Point", "coordinates": [ -75.178916, 39.991954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "LOCATION_NAME": "Davis Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 52.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 699.0, "Total Spend": 2075.0, "Total Transactions": 107.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.43, "MEDIAN_SPEND_PER_CUSTOMER": 20.45 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pp4-jd9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.986516, "LONGITUDE": -75.12253, "DATE_RANGE_START": 2019, "Total Visits": 1876.0, "Total Visitors": 1351.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 243.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.35, "MEDIAN_SPEND_PER_CUSTOMER": 26.35 }, "geometry": { "type": "Point", "coordinates": [ -75.12253, 39.986516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954547, "LONGITUDE": -75.194897, "DATE_RANGE_START": 2019, "Total Visits": 255.0, "Total Visitors": 232.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 51466.0, "Total Transactions": 6740.0, "Total Customers": 2753.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.42, "MEDIAN_SPEND_PER_CUSTOMER": 9.92 }, "geometry": { "type": "Point", "coordinates": [ -75.194897, 39.954547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-73q", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950321, "LONGITUDE": -75.163776, "DATE_RANGE_START": 2019, "Total Visits": 2662.0, "Total Visitors": 1856.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 87.0, "Total Spend": 7046.0, "Total Transactions": 485.0, "Total Customers": 421.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.163776, 39.950321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-7wk", "LOCATION_NAME": "Fuel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953562, "LONGITUDE": -75.188092, "DATE_RANGE_START": 2019, "Total Visits": 500.0, "Total Visitors": 336.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 45.0, "Total Spend": 4293.0, "Total Transactions": 353.0, "Total Customers": 293.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.188092, 39.953562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2019, "Total Visits": 978.0, "Total Visitors": 615.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6048.0, "Total Transactions": 958.0, "Total Customers": 558.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.19, "MEDIAN_SPEND_PER_CUSTOMER": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.000779, "LONGITUDE": -75.226852, "DATE_RANGE_START": 2019, "Total Visits": 5925.0, "Total Visitors": 4291.0, "POI_CBG": 421010121002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2209.0, "Total Transactions": 85.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.31, "MEDIAN_SPEND_PER_CUSTOMER": 31.33 }, "geometry": { "type": "Point", "coordinates": [ -75.226852, 40.000779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948761, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2019, "Total Visits": 533.0, "Total Visitors": 486.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8607.0, "Total Transactions": 1448.0, "Total Customers": 883.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.81, "MEDIAN_SPEND_PER_CUSTOMER": 5.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.948761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8t-vvf", "LOCATION_NAME": "Hanesbrands", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089656, "LONGITUDE": -74.961738, "DATE_RANGE_START": 2019, "Total Visits": 473.0, "Total Visitors": 440.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 452.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.5, "MEDIAN_SPEND_PER_CUSTOMER": 53.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961738, 40.089656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "LOCATION_NAME": "So Korean Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2034.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.21, "MEDIAN_SPEND_PER_CUSTOMER": 89.21 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "LOCATION_NAME": "Spring Garden Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2019, "Total Visits": 921.0, "Total Visitors": 715.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2151.0, "Total Transactions": 157.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.23, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-kvf", "LOCATION_NAME": "20th Street Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951712, "LONGITUDE": -75.173725, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 90.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 882.0, "Total Transactions": 40.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.74, "MEDIAN_SPEND_PER_CUSTOMER": 25.28 }, "geometry": { "type": "Point", "coordinates": [ -75.173725, 39.951712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "LOCATION_NAME": "Talk of the Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071911, "LONGITUDE": -75.161398, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 108.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1312.0, "Total Transactions": 58.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.88, "MEDIAN_SPEND_PER_CUSTOMER": 20.76 }, "geometry": { "type": "Point", "coordinates": [ -75.161398, 40.071911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "LOCATION_NAME": "New Zem Zem Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2019, "Total Visits": 180.0, "Total Visitors": 117.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1268.0, "Total Transactions": 57.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.56, "MEDIAN_SPEND_PER_CUSTOMER": 24.37 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnz-kzz", "LOCATION_NAME": "La Colombe Torrefaction", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988818, "LONGITUDE": -75.097047, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 80.0, "POI_CBG": 421010379006.0, "MEDIAN_DWELL": 10.0, "Total Spend": 82.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.25, "MEDIAN_SPEND_PER_CUSTOMER": 24.68 }, "geometry": { "type": "Point", "coordinates": [ -75.097047, 39.988818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952606, "LONGITUDE": -75.16665, "DATE_RANGE_START": 2019, "Total Visits": 7542.0, "Total Visitors": 4836.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 66.0, "Total Spend": 9880.0, "Total Transactions": 1766.0, "Total Customers": 1088.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.59, "MEDIAN_SPEND_PER_CUSTOMER": 5.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16665, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pgh-vmk", "LOCATION_NAME": "The Conwell Inn", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.981755, "LONGITUDE": -75.156137, "DATE_RANGE_START": 2019, "Total Visits": 786.0, "Total Visitors": 338.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 8479.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 177.53, "MEDIAN_SPEND_PER_CUSTOMER": 181.86 }, "geometry": { "type": "Point", "coordinates": [ -75.156137, 39.981755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-s89", "LOCATION_NAME": "Pen and Pencil", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948013, "LONGITUDE": -75.167208, "DATE_RANGE_START": 2019, "Total Visits": 245.0, "Total Visitors": 157.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 32.0, "Total Spend": 885.0, "Total Transactions": 35.0, "Total Customers": 27.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167208, 39.948013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "LOCATION_NAME": "Italian Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2019, "Total Visits": 92.0, "Total Visitors": 60.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 553.0, "Total Spend": 1649.0, "Total Transactions": 142.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.56, "MEDIAN_SPEND_PER_CUSTOMER": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7b-vmk", "LOCATION_NAME": "Out Of Wack Jack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057001, "LONGITUDE": -75.014587, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 97.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 61.0, "Total Spend": 1734.0, "Total Transactions": 35.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.19, "MEDIAN_SPEND_PER_CUSTOMER": 46.76 }, "geometry": { "type": "Point", "coordinates": [ -75.014587, 40.057001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-49z", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921974, "LONGITUDE": -75.18737, "DATE_RANGE_START": 2019, "Total Visits": 207.0, "Total Visitors": 192.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 96.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.51, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18737, 39.921974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-y9z", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93105, "LONGITUDE": -75.226248, "DATE_RANGE_START": 2019, "Total Visits": 755.0, "Total Visitors": 646.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1780.0, "Total Transactions": 160.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -75.226248, 39.93105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j7q", "LOCATION_NAME": "J Mclaughlin", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075451, "LONGITUDE": -75.204853, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": null, "Total Spend": 643.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 155.0, "MEDIAN_SPEND_PER_CUSTOMER": 155.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204853, 40.075451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-pjv", "LOCATION_NAME": "Dock Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.90981, "LONGITUDE": -75.220749, "DATE_RANGE_START": 2019, "Total Visits": 2780.0, "Total Visitors": 961.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 191.0, "Total Spend": 1410.0, "Total Transactions": 190.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.29, "MEDIAN_SPEND_PER_CUSTOMER": 13.04 }, "geometry": { "type": "Point", "coordinates": [ -75.220749, 39.90981 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-73q", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947698, "LONGITUDE": -75.193491, "DATE_RANGE_START": 2019, "Total Visits": 1379.0, "Total Visitors": 999.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 52.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.53, "MEDIAN_SPEND_PER_CUSTOMER": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.193491, 39.947698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmb-fpv", "LOCATION_NAME": "Locust Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947233, "LONGITUDE": -75.157426, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 103.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 22.0, "Total Spend": 7181.0, "Total Transactions": 287.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157426, 39.947233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph6-vvf", "LOCATION_NAME": "Debreaux's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989238, "LONGITUDE": -75.24979, "DATE_RANGE_START": 2019, "Total Visits": 92.0, "Total Visitors": 68.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 179.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.92, "MEDIAN_SPEND_PER_CUSTOMER": 40.92 }, "geometry": { "type": "Point", "coordinates": [ -75.24979, 39.989238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvr-cwk", "LOCATION_NAME": "Rhythm and Brunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922021, "LONGITUDE": -75.230955, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 48.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 18.0, "Total Spend": 2801.0, "Total Transactions": 80.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -75.230955, 39.922021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wzf", "LOCATION_NAME": "Bravo Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030409, "LONGITUDE": -75.145574, "DATE_RANGE_START": 2019, "Total Visits": 173.0, "Total Visitors": 145.0, "POI_CBG": 421010282001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1344.0, "Total Transactions": 85.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.07, "MEDIAN_SPEND_PER_CUSTOMER": 20.64 }, "geometry": { "type": "Point", "coordinates": [ -75.145574, 40.030409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "LOCATION_NAME": "Tattooed Mom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941873, "LONGITUDE": -75.151859, "DATE_RANGE_START": 2019, "Total Visits": 330.0, "Total Visitors": 301.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 39892.0, "Total Transactions": 1612.0, "Total Customers": 1346.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151859, 39.941873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p75-9pv", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044008, "LONGITUDE": -75.017305, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 123.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 446.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.34, "MEDIAN_SPEND_PER_CUSTOMER": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.017305, 40.044008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "LOCATION_NAME": "Kennedy Food Garden", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2019, "Total Visits": 894.0, "Total Visitors": 511.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 205.0, "Total Spend": 4900.0, "Total Transactions": 386.0, "Total Customers": 247.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.48, "MEDIAN_SPEND_PER_CUSTOMER": 11.91 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "LOCATION_NAME": "Suburban Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2019, "Total Visits": 300.0, "Total Visitors": 237.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1456.0, "Total Transactions": 30.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.69, "MEDIAN_SPEND_PER_CUSTOMER": 29.28 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "LOCATION_NAME": "Skyline Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2019, "Total Visits": 428.0, "Total Visitors": 333.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 18742.0, "Total Transactions": 38.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 122.25, "MEDIAN_SPEND_PER_CUSTOMER": 134.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-73q", "LOCATION_NAME": "CITGO", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.984832, "LONGITUDE": -75.246188, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 202.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 83.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246188, 39.984832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2019, "Total Visits": 147.0, "Total Visitors": 133.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6660.0, "Total Transactions": 480.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2019, "Total Visits": 421.0, "Total Visitors": 363.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8731.0, "Total Transactions": 1477.0, "Total Customers": 781.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.05, "MEDIAN_SPEND_PER_CUSTOMER": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952185, "LONGITUDE": -75.173618, "DATE_RANGE_START": 2019, "Total Visits": 423.0, "Total Visitors": 321.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6020.0, "Total Transactions": 1289.0, "Total Customers": 718.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.9, "MEDIAN_SPEND_PER_CUSTOMER": 5.04 }, "geometry": { "type": "Point", "coordinates": [ -75.173618, 39.952185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "LOCATION_NAME": "Walnut Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957098, "LONGITUDE": -75.224484, "DATE_RANGE_START": 2019, "Total Visits": 242.0, "Total Visitors": 188.0, "POI_CBG": 421010085002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6731.0, "Total Transactions": 207.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.25, "MEDIAN_SPEND_PER_CUSTOMER": 26.59 }, "geometry": { "type": "Point", "coordinates": [ -75.224484, 39.957098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "LOCATION_NAME": "Parkway Corner Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2019, "Total Visits": 458.0, "Total Visitors": 345.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 10154.0, "Total Transactions": 661.0, "Total Customers": 385.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.19, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-mzf", "LOCATION_NAME": "Tir na nOg Irish Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.954415, "LONGITUDE": -75.16676, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 212.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 51.0, "Total Spend": 17835.0, "Total Transactions": 470.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.12, "MEDIAN_SPEND_PER_CUSTOMER": 30.68 }, "geometry": { "type": "Point", "coordinates": [ -75.16676, 39.954415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnz-z9f", "LOCATION_NAME": "R & R Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.988487, "LONGITUDE": -75.10672, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 52.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 293.0, "Total Transactions": 27.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.46, "MEDIAN_SPEND_PER_CUSTOMER": 10.46 }, "geometry": { "type": "Point", "coordinates": [ -75.10672, 39.988487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8t-4qf", "LOCATION_NAME": "Speedy's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084571, "LONGITUDE": -74.972797, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 38.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 44.0, "Total Spend": 743.0, "Total Transactions": 42.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.85, "MEDIAN_SPEND_PER_CUSTOMER": 22.73 }, "geometry": { "type": "Point", "coordinates": [ -74.972797, 40.084571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "LOCATION_NAME": "Sky Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2019, "Total Visits": 272.0, "Total Visitors": 215.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 40.0, "Total Spend": 6537.0, "Total Transactions": 135.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8v-7nq", "LOCATION_NAME": "Beer Outlet", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.088669, "LONGITUDE": -74.965987, "DATE_RANGE_START": 2019, "Total Visits": 423.0, "Total Visitors": 366.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 265.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.31, "MEDIAN_SPEND_PER_CUSTOMER": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -74.965987, 40.088669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "LOCATION_NAME": "Stenton Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 55.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 279.0, "Total Spend": 1049.0, "Total Transactions": 73.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.64, "MEDIAN_SPEND_PER_CUSTOMER": 17.05 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "LOCATION_NAME": "Pizzeria Stella", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2019, "Total Visits": 381.0, "Total Visitors": 328.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 27298.0, "Total Transactions": 390.0, "Total Customers": 360.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.48, "MEDIAN_SPEND_PER_CUSTOMER": 63.44 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "LOCATION_NAME": "Allegro Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2019, "Total Visits": 371.0, "Total Visitors": 277.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 41.0, "Total Spend": 16112.0, "Total Transactions": 1334.0, "Total Customers": 888.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.56, "MEDIAN_SPEND_PER_CUSTOMER": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-6p9", "LOCATION_NAME": "Pret A Manger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951392, "LONGITUDE": -75.16582, "DATE_RANGE_START": 2019, "Total Visits": 19592.0, "Total Visitors": 12000.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 32.0, "Total Spend": 1155.0, "Total Transactions": 128.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.67, "MEDIAN_SPEND_PER_CUSTOMER": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.16582, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999174, "LONGITUDE": -75.093264, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 47.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 31.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.37, "MEDIAN_SPEND_PER_CUSTOMER": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -75.093264, 39.999174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 193.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 8.0, "Total Spend": 810.0, "Total Transactions": 60.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.14, "MEDIAN_SPEND_PER_CUSTOMER": 11.91 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "LOCATION_NAME": "John's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 100.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 27.0, "Total Spend": 364.0, "Total Transactions": 28.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.23, "MEDIAN_SPEND_PER_CUSTOMER": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "LOCATION_NAME": "Hair Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2019, "Total Visits": 4966.0, "Total Visitors": 2720.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 5176.0, "Total Transactions": 220.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p8t-6kz", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.083264, "LONGITUDE": -74.962395, "DATE_RANGE_START": 2019, "Total Visits": 20780.0, "Total Visitors": 12506.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 26.0, "Total Spend": 409252.0, "Total Transactions": 7746.0, "Total Customers": 4218.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.04, "MEDIAN_SPEND_PER_CUSTOMER": 46.62 }, "geometry": { "type": "Point", "coordinates": [ -74.962395, 40.083264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "LOCATION_NAME": "Dairy Queen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087375, "LONGITUDE": -75.039949, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 270.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2470.0, "Total Transactions": 233.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.05, "MEDIAN_SPEND_PER_CUSTOMER": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.039949, 40.087375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "LOCATION_NAME": "Trio Delight Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037587, "LONGITUDE": -75.118044, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 128.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1496.0, "Total Transactions": 93.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.34, "MEDIAN_SPEND_PER_CUSTOMER": 13.97 }, "geometry": { "type": "Point", "coordinates": [ -75.118044, 40.037587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pm8-pgk", "LOCATION_NAME": "Kasumi Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.910232, "LONGITUDE": -75.186866, "DATE_RANGE_START": 2019, "Total Visits": 1011.0, "Total Visitors": 635.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4992.0, "Total Transactions": 167.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.53, "MEDIAN_SPEND_PER_CUSTOMER": 35.42 }, "geometry": { "type": "Point", "coordinates": [ -75.186866, 39.910232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pg9-k75", "LOCATION_NAME": "Panda Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9926, "LONGITUDE": -75.181975, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 5.0, "POI_CBG": 421010169023.0, "MEDIAN_DWELL": 41.0, "Total Spend": 2956.0, "Total Transactions": 133.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.73, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181975, 39.9926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068041, "LONGITUDE": -75.007034, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 78.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 10.0, "Total Spend": 890.0, "Total Transactions": 145.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.51, "MEDIAN_SPEND_PER_CUSTOMER": 6.45 }, "geometry": { "type": "Point", "coordinates": [ -75.007034, 40.068041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2019, "Total Visits": 520.0, "Total Visitors": 361.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7146.0, "Total Transactions": 1341.0, "Total Customers": 535.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.53, "MEDIAN_SPEND_PER_CUSTOMER": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009461, "LONGITUDE": -75.150639, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 52.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2124.0, "Total Transactions": 413.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.93, "MEDIAN_SPEND_PER_CUSTOMER": 6.84 }, "geometry": { "type": "Point", "coordinates": [ -75.150639, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-7t9", "LOCATION_NAME": "The Kettle Black", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961646, "LONGITUDE": -75.140921, "DATE_RANGE_START": 2019, "Total Visits": 2119.0, "Total Visitors": 1821.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3637.0, "Total Transactions": 325.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140921, 39.961646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-2tv", "LOCATION_NAME": "Bodhi Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942883, "LONGITUDE": -75.145675, "DATE_RANGE_START": 2019, "Total Visits": 348.0, "Total Visitors": 255.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 53.0, "Total Spend": 1519.0, "Total Transactions": 237.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.25, "MEDIAN_SPEND_PER_CUSTOMER": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145675, 39.942883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "LOCATION_NAME": "Aura", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.961228, "LONGITUDE": -75.138826, "DATE_RANGE_START": 2019, "Total Visits": 668.0, "Total Visitors": 571.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 151370.0, "Total Transactions": 3255.0, "Total Customers": 2660.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138826, 39.961228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "LOCATION_NAME": "Nam Phuong", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936493, "LONGITUDE": -75.162002, "DATE_RANGE_START": 2019, "Total Visits": 611.0, "Total Visitors": 506.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 20.0, "Total Spend": 12873.0, "Total Transactions": 308.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.05, "MEDIAN_SPEND_PER_CUSTOMER": 36.95 }, "geometry": { "type": "Point", "coordinates": [ -75.162002, 39.936493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-qzz", "LOCATION_NAME": "Randazzo's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944329, "LONGITUDE": -75.172844, "DATE_RANGE_START": 2019, "Total Visits": 1128.0, "Total Visitors": 666.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 195.0, "Total Spend": 5690.0, "Total Transactions": 293.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.13, "MEDIAN_SPEND_PER_CUSTOMER": 18.28 }, "geometry": { "type": "Point", "coordinates": [ -75.172844, 39.944329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.099643, "LONGITUDE": -75.010101, "DATE_RANGE_START": 2019, "Total Visits": 1144.0, "Total Visitors": 1001.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 9387.0, "Total Transactions": 296.0, "Total Customers": 273.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.87, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.010101, 40.099643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "LOCATION_NAME": "Tuna Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954087, "LONGITUDE": -75.143167, "DATE_RANGE_START": 2019, "Total Visits": 401.0, "Total Visitors": 293.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 278.0, "Total Spend": 15258.0, "Total Transactions": 243.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.95, "MEDIAN_SPEND_PER_CUSTOMER": 67.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143167, 39.954087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wc5", "LOCATION_NAME": "Abunai Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949658, "LONGITUDE": -75.147567, "DATE_RANGE_START": 2019, "Total Visits": 1471.0, "Total Visitors": 1114.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 4264.0, "Total Transactions": 265.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.15, "MEDIAN_SPEND_PER_CUSTOMER": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.147567, 39.949658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfy-zj9", "LOCATION_NAME": "Mike's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022539, "LONGITUDE": -75.218415, "DATE_RANGE_START": 2019, "Total Visits": 1418.0, "Total Visitors": 1038.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 55.0, "Total Spend": 5897.0, "Total Transactions": 558.0, "Total Customers": 475.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218415, 40.022539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmc-2ff", "LOCATION_NAME": "The Trestle Inn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.958777, "LONGITUDE": -75.156489, "DATE_RANGE_START": 2019, "Total Visits": 418.0, "Total Visitors": 370.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9212.0, "Total Transactions": 350.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156489, 39.958777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "LOCATION_NAME": "Ryan's Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2019, "Total Visits": 263.0, "Total Visitors": 227.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 41.0, "Total Spend": 23864.0, "Total Transactions": 986.0, "Total Customers": 711.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.25 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-236@628-pm9-wc5", "LOCATION_NAME": "Grubhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949649, "LONGITUDE": -75.147584, "DATE_RANGE_START": 2019, "Total Visits": 1471.0, "Total Visitors": 1114.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 3684.0, "Total Transactions": 223.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.09, "MEDIAN_SPEND_PER_CUSTOMER": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.147584, 39.949649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "LOCATION_NAME": "New Wave Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 65.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 11754.0, "Total Transactions": 306.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.78, "MEDIAN_SPEND_PER_CUSTOMER": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "LOCATION_NAME": "New England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2019, "Total Visits": 390.0, "Total Visitors": 301.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 945.0, "Total Transactions": 35.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 21.22 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "LOCATION_NAME": "Abyssinia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2019, "Total Visits": 168.0, "Total Visitors": 100.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 108.0, "Total Spend": 8816.0, "Total Transactions": 238.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.5, "MEDIAN_SPEND_PER_CUSTOMER": 36.15 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "LOCATION_NAME": "Buddakan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948922, "LONGITUDE": -75.147091, "DATE_RANGE_START": 2019, "Total Visits": 545.0, "Total Visitors": 398.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 81.0, "Total Spend": 36939.0, "Total Transactions": 303.0, "Total Customers": 277.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.6, "MEDIAN_SPEND_PER_CUSTOMER": 108.57 }, "geometry": { "type": "Point", "coordinates": [ -75.147091, 39.948922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "LOCATION_NAME": "Jj Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951963, "LONGITUDE": -75.174719, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 88.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 58.0, "Total Spend": 6423.0, "Total Transactions": 185.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.72, "MEDIAN_SPEND_PER_CUSTOMER": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.174719, 39.951963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.925864, "LONGITUDE": -75.142894, "DATE_RANGE_START": 2019, "Total Visits": 6390.0, "Total Visitors": 4231.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 278974.0, "Total Transactions": 1936.0, "Total Customers": 1096.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.36, "MEDIAN_SPEND_PER_CUSTOMER": 56.09 }, "geometry": { "type": "Point", "coordinates": [ -75.142894, 39.925864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjb-6p9", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046633, "LONGITUDE": -75.14228, "DATE_RANGE_START": 2019, "Total Visits": 826.0, "Total Visitors": 581.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 124.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.25, "MEDIAN_SPEND_PER_CUSTOMER": 37.36 }, "geometry": { "type": "Point", "coordinates": [ -75.14228, 40.046633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvr-z75", "LOCATION_NAME": "Kim A Grocery & Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.935748, "LONGITUDE": -75.228814, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 190.0, "POI_CBG": 421010065003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 17.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228814, 39.935748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040652, "LONGITUDE": -75.223499, "DATE_RANGE_START": 2019, "Total Visits": 3405.0, "Total Visitors": 2057.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 197941.0, "Total Transactions": 11910.0, "Total Customers": 4872.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.08 }, "geometry": { "type": "Point", "coordinates": [ -75.223499, 40.040652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2019, "Total Visits": 1331.0, "Total Visitors": 911.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 75859.0, "Total Transactions": 4779.0, "Total Customers": 2204.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.1, "MEDIAN_SPEND_PER_CUSTOMER": 21.66 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.95521, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2019, "Total Visits": 785.0, "Total Visitors": 531.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 63002.0, "Total Transactions": 8662.0, "Total Customers": 3638.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.18, "MEDIAN_SPEND_PER_CUSTOMER": 9.92 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.95521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hnq", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952468, "LONGITUDE": -75.173535, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 83.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 158.0, "Total Spend": 623.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.13, "MEDIAN_SPEND_PER_CUSTOMER": 12.13 }, "geometry": { "type": "Point", "coordinates": [ -75.173535, 39.952468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-ckf", "LOCATION_NAME": "Tran Beer Dist", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.924541, "LONGITUDE": -75.173565, "DATE_RANGE_START": 2019, "Total Visits": 611.0, "Total Visitors": 370.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 41.0, "Total Spend": 2295.0, "Total Transactions": 97.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.68, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173565, 39.924541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095685, "LONGITUDE": -75.015058, "DATE_RANGE_START": 2019, "Total Visits": 958.0, "Total Visitors": 818.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1680.0, "Total Transactions": 335.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.26, "MEDIAN_SPEND_PER_CUSTOMER": 6.99 }, "geometry": { "type": "Point", "coordinates": [ -75.015058, 40.095685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-xnq", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.87811, "LONGITUDE": -75.239425, "DATE_RANGE_START": 2019, "Total Visits": 305816.0, "Total Visitors": 187584.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 3812.0, "Total Transactions": 78.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.48, "MEDIAN_SPEND_PER_CUSTOMER": 48.73 }, "geometry": { "type": "Point", "coordinates": [ -75.239425, 39.87811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "LOCATION_NAME": "Liberty Time", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2019, "Total Visits": 6869.0, "Total Visitors": 5219.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 767.0, "Total Transactions": 23.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.86, "MEDIAN_SPEND_PER_CUSTOMER": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tqf", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.926373, "LONGITUDE": -75.141555, "DATE_RANGE_START": 2019, "Total Visits": 15596.0, "Total Visitors": 10171.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 543130.0, "Total Transactions": 9769.0, "Total Customers": 6555.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.39, "MEDIAN_SPEND_PER_CUSTOMER": 49.15 }, "geometry": { "type": "Point", "coordinates": [ -75.141555, 39.926373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2019, "Total Visits": 625.0, "Total Visitors": 460.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 664.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.36, "MEDIAN_SPEND_PER_CUSTOMER": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "LOCATION_NAME": "Academy Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 18.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 18.0, "Total Spend": 241.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.39, "MEDIAN_SPEND_PER_CUSTOMER": 34.63 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9k-t9z", "LOCATION_NAME": "Millevoi Brothers", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.108397, "LONGITUDE": -75.000602, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 152.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 78.0, "Total Spend": 776.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.49, "MEDIAN_SPEND_PER_CUSTOMER": 68.49 }, "geometry": { "type": "Point", "coordinates": [ -75.000602, 40.108397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-ffz", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.92086, "LONGITUDE": -75.173341, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1243.0, "Total Transactions": 58.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.43, "MEDIAN_SPEND_PER_CUSTOMER": 15.43 }, "geometry": { "type": "Point", "coordinates": [ -75.173341, 39.92086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm4-h5z", "LOCATION_NAME": "Le Virtu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925948, "LONGITUDE": -75.16776, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 115.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 60.0, "Total Spend": 8802.0, "Total Transactions": 60.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 127.54, "MEDIAN_SPEND_PER_CUSTOMER": 120.81 }, "geometry": { "type": "Point", "coordinates": [ -75.16776, 39.925948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-223@628-phz-py9", "LOCATION_NAME": "Gaetano's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0058, "LONGITUDE": -75.105778, "DATE_RANGE_START": 2019, "Total Visits": 178.0, "Total Visitors": 155.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 46.0, "Total Spend": 540.0, "Total Transactions": 27.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.06, "MEDIAN_SPEND_PER_CUSTOMER": 22.56 }, "geometry": { "type": "Point", "coordinates": [ -75.105778, 40.0058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-6x5", "LOCATION_NAME": "Harp & Crown", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950579, "LONGITUDE": -75.166788, "DATE_RANGE_START": 2019, "Total Visits": 12130.0, "Total Visitors": 8380.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 20488.0, "Total Transactions": 275.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.09, "MEDIAN_SPEND_PER_CUSTOMER": 59.78 }, "geometry": { "type": "Point", "coordinates": [ -75.166788, 39.950579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "LOCATION_NAME": "New Panda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 45.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 15.0, "Total Spend": 850.0, "Total Transactions": 52.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.15, "MEDIAN_SPEND_PER_CUSTOMER": 14.16 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "LOCATION_NAME": "Makkah Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2019, "Total Visits": 310.0, "Total Visitors": 247.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 11317.0, "Total Transactions": 643.0, "Total Customers": 376.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.92, "MEDIAN_SPEND_PER_CUSTOMER": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg9-b8v", "LOCATION_NAME": "Dragon Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981544, "LONGITUDE": -75.174071, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 68.0, "POI_CBG": 421010149001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 717.0, "Total Transactions": 42.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.61, "MEDIAN_SPEND_PER_CUSTOMER": 14.69 }, "geometry": { "type": "Point", "coordinates": [ -75.174071, 39.981544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2019, "Total Visits": 1316.0, "Total Visitors": 971.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2933.0, "Total Transactions": 170.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.83, "MEDIAN_SPEND_PER_CUSTOMER": 17.59 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.960173, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2019, "Total Visits": 408.0, "Total Visitors": 295.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1988.0, "Total Transactions": 255.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.94, "MEDIAN_SPEND_PER_CUSTOMER": 7.76 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.960173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "LOCATION_NAME": "Knead Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948165, "LONGITUDE": -75.153606, "DATE_RANGE_START": 2019, "Total Visits": 202.0, "Total Visitors": 157.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 12819.0, "Total Transactions": 1191.0, "Total Customers": 696.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153606, 39.948165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-vj9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.018604, "LONGITUDE": -75.214313, "DATE_RANGE_START": 2019, "Total Visits": 705.0, "Total Visitors": 551.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9847.0, "Total Transactions": 451.0, "Total Customers": 340.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.51, "MEDIAN_SPEND_PER_CUSTOMER": 15.97 }, "geometry": { "type": "Point", "coordinates": [ -75.214313, 40.018604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.955786, "LONGITUDE": -75.214102, "DATE_RANGE_START": 2019, "Total Visits": 3321.0, "Total Visitors": 2254.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 762.0, "Total Transactions": 45.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.82, "MEDIAN_SPEND_PER_CUSTOMER": 18.01 }, "geometry": { "type": "Point", "coordinates": [ -75.214102, 39.955786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2019, "Total Visits": 1124.0, "Total Visitors": 984.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 25276.0, "Total Transactions": 520.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7qz", "LOCATION_NAME": "Wishbone", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948376, "LONGITUDE": -75.162398, "DATE_RANGE_START": 2019, "Total Visits": 636.0, "Total Visitors": 410.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 33.0, "Total Spend": 2406.0, "Total Transactions": 207.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.43, "MEDIAN_SPEND_PER_CUSTOMER": 12.91 }, "geometry": { "type": "Point", "coordinates": [ -75.162398, 39.948376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg9-k4v", "LOCATION_NAME": "Mom's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991401, "LONGITUDE": -75.180066, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 58.0, "POI_CBG": 421010169022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 787.0, "Total Transactions": 28.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.49, "MEDIAN_SPEND_PER_CUSTOMER": 25.31 }, "geometry": { "type": "Point", "coordinates": [ -75.180066, 39.991401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-9pv", "LOCATION_NAME": "Liberty Bell Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044508, "LONGITUDE": -75.01753, "DATE_RANGE_START": 2019, "Total Visits": 1246.0, "Total Visitors": 745.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 33.0, "Total Spend": 65.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.58, "MEDIAN_SPEND_PER_CUSTOMER": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.01753, 40.044508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvx-2kz", "LOCATION_NAME": "Rising Sun", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968785, "LONGITUDE": -75.217282, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 50.0, "POI_CBG": 421010104003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 25477.0, "Total Transactions": 493.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.217282, 39.968785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "LOCATION_NAME": "Bindlestiff Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 165.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.86, "MEDIAN_SPEND_PER_CUSTOMER": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "LOCATION_NAME": "Main Street Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.026391, "LONGITUDE": -75.226268, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 123.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2547.0, "Total Transactions": 45.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.18, "MEDIAN_SPEND_PER_CUSTOMER": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.226268, 40.026391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-d35", "LOCATION_NAME": "Dipinto Guitars", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.970499, "LONGITUDE": -75.13019, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 55.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 216.0, "Total Spend": 170.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.89, "MEDIAN_SPEND_PER_CUSTOMER": 50.89 }, "geometry": { "type": "Point", "coordinates": [ -75.13019, 39.970499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2019, "Total Visits": 848.0, "Total Visitors": 685.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17426.0, "Total Transactions": 2064.0, "Total Customers": 1487.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.43, "MEDIAN_SPEND_PER_CUSTOMER": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnw-mzf", "LOCATION_NAME": "Once Worn Consignment", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.964394, "LONGITUDE": -75.140857, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 105.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 126.0, "Total Spend": 2450.0, "Total Transactions": 70.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140857, 39.964394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-pvz", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994647, "LONGITUDE": -75.095265, "DATE_RANGE_START": 2019, "Total Visits": 393.0, "Total Visitors": 320.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3390.0, "Total Transactions": 203.0, "Total Customers": 180.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.7, "MEDIAN_SPEND_PER_CUSTOMER": 14.64 }, "geometry": { "type": "Point", "coordinates": [ -75.095265, 39.994647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yd9", "LOCATION_NAME": "Tea Do", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954609, "LONGITUDE": -75.156246, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 188.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 8972.0, "Total Transactions": 951.0, "Total Customers": 793.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.37, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.156246, 39.954609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954762, "LONGITUDE": -75.202149, "DATE_RANGE_START": 2019, "Total Visits": 560.0, "Total Visitors": 398.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 21.0, "Total Spend": 7954.0, "Total Transactions": 1647.0, "Total Customers": 738.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.99, "MEDIAN_SPEND_PER_CUSTOMER": 5.81 }, "geometry": { "type": "Point", "coordinates": [ -75.202149, 39.954762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "LOCATION_NAME": "Apple Retail Store", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2019, "Total Visits": 1726.0, "Total Visitors": 1286.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 340225.0, "Total Transactions": 1587.0, "Total Customers": 1398.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.32, "MEDIAN_SPEND_PER_CUSTOMER": 103.73 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-y5f", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.086763, "LONGITUDE": -75.038776, "DATE_RANGE_START": 2019, "Total Visits": 118.0, "Total Visitors": 108.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 129.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 6.21 }, "geometry": { "type": "Point", "coordinates": [ -75.038776, 40.086763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2019, "Total Visits": 843.0, "Total Visitors": 678.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2487.0, "Total Transactions": 108.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.58, "MEDIAN_SPEND_PER_CUSTOMER": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913861, "LONGITUDE": -75.154438, "DATE_RANGE_START": 2019, "Total Visits": 5387.0, "Total Visitors": 2875.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 4350.0, "Total Transactions": 22.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 168.89, "MEDIAN_SPEND_PER_CUSTOMER": 270.32 }, "geometry": { "type": "Point", "coordinates": [ -75.154438, 39.913861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-7t9", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.11156, "LONGITUDE": -75.023472, "DATE_RANGE_START": 2019, "Total Visits": 2052.0, "Total Visitors": 1274.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2842.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 140.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.94 }, "geometry": { "type": "Point", "coordinates": [ -75.023472, 40.11156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065, "LONGITUDE": -74.981932, "DATE_RANGE_START": 2019, "Total Visits": 5340.0, "Total Visitors": 2938.0, "POI_CBG": 421010362033.0, "MEDIAN_DWELL": 4.0, "Total Spend": 713.0, "Total Transactions": 32.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.16, "MEDIAN_SPEND_PER_CUSTOMER": 25.25 }, "geometry": { "type": "Point", "coordinates": [ -74.981932, 40.065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-228@628-p8t-w49", "LOCATION_NAME": "Street Corner", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.087377, "LONGITUDE": -74.961635, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 83.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 573.0, "Total Transactions": 100.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.03, "MEDIAN_SPEND_PER_CUSTOMER": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.961635, 40.087377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026137, "LONGITUDE": -75.042321, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 243.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 521.0, "Total Transactions": 53.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.2, "MEDIAN_SPEND_PER_CUSTOMER": 7.86 }, "geometry": { "type": "Point", "coordinates": [ -75.042321, 40.026137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "LOCATION_NAME": "Boss Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2019, "Total Visits": 242.0, "Total Visitors": 205.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 39843.0, "Total Transactions": 695.0, "Total Customers": 638.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 40.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pp2-sdv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.995956, "LONGITUDE": -75.09064, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 123.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 719.0, "Total Transactions": 65.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 10.36 }, "geometry": { "type": "Point", "coordinates": [ -75.09064, 39.995956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-cdv", "LOCATION_NAME": "Pizza Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991164, "LONGITUDE": -75.088836, "DATE_RANGE_START": 2019, "Total Visits": 5888.0, "Total Visitors": 3733.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 25.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.43, "MEDIAN_SPEND_PER_CUSTOMER": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.088836, 39.991164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pj2-d9z", "LOCATION_NAME": "T&S Express Market", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.010871, "LONGITUDE": -75.104013, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 55.0, "POI_CBG": 421010191002.0, "MEDIAN_DWELL": 75.0, "Total Spend": 164.0, "Total Transactions": 17.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.37, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104013, 40.010871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-rzf", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.995312, "LONGITUDE": -75.092003, "DATE_RANGE_START": 2019, "Total Visits": 505.0, "Total Visitors": 416.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 803.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.69, "MEDIAN_SPEND_PER_CUSTOMER": 36.16 }, "geometry": { "type": "Point", "coordinates": [ -75.092003, 39.995312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-fcq", "LOCATION_NAME": "Kanella", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946359, "LONGITUDE": -75.157966, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 235.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 17.0, "Total Spend": 9761.0, "Total Transactions": 240.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.32, "MEDIAN_SPEND_PER_CUSTOMER": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.157966, 39.946359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2019, "Total Visits": 2240.0, "Total Visitors": 1657.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 18705.0, "Total Transactions": 518.0, "Total Customers": 441.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.32 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "LOCATION_NAME": "Rosario's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 50.0, "POI_CBG": 421010022002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1627.0, "Total Transactions": 67.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.68, "MEDIAN_SPEND_PER_CUSTOMER": 25.33 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2019, "Total Visits": 498.0, "Total Visitors": 373.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 51.0, "Total Spend": 28499.0, "Total Transactions": 705.0, "Total Customers": 618.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.96, "MEDIAN_SPEND_PER_CUSTOMER": 32.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-m8v", "LOCATION_NAME": "Ooh LaLa Salads", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970924, "LONGITUDE": -75.156972, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 15.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 225.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 14.84 }, "geometry": { "type": "Point", "coordinates": [ -75.156972, 39.970924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "LOCATION_NAME": "New Star Express Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 98.0, "POI_CBG": 421010111004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1143.0, "Total Transactions": 67.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.89, "MEDIAN_SPEND_PER_CUSTOMER": 16.26 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "LOCATION_NAME": "The Fresh Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2019, "Total Visits": 1013.0, "Total Visitors": 630.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 37066.0, "Total Transactions": 951.0, "Total Customers": 533.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.51, "MEDIAN_SPEND_PER_CUSTOMER": 43.27 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnt-3wk", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.974634, "LONGITUDE": -75.119239, "DATE_RANGE_START": 2019, "Total Visits": 656.0, "Total Visitors": 538.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 3055.0, "Total Transactions": 50.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.04, "MEDIAN_SPEND_PER_CUSTOMER": 52.47 }, "geometry": { "type": "Point", "coordinates": [ -75.119239, 39.974634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-pn5", "LOCATION_NAME": "Hummus Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954342, "LONGITUDE": -75.202153, "DATE_RANGE_START": 2019, "Total Visits": 541.0, "Total Visitors": 455.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 14.0, "Total Spend": 6365.0, "Total Transactions": 508.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.202153, 39.954342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2019, "Total Visits": 606.0, "Total Visitors": 505.0, "POI_CBG": 421010140001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 611.0, "Total Transactions": 57.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.68, "MEDIAN_SPEND_PER_CUSTOMER": 8.79 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-fs5", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.919174, "LONGITUDE": -75.184979, "DATE_RANGE_START": 2019, "Total Visits": 2129.0, "Total Visitors": 1524.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 294.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.57, "MEDIAN_SPEND_PER_CUSTOMER": 31.57 }, "geometry": { "type": "Point", "coordinates": [ -75.184979, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-225@628-p8m-vs5", "LOCATION_NAME": "Wholesale Direct Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029181, "LONGITUDE": -75.05776, "DATE_RANGE_START": 2019, "Total Visits": 4616.0, "Total Visitors": 2275.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 41.0, "Total Spend": 4791.0, "Total Transactions": 135.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.71, "MEDIAN_SPEND_PER_CUSTOMER": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.05776, 40.029181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "LOCATION_NAME": "The Bagel Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937457, "LONGITUDE": -75.15033, "DATE_RANGE_START": 2019, "Total Visits": 180.0, "Total Visitors": 155.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 11639.0, "Total Transactions": 820.0, "Total Customers": 481.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.1, "MEDIAN_SPEND_PER_CUSTOMER": 15.36 }, "geometry": { "type": "Point", "coordinates": [ -75.15033, 39.937457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2019, "Total Visits": 470.0, "Total Visitors": 295.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 79.0, "Total Spend": 7222.0, "Total Transactions": 1163.0, "Total Customers": 760.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045014, "LONGITUDE": -75.08777, "DATE_RANGE_START": 2019, "Total Visits": 520.0, "Total Visitors": 406.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8372.0, "Total Transactions": 1358.0, "Total Customers": 658.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.97, "MEDIAN_SPEND_PER_CUSTOMER": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.08777, 40.045014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026206, "LONGITUDE": -75.22393, "DATE_RANGE_START": 2019, "Total Visits": 180.0, "Total Visitors": 125.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 413.0, "Total Spend": 4650.0, "Total Transactions": 305.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.81, "MEDIAN_SPEND_PER_CUSTOMER": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.22393, 40.026206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22f@628-pmf-n3q", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953402, "LONGITUDE": -75.165876, "DATE_RANGE_START": 2019, "Total Visits": 8037.0, "Total Visitors": 5037.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 73.0, "Total Spend": 769.0, "Total Transactions": 135.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.43, "MEDIAN_SPEND_PER_CUSTOMER": 5.44 }, "geometry": { "type": "Point", "coordinates": [ -75.165876, 39.953402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgd-zxq", "LOCATION_NAME": "GIANT Heirloom Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.954746, "LONGITUDE": -75.191875, "DATE_RANGE_START": 2019, "Total Visits": 8603.0, "Total Visitors": 4982.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 336.0, "Total Spend": 342.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.99, "MEDIAN_SPEND_PER_CUSTOMER": 49.49 }, "geometry": { "type": "Point", "coordinates": [ -75.191875, 39.954746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmd-zfz", "LOCATION_NAME": "Springfield Beer Distributor", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.939186, "LONGITUDE": -75.180299, "DATE_RANGE_START": 2019, "Total Visits": 1149.0, "Total Visitors": 913.0, "POI_CBG": 421010020001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11306.0, "Total Transactions": 142.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.54, "MEDIAN_SPEND_PER_CUSTOMER": 41.45 }, "geometry": { "type": "Point", "coordinates": [ -75.180299, 39.939186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2019, "Total Visits": 6283.0, "Total Visitors": 4649.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 65657.0, "Total Transactions": 2997.0, "Total Customers": 2074.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.17 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.936229, "LONGITUDE": -75.194533, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 133.0, "POI_CBG": 421010033006.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1045.0, "Total Transactions": 55.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.58, "MEDIAN_SPEND_PER_CUSTOMER": 23.36 }, "geometry": { "type": "Point", "coordinates": [ -75.194533, 39.936229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg9-7h5", "LOCATION_NAME": "Hair Town", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991198, "LONGITUDE": -75.177954, "DATE_RANGE_START": 2019, "Total Visits": 158.0, "Total Visitors": 83.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 231.0, "Total Spend": 5379.0, "Total Transactions": 203.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.11, "MEDIAN_SPEND_PER_CUSTOMER": 25.85 }, "geometry": { "type": "Point", "coordinates": [ -75.177954, 39.991198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm9-y9z", "LOCATION_NAME": "InksterInc", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941856, "LONGITUDE": -75.149296, "DATE_RANGE_START": 2019, "Total Visits": 1857.0, "Total Visitors": 1744.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 383.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 115.0, "MEDIAN_SPEND_PER_CUSTOMER": 115.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149296, 39.941856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.992425, "LONGITUDE": -75.101329, "DATE_RANGE_START": 2019, "Total Visits": 1001.0, "Total Visitors": 835.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 9640.0, "Total Transactions": 205.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 51.25 }, "geometry": { "type": "Point", "coordinates": [ -75.101329, 39.992425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "LOCATION_NAME": "Dollar Mart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2019, "Total Visits": 1682.0, "Total Visitors": 1193.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 39.0, "Total Spend": 381.0, "Total Transactions": 42.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.06, "MEDIAN_SPEND_PER_CUSTOMER": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-rp9", "LOCATION_NAME": "Sunrise Breakfast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066142, "LONGITUDE": -75.158748, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1338.0, "Total Transactions": 78.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.32, "MEDIAN_SPEND_PER_CUSTOMER": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.158748, 40.066142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "LOCATION_NAME": "Baltimore Pet Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10593.0, "Total Transactions": 351.0, "Total Customers": 245.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.02, "MEDIAN_SPEND_PER_CUSTOMER": 34.81 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2019, "Total Visits": 2155.0, "Total Visitors": 1459.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 139.0, "Total Spend": 1289.0, "Total Transactions": 40.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 29.69 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4jv", "LOCATION_NAME": "Embroidery King", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.046955, "LONGITUDE": -75.098445, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 70.0, "POI_CBG": 421010305021.0, "MEDIAN_DWELL": 203.0, "Total Spend": 881.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.5, "MEDIAN_SPEND_PER_CUSTOMER": 106.5 }, "geometry": { "type": "Point", "coordinates": [ -75.098445, 40.046955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phq-f4v", "LOCATION_NAME": "Almonte Mini Market 2", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064577, "LONGITUDE": -75.153201, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010266007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 46.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.25, "MEDIAN_SPEND_PER_CUSTOMER": 4.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153201, 40.064577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-ht9", "LOCATION_NAME": "Vapor Hut", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.0786, "LONGITUDE": -75.027064, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 183.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 5740.0, "Total Transactions": 155.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.16, "MEDIAN_SPEND_PER_CUSTOMER": 41.04 }, "geometry": { "type": "Point", "coordinates": [ -75.027064, 40.0786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.051082, "LONGITUDE": -75.059668, "DATE_RANGE_START": 2019, "Total Visits": 7146.0, "Total Visitors": 4769.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 170358.0, "Total Transactions": 4617.0, "Total Customers": 2835.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.9, "MEDIAN_SPEND_PER_CUSTOMER": 36.97 }, "geometry": { "type": "Point", "coordinates": [ -75.059668, 40.051082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-835", "LOCATION_NAME": "Pennsylvania General Store", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953203, "LONGITUDE": -75.159393, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 175.0, "Total Transactions": 17.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.09, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.159393, 39.953203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm9-zmk", "LOCATION_NAME": "Anastacia's Antiques", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.941324, "LONGITUDE": -75.153108, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": null, "Total Spend": 1295.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 324.0, "MEDIAN_SPEND_PER_CUSTOMER": 324.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153108, 39.941324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "LOCATION_NAME": "Asia Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010310001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 384.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.01, "MEDIAN_SPEND_PER_CUSTOMER": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pg2-zs5", "LOCATION_NAME": "South Philly Italian Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054139, "LONGITUDE": -75.194452, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 27.0, "POI_CBG": 421010388004.0, "MEDIAN_DWELL": 195.0, "Total Spend": 590.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.39, "MEDIAN_SPEND_PER_CUSTOMER": 64.62 }, "geometry": { "type": "Point", "coordinates": [ -75.194452, 40.054139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-2hq", "LOCATION_NAME": "Las Cazuelas Restaurant BYOB", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969878, "LONGITUDE": -75.143998, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 32.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3503.0, "Total Transactions": 88.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.38, "MEDIAN_SPEND_PER_CUSTOMER": 28.65 }, "geometry": { "type": "Point", "coordinates": [ -75.143998, 39.969878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "LOCATION_NAME": "Convenient Food Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.034523, "LONGITUDE": -75.044217, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 93.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10529.0, "Total Transactions": 846.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.74, "MEDIAN_SPEND_PER_CUSTOMER": 13.19 }, "geometry": { "type": "Point", "coordinates": [ -75.044217, 40.034523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "LOCATION_NAME": "Crab Shack", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 190.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 365.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-gc5", "LOCATION_NAME": "Salmon Beer Distributor", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.002806, "LONGITUDE": -75.078717, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 255.0, "POI_CBG": 421010183003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1425.0, "Total Transactions": 42.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.29, "MEDIAN_SPEND_PER_CUSTOMER": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.078717, 40.002806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-94v", "LOCATION_NAME": "Mood Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948631, "LONGITUDE": -75.215805, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 360.0, "Total Spend": 1812.0, "Total Transactions": 67.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.47, "MEDIAN_SPEND_PER_CUSTOMER": 24.33 }, "geometry": { "type": "Point", "coordinates": [ -75.215805, 39.948631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7b-kpv", "LOCATION_NAME": "China City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055685, "LONGITUDE": -75.004529, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 1.0, "Total Spend": 516.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.16, "MEDIAN_SPEND_PER_CUSTOMER": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.004529, 40.055685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "LOCATION_NAME": "Revolution Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2019, "Total Visits": 273.0, "Total Visitors": 157.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 7176.0, "Total Transactions": 448.0, "Total Customers": 356.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.66, "MEDIAN_SPEND_PER_CUSTOMER": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-s89", "LOCATION_NAME": "Tequilas Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948519, "LONGITUDE": -75.168054, "DATE_RANGE_START": 2019, "Total Visits": 785.0, "Total Visitors": 553.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 71.0, "Total Spend": 139.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.79, "MEDIAN_SPEND_PER_CUSTOMER": 41.79 }, "geometry": { "type": "Point", "coordinates": [ -75.168054, 39.948519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "LOCATION_NAME": "Little Fish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 58.0, "POI_CBG": 421010018001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 5700.0, "Total Transactions": 45.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.44, "MEDIAN_SPEND_PER_CUSTOMER": 125.44 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "LOCATION_NAME": "Ginza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 52.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 6062.0, "Total Transactions": 125.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.06, "MEDIAN_SPEND_PER_CUSTOMER": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-54v", "LOCATION_NAME": "Wood Street Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958437, "LONGITUDE": -75.158269, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 135.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3624.0, "Total Transactions": 218.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.36, "MEDIAN_SPEND_PER_CUSTOMER": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.158269, 39.958437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "LOCATION_NAME": "Tradesman's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950487, "LONGITUDE": -75.162708, "DATE_RANGE_START": 2019, "Total Visits": 1319.0, "Total Visitors": 1038.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 68058.0, "Total Transactions": 2317.0, "Total Customers": 1622.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.96, "MEDIAN_SPEND_PER_CUSTOMER": 30.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162708, 39.950487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-5xq", "LOCATION_NAME": "Liberty Choice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979685, "LONGITUDE": -75.132953, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 267.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 12516.0, "Total Transactions": 1088.0, "Total Customers": 480.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.18, "MEDIAN_SPEND_PER_CUSTOMER": 17.54 }, "geometry": { "type": "Point", "coordinates": [ -75.132953, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-psq", "LOCATION_NAME": "Pho House Thang Long", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969594, "LONGITUDE": -75.138911, "DATE_RANGE_START": 2019, "Total Visits": 263.0, "Total Visitors": 198.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 230.0, "Total Spend": 2544.0, "Total Transactions": 82.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.81, "MEDIAN_SPEND_PER_CUSTOMER": 32.57 }, "geometry": { "type": "Point", "coordinates": [ -75.138911, 39.969594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "LOCATION_NAME": "Talula's Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2019, "Total Visits": 1143.0, "Total Visitors": 860.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 48.0, "Total Spend": 61504.0, "Total Transactions": 1724.0, "Total Customers": 948.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.14, "MEDIAN_SPEND_PER_CUSTOMER": 30.62 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2019, "Total Visits": 225.0, "Total Visitors": 200.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 6.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.38, "MEDIAN_SPEND_PER_CUSTOMER": 13.38 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pmb-gtv", "LOCATION_NAME": "Middle Child", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947198, "LONGITUDE": -75.159468, "DATE_RANGE_START": 2019, "Total Visits": 1501.0, "Total Visitors": 1004.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 194.0, "Total Spend": 12710.0, "Total Transactions": 690.0, "Total Customers": 546.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.98, "MEDIAN_SPEND_PER_CUSTOMER": 16.95 }, "geometry": { "type": "Point", "coordinates": [ -75.159468, 39.947198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "LOCATION_NAME": "Pac A Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948693, "LONGITUDE": -75.160788, "DATE_RANGE_START": 2019, "Total Visits": 713.0, "Total Visitors": 595.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 16771.0, "Total Transactions": 986.0, "Total Customers": 575.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.48, "MEDIAN_SPEND_PER_CUSTOMER": 18.58 }, "geometry": { "type": "Point", "coordinates": [ -75.160788, 39.948693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "LOCATION_NAME": "Heng Fa Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2019, "Total Visits": 746.0, "Total Visitors": 516.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 34784.0, "Total Transactions": 1258.0, "Total Customers": 924.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.87, "MEDIAN_SPEND_PER_CUSTOMER": 25.82 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "LOCATION_NAME": "Thai Square Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 27.0, "POI_CBG": 421010013005.0, "MEDIAN_DWELL": 119.0, "Total Spend": 3877.0, "Total Transactions": 102.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.35, "MEDIAN_SPEND_PER_CUSTOMER": 35.53 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgh-bzf", "LOCATION_NAME": "A & J Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.001306, "LONGITUDE": -75.15324, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 88.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 357.0, "Total Spend": 788.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.55, "MEDIAN_SPEND_PER_CUSTOMER": 106.55 }, "geometry": { "type": "Point", "coordinates": [ -75.15324, 40.001306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-vcq", "LOCATION_NAME": "Talula's Daily", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947344, "LONGITUDE": -75.153493, "DATE_RANGE_START": 2019, "Total Visits": 1143.0, "Total Visitors": 860.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 48.0, "Total Spend": 96.0, "Total Transactions": 23.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.75, "MEDIAN_SPEND_PER_CUSTOMER": 2.75 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 39.947344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "LOCATION_NAME": "Tio Flores", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94381, "LONGITUDE": -75.168972, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 293.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 20463.0, "Total Transactions": 496.0, "Total Customers": 446.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.37, "MEDIAN_SPEND_PER_CUSTOMER": 36.36 }, "geometry": { "type": "Point", "coordinates": [ -75.168972, 39.94381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "LOCATION_NAME": "Sang Kee Noodle House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954847, "LONGITUDE": -75.193677, "DATE_RANGE_START": 2019, "Total Visits": 1336.0, "Total Visitors": 830.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 321.0, "Total Spend": 12148.0, "Total Transactions": 431.0, "Total Customers": 288.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.44, "MEDIAN_SPEND_PER_CUSTOMER": 31.75 }, "geometry": { "type": "Point", "coordinates": [ -75.193677, 39.954847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pft-ygk", "LOCATION_NAME": "Chubbys Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029131, "LONGITUDE": -75.206304, "DATE_RANGE_START": 2019, "Total Visits": 648.0, "Total Visitors": 546.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 12218.0, "Total Transactions": 563.0, "Total Customers": 496.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.99, "MEDIAN_SPEND_PER_CUSTOMER": 19.45 }, "geometry": { "type": "Point", "coordinates": [ -75.206304, 40.029131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg4-bx5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.042838, "LONGITUDE": -75.179833, "DATE_RANGE_START": 2019, "Total Visits": 466.0, "Total Visitors": 340.0, "POI_CBG": 421010252002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2834.0, "Total Transactions": 142.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 17.72 }, "geometry": { "type": "Point", "coordinates": [ -75.179833, 40.042838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pnx-4vz", "LOCATION_NAME": "The Abbaye", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962216, "LONGITUDE": -75.142919, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 37.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 15269.0, "Total Transactions": 408.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.38, "MEDIAN_SPEND_PER_CUSTOMER": 33.57 }, "geometry": { "type": "Point", "coordinates": [ -75.142919, 39.962216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.035295, "LONGITUDE": -75.065039, "DATE_RANGE_START": 2019, "Total Visits": 706.0, "Total Visitors": 530.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1199.0, "Total Transactions": 77.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.91, "MEDIAN_SPEND_PER_CUSTOMER": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.065039, 40.035295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "LOCATION_NAME": "Head House Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.940599, "LONGITUDE": -75.145587, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2661.0, "Total Transactions": 100.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.19, "MEDIAN_SPEND_PER_CUSTOMER": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145587, 39.940599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "LOCATION_NAME": "King Wok's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 23.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": null, "Total Spend": 522.0, "Total Transactions": 32.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 12.65 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "LOCATION_NAME": "Lombard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3114.0, "Total Transactions": 591.0, "Total Customers": 321.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 45.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 8125.0, "Total Transactions": 528.0, "Total Customers": 346.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.56, "MEDIAN_SPEND_PER_CUSTOMER": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2019, "Total Visits": 247.0, "Total Visitors": 232.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5170.0, "Total Transactions": 451.0, "Total Customers": 353.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.11, "MEDIAN_SPEND_PER_CUSTOMER": 11.46 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22x@628-pmf-n3q", "LOCATION_NAME": "Uptown Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953433, "LONGITUDE": -75.165886, "DATE_RANGE_START": 2019, "Total Visits": 8037.0, "Total Visitors": 5037.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 73.0, "Total Spend": 11564.0, "Total Transactions": 566.0, "Total Customers": 428.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165886, 39.953433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "LOCATION_NAME": "China City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 48.0, "POI_CBG": 421010311011.0, "MEDIAN_DWELL": 189.0, "Total Spend": 320.0, "Total Transactions": 25.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.3, "MEDIAN_SPEND_PER_CUSTOMER": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pfy-b6k", "LOCATION_NAME": "Barry's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035119, "LONGITUDE": -75.217909, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 132.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 2726.0, "Total Transactions": 140.0, "Total Customers": 102.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.11, "MEDIAN_SPEND_PER_CUSTOMER": 24.54 }, "geometry": { "type": "Point", "coordinates": [ -75.217909, 40.035119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "LOCATION_NAME": "Mr Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2019, "Total Visits": 160.0, "Total Visitors": 143.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3729.0, "Total Transactions": 110.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.2, "MEDIAN_SPEND_PER_CUSTOMER": 31.62 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgm-68v", "LOCATION_NAME": "Foghorn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009232, "LONGITUDE": -75.194181, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 112.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2703.0, "Total Transactions": 125.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.194181, 40.009232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 127.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1484.0, "Total Transactions": 57.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.8, "MEDIAN_SPEND_PER_CUSTOMER": 23.9 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "LOCATION_NAME": "Penang", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954047, "LONGITUDE": -75.155868, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 270.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 15628.0, "Total Transactions": 401.0, "Total Customers": 386.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.17, "MEDIAN_SPEND_PER_CUSTOMER": 34.17 }, "geometry": { "type": "Point", "coordinates": [ -75.155868, 39.954047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "LOCATION_NAME": "Bistro SouthEast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2019, "Total Visits": 1128.0, "Total Visitors": 666.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 195.0, "Total Spend": 3496.0, "Total Transactions": 117.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.13, "MEDIAN_SPEND_PER_CUSTOMER": 31.22 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "LOCATION_NAME": "Perkins Restaurant & Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2019, "Total Visits": 635.0, "Total Visitors": 481.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 38.0, "Total Spend": 5048.0, "Total Transactions": 160.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.13, "MEDIAN_SPEND_PER_CUSTOMER": 30.35 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-6rk", "LOCATION_NAME": "Magic Carpet Foods", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950915, "LONGITUDE": -75.195176, "DATE_RANGE_START": 2019, "Total Visits": 2112.0, "Total Visitors": 1363.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 89.0, "Total Spend": 2560.0, "Total Transactions": 288.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.195176, 39.950915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-94v", "LOCATION_NAME": "La tapenade", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941057, "LONGITUDE": -75.146154, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 82.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 10030.0, "Total Transactions": 411.0, "Total Customers": 385.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.5, "MEDIAN_SPEND_PER_CUSTOMER": 22.53 }, "geometry": { "type": "Point", "coordinates": [ -75.146154, 39.941057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm3-t35", "LOCATION_NAME": "B2", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930857, "LONGITUDE": -75.162484, "DATE_RANGE_START": 2019, "Total Visits": 873.0, "Total Visitors": 560.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 120.0, "Total Spend": 1282.0, "Total Transactions": 260.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.03, "MEDIAN_SPEND_PER_CUSTOMER": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.162484, 39.930857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.05212, "LONGITUDE": -75.010353, "DATE_RANGE_START": 2019, "Total Visits": 1329.0, "Total Visitors": 783.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 11.0, "Total Spend": 39972.0, "Total Transactions": 1168.0, "Total Customers": 773.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.45, "MEDIAN_SPEND_PER_CUSTOMER": 27.95 }, "geometry": { "type": "Point", "coordinates": [ -75.010353, 40.05212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmb-dd9", "LOCATION_NAME": "Town Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.944522, "LONGITUDE": -75.163234, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 208.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5173.0, "Total Transactions": 187.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.84, "MEDIAN_SPEND_PER_CUSTOMER": 26.84 }, "geometry": { "type": "Point", "coordinates": [ -75.163234, 39.944522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@63s-dvq-jsq", "LOCATION_NAME": "Torres Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955416, "LONGITUDE": -75.238225, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 48.0, "POI_CBG": 421010084005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 279.0, "Total Transactions": 32.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.7, "MEDIAN_SPEND_PER_CUSTOMER": 7.79 }, "geometry": { "type": "Point", "coordinates": [ -75.238225, 39.955416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2019, "Total Visits": 485.0, "Total Visitors": 336.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 70013.0, "Total Transactions": 7552.0, "Total Customers": 3788.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.61, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "LOCATION_NAME": "Cappuccio's Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 65.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1740.0, "Total Transactions": 42.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.13, "MEDIAN_SPEND_PER_CUSTOMER": 28.13 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p7z-x89", "LOCATION_NAME": "Don Pedro Meats and Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.035069, "LONGITUDE": -75.082126, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 421.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6532.0, "Total Transactions": 142.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.16, "MEDIAN_SPEND_PER_CUSTOMER": 45.23 }, "geometry": { "type": "Point", "coordinates": [ -75.082126, 40.035069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm7-nwk", "LOCATION_NAME": "Point Crab's & Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.934951, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 67.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 192.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.934951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj7-5fz", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043629, "LONGITUDE": -75.102849, "DATE_RANGE_START": 2019, "Total Visits": 525.0, "Total Visitors": 410.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 6.0, "Total Spend": 576.0, "Total Transactions": 43.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.49, "MEDIAN_SPEND_PER_CUSTOMER": 9.74 }, "geometry": { "type": "Point", "coordinates": [ -75.102849, 40.043629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7yv", "LOCATION_NAME": "Hunger Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953665, "LONGITUDE": -75.159753, "DATE_RANGE_START": 2019, "Total Visits": 400.0, "Total Visitors": 365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 8909.0, "Total Transactions": 590.0, "Total Customers": 536.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.53, "MEDIAN_SPEND_PER_CUSTOMER": 14.59 }, "geometry": { "type": "Point", "coordinates": [ -75.159753, 39.953665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm3-vzz", "LOCATION_NAME": "Sermania Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.928072, "LONGITUDE": -75.165393, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 381.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.84, "MEDIAN_SPEND_PER_CUSTOMER": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.165393, 39.928072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04622, "LONGITUDE": -75.195937, "DATE_RANGE_START": 2019, "Total Visits": 118.0, "Total Visitors": 70.0, "POI_CBG": 421010236003.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1535.0, "Total Transactions": 160.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.83, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.195937, 40.04622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-v75", "LOCATION_NAME": "Glory Beer Bar & Kitchen", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948157, "LONGITUDE": -75.143628, "DATE_RANGE_START": 2019, "Total Visits": 257.0, "Total Visitors": 208.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 59.0, "Total Spend": 1937.0, "Total Transactions": 35.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 49.49 }, "geometry": { "type": "Point", "coordinates": [ -75.143628, 39.948157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "LOCATION_NAME": "Desi Village", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 23.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 229.0, "Total Spend": 1000.0, "Total Transactions": 40.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.52, "MEDIAN_SPEND_PER_CUSTOMER": 29.26 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "LOCATION_NAME": "Trattoria Carina", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010008011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5190.0, "Total Transactions": 50.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 112.71, "MEDIAN_SPEND_PER_CUSTOMER": 120.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2019, "Total Visits": 486.0, "Total Visitors": 338.0, "POI_CBG": 421010268002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1199.0, "Total Transactions": 58.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.76, "MEDIAN_SPEND_PER_CUSTOMER": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "LOCATION_NAME": "Station Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2019, "Total Visits": 238.0, "Total Visitors": 143.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 3289.0, "Total Transactions": 168.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.68, "MEDIAN_SPEND_PER_CUSTOMER": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p74-n5z", "LOCATION_NAME": "Uniform Gear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.039579, "LONGITUDE": -75.024137, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 35.0, "POI_CBG": 421010329002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1271.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.0, "MEDIAN_SPEND_PER_CUSTOMER": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024137, 40.039579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-p7w-v4v", "LOCATION_NAME": "The Children's Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.047874, "LONGITUDE": -75.055616, "DATE_RANGE_START": 2019, "Total Visits": 285.0, "Total Visitors": 278.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 80.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.96, "MEDIAN_SPEND_PER_CUSTOMER": 23.96 }, "geometry": { "type": "Point", "coordinates": [ -75.055616, 40.047874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "LOCATION_NAME": "Brickbat Books", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 3.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": null, "Total Spend": 951.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvx-vcq", "LOCATION_NAME": "Gold Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943788, "LONGITUDE": -75.210959, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 37.0, "POI_CBG": 421010074001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1295.0, "Total Transactions": 127.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.91, "MEDIAN_SPEND_PER_CUSTOMER": 10.63 }, "geometry": { "type": "Point", "coordinates": [ -75.210959, 39.943788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "LOCATION_NAME": "Philly Tacos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 22.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 131.0, "Total Spend": 763.0, "Total Transactions": 35.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004821, "LONGITUDE": -75.179811, "DATE_RANGE_START": 2019, "Total Visits": 388.0, "Total Visitors": 315.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9425.0, "Total Transactions": 1111.0, "Total Customers": 760.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.62, "MEDIAN_SPEND_PER_CUSTOMER": 9.14 }, "geometry": { "type": "Point", "coordinates": [ -75.179811, 40.004821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2019, "Total Visits": 768.0, "Total Visitors": 433.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3024.0, "Total Transactions": 590.0, "Total Customers": 295.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.55, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-jd9", "LOCATION_NAME": "Watch Co", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952246, "LONGITUDE": -75.168308, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 102.0, "Total Spend": 2678.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168308, 39.952246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "LOCATION_NAME": "Stanley's Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2019, "Total Visits": 820.0, "Total Visitors": 581.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 56369.0, "Total Transactions": 1676.0, "Total Customers": 1089.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.55, "MEDIAN_SPEND_PER_CUSTOMER": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-f4v", "LOCATION_NAME": "Q The Tire Doctor", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.986136, "LONGITUDE": -75.180823, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010151022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 421.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.5, "MEDIAN_SPEND_PER_CUSTOMER": 55.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180823, 39.986136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm7-wp9", "LOCATION_NAME": "El Patio Cafe Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936426, "LONGITUDE": -75.195622, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 22.0, "POI_CBG": 421010033006.0, "MEDIAN_DWELL": 19.0, "Total Spend": 332.0, "Total Transactions": 43.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.87, "MEDIAN_SPEND_PER_CUSTOMER": 13.06 }, "geometry": { "type": "Point", "coordinates": [ -75.195622, 39.936426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-sbk", "LOCATION_NAME": "Faulkner Hyundai", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.102704, "LONGITUDE": -75.006021, "DATE_RANGE_START": 2019, "Total Visits": 6140.0, "Total Visitors": 4156.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 38068.0, "Total Transactions": 92.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 137.11, "MEDIAN_SPEND_PER_CUSTOMER": 149.73 }, "geometry": { "type": "Point", "coordinates": [ -75.006021, 40.102704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-phy-qs5", "LOCATION_NAME": "Torres Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013759, "LONGITUDE": -75.137021, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 13.0, "POI_CBG": 421010197001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 45.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.59, "MEDIAN_SPEND_PER_CUSTOMER": 2.99 }, "geometry": { "type": "Point", "coordinates": [ -75.137021, 40.013759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-ph6-whq", "LOCATION_NAME": "Cedar Park Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986565, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7962.0, "Total Transactions": 311.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.74, "MEDIAN_SPEND_PER_CUSTOMER": 23.86 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnw-mzf", "LOCATION_NAME": "The Foodery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963893, "LONGITUDE": -75.14043, "DATE_RANGE_START": 2019, "Total Visits": 3095.0, "Total Visitors": 2424.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 11718.0, "Total Transactions": 730.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.45, "MEDIAN_SPEND_PER_CUSTOMER": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.14043, 39.963893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928851, "LONGITUDE": -75.229354, "DATE_RANGE_START": 2019, "Total Visits": 485.0, "Total Visitors": 353.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2224.0, "Total Transactions": 346.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.92, "MEDIAN_SPEND_PER_CUSTOMER": 6.99 }, "geometry": { "type": "Point", "coordinates": [ -75.229354, 39.928851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923331, "LONGITUDE": -75.144837, "DATE_RANGE_START": 2019, "Total Visits": 2297.0, "Total Visitors": 1621.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 57.0, "Total Transactions": 13.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.62, "MEDIAN_SPEND_PER_CUSTOMER": 8.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144837, 39.923331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96142, "LONGITUDE": -75.144288, "DATE_RANGE_START": 2019, "Total Visits": 461.0, "Total Visitors": 315.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5362.0, "Total Transactions": 1041.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.41, "MEDIAN_SPEND_PER_CUSTOMER": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.144288, 39.96142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm4-h5z", "LOCATION_NAME": "Cramers Uniforms", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.926232, "LONGITUDE": -75.167927, "DATE_RANGE_START": 2019, "Total Visits": 1537.0, "Total Visitors": 983.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 141.0, "Total Spend": 615.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 184.0, "MEDIAN_SPEND_PER_CUSTOMER": 184.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167927, 39.926232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-gff", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011075, "LONGITUDE": -75.176591, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 37.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2694.0, "Total Transactions": 267.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.41 }, "geometry": { "type": "Point", "coordinates": [ -75.176591, 40.011075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.072233, "LONGITUDE": -75.194825, "DATE_RANGE_START": 2019, "Total Visits": 272.0, "Total Visitors": 233.0, "POI_CBG": 421010257001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2549.0, "Total Transactions": 143.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.95, "MEDIAN_SPEND_PER_CUSTOMER": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.194825, 40.072233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 30.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 201.0, "Total Spend": 5653.0, "Total Transactions": 450.0, "Total Customers": 328.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.61, "MEDIAN_SPEND_PER_CUSTOMER": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm4-t7q", "LOCATION_NAME": "Mifflin Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924805, "LONGITUDE": -75.154427, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 139.0, "POI_CBG": 421010042014.0, "MEDIAN_DWELL": 99.0, "Total Spend": 812.0, "Total Transactions": 95.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.39, "MEDIAN_SPEND_PER_CUSTOMER": 11.81 }, "geometry": { "type": "Point", "coordinates": [ -75.154427, 39.924805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084825, "LONGITUDE": -74.9723, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 137.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4521.0, "Total Transactions": 222.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.7, "MEDIAN_SPEND_PER_CUSTOMER": 22.1 }, "geometry": { "type": "Point", "coordinates": [ -74.9723, 40.084825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-p75-9cq", "LOCATION_NAME": "Deals", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043742, "LONGITUDE": -75.019324, "DATE_RANGE_START": 2020, "Total Visits": 3912.0, "Total Visitors": 2348.0, "POI_CBG": 421019802001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 308.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019324, 40.043742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg9-b8v", "LOCATION_NAME": "Dragon Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981544, "LONGITUDE": -75.174071, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010149001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 429.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.95, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174071, 39.981544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg8-kmk", "LOCATION_NAME": "Brewerytown Beats", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.979092, "LONGITUDE": -75.178265, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010138001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 166.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.46, "MEDIAN_SPEND_PER_CUSTOMER": 26.46 }, "geometry": { "type": "Point", "coordinates": [ -75.178265, 39.979092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "LOCATION_NAME": "New Pizza Villa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 20.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 668.0, "Total Spend": 1399.0, "Total Transactions": 60.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.97, "MEDIAN_SPEND_PER_CUSTOMER": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "LOCATION_NAME": "Fountain Porter", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1759.0, "Total Transactions": 38.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.2, "MEDIAN_SPEND_PER_CUSTOMER": 36.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 165.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.1, "MEDIAN_SPEND_PER_CUSTOMER": 24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.076084, "LONGITUDE": -75.031448, "DATE_RANGE_START": 2020, "Total Visits": 998.0, "Total Visitors": 861.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 17649.0, "Total Transactions": 766.0, "Total Customers": 671.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.94, "MEDIAN_SPEND_PER_CUSTOMER": 20.85 }, "geometry": { "type": "Point", "coordinates": [ -75.031448, 40.076084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2020, "Total Visits": 719.0, "Total Visitors": 562.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 50632.0, "Total Transactions": 1137.0, "Total Customers": 852.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.54, "MEDIAN_SPEND_PER_CUSTOMER": 45.52 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 40.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 24.0, "Total Spend": 20080.0, "Total Transactions": 830.0, "Total Customers": 582.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.85, "MEDIAN_SPEND_PER_CUSTOMER": 26.64 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981705, "LONGITUDE": -75.180442, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 44.0, "POI_CBG": 421010149004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 616.0, "Total Transactions": 36.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.08, "MEDIAN_SPEND_PER_CUSTOMER": 14.54 }, "geometry": { "type": "Point", "coordinates": [ -75.180442, 39.981705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-syv", "LOCATION_NAME": "Sushi Garden & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944749, "LONGITUDE": -75.164917, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 60.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 102.0, "Total Spend": 329.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.15, "MEDIAN_SPEND_PER_CUSTOMER": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.164917, 39.944749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@63s-dvy-wtv", "LOCATION_NAME": "Don Barriga Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953099, "LONGITUDE": -75.211951, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 14.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 6960.0, "Total Transactions": 284.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.6, "MEDIAN_SPEND_PER_CUSTOMER": 26.16 }, "geometry": { "type": "Point", "coordinates": [ -75.211951, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "LOCATION_NAME": "Pub & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3571.0, "Total Transactions": 48.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.08, "MEDIAN_SPEND_PER_CUSTOMER": 70.16 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7yv", "LOCATION_NAME": "Hunger Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953665, "LONGITUDE": -75.159753, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 52.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2815.0, "Total Transactions": 195.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.159753, 39.953665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2020, "Total Visits": 516.0, "Total Visitors": 256.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 493.0, "Total Spend": 47832.0, "Total Transactions": 93.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 610.73, "MEDIAN_SPEND_PER_CUSTOMER": 622.37 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-ygk", "LOCATION_NAME": "Shaxian Delicacies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953861, "LONGITUDE": -75.156353, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 89.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 80.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.27, "MEDIAN_SPEND_PER_CUSTOMER": 20.27 }, "geometry": { "type": "Point", "coordinates": [ -75.156353, 39.953861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8sq", "LOCATION_NAME": "District Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95167, "LONGITUDE": -75.159171, "DATE_RANGE_START": 2020, "Total Visits": 4897.0, "Total Visitors": 3356.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3761.0, "Total Transactions": 236.0, "Total Customers": 181.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.67, "MEDIAN_SPEND_PER_CUSTOMER": 17.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159171, 39.95167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvp-bff", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945197, "LONGITUDE": -75.238981, "DATE_RANGE_START": 2020, "Total Visits": 232.0, "Total Visitors": 202.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 11.0, "Total Spend": 830.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.23, "MEDIAN_SPEND_PER_CUSTOMER": 23.46 }, "geometry": { "type": "Point", "coordinates": [ -75.238981, 39.945197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 99.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 320.0, "Total Spend": 2841.0, "Total Transactions": 195.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.55, "MEDIAN_SPEND_PER_CUSTOMER": 14.54 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9973, "LONGITUDE": -75.092737, "DATE_RANGE_START": 2020, "Total Visits": 774.0, "Total Visitors": 482.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 40.0, "Total Spend": 34067.0, "Total Transactions": 1904.0, "Total Customers": 1298.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.67, "MEDIAN_SPEND_PER_CUSTOMER": 19.98 }, "geometry": { "type": "Point", "coordinates": [ -75.092737, 39.9973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmb-kj9", "LOCATION_NAME": "Oui", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953782, "LONGITUDE": -75.145092, "DATE_RANGE_START": 2020, "Total Visits": 512.0, "Total Visitors": 337.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 78.0, "Total Spend": 471.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.77, "MEDIAN_SPEND_PER_CUSTOMER": 42.77 }, "geometry": { "type": "Point", "coordinates": [ -75.145092, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050926, "LONGITUDE": -75.066019, "DATE_RANGE_START": 2020, "Total Visits": 1634.0, "Total Visitors": 1233.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 755.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.01, "MEDIAN_SPEND_PER_CUSTOMER": 24.01 }, "geometry": { "type": "Point", "coordinates": [ -75.066019, 40.050926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-btv", "LOCATION_NAME": "Ridge Gas & Minimart", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.980802, "LONGITUDE": -75.173001, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 228.0, "POI_CBG": 421010149001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1752.0, "Total Transactions": 101.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.75, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173001, 39.980802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "LOCATION_NAME": "Urban Outfitters", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950066, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 224.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6697.0, "Total Transactions": 87.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.55, "MEDIAN_SPEND_PER_CUSTOMER": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "LOCATION_NAME": "Charley's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 322.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2886.0, "Total Transactions": 147.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.29, "MEDIAN_SPEND_PER_CUSTOMER": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pj6-435", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040276, "LONGITUDE": -75.109025, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 62.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 76.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.17, "MEDIAN_SPEND_PER_CUSTOMER": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.109025, 40.040276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pp5-p35", "LOCATION_NAME": "Martin's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991299, "LONGITUDE": -75.123216, "DATE_RANGE_START": 2020, "Total Visits": 1082.0, "Total Visitors": 713.0, "POI_CBG": 421010177022.0, "MEDIAN_DWELL": 10.0, "Total Spend": 286.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.8, "MEDIAN_SPEND_PER_CUSTOMER": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123216, 39.991299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 294.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6499.0, "Total Transactions": 582.0, "Total Customers": 411.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.82, "MEDIAN_SPEND_PER_CUSTOMER": 12.17 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 127.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11209.0, "Total Transactions": 603.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.77, "MEDIAN_SPEND_PER_CUSTOMER": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "LOCATION_NAME": "Kashmir Garden Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 125.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6630.0, "Total Transactions": 169.0, "Total Customers": 123.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.64, "MEDIAN_SPEND_PER_CUSTOMER": 34.63 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "LOCATION_NAME": "Green Farm", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2020, "Total Visits": 468.0, "Total Visitors": 377.0, "POI_CBG": 421010357012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11308.0, "Total Transactions": 405.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.94, "MEDIAN_SPEND_PER_CUSTOMER": 28.39 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.061169, "LONGITUDE": -75.237242, "DATE_RANGE_START": 2020, "Total Visits": 756.0, "Total Visitors": 528.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7565.0, "Total Transactions": 316.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.63, "MEDIAN_SPEND_PER_CUSTOMER": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.237242, 40.061169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9m-gtv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.080307, "LONGITUDE": -74.99459, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 129.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1917.0, "Total Transactions": 111.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.77, "MEDIAN_SPEND_PER_CUSTOMER": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -74.99459, 40.080307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2020, "Total Visits": 6123.0, "Total Visitors": 3702.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 70.0, "Total Spend": 549.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.08, "MEDIAN_SPEND_PER_CUSTOMER": 31.08 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "LOCATION_NAME": "Victoria's Secret", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090585, "LONGITUDE": -74.961564, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 363.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 36.0, "Total Spend": 342.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.74, "MEDIAN_SPEND_PER_CUSTOMER": 34.74 }, "geometry": { "type": "Point", "coordinates": [ -74.961564, 40.090585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "LOCATION_NAME": "Philly Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.010118, "LONGITUDE": -75.081162, "DATE_RANGE_START": 2020, "Total Visits": 226.0, "Total Visitors": 171.0, "POI_CBG": 421010294003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 23917.0, "Total Transactions": 127.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.24, "MEDIAN_SPEND_PER_CUSTOMER": 50.97 }, "geometry": { "type": "Point", "coordinates": [ -75.081162, 40.010118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2020, "Total Visits": 288.0, "Total Visitors": 212.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2326.0, "Total Transactions": 143.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.07, "MEDIAN_SPEND_PER_CUSTOMER": 16.51 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.914298, "LONGITUDE": -75.149292, "DATE_RANGE_START": 2020, "Total Visits": 4083.0, "Total Visitors": 2559.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1911.0, "Total Transactions": 113.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.149292, 39.914298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "LOCATION_NAME": "US Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2020, "Total Visits": 234.0, "Total Visitors": 179.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1979.0, "Total Transactions": 109.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-2kz", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.074571, "LONGITUDE": -75.032796, "DATE_RANGE_START": 2020, "Total Visits": 357.0, "Total Visitors": 274.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1471.0, "Total Transactions": 30.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.49, "MEDIAN_SPEND_PER_CUSTOMER": 76.88 }, "geometry": { "type": "Point", "coordinates": [ -75.032796, 40.074571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2020, "Total Visits": 8632.0, "Total Visitors": 5242.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 318779.0, "Total Transactions": 5421.0, "Total Customers": 3265.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.43, "MEDIAN_SPEND_PER_CUSTOMER": 62.65 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "LOCATION_NAME": "Fiorino", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3007.0, "Total Transactions": 30.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.41, "MEDIAN_SPEND_PER_CUSTOMER": 94.3 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-45f", "LOCATION_NAME": "Md Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977208, "LONGITUDE": -75.147273, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 26.0, "POI_CBG": 421010145001.0, "MEDIAN_DWELL": 155.0, "Total Spend": 2007.0, "Total Transactions": 113.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147273, 39.977208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-vcq", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.923962, "LONGITUDE": -75.139231, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 34.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1423.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 94.98, "MEDIAN_SPEND_PER_CUSTOMER": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -75.139231, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "LOCATION_NAME": "Lucky 13 Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927169, "LONGITUDE": -75.167128, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 38.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 240.0, "Total Spend": 1231.0, "Total Transactions": 42.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.82, "MEDIAN_SPEND_PER_CUSTOMER": 30.54 }, "geometry": { "type": "Point", "coordinates": [ -75.167128, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2020, "Total Visits": 496.0, "Total Visitors": 375.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3259.0, "Total Transactions": 143.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.74, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 242.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 995.0, "Total Transactions": 121.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.93, "MEDIAN_SPEND_PER_CUSTOMER": 7.07 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2020, "Total Visits": 726.0, "Total Visitors": 494.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 36712.0, "Total Transactions": 4800.0, "Total Customers": 1870.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.62, "MEDIAN_SPEND_PER_CUSTOMER": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgf-3bk", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.955764, "LONGITUDE": -75.194013, "DATE_RANGE_START": 2020, "Total Visits": 1350.0, "Total Visitors": 822.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 81.0, "Total Spend": 108.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194013, 39.955764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pzn-zj9", "LOCATION_NAME": "Sweeney's Station Saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.131466, "LONGITUDE": -75.011396, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": null, "Total Spend": 240.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.25, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011396, 40.131466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgf-33q", "LOCATION_NAME": "Kiwi Frozen Yogurt", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954562, "LONGITUDE": -75.195031, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": null, "Total Spend": 304.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195031, 39.954562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm4-h5z", "LOCATION_NAME": "Le Virtu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925948, "LONGITUDE": -75.16776, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 147.0, "Total Spend": 14343.0, "Total Transactions": 105.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 113.2, "MEDIAN_SPEND_PER_CUSTOMER": 124.14 }, "geometry": { "type": "Point", "coordinates": [ -75.16776, 39.925948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "LOCATION_NAME": "Time Out Sports Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 38.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 419.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.88, "MEDIAN_SPEND_PER_CUSTOMER": 52.88 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "LOCATION_NAME": "Philly's Famous Italian Ices", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7961.0, "Total Transactions": 40.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pj8-dqf", "LOCATION_NAME": "Oxford Circle Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033593, "LONGITUDE": -75.085029, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 42.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 904.0, "Total Spend": 4273.0, "Total Transactions": 127.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.95, "MEDIAN_SPEND_PER_CUSTOMER": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.085029, 40.033593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "LOCATION_NAME": "Rustica", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964423, "LONGITUDE": -75.140069, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 44.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 167.0, "Total Spend": 2188.0, "Total Transactions": 111.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.66, "MEDIAN_SPEND_PER_CUSTOMER": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.140069, 39.964423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "LOCATION_NAME": "Tony Luke's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.906891, "LONGITUDE": -75.166013, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 54.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3543.0, "Total Transactions": 163.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.42, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166013, 39.906891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-hh5", "LOCATION_NAME": "Esquina Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984984, "LONGITUDE": -75.171394, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 36.0, "POI_CBG": 421010152004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 62.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.171394, 39.984984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "LOCATION_NAME": "Race Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 46.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 319.0, "Total Spend": 3565.0, "Total Transactions": 83.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.16, "MEDIAN_SPEND_PER_CUSTOMER": 48.98 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-54v", "LOCATION_NAME": "Wood Street Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958437, "LONGITUDE": -75.158269, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 54.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2950.0, "Total Transactions": 101.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.76, "MEDIAN_SPEND_PER_CUSTOMER": 30.09 }, "geometry": { "type": "Point", "coordinates": [ -75.158269, 39.958437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2020, "Total Visits": 1356.0, "Total Visitors": 951.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 20914.0, "Total Transactions": 987.0, "Total Customers": 647.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.74 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "LOCATION_NAME": "Dick's Sporting Goods", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.085609, "LONGITUDE": -74.967208, "DATE_RANGE_START": 2020, "Total Visits": 992.0, "Total Visitors": 873.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 43.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.78, "MEDIAN_SPEND_PER_CUSTOMER": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -74.967208, 40.085609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2020, "Total Visits": 786.0, "Total Visitors": 717.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 14775.0, "Total Transactions": 669.0, "Total Customers": 578.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.63, "MEDIAN_SPEND_PER_CUSTOMER": 19.28 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2020, "Total Visits": 919.0, "Total Visitors": 740.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 632.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.06, "MEDIAN_SPEND_PER_CUSTOMER": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9k-jvz", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.093114, "LONGITUDE": -75.019569, "DATE_RANGE_START": 2020, "Total Visits": 498.0, "Total Visitors": 379.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1426.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.03, "MEDIAN_SPEND_PER_CUSTOMER": 44.15 }, "geometry": { "type": "Point", "coordinates": [ -75.019569, 40.093114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.930286, "LONGITUDE": -75.155935, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 71.0, "POI_CBG": 421010028013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4215.0, "Total Transactions": 256.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.41, "MEDIAN_SPEND_PER_CUSTOMER": 19.12 }, "geometry": { "type": "Point", "coordinates": [ -75.155935, 39.930286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "LOCATION_NAME": "The Last Word Bookshop", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 189.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2440.0, "Total Transactions": 91.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.14, "MEDIAN_SPEND_PER_CUSTOMER": 24.68 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "LOCATION_NAME": "Best Buy Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.078042, "LONGITUDE": -75.024894, "DATE_RANGE_START": 2020, "Total Visits": 2322.0, "Total Visitors": 1874.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 12577.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 458.5, "MEDIAN_SPEND_PER_CUSTOMER": 458.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024894, 40.078042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 119.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3282.0, "Total Transactions": 369.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.62, "MEDIAN_SPEND_PER_CUSTOMER": 10.41 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032146, "LONGITUDE": -75.063064, "DATE_RANGE_START": 2020, "Total Visits": 1022.0, "Total Visitors": 677.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12024.0, "Total Transactions": 540.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.2, "MEDIAN_SPEND_PER_CUSTOMER": 28.03 }, "geometry": { "type": "Point", "coordinates": [ -75.063064, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2020, "Total Visits": 1647.0, "Total Visitors": 1292.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13300.0, "Total Transactions": 693.0, "Total Customers": 526.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2020, "Total Visits": 141.0, "Total Visitors": 101.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1992.0, "Total Transactions": 320.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.84, "MEDIAN_SPEND_PER_CUSTOMER": 7.76 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "LOCATION_NAME": "Eyes Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941491, "LONGITUDE": -75.149374, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 202.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2068.0, "Total Transactions": 54.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149374, 39.941491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-m6k", "LOCATION_NAME": "Brave New Worlds", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.951384, "LONGITUDE": -75.143026, "DATE_RANGE_START": 2020, "Total Visits": 1651.0, "Total Visitors": 1050.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 391.0, "Total Spend": 309.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.143026, 39.951384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.993729, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 175.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 699.0, "Total Transactions": 69.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 8.02 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.993729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "LOCATION_NAME": "Adobe Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3428.0, "Total Transactions": 93.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.7, "MEDIAN_SPEND_PER_CUSTOMER": 31.49 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2020, "Total Visits": 333.0, "Total Visitors": 258.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 424.0, "Total Transactions": 44.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.44, "MEDIAN_SPEND_PER_CUSTOMER": 8.44 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvv-249", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.916025, "LONGITUDE": -75.24632, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 6.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1397.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.23, "MEDIAN_SPEND_PER_CUSTOMER": 43.23 }, "geometry": { "type": "Point", "coordinates": [ -75.24632, 39.916025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-w6k", "LOCATION_NAME": "National Mechanics", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.94956, "LONGITUDE": -75.146014, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 178.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.46, "MEDIAN_SPEND_PER_CUSTOMER": 20.46 }, "geometry": { "type": "Point", "coordinates": [ -75.146014, 39.94956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "LOCATION_NAME": "General Tso", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 30.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 167.0, "Total Spend": 1732.0, "Total Transactions": 64.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.64, "MEDIAN_SPEND_PER_CUSTOMER": 21.19 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "LOCATION_NAME": "The Pizza Store", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 38.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 260.0, "Total Spend": 1768.0, "Total Transactions": 62.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.14, "MEDIAN_SPEND_PER_CUSTOMER": 32.04 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "LOCATION_NAME": "Papa Joe's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2020, "Total Visits": 181.0, "Total Visitors": 50.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 381.0, "Total Spend": 567.0, "Total Transactions": 28.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.25, "MEDIAN_SPEND_PER_CUSTOMER": 35.69 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 40.079117, "LONGITUDE": -75.027659, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 58.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 1281.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.8, "MEDIAN_SPEND_PER_CUSTOMER": 68.25 }, "geometry": { "type": "Point", "coordinates": [ -75.027659, 40.079117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg9-bp9", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979916, "LONGITUDE": -75.175802, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010149001.0, "MEDIAN_DWELL": null, "Total Spend": 54.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175802, 39.979916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-75z", "LOCATION_NAME": "North Third", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963481, "LONGITUDE": -75.142676, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 12.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1380.0, "Total Transactions": 24.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.35, "MEDIAN_SPEND_PER_CUSTOMER": 22.35 }, "geometry": { "type": "Point", "coordinates": [ -75.142676, 39.963481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-ph8-rx5", "LOCATION_NAME": "Royal Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.97851, "LONGITUDE": -75.271319, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 17.0, "Total Spend": 6705.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 150.0, "MEDIAN_SPEND_PER_CUSTOMER": 166.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271319, 39.97851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "LOCATION_NAME": "Cuba Libre Restaurant & Rum Bar Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 94.0, "Total Spend": 12559.0, "Total Transactions": 135.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.15, "MEDIAN_SPEND_PER_CUSTOMER": 75.59 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm3-vxq", "LOCATION_NAME": "Noir Restaurant & Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926292, "LONGITUDE": -75.16736, "DATE_RANGE_START": 2020, "Total Visits": 659.0, "Total Visitors": 345.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 567.0, "Total Spend": 1745.0, "Total Transactions": 36.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.74, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16736, 39.926292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-ty9", "LOCATION_NAME": "La Fontana Della Citta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947768, "LONGITUDE": -75.169697, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 99.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 30.0, "Total Spend": 10362.0, "Total Transactions": 125.0, "Total Customers": 121.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.61, "MEDIAN_SPEND_PER_CUSTOMER": 79.76 }, "geometry": { "type": "Point", "coordinates": [ -75.169697, 39.947768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "LOCATION_NAME": "New England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2020, "Total Visits": 278.0, "Total Visitors": 228.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1350.0, "Total Transactions": 54.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.63 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "LOCATION_NAME": "Blue Corn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 260.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 5700.0, "Total Transactions": 171.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.06, "MEDIAN_SPEND_PER_CUSTOMER": 40.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj8-2ff", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030225, "LONGITUDE": -75.104904, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 147.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 418.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.97, "MEDIAN_SPEND_PER_CUSTOMER": 48.56 }, "geometry": { "type": "Point", "coordinates": [ -75.104904, 40.030225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "LOCATION_NAME": "Anastasi Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 83.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 25325.0, "Total Transactions": 516.0, "Total Customers": 421.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2020, "Total Visits": 240.0, "Total Visitors": 208.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 498.0, "Total Transactions": 32.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.3, "MEDIAN_SPEND_PER_CUSTOMER": 22.51 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "LOCATION_NAME": "Royal Boucherie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948704, "LONGITUDE": -75.144251, "DATE_RANGE_START": 2020, "Total Visits": 349.0, "Total Visitors": 260.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 2927.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.55, "MEDIAN_SPEND_PER_CUSTOMER": 71.55 }, "geometry": { "type": "Point", "coordinates": [ -75.144251, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2020, "Total Visits": 931.0, "Total Visitors": 667.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": 14.0, "Total Spend": 647.0, "Total Transactions": 18.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.95, "MEDIAN_SPEND_PER_CUSTOMER": 81.57 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wkz", "LOCATION_NAME": "Xenos Candy 'N' Gifts", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948713, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2020, "Total Visits": 1528.0, "Total Visitors": 822.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 200.0, "Total Spend": 348.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.26, "MEDIAN_SPEND_PER_CUSTOMER": 30.26 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.948713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "LOCATION_NAME": "Rapoport Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 79.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 92.0, "Total Spend": 823.0, "Total Transactions": 46.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.29, "MEDIAN_SPEND_PER_CUSTOMER": 14.29 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2020, "Total Visits": 270.0, "Total Visitors": 183.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9659.0, "Total Transactions": 441.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.8, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "LOCATION_NAME": "Eye Encounters", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2020, "Total Visits": 2900.0, "Total Visitors": 1669.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 85.0, "Total Spend": 333.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8n-cqz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.03577, "LONGITUDE": -75.069964, "DATE_RANGE_START": 2020, "Total Visits": 1477.0, "Total Visitors": 1141.0, "POI_CBG": 421010313002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 336.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.04, "MEDIAN_SPEND_PER_CUSTOMER": 21.04 }, "geometry": { "type": "Point", "coordinates": [ -75.069964, 40.03577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-92k", "LOCATION_NAME": "Levi Strauss & Co.", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.95164, "LONGITUDE": -75.155746, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 1156.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.55, "MEDIAN_SPEND_PER_CUSTOMER": 36.09 }, "geometry": { "type": "Point", "coordinates": [ -75.155746, 39.95164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgg-n3q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998932, "LONGITUDE": -75.167191, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 288.0, "POI_CBG": 421010172011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1123.0, "Total Transactions": 109.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.8, "MEDIAN_SPEND_PER_CUSTOMER": 5.88 }, "geometry": { "type": "Point", "coordinates": [ -75.167191, 39.998932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 39.932572, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 198.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2364.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.74, "MEDIAN_SPEND_PER_CUSTOMER": 48.94 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvr-2hq", "LOCATION_NAME": "Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.917185, "LONGITUDE": -75.216767, "DATE_RANGE_START": 2020, "Total Visits": 1274.0, "Total Visitors": 921.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4394.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.0, "MEDIAN_SPEND_PER_CUSTOMER": 83.11 }, "geometry": { "type": "Point", "coordinates": [ -75.216767, 39.917185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2020, "Total Visits": 836.0, "Total Visitors": 542.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6580.0, "Total Transactions": 347.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.28, "MEDIAN_SPEND_PER_CUSTOMER": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-8y9", "LOCATION_NAME": "Forever 21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951978, "LONGITUDE": -75.155812, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 11064.0, "Total Transactions": 280.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.97, "MEDIAN_SPEND_PER_CUSTOMER": 37.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155812, 39.951978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-7nq", "LOCATION_NAME": "Chatayee Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94915, "LONGITUDE": -75.161857, "DATE_RANGE_START": 2020, "Total Visits": 576.0, "Total Visitors": 403.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 278.0, "Total Spend": 3030.0, "Total Transactions": 48.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.62, "MEDIAN_SPEND_PER_CUSTOMER": 67.01 }, "geometry": { "type": "Point", "coordinates": [ -75.161857, 39.94915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.959702, "LONGITUDE": -75.147615, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 353.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 356536.0, "Total Transactions": 7975.0, "Total Customers": 4802.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.96, "MEDIAN_SPEND_PER_CUSTOMER": 47.92 }, "geometry": { "type": "Point", "coordinates": [ -75.147615, 39.959702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "LOCATION_NAME": "European Republic", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2020, "Total Visits": 1528.0, "Total Visitors": 822.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 200.0, "Total Spend": 200.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.55, "MEDIAN_SPEND_PER_CUSTOMER": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974271, "LONGITUDE": -75.11985, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 238.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 988.0, "Total Transactions": 73.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 13.88 }, "geometry": { "type": "Point", "coordinates": [ -75.11985, 39.974271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "LOCATION_NAME": "Engimono Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 79.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 33.0, "Total Spend": 10193.0, "Total Transactions": 306.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.55, "MEDIAN_SPEND_PER_CUSTOMER": 31.45 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-grk", "LOCATION_NAME": "Nick's Charcoal Pit", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923906, "LONGITUDE": -75.167451, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": null, "Total Spend": 2497.0, "Total Transactions": 81.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.03, "MEDIAN_SPEND_PER_CUSTOMER": 30.83 }, "geometry": { "type": "Point", "coordinates": [ -75.167451, 39.923906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-zj9", "LOCATION_NAME": "Arch Gourmet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955807, "LONGITUDE": -75.176416, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": null, "Total Spend": 254.0, "Total Transactions": 12.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176416, 39.955807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "LOCATION_NAME": "Pizzeria Cappelli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948456, "LONGITUDE": -75.162098, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 24.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 224.0, "Total Spend": 3042.0, "Total Transactions": 171.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.19, "MEDIAN_SPEND_PER_CUSTOMER": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.162098, 39.948456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p9q-yn5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.088065, "LONGITUDE": -75.037683, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 12.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 411.0, "Total Transactions": 44.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.037683, 40.088065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-pjv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.993233, "LONGITUDE": -75.096202, "DATE_RANGE_START": 2020, "Total Visits": 1072.0, "Total Visitors": 800.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4321.0, "Total Transactions": 165.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.99, "MEDIAN_SPEND_PER_CUSTOMER": 19.59 }, "geometry": { "type": "Point", "coordinates": [ -75.096202, 39.993233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvx-2kz", "LOCATION_NAME": "Rising Sun", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968785, "LONGITUDE": -75.217282, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010104003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 35547.0, "Total Transactions": 758.0, "Total Customers": 518.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.64, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.217282, 39.968785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-v9f", "LOCATION_NAME": "Tang Pharmacy V", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068833, "LONGITUDE": -75.157234, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 18.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 23.0, "Total Spend": 558.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157234, 40.068833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-yjv", "LOCATION_NAME": "Amazing Crab House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940979, "LONGITUDE": -75.14584, "DATE_RANGE_START": 2020, "Total Visits": 472.0, "Total Visitors": 268.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 1022.0, "Total Spend": 4009.0, "Total Transactions": 83.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.86, "MEDIAN_SPEND_PER_CUSTOMER": 47.06 }, "geometry": { "type": "Point", "coordinates": [ -75.14584, 39.940979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "LOCATION_NAME": "Tuna Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954087, "LONGITUDE": -75.143167, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 117.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 89.0, "Total Spend": 7422.0, "Total Transactions": 95.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.81, "MEDIAN_SPEND_PER_CUSTOMER": 83.12 }, "geometry": { "type": "Point", "coordinates": [ -75.143167, 39.954087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pg8-ks5", "LOCATION_NAME": "Rybrew", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974204, "LONGITUDE": -75.182529, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 18.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 94.0, "Total Spend": 13765.0, "Total Transactions": 778.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182529, 39.974204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8v-b8v", "LOCATION_NAME": "Sam's Club Fuel Center", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.091819, "LONGITUDE": -74.963857, "DATE_RANGE_START": 2020, "Total Visits": 3015.0, "Total Visitors": 1729.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 805.0, "Total Transactions": 28.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.5, "MEDIAN_SPEND_PER_CUSTOMER": 33.27 }, "geometry": { "type": "Point", "coordinates": [ -74.963857, 40.091819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-s5z", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.011216, "LONGITUDE": -75.115625, "DATE_RANGE_START": 2020, "Total Visits": 443.0, "Total Visitors": 375.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 9474.0, "Total Transactions": 121.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.2, "MEDIAN_SPEND_PER_CUSTOMER": 57.21 }, "geometry": { "type": "Point", "coordinates": [ -75.115625, 40.011216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2020, "Total Visits": 639.0, "Total Visitors": 498.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11726.0, "Total Transactions": 971.0, "Total Customers": 812.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.7, "MEDIAN_SPEND_PER_CUSTOMER": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-6ff", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948341, "LONGITUDE": -75.157035, "DATE_RANGE_START": 2020, "Total Visits": 897.0, "Total Visitors": 607.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 15.0, "Total Spend": 348.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.62, "MEDIAN_SPEND_PER_CUSTOMER": 21.62 }, "geometry": { "type": "Point", "coordinates": [ -75.157035, 39.948341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p6z-yqf", "LOCATION_NAME": "Philadelphia Boat Supply", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 40.042284, "LONGITUDE": -75.001789, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 343.0, "POI_CBG": 421019891001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 788.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 198.4, "MEDIAN_SPEND_PER_CUSTOMER": 198.4 }, "geometry": { "type": "Point", "coordinates": [ -75.001789, 40.042284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-8d9", "LOCATION_NAME": "Tom's Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953328, "LONGITUDE": -75.157763, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1717.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.34, "MEDIAN_SPEND_PER_CUSTOMER": 48.34 }, "geometry": { "type": "Point", "coordinates": [ -75.157763, 39.953328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-vpv", "LOCATION_NAME": "P'unk Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927124, "LONGITUDE": -75.166327, "DATE_RANGE_START": 2020, "Total Visits": 621.0, "Total Visitors": 353.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 446.0, "Total Spend": 630.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.927124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2020, "Total Visits": 921.0, "Total Visitors": 794.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 44507.0, "Total Transactions": 2350.0, "Total Customers": 1761.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.03, "MEDIAN_SPEND_PER_CUSTOMER": 20.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079147, "LONGITUDE": -75.02653, "DATE_RANGE_START": 2020, "Total Visits": 574.0, "Total Visitors": 514.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 13564.0, "Total Transactions": 863.0, "Total Customers": 687.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.58, "MEDIAN_SPEND_PER_CUSTOMER": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02653, 40.079147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "LOCATION_NAME": "Ox Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2020, "Total Visits": 798.0, "Total Visitors": 651.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3167.0, "Total Transactions": 264.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pmf-jd9", "LOCATION_NAME": "SoBol Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951746, "LONGITUDE": -75.168892, "DATE_RANGE_START": 2020, "Total Visits": 1491.0, "Total Visitors": 1245.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3305.0, "Total Transactions": 236.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.69, "MEDIAN_SPEND_PER_CUSTOMER": 12.04 }, "geometry": { "type": "Point", "coordinates": [ -75.168892, 39.951746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944289, "LONGITUDE": -75.17218, "DATE_RANGE_START": 2020, "Total Visits": 484.0, "Total Visitors": 312.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 21501.0, "Total Transactions": 975.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 21.21 }, "geometry": { "type": "Point", "coordinates": [ -75.17218, 39.944289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-47q", "LOCATION_NAME": "Beauty Time", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040779, "LONGITUDE": -75.109561, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 220.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8465.0, "Total Transactions": 244.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.93 }, "geometry": { "type": "Point", "coordinates": [ -75.109561, 40.040779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "LOCATION_NAME": "Bindlestiff Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 535.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.01, "MEDIAN_SPEND_PER_CUSTOMER": 68.01 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8f-7dv", "LOCATION_NAME": "Risque Video", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.00855, "LONGITUDE": -75.072772, "DATE_RANGE_START": 2020, "Total Visits": 617.0, "Total Visitors": 500.0, "POI_CBG": 421010380002.0, "MEDIAN_DWELL": 296.0, "Total Spend": 552.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.62, "MEDIAN_SPEND_PER_CUSTOMER": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.072772, 40.00855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951926, "LONGITUDE": -75.161906, "DATE_RANGE_START": 2020, "Total Visits": 2948.0, "Total Visitors": 2299.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 10862.0, "Total Transactions": 141.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.86, "MEDIAN_SPEND_PER_CUSTOMER": 45.63 }, "geometry": { "type": "Point", "coordinates": [ -75.161906, 39.951926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-vfz", "LOCATION_NAME": "Philly Homebrew Outlet West", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.942809, "LONGITUDE": -75.210442, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010074002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1581.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.32, "MEDIAN_SPEND_PER_CUSTOMER": 58.23 }, "geometry": { "type": "Point", "coordinates": [ -75.210442, 39.942809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.101947, "LONGITUDE": -75.011258, "DATE_RANGE_START": 2020, "Total Visits": 4923.0, "Total Visitors": 3466.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 209900.0, "Total Transactions": 3640.0, "Total Customers": 2336.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.62, "MEDIAN_SPEND_PER_CUSTOMER": 54.58 }, "geometry": { "type": "Point", "coordinates": [ -75.011258, 40.101947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-ch5", "LOCATION_NAME": "Fishtown Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.974427, "LONGITUDE": -75.132999, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 16.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 40.0, "Total Spend": 171.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132999, 39.974427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9w-sdv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.123431, "LONGITUDE": -75.01617, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 408.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.93, "MEDIAN_SPEND_PER_CUSTOMER": 23.66 }, "geometry": { "type": "Point", "coordinates": [ -75.01617, 40.123431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "LOCATION_NAME": "Frieda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2013.0, "Total Transactions": 91.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.63, "MEDIAN_SPEND_PER_CUSTOMER": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-249", "LOCATION_NAME": "Two Brothers Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003487, "LONGITUDE": -75.150398, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 6.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 459.0, "Total Spend": 5379.0, "Total Transactions": 224.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.33, "MEDIAN_SPEND_PER_CUSTOMER": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.150398, 40.003487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8m-x5z", "LOCATION_NAME": "Goody's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027482, "LONGITUDE": -75.061166, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 10.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 175.0, "Total Spend": 2122.0, "Total Transactions": 69.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.99, "MEDIAN_SPEND_PER_CUSTOMER": 33.07 }, "geometry": { "type": "Point", "coordinates": [ -75.061166, 40.027482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7w-6zf", "LOCATION_NAME": "Ali Baba Cafe & Hookah Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.057745, "LONGITUDE": -75.060291, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 30.0, "POI_CBG": 421010336003.0, "MEDIAN_DWELL": 201.0, "Total Spend": 1505.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.47, "MEDIAN_SPEND_PER_CUSTOMER": 85.28 }, "geometry": { "type": "Point", "coordinates": [ -75.060291, 40.057745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnz-xyv", "LOCATION_NAME": "Moju's Family Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988309, "LONGITUDE": -75.102423, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 34.0, "POI_CBG": 421010379002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 1113.0, "Total Transactions": 50.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102423, 39.988309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "LOCATION_NAME": "New Panda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 38.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1100.0, "Total Transactions": 46.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.97, "MEDIAN_SPEND_PER_CUSTOMER": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026858, "LONGITUDE": -75.208809, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13474.0, "Total Transactions": 1818.0, "Total Customers": 627.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.86, "MEDIAN_SPEND_PER_CUSTOMER": 8.86 }, "geometry": { "type": "Point", "coordinates": [ -75.208809, 40.026858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7z-6x5", "LOCATION_NAME": "Rising Sun Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056616, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 46.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 246.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.38, "MEDIAN_SPEND_PER_CUSTOMER": 42.67 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.056616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "LOCATION_NAME": "The Quick Fixx", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 56.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4640.0, "Total Transactions": 197.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.04, "MEDIAN_SPEND_PER_CUSTOMER": 26.92 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnw-nh5", "LOCATION_NAME": "Sancho Pistolas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969014, "LONGITUDE": -75.135132, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 58.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 387.0, "Total Spend": 1002.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.33, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135132, 39.969014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "LOCATION_NAME": "Chestnut Hill Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 399.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "LOCATION_NAME": "Fette Sau", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 10.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 15797.0, "Total Transactions": 322.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.98, "MEDIAN_SPEND_PER_CUSTOMER": 47.15 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-gp9", "LOCATION_NAME": "Mercato BYOB", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946499, "LONGITUDE": -75.161768, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2456.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.77, "MEDIAN_SPEND_PER_CUSTOMER": 84.77 }, "geometry": { "type": "Point", "coordinates": [ -75.161768, 39.946499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phj-rrk", "LOCATION_NAME": "Sunny Side Breakfast & Lunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071002, "LONGITUDE": -75.157739, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 22.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 3.0, "Total Spend": 775.0, "Total Transactions": 42.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.12, "MEDIAN_SPEND_PER_CUSTOMER": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157739, 40.071002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "LOCATION_NAME": "Martinez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997199, "LONGITUDE": -75.175295, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 28.0, "POI_CBG": 421010172022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 619.0, "Total Transactions": 62.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175295, 39.997199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvx-vcq", "LOCATION_NAME": "Gold Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943788, "LONGITUDE": -75.210959, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010074001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2027.0, "Total Transactions": 139.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.83, "MEDIAN_SPEND_PER_CUSTOMER": 13.71 }, "geometry": { "type": "Point", "coordinates": [ -75.210959, 39.943788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-kpv", "LOCATION_NAME": "The Goat Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951177, "LONGITUDE": -75.172386, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 38.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 580.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.84, "MEDIAN_SPEND_PER_CUSTOMER": 35.84 }, "geometry": { "type": "Point", "coordinates": [ -75.172386, 39.951177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-6zf", "LOCATION_NAME": "Petes Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964375, "LONGITUDE": -75.204736, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 50.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 110.0, "Total Spend": 500.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.37, "MEDIAN_SPEND_PER_CUSTOMER": 31.37 }, "geometry": { "type": "Point", "coordinates": [ -75.204736, 39.964375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p7z-yn5", "LOCATION_NAME": "Tropicana Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039393, "LONGITUDE": -75.077846, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010311013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 60.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.49, "MEDIAN_SPEND_PER_CUSTOMER": 10.49 }, "geometry": { "type": "Point", "coordinates": [ -75.077846, 40.039393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "LOCATION_NAME": "1 Tippling Place", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 20.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 546.0, "Total Spend": 292.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.5, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "LOCATION_NAME": "So Korean Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 10.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 107.0, "Total Spend": 136.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.19, "MEDIAN_SPEND_PER_CUSTOMER": 34.19 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "LOCATION_NAME": "Hunan Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 12.0, "Total Spend": 998.0, "Total Transactions": 62.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.42, "MEDIAN_SPEND_PER_CUSTOMER": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "LOCATION_NAME": "In & Out Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 44.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 472.0, "Total Spend": 567.0, "Total Transactions": 28.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.05, "MEDIAN_SPEND_PER_CUSTOMER": 17.24 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bzf", "LOCATION_NAME": "Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025762, "LONGITUDE": -75.22385, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 52.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 321.0, "Total Spend": 545.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.15, "MEDIAN_SPEND_PER_CUSTOMER": 36.15 }, "geometry": { "type": "Point", "coordinates": [ -75.22385, 40.025762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p7x-5s5", "LOCATION_NAME": "Regency Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.048374, "LONGITUDE": -75.06017, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 244.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4395.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 648.0, "MEDIAN_SPEND_PER_CUSTOMER": 648.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06017, 40.048374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.977128, "LONGITUDE": -75.274366, "DATE_RANGE_START": 2020, "Total Visits": 417.0, "Total Visitors": 335.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 20452.0, "Total Transactions": 512.0, "Total Customers": 431.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.274366, 39.977128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-dvz", "LOCATION_NAME": "Lighthouse Thrift Shop", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.051415, "LONGITUDE": -75.093615, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010306007.0, "MEDIAN_DWELL": 2.0, "Total Spend": 71.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.27, "MEDIAN_SPEND_PER_CUSTOMER": 11.27 }, "geometry": { "type": "Point", "coordinates": [ -75.093615, 40.051415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-bhq", "LOCATION_NAME": "Lloyd Whiskey Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.971373, "LONGITUDE": -75.127654, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 91.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8947.0, "Total Transactions": 159.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.95, "MEDIAN_SPEND_PER_CUSTOMER": 58.42 }, "geometry": { "type": "Point", "coordinates": [ -75.127654, 39.971373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-j7q", "LOCATION_NAME": "Vango Lounge And Skybar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.951206, "LONGITUDE": -75.170692, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 81.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 10943.0, "Total Transactions": 95.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.34, "MEDIAN_SPEND_PER_CUSTOMER": 92.67 }, "geometry": { "type": "Point", "coordinates": [ -75.170692, 39.951206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "LOCATION_NAME": "Deluxe Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048286, "LONGITUDE": -75.012528, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 87.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 296.0, "Total Spend": 617.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.99, "MEDIAN_SPEND_PER_CUSTOMER": 55.98 }, "geometry": { "type": "Point", "coordinates": [ -75.012528, 40.048286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2020, "Total Visits": 474.0, "Total Visitors": 314.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 25.0, "Total Spend": 154.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.01, "MEDIAN_SPEND_PER_CUSTOMER": 7.01 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "LOCATION_NAME": "Moonlight Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 87.0, "POI_CBG": 421010265004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1225.0, "Total Transactions": 44.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pmb-v75", "LOCATION_NAME": "Mei Mei Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948931, "LONGITUDE": -75.143532, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 81.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 151.0, "Total Spend": 365.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.0, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143532, 39.948931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-225@628-pm9-zs5", "LOCATION_NAME": "Aurora Grace", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.942077, "LONGITUDE": -75.150507, "DATE_RANGE_START": 2020, "Total Visits": 1006.0, "Total Visitors": 838.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 16.0, "Total Spend": 317.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150507, 39.942077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5zz", "LOCATION_NAME": "Chix & Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94898, "LONGITUDE": -75.159094, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 85.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 199.0, "Total Spend": 3048.0, "Total Transactions": 198.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.52, "MEDIAN_SPEND_PER_CUSTOMER": 12.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159094, 39.94898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.105422, "LONGITUDE": -75.032802, "DATE_RANGE_START": 2020, "Total Visits": 1638.0, "Total Visitors": 1086.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1690.0, "Total Transactions": 62.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.11, "MEDIAN_SPEND_PER_CUSTOMER": 31.88 }, "geometry": { "type": "Point", "coordinates": [ -75.032802, 40.105422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "LOCATION_NAME": "Yiro Yiro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032303, "LONGITUDE": -75.214323, "DATE_RANGE_START": 2020, "Total Visits": 1645.0, "Total Visitors": 1046.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6776.0, "Total Transactions": 294.0, "Total Customers": 264.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.97, "MEDIAN_SPEND_PER_CUSTOMER": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214323, 40.032303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-2kz", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075387, "LONGITUDE": -75.03207, "DATE_RANGE_START": 2020, "Total Visits": 1000.0, "Total Visitors": 844.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 416.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.67, "MEDIAN_SPEND_PER_CUSTOMER": 46.67 }, "geometry": { "type": "Point", "coordinates": [ -75.03207, 40.075387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946402, "LONGITUDE": -75.180743, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 178.0, "Total Spend": 1433.0, "Total Transactions": 167.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.180743, 39.946402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046821, "LONGITUDE": -75.055507, "DATE_RANGE_START": 2020, "Total Visits": 161.0, "Total Visitors": 115.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 45.0, "Total Spend": 1486.0, "Total Transactions": 64.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.73, "MEDIAN_SPEND_PER_CUSTOMER": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.055507, 40.046821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 145.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12546.0, "Total Transactions": 933.0, "Total Customers": 703.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010110003.0, "MEDIAN_DWELL": 114.0, "Total Spend": 1081.0, "Total Transactions": 56.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.43, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 34.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8640.0, "Total Transactions": 470.0, "Total Customers": 282.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.65, "MEDIAN_SPEND_PER_CUSTOMER": 23.23 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-68v", "LOCATION_NAME": "Kinme", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947803, "LONGITUDE": -75.160062, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 40.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2257.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.88, "MEDIAN_SPEND_PER_CUSTOMER": 78.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160062, 39.947803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgj-c5z", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979163, "LONGITUDE": -75.160092, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 121.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1849.0, "Total Transactions": 161.0, "Total Customers": 121.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.35, "MEDIAN_SPEND_PER_CUSTOMER": 12.07 }, "geometry": { "type": "Point", "coordinates": [ -75.160092, 39.979163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-hdv", "LOCATION_NAME": "The Book Corner", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.960171, "LONGITUDE": -75.171295, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 113.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 563.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.171295, 39.960171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.021323, "LONGITUDE": -75.133522, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 276.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1816.0, "Total Transactions": 125.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.81, "MEDIAN_SPEND_PER_CUSTOMER": 9.23 }, "geometry": { "type": "Point", "coordinates": [ -75.133522, 40.021323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942147, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 50.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 322.0, "Total Spend": 25516.0, "Total Transactions": 949.0, "Total Customers": 717.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.14, "MEDIAN_SPEND_PER_CUSTOMER": 29.68 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.942147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995073, "LONGITUDE": -75.126158, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 52.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 136.0, "Total Spend": 201.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.56, "MEDIAN_SPEND_PER_CUSTOMER": 23.56 }, "geometry": { "type": "Point", "coordinates": [ -75.126158, 39.995073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2020, "Total Visits": 193.0, "Total Visitors": 123.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3942.0, "Total Transactions": 582.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 7.85 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043491, "LONGITUDE": -75.159296, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 262.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6826.0, "Total Transactions": 899.0, "Total Customers": 419.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.16, "MEDIAN_SPEND_PER_CUSTOMER": 10.06 }, "geometry": { "type": "Point", "coordinates": [ -75.159296, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "LOCATION_NAME": "Boss Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 64.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 12476.0, "Total Transactions": 187.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.18, "MEDIAN_SPEND_PER_CUSTOMER": 44.64 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2020, "Total Visits": 498.0, "Total Visitors": 349.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1225.0, "Total Transactions": 62.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.58, "MEDIAN_SPEND_PER_CUSTOMER": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pgb-7t9", "LOCATION_NAME": "Plants Etc", "TOP_CATEGORY": "Florists", "LATITUDE": 39.967525, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": null, "Total Spend": 937.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.967525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "LOCATION_NAME": "Good Day Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 89.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2343.0, "Total Transactions": 143.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.966876, "LONGITUDE": -75.233151, "DATE_RANGE_START": 2020, "Total Visits": 1125.0, "Total Visitors": 768.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 446.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.18, "MEDIAN_SPEND_PER_CUSTOMER": 7.18 }, "geometry": { "type": "Point", "coordinates": [ -75.233151, 39.966876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2020, "Total Visits": 790.0, "Total Visitors": 582.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 79652.0, "Total Transactions": 5177.0, "Total Customers": 2519.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.51, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "LOCATION_NAME": "Beer Baron", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2020, "Total Visits": 1963.0, "Total Visitors": 1141.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 16128.0, "Total Transactions": 518.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.97, "MEDIAN_SPEND_PER_CUSTOMER": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-kfz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991954, "LONGITUDE": -75.178916, "DATE_RANGE_START": 2020, "Total Visits": 490.0, "Total Visitors": 308.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 11.0, "Total Spend": 516.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.69, "MEDIAN_SPEND_PER_CUSTOMER": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.178916, 39.991954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p7v-ffz", "LOCATION_NAME": "E Z Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.054304, "LONGITUDE": -75.070914, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 280.0, "POI_CBG": 421010335003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9833.0, "Total Transactions": 532.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.74, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070914, 40.054304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "LOCATION_NAME": "lululemon athletica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 254.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14666.0, "Total Transactions": 145.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.0, "MEDIAN_SPEND_PER_CUSTOMER": 71.25 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pm9-y9z", "LOCATION_NAME": "Gold Heart Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941621, "LONGITUDE": -75.150209, "DATE_RANGE_START": 2020, "Total Visits": 643.0, "Total Visitors": 534.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 21354.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 526.0, "MEDIAN_SPEND_PER_CUSTOMER": 2084.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150209, 39.941621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.91784, "LONGITUDE": -75.186842, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 272.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 4130.0, "Total Transactions": 75.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.89, "MEDIAN_SPEND_PER_CUSTOMER": 59.79 }, "geometry": { "type": "Point", "coordinates": [ -75.186842, 39.91784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 77.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 168.0, "Total Spend": 6846.0, "Total Transactions": 163.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.72, "MEDIAN_SPEND_PER_CUSTOMER": 40.78 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pft-ygk", "LOCATION_NAME": "Chubbys Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029131, "LONGITUDE": -75.206304, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 208.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 12635.0, "Total Transactions": 520.0, "Total Customers": 429.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.36, "MEDIAN_SPEND_PER_CUSTOMER": 25.76 }, "geometry": { "type": "Point", "coordinates": [ -75.206304, 40.029131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "LOCATION_NAME": "Chuck E. Cheese's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921782, "LONGITUDE": -75.1449, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 95.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 114.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.24, "MEDIAN_SPEND_PER_CUSTOMER": 14.24 }, "geometry": { "type": "Point", "coordinates": [ -75.1449, 39.921782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 56.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 9654.0, "Total Transactions": 244.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.66, "MEDIAN_SPEND_PER_CUSTOMER": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-xqz", "LOCATION_NAME": "Brother's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006485, "LONGITUDE": -75.150169, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 44.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 74.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.52, "MEDIAN_SPEND_PER_CUSTOMER": 18.52 }, "geometry": { "type": "Point", "coordinates": [ -75.150169, 40.006485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "LOCATION_NAME": "L'anima", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 52.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 387.0, "Total Spend": 899.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.16, "MEDIAN_SPEND_PER_CUSTOMER": 72.16 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "LOCATION_NAME": "Microtel Inn and Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2020, "Total Visits": 536.0, "Total Visitors": 345.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 326.0, "Total Spend": 11743.0, "Total Transactions": 73.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 127.86, "MEDIAN_SPEND_PER_CUSTOMER": 139.49 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8y9", "LOCATION_NAME": "City Winery Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952404, "LONGITUDE": -75.156249, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 597.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.69, "MEDIAN_SPEND_PER_CUSTOMER": 38.68 }, "geometry": { "type": "Point", "coordinates": [ -75.156249, 39.952404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-ph6-whq", "LOCATION_NAME": "Cedar Park Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986565, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 67.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 3449.0, "Total Transactions": 157.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.28, "MEDIAN_SPEND_PER_CUSTOMER": 23.86 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "LOCATION_NAME": "Dragon City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 141.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 829.0, "Total Transactions": 44.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.21, "MEDIAN_SPEND_PER_CUSTOMER": 18.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-835", "LOCATION_NAME": "Nanee's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953311, "LONGITUDE": -75.158833, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 378.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.158833, 39.953311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-zs5", "LOCATION_NAME": "Golden Triangle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94154, "LONGITUDE": -75.15097, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 75.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4290.0, "Total Transactions": 117.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.08, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.15097, 39.94154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-pvz", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994647, "LONGITUDE": -75.095265, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 189.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4821.0, "Total Transactions": 198.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.24, "MEDIAN_SPEND_PER_CUSTOMER": 24.11 }, "geometry": { "type": "Point", "coordinates": [ -75.095265, 39.994647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-4vz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077481, "LONGITUDE": -75.031225, "DATE_RANGE_START": 2020, "Total Visits": 135.0, "Total Visitors": 121.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3012.0, "Total Transactions": 200.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 13.59 }, "geometry": { "type": "Point", "coordinates": [ -75.031225, 40.077481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.063794, "LONGITUDE": -75.238861, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 218.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 20804.0, "Total Transactions": 1977.0, "Total Customers": 1189.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.71, "MEDIAN_SPEND_PER_CUSTOMER": 11.76 }, "geometry": { "type": "Point", "coordinates": [ -75.238861, 40.063794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "LOCATION_NAME": "Barbuzzo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950022, "LONGITUDE": -75.162126, "DATE_RANGE_START": 2020, "Total Visits": 959.0, "Total Visitors": 683.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 7541.0, "Total Transactions": 89.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.36, "MEDIAN_SPEND_PER_CUSTOMER": 68.41 }, "geometry": { "type": "Point", "coordinates": [ -75.162126, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-d35", "LOCATION_NAME": "Thomas'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970627, "LONGITUDE": -75.128561, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 115.0, "POI_CBG": 421010143002.0, "MEDIAN_DWELL": 74.0, "Total Spend": 9819.0, "Total Transactions": 44.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.61, "MEDIAN_SPEND_PER_CUSTOMER": 77.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128561, 39.970627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 216.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1986.0, "Total Transactions": 69.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.65, "MEDIAN_SPEND_PER_CUSTOMER": 33.15 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-qmk", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.030627, "LONGITUDE": -75.102315, "DATE_RANGE_START": 2020, "Total Visits": 665.0, "Total Visitors": 609.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 17636.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 1375.0, "MEDIAN_SPEND_PER_CUSTOMER": 1375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102315, 40.030627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-dd9", "LOCATION_NAME": "Diamond Tool", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.93863, "LONGITUDE": -75.191022, "DATE_RANGE_START": 2020, "Total Visits": 137.0, "Total Visitors": 69.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 331.0, "Total Spend": 2289.0, "Total Transactions": 28.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.63, "MEDIAN_SPEND_PER_CUSTOMER": 576.58 }, "geometry": { "type": "Point", "coordinates": [ -75.191022, 39.93863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "LOCATION_NAME": "Pac A Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948693, "LONGITUDE": -75.160788, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 153.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 17938.0, "Total Transactions": 963.0, "Total Customers": 407.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.49, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160788, 39.948693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2020, "Total Visits": 881.0, "Total Visitors": 472.0, "POI_CBG": 421010012021.0, "MEDIAN_DWELL": 29.0, "Total Spend": 25657.0, "Total Transactions": 1316.0, "Total Customers": 605.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.08, "MEDIAN_SPEND_PER_CUSTOMER": 24.56 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029081, "LONGITUDE": -75.125232, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 161.0, "POI_CBG": 421010286001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 21798.0, "Total Transactions": 413.0, "Total Customers": 337.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.64, "MEDIAN_SPEND_PER_CUSTOMER": 40.21 }, "geometry": { "type": "Point", "coordinates": [ -75.125232, 40.029081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2020, "Total Visits": 859.0, "Total Visitors": 649.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 140226.0, "Total Transactions": 8218.0, "Total Customers": 4381.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.68, "MEDIAN_SPEND_PER_CUSTOMER": 22.44 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.043988, "LONGITUDE": -75.054077, "DATE_RANGE_START": 2020, "Total Visits": 3886.0, "Total Visitors": 2876.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1392.0, "Total Transactions": 54.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.41, "MEDIAN_SPEND_PER_CUSTOMER": 24.36 }, "geometry": { "type": "Point", "coordinates": [ -75.054077, 40.043988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-94v", "LOCATION_NAME": "Torrid", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952222, "LONGITUDE": -75.156836, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3073.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.1, "MEDIAN_SPEND_PER_CUSTOMER": 56.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156836, 39.952222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "LOCATION_NAME": "Uniqlo", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951014, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2020, "Total Visits": 246.0, "Total Visitors": 119.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 137.0, "Total Spend": 24418.0, "Total Transactions": 464.0, "Total Customers": 385.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.6, "MEDIAN_SPEND_PER_CUSTOMER": 52.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.951014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "LOCATION_NAME": "Nautica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087648, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 322.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6908.0, "Total Transactions": 123.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.74, "MEDIAN_SPEND_PER_CUSTOMER": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "LOCATION_NAME": "Xiandu Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2020, "Total Visits": 1765.0, "Total Visitors": 1086.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 167.0, "Total Spend": 6425.0, "Total Transactions": 153.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.08, "MEDIAN_SPEND_PER_CUSTOMER": 38.44 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "LOCATION_NAME": "Buffalo Wild Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.082615, "LONGITUDE": -75.025718, "DATE_RANGE_START": 2020, "Total Visits": 1570.0, "Total Visitors": 1441.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7756.0, "Total Transactions": 274.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.31, "MEDIAN_SPEND_PER_CUSTOMER": 24.87 }, "geometry": { "type": "Point", "coordinates": [ -75.025718, 40.082615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-jgk", "LOCATION_NAME": "The Happy Rooster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950462, "LONGITUDE": -75.16756, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 133.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1517.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.86, "MEDIAN_SPEND_PER_CUSTOMER": 41.86 }, "geometry": { "type": "Point", "coordinates": [ -75.16756, 39.950462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pjf-kvf", "LOCATION_NAME": "Bijoux Fine Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.076914, "LONGITUDE": -75.207677, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 18.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 82.0, "Total Spend": 118.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.7, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.207677, 40.076914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pgg-b8v", "LOCATION_NAME": "Shrimp Express II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.000369, "LONGITUDE": -75.16696, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010172013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 470.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16696, 40.000369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945401, "LONGITUDE": -75.178709, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 99.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4687.0, "Total Transactions": 425.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.31, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178709, 39.945401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002693, "LONGITUDE": -75.222651, "DATE_RANGE_START": 2020, "Total Visits": 435.0, "Total Visitors": 375.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12570.0, "Total Transactions": 1270.0, "Total Customers": 810.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.21, "MEDIAN_SPEND_PER_CUSTOMER": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.222651, 40.002693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 34.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 857.0, "Total Transactions": 36.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.28, "MEDIAN_SPEND_PER_CUSTOMER": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-75z", "LOCATION_NAME": "Pizza Brain", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980599, "LONGITUDE": -75.128225, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 40.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 268.0, "Total Spend": 5247.0, "Total Transactions": 153.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.33, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128225, 39.980599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940142, "LONGITUDE": -75.151529, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 42.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 15619.0, "Total Transactions": 770.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.95, "MEDIAN_SPEND_PER_CUSTOMER": 22.58 }, "geometry": { "type": "Point", "coordinates": [ -75.151529, 39.940142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfv-8vz", "LOCATION_NAME": "Weavers Way Mercantile", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046585, "LONGITUDE": -75.195343, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 38.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.54, "MEDIAN_SPEND_PER_CUSTOMER": 9.54 }, "geometry": { "type": "Point", "coordinates": [ -75.195343, 40.046585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "LOCATION_NAME": "Oneals Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 4608.0, "Total Transactions": 143.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.3, "MEDIAN_SPEND_PER_CUSTOMER": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "LOCATION_NAME": "Stateside", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3323.0, "Total Transactions": 87.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.42, "MEDIAN_SPEND_PER_CUSTOMER": 31.45 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "LOCATION_NAME": "Talula's Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2020, "Total Visits": 294.0, "Total Visitors": 252.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 21.0, "Total Spend": 45438.0, "Total Transactions": 1074.0, "Total Customers": 611.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.96, "MEDIAN_SPEND_PER_CUSTOMER": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.875709, "LONGITUDE": -75.241464, "DATE_RANGE_START": 2020, "Total Visits": 166655.0, "Total Visitors": 88708.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 1214.0, "Total Transactions": 71.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.99, "MEDIAN_SPEND_PER_CUSTOMER": 14.78 }, "geometry": { "type": "Point", "coordinates": [ -75.241464, 39.875709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914434, "LONGITUDE": -75.156267, "DATE_RANGE_START": 2020, "Total Visits": 377.0, "Total Visitors": 276.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4308.0, "Total Transactions": 724.0, "Total Customers": 349.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.56, "MEDIAN_SPEND_PER_CUSTOMER": 6.47 }, "geometry": { "type": "Point", "coordinates": [ -75.156267, 39.914434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmb-xyv", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955915, "LONGITUDE": -75.155905, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 121.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 289.0, "Total Transactions": 46.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.13, "MEDIAN_SPEND_PER_CUSTOMER": 6.21 }, "geometry": { "type": "Point", "coordinates": [ -75.155905, 39.955915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2020, "Total Visits": 476.0, "Total Visitors": 298.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3040.0, "Total Transactions": 490.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.95, "MEDIAN_SPEND_PER_CUSTOMER": 6.81 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 129.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 74.0, "Total Spend": 9903.0, "Total Transactions": 653.0, "Total Customers": 492.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.26, "MEDIAN_SPEND_PER_CUSTOMER": 15.95 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "LOCATION_NAME": "Chew Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2020, "Total Visits": 189.0, "Total Visitors": 87.0, "POI_CBG": 421010252007.0, "MEDIAN_DWELL": 171.0, "Total Spend": 3225.0, "Total Transactions": 210.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.21, "MEDIAN_SPEND_PER_CUSTOMER": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p74-n5z", "LOCATION_NAME": "Uniform Gear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.039579, "LONGITUDE": -75.024137, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 16.0, "POI_CBG": 421010329002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2001.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024137, 40.039579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7nq", "LOCATION_NAME": "Bodega Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949277, "LONGITUDE": -75.161669, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 171.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 291.0, "Total Spend": 9648.0, "Total Transactions": 157.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.6, "MEDIAN_SPEND_PER_CUSTOMER": 58.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161669, 39.949277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-w49", "LOCATION_NAME": "Sweet Lucy's Smokehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028508, "LONGITUDE": -75.027023, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 187.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 122.0, "Total Spend": 356.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.84, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.027023, 40.028508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm7-nwk", "LOCATION_NAME": "Point Crab's & Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.934951, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 440.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.06, "MEDIAN_SPEND_PER_CUSTOMER": 50.25 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.934951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.982036, "LONGITUDE": -75.156118, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 58.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1081.0, "Total Transactions": 169.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.53, "MEDIAN_SPEND_PER_CUSTOMER": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156118, 39.982036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "LOCATION_NAME": "LKQ", "TOP_CATEGORY": "Miscellaneous Durable Goods Merchant Wholesalers", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 238.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 253.0, "Total Spend": 10836.0, "Total Transactions": 44.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 164.97, "MEDIAN_SPEND_PER_CUSTOMER": 409.91 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-835", "LOCATION_NAME": "Iovine Brothers Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.952988, "LONGITUDE": -75.158802, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 7344.0, "Total Transactions": 409.0, "Total Customers": 280.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.21, "MEDIAN_SPEND_PER_CUSTOMER": 16.96 }, "geometry": { "type": "Point", "coordinates": [ -75.158802, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2020, "Total Visits": 1687.0, "Total Visitors": 957.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 26600.0, "Total Transactions": 2360.0, "Total Customers": 1068.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.65, "MEDIAN_SPEND_PER_CUSTOMER": 12.34 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2020, "Total Visits": 312.0, "Total Visitors": 234.0, "POI_CBG": 421010012013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 34152.0, "Total Transactions": 3750.0, "Total Customers": 1790.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.86, "MEDIAN_SPEND_PER_CUSTOMER": 11.43 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "LOCATION_NAME": "Butcher Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95199, "LONGITUDE": -75.174938, "DATE_RANGE_START": 2020, "Total Visits": 788.0, "Total Visitors": 484.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 7685.0, "Total Transactions": 115.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.75, "MEDIAN_SPEND_PER_CUSTOMER": 60.01 }, "geometry": { "type": "Point", "coordinates": [ -75.174938, 39.95199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "LOCATION_NAME": "New London Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010289013.0, "MEDIAN_DWELL": null, "Total Spend": 4744.0, "Total Transactions": 197.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.84, "MEDIAN_SPEND_PER_CUSTOMER": 26.68 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "LOCATION_NAME": "Lazos Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 562.0, "Total Spend": 3467.0, "Total Transactions": 159.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.18, "MEDIAN_SPEND_PER_CUSTOMER": 23.32 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p83-zcq", "LOCATION_NAME": "Kuttanadu Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.083172, "LONGITUDE": -75.048353, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 67.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3044.0, "Total Transactions": 109.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.58, "MEDIAN_SPEND_PER_CUSTOMER": 25.19 }, "geometry": { "type": "Point", "coordinates": [ -75.048353, 40.083172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-92k", "LOCATION_NAME": "Beef Jerky Outlet", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.951616, "LONGITUDE": -75.155729, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 608.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155729, 39.951616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "LOCATION_NAME": "Bistrot La Minette", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 1092.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 134.33, "MEDIAN_SPEND_PER_CUSTOMER": 134.33 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.085969, "LONGITUDE": -75.04681, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 326.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2186.0, "Total Transactions": 107.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.06, "MEDIAN_SPEND_PER_CUSTOMER": 14.26 }, "geometry": { "type": "Point", "coordinates": [ -75.04681, 40.085969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.060462, "LONGITUDE": -75.081398, "DATE_RANGE_START": 2020, "Total Visits": 649.0, "Total Visitors": 502.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 699.0, "Total Transactions": 40.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.3, "MEDIAN_SPEND_PER_CUSTOMER": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.081398, 40.060462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-3wk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.09991, "LONGITUDE": -75.009414, "DATE_RANGE_START": 2020, "Total Visits": 2124.0, "Total Visitors": 1471.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 897.0, "Total Transactions": 44.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.29, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.009414, 40.09991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "LOCATION_NAME": "Anthropologie", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950352, "LONGITUDE": -75.170778, "DATE_RANGE_START": 2020, "Total Visits": 2344.0, "Total Visitors": 1366.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 176255.0, "Total Transactions": 1771.0, "Total Customers": 1169.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.01, "MEDIAN_SPEND_PER_CUSTOMER": 68.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170778, 39.950352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnz-xyv", "LOCATION_NAME": "Hong Kong Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988418, "LONGITUDE": -75.102851, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 26.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 48.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.04, "MEDIAN_SPEND_PER_CUSTOMER": 12.04 }, "geometry": { "type": "Point", "coordinates": [ -75.102851, 39.988418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "LOCATION_NAME": "Steak 'Em Up", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 30.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 26.0, "Total Spend": 3648.0, "Total Transactions": 153.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.69, "MEDIAN_SPEND_PER_CUSTOMER": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pzn-zj9", "LOCATION_NAME": "La Casa Di Lucias", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 40.132324, "LONGITUDE": -75.010926, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 32.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 103.0, "Total Spend": 582.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.77, "MEDIAN_SPEND_PER_CUSTOMER": 42.07 }, "geometry": { "type": "Point", "coordinates": [ -75.010926, 40.132324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj6-fj9", "LOCATION_NAME": "Sparks Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.04458, "LONGITUDE": -75.123446, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 48.0, "POI_CBG": 421010274025.0, "MEDIAN_DWELL": 99.0, "Total Spend": 985.0, "Total Transactions": 44.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.98, "MEDIAN_SPEND_PER_CUSTOMER": 44.27 }, "geometry": { "type": "Point", "coordinates": [ -75.123446, 40.04458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-m8v", "LOCATION_NAME": "Ooh LaLa Salads", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970924, "LONGITUDE": -75.156972, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 54.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1027.0, "Total Transactions": 54.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.1, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.156972, 39.970924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 254.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2270.0, "Total Transactions": 349.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.51, "MEDIAN_SPEND_PER_CUSTOMER": 7.51 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-rkz", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.028707, "LONGITUDE": -75.099267, "DATE_RANGE_START": 2020, "Total Visits": 1882.0, "Total Visitors": 1602.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1568.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.41, "MEDIAN_SPEND_PER_CUSTOMER": 41.41 }, "geometry": { "type": "Point", "coordinates": [ -75.099267, 40.028707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.027117, "LONGITUDE": -75.0631, "DATE_RANGE_START": 2020, "Total Visits": 818.0, "Total Visitors": 677.0, "POI_CBG": 421010319001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 15151.0, "Total Transactions": 369.0, "Total Customers": 288.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.48, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.0631, 40.027117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-2ff", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.057857, "LONGITUDE": -75.164182, "DATE_RANGE_START": 2020, "Total Visits": 474.0, "Total Visitors": 318.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 2591.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.45, "MEDIAN_SPEND_PER_CUSTOMER": 53.83 }, "geometry": { "type": "Point", "coordinates": [ -75.164182, 40.057857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-7bk", "LOCATION_NAME": "VIP Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.94892, "LONGITUDE": -75.162809, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 66.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 283.0, "Total Spend": 22802.0, "Total Transactions": 1193.0, "Total Customers": 532.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 22.02 }, "geometry": { "type": "Point", "coordinates": [ -75.162809, 39.94892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.008575, "LONGITUDE": -75.193866, "DATE_RANGE_START": 2020, "Total Visits": 1862.0, "Total Visitors": 1399.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2406.0, "Total Transactions": 115.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.94 }, "geometry": { "type": "Point", "coordinates": [ -75.193866, 40.008575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vvf", "LOCATION_NAME": "Champion", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089655, "LONGITUDE": -74.961736, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 371.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 319.0, "Total Transactions": 38.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 11.89 }, "geometry": { "type": "Point", "coordinates": [ -74.961736, 40.089655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "LOCATION_NAME": "Saks Off Fifth", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.088158, "LONGITUDE": -74.961632, "DATE_RANGE_START": 2020, "Total Visits": 1308.0, "Total Visitors": 1056.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 32272.0, "Total Transactions": 179.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.85, "MEDIAN_SPEND_PER_CUSTOMER": 108.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961632, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "LOCATION_NAME": "Mid Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2020, "Total Visits": 264.0, "Total Visitors": 85.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 207.0, "Total Spend": 790.0, "Total Transactions": 32.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.22, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "LOCATION_NAME": "Paisas Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2020, "Total Visits": 2126.0, "Total Visitors": 1405.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 922.0, "Total Transactions": 44.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.17, "MEDIAN_SPEND_PER_CUSTOMER": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2020, "Total Visits": 320.0, "Total Visitors": 270.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 14500.0, "Total Transactions": 351.0, "Total Customers": 276.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "LOCATION_NAME": "Rittenhouse Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2020, "Total Visits": 1612.0, "Total Visitors": 994.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 10.0, "Total Spend": 47084.0, "Total Transactions": 1657.0, "Total Customers": 627.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.97, "MEDIAN_SPEND_PER_CUSTOMER": 40.32 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "LOCATION_NAME": "J&J Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.925365, "LONGITUDE": -75.157449, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 131.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8818.0, "Total Transactions": 593.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.69, "MEDIAN_SPEND_PER_CUSTOMER": 20.89 }, "geometry": { "type": "Point", "coordinates": [ -75.157449, 39.925365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg9-vs5", "LOCATION_NAME": "The Fairview", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965375, "LONGITUDE": -75.172387, "DATE_RANGE_START": 2020, "Total Visits": 333.0, "Total Visitors": 125.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 733.0, "Total Spend": 5891.0, "Total Transactions": 103.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.71, "MEDIAN_SPEND_PER_CUSTOMER": 44.48 }, "geometry": { "type": "Point", "coordinates": [ -75.172387, 39.965375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.029917, "LONGITUDE": -75.0978, "DATE_RANGE_START": 2020, "Total Visits": 8021.0, "Total Visitors": 4807.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 162364.0, "Total Transactions": 1163.0, "Total Customers": 770.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.71, "MEDIAN_SPEND_PER_CUSTOMER": 76.03 }, "geometry": { "type": "Point", "coordinates": [ -75.0978, 40.029917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjk-rff", "LOCATION_NAME": "The Cedars House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.083003, "LONGITUDE": -75.232456, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 73.0, "POI_CBG": 421010384001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1598.0, "Total Transactions": 105.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.53, "MEDIAN_SPEND_PER_CUSTOMER": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.232456, 40.083003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "LOCATION_NAME": "Philadelphia Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991113, "LONGITUDE": -75.130735, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 145.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4277.0, "Total Transactions": 14.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 300.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130735, 39.991113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.005166, "LONGITUDE": -75.108882, "DATE_RANGE_START": 2020, "Total Visits": 1963.0, "Total Visitors": 1296.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 25845.0, "Total Transactions": 1151.0, "Total Customers": 657.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.06, "MEDIAN_SPEND_PER_CUSTOMER": 29.19 }, "geometry": { "type": "Point", "coordinates": [ -75.108882, 40.005166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmb-66k", "LOCATION_NAME": "uBreakiFix", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.948576, "LONGITUDE": -75.160424, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 58.0, "Total Spend": 1016.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.39, "MEDIAN_SPEND_PER_CUSTOMER": 31.39 }, "geometry": { "type": "Point", "coordinates": [ -75.160424, 39.948576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044581, "LONGITUDE": -75.086995, "DATE_RANGE_START": 2020, "Total Visits": 641.0, "Total Visitors": 542.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 262.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.34, "MEDIAN_SPEND_PER_CUSTOMER": 28.34 }, "geometry": { "type": "Point", "coordinates": [ -75.086995, 40.044581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-ffz", "LOCATION_NAME": "D'jakarta Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920881, "LONGITUDE": -75.173653, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 36.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": 232.0, "Total Spend": 905.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.71, "MEDIAN_SPEND_PER_CUSTOMER": 33.71 }, "geometry": { "type": "Point", "coordinates": [ -75.173653, 39.920881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "LOCATION_NAME": "Riverwards Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 73.0, "POI_CBG": 421010158001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 46534.0, "Total Transactions": 1169.0, "Total Customers": 669.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.97, "MEDIAN_SPEND_PER_CUSTOMER": 43.48 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2020, "Total Visits": 486.0, "Total Visitors": 405.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 793.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.67, "MEDIAN_SPEND_PER_CUSTOMER": 52.67 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-wc5", "LOCATION_NAME": "Renzis Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029921, "LONGITUDE": -75.062595, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 38.0, "POI_CBG": 421010316004.0, "MEDIAN_DWELL": 395.0, "Total Spend": 461.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.38, "MEDIAN_SPEND_PER_CUSTOMER": 22.97 }, "geometry": { "type": "Point", "coordinates": [ -75.062595, 40.029921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "LOCATION_NAME": "Cafe Lift", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 22.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": null, "Total Spend": 5582.0, "Total Transactions": 171.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.01, "MEDIAN_SPEND_PER_CUSTOMER": 36.54 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2020, "Total Visits": 329.0, "Total Visitors": 238.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 55823.0, "Total Transactions": 5615.0, "Total Customers": 2759.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.58, "MEDIAN_SPEND_PER_CUSTOMER": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999174, "LONGITUDE": -75.093264, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 50.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 422.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.73, "MEDIAN_SPEND_PER_CUSTOMER": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.093264, 39.999174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "LOCATION_NAME": "Beer Express", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2020, "Total Visits": 381.0, "Total Visitors": 304.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 14978.0, "Total Transactions": 466.0, "Total Customers": 320.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.72, "MEDIAN_SPEND_PER_CUSTOMER": 33.15 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "LOCATION_NAME": "3 Brothers Pizza & Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010379002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2184.0, "Total Transactions": 177.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pp5-kpv", "LOCATION_NAME": "Port Richmond Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.985432, "LONGITUDE": -75.107476, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 99.0, "POI_CBG": 421010180023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1024.0, "Total Transactions": 81.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.04, "MEDIAN_SPEND_PER_CUSTOMER": 19.96 }, "geometry": { "type": "Point", "coordinates": [ -75.107476, 39.985432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2020, "Total Visits": 395.0, "Total Visitors": 208.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 66.0, "Total Spend": 9794.0, "Total Transactions": 403.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.11, "MEDIAN_SPEND_PER_CUSTOMER": 24.96 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2020, "Total Visits": 677.0, "Total Visitors": 552.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1312.0, "Total Transactions": 89.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.52, "MEDIAN_SPEND_PER_CUSTOMER": 14.41 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.011535, "LONGITUDE": -75.111695, "DATE_RANGE_START": 2020, "Total Visits": 721.0, "Total Visitors": 534.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3263.0, "Total Transactions": 179.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.14, "MEDIAN_SPEND_PER_CUSTOMER": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.111695, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-j7q", "LOCATION_NAME": "Flowers & Company", "TOP_CATEGORY": "Florists", "LATITUDE": 39.948248, "LONGITUDE": -75.172462, "DATE_RANGE_START": 2020, "Total Visits": 1205.0, "Total Visitors": 732.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 149.0, "Total Spend": 2294.0, "Total Transactions": 40.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.53, "MEDIAN_SPEND_PER_CUSTOMER": 43.53 }, "geometry": { "type": "Point", "coordinates": [ -75.172462, 39.948248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "LOCATION_NAME": "Super Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 34.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 51.0, "Total Spend": 2223.0, "Total Transactions": 73.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.27, "MEDIAN_SPEND_PER_CUSTOMER": 31.51 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.037208, "LONGITUDE": -75.172767, "DATE_RANGE_START": 2020, "Total Visits": 1175.0, "Total Visitors": 730.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 15002.0, "Total Transactions": 675.0, "Total Customers": 459.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.03, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172767, 40.037208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "LOCATION_NAME": "Knead Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948165, "LONGITUDE": -75.153606, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1885.0, "Total Transactions": 131.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 12.58 }, "geometry": { "type": "Point", "coordinates": [ -75.153606, 39.948165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "LOCATION_NAME": "Taco Loco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": null, "Total Spend": 1770.0, "Total Transactions": 105.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.55, "MEDIAN_SPEND_PER_CUSTOMER": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "LOCATION_NAME": "Ganaan Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": null, "Total Spend": 6283.0, "Total Transactions": 197.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.5, "MEDIAN_SPEND_PER_CUSTOMER": 34.15 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-y5f", "LOCATION_NAME": "Southside Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940448, "LONGITUDE": -75.17585, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 268.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.26, "MEDIAN_SPEND_PER_CUSTOMER": 36.26 }, "geometry": { "type": "Point", "coordinates": [ -75.17585, 39.940448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pm9-wtv", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951286, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 12938.0, "Total Transactions": 294.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.97, "MEDIAN_SPEND_PER_CUSTOMER": 43.02 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.951286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "LOCATION_NAME": "Tap Room On 19th", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010038001.0, "MEDIAN_DWELL": null, "Total Spend": 3493.0, "Total Transactions": 56.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.38, "MEDIAN_SPEND_PER_CUSTOMER": 56.75 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-rzf", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.995312, "LONGITUDE": -75.092003, "DATE_RANGE_START": 2020, "Total Visits": 423.0, "Total Visitors": 377.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 252.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.3, "MEDIAN_SPEND_PER_CUSTOMER": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092003, 39.995312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "LOCATION_NAME": "University City Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 62.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 760.0, "Total Spend": 3540.0, "Total Transactions": 135.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "LOCATION_NAME": "Marine Layer", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949625, "LONGITUDE": -75.16782, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 443.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1200.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.0, "MEDIAN_SPEND_PER_CUSTOMER": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16782, 39.949625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "LOCATION_NAME": "Dollar Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2020, "Total Visits": 554.0, "Total Visitors": 367.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7716.0, "Total Transactions": 268.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.65, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.945313, "LONGITUDE": -75.238538, "DATE_RANGE_START": 2020, "Total Visits": 651.0, "Total Visitors": 484.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2183.0, "Total Transactions": 242.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 8.24 }, "geometry": { "type": "Point", "coordinates": [ -75.238538, 39.945313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-kfz", "LOCATION_NAME": "Machi Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950008, "LONGITUDE": -75.173818, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010008034.0, "MEDIAN_DWELL": null, "Total Spend": 163.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.173818, 39.950008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-sbk", "LOCATION_NAME": "Faulkner Hyundai", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.102704, "LONGITUDE": -75.006021, "DATE_RANGE_START": 2020, "Total Visits": 4164.0, "Total Visitors": 2926.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 43355.0, "Total Transactions": 105.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 131.64, "MEDIAN_SPEND_PER_CUSTOMER": 136.54 }, "geometry": { "type": "Point", "coordinates": [ -75.006021, 40.102704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.991624, "LONGITUDE": -75.134387, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 236.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 12058.0, "Total Transactions": 226.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 37.66 }, "geometry": { "type": "Point", "coordinates": [ -75.134387, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm4-grk", "LOCATION_NAME": "AmeriThai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923914, "LONGITUDE": -75.167514, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1421.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.65, "MEDIAN_SPEND_PER_CUSTOMER": 40.79 }, "geometry": { "type": "Point", "coordinates": [ -75.167514, 39.923914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgj-9xq", "LOCATION_NAME": "Brothers Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.990985, "LONGITUDE": -75.167059, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010168006.0, "MEDIAN_DWELL": null, "Total Spend": 78.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.28, "MEDIAN_SPEND_PER_CUSTOMER": 15.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167059, 39.990985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "LOCATION_NAME": "Lucha Cartel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 28.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 334.0, "Total Spend": 539.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.73, "MEDIAN_SPEND_PER_CUSTOMER": 42.73 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-f9f", "LOCATION_NAME": "Dimension Latin Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052647, "LONGITUDE": -75.065236, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 46.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 34.0, "Total Spend": 3919.0, "Total Transactions": 50.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.16, "MEDIAN_SPEND_PER_CUSTOMER": 88.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065236, 40.052647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f9f", "LOCATION_NAME": "El Balconcito II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052956, "LONGITUDE": -75.064913, "DATE_RANGE_START": 2020, "Total Visits": 830.0, "Total Visitors": 464.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 80.0, "Total Spend": 2908.0, "Total Transactions": 64.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.66, "MEDIAN_SPEND_PER_CUSTOMER": 43.38 }, "geometry": { "type": "Point", "coordinates": [ -75.064913, 40.052956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-k75", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.094473, "LONGITUDE": -75.018339, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 81.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 611.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.3, "MEDIAN_SPEND_PER_CUSTOMER": 25.3 }, "geometry": { "type": "Point", "coordinates": [ -75.018339, 40.094473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-n3q", "LOCATION_NAME": "Naya Market St", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953238, "LONGITUDE": -75.167055, "DATE_RANGE_START": 2020, "Total Visits": 189.0, "Total Visitors": 143.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 126.0, "Total Spend": 154.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.24 }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.953238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999771, "LONGITUDE": -75.153727, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 109.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 991.0, "Total Transactions": 81.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.65, "MEDIAN_SPEND_PER_CUSTOMER": 12.54 }, "geometry": { "type": "Point", "coordinates": [ -75.153727, 39.999771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950691, "LONGITUDE": -75.151871, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 97.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 178.0, "Total Spend": 2694.0, "Total Transactions": 455.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.05, "MEDIAN_SPEND_PER_CUSTOMER": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.950691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-n3q", "LOCATION_NAME": "Pete's Clown House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003738, "LONGITUDE": -75.094646, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 64.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1568.0, "Total Transactions": 71.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 26.53 }, "geometry": { "type": "Point", "coordinates": [ -75.094646, 40.003738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-cqz", "LOCATION_NAME": "Pita Chip", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977951, "LONGITUDE": -75.158444, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 377.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1142.0, "Total Transactions": 89.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 10.19 }, "geometry": { "type": "Point", "coordinates": [ -75.158444, 39.977951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8f-djv", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017133, "LONGITUDE": -75.084023, "DATE_RANGE_START": 2020, "Total Visits": 540.0, "Total Visitors": 361.0, "POI_CBG": 421010300006.0, "MEDIAN_DWELL": 14.0, "Total Spend": 603.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.22, "MEDIAN_SPEND_PER_CUSTOMER": 32.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084023, 40.017133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 60.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3389.0, "Total Transactions": 141.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 28.45 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-9pv", "LOCATION_NAME": "The Buffalo House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043677, "LONGITUDE": -75.017847, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 69.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3659.0, "Total Transactions": 145.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.85, "MEDIAN_SPEND_PER_CUSTOMER": 29.4 }, "geometry": { "type": "Point", "coordinates": [ -75.017847, 40.043677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-kcq", "LOCATION_NAME": "Cosmic Cafe and Ciderhouse", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969067, "LONGITUDE": -75.185279, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 99.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 147.0, "Total Spend": 928.0, "Total Transactions": 87.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185279, 39.969067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-9j9", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055278, "LONGITUDE": -75.049853, "DATE_RANGE_START": 2020, "Total Visits": 474.0, "Total Visitors": 397.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 304.0, "Total Transactions": 14.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.28, "MEDIAN_SPEND_PER_CUSTOMER": 31.79 }, "geometry": { "type": "Point", "coordinates": [ -75.049853, 40.055278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgm-3qz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.008377, "LONGITUDE": -75.193545, "DATE_RANGE_START": 2020, "Total Visits": 294.0, "Total Visitors": 248.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2275.0, "Total Transactions": 234.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 8.01 }, "geometry": { "type": "Point", "coordinates": [ -75.193545, 40.008377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "LOCATION_NAME": "J & P Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953491, "LONGITUDE": -75.218951, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 99.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 8290.0, "Total Transactions": 216.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.97, "MEDIAN_SPEND_PER_CUSTOMER": 37.15 }, "geometry": { "type": "Point", "coordinates": [ -75.218951, 39.953491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2020, "Total Visits": 909.0, "Total Visitors": 794.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 119547.0, "Total Transactions": 7553.0, "Total Customers": 4541.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.97, "MEDIAN_SPEND_PER_CUSTOMER": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-p9q-tn5", "LOCATION_NAME": "Hibachi Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.08417, "LONGITUDE": -75.035832, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 66.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1728.0, "Total Transactions": 71.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.59, "MEDIAN_SPEND_PER_CUSTOMER": 20.38 }, "geometry": { "type": "Point", "coordinates": [ -75.035832, 40.08417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "LOCATION_NAME": "Parkway Corner Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 101.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 71.0, "Total Spend": 2663.0, "Total Transactions": 169.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.52, "MEDIAN_SPEND_PER_CUSTOMER": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pmb-7qz", "LOCATION_NAME": "Little Nonna's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94777, "LONGITUDE": -75.162061, "DATE_RANGE_START": 2020, "Total Visits": 629.0, "Total Visitors": 357.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 101.0, "Total Spend": 461.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.0, "MEDIAN_SPEND_PER_CUSTOMER": 74.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162061, 39.94777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "LOCATION_NAME": "Spring Garden Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2020, "Total Visits": 496.0, "Total Visitors": 389.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3586.0, "Total Transactions": 200.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.51, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "LOCATION_NAME": "Cleavers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951397, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 75.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 14495.0, "Total Transactions": 536.0, "Total Customers": 455.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.87, "MEDIAN_SPEND_PER_CUSTOMER": 28.73 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 39.951397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-73q", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950321, "LONGITUDE": -75.163776, "DATE_RANGE_START": 2020, "Total Visits": 758.0, "Total Visitors": 552.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 4364.0, "Total Transactions": 222.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.09, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.163776, 39.950321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-y7q", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085978, "LONGITUDE": -75.039162, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 81.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 316.0, "Total Transactions": 26.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.039162, 40.085978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-xwk", "LOCATION_NAME": "Hive Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931826, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 81.0, "POI_CBG": 421010030021.0, "MEDIAN_DWELL": 26.0, "Total Spend": 52.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.1, "MEDIAN_SPEND_PER_CUSTOMER": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.931826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2020, "Total Visits": 1411.0, "Total Visitors": 859.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 13.0, "Total Spend": 140.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.58, "MEDIAN_SPEND_PER_CUSTOMER": 8.02 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pjf-kvf", "LOCATION_NAME": "Tailored Home", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.076272, "LONGITUDE": -75.207332, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 218.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 90.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.207332, 40.076272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.980937, "LONGITUDE": -75.144152, "DATE_RANGE_START": 2020, "Total Visits": 1923.0, "Total Visitors": 1344.0, "POI_CBG": 421010156002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 11287.0, "Total Transactions": 266.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.98, "MEDIAN_SPEND_PER_CUSTOMER": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.144152, 39.980937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "LOCATION_NAME": "S & S Foods", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924738, "LONGITUDE": -75.144356, "DATE_RANGE_START": 2020, "Total Visits": 413.0, "Total Visitors": 258.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 9523.0, "Total Transactions": 48.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 201.2, "MEDIAN_SPEND_PER_CUSTOMER": 244.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144356, 39.924738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-649", "LOCATION_NAME": "Quaker Valley Foods", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.094265, "LONGITUDE": -75.010029, "DATE_RANGE_START": 2020, "Total Visits": 306.0, "Total Visitors": 101.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 182.0, "Total Spend": 166394.0, "Total Transactions": 62.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 2841.35, "MEDIAN_SPEND_PER_CUSTOMER": 6946.65 }, "geometry": { "type": "Point", "coordinates": [ -75.010029, 40.094265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "LOCATION_NAME": "Brewer's Outlet", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.953078, "LONGITUDE": -75.217954, "DATE_RANGE_START": 2020, "Total Visits": 335.0, "Total Visitors": 240.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 8271.0, "Total Transactions": 234.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 31.85 }, "geometry": { "type": "Point", "coordinates": [ -75.217954, 39.953078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.936469, "LONGITUDE": -75.160327, "DATE_RANGE_START": 2020, "Total Visits": 1882.0, "Total Visitors": 1385.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4016.0, "Total Transactions": 145.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.24, "MEDIAN_SPEND_PER_CUSTOMER": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.160327, 39.936469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "LOCATION_NAME": "Banana Republic Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952113, "LONGITUDE": -75.172438, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 167.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 23.0, "Total Spend": 3908.0, "Total Transactions": 69.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.38, "MEDIAN_SPEND_PER_CUSTOMER": 64.72 }, "geometry": { "type": "Point", "coordinates": [ -75.172438, 39.952113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvp-qmk", "LOCATION_NAME": "Caribbean Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94382, "LONGITUDE": -75.246381, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 101.0, "POI_CBG": 421010082004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 241.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.246381, 39.94382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj8-2c5", "LOCATION_NAME": "US1 Car Stereo", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029189, "LONGITUDE": -75.103473, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 81.0, "POI_CBG": 421010292002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6542.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 350.0, "MEDIAN_SPEND_PER_CUSTOMER": 350.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103473, 40.029189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "LOCATION_NAME": "Evo Brickoven Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 36.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4060.0, "Total Transactions": 185.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.75, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-mzf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954224, "LONGITUDE": -75.167482, "DATE_RANGE_START": 2020, "Total Visits": 2549.0, "Total Visitors": 1453.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 252.0, "Total Spend": 763.0, "Total Transactions": 149.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.47, "MEDIAN_SPEND_PER_CUSTOMER": 8.84 }, "geometry": { "type": "Point", "coordinates": [ -75.167482, 39.954224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "LOCATION_NAME": "Castle Roxx", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 42.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 585.0, "Total Spend": 3414.0, "Total Transactions": 83.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "LOCATION_NAME": "Cry Baby Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 335.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 50.0, "Total Spend": 3999.0, "Total Transactions": 48.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.56, "MEDIAN_SPEND_PER_CUSTOMER": 83.56 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-3bk", "LOCATION_NAME": "Nopco", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.95597, "LONGITUDE": -75.194088, "DATE_RANGE_START": 2020, "Total Visits": 1350.0, "Total Visitors": 822.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 81.0, "Total Spend": 288.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194088, 39.95597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 48.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3240.0, "Total Transactions": 56.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.92, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-vvf", "LOCATION_NAME": "Pret A Manger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955744, "LONGITUDE": -75.181965, "DATE_RANGE_START": 2020, "Total Visits": 10482.0, "Total Visitors": 6602.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1168.0, "Total Transactions": 171.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.26, "MEDIAN_SPEND_PER_CUSTOMER": 5.72 }, "geometry": { "type": "Point", "coordinates": [ -75.181965, 39.955744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-p7q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.01382, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2020, "Total Visits": 87.0, "Total Visitors": 56.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1064.0, "Total Transactions": 99.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.02, "MEDIAN_SPEND_PER_CUSTOMER": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 40.01382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.973475, "LONGITUDE": -75.159323, "DATE_RANGE_START": 2020, "Total Visits": 369.0, "Total Visitors": 294.0, "POI_CBG": 421010140003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1678.0, "Total Transactions": 71.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.61, "MEDIAN_SPEND_PER_CUSTOMER": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159323, 39.973475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "LOCATION_NAME": "Liberty Time", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2020, "Total Visits": 1491.0, "Total Visitors": 1245.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1622.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.5, "MEDIAN_SPEND_PER_CUSTOMER": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.051082, "LONGITUDE": -75.059668, "DATE_RANGE_START": 2020, "Total Visits": 6943.0, "Total Visitors": 4716.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 337971.0, "Total Transactions": 6475.0, "Total Customers": 3936.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.81, "MEDIAN_SPEND_PER_CUSTOMER": 52.11 }, "geometry": { "type": "Point", "coordinates": [ -75.059668, 40.051082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-grk", "LOCATION_NAME": "Bargain world", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.941099, "LONGITUDE": -75.21263, "DATE_RANGE_START": 2020, "Total Visits": 212.0, "Total Visitors": 151.0, "POI_CBG": 421010074002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 475.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.98, "MEDIAN_SPEND_PER_CUSTOMER": 54.86 }, "geometry": { "type": "Point", "coordinates": [ -75.21263, 39.941099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "LOCATION_NAME": "Vapordelphia", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2020, "Total Visits": 669.0, "Total Visitors": 476.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 35.0, "Total Spend": 4729.0, "Total Transactions": 89.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.52, "MEDIAN_SPEND_PER_CUSTOMER": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.989253, "LONGITUDE": -75.090212, "DATE_RANGE_START": 2020, "Total Visits": 2435.0, "Total Visitors": 1411.0, "POI_CBG": 421010379006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 861.0, "Total Transactions": 46.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.090212, 39.989253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w49", "LOCATION_NAME": "Sam Ash Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.087105, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 121.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 26427.0, "Total Transactions": 129.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 104.76, "MEDIAN_SPEND_PER_CUSTOMER": 132.15 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.064353, "LONGITUDE": -75.238205, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 135.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 378.0, "Total Transactions": 26.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.82 }, "geometry": { "type": "Point", "coordinates": [ -75.238205, 40.064353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2020, "Total Visits": 681.0, "Total Visitors": 320.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 437.0, "Total Spend": 810.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.0471, "LONGITUDE": -75.142281, "DATE_RANGE_START": 2020, "Total Visits": 3501.0, "Total Visitors": 2334.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 23317.0, "Total Transactions": 1022.0, "Total Customers": 693.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.01, "MEDIAN_SPEND_PER_CUSTOMER": 26.67 }, "geometry": { "type": "Point", "coordinates": [ -75.142281, 40.0471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-225@628-pmf-sqz", "LOCATION_NAME": "Rag & Bone", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950021, "LONGITUDE": -75.167636, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 71.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 6021.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 203.0, "MEDIAN_SPEND_PER_CUSTOMER": 203.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167636, 39.950021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgh-6p9", "LOCATION_NAME": "New Station Pizza 8", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010722, "LONGITUDE": -75.164603, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 46.0, "POI_CBG": 421010202004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4197.0, "Total Transactions": 210.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.86, "MEDIAN_SPEND_PER_CUSTOMER": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164603, 40.010722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "LOCATION_NAME": "Stenton Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 24.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 319.0, "Total Spend": 2460.0, "Total Transactions": 127.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.7, "MEDIAN_SPEND_PER_CUSTOMER": 19.67 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-ht9", "LOCATION_NAME": "Medical Guardian", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952886, "LONGITUDE": -75.170883, "DATE_RANGE_START": 2020, "Total Visits": 564.0, "Total Visitors": 329.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 86.0, "Total Spend": 178.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.95, "MEDIAN_SPEND_PER_CUSTOMER": 44.93 }, "geometry": { "type": "Point", "coordinates": [ -75.170883, 39.952886 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.037065, "LONGITUDE": -75.118922, "DATE_RANGE_START": 2020, "Total Visits": 230.0, "Total Visitors": 197.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 16019.0, "Total Transactions": 393.0, "Total Customers": 349.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.98, "MEDIAN_SPEND_PER_CUSTOMER": 30.99 }, "geometry": { "type": "Point", "coordinates": [ -75.118922, 40.037065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "LOCATION_NAME": "New Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2020, "Total Visits": 965.0, "Total Visitors": 482.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 91.0, "Total Spend": 1144.0, "Total Transactions": 73.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.81, "MEDIAN_SPEND_PER_CUSTOMER": 23.08 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031321, "LONGITUDE": -75.083478, "DATE_RANGE_START": 2020, "Total Visits": 2007.0, "Total Visitors": 1346.0, "POI_CBG": 421010318004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 505.0, "Total Transactions": 32.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.31, "MEDIAN_SPEND_PER_CUSTOMER": 21.35 }, "geometry": { "type": "Point", "coordinates": [ -75.083478, 40.031321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-6ff", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.107593, "LONGITUDE": -75.02698, "DATE_RANGE_START": 2020, "Total Visits": 1028.0, "Total Visitors": 766.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1201.0, "Total Transactions": 83.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 12.21 }, "geometry": { "type": "Point", "coordinates": [ -75.02698, 40.107593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmd-w49", "LOCATION_NAME": "Twenty Manning", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948622, "LONGITUDE": -75.17407, "DATE_RANGE_START": 2020, "Total Visits": 312.0, "Total Visitors": 105.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 904.0, "Total Spend": 1520.0, "Total Transactions": 48.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17407, 39.948622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "LOCATION_NAME": "Tokyo Sushi & Catering", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2020, "Total Visits": 1030.0, "Total Visitors": 572.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 287.0, "Total Spend": 1953.0, "Total Transactions": 121.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.48, "MEDIAN_SPEND_PER_CUSTOMER": 16.51 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "LOCATION_NAME": "Local 44", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952832, "LONGITUDE": -75.210325, "DATE_RANGE_START": 2020, "Total Visits": 331.0, "Total Visitors": 226.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 134.0, "Total Spend": 1116.0, "Total Transactions": 32.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.51, "MEDIAN_SPEND_PER_CUSTOMER": 37.73 }, "geometry": { "type": "Point", "coordinates": [ -75.210325, 39.952832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-xwk", "LOCATION_NAME": "Walnut Street Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952066, "LONGITUDE": -75.183753, "DATE_RANGE_START": 2020, "Total Visits": 3295.0, "Total Visitors": 2062.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 115.0, "Total Spend": 162.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.7, "MEDIAN_SPEND_PER_CUSTOMER": 40.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183753, 39.952066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "LOCATION_NAME": "Ocean Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95567, "LONGITUDE": -75.156821, "DATE_RANGE_START": 2020, "Total Visits": 2092.0, "Total Visitors": 1475.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 181.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.5, "MEDIAN_SPEND_PER_CUSTOMER": 45.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156821, 39.95567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.931302, "LONGITUDE": -75.225599, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 212.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1209.0, "Total Transactions": 117.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 8.33 }, "geometry": { "type": "Point", "coordinates": [ -75.225599, 39.931302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2020, "Total Visits": 655.0, "Total Visitors": 524.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 13879.0, "Total Transactions": 899.0, "Total Customers": 665.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p9j-zj9", "LOCATION_NAME": "Kabobi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0995, "LONGITUDE": -75.010461, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 99.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1933.0, "Total Transactions": 66.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.010461, 40.0995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "LOCATION_NAME": "Linden Italian Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054575, "LONGITUDE": -75.004237, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 206.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1211.0, "Total Transactions": 93.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.48, "MEDIAN_SPEND_PER_CUSTOMER": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.004237, 40.054575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2020, "Total Visits": 314.0, "Total Visitors": 268.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10307.0, "Total Transactions": 834.0, "Total Customers": 548.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.22, "MEDIAN_SPEND_PER_CUSTOMER": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2020, "Total Visits": 431.0, "Total Visitors": 310.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6811.0, "Total Transactions": 1016.0, "Total Customers": 389.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002692, "LONGITUDE": -75.214454, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 210.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5179.0, "Total Transactions": 810.0, "Total Customers": 445.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.27, "MEDIAN_SPEND_PER_CUSTOMER": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.214454, 40.002692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 185.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6745.0, "Total Transactions": 520.0, "Total Customers": 417.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.54 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2020, "Total Visits": 1036.0, "Total Visitors": 730.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 13206.0, "Total Transactions": 1822.0, "Total Customers": 770.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.07, "MEDIAN_SPEND_PER_CUSTOMER": 9.77 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-835", "LOCATION_NAME": "3J's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963054, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": null, "Total Spend": 250.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 22.59 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg2-4qf", "LOCATION_NAME": "Phu Fha Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029908, "LONGITUDE": -75.218798, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010213004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1629.0, "Total Transactions": 54.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.97, "MEDIAN_SPEND_PER_CUSTOMER": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.218798, 40.029908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm4-d35", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922429, "LONGITUDE": -75.169649, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1347.0, "Total Transactions": 115.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.82, "MEDIAN_SPEND_PER_CUSTOMER": 11.05 }, "geometry": { "type": "Point", "coordinates": [ -75.169649, 39.922429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "LOCATION_NAME": "New Quality Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": null, "Total Spend": 470.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.42, "MEDIAN_SPEND_PER_CUSTOMER": 24.74 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-r49", "LOCATION_NAME": "Jade Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926873, "LONGITUDE": -75.154236, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 14.0, "POI_CBG": 421010027012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 104.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154236, 39.926873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "LOCATION_NAME": "Little Fish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010018001.0, "MEDIAN_DWELL": 172.0, "Total Spend": 198.0, "Total Transactions": 24.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmc-qcq", "LOCATION_NAME": "2 Street Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930224, "LONGITUDE": -75.148223, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 85.0, "Total Spend": 216.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148223, 39.930224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-w8v", "LOCATION_NAME": "Main Street Madness", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.018, "LONGITUDE": -75.213362, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 24.0, "POI_CBG": 421010209003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3908.0, "Total Transactions": 32.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 92.5, "MEDIAN_SPEND_PER_CUSTOMER": 106.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213362, 40.018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 28.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 96.0, "Total Spend": 530.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.5, "MEDIAN_SPEND_PER_CUSTOMER": 38.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgk-z9f", "LOCATION_NAME": "Beauty & Fashion City", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999963, "LONGITUDE": -75.209335, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010122041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 218.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.16, "MEDIAN_SPEND_PER_CUSTOMER": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.209335, 39.999963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnz-yy9", "LOCATION_NAME": "Perri's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987227, "LONGITUDE": -75.108511, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1073.0, "Total Transactions": 50.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108511, 39.987227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "LOCATION_NAME": "Cafe Square One", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948829, "LONGITUDE": -75.146095, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 56.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 224.0, "Total Spend": 1572.0, "Total Transactions": 125.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.53, "MEDIAN_SPEND_PER_CUSTOMER": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.146095, 39.948829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2020, "Total Visits": 1640.0, "Total Visitors": 959.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 506.0, "Total Spend": 23429.0, "Total Transactions": 91.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 127.98, "MEDIAN_SPEND_PER_CUSTOMER": 127.98 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "LOCATION_NAME": "No 1 Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 75.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 125.0, "Total Spend": 406.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.74, "MEDIAN_SPEND_PER_CUSTOMER": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 208.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 3005.0, "Total Transactions": 99.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.64, "MEDIAN_SPEND_PER_CUSTOMER": 27.76 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "LOCATION_NAME": "New Star Express Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 93.0, "POI_CBG": 421010111004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1720.0, "Total Transactions": 71.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.33, "MEDIAN_SPEND_PER_CUSTOMER": 21.26 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.899825, "LONGITUDE": -75.241379, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 318.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 157.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.64, "MEDIAN_SPEND_PER_CUSTOMER": 15.64 }, "geometry": { "type": "Point", "coordinates": [ -75.241379, 39.899825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22g@628-pmb-92k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951633, "LONGITUDE": -75.155742, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 258.0, "Total Transactions": 56.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.66, "MEDIAN_SPEND_PER_CUSTOMER": 3.66 }, "geometry": { "type": "Point", "coordinates": [ -75.155742, 39.951633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-rzf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.996049, "LONGITUDE": -75.092849, "DATE_RANGE_START": 2020, "Total Visits": 996.0, "Total Visitors": 584.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1713.0, "Total Transactions": 262.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.95, "MEDIAN_SPEND_PER_CUSTOMER": 7.71 }, "geometry": { "type": "Point", "coordinates": [ -75.092849, 39.996049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmd-zcq", "LOCATION_NAME": "Los Camaradas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940826, "LONGITUDE": -75.179816, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010013003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8417.0, "Total Transactions": 157.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.23, "MEDIAN_SPEND_PER_CUSTOMER": 45.38 }, "geometry": { "type": "Point", "coordinates": [ -75.179816, 39.940826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgf-52k", "LOCATION_NAME": "Chengdu Famous Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959245, "LONGITUDE": -75.194556, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 10.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 924.0, "Total Spend": 1518.0, "Total Transactions": 40.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.75, "MEDIAN_SPEND_PER_CUSTOMER": 37.57 }, "geometry": { "type": "Point", "coordinates": [ -75.194556, 39.959245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010298002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 714.0, "Total Transactions": 32.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.88, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "LOCATION_NAME": "Trattoria Carina", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010008011.0, "MEDIAN_DWELL": null, "Total Spend": 2677.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.02, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.08158, "LONGITUDE": -75.02629, "DATE_RANGE_START": 2020, "Total Visits": 528.0, "Total Visitors": 474.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 22195.0, "Total Transactions": 451.0, "Total Customers": 355.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.13, "MEDIAN_SPEND_PER_CUSTOMER": 47.48 }, "geometry": { "type": "Point", "coordinates": [ -75.02629, 40.08158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg8-ks5", "LOCATION_NAME": "SPOT Gourmet Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974624, "LONGITUDE": -75.182611, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 157.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.62, "MEDIAN_SPEND_PER_CUSTOMER": 19.28 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.974624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "LOCATION_NAME": "Revolution Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 490.0, "Total Spend": 1892.0, "Total Transactions": 101.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.53, "MEDIAN_SPEND_PER_CUSTOMER": 18.46 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "LOCATION_NAME": "Garden Court Eatery & Beer", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952636, "LONGITUDE": -75.21767, "DATE_RANGE_START": 2020, "Total Visits": 335.0, "Total Visitors": 240.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 16266.0, "Total Transactions": 760.0, "Total Customers": 320.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.95, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21767, 39.952636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-y5f", "LOCATION_NAME": "Neighborhood Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9409, "LONGITUDE": -75.147453, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 335.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 50.0, "Total Spend": 45.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.147453, 39.9409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6x5", "LOCATION_NAME": "Amma's South Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950885, "LONGITUDE": -75.166421, "DATE_RANGE_START": 2020, "Total Visits": 3543.0, "Total Visitors": 2235.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 2395.0, "Total Transactions": 67.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.13, "MEDIAN_SPEND_PER_CUSTOMER": 36.61 }, "geometry": { "type": "Point", "coordinates": [ -75.166421, 39.950885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-p35", "LOCATION_NAME": "Fiore Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989223, "LONGITUDE": -75.127044, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 83.0, "POI_CBG": 421010163001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1243.0, "Total Transactions": 58.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.16, "MEDIAN_SPEND_PER_CUSTOMER": 23.18 }, "geometry": { "type": "Point", "coordinates": [ -75.127044, 39.989223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qmk", "LOCATION_NAME": "Sea Soul", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038264, "LONGITUDE": -75.11969, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 42.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1757.0, "Total Transactions": 50.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.97, "MEDIAN_SPEND_PER_CUSTOMER": 29.92 }, "geometry": { "type": "Point", "coordinates": [ -75.11969, 40.038264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "LOCATION_NAME": "Rosario's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 46.0, "POI_CBG": 421010022002.0, "MEDIAN_DWELL": 316.0, "Total Spend": 1194.0, "Total Transactions": 46.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.57, "MEDIAN_SPEND_PER_CUSTOMER": 24.57 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "LOCATION_NAME": "House of Kosher", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2020, "Total Visits": 449.0, "Total Visitors": 210.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 24144.0, "Total Transactions": 347.0, "Total Customers": 161.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.85, "MEDIAN_SPEND_PER_CUSTOMER": 92.34 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-649", "LOCATION_NAME": "The Barn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948417, "LONGITUDE": -75.22137, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 56.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 5784.0, "Total Transactions": 246.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22137, 39.948417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "LOCATION_NAME": "Castor Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 56.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 430.0, "Total Spend": 1619.0, "Total Transactions": 81.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.47, "MEDIAN_SPEND_PER_CUSTOMER": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2020, "Total Visits": 536.0, "Total Visitors": 482.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 20003.0, "Total Transactions": 1860.0, "Total Customers": 1403.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.99, "MEDIAN_SPEND_PER_CUSTOMER": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921808, "LONGITUDE": -75.146286, "DATE_RANGE_START": 2020, "Total Visits": 250.0, "Total Visitors": 226.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3498.0, "Total Transactions": 185.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.146286, 39.921808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017737, "LONGITUDE": -75.148813, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 79.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5479.0, "Total Transactions": 320.0, "Total Customers": 262.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.67, "MEDIAN_SPEND_PER_CUSTOMER": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.148813, 40.017737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 121.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6140.0, "Total Transactions": 236.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.05, "MEDIAN_SPEND_PER_CUSTOMER": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-zs5", "LOCATION_NAME": "Kilimandjaro Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949245, "LONGITUDE": -75.213733, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 71.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 67.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213733, 39.949245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2020, "Total Visits": 171.0, "Total Visitors": 121.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 36.0, "Total Spend": 14587.0, "Total Transactions": 294.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.1, "MEDIAN_SPEND_PER_CUSTOMER": 40.58 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-ygk", "LOCATION_NAME": "Pho Cali", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953422, "LONGITUDE": -75.156467, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 91.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 787.0, "Total Transactions": 34.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.6, "MEDIAN_SPEND_PER_CUSTOMER": 23.21 }, "geometry": { "type": "Point", "coordinates": [ -75.156467, 39.953422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992769, "LONGITUDE": -75.100237, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 147.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 73.0, "Total Spend": 10210.0, "Total Transactions": 363.0, "Total Customers": 304.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.09, "MEDIAN_SPEND_PER_CUSTOMER": 30.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100237, 39.992769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "LOCATION_NAME": "Macaroni's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 165.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 249.0, "Total Spend": 14849.0, "Total Transactions": 125.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.64, "MEDIAN_SPEND_PER_CUSTOMER": 108.85 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "LOCATION_NAME": "Capital Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 69.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2122.0, "Total Transactions": 69.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.92, "MEDIAN_SPEND_PER_CUSTOMER": 27.92 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dwg-cbk", "LOCATION_NAME": "Hot Spot Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.916984, "LONGITUDE": -75.237394, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 77.0, "POI_CBG": 421010060005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3256.0, "Total Transactions": 119.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.53, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237394, 39.916984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2020, "Total Visits": 508.0, "Total Visitors": 423.0, "POI_CBG": 421010098011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12419.0, "Total Transactions": 1153.0, "Total Customers": 836.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.27, "MEDIAN_SPEND_PER_CUSTOMER": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 181.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 342.0, "Total Transactions": 22.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.87, "MEDIAN_SPEND_PER_CUSTOMER": 86.27 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "LOCATION_NAME": "Aldo Lamberti Trattoria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.874852, "LONGITUDE": -75.241162, "DATE_RANGE_START": 2020, "Total Visits": 5923.0, "Total Visitors": 4825.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 103.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.03, "MEDIAN_SPEND_PER_CUSTOMER": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.241162, 39.874852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph6-whq", "LOCATION_NAME": "Italian Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986561, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 67.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1993.0, "Total Transactions": 79.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.2, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "LOCATION_NAME": "DaMo Pasta Lab", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2020, "Total Visits": 171.0, "Total Visitors": 161.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2972.0, "Total Transactions": 125.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.9, "MEDIAN_SPEND_PER_CUSTOMER": 25.57 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 248.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3193.0, "Total Transactions": 439.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.57, "MEDIAN_SPEND_PER_CUSTOMER": 9.93 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-tvz", "LOCATION_NAME": "Via Locusta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949069, "LONGITUDE": -75.170305, "DATE_RANGE_START": 2020, "Total Visits": 820.0, "Total Visitors": 365.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 223.0, "Total Spend": 7283.0, "Total Transactions": 79.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.94, "MEDIAN_SPEND_PER_CUSTOMER": 84.89 }, "geometry": { "type": "Point", "coordinates": [ -75.170305, 39.949069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "LOCATION_NAME": "NO 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2020, "Total Visits": 639.0, "Total Visitors": 526.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1930.0, "Total Transactions": 75.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.1, "MEDIAN_SPEND_PER_CUSTOMER": 20.45 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "LOCATION_NAME": "Romeo Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924602, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 167.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 30.0, "Total Spend": 943.0, "Total Transactions": 46.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.88, "MEDIAN_SPEND_PER_CUSTOMER": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.924602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "LOCATION_NAME": "Front Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970159, "LONGITUDE": -75.135552, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 254.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 56386.0, "Total Transactions": 1086.0, "Total Customers": 891.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.04, "MEDIAN_SPEND_PER_CUSTOMER": 53.16 }, "geometry": { "type": "Point", "coordinates": [ -75.135552, 39.970159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "LOCATION_NAME": "Standard Tap", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964257, "LONGITUDE": -75.140401, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4894.0, "Total Transactions": 137.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.6, "MEDIAN_SPEND_PER_CUSTOMER": 39.68 }, "geometry": { "type": "Point", "coordinates": [ -75.140401, 39.964257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp5-ct9", "LOCATION_NAME": "Crispy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995185, "LONGITUDE": -75.112579, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010178001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 1255.0, "Total Transactions": 46.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.7, "MEDIAN_SPEND_PER_CUSTOMER": 32.43 }, "geometry": { "type": "Point", "coordinates": [ -75.112579, 39.995185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm4-b8v", "LOCATION_NAME": "Hyon's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935029, "LONGITUDE": -75.179358, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 11.0, "Total Spend": 469.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.1, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179358, 39.935029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pj2-d35", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.010891, "LONGITUDE": -75.107156, "DATE_RANGE_START": 2020, "Total Visits": 290.0, "Total Visitors": 191.0, "POI_CBG": 421010191006.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2278.0, "Total Transactions": 26.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.45, "MEDIAN_SPEND_PER_CUSTOMER": 33.45 }, "geometry": { "type": "Point", "coordinates": [ -75.107156, 40.010891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 69.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 67.0, "Total Spend": 3157.0, "Total Transactions": 83.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.74, "MEDIAN_SPEND_PER_CUSTOMER": 29.54 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-kpv", "LOCATION_NAME": "Sophy Curson", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951064, "LONGITUDE": -75.172395, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 175.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4656.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 153.9, "MEDIAN_SPEND_PER_CUSTOMER": 1172.95 }, "geometry": { "type": "Point", "coordinates": [ -75.172395, 39.951064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "LOCATION_NAME": "Curran's Irish Inn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 177.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 34.0, "Total Spend": 3775.0, "Total Transactions": 67.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.1, "MEDIAN_SPEND_PER_CUSTOMER": 58.65 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-75z", "LOCATION_NAME": "Ninja Bao", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953417, "LONGITUDE": -75.165928, "DATE_RANGE_START": 2020, "Total Visits": 1663.0, "Total Visitors": 1076.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 90.0, "Total Spend": 58.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.165928, 39.953417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 67.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2820.0, "Total Transactions": 109.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.93 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2020, "Total Visits": 288.0, "Total Visitors": 189.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2529.0, "Total Transactions": 486.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.62, "MEDIAN_SPEND_PER_CUSTOMER": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2020, "Total Visits": 272.0, "Total Visitors": 161.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5458.0, "Total Transactions": 721.0, "Total Customers": 328.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.53, "MEDIAN_SPEND_PER_CUSTOMER": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "LOCATION_NAME": "Asia On the Parkway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95574, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2020, "Total Visits": 992.0, "Total Visitors": 532.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 320.0, "Total Spend": 3559.0, "Total Transactions": 97.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.5, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.95574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "LOCATION_NAME": "Sampan", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949535, "LONGITUDE": -75.16221, "DATE_RANGE_START": 2020, "Total Visits": 2209.0, "Total Visitors": 1516.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 10595.0, "Total Transactions": 99.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.64, "MEDIAN_SPEND_PER_CUSTOMER": 86.64 }, "geometry": { "type": "Point", "coordinates": [ -75.16221, 39.949535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-phy-rc5", "LOCATION_NAME": "TABU Hookah Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.02058, "LONGITUDE": -75.133817, "DATE_RANGE_START": 2020, "Total Visits": 288.0, "Total Visitors": 161.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 404.0, "Total Spend": 11360.0, "Total Transactions": 204.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.38, "MEDIAN_SPEND_PER_CUSTOMER": 58.05 }, "geometry": { "type": "Point", "coordinates": [ -75.133817, 40.02058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-v75", "LOCATION_NAME": "Oishii", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948105, "LONGITUDE": -75.143866, "DATE_RANGE_START": 2020, "Total Visits": 852.0, "Total Visitors": 480.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 183.0, "Total Spend": 987.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.82, "MEDIAN_SPEND_PER_CUSTOMER": 35.82 }, "geometry": { "type": "Point", "coordinates": [ -75.143866, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045014, "LONGITUDE": -75.08777, "DATE_RANGE_START": 2020, "Total Visits": 574.0, "Total Visitors": 383.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 11859.0, "Total Transactions": 1606.0, "Total Customers": 713.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 9.49 }, "geometry": { "type": "Point", "coordinates": [ -75.08777, 40.045014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 159.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 16492.0, "Total Transactions": 341.0, "Total Customers": 282.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.89, "MEDIAN_SPEND_PER_CUSTOMER": 32.2 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2020, "Total Visits": 1644.0, "Total Visitors": 911.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 42821.0, "Total Transactions": 5113.0, "Total Customers": 2400.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.95, "MEDIAN_SPEND_PER_CUSTOMER": 9.78 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "LOCATION_NAME": "Four Seasons Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 69.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 545.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 44.36 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pfy-brk", "LOCATION_NAME": "Morrison Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.033993, "LONGITUDE": -75.215651, "DATE_RANGE_START": 2020, "Total Visits": 480.0, "Total Visitors": 268.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 265.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.19, "MEDIAN_SPEND_PER_CUSTOMER": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.215651, 40.033993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "LOCATION_NAME": "Colonial Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 12.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": 631.0, "Total Spend": 2817.0, "Total Transactions": 139.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.88, "MEDIAN_SPEND_PER_CUSTOMER": 23.55 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvw-jgk", "LOCATION_NAME": "Sun Ray Drugs", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957136, "LONGITUDE": -75.22573, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 83.0, "POI_CBG": 421010085006.0, "MEDIAN_DWELL": 125.0, "Total Spend": 1351.0, "Total Transactions": 73.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.2, "MEDIAN_SPEND_PER_CUSTOMER": 7.72 }, "geometry": { "type": "Point", "coordinates": [ -75.22573, 39.957136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 36090.0, "Total Transactions": 528.0, "Total Customers": 455.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.34, "MEDIAN_SPEND_PER_CUSTOMER": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055372, "LONGITUDE": -75.089592, "DATE_RANGE_START": 2020, "Total Visits": 1038.0, "Total Visitors": 689.0, "POI_CBG": 421010307002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 677.0, "Total Transactions": 46.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.62, "MEDIAN_SPEND_PER_CUSTOMER": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.089592, 40.055372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pg2-hdv", "LOCATION_NAME": "Trattoria Moma", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059314, "LONGITUDE": -75.190082, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 20.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1087.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 109.92, "MEDIAN_SPEND_PER_CUSTOMER": 109.92 }, "geometry": { "type": "Point", "coordinates": [ -75.190082, 40.059314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "LOCATION_NAME": "Michaels Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.082446, "LONGITUDE": -75.023342, "DATE_RANGE_START": 2020, "Total Visits": 1356.0, "Total Visitors": 1151.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 32770.0, "Total Transactions": 875.0, "Total Customers": 748.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.88, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023342, 40.082446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.95137, "LONGITUDE": -75.166677, "DATE_RANGE_START": 2020, "Total Visits": 834.0, "Total Visitors": 665.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 14286.0, "Total Transactions": 879.0, "Total Customers": 683.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 16.84 }, "geometry": { "type": "Point", "coordinates": [ -75.166677, 39.95137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2020, "Total Visits": 617.0, "Total Visitors": 441.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8209.0, "Total Transactions": 697.0, "Total Customers": 472.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.34, "MEDIAN_SPEND_PER_CUSTOMER": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947944, "LONGITUDE": -75.171288, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 91.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 239.0, "Total Spend": 2836.0, "Total Transactions": 415.0, "Total Customers": 252.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.13, "MEDIAN_SPEND_PER_CUSTOMER": 6.91 }, "geometry": { "type": "Point", "coordinates": [ -75.171288, 39.947944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "LOCATION_NAME": "Brickbat Books", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": null, "Total Spend": 935.0, "Total Transactions": 30.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.97, "MEDIAN_SPEND_PER_CUSTOMER": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@63s-dvy-xwk", "LOCATION_NAME": "Lil' Pop Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953164, "LONGITUDE": -75.210265, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 2.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": null, "Total Spend": 857.0, "Total Transactions": 105.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.99, "MEDIAN_SPEND_PER_CUSTOMER": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.210265, 39.953164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "LOCATION_NAME": "The Bottle Shop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 4042.0, "Total Transactions": 171.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.24 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm3-xh5", "LOCATION_NAME": "Stephanie's Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.931071, "LONGITUDE": -75.159796, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 7.0, "Total Spend": 132.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.83, "MEDIAN_SPEND_PER_CUSTOMER": 33.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159796, 39.931071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-bp9", "LOCATION_NAME": "Brown Street Coffee & Banhery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970469, "LONGITUDE": -75.179503, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1417.0, "Total Transactions": 125.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.179503, 39.970469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "LOCATION_NAME": "Evan's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2003.0, "Total Transactions": 117.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 21.86 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012072, "LONGITUDE": -75.115243, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 737.0, "Total Transactions": 34.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.115243, 40.012072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "LOCATION_NAME": "The Ranchito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 671.0, "Total Transactions": 36.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-89z", "LOCATION_NAME": "Dasiwa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969169, "LONGITUDE": -75.179702, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 18.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 98.0, "Total Spend": 3745.0, "Total Transactions": 69.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.62, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.969169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "LOCATION_NAME": "Red Poke Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1392.0, "Total Transactions": 73.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 115.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 9.0, "Total Spend": 772.0, "Total Transactions": 52.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.84, "MEDIAN_SPEND_PER_CUSTOMER": 11.16 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2020, "Total Visits": 373.0, "Total Visitors": 310.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 24906.0, "Total Transactions": 2588.0, "Total Customers": 1447.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.21 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94797, "LONGITUDE": -75.154128, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 208.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 59.0, "Total Spend": 2378.0, "Total Transactions": 363.0, "Total Customers": 302.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.81, "MEDIAN_SPEND_PER_CUSTOMER": 5.67 }, "geometry": { "type": "Point", "coordinates": [ -75.154128, 39.94797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8j-bff", "LOCATION_NAME": "Mayfair Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037436, "LONGITUDE": -75.038227, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 38.0, "POI_CBG": 421010330003.0, "MEDIAN_DWELL": 406.0, "Total Spend": 649.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.31, "MEDIAN_SPEND_PER_CUSTOMER": 31.91 }, "geometry": { "type": "Point", "coordinates": [ -75.038227, 40.037436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pg8-nwk", "LOCATION_NAME": "Oxford Food Shop", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.980357, "LONGITUDE": -75.18068, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010149004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3781.0, "Total Transactions": 109.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.06, "MEDIAN_SPEND_PER_CUSTOMER": 39.95 }, "geometry": { "type": "Point", "coordinates": [ -75.18068, 39.980357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "LOCATION_NAME": "Wadsworth Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 50.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4815.0, "Total Transactions": 218.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.62, "MEDIAN_SPEND_PER_CUSTOMER": 27.71 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.045974, "LONGITUDE": -75.070637, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 58.0, "POI_CBG": 421010314015.0, "MEDIAN_DWELL": 14.0, "Total Spend": 11808.0, "Total Transactions": 1278.0, "Total Customers": 730.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.68, "MEDIAN_SPEND_PER_CUSTOMER": 10.95 }, "geometry": { "type": "Point", "coordinates": [ -75.070637, 40.045974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "LOCATION_NAME": "YOLO Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010167024.0, "MEDIAN_DWELL": 321.0, "Total Spend": 1651.0, "Total Transactions": 32.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.5, "MEDIAN_SPEND_PER_CUSTOMER": 83.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7w-wc5", "LOCATION_NAME": "McNally's Tavern Mayfair", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035746, "LONGITUDE": -75.049243, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 16.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 710.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.02, "MEDIAN_SPEND_PER_CUSTOMER": 34.02 }, "geometry": { "type": "Point", "coordinates": [ -75.049243, 40.035746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "LOCATION_NAME": "Jj Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951963, "LONGITUDE": -75.174719, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3205.0, "Total Transactions": 101.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174719, 39.951963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.991664, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 83.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 80.0, "Total Spend": 1493.0, "Total Transactions": 54.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.44, "MEDIAN_SPEND_PER_CUSTOMER": 25.77 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.991664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.95521, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 121.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 19730.0, "Total Transactions": 2134.0, "Total Customers": 1020.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.74, "MEDIAN_SPEND_PER_CUSTOMER": 10.96 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.95521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2020, "Total Visits": 1044.0, "Total Visitors": 752.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10114.0, "Total Transactions": 367.0, "Total Customers": 278.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.03, "MEDIAN_SPEND_PER_CUSTOMER": 19.25 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040962, "LONGITUDE": -75.223848, "DATE_RANGE_START": 2020, "Total Visits": 1133.0, "Total Visitors": 772.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 13954.0, "Total Transactions": 629.0, "Total Customers": 445.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.69, "MEDIAN_SPEND_PER_CUSTOMER": 22.91 }, "geometry": { "type": "Point", "coordinates": [ -75.223848, 40.040962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-vvf", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955606, "LONGITUDE": -75.181993, "DATE_RANGE_START": 2020, "Total Visits": 10482.0, "Total Visitors": 6602.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 259.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.9, "MEDIAN_SPEND_PER_CUSTOMER": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181993, 39.955606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-rkz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914686, "LONGITUDE": -75.220838, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 206.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 305.0, "Total Transactions": 54.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.07, "MEDIAN_SPEND_PER_CUSTOMER": 6.34 }, "geometry": { "type": "Point", "coordinates": [ -75.220838, 39.914686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-j9z", "LOCATION_NAME": "Ferguson", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.903643, "LONGITUDE": -75.151223, "DATE_RANGE_START": 2020, "Total Visits": 1030.0, "Total Visitors": 891.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 864.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.01, "MEDIAN_SPEND_PER_CUSTOMER": 34.86 }, "geometry": { "type": "Point", "coordinates": [ -75.151223, 39.903643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.000779, "LONGITUDE": -75.226852, "DATE_RANGE_START": 2020, "Total Visits": 2906.0, "Total Visitors": 2271.0, "POI_CBG": 421010121002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2987.0, "Total Transactions": 119.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.73, "MEDIAN_SPEND_PER_CUSTOMER": 29.96 }, "geometry": { "type": "Point", "coordinates": [ -75.226852, 40.000779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 54.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 310.0, "Total Spend": 5075.0, "Total Transactions": 147.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.83, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvz-2x5", "LOCATION_NAME": "Daleng Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955999, "LONGITUDE": -75.215415, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1696.0, "Total Transactions": 64.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.91, "MEDIAN_SPEND_PER_CUSTOMER": 24.73 }, "geometry": { "type": "Point", "coordinates": [ -75.215415, 39.955999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-ph8-qmk", "LOCATION_NAME": "Blue Lagoon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977926, "LONGITUDE": -75.26739, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": null, "Total Spend": 161.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.9, "MEDIAN_SPEND_PER_CUSTOMER": 17.01 }, "geometry": { "type": "Point", "coordinates": [ -75.26739, 39.977926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "LOCATION_NAME": "HKS pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 18.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 288.0, "Total Spend": 14434.0, "Total Transactions": 423.0, "Total Customers": 328.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "LOCATION_NAME": "Chubby's Fox Chase Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 69.0, "POI_CBG": 421010341006.0, "MEDIAN_DWELL": 363.0, "Total Spend": 682.0, "Total Transactions": 36.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.23, "MEDIAN_SPEND_PER_CUSTOMER": 16.46 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "LOCATION_NAME": "Sprouts Farmers Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2020, "Total Visits": 2326.0, "Total Visitors": 1276.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 405757.0, "Total Transactions": 8753.0, "Total Customers": 4131.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.33, "MEDIAN_SPEND_PER_CUSTOMER": 59.47 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm3-wff", "LOCATION_NAME": "Passyunk Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.931424, "LONGITUDE": -75.161293, "DATE_RANGE_START": 2020, "Total Visits": 665.0, "Total Visitors": 461.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 26.0, "Total Spend": 224.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.91, "MEDIAN_SPEND_PER_CUSTOMER": 11.93 }, "geometry": { "type": "Point", "coordinates": [ -75.161293, 39.931424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2020, "Total Visits": 359.0, "Total Visitors": 218.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1329.0, "Total Transactions": 161.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.1, "MEDIAN_SPEND_PER_CUSTOMER": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955622, "LONGITUDE": -75.192214, "DATE_RANGE_START": 2020, "Total Visits": 1350.0, "Total Visitors": 822.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 81.0, "Total Spend": 397.0, "Total Transactions": 58.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.38, "MEDIAN_SPEND_PER_CUSTOMER": 5.22 }, "geometry": { "type": "Point", "coordinates": [ -75.192214, 39.955622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2020, "Total Visits": 1116.0, "Total Visitors": 754.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 79158.0, "Total Transactions": 4857.0, "Total Customers": 2114.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.84, "MEDIAN_SPEND_PER_CUSTOMER": 22.88 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "LOCATION_NAME": "Crab Shack", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2020, "Total Visits": 135.0, "Total Visitors": 115.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4594.0, "Total Transactions": 133.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 40.46 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.070297, "LONGITUDE": -75.030572, "DATE_RANGE_START": 2020, "Total Visits": 601.0, "Total Visitors": 381.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4926.0, "Total Transactions": 206.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.95, "MEDIAN_SPEND_PER_CUSTOMER": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -75.030572, 40.070297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phj-rp9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.07278, "LONGITUDE": -75.15833, "DATE_RANGE_START": 2020, "Total Visits": 1806.0, "Total Visitors": 1286.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 7.0, "Total Spend": 668.0, "Total Transactions": 22.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.43 }, "geometry": { "type": "Point", "coordinates": [ -75.15833, 40.07278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045678, "LONGITUDE": -75.11816, "DATE_RANGE_START": 2020, "Total Visits": 212.0, "Total Visitors": 157.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1864.0, "Total Transactions": 216.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.11816, 40.045678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-yd9", "LOCATION_NAME": "Somerton Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.129213, "LONGITUDE": -75.014014, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 413.0, "POI_CBG": 421010365013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 392.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.55, "MEDIAN_SPEND_PER_CUSTOMER": 47.62 }, "geometry": { "type": "Point", "coordinates": [ -75.014014, 40.129213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-sqz", "LOCATION_NAME": "Holts Cigar Company", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.949481, "LONGITUDE": -75.167107, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 208.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2840.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 131.35, "MEDIAN_SPEND_PER_CUSTOMER": 137.69 }, "geometry": { "type": "Point", "coordinates": [ -75.167107, 39.949481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8b-cbk", "LOCATION_NAME": "Smoker's Palace", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.017474, "LONGITUDE": -75.051228, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 79.0, "POI_CBG": 421010323001.0, "MEDIAN_DWELL": null, "Total Spend": 4993.0, "Total Transactions": 177.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.33, "MEDIAN_SPEND_PER_CUSTOMER": 28.74 }, "geometry": { "type": "Point", "coordinates": [ -75.051228, 40.017474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm6-389", "LOCATION_NAME": "Best Buy", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.915668, "LONGITUDE": -75.138943, "DATE_RANGE_START": 2020, "Total Visits": 1062.0, "Total Visitors": 879.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 16247.0, "Total Transactions": 81.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.38, "MEDIAN_SPEND_PER_CUSTOMER": 120.08 }, "geometry": { "type": "Point", "coordinates": [ -75.138943, 39.915668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph8-qcq", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.978749, "LONGITUDE": -75.270239, "DATE_RANGE_START": 2020, "Total Visits": 901.0, "Total Visitors": 615.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 161.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.39, "MEDIAN_SPEND_PER_CUSTOMER": 18.39 }, "geometry": { "type": "Point", "coordinates": [ -75.270239, 39.978749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-php-6tv", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.075237, "LONGITUDE": -75.156957, "DATE_RANGE_START": 2020, "Total Visits": 14119.0, "Total Visitors": 7511.0, "POI_CBG": 420912025001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 45.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.46, "MEDIAN_SPEND_PER_CUSTOMER": 11.46 }, "geometry": { "type": "Point", "coordinates": [ -75.156957, 40.075237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmd-zfz", "LOCATION_NAME": "Springfield Beer Distributor", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.939186, "LONGITUDE": -75.180299, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 286.0, "POI_CBG": 421010020001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13765.0, "Total Transactions": 252.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.09, "MEDIAN_SPEND_PER_CUSTOMER": 46.33 }, "geometry": { "type": "Point", "coordinates": [ -75.180299, 39.939186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp5-qxq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.997222, "LONGITUDE": -75.123675, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 171.0, "POI_CBG": 421010177025.0, "MEDIAN_DWELL": 9.0, "Total Spend": 590.0, "Total Transactions": 50.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.31, "MEDIAN_SPEND_PER_CUSTOMER": 46.46 }, "geometry": { "type": "Point", "coordinates": [ -75.123675, 39.997222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 191.0, "POI_CBG": 421010171003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 930.0, "Total Transactions": 42.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.42, "MEDIAN_SPEND_PER_CUSTOMER": 26.34 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6c5", "LOCATION_NAME": "Jefferson Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949825, "LONGITUDE": -75.158415, "DATE_RANGE_START": 2020, "Total Visits": 12836.0, "Total Visitors": 4823.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 382.0, "Total Spend": 4228.0, "Total Transactions": 157.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.66, "MEDIAN_SPEND_PER_CUSTOMER": 12.31 }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.949825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2020, "Total Visits": 635.0, "Total Visitors": 451.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3036.0, "Total Transactions": 145.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.029566, "LONGITUDE": -75.100398, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 187.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4957.0, "Total Transactions": 113.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.64, "MEDIAN_SPEND_PER_CUSTOMER": 43.69 }, "geometry": { "type": "Point", "coordinates": [ -75.100398, 40.029566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.028739, "LONGITUDE": -75.099173, "DATE_RANGE_START": 2020, "Total Visits": 1882.0, "Total Visitors": 1602.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 16461.0, "Total Transactions": 691.0, "Total Customers": 586.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.39, "MEDIAN_SPEND_PER_CUSTOMER": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.099173, 40.028739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-qs5", "LOCATION_NAME": "Flying Fish Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.91592, "LONGITUDE": -75.163019, "DATE_RANGE_START": 2020, "Total Visits": 534.0, "Total Visitors": 177.0, "POI_CBG": 421010041023.0, "MEDIAN_DWELL": 670.0, "Total Spend": 1419.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.5, "MEDIAN_SPEND_PER_CUSTOMER": 45.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163019, 39.91592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 67.0, "POI_CBG": 421010096001.0, "MEDIAN_DWELL": 432.0, "Total Spend": 640.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "LOCATION_NAME": "Calvin Klein", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 119.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10137.0, "Total Transactions": 175.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.06, "MEDIAN_SPEND_PER_CUSTOMER": 46.25 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.992425, "LONGITUDE": -75.101329, "DATE_RANGE_START": 2020, "Total Visits": 1046.0, "Total Visitors": 863.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 7242.0, "Total Transactions": 155.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.53, "MEDIAN_SPEND_PER_CUSTOMER": 42.33 }, "geometry": { "type": "Point", "coordinates": [ -75.101329, 39.992425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p9w-4sq", "LOCATION_NAME": "Victoria Flower", "TOP_CATEGORY": "Florists", "LATITUDE": 40.110694, "LONGITUDE": -75.023832, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 179.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 565.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.6, "MEDIAN_SPEND_PER_CUSTOMER": 86.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023832, 40.110694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-835", "LOCATION_NAME": "Little Thai Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953099, "LONGITUDE": -75.159123, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 6619.0, "Total Transactions": 379.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159123, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.099643, "LONGITUDE": -75.010101, "DATE_RANGE_START": 2020, "Total Visits": 568.0, "Total Visitors": 492.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5147.0, "Total Transactions": 177.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.84, "MEDIAN_SPEND_PER_CUSTOMER": 29.43 }, "geometry": { "type": "Point", "coordinates": [ -75.010101, 40.099643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010746, "LONGITUDE": -75.175382, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 171.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1205.0, "Total Transactions": 75.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.05, "MEDIAN_SPEND_PER_CUSTOMER": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.175382, 40.010746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.913456, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 46.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2992.0, "Total Transactions": 91.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.46, "MEDIAN_SPEND_PER_CUSTOMER": 42.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-kj9", "LOCATION_NAME": "Sassafras Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953897, "LONGITUDE": -75.14465, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 85.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 12458.0, "Total Transactions": 709.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.29, "MEDIAN_SPEND_PER_CUSTOMER": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -75.14465, 39.953897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "LOCATION_NAME": "Trader Joe's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954199, "LONGITUDE": -75.176054, "DATE_RANGE_START": 2020, "Total Visits": 1171.0, "Total Visitors": 772.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 727508.0, "Total Transactions": 11739.0, "Total Customers": 6644.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.81, "MEDIAN_SPEND_PER_CUSTOMER": 84.34 }, "geometry": { "type": "Point", "coordinates": [ -75.176054, 39.954199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnx-9s5", "LOCATION_NAME": "Interstate Drafthouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971824, "LONGITUDE": -75.128675, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 764.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128675, 39.971824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "LOCATION_NAME": "Arctic Scoop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3231.0, "Total Transactions": 228.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-syv", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981631, "LONGITUDE": -75.144038, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 18.0, "POI_CBG": 421010156002.0, "MEDIAN_DWELL": 128.0, "Total Spend": 406.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.8, "MEDIAN_SPEND_PER_CUSTOMER": 21.65 }, "geometry": { "type": "Point", "coordinates": [ -75.144038, 39.981631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pfy-f9f", "LOCATION_NAME": "Dream House Asian Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034459, "LONGITUDE": -75.215866, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 74.0, "Total Spend": 158.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.81, "MEDIAN_SPEND_PER_CUSTOMER": 39.81 }, "geometry": { "type": "Point", "coordinates": [ -75.215866, 40.034459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@63s-dvy-8y9", "LOCATION_NAME": "48th Street Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953128, "LONGITUDE": -75.218509, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 40.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 23.0, "Total Spend": 409.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.44, "MEDIAN_SPEND_PER_CUSTOMER": 46.44 }, "geometry": { "type": "Point", "coordinates": [ -75.218509, 39.953128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-z75", "LOCATION_NAME": "Johnstone Supply", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.960021, "LONGITUDE": -75.149706, "DATE_RANGE_START": 2020, "Total Visits": 248.0, "Total Visitors": 177.0, "POI_CBG": 421010376001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1445.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.49, "MEDIAN_SPEND_PER_CUSTOMER": 364.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149706, 39.960021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-wx5", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.903669, "LONGITUDE": -75.238891, "DATE_RANGE_START": 2020, "Total Visits": 415.0, "Total Visitors": 292.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2764.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.32, "MEDIAN_SPEND_PER_CUSTOMER": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.238891, 39.903669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "LOCATION_NAME": "John's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 52.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 389.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.11, "MEDIAN_SPEND_PER_CUSTOMER": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2020, "Total Visits": 975.0, "Total Visitors": 685.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 32851.0, "Total Transactions": 1574.0, "Total Customers": 1028.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.05, "MEDIAN_SPEND_PER_CUSTOMER": 26.67 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dvw-mx5", "LOCATION_NAME": "Sunshine Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.960055, "LONGITUDE": -75.226746, "DATE_RANGE_START": 2020, "Total Visits": 12743.0, "Total Visitors": 5913.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 16.0, "Total Spend": 80.0, "Total Transactions": 10.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.66, "MEDIAN_SPEND_PER_CUSTOMER": 20.09 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.960055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgg-9xq", "LOCATION_NAME": "Boss Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.003922, "LONGITUDE": -75.168399, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 141.0, "POI_CBG": 421010171003.0, "MEDIAN_DWELL": 67.0, "Total Spend": 8681.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 404.72, "MEDIAN_SPEND_PER_CUSTOMER": 712.26 }, "geometry": { "type": "Point", "coordinates": [ -75.168399, 40.003922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-94v", "LOCATION_NAME": "Journeys", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 407.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.0, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-94v", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952447, "LONGITUDE": -75.157077, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 52.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.13, "MEDIAN_SPEND_PER_CUSTOMER": 13.13 }, "geometry": { "type": "Point", "coordinates": [ -75.157077, 39.952447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2020, "Total Visits": 748.0, "Total Visitors": 538.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3290.0, "Total Transactions": 216.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 17.33 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.962319, "LONGITUDE": -75.162376, "DATE_RANGE_START": 2020, "Total Visits": 324.0, "Total Visitors": 181.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 175.0, "Total Spend": 9251.0, "Total Transactions": 566.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.04, "MEDIAN_SPEND_PER_CUSTOMER": 19.16 }, "geometry": { "type": "Point", "coordinates": [ -75.162376, 39.962319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p82-4jv", "LOCATION_NAME": "Queen Nails Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046418, "LONGITUDE": -75.098417, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 165.0, "POI_CBG": 421010305011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1531.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.85, "MEDIAN_SPEND_PER_CUSTOMER": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.098417, 40.046418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rx5", "LOCATION_NAME": "Hair Hair", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978114, "LONGITUDE": -75.271405, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 125.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 21.0, "Total Spend": 20752.0, "Total Transactions": 566.0, "Total Customers": 472.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.03, "MEDIAN_SPEND_PER_CUSTOMER": 34.24 }, "geometry": { "type": "Point", "coordinates": [ -75.271405, 39.978114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "LOCATION_NAME": "Walnut Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957098, "LONGITUDE": -75.224484, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 123.0, "POI_CBG": 421010085002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10924.0, "Total Transactions": 248.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.22, "MEDIAN_SPEND_PER_CUSTOMER": 31.91 }, "geometry": { "type": "Point", "coordinates": [ -75.224484, 39.957098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2020, "Total Visits": 1431.0, "Total Visitors": 838.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 26.0, "Total Spend": 86420.0, "Total Transactions": 1626.0, "Total Customers": 822.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.72, "MEDIAN_SPEND_PER_CUSTOMER": 65.96 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmf-sqz", "LOCATION_NAME": "Bauman Rare Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.949546, "LONGITUDE": -75.168146, "DATE_RANGE_START": 2020, "Total Visits": 617.0, "Total Visitors": 393.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 31.0, "Total Spend": 38607.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 6900.0, "MEDIAN_SPEND_PER_CUSTOMER": 9725.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168146, 39.949546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.084661, "LONGITUDE": -74.961825, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 413.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 5789.0, "Total Transactions": 103.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.48, "MEDIAN_SPEND_PER_CUSTOMER": 50.48 }, "geometry": { "type": "Point", "coordinates": [ -74.961825, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 220.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 934.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.21, "MEDIAN_SPEND_PER_CUSTOMER": 15.61 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.074794, "LONGITUDE": -75.032684, "DATE_RANGE_START": 2020, "Total Visits": 935.0, "Total Visitors": 719.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4685.0, "Total Transactions": 480.0, "Total Customers": 322.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.82 }, "geometry": { "type": "Point", "coordinates": [ -75.032684, 40.074794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgh-cwk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.003103, "LONGITUDE": -75.162138, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 135.0, "POI_CBG": 421010202001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 775.0, "Total Transactions": 56.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.23, "MEDIAN_SPEND_PER_CUSTOMER": 7.29 }, "geometry": { "type": "Point", "coordinates": [ -75.162138, 40.003103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040308, "LONGITUDE": -75.143944, "DATE_RANGE_START": 2020, "Total Visits": 756.0, "Total Visitors": 459.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 3797.0, "Total Transactions": 185.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.4, "MEDIAN_SPEND_PER_CUSTOMER": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -75.143944, 40.040308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947336, "LONGITUDE": -75.228833, "DATE_RANGE_START": 2020, "Total Visits": 665.0, "Total Visitors": 486.0, "POI_CBG": 421010073004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5950.0, "Total Transactions": 181.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.97, "MEDIAN_SPEND_PER_CUSTOMER": 20.23 }, "geometry": { "type": "Point", "coordinates": [ -75.228833, 39.947336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "LOCATION_NAME": "Warwick Hotel Rittenhouse Square", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949172, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2020, "Total Visits": 1159.0, "Total Visitors": 740.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 234.0, "Total Spend": 8454.0, "Total Transactions": 46.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 173.22, "MEDIAN_SPEND_PER_CUSTOMER": 170.52 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.949172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "LOCATION_NAME": "Spring Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 81.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 151.0, "Total Spend": 2933.0, "Total Transactions": 145.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-h89", "LOCATION_NAME": "Gyu-Kaku", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960773, "LONGITUDE": -75.170117, "DATE_RANGE_START": 2020, "Total Visits": 411.0, "Total Visitors": 169.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 639.0, "Total Spend": 274.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.11, "MEDIAN_SPEND_PER_CUSTOMER": 30.11 }, "geometry": { "type": "Point", "coordinates": [ -75.170117, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-jjv", "LOCATION_NAME": "Copabanana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951555, "LONGITUDE": -75.203266, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 103.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2188.0, "Total Transactions": 46.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.0, "MEDIAN_SPEND_PER_CUSTOMER": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203266, 39.951555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-68v", "LOCATION_NAME": "J'aime French Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948054, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 95.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 546.0, "Total Spend": 345.0, "Total Transactions": 26.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.948054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "LOCATION_NAME": "Ruckus Gallery", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 183.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 7708.0, "Total Transactions": 141.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 61.44 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-pmd-skf", "LOCATION_NAME": "Social House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944966, "LONGITUDE": -75.177113, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 58.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 795.0, "Total Transactions": 111.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.43, "MEDIAN_SPEND_PER_CUSTOMER": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.177113, 39.944966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-gtv", "LOCATION_NAME": "Greenstreet Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946471, "LONGITUDE": -75.159628, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 87.0, "Total Spend": 253.0, "Total Transactions": 26.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 5.75 }, "geometry": { "type": "Point", "coordinates": [ -75.159628, 39.946471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050364, "LONGITUDE": -75.094508, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 26.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": 41.0, "Total Spend": 1791.0, "Total Transactions": 135.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.23, "MEDIAN_SPEND_PER_CUSTOMER": 8.52 }, "geometry": { "type": "Point", "coordinates": [ -75.094508, 40.050364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p8j-cqz", "LOCATION_NAME": "Infinity Jewelers", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.03712, "LONGITUDE": -75.041991, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 91.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041991, 40.03712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "LOCATION_NAME": "The Tasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7335.0, "Total Transactions": 222.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.28, "MEDIAN_SPEND_PER_CUSTOMER": 39.39 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7v-gkz", "LOCATION_NAME": "Villagio Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.053089, "LONGITUDE": -75.068847, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 46.0, "POI_CBG": 421010335003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2223.0, "Total Transactions": 101.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.06, "MEDIAN_SPEND_PER_CUSTOMER": 27.37 }, "geometry": { "type": "Point", "coordinates": [ -75.068847, 40.053089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-rp9", "LOCATION_NAME": "Mattress Firm", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.917324, "LONGITUDE": -75.186656, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 99.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1286.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 324.0, "MEDIAN_SPEND_PER_CUSTOMER": 324.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186656, 39.917324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.991689, "LONGITUDE": -75.090963, "DATE_RANGE_START": 2020, "Total Visits": 5308.0, "Total Visitors": 3480.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 113437.0, "Total Transactions": 1256.0, "Total Customers": 701.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.8, "MEDIAN_SPEND_PER_CUSTOMER": 66.19 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 39.991689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-sbk", "LOCATION_NAME": "Spruce Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947568, "LONGITUDE": -75.167428, "DATE_RANGE_START": 2020, "Total Visits": 260.0, "Total Visitors": 153.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 468.0, "Total Spend": 23853.0, "Total Transactions": 850.0, "Total Customers": 407.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167428, 39.947568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2020, "Total Visits": 842.0, "Total Visitors": 540.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 319.0, "Total Transactions": 28.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.43, "MEDIAN_SPEND_PER_CUSTOMER": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "LOCATION_NAME": "Theory", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949699, "LONGITUDE": -75.168323, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 103.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 114.0, "Total Spend": 4943.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 1017.0, "MEDIAN_SPEND_PER_CUSTOMER": 1017.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168323, 39.949699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "LOCATION_NAME": "Finish Line", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086808, "LONGITUDE": -74.961767, "DATE_RANGE_START": 2020, "Total Visits": 230.0, "Total Visitors": 195.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1143.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 150.0, "MEDIAN_SPEND_PER_CUSTOMER": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961767, 40.086808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9s-92k", "LOCATION_NAME": "House Of Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.114993, "LONGITUDE": -74.997145, "DATE_RANGE_START": 2020, "Total Visits": 258.0, "Total Visitors": 105.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 263.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.29, "MEDIAN_SPEND_PER_CUSTOMER": 66.29 }, "geometry": { "type": "Point", "coordinates": [ -74.997145, 40.114993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.007189, "LONGITUDE": -75.137271, "DATE_RANGE_START": 2020, "Total Visits": 1596.0, "Total Visitors": 1114.0, "POI_CBG": 421010199001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 642.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.007189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.021226, "LONGITUDE": -75.14987, "DATE_RANGE_START": 2020, "Total Visits": 975.0, "Total Visitors": 584.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 439.0, "Total Transactions": 40.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.4, "MEDIAN_SPEND_PER_CUSTOMER": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.14987, 40.021226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.907673, "LONGITUDE": -75.189086, "DATE_RANGE_START": 2020, "Total Visits": 3162.0, "Total Visitors": 1981.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2176.0, "Total Transactions": 119.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.13, "MEDIAN_SPEND_PER_CUSTOMER": 22.11 }, "geometry": { "type": "Point", "coordinates": [ -75.189086, 39.907673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvw-wzf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.958527, "LONGITUDE": -75.235976, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 197.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2047.0, "Total Transactions": 238.0, "Total Customers": 121.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.44, "MEDIAN_SPEND_PER_CUSTOMER": 9.33 }, "geometry": { "type": "Point", "coordinates": [ -75.235976, 39.958527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "LOCATION_NAME": "Circle Thrift", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.980269, "LONGITUDE": -75.128616, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 143.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2023.0, "Total Transactions": 73.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.4, "MEDIAN_SPEND_PER_CUSTOMER": 21.04 }, "geometry": { "type": "Point", "coordinates": [ -75.128616, 39.980269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-ph6-gkz", "LOCATION_NAME": "Habeeb's Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.98437, "LONGITUDE": -75.230985, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 325.0, "Total Transactions": 34.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.230985, 39.98437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-php-s3q", "LOCATION_NAME": "Tejade Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.060966, "LONGITUDE": -75.161233, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010264004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1584.0, "Total Transactions": 139.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161233, 40.060966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "LOCATION_NAME": "Cafe La Maude", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010367002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 20222.0, "Total Transactions": 417.0, "Total Customers": 357.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.14, "MEDIAN_SPEND_PER_CUSTOMER": 54.86 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2020, "Total Visits": 1735.0, "Total Visitors": 1008.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4546.0, "Total Transactions": 111.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.97, "MEDIAN_SPEND_PER_CUSTOMER": 32.88 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgm-3qz", "LOCATION_NAME": "LeBus East Falls", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00891, "LONGITUDE": -75.193713, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 193.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 41.0, "Total Spend": 927.0, "Total Transactions": 38.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.193713, 40.00891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 139.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 202.0, "Total Spend": 324.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "LOCATION_NAME": "Crazy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 101.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 100.0, "Total Spend": 2218.0, "Total Transactions": 77.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 27.81 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2020, "Total Visits": 496.0, "Total Visitors": 433.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 28714.0, "Total Transactions": 524.0, "Total Customers": 462.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.96, "MEDIAN_SPEND_PER_CUSTOMER": 46.44 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-djv", "LOCATION_NAME": "Pastificio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911498, "LONGITUDE": -75.174639, "DATE_RANGE_START": 2020, "Total Visits": 574.0, "Total Visitors": 443.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 7686.0, "Total Transactions": 296.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.36, "MEDIAN_SPEND_PER_CUSTOMER": 22.85 }, "geometry": { "type": "Point", "coordinates": [ -75.174639, 39.911498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2020, "Total Visits": 2001.0, "Total Visitors": 1358.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 4243.0, "Total Transactions": 200.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.39, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-b49", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030422, "LONGITUDE": -75.153419, "DATE_RANGE_START": 2020, "Total Visits": 1068.0, "Total Visitors": 736.0, "POI_CBG": 421010280003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 792.0, "Total Transactions": 42.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.49, "MEDIAN_SPEND_PER_CUSTOMER": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153419, 40.030422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2020, "Total Visits": 5635.0, "Total Visitors": 3148.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 6023.0, "Total Transactions": 153.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.45, "MEDIAN_SPEND_PER_CUSTOMER": 33.63 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008821, "LONGITUDE": -75.175673, "DATE_RANGE_START": 2020, "Total Visits": 506.0, "Total Visitors": 413.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 847.0, "Total Transactions": 46.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.79, "MEDIAN_SPEND_PER_CUSTOMER": 16.79 }, "geometry": { "type": "Point", "coordinates": [ -75.175673, 40.008821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pnt-3wk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974268, "LONGITUDE": -75.119829, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 175.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2874.0, "Total Transactions": 127.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.81, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.119829, 39.974268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 50.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 8260.0, "Total Transactions": 574.0, "Total Customers": 451.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.34, "MEDIAN_SPEND_PER_CUSTOMER": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfz-bzf", "LOCATION_NAME": "Chabaa Thai Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025611, "LONGITUDE": -75.223488, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 56.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2688.0, "Total Transactions": 66.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.72, "MEDIAN_SPEND_PER_CUSTOMER": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.223488, 40.025611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfx-kxq", "LOCATION_NAME": "Funny Monk Emporium", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.026687, "LONGITUDE": -75.224098, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 60.0, "POI_CBG": 421010214003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 14689.0, "Total Transactions": 405.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.65, "MEDIAN_SPEND_PER_CUSTOMER": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224098, 40.026687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj7-k75", "LOCATION_NAME": "Got The Look", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.03117, "LONGITUDE": -75.103826, "DATE_RANGE_START": 2020, "Total Visits": 2878.0, "Total Visitors": 2189.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4109.0, "Total Transactions": 83.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 33.98 }, "geometry": { "type": "Point", "coordinates": [ -75.103826, 40.03117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2020, "Total Visits": 210.0, "Total Visitors": 121.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 292.0, "Total Spend": 147.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.68, "MEDIAN_SPEND_PER_CUSTOMER": 21.68 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087324, "LONGITUDE": -75.039996, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 93.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 818.0, "Total Transactions": 119.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.74, "MEDIAN_SPEND_PER_CUSTOMER": 8.08 }, "geometry": { "type": "Point", "coordinates": [ -75.039996, 40.087324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-py9", "LOCATION_NAME": "Colomy Paint & Decorating Llc", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.969376, "LONGITUDE": -75.140197, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 121.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 580.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.43, "MEDIAN_SPEND_PER_CUSTOMER": 46.43 }, "geometry": { "type": "Point", "coordinates": [ -75.140197, 39.969376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.037805, "LONGITUDE": -75.117796, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 93.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 177.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.6, "MEDIAN_SPEND_PER_CUSTOMER": 44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117796, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.008742, "LONGITUDE": -75.17653, "DATE_RANGE_START": 2020, "Total Visits": 318.0, "Total Visitors": 278.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 11044.0, "Total Transactions": 234.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.3, "MEDIAN_SPEND_PER_CUSTOMER": 40.97 }, "geometry": { "type": "Point", "coordinates": [ -75.17653, 40.008742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-j7q", "LOCATION_NAME": "Smokin Stogies N Stuff", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.951529, "LONGITUDE": -75.170525, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 95.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10643.0, "Total Transactions": 329.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.170525, 39.951529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmf-jgk", "LOCATION_NAME": "Dizengoff", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950806, "LONGITUDE": -75.168528, "DATE_RANGE_START": 2020, "Total Visits": 331.0, "Total Visitors": 272.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 213.0, "Total Spend": 924.0, "Total Transactions": 46.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.88, "MEDIAN_SPEND_PER_CUSTOMER": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.168528, 39.950806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2020, "Total Visits": 298.0, "Total Visitors": 218.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 155.0, "Total Spend": 14308.0, "Total Transactions": 1157.0, "Total Customers": 730.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.44, "MEDIAN_SPEND_PER_CUSTOMER": 14.62 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "LOCATION_NAME": "New Wave Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 26.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5719.0, "Total Transactions": 141.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.25, "MEDIAN_SPEND_PER_CUSTOMER": 33.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "LOCATION_NAME": "Atomic City Comics", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.942034, "LONGITUDE": -75.153458, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 44.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4132.0, "Total Transactions": 46.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.153458, 39.942034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "LOCATION_NAME": "Champ's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 60.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 9562.0, "Total Transactions": 482.0, "Total Customers": 349.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.09, "MEDIAN_SPEND_PER_CUSTOMER": 23.08 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94013, "LONGITUDE": -75.165831, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 62.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3824.0, "Total Transactions": 540.0, "Total Customers": 326.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 7.81 }, "geometry": { "type": "Point", "coordinates": [ -75.165831, 39.94013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-btv", "LOCATION_NAME": "Kraftwork", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971499, "LONGITUDE": -75.127358, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": null, "Total Spend": 5040.0, "Total Transactions": 113.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.0, "MEDIAN_SPEND_PER_CUSTOMER": 51.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127358, 39.971499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-6ff", "LOCATION_NAME": "Lighthouse Thrift Shop", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.041347, "LONGITUDE": -75.107276, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": null, "Total Spend": 591.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.13, "MEDIAN_SPEND_PER_CUSTOMER": 31.74 }, "geometry": { "type": "Point", "coordinates": [ -75.107276, 40.041347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-4d9", "LOCATION_NAME": "Americas Quality Tire", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.020793, "LONGITUDE": -75.063071, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010319003.0, "MEDIAN_DWELL": null, "Total Spend": 6724.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.0, "MEDIAN_SPEND_PER_CUSTOMER": 112.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063071, 40.020793 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj3-b8v", "LOCATION_NAME": "The Stand", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01377, "LONGITUDE": -75.15794, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010202005.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1715.0, "Total Transactions": 60.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.63, "MEDIAN_SPEND_PER_CUSTOMER": 35.88 }, "geometry": { "type": "Point", "coordinates": [ -75.15794, 40.01377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-d35", "LOCATION_NAME": "Saqqara Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943438, "LONGITUDE": -75.165102, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 14.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 118.0, "Total Spend": 1075.0, "Total Transactions": 26.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165102, 39.943438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pfy-b6k", "LOCATION_NAME": "Barry's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035119, "LONGITUDE": -75.217909, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 30.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": 103.0, "Total Spend": 1729.0, "Total Transactions": 77.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.49, "MEDIAN_SPEND_PER_CUSTOMER": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.217909, 40.035119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-n5z", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954145, "LONGITUDE": -75.201008, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 71.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 221.0, "Total Spend": 2945.0, "Total Transactions": 147.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.39, "MEDIAN_SPEND_PER_CUSTOMER": 18.51 }, "geometry": { "type": "Point", "coordinates": [ -75.201008, 39.954145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2020, "Total Visits": 264.0, "Total Visitors": 165.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5587.0, "Total Transactions": 909.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.96, "MEDIAN_SPEND_PER_CUSTOMER": 7.81 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-x89", "LOCATION_NAME": "Kim's Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.029599, "LONGITUDE": -75.146407, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 107.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1079.0, "Total Transactions": 54.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146407, 40.029599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "LOCATION_NAME": "Monde Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.952049, "LONGITUDE": -75.175756, "DATE_RANGE_START": 2020, "Total Visits": 407.0, "Total Visitors": 286.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 18603.0, "Total Transactions": 1147.0, "Total Customers": 546.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.66, "MEDIAN_SPEND_PER_CUSTOMER": 18.58 }, "geometry": { "type": "Point", "coordinates": [ -75.175756, 39.952049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-sbk", "LOCATION_NAME": "The Igloo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945135, "LONGITUDE": -75.179463, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2576.0, "Total Transactions": 264.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.27, "MEDIAN_SPEND_PER_CUSTOMER": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.179463, 39.945135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-psq", "LOCATION_NAME": "Pho House Thang Long", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969594, "LONGITUDE": -75.138911, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 40.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 77.0, "Total Spend": 761.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138911, 39.969594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 42.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 71.0, "Total Spend": 1496.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.72, "MEDIAN_SPEND_PER_CUSTOMER": 43.99 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "LOCATION_NAME": "Prince Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 50.0, "POI_CBG": 421010288002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 13207.0, "Total Transactions": 498.0, "Total Customers": 314.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.93, "MEDIAN_SPEND_PER_CUSTOMER": 29.65 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2020, "Total Visits": 5391.0, "Total Visitors": 3531.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 256194.0, "Total Transactions": 2991.0, "Total Customers": 2003.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.97, "MEDIAN_SPEND_PER_CUSTOMER": 46.45 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7w-pvz", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.044968, "LONGITUDE": -75.054721, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 260.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1875.0, "Total Transactions": 113.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.054721, 40.044968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.954256, "LONGITUDE": -75.167978, "DATE_RANGE_START": 2020, "Total Visits": 2549.0, "Total Visitors": 1453.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 252.0, "Total Spend": 30.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.44, "MEDIAN_SPEND_PER_CUSTOMER": 7.44 }, "geometry": { "type": "Point", "coordinates": [ -75.167978, 39.954256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2020, "Total Visits": 750.0, "Total Visitors": 502.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 334.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "LOCATION_NAME": "R.E. Michel", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 105.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 909.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.18, "MEDIAN_SPEND_PER_CUSTOMER": 166.36 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2020, "Total Visits": 824.0, "Total Visitors": 685.0, "POI_CBG": 421010314021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10966.0, "Total Transactions": 228.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.81, "MEDIAN_SPEND_PER_CUSTOMER": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pnx-6rk", "LOCATION_NAME": "Spring Garden Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.960581, "LONGITUDE": -75.14553, "DATE_RANGE_START": 2020, "Total Visits": 464.0, "Total Visitors": 361.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1137.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.19, "MEDIAN_SPEND_PER_CUSTOMER": 30.19 }, "geometry": { "type": "Point", "coordinates": [ -75.14553, 39.960581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "LOCATION_NAME": "Golden Nugget Jewelers III", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2020, "Total Visits": 1677.0, "Total Visitors": 1268.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 89773.0, "Total Transactions": 67.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 1000.0, "MEDIAN_SPEND_PER_CUSTOMER": 1050.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.101484, "LONGITUDE": -75.030277, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 181.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1614.0, "Total Transactions": 20.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.05, "MEDIAN_SPEND_PER_CUSTOMER": 124.72 }, "geometry": { "type": "Point", "coordinates": [ -75.030277, 40.101484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "LOCATION_NAME": "Old Nelson Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951893, "LONGITUDE": -75.173688, "DATE_RANGE_START": 2020, "Total Visits": 320.0, "Total Visitors": 175.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 274.0, "Total Spend": 26496.0, "Total Transactions": 2114.0, "Total Customers": 1062.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.94, "MEDIAN_SPEND_PER_CUSTOMER": 13.29 }, "geometry": { "type": "Point", "coordinates": [ -75.173688, 39.951893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "LOCATION_NAME": "Guzman Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 75.0, "POI_CBG": 421010177023.0, "MEDIAN_DWELL": 9.0, "Total Spend": 198.0, "Total Transactions": 18.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.34, "MEDIAN_SPEND_PER_CUSTOMER": 19.45 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvw-cdv", "LOCATION_NAME": "Monica Restaurat", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965596, "LONGITUDE": -75.230016, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 4.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 638.0, "Total Spend": 69.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230016, 39.965596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-2hq", "LOCATION_NAME": "Las Cazuelas Restaurant BYOB", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969878, "LONGITUDE": -75.143998, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5354.0, "Total Transactions": 99.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.39, "MEDIAN_SPEND_PER_CUSTOMER": 50.44 }, "geometry": { "type": "Point", "coordinates": [ -75.143998, 39.969878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-whq", "LOCATION_NAME": "Pho Xe Lua Viet Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955481, "LONGITUDE": -75.154675, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 28.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 606.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.87, "MEDIAN_SPEND_PER_CUSTOMER": 25.87 }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "LOCATION_NAME": "Pho Don", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 80.0, "Total Spend": 363.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pg2-zj9", "LOCATION_NAME": "Panda Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054638, "LONGITUDE": -75.193918, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 38.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1190.0, "Total Transactions": 66.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.2, "MEDIAN_SPEND_PER_CUSTOMER": 15.87 }, "geometry": { "type": "Point", "coordinates": [ -75.193918, 40.054638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p74-wzf", "LOCATION_NAME": "Vista Auto Group", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.038451, "LONGITUDE": -75.03703, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 54.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 273.0, "Total Spend": 7249.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 1826.0, "MEDIAN_SPEND_PER_CUSTOMER": 1826.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03703, 40.038451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "LOCATION_NAME": "Wooden Shoe Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.942084, "LONGITUDE": -75.154166, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 511.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.62 }, "geometry": { "type": "Point", "coordinates": [ -75.154166, 39.942084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg9-ty9", "LOCATION_NAME": "Brandywine Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962927, "LONGITUDE": -75.163263, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 112.0, "Total Spend": 130.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.09, "MEDIAN_SPEND_PER_CUSTOMER": 27.09 }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.962927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "LOCATION_NAME": "A& A Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 34.0, "POI_CBG": 421010093001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1392.0, "Total Transactions": 111.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.43, "MEDIAN_SPEND_PER_CUSTOMER": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm3-syv", "LOCATION_NAME": "Bing Bing Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928965, "LONGITUDE": -75.164747, "DATE_RANGE_START": 2020, "Total Visits": 87.0, "Total Visitors": 77.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 5486.0, "Total Transactions": 75.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.96, "MEDIAN_SPEND_PER_CUSTOMER": 70.36 }, "geometry": { "type": "Point", "coordinates": [ -75.164747, 39.928965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfw-g6k", "LOCATION_NAME": "Apollo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012812, "LONGITUDE": -75.190541, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010207003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1047.0, "Total Transactions": 44.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.38, "MEDIAN_SPEND_PER_CUSTOMER": 17.34 }, "geometry": { "type": "Point", "coordinates": [ -75.190541, 40.012812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-pn5", "LOCATION_NAME": "Luna Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976619, "LONGITUDE": -75.140834, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010156001.0, "MEDIAN_DWELL": null, "Total Spend": 131.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.94, "MEDIAN_SPEND_PER_CUSTOMER": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.140834, 39.976619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp5-g49", "LOCATION_NAME": "Aramingo's Best Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984627, "LONGITUDE": -75.113365, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010179003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2889.0, "Total Transactions": 99.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.113365, 39.984627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "LOCATION_NAME": "Lets Grub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 650.0, "Total Transactions": 48.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.14, "MEDIAN_SPEND_PER_CUSTOMER": 17.55 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-2c5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073477, "LONGITUDE": -75.033695, "DATE_RANGE_START": 2020, "Total Visits": 480.0, "Total Visitors": 333.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6300.0, "Total Transactions": 883.0, "Total Customers": 437.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.033695, 40.073477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2020, "Total Visits": 435.0, "Total Visitors": 274.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 8638.0, "Total Transactions": 1080.0, "Total Customers": 544.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.64, "MEDIAN_SPEND_PER_CUSTOMER": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 349.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.07, "MEDIAN_SPEND_PER_CUSTOMER": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-cbk", "LOCATION_NAME": "Torres", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01446, "LONGITUDE": -75.065885, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1399.0, "Total Transactions": 64.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.7, "MEDIAN_SPEND_PER_CUSTOMER": 25.55 }, "geometry": { "type": "Point", "coordinates": [ -75.065885, 40.01446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-v2k", "LOCATION_NAME": "Mario's Motors", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.928559, "LONGITUDE": -75.195809, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 89.0, "POI_CBG": 421010036002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1741.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 438.53, "MEDIAN_SPEND_PER_CUSTOMER": 438.53 }, "geometry": { "type": "Point", "coordinates": [ -75.195809, 39.928559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8n-6kz", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.027244, "LONGITUDE": -75.059172, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 202.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1050.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.74, "MEDIAN_SPEND_PER_CUSTOMER": 68.02 }, "geometry": { "type": "Point", "coordinates": [ -75.059172, 40.027244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-kxq", "LOCATION_NAME": "Pennsylvania China Farm", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.901129, "LONGITUDE": -75.157248, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 95.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 144.0, "Total Spend": 886.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 202.0, "MEDIAN_SPEND_PER_CUSTOMER": 223.13 }, "geometry": { "type": "Point", "coordinates": [ -75.157248, 39.901129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "LOCATION_NAME": "Kennedy Food Garden", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 163.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3040.0, "Total Transactions": 173.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.6, "MEDIAN_SPEND_PER_CUSTOMER": 26.83 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 28.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 199.0, "Total Spend": 116.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pm9-wc5", "LOCATION_NAME": "Renaissance Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949053, "LONGITUDE": -75.147888, "DATE_RANGE_START": 2020, "Total Visits": 314.0, "Total Visitors": 276.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 4965.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 184.84, "MEDIAN_SPEND_PER_CUSTOMER": 184.84 }, "geometry": { "type": "Point", "coordinates": [ -75.147888, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phm-8sq", "LOCATION_NAME": "Oak Lane Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.055908, "LONGITUDE": -75.140617, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 34.0, "POI_CBG": 421010268003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 387.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.43, "MEDIAN_SPEND_PER_CUSTOMER": 30.35 }, "geometry": { "type": "Point", "coordinates": [ -75.140617, 40.055908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "LOCATION_NAME": "VaporFi", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2020, "Total Visits": 887.0, "Total Visitors": 468.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 399.0, "Total Spend": 2284.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.38, "MEDIAN_SPEND_PER_CUSTOMER": 66.81 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961453, "LONGITUDE": -75.144571, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 97.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5825.0, "Total Transactions": 252.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144571, 39.961453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfy-zj9", "LOCATION_NAME": "Mike's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022539, "LONGITUDE": -75.218415, "DATE_RANGE_START": 2020, "Total Visits": 762.0, "Total Visitors": 635.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 41.0, "Total Spend": 2410.0, "Total Transactions": 165.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.16 }, "geometry": { "type": "Point", "coordinates": [ -75.218415, 40.022539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phq-gff", "LOCATION_NAME": "Takka Grill & Shrimpie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067474, "LONGITUDE": -75.147141, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 139.0, "POI_CBG": 421010266003.0, "MEDIAN_DWELL": 1414.0, "Total Spend": 2756.0, "Total Transactions": 109.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.147141, 40.067474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 429.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11069.0, "Total Transactions": 802.0, "Total Customers": 564.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.14, "MEDIAN_SPEND_PER_CUSTOMER": 15.69 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg9-7h5", "LOCATION_NAME": "Hair Town", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991198, "LONGITUDE": -75.177954, "DATE_RANGE_START": 2020, "Total Visits": 151.0, "Total Visitors": 56.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 220.0, "Total Spend": 7851.0, "Total Transactions": 208.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.87, "MEDIAN_SPEND_PER_CUSTOMER": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.177954, 39.991198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029034, "LONGITUDE": -75.099595, "DATE_RANGE_START": 2020, "Total Visits": 836.0, "Total Visitors": 554.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 63321.0, "Total Transactions": 3567.0, "Total Customers": 2285.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.8, "MEDIAN_SPEND_PER_CUSTOMER": 20.63 }, "geometry": { "type": "Point", "coordinates": [ -75.099595, 40.029034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "LOCATION_NAME": "Oyster House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 58.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 10267.0, "Total Transactions": 107.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.3, "MEDIAN_SPEND_PER_CUSTOMER": 79.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928851, "LONGITUDE": -75.229354, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 145.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1399.0, "Total Transactions": 206.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.9, "MEDIAN_SPEND_PER_CUSTOMER": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.229354, 39.928851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-skf", "LOCATION_NAME": "Elixr Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949308, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2020, "Total Visits": 2289.0, "Total Visitors": 1465.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 57.0, "Total Spend": 87.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.34, "MEDIAN_SPEND_PER_CUSTOMER": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pj8-pgk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031694, "LONGITUDE": -75.099517, "DATE_RANGE_START": 2020, "Total Visits": 7096.0, "Total Visitors": 4843.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1910.0, "Total Transactions": 185.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.31, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099517, 40.031694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2020, "Total Visits": 1153.0, "Total Visitors": 744.0, "POI_CBG": 421010085001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 10039.0, "Total Transactions": 730.0, "Total Customers": 496.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.07, "MEDIAN_SPEND_PER_CUSTOMER": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pjf-zvf", "LOCATION_NAME": "Chestnut Hill Coffee Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076935, "LONGITUDE": -75.208429, "DATE_RANGE_START": 2020, "Total Visits": 345.0, "Total Visitors": 187.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 80.0, "Total Spend": 257.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.75, "MEDIAN_SPEND_PER_CUSTOMER": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.208429, 40.076935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pg9-vpv", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967164, "LONGITUDE": -75.172278, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 113.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 29.0, "Total Spend": 1121.0, "Total Transactions": 139.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.12, "MEDIAN_SPEND_PER_CUSTOMER": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172278, 39.967164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.094236, "LONGITUDE": -75.016653, "DATE_RANGE_START": 2020, "Total Visits": 401.0, "Total Visitors": 349.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 11999.0, "Total Transactions": 885.0, "Total Customers": 647.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.58, "MEDIAN_SPEND_PER_CUSTOMER": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.016653, 40.094236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2020, "Total Visits": 258.0, "Total Visitors": 208.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 166.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.55, "MEDIAN_SPEND_PER_CUSTOMER": 7.55 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033486, "LONGITUDE": -75.130876, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 159.0, "POI_CBG": 421010274013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6506.0, "Total Transactions": 855.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.77, "MEDIAN_SPEND_PER_CUSTOMER": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.130876, 40.033486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054006, "LONGITUDE": -75.193227, "DATE_RANGE_START": 2020, "Total Visits": 373.0, "Total Visitors": 270.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 10355.0, "Total Transactions": 411.0, "Total Customers": 276.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 23.26 }, "geometry": { "type": "Point", "coordinates": [ -75.193227, 40.054006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p8m-syv", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02299, "LONGITUDE": -75.075925, "DATE_RANGE_START": 2020, "Total Visits": 987.0, "Total Visitors": 659.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3281.0, "Total Transactions": 256.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.39, "MEDIAN_SPEND_PER_CUSTOMER": 17.19 }, "geometry": { "type": "Point", "coordinates": [ -75.075925, 40.02299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950226, "LONGITUDE": -75.169589, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 143.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6839.0, "Total Transactions": 202.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.2, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169589, 39.950226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2020, "Total Visits": 1524.0, "Total Visitors": 998.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 11.0, "Total Spend": 555.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.94, "MEDIAN_SPEND_PER_CUSTOMER": 23.36 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "LOCATION_NAME": "New Deck Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953506, "LONGITUDE": -75.192591, "DATE_RANGE_START": 2020, "Total Visits": 1356.0, "Total Visitors": 951.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 2307.0, "Total Transactions": 60.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.96, "MEDIAN_SPEND_PER_CUSTOMER": 35.44 }, "geometry": { "type": "Point", "coordinates": [ -75.192591, 39.953506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8d-kpv", "LOCATION_NAME": "Best Buy Imports", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.006235, "LONGITUDE": -75.092056, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 22.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 88.0, "Total Spend": 1991.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 335.46, "MEDIAN_SPEND_PER_CUSTOMER": 335.46 }, "geometry": { "type": "Point", "coordinates": [ -75.092056, 40.006235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 24.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 148.0, "Total Spend": 6895.0, "Total Transactions": 165.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.3, "MEDIAN_SPEND_PER_CUSTOMER": 42.75 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-kmk", "LOCATION_NAME": "Philly Sunnyside Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974534, "LONGITUDE": -75.181976, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 30.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 63.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.79, "MEDIAN_SPEND_PER_CUSTOMER": 11.79 }, "geometry": { "type": "Point", "coordinates": [ -75.181976, 39.974534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-kcq", "LOCATION_NAME": "Holme Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056893, "LONGITUDE": -75.027632, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 36.0, "POI_CBG": 421010347021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 417.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.67, "MEDIAN_SPEND_PER_CUSTOMER": 14.49 }, "geometry": { "type": "Point", "coordinates": [ -75.027632, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "LOCATION_NAME": "Axis Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95523, "LONGITUDE": -75.194652, "DATE_RANGE_START": 2020, "Total Visits": 324.0, "Total Visitors": 228.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4580.0, "Total Transactions": 210.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.77, "MEDIAN_SPEND_PER_CUSTOMER": 18.04 }, "geometry": { "type": "Point", "coordinates": [ -75.194652, 39.95523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950371, "LONGITUDE": -75.158373, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 85.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 1823.0, "Total Transactions": 202.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.41, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.158373, 39.950371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-cyv", "LOCATION_NAME": "Holmesburg Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.041745, "LONGITUDE": -75.026513, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 52.0, "POI_CBG": 421010329001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 93.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026513, 40.041745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rp9", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917838, "LONGITUDE": -75.186989, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 89.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10000.0, "Total Transactions": 375.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.2, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186989, 39.917838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 304.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6211.0, "Total Transactions": 415.0, "Total Customers": 343.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.18, "MEDIAN_SPEND_PER_CUSTOMER": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2020, "Total Visits": 258.0, "Total Visitors": 210.0, "POI_CBG": 421010347013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1429.0, "Total Transactions": 127.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.14, "MEDIAN_SPEND_PER_CUSTOMER": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032391, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2020, "Total Visits": 514.0, "Total Visitors": 347.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 13846.0, "Total Transactions": 985.0, "Total Customers": 717.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.62, "MEDIAN_SPEND_PER_CUSTOMER": 15.72 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.032391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081241, "LONGITUDE": -74.99492, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 183.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2507.0, "Total Transactions": 393.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.73, "MEDIAN_SPEND_PER_CUSTOMER": 6.47 }, "geometry": { "type": "Point", "coordinates": [ -74.99492, 40.081241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-73q", "LOCATION_NAME": "Dr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947797, "LONGITUDE": -75.193456, "DATE_RANGE_START": 2020, "Total Visits": 15310.0, "Total Visitors": 7291.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 133.0, "Total Spend": 2992.0, "Total Transactions": 593.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.66, "MEDIAN_SPEND_PER_CUSTOMER": 7.28 }, "geometry": { "type": "Point", "coordinates": [ -75.193456, 39.947797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-223@628-phy-rc5", "LOCATION_NAME": "Tierra Colombiana Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020572, "LONGITUDE": -75.133736, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 60.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 259.0, "Total Spend": 589.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.0, "MEDIAN_SPEND_PER_CUSTOMER": 63.74 }, "geometry": { "type": "Point", "coordinates": [ -75.133736, 40.020572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgj-pgk", "LOCATION_NAME": "Arthurs Dog House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992823, "LONGITUDE": -75.148113, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010165003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 140.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.56, "MEDIAN_SPEND_PER_CUSTOMER": 17.56 }, "geometry": { "type": "Point", "coordinates": [ -75.148113, 39.992823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-pqf", "LOCATION_NAME": "Tico's Tacos Tex Mex", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944355, "LONGITUDE": -75.169738, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 437.0, "Total Spend": 962.0, "Total Transactions": 52.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 16.35 }, "geometry": { "type": "Point", "coordinates": [ -75.169738, 39.944355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pmb-yqf", "LOCATION_NAME": "Vivi Bubble Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954838, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2825.0, "Total Transactions": 278.0, "Total Customers": 236.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.12, "MEDIAN_SPEND_PER_CUSTOMER": 10.53 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.954838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-rtv", "LOCATION_NAME": "Takka Grill and Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029529, "LONGITUDE": -75.180791, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 18.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 432.0, "Total Spend": 1296.0, "Total Transactions": 64.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.68, "MEDIAN_SPEND_PER_CUSTOMER": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180791, 40.029529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "LOCATION_NAME": "Ibis Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010113002.0, "MEDIAN_DWELL": 192.0, "Total Spend": 1456.0, "Total Transactions": 64.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 34.34 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-zvf", "LOCATION_NAME": "Emmy Squared Pizza Queen Village", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941047, "LONGITUDE": -75.151101, "DATE_RANGE_START": 2020, "Total Visits": 296.0, "Total Visitors": 260.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2615.0, "Total Transactions": 42.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.38, "MEDIAN_SPEND_PER_CUSTOMER": 53.72 }, "geometry": { "type": "Point", "coordinates": [ -75.151101, 39.941047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "LOCATION_NAME": "Sahara Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2020, "Total Visits": 4145.0, "Total Visitors": 2634.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 135.0, "Total Spend": 630.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.82, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "LOCATION_NAME": "Station Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 113.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 93.0, "Total Spend": 6110.0, "Total Transactions": 294.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.24, "MEDIAN_SPEND_PER_CUSTOMER": 24.64 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "LOCATION_NAME": "Khyber Pass Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 77.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 116.0, "Total Spend": 4301.0, "Total Transactions": 105.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.8, "MEDIAN_SPEND_PER_CUSTOMER": 46.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pm5-2ff", "LOCATION_NAME": "Wokano", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937057, "LONGITUDE": -75.161863, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 99.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1087.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.5, "MEDIAN_SPEND_PER_CUSTOMER": 44.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161863, 39.937057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-hh5", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951987, "LONGITUDE": -75.171121, "DATE_RANGE_START": 2020, "Total Visits": 181.0, "Total Visitors": 119.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 80.0, "Total Spend": 469.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.38, "MEDIAN_SPEND_PER_CUSTOMER": 23.38 }, "geometry": { "type": "Point", "coordinates": [ -75.171121, 39.951987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "LOCATION_NAME": "Jetro Cash & Carry", "TOP_CATEGORY": "Grocery and Related Product Merchant Wholesalers", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2020, "Total Visits": 1882.0, "Total Visitors": 1080.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 601034.0, "Total Transactions": 977.0, "Total Customers": 314.0, "MEDIAN_SPEND_PER_TRANSACTION": 374.62, "MEDIAN_SPEND_PER_CUSTOMER": 478.97 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2020, "Total Visits": 462.0, "Total Visitors": 280.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3403.0, "Total Transactions": 568.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 73.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3509.0, "Total Transactions": 26.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-t7q", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.901479, "LONGITUDE": -75.241623, "DATE_RANGE_START": 2020, "Total Visits": 2652.0, "Total Visitors": 1495.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1638.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.26, "MEDIAN_SPEND_PER_CUSTOMER": 141.55 }, "geometry": { "type": "Point", "coordinates": [ -75.241623, 39.901479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-3yv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022096, "LONGITUDE": -75.125775, "DATE_RANGE_START": 2020, "Total Visits": 558.0, "Total Visitors": 391.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 919.0, "Total Transactions": 58.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.98, "MEDIAN_SPEND_PER_CUSTOMER": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.125775, 40.022096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pmf-jd9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.9512, "LONGITUDE": -75.168586, "DATE_RANGE_START": 2020, "Total Visits": 711.0, "Total Visitors": 548.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 9854.0, "Total Transactions": 538.0, "Total Customers": 347.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.98, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.168586, 39.9512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp4-r49", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.975637, "LONGITUDE": -75.119836, "DATE_RANGE_START": 2020, "Total Visits": 2864.0, "Total Visitors": 1614.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4701.0, "Total Transactions": 95.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.85, "MEDIAN_SPEND_PER_CUSTOMER": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -75.119836, 39.975637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pm9-wc5", "LOCATION_NAME": "Pinch Dumplings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949677, "LONGITUDE": -75.147569, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 224.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 64.0, "Total Spend": 1174.0, "Total Transactions": 69.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.63, "MEDIAN_SPEND_PER_CUSTOMER": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147569, 39.949677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2020, "Total Visits": 641.0, "Total Visitors": 500.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 3.0, "Total Spend": 27552.0, "Total Transactions": 2259.0, "Total Customers": 1520.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.84, "MEDIAN_SPEND_PER_CUSTOMER": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045011, "LONGITUDE": -75.144262, "DATE_RANGE_START": 2020, "Total Visits": 383.0, "Total Visitors": 278.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 558.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.24, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.144262, 40.045011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-835", "LOCATION_NAME": "Pennsylvania General Store", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953203, "LONGITUDE": -75.159393, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 188.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.87, "MEDIAN_SPEND_PER_CUSTOMER": 14.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159393, 39.953203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950584, "LONGITUDE": -75.167188, "DATE_RANGE_START": 2020, "Total Visits": 193.0, "Total Visitors": 139.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 475.0, "Total Spend": 2315.0, "Total Transactions": 443.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.3, "MEDIAN_SPEND_PER_CUSTOMER": 5.54 }, "geometry": { "type": "Point", "coordinates": [ -75.167188, 39.950584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dqf", "LOCATION_NAME": "Five Brothers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033693, "LONGITUDE": -75.084934, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": null, "Total Spend": 1924.0, "Total Transactions": 185.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.9, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084934, 40.033693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2020, "Total Visits": 516.0, "Total Visitors": 381.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 903.0, "Total Transactions": 54.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.72, "MEDIAN_SPEND_PER_CUSTOMER": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2020, "Total Visits": 3898.0, "Total Visitors": 2213.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 65088.0, "Total Transactions": 1312.0, "Total Customers": 798.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.97, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "LOCATION_NAME": "Cantinho Brasileiro Restaurante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 30.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 136.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-8y9", "LOCATION_NAME": "Accu Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953369, "LONGITUDE": -75.218457, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 50.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 826.0, "Total Transactions": 20.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.72, "MEDIAN_SPEND_PER_CUSTOMER": 63.44 }, "geometry": { "type": "Point", "coordinates": [ -75.218457, 39.953369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "LOCATION_NAME": "Hilltown Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 58.0, "POI_CBG": 421010213004.0, "MEDIAN_DWELL": 188.0, "Total Spend": 25743.0, "Total Transactions": 584.0, "Total Customers": 377.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.46, "MEDIAN_SPEND_PER_CUSTOMER": 48.3 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "LOCATION_NAME": "Thai Square Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 8.0, "POI_CBG": 421010013005.0, "MEDIAN_DWELL": 111.0, "Total Spend": 3317.0, "Total Transactions": 85.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.97, "MEDIAN_SPEND_PER_CUSTOMER": 34.51 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph6-vvf", "LOCATION_NAME": "Debreaux's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989238, "LONGITUDE": -75.24979, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 324.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.18, "MEDIAN_SPEND_PER_CUSTOMER": 51.18 }, "geometry": { "type": "Point", "coordinates": [ -75.24979, 39.989238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-phq-nbk", "LOCATION_NAME": "Reyes Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.054327, "LONGITUDE": -75.148175, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 14.0, "POI_CBG": 421010267004.0, "MEDIAN_DWELL": 1055.0, "Total Spend": 777.0, "Total Transactions": 85.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.49 }, "geometry": { "type": "Point", "coordinates": [ -75.148175, 40.054327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "LOCATION_NAME": "Miller's Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079795, "LONGITUDE": -75.028682, "DATE_RANGE_START": 2020, "Total Visits": 675.0, "Total Visitors": 597.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 22857.0, "Total Transactions": 445.0, "Total Customers": 381.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.21, "MEDIAN_SPEND_PER_CUSTOMER": 51.45 }, "geometry": { "type": "Point", "coordinates": [ -75.028682, 40.079795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-3kf", "LOCATION_NAME": "Mirage Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941399, "LONGITUDE": -75.144795, "DATE_RANGE_START": 2020, "Total Visits": 760.0, "Total Visitors": 629.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1358.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.43, "MEDIAN_SPEND_PER_CUSTOMER": 66.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144795, 39.941399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "LOCATION_NAME": "Ruby Tuesday", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.887819, "LONGITUDE": -75.247004, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 95.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3822.0, "Total Transactions": 101.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.31, "MEDIAN_SPEND_PER_CUSTOMER": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -75.247004, 39.887819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-8d9", "LOCATION_NAME": "Bee Natural", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952966, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1236.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.952966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "LOCATION_NAME": "Main Street Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 39.0, "Total Spend": 3917.0, "Total Transactions": 105.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.92, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm4-g8v", "LOCATION_NAME": "V Marks the Shop", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.926043, "LONGITUDE": -75.171734, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 875.0, "Total Spend": 394.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.49, "MEDIAN_SPEND_PER_CUSTOMER": 29.45 }, "geometry": { "type": "Point", "coordinates": [ -75.171734, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "LOCATION_NAME": "Street Side", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 143.0, "Total Spend": 757.0, "Total Transactions": 44.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.42, "MEDIAN_SPEND_PER_CUSTOMER": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25q-222@628-pm9-tn5", "LOCATION_NAME": "Superhots By George", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948564, "LONGITUDE": -75.153931, "DATE_RANGE_START": 2020, "Total Visits": 1911.0, "Total Visitors": 1233.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 320.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.13, "MEDIAN_SPEND_PER_CUSTOMER": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.153931, 39.948564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-bhq", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.960816, "LONGITUDE": -75.224417, "DATE_RANGE_START": 2020, "Total Visits": 461.0, "Total Visitors": 349.0, "POI_CBG": 421010093003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1942.0, "Total Transactions": 202.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.92, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224417, 39.960816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pnw-psq", "LOCATION_NAME": "Unleashed by Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.969106, "LONGITUDE": -75.139264, "DATE_RANGE_START": 2020, "Total Visits": 875.0, "Total Visitors": 629.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1613.0, "Total Transactions": 50.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.82, "MEDIAN_SPEND_PER_CUSTOMER": 31.22 }, "geometry": { "type": "Point", "coordinates": [ -75.139264, 39.969106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "LOCATION_NAME": "El Camino Real", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 34.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 751.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.52, "MEDIAN_SPEND_PER_CUSTOMER": 37.39 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj2-7bk", "LOCATION_NAME": "Pizza House Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.997808, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 60.0, "POI_CBG": 421010177023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 569.0, "Total Transactions": 26.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.2, "MEDIAN_SPEND_PER_CUSTOMER": 32.57 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.997808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-87q", "LOCATION_NAME": "Kabuki Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953616, "LONGITUDE": -75.160916, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 30.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 203.0, "Total Spend": 114.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 28.79 }, "geometry": { "type": "Point", "coordinates": [ -75.160916, 39.953616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phy-wx5", "LOCATION_NAME": "Brother's Pizza House II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026513, "LONGITUDE": -75.12182, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 24.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.15, "MEDIAN_SPEND_PER_CUSTOMER": 6.15 }, "geometry": { "type": "Point", "coordinates": [ -75.12182, 40.026513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984509, "LONGITUDE": -75.121352, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 202.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1834.0, "Total Transactions": 93.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.45, "MEDIAN_SPEND_PER_CUSTOMER": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.121352, 39.984509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2020, "Total Visits": 899.0, "Total Visitors": 665.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 90716.0, "Total Transactions": 5818.0, "Total Customers": 2624.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.05, "MEDIAN_SPEND_PER_CUSTOMER": 21.81 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 189.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 171.0, "Total Transactions": 28.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.23, "MEDIAN_SPEND_PER_CUSTOMER": 7.48 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-t7q", "LOCATION_NAME": "Maria's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013401, "LONGITUDE": -75.135844, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421010197002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 719.0, "Total Transactions": 48.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.135844, 40.013401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-tsq", "LOCATION_NAME": "Chaes Food LLC", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.983616, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 87.0, "POI_CBG": 421010162002.0, "MEDIAN_DWELL": 252.0, "Total Spend": 722.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.99, "MEDIAN_SPEND_PER_CUSTOMER": 101.99 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.983616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-yd9", "LOCATION_NAME": "Essene Market & Cafe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940035, "LONGITUDE": -75.149067, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 58.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 81.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg4-47q", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030031, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2020, "Total Visits": 695.0, "Total Visitors": 492.0, "POI_CBG": 421010242001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1384.0, "Total Transactions": 67.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 41.51 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 40.030031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "LOCATION_NAME": "Nordstrom Rack", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951246, "LONGITUDE": -75.168975, "DATE_RANGE_START": 2020, "Total Visits": 848.0, "Total Visitors": 726.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 47545.0, "Total Transactions": 752.0, "Total Customers": 649.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.11, "MEDIAN_SPEND_PER_CUSTOMER": 48.75 }, "geometry": { "type": "Point", "coordinates": [ -75.168975, 39.951246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-w8v", "LOCATION_NAME": "Aéropostale", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.086851, "LONGITUDE": -74.962597, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 105.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1611.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.91, "MEDIAN_SPEND_PER_CUSTOMER": 23.31 }, "geometry": { "type": "Point", "coordinates": [ -74.962597, 40.086851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "LOCATION_NAME": "Not Just Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 24.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 219.0, "Total Spend": 153.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.29, "MEDIAN_SPEND_PER_CUSTOMER": 19.76 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "LOCATION_NAME": "Gaffney Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2020, "Total Visits": 141.0, "Total Visitors": 125.0, "POI_CBG": 421010246001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6124.0, "Total Transactions": 123.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.92, "MEDIAN_SPEND_PER_CUSTOMER": 32.53 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008154, "LONGITUDE": -75.17322, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 373.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2525.0, "Total Transactions": 218.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 9.06 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 40.008154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2020, "Total Visits": 248.0, "Total Visitors": 208.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1412.0, "Total Transactions": 115.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.24, "MEDIAN_SPEND_PER_CUSTOMER": 12.72 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "LOCATION_NAME": "Liberty Smokes", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.912433, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 234.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1340.0, "Total Transactions": 40.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.46, "MEDIAN_SPEND_PER_CUSTOMER": 53.41 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.912433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "LOCATION_NAME": "Skyline Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 151.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 1238.0, "Total Spend": 8380.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 189.41, "MEDIAN_SPEND_PER_CUSTOMER": 139.46 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2020, "Total Visits": 520.0, "Total Visitors": 401.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2395.0, "Total Transactions": 274.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.031655, "LONGITUDE": -75.099529, "DATE_RANGE_START": 2020, "Total Visits": 6800.0, "Total Visitors": 4663.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 684.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.7, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.099529, 40.031655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 232.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2241.0, "Total Transactions": 208.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 7.92 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.031024, "LONGITUDE": -75.099091, "DATE_RANGE_START": 2020, "Total Visits": 969.0, "Total Visitors": 786.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 22606.0, "Total Transactions": 429.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.05, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.099091, 40.031024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2020, "Total Visits": 728.0, "Total Visitors": 564.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 76847.0, "Total Transactions": 4565.0, "Total Customers": 3178.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.47, "MEDIAN_SPEND_PER_CUSTOMER": 18.29 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7x-5zz", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048936, "LONGITUDE": -75.06319, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 208.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 588.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.89, "MEDIAN_SPEND_PER_CUSTOMER": 30.89 }, "geometry": { "type": "Point", "coordinates": [ -75.06319, 40.048936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "LOCATION_NAME": "H&M (Hennes & Mauritz)", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088823, "LONGITUDE": -74.961811, "DATE_RANGE_START": 2020, "Total Visits": 528.0, "Total Visitors": 490.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 24249.0, "Total Transactions": 522.0, "Total Customers": 466.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.98, "MEDIAN_SPEND_PER_CUSTOMER": 35.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961811, 40.088823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-jjv", "LOCATION_NAME": "House of Our Own Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.951372, "LONGITUDE": -75.201884, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 290.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 85.0, "Total Spend": 59.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.83, "MEDIAN_SPEND_PER_CUSTOMER": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.201884, 39.951372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2020, "Total Visits": 643.0, "Total Visitors": 603.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 66557.0, "Total Transactions": 1302.0, "Total Customers": 1086.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.19, "MEDIAN_SPEND_PER_CUSTOMER": 42.39 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pg4-j9z", "LOCATION_NAME": "Boss Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.035423, "LONGITUDE": -75.173956, "DATE_RANGE_START": 2020, "Total Visits": 1254.0, "Total Visitors": 830.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 34149.0, "Total Transactions": 36.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 1000.0, "MEDIAN_SPEND_PER_CUSTOMER": 1238.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173956, 40.035423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "LOCATION_NAME": "Grace Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3186.0, "Total Transactions": 73.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.52, "MEDIAN_SPEND_PER_CUSTOMER": 39.72 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@63s-dvy-8sq", "LOCATION_NAME": "MK Food Service Equipment", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.95219, "LONGITUDE": -75.216689, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 22.0, "POI_CBG": 421010079001.0, "MEDIAN_DWELL": 228.0, "Total Spend": 259.0, "Total Transactions": 42.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.73, "MEDIAN_SPEND_PER_CUSTOMER": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.216689, 39.95219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjf-jy9", "LOCATION_NAME": "Bredenbeck's Bakery & Ice Cream Parlor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072481, "LONGITUDE": -75.202392, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 19542.0, "Total Transactions": 901.0, "Total Customers": 691.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.202392, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pg5-2tv", "LOCATION_NAME": "Morton Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.04563, "LONGITUDE": -75.176218, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 36.0, "POI_CBG": 421010252004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 289.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.64, "MEDIAN_SPEND_PER_CUSTOMER": 72.84 }, "geometry": { "type": "Point", "coordinates": [ -75.176218, 40.04563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm9-5cq", "LOCATION_NAME": "Friends Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.91628, "LONGITUDE": -75.165627, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 95.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.26, "MEDIAN_SPEND_PER_CUSTOMER": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.165627, 39.91628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj3-3nq", "LOCATION_NAME": "Mora Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022573, "LONGITUDE": -75.156258, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 16.0, "POI_CBG": 421010280001.0, "MEDIAN_DWELL": 334.0, "Total Spend": 174.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.8, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.156258, 40.022573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-kvf", "LOCATION_NAME": "The Wellness Refinery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950375, "LONGITUDE": -75.144624, "DATE_RANGE_START": 2020, "Total Visits": 838.0, "Total Visitors": 550.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 809.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.0, "MEDIAN_SPEND_PER_CUSTOMER": 49.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144624, 39.950375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "LOCATION_NAME": "Fairmount Pizza and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 62.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 15589.0, "Total Transactions": 885.0, "Total Customers": 621.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.53, "MEDIAN_SPEND_PER_CUSTOMER": 18.85 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-jqf", "LOCATION_NAME": "Brewers Outlet Of Mt Airy & Chestnut Hill", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.063253, "LONGITUDE": -75.192693, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 193.0, "POI_CBG": 421010256003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 45317.0, "Total Transactions": 1114.0, "Total Customers": 657.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.38, "MEDIAN_SPEND_PER_CUSTOMER": 46.78 }, "geometry": { "type": "Point", "coordinates": [ -75.192693, 40.063253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-x3q", "LOCATION_NAME": "Manakeesh Cafe Bakery & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95498, "LONGITUDE": -75.211488, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 161.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 827.0, "Total Spend": 5873.0, "Total Transactions": 240.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.49, "MEDIAN_SPEND_PER_CUSTOMER": 24.26 }, "geometry": { "type": "Point", "coordinates": [ -75.211488, 39.95498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22q@628-pmb-835", "LOCATION_NAME": "Pearl's Oyster Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95321, "LONGITUDE": -75.159401, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 340.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.159401, 39.95321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "LOCATION_NAME": "Maggiano's Little Italy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953256, "LONGITUDE": -75.160263, "DATE_RANGE_START": 2020, "Total Visits": 151.0, "Total Visitors": 131.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 19111.0, "Total Transactions": 298.0, "Total Customers": 264.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.94, "MEDIAN_SPEND_PER_CUSTOMER": 38.18 }, "geometry": { "type": "Point", "coordinates": [ -75.160263, 39.953256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phd-h89", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002639, "LONGITUDE": -75.222769, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 135.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6819.0, "Total Transactions": 314.0, "Total Customers": 256.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.02, "MEDIAN_SPEND_PER_CUSTOMER": 22.85 }, "geometry": { "type": "Point", "coordinates": [ -75.222769, 40.002639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2020, "Total Visits": 7580.0, "Total Visitors": 4722.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 23.0, "Total Spend": 69020.0, "Total Transactions": 693.0, "Total Customers": 472.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.14, "MEDIAN_SPEND_PER_CUSTOMER": 103.59 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pfx-kzz", "LOCATION_NAME": "Haggerty Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029098, "LONGITUDE": -75.225579, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010214004.0, "MEDIAN_DWELL": 168.0, "Total Spend": 1009.0, "Total Transactions": 73.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.63, "MEDIAN_SPEND_PER_CUSTOMER": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225579, 40.029098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-d5f", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992273, "LONGITUDE": -75.110947, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 220.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1418.0, "Total Transactions": 91.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.110947, 39.992273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.084266, "LONGITUDE": -74.961834, "DATE_RANGE_START": 2020, "Total Visits": 248.0, "Total Visitors": 246.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 11978.0, "Total Transactions": 782.0, "Total Customers": 667.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.27, "MEDIAN_SPEND_PER_CUSTOMER": 12.86 }, "geometry": { "type": "Point", "coordinates": [ -74.961834, 40.084266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 185.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3058.0, "Total Transactions": 95.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.58, "MEDIAN_SPEND_PER_CUSTOMER": 28.59 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "LOCATION_NAME": "Xian Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9532, "LONGITUDE": -75.154945, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 26.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 183.0, "Total Spend": 360.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154945, 39.9532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "LOCATION_NAME": "Pho Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4623.0, "Total Transactions": 149.0, "Total Customers": 123.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.78, "MEDIAN_SPEND_PER_CUSTOMER": 30.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pg4-w49", "LOCATION_NAME": "Pauline's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040848, "LONGITUDE": -75.157522, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 38.0, "POI_CBG": 421010279022.0, "MEDIAN_DWELL": 40.0, "Total Spend": 974.0, "Total Transactions": 77.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.67, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.157522, 40.040848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969391, "LONGITUDE": -75.159457, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 44.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4412.0, "Total Transactions": 641.0, "Total Customers": 369.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.14, "MEDIAN_SPEND_PER_CUSTOMER": 7.68 }, "geometry": { "type": "Point", "coordinates": [ -75.159457, 39.969391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "LOCATION_NAME": "The Fresh Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2020, "Total Visits": 883.0, "Total Visitors": 494.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 48638.0, "Total Transactions": 957.0, "Total Customers": 568.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.08, "MEDIAN_SPEND_PER_CUSTOMER": 45.1 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-28v", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030475, "LONGITUDE": -75.104415, "DATE_RANGE_START": 2020, "Total Visits": 1959.0, "Total Visitors": 1360.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 770.0, "Total Transactions": 42.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104415, 40.030475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "LOCATION_NAME": "Brandy Melville", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 177.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 5962.0, "Total Transactions": 93.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.0, "MEDIAN_SPEND_PER_CUSTOMER": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph8-q75", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978744, "LONGITUDE": -75.268394, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 69.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 925.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.84, "MEDIAN_SPEND_PER_CUSTOMER": 29.43 }, "geometry": { "type": "Point", "coordinates": [ -75.268394, 39.978744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8m-6rk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.026735, "LONGITUDE": -75.064295, "DATE_RANGE_START": 2020, "Total Visits": 639.0, "Total Visitors": 472.0, "POI_CBG": 421010319001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 958.0, "Total Transactions": 73.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.16, "MEDIAN_SPEND_PER_CUSTOMER": 17.16 }, "geometry": { "type": "Point", "coordinates": [ -75.064295, 40.026735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2020, "Total Visits": 899.0, "Total Visitors": 649.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1674.0, "Total Transactions": 115.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.43, "MEDIAN_SPEND_PER_CUSTOMER": 15.22 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033268, "LONGITUDE": -75.084729, "DATE_RANGE_START": 2020, "Total Visits": 649.0, "Total Visitors": 459.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2047.0, "Total Transactions": 220.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.4, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.084729, 40.033268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "LOCATION_NAME": "SouthHouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 119.0, "POI_CBG": 421010040023.0, "MEDIAN_DWELL": 456.0, "Total Spend": 1583.0, "Total Transactions": 40.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.35, "MEDIAN_SPEND_PER_CUSTOMER": 41.04 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-yqf", "LOCATION_NAME": "Shiao Lan Kung", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955257, "LONGITUDE": -75.155387, "DATE_RANGE_START": 2020, "Total Visits": 3823.0, "Total Visitors": 2293.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 261.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.79, "MEDIAN_SPEND_PER_CUSTOMER": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.955257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "LOCATION_NAME": "Penang", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954047, "LONGITUDE": -75.155868, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 67.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3620.0, "Total Transactions": 85.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.72, "MEDIAN_SPEND_PER_CUSTOMER": 40.88 }, "geometry": { "type": "Point", "coordinates": [ -75.155868, 39.954047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "LOCATION_NAME": "Luke's Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 69.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 228.0, "Total Spend": 2917.0, "Total Transactions": 73.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.05, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032001, "LONGITUDE": -75.213304, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 93.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 6360.0, "Total Transactions": 264.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.96, "MEDIAN_SPEND_PER_CUSTOMER": 29.21 }, "geometry": { "type": "Point", "coordinates": [ -75.213304, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8v-7nq", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088588, "LONGITUDE": -74.965931, "DATE_RANGE_START": 2020, "Total Visits": 478.0, "Total Visitors": 393.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 952.0, "Total Transactions": 109.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.91, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -74.965931, 40.088588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "LOCATION_NAME": "Sweet Creations Unlimited", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.017723, "LONGITUDE": -75.059702, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 333.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.33, "MEDIAN_SPEND_PER_CUSTOMER": 24.33 }, "geometry": { "type": "Point", "coordinates": [ -75.059702, 40.017723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p7x-dsq", "LOCATION_NAME": "Angelos Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042556, "LONGITUDE": -75.063892, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 728.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.81, "MEDIAN_SPEND_PER_CUSTOMER": 19.81 }, "geometry": { "type": "Point", "coordinates": [ -75.063892, 40.042556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.035916, "LONGITUDE": -75.217328, "DATE_RANGE_START": 2020, "Total Visits": 1044.0, "Total Visitors": 655.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1174.0, "Total Transactions": 52.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.78, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217328, 40.035916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-p9z", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.014187, "LONGITUDE": -75.131595, "DATE_RANGE_START": 2020, "Total Visits": 758.0, "Total Visitors": 530.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 616.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.02, "MEDIAN_SPEND_PER_CUSTOMER": 20.03 }, "geometry": { "type": "Point", "coordinates": [ -75.131595, 40.014187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "LOCATION_NAME": "Ginza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": null, "Total Spend": 4209.0, "Total Transactions": 107.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.9, "MEDIAN_SPEND_PER_CUSTOMER": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnz-yjv", "LOCATION_NAME": "Allegheny Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.989902, "LONGITUDE": -75.107971, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 32.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": 340.0, "Total Spend": 132.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.76, "MEDIAN_SPEND_PER_CUSTOMER": 4.76 }, "geometry": { "type": "Point", "coordinates": [ -75.107971, 39.989902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmb-ce5", "LOCATION_NAME": "Ralphs Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940063, "LONGITUDE": -75.157832, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 36.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 335.0, "Total Spend": 320.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.5, "MEDIAN_SPEND_PER_CUSTOMER": 80.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157832, 39.940063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm9-yn5", "LOCATION_NAME": "Bluebond Guitars", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.94235, "LONGITUDE": -75.148924, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 175.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 522.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.9, "MEDIAN_SPEND_PER_CUSTOMER": 45.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148924, 39.94235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2020, "Total Visits": 4897.0, "Total Visitors": 3356.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 8651.0, "Total Transactions": 256.0, "Total Customers": 202.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.33, "MEDIAN_SPEND_PER_CUSTOMER": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "LOCATION_NAME": "Scrub Pro", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2020, "Total Visits": 2878.0, "Total Visitors": 2189.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 10272.0, "Total Transactions": 129.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.15, "MEDIAN_SPEND_PER_CUSTOMER": 66.05 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-7qz", "LOCATION_NAME": "Wax Downtown", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948559, "LONGITUDE": -75.153964, "DATE_RANGE_START": 2020, "Total Visits": 1911.0, "Total Visitors": 1233.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 413.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.41, "MEDIAN_SPEND_PER_CUSTOMER": 53.41 }, "geometry": { "type": "Point", "coordinates": [ -75.153964, 39.948559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.93927, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 359.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9635.0, "Total Transactions": 502.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.93927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "LOCATION_NAME": "Academy Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 73.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 78.0, "Total Spend": 549.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.25, "MEDIAN_SPEND_PER_CUSTOMER": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2020, "Total Visits": 578.0, "Total Visitors": 312.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 31109.0, "Total Transactions": 1340.0, "Total Customers": 631.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.82 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.008773, "LONGITUDE": -75.176588, "DATE_RANGE_START": 2020, "Total Visits": 318.0, "Total Visitors": 278.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 52608.0, "Total Transactions": 1296.0, "Total Customers": 1149.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.87, "MEDIAN_SPEND_PER_CUSTOMER": 29.12 }, "geometry": { "type": "Point", "coordinates": [ -75.176588, 40.008773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "LOCATION_NAME": "ALDO", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.952094, "LONGITUDE": -75.167619, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 153.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 59.0, "Total Spend": 2999.0, "Total Transactions": 56.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.75, "MEDIAN_SPEND_PER_CUSTOMER": 38.52 }, "geometry": { "type": "Point", "coordinates": [ -75.167619, 39.952094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvq-5cq", "LOCATION_NAME": "Sanchez Tire Shop", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.947772, "LONGITUDE": -75.232413, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 62.0, "POI_CBG": 421010081011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 165.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.2, "MEDIAN_SPEND_PER_CUSTOMER": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232413, 39.947772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-6zf", "LOCATION_NAME": "Danis Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.02883, "LONGITUDE": -75.063054, "DATE_RANGE_START": 2020, "Total Visits": 133.0, "Total Visitors": 101.0, "POI_CBG": 421010317003.0, "MEDIAN_DWELL": 151.0, "Total Spend": 48033.0, "Total Transactions": 24.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 2000.0, "MEDIAN_SPEND_PER_CUSTOMER": 1799.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063054, 40.02883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmf-kvf", "LOCATION_NAME": "Village Whiskey", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.951382, "LONGITUDE": -75.173791, "DATE_RANGE_START": 2020, "Total Visits": 788.0, "Total Visitors": 484.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 453.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 114.1, "MEDIAN_SPEND_PER_CUSTOMER": 114.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173791, 39.951382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.080322, "LONGITUDE": -75.171913, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 306.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1628.0, "Total Transactions": 95.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.59, "MEDIAN_SPEND_PER_CUSTOMER": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.171913, 40.080322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-zxq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.002963, "LONGITUDE": -75.152983, "DATE_RANGE_START": 2020, "Total Visits": 365.0, "Total Visitors": 270.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2709.0, "Total Transactions": 145.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.32, "MEDIAN_SPEND_PER_CUSTOMER": 18.57 }, "geometry": { "type": "Point", "coordinates": [ -75.152983, 40.002963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953381, "LONGITUDE": -75.209698, "DATE_RANGE_START": 2020, "Total Visits": 977.0, "Total Visitors": 605.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 33672.0, "Total Transactions": 1604.0, "Total Customers": 766.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.38, "MEDIAN_SPEND_PER_CUSTOMER": 28.16 }, "geometry": { "type": "Point", "coordinates": [ -75.209698, 39.953381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2020, "Total Visits": 2519.0, "Total Visitors": 1832.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 9.0, "Total Spend": 17171.0, "Total Transactions": 687.0, "Total Customers": 506.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.54, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgg-rc5", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.003796, "LONGITUDE": -75.180647, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 179.0, "POI_CBG": 421010171004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4478.0, "Total Transactions": 264.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.01, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180647, 40.003796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm3-vzz", "LOCATION_NAME": "LaScala's Birra", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928592, "LONGITUDE": -75.165123, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 304.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 6226.0, "Total Transactions": 95.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.39, "MEDIAN_SPEND_PER_CUSTOMER": 49.39 }, "geometry": { "type": "Point", "coordinates": [ -75.165123, 39.928592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7qz", "LOCATION_NAME": "Wishbone", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948376, "LONGITUDE": -75.162398, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 79.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1075.0, "Total Transactions": 89.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.41, "MEDIAN_SPEND_PER_CUSTOMER": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.162398, 39.948376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2020, "Total Visits": 212.0, "Total Visitors": 195.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8393.0, "Total Transactions": 625.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.73, "MEDIAN_SPEND_PER_CUSTOMER": 14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "LOCATION_NAME": "Greek Lady", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 77.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 21.0, "Total Spend": 16350.0, "Total Transactions": 1000.0, "Total Customers": 595.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "LOCATION_NAME": "El Coqui Panaderia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 109.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4557.0, "Total Transactions": 179.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 29.01 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-p9q-hqz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079591, "LONGITUDE": -75.027394, "DATE_RANGE_START": 2020, "Total Visits": 200.0, "Total Visitors": 151.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1824.0, "Total Transactions": 129.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.06, "MEDIAN_SPEND_PER_CUSTOMER": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.027394, 40.079591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "LOCATION_NAME": "Repo Records", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2020, "Total Visits": 887.0, "Total Visitors": 607.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 12238.0, "Total Transactions": 292.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.44 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-jgk", "LOCATION_NAME": "AM Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.971594, "LONGITUDE": -75.225601, "DATE_RANGE_START": 2020, "Total Visits": 367.0, "Total Visitors": 254.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1486.0, "Total Transactions": 143.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225601, 39.971594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kxq", "LOCATION_NAME": "Benjamin Lovell Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951787, "LONGITUDE": -75.145456, "DATE_RANGE_START": 2020, "Total Visits": 236.0, "Total Visitors": 143.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 465.0, "Total Spend": 2540.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.95, "MEDIAN_SPEND_PER_CUSTOMER": 99.95 }, "geometry": { "type": "Point", "coordinates": [ -75.145456, 39.951787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.916033, "LONGITUDE": -75.188037, "DATE_RANGE_START": 2020, "Total Visits": 3962.0, "Total Visitors": 2765.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 49698.0, "Total Transactions": 425.0, "Total Customers": 302.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.99, "MEDIAN_SPEND_PER_CUSTOMER": 101.45 }, "geometry": { "type": "Point", "coordinates": [ -75.188037, 39.916033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "LOCATION_NAME": "Dollar Value", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 175.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 12.0, "Total Spend": 7226.0, "Total Transactions": 331.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.68, "MEDIAN_SPEND_PER_CUSTOMER": 17.24 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040921, "LONGITUDE": -75.065658, "DATE_RANGE_START": 2020, "Total Visits": 482.0, "Total Visitors": 308.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 157.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.79, "MEDIAN_SPEND_PER_CUSTOMER": 9.56 }, "geometry": { "type": "Point", "coordinates": [ -75.065658, 40.040921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2020, "Total Visits": 788.0, "Total Visitors": 470.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3769.0, "Total Transactions": 85.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.88, "MEDIAN_SPEND_PER_CUSTOMER": 22.85 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2020, "Total Visits": 2164.0, "Total Visitors": 1356.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6516.0, "Total Transactions": 284.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.81, "MEDIAN_SPEND_PER_CUSTOMER": 16.91 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-92k", "LOCATION_NAME": "Sephora", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951634, "LONGITUDE": -75.155721, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 14413.0, "Total Transactions": 179.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.02, "MEDIAN_SPEND_PER_CUSTOMER": 61.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155721, 39.951634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.970561, "LONGITUDE": -75.155313, "DATE_RANGE_START": 2020, "Total Visits": 171.0, "Total Visitors": 153.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 450.0, "Total Transactions": 54.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 7.05 }, "geometry": { "type": "Point", "coordinates": [ -75.155313, 39.970561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "LOCATION_NAME": "Pizzeria Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1069.0, "Total Transactions": 52.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.87, "MEDIAN_SPEND_PER_CUSTOMER": 21.56 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04622, "LONGITUDE": -75.195937, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 22.0, "POI_CBG": 421010236003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1712.0, "Total Transactions": 103.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.07, "MEDIAN_SPEND_PER_CUSTOMER": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.195937, 40.04622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 24.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6868.0, "Total Transactions": 119.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.99, "MEDIAN_SPEND_PER_CUSTOMER": 54.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-phz-tgk", "LOCATION_NAME": "Av Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.996949, "LONGITUDE": -75.112156, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010188005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 161.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112156, 39.996949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085814, "LONGITUDE": -74.963569, "DATE_RANGE_START": 2020, "Total Visits": 3146.0, "Total Visitors": 2441.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 26.0, "Total Spend": 24623.0, "Total Transactions": 369.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.08, "MEDIAN_SPEND_PER_CUSTOMER": 58.95 }, "geometry": { "type": "Point", "coordinates": [ -74.963569, 40.085814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050125, "LONGITUDE": -75.141867, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 181.0, "POI_CBG": 421010268004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1587.0, "Total Transactions": 147.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.36, "MEDIAN_SPEND_PER_CUSTOMER": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.141867, 40.050125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "LOCATION_NAME": "Le Viet Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 135.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 664.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.35, "MEDIAN_SPEND_PER_CUSTOMER": 29.79 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dw2-7yv", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958784, "LONGITUDE": -75.241349, "DATE_RANGE_START": 2020, "Total Visits": 449.0, "Total Visitors": 163.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 484.0, "Total Spend": 600.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.6, "MEDIAN_SPEND_PER_CUSTOMER": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.241349, 39.958784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-r49", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044228, "LONGITUDE": -75.087251, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 60.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 60.0, "Total Spend": 7295.0, "Total Transactions": 268.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.12, "MEDIAN_SPEND_PER_CUSTOMER": 28.52 }, "geometry": { "type": "Point", "coordinates": [ -75.087251, 40.044228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055857, "LONGITUDE": -75.157863, "DATE_RANGE_START": 2020, "Total Visits": 828.0, "Total Visitors": 564.0, "POI_CBG": 421010265006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7251.0, "Total Transactions": 607.0, "Total Customers": 480.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.93, "MEDIAN_SPEND_PER_CUSTOMER": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.157863, 40.055857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2020, "Total Visits": 542.0, "Total Visitors": 496.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5894.0, "Total Transactions": 480.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.68, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 113.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7039.0, "Total Transactions": 955.0, "Total Customers": 526.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.7, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 60.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8627.0, "Total Transactions": 341.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.64, "MEDIAN_SPEND_PER_CUSTOMER": 28.95 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.049354, "LONGITUDE": -74.989522, "DATE_RANGE_START": 2020, "Total Visits": 1125.0, "Total Visitors": 687.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 18207.0, "Total Transactions": 1923.0, "Total Customers": 788.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.76, "MEDIAN_SPEND_PER_CUSTOMER": 11.97 }, "geometry": { "type": "Point", "coordinates": [ -74.989522, 40.049354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-fvf", "LOCATION_NAME": "Jennifer Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.944398, "LONGITUDE": -75.216558, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 89.0, "POI_CBG": 421010078002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 344.0, "Total Transactions": 28.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.9, "MEDIAN_SPEND_PER_CUSTOMER": 11.63 }, "geometry": { "type": "Point", "coordinates": [ -75.216558, 39.944398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm3-vpv", "LOCATION_NAME": "Mesh Vintage", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.927333, "LONGITUDE": -75.166704, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 146.0, "Total Spend": 399.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166704, 39.927333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-phz-tjv", "LOCATION_NAME": "Pizza express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998436, "LONGITUDE": -75.110266, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010192004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1191.0, "Total Transactions": 69.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.42, "MEDIAN_SPEND_PER_CUSTOMER": 15.88 }, "geometry": { "type": "Point", "coordinates": [ -75.110266, 39.998436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-rhq", "LOCATION_NAME": "Moonshine Philly", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925012, "LONGITUDE": -75.151601, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 32.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 31.0, "Total Spend": 13579.0, "Total Transactions": 214.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.69, "MEDIAN_SPEND_PER_CUSTOMER": 65.15 }, "geometry": { "type": "Point", "coordinates": [ -75.151601, 39.925012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2020, "Total Visits": 848.0, "Total Visitors": 687.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 83554.0, "Total Transactions": 4988.0, "Total Customers": 2666.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.3, "MEDIAN_SPEND_PER_CUSTOMER": 20.69 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2020, "Total Visits": 312.0, "Total Visitors": 181.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1242.0, "Total Transactions": 153.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.84, "MEDIAN_SPEND_PER_CUSTOMER": 12.63 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "LOCATION_NAME": "Luigi's Pizza Fresca", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2020, "Total Visits": 308.0, "Total Visitors": 244.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1978.0, "Total Transactions": 75.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.52, "MEDIAN_SPEND_PER_CUSTOMER": 26.32 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 155.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 280.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 67.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2443.0, "Total Transactions": 117.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.72, "MEDIAN_SPEND_PER_CUSTOMER": 17.46 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.067745, "LONGITUDE": -75.198, "DATE_RANGE_START": 2020, "Total Visits": 353.0, "Total Visitors": 294.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 10603.0, "Total Transactions": 403.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.48, "MEDIAN_SPEND_PER_CUSTOMER": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.198, 40.067745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "LOCATION_NAME": "Drinkers Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952101, "LONGITUDE": -75.17208, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 123.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 26.0, "Total Spend": 4463.0, "Total Transactions": 95.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.34, "MEDIAN_SPEND_PER_CUSTOMER": 34.34 }, "geometry": { "type": "Point", "coordinates": [ -75.17208, 39.952101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm7-qj9", "LOCATION_NAME": "Cafe y Chocolate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924573, "LONGITUDE": -75.172685, "DATE_RANGE_START": 2020, "Total Visits": 304.0, "Total Visitors": 165.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 1273.0, "Total Spend": 1711.0, "Total Transactions": 52.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.78, "MEDIAN_SPEND_PER_CUSTOMER": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172685, 39.924573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032699, "LONGITUDE": -75.063191, "DATE_RANGE_START": 2020, "Total Visits": 494.0, "Total Visitors": 385.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1391.0, "Total Transactions": 97.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.35, "MEDIAN_SPEND_PER_CUSTOMER": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.063191, 40.032699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "LOCATION_NAME": "Crown Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2020, "Total Visits": 780.0, "Total Visitors": 488.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1938.0, "Total Transactions": 66.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.54, "MEDIAN_SPEND_PER_CUSTOMER": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "LOCATION_NAME": "Bleu Martini", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949349, "LONGITUDE": -75.144205, "DATE_RANGE_START": 2020, "Total Visits": 782.0, "Total Visitors": 526.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 8956.0, "Total Transactions": 129.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.76, "MEDIAN_SPEND_PER_CUSTOMER": 54.63 }, "geometry": { "type": "Point", "coordinates": [ -75.144205, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-q75", "LOCATION_NAME": "Stacy's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979079, "LONGITUDE": -75.268686, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 69.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 449.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.18, "MEDIAN_SPEND_PER_CUSTOMER": 35.28 }, "geometry": { "type": "Point", "coordinates": [ -75.268686, 39.979079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "LOCATION_NAME": "Penrose Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2020, "Total Visits": 601.0, "Total Visitors": 472.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 9968.0, "Total Transactions": 296.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.29, "MEDIAN_SPEND_PER_CUSTOMER": 36.24 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-mzf", "LOCATION_NAME": "4 Seasons", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003248, "LONGITUDE": -75.124064, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2327.0, "Total Transactions": 187.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.61, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124064, 40.003248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "LOCATION_NAME": "Tio Flores", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94381, "LONGITUDE": -75.168972, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 147.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 22206.0, "Total Transactions": 459.0, "Total Customers": 377.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.95, "MEDIAN_SPEND_PER_CUSTOMER": 48.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168972, 39.94381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9p-pvz", "LOCATION_NAME": "Da Franco Pizzeria & Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.105135, "LONGITUDE": -75.033737, "DATE_RANGE_START": 2020, "Total Visits": 373.0, "Total Visitors": 262.0, "POI_CBG": 421010356022.0, "MEDIAN_DWELL": 19.0, "Total Spend": 929.0, "Total Transactions": 38.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.95, "MEDIAN_SPEND_PER_CUSTOMER": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.033737, 40.105135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-zvf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940697, "LONGITUDE": -75.166565, "DATE_RANGE_START": 2020, "Total Visits": 1582.0, "Total Visitors": 1175.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 13290.0, "Total Transactions": 895.0, "Total Customers": 689.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.166565, 39.940697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 145.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4907.0, "Total Transactions": 387.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.54, "MEDIAN_SPEND_PER_CUSTOMER": 11.48 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-k75", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.08259, "LONGITUDE": -75.022988, "DATE_RANGE_START": 2020, "Total Visits": 14526.0, "Total Visitors": 9359.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1149.0, "Total Transactions": 129.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.78, "MEDIAN_SPEND_PER_CUSTOMER": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.022988, 40.08259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-tgk", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035436, "LONGITUDE": -75.099754, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 73.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 91.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.35, "MEDIAN_SPEND_PER_CUSTOMER": 5.35 }, "geometry": { "type": "Point", "coordinates": [ -75.099754, 40.035436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "LOCATION_NAME": "Main Street Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.026391, "LONGITUDE": -75.226268, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 89.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2651.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.54, "MEDIAN_SPEND_PER_CUSTOMER": 83.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226268, 40.026391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "LOCATION_NAME": "A Z Budget", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 75.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 72.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992401, "LONGITUDE": -75.110955, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 220.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 145.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.44, "MEDIAN_SPEND_PER_CUSTOMER": 6.44 }, "geometry": { "type": "Point", "coordinates": [ -75.110955, 39.992401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pm9-tqf", "LOCATION_NAME": "Jefferson Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949885, "LONGITUDE": -75.154967, "DATE_RANGE_START": 2020, "Total Visits": 3676.0, "Total Visitors": 2269.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 85.0, "Total Spend": 4623.0, "Total Transactions": 163.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.01, "MEDIAN_SPEND_PER_CUSTOMER": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154967, 39.949885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "LOCATION_NAME": "Johns Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03316, "LONGITUDE": -75.177034, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 135.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8346.0, "Total Transactions": 282.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.72, "MEDIAN_SPEND_PER_CUSTOMER": 27.67 }, "geometry": { "type": "Point", "coordinates": [ -75.177034, 40.03316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-s89", "LOCATION_NAME": "SuitSupply", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.948725, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2020, "Total Visits": 385.0, "Total Visitors": 304.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2825.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.0, "MEDIAN_SPEND_PER_CUSTOMER": 99.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.948725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "LOCATION_NAME": "Tommy Hilfiger", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089952, "LONGITUDE": -74.962035, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 71.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 9082.0, "Total Transactions": 137.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.97, "MEDIAN_SPEND_PER_CUSTOMER": 59.25 }, "geometry": { "type": "Point", "coordinates": [ -74.962035, 40.089952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-5xq", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.051379, "LONGITUDE": -75.010945, "DATE_RANGE_START": 2020, "Total Visits": 514.0, "Total Visitors": 381.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 507.0, "Total Transactions": 40.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.84, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010945, 40.051379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "LOCATION_NAME": "Crunchik'n", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2020, "Total Visits": 981.0, "Total Visitors": 683.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 167.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.48, "MEDIAN_SPEND_PER_CUSTOMER": 11.48 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-5zz", "LOCATION_NAME": "The Dining Car & Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050127, "LONGITUDE": -75.01115, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 173.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 222.0, "Total Spend": 1226.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.71, "MEDIAN_SPEND_PER_CUSTOMER": 42.71 }, "geometry": { "type": "Point", "coordinates": [ -75.01115, 40.050127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "LOCATION_NAME": "Sky Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 87.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3204.0, "Total Transactions": 81.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.91305, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2020, "Total Visits": 459.0, "Total Visitors": 357.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1757.0, "Total Transactions": 99.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 14.64 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.91305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "LOCATION_NAME": "Kitchen Kapers", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 218.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 626.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2020, "Total Visits": 1173.0, "Total Visitors": 715.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 382.0, "Total Spend": 3423.0, "Total Transactions": 77.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.31, "MEDIAN_SPEND_PER_CUSTOMER": 30.35 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006873, "LONGITUDE": -75.123103, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 149.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4481.0, "Total Transactions": 607.0, "Total Customers": 306.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.123103, 40.006873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "LOCATION_NAME": "Pizza Boli's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010190001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 343.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.72, "MEDIAN_SPEND_PER_CUSTOMER": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm6-gkz", "LOCATION_NAME": "South View Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919441, "LONGITUDE": -75.153896, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 20.0, "POI_CBG": 421010042024.0, "MEDIAN_DWELL": 48.0, "Total Spend": 893.0, "Total Transactions": 44.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.45, "MEDIAN_SPEND_PER_CUSTOMER": 27.15 }, "geometry": { "type": "Point", "coordinates": [ -75.153896, 39.919441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmb-gkz", "LOCATION_NAME": "Effie's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945113, "LONGITUDE": -75.160611, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 34.0, "Total Spend": 4249.0, "Total Transactions": 54.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.96, "MEDIAN_SPEND_PER_CUSTOMER": 78.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160611, 39.945113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgm-68v", "LOCATION_NAME": "Foghorn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009232, "LONGITUDE": -75.194181, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 24.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1843.0, "Total Transactions": 73.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.84, "MEDIAN_SPEND_PER_CUSTOMER": 26.73 }, "geometry": { "type": "Point", "coordinates": [ -75.194181, 40.009232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "LOCATION_NAME": "Hoagie Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 24.0, "POI_CBG": 421010266007.0, "MEDIAN_DWELL": 207.0, "Total Spend": 2743.0, "Total Transactions": 159.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.77, "MEDIAN_SPEND_PER_CUSTOMER": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-p9z", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953614, "LONGITUDE": -75.202983, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 26.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2786.0, "Total Transactions": 147.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.09, "MEDIAN_SPEND_PER_CUSTOMER": 16.09 }, "geometry": { "type": "Point", "coordinates": [ -75.202983, 39.953614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pgg-qs5", "LOCATION_NAME": "32nd Street Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.005082, "LONGITUDE": -75.181898, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 28.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 90.0, "Total Spend": 291.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.181898, 40.005082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-w8v", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955482, "LONGITUDE": -75.18177, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 7034.0, "Total Transactions": 746.0, "Total Customers": 625.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.41, "MEDIAN_SPEND_PER_CUSTOMER": 9.28 }, "geometry": { "type": "Point", "coordinates": [ -75.18177, 39.955482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pgb-tsq", "LOCATION_NAME": "Spring Garden Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.962555, "LONGITUDE": -75.157889, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 113.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4897.0, "Total Transactions": 69.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.07, "MEDIAN_SPEND_PER_CUSTOMER": 42.07 }, "geometry": { "type": "Point", "coordinates": [ -75.157889, 39.962555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.91709, "LONGITUDE": -75.185434, "DATE_RANGE_START": 2020, "Total Visits": 633.0, "Total Visitors": 548.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 12259.0, "Total Transactions": 335.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 26.82 }, "geometry": { "type": "Point", "coordinates": [ -75.185434, 39.91709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "LOCATION_NAME": "Love Vape", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 77.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2185.0, "Total Transactions": 64.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.13, "MEDIAN_SPEND_PER_CUSTOMER": 40.48 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977256, "LONGITUDE": -75.226088, "DATE_RANGE_START": 2020, "Total Visits": 212.0, "Total Visitors": 165.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1809.0, "Total Transactions": 282.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.03, "MEDIAN_SPEND_PER_CUSTOMER": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226088, 39.977256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "LOCATION_NAME": "Alexa Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010308003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2052.0, "Total Transactions": 60.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "LOCATION_NAME": "Ristorante Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2496.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.4, "MEDIAN_SPEND_PER_CUSTOMER": 95.85 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "LOCATION_NAME": "Boostin' Bowls", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 4758.0, "Total Transactions": 286.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.68, "MEDIAN_SPEND_PER_CUSTOMER": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7w-59f", "LOCATION_NAME": "Espresso Cafe & Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058604, "LONGITUDE": -75.059473, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010336002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 498.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.5, "MEDIAN_SPEND_PER_CUSTOMER": 125.5 }, "geometry": { "type": "Point", "coordinates": [ -75.059473, 40.058604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "LOCATION_NAME": "Morimoto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 77.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 148.0, "Total Spend": 6326.0, "Total Transactions": 48.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.69, "MEDIAN_SPEND_PER_CUSTOMER": 102.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-f75", "LOCATION_NAME": "Beer City", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.972301, "LONGITUDE": -75.125884, "DATE_RANGE_START": 2020, "Total Visits": 399.0, "Total Visitors": 210.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 67.0, "Total Spend": 21257.0, "Total Transactions": 754.0, "Total Customers": 472.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 30.72 }, "geometry": { "type": "Point", "coordinates": [ -75.125884, 39.972301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02088, "LONGITUDE": -75.134701, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 220.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1260.0, "Total Transactions": 66.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.81 }, "geometry": { "type": "Point", "coordinates": [ -75.134701, 40.02088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2020, "Total Visits": 1882.0, "Total Visitors": 1602.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 44454.0, "Total Transactions": 1193.0, "Total Customers": 1044.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.27, "MEDIAN_SPEND_PER_CUSTOMER": 27.92 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2020, "Total Visits": 647.0, "Total Visitors": 570.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 6.0, "Total Spend": 12407.0, "Total Transactions": 248.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.52, "MEDIAN_SPEND_PER_CUSTOMER": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9k-t9z", "LOCATION_NAME": "Millevoi Brothers", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.108397, "LONGITUDE": -75.000602, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 197.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6315.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 381.58, "MEDIAN_SPEND_PER_CUSTOMER": 320.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000602, 40.108397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-yjv", "LOCATION_NAME": "LL Flooring", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.927832, "LONGITUDE": -75.145672, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 250.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1838.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.66, "MEDIAN_SPEND_PER_CUSTOMER": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.145672, 39.927832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "LOCATION_NAME": "S and J Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948539, "LONGITUDE": -75.227093, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 101.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3389.0, "Total Transactions": 73.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.54, "MEDIAN_SPEND_PER_CUSTOMER": 36.88 }, "geometry": { "type": "Point", "coordinates": [ -75.227093, 39.948539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22n@63s-dw9-7nq", "LOCATION_NAME": "Sunglass Hut", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.873547, "LONGITUDE": -75.247282, "DATE_RANGE_START": 2020, "Total Visits": 2126.0, "Total Visitors": 1949.0, "POI_CBG": 420459800001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 1309.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 329.82, "MEDIAN_SPEND_PER_CUSTOMER": 329.82 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.873547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7v-skf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055128, "LONGITUDE": -75.073724, "DATE_RANGE_START": 2020, "Total Visits": 1395.0, "Total Visitors": 939.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1777.0, "Total Transactions": 93.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.14 }, "geometry": { "type": "Point", "coordinates": [ -75.073724, 40.055128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "LOCATION_NAME": "Express Fuel", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026572, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2020, "Total Visits": 193.0, "Total Visitors": 149.0, "POI_CBG": 421010302004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3981.0, "Total Transactions": 278.0, "Total Customers": 189.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.28, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2020, "Total Visits": 889.0, "Total Visitors": 756.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3595.0, "Total Transactions": 66.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.95, "MEDIAN_SPEND_PER_CUSTOMER": 56.92 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 351.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 51299.0, "Total Transactions": 1606.0, "Total Customers": 929.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.78, "MEDIAN_SPEND_PER_CUSTOMER": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-gkz", "LOCATION_NAME": "Nifty Fifty's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079457, "LONGITUDE": -75.025402, "DATE_RANGE_START": 2020, "Total Visits": 351.0, "Total Visitors": 304.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 3939.0, "Total Transactions": 129.0, "Total Customers": 121.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.57, "MEDIAN_SPEND_PER_CUSTOMER": 25.57 }, "geometry": { "type": "Point", "coordinates": [ -75.025402, 40.079457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-33q", "LOCATION_NAME": "Capital Auto Auction", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.025317, "LONGITUDE": -75.026634, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 83.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 1399.0, "Total Transactions": 34.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.026634, 40.025317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgf-kj9", "LOCATION_NAME": "Wheel Fun Rentals Boathouse Row", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.969459, "LONGITUDE": -75.187508, "DATE_RANGE_START": 2020, "Total Visits": 87.0, "Total Visitors": 79.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5876.0, "Total Transactions": 181.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.16, "MEDIAN_SPEND_PER_CUSTOMER": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.187508, 39.969459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 77.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 522.0, "Total Spend": 4017.0, "Total Transactions": 99.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.53, "MEDIAN_SPEND_PER_CUSTOMER": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7v-f2k", "LOCATION_NAME": "Bob's Discount Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.051318, "LONGITUDE": -75.065293, "DATE_RANGE_START": 2020, "Total Visits": 2882.0, "Total Visitors": 2354.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 21782.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 1115.1, "MEDIAN_SPEND_PER_CUSTOMER": 1115.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065293, 40.051318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dy9", "LOCATION_NAME": "Firestone Complete Auto Care", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052472, "LONGITUDE": -75.06646, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 95.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 1281.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.3, "MEDIAN_SPEND_PER_CUSTOMER": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06646, 40.052472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwg-f4v", "LOCATION_NAME": "Lucky Star Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913515, "LONGITUDE": -75.242295, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 157.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3072.0, "Total Transactions": 272.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.79 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.913515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2020, "Total Visits": 488.0, "Total Visitors": 375.0, "POI_CBG": 421010061001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2949.0, "Total Transactions": 198.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2020, "Total Visits": 2108.0, "Total Visitors": 1276.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 250419.0, "Total Transactions": 6765.0, "Total Customers": 3706.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.93, "MEDIAN_SPEND_PER_CUSTOMER": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2020, "Total Visits": 1213.0, "Total Visitors": 768.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 94.0, "Total Spend": 20204.0, "Total Transactions": 407.0, "Total Customers": 345.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.03, "MEDIAN_SPEND_PER_CUSTOMER": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962408, "LONGITUDE": -75.163643, "DATE_RANGE_START": 2020, "Total Visits": 240.0, "Total Visitors": 131.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 5647.0, "Total Transactions": 996.0, "Total Customers": 427.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.71, "MEDIAN_SPEND_PER_CUSTOMER": 7.96 }, "geometry": { "type": "Point", "coordinates": [ -75.163643, 39.962408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2020, "Total Visits": 492.0, "Total Visitors": 375.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9830.0, "Total Transactions": 1489.0, "Total Customers": 673.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.29, "MEDIAN_SPEND_PER_CUSTOMER": 8.72 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5mk", "LOCATION_NAME": "Fogo de Chão", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950928, "LONGITUDE": -75.162963, "DATE_RANGE_START": 2020, "Total Visits": 9637.0, "Total Visitors": 6374.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 5138.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 116.11, "MEDIAN_SPEND_PER_CUSTOMER": 116.11 }, "geometry": { "type": "Point", "coordinates": [ -75.162963, 39.950928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9w-q4v", "LOCATION_NAME": "Cafe Michelangelo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.12143, "LONGITUDE": -75.016007, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 141.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 7373.0, "Total Transactions": 143.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.91, "MEDIAN_SPEND_PER_CUSTOMER": 50.22 }, "geometry": { "type": "Point", "coordinates": [ -75.016007, 40.12143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "LOCATION_NAME": "Rice & Mix", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 87.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1848.0, "Total Transactions": 101.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "LOCATION_NAME": "DiNapoli Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 171.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1789.0, "Total Transactions": 62.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.88, "MEDIAN_SPEND_PER_CUSTOMER": 27.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2020, "Total Visits": 552.0, "Total Visitors": 443.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7510.0, "Total Transactions": 582.0, "Total Customers": 385.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.73, "MEDIAN_SPEND_PER_CUSTOMER": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 111.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 390.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.98, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959088, "LONGITUDE": -75.1625, "DATE_RANGE_START": 2020, "Total Visits": 1280.0, "Total Visitors": 570.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 297.0, "Total Spend": 5859.0, "Total Transactions": 373.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.45, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.1625, 39.959088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 87.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 296.0, "Total Spend": 431.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.25, "MEDIAN_SPEND_PER_CUSTOMER": 37.25 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-t7q", "LOCATION_NAME": "Paprica Modern Mediterranean Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949133, "LONGITUDE": -75.154633, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 105.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 58.0, "Total Spend": 411.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.15, "MEDIAN_SPEND_PER_CUSTOMER": 50.29 }, "geometry": { "type": "Point", "coordinates": [ -75.154633, 39.949133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2020, "Total Visits": 189.0, "Total Visitors": 161.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 10.0, "Total Spend": 897.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.18, "MEDIAN_SPEND_PER_CUSTOMER": 46.84 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p72-5s5", "LOCATION_NAME": "Three Monkeys Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.053948, "LONGITUDE": -74.983889, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 177.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 344.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.39, "MEDIAN_SPEND_PER_CUSTOMER": 56.39 }, "geometry": { "type": "Point", "coordinates": [ -74.983889, 40.053948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 167.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 756.0, "Total Transactions": 54.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.97, "MEDIAN_SPEND_PER_CUSTOMER": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949499, "LONGITUDE": -75.166653, "DATE_RANGE_START": 2020, "Total Visits": 447.0, "Total Visitors": 361.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6144.0, "Total Transactions": 518.0, "Total Customers": 381.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.7, "MEDIAN_SPEND_PER_CUSTOMER": 11.62 }, "geometry": { "type": "Point", "coordinates": [ -75.166653, 39.949499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956616, "LONGITUDE": -75.194139, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 131.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7618.0, "Total Transactions": 1256.0, "Total Customers": 536.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.74, "MEDIAN_SPEND_PER_CUSTOMER": 7.92 }, "geometry": { "type": "Point", "coordinates": [ -75.194139, 39.956616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 222.0, "POI_CBG": 421010268003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4485.0, "Total Transactions": 657.0, "Total Customers": 282.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm9-y9z", "LOCATION_NAME": "Lil' Pop Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94178, "LONGITUDE": -75.149245, "DATE_RANGE_START": 2020, "Total Visits": 464.0, "Total Visitors": 437.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 739.0, "Total Transactions": 83.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.99, "MEDIAN_SPEND_PER_CUSTOMER": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.94178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg2-zs5", "LOCATION_NAME": "Mount Airy Tap Room", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.053904, "LONGITUDE": -75.194197, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010388004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9402.0, "Total Transactions": 157.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.92, "MEDIAN_SPEND_PER_CUSTOMER": 72.32 }, "geometry": { "type": "Point", "coordinates": [ -75.194197, 40.053904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-w49", "LOCATION_NAME": "The Royal Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948373, "LONGITUDE": -75.174503, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 12.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 577.0, "Total Spend": 181.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.7, "MEDIAN_SPEND_PER_CUSTOMER": 45.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174503, 39.948373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-ph6-gzf", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986348, "LONGITUDE": -75.231742, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 14.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 109.0, "Total Spend": 3328.0, "Total Transactions": 131.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.52, "MEDIAN_SPEND_PER_CUSTOMER": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.231742, 39.986348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "LOCATION_NAME": "Sunglass Hut", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952036, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 821.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 206.82, "MEDIAN_SPEND_PER_CUSTOMER": 206.82 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p9w-dvz", "LOCATION_NAME": "Angelo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.121593, "LONGITUDE": -75.03516, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010358002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4776.0, "Total Transactions": 175.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.48, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03516, 40.121593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-7t9", "LOCATION_NAME": "Rybread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967542, "LONGITUDE": -75.176022, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 12.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 150.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 39.967542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-t5f", "LOCATION_NAME": "Golden Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965831, "LONGITUDE": -75.160375, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 26.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 973.0, "Total Transactions": 38.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.12, "MEDIAN_SPEND_PER_CUSTOMER": 21.12 }, "geometry": { "type": "Point", "coordinates": [ -75.160375, 39.965831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8m-v2k", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.029571, "LONGITUDE": -75.058564, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1576.0, "Total Transactions": 177.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.32 }, "geometry": { "type": "Point", "coordinates": [ -75.058564, 40.029571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pp2-47q", "LOCATION_NAME": "Tinys Bottle Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.982331, "LONGITUDE": -75.103167, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 36.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 350.0, "Total Spend": 2222.0, "Total Transactions": 46.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.5, "MEDIAN_SPEND_PER_CUSTOMER": 49.61 }, "geometry": { "type": "Point", "coordinates": [ -75.103167, 39.982331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "LOCATION_NAME": "King Food Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038528, "LONGITUDE": -75.036845, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 44.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 33.0, "Total Spend": 943.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.85, "MEDIAN_SPEND_PER_CUSTOMER": 16.96 }, "geometry": { "type": "Point", "coordinates": [ -75.036845, 40.038528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-k75", "LOCATION_NAME": "Lendy's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.988027, "LONGITUDE": -75.143801, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010164004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 245.0, "Total Transactions": 16.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.143801, 39.988027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-4gk", "LOCATION_NAME": "I Heart Cambodia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921392, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010041012.0, "MEDIAN_DWELL": 27.0, "Total Spend": 455.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.81, "MEDIAN_SPEND_PER_CUSTOMER": 33.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.921392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "LOCATION_NAME": "Menagerie Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 14.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 2401.0, "Total Transactions": 276.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983085, "LONGITUDE": -75.241704, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 32.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 66.0, "Total Spend": 14923.0, "Total Transactions": 578.0, "Total Customers": 429.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 27.95 }, "geometry": { "type": "Point", "coordinates": [ -75.241704, 39.983085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "LOCATION_NAME": "City View Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 48.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 28306.0, "Total Transactions": 1219.0, "Total Customers": 873.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.21, "MEDIAN_SPEND_PER_CUSTOMER": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "LOCATION_NAME": "Bottle Bar East", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 50.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 36392.0, "Total Transactions": 1000.0, "Total Customers": 584.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "LOCATION_NAME": "Lombard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": null, "Total Spend": 851.0, "Total Transactions": 141.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-wzf", "LOCATION_NAME": "Mayfair Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038525, "LONGITUDE": -75.036899, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 243.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.65, "MEDIAN_SPEND_PER_CUSTOMER": 18.73 }, "geometry": { "type": "Point", "coordinates": [ -75.036899, 40.038525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-j35", "LOCATION_NAME": "Paddy's Old City Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95373, "LONGITUDE": -75.143964, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1191.0, "Total Transactions": 34.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.08, "MEDIAN_SPEND_PER_CUSTOMER": 30.46 }, "geometry": { "type": "Point", "coordinates": [ -75.143964, 39.95373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p9p-z2k", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101427, "LONGITUDE": -75.028593, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 145.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.89, "MEDIAN_SPEND_PER_CUSTOMER": 36.42 }, "geometry": { "type": "Point", "coordinates": [ -75.028593, 40.101427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "LOCATION_NAME": "Le Meridien", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2020, "Total Visits": 653.0, "Total Visitors": 316.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 115.0, "Total Spend": 6717.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 217.81, "MEDIAN_SPEND_PER_CUSTOMER": 207.34 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pnx-c89", "LOCATION_NAME": "Cheu Fishtown", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972312, "LONGITUDE": -75.134585, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 252.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 528.0, "Total Transactions": 22.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.28, "MEDIAN_SPEND_PER_CUSTOMER": 133.06 }, "geometry": { "type": "Point", "coordinates": [ -75.134585, 39.972312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-3bk", "LOCATION_NAME": "Founded Coffee & Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012531, "LONGITUDE": -75.183909, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010207003.0, "MEDIAN_DWELL": 337.0, "Total Spend": 2801.0, "Total Transactions": 159.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.26, "MEDIAN_SPEND_PER_CUSTOMER": 21.19 }, "geometry": { "type": "Point", "coordinates": [ -75.183909, 40.012531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "LOCATION_NAME": "Pasqually's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 44.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 35231.0, "Total Transactions": 1407.0, "Total Customers": 744.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.66 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tn5", "LOCATION_NAME": "Unclaimed Diamonds", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949045, "LONGITUDE": -75.153751, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 62.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 22404.0, "Total Transactions": 40.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 400.0, "MEDIAN_SPEND_PER_CUSTOMER": 400.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153751, 39.949045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pj6-6hq", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042687, "LONGITUDE": -75.109486, "DATE_RANGE_START": 2020, "Total Visits": 181.0, "Total Visitors": 87.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 90.0, "Total Spend": 3277.0, "Total Transactions": 46.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.35, "MEDIAN_SPEND_PER_CUSTOMER": 60.35 }, "geometry": { "type": "Point", "coordinates": [ -75.109486, 40.042687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956525, "LONGITUDE": -75.195111, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 1507.0, "Total Transactions": 175.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.73, "MEDIAN_SPEND_PER_CUSTOMER": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.195111, 39.956525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 66.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 211.0, "Total Spend": 3722.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.48, "MEDIAN_SPEND_PER_CUSTOMER": 127.35 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.032157, "LONGITUDE": -75.050449, "DATE_RANGE_START": 2020, "Total Visits": 613.0, "Total Visitors": 482.0, "POI_CBG": 421010325001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3715.0, "Total Transactions": 206.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.56, "MEDIAN_SPEND_PER_CUSTOMER": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050449, 40.032157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-5vf", "LOCATION_NAME": "Wellcare Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048598, "LONGITUDE": -75.061857, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 101.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1135.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.29, "MEDIAN_SPEND_PER_CUSTOMER": 62.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061857, 40.048598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y7q", "LOCATION_NAME": "Day N Nite", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.954252, "LONGITUDE": -75.1549, "DATE_RANGE_START": 2020, "Total Visits": 2451.0, "Total Visitors": 1481.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 201.0, "Total Spend": 1763.0, "Total Transactions": 30.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1549, 39.954252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgj-cbk", "LOCATION_NAME": "Pazzo Pazzo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979011, "LONGITUDE": -75.161757, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 147.0, "POI_CBG": 421010147001.0, "MEDIAN_DWELL": 185.0, "Total Spend": 2727.0, "Total Transactions": 193.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.92 }, "geometry": { "type": "Point", "coordinates": [ -75.161757, 39.979011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pgb-s5z", "LOCATION_NAME": "Angry Deekin Ribs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961929, "LONGITUDE": -75.155204, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 244.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 86.0, "Total Spend": 248.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.58, "MEDIAN_SPEND_PER_CUSTOMER": 62.58 }, "geometry": { "type": "Point", "coordinates": [ -75.155204, 39.961929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087035, "LONGITUDE": -74.960571, "DATE_RANGE_START": 2020, "Total Visits": 1878.0, "Total Visitors": 1532.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5764.0, "Total Transactions": 107.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.35, "MEDIAN_SPEND_PER_CUSTOMER": 37.85 }, "geometry": { "type": "Point", "coordinates": [ -74.960571, 40.087035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "LOCATION_NAME": "Zumiez", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 381.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 13039.0, "Total Transactions": 230.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.82, "MEDIAN_SPEND_PER_CUSTOMER": 54.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "LOCATION_NAME": "Mission BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2020, "Total Visits": 802.0, "Total Visitors": 701.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1109.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.61, "MEDIAN_SPEND_PER_CUSTOMER": 21.63 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958195, "LONGITUDE": -75.208247, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 157.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6693.0, "Total Transactions": 854.0, "Total Customers": 409.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.8, "MEDIAN_SPEND_PER_CUSTOMER": 8.87 }, "geometry": { "type": "Point", "coordinates": [ -75.208247, 39.958195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96142, "LONGITUDE": -75.144288, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 117.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3859.0, "Total Transactions": 623.0, "Total Customers": 278.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.144288, 39.96142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@63s-dw9-7dv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.877241, "LONGITUDE": -75.244155, "DATE_RANGE_START": 2020, "Total Visits": 1104.0, "Total Visitors": 977.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7522.0, "Total Transactions": 927.0, "Total Customers": 830.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.97, "MEDIAN_SPEND_PER_CUSTOMER": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.244155, 39.877241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-n5z", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954037, "LONGITUDE": -75.200292, "DATE_RANGE_START": 2020, "Total Visits": 592.0, "Total Visitors": 482.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3148.0, "Total Transactions": 492.0, "Total Customers": 322.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.06, "MEDIAN_SPEND_PER_CUSTOMER": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.200292, 39.954037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "LOCATION_NAME": "Higher Grounds", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": null, "Total Spend": 361.0, "Total Transactions": 36.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.92, "MEDIAN_SPEND_PER_CUSTOMER": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "LOCATION_NAME": "Paradise Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010190004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1927.0, "Total Transactions": 71.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.61, "MEDIAN_SPEND_PER_CUSTOMER": 35.39 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-2hq", "LOCATION_NAME": "O Sole Mio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937827, "LONGITUDE": -75.148269, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 14.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": 284.0, "Total Spend": 3197.0, "Total Transactions": 75.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.41, "MEDIAN_SPEND_PER_CUSTOMER": 49.09 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 39.937827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-28v", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978491, "LONGITUDE": -75.153508, "DATE_RANGE_START": 2020, "Total Visits": 490.0, "Total Visitors": 351.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 8368.0, "Total Transactions": 597.0, "Total Customers": 302.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.52, "MEDIAN_SPEND_PER_CUSTOMER": 15.34 }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.978491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pp5-ht9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.983672, "LONGITUDE": -75.115989, "DATE_RANGE_START": 2020, "Total Visits": 917.0, "Total Visitors": 590.0, "POI_CBG": 421010179005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 988.0, "Total Transactions": 32.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.41, "MEDIAN_SPEND_PER_CUSTOMER": 37.53 }, "geometry": { "type": "Point", "coordinates": [ -75.115989, 39.983672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.902552, "LONGITUDE": -75.240445, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 379.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2368.0, "Total Transactions": 64.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.73, "MEDIAN_SPEND_PER_CUSTOMER": 31.46 }, "geometry": { "type": "Point", "coordinates": [ -75.240445, 39.902552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hnq", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952468, "LONGITUDE": -75.173535, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 20.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1062.0, "Total Transactions": 58.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.96, "MEDIAN_SPEND_PER_CUSTOMER": 17.22 }, "geometry": { "type": "Point", "coordinates": [ -75.173535, 39.952468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "LOCATION_NAME": "Muslim Fashion", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2020, "Total Visits": 1040.0, "Total Visitors": 782.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1348.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040673, "LONGITUDE": -75.076835, "DATE_RANGE_START": 2020, "Total Visits": 359.0, "Total Visitors": 280.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1439.0, "Total Transactions": 149.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.4, "MEDIAN_SPEND_PER_CUSTOMER": 8.92 }, "geometry": { "type": "Point", "coordinates": [ -75.076835, 40.040673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.986359, "LONGITUDE": -75.179573, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 93.0, "POI_CBG": 421010151021.0, "MEDIAN_DWELL": 19.0, "Total Spend": 255.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.179573, 39.986359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp4-kfz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.987233, "LONGITUDE": -75.129676, "DATE_RANGE_START": 2020, "Total Visits": 189.0, "Total Visitors": 137.0, "POI_CBG": 421010161004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1146.0, "Total Transactions": 105.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 11.71 }, "geometry": { "type": "Point", "coordinates": [ -75.129676, 39.987233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmd-vj9", "LOCATION_NAME": "Nature's Gallery Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.950794, "LONGITUDE": -75.177008, "DATE_RANGE_START": 2020, "Total Visits": 1296.0, "Total Visitors": 764.0, "POI_CBG": 421010008031.0, "MEDIAN_DWELL": 345.0, "Total Spend": 2499.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177008, 39.950794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pfz-bhq", "LOCATION_NAME": "Bendi", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.025401, "LONGITUDE": -75.22307, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 695.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.5, "MEDIAN_SPEND_PER_CUSTOMER": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22307, 40.025401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-mzf", "LOCATION_NAME": "Cantina Dos Segundos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964821, "LONGITUDE": -75.140233, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 32.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 175.0, "Total Spend": 5934.0, "Total Transactions": 145.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.84, "MEDIAN_SPEND_PER_CUSTOMER": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.140233, 39.964821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-tn5", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948145, "LONGITUDE": -75.153461, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 474.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.96, "MEDIAN_SPEND_PER_CUSTOMER": 11.96 }, "geometry": { "type": "Point", "coordinates": [ -75.153461, 39.948145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-tn5", "LOCATION_NAME": "Fat Salmon Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948136, "LONGITUDE": -75.153395, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4456.0, "Total Transactions": 87.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.11, "MEDIAN_SPEND_PER_CUSTOMER": 70.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153395, 39.948136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj7-2p9", "LOCATION_NAME": "Jerusalem Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.040423, "LONGITUDE": -75.107572, "DATE_RANGE_START": 2020, "Total Visits": 383.0, "Total Visitors": 298.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 7350.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 452.0, "MEDIAN_SPEND_PER_CUSTOMER": 452.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107572, 40.040423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.916081, "LONGITUDE": -75.185496, "DATE_RANGE_START": 2020, "Total Visits": 6094.0, "Total Visitors": 3619.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 141400.0, "Total Transactions": 1582.0, "Total Customers": 953.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.81, "MEDIAN_SPEND_PER_CUSTOMER": 62.06 }, "geometry": { "type": "Point", "coordinates": [ -75.185496, 39.916081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-ty9", "LOCATION_NAME": "Sakura Japanese Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962988, "LONGITUDE": -75.163765, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 8.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 464.0, "Total Spend": 1757.0, "Total Transactions": 58.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.49, "MEDIAN_SPEND_PER_CUSTOMER": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.163765, 39.962988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-nnq", "LOCATION_NAME": "M & M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.02486, "LONGITUDE": -75.210261, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 14.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 281.0, "Total Transactions": 34.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.210261, 40.02486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-wrk", "LOCATION_NAME": "Lulu Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955024, "LONGITUDE": -75.212218, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 14.0, "POI_CBG": 421010086012.0, "MEDIAN_DWELL": 516.0, "Total Spend": 243.0, "Total Transactions": 24.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.7, "MEDIAN_SPEND_PER_CUSTOMER": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.212218, 39.955024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@63s-dvw-f2k", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964788, "LONGITUDE": -75.22346, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 16.0, "POI_CBG": 421010103002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 186.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.95, "MEDIAN_SPEND_PER_CUSTOMER": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.22346, 39.964788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pm6-f2k", "LOCATION_NAME": "Bobs Food Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.920704, "LONGITUDE": -75.15184, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010042012.0, "MEDIAN_DWELL": 960.0, "Total Spend": 338.0, "Total Transactions": 30.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.15184, 39.920704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp5-k2k", "LOCATION_NAME": "Momentos Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988005, "LONGITUDE": -75.109231, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 575.0, "Total Transactions": 32.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.63, "MEDIAN_SPEND_PER_CUSTOMER": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.109231, 39.988005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfz-bx5", "LOCATION_NAME": "Manayunk Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024589, "LONGITUDE": -75.221155, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 60.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3602.0, "Total Transactions": 105.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.8, "MEDIAN_SPEND_PER_CUSTOMER": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.221155, 40.024589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "LOCATION_NAME": "Tires Plus", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 165.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 134.0, "Total Spend": 5157.0, "Total Transactions": 42.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.04, "MEDIAN_SPEND_PER_CUSTOMER": 83.71 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pgg-w8v", "LOCATION_NAME": "Shop Mark Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996139, "LONGITUDE": -75.173204, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 123.0, "POI_CBG": 421010169011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 306.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.98, "MEDIAN_SPEND_PER_CUSTOMER": 76.98 }, "geometry": { "type": "Point", "coordinates": [ -75.173204, 39.996139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.921823, "LONGITUDE": -75.170522, "DATE_RANGE_START": 2020, "Total Visits": 691.0, "Total Visitors": 347.0, "POI_CBG": 421010039012.0, "MEDIAN_DWELL": 13.0, "Total Spend": 832.0, "Total Transactions": 117.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.3, "MEDIAN_SPEND_PER_CUSTOMER": 10.52 }, "geometry": { "type": "Point", "coordinates": [ -75.170522, 39.921823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2020, "Total Visits": 580.0, "Total Visitors": 411.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 710.0, "Total Transactions": 60.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.48, "MEDIAN_SPEND_PER_CUSTOMER": 11.84 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p74-vs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.040935, "LONGITUDE": -75.030449, "DATE_RANGE_START": 2020, "Total Visits": 1532.0, "Total Visitors": 865.0, "POI_CBG": 421010331023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 914.0, "Total Transactions": 50.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.63, "MEDIAN_SPEND_PER_CUSTOMER": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.030449, 40.040935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgg-dy9", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.00283, "LONGITUDE": -75.164018, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 89.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2842.0, "Total Transactions": 171.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.04, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164018, 40.00283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942567, "LONGITUDE": -75.179023, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": null, "Total Spend": 677.0, "Total Transactions": 83.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.86, "MEDIAN_SPEND_PER_CUSTOMER": 8.55 }, "geometry": { "type": "Point", "coordinates": [ -75.179023, 39.942567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-dd9", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991806, "LONGITUDE": -75.113116, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010178003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 649.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.3, "MEDIAN_SPEND_PER_CUSTOMER": 13.54 }, "geometry": { "type": "Point", "coordinates": [ -75.113116, 39.991806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "LOCATION_NAME": "La Calaca Feliz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 14088.0, "Total Transactions": 282.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.08, "MEDIAN_SPEND_PER_CUSTOMER": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "LOCATION_NAME": "Aya Asian Fusion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010330006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2631.0, "Total Transactions": 87.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.95, "MEDIAN_SPEND_PER_CUSTOMER": 27.95 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnw-mzf", "LOCATION_NAME": "Once Worn Consignment", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.964394, "LONGITUDE": -75.140857, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": null, "Total Spend": 1125.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140857, 39.964394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "LOCATION_NAME": "Bleu Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 16.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 718.0, "Total Spend": 1199.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.43, "MEDIAN_SPEND_PER_CUSTOMER": 33.71 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-gp9", "LOCATION_NAME": "Umai Umai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964683, "LONGITUDE": -75.174102, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 18.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 609.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 153.42, "MEDIAN_SPEND_PER_CUSTOMER": 153.42 }, "geometry": { "type": "Point", "coordinates": [ -75.174102, 39.964683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-psq", "LOCATION_NAME": "Magic Noodles", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043529, "LONGITUDE": -75.052298, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 426.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.77, "MEDIAN_SPEND_PER_CUSTOMER": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.052298, 40.043529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 30.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 1407.0, "Total Spend": 14321.0, "Total Transactions": 536.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.72, "MEDIAN_SPEND_PER_CUSTOMER": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "LOCATION_NAME": "Quetzally", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941598, "LONGITUDE": -75.163087, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 148.0, "Total Spend": 1055.0, "Total Transactions": 48.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.81, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.163087, 39.941598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947166, "LONGITUDE": -75.157345, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 28.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2128.0, "Total Transactions": 73.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.46, "MEDIAN_SPEND_PER_CUSTOMER": 19.46 }, "geometry": { "type": "Point", "coordinates": [ -75.157345, 39.947166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phy-mff", "LOCATION_NAME": "Rivas Monica", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.028515, "LONGITUDE": -75.140923, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010283001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1403.0, "Total Transactions": 24.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.57, "MEDIAN_SPEND_PER_CUSTOMER": 65.16 }, "geometry": { "type": "Point", "coordinates": [ -75.140923, 40.028515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 837.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.04, "MEDIAN_SPEND_PER_CUSTOMER": 68.04 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pp4-rp9", "LOCATION_NAME": "Garrisons Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.978687, "LONGITUDE": -75.126187, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 24.0, "POI_CBG": 421010160002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1333.0, "Total Transactions": 38.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.5, "MEDIAN_SPEND_PER_CUSTOMER": 141.88 }, "geometry": { "type": "Point", "coordinates": [ -75.126187, 39.978687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "LOCATION_NAME": "Vientiane Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010161003.0, "MEDIAN_DWELL": null, "Total Spend": 1406.0, "Total Transactions": 24.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.2, "MEDIAN_SPEND_PER_CUSTOMER": 70.41 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p82-nqz", "LOCATION_NAME": "Matz Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.04141, "LONGITUDE": -75.075896, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 32.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 226.0, "Total Spend": 192.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.28, "MEDIAN_SPEND_PER_CUSTOMER": 48.28 }, "geometry": { "type": "Point", "coordinates": [ -75.075896, 40.04141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "LOCATION_NAME": "Hadramout", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 42.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 37.0, "Total Spend": 2861.0, "Total Transactions": 71.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.46, "MEDIAN_SPEND_PER_CUSTOMER": 62.6 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 52.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 388.0, "Total Transactions": 40.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.63, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.991985, "LONGITUDE": -75.178334, "DATE_RANGE_START": 2020, "Total Visits": 736.0, "Total Visitors": 457.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1938.0, "Total Transactions": 64.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.7, "MEDIAN_SPEND_PER_CUSTOMER": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.178334, 39.991985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmd-sbk", "LOCATION_NAME": "Bicycle Therapy", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.945493, "LONGITUDE": -75.178987, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 54.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 254.0, "Total Spend": 269.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.8, "MEDIAN_SPEND_PER_CUSTOMER": 30.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178987, 39.945493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.068776, "LONGITUDE": -75.005362, "DATE_RANGE_START": 2020, "Total Visits": 800.0, "Total Visitors": 647.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8551.0, "Total Transactions": 534.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 20.55 }, "geometry": { "type": "Point", "coordinates": [ -75.005362, 40.068776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2020, "Total Visits": 792.0, "Total Visitors": 526.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 20887.0, "Total Transactions": 1012.0, "Total Customers": 584.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 18.67 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2020, "Total Visits": 1542.0, "Total Visitors": 826.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 21291.0, "Total Transactions": 893.0, "Total Customers": 498.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.18, "MEDIAN_SPEND_PER_CUSTOMER": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2020, "Total Visits": 639.0, "Total Visitors": 502.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1524.0, "Total Transactions": 109.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.64, "MEDIAN_SPEND_PER_CUSTOMER": 10.64 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-p8f-9pv", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.014668, "LONGITUDE": -75.088538, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1466.0, "Total Transactions": 67.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.73, "MEDIAN_SPEND_PER_CUSTOMER": 16.97 }, "geometry": { "type": "Point", "coordinates": [ -75.088538, 40.014668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-3dv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940442, "LONGITUDE": -75.166876, "DATE_RANGE_START": 2020, "Total Visits": 427.0, "Total Visitors": 306.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5831.0, "Total Transactions": 268.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.17, "MEDIAN_SPEND_PER_CUSTOMER": 23.77 }, "geometry": { "type": "Point", "coordinates": [ -75.166876, 39.940442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 143.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 916.0, "Total Transactions": 54.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.35, "MEDIAN_SPEND_PER_CUSTOMER": 15.36 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007477, "LONGITUDE": -75.212304, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 185.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 41.0, "Total Spend": 827.0, "Total Transactions": 58.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.53, "MEDIAN_SPEND_PER_CUSTOMER": 11.53 }, "geometry": { "type": "Point", "coordinates": [ -75.212304, 40.007477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pgh-v2k", "LOCATION_NAME": "Crown Chicken and Biscuit", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986364, "LONGITUDE": -75.1559, "DATE_RANGE_START": 2020, "Total Visits": 333.0, "Total Visitors": 250.0, "POI_CBG": 421010166002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 56.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.8, "MEDIAN_SPEND_PER_CUSTOMER": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1559, 39.986364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-94v", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3794.0, "Total Transactions": 75.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.27, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003544, "LONGITUDE": -75.165622, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 107.0, "POI_CBG": 421010202001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2195.0, "Total Transactions": 298.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.52, "MEDIAN_SPEND_PER_CUSTOMER": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165622, 40.003544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.015127, "LONGITUDE": -75.178214, "DATE_RANGE_START": 2020, "Total Visits": 395.0, "Total Visitors": 331.0, "POI_CBG": 421010206001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1881.0, "Total Transactions": 300.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 8.05 }, "geometry": { "type": "Point", "coordinates": [ -75.178214, 40.015127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-bp9", "LOCATION_NAME": "Hidden River Yarns", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.025483, "LONGITUDE": -75.223994, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 287.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.95, "MEDIAN_SPEND_PER_CUSTOMER": 72.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223994, 40.025483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2020, "Total Visits": 842.0, "Total Visitors": 671.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1059.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.48, "MEDIAN_SPEND_PER_CUSTOMER": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp2-q75", "LOCATION_NAME": "Kensington Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995547, "LONGITUDE": -75.102511, "DATE_RANGE_START": 2020, "Total Visits": 240.0, "Total Visitors": 127.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 80.0, "Total Spend": 4128.0, "Total Transactions": 133.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.72 }, "geometry": { "type": "Point", "coordinates": [ -75.102511, 39.995547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2020, "Total Visits": 401.0, "Total Visitors": 300.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 14877.0, "Total Transactions": 1143.0, "Total Customers": 832.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.22, "MEDIAN_SPEND_PER_CUSTOMER": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dvy-mx5", "LOCATION_NAME": "Tea Do", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95462, "LONGITUDE": -75.199919, "DATE_RANGE_START": 2020, "Total Visits": 871.0, "Total Visitors": 625.0, "POI_CBG": 421010088012.0, "MEDIAN_DWELL": 51.0, "Total Spend": 1901.0, "Total Transactions": 167.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.26, "MEDIAN_SPEND_PER_CUSTOMER": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.199919, 39.95462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "LOCATION_NAME": "Mammoth Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969701, "LONGITUDE": -75.146132, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 66.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1920.0, "Total Transactions": 242.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.36, "MEDIAN_SPEND_PER_CUSTOMER": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.146132, 39.969701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009408, "LONGITUDE": -75.196533, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 145.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4883.0, "Total Transactions": 772.0, "Total Customers": 425.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 7.53 }, "geometry": { "type": "Point", "coordinates": [ -75.196533, 40.009408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-hbk", "LOCATION_NAME": "Jyoti Indian Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060418, "LONGITUDE": -75.191506, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 614.0, "Total Transactions": 26.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191506, 40.060418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgk-z9f", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999874, "LONGITUDE": -75.209033, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010122041.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1311.0, "Total Transactions": 54.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.92, "MEDIAN_SPEND_PER_CUSTOMER": 24.92 }, "geometry": { "type": "Point", "coordinates": [ -75.209033, 39.999874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "LOCATION_NAME": "Buddakan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948922, "LONGITUDE": -75.147091, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 15406.0, "Total Transactions": 125.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.0, "MEDIAN_SPEND_PER_CUSTOMER": 120.96 }, "geometry": { "type": "Point", "coordinates": [ -75.147091, 39.948922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-47q", "LOCATION_NAME": "Kid City", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.921142, "LONGITUDE": -75.185929, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 38.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2972.0, "Total Transactions": 87.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.02, "MEDIAN_SPEND_PER_CUSTOMER": 23.02 }, "geometry": { "type": "Point", "coordinates": [ -75.185929, 39.921142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "LOCATION_NAME": "Mulberry Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951945, "LONGITUDE": -75.144635, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 52.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 15332.0, "Total Transactions": 715.0, "Total Customers": 306.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.6, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144635, 39.951945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-789", "LOCATION_NAME": "The Wine Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948078, "LONGITUDE": -75.224261, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 71.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 190.0, "Total Spend": 5444.0, "Total Transactions": 212.0, "Total Customers": 161.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.32 }, "geometry": { "type": "Point", "coordinates": [ -75.224261, 39.948078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "LOCATION_NAME": "The Cheesecake Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949381, "LONGITUDE": -75.165741, "DATE_RANGE_START": 2020, "Total Visits": 816.0, "Total Visitors": 558.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 55.0, "Total Spend": 12337.0, "Total Transactions": 296.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.97, "MEDIAN_SPEND_PER_CUSTOMER": 36.18 }, "geometry": { "type": "Point", "coordinates": [ -75.165741, 39.949381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "LOCATION_NAME": "Nifty Fifty's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 145.0, "POI_CBG": 421010372003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7249.0, "Total Transactions": 270.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.03, "MEDIAN_SPEND_PER_CUSTOMER": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-vcq", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.998344, "LONGITUDE": -75.136151, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 159.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 10.0, "Total Spend": 150.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.67, "MEDIAN_SPEND_PER_CUSTOMER": 37.67 }, "geometry": { "type": "Point", "coordinates": [ -75.136151, 39.998344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 64.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 224.0, "Total Spend": 7334.0, "Total Transactions": 260.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.74, "MEDIAN_SPEND_PER_CUSTOMER": 25.47 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051659, "LONGITUDE": -75.008179, "DATE_RANGE_START": 2020, "Total Visits": 494.0, "Total Visitors": 361.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3612.0, "Total Transactions": 163.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.62, "MEDIAN_SPEND_PER_CUSTOMER": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.008179, 40.051659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8m-v2k", "LOCATION_NAME": "Hung Vuong Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.030075, "LONGITUDE": -75.057846, "DATE_RANGE_START": 2020, "Total Visits": 744.0, "Total Visitors": 534.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 49308.0, "Total Transactions": 629.0, "Total Customers": 401.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.59, "MEDIAN_SPEND_PER_CUSTOMER": 59.37 }, "geometry": { "type": "Point", "coordinates": [ -75.057846, 40.030075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pgh-v2k", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.985827, "LONGITUDE": -75.15577, "DATE_RANGE_START": 2020, "Total Visits": 405.0, "Total Visitors": 296.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5863.0, "Total Transactions": 391.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 19.34 }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.985827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "LOCATION_NAME": "Athleta", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.94988, "LONGITUDE": -75.170326, "DATE_RANGE_START": 2020, "Total Visits": 306.0, "Total Visitors": 218.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 94.0, "Total Spend": 15112.0, "Total Transactions": 141.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.1, "MEDIAN_SPEND_PER_CUSTOMER": 93.79 }, "geometry": { "type": "Point", "coordinates": [ -75.170326, 39.94988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p8t-6kz", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.083264, "LONGITUDE": -74.962395, "DATE_RANGE_START": 2020, "Total Visits": 13890.0, "Total Visitors": 8712.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 26.0, "Total Spend": 367867.0, "Total Transactions": 6197.0, "Total Customers": 3716.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.27, "MEDIAN_SPEND_PER_CUSTOMER": 59.62 }, "geometry": { "type": "Point", "coordinates": [ -74.962395, 40.083264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "LOCATION_NAME": "Villavillekula", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075713, "LONGITUDE": -75.205415, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 1757.0, "Total Transactions": 32.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205415, 40.075713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-5mk", "LOCATION_NAME": "West Elm", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950642, "LONGITUDE": -75.163094, "DATE_RANGE_START": 2020, "Total Visits": 232.0, "Total Visitors": 129.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 288.0, "Total Spend": 33019.0, "Total Transactions": 67.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.4, "MEDIAN_SPEND_PER_CUSTOMER": 62.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163094, 39.950642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 115.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 447.0, "Total Transactions": 56.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.33, "MEDIAN_SPEND_PER_CUSTOMER": 8.78 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj9-zmk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.036925, "LONGITUDE": -75.130756, "DATE_RANGE_START": 2020, "Total Visits": 264.0, "Total Visitors": 177.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 510.0, "Total Transactions": 42.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.55, "MEDIAN_SPEND_PER_CUSTOMER": 15.83 }, "geometry": { "type": "Point", "coordinates": [ -75.130756, 40.036925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p8d-rp9", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998893, "LONGITUDE": -75.091892, "DATE_RANGE_START": 2020, "Total Visits": 6179.0, "Total Visitors": 4103.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 196181.0, "Total Transactions": 3168.0, "Total Customers": 2072.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.47, "MEDIAN_SPEND_PER_CUSTOMER": 57.69 }, "geometry": { "type": "Point", "coordinates": [ -75.091892, 39.998893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pm3-vpv", "LOCATION_NAME": "Philadelphia Scooters", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.936705, "LONGITUDE": -75.186573, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 81.0, "POI_CBG": 421010020002.0, "MEDIAN_DWELL": 164.0, "Total Spend": 421.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.01, "MEDIAN_SPEND_PER_CUSTOMER": 106.01 }, "geometry": { "type": "Point", "coordinates": [ -75.186573, 39.936705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.036515, "LONGITUDE": -75.108096, "DATE_RANGE_START": 2020, "Total Visits": 337.0, "Total Visitors": 240.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 14776.0, "Total Transactions": 296.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.41, "MEDIAN_SPEND_PER_CUSTOMER": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.108096, 40.036515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.080948, "LONGITUDE": -75.025099, "DATE_RANGE_START": 2020, "Total Visits": 11923.0, "Total Visitors": 7737.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 269752.0, "Total Transactions": 3636.0, "Total Customers": 2237.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.44, "MEDIAN_SPEND_PER_CUSTOMER": 43.56 }, "geometry": { "type": "Point", "coordinates": [ -75.025099, 40.080948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962963, "LONGITUDE": -75.174058, "DATE_RANGE_START": 2020, "Total Visits": 3100.0, "Total Visitors": 1753.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 237222.0, "Total Transactions": 4879.0, "Total Customers": 2118.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.18, "MEDIAN_SPEND_PER_CUSTOMER": 62.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174058, 39.962963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "LOCATION_NAME": "Weavers Way Co Op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2020, "Total Visits": 135.0, "Total Visitors": 95.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 114132.0, "Total Transactions": 2878.0, "Total Customers": 1121.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.4, "MEDIAN_SPEND_PER_CUSTOMER": 49.26 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.112307, "LONGITUDE": -75.022895, "DATE_RANGE_START": 2020, "Total Visits": 1330.0, "Total Visitors": 883.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4115.0, "Total Transactions": 202.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.41, "MEDIAN_SPEND_PER_CUSTOMER": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.022895, 40.112307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-3bk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.916261, "LONGITUDE": -75.173391, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 200.0, "POI_CBG": 421010039022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1557.0, "Total Transactions": 99.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.19, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173391, 39.916261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.004616, "LONGITUDE": -75.104425, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 197.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 10.0, "Total Spend": 421.0, "Total Transactions": 18.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.65, "MEDIAN_SPEND_PER_CUSTOMER": 39.02 }, "geometry": { "type": "Point", "coordinates": [ -75.104425, 40.004616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.918005, "LONGITUDE": -75.188849, "DATE_RANGE_START": 2020, "Total Visits": 679.0, "Total Visitors": 544.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 16260.0, "Total Transactions": 312.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.32, "MEDIAN_SPEND_PER_CUSTOMER": 44.38 }, "geometry": { "type": "Point", "coordinates": [ -75.188849, 39.918005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-ch5", "LOCATION_NAME": "La Roca", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023561, "LONGITUDE": -75.219763, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 91.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 89.0, "Total Spend": 16043.0, "Total Transactions": 320.0, "Total Customers": 288.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.12, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219763, 40.023561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "LOCATION_NAME": "Keller Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072481, "LONGITUDE": -75.076705, "DATE_RANGE_START": 2020, "Total Visits": 200.0, "Total Visitors": 149.0, "POI_CBG": 421010341002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6344.0, "Total Transactions": 222.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 31.81 }, "geometry": { "type": "Point", "coordinates": [ -75.076705, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "LOCATION_NAME": "Open House", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950268, "LONGITUDE": -75.161745, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8943.0, "Total Transactions": 167.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.99, "MEDIAN_SPEND_PER_CUSTOMER": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.161745, 39.950268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8h-5mk", "LOCATION_NAME": "Benz Automotive", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.024738, "LONGITUDE": -75.035725, "DATE_RANGE_START": 2020, "Total Visits": 270.0, "Total Visitors": 222.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1661.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035725, 40.024738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2020, "Total Visits": 967.0, "Total Visitors": 609.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3931.0, "Total Transactions": 165.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.17, "MEDIAN_SPEND_PER_CUSTOMER": 21.16 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p83-wzf", "LOCATION_NAME": "Beautyland", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.086398, "LONGITUDE": -75.046895, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 71.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 666.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.73, "MEDIAN_SPEND_PER_CUSTOMER": 42.73 }, "geometry": { "type": "Point", "coordinates": [ -75.046895, 40.086398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-p7b-qs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.063609, "LONGITUDE": -75.021861, "DATE_RANGE_START": 2020, "Total Visits": 1830.0, "Total Visitors": 1042.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1672.0, "Total Transactions": 64.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.47, "MEDIAN_SPEND_PER_CUSTOMER": 30.14 }, "geometry": { "type": "Point", "coordinates": [ -75.021861, 40.063609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2020, "Total Visits": 1385.0, "Total Visitors": 723.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6880.0, "Total Transactions": 337.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.81, "MEDIAN_SPEND_PER_CUSTOMER": 24.85 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-gff", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011075, "LONGITUDE": -75.176591, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1853.0, "Total Transactions": 198.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.41, "MEDIAN_SPEND_PER_CUSTOMER": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.176591, 40.011075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "LOCATION_NAME": "Blick Art Materials", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 36.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 393.0, "Total Spend": 806.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.35, "MEDIAN_SPEND_PER_CUSTOMER": 76.74 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-vxq", "LOCATION_NAME": "Crown Drugs", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.029725, "LONGITUDE": -75.055436, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 52.0, "POI_CBG": 421010320007.0, "MEDIAN_DWELL": 6.0, "Total Spend": 951.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 111.94, "MEDIAN_SPEND_PER_CUSTOMER": 111.94 }, "geometry": { "type": "Point", "coordinates": [ -75.055436, 40.029725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-j7q", "LOCATION_NAME": "Byblos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951257, "LONGITUDE": -75.170681, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 52.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 3489.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.08, "MEDIAN_SPEND_PER_CUSTOMER": 75.26 }, "geometry": { "type": "Point", "coordinates": [ -75.170681, 39.951257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 175.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6422.0, "Total Transactions": 218.0, "Total Customers": 181.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "LOCATION_NAME": "Dragon Phoenix House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 60.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 233.0, "Total Spend": 1621.0, "Total Transactions": 46.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.87, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phn-qmk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068844, "LONGITUDE": -75.18088, "DATE_RANGE_START": 2020, "Total Visits": 343.0, "Total Visitors": 230.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1728.0, "Total Transactions": 77.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.07, "MEDIAN_SPEND_PER_CUSTOMER": 25.69 }, "geometry": { "type": "Point", "coordinates": [ -75.18088, 40.068844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p8j-6hq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026851, "LONGITUDE": -75.028938, "DATE_RANGE_START": 2020, "Total Visits": 506.0, "Total Visitors": 395.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 838.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.81, "MEDIAN_SPEND_PER_CUSTOMER": 26.54 }, "geometry": { "type": "Point", "coordinates": [ -75.028938, 40.026851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.051298, "LONGITUDE": -75.065323, "DATE_RANGE_START": 2020, "Total Visits": 2819.0, "Total Visitors": 2303.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 5445.0, "Total Transactions": 115.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.58, "MEDIAN_SPEND_PER_CUSTOMER": 36.67 }, "geometry": { "type": "Point", "coordinates": [ -75.065323, 40.051298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "LOCATION_NAME": "Roses Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 218.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 156.0, "Total Spend": 499.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.34, "MEDIAN_SPEND_PER_CUSTOMER": 32.34 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-hqz", "LOCATION_NAME": "Halal Gyro Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954112, "LONGITUDE": -75.171018, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 171.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 95.0, "Total Spend": 26.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171018, 39.954112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "LOCATION_NAME": "Pho Cyclo Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2020, "Total Visits": 1145.0, "Total Visitors": 663.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 232.0, "Total Spend": 666.0, "Total Transactions": 28.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.09, "MEDIAN_SPEND_PER_CUSTOMER": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949164, "LONGITUDE": -75.163217, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 81.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1152.0, "Total Transactions": 220.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.2, "MEDIAN_SPEND_PER_CUSTOMER": 6.24 }, "geometry": { "type": "Point", "coordinates": [ -75.163217, 39.949164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "LOCATION_NAME": "Royal Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2493.0, "Total Transactions": 131.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.72, "MEDIAN_SPEND_PER_CUSTOMER": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "LOCATION_NAME": "Weavers Way Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 32.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 75.0, "Total Spend": 59145.0, "Total Transactions": 1330.0, "Total Customers": 697.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.59, "MEDIAN_SPEND_PER_CUSTOMER": 45.17 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-kpv", "LOCATION_NAME": "Foreign Bazaar", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.952092, "LONGITUDE": -75.172676, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1427.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.42, "MEDIAN_SPEND_PER_CUSTOMER": 59.38 }, "geometry": { "type": "Point", "coordinates": [ -75.172676, 39.952092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "LOCATION_NAME": "Nova Star Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.969977, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 827.0, "Total Transactions": 44.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.63, "MEDIAN_SPEND_PER_CUSTOMER": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "LOCATION_NAME": "Tavern On Camac", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947272, "LONGITUDE": -75.161618, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": null, "Total Spend": 3251.0, "Total Transactions": 179.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.25, "MEDIAN_SPEND_PER_CUSTOMER": 25.53 }, "geometry": { "type": "Point", "coordinates": [ -75.161618, 39.947272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-q2k", "LOCATION_NAME": "Que Chula Es Puebla", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972362, "LONGITUDE": -75.139125, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 262.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.39, "MEDIAN_SPEND_PER_CUSTOMER": 39.39 }, "geometry": { "type": "Point", "coordinates": [ -75.139125, 39.972362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-224@628-pg9-ty9", "LOCATION_NAME": "Mangia Macaroni", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963054, "LONGITUDE": -75.16434, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 26.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 1225.0, "Total Spend": 333.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.56, "MEDIAN_SPEND_PER_CUSTOMER": 18.56 }, "geometry": { "type": "Point", "coordinates": [ -75.16434, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "LOCATION_NAME": "Sonnys Famous Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949796, "LONGITUDE": -75.144721, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4350.0, "Total Transactions": 141.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144721, 39.949796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-p8d-8y9", "LOCATION_NAME": "T & J Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.00933, "LONGITUDE": -75.084903, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 28.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1156.0, "Total Transactions": 103.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.43, "MEDIAN_SPEND_PER_CUSTOMER": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084903, 40.00933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 42.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 577.0, "Total Spend": 8575.0, "Total Transactions": 530.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.97, "MEDIAN_SPEND_PER_CUSTOMER": 16.29 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "LOCATION_NAME": "Shing Kee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 42.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 1219.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.2, "MEDIAN_SPEND_PER_CUSTOMER": 32.05 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phn-9fz", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079281, "LONGITUDE": -75.174174, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 44.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 148.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.7, "MEDIAN_SPEND_PER_CUSTOMER": 17.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174174, 40.079281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-4sq", "LOCATION_NAME": "Potbelly Sandwich Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979564, "LONGITUDE": -75.153441, "DATE_RANGE_START": 2020, "Total Visits": 133.0, "Total Visitors": 58.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 845.0, "Total Spend": 1567.0, "Total Transactions": 123.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.55, "MEDIAN_SPEND_PER_CUSTOMER": 12.52 }, "geometry": { "type": "Point", "coordinates": [ -75.153441, 39.979564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgc-zvf", "LOCATION_NAME": "Got The Look", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.976469, "LONGITUDE": -75.224485, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 62.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 20829.0, "Total Transactions": 381.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.98, "MEDIAN_SPEND_PER_CUSTOMER": 46.57 }, "geometry": { "type": "Point", "coordinates": [ -75.224485, 39.976469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-7nq", "LOCATION_NAME": "Yards brewing", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.876036, "LONGITUDE": -75.242976, "DATE_RANGE_START": 2020, "Total Visits": 93781.0, "Total Visitors": 57624.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 129.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.98, "MEDIAN_SPEND_PER_CUSTOMER": 20.98 }, "geometry": { "type": "Point", "coordinates": [ -75.242976, 39.876036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "LOCATION_NAME": "Gallo's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057623, "LONGITUDE": -75.044487, "DATE_RANGE_START": 2020, "Total Visits": 343.0, "Total Visitors": 302.0, "POI_CBG": 421010333001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 454.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.2, "MEDIAN_SPEND_PER_CUSTOMER": 75.2 }, "geometry": { "type": "Point", "coordinates": [ -75.044487, 40.057623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj5-3yv", "LOCATION_NAME": "Bravo Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010478, "LONGITUDE": -75.151556, "DATE_RANGE_START": 2020, "Total Visits": 447.0, "Total Visitors": 329.0, "POI_CBG": 421010201021.0, "MEDIAN_DWELL": 10.0, "Total Spend": 348.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.82, "MEDIAN_SPEND_PER_CUSTOMER": 35.09 }, "geometry": { "type": "Point", "coordinates": [ -75.151556, 40.010478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "LOCATION_NAME": "Sang Kee Peking Duck House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 111.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5862.0, "Total Transactions": 193.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-835", "LOCATION_NAME": "Molly Malloy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953325, "LONGITUDE": -75.158702, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 64.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.18, "MEDIAN_SPEND_PER_CUSTOMER": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.158702, 39.953325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "LOCATION_NAME": "China Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 103.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2603.0, "Total Transactions": 58.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.64, "MEDIAN_SPEND_PER_CUSTOMER": 49.84 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgf-dvz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958338, "LONGITUDE": -75.208218, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 101.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 767.0, "Total Transactions": 56.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.08, "MEDIAN_SPEND_PER_CUSTOMER": 14.11 }, "geometry": { "type": "Point", "coordinates": [ -75.208218, 39.958338 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2020, "Total Visits": 518.0, "Total Visitors": 385.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8565.0, "Total Transactions": 629.0, "Total Customers": 433.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.38, "MEDIAN_SPEND_PER_CUSTOMER": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "LOCATION_NAME": "Yakitori Boy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 32.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 132.0, "Total Spend": 4388.0, "Total Transactions": 67.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.24, "MEDIAN_SPEND_PER_CUSTOMER": 62.22 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfx-ks5", "LOCATION_NAME": "Gregs Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026584, "LONGITUDE": -75.226738, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2503.0, "Total Transactions": 139.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.77, "MEDIAN_SPEND_PER_CUSTOMER": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226738, 40.026584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 54.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2662.0, "Total Transactions": 349.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.78, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-fcq", "LOCATION_NAME": "Kanella", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946359, "LONGITUDE": -75.157966, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 93.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 829.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.08, "MEDIAN_SPEND_PER_CUSTOMER": 33.08 }, "geometry": { "type": "Point", "coordinates": [ -75.157966, 39.946359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-66k", "LOCATION_NAME": "Hatch and choop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94951, "LONGITUDE": -75.160766, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 185.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 214.0, "Total Transactions": 22.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.78, "MEDIAN_SPEND_PER_CUSTOMER": 53.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160766, 39.94951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-5s5", "LOCATION_NAME": "Halal Gyro King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951797, "LONGITUDE": -75.15974, "DATE_RANGE_START": 2020, "Total Visits": 1999.0, "Total Visitors": 1227.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 148.0, "Total Spend": 1155.0, "Total Transactions": 107.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15974, 39.951797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-tjv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949514, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 147.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1947.0, "Total Transactions": 314.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.87, "MEDIAN_SPEND_PER_CUSTOMER": 6.52 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948446, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2020, "Total Visits": 403.0, "Total Visitors": 222.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 184.0, "Total Spend": 3705.0, "Total Transactions": 655.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.73, "MEDIAN_SPEND_PER_CUSTOMER": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.948446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2020, "Total Visits": 629.0, "Total Visitors": 357.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 101.0, "Total Spend": 12372.0, "Total Transactions": 169.0, "Total Customers": 161.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.0, "MEDIAN_SPEND_PER_CUSTOMER": 62.16 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "LOCATION_NAME": "Honey Bee Gourmet Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945912, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 107.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 145.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.89 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 39.945912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918299, "LONGITUDE": -75.180698, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 99.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 10218.0, "Total Transactions": 492.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.22, "MEDIAN_SPEND_PER_CUSTOMER": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.180698, 39.918299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph6-p5f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.977589, "LONGITUDE": -75.227009, "DATE_RANGE_START": 2020, "Total Visits": 1526.0, "Total Visitors": 1121.0, "POI_CBG": 421010118003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 869.0, "Total Transactions": 42.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.58, "MEDIAN_SPEND_PER_CUSTOMER": 19.67 }, "geometry": { "type": "Point", "coordinates": [ -75.227009, 39.977589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8n5", "LOCATION_NAME": "Columbia Sportswear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951969, "LONGITUDE": -75.157009, "DATE_RANGE_START": 2020, "Total Visits": 875.0, "Total Visitors": 605.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 807.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.97, "MEDIAN_SPEND_PER_CUSTOMER": 63.97 }, "geometry": { "type": "Point", "coordinates": [ -75.157009, 39.951969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "LOCATION_NAME": "Yummy Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2934.0, "Total Transactions": 165.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.42, "MEDIAN_SPEND_PER_CUSTOMER": 15.19 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pp2-sdv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.995956, "LONGITUDE": -75.09064, "DATE_RANGE_START": 2020, "Total Visits": 397.0, "Total Visitors": 343.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 862.0, "Total Transactions": 50.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.88, "MEDIAN_SPEND_PER_CUSTOMER": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.09064, 39.995956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998177, "LONGITUDE": -75.124544, "DATE_RANGE_START": 2020, "Total Visits": 306.0, "Total Visitors": 210.0, "POI_CBG": 421010177025.0, "MEDIAN_DWELL": 21.0, "Total Spend": 601.0, "Total Transactions": 89.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.87, "MEDIAN_SPEND_PER_CUSTOMER": 9.56 }, "geometry": { "type": "Point", "coordinates": [ -75.124544, 39.998177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.964853, "LONGITUDE": -75.204438, "DATE_RANGE_START": 2020, "Total Visits": 451.0, "Total Visitors": 296.0, "POI_CBG": 421010107002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1326.0, "Total Transactions": 115.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.9, "MEDIAN_SPEND_PER_CUSTOMER": 9.09 }, "geometry": { "type": "Point", "coordinates": [ -75.204438, 39.964853 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "LOCATION_NAME": "Malelani Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05294, "LONGITUDE": -75.186129, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 82.0, "Total Spend": 1806.0, "Total Transactions": 62.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.95, "MEDIAN_SPEND_PER_CUSTOMER": 36.86 }, "geometry": { "type": "Point", "coordinates": [ -75.186129, 40.05294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-y9z", "LOCATION_NAME": "Alyan's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941428, "LONGITUDE": -75.149062, "DATE_RANGE_START": 2020, "Total Visits": 798.0, "Total Visitors": 651.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1782.0, "Total Transactions": 69.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.36, "MEDIAN_SPEND_PER_CUSTOMER": 22.03 }, "geometry": { "type": "Point", "coordinates": [ -75.149062, 39.941428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p75-9vf", "LOCATION_NAME": "Ashburner Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040603, "LONGITUDE": -75.015474, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 115.0, "POI_CBG": 421010349003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 2286.0, "Total Transactions": 38.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.4, "MEDIAN_SPEND_PER_CUSTOMER": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.015474, 40.040603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "LOCATION_NAME": "Alaska King Crab House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 389.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7783.0, "Total Transactions": 133.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.74, "MEDIAN_SPEND_PER_CUSTOMER": 52.8 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "LOCATION_NAME": "Ruby Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2020, "Total Visits": 347.0, "Total Visitors": 326.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1569.0, "Total Transactions": 52.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.22, "MEDIAN_SPEND_PER_CUSTOMER": 47.74 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "LOCATION_NAME": "T cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947904, "LONGITUDE": -75.142953, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 71.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 102.0, "Total Spend": 18562.0, "Total Transactions": 1558.0, "Total Customers": 796.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.142953, 39.947904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pp5-5vf", "LOCATION_NAME": "Buzz Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977401, "LONGITUDE": -75.135043, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010157002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 159.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.14, "MEDIAN_SPEND_PER_CUSTOMER": 40.14 }, "geometry": { "type": "Point", "coordinates": [ -75.135043, 39.977401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "LOCATION_NAME": "Broad Street Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 18.0, "POI_CBG": 421010023001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 992.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.73, "MEDIAN_SPEND_PER_CUSTOMER": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "LOCATION_NAME": "Sunny Side Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 105.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 788.0, "Total Transactions": 46.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 19.13 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "LOCATION_NAME": "Allegro Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 113.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 30.0, "Total Spend": 20723.0, "Total Transactions": 1306.0, "Total Customers": 726.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.47, "MEDIAN_SPEND_PER_CUSTOMER": 20.71 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954574, "LONGITUDE": -75.169932, "DATE_RANGE_START": 2020, "Total Visits": 478.0, "Total Visitors": 302.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 101.0, "Total Spend": 8714.0, "Total Transactions": 175.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.17, "MEDIAN_SPEND_PER_CUSTOMER": 42.44 }, "geometry": { "type": "Point", "coordinates": [ -75.169932, 39.954574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991684, "LONGITUDE": -75.154551, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 83.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 80.0, "Total Spend": 2813.0, "Total Transactions": 274.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.51, "MEDIAN_SPEND_PER_CUSTOMER": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.154551, 39.991684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "LOCATION_NAME": "Thunderbird Salvage", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1402.0, "Total Transactions": 16.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.54, "MEDIAN_SPEND_PER_CUSTOMER": 81.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-jjv", "LOCATION_NAME": "Sweet Treat Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973199, "LONGITUDE": -75.222994, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 178.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222994, 39.973199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "LOCATION_NAME": "Polo Ralph Lauren Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 50.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 10218.0, "Total Transactions": 127.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.48, "MEDIAN_SPEND_PER_CUSTOMER": 72.73 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p74-wtv", "LOCATION_NAME": "Naryan Auto Group", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.038499, "LONGITUDE": -75.035061, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 56.0, "POI_CBG": 421010330001.0, "MEDIAN_DWELL": 69.0, "Total Spend": 43861.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 3048.5, "MEDIAN_SPEND_PER_CUSTOMER": 3597.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035061, 40.038499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "LOCATION_NAME": "Locust Rendezvous", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948535, "LONGITUDE": -75.165879, "DATE_RANGE_START": 2020, "Total Visits": 861.0, "Total Visitors": 552.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 106.0, "Total Spend": 760.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.9, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165879, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979849, "LONGITUDE": -75.269293, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 337.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 18309.0, "Total Transactions": 1247.0, "Total Customers": 1026.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.269293, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2020, "Total Visits": 10482.0, "Total Visitors": 6602.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 27522.0, "Total Transactions": 2023.0, "Total Customers": 1151.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.35, "MEDIAN_SPEND_PER_CUSTOMER": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "LOCATION_NAME": "Scoop Deville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949429, "LONGITUDE": -75.162851, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 135.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 1489.0, "Total Transactions": 129.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.162851, 39.949429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2020, "Total Visits": 349.0, "Total Visitors": 228.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5114.0, "Total Transactions": 732.0, "Total Customers": 320.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.27, "MEDIAN_SPEND_PER_CUSTOMER": 9.33 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@63s-dw9-7nq", "LOCATION_NAME": "LeBus Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.877284, "LONGITUDE": -75.241546, "DATE_RANGE_START": 2020, "Total Visits": 166655.0, "Total Visitors": 88708.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 640.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.02, "MEDIAN_SPEND_PER_CUSTOMER": 11.89 }, "geometry": { "type": "Point", "coordinates": [ -75.241546, 39.877284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pmb-fpv", "LOCATION_NAME": "Shaking Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946982, "LONGITUDE": -75.157365, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6726.0, "Total Transactions": 133.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.44, "MEDIAN_SPEND_PER_CUSTOMER": 49.06 }, "geometry": { "type": "Point", "coordinates": [ -75.157365, 39.946982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038624, "LONGITUDE": -75.106851, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8172.0, "Total Transactions": 451.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.75, "MEDIAN_SPEND_PER_CUSTOMER": 18.87 }, "geometry": { "type": "Point", "coordinates": [ -75.106851, 40.038624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "LOCATION_NAME": "Independence Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3308.0, "Total Transactions": 123.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.45, "MEDIAN_SPEND_PER_CUSTOMER": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-p9s-2tv", "LOCATION_NAME": "Momma Mia's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.12023, "LONGITUDE": -74.995203, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 46.0, "POI_CBG": 421010365021.0, "MEDIAN_DWELL": 30.0, "Total Spend": 1979.0, "Total Transactions": 60.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.52, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995203, 40.12023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvq-kzz", "LOCATION_NAME": "Spruce Super Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956724, "LONGITUDE": -75.242101, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 60.0, "POI_CBG": 421010083023.0, "MEDIAN_DWELL": 9.0, "Total Spend": 43.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.49, "MEDIAN_SPEND_PER_CUSTOMER": 5.49 }, "geometry": { "type": "Point", "coordinates": [ -75.242101, 39.956724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-gc5", "LOCATION_NAME": "Salmon Beer Distributor", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.002806, "LONGITUDE": -75.078717, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 105.0, "POI_CBG": 421010183003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3308.0, "Total Transactions": 85.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.54, "MEDIAN_SPEND_PER_CUSTOMER": 43.72 }, "geometry": { "type": "Point", "coordinates": [ -75.078717, 40.002806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-p8j-9mk", "LOCATION_NAME": "Capriotti Bros", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.035466, "LONGITUDE": -75.044048, "DATE_RANGE_START": 2020, "Total Visits": 403.0, "Total Visitors": 260.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1366.0, "Total Transactions": 60.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.98, "MEDIAN_SPEND_PER_CUSTOMER": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.044048, 40.035466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2020, "Total Visits": 508.0, "Total Visitors": 347.0, "POI_CBG": 421010268002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2357.0, "Total Transactions": 89.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.38, "MEDIAN_SPEND_PER_CUSTOMER": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "LOCATION_NAME": "Navy Exchange", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2020, "Total Visits": 437.0, "Total Visitors": 147.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 177.0, "Total Spend": 22951.0, "Total Transactions": 331.0, "Total Customers": 161.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.05, "MEDIAN_SPEND_PER_CUSTOMER": 63.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8m-snq", "LOCATION_NAME": "Station Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.022297, "LONGITUDE": -75.077816, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 427.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1425.0, "Total Transactions": 46.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.42, "MEDIAN_SPEND_PER_CUSTOMER": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.077816, 40.022297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2020, "Total Visits": 4297.0, "Total Visitors": 3098.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17050.0, "Total Transactions": 744.0, "Total Customers": 588.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.26, "MEDIAN_SPEND_PER_CUSTOMER": 22.38 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.012396, "LONGITUDE": -75.112446, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 214.0, "POI_CBG": 421010289012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13998.0, "Total Transactions": 792.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.06, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112446, 40.012396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-xqz", "LOCATION_NAME": "Kinky Choices", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.971585, "LONGITUDE": -75.147595, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 147.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2309.0, "Total Transactions": 44.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.44, "MEDIAN_SPEND_PER_CUSTOMER": 24.85 }, "geometry": { "type": "Point", "coordinates": [ -75.147595, 39.971585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-zvf", "LOCATION_NAME": "South Street Magic", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.941265, "LONGITUDE": -75.150408, "DATE_RANGE_START": 2020, "Total Visits": 643.0, "Total Visitors": 534.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 894.0, "Total Transactions": 12.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.75, "MEDIAN_SPEND_PER_CUSTOMER": 225.25 }, "geometry": { "type": "Point", "coordinates": [ -75.150408, 39.941265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-rp9", "LOCATION_NAME": "Sunrise Breakfast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066142, "LONGITUDE": -75.158748, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": null, "Total Spend": 1307.0, "Total Transactions": 66.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.68, "MEDIAN_SPEND_PER_CUSTOMER": 19.57 }, "geometry": { "type": "Point", "coordinates": [ -75.158748, 40.066142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931641, "LONGITUDE": -75.160608, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 36.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 73.0, "Total Spend": 3860.0, "Total Transactions": 629.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 7.55 }, "geometry": { "type": "Point", "coordinates": [ -75.160608, 39.931641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgf-7kf", "LOCATION_NAME": "Lavish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967761, "LONGITUDE": -75.210086, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010106001.0, "MEDIAN_DWELL": 163.0, "Total Spend": 2102.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.0, "MEDIAN_SPEND_PER_CUSTOMER": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210086, 39.967761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-brk", "LOCATION_NAME": "East Coast Wings + Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993916, "LONGITUDE": -75.091363, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2604.0, "Total Transactions": 69.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.04, "MEDIAN_SPEND_PER_CUSTOMER": 36.29 }, "geometry": { "type": "Point", "coordinates": [ -75.091363, 39.993916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1355.0, "Total Transactions": 113.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 11.47 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm4-pjv", "LOCATION_NAME": "Cardenas Oil & Vinegar Taproom", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.937768, "LONGITUDE": -75.158238, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 14.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 250.0, "Total Spend": 859.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.9, "MEDIAN_SPEND_PER_CUSTOMER": 49.85 }, "geometry": { "type": "Point", "coordinates": [ -75.158238, 39.937768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-pvz", "LOCATION_NAME": "12 Steps Down", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.939056, "LONGITUDE": -75.157629, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 56.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1521.0, "Total Transactions": 36.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.25, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157629, 39.939056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgf-33q", "LOCATION_NAME": "Ochatto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954494, "LONGITUDE": -75.195113, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 56.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1391.0, "Total Transactions": 52.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.98, "MEDIAN_SPEND_PER_CUSTOMER": 27.17 }, "geometry": { "type": "Point", "coordinates": [ -75.195113, 39.954494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "LOCATION_NAME": "Old English Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2020, "Total Visits": 87.0, "Total Visitors": 62.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1494.0, "Total Transactions": 46.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.3, "MEDIAN_SPEND_PER_CUSTOMER": 44.37 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-kvf", "LOCATION_NAME": "20th Street Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951712, "LONGITUDE": -75.173725, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 30.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 758.0, "Total Spend": 543.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.4, "MEDIAN_SPEND_PER_CUSTOMER": 35.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173725, 39.951712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-ks5", "LOCATION_NAME": "Born Yesterday", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950495, "LONGITUDE": -75.17265, "DATE_RANGE_START": 2020, "Total Visits": 1082.0, "Total Visitors": 647.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 297.0, "Total Spend": 6264.0, "Total Transactions": 69.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.8, "MEDIAN_SPEND_PER_CUSTOMER": 76.62 }, "geometry": { "type": "Point", "coordinates": [ -75.17265, 39.950495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "LOCATION_NAME": "Rittenhouse Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 40.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 322.0, "Total Spend": 1722.0, "Total Transactions": 81.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.33, "MEDIAN_SPEND_PER_CUSTOMER": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-g8v", "LOCATION_NAME": "Khaamar Baari Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046044, "LONGITUDE": -75.070773, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 42.0, "POI_CBG": 421010314015.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2603.0, "Total Transactions": 81.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.94, "MEDIAN_SPEND_PER_CUSTOMER": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.070773, 40.046044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2020, "Total Visits": 721.0, "Total Visitors": 518.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 24354.0, "Total Transactions": 2259.0, "Total Customers": 937.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.07, "MEDIAN_SPEND_PER_CUSTOMER": 11.96 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-r49", "LOCATION_NAME": "The Richmond Bottle Shop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.975358, "LONGITUDE": -75.119619, "DATE_RANGE_START": 2020, "Total Visits": 1798.0, "Total Visitors": 959.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 366.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.38, "MEDIAN_SPEND_PER_CUSTOMER": 35.38 }, "geometry": { "type": "Point", "coordinates": [ -75.119619, 39.975358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2020, "Total Visits": 1040.0, "Total Visitors": 794.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6101.0, "Total Transactions": 328.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-6hq", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.087733, "LONGITUDE": -74.961181, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 322.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 362.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.1, "MEDIAN_SPEND_PER_CUSTOMER": 91.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961181, 40.087733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-zmk", "LOCATION_NAME": "Touch of Gold", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941921, "LONGITUDE": -75.153483, "DATE_RANGE_START": 2020, "Total Visits": 836.0, "Total Visitors": 617.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 2342.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 270.0, "MEDIAN_SPEND_PER_CUSTOMER": 424.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153483, 39.941921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "LOCATION_NAME": "Sam's Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093002, "LONGITUDE": -74.958736, "DATE_RANGE_START": 2020, "Total Visits": 7638.0, "Total Visitors": 4680.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 308307.0, "Total Transactions": 4444.0, "Total Customers": 2100.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.46, "MEDIAN_SPEND_PER_CUSTOMER": 83.62 }, "geometry": { "type": "Point", "coordinates": [ -74.958736, 40.093002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-bp9", "LOCATION_NAME": "Sang Kee Noodle House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.909183, "LONGITUDE": -75.16467, "DATE_RANGE_START": 2020, "Total Visits": 877.0, "Total Visitors": 153.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 332.0, "Total Spend": 3866.0, "Total Transactions": 149.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.15, "MEDIAN_SPEND_PER_CUSTOMER": 39.43 }, "geometry": { "type": "Point", "coordinates": [ -75.16467, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3yv", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101772, "LONGITUDE": -75.007116, "DATE_RANGE_START": 2020, "Total Visits": 2171.0, "Total Visitors": 1812.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 111.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.57, "MEDIAN_SPEND_PER_CUSTOMER": 20.57 }, "geometry": { "type": "Point", "coordinates": [ -75.007116, 40.101772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "LOCATION_NAME": "Vernick Food & Drink", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2020, "Total Visits": 1499.0, "Total Visitors": 917.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 2924.0, "Total Transactions": 56.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.62, "MEDIAN_SPEND_PER_CUSTOMER": 104.35 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "LOCATION_NAME": "Moshulu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941589, "LONGITUDE": -75.141261, "DATE_RANGE_START": 2020, "Total Visits": 699.0, "Total Visitors": 580.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 77701.0, "Total Transactions": 592.0, "Total Customers": 564.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.52, "MEDIAN_SPEND_PER_CUSTOMER": 110.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141261, 39.941589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmb-835", "LOCATION_NAME": "Beck's Cajun Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953182, "LONGITUDE": -75.159431, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1422.0, "Total Transactions": 73.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.99, "MEDIAN_SPEND_PER_CUSTOMER": 16.88 }, "geometry": { "type": "Point", "coordinates": [ -75.159431, 39.953182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "LOCATION_NAME": "New Delhi Indian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 79.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2013.0, "Total Transactions": 67.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.65, "MEDIAN_SPEND_PER_CUSTOMER": 41.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "LOCATION_NAME": "El Punto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 71.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 5614.0, "Total Transactions": 242.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.38 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 2550.0, "Total Transactions": 204.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.2, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-8d9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953621, "LONGITUDE": -75.157784, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 179.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1843.0, "Total Transactions": 288.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.01, "MEDIAN_SPEND_PER_CUSTOMER": 6.17 }, "geometry": { "type": "Point", "coordinates": [ -75.157784, 39.953621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-4n5", "LOCATION_NAME": "Shoe Factory", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.047111, "LONGITUDE": -75.070347, "DATE_RANGE_START": 2020, "Total Visits": 236.0, "Total Visitors": 159.0, "POI_CBG": 421010310003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 3443.0, "Total Transactions": 111.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.98, "MEDIAN_SPEND_PER_CUSTOMER": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.070347, 40.047111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.92482, "LONGITUDE": -75.146253, "DATE_RANGE_START": 2020, "Total Visits": 9649.0, "Total Visitors": 5927.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 571918.0, "Total Transactions": 10252.0, "Total Customers": 6471.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.23, "MEDIAN_SPEND_PER_CUSTOMER": 56.94 }, "geometry": { "type": "Point", "coordinates": [ -75.146253, 39.92482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "LOCATION_NAME": "Loco Dollar", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998868, "LONGITUDE": -75.126992, "DATE_RANGE_START": 2020, "Total Visits": 584.0, "Total Visitors": 328.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1589.0, "Total Transactions": 77.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.6, "MEDIAN_SPEND_PER_CUSTOMER": 22.21 }, "geometry": { "type": "Point", "coordinates": [ -75.126992, 39.998868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "LOCATION_NAME": "Produce Junction", "TOP_CATEGORY": "Florists", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2020, "Total Visits": 365.0, "Total Visitors": 266.0, "POI_CBG": 421010120001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 81.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p7x-6tv", "LOCATION_NAME": "Artifax", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.046392, "LONGITUDE": -75.058077, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 26.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10262.0, "Total Transactions": 189.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.61, "MEDIAN_SPEND_PER_CUSTOMER": 47.63 }, "geometry": { "type": "Point", "coordinates": [ -75.058077, 40.046392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "LOCATION_NAME": "Garden's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 26.0, "POI_CBG": 421010139003.0, "MEDIAN_DWELL": 344.0, "Total Spend": 896.0, "Total Transactions": 64.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 16.29 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94836, "LONGITUDE": -75.206367, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 30.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5701.0, "Total Transactions": 846.0, "Total Customers": 314.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.92, "MEDIAN_SPEND_PER_CUSTOMER": 9.03 }, "geometry": { "type": "Point", "coordinates": [ -75.206367, 39.94836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj9-grk", "LOCATION_NAME": "Nedro Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.043815, "LONGITUDE": -75.156105, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 48.0, "POI_CBG": 421010279014.0, "MEDIAN_DWELL": 294.0, "Total Spend": 245.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.98, "MEDIAN_SPEND_PER_CUSTOMER": 10.34 }, "geometry": { "type": "Point", "coordinates": [ -75.156105, 40.043815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "LOCATION_NAME": "Cappuccio's Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 48.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2469.0, "Total Transactions": 58.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.09, "MEDIAN_SPEND_PER_CUSTOMER": 36.09 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-mff", "LOCATION_NAME": "Con Murphy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955696, "LONGITUDE": -75.167996, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 58.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 403.0, "Total Spend": 5562.0, "Total Transactions": 105.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167996, 39.955696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "LOCATION_NAME": "Dolce Carini Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 58.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 183.0, "Total Spend": 1606.0, "Total Transactions": 111.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.72, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-t7q", "LOCATION_NAME": "Robert Lance Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949012, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 24.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 3714.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 935.5, "MEDIAN_SPEND_PER_CUSTOMER": 935.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm4-k2k", "LOCATION_NAME": "Cellular 2000 LLC", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.93569, "LONGITUDE": -75.155206, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 56.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 387.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155206, 39.93569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041625, "LONGITUDE": -75.064814, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 58.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 289.0, "Total Spend": 3218.0, "Total Transactions": 133.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.63, "MEDIAN_SPEND_PER_CUSTOMER": 23.57 }, "geometry": { "type": "Point", "coordinates": [ -75.064814, 40.041625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pfz-ch5", "LOCATION_NAME": "Pilgrim Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022764, "LONGITUDE": -75.219439, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 58.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 32.0, "Total Spend": 221.0, "Total Transactions": 30.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219439, 40.022764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904365, "LONGITUDE": -75.169382, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 111.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4596.0, "Total Transactions": 254.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.169382, 39.904365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "LOCATION_NAME": "Cafe Soho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 73.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 292.0, "Total Spend": 18588.0, "Total Transactions": 506.0, "Total Customers": 441.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 36.67 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-tvz", "LOCATION_NAME": "Devon Seafood Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949401, "LONGITUDE": -75.170553, "DATE_RANGE_START": 2020, "Total Visits": 820.0, "Total Visitors": 365.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 223.0, "Total Spend": 14259.0, "Total Transactions": 195.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.48, "MEDIAN_SPEND_PER_CUSTOMER": 64.11 }, "geometry": { "type": "Point", "coordinates": [ -75.170553, 39.949401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm8-djv", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911588, "LONGITUDE": -75.17455, "DATE_RANGE_START": 2020, "Total Visits": 496.0, "Total Visitors": 389.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 126.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17455, 39.911588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2020, "Total Visits": 409.0, "Total Visitors": 274.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1860.0, "Total Transactions": 202.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.98, "MEDIAN_SPEND_PER_CUSTOMER": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "LOCATION_NAME": "Crown Chicken and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 93.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 102.0, "Total Spend": 6513.0, "Total Transactions": 542.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-zfz", "LOCATION_NAME": "Sweet Treat Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934878, "LONGITUDE": -75.167189, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 105.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 50.0, "Total Spend": 228.0, "Total Transactions": 22.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.95 }, "geometry": { "type": "Point", "coordinates": [ -75.167189, 39.934878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-9cq", "LOCATION_NAME": "Federal Donuts West", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953537, "LONGITUDE": -75.193139, "DATE_RANGE_START": 2020, "Total Visits": 1356.0, "Total Visitors": 951.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 168.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.38, "MEDIAN_SPEND_PER_CUSTOMER": 14.38 }, "geometry": { "type": "Point", "coordinates": [ -75.193139, 39.953537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938246, "LONGITUDE": -75.166948, "DATE_RANGE_START": 2020, "Total Visits": 6479.0, "Total Visitors": 3698.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 3484.0, "Total Transactions": 441.0, "Total Customers": 333.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.64, "MEDIAN_SPEND_PER_CUSTOMER": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.938246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "LOCATION_NAME": "Stargazy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": null, "Total Spend": 180.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.51, "MEDIAN_SPEND_PER_CUSTOMER": 21.51 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "LOCATION_NAME": "Oregon Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 10.0, "POI_CBG": 421010372001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 229.0, "Total Transactions": 36.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 8.27 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "LOCATION_NAME": "Fairdale Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084494, "LONGITUDE": -74.972673, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 48.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 25.0, "Total Spend": 181.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972673, 40.084494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmd-snq", "LOCATION_NAME": "Pure Design", "TOP_CATEGORY": "Florists", "LATITUDE": 39.946224, "LONGITUDE": -75.178525, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 52.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1136.0, "Total Transactions": 26.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178525, 39.946224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "LOCATION_NAME": "Lebel Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 62.0, "POI_CBG": 421010112003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2086.0, "Total Transactions": 97.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.73, "MEDIAN_SPEND_PER_CUSTOMER": 22.73 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "LOCATION_NAME": "La Rosa Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 62.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1375.0, "Total Transactions": 73.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 10592.0, "Total Transactions": 492.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.33, "MEDIAN_SPEND_PER_CUSTOMER": 21.45 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmd-xqz", "LOCATION_NAME": "Cafe Ynez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939765, "LONGITUDE": -75.177339, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 252.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.58, "MEDIAN_SPEND_PER_CUSTOMER": 63.58 }, "geometry": { "type": "Point", "coordinates": [ -75.177339, 39.939765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "LOCATION_NAME": "Italian Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 48.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 607.0, "Total Spend": 2026.0, "Total Transactions": 95.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.61 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pg9-k75", "LOCATION_NAME": "Panda Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9926, "LONGITUDE": -75.181975, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010169023.0, "MEDIAN_DWELL": 76.0, "Total Spend": 3863.0, "Total Transactions": 159.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.78, "MEDIAN_SPEND_PER_CUSTOMER": 26.78 }, "geometry": { "type": "Point", "coordinates": [ -75.181975, 39.9926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "LOCATION_NAME": "Dancewear On Broad LLC", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 8.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 111.0, "Total Spend": 716.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 156.38, "MEDIAN_SPEND_PER_CUSTOMER": 156.38 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "LOCATION_NAME": "Christies Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 10.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 5971.0, "Total Transactions": 389.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.56, "MEDIAN_SPEND_PER_CUSTOMER": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgj-cqz", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977801, "LONGITUDE": -75.158494, "DATE_RANGE_START": 2020, "Total Visits": 3176.0, "Total Visitors": 2314.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 256.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.48, "MEDIAN_SPEND_PER_CUSTOMER": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158494, 39.977801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "LOCATION_NAME": "Unit Su Vege", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 99.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 3551.0, "Total Transactions": 103.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.45, "MEDIAN_SPEND_PER_CUSTOMER": 28.23 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 173.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 763.0, "Total Transactions": 52.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.92, "MEDIAN_SPEND_PER_CUSTOMER": 16.33 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948525, "LONGITUDE": -75.166014, "DATE_RANGE_START": 2020, "Total Visits": 345.0, "Total Visitors": 248.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 132.0, "Total Spend": 4763.0, "Total Transactions": 911.0, "Total Customers": 419.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.45, "MEDIAN_SPEND_PER_CUSTOMER": 6.14 }, "geometry": { "type": "Point", "coordinates": [ -75.166014, 39.948525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "LOCATION_NAME": "City Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2020, "Total Visits": 593.0, "Total Visitors": 318.0, "POI_CBG": 421010042013.0, "MEDIAN_DWELL": 197.0, "Total Spend": 487.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2020, "Total Visits": 1010.0, "Total Visitors": 675.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1534.0, "Total Transactions": 66.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.82, "MEDIAN_SPEND_PER_CUSTOMER": 22.83 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.060394, "LONGITUDE": -75.164248, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 143.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 25039.0, "Total Transactions": 502.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.99, "MEDIAN_SPEND_PER_CUSTOMER": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.164248, 40.060394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-435", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.918945, "LONGITUDE": -75.143088, "DATE_RANGE_START": 2020, "Total Visits": 794.0, "Total Visitors": 595.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 61658.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 688.5, "MEDIAN_SPEND_PER_CUSTOMER": 688.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143088, 39.918945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-75z", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952267, "LONGITUDE": -75.166533, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 191.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 145.0, "Total Spend": 1886.0, "Total Transactions": 121.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.58, "MEDIAN_SPEND_PER_CUSTOMER": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166533, 39.952267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pg8-z2k", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.982802, "LONGITUDE": -75.187818, "DATE_RANGE_START": 2020, "Total Visits": 2074.0, "Total Visitors": 1489.0, "POI_CBG": 421010149006.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1162.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187818, 39.982802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.921602, "LONGITUDE": -75.193164, "DATE_RANGE_START": 2020, "Total Visits": 2650.0, "Total Visitors": 1788.0, "POI_CBG": 421010036003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 773.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.01, "MEDIAN_SPEND_PER_CUSTOMER": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.193164, 39.921602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.016586, "LONGITUDE": -75.149894, "DATE_RANGE_START": 2020, "Total Visits": 1731.0, "Total Visitors": 1203.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1076.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.24, "MEDIAN_SPEND_PER_CUSTOMER": 36.61 }, "geometry": { "type": "Point", "coordinates": [ -75.149894, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2020, "Total Visits": 842.0, "Total Visitors": 717.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2727.0, "Total Transactions": 34.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.4, "MEDIAN_SPEND_PER_CUSTOMER": 25.16 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-qs5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.991422, "LONGITUDE": -75.097766, "DATE_RANGE_START": 2020, "Total Visits": 379.0, "Total Visitors": 268.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1459.0, "Total Transactions": 46.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.25, "MEDIAN_SPEND_PER_CUSTOMER": 63.01 }, "geometry": { "type": "Point", "coordinates": [ -75.097766, 39.991422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "LOCATION_NAME": "OfficeMax", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.043545, "LONGITUDE": -75.054368, "DATE_RANGE_START": 2020, "Total Visits": 1715.0, "Total Visitors": 1366.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 14636.0, "Total Transactions": 383.0, "Total Customers": 318.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.054368, 40.043545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-tvz", "LOCATION_NAME": "Material Culture", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.01529, "LONGITUDE": -75.173584, "DATE_RANGE_START": 2020, "Total Visits": 832.0, "Total Visitors": 496.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 120.0, "Total Spend": 6644.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 332.58, "MEDIAN_SPEND_PER_CUSTOMER": 332.58 }, "geometry": { "type": "Point", "coordinates": [ -75.173584, 40.01529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 125.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 92.0, "Total Spend": 2169.0, "Total Transactions": 52.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.84, "MEDIAN_SPEND_PER_CUSTOMER": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-ht9", "LOCATION_NAME": "Vapor Hut", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.0786, "LONGITUDE": -75.027064, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 179.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4695.0, "Total Transactions": 119.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.13, "MEDIAN_SPEND_PER_CUSTOMER": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.027064, 40.0786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmc-qmk", "LOCATION_NAME": "Federal Donuts 2nd Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932221, "LONGITUDE": -75.147485, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": null, "Total Spend": 543.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147485, 39.932221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "LOCATION_NAME": "Claudio's Specialty Foods", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4053.0, "Total Transactions": 66.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.09, "MEDIAN_SPEND_PER_CUSTOMER": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pj2-tsq", "LOCATION_NAME": "Beijing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.015027, "LONGITUDE": -75.108817, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010191004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 283.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.15, "MEDIAN_SPEND_PER_CUSTOMER": 38.2 }, "geometry": { "type": "Point", "coordinates": [ -75.108817, 40.015027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-7yv", "LOCATION_NAME": "Carnival Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967096, "LONGITUDE": -75.208944, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010106001.0, "MEDIAN_DWELL": null, "Total Spend": 333.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.47, "MEDIAN_SPEND_PER_CUSTOMER": 39.47 }, "geometry": { "type": "Point", "coordinates": [ -75.208944, 39.967096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9p-tgk", "LOCATION_NAME": "Maxi Gastronome", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.10649, "LONGITUDE": -75.029058, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": null, "Total Spend": 280.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.16, "MEDIAN_SPEND_PER_CUSTOMER": 43.41 }, "geometry": { "type": "Point", "coordinates": [ -75.029058, 40.10649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7b-kpv", "LOCATION_NAME": "China City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055685, "LONGITUDE": -75.004529, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 1.0, "Total Spend": 108.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.13, "MEDIAN_SPEND_PER_CUSTOMER": 27.13 }, "geometry": { "type": "Point", "coordinates": [ -75.004529, 40.055685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-3wk", "LOCATION_NAME": "Christian Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.942022, "LONGITUDE": -75.180801, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 50.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2006.0, "Total Transactions": 175.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.35, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180801, 39.942022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg4-grk", "LOCATION_NAME": "1beautysupplypa", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.030533, "LONGITUDE": -75.181364, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 260.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 9160.0, "Total Transactions": 212.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.28, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.181364, 40.030533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947387, "LONGITUDE": -75.16433, "DATE_RANGE_START": 2020, "Total Visits": 2531.0, "Total Visitors": 1260.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 366.0, "Total Spend": 1602.0, "Total Transactions": 220.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.9, "MEDIAN_SPEND_PER_CUSTOMER": 9.82 }, "geometry": { "type": "Point", "coordinates": [ -75.16433, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "LOCATION_NAME": "New Zem Zem Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 75.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1062.0, "Total Transactions": 50.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.17, "MEDIAN_SPEND_PER_CUSTOMER": 25.43 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 187.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 17139.0, "Total Transactions": 1608.0, "Total Customers": 1026.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.62, "MEDIAN_SPEND_PER_CUSTOMER": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980352, "LONGITUDE": -75.234957, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 58.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6254.0, "Total Transactions": 397.0, "Total Customers": 318.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.09, "MEDIAN_SPEND_PER_CUSTOMER": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234957, 39.980352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954762, "LONGITUDE": -75.202149, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 127.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 184.0, "Total Spend": 5073.0, "Total Transactions": 854.0, "Total Customers": 385.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.16, "MEDIAN_SPEND_PER_CUSTOMER": 8.19 }, "geometry": { "type": "Point", "coordinates": [ -75.202149, 39.954762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923566, "LONGITUDE": -75.245262, "DATE_RANGE_START": 2020, "Total Visits": 1002.0, "Total Visitors": 762.0, "POI_CBG": 421010064003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4209.0, "Total Transactions": 590.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.02, "MEDIAN_SPEND_PER_CUSTOMER": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.245262, 39.923566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "LOCATION_NAME": "Annies Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010100004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 122.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.61, "MEDIAN_SPEND_PER_CUSTOMER": 30.61 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-z9f", "LOCATION_NAME": "Rosarios Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934489, "LONGITUDE": -75.169442, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 38.0, "POI_CBG": 421010022002.0, "MEDIAN_DWELL": 353.0, "Total Spend": 1946.0, "Total Transactions": 60.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.1, "MEDIAN_SPEND_PER_CUSTOMER": 34.53 }, "geometry": { "type": "Point", "coordinates": [ -75.169442, 39.934489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-j35", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950756, "LONGITUDE": -75.17035, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3982.0, "Total Transactions": 189.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.17035, 39.950756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-7nq", "LOCATION_NAME": "Jam Rock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928385, "LONGITUDE": -75.230768, "DATE_RANGE_START": 2020, "Total Visits": 1028.0, "Total Visitors": 657.0, "POI_CBG": 421010066004.0, "MEDIAN_DWELL": 114.0, "Total Spend": 526.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.79, "MEDIAN_SPEND_PER_CUSTOMER": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.230768, 39.928385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvq-649", "LOCATION_NAME": "Three Sister Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954366, "LONGITUDE": -75.229741, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010085004.0, "MEDIAN_DWELL": null, "Total Spend": 356.0, "Total Transactions": 32.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.7, "MEDIAN_SPEND_PER_CUSTOMER": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.229741, 39.954366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2020, "Total Visits": 572.0, "Total Visitors": 433.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 3.0, "Total Spend": 49.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.22, "MEDIAN_SPEND_PER_CUSTOMER": 12.22 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23c@628-pmf-mrk", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952393, "LONGITUDE": -75.168002, "DATE_RANGE_START": 2020, "Total Visits": 6123.0, "Total Visitors": 3702.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 70.0, "Total Spend": 2002.0, "Total Transactions": 91.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.2, "MEDIAN_SPEND_PER_CUSTOMER": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.168002, 39.952393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgy-ks5", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064334, "LONGITUDE": -75.23681, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 137.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 5954.0, "Total Transactions": 443.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.13, "MEDIAN_SPEND_PER_CUSTOMER": 13.04 }, "geometry": { "type": "Point", "coordinates": [ -75.23681, 40.064334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "LOCATION_NAME": "Jamba", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.87525, "LONGITUDE": -75.241494, "DATE_RANGE_START": 2020, "Total Visits": 93781.0, "Total Visitors": 57624.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 1883.0, "Total Transactions": 171.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.62, "MEDIAN_SPEND_PER_CUSTOMER": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -75.241494, 39.87525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-8sq", "LOCATION_NAME": "Cinnabon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952174, "LONGITUDE": -75.158425, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1591.0, "Total Transactions": 173.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.37, "MEDIAN_SPEND_PER_CUSTOMER": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158425, 39.952174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pp5-d9z", "LOCATION_NAME": "SBKH Moto", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.99283, "LONGITUDE": -75.1131, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1147.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 289.04, "MEDIAN_SPEND_PER_CUSTOMER": 289.04 }, "geometry": { "type": "Point", "coordinates": [ -75.1131, 39.99283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-y5f", "LOCATION_NAME": "Mineralistic", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 39.941629, "LONGITUDE": -75.148231, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3702.0, "Total Transactions": 73.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 45.17 }, "geometry": { "type": "Point", "coordinates": [ -75.148231, 39.941629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-33q", "LOCATION_NAME": "LOFT", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.953717, "LONGITUDE": -75.195101, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 960.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.99, "MEDIAN_SPEND_PER_CUSTOMER": 38.99 }, "geometry": { "type": "Point", "coordinates": [ -75.195101, 39.953717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "LOCATION_NAME": "Tomo Sushi & Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": null, "Total Spend": 9597.0, "Total Transactions": 212.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.88, "MEDIAN_SPEND_PER_CUSTOMER": 50.76 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "LOCATION_NAME": "Sam's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 32.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 13.0, "Total Spend": 964.0, "Total Transactions": 38.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.24, "MEDIAN_SPEND_PER_CUSTOMER": 30.09 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-33q", "LOCATION_NAME": "Urban Outfitters", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.953788, "LONGITUDE": -75.194952, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 46.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2891.0, "Total Transactions": 44.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.32, "MEDIAN_SPEND_PER_CUSTOMER": 37.32 }, "geometry": { "type": "Point", "coordinates": [ -75.194952, 39.953788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-td9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902269, "LONGITUDE": -75.241997, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 44.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2947.0, "Total Transactions": 197.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.83, "MEDIAN_SPEND_PER_CUSTOMER": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.241997, 39.902269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "LOCATION_NAME": "Nom Nom Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 26.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 67.0, "Total Spend": 706.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.92, "MEDIAN_SPEND_PER_CUSTOMER": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7x-b6k", "LOCATION_NAME": "New England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040059, "LONGITUDE": -75.066331, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 30.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 125.0, "Total Spend": 919.0, "Total Transactions": 42.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.25, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.066331, 40.040059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "LOCATION_NAME": "Fiesta Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 36.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 332.0, "Total Spend": 2134.0, "Total Transactions": 107.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.7, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "LOCATION_NAME": "Ryan's Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 64.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 30.0, "Total Spend": 10186.0, "Total Transactions": 202.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.29, "MEDIAN_SPEND_PER_CUSTOMER": 38.22 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "LOCATION_NAME": "The Flavor Spot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 89.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3581.0, "Total Transactions": 171.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.15, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pmf-jgk", "LOCATION_NAME": "Abe Fisher", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950786, "LONGITUDE": -75.168347, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 232.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 121.0, "Total Spend": 1694.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.62, "MEDIAN_SPEND_PER_CUSTOMER": 125.62 }, "geometry": { "type": "Point", "coordinates": [ -75.168347, 39.950786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-st9", "LOCATION_NAME": "Cantina Los Caballitos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928871, "LONGITUDE": -75.16446, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 95.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 61.0, "Total Spend": 14722.0, "Total Transactions": 302.0, "Total Customers": 254.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.64, "MEDIAN_SPEND_PER_CUSTOMER": 50.79 }, "geometry": { "type": "Point", "coordinates": [ -75.16446, 39.928871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pm9-tqf", "LOCATION_NAME": "Wetzel's Pretzels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952391, "LONGITUDE": -75.157424, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 218.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2229.0, "Total Transactions": 252.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.66, "MEDIAN_SPEND_PER_CUSTOMER": 11.42 }, "geometry": { "type": "Point", "coordinates": [ -75.157424, 39.952391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-rkz", "LOCATION_NAME": "Zahav", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946194, "LONGITUDE": -75.145279, "DATE_RANGE_START": 2020, "Total Visits": 353.0, "Total Visitors": 185.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 82.0, "Total Spend": 16095.0, "Total Transactions": 81.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 205.36, "MEDIAN_SPEND_PER_CUSTOMER": 216.58 }, "geometry": { "type": "Point", "coordinates": [ -75.145279, 39.946194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgb-s89", "LOCATION_NAME": "The Lucky Well Spring Arts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961294, "LONGITUDE": -75.154234, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 75.0, "POI_CBG": 421010376001.0, "MEDIAN_DWELL": 212.0, "Total Spend": 1892.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.1, "MEDIAN_SPEND_PER_CUSTOMER": 62.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154234, 39.961294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "LOCATION_NAME": "Saigon Noodle Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074096, "LONGITUDE": -75.202561, "DATE_RANGE_START": 2020, "Total Visits": 399.0, "Total Visitors": 282.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1520.0, "Total Transactions": 64.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.02 }, "geometry": { "type": "Point", "coordinates": [ -75.202561, 40.074096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg9-59f", "LOCATION_NAME": "Charlies Country Ribs", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.98708, "LONGITUDE": -75.175955, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010151021.0, "MEDIAN_DWELL": null, "Total Spend": 248.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 29.54 }, "geometry": { "type": "Point", "coordinates": [ -75.175955, 39.98708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": null, "Total Spend": 118.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.17, "MEDIAN_SPEND_PER_CUSTOMER": 6.21 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-tsq", "LOCATION_NAME": "Charlie's Roast Pork", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931451, "LONGITUDE": -75.149656, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1781.0, "Total Transactions": 66.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 27.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 39.931451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj6-8y9", "LOCATION_NAME": "El Rinconcito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031782, "LONGITUDE": -75.107117, "DATE_RANGE_START": 2020, "Total Visits": 179.0, "Total Visitors": 145.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 991.0, "Total Transactions": 54.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.97 }, "geometry": { "type": "Point", "coordinates": [ -75.107117, 40.031782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "LOCATION_NAME": "Philly Tacos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 5065.0, "Total Transactions": 54.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "LOCATION_NAME": "Nori Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 26.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 340.0, "Total Spend": 2703.0, "Total Transactions": 66.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.0, "MEDIAN_SPEND_PER_CUSTOMER": 39.34 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-vcq", "LOCATION_NAME": "The Dolphin Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.930579, "LONGITUDE": -75.167937, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 34.0, "POI_CBG": 421010029002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1848.0, "Total Transactions": 95.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.98, "MEDIAN_SPEND_PER_CUSTOMER": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.167937, 39.930579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "LOCATION_NAME": "Museum Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 42.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2267.0, "Total Transactions": 185.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 15.05 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 56.0, "POI_CBG": 421010149005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 741.0, "Total Transactions": 60.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "LOCATION_NAME": "Barcade", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96746, "LONGITUDE": -75.134594, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 208.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 173.0, "Total Spend": 8901.0, "Total Transactions": 161.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.27, "MEDIAN_SPEND_PER_CUSTOMER": 42.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134594, 39.96746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-54v", "LOCATION_NAME": "Tyson Bees", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950018, "LONGITUDE": -75.191759, "DATE_RANGE_START": 2020, "Total Visits": 7584.0, "Total Visitors": 3819.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 234.0, "Total Spend": 449.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.69, "MEDIAN_SPEND_PER_CUSTOMER": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.191759, 39.950018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj4-3qz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017536, "LONGITUDE": -75.148496, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 66.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 11300.0, "Total Transactions": 381.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.61, "MEDIAN_SPEND_PER_CUSTOMER": 30.51 }, "geometry": { "type": "Point", "coordinates": [ -75.148496, 40.017536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2020, "Total Visits": 621.0, "Total Visitors": 472.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 15953.0, "Total Transactions": 1423.0, "Total Customers": 832.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.51, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2020, "Total Visits": 151.0, "Total Visitors": 129.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5166.0, "Total Transactions": 425.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pg8-jjv", "LOCATION_NAME": "Deborah's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97383, "LONGITUDE": -75.179259, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 585.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.72, "MEDIAN_SPEND_PER_CUSTOMER": 44.01 }, "geometry": { "type": "Point", "coordinates": [ -75.179259, 39.97383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914447, "LONGITUDE": -75.156842, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 38.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 276.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.64, "MEDIAN_SPEND_PER_CUSTOMER": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.156842, 39.914447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-7wk", "LOCATION_NAME": "Fuel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953562, "LONGITUDE": -75.188092, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 56.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 26.0, "Total Spend": 4991.0, "Total Transactions": 252.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.25, "MEDIAN_SPEND_PER_CUSTOMER": 23.38 }, "geometry": { "type": "Point", "coordinates": [ -75.188092, 39.953562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "LOCATION_NAME": "Einstein Brothers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994394, "LONGITUDE": -75.238422, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 60.0, "POI_CBG": 421010117001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 715.0, "Total Transactions": 75.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.77, "MEDIAN_SPEND_PER_CUSTOMER": 7.29 }, "geometry": { "type": "Point", "coordinates": [ -75.238422, 39.994394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-94v", "LOCATION_NAME": "Mood Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948631, "LONGITUDE": -75.215805, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": null, "Total Spend": 2720.0, "Total Transactions": 85.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.49, "MEDIAN_SPEND_PER_CUSTOMER": 31.08 }, "geometry": { "type": "Point", "coordinates": [ -75.215805, 39.948631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j7q", "LOCATION_NAME": "J Mclaughlin", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075451, "LONGITUDE": -75.204853, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": null, "Total Spend": 883.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 170.64, "MEDIAN_SPEND_PER_CUSTOMER": 222.32 }, "geometry": { "type": "Point", "coordinates": [ -75.204853, 40.075451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vfz", "LOCATION_NAME": "Four Worlds Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94341, "LONGITUDE": -75.210507, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 8.0, "POI_CBG": 421010074001.0, "MEDIAN_DWELL": 291.0, "Total Spend": 55.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.94, "MEDIAN_SPEND_PER_CUSTOMER": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.210507, 39.94341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "LOCATION_NAME": "Philadelphia Bikesmith", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.962935, "LONGITUDE": -75.169326, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 16.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 12014.0, "Total Transactions": 125.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.4, "MEDIAN_SPEND_PER_CUSTOMER": 51.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169326, 39.962935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 14139.0, "Total Transactions": 863.0, "Total Customers": 443.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.97, "MEDIAN_SPEND_PER_CUSTOMER": 19.97 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "LOCATION_NAME": "The Gold Standard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3035.0, "Total Transactions": 171.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.3, "MEDIAN_SPEND_PER_CUSTOMER": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-nqz", "LOCATION_NAME": "Thanal Indian Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955758, "LONGITUDE": -75.172555, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 28.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 366.0, "Total Spend": 4742.0, "Total Transactions": 93.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.59, "MEDIAN_SPEND_PER_CUSTOMER": 60.17 }, "geometry": { "type": "Point", "coordinates": [ -75.172555, 39.955758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "LOCATION_NAME": "Apricot Stone", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5538.0, "Total Transactions": 115.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.44, "MEDIAN_SPEND_PER_CUSTOMER": 47.96 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-tgk", "LOCATION_NAME": "Southside Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019691, "LONGITUDE": -75.174271, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 32.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": 513.0, "Total Spend": 83.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.174271, 40.019691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-vj9", "LOCATION_NAME": "Fairmount Pet Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.967037, "LONGITUDE": -75.17115, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1306.0, "Total Transactions": 26.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.55, "MEDIAN_SPEND_PER_CUSTOMER": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.17115, 39.967037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-fs5", "LOCATION_NAME": "Gold Star Auto Sales", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.021542, "LONGITUDE": -75.038736, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 165.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1469.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 370.0, "MEDIAN_SPEND_PER_CUSTOMER": 370.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038736, 40.021542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 83.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11221.0, "Total Transactions": 222.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p89-nt9", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.012783, "LONGITUDE": -75.06594, "DATE_RANGE_START": 2020, "Total Visits": 2005.0, "Total Visitors": 1231.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1176.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 296.31, "MEDIAN_SPEND_PER_CUSTOMER": 296.31 }, "geometry": { "type": "Point", "coordinates": [ -75.06594, 40.012783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "LOCATION_NAME": "The Beer Peddlers", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2020, "Total Visits": 226.0, "Total Visitors": 175.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 19892.0, "Total Transactions": 550.0, "Total Customers": 427.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.21, "MEDIAN_SPEND_PER_CUSTOMER": 34.53 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040851, "LONGITUDE": -75.075239, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 328.0, "POI_CBG": 421010313004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1183.0, "Total Transactions": 64.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.04, "MEDIAN_SPEND_PER_CUSTOMER": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075239, 40.040851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.045071, "LONGITUDE": -75.088214, "DATE_RANGE_START": 2020, "Total Visits": 1385.0, "Total Visitors": 988.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 18693.0, "Total Transactions": 782.0, "Total Customers": 506.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.06, "MEDIAN_SPEND_PER_CUSTOMER": 29.62 }, "geometry": { "type": "Point", "coordinates": [ -75.088214, 40.045071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "LOCATION_NAME": "Seorabol Korean Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 42.0, "POI_CBG": 421010274023.0, "MEDIAN_DWELL": 638.0, "Total Spend": 929.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.24, "MEDIAN_SPEND_PER_CUSTOMER": 59.24 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "LOCATION_NAME": "Windsor", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08613, "LONGITUDE": -74.962864, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 177.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 5233.0, "Total Transactions": 89.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.49, "MEDIAN_SPEND_PER_CUSTOMER": 48.49 }, "geometry": { "type": "Point", "coordinates": [ -74.962864, 40.08613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-5zz", "LOCATION_NAME": "Crunchik'n", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948207, "LONGITUDE": -75.159314, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 69.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 140.0, "Total Spend": 370.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.85, "MEDIAN_SPEND_PER_CUSTOMER": 32.41 }, "geometry": { "type": "Point", "coordinates": [ -75.159314, 39.948207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7bk", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948987, "LONGITUDE": -75.16307, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 220.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 187.0, "Total Spend": 3473.0, "Total Transactions": 123.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.82, "MEDIAN_SPEND_PER_CUSTOMER": 26.86 }, "geometry": { "type": "Point", "coordinates": [ -75.16307, 39.948987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-x5z", "LOCATION_NAME": "Essen Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931036, "LONGITUDE": -75.161763, "DATE_RANGE_START": 2020, "Total Visits": 665.0, "Total Visitors": 461.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 26.0, "Total Spend": 3092.0, "Total Transactions": 193.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.78, "MEDIAN_SPEND_PER_CUSTOMER": 15.35 }, "geometry": { "type": "Point", "coordinates": [ -75.161763, 39.931036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 81.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3190.0, "Total Transactions": 546.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.07, "MEDIAN_SPEND_PER_CUSTOMER": 6.54 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-whq", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.051934, "LONGITUDE": -75.058717, "DATE_RANGE_START": 2020, "Total Visits": 834.0, "Total Visitors": 667.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5419.0, "Total Transactions": 60.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.41, "MEDIAN_SPEND_PER_CUSTOMER": 60.68 }, "geometry": { "type": "Point", "coordinates": [ -75.058717, 40.051934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.955786, "LONGITUDE": -75.214102, "DATE_RANGE_START": 2020, "Total Visits": 1596.0, "Total Visitors": 1121.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1344.0, "Total Transactions": 64.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.214102, 39.955786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.027243, "LONGITUDE": -75.110271, "DATE_RANGE_START": 2020, "Total Visits": 1570.0, "Total Visitors": 1165.0, "POI_CBG": 421010292001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 955.0, "Total Transactions": 34.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.94, "MEDIAN_SPEND_PER_CUSTOMER": 30.47 }, "geometry": { "type": "Point", "coordinates": [ -75.110271, 40.027243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 10.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1188.0, "Total Transactions": 75.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.55, "MEDIAN_SPEND_PER_CUSTOMER": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmc-vzz", "LOCATION_NAME": "Little Sicily 2", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926486, "LONGITUDE": -75.145689, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 254.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 57.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.31, "MEDIAN_SPEND_PER_CUSTOMER": 14.31 }, "geometry": { "type": "Point", "coordinates": [ -75.145689, 39.926486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-hkf", "LOCATION_NAME": "The Coventry Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953273, "LONGITUDE": -75.173676, "DATE_RANGE_START": 2020, "Total Visits": 1622.0, "Total Visitors": 766.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 240.0, "Total Spend": 2034.0, "Total Transactions": 236.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.91, "MEDIAN_SPEND_PER_CUSTOMER": 13.18 }, "geometry": { "type": "Point", "coordinates": [ -75.173676, 39.953273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.923624, "LONGITUDE": -75.139475, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 502.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 10742.0, "Total Transactions": 191.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.13, "MEDIAN_SPEND_PER_CUSTOMER": 43.62 }, "geometry": { "type": "Point", "coordinates": [ -75.139475, 39.923624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "LOCATION_NAME": "Mostly Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.94129, "LONGITUDE": -75.151876, "DATE_RANGE_START": 2020, "Total Visits": 139.0, "Total Visitors": 99.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 1065.0, "Total Transactions": 52.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.9, "MEDIAN_SPEND_PER_CUSTOMER": 20.38 }, "geometry": { "type": "Point", "coordinates": [ -75.151876, 39.94129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgd-z9f", "LOCATION_NAME": "UrHomeInPhilly", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.956628, "LONGITUDE": -75.194459, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 446.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.18, "MEDIAN_SPEND_PER_CUSTOMER": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.194459, 39.956628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-pn5", "LOCATION_NAME": "Yiro Yiro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954699, "LONGITUDE": -75.202157, "DATE_RANGE_START": 2020, "Total Visits": 232.0, "Total Visitors": 131.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 114.0, "Total Spend": 4719.0, "Total Transactions": 204.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.6, "MEDIAN_SPEND_PER_CUSTOMER": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202157, 39.954699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "LOCATION_NAME": "House of Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2020, "Total Visits": 1141.0, "Total Visitors": 774.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 34.0, "Total Spend": 1145.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.92, "MEDIAN_SPEND_PER_CUSTOMER": 31.21 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "LOCATION_NAME": "Morgan's Pier", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955033, "LONGITUDE": -75.13891, "DATE_RANGE_START": 2020, "Total Visits": 429.0, "Total Visitors": 298.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 83.0, "Total Spend": 157530.0, "Total Transactions": 1786.0, "Total Customers": 1644.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.41, "MEDIAN_SPEND_PER_CUSTOMER": 69.07 }, "geometry": { "type": "Point", "coordinates": [ -75.13891, 39.955033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-p85-p35", "LOCATION_NAME": "The Fresh Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057189, "LONGITUDE": -75.030329, "DATE_RANGE_START": 2020, "Total Visits": 852.0, "Total Visitors": 613.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 165.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.3, "MEDIAN_SPEND_PER_CUSTOMER": 25.11 }, "geometry": { "type": "Point", "coordinates": [ -75.030329, 40.057189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 204.0, "POI_CBG": 421010278002.0, "MEDIAN_DWELL": 656.0, "Total Spend": 1478.0, "Total Transactions": 99.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.38, "MEDIAN_SPEND_PER_CUSTOMER": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2020, "Total Visits": 570.0, "Total Visitors": 484.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 15953.0, "Total Transactions": 1153.0, "Total Customers": 875.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.92, "MEDIAN_SPEND_PER_CUSTOMER": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmb-49z", "LOCATION_NAME": "Dottie's Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942841, "LONGITUDE": -75.151914, "DATE_RANGE_START": 2020, "Total Visits": 808.0, "Total Visitors": 568.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 25.0, "Total Spend": 127.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.95, "MEDIAN_SPEND_PER_CUSTOMER": 31.95 }, "geometry": { "type": "Point", "coordinates": [ -75.151914, 39.942841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953718, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 89.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2053.0, "Total Transactions": 387.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.74, "MEDIAN_SPEND_PER_CUSTOMER": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.953718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032682, "LONGITUDE": -75.084504, "DATE_RANGE_START": 2020, "Total Visits": 445.0, "Total Visitors": 286.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2255.0, "Total Transactions": 298.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.13, "MEDIAN_SPEND_PER_CUSTOMER": 8.61 }, "geometry": { "type": "Point", "coordinates": [ -75.084504, 40.032682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg8-kzz", "LOCATION_NAME": "2637brew", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.974293, "LONGITUDE": -75.180147, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 463.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.48, "MEDIAN_SPEND_PER_CUSTOMER": 40.48 }, "geometry": { "type": "Point", "coordinates": [ -75.180147, 39.974293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvw-9pv", "LOCATION_NAME": "52nd Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963376, "LONGITUDE": -75.224566, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010093005.0, "MEDIAN_DWELL": 219.0, "Total Spend": 1549.0, "Total Transactions": 101.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.224566, 39.963376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "LOCATION_NAME": "A Lin Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 809.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.46, "MEDIAN_SPEND_PER_CUSTOMER": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "LOCATION_NAME": "Overbrook Pizza Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6270.0, "Total Transactions": 262.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.09, "MEDIAN_SPEND_PER_CUSTOMER": 25.87 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "LOCATION_NAME": "A Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950427, "LONGITUDE": -75.170427, "DATE_RANGE_START": 2020, "Total Visits": 466.0, "Total Visitors": 369.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 71.0, "Total Spend": 10277.0, "Total Transactions": 228.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 45.43 }, "geometry": { "type": "Point", "coordinates": [ -75.170427, 39.950427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "LOCATION_NAME": "Fuel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 30.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 39.0, "Total Spend": 2869.0, "Total Transactions": 123.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.77 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "LOCATION_NAME": "Prohibition Taproom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 58.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4506.0, "Total Transactions": 89.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg8-ks5", "LOCATION_NAME": "Blue Jay Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974422, "LONGITUDE": -75.183713, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1592.0, "Total Transactions": 77.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.55, "MEDIAN_SPEND_PER_CUSTOMER": 23.27 }, "geometry": { "type": "Point", "coordinates": [ -75.183713, 39.974422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@63s-dvw-j5f", "LOCATION_NAME": "Montego Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956818, "LONGITUDE": -75.226326, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010085006.0, "MEDIAN_DWELL": 9.0, "Total Spend": 119.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226326, 39.956818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "LOCATION_NAME": "Beer Stop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.015837, "LONGITUDE": -75.130275, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 262.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 270.0, "Total Spend": 6657.0, "Total Transactions": 218.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.75, "MEDIAN_SPEND_PER_CUSTOMER": 34.51 }, "geometry": { "type": "Point", "coordinates": [ -75.130275, 40.015837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-vzz", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.926515, "LONGITUDE": -75.145923, "DATE_RANGE_START": 2020, "Total Visits": 333.0, "Total Visitors": 306.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1977.0, "Total Transactions": 81.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.11 }, "geometry": { "type": "Point", "coordinates": [ -75.145923, 39.926515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "LOCATION_NAME": "Olive Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 69.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 298.0, "Total Spend": 14954.0, "Total Transactions": 333.0, "Total Customers": 300.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.77, "MEDIAN_SPEND_PER_CUSTOMER": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "LOCATION_NAME": "Pizzeria Stella", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 153.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 10.0, "Total Spend": 21695.0, "Total Transactions": 341.0, "Total Customers": 288.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.12, "MEDIAN_SPEND_PER_CUSTOMER": 61.68 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-jjv", "LOCATION_NAME": "The Continental Mid Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951903, "LONGITUDE": -75.170452, "DATE_RANGE_START": 2020, "Total Visits": 466.0, "Total Visitors": 373.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 12876.0, "Total Transactions": 220.0, "Total Customers": 189.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.32, "MEDIAN_SPEND_PER_CUSTOMER": 51.44 }, "geometry": { "type": "Point", "coordinates": [ -75.170452, 39.951903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "LOCATION_NAME": "Mac Mart Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951438, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 95.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3037.0, "Total Transactions": 153.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-qfz", "LOCATION_NAME": "Workshop Underground", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.943884, "LONGITUDE": -75.16864, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 139.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 639.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 160.92, "MEDIAN_SPEND_PER_CUSTOMER": 160.92 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 39.943884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068041, "LONGITUDE": -75.007034, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 95.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 7.0, "Total Spend": 578.0, "Total Transactions": 91.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.98, "MEDIAN_SPEND_PER_CUSTOMER": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.007034, 40.068041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.990629, "LONGITUDE": -75.10302, "DATE_RANGE_START": 2020, "Total Visits": 584.0, "Total Visitors": 514.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 39824.0, "Total Transactions": 768.0, "Total Customers": 595.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.76, "MEDIAN_SPEND_PER_CUSTOMER": 50.72 }, "geometry": { "type": "Point", "coordinates": [ -75.10302, 39.990629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "LOCATION_NAME": "Beijing Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1740.0, "Total Transactions": 77.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.55, "MEDIAN_SPEND_PER_CUSTOMER": 23.71 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-p35", "LOCATION_NAME": "Jhoandra Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007461, "LONGITUDE": -75.138722, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 36.0, "POI_CBG": 421010199001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 316.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.8, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.138722, 40.007461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "LOCATION_NAME": "Moore Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.926601, "LONGITUDE": -75.156132, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 167.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 20428.0, "Total Transactions": 548.0, "Total Customers": 290.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 38.85 }, "geometry": { "type": "Point", "coordinates": [ -75.156132, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "LOCATION_NAME": "Destination XL", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2020, "Total Visits": 226.0, "Total Visitors": 181.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 7406.0, "Total Transactions": 54.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.0, "MEDIAN_SPEND_PER_CUSTOMER": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "LOCATION_NAME": "Jo-Ann Fabric and Craft Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2020, "Total Visits": 361.0, "Total Visitors": 333.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 22817.0, "Total Transactions": 641.0, "Total Customers": 461.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.23, "MEDIAN_SPEND_PER_CUSTOMER": 30.67 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "LOCATION_NAME": "SquareBurger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 85.0, "Total Spend": 197.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027472, "LONGITUDE": -75.209408, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 36.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 14752.0, "Total Transactions": 597.0, "Total Customers": 453.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.37, "MEDIAN_SPEND_PER_CUSTOMER": 26.84 }, "geometry": { "type": "Point", "coordinates": [ -75.209408, 40.027472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-7yv", "LOCATION_NAME": "Bee Natural", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953663, "LONGITUDE": -75.158929, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 505.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.19, "MEDIAN_SPEND_PER_CUSTOMER": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.158929, 39.953663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923962, "LONGITUDE": -75.142554, "DATE_RANGE_START": 2020, "Total Visits": 580.0, "Total Visitors": 508.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14163.0, "Total Transactions": 1387.0, "Total Customers": 1119.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.47, "MEDIAN_SPEND_PER_CUSTOMER": 9.74 }, "geometry": { "type": "Point", "coordinates": [ -75.142554, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953617, "LONGITUDE": -75.167012, "DATE_RANGE_START": 2020, "Total Visits": 1328.0, "Total Visitors": 955.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2247.0, "Total Transactions": 347.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 7.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167012, 39.953617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-t7q", "LOCATION_NAME": "Craftsman Row Saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949101, "LONGITUDE": -75.154283, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 151.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 2016.0, "Total Transactions": 66.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.9, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.154283, 39.949101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgb-3dv", "LOCATION_NAME": "Rex Pizza & Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956427, "LONGITUDE": -75.165441, "DATE_RANGE_START": 2020, "Total Visits": 455.0, "Total Visitors": 276.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 218.0, "Total Spend": 928.0, "Total Transactions": 62.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.51, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.165441, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992457, "LONGITUDE": -75.097895, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 367.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 8743.0, "Total Transactions": 570.0, "Total Customers": 429.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.1, "MEDIAN_SPEND_PER_CUSTOMER": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.097895, 39.992457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm9-5zz", "LOCATION_NAME": "Caffe Chicco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918638, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 6.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 254.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.91, "MEDIAN_SPEND_PER_CUSTOMER": 63.91 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.918638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "LOCATION_NAME": "Sue's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946236, "LONGITUDE": -75.145477, "DATE_RANGE_START": 2020, "Total Visits": 353.0, "Total Visitors": 185.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 82.0, "Total Spend": 14850.0, "Total Transactions": 677.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.65, "MEDIAN_SPEND_PER_CUSTOMER": 33.97 }, "geometry": { "type": "Point", "coordinates": [ -75.145477, 39.946236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.99445, "LONGITUDE": -75.09179, "DATE_RANGE_START": 2020, "Total Visits": 4508.0, "Total Visitors": 2580.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 10074.0, "Total Transactions": 67.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 138.14, "MEDIAN_SPEND_PER_CUSTOMER": 170.37 }, "geometry": { "type": "Point", "coordinates": [ -75.09179, 39.99445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993511, "LONGITUDE": -75.143942, "DATE_RANGE_START": 2020, "Total Visits": 603.0, "Total Visitors": 349.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 655.0, "Total Transactions": 38.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.19, "MEDIAN_SPEND_PER_CUSTOMER": 18.51 }, "geometry": { "type": "Point", "coordinates": [ -75.143942, 39.993511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "LOCATION_NAME": "CLo", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010195022.0, "MEDIAN_DWELL": null, "Total Spend": 11835.0, "Total Transactions": 99.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.02, "MEDIAN_SPEND_PER_CUSTOMER": 102.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.015701, "LONGITUDE": -75.13771, "DATE_RANGE_START": 2020, "Total Visits": 298.0, "Total Visitors": 240.0, "POI_CBG": 421010197004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 14737.0, "Total Transactions": 312.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.23, "MEDIAN_SPEND_PER_CUSTOMER": 34.97 }, "geometry": { "type": "Point", "coordinates": [ -75.13771, 40.015701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "LOCATION_NAME": "Gia Pronto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4789.0, "Total Transactions": 544.0, "Total Customers": 343.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.22, "MEDIAN_SPEND_PER_CUSTOMER": 9.57 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pj8-tgk", "LOCATION_NAME": "New Ben City Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035691, "LONGITUDE": -75.100546, "DATE_RANGE_START": 2020, "Total Visits": 1135.0, "Total Visitors": 667.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4522.0, "Total Transactions": 421.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100546, 40.035691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996676, "LONGITUDE": -75.089544, "DATE_RANGE_START": 2020, "Total Visits": 987.0, "Total Visitors": 814.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 26067.0, "Total Transactions": 629.0, "Total Customers": 486.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.19, "MEDIAN_SPEND_PER_CUSTOMER": 32.64 }, "geometry": { "type": "Point", "coordinates": [ -75.089544, 39.996676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2020, "Total Visits": 673.0, "Total Visitors": 439.0, "POI_CBG": 421010389003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2352.0, "Total Transactions": 107.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.49, "MEDIAN_SPEND_PER_CUSTOMER": 18.43 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-mx5", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006784, "LONGITUDE": -75.097559, "DATE_RANGE_START": 2020, "Total Visits": 387.0, "Total Visitors": 312.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 465.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.13, "MEDIAN_SPEND_PER_CUSTOMER": 38.13 }, "geometry": { "type": "Point", "coordinates": [ -75.097559, 40.006784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj3-47q", "LOCATION_NAME": "Noeliza Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.019025, "LONGITUDE": -75.152627, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 18.0, "POI_CBG": 421010204004.0, "MEDIAN_DWELL": 13.0, "Total Spend": 37.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.39, "MEDIAN_SPEND_PER_CUSTOMER": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.152627, 40.019025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-c3q", "LOCATION_NAME": "Yarnphoria", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.944703, "LONGITUDE": -75.159061, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 73.0, "Total Spend": 975.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 131.2, "MEDIAN_SPEND_PER_CUSTOMER": 131.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159061, 39.944703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-cyv", "LOCATION_NAME": "Jaggie's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.975337, "LONGITUDE": -75.244317, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010101006.0, "MEDIAN_DWELL": 11.0, "Total Spend": 440.0, "Total Transactions": 24.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.75, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244317, 39.975337 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-x3q", "LOCATION_NAME": "Medina mini market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984945, "LONGITUDE": -75.147239, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 12.0, "POI_CBG": 421010377003.0, "MEDIAN_DWELL": 530.0, "Total Spend": 67.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.38, "MEDIAN_SPEND_PER_CUSTOMER": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.147239, 39.984945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "LOCATION_NAME": "Trio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968734, "LONGITUDE": -75.180754, "DATE_RANGE_START": 2020, "Total Visits": 369.0, "Total Visitors": 159.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 148.0, "Total Spend": 1795.0, "Total Transactions": 115.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.27, "MEDIAN_SPEND_PER_CUSTOMER": 18.53 }, "geometry": { "type": "Point", "coordinates": [ -75.180754, 39.968734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-vj9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.018604, "LONGITUDE": -75.214313, "DATE_RANGE_START": 2020, "Total Visits": 431.0, "Total Visitors": 320.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 13200.0, "Total Transactions": 593.0, "Total Customers": 451.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.54, "MEDIAN_SPEND_PER_CUSTOMER": 18.93 }, "geometry": { "type": "Point", "coordinates": [ -75.214313, 40.018604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-cyv", "LOCATION_NAME": "El Provocon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039466, "LONGITUDE": -75.056309, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 113.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 373.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056309, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.029702, "LONGITUDE": -75.035384, "DATE_RANGE_START": 2020, "Total Visits": 1370.0, "Total Visitors": 947.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1167.0, "Total Transactions": 46.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.25, "MEDIAN_SPEND_PER_CUSTOMER": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.035384, 40.029702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "LOCATION_NAME": "Golden Crust Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 34.0, "Total Spend": 3101.0, "Total Transactions": 153.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.19, "MEDIAN_SPEND_PER_CUSTOMER": 24.46 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-wzf", "LOCATION_NAME": "Firestone Complete Auto Care", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.087378, "LONGITUDE": -75.035984, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 28.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5201.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 193.23, "MEDIAN_SPEND_PER_CUSTOMER": 193.23 }, "geometry": { "type": "Point", "coordinates": [ -75.035984, 40.087378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 129.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 288.0, "Total Spend": 890.0, "Total Transactions": 42.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.66, "MEDIAN_SPEND_PER_CUSTOMER": 24.03 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p7w-gc5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072472, "LONGITUDE": -75.075745, "DATE_RANGE_START": 2020, "Total Visits": 810.0, "Total Visitors": 540.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 417.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.075745, 40.072472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnw-mzf", "LOCATION_NAME": "The Foodery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963893, "LONGITUDE": -75.14043, "DATE_RANGE_START": 2020, "Total Visits": 937.0, "Total Visitors": 685.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 201.0, "Total Spend": 6150.0, "Total Transactions": 306.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 26.59 }, "geometry": { "type": "Point", "coordinates": [ -75.14043, 39.963893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm4-b6k", "LOCATION_NAME": "Two Eagles Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934031, "LONGITUDE": -75.177208, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 30.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 124.0, "Total Spend": 647.0, "Total Transactions": 66.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.64, "MEDIAN_SPEND_PER_CUSTOMER": 11.26 }, "geometry": { "type": "Point", "coordinates": [ -75.177208, 39.934031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.912498, "LONGITUDE": -75.15633, "DATE_RANGE_START": 2020, "Total Visits": 1681.0, "Total Visitors": 1407.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 6530.0, "Total Transactions": 147.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.61, "MEDIAN_SPEND_PER_CUSTOMER": 34.32 }, "geometry": { "type": "Point", "coordinates": [ -75.15633, 39.912498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2020, "Total Visits": 409.0, "Total Visitors": 242.0, "POI_CBG": 421010242001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1477.0, "Total Transactions": 167.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.49, "MEDIAN_SPEND_PER_CUSTOMER": 7.51 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-j7q", "LOCATION_NAME": "Frecon Farms", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950808, "LONGITUDE": -75.171348, "DATE_RANGE_START": 2020, "Total Visits": 2344.0, "Total Visitors": 1366.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 582.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171348, 39.950808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "LOCATION_NAME": "Mariposa Food Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947933, "LONGITUDE": -75.220657, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 52.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 71627.0, "Total Transactions": 1550.0, "Total Customers": 836.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.87, "MEDIAN_SPEND_PER_CUSTOMER": 55.18 }, "geometry": { "type": "Point", "coordinates": [ -75.220657, 39.947933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "LOCATION_NAME": "Arch Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953757, "LONGITUDE": -75.15607, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 73.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 116.0, "Total Spend": 586.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15607, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8t-vvf", "LOCATION_NAME": "Hanesbrands", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089656, "LONGITUDE": -74.961738, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 371.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1119.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961738, 40.089656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2020, "Total Visits": 423.0, "Total Visitors": 349.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1763.0, "Total Transactions": 64.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.03, "MEDIAN_SPEND_PER_CUSTOMER": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "LOCATION_NAME": "Kostas Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96897, "LONGITUDE": -75.134955, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 48.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 6097.0, "Total Transactions": 95.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.18, "MEDIAN_SPEND_PER_CUSTOMER": 52.42 }, "geometry": { "type": "Point", "coordinates": [ -75.134955, 39.96897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "LOCATION_NAME": "Rieker's Prime Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 236.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6730.0, "Total Transactions": 117.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.6, "MEDIAN_SPEND_PER_CUSTOMER": 54.38 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "LOCATION_NAME": "Quails", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2020, "Total Visits": 135.0, "Total Visitors": 121.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 605.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfy-d35", "LOCATION_NAME": "Something Different", "TOP_CATEGORY": "Florists", "LATITUDE": 40.033667, "LONGITUDE": -75.220915, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 20.0, "POI_CBG": 421010213005.0, "MEDIAN_DWELL": 93.0, "Total Spend": 742.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.220915, 40.033667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvw-hwk", "LOCATION_NAME": "Quick & Quality", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953576, "LONGITUDE": -75.219432, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 22.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 417.0, "Total Spend": 413.0, "Total Transactions": 14.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.0, "MEDIAN_SPEND_PER_CUSTOMER": 104.13 }, "geometry": { "type": "Point", "coordinates": [ -75.219432, 39.953576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "LOCATION_NAME": "Royal's Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 22.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5939.0, "Total Transactions": 204.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-5pv", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982882, "LONGITUDE": -75.10466, "DATE_RANGE_START": 2020, "Total Visits": 139.0, "Total Visitors": 32.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 517.0, "Total Spend": 322.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.48, "MEDIAN_SPEND_PER_CUSTOMER": 14.48 }, "geometry": { "type": "Point", "coordinates": [ -75.10466, 39.982882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2020, "Total Visits": 943.0, "Total Visitors": 635.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2416.0, "Total Transactions": 143.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.31, "MEDIAN_SPEND_PER_CUSTOMER": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "LOCATION_NAME": "Evergreen Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949185, "LONGITUDE": -75.147628, "DATE_RANGE_START": 2020, "Total Visits": 449.0, "Total Visitors": 318.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1749.0, "Total Transactions": 179.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.77, "MEDIAN_SPEND_PER_CUSTOMER": 14.15 }, "geometry": { "type": "Point", "coordinates": [ -75.147628, 39.949185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm4-mc5", "LOCATION_NAME": "Meat Market El Pueblo", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.935181, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 64.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 908.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.99, "MEDIAN_SPEND_PER_CUSTOMER": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.935181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926446, "LONGITUDE": -75.145402, "DATE_RANGE_START": 2020, "Total Visits": 721.0, "Total Visitors": 590.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 62120.0, "Total Transactions": 5526.0, "Total Customers": 3035.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.32, "MEDIAN_SPEND_PER_CUSTOMER": 12.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yd9", "LOCATION_NAME": "Tea Do", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954609, "LONGITUDE": -75.156246, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 64.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4952.0, "Total Transactions": 457.0, "Total Customers": 421.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.98, "MEDIAN_SPEND_PER_CUSTOMER": 10.34 }, "geometry": { "type": "Point", "coordinates": [ -75.156246, 39.954609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-psq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.120378, "LONGITUDE": -75.018088, "DATE_RANGE_START": 2020, "Total Visits": 659.0, "Total Visitors": 480.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1592.0, "Total Transactions": 111.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.36, "MEDIAN_SPEND_PER_CUSTOMER": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.018088, 40.120378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pm9-whq", "LOCATION_NAME": "Kurry Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950437, "LONGITUDE": -75.145824, "DATE_RANGE_START": 2020, "Total Visits": 1235.0, "Total Visitors": 788.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 108.0, "Total Spend": 248.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.59, "MEDIAN_SPEND_PER_CUSTOMER": 62.59 }, "geometry": { "type": "Point", "coordinates": [ -75.145824, 39.950437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kj9", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950618, "LONGITUDE": -75.175914, "DATE_RANGE_START": 2020, "Total Visits": 1296.0, "Total Visitors": 764.0, "POI_CBG": 421010008031.0, "MEDIAN_DWELL": 345.0, "Total Spend": 49.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.86, "MEDIAN_SPEND_PER_CUSTOMER": 4.86 }, "geometry": { "type": "Point", "coordinates": [ -75.175914, 39.950618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948761, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2020, "Total Visits": 210.0, "Total Visitors": 193.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2578.0, "Total Transactions": 433.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.29, "MEDIAN_SPEND_PER_CUSTOMER": 5.89 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.948761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-nwk", "LOCATION_NAME": "One Pound Cheesesteaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989593, "LONGITUDE": -75.125509, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 766.0, "Total Transactions": 34.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.75, "MEDIAN_SPEND_PER_CUSTOMER": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.125509, 39.989593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "LOCATION_NAME": "Tandoori bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2020, "Total Visits": 405.0, "Total Visitors": 246.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4274.0, "Total Transactions": 147.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.02, "MEDIAN_SPEND_PER_CUSTOMER": 34.75 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "LOCATION_NAME": "Bistro SouthEast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2020, "Total Visits": 865.0, "Total Visitors": 320.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 490.0, "Total Spend": 3373.0, "Total Transactions": 79.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.79, "MEDIAN_SPEND_PER_CUSTOMER": 35.48 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-phy-6kz", "LOCATION_NAME": "La Casa Del Sandwich", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024809, "LONGITUDE": -75.123343, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 270.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 112.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123343, 40.024809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 292.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8923.0, "Total Transactions": 637.0, "Total Customers": 482.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.93, "MEDIAN_SPEND_PER_CUSTOMER": 14.02 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978087, "LONGITUDE": -75.11955, "DATE_RANGE_START": 2020, "Total Visits": 1159.0, "Total Visitors": 659.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15205.0, "Total Transactions": 2019.0, "Total Customers": 947.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.11955, 39.978087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmb-5pv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952298, "LONGITUDE": -75.160846, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 103.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2608.0, "Total Transactions": 248.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.59, "MEDIAN_SPEND_PER_CUSTOMER": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160846, 39.952298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-k75", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.094502, "LONGITUDE": -75.018223, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 85.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6138.0, "Total Transactions": 125.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.02, "MEDIAN_SPEND_PER_CUSTOMER": 37.96 }, "geometry": { "type": "Point", "coordinates": [ -75.018223, 40.094502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.016881, "LONGITUDE": -75.096377, "DATE_RANGE_START": 2020, "Total Visits": 387.0, "Total Visitors": 331.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1365.0, "Total Transactions": 135.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.096377, 40.016881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 252.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 578.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.69, "MEDIAN_SPEND_PER_CUSTOMER": 34.69 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-9vf", "LOCATION_NAME": "Soul Boat", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931707, "LONGITUDE": -75.169132, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010030024.0, "MEDIAN_DWELL": null, "Total Spend": 471.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.06, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.169132, 39.931707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040652, "LONGITUDE": -75.223499, "DATE_RANGE_START": 2020, "Total Visits": 2199.0, "Total Visitors": 1247.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 157636.0, "Total Transactions": 10320.0, "Total Customers": 4545.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 22.94 }, "geometry": { "type": "Point", "coordinates": [ -75.223499, 40.040652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.959641, "LONGITUDE": -75.218508, "DATE_RANGE_START": 2020, "Total Visits": 524.0, "Total Visitors": 423.0, "POI_CBG": 421010104004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2455.0, "Total Transactions": 139.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.18, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.218508, 39.959641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.059864, "LONGITUDE": -75.166534, "DATE_RANGE_START": 2020, "Total Visits": 476.0, "Total Visitors": 351.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1943.0, "Total Transactions": 135.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.66 }, "geometry": { "type": "Point", "coordinates": [ -75.166534, 40.059864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-td9", "LOCATION_NAME": "Milano's Pizzeria and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948998, "LONGITUDE": -75.157083, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 109.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1837.0, "Total Transactions": 127.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.05, "MEDIAN_SPEND_PER_CUSTOMER": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157083, 39.948998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012435, "LONGITUDE": -75.119008, "DATE_RANGE_START": 2020, "Total Visits": 542.0, "Total Visitors": 455.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13562.0, "Total Transactions": 937.0, "Total Customers": 667.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.34, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.119008, 40.012435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pj2-94v", "LOCATION_NAME": "Hoagies Plus", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0012, "LONGITUDE": -75.114597, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 73.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 1141.0, "Total Spend": 577.0, "Total Transactions": 32.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.65, "MEDIAN_SPEND_PER_CUSTOMER": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.114597, 40.0012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2020, "Total Visits": 15310.0, "Total Visitors": 7291.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 133.0, "Total Spend": 11818.0, "Total Transactions": 1062.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.9, "MEDIAN_SPEND_PER_CUSTOMER": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg9-vzz", "LOCATION_NAME": "Fairmount Bicycles", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.967501, "LONGITUDE": -75.170829, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010135002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5326.0, "Total Transactions": 69.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170829, 39.967501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg3-jqf", "LOCATION_NAME": "Jansen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062669, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 20.0, "POI_CBG": 421010388001.0, "MEDIAN_DWELL": 82.0, "Total Spend": 5514.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 213.84, "MEDIAN_SPEND_PER_CUSTOMER": 206.92 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 40.062669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnx-dsq", "LOCATION_NAME": "Cedar Point Bar and Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976851, "LONGITUDE": -75.127783, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 9676.0, "Total Transactions": 204.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.1, "MEDIAN_SPEND_PER_CUSTOMER": 51.35 }, "geometry": { "type": "Point", "coordinates": [ -75.127783, 39.976851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952185, "LONGITUDE": -75.173618, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 97.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4498.0, "Total Transactions": 903.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.2, "MEDIAN_SPEND_PER_CUSTOMER": 6.16 }, "geometry": { "type": "Point", "coordinates": [ -75.173618, 39.952185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "LOCATION_NAME": "Function Coffee Labs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2020, "Total Visits": 1276.0, "Total Visitors": 961.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 938.0, "Total Transactions": 81.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pm4-pvz", "LOCATION_NAME": "Pit Stop HQ", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.938787, "LONGITUDE": -75.157591, "DATE_RANGE_START": 2020, "Total Visits": 784.0, "Total Visitors": 361.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 777.0, "Total Spend": 825.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.36, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.157591, 39.938787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "LOCATION_NAME": "Fiesta Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075222, "LONGITUDE": -75.204582, "DATE_RANGE_START": 2020, "Total Visits": 181.0, "Total Visitors": 157.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 2224.0, "Total Transactions": 93.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.55, "MEDIAN_SPEND_PER_CUSTOMER": 22.82 }, "geometry": { "type": "Point", "coordinates": [ -75.204582, 40.075222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949521, "LONGITUDE": -75.167452, "DATE_RANGE_START": 2020, "Total Visits": 911.0, "Total Visitors": 705.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 34.0, "Total Spend": 5244.0, "Total Transactions": 705.0, "Total Customers": 486.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.67, "MEDIAN_SPEND_PER_CUSTOMER": 5.89 }, "geometry": { "type": "Point", "coordinates": [ -75.167452, 39.949521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p7z-x89", "LOCATION_NAME": "Don Pedro Meats and Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.035069, "LONGITUDE": -75.082126, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 318.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 18.0, "Total Spend": 12611.0, "Total Transactions": 185.0, "Total Customers": 161.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.74, "MEDIAN_SPEND_PER_CUSTOMER": 72.28 }, "geometry": { "type": "Point", "coordinates": [ -75.082126, 40.035069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-mp9", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.9536, "LONGITUDE": -75.167205, "DATE_RANGE_START": 2020, "Total Visits": 1328.0, "Total Visitors": 955.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 126.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.32, "MEDIAN_SPEND_PER_CUSTOMER": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167205, 39.9536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "LOCATION_NAME": "Total Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2020, "Total Visits": 590.0, "Total Visitors": 457.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 59.0, "Total Spend": 6847.0, "Total Transactions": 252.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 25.51 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7b-qpv", "LOCATION_NAME": "Alfreds Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.064373, "LONGITUDE": -75.02133, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 131.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1035.0, "Total Transactions": 42.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.02133, 40.064373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "LOCATION_NAME": "Bloomingdale's Outlet Philadelphia", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2020, "Total Visits": 6123.0, "Total Visitors": 3702.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 70.0, "Total Spend": 2578.0, "Total Transactions": 58.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.68, "MEDIAN_SPEND_PER_CUSTOMER": 28.68 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnt-3wk", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.974634, "LONGITUDE": -75.119239, "DATE_RANGE_START": 2020, "Total Visits": 437.0, "Total Visitors": 373.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 2530.0, "Total Transactions": 50.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 51.82 }, "geometry": { "type": "Point", "coordinates": [ -75.119239, 39.974634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-rff", "LOCATION_NAME": "Montana Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042892, "LONGITUDE": -75.073677, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010313004.0, "MEDIAN_DWELL": 51.0, "Total Spend": 215.0, "Total Transactions": 14.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.98 }, "geometry": { "type": "Point", "coordinates": [ -75.073677, 40.042892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "LOCATION_NAME": "Chillin Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 48.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1132.0, "Total Transactions": 85.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.11 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7w-c89", "LOCATION_NAME": "Philly's Finest Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068215, "LONGITUDE": -75.06872, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 75.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2079.0, "Total Transactions": 48.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.43, "MEDIAN_SPEND_PER_CUSTOMER": 61.55 }, "geometry": { "type": "Point", "coordinates": [ -75.06872, 40.068215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmf-zj9", "LOCATION_NAME": "Arch Brunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955759, "LONGITUDE": -75.17646, "DATE_RANGE_START": 2020, "Total Visits": 1739.0, "Total Visitors": 1048.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 231.0, "Total Spend": 173.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17646, 39.955759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.951277, "LONGITUDE": -75.177618, "DATE_RANGE_START": 2020, "Total Visits": 1814.0, "Total Visitors": 1469.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3071.0, "Total Transactions": 143.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.26, "MEDIAN_SPEND_PER_CUSTOMER": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.177618, 39.951277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "LOCATION_NAME": "Finn Mccools Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 169.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7178.0, "Total Transactions": 161.0, "Total Customers": 123.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.67, "MEDIAN_SPEND_PER_CUSTOMER": 49.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "LOCATION_NAME": "Hatville Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 189.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2461.0, "Total Transactions": 161.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.63, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6p9", "LOCATION_NAME": "DelFrisco's Double Eagle Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950881, "LONGITUDE": -75.165456, "DATE_RANGE_START": 2020, "Total Visits": 1461.0, "Total Visitors": 1131.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 8714.0, "Total Transactions": 87.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.58, "MEDIAN_SPEND_PER_CUSTOMER": 84.24 }, "geometry": { "type": "Point", "coordinates": [ -75.165456, 39.950881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2020, "Total Visits": 10492.0, "Total Visitors": 6983.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2299.0, "Total Transactions": 322.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 7.88 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-y35", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.119184, "LONGITUDE": -75.01709, "DATE_RANGE_START": 2020, "Total Visits": 582.0, "Total Visitors": 447.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8450.0, "Total Transactions": 1157.0, "Total Customers": 484.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.1, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.01709, 40.119184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-y9z", "LOCATION_NAME": "Bella Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941863, "LONGITUDE": -75.148989, "DATE_RANGE_START": 2020, "Total Visits": 1066.0, "Total Visitors": 838.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 19.0, "Total Spend": 828.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.06, "MEDIAN_SPEND_PER_CUSTOMER": 62.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148989, 39.941863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.05212, "LONGITUDE": -75.010353, "DATE_RANGE_START": 2020, "Total Visits": 1437.0, "Total Visitors": 919.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 11.0, "Total Spend": 71832.0, "Total Transactions": 1727.0, "Total Customers": 1137.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.23, "MEDIAN_SPEND_PER_CUSTOMER": 36.28 }, "geometry": { "type": "Point", "coordinates": [ -75.010353, 40.05212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-r49", "LOCATION_NAME": "IGA", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.975356, "LONGITUDE": -75.119618, "DATE_RANGE_START": 2020, "Total Visits": 1820.0, "Total Visitors": 971.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2864.0, "Total Transactions": 83.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.98, "MEDIAN_SPEND_PER_CUSTOMER": 27.22 }, "geometry": { "type": "Point", "coordinates": [ -75.119618, 39.975356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039167, "LONGITUDE": -75.110538, "DATE_RANGE_START": 2020, "Total Visits": 1834.0, "Total Visitors": 1354.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1312.0, "Total Transactions": 54.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.34, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110538, 40.039167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvw-bhq", "LOCATION_NAME": "Top Taste", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961231, "LONGITUDE": -75.224868, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 64.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 226.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.5, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224868, 39.961231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj4-7wk", "LOCATION_NAME": "Vernie's Soul Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027362, "LONGITUDE": -75.153997, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010280003.0, "MEDIAN_DWELL": null, "Total Spend": 1400.0, "Total Transactions": 58.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.153997, 40.027362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "LOCATION_NAME": "Sumo Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": null, "Total Spend": 1817.0, "Total Transactions": 62.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.01, "MEDIAN_SPEND_PER_CUSTOMER": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj7-kmk", "LOCATION_NAME": "No 1 Waterice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021183, "LONGITUDE": -75.094108, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010301004.0, "MEDIAN_DWELL": null, "Total Spend": 92.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094108, 40.021183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgb-c3q", "LOCATION_NAME": "Lucky Goat Coffeehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972559, "LONGITUDE": -75.179343, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3277.0, "Total Transactions": 443.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.179343, 39.972559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp5-gff", "LOCATION_NAME": "Stop One Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.985559, "LONGITUDE": -75.111594, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 22.0, "POI_CBG": 421010179003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 23.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 5.75 }, "geometry": { "type": "Point", "coordinates": [ -75.111594, 39.985559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "LOCATION_NAME": "M & M Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 22.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 13.0, "Total Spend": 563.0, "Total Transactions": 34.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-hdv", "LOCATION_NAME": "The Juice Room", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0592, "LONGITUDE": -75.189995, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 937.0, "Total Transactions": 71.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.189995, 40.0592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-bzf", "LOCATION_NAME": "Penn City Auto Stores", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.915656, "LONGITUDE": -75.239326, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 48.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": 37.0, "Total Spend": 7808.0, "Total Transactions": 64.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.6, "MEDIAN_SPEND_PER_CUSTOMER": 90.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239326, 39.915656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pgf-fj9", "LOCATION_NAME": "Cleopatra Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.956516, "LONGITUDE": -75.206034, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 67.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 294.0, "Total Spend": 701.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206034, 39.956516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "LOCATION_NAME": "Giovani's Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951522, "LONGITUDE": -75.166746, "DATE_RANGE_START": 2020, "Total Visits": 625.0, "Total Visitors": 490.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4588.0, "Total Transactions": 226.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.46, "MEDIAN_SPEND_PER_CUSTOMER": 16.65 }, "geometry": { "type": "Point", "coordinates": [ -75.166746, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "LOCATION_NAME": "Barclay Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948498, "LONGITUDE": -75.170757, "DATE_RANGE_START": 2020, "Total Visits": 343.0, "Total Visitors": 258.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 24.0, "Total Spend": 9842.0, "Total Transactions": 42.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 219.92, "MEDIAN_SPEND_PER_CUSTOMER": 220.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170757, 39.948498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg9-x5z", "LOCATION_NAME": "Vineyards Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96989, "LONGITUDE": -75.162961, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": null, "Total Spend": 3459.0, "Total Transactions": 431.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.71 }, "geometry": { "type": "Point", "coordinates": [ -75.162961, 39.96989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26j-222@628-pgb-6x5", "LOCATION_NAME": "The Black Taxi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968738, "LONGITUDE": -75.178186, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": null, "Total Spend": 12082.0, "Total Transactions": 355.0, "Total Customers": 278.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178186, 39.968738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1363.0, "Total Transactions": 73.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-pvz", "LOCATION_NAME": "Midnight Iris", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.945191, "LONGITUDE": -75.170462, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 18.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 97.0, "Total Spend": 1535.0, "Total Transactions": 32.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.55, "MEDIAN_SPEND_PER_CUSTOMER": 42.82 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-8jv", "LOCATION_NAME": "Newmans Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038927, "LONGITUDE": -75.177558, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": 125.0, "Total Spend": 332.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.94, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.177558, 40.038927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024672, "LONGITUDE": -75.147508, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 91.0, "POI_CBG": 421010283003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2041.0, "Total Transactions": 326.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.54, "MEDIAN_SPEND_PER_CUSTOMER": 7.64 }, "geometry": { "type": "Point", "coordinates": [ -75.147508, 40.024672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "LOCATION_NAME": "The Little Apple", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.025728, "LONGITUDE": -75.223969, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 50.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 97.0, "Total Spend": 2226.0, "Total Transactions": 52.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.46, "MEDIAN_SPEND_PER_CUSTOMER": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.223969, 40.025728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032059, "LONGITUDE": -75.213927, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 171.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2333.0, "Total Transactions": 298.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.213927, 40.032059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-g6k", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.918591, "LONGITUDE": -75.183167, "DATE_RANGE_START": 2020, "Total Visits": 480.0, "Total Visitors": 423.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 11263.0, "Total Transactions": 208.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.88, "MEDIAN_SPEND_PER_CUSTOMER": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.183167, 39.918591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.021127, "LONGITUDE": -75.149781, "DATE_RANGE_START": 2020, "Total Visits": 717.0, "Total Visitors": 447.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2082.0, "Total Transactions": 73.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.95, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149781, 40.021127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-brk", "LOCATION_NAME": "North Penn Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.002096, "LONGITUDE": -75.167568, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 121.0, "POI_CBG": 421010172013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 311.0, "Total Transactions": 18.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.01, "MEDIAN_SPEND_PER_CUSTOMER": 34.03 }, "geometry": { "type": "Point", "coordinates": [ -75.167568, 40.002096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.081571, "LONGITUDE": -75.172058, "DATE_RANGE_START": 2020, "Total Visits": 1022.0, "Total Visitors": 730.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1516.0, "Total Transactions": 69.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.42 }, "geometry": { "type": "Point", "coordinates": [ -75.172058, 40.081571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pm4-ckf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.924823, "LONGITUDE": -75.17424, "DATE_RANGE_START": 2020, "Total Visits": 1114.0, "Total Visitors": 816.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1683.0, "Total Transactions": 73.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.69, "MEDIAN_SPEND_PER_CUSTOMER": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17424, 39.924823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026583, "LONGITUDE": -75.209516, "DATE_RANGE_START": 2020, "Total Visits": 1187.0, "Total Visitors": 796.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1045.0, "Total Transactions": 42.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.51, "MEDIAN_SPEND_PER_CUSTOMER": 27.01 }, "geometry": { "type": "Point", "coordinates": [ -75.209516, 40.026583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-6tv", "LOCATION_NAME": "Gold Heart Direct", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.085488, "LONGITUDE": -74.962122, "DATE_RANGE_START": 2020, "Total Visits": 161.0, "Total Visitors": 137.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 997.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 251.1, "MEDIAN_SPEND_PER_CUSTOMER": 251.1 }, "geometry": { "type": "Point", "coordinates": [ -74.962122, 40.085488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm3-vzz", "LOCATION_NAME": "A Novel Idea", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.928207, "LONGITUDE": -75.165695, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 304.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 238.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.165695, 39.928207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "LOCATION_NAME": "Walmart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.031276, "LONGITUDE": -75.099634, "DATE_RANGE_START": 2020, "Total Visits": 7096.0, "Total Visitors": 4843.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 265644.0, "Total Transactions": 3976.0, "Total Customers": 2751.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.26, "MEDIAN_SPEND_PER_CUSTOMER": 58.34 }, "geometry": { "type": "Point", "coordinates": [ -75.099634, 40.031276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj5-435", "LOCATION_NAME": "1 Stop Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009415, "LONGITUDE": -75.15067, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 788.0, "Total Transactions": 40.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.37, "MEDIAN_SPEND_PER_CUSTOMER": 19.05 }, "geometry": { "type": "Point", "coordinates": [ -75.15067, 40.009415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "LOCATION_NAME": "Beck's Cajun Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2020, "Total Visits": 10482.0, "Total Visitors": 6602.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2150.0, "Total Transactions": 133.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.8, "MEDIAN_SPEND_PER_CUSTOMER": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 210.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1279.0, "Total Transactions": 73.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.01, "MEDIAN_SPEND_PER_CUSTOMER": 20.29 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2020, "Total Visits": 405.0, "Total Visitors": 391.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1931.0, "Total Transactions": 123.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.13, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2020, "Total Visits": 770.0, "Total Visitors": 550.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 16401.0, "Total Transactions": 1455.0, "Total Customers": 1034.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.36, "MEDIAN_SPEND_PER_CUSTOMER": 12.41 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "LOCATION_NAME": "Shot Tower Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 83.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2766.0, "Total Transactions": 333.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-yqf", "LOCATION_NAME": "M Kee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955229, "LONGITUDE": -75.156117, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 44.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1281.0, "Total Spend": 1324.0, "Total Transactions": 26.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.94, "MEDIAN_SPEND_PER_CUSTOMER": 51.52 }, "geometry": { "type": "Point", "coordinates": [ -75.156117, 39.955229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw4-rzf", "LOCATION_NAME": "LOVE Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895174, "LONGITUDE": -75.227972, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 24583.0, "Total Transactions": 1346.0, "Total Customers": 1133.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.36, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.227972, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-g49", "LOCATION_NAME": "Ham Bone", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.977503, "LONGITUDE": -75.13156, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 52.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 108.0, "Total Spend": 5119.0, "Total Transactions": 105.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.15, "MEDIAN_SPEND_PER_CUSTOMER": 56.87 }, "geometry": { "type": "Point", "coordinates": [ -75.13156, 39.977503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p74-z75", "LOCATION_NAME": "Seafood Bay Inc", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041659, "LONGITUDE": -75.028001, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 58.0, "POI_CBG": 421010331022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 818.0, "Total Transactions": 30.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.23, "MEDIAN_SPEND_PER_CUSTOMER": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028001, 40.041659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-835", "LOCATION_NAME": "The Green Remedy", "TOP_CATEGORY": "Drugs and Druggists' Sundries Merchant Wholesalers", "LATITUDE": 40.059866, "LONGITUDE": -75.085231, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 744.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.0, "MEDIAN_SPEND_PER_CUSTOMER": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085231, 40.059866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmd-yjv", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937442, "LONGITUDE": -75.176792, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4547.0, "Total Transactions": 461.0, "Total Customers": 355.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.99, "MEDIAN_SPEND_PER_CUSTOMER": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.176792, 39.937442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012073, "LONGITUDE": -75.115248, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 439.0, "Total Transactions": 32.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.66, "MEDIAN_SPEND_PER_CUSTOMER": 13.33 }, "geometry": { "type": "Point", "coordinates": [ -75.115248, 40.012073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm4-8sq", "LOCATION_NAME": "Olivares Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.934795, "LONGITUDE": -75.173301, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010030023.0, "MEDIAN_DWELL": null, "Total Spend": 21.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.25, "MEDIAN_SPEND_PER_CUSTOMER": 5.25 }, "geometry": { "type": "Point", "coordinates": [ -75.173301, 39.934795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9w-zmk", "LOCATION_NAME": "Hendrix Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.118281, "LONGITUDE": -75.017944, "DATE_RANGE_START": 2020, "Total Visits": 562.0, "Total Visitors": 389.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 333.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017944, 40.118281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2020, "Total Visits": 820.0, "Total Visitors": 633.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6499.0, "Total Transactions": 268.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.909224, "LONGITUDE": -75.174004, "DATE_RANGE_START": 2020, "Total Visits": 683.0, "Total Visitors": 453.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3914.0, "Total Transactions": 204.0, "Total Customers": 123.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.78, "MEDIAN_SPEND_PER_CUSTOMER": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.174004, 39.909224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.992376, "LONGITUDE": -75.140508, "DATE_RANGE_START": 2020, "Total Visits": 1078.0, "Total Visitors": 810.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10076.0, "Total Transactions": 459.0, "Total Customers": 349.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.16, "MEDIAN_SPEND_PER_CUSTOMER": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.140508, 39.992376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2020, "Total Visits": 369.0, "Total Visitors": 280.0, "POI_CBG": 421010317003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11303.0, "Total Transactions": 840.0, "Total Customers": 625.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.04, "MEDIAN_SPEND_PER_CUSTOMER": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-vs5", "LOCATION_NAME": "Ys Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.000195, "LONGITUDE": -75.106917, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 218.0, "POI_CBG": 421010192004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 620.0, "Total Transactions": 32.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.83, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106917, 40.000195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p85-2hq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066275, "LONGITUDE": -75.051537, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 159.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 12.0, "Total Spend": 986.0, "Total Transactions": 206.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.55, "MEDIAN_SPEND_PER_CUSTOMER": 6.88 }, "geometry": { "type": "Point", "coordinates": [ -75.051537, 40.066275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pj6-k4v", "LOCATION_NAME": "Pelicana Chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04453, "LONGITUDE": -75.117658, "DATE_RANGE_START": 2020, "Total Visits": 679.0, "Total Visitors": 449.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 88.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117658, 40.04453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-z75", "LOCATION_NAME": "Pierogi Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101174, "LONGITUDE": -75.028995, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 69.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 389.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.028995, 40.101174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgd-z9f", "LOCATION_NAME": "Bombay Dhabba Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956797, "LONGITUDE": -75.194135, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 1865.0, "Total Transactions": 95.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.93, "MEDIAN_SPEND_PER_CUSTOMER": 20.53 }, "geometry": { "type": "Point", "coordinates": [ -75.194135, 39.956797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pmb-7t9", "LOCATION_NAME": "Jeans Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949139, "LONGITUDE": -75.163554, "DATE_RANGE_START": 2020, "Total Visits": 139.0, "Total Visitors": 83.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 110.0, "Total Spend": 1394.0, "Total Transactions": 117.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.23, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.163554, 39.949139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-5mk", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961178, "LONGITUDE": -75.143721, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 179.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 402.0, "Total Spend": 652.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.97, "MEDIAN_SPEND_PER_CUSTOMER": 74.97 }, "geometry": { "type": "Point", "coordinates": [ -75.143721, 39.961178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 161.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3548.0, "Total Transactions": 278.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.65, "MEDIAN_SPEND_PER_CUSTOMER": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmf-n5z", "LOCATION_NAME": "Di Bruno Bros", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954896, "LONGITUDE": -75.168695, "DATE_RANGE_START": 2020, "Total Visits": 1030.0, "Total Visitors": 572.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 287.0, "Total Spend": 86799.0, "Total Transactions": 3210.0, "Total Customers": 1649.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.35, "MEDIAN_SPEND_PER_CUSTOMER": 27.38 }, "geometry": { "type": "Point", "coordinates": [ -75.168695, 39.954896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-tn5", "LOCATION_NAME": "Koto Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948858, "LONGITUDE": -75.153256, "DATE_RANGE_START": 2020, "Total Visits": 937.0, "Total Visitors": 552.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 248.0, "Total Spend": 3062.0, "Total Transactions": 73.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.79, "MEDIAN_SPEND_PER_CUSTOMER": 24.73 }, "geometry": { "type": "Point", "coordinates": [ -75.153256, 39.948858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087623, "LONGITUDE": -74.965267, "DATE_RANGE_START": 2020, "Total Visits": 1723.0, "Total Visitors": 1457.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 14744.0, "Total Transactions": 981.0, "Total Customers": 744.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.38, "MEDIAN_SPEND_PER_CUSTOMER": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -74.965267, 40.087623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-ysq", "LOCATION_NAME": "C & R Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.93947, "LONGITUDE": -75.209529, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 151.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7606.0, "Total Transactions": 56.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.52, "MEDIAN_SPEND_PER_CUSTOMER": 64.21 }, "geometry": { "type": "Point", "coordinates": [ -75.209529, 39.93947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "LOCATION_NAME": "King Wok's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": null, "Total Spend": 1437.0, "Total Transactions": 54.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.06, "MEDIAN_SPEND_PER_CUSTOMER": 24.57 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "LOCATION_NAME": "Fair Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.968488, "LONGITUDE": -75.180495, "DATE_RANGE_START": 2020, "Total Visits": 369.0, "Total Visitors": 274.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 37.0, "Total Spend": 8064.0, "Total Transactions": 611.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 27.49 }, "geometry": { "type": "Point", "coordinates": [ -75.180495, 39.968488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "LOCATION_NAME": "Mega Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 91.0, "POI_CBG": 421010277003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1773.0, "Total Transactions": 75.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.52, "MEDIAN_SPEND_PER_CUSTOMER": 15.83 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pmf-qs5", "LOCATION_NAME": "Wine Dive", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.943689, "LONGITUDE": -75.167525, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 143.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 95.0, "Total Spend": 1200.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.74, "MEDIAN_SPEND_PER_CUSTOMER": 24.19 }, "geometry": { "type": "Point", "coordinates": [ -75.167525, 39.943689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2020, "Total Visits": 558.0, "Total Visitors": 405.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3729.0, "Total Transactions": 187.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.74, "MEDIAN_SPEND_PER_CUSTOMER": 24.09 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-gc5", "LOCATION_NAME": "Verree Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.072408, "LONGITUDE": -75.076041, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 77.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 879.0, "Total Transactions": 34.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.38, "MEDIAN_SPEND_PER_CUSTOMER": 30.05 }, "geometry": { "type": "Point", "coordinates": [ -75.076041, 40.072408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-yd9", "LOCATION_NAME": "Art of Perfume", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.120391, "LONGITUDE": -75.016185, "DATE_RANGE_START": 2020, "Total Visits": 324.0, "Total Visitors": 284.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 355.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.55, "MEDIAN_SPEND_PER_CUSTOMER": 89.55 }, "geometry": { "type": "Point", "coordinates": [ -75.016185, 40.120391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 28.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1316.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.27, "MEDIAN_SPEND_PER_CUSTOMER": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "LOCATION_NAME": "Forever 21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 270.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 15812.0, "Total Transactions": 421.0, "Total Customers": 367.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.47, "MEDIAN_SPEND_PER_CUSTOMER": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wc5", "LOCATION_NAME": "Kids Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.08622, "LONGITUDE": -74.962809, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 809.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.79, "MEDIAN_SPEND_PER_CUSTOMER": 93.79 }, "geometry": { "type": "Point", "coordinates": [ -74.962809, 40.08622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "LOCATION_NAME": "El Rey", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 91.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 43.0, "Total Spend": 5309.0, "Total Transactions": 73.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.0, "MEDIAN_SPEND_PER_CUSTOMER": 68.68 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "LOCATION_NAME": "Marcello's Pizza Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2020, "Total Visits": 1489.0, "Total Visitors": 1108.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 539.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.29, "MEDIAN_SPEND_PER_CUSTOMER": 26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgf-fpv", "LOCATION_NAME": "Kabobeesh", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956522, "LONGITUDE": -75.206506, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 81.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 31.0, "Total Spend": 5519.0, "Total Transactions": 165.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 28.61 }, "geometry": { "type": "Point", "coordinates": [ -75.206506, 39.956522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2020, "Total Visits": 5127.0, "Total Visitors": 3452.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 414387.0, "Total Transactions": 6036.0, "Total Customers": 4172.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.8, "MEDIAN_SPEND_PER_CUSTOMER": 41.92 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.95427, "LONGITUDE": -75.201494, "DATE_RANGE_START": 2020, "Total Visits": 1749.0, "Total Visitors": 1010.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 115.0, "Total Spend": 19657.0, "Total Transactions": 1247.0, "Total Customers": 607.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.65, "MEDIAN_SPEND_PER_CUSTOMER": 20.24 }, "geometry": { "type": "Point", "coordinates": [ -75.201494, 39.95427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.91807, "LONGITUDE": -75.17894, "DATE_RANGE_START": 2020, "Total Visits": 1769.0, "Total Visitors": 1181.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 676.0, "Total Transactions": 30.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.13, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17894, 39.91807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.04687, "LONGITUDE": -75.054304, "DATE_RANGE_START": 2020, "Total Visits": 2553.0, "Total Visitors": 2066.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 24.0, "Total Spend": 21930.0, "Total Transactions": 159.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.0, "MEDIAN_SPEND_PER_CUSTOMER": 65.02 }, "geometry": { "type": "Point", "coordinates": [ -75.054304, 40.04687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-8sq", "LOCATION_NAME": "Edible Arrangements", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.949551, "LONGITUDE": -75.160537, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 185.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 99.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.99, "MEDIAN_SPEND_PER_CUSTOMER": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160537, 39.949551 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "LOCATION_NAME": "Monster Pets", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2020, "Total Visits": 512.0, "Total Visitors": 399.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 18804.0, "Total Transactions": 462.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.38, "MEDIAN_SPEND_PER_CUSTOMER": 34.52 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2020, "Total Visits": 528.0, "Total Visitors": 304.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2774.0, "Total Transactions": 266.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.04, "MEDIAN_SPEND_PER_CUSTOMER": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "LOCATION_NAME": "BP", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032516, "LONGITUDE": -75.084558, "DATE_RANGE_START": 2020, "Total Visits": 1969.0, "Total Visitors": 1292.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1757.0, "Total Transactions": 44.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.1, "MEDIAN_SPEND_PER_CUSTOMER": 20.37 }, "geometry": { "type": "Point", "coordinates": [ -75.084558, 40.032516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.033829, "LONGITUDE": -75.072583, "DATE_RANGE_START": 2020, "Total Visits": 707.0, "Total Visitors": 576.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10603.0, "Total Transactions": 453.0, "Total Customers": 339.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.072583, 40.033829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-92k", "LOCATION_NAME": "Francesca's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952109, "LONGITUDE": -75.155803, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 93.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3952.0, "Total Transactions": 121.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.3, "MEDIAN_SPEND_PER_CUSTOMER": 34.48 }, "geometry": { "type": "Point", "coordinates": [ -75.155803, 39.952109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-xnq", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.87811, "LONGITUDE": -75.239425, "DATE_RANGE_START": 2020, "Total Visits": 93781.0, "Total Visitors": 57624.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 188.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.36, "MEDIAN_SPEND_PER_CUSTOMER": 47.36 }, "geometry": { "type": "Point", "coordinates": [ -75.239425, 39.87811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgf-3bk", "LOCATION_NAME": "Old Nelson Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956093, "LONGITUDE": -75.194408, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 81.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 140.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.97, "MEDIAN_SPEND_PER_CUSTOMER": 30.97 }, "geometry": { "type": "Point", "coordinates": [ -75.194408, 39.956093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-5j9", "LOCATION_NAME": "Dollar Up & Gifts", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.10998, "LONGITUDE": -75.024237, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 177.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1062.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.13, "MEDIAN_SPEND_PER_CUSTOMER": 18.54 }, "geometry": { "type": "Point", "coordinates": [ -75.024237, 40.10998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp4-tvz", "LOCATION_NAME": "Best Deli II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978727, "LONGITUDE": -75.115372, "DATE_RANGE_START": 2020, "Total Visits": 324.0, "Total Visitors": 133.0, "POI_CBG": 421010378003.0, "MEDIAN_DWELL": 1070.0, "Total Spend": 1351.0, "Total Transactions": 95.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.04, "MEDIAN_SPEND_PER_CUSTOMER": 15.84 }, "geometry": { "type": "Point", "coordinates": [ -75.115372, 39.978727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "LOCATION_NAME": "Trio Delight Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037587, "LONGITUDE": -75.118044, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 95.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1173.0, "Total Transactions": 66.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.69, "MEDIAN_SPEND_PER_CUSTOMER": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.118044, 40.037587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923331, "LONGITUDE": -75.144837, "DATE_RANGE_START": 2020, "Total Visits": 2277.0, "Total Visitors": 1358.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 38.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.56, "MEDIAN_SPEND_PER_CUSTOMER": 9.56 }, "geometry": { "type": "Point", "coordinates": [ -75.144837, 39.923331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "LOCATION_NAME": "Spice C", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 79.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 115.0, "Total Spend": 400.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.98, "MEDIAN_SPEND_PER_CUSTOMER": 27.66 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hh5", "LOCATION_NAME": "Square on Square", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94849, "LONGITUDE": -75.174456, "DATE_RANGE_START": 2020, "Total Visits": 848.0, "Total Visitors": 470.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 81.0, "Total Spend": 883.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.74, "MEDIAN_SPEND_PER_CUSTOMER": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174456, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-54v", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991295, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2020, "Total Visits": 240.0, "Total Visitors": 161.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 41.0, "Total Spend": 207.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.61, "MEDIAN_SPEND_PER_CUSTOMER": 9.61 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "LOCATION_NAME": "Schmear It", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956751, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 1102.0, "Total Transactions": 109.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "LOCATION_NAME": "Stock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 69.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 104.0, "Total Spend": 86948.0, "Total Transactions": 240.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 229.57, "MEDIAN_SPEND_PER_CUSTOMER": 265.91 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-j5f", "LOCATION_NAME": "Poppy's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074185, "LONGITUDE": -75.202466, "DATE_RANGE_START": 2020, "Total Visits": 399.0, "Total Visitors": 282.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 139.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.93, "MEDIAN_SPEND_PER_CUSTOMER": 5.93 }, "geometry": { "type": "Point", "coordinates": [ -75.202466, 40.074185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.983382, "LONGITUDE": -75.10116, "DATE_RANGE_START": 2020, "Total Visits": 2789.0, "Total Visitors": 1802.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1189.0, "Total Transactions": 52.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.19, "MEDIAN_SPEND_PER_CUSTOMER": 20.88 }, "geometry": { "type": "Point", "coordinates": [ -75.10116, 39.983382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "LOCATION_NAME": "Fleishman Fabrics & Supplies", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.93943, "LONGITUDE": -75.149516, "DATE_RANGE_START": 2020, "Total Visits": 272.0, "Total Visitors": 155.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 217.0, "Total Spend": 2664.0, "Total Transactions": 40.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.5, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149516, 39.93943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.029581, "LONGITUDE": -75.100406, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 187.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 13142.0, "Total Transactions": 228.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.68, "MEDIAN_SPEND_PER_CUSTOMER": 38.55 }, "geometry": { "type": "Point", "coordinates": [ -75.100406, 40.029581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2020, "Total Visits": 242.0, "Total Visitors": 220.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2512.0, "Total Transactions": 191.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.57, "MEDIAN_SPEND_PER_CUSTOMER": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 145.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6893.0, "Total Transactions": 943.0, "Total Customers": 518.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.06, "MEDIAN_SPEND_PER_CUSTOMER": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwb-pvz", "LOCATION_NAME": "TMK Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.91064, "LONGITUDE": -75.220471, "DATE_RANGE_START": 2020, "Total Visits": 629.0, "Total Visitors": 195.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 192.0, "Total Spend": 3848.0, "Total Transactions": 181.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.68, "MEDIAN_SPEND_PER_CUSTOMER": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.220471, 39.91064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.99726, "LONGITUDE": -75.153396, "DATE_RANGE_START": 2020, "Total Visits": 1830.0, "Total Visitors": 1435.0, "POI_CBG": 421010174002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11468.0, "Total Transactions": 474.0, "Total Customers": 375.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.87, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153396, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "LOCATION_NAME": "Walmart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.083037, "LONGITUDE": -75.022233, "DATE_RANGE_START": 2020, "Total Visits": 14526.0, "Total Visitors": 9359.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 331448.0, "Total Transactions": 5830.0, "Total Customers": 3970.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.63, "MEDIAN_SPEND_PER_CUSTOMER": 50.75 }, "geometry": { "type": "Point", "coordinates": [ -75.022233, 40.083037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "LOCATION_NAME": "Accent On Animals", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2020, "Total Visits": 669.0, "Total Visitors": 476.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 1364.0, "Total Transactions": 52.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.89, "MEDIAN_SPEND_PER_CUSTOMER": 26.37 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-mrk", "LOCATION_NAME": "Jerry's Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.965113, "LONGITUDE": -75.138904, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 722.0, "Total Spend": 1224.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.21, "MEDIAN_SPEND_PER_CUSTOMER": 42.66 }, "geometry": { "type": "Point", "coordinates": [ -75.138904, 39.965113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-tsq", "LOCATION_NAME": "Pennsport Beer Boutique", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.931601, "LONGITUDE": -75.149607, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 803.0, "Total Transactions": 38.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.8, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.149607, 39.931601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "LOCATION_NAME": "Fishtown Social", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 40.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11304.0, "Total Transactions": 165.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.24, "MEDIAN_SPEND_PER_CUSTOMER": 73.12 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfx-kmk", "LOCATION_NAME": "Tsaocaa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02624, "LONGITUDE": -75.225272, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 42.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 283.0, "Total Spend": 486.0, "Total Transactions": 34.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225272, 40.02624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "LOCATION_NAME": "El Poquito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 48.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 33942.0, "Total Transactions": 478.0, "Total Customers": 429.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.8, "MEDIAN_SPEND_PER_CUSTOMER": 69.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "LOCATION_NAME": "Bar Bombon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 58.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1224.0, "Total Spend": 20919.0, "Total Transactions": 466.0, "Total Customers": 417.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.48, "MEDIAN_SPEND_PER_CUSTOMER": 42.27 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006521, "LONGITUDE": -75.100325, "DATE_RANGE_START": 2020, "Total Visits": 1018.0, "Total Visitors": 673.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3620.0, "Total Transactions": 105.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.36, "MEDIAN_SPEND_PER_CUSTOMER": 26.58 }, "geometry": { "type": "Point", "coordinates": [ -75.100325, 40.006521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "LOCATION_NAME": "Harbison Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2020, "Total Visits": 226.0, "Total Visitors": 123.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4856.0, "Total Transactions": 155.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-35z", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957614, "LONGITUDE": -75.214932, "DATE_RANGE_START": 2020, "Total Visits": 326.0, "Total Visitors": 252.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5090.0, "Total Transactions": 236.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214932, 39.957614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.02991, "LONGITUDE": -75.186134, "DATE_RANGE_START": 2020, "Total Visits": 2299.0, "Total Visitors": 1469.0, "POI_CBG": 421010239002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4146.0, "Total Transactions": 193.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.46, "MEDIAN_SPEND_PER_CUSTOMER": 32.68 }, "geometry": { "type": "Point", "coordinates": [ -75.186134, 40.02991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pp4-jd9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.986516, "LONGITUDE": -75.12253, "DATE_RANGE_START": 2020, "Total Visits": 977.0, "Total Visitors": 744.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 435.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.34, "MEDIAN_SPEND_PER_CUSTOMER": 20.06 }, "geometry": { "type": "Point", "coordinates": [ -75.12253, 39.986516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039629, "LONGITUDE": -75.109938, "DATE_RANGE_START": 2020, "Total Visits": 657.0, "Total Visitors": 504.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12850.0, "Total Transactions": 538.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.15, "MEDIAN_SPEND_PER_CUSTOMER": 29.85 }, "geometry": { "type": "Point", "coordinates": [ -75.109938, 40.039629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031206, "LONGITUDE": -75.124676, "DATE_RANGE_START": 2020, "Total Visits": 1034.0, "Total Visitors": 717.0, "POI_CBG": 421010286005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 926.0, "Total Transactions": 48.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.81, "MEDIAN_SPEND_PER_CUSTOMER": 23.43 }, "geometry": { "type": "Point", "coordinates": [ -75.124676, 40.031206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-mp9", "LOCATION_NAME": "Jay Butler", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.953253, "LONGITUDE": -75.16804, "DATE_RANGE_START": 2020, "Total Visits": 401.0, "Total Visitors": 268.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 147.0, "Total Spend": 85.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16804, 39.953253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "LOCATION_NAME": "Journeys", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 66.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 6678.0, "Total Transactions": 95.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.99, "MEDIAN_SPEND_PER_CUSTOMER": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjj-wzf", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.073365, "LONGITUDE": -75.241949, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 157.0, "POI_CBG": 421010384001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 12812.0, "Total Transactions": 93.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.51, "MEDIAN_SPEND_PER_CUSTOMER": 67.37 }, "geometry": { "type": "Point", "coordinates": [ -75.241949, 40.073365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2020, "Total Visits": 1459.0, "Total Visitors": 907.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 70683.0, "Total Transactions": 1334.0, "Total Customers": 788.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.22, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "LOCATION_NAME": "Convenient Food Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.034523, "LONGITUDE": -75.044217, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 71.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8297.0, "Total Transactions": 532.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.6, "MEDIAN_SPEND_PER_CUSTOMER": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.044217, 40.034523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvz-2p9", "LOCATION_NAME": "Chestnut Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956923, "LONGITUDE": -75.214531, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 169.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 165.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214531, 39.956923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-hbk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.996353, "LONGITUDE": -75.165984, "DATE_RANGE_START": 2020, "Total Visits": 462.0, "Total Visitors": 270.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 531.0, "Total Transactions": 38.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.12, "MEDIAN_SPEND_PER_CUSTOMER": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165984, 39.996353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "LOCATION_NAME": "Hair Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2020, "Total Visits": 3420.0, "Total Visitors": 1917.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 8712.0, "Total Transactions": 270.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.55, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm9-zxq", "LOCATION_NAME": "Vintage Julz", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.942335, "LONGITUDE": -75.153335, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 73.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3066.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 507.6, "MEDIAN_SPEND_PER_CUSTOMER": 507.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153335, 39.942335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "LOCATION_NAME": "George's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 97.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1926.0, "Total Transactions": 123.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-vmk", "LOCATION_NAME": "E Frank Hopkins", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.906965, "LONGITUDE": -75.154623, "DATE_RANGE_START": 2020, "Total Visits": 308.0, "Total Visitors": 149.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 168.0, "Total Spend": 1592.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.44, "MEDIAN_SPEND_PER_CUSTOMER": 98.44 }, "geometry": { "type": "Point", "coordinates": [ -75.154623, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y9z", "LOCATION_NAME": "Copabanana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941497, "LONGITUDE": -75.14907, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 12712.0, "Total Transactions": 329.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.81, "MEDIAN_SPEND_PER_CUSTOMER": 40.83 }, "geometry": { "type": "Point", "coordinates": [ -75.14907, 39.941497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2020, "Total Visits": 1550.0, "Total Visitors": 705.0, "POI_CBG": 421010183001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 20026.0, "Total Transactions": 2021.0, "Total Customers": 560.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.34, "MEDIAN_SPEND_PER_CUSTOMER": 15.89 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-7t9", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.11156, "LONGITUDE": -75.023472, "DATE_RANGE_START": 2020, "Total Visits": 2201.0, "Total Visitors": 1391.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1062.0, "Total Transactions": 28.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.97, "MEDIAN_SPEND_PER_CUSTOMER": 30.99 }, "geometry": { "type": "Point", "coordinates": [ -75.023472, 40.11156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "LOCATION_NAME": "Bloomsday Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2543.0, "Total Transactions": 40.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.56, "MEDIAN_SPEND_PER_CUSTOMER": 63.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "LOCATION_NAME": "El Balconcito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 145.0, "Total Spend": 2741.0, "Total Transactions": 56.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgd-xdv", "LOCATION_NAME": "Smoked and Chopped", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.96613, "LONGITUDE": -75.191051, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010109001.0, "MEDIAN_DWELL": 120.0, "Total Spend": 130.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.25, "MEDIAN_SPEND_PER_CUSTOMER": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.191051, 39.96613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8t-4qf", "LOCATION_NAME": "Speedy's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084571, "LONGITUDE": -74.972797, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 44.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 277.0, "Total Spend": 567.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.25, "MEDIAN_SPEND_PER_CUSTOMER": 19.55 }, "geometry": { "type": "Point", "coordinates": [ -74.972797, 40.084571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "LOCATION_NAME": "Amada", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 48.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 16693.0, "Total Transactions": 135.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.64, "MEDIAN_SPEND_PER_CUSTOMER": 99.28 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pp5-49z", "LOCATION_NAME": "Minnow Lane", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.97911, "LONGITUDE": -75.129647, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 105.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 368.0, "Total Spend": 437.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.09, "MEDIAN_SPEND_PER_CUSTOMER": 110.09 }, "geometry": { "type": "Point", "coordinates": [ -75.129647, 39.97911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-j35", "LOCATION_NAME": "18th Street Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951252, "LONGITUDE": -75.170272, "DATE_RANGE_START": 2020, "Total Visits": 383.0, "Total Visitors": 210.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 469.0, "Total Spend": 243.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170272, 39.951252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2020, "Total Visits": 836.0, "Total Visitors": 554.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17875.0, "Total Transactions": 788.0, "Total Customers": 518.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.23, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2020, "Total Visits": 580.0, "Total Visitors": 449.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2921.0, "Total Transactions": 155.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.27, "MEDIAN_SPEND_PER_CUSTOMER": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-wkz", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.922348, "LONGITUDE": -75.146462, "DATE_RANGE_START": 2020, "Total Visits": 1139.0, "Total Visitors": 961.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 12459.0, "Total Transactions": 246.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.48, "MEDIAN_SPEND_PER_CUSTOMER": 43.96 }, "geometry": { "type": "Point", "coordinates": [ -75.146462, 39.922348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.921672, "LONGITUDE": -75.186144, "DATE_RANGE_START": 2020, "Total Visits": 1266.0, "Total Visitors": 983.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 9015.0, "Total Transactions": 197.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.39, "MEDIAN_SPEND_PER_CUSTOMER": 40.28 }, "geometry": { "type": "Point", "coordinates": [ -75.186144, 39.921672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p8m-v2k", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.029763, "LONGITUDE": -75.058989, "DATE_RANGE_START": 2020, "Total Visits": 421.0, "Total Visitors": 349.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 68.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.058989, 40.029763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-pvz", "LOCATION_NAME": "Triple Play Sports", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.939041, "LONGITUDE": -75.157707, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 359.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1362.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.5, "MEDIAN_SPEND_PER_CUSTOMER": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157707, 39.939041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-6tv", "LOCATION_NAME": "Eternity Fashion", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951034, "LONGITUDE": -75.166595, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 101.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7841.0, "Total Transactions": 145.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.98, "MEDIAN_SPEND_PER_CUSTOMER": 49.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166595, 39.951034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.938146, "LONGITUDE": -75.172721, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 93.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 14313.0, "Total Transactions": 290.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 30.76 }, "geometry": { "type": "Point", "coordinates": [ -75.172721, 39.938146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8d-m8v", "LOCATION_NAME": "Quicky Mart Express", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.012599, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 161.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2854.0, "Total Transactions": 220.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.2, "MEDIAN_SPEND_PER_CUSTOMER": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.012599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-syv", "LOCATION_NAME": "Snyder Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926819, "LONGITUDE": -75.191169, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 141.0, "POI_CBG": 421010036003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 34.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191169, 39.926819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-y9z", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954522, "LONGITUDE": -75.184483, "DATE_RANGE_START": 2020, "Total Visits": 1217.0, "Total Visitors": 607.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 264.0, "Total Spend": 8006.0, "Total Transactions": 597.0, "Total Customers": 453.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.97, "MEDIAN_SPEND_PER_CUSTOMER": 13.19 }, "geometry": { "type": "Point", "coordinates": [ -75.184483, 39.954522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "LOCATION_NAME": "Drury Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 44.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 9978.0, "Total Transactions": 197.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.81, "MEDIAN_SPEND_PER_CUSTOMER": 46.66 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "LOCATION_NAME": "Petrovsky Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2020, "Total Visits": 927.0, "Total Visitors": 601.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 36175.0, "Total Transactions": 1014.0, "Total Customers": 506.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.48, "MEDIAN_SPEND_PER_CUSTOMER": 40.93 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "LOCATION_NAME": "Jini Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.085837, "LONGITUDE": -74.962154, "DATE_RANGE_START": 2020, "Total Visits": 401.0, "Total Visitors": 270.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 34.0, "Total Spend": 1545.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -74.962154, 40.085837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "LOCATION_NAME": "Bardot Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 149.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 416.0, "Total Spend": 4719.0, "Total Transactions": 145.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.3, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "LOCATION_NAME": "Bok Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.925217, "LONGITUDE": -75.160024, "DATE_RANGE_START": 2020, "Total Visits": 570.0, "Total Visitors": 318.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 130.0, "Total Spend": 615.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160024, 39.925217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8f-9xq", "LOCATION_NAME": "Leandro's Pizza House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013813, "LONGITUDE": -75.08597, "DATE_RANGE_START": 2020, "Total Visits": 179.0, "Total Visitors": 157.0, "POI_CBG": 421010294003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 295.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.16 }, "geometry": { "type": "Point", "coordinates": [ -75.08597, 40.013813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "LOCATION_NAME": "Asian Chopsticks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 75.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1645.0, "Total Transactions": 62.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.17, "MEDIAN_SPEND_PER_CUSTOMER": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "LOCATION_NAME": "Real Food Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949409, "LONGITUDE": -75.167315, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 191.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 165.0, "Total Spend": 453.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.37, "MEDIAN_SPEND_PER_CUSTOMER": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.167315, 39.949409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "LOCATION_NAME": "Vintage Wine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 73.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5712.0, "Total Transactions": 87.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.78, "MEDIAN_SPEND_PER_CUSTOMER": 50.45 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2020, "Total Visits": 1076.0, "Total Visitors": 998.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5474.0, "Total Transactions": 329.0, "Total Customers": 314.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "LOCATION_NAME": "Soy Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2020, "Total Visits": 304.0, "Total Visitors": 133.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1368.0, "Total Spend": 2800.0, "Total Transactions": 175.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.86, "MEDIAN_SPEND_PER_CUSTOMER": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2020, "Total Visits": 651.0, "Total Visitors": 532.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10878.0, "Total Transactions": 1693.0, "Total Customers": 715.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 8.39 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "LOCATION_NAME": "Little Italy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 83.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1376.0, "Total Transactions": 99.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.07, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "LOCATION_NAME": "Little Pete's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2020, "Total Visits": 2263.0, "Total Visitors": 967.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 196.0, "Total Spend": 1313.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.03, "MEDIAN_SPEND_PER_CUSTOMER": 49.48 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-6x5", "LOCATION_NAME": "Polka Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983781, "LONGITUDE": -75.101812, "DATE_RANGE_START": 2020, "Total Visits": 459.0, "Total Visitors": 193.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 771.0, "Total Spend": 74.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.69, "MEDIAN_SPEND_PER_CUSTOMER": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.101812, 39.983781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2020, "Total Visits": 852.0, "Total Visitors": 669.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 6.0, "Total Spend": 18096.0, "Total Transactions": 1852.0, "Total Customers": 1119.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.24, "MEDIAN_SPEND_PER_CUSTOMER": 11.04 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-8y9", "LOCATION_NAME": "Dollar Days Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.952899, "LONGITUDE": -75.218099, "DATE_RANGE_START": 2020, "Total Visits": 335.0, "Total Visitors": 240.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5083.0, "Total Transactions": 284.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.47, "MEDIAN_SPEND_PER_CUSTOMER": 17.09 }, "geometry": { "type": "Point", "coordinates": [ -75.218099, 39.952899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pmb-cwk", "LOCATION_NAME": "Sushi Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943263, "LONGITUDE": -75.163741, "DATE_RANGE_START": 2020, "Total Visits": 200.0, "Total Visitors": 167.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 470.0, "Total Spend": 3476.0, "Total Transactions": 103.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.42, "MEDIAN_SPEND_PER_CUSTOMER": 46.28 }, "geometry": { "type": "Point", "coordinates": [ -75.163741, 39.943263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047033, "LONGITUDE": -74.993404, "DATE_RANGE_START": 2020, "Total Visits": 381.0, "Total Visitors": 224.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2998.0, "Total Transactions": 417.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -74.993404, 40.047033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972318, "LONGITUDE": -75.125675, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 93.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 209.0, "Total Spend": 5932.0, "Total Transactions": 830.0, "Total Customers": 359.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.69, "MEDIAN_SPEND_PER_CUSTOMER": 8.24 }, "geometry": { "type": "Point", "coordinates": [ -75.125675, 39.972318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 353.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 375.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.55, "MEDIAN_SPEND_PER_CUSTOMER": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "LOCATION_NAME": "South Square Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2020, "Total Visits": 607.0, "Total Visitors": 318.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 10.0, "Total Spend": 101354.0, "Total Transactions": 3358.0, "Total Customers": 1290.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.31, "MEDIAN_SPEND_PER_CUSTOMER": 38.16 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 109.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 357.0, "Total Spend": 1110.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.26, "MEDIAN_SPEND_PER_CUSTOMER": 44.28 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-kvf", "LOCATION_NAME": "Long In the Tooth", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.951536, "LONGITUDE": -75.174727, "DATE_RANGE_START": 2020, "Total Visits": 788.0, "Total Visitors": 484.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 122.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.36, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.174727, 39.951536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "LOCATION_NAME": "King of Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 4.0, "POI_CBG": 421010037021.0, "MEDIAN_DWELL": null, "Total Spend": 160.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.94, "MEDIAN_SPEND_PER_CUSTOMER": 40.41 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "LOCATION_NAME": "Galaxy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010338004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 641.0, "Total Transactions": 32.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.76, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-y7q", "LOCATION_NAME": "Siu Kee Duck House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953918, "LONGITUDE": -75.155876, "DATE_RANGE_START": 2020, "Total Visits": 2451.0, "Total Visitors": 1481.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 201.0, "Total Spend": 259.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.44, "MEDIAN_SPEND_PER_CUSTOMER": 46.44 }, "geometry": { "type": "Point", "coordinates": [ -75.155876, 39.953918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "LOCATION_NAME": "Dannys Wok 3", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2020, "Total Visits": 87.0, "Total Visitors": 81.0, "POI_CBG": 421010204002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1706.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 38.98 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "LOCATION_NAME": "CAVA", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95186, "LONGITUDE": -75.16924, "DATE_RANGE_START": 2020, "Total Visits": 155.0, "Total Visitors": 121.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6838.0, "Total Transactions": 435.0, "Total Customers": 328.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.87, "MEDIAN_SPEND_PER_CUSTOMER": 14.37 }, "geometry": { "type": "Point", "coordinates": [ -75.16924, 39.95186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pm9-wc5", "LOCATION_NAME": "Scoop DeVille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949779, "LONGITUDE": -75.148514, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 270.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1880.0, "Total Transactions": 173.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.63 }, "geometry": { "type": "Point", "coordinates": [ -75.148514, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952204, "LONGITUDE": -75.166371, "DATE_RANGE_START": 2020, "Total Visits": 4232.0, "Total Visitors": 2656.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 96.0, "Total Spend": 2845.0, "Total Transactions": 522.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.83, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166371, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "LOCATION_NAME": "Bourbon & Branch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 22.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 668.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.56, "MEDIAN_SPEND_PER_CUSTOMER": 49.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-v75", "LOCATION_NAME": "W P Cooke", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 40.025446, "LONGITUDE": -75.147136, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010283003.0, "MEDIAN_DWELL": 30.0, "Total Spend": 3029.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 402.06, "MEDIAN_SPEND_PER_CUSTOMER": 402.06 }, "geometry": { "type": "Point", "coordinates": [ -75.147136, 40.025446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfy-h3q", "LOCATION_NAME": "Mr P Pizza & Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044177, "LONGITUDE": -75.231987, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 44.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 187.0, "Total Spend": 1223.0, "Total Transactions": 77.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.231987, 40.044177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "LOCATION_NAME": "Cook and Shaker", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 50.0, "POI_CBG": 421010160001.0, "MEDIAN_DWELL": 1320.0, "Total Spend": 6922.0, "Total Transactions": 137.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.22, "MEDIAN_SPEND_PER_CUSTOMER": 57.07 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@628-pmb-835", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95246, "LONGITUDE": -75.158356, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 857.0, "Total Transactions": 36.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.64, "MEDIAN_SPEND_PER_CUSTOMER": 24.29 }, "geometry": { "type": "Point", "coordinates": [ -75.158356, 39.95246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "LOCATION_NAME": "Mr Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 56.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7870.0, "Total Transactions": 191.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.51, "MEDIAN_SPEND_PER_CUSTOMER": 38.18 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "LOCATION_NAME": "Easy Pickins", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950651, "LONGITUDE": -75.160672, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 119.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 10974.0, "Total Transactions": 264.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.98, "MEDIAN_SPEND_PER_CUSTOMER": 31.47 }, "geometry": { "type": "Point", "coordinates": [ -75.160672, 39.950651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7z-qs5", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.043867, "LONGITUDE": -75.088282, "DATE_RANGE_START": 2020, "Total Visits": 3867.0, "Total Visitors": 2223.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 720.0, "Total Transactions": 26.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.16, "MEDIAN_SPEND_PER_CUSTOMER": 24.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088282, 40.043867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938259, "LONGITUDE": -75.21557, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 143.0, "POI_CBG": 421010074005.0, "MEDIAN_DWELL": 179.0, "Total Spend": 8714.0, "Total Transactions": 484.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.42, "MEDIAN_SPEND_PER_CUSTOMER": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.21557, 39.938259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 195.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5505.0, "Total Transactions": 252.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.56, "MEDIAN_SPEND_PER_CUSTOMER": 19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23h@628-pmf-sqz", "LOCATION_NAME": "LUSH", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949954, "LONGITUDE": -75.167065, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 137.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 6116.0, "Total Transactions": 195.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.65, "MEDIAN_SPEND_PER_CUSTOMER": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167065, 39.949954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2020, "Total Visits": 1183.0, "Total Visitors": 1052.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4186.0, "Total Transactions": 212.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.55, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.068237, "LONGITUDE": -75.156911, "DATE_RANGE_START": 2020, "Total Visits": 2162.0, "Total Visitors": 1522.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1432.0, "Total Transactions": 62.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156911, 40.068237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "LOCATION_NAME": "Gap Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.050036, "LONGITUDE": -75.06262, "DATE_RANGE_START": 2020, "Total Visits": 715.0, "Total Visitors": 619.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 5365.0, "Total Transactions": 73.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.17, "MEDIAN_SPEND_PER_CUSTOMER": 64.15 }, "geometry": { "type": "Point", "coordinates": [ -75.06262, 40.050036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-389", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.084522, "LONGITUDE": -74.967251, "DATE_RANGE_START": 2020, "Total Visits": 294.0, "Total Visitors": 222.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 39.0, "Total Spend": 5084.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 510.62, "MEDIAN_SPEND_PER_CUSTOMER": 510.62 }, "geometry": { "type": "Point", "coordinates": [ -74.967251, 40.084522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 264.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3145.0, "Total Transactions": 381.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.95, "MEDIAN_SPEND_PER_CUSTOMER": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 125.0, "POI_CBG": 421010191003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 162.0, "Total Transactions": 28.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.23, "MEDIAN_SPEND_PER_CUSTOMER": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950972, "LONGITUDE": -75.198395, "DATE_RANGE_START": 2020, "Total Visits": 1290.0, "Total Visitors": 838.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 34940.0, "Total Transactions": 4071.0, "Total Customers": 1860.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 10.74 }, "geometry": { "type": "Point", "coordinates": [ -75.198395, 39.950972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-xkf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.94872, "LONGITUDE": -75.21312, "DATE_RANGE_START": 2020, "Total Visits": 2199.0, "Total Visitors": 1423.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2488.0, "Total Transactions": 129.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.04 }, "geometry": { "type": "Point", "coordinates": [ -75.21312, 39.94872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-92k", "LOCATION_NAME": "Kate Spade", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952238, "LONGITUDE": -75.155945, "DATE_RANGE_START": 2020, "Total Visits": 464.0, "Total Visitors": 357.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 3171.0, "Total Transactions": 34.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.77, "MEDIAN_SPEND_PER_CUSTOMER": 68.77 }, "geometry": { "type": "Point", "coordinates": [ -75.155945, 39.952238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm9-t7q", "LOCATION_NAME": "Harry Merrill & Son", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.94877, "LONGITUDE": -75.154332, "DATE_RANGE_START": 2020, "Total Visits": 1665.0, "Total Visitors": 1229.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 189.0, "Total Spend": 407.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.6, "MEDIAN_SPEND_PER_CUSTOMER": 102.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154332, 39.94877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030538, "LONGITUDE": -75.181434, "DATE_RANGE_START": 2020, "Total Visits": 260.0, "Total Visitors": 222.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4329.0, "Total Transactions": 304.0, "Total Customers": 202.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.72, "MEDIAN_SPEND_PER_CUSTOMER": 13.08 }, "geometry": { "type": "Point", "coordinates": [ -75.181434, 40.030538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97281, "LONGITUDE": -75.134837, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 252.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 11374.0, "Total Transactions": 1048.0, "Total Customers": 707.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.14, "MEDIAN_SPEND_PER_CUSTOMER": 10.84 }, "geometry": { "type": "Point", "coordinates": [ -75.134837, 39.97281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "LOCATION_NAME": "Cottman Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2020, "Total Visits": 298.0, "Total Visitors": 218.0, "POI_CBG": 421010331013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7086.0, "Total Transactions": 276.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 33.2 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-zzz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.058549, "LONGITUDE": -75.166373, "DATE_RANGE_START": 2020, "Total Visits": 411.0, "Total Visitors": 298.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2172.0, "Total Transactions": 111.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.31, "MEDIAN_SPEND_PER_CUSTOMER": 17.73 }, "geometry": { "type": "Point", "coordinates": [ -75.166373, 40.058549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvx-jd9", "LOCATION_NAME": "Song's Capital Discount", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.972561, "LONGITUDE": -75.225887, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 89.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 23.0, "Total Spend": 503.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.71, "MEDIAN_SPEND_PER_CUSTOMER": 51.71 }, "geometry": { "type": "Point", "coordinates": [ -75.225887, 39.972561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "LOCATION_NAME": "Beauty Point", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.980086, "LONGITUDE": -75.235032, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 97.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5131.0, "Total Transactions": 135.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.81, "MEDIAN_SPEND_PER_CUSTOMER": 33.44 }, "geometry": { "type": "Point", "coordinates": [ -75.235032, 39.980086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-wkz", "LOCATION_NAME": "rue21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088728, "LONGITUDE": -74.961198, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 93.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 574533.0, "Total Transactions": 10943.0, "Total Customers": 9919.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.19, "MEDIAN_SPEND_PER_CUSTOMER": 43.78 }, "geometry": { "type": "Point", "coordinates": [ -74.961198, 40.088728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phz-2c5", "LOCATION_NAME": "New Supermarket", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021812, "LONGITUDE": -75.114561, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 30.0, "POI_CBG": 421010289022.0, "MEDIAN_DWELL": 254.0, "Total Spend": 484.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 121.88, "MEDIAN_SPEND_PER_CUSTOMER": 121.88 }, "geometry": { "type": "Point", "coordinates": [ -75.114561, 40.021812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-y5f", "LOCATION_NAME": "Haagen Dazs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941281, "LONGITUDE": -75.147232, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3191.0, "Total Transactions": 286.0, "Total Customers": 256.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.95, "MEDIAN_SPEND_PER_CUSTOMER": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147232, 39.941281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "LOCATION_NAME": "Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95002, "LONGITUDE": -75.162328, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 47508.0, "Total Transactions": 826.0, "Total Customers": 715.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.14, "MEDIAN_SPEND_PER_CUSTOMER": 42.79 }, "geometry": { "type": "Point", "coordinates": [ -75.162328, 39.95002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pjf-kvf", "LOCATION_NAME": "The Bone Appetite", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.076504, "LONGITUDE": -75.206829, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 38.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 279.0, "Total Spend": 5402.0, "Total Transactions": 93.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.67, "MEDIAN_SPEND_PER_CUSTOMER": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206829, 40.076504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-gzf", "LOCATION_NAME": "Romano Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.023038, "LONGITUDE": -75.133728, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 5351.0, "Total Transactions": 34.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.0, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133728, 40.023038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.041766, "LONGITUDE": -75.026083, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 159.0, "POI_CBG": 421010329001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 568.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.03, "MEDIAN_SPEND_PER_CUSTOMER": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.026083, 40.041766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm8-kxq", "LOCATION_NAME": "NBC Sports Arena", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904477, "LONGITUDE": -75.169135, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 111.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2932.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.85, "MEDIAN_SPEND_PER_CUSTOMER": 66.85 }, "geometry": { "type": "Point", "coordinates": [ -75.169135, 39.904477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-225@628-p8m-vs5", "LOCATION_NAME": "Wholesale Direct Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029181, "LONGITUDE": -75.05776, "DATE_RANGE_START": 2020, "Total Visits": 1516.0, "Total Visitors": 1024.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 29.0, "Total Spend": 7673.0, "Total Transactions": 169.0, "Total Customers": 123.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.19, "MEDIAN_SPEND_PER_CUSTOMER": 36.91 }, "geometry": { "type": "Point", "coordinates": [ -75.05776, 40.029181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "LOCATION_NAME": "Grossman Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.951777, "LONGITUDE": -75.14359, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 153.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 78.0, "Total Spend": 3877.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 286.2, "MEDIAN_SPEND_PER_CUSTOMER": 976.66 }, "geometry": { "type": "Point", "coordinates": [ -75.14359, 39.951777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "LOCATION_NAME": "C Town Supermarkets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.99594, "LONGITUDE": -75.172136, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 123.0, "POI_CBG": 421010169011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1005.0, "Total Transactions": 81.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.14, "MEDIAN_SPEND_PER_CUSTOMER": 19.37 }, "geometry": { "type": "Point", "coordinates": [ -75.172136, 39.99594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "LOCATION_NAME": "Royal Farms", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2020, "Total Visits": 1155.0, "Total Visitors": 816.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 43347.0, "Total Transactions": 2566.0, "Total Customers": 1219.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 20.16 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "LOCATION_NAME": "Suburban Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 171.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 144.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.73, "MEDIAN_SPEND_PER_CUSTOMER": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-225@628-pjf-j7q", "LOCATION_NAME": "All The Way Live", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075711, "LONGITUDE": -75.205375, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 699.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.74, "MEDIAN_SPEND_PER_CUSTOMER": 29.06 }, "geometry": { "type": "Point", "coordinates": [ -75.205375, 40.075711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "LOCATION_NAME": "American Sardine Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 285.0, "Total Spend": 824.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.38, "MEDIAN_SPEND_PER_CUSTOMER": 48.66 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "LOCATION_NAME": "Davis Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 32.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1754.0, "Total Transactions": 77.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.78 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pjf-kvf", "LOCATION_NAME": "Hideaway Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.076825, "LONGITUDE": -75.208128, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 32.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 212.0, "Total Spend": 1632.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208128, 40.076825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmb-grk", "LOCATION_NAME": "Yellowtail", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945044, "LONGITUDE": -75.161951, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 34.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 825.0, "Total Spend": 3222.0, "Total Transactions": 81.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.37, "MEDIAN_SPEND_PER_CUSTOMER": 38.37 }, "geometry": { "type": "Point", "coordinates": [ -75.161951, 39.945044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "LOCATION_NAME": "Crash Bang Boom", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2020, "Total Visits": 464.0, "Total Visitors": 437.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 94.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.6, "MEDIAN_SPEND_PER_CUSTOMER": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j9z", "LOCATION_NAME": "Lovesac", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.949786, "LONGITUDE": -75.170367, "DATE_RANGE_START": 2020, "Total Visits": 899.0, "Total Visitors": 457.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 200.0, "Total Spend": 13114.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 688.5, "MEDIAN_SPEND_PER_CUSTOMER": 3303.43 }, "geometry": { "type": "Point", "coordinates": [ -75.170367, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.060844, "LONGITUDE": -75.192031, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 343.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 45260.0, "Total Transactions": 3716.0, "Total Customers": 1874.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.15, "MEDIAN_SPEND_PER_CUSTOMER": 12.25 }, "geometry": { "type": "Point", "coordinates": [ -75.192031, 40.060844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.134399, "LONGITUDE": -75.01003, "DATE_RANGE_START": 2020, "Total Visits": 780.0, "Total Visitors": 572.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4920.0, "Total Transactions": 187.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.86, "MEDIAN_SPEND_PER_CUSTOMER": 27.82 }, "geometry": { "type": "Point", "coordinates": [ -75.01003, 40.134399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.978487, "LONGITUDE": -75.271145, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 371.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 15.0, "Total Spend": 17009.0, "Total Transactions": 312.0, "Total Customers": 280.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.54, "MEDIAN_SPEND_PER_CUSTOMER": 40.02 }, "geometry": { "type": "Point", "coordinates": [ -75.271145, 39.978487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "LOCATION_NAME": "Pizza & Steak Master", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 12.0, "POI_CBG": 421010253001.0, "MEDIAN_DWELL": 1227.0, "Total Spend": 455.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.06, "MEDIAN_SPEND_PER_CUSTOMER": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-z75", "LOCATION_NAME": "LL Flooring", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.099015, "LONGITUDE": -75.011125, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 25640.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 658.88, "MEDIAN_SPEND_PER_CUSTOMER": 811.8 }, "geometry": { "type": "Point", "coordinates": [ -75.011125, 40.099015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "LOCATION_NAME": "The Plough & the Stars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 50.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 89.0, "Total Spend": 1266.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.38, "MEDIAN_SPEND_PER_CUSTOMER": 62.24 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnx-c89", "LOCATION_NAME": "Lokal Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.972336, "LONGITUDE": -75.134776, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 252.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 1009.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 254.24, "MEDIAN_SPEND_PER_CUSTOMER": 254.24 }, "geometry": { "type": "Point", "coordinates": [ -75.134776, 39.972336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmb-gzf", "LOCATION_NAME": "Cloud Factory Hookah Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946776, "LONGITUDE": -75.161155, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 75.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 243.0, "Total Spend": 170.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.65, "MEDIAN_SPEND_PER_CUSTOMER": 24.78 }, "geometry": { "type": "Point", "coordinates": [ -75.161155, 39.946776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-5xq", "LOCATION_NAME": "Liberty Choice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979685, "LONGITUDE": -75.132953, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 67.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 14502.0, "Total Transactions": 911.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.74, "MEDIAN_SPEND_PER_CUSTOMER": 21.77 }, "geometry": { "type": "Point", "coordinates": [ -75.132953, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-3wk", "LOCATION_NAME": "Cavanaughs Headhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942292, "LONGITUDE": -75.144972, "DATE_RANGE_START": 2020, "Total Visits": 504.0, "Total Visitors": 367.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10118.0, "Total Transactions": 183.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.74, "MEDIAN_SPEND_PER_CUSTOMER": 45.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 39.942292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034799, "LONGITUDE": -75.06613, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 115.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 263.0, "Total Spend": 3903.0, "Total Transactions": 147.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.04, "MEDIAN_SPEND_PER_CUSTOMER": 26.13 }, "geometry": { "type": "Point", "coordinates": [ -75.06613, 40.034799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2020, "Total Visits": 534.0, "Total Visitors": 468.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1584.0, "Total Transactions": 97.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.49, "MEDIAN_SPEND_PER_CUSTOMER": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "LOCATION_NAME": "DJ Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2020, "Total Visits": 679.0, "Total Visitors": 542.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 19.0, "Total Spend": 3432.0, "Total Transactions": 81.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.68, "MEDIAN_SPEND_PER_CUSTOMER": 41.96 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "LOCATION_NAME": "Thai Singha House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95527, "LONGITUDE": -75.20037, "DATE_RANGE_START": 2020, "Total Visits": 1129.0, "Total Visitors": 635.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 355.0, "Total Spend": 310.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.87, "MEDIAN_SPEND_PER_CUSTOMER": 28.87 }, "geometry": { "type": "Point", "coordinates": [ -75.20037, 39.95527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp4-syv", "LOCATION_NAME": "Memphis Market & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98172, "LONGITUDE": -75.120871, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 81.0, "POI_CBG": 421010160001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1541.0, "Total Transactions": 147.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.3, "MEDIAN_SPEND_PER_CUSTOMER": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.120871, 39.98172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040654, "LONGITUDE": -75.144015, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 117.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 7100.0, "Total Transactions": 272.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.57, "MEDIAN_SPEND_PER_CUSTOMER": 31.38 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.040654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962306, "LONGITUDE": -75.172957, "DATE_RANGE_START": 2020, "Total Visits": 270.0, "Total Visitors": 200.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 19754.0, "Total Transactions": 780.0, "Total Customers": 619.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.86, "MEDIAN_SPEND_PER_CUSTOMER": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.172957, 39.962306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "LOCATION_NAME": "Checkers Drive-In Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2020, "Total Visits": 155.0, "Total Visitors": 129.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5485.0, "Total Transactions": 367.0, "Total Customers": 310.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 15.38 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 337.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 12135.0, "Total Transactions": 1834.0, "Total Customers": 744.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089385, "LONGITUDE": -74.964383, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 232.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4508.0, "Total Transactions": 643.0, "Total Customers": 381.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.7, "MEDIAN_SPEND_PER_CUSTOMER": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -74.964383, 40.089385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-tgk", "LOCATION_NAME": "Phoenix Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.996785, "LONGITUDE": -75.113541, "DATE_RANGE_START": 2020, "Total Visits": 1237.0, "Total Visitors": 901.0, "POI_CBG": 421010177012.0, "MEDIAN_DWELL": 109.0, "Total Spend": 79.0, "Total Transactions": 20.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.23, "MEDIAN_SPEND_PER_CUSTOMER": 19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113541, 39.996785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.016586, "LONGITUDE": -75.096388, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 193.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5051.0, "Total Transactions": 298.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.096388, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pm5-bzf", "LOCATION_NAME": "Mr Wish USA", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912953, "LONGITUDE": -75.153917, "DATE_RANGE_START": 2020, "Total Visits": 171.0, "Total Visitors": 163.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 13.0, "Total Spend": 382.0, "Total Transactions": 52.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.912953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076409, "LONGITUDE": -75.206721, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 99.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2669.0, "Total Transactions": 292.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.45, "MEDIAN_SPEND_PER_CUSTOMER": 9.07 }, "geometry": { "type": "Point", "coordinates": [ -75.206721, 40.076409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-rc5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977844, "LONGITUDE": -75.118479, "DATE_RANGE_START": 2020, "Total Visits": 1391.0, "Total Visitors": 967.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 8165.0, "Total Transactions": 415.0, "Total Customers": 234.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.64, "MEDIAN_SPEND_PER_CUSTOMER": 23.44 }, "geometry": { "type": "Point", "coordinates": [ -75.118479, 39.977844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2020, "Total Visits": 1572.0, "Total Visitors": 897.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 5645.0, "Total Transactions": 280.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.64, "MEDIAN_SPEND_PER_CUSTOMER": 21.54 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "LOCATION_NAME": "Tony's Luke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 16.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6802.0, "Total Transactions": 296.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "LOCATION_NAME": "China Royal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 28.0, "POI_CBG": 421010333003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1657.0, "Total Transactions": 60.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.95, "MEDIAN_SPEND_PER_CUSTOMER": 29.95 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "LOCATION_NAME": "Uncle Oogie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4325.0, "Total Transactions": 208.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.26, "MEDIAN_SPEND_PER_CUSTOMER": 28.16 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962152, "LONGITUDE": -75.2011, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010108004.0, "MEDIAN_DWELL": null, "Total Spend": 134.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.55 }, "geometry": { "type": "Point", "coordinates": [ -75.2011, 39.962152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 8320.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 312.12, "MEDIAN_SPEND_PER_CUSTOMER": 237.06 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "LOCATION_NAME": "Platinum", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11564.0, "Total Transactions": 40.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 234.0, "MEDIAN_SPEND_PER_CUSTOMER": 234.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmc-vzz", "LOCATION_NAME": "Chopstick House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926547, "LONGITUDE": -75.14612, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 56.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1994.0, "Total Transactions": 77.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.65, "MEDIAN_SPEND_PER_CUSTOMER": 25.13 }, "geometry": { "type": "Point", "coordinates": [ -75.14612, 39.926547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm9-yd9", "LOCATION_NAME": "Famous 4th Street Delicatessen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940489, "LONGITUDE": -75.149633, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 62.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 11160.0, "Total Transactions": 345.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.74, "MEDIAN_SPEND_PER_CUSTOMER": 26.33 }, "geometry": { "type": "Point", "coordinates": [ -75.149633, 39.940489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "LOCATION_NAME": "Varga Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 83.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7650.0, "Total Transactions": 127.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.31, "MEDIAN_SPEND_PER_CUSTOMER": 48.08 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5zz", "LOCATION_NAME": "Top Tomato Pizza Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948971, "LONGITUDE": -75.159389, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 93.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 123.0, "Total Spend": 6811.0, "Total Transactions": 230.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.06, "MEDIAN_SPEND_PER_CUSTOMER": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159389, 39.948971 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "LOCATION_NAME": "Cafe Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 222.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3082.0, "Total Transactions": 97.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.54, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2020, "Total Visits": 139.0, "Total Visitors": 73.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 62.0, "Total Spend": 1624.0, "Total Transactions": 99.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.85, "MEDIAN_SPEND_PER_CUSTOMER": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfy-zfz", "LOCATION_NAME": "The Rook Manayunk", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021721, "LONGITUDE": -75.215726, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 99.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 51.0, "Total Spend": 13323.0, "Total Transactions": 230.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.46, "MEDIAN_SPEND_PER_CUSTOMER": 52.9 }, "geometry": { "type": "Point", "coordinates": [ -75.215726, 40.021721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 252.0, "POI_CBG": 421010140001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 661.0, "Total Transactions": 44.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.16, "MEDIAN_SPEND_PER_CUSTOMER": 10.86 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phk-yvz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.054755, "LONGITUDE": -75.125732, "DATE_RANGE_START": 2020, "Total Visits": 1266.0, "Total Visitors": 895.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1065.0, "Total Transactions": 54.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.52, "MEDIAN_SPEND_PER_CUSTOMER": 26.13 }, "geometry": { "type": "Point", "coordinates": [ -75.125732, 40.054755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.028872, "LONGITUDE": -75.206199, "DATE_RANGE_START": 2020, "Total Visits": 2171.0, "Total Visitors": 1624.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5914.0, "Total Transactions": 200.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.17 }, "geometry": { "type": "Point", "coordinates": [ -75.206199, 40.028872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "LOCATION_NAME": "Kohl's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.062537, "LONGITUDE": -75.235162, "DATE_RANGE_START": 2020, "Total Visits": 1334.0, "Total Visitors": 998.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 43107.0, "Total Transactions": 719.0, "Total Customers": 544.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.19, "MEDIAN_SPEND_PER_CUSTOMER": 52.24 }, "geometry": { "type": "Point", "coordinates": [ -75.235162, 40.062537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.935654, "LONGITUDE": -75.186436, "DATE_RANGE_START": 2020, "Total Visits": 173.0, "Total Visitors": 101.0, "POI_CBG": 421010032004.0, "MEDIAN_DWELL": 331.0, "Total Spend": 326.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.94, "MEDIAN_SPEND_PER_CUSTOMER": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.186436, 39.935654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 349.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 315.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.080365, "LONGITUDE": -75.171922, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 151.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1984.0, "Total Transactions": 177.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.171922, 40.080365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.104996, "LONGITUDE": -75.007889, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 38.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 448.0, "Total Spend": 98688.0, "Total Transactions": 117.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 446.04, "MEDIAN_SPEND_PER_CUSTOMER": 927.74 }, "geometry": { "type": "Point", "coordinates": [ -75.007889, 40.104996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8j-cyv", "LOCATION_NAME": "Apex Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.035775, "LONGITUDE": -75.04334, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 677.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.5, "MEDIAN_SPEND_PER_CUSTOMER": 44.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04334, 40.035775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-rzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895169, "LONGITUDE": -75.227984, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 314.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.47, "MEDIAN_SPEND_PER_CUSTOMER": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.227984, 39.895169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9q-ht9", "LOCATION_NAME": "Bubbakoo's Burritos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078769, "LONGITUDE": -75.027229, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2621.0, "Total Transactions": 141.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.99, "MEDIAN_SPEND_PER_CUSTOMER": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.027229, 40.078769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "LOCATION_NAME": "Hibiscus Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3430.0, "Total Transactions": 165.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.81, "MEDIAN_SPEND_PER_CUSTOMER": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pp4-zxq", "LOCATION_NAME": "M R Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.988165, "LONGITUDE": -75.131689, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010163003.0, "MEDIAN_DWELL": 28.0, "Total Spend": 973.0, "Total Transactions": 54.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.76, "MEDIAN_SPEND_PER_CUSTOMER": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.131689, 39.988165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pm3-vpv", "LOCATION_NAME": "Flannel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927129, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 32.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 398.0, "Total Spend": 1178.0, "Total Transactions": 34.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.28, "MEDIAN_SPEND_PER_CUSTOMER": 26.24 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.927129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm3-zpv", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919286, "LONGITUDE": -75.159152, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010041021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 117.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.09, "MEDIAN_SPEND_PER_CUSTOMER": 16.09 }, "geometry": { "type": "Point", "coordinates": [ -75.159152, 39.919286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-m49", "LOCATION_NAME": "Lincoln Chicken & Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045702, "LONGITUDE": -75.164907, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010248002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 40.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.37, "MEDIAN_SPEND_PER_CUSTOMER": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.164907, 40.045702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pfz-bzf", "LOCATION_NAME": "Gary Mann Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.025665, "LONGITUDE": -75.223674, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 257.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.8, "MEDIAN_SPEND_PER_CUSTOMER": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223674, 40.025665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-223@628-p7x-7dv", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050189, "LONGITUDE": -75.064815, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 71.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 124.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064815, 40.050189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025459, "LONGITUDE": -75.149625, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 95.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 355.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.05, "MEDIAN_SPEND_PER_CUSTOMER": 8.35 }, "geometry": { "type": "Point", "coordinates": [ -75.149625, 40.025459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "LOCATION_NAME": "Greene Street", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 218.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 5259.0, "Total Transactions": 95.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.04, "MEDIAN_SPEND_PER_CUSTOMER": 37.07 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-y5f", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.085283, "LONGITUDE": -75.045679, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 258.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 209.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.045679, 40.085283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "LOCATION_NAME": "Somerset Splits", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 14.0, "POI_CBG": 421010180013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1761.0, "Total Transactions": 149.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045558, "LONGITUDE": -75.087582, "DATE_RANGE_START": 2020, "Total Visits": 818.0, "Total Visitors": 540.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3228.0, "Total Transactions": 159.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.37, "MEDIAN_SPEND_PER_CUSTOMER": 21.48 }, "geometry": { "type": "Point", "coordinates": [ -75.087582, 40.045558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.042819, "LONGITUDE": -75.181027, "DATE_RANGE_START": 2020, "Total Visits": 1596.0, "Total Visitors": 931.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1180.0, "Total Transactions": 67.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.28, "MEDIAN_SPEND_PER_CUSTOMER": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.181027, 40.042819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.9542, "LONGITUDE": -75.225712, "DATE_RANGE_START": 2020, "Total Visits": 1683.0, "Total Visitors": 1084.0, "POI_CBG": 421010085003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 921.0, "Total Transactions": 48.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.12, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225712, 39.9542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-vvf", "LOCATION_NAME": "Steve Madden", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.089544, "LONGITUDE": -74.961668, "DATE_RANGE_START": 2020, "Total Visits": 353.0, "Total Visitors": 339.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 402.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.96, "MEDIAN_SPEND_PER_CUSTOMER": 59.96 }, "geometry": { "type": "Point", "coordinates": [ -74.961668, 40.089544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "LOCATION_NAME": "Cafe Thanh Truc", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 30.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 644.0, "Total Spend": 223.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.68, "MEDIAN_SPEND_PER_CUSTOMER": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-q9f", "LOCATION_NAME": "BEL Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.105145, "LONGITUDE": -75.032134, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 73.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4116.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 124.74, "MEDIAN_SPEND_PER_CUSTOMER": 124.74 }, "geometry": { "type": "Point", "coordinates": [ -75.032134, 40.105145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "LOCATION_NAME": "Abyssinia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 44.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 99.0, "Total Spend": 2839.0, "Total Transactions": 105.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.85, "MEDIAN_SPEND_PER_CUSTOMER": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-28v", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.074524, "LONGITUDE": -75.032955, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 50.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2262.0, "Total Transactions": 42.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.1, "MEDIAN_SPEND_PER_CUSTOMER": 47.05 }, "geometry": { "type": "Point", "coordinates": [ -75.032955, 40.074524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "LOCATION_NAME": "Sorrento's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 56.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 349.0, "Total Spend": 3345.0, "Total Transactions": 129.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.4, "MEDIAN_SPEND_PER_CUSTOMER": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pjf-kcq", "LOCATION_NAME": "Style Camp", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.074035, "LONGITUDE": -75.203588, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 64.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 97.0, "Total Spend": 145.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.5, "MEDIAN_SPEND_PER_CUSTOMER": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -75.203588, 40.074035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-pvz", "LOCATION_NAME": "Furniture Mecca", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.980517, "LONGITUDE": -75.235459, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 64.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3835.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 500.0, "MEDIAN_SPEND_PER_CUSTOMER": 500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235459, 39.980517 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "LOCATION_NAME": "Mustard Greens Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 75.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1544.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.6, "MEDIAN_SPEND_PER_CUSTOMER": 57.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-qzz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993907, "LONGITUDE": -75.096856, "DATE_RANGE_START": 2020, "Total Visits": 534.0, "Total Visitors": 474.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 91.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.096856, 39.993907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "LOCATION_NAME": "Cold Stone Creamery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978153, "LONGITUDE": -75.119499, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 159.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5700.0, "Total Transactions": 417.0, "Total Customers": 333.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.98, "MEDIAN_SPEND_PER_CUSTOMER": 13.14 }, "geometry": { "type": "Point", "coordinates": [ -75.119499, 39.978153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2020, "Total Visits": 522.0, "Total Visitors": 318.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 13701.0, "Total Transactions": 2033.0, "Total Customers": 911.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 9.46 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2020, "Total Visits": 381.0, "Total Visitors": 290.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5943.0, "Total Transactions": 830.0, "Total Customers": 534.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.92, "MEDIAN_SPEND_PER_CUSTOMER": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "LOCATION_NAME": "Fairfield Inn & Suites by Marriott", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2020, "Total Visits": 1219.0, "Total Visitors": 758.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 492.0, "Total Spend": 15270.0, "Total Transactions": 66.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 161.59, "MEDIAN_SPEND_PER_CUSTOMER": 161.59 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2020, "Total Visits": 304.0, "Total Visitors": 274.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 10808.0, "Total Transactions": 147.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.54, "MEDIAN_SPEND_PER_CUSTOMER": 56.16 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-phy-kcq", "LOCATION_NAME": "La Calenita Bakery Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028172, "LONGITUDE": -75.132562, "DATE_RANGE_START": 2020, "Total Visits": 897.0, "Total Visitors": 451.0, "POI_CBG": 421010285001.0, "MEDIAN_DWELL": 337.0, "Total Spend": 72.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.06, "MEDIAN_SPEND_PER_CUSTOMER": 18.06 }, "geometry": { "type": "Point", "coordinates": [ -75.132562, 40.028172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029744, "LONGITUDE": -75.099335, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 268.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 551.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.79, "MEDIAN_SPEND_PER_CUSTOMER": 37.88 }, "geometry": { "type": "Point", "coordinates": [ -75.099335, 40.029744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2020, "Total Visits": 470.0, "Total Visitors": 361.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10883.0, "Total Transactions": 1435.0, "Total Customers": 840.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-tqf", "LOCATION_NAME": "Passeros Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949637, "LONGITUDE": -75.155037, "DATE_RANGE_START": 2020, "Total Visits": 417.0, "Total Visitors": 292.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 1488.0, "Total Transactions": 177.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.56, "MEDIAN_SPEND_PER_CUSTOMER": 10.64 }, "geometry": { "type": "Point", "coordinates": [ -75.155037, 39.949637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "LOCATION_NAME": "Oregon Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 50.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8323.0, "Total Transactions": 667.0, "Total Customers": 316.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfv-94v", "LOCATION_NAME": "The Nesting House", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.04661, "LONGITUDE": -75.195379, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 23387.0, "Total Transactions": 48.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.7, "MEDIAN_SPEND_PER_CUSTOMER": 30.69 }, "geometry": { "type": "Point", "coordinates": [ -75.195379, 40.04661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-zcq", "LOCATION_NAME": "Savas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958284, "LONGITUDE": -75.192713, "DATE_RANGE_START": 2020, "Total Visits": 423.0, "Total Visitors": 181.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 490.0, "Total Spend": 186.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.63, "MEDIAN_SPEND_PER_CUSTOMER": 13.63 }, "geometry": { "type": "Point", "coordinates": [ -75.192713, 39.958284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-xkf", "LOCATION_NAME": "Vietnam Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956332, "LONGITUDE": -75.157056, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 83.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 113.0, "Total Spend": 1479.0, "Total Transactions": 40.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.85, "MEDIAN_SPEND_PER_CUSTOMER": 36.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.956332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 187.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 426.0, "Total Spend": 4343.0, "Total Transactions": 95.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.14, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "LOCATION_NAME": "Capriccio Cafe and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955464, "LONGITUDE": -75.166555, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 69.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2482.0, "Total Transactions": 204.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.62, "MEDIAN_SPEND_PER_CUSTOMER": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.166555, 39.955464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2020, "Total Visits": 8303.0, "Total Visitors": 5018.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 81.0, "Total Spend": 2541.0, "Total Transactions": 83.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.01, "MEDIAN_SPEND_PER_CUSTOMER": 26.17 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "LOCATION_NAME": "Ruth's Chris Steak House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952962, "LONGITUDE": -75.170263, "DATE_RANGE_START": 2020, "Total Visits": 397.0, "Total Visitors": 318.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 10184.0, "Total Transactions": 60.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 160.8, "MEDIAN_SPEND_PER_CUSTOMER": 164.16 }, "geometry": { "type": "Point", "coordinates": [ -75.170263, 39.952962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-236@628-pm9-wc5", "LOCATION_NAME": "Grubhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949649, "LONGITUDE": -75.147584, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 224.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 64.0, "Total Spend": 111.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.01, "MEDIAN_SPEND_PER_CUSTOMER": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.147584, 39.949649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95261, "LONGITUDE": -75.174957, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 125.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 662.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.68, "MEDIAN_SPEND_PER_CUSTOMER": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.174957, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvy-kfz", "LOCATION_NAME": "Ahmad Gyro King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951086, "LONGITUDE": -75.19875, "DATE_RANGE_START": 2020, "Total Visits": 1290.0, "Total Visitors": 838.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 432.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.19875, 39.951086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2020, "Total Visits": 981.0, "Total Visitors": 683.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 10637.0, "Total Transactions": 1804.0, "Total Customers": 903.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.62, "MEDIAN_SPEND_PER_CUSTOMER": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kfz", "LOCATION_NAME": "The Rittenhouse Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949841, "LONGITUDE": -75.173264, "DATE_RANGE_START": 2020, "Total Visits": 675.0, "Total Visitors": 312.0, "POI_CBG": 421010008034.0, "MEDIAN_DWELL": 212.0, "Total Spend": 1062.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 267.61, "MEDIAN_SPEND_PER_CUSTOMER": 267.61 }, "geometry": { "type": "Point", "coordinates": [ -75.173264, 39.949841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pg9-td9", "LOCATION_NAME": "Tela's Market & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967388, "LONGITUDE": -75.168391, "DATE_RANGE_START": 2020, "Total Visits": 363.0, "Total Visitors": 206.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 266.0, "Total Spend": 39093.0, "Total Transactions": 1931.0, "Total Customers": 871.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.15, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168391, 39.967388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-wrk", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993383, "LONGITUDE": -75.155194, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 97.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 1189.0, "Total Spend": 12570.0, "Total Transactions": 464.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.33, "MEDIAN_SPEND_PER_CUSTOMER": 26.07 }, "geometry": { "type": "Point", "coordinates": [ -75.155194, 39.993383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zpv", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917091, "LONGITUDE": -75.187282, "DATE_RANGE_START": 2020, "Total Visits": 27170.0, "Total Visitors": 12888.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 2542.0, "Total Transactions": 42.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.95, "MEDIAN_SPEND_PER_CUSTOMER": 60.21 }, "geometry": { "type": "Point", "coordinates": [ -75.187282, 39.917091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2020, "Total Visits": 10482.0, "Total Visitors": 6602.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2235.0, "Total Transactions": 466.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.31, "MEDIAN_SPEND_PER_CUSTOMER": 4.74 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-225@628-pjk-3nq", "LOCATION_NAME": "Lucky Star Asian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069778, "LONGITUDE": -75.239531, "DATE_RANGE_START": 2020, "Total Visits": 405.0, "Total Visitors": 264.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 358.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.49, "MEDIAN_SPEND_PER_CUSTOMER": 32.49 }, "geometry": { "type": "Point", "coordinates": [ -75.239531, 40.069778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-5zz", "LOCATION_NAME": "Panda Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949206, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2020, "Total Visits": 179.0, "Total Visitors": 89.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 337.0, "Total Spend": 827.0, "Total Transactions": 38.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.49, "MEDIAN_SPEND_PER_CUSTOMER": 13.91 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.949206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2020, "Total Visits": 534.0, "Total Visitors": 395.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15230.0, "Total Transactions": 1372.0, "Total Customers": 931.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.26, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "LOCATION_NAME": "Arby's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 175.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4168.0, "Total Transactions": 292.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.08, "MEDIAN_SPEND_PER_CUSTOMER": 14.29 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-225@628-p85-p35", "LOCATION_NAME": "Cafe Carmela", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05717, "LONGITUDE": -75.030373, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 97.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 28.0, "Total Spend": 622.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.12, "MEDIAN_SPEND_PER_CUSTOMER": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.030373, 40.05717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "LOCATION_NAME": "Kaffa Crossing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956859, "LONGITUDE": -75.210414, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 14.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 339.0, "Total Spend": 2476.0, "Total Transactions": 79.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.26, "MEDIAN_SPEND_PER_CUSTOMER": 29.57 }, "geometry": { "type": "Point", "coordinates": [ -75.210414, 39.956859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfy-wkz", "LOCATION_NAME": "Dawson Street Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.018548, "LONGITUDE": -75.21277, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 16.0, "POI_CBG": 421010209004.0, "MEDIAN_DWELL": 76.0, "Total Spend": 339.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.28, "MEDIAN_SPEND_PER_CUSTOMER": 20.28 }, "geometry": { "type": "Point", "coordinates": [ -75.21277, 40.018548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-223@628-pnx-7qz", "LOCATION_NAME": "Dolce & Caffe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962218, "LONGITUDE": -75.141391, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 16.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 4355.0, "Total Transactions": 355.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.94, "MEDIAN_SPEND_PER_CUSTOMER": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.141391, 39.962218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "LOCATION_NAME": "Ritz Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2020, "Total Visits": 588.0, "Total Visitors": 512.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2642.0, "Total Transactions": 105.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.07, "MEDIAN_SPEND_PER_CUSTOMER": 24.76 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039133, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 77.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2528.0, "Total Transactions": 504.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.37, "MEDIAN_SPEND_PER_CUSTOMER": 7.37 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 40.039133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 244.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6452.0, "Total Transactions": 542.0, "Total Customers": 393.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.69, "MEDIAN_SPEND_PER_CUSTOMER": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095264, "LONGITUDE": -75.015635, "DATE_RANGE_START": 2020, "Total Visits": 2237.0, "Total Visitors": 1471.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6852.0, "Total Transactions": 693.0, "Total Customers": 437.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.015635, 40.095264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044029, "LONGITUDE": -75.102175, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 69.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4286.0, "Total Transactions": 679.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.54, "MEDIAN_SPEND_PER_CUSTOMER": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102175, 40.044029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "LOCATION_NAME": "Lee's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1868.0, "Total Transactions": 103.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.25 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7w-psq", "LOCATION_NAME": "England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043231, "LONGITUDE": -75.052729, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": null, "Total Spend": 1575.0, "Total Transactions": 66.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.42, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052729, 40.043231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "LOCATION_NAME": "Head House Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.940599, "LONGITUDE": -75.145587, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 10.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 757.0, "Total Spend": 460.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 30.51 }, "geometry": { "type": "Point", "coordinates": [ -75.145587, 39.940599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp2-8d9", "LOCATION_NAME": "Bee Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.984969, "LONGITUDE": -75.102796, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 10.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 480.0, "Total Spend": 208.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.5, "MEDIAN_SPEND_PER_CUSTOMER": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102796, 39.984969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvr-9mk", "LOCATION_NAME": "60th Street Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93354, "LONGITUDE": -75.231211, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010065001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 179.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231211, 39.93354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "LOCATION_NAME": "Bookhaven", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 229.0, "Total Spend": 1751.0, "Total Transactions": 42.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.92, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-dvz", "LOCATION_NAME": "Pietro Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.912309, "LONGITUDE": -75.174217, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 136.0, "Total Spend": 859.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174217, 39.912309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "LOCATION_NAME": "The Sidecar Bar & Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2373.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.34, "MEDIAN_SPEND_PER_CUSTOMER": 73.63 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "LOCATION_NAME": "Jack's place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010326007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 467.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgg-yvz", "LOCATION_NAME": "Favors", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9991, "LONGITUDE": -75.171017, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010172024.0, "MEDIAN_DWELL": 8.0, "Total Spend": 665.0, "Total Transactions": 30.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171017, 39.9991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2020, "Total Visits": 403.0, "Total Visitors": 345.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7017.0, "Total Transactions": 526.0, "Total Customers": 419.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.11, "MEDIAN_SPEND_PER_CUSTOMER": 12.19 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "LOCATION_NAME": "Menchie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 143.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 262.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-qpv", "LOCATION_NAME": "New York Bagel Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97966, "LONGITUDE": -75.268066, "DATE_RANGE_START": 2020, "Total Visits": 296.0, "Total Visitors": 228.0, "POI_CBG": 421010098011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 23270.0, "Total Transactions": 605.0, "Total Customers": 464.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.8, "MEDIAN_SPEND_PER_CUSTOMER": 32.55 }, "geometry": { "type": "Point", "coordinates": [ -75.268066, 39.97966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pm3-vs5", "LOCATION_NAME": "Mike & Matt's Italian Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926268, "LONGITUDE": -75.165968, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 22.0, "Total Spend": 617.0, "Total Transactions": 64.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165968, 39.926268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "LOCATION_NAME": "El Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 183.0, "Total Spend": 2266.0, "Total Transactions": 149.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.9, "MEDIAN_SPEND_PER_CUSTOMER": 17.65 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-rhq", "LOCATION_NAME": "Singh Tire Center", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.982111, "LONGITUDE": -75.138488, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 18.0, "POI_CBG": 421010156001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 495.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.5, "MEDIAN_SPEND_PER_CUSTOMER": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138488, 39.982111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-r6k", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97237, "LONGITUDE": -75.140976, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 197.0, "Total Spend": 69.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.09, "MEDIAN_SPEND_PER_CUSTOMER": 6.09 }, "geometry": { "type": "Point", "coordinates": [ -75.140976, 39.97237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj9-5j9", "LOCATION_NAME": "D & D Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.042578, "LONGITUDE": -75.140373, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 34.0, "POI_CBG": 421010276003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 99.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.25, "MEDIAN_SPEND_PER_CUSTOMER": 15.08 }, "geometry": { "type": "Point", "coordinates": [ -75.140373, 40.042578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-yn5", "LOCATION_NAME": "Encore", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973824, "LONGITUDE": -75.204593, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 34.0, "POI_CBG": 421010110003.0, "MEDIAN_DWELL": 114.0, "Total Spend": 167.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204593, 39.973824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "LOCATION_NAME": "Munchies Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949457, "LONGITUDE": -75.153676, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 34.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1670.0, "Total Transactions": 175.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.153676, 39.949457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "LOCATION_NAME": "Aura", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.961228, "LONGITUDE": -75.138826, "DATE_RANGE_START": 2020, "Total Visits": 151.0, "Total Visitors": 125.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 190.0, "Total Spend": 86122.0, "Total Transactions": 1540.0, "Total Customers": 1338.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.29, "MEDIAN_SPEND_PER_CUSTOMER": 40.73 }, "geometry": { "type": "Point", "coordinates": [ -75.138826, 39.961228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phy-v9f", "LOCATION_NAME": "The Crab Shack 2", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030196, "LONGITUDE": -75.117947, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 165.0, "POI_CBG": 421010290004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5548.0, "Total Transactions": 109.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.13, "MEDIAN_SPEND_PER_CUSTOMER": 48.41 }, "geometry": { "type": "Point", "coordinates": [ -75.117947, 40.030196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-47q", "LOCATION_NAME": "Halal Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962366, "LONGITUDE": -75.162749, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 135.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1102.0, "Total Transactions": 109.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162749, 39.962366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2020, "Total Visits": 189.0, "Total Visitors": 163.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6978.0, "Total Transactions": 288.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.97, "MEDIAN_SPEND_PER_CUSTOMER": 24.37 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "LOCATION_NAME": "Chill On the Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 947.0, "Total Transactions": 69.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-tsq", "LOCATION_NAME": "N & E Agora Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052622, "LONGITUDE": -75.080131, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010308003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 201.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.63, "MEDIAN_SPEND_PER_CUSTOMER": 50.63 }, "geometry": { "type": "Point", "coordinates": [ -75.080131, 40.052622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-8jv", "LOCATION_NAME": "The Nile Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039401, "LONGITUDE": -75.177975, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": null, "Total Spend": 1453.0, "Total Transactions": 54.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.7, "MEDIAN_SPEND_PER_CUSTOMER": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.177975, 40.039401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-qmk", "LOCATION_NAME": "Yeeroh", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943614, "LONGITUDE": -75.166117, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 45.0, "Total Spend": 3385.0, "Total Transactions": 135.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.1, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166117, 39.943614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p7x-dsq", "LOCATION_NAME": "Rib Rack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042525, "LONGITUDE": -75.063219, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 30.0, "POI_CBG": 421010314022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 924.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.72 }, "geometry": { "type": "Point", "coordinates": [ -75.063219, 40.042525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pmb-ygk", "LOCATION_NAME": "Oishii Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953252, "LONGITUDE": -75.15618, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 36.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2436.0, "Total Transactions": 109.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.04, "MEDIAN_SPEND_PER_CUSTOMER": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.15618, 39.953252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pm4-pjv", "LOCATION_NAME": "Di Bruno Bros", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.938055, "LONGITUDE": -75.158145, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 260.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 18315.0, "Total Transactions": 645.0, "Total Customers": 466.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.11, "MEDIAN_SPEND_PER_CUSTOMER": 25.23 }, "geometry": { "type": "Point", "coordinates": [ -75.158145, 39.938055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2020, "Total Visits": 685.0, "Total Visitors": 536.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3043.0, "Total Transactions": 127.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.34, "MEDIAN_SPEND_PER_CUSTOMER": 18.78 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.96715, "LONGITUDE": -75.175689, "DATE_RANGE_START": 2020, "Total Visits": 562.0, "Total Visitors": 453.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1581.0, "Total Transactions": 83.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.04, "MEDIAN_SPEND_PER_CUSTOMER": 24.68 }, "geometry": { "type": "Point", "coordinates": [ -75.175689, 39.96715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065, "LONGITUDE": -74.981932, "DATE_RANGE_START": 2020, "Total Visits": 4970.0, "Total Visitors": 2686.0, "POI_CBG": 421010362033.0, "MEDIAN_DWELL": 4.0, "Total Spend": 967.0, "Total Transactions": 50.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -74.981932, 40.065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj9-6p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.042256, "LONGITUDE": -75.144223, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 145.0, "POI_CBG": 421010278002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 603.0, "Total Transactions": 36.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.49, "MEDIAN_SPEND_PER_CUSTOMER": 16.66 }, "geometry": { "type": "Point", "coordinates": [ -75.144223, 40.042256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.005384, "LONGITUDE": -75.097837, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 252.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 792.0, "Total Transactions": 113.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.29, "MEDIAN_SPEND_PER_CUSTOMER": 8.36 }, "geometry": { "type": "Point", "coordinates": [ -75.097837, 40.005384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pgj-pgk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992811, "LONGITUDE": -75.147675, "DATE_RANGE_START": 2020, "Total Visits": 353.0, "Total Visitors": 254.0, "POI_CBG": 421010164003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 546.0, "Total Transactions": 38.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.147675, 39.992811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-4y9", "LOCATION_NAME": "Ez Dollar Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.923795, "LONGITUDE": -75.163033, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 99.0, "POI_CBG": 421010040011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 235.0, "Total Transactions": 16.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.47, "MEDIAN_SPEND_PER_CUSTOMER": 59.24 }, "geometry": { "type": "Point", "coordinates": [ -75.163033, 39.923795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phz-ch5", "LOCATION_NAME": "Cafe Liz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034261, "LONGITUDE": -75.129795, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 64.0, "POI_CBG": 421010274013.0, "MEDIAN_DWELL": 37.0, "Total Spend": 2387.0, "Total Transactions": 42.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.0, "MEDIAN_SPEND_PER_CUSTOMER": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129795, 40.034261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "LOCATION_NAME": "Tattooed Mom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941873, "LONGITUDE": -75.151859, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10937.0, "Total Transactions": 347.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.2, "MEDIAN_SPEND_PER_CUSTOMER": 33.44 }, "geometry": { "type": "Point", "coordinates": [ -75.151859, 39.941873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phz-wkz", "LOCATION_NAME": "Steve's Old Pizza London", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.997988, "LONGITUDE": -75.101209, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 40.0, "POI_CBG": 421010188002.0, "MEDIAN_DWELL": 801.0, "Total Spend": 1816.0, "Total Transactions": 77.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.101209, 39.997988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "LOCATION_NAME": "Four Seasons Hotels and Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.955061, "LONGITUDE": -75.170762, "DATE_RANGE_START": 2020, "Total Visits": 1602.0, "Total Visitors": 730.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 293.0, "Total Spend": 2577.0, "Total Transactions": 62.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.25, "MEDIAN_SPEND_PER_CUSTOMER": 22.17 }, "geometry": { "type": "Point", "coordinates": [ -75.170762, 39.955061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "LOCATION_NAME": "Makkah Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2020, "Total Visits": 296.0, "Total Visitors": 222.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 16127.0, "Total Transactions": 740.0, "Total Customers": 439.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.85, "MEDIAN_SPEND_PER_CUSTOMER": 23.11 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-snq", "LOCATION_NAME": "Alice Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948159, "LONGITUDE": -75.166048, "DATE_RANGE_START": 2020, "Total Visits": 3029.0, "Total Visitors": 1594.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 200.0, "Total Spend": 2157.0, "Total Transactions": 111.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.72, "MEDIAN_SPEND_PER_CUSTOMER": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.166048, 39.948159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2020, "Total Visits": 1227.0, "Total Visitors": 726.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 22966.0, "Total Transactions": 2245.0, "Total Customers": 992.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.3, "MEDIAN_SPEND_PER_CUSTOMER": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-92k", "LOCATION_NAME": "Eddie Bauer Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951639, "LONGITUDE": -75.155758, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 1207.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.99, "MEDIAN_SPEND_PER_CUSTOMER": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155758, 39.951639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 365.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2315.0, "Total Transactions": 66.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.64, "MEDIAN_SPEND_PER_CUSTOMER": 35.34 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgf-575", "LOCATION_NAME": "Crackn Crabs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960125, "LONGITUDE": -75.197142, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 101.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4881.0, "Total Transactions": 97.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.197142, 39.960125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-t5f", "LOCATION_NAME": "Pho Viet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035248, "LONGITUDE": -75.100976, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 121.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1603.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.82, "MEDIAN_SPEND_PER_CUSTOMER": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.100976, 40.035248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "LOCATION_NAME": "Tradesman's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950487, "LONGITUDE": -75.162708, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 193.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 23518.0, "Total Transactions": 421.0, "Total Customers": 367.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.35, "MEDIAN_SPEND_PER_CUSTOMER": 50.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162708, 39.950487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm4-4gk", "LOCATION_NAME": "El Sabor Catracho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.92144, "LONGITUDE": -75.158323, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 107.0, "POI_CBG": 421010041012.0, "MEDIAN_DWELL": 533.0, "Total Spend": 163.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.04, "MEDIAN_SPEND_PER_CUSTOMER": 41.04 }, "geometry": { "type": "Point", "coordinates": [ -75.158323, 39.92144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9r-4y9", "LOCATION_NAME": "Chuck E. Cheese's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076158, "LONGITUDE": -75.031371, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 143.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 347.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.1, "MEDIAN_SPEND_PER_CUSTOMER": 46.55 }, "geometry": { "type": "Point", "coordinates": [ -75.031371, 40.076158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 179.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5551.0, "Total Transactions": 786.0, "Total Customers": 437.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.17, "MEDIAN_SPEND_PER_CUSTOMER": 9.07 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032663, "LONGITUDE": -75.179788, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 294.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12319.0, "Total Transactions": 1790.0, "Total Customers": 857.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.96, "MEDIAN_SPEND_PER_CUSTOMER": 9.19 }, "geometry": { "type": "Point", "coordinates": [ -75.179788, 40.032663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2020, "Total Visits": 1594.0, "Total Visitors": 1147.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 18.0, "Total Spend": 23255.0, "Total Transactions": 1501.0, "Total Customers": 915.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.05, "MEDIAN_SPEND_PER_CUSTOMER": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955756, "LONGITUDE": -75.201691, "DATE_RANGE_START": 2020, "Total Visits": 1302.0, "Total Visitors": 740.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 303.0, "Total Spend": 1991.0, "Total Transactions": 48.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.2, "MEDIAN_SPEND_PER_CUSTOMER": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.201691, 39.955756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnz-jgk", "LOCATION_NAME": "Bonks Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986368, "LONGITUDE": -75.094326, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 159.0, "POI_CBG": 421010378002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 505.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.0, "MEDIAN_SPEND_PER_CUSTOMER": 51.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094326, 39.986368 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00769, "LONGITUDE": -75.17457, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 91.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5273.0, "Total Transactions": 752.0, "Total Customers": 427.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 8.92 }, "geometry": { "type": "Point", "coordinates": [ -75.17457, 40.00769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.062718, "LONGITUDE": -75.083858, "DATE_RANGE_START": 2020, "Total Visits": 794.0, "Total Visitors": 592.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 13648.0, "Total Transactions": 326.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.62, "MEDIAN_SPEND_PER_CUSTOMER": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.083858, 40.062718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "LOCATION_NAME": "Wilson's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 171.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 707.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.26, "MEDIAN_SPEND_PER_CUSTOMER": 11.26 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pmb-btv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.943154, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2020, "Total Visits": 2350.0, "Total Visitors": 1247.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 13.0, "Total Spend": 14002.0, "Total Transactions": 689.0, "Total Customers": 427.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 23.38 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.943154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p7w-gc5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.072485, "LONGITUDE": -75.075778, "DATE_RANGE_START": 2020, "Total Visits": 752.0, "Total Visitors": 528.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 980.0, "Total Transactions": 42.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 22.01 }, "geometry": { "type": "Point", "coordinates": [ -75.075778, 40.072485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.928169, "LONGITUDE": -75.230056, "DATE_RANGE_START": 2020, "Total Visits": 633.0, "Total Visitors": 478.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 48.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.38, "MEDIAN_SPEND_PER_CUSTOMER": 12.18 }, "geometry": { "type": "Point", "coordinates": [ -75.230056, 39.928169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "LOCATION_NAME": "Comfort & Floyd", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": null, "Total Spend": 1177.0, "Total Transactions": 42.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.32, "MEDIAN_SPEND_PER_CUSTOMER": 33.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yqf", "LOCATION_NAME": "T Swirl Crepe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955094, "LONGITUDE": -75.156151, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 22.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 867.0, "Total Spend": 1588.0, "Total Transactions": 93.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 16.31 }, "geometry": { "type": "Point", "coordinates": [ -75.156151, 39.955094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "LOCATION_NAME": "Primal Nutrition", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3831.0, "Total Transactions": 54.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.49, "MEDIAN_SPEND_PER_CUSTOMER": 69.75 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3nq", "LOCATION_NAME": "Nick's Roast Beef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.083763, "LONGITUDE": -74.966105, "DATE_RANGE_START": 2020, "Total Visits": 736.0, "Total Visitors": 592.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 62.0, "Total Spend": 5267.0, "Total Transactions": 60.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.94, "MEDIAN_SPEND_PER_CUSTOMER": 58.39 }, "geometry": { "type": "Point", "coordinates": [ -74.966105, 40.083763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-zfz", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956578, "LONGITUDE": -75.177927, "DATE_RANGE_START": 2020, "Total Visits": 296.0, "Total Visitors": 161.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 199.0, "Total Spend": 330.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.58, "MEDIAN_SPEND_PER_CUSTOMER": 15.41 }, "geometry": { "type": "Point", "coordinates": [ -75.177927, 39.956578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-c89", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007079, "LONGITUDE": -75.128063, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 195.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 419.0, "Total Spend": 32.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.17, "MEDIAN_SPEND_PER_CUSTOMER": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.128063, 40.007079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phy-skf", "LOCATION_NAME": "Phoenix Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.018943, "LONGITUDE": -75.136372, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 87.0, "POI_CBG": 421010197001.0, "MEDIAN_DWELL": 82.0, "Total Spend": 8.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.08, "MEDIAN_SPEND_PER_CUSTOMER": 2.08 }, "geometry": { "type": "Point", "coordinates": [ -75.136372, 40.018943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "LOCATION_NAME": "Brick House Bar & Grille", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2020, "Total Visits": 417.0, "Total Visitors": 238.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 79.0, "Total Spend": 2464.0, "Total Transactions": 64.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.95, "MEDIAN_SPEND_PER_CUSTOMER": 44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "LOCATION_NAME": "Triple Joy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 85.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1478.0, "Total Transactions": 107.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 19.27 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-y9z", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93105, "LONGITUDE": -75.226248, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 329.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 98.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.34, "MEDIAN_SPEND_PER_CUSTOMER": 7.34 }, "geometry": { "type": "Point", "coordinates": [ -75.226248, 39.93105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2020, "Total Visits": 461.0, "Total Visitors": 270.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1314.0, "Total Transactions": 244.0, "Total Customers": 123.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.87, "MEDIAN_SPEND_PER_CUSTOMER": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952459, "LONGITUDE": -75.162267, "DATE_RANGE_START": 2020, "Total Visits": 1391.0, "Total Visitors": 1030.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 257.0, "Total Spend": 2332.0, "Total Transactions": 427.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.05, "MEDIAN_SPEND_PER_CUSTOMER": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.162267, 39.952459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 133.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1220.0, "Total Transactions": 167.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.06, "MEDIAN_SPEND_PER_CUSTOMER": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-bp9", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.064931, "LONGITUDE": -74.985003, "DATE_RANGE_START": 2020, "Total Visits": 3990.0, "Total Visitors": 1826.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1368.0, "Total Transactions": 30.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.1, "MEDIAN_SPEND_PER_CUSTOMER": 53.27 }, "geometry": { "type": "Point", "coordinates": [ -74.985003, 40.064931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5s5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950566, "LONGITUDE": -75.160281, "DATE_RANGE_START": 2020, "Total Visits": 498.0, "Total Visitors": 417.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 558.0, "Total Transactions": 52.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.66, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.160281, 39.950566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phj-rp9", "LOCATION_NAME": "Crab & Claw Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.071965, "LONGITUDE": -75.157348, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 181.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 9.0, "Total Spend": 948.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.0, "MEDIAN_SPEND_PER_CUSTOMER": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157348, 40.071965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947798, "LONGITUDE": -75.1598, "DATE_RANGE_START": 2020, "Total Visits": 1227.0, "Total Visitors": 740.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 97.0, "Total Spend": 12289.0, "Total Transactions": 691.0, "Total Customers": 381.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.54, "MEDIAN_SPEND_PER_CUSTOMER": 15.73 }, "geometry": { "type": "Point", "coordinates": [ -75.1598, 39.947798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 101.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3954.0, "Total Transactions": 67.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 64.78 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "LOCATION_NAME": "Carter's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075968, "LONGITUDE": -75.031512, "DATE_RANGE_START": 2020, "Total Visits": 331.0, "Total Visitors": 310.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6845.0, "Total Transactions": 93.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.59, "MEDIAN_SPEND_PER_CUSTOMER": 62.89 }, "geometry": { "type": "Point", "coordinates": [ -75.031512, 40.075968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 113.0, "POI_CBG": 421010188007.0, "MEDIAN_DWELL": 3.0, "Total Spend": 103.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.98, "MEDIAN_SPEND_PER_CUSTOMER": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-qj9", "LOCATION_NAME": "Evergreen Young's Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.065852, "LONGITUDE": -75.083408, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 83.0, "POI_CBG": 421010339001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6749.0, "Total Transactions": 40.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.0, "MEDIAN_SPEND_PER_CUSTOMER": 167.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083408, 40.065852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7v-f2k", "LOCATION_NAME": "Raymour & Flanigan Outlet", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.051034, "LONGITUDE": -75.064888, "DATE_RANGE_START": 2020, "Total Visits": 776.0, "Total Visitors": 679.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 39186.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 1207.27, "MEDIAN_SPEND_PER_CUSTOMER": 1207.27 }, "geometry": { "type": "Point", "coordinates": [ -75.064888, 40.051034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.119147, "LONGITUDE": -75.015143, "DATE_RANGE_START": 2020, "Total Visits": 6310.0, "Total Visitors": 3613.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 93593.0, "Total Transactions": 987.0, "Total Customers": 584.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.37, "MEDIAN_SPEND_PER_CUSTOMER": 46.93 }, "geometry": { "type": "Point", "coordinates": [ -75.015143, 40.119147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065814, "LONGITUDE": -75.144222, "DATE_RANGE_START": 2020, "Total Visits": 736.0, "Total Visitors": 496.0, "POI_CBG": 421010266001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 587.0, "Total Transactions": 34.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.88, "MEDIAN_SPEND_PER_CUSTOMER": 20.62 }, "geometry": { "type": "Point", "coordinates": [ -75.144222, 40.065814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2020, "Total Visits": 863.0, "Total Visitors": 724.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5843.0, "Total Transactions": 115.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.19, "MEDIAN_SPEND_PER_CUSTOMER": 37.81 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.917114, "LONGITUDE": -75.139852, "DATE_RANGE_START": 2020, "Total Visits": 1147.0, "Total Visitors": 992.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 28028.0, "Total Transactions": 1114.0, "Total Customers": 979.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.28, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139852, 39.917114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "LOCATION_NAME": "The Love", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2020, "Total Visits": 2344.0, "Total Visitors": 1366.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 14820.0, "Total Transactions": 125.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.46, "MEDIAN_SPEND_PER_CUSTOMER": 120.81 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "LOCATION_NAME": "El Vez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2020, "Total Visits": 419.0, "Total Visitors": 347.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 49657.0, "Total Transactions": 804.0, "Total Customers": 691.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.28, "MEDIAN_SPEND_PER_CUSTOMER": 59.04 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pm8-pgk", "LOCATION_NAME": "Kasumi Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.910232, "LONGITUDE": -75.186866, "DATE_RANGE_START": 2020, "Total Visits": 1159.0, "Total Visitors": 633.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4393.0, "Total Transactions": 127.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.7, "MEDIAN_SPEND_PER_CUSTOMER": 42.19 }, "geometry": { "type": "Point", "coordinates": [ -75.186866, 39.910232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 210.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13312.0, "Total Transactions": 1947.0, "Total Customers": 903.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.16, "MEDIAN_SPEND_PER_CUSTOMER": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-qpv", "LOCATION_NAME": "Sunrise Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009015, "LONGITUDE": -75.137692, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010198006.0, "MEDIAN_DWELL": null, "Total Spend": 1441.0, "Total Transactions": 48.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.2, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137692, 40.009015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "LOCATION_NAME": "All The Way Live", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 20.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 132.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.18, "MEDIAN_SPEND_PER_CUSTOMER": 33.18 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "LOCATION_NAME": "The Book Trader", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1382.0, "Total Transactions": 44.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.23, "MEDIAN_SPEND_PER_CUSTOMER": 33.23 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4jv", "LOCATION_NAME": "Embroidery King", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.046955, "LONGITUDE": -75.098445, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 28.0, "POI_CBG": 421010305021.0, "MEDIAN_DWELL": 297.0, "Total Spend": 6088.0, "Total Transactions": 22.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 193.0, "MEDIAN_SPEND_PER_CUSTOMER": 243.75 }, "geometry": { "type": "Point", "coordinates": [ -75.098445, 40.046955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-j7q", "LOCATION_NAME": "Sues Produce Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951234, "LONGITUDE": -75.170685, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 123.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2499.0, "Total Transactions": 149.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.52, "MEDIAN_SPEND_PER_CUSTOMER": 14.79 }, "geometry": { "type": "Point", "coordinates": [ -75.170685, 39.951234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg9-ty9", "LOCATION_NAME": "I Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963033, "LONGITUDE": -75.164167, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 10.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 802.0, "Total Spend": 1432.0, "Total Transactions": 69.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.93, "MEDIAN_SPEND_PER_CUSTOMER": 25.33 }, "geometry": { "type": "Point", "coordinates": [ -75.164167, 39.963033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "LOCATION_NAME": "Mr Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2781.0, "Total Transactions": 119.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.36, "MEDIAN_SPEND_PER_CUSTOMER": 33.45 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-d5f", "LOCATION_NAME": "Allen Tire & Service", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.019598, "LONGITUDE": -75.06328, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010319003.0, "MEDIAN_DWELL": 41.0, "Total Spend": 10844.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 288.23, "MEDIAN_SPEND_PER_CUSTOMER": 263.32 }, "geometry": { "type": "Point", "coordinates": [ -75.06328, 40.019598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj4-v4v", "LOCATION_NAME": "Taqueria La Raza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999423, "LONGITUDE": -75.134255, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 695.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.91, "MEDIAN_SPEND_PER_CUSTOMER": 29.29 }, "geometry": { "type": "Point", "coordinates": [ -75.134255, 39.999423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-v75", "LOCATION_NAME": "JJ Bootleggers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94896, "LONGITUDE": -75.143844, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2298.0, "Total Transactions": 36.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.34, "MEDIAN_SPEND_PER_CUSTOMER": 67.73 }, "geometry": { "type": "Point", "coordinates": [ -75.143844, 39.94896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-ks5", "LOCATION_NAME": "Oxford Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999792, "LONGITUDE": -75.129213, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 137.0, "POI_CBG": 421010195013.0, "MEDIAN_DWELL": 16.0, "Total Spend": 6804.0, "Total Transactions": 189.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.71, "MEDIAN_SPEND_PER_CUSTOMER": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.129213, 39.999792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-y7q", "LOCATION_NAME": "E Mei Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953596, "LONGITUDE": -75.155422, "DATE_RANGE_START": 2020, "Total Visits": 2451.0, "Total Visitors": 1481.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 201.0, "Total Spend": 1669.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.45, "MEDIAN_SPEND_PER_CUSTOMER": 41.45 }, "geometry": { "type": "Point", "coordinates": [ -75.155422, 39.953596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-nnq", "LOCATION_NAME": "Square Pie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938609, "LONGITUDE": -75.152665, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": null, "Total Spend": 2869.0, "Total Transactions": 89.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.84, "MEDIAN_SPEND_PER_CUSTOMER": 36.02 }, "geometry": { "type": "Point", "coordinates": [ -75.152665, 39.938609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2020, "Total Visits": 234.0, "Total Visitors": 187.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2385.0, "Total Transactions": 401.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.02, "MEDIAN_SPEND_PER_CUSTOMER": 7.59 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-d35", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922445, "LONGITUDE": -75.169848, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 77.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3018.0, "Total Transactions": 333.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.6, "MEDIAN_SPEND_PER_CUSTOMER": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.169848, 39.922445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "LOCATION_NAME": "Papa Nick's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 8.0, "POI_CBG": 421010272003.0, "MEDIAN_DWELL": 306.0, "Total Spend": 3229.0, "Total Transactions": 139.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.9, "MEDIAN_SPEND_PER_CUSTOMER": 26.55 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "LOCATION_NAME": "Wah Gi Wah Halal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956965, "LONGITUDE": -75.211135, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 12.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 217.0, "Total Spend": 3595.0, "Total Transactions": 73.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.29, "MEDIAN_SPEND_PER_CUSTOMER": 48.03 }, "geometry": { "type": "Point", "coordinates": [ -75.211135, 39.956965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pmf-pvz", "LOCATION_NAME": "Bistro La Baia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945165, "LONGITUDE": -75.170267, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2168.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.76, "MEDIAN_SPEND_PER_CUSTOMER": 69.12 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.945165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "LOCATION_NAME": "Smiley's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 83.0, "Total Spend": 1465.0, "Total Transactions": 77.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 44.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5145.0, "Total Transactions": 107.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.98, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 56.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 9051.0, "Total Transactions": 595.0, "Total Customers": 464.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.83, "MEDIAN_SPEND_PER_CUSTOMER": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp4-zfz", "LOCATION_NAME": "Liberty Gas Station", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991196, "LONGITUDE": -75.131119, "DATE_RANGE_START": 2020, "Total Visits": 236.0, "Total Visitors": 175.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9298.0, "Total Transactions": 234.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 25.73 }, "geometry": { "type": "Point", "coordinates": [ -75.131119, 39.991196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "LOCATION_NAME": "Tiffany & Co.", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950223, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2020, "Total Visits": 381.0, "Total Visitors": 298.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 77.0, "Total Spend": 32011.0, "Total Transactions": 52.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 232.01, "MEDIAN_SPEND_PER_CUSTOMER": 224.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.950223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pfv-649", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043396, "LONGITUDE": -75.190646, "DATE_RANGE_START": 2020, "Total Visits": 349.0, "Total Visitors": 216.0, "POI_CBG": 421010237001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3921.0, "Total Transactions": 447.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.29, "MEDIAN_SPEND_PER_CUSTOMER": 9.63 }, "geometry": { "type": "Point", "coordinates": [ -75.190646, 40.043396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-qs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.912518, "LONGITUDE": -75.243563, "DATE_RANGE_START": 2020, "Total Visits": 1038.0, "Total Visitors": 744.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1053.0, "Total Transactions": 46.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.05, "MEDIAN_SPEND_PER_CUSTOMER": 22.51 }, "geometry": { "type": "Point", "coordinates": [ -75.243563, 39.912518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "LOCATION_NAME": "Off Broadway Shoe Warehouse", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2020, "Total Visits": 929.0, "Total Visitors": 824.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2089.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.78, "MEDIAN_SPEND_PER_CUSTOMER": 56.49 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmf-j35", "LOCATION_NAME": "Benjamin Lovell Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.95135, "LONGITUDE": -75.169937, "DATE_RANGE_START": 2020, "Total Visits": 1274.0, "Total Visitors": 806.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 4261.0, "Total Transactions": 44.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.97, "MEDIAN_SPEND_PER_CUSTOMER": 129.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169937, 39.95135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "LOCATION_NAME": "Buffalo Exchange", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.951062, "LONGITUDE": -75.166599, "DATE_RANGE_START": 2020, "Total Visits": 3543.0, "Total Visitors": 2235.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 12925.0, "Total Transactions": 322.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.5, "MEDIAN_SPEND_PER_CUSTOMER": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.166599, 39.951062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-87q", "LOCATION_NAME": "Rittenhouse Needlepoint", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.953747, "LONGITUDE": -75.160369, "DATE_RANGE_START": 2020, "Total Visits": 1973.0, "Total Visitors": 1413.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 435.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.6, "MEDIAN_SPEND_PER_CUSTOMER": 52.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160369, 39.953747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "LOCATION_NAME": "Fairmart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010131001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3480.0, "Total Transactions": 268.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.07, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8j-ct9", "LOCATION_NAME": "New London Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036249, "LONGITUDE": -75.042416, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1711.0, "Total Transactions": 62.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.25, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042416, 40.036249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "LOCATION_NAME": "Frame Fatale", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2020, "Total Visits": 621.0, "Total Visitors": 353.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 446.0, "Total Spend": 1427.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 244.88, "MEDIAN_SPEND_PER_CUSTOMER": 244.88 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "LOCATION_NAME": "CHAPMAN NISSAN", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.910684, "LONGITUDE": -75.224285, "DATE_RANGE_START": 2020, "Total Visits": 1050.0, "Total Visitors": 597.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 73.0, "Total Spend": 31288.0, "Total Transactions": 97.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 111.53, "MEDIAN_SPEND_PER_CUSTOMER": 143.52 }, "geometry": { "type": "Point", "coordinates": [ -75.224285, 39.910684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "LOCATION_NAME": "The Capital Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950707, "LONGITUDE": -75.163622, "DATE_RANGE_START": 2020, "Total Visits": 367.0, "Total Visitors": 226.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1208.0, "Total Spend": 9031.0, "Total Transactions": 93.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 92.07, "MEDIAN_SPEND_PER_CUSTOMER": 125.49 }, "geometry": { "type": "Point", "coordinates": [ -75.163622, 39.950707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pmf-hh5", "LOCATION_NAME": "Koreana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952324, "LONGITUDE": -75.171634, "DATE_RANGE_START": 2020, "Total Visits": 133.0, "Total Visitors": 111.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 98.0, "Total Spend": 718.0, "Total Transactions": 40.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.83, "MEDIAN_SPEND_PER_CUSTOMER": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.171634, 39.952324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079208, "LONGITUDE": -75.02664, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 264.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7706.0, "Total Transactions": 329.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.38, "MEDIAN_SPEND_PER_CUSTOMER": 23.53 }, "geometry": { "type": "Point", "coordinates": [ -75.02664, 40.079208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 318.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6730.0, "Total Transactions": 965.0, "Total Customers": 568.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.88, "MEDIAN_SPEND_PER_CUSTOMER": 8.22 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "LOCATION_NAME": "iMunch Cafe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 8.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3105.0, "Total Transactions": 177.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 16.47 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-zmk", "LOCATION_NAME": "Hip Hemp Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94189, "LONGITUDE": -75.153788, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 232.0, "Total Spend": 3091.0, "Total Transactions": 77.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.59, "MEDIAN_SPEND_PER_CUSTOMER": 32.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153788, 39.94189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.966061, "LONGITUDE": -75.233588, "DATE_RANGE_START": 2020, "Total Visits": 411.0, "Total Visitors": 359.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 21356.0, "Total Transactions": 407.0, "Total Customers": 343.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.3, "MEDIAN_SPEND_PER_CUSTOMER": 38.83 }, "geometry": { "type": "Point", "coordinates": [ -75.233588, 39.966061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22h@628-pmb-7yv", "LOCATION_NAME": "Sweet As Fudge Candy Shoppe", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.954075, "LONGITUDE": -75.15933, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 505.0, "Total Transactions": 44.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.66, "MEDIAN_SPEND_PER_CUSTOMER": 10.51 }, "geometry": { "type": "Point", "coordinates": [ -75.15933, 39.954075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.072233, "LONGITUDE": -75.194825, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 208.0, "POI_CBG": 421010257001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3795.0, "Total Transactions": 193.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.194825, 40.072233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "LOCATION_NAME": "Jomici Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 135.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 4.0, "Total Spend": 482.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.95, "MEDIAN_SPEND_PER_CUSTOMER": 50.67 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm5-fj9", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.913638, "LONGITUDE": -75.149864, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 224.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1092.0, "Total Transactions": 42.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149864, 39.913638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.014555, "LONGITUDE": -75.15728, "DATE_RANGE_START": 2020, "Total Visits": 1516.0, "Total Visitors": 1209.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9165.0, "Total Transactions": 435.0, "Total Customers": 318.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.47 }, "geometry": { "type": "Point", "coordinates": [ -75.15728, 40.014555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2020, "Total Visits": 1778.0, "Total Visitors": 1256.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2696.0, "Total Transactions": 109.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.78, "MEDIAN_SPEND_PER_CUSTOMER": 26.48 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2020, "Total Visits": 621.0, "Total Visitors": 425.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4031.0, "Total Transactions": 139.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 22.02 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p7w-x3q", "LOCATION_NAME": "Mobil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.035465, "LONGITUDE": -75.049236, "DATE_RANGE_START": 2020, "Total Visits": 1826.0, "Total Visitors": 973.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 839.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.46, "MEDIAN_SPEND_PER_CUSTOMER": 60.46 }, "geometry": { "type": "Point", "coordinates": [ -75.049236, 40.035465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "LOCATION_NAME": "Pitchers Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.025059, "LONGITUDE": -75.223033, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 3558.0, "Total Transactions": 87.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.35, "MEDIAN_SPEND_PER_CUSTOMER": 36.4 }, "geometry": { "type": "Point", "coordinates": [ -75.223033, 40.025059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2020, "Total Visits": 4851.0, "Total Visitors": 3533.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 19.0, "Total Spend": 733734.0, "Total Transactions": 12426.0, "Total Customers": 7461.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.91, "MEDIAN_SPEND_PER_CUSTOMER": 62.01 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "LOCATION_NAME": "Green Leaf Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 26.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 79.0, "Total Spend": 793.0, "Total Transactions": 56.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.67, "MEDIAN_SPEND_PER_CUSTOMER": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmd-rx5", "LOCATION_NAME": "Cotoletta Fitler Square", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947447, "LONGITUDE": -75.179191, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 240.0, "Total Spend": 690.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.33, "MEDIAN_SPEND_PER_CUSTOMER": 46.33 }, "geometry": { "type": "Point", "coordinates": [ -75.179191, 39.947447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "LOCATION_NAME": "Dim Sum & Noodle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962276, "LONGITUDE": -75.172659, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 50.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4223.0, "Total Transactions": 153.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.25, "MEDIAN_SPEND_PER_CUSTOMER": 37.64 }, "geometry": { "type": "Point", "coordinates": [ -75.172659, 39.962276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "LOCATION_NAME": "Melograno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951247, "LONGITUDE": -75.174115, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": null, "Total Spend": 433.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.4, "MEDIAN_SPEND_PER_CUSTOMER": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174115, 39.951247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-8gk", "LOCATION_NAME": "Colinas Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.95962, "LONGITUDE": -75.241489, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": null, "Total Spend": 487.0, "Total Transactions": 56.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241489, 39.95962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pgb-6tv", "LOCATION_NAME": "Fairmount Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.968987, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 14.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1086.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 164.0, "MEDIAN_SPEND_PER_CUSTOMER": 164.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.968987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "LOCATION_NAME": "The Ritz-Carlton", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2020, "Total Visits": 4895.0, "Total Visitors": 3674.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 57.0, "Total Spend": 18078.0, "Total Transactions": 40.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 394.14, "MEDIAN_SPEND_PER_CUSTOMER": 367.63 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmb-5fz", "LOCATION_NAME": "1225Raw Sushi and Sake Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950027, "LONGITUDE": -75.161491, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 67.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3413.0, "Total Transactions": 38.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 107.2, "MEDIAN_SPEND_PER_CUSTOMER": 60.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161491, 39.950027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "LOCATION_NAME": "Bruno's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 105.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 1166.0, "Total Transactions": 67.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.61, "MEDIAN_SPEND_PER_CUSTOMER": 20.63 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "LOCATION_NAME": "Revolution House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 95.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 11008.0, "Total Transactions": 167.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.22, "MEDIAN_SPEND_PER_CUSTOMER": 57.95 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "LOCATION_NAME": "TGI Fridays", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2020, "Total Visits": 615.0, "Total Visitors": 472.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 26.0, "Total Spend": 11761.0, "Total Transactions": 316.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.85, "MEDIAN_SPEND_PER_CUSTOMER": 41.05 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "LOCATION_NAME": "Dairy Queen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087375, "LONGITUDE": -75.039949, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 107.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2800.0, "Total Transactions": 200.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.56, "MEDIAN_SPEND_PER_CUSTOMER": 11.21 }, "geometry": { "type": "Point", "coordinates": [ -75.039949, 40.087375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2020, "Total Visits": 411.0, "Total Visitors": 316.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6086.0, "Total Transactions": 431.0, "Total Customers": 335.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.51, "MEDIAN_SPEND_PER_CUSTOMER": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2020, "Total Visits": 413.0, "Total Visitors": 248.0, "POI_CBG": 421010101005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4240.0, "Total Transactions": 562.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfz-ch5", "LOCATION_NAME": "Craft Manayunk", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022994, "LONGITUDE": -75.219064, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 15269.0, "Total Transactions": 274.0, "Total Customers": 202.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.74, "MEDIAN_SPEND_PER_CUSTOMER": 48.44 }, "geometry": { "type": "Point", "coordinates": [ -75.219064, 40.022994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-sdv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915109, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2020, "Total Visits": 212.0, "Total Visitors": 185.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 551.0, "Total Transactions": 34.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.59, "MEDIAN_SPEND_PER_CUSTOMER": 15.05 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.915109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-jgk", "LOCATION_NAME": "DanDan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950263, "LONGITUDE": -75.1676, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 85.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 4737.0, "Total Transactions": 157.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.2, "MEDIAN_SPEND_PER_CUSTOMER": 34.36 }, "geometry": { "type": "Point", "coordinates": [ -75.1676, 39.950263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-7yv", "LOCATION_NAME": "Old City Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953757, "LONGITUDE": -75.158885, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 231.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.8, "MEDIAN_SPEND_PER_CUSTOMER": 5.25 }, "geometry": { "type": "Point", "coordinates": [ -75.158885, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2020, "Total Visits": 466.0, "Total Visitors": 337.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5844.0, "Total Transactions": 798.0, "Total Customers": 457.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.9, "MEDIAN_SPEND_PER_CUSTOMER": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgb-47q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962439, "LONGITUDE": -75.1634, "DATE_RANGE_START": 2020, "Total Visits": 1348.0, "Total Visitors": 677.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 200.0, "Total Spend": 166.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.4, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1634, 39.962439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.940581, "LONGITUDE": -75.165835, "DATE_RANGE_START": 2020, "Total Visits": 1312.0, "Total Visitors": 782.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1696.0, "Total Transactions": 87.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165835, 39.940581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-2hq", "LOCATION_NAME": "Venus Video", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.917066, "LONGITUDE": -75.216791, "DATE_RANGE_START": 2020, "Total Visits": 1274.0, "Total Visitors": 921.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2630.0, "Total Transactions": 62.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.77, "MEDIAN_SPEND_PER_CUSTOMER": 40.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216791, 39.917066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "LOCATION_NAME": "Four Seasons Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2020, "Total Visits": 298.0, "Total Visitors": 228.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 4815.0, "Total Transactions": 157.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.79, "MEDIAN_SPEND_PER_CUSTOMER": 31.35 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-6p9", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951312, "LONGITUDE": -75.166086, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 198.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 713.0, "Total Spend": 115.0, "Total Transactions": 16.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 28.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166086, 39.951312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-k4v", "LOCATION_NAME": "Kisso Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954278, "LONGITUDE": -75.146239, "DATE_RANGE_START": 2020, "Total Visits": 1108.0, "Total Visitors": 732.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 158.0, "Total Spend": 875.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.45, "MEDIAN_SPEND_PER_CUSTOMER": 84.49 }, "geometry": { "type": "Point", "coordinates": [ -75.146239, 39.954278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "LOCATION_NAME": "Yummy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954519, "LONGITUDE": -75.170234, "DATE_RANGE_START": 2020, "Total Visits": 248.0, "Total Visitors": 127.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 118.0, "Total Spend": 959.0, "Total Transactions": 38.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.58, "MEDIAN_SPEND_PER_CUSTOMER": 22.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170234, 39.954519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "LOCATION_NAME": "Nam Phuong", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936493, "LONGITUDE": -75.162002, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 179.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4112.0, "Total Transactions": 103.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.03, "MEDIAN_SPEND_PER_CUSTOMER": 32.62 }, "geometry": { "type": "Point", "coordinates": [ -75.162002, 39.936493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 151.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6257.0, "Total Transactions": 320.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.26, "MEDIAN_SPEND_PER_CUSTOMER": 18.86 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mzf", "LOCATION_NAME": "Passero's Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954206, "LONGITUDE": -75.167446, "DATE_RANGE_START": 2020, "Total Visits": 2549.0, "Total Visitors": 1453.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 252.0, "Total Spend": 816.0, "Total Transactions": 107.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.2, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167446, 39.954206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-4jv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962295, "LONGITUDE": -75.162022, "DATE_RANGE_START": 2020, "Total Visits": 824.0, "Total Visitors": 584.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2077.0, "Total Transactions": 298.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.56, "MEDIAN_SPEND_PER_CUSTOMER": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.162022, 39.962295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095685, "LONGITUDE": -75.015058, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 236.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1538.0, "Total Transactions": 258.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.98, "MEDIAN_SPEND_PER_CUSTOMER": 7.86 }, "geometry": { "type": "Point", "coordinates": [ -75.015058, 40.095685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933087, "LONGITUDE": -75.144618, "DATE_RANGE_START": 2020, "Total Visits": 955.0, "Total Visitors": 593.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 18379.0, "Total Transactions": 2662.0, "Total Customers": 1250.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -75.144618, 39.933087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "LOCATION_NAME": "Sawatdee Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 66.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 208.0, "Total Spend": 900.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.91, "MEDIAN_SPEND_PER_CUSTOMER": 40.91 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-pn5", "LOCATION_NAME": "Hummus Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954342, "LONGITUDE": -75.202153, "DATE_RANGE_START": 2020, "Total Visits": 193.0, "Total Visitors": 151.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2757.0, "Total Transactions": 183.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 15.38 }, "geometry": { "type": "Point", "coordinates": [ -75.202153, 39.954342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "LOCATION_NAME": "King Wok Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 73.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1035.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.45, "MEDIAN_SPEND_PER_CUSTOMER": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pjf-ks5", "LOCATION_NAME": "Threadwell", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.075533, "LONGITUDE": -75.206071, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 16.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 463.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206071, 40.075533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8h-5xq", "LOCATION_NAME": "New Station Pizza Iv", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026249, "LONGITUDE": -75.043153, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 16.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 237.0, "Total Spend": 627.0, "Total Transactions": 40.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.77, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.043153, 40.026249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "LOCATION_NAME": "The Twisted Tail", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941828, "LONGITUDE": -75.145203, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 16.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 17.0, "Total Spend": 11874.0, "Total Transactions": 171.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.84, "MEDIAN_SPEND_PER_CUSTOMER": 66.09 }, "geometry": { "type": "Point", "coordinates": [ -75.145203, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "LOCATION_NAME": "Kei Sushi Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5657.0, "Total Transactions": 109.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.88, "MEDIAN_SPEND_PER_CUSTOMER": 57.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-gff", "LOCATION_NAME": "AAA Distributor", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.079352, "LONGITUDE": -75.023999, "DATE_RANGE_START": 2020, "Total Visits": 586.0, "Total Visitors": 474.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 7013.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 352.62, "MEDIAN_SPEND_PER_CUSTOMER": 533.52 }, "geometry": { "type": "Point", "coordinates": [ -75.023999, 40.079352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.924926, "LONGITUDE": -75.169063, "DATE_RANGE_START": 2020, "Total Visits": 1411.0, "Total Visitors": 859.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 13.0, "Total Spend": 5379.0, "Total Transactions": 306.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.59, "MEDIAN_SPEND_PER_CUSTOMER": 23.52 }, "geometry": { "type": "Point", "coordinates": [ -75.169063, 39.924926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dwf-bhq", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.912436, "LONGITUDE": -75.233807, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 228.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 566.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.94, "MEDIAN_SPEND_PER_CUSTOMER": 18.48 }, "geometry": { "type": "Point", "coordinates": [ -75.233807, 39.912436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.120348, "LONGITUDE": -75.015989, "DATE_RANGE_START": 2020, "Total Visits": 723.0, "Total Visitors": 580.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 892.0, "Total Transactions": 64.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.25, "MEDIAN_SPEND_PER_CUSTOMER": 12.06 }, "geometry": { "type": "Point", "coordinates": [ -75.015989, 40.120348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.993791, "LONGITUDE": -75.155151, "DATE_RANGE_START": 2020, "Total Visits": 1886.0, "Total Visitors": 1163.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 8.0, "Total Spend": 558.0, "Total Transactions": 26.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.02 }, "geometry": { "type": "Point", "coordinates": [ -75.155151, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8t-w8v", "LOCATION_NAME": "jasmine Inc", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087715, "LONGITUDE": -74.961773, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 66.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 909.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.94, "MEDIAN_SPEND_PER_CUSTOMER": 21.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961773, 40.087715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.048258, "LONGITUDE": -75.056175, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 135.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 16.0, "Total Spend": 12334.0, "Total Transactions": 216.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.95, "MEDIAN_SPEND_PER_CUSTOMER": 45.33 }, "geometry": { "type": "Point", "coordinates": [ -75.056175, 40.048258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2020, "Total Visits": 264.0, "Total Visitors": 185.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1501.0, "Total Transactions": 77.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.93, "MEDIAN_SPEND_PER_CUSTOMER": 16.77 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wtv", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951227, "LONGITUDE": -75.152425, "DATE_RANGE_START": 2020, "Total Visits": 625.0, "Total Visitors": 429.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 13600.0, "Total Transactions": 828.0, "Total Customers": 588.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.99, "MEDIAN_SPEND_PER_CUSTOMER": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152425, 39.951227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-47q", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.921468, "LONGITUDE": -75.184708, "DATE_RANGE_START": 2020, "Total Visits": 314.0, "Total Visitors": 244.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4923.0, "Total Transactions": 44.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.184708, 39.921468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029093, "LONGITUDE": -75.118871, "DATE_RANGE_START": 2020, "Total Visits": 496.0, "Total Visitors": 326.0, "POI_CBG": 421010290004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 565.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.61, "MEDIAN_SPEND_PER_CUSTOMER": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.118871, 40.029093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2020, "Total Visits": 820.0, "Total Visitors": 582.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 73392.0, "Total Transactions": 4665.0, "Total Customers": 2146.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.93, "MEDIAN_SPEND_PER_CUSTOMER": 22.86 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "LOCATION_NAME": "Somerton Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.110353, "LONGITUDE": -75.024095, "DATE_RANGE_START": 2020, "Total Visits": 1489.0, "Total Visitors": 1108.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 586.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 147.5, "MEDIAN_SPEND_PER_CUSTOMER": 147.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024095, 40.110353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2020, "Total Visits": 592.0, "Total Visitors": 427.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 32.0, "Total Spend": 1228.0, "Total Transactions": 149.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.64, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-7yv", "LOCATION_NAME": "7 Brothers Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.027871, "LONGITUDE": -75.125835, "DATE_RANGE_START": 2020, "Total Visits": 707.0, "Total Visitors": 520.0, "POI_CBG": 421010286001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 816.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.34, "MEDIAN_SPEND_PER_CUSTOMER": 23.46 }, "geometry": { "type": "Point", "coordinates": [ -75.125835, 40.027871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-f4v", "LOCATION_NAME": "Q The Tire Doctor", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.986136, "LONGITUDE": -75.180823, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 54.0, "POI_CBG": 421010151022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 719.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 181.0, "MEDIAN_SPEND_PER_CUSTOMER": 181.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180823, 39.986136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.002434, "LONGITUDE": -75.100336, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 58.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 69313.0, "Total Transactions": 69.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 491.15, "MEDIAN_SPEND_PER_CUSTOMER": 720.93 }, "geometry": { "type": "Point", "coordinates": [ -75.100336, 40.002434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "LOCATION_NAME": "Just To Serve You", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010102001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 1983.0, "Total Transactions": 73.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.54, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "LOCATION_NAME": "Rays Cafe & Tea House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 58.0, "Total Spend": 306.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.84, "MEDIAN_SPEND_PER_CUSTOMER": 40.32 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg9-xh5", "LOCATION_NAME": "Coffee Cream & Dreams", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966924, "LONGITUDE": -75.162284, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 121.0, "Total Spend": 39.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.25, "MEDIAN_SPEND_PER_CUSTOMER": 5.25 }, "geometry": { "type": "Point", "coordinates": [ -75.162284, 39.966924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-b49", "LOCATION_NAME": "E Cigs International", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.03586, "LONGITUDE": -75.217916, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 20.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": 130.0, "Total Spend": 992.0, "Total Transactions": 22.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 35.36 }, "geometry": { "type": "Point", "coordinates": [ -75.217916, 40.03586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-fs5", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.919174, "LONGITUDE": -75.184979, "DATE_RANGE_START": 2020, "Total Visits": 1479.0, "Total Visitors": 1086.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 213.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.184979, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nyv", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.931469, "LONGITUDE": -75.144907, "DATE_RANGE_START": 2020, "Total Visits": 512.0, "Total Visitors": 411.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 16677.0, "Total Transactions": 87.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.07, "MEDIAN_SPEND_PER_CUSTOMER": 66.29 }, "geometry": { "type": "Point", "coordinates": [ -75.144907, 39.931469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 28.0, "POI_CBG": 421010093005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2382.0, "Total Transactions": 103.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.85, "MEDIAN_SPEND_PER_CUSTOMER": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "LOCATION_NAME": "El Fuego", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 36.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 579.0, "Total Transactions": 52.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.62, "MEDIAN_SPEND_PER_CUSTOMER": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "LOCATION_NAME": "Xi'an Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 55.0, "Total Spend": 1480.0, "Total Transactions": 42.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.27, "MEDIAN_SPEND_PER_CUSTOMER": 31.27 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.08189, "LONGITUDE": -75.037804, "DATE_RANGE_START": 2020, "Total Visits": 409.0, "Total Visitors": 266.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 569.0, "Total Transactions": 67.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.32, "MEDIAN_SPEND_PER_CUSTOMER": 11.27 }, "geometry": { "type": "Point", "coordinates": [ -75.037804, 40.08189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-y5f", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.086763, "LONGITUDE": -75.038776, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 87.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 29.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.36, "MEDIAN_SPEND_PER_CUSTOMER": 7.36 }, "geometry": { "type": "Point", "coordinates": [ -75.038776, 40.086763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953206, "LONGITUDE": -75.160514, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 52.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 424.0, "Total Transactions": 56.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.15, "MEDIAN_SPEND_PER_CUSTOMER": 7.15 }, "geometry": { "type": "Point", "coordinates": [ -75.160514, 39.953206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-gzf", "LOCATION_NAME": "U Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947628, "LONGITUDE": -75.161514, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 34.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12479.0, "Total Transactions": 758.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.13, "MEDIAN_SPEND_PER_CUSTOMER": 26.45 }, "geometry": { "type": "Point", "coordinates": [ -75.161514, 39.947628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025386, "LONGITUDE": -75.223869, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 92.0, "Total Spend": 5032.0, "Total Transactions": 127.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.53, "MEDIAN_SPEND_PER_CUSTOMER": 39.74 }, "geometry": { "type": "Point", "coordinates": [ -75.223869, 40.025386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-3qz", "LOCATION_NAME": "Jana Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.020931, "LONGITUDE": -75.117668, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010289011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 271.0, "Total Transactions": 18.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.64, "MEDIAN_SPEND_PER_CUSTOMER": 22.47 }, "geometry": { "type": "Point", "coordinates": [ -75.117668, 40.020931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm6-jn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921871, "LONGITUDE": -75.14714, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 38.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 750.0, "Total Transactions": 105.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.11, "MEDIAN_SPEND_PER_CUSTOMER": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.14714, 39.921871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-xqz", "LOCATION_NAME": "Ambassador", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97078, "LONGITUDE": -75.147954, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 71.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1338.0, "Total Transactions": 36.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.44, "MEDIAN_SPEND_PER_CUSTOMER": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.147954, 39.97078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021282, "LONGITUDE": -75.14902, "DATE_RANGE_START": 2020, "Total Visits": 873.0, "Total Visitors": 639.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4342.0, "Total Transactions": 314.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.44 }, "geometry": { "type": "Point", "coordinates": [ -75.14902, 40.021282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 127.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4235.0, "Total Transactions": 284.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgc-wzf", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977954, "LONGITUDE": -75.224016, "DATE_RANGE_START": 2020, "Total Visits": 4192.0, "Total Visitors": 2082.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1236.0, "Total Transactions": 91.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.46, "MEDIAN_SPEND_PER_CUSTOMER": 12.51 }, "geometry": { "type": "Point", "coordinates": [ -75.224016, 39.977954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-3nq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917267, "LONGITUDE": -75.172584, "DATE_RANGE_START": 2020, "Total Visits": 1020.0, "Total Visitors": 470.0, "POI_CBG": 421010039022.0, "MEDIAN_DWELL": 555.0, "Total Spend": 55.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.62, "MEDIAN_SPEND_PER_CUSTOMER": 4.62 }, "geometry": { "type": "Point", "coordinates": [ -75.172584, 39.917267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvq-dvz", "LOCATION_NAME": "Third Auto Sales Inc", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.94602, "LONGITUDE": -75.229173, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 208.0, "POI_CBG": 421010072002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1044.0, "Total Transactions": 40.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.65, "MEDIAN_SPEND_PER_CUSTOMER": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229173, 39.94602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2020, "Total Visits": 665.0, "Total Visitors": 433.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1266.0, "Total Transactions": 149.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.38, "MEDIAN_SPEND_PER_CUSTOMER": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2020, "Total Visits": 518.0, "Total Visitors": 371.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7046.0, "Total Transactions": 347.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.51, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-cdv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.033248, "LONGITUDE": -75.131604, "DATE_RANGE_START": 2020, "Total Visits": 790.0, "Total Visitors": 542.0, "POI_CBG": 421010275003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 335.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131604, 40.033248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-qpv", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007797, "LONGITUDE": -75.141965, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010199002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 334.0, "Total Transactions": 16.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.25, "MEDIAN_SPEND_PER_CUSTOMER": 21.95 }, "geometry": { "type": "Point", "coordinates": [ -75.141965, 40.007797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093157, "LONGITUDE": -75.032901, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 191.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1288.0, "Total Transactions": 64.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.91, "MEDIAN_SPEND_PER_CUSTOMER": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.032901, 40.093157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-ks5", "LOCATION_NAME": "Seasons Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.952087, "LONGITUDE": -75.143763, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 276.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 379.0, "Total Spend": 514.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 129.6, "MEDIAN_SPEND_PER_CUSTOMER": 129.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143763, 39.952087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953745, "LONGITUDE": -75.172854, "DATE_RANGE_START": 2020, "Total Visits": 1630.0, "Total Visitors": 975.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 89.0, "Total Spend": 11395.0, "Total Transactions": 546.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.3, "MEDIAN_SPEND_PER_CUSTOMER": 18.62 }, "geometry": { "type": "Point", "coordinates": [ -75.172854, 39.953745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-6tv", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.015035, "LONGITUDE": -75.178463, "DATE_RANGE_START": 2020, "Total Visits": 605.0, "Total Visitors": 516.0, "POI_CBG": 421010206001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 840.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.11, "MEDIAN_SPEND_PER_CUSTOMER": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178463, 40.015035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "LOCATION_NAME": "Solly Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 20.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 1216.0, "Total Transactions": 54.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.12, "MEDIAN_SPEND_PER_CUSTOMER": 26.86 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2020, "Total Visits": 1292.0, "Total Visitors": 1036.0, "POI_CBG": 421010380002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12109.0, "Total Transactions": 611.0, "Total Customers": 466.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.69, "MEDIAN_SPEND_PER_CUSTOMER": 21.76 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "LOCATION_NAME": "Frankford Hall", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 250.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 45.0, "Total Spend": 36061.0, "Total Transactions": 1096.0, "Total Customers": 800.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-8n5", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.959397, "LONGITUDE": -75.213118, "DATE_RANGE_START": 2020, "Total Visits": 445.0, "Total Visitors": 391.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 54.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.66, "MEDIAN_SPEND_PER_CUSTOMER": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.213118, 39.959397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.912981, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6352.0, "Total Transactions": 85.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.9, "MEDIAN_SPEND_PER_CUSTOMER": 48.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.912981 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.030253, "LONGITUDE": -75.101415, "DATE_RANGE_START": 2020, "Total Visits": 772.0, "Total Visitors": 645.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1883.0, "Total Transactions": 34.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.98, "MEDIAN_SPEND_PER_CUSTOMER": 36.62 }, "geometry": { "type": "Point", "coordinates": [ -75.101415, 40.030253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm4-hnq", "LOCATION_NAME": "Los Cuatro Soles", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928485, "LONGITUDE": -75.173061, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 26.0, "POI_CBG": 421010030013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1899.0, "Total Transactions": 50.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.51, "MEDIAN_SPEND_PER_CUSTOMER": 46.68 }, "geometry": { "type": "Point", "coordinates": [ -75.173061, 39.928485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "LOCATION_NAME": "Shoe Carnival", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.049924, "LONGITUDE": -75.062397, "DATE_RANGE_START": 2020, "Total Visits": 1250.0, "Total Visitors": 983.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 15906.0, "Total Transactions": 210.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.49, "MEDIAN_SPEND_PER_CUSTOMER": 68.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062397, 40.049924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035458, "LONGITUDE": -75.049099, "DATE_RANGE_START": 2020, "Total Visits": 407.0, "Total Visitors": 218.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4988.0, "Total Transactions": 246.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -75.049099, 40.035458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-94v", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951985, "LONGITUDE": -75.157156, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 439.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.5, "MEDIAN_SPEND_PER_CUSTOMER": 55.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157156, 39.951985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026137, "LONGITUDE": -75.042321, "DATE_RANGE_START": 2020, "Total Visits": 502.0, "Total Visitors": 250.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 383.0, "Total Transactions": 38.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 5.59 }, "geometry": { "type": "Point", "coordinates": [ -75.042321, 40.026137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.048384, "LONGITUDE": -75.056563, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 197.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1761.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056563, 40.048384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kcq", "LOCATION_NAME": "Tselaine", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950645, "LONGITUDE": -75.173695, "DATE_RANGE_START": 2020, "Total Visits": 1121.0, "Total Visitors": 707.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 293.0, "Total Spend": 349.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.42, "MEDIAN_SPEND_PER_CUSTOMER": 51.42 }, "geometry": { "type": "Point", "coordinates": [ -75.173695, 39.950645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.995094, "LONGITUDE": -75.095646, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 385.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1126.0, "Total Transactions": 52.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.2, "MEDIAN_SPEND_PER_CUSTOMER": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 39.995094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2020, "Total Visits": 437.0, "Total Visitors": 286.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 9.0, "Total Spend": 487.0, "Total Transactions": 38.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-7h5", "LOCATION_NAME": "Estia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948448, "LONGITUDE": -75.165269, "DATE_RANGE_START": 2020, "Total Visits": 306.0, "Total Visitors": 202.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 192.0, "Total Spend": 8902.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 175.13, "MEDIAN_SPEND_PER_CUSTOMER": 162.75 }, "geometry": { "type": "Point", "coordinates": [ -75.165269, 39.948448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-c5z", "LOCATION_NAME": "Maple Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97918, "LONGITUDE": -75.160433, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 36.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 40.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160433, 39.97918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "LOCATION_NAME": "Double Knot", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 89.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 193.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.7, "MEDIAN_SPEND_PER_CUSTOMER": 37.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948772, "LONGITUDE": -75.160716, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 197.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6345.0, "Total Transactions": 512.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.65, "MEDIAN_SPEND_PER_CUSTOMER": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.160716, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2020, "Total Visits": 3047.0, "Total Visitors": 2362.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 46416.0, "Total Transactions": 2352.0, "Total Customers": 1594.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.32, "MEDIAN_SPEND_PER_CUSTOMER": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-mrk", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953042, "LONGITUDE": -75.167502, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 107.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 253.0, "Total Spend": 257.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.83, "MEDIAN_SPEND_PER_CUSTOMER": 18.83 }, "geometry": { "type": "Point", "coordinates": [ -75.167502, 39.953042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-grk", "LOCATION_NAME": "Federal Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963015, "LONGITUDE": -75.174167, "DATE_RANGE_START": 2020, "Total Visits": 3100.0, "Total Visitors": 1753.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 31.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.9, "MEDIAN_SPEND_PER_CUSTOMER": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174167, 39.963015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.014677, "LONGITUDE": -75.130343, "DATE_RANGE_START": 2020, "Total Visits": 298.0, "Total Visitors": 238.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4926.0, "Total Transactions": 677.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.47, "MEDIAN_SPEND_PER_CUSTOMER": 8.93 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.014677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm3-vpv", "LOCATION_NAME": "Passyunk Avenue Philly Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927906, "LONGITUDE": -75.166004, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": null, "Total Spend": 5129.0, "Total Transactions": 341.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.24, "MEDIAN_SPEND_PER_CUSTOMER": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166004, 39.927906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 147.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3733.0, "Total Transactions": 480.0, "Total Customers": 320.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.73, "MEDIAN_SPEND_PER_CUSTOMER": 9.13 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "LOCATION_NAME": "San Lucas Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 64.0, "Total Spend": 784.0, "Total Transactions": 48.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-975", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953036, "LONGITUDE": -75.192281, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 54.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2425.0, "Total Transactions": 355.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.81, "MEDIAN_SPEND_PER_CUSTOMER": 7.13 }, "geometry": { "type": "Point", "coordinates": [ -75.192281, 39.953036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "LOCATION_NAME": "Angelo's Pizza House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1446.0, "Total Transactions": 85.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.02, "MEDIAN_SPEND_PER_CUSTOMER": 20.44 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044956, "LONGITUDE": -75.143877, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 18.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 183.0, "Total Spend": 5790.0, "Total Transactions": 218.0, "Total Customers": 161.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.78, "MEDIAN_SPEND_PER_CUSTOMER": 27.87 }, "geometry": { "type": "Point", "coordinates": [ -75.143877, 40.044956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-bhq", "LOCATION_NAME": "Pet Friendly Dog Bakery", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.025005, "LONGITUDE": -75.222997, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 79.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.95, "MEDIAN_SPEND_PER_CUSTOMER": 19.95 }, "geometry": { "type": "Point", "coordinates": [ -75.222997, 40.025005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "LOCATION_NAME": "Triangle Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2938.0, "Total Transactions": 99.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.68, "MEDIAN_SPEND_PER_CUSTOMER": 28.46 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954547, "LONGITUDE": -75.194897, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 83.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 22955.0, "Total Transactions": 2662.0, "Total Customers": 1372.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.11, "MEDIAN_SPEND_PER_CUSTOMER": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -75.194897, 39.954547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "LOCATION_NAME": "Bassetts Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 50.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1381.0, "Total Transactions": 139.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.66, "MEDIAN_SPEND_PER_CUSTOMER": 8.66 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952045, "LONGITUDE": -75.16824, "DATE_RANGE_START": 2020, "Total Visits": 6123.0, "Total Visitors": 3702.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 70.0, "Total Spend": 3663.0, "Total Transactions": 111.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.54, "MEDIAN_SPEND_PER_CUSTOMER": 34.36 }, "geometry": { "type": "Point", "coordinates": [ -75.16824, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "LOCATION_NAME": "P.C. Richard & Son", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.046246, "LONGITUDE": -75.059899, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 419.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 21.0, "Total Spend": 61679.0, "Total Transactions": 79.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 350.92, "MEDIAN_SPEND_PER_CUSTOMER": 356.27 }, "geometry": { "type": "Point", "coordinates": [ -75.059899, 40.046246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.055425, "LONGITUDE": -75.00482, "DATE_RANGE_START": 2020, "Total Visits": 784.0, "Total Visitors": 572.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 6.0, "Total Spend": 849.0, "Total Transactions": 40.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.67, "MEDIAN_SPEND_PER_CUSTOMER": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.00482, 40.055425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-223@628-p8n-389", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02098, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2020, "Total Visits": 278.0, "Total Visitors": 224.0, "POI_CBG": 421010323001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2124.0, "Total Transactions": 127.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.41, "MEDIAN_SPEND_PER_CUSTOMER": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.02098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2020, "Total Visits": 518.0, "Total Visitors": 365.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 20793.0, "Total Transactions": 919.0, "Total Customers": 524.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.66, "MEDIAN_SPEND_PER_CUSTOMER": 22.92 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "LOCATION_NAME": "Vince.", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2020, "Total Visits": 2044.0, "Total Visitors": 1530.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 510.0, "Total Transactions": 12.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.0, "MEDIAN_SPEND_PER_CUSTOMER": 66.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.044593, "LONGITUDE": -75.101222, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 198.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1254.0, "Total Transactions": 64.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.91, "MEDIAN_SPEND_PER_CUSTOMER": 30.21 }, "geometry": { "type": "Point", "coordinates": [ -75.101222, 40.044593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvx-59f", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.972941, "LONGITUDE": -75.217366, "DATE_RANGE_START": 2020, "Total Visits": 371.0, "Total Visitors": 302.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1582.0, "Total Transactions": 179.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 7.57 }, "geometry": { "type": "Point", "coordinates": [ -75.217366, 39.972941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-975", "LOCATION_NAME": "Avril 50", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.953493, "LONGITUDE": -75.192528, "DATE_RANGE_START": 2020, "Total Visits": 1356.0, "Total Visitors": 951.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 907.0, "Total Transactions": 32.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.75, "MEDIAN_SPEND_PER_CUSTOMER": 30.44 }, "geometry": { "type": "Point", "coordinates": [ -75.192528, 39.953493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-68v", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051732, "LONGITUDE": -75.010927, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8241.0, "Total Transactions": 290.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.68, "MEDIAN_SPEND_PER_CUSTOMER": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.010927, 40.051732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "LOCATION_NAME": "Smokey Joes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 28.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 853.0, "Total Transactions": 26.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.96, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "LOCATION_NAME": "Jack B Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.939115, "LONGITUDE": -75.149838, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 36.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2257.0, "Total Transactions": 40.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.5, "MEDIAN_SPEND_PER_CUSTOMER": 47.25 }, "geometry": { "type": "Point", "coordinates": [ -75.149838, 39.939115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950471, "LONGITUDE": -75.146166, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 140.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.21, "MEDIAN_SPEND_PER_CUSTOMER": 35.21 }, "geometry": { "type": "Point", "coordinates": [ -75.146166, 39.950471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pjf-jvz", "LOCATION_NAME": "Bahia Bowls Chestnut Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072819, "LONGITUDE": -75.202597, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 26.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1772.0, "Total Transactions": 171.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.59, "MEDIAN_SPEND_PER_CUSTOMER": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.202597, 40.072819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p8d-fmk", "LOCATION_NAME": "Renzi's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998034, "LONGITUDE": -75.074418, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 30.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 377.0, "Total Spend": 140.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.16, "MEDIAN_SPEND_PER_CUSTOMER": 25.67 }, "geometry": { "type": "Point", "coordinates": [ -75.074418, 39.998034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "LOCATION_NAME": "Quaker Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060542, "LONGITUDE": -75.084471, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1922.0, "Total Transactions": 81.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.66, "MEDIAN_SPEND_PER_CUSTOMER": 30.97 }, "geometry": { "type": "Point", "coordinates": [ -75.084471, 40.060542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "LOCATION_NAME": "Banana Leaf", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953737, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 46.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1684.0, "Total Transactions": 60.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.06 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.953737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pm4-nh5", "LOCATION_NAME": "The Chilly Banana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937277, "LONGITUDE": -75.154779, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 54.0, "POI_CBG": 421010024001.0, "MEDIAN_DWELL": 1262.0, "Total Spend": 526.0, "Total Transactions": 46.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154779, 39.937277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pmb-c3q", "LOCATION_NAME": "Kin Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.944553, "LONGITUDE": -75.158728, "DATE_RANGE_START": 2020, "Total Visits": 1173.0, "Total Visitors": 715.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 382.0, "Total Spend": 4670.0, "Total Transactions": 18.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 166.32, "MEDIAN_SPEND_PER_CUSTOMER": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158728, 39.944553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "LOCATION_NAME": "Frank's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 4.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 429.0, "Total Spend": 3317.0, "Total Transactions": 129.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.05, "MEDIAN_SPEND_PER_CUSTOMER": 25.51 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "LOCATION_NAME": "Volo Coffeehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 248.0, "Total Spend": 16222.0, "Total Transactions": 1507.0, "Total Customers": 635.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "LOCATION_NAME": "Fishtown Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 208.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.9, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.91267, "LONGITUDE": -75.154671, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 62.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1025.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.71, "MEDIAN_SPEND_PER_CUSTOMER": 34.38 }, "geometry": { "type": "Point", "coordinates": [ -75.154671, 39.91267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-249", "LOCATION_NAME": "On Point Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937259, "LONGITUDE": -75.177106, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3074.0, "Total Transactions": 58.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.88, "MEDIAN_SPEND_PER_CUSTOMER": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177106, 39.937259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-td9", "LOCATION_NAME": "NY Bagel & Deli Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96081, "LONGITUDE": -75.157392, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 28.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 413.0, "Total Spend": 1988.0, "Total Transactions": 153.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 14.16 }, "geometry": { "type": "Point", "coordinates": [ -75.157392, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "LOCATION_NAME": "Giovanni's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 42.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 145.0, "Total Spend": 3622.0, "Total Transactions": 99.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.49, "MEDIAN_SPEND_PER_CUSTOMER": 23.92 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "LOCATION_NAME": "Baltimore Pet Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 63.0, "Total Spend": 1646.0, "Total Transactions": 38.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.03, "MEDIAN_SPEND_PER_CUSTOMER": 53.99 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "LOCATION_NAME": "Asia Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010310001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 628.0, "Total Transactions": 32.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.1, "MEDIAN_SPEND_PER_CUSTOMER": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-ph6-cdv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979947, "LONGITUDE": -75.248732, "DATE_RANGE_START": 2020, "Total Visits": 455.0, "Total Visitors": 290.0, "POI_CBG": 421010114001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5337.0, "Total Transactions": 56.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.61, "MEDIAN_SPEND_PER_CUSTOMER": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.248732, 39.979947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954892, "LONGITUDE": -75.206728, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 206.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1726.0, "Total Transactions": 197.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.206728, 39.954892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-tjv", "LOCATION_NAME": "Children's Hospital Of Philadelphia", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.94747, "LONGITUDE": -75.195382, "DATE_RANGE_START": 2020, "Total Visits": 2481.0, "Total Visitors": 1090.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 178.0, "Total Spend": 2100.0, "Total Transactions": 417.0, "Total Customers": 337.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195382, 39.94747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj2-btv", "LOCATION_NAME": "Bentoulis Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01065, "LONGITUDE": -75.102956, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 16.0, "POI_CBG": 421010191002.0, "MEDIAN_DWELL": 348.0, "Total Spend": 1890.0, "Total Transactions": 66.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.11 }, "geometry": { "type": "Point", "coordinates": [ -75.102956, 40.01065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "LOCATION_NAME": "Neighborhood Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2020, "Total Visits": 278.0, "Total Visitors": 159.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 163.0, "Total Spend": 196.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.36, "MEDIAN_SPEND_PER_CUSTOMER": 20.36 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8m-b8v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.016255, "LONGITUDE": -75.061394, "DATE_RANGE_START": 2020, "Total Visits": 294.0, "Total Visitors": 161.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 791.0, "Total Transactions": 87.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.91, "MEDIAN_SPEND_PER_CUSTOMER": 7.58 }, "geometry": { "type": "Point", "coordinates": [ -75.061394, 40.016255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-4vz", "LOCATION_NAME": "Cafe Tinto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02153, "LONGITUDE": -75.122622, "DATE_RANGE_START": 2020, "Total Visits": 173.0, "Total Visitors": 48.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 1420.0, "Total Spend": 634.0, "Total Transactions": 38.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.122622, 40.02153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-gtv", "LOCATION_NAME": "Bruno's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067212, "LONGITUDE": -75.146516, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 54.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 1142.0, "Total Transactions": 62.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.09, "MEDIAN_SPEND_PER_CUSTOMER": 17.71 }, "geometry": { "type": "Point", "coordinates": [ -75.146516, 40.067212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "LOCATION_NAME": "Tavares Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 60.0, "POI_CBG": 421010247005.0, "MEDIAN_DWELL": 328.0, "Total Spend": 68.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.25, "MEDIAN_SPEND_PER_CUSTOMER": 12.25 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.012783, "LONGITUDE": -75.150904, "DATE_RANGE_START": 2020, "Total Visits": 1183.0, "Total Visitors": 842.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 22701.0, "Total Transactions": 314.0, "Total Customers": 266.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.5, "MEDIAN_SPEND_PER_CUSTOMER": 46.69 }, "geometry": { "type": "Point", "coordinates": [ -75.150904, 40.012783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-j5f", "LOCATION_NAME": "Kitchen Kapers", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.949485, "LONGITUDE": -75.169064, "DATE_RANGE_START": 2020, "Total Visits": 135.0, "Total Visitors": 109.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1849.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.06, "MEDIAN_SPEND_PER_CUSTOMER": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.169064, 39.949485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-sqz", "LOCATION_NAME": "A Plus Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.124072, "LONGITUDE": -75.01455, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 123.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 190.0, "Total Spend": 154.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01455, 40.124072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2020, "Total Visits": 788.0, "Total Visitors": 484.0, "POI_CBG": 421010275001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3510.0, "Total Transactions": 183.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.09, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-zxq", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941838, "LONGITUDE": -75.152721, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 157.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 11166.0, "Total Transactions": 87.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 104.99, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152721, 39.941838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043955, "LONGITUDE": -75.231236, "DATE_RANGE_START": 2020, "Total Visits": 379.0, "Total Visitors": 272.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1248.0, "Total Transactions": 71.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.231236, 40.043955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 270.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20970.0, "Total Transactions": 768.0, "Total Customers": 631.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.2, "MEDIAN_SPEND_PER_CUSTOMER": 24.89 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.898752, "LONGITUDE": -75.240579, "DATE_RANGE_START": 2020, "Total Visits": 840.0, "Total Visitors": 586.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 415.0, "Total Transactions": 34.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.4, "MEDIAN_SPEND_PER_CUSTOMER": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.240579, 39.898752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "LOCATION_NAME": "Bubblefish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2020, "Total Visits": 2451.0, "Total Visitors": 1481.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 201.0, "Total Spend": 2886.0, "Total Transactions": 87.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.59, "MEDIAN_SPEND_PER_CUSTOMER": 35.26 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pnx-4vz", "LOCATION_NAME": "The Abbaye", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962216, "LONGITUDE": -75.142919, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": null, "Total Spend": 5202.0, "Total Transactions": 91.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.98, "MEDIAN_SPEND_PER_CUSTOMER": 50.76 }, "geometry": { "type": "Point", "coordinates": [ -75.142919, 39.962216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-p82-nqz", "LOCATION_NAME": "On Charcoal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041319, "LONGITUDE": -75.075986, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 10.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 99.0, "Total Spend": 997.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 132.57, "MEDIAN_SPEND_PER_CUSTOMER": 132.57 }, "geometry": { "type": "Point", "coordinates": [ -75.075986, 40.041319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "LOCATION_NAME": "Giorgio On Pine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 30.0, "Total Spend": 7177.0, "Total Transactions": 119.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.49, "MEDIAN_SPEND_PER_CUSTOMER": 50.76 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-gkz", "LOCATION_NAME": "Ristorante Aroma", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944903, "LONGITUDE": -75.160742, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 16.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 996.0, "Total Spend": 867.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.94, "MEDIAN_SPEND_PER_CUSTOMER": 96.94 }, "geometry": { "type": "Point", "coordinates": [ -75.160742, 39.944903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "LOCATION_NAME": "Canto House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955533, "LONGITUDE": -75.155568, "DATE_RANGE_START": 2020, "Total Visits": 3823.0, "Total Visitors": 2293.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 2215.0, "Total Transactions": 73.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.84, "MEDIAN_SPEND_PER_CUSTOMER": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.155568, 39.955533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "LOCATION_NAME": "Red Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2020, "Total Visits": 264.0, "Total Visitors": 204.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 44.0, "Total Spend": 9479.0, "Total Transactions": 143.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.86, "MEDIAN_SPEND_PER_CUSTOMER": 61.39 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99223, "LONGITUDE": -75.09972, "DATE_RANGE_START": 2020, "Total Visits": 486.0, "Total Visitors": 445.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 229.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.22, "MEDIAN_SPEND_PER_CUSTOMER": 31.22 }, "geometry": { "type": "Point", "coordinates": [ -75.09972, 39.99223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919412, "LONGITUDE": -75.187304, "DATE_RANGE_START": 2020, "Total Visits": 1080.0, "Total Visitors": 804.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16167.0, "Total Transactions": 1405.0, "Total Customers": 927.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.71 }, "geometry": { "type": "Point", "coordinates": [ -75.187304, 39.919412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwd-v9f", "LOCATION_NAME": "RevZilla", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.900369, "LONGITUDE": -75.195065, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 26.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 46587.0, "Total Transactions": 189.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 172.22, "MEDIAN_SPEND_PER_CUSTOMER": 211.99 }, "geometry": { "type": "Point", "coordinates": [ -75.195065, 39.900369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmf-qfz", "LOCATION_NAME": "Entree Byob", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943935, "LONGITUDE": -75.169156, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 149.0, "Total Spend": 3871.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.33, "MEDIAN_SPEND_PER_CUSTOMER": 63.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169156, 39.943935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-9mk", "LOCATION_NAME": "Bravo Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010647, "LONGITUDE": -75.151533, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 44.0, "POI_CBG": 421010201021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4898.0, "Total Transactions": 195.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.76, "MEDIAN_SPEND_PER_CUSTOMER": 24.08 }, "geometry": { "type": "Point", "coordinates": [ -75.151533, 40.010647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "LOCATION_NAME": "Pat's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 58.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6926.0, "Total Transactions": 351.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.39, "MEDIAN_SPEND_PER_CUSTOMER": 21.63 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-mrk", "LOCATION_NAME": "Elixr Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952527, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2020, "Total Visits": 893.0, "Total Visitors": 576.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 165.0, "Total Spend": 269.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 8.67 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.952527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 268.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6672.0, "Total Transactions": 943.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 10.38 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2020, "Total Visits": 379.0, "Total Visitors": 250.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11154.0, "Total Transactions": 1495.0, "Total Customers": 786.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 9.46 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "LOCATION_NAME": "Desi Village", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 750.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.08, "MEDIAN_SPEND_PER_CUSTOMER": 32.43 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "LOCATION_NAME": "Domenic's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 29.0, "Total Spend": 2224.0, "Total Transactions": 66.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.65, "MEDIAN_SPEND_PER_CUSTOMER": 30.97 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@63s-dw4-rzf", "LOCATION_NAME": "Local Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895174, "LONGITUDE": -75.227977, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 13709.0, "Total Transactions": 820.0, "Total Customers": 609.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 17.61 }, "geometry": { "type": "Point", "coordinates": [ -75.227977, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj5-jqf", "LOCATION_NAME": "Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002083, "LONGITUDE": -75.132811, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 484.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.49, "MEDIAN_SPEND_PER_CUSTOMER": 28.49 }, "geometry": { "type": "Point", "coordinates": [ -75.132811, 40.002083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "LOCATION_NAME": "CB2", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2020, "Total Visits": 814.0, "Total Visitors": 524.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 30.0, "Total Spend": 15630.0, "Total Transactions": 89.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 38.67 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "LOCATION_NAME": "A Plus", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 185.0, "POI_CBG": 421010298005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5311.0, "Total Transactions": 248.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.6, "MEDIAN_SPEND_PER_CUSTOMER": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.931453, "LONGITUDE": -75.160518, "DATE_RANGE_START": 2020, "Total Visits": 1056.0, "Total Visitors": 597.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 9.0, "Total Spend": 19509.0, "Total Transactions": 988.0, "Total Customers": 466.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.73, "MEDIAN_SPEND_PER_CUSTOMER": 25.97 }, "geometry": { "type": "Point", "coordinates": [ -75.160518, 39.931453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmd-tvz", "LOCATION_NAME": "The Indie Shelf", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944748, "LONGITUDE": -75.180225, "DATE_RANGE_START": 2020, "Total Visits": 242.0, "Total Visitors": 183.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 975.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180225, 39.944748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2020, "Total Visits": 3809.0, "Total Visitors": 2813.0, "POI_CBG": 421010361002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6096.0, "Total Transactions": 314.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.912374, "LONGITUDE": -75.156918, "DATE_RANGE_START": 2020, "Total Visits": 2384.0, "Total Visitors": 1927.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2962.0, "Total Transactions": 85.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.99, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.156918, 39.912374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8j-bkz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.037321, "LONGITUDE": -75.040337, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 212.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 13.0, "Total Spend": 673.0, "Total Transactions": 67.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.17, "MEDIAN_SPEND_PER_CUSTOMER": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.040337, 40.037321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-pqf", "LOCATION_NAME": "Senoj Clothing", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.944292, "LONGITUDE": -75.169204, "DATE_RANGE_START": 2020, "Total Visits": 726.0, "Total Visitors": 381.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 140.0, "Total Spend": 196.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.44, "MEDIAN_SPEND_PER_CUSTOMER": 49.44 }, "geometry": { "type": "Point", "coordinates": [ -75.169204, 39.944292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "LOCATION_NAME": "Suit Corner", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 242.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1229.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 114.82, "MEDIAN_SPEND_PER_CUSTOMER": 114.82 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.037244, "LONGITUDE": -75.17465, "DATE_RANGE_START": 2020, "Total Visits": 333.0, "Total Visitors": 226.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 14242.0, "Total Transactions": 220.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.05, "MEDIAN_SPEND_PER_CUSTOMER": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.17465, 40.037244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.029597, "LONGITUDE": -75.145391, "DATE_RANGE_START": 2020, "Total Visits": 373.0, "Total Visitors": 250.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3406.0, "Total Transactions": 129.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.39, "MEDIAN_SPEND_PER_CUSTOMER": 21.29 }, "geometry": { "type": "Point", "coordinates": [ -75.145391, 40.029597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-6p9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046097, "LONGITUDE": -75.142598, "DATE_RANGE_START": 2020, "Total Visits": 599.0, "Total Visitors": 472.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2788.0, "Total Transactions": 163.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.97, "MEDIAN_SPEND_PER_CUSTOMER": 17.33 }, "geometry": { "type": "Point", "coordinates": [ -75.142598, 40.046097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-229@628-p85-hkf", "LOCATION_NAME": "Bluegrass Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.071403, "LONGITUDE": -75.030673, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 99.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 568.0, "Total Transactions": 18.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.16, "MEDIAN_SPEND_PER_CUSTOMER": 22.72 }, "geometry": { "type": "Point", "coordinates": [ -75.030673, 40.071403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-ysq", "LOCATION_NAME": "Kerrs Building Materials", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.9379, "LONGITUDE": -75.169536, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 91.0, "POI_CBG": 421010022001.0, "MEDIAN_DWELL": 337.0, "Total Spend": 259.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.25, "MEDIAN_SPEND_PER_CUSTOMER": 65.25 }, "geometry": { "type": "Point", "coordinates": [ -75.169536, 39.9379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-x89", "LOCATION_NAME": "Twin Smoke Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.929672, "LONGITUDE": -75.161301, "DATE_RANGE_START": 2020, "Total Visits": 294.0, "Total Visitors": 193.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 94.0, "Total Spend": 175.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.04, "MEDIAN_SPEND_PER_CUSTOMER": 11.04 }, "geometry": { "type": "Point", "coordinates": [ -75.161301, 39.929672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9519.0, "Total Transactions": 629.0, "Total Customers": 526.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.66, "MEDIAN_SPEND_PER_CUSTOMER": 14.19 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "LOCATION_NAME": "Peddler Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 26.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 1268.0, "Total Spend": 1767.0, "Total Transactions": 228.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-gzf", "LOCATION_NAME": "Bar X", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946786, "LONGITUDE": -75.161663, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 52.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 7406.0, "Total Transactions": 320.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161663, 39.946786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-whq", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949985, "LONGITUDE": -75.146017, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 56.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 111.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.77, "MEDIAN_SPEND_PER_CUSTOMER": 17.77 }, "geometry": { "type": "Point", "coordinates": [ -75.146017, 39.949985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "LOCATION_NAME": "South", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 52.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 192.0, "Total Spend": 4060.0, "Total Transactions": 119.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.6, "MEDIAN_SPEND_PER_CUSTOMER": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "LOCATION_NAME": "Wyndham", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952204, "LONGITUDE": -75.146959, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 234.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4536.0, "Total Transactions": 28.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 174.32, "MEDIAN_SPEND_PER_CUSTOMER": 220.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146959, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-sdv", "LOCATION_NAME": "Independence Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950376, "LONGITUDE": -75.15103, "DATE_RANGE_START": 2020, "Total Visits": 724.0, "Total Visitors": 552.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 73.0, "Total Spend": 8584.0, "Total Transactions": 480.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.83 }, "geometry": { "type": "Point", "coordinates": [ -75.15103, 39.950376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j9z", "LOCATION_NAME": "Rouge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949689, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 171.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 223.0, "Total Spend": 8535.0, "Total Transactions": 113.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.0, "MEDIAN_SPEND_PER_CUSTOMER": 55.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.949689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "LOCATION_NAME": "Georgian Bread Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2020, "Total Visits": 270.0, "Total Visitors": 224.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 551.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.27, "MEDIAN_SPEND_PER_CUSTOMER": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "LOCATION_NAME": "Sang Kee Noodle House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954847, "LONGITUDE": -75.193677, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 244.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 321.0, "Total Spend": 1693.0, "Total Transactions": 50.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.23, "MEDIAN_SPEND_PER_CUSTOMER": 32.29 }, "geometry": { "type": "Point", "coordinates": [ -75.193677, 39.954847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "LOCATION_NAME": "Spasso Italian Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2020, "Total Visits": 318.0, "Total Visitors": 282.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 5042.0, "Total Transactions": 67.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.03, "MEDIAN_SPEND_PER_CUSTOMER": 66.87 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942532, "LONGITUDE": -75.157241, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 202.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3017.0, "Total Transactions": 413.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.45, "MEDIAN_SPEND_PER_CUSTOMER": 7.24 }, "geometry": { "type": "Point", "coordinates": [ -75.157241, 39.942532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11923.0, "Total Transactions": 177.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.04, "MEDIAN_SPEND_PER_CUSTOMER": 61.04 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "LOCATION_NAME": "Secret Garden", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 40.051859, "LONGITUDE": -75.235556, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 50.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": 277.0, "Total Spend": 3934.0, "Total Transactions": 117.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.06, "MEDIAN_SPEND_PER_CUSTOMER": 30.22 }, "geometry": { "type": "Point", "coordinates": [ -75.235556, 40.051859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pjk-3nq", "LOCATION_NAME": "Pina's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069435, "LONGITUDE": -75.239981, "DATE_RANGE_START": 2020, "Total Visits": 405.0, "Total Visitors": 264.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 3164.0, "Total Transactions": 125.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.05, "MEDIAN_SPEND_PER_CUSTOMER": 24.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239981, 40.069435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951369, "LONGITUDE": -75.166562, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 145.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1422.0, "Total Transactions": 77.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.7, "MEDIAN_SPEND_PER_CUSTOMER": 17.21 }, "geometry": { "type": "Point", "coordinates": [ -75.166562, 39.951369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 272.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1616.0, "Total Transactions": 119.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.63, "MEDIAN_SPEND_PER_CUSTOMER": 14.96 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5fz", "LOCATION_NAME": "Cogito Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949868, "LONGITUDE": -75.160219, "DATE_RANGE_START": 2020, "Total Visits": 4127.0, "Total Visitors": 2549.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 268.0, "Total Transactions": 34.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.29 }, "geometry": { "type": "Point", "coordinates": [ -75.160219, 39.949868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "LOCATION_NAME": "Reyes Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.961179, "LONGITUDE": -75.244847, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010083011.0, "MEDIAN_DWELL": 213.0, "Total Spend": 727.0, "Total Transactions": 99.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -75.244847, 39.961179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgd-z9f", "LOCATION_NAME": "Pita Chip", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956634, "LONGITUDE": -75.194194, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 3449.0, "Total Transactions": 288.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 11.33 }, "geometry": { "type": "Point", "coordinates": [ -75.194194, 39.956634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-73q", "LOCATION_NAME": "Byrne's Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984147, "LONGITUDE": -75.098754, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 105.0, "POI_CBG": 421010378002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4514.0, "Total Transactions": 87.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.73, "MEDIAN_SPEND_PER_CUSTOMER": 47.04 }, "geometry": { "type": "Point", "coordinates": [ -75.098754, 39.984147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-jsq", "LOCATION_NAME": "Danny's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045112, "LONGITUDE": -75.117134, "DATE_RANGE_START": 2020, "Total Visits": 679.0, "Total Visitors": 449.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 6476.0, "Total Transactions": 149.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.0, "MEDIAN_SPEND_PER_CUSTOMER": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117134, 40.045112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgy-r6k", "LOCATION_NAME": "Hopkins Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.051828, "LONGITUDE": -75.236578, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010219001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 594.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.95, "MEDIAN_SPEND_PER_CUSTOMER": 10.73 }, "geometry": { "type": "Point", "coordinates": [ -75.236578, 40.051828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-s5z", "LOCATION_NAME": "Restaurant Depot", "TOP_CATEGORY": "Grocery and Related Product Merchant Wholesalers", "LATITUDE": 40.009243, "LONGITUDE": -75.177699, "DATE_RANGE_START": 2020, "Total Visits": 1927.0, "Total Visitors": 1006.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 413.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 103.95, "MEDIAN_SPEND_PER_CUSTOMER": 103.95 }, "geometry": { "type": "Point", "coordinates": [ -75.177699, 40.009243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "LOCATION_NAME": "East Coast Tropicals", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2020, "Total Visits": 139.0, "Total Visitors": 77.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5840.0, "Total Transactions": 40.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 147.58, "MEDIAN_SPEND_PER_CUSTOMER": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 169.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 828.0, "Total Transactions": 87.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.88, "MEDIAN_SPEND_PER_CUSTOMER": 10.57 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2020, "Total Visits": 468.0, "Total Visitors": 300.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1136.0, "Total Transactions": 48.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.73, "MEDIAN_SPEND_PER_CUSTOMER": 26.67 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967006, "LONGITUDE": -75.169701, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 302.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11427.0, "Total Transactions": 723.0, "Total Customers": 411.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.98, "MEDIAN_SPEND_PER_CUSTOMER": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169701, 39.967006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.031542, "LONGITUDE": -75.100256, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 193.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 6110.0, "Total Transactions": 99.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.85, "MEDIAN_SPEND_PER_CUSTOMER": 53.99 }, "geometry": { "type": "Point", "coordinates": [ -75.100256, 40.031542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmf-389", "LOCATION_NAME": "Ferguson", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.939235, "LONGITUDE": -75.174446, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 133.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6184.0, "Total Transactions": 42.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.35, "MEDIAN_SPEND_PER_CUSTOMER": 71.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.939235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "LOCATION_NAME": "Tandy Leather Factory", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.102565, "LONGITUDE": -75.008773, "DATE_RANGE_START": 2020, "Total Visits": 179.0, "Total Visitors": 159.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1367.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.77, "MEDIAN_SPEND_PER_CUSTOMER": 24.58 }, "geometry": { "type": "Point", "coordinates": [ -75.008773, 40.102565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tqf", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.926373, "LONGITUDE": -75.141555, "DATE_RANGE_START": 2020, "Total Visits": 10492.0, "Total Visitors": 6983.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 428024.0, "Total Transactions": 6427.0, "Total Customers": 4617.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.7, "MEDIAN_SPEND_PER_CUSTOMER": 56.47 }, "geometry": { "type": "Point", "coordinates": [ -75.141555, 39.926373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.0441, "LONGITUDE": -75.232794, "DATE_RANGE_START": 2020, "Total Visits": 1118.0, "Total Visitors": 742.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 198488.0, "Total Transactions": 4651.0, "Total Customers": 2739.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.67, "MEDIAN_SPEND_PER_CUSTOMER": 46.34 }, "geometry": { "type": "Point", "coordinates": [ -75.232794, 40.0441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "LOCATION_NAME": "IKEA", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.917106, "LONGITUDE": -75.141639, "DATE_RANGE_START": 2020, "Total Visits": 7898.0, "Total Visitors": 6659.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 614704.0, "Total Transactions": 3946.0, "Total Customers": 3025.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.1, "MEDIAN_SPEND_PER_CUSTOMER": 99.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141639, 39.917106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951643, "LONGITUDE": -75.17217, "DATE_RANGE_START": 2020, "Total Visits": 1185.0, "Total Visitors": 838.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 86335.0, "Total Transactions": 2882.0, "Total Customers": 1780.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.69, "MEDIAN_SPEND_PER_CUSTOMER": 31.23 }, "geometry": { "type": "Point", "coordinates": [ -75.17217, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25g-222@628-pm6-h89", "LOCATION_NAME": "Tony's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.91706, "LONGITUDE": -75.150829, "DATE_RANGE_START": 2020, "Total Visits": 409.0, "Total Visitors": 165.0, "POI_CBG": 421010042021.0, "MEDIAN_DWELL": 420.0, "Total Spend": 53.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 7.02 }, "geometry": { "type": "Point", "coordinates": [ -75.150829, 39.91706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-t9z", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947992, "LONGITUDE": -75.154441, "DATE_RANGE_START": 2020, "Total Visits": 1094.0, "Total Visitors": 762.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 53.0, "Total Spend": 984.0, "Total Transactions": 109.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.4, "MEDIAN_SPEND_PER_CUSTOMER": 10.16 }, "geometry": { "type": "Point", "coordinates": [ -75.154441, 39.947992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@63s-dw9-7nq", "LOCATION_NAME": "Jack Duggan's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.874756, "LONGITUDE": -75.24707, "DATE_RANGE_START": 2020, "Total Visits": 93781.0, "Total Visitors": 57624.0, "POI_CBG": 420459800001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 549.0, "Total Transactions": 24.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.84, "MEDIAN_SPEND_PER_CUSTOMER": 22.76 }, "geometry": { "type": "Point", "coordinates": [ -75.24707, 39.874756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004821, "LONGITUDE": -75.179811, "DATE_RANGE_START": 2020, "Total Visits": 361.0, "Total Visitors": 260.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7795.0, "Total Transactions": 734.0, "Total Customers": 586.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.7, "MEDIAN_SPEND_PER_CUSTOMER": 10.31 }, "geometry": { "type": "Point", "coordinates": [ -75.179811, 40.004821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-rx5", "LOCATION_NAME": "The Original Hot Dog Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949641, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 224.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 64.0, "Total Spend": 82.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.42, "MEDIAN_SPEND_PER_CUSTOMER": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-hnq", "LOCATION_NAME": "Stock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952182, "LONGITUDE": -75.173159, "DATE_RANGE_START": 2020, "Total Visits": 2900.0, "Total Visitors": 1669.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 85.0, "Total Spend": 33402.0, "Total Transactions": 143.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 186.53, "MEDIAN_SPEND_PER_CUSTOMER": 196.77 }, "geometry": { "type": "Point", "coordinates": [ -75.173159, 39.952182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2020, "Total Visits": 347.0, "Total Visitors": 228.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 66.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.05, "MEDIAN_SPEND_PER_CUSTOMER": 4.79 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2020, "Total Visits": 891.0, "Total Visitors": 649.0, "POI_CBG": 421010337022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8333.0, "Total Transactions": 351.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.57, "MEDIAN_SPEND_PER_CUSTOMER": 26.63 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgm-hwk", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.009599, "LONGITUDE": -75.196284, "DATE_RANGE_START": 2020, "Total Visits": 361.0, "Total Visitors": 322.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 701.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.75, "MEDIAN_SPEND_PER_CUSTOMER": 30.75 }, "geometry": { "type": "Point", "coordinates": [ -75.196284, 40.009599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-p7w-v4v", "LOCATION_NAME": "The Children's Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.047874, "LONGITUDE": -75.055616, "DATE_RANGE_START": 2020, "Total Visits": 244.0, "Total Visitors": 216.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 180.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.25, "MEDIAN_SPEND_PER_CUSTOMER": 45.25 }, "geometry": { "type": "Point", "coordinates": [ -75.055616, 40.047874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-zs5", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.941661, "LONGITUDE": -75.151237, "DATE_RANGE_START": 2020, "Total Visits": 887.0, "Total Visitors": 607.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 994.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.76, "MEDIAN_SPEND_PER_CUSTOMER": 35.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151237, 39.941661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wc5", "LOCATION_NAME": "Abunai Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949658, "LONGITUDE": -75.147567, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 224.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 64.0, "Total Spend": 588.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.51, "MEDIAN_SPEND_PER_CUSTOMER": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.147567, 39.949658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ygk", "LOCATION_NAME": "QT Vietnamese Sandwich", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953408, "LONGITUDE": -75.156559, "DATE_RANGE_START": 2020, "Total Visits": 476.0, "Total Visitors": 365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 317.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.2, "MEDIAN_SPEND_PER_CUSTOMER": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156559, 39.953408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "LOCATION_NAME": "Spice 28", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 87.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2065.0, "Total Transactions": 73.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.82, "MEDIAN_SPEND_PER_CUSTOMER": 26.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.990666, "LONGITUDE": -75.154886, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 105.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 14969.0, "Total Transactions": 383.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.13, "MEDIAN_SPEND_PER_CUSTOMER": 27.51 }, "geometry": { "type": "Point", "coordinates": [ -75.154886, 39.990666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2020, "Total Visits": 335.0, "Total Visitors": 226.0, "POI_CBG": 421010041013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 968.0, "Total Transactions": 81.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.66, "MEDIAN_SPEND_PER_CUSTOMER": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2020, "Total Visits": 1278.0, "Total Visitors": 923.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7680.0, "Total Transactions": 395.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043781, "LONGITUDE": -75.017638, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 216.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 784.0, "Total Transactions": 28.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.76, "MEDIAN_SPEND_PER_CUSTOMER": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.017638, 40.043781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.065575, "LONGITUDE": -75.072105, "DATE_RANGE_START": 2020, "Total Visits": 524.0, "Total Visitors": 316.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 887.0, "Total Transactions": 48.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.74, "MEDIAN_SPEND_PER_CUSTOMER": 21.73 }, "geometry": { "type": "Point", "coordinates": [ -75.072105, 40.065575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.055974, "LONGITUDE": -75.005102, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 216.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 5.0, "Total Spend": 441.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 19.39 }, "geometry": { "type": "Point", "coordinates": [ -75.005102, 40.055974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.063003, "LONGITUDE": -75.237723, "DATE_RANGE_START": 2020, "Total Visits": 326.0, "Total Visitors": 218.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 28831.0, "Total Transactions": 592.0, "Total Customers": 488.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.58, "MEDIAN_SPEND_PER_CUSTOMER": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 40.063003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.100724, "LONGITUDE": -75.010588, "DATE_RANGE_START": 2020, "Total Visits": 792.0, "Total Visitors": 607.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5940.0, "Total Transactions": 133.0, "Total Customers": 121.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.99, "MEDIAN_SPEND_PER_CUSTOMER": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.010588, 40.100724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6zf", "LOCATION_NAME": "Royal Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.085942, "LONGITUDE": -74.962636, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 81.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 47.0, "Total Spend": 504.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -74.962636, 40.085942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "LOCATION_NAME": "Gallelli Formal Wear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 161.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1389.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 130.0, "MEDIAN_SPEND_PER_CUSTOMER": 155.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phc-pd9", "LOCATION_NAME": "Bala Inn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.000031, "LONGITUDE": -75.228413, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 181.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 102.0, "Total Spend": 431.0, "Total Transactions": 18.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228413, 40.000031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgd-zfz", "LOCATION_NAME": "Ramen Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957167, "LONGITUDE": -75.192099, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 12.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 652.0, "Total Spend": 1439.0, "Total Transactions": 30.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.7, "MEDIAN_SPEND_PER_CUSTOMER": 33.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192099, 39.957167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "LOCATION_NAME": "Brauhaus Schmitz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942007, "LONGITUDE": -75.154702, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 99.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 10891.0, "Total Transactions": 173.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.02, "MEDIAN_SPEND_PER_CUSTOMER": 63.24 }, "geometry": { "type": "Point", "coordinates": [ -75.154702, 39.942007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-p7v-gff", "LOCATION_NAME": "Pupuseria y Taqueria Sabor Latino", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052618, "LONGITUDE": -75.068059, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 93.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 99.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.06, "MEDIAN_SPEND_PER_CUSTOMER": 25.06 }, "geometry": { "type": "Point", "coordinates": [ -75.068059, 40.052618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081002, "LONGITUDE": -75.170911, "DATE_RANGE_START": 2020, "Total Visits": 470.0, "Total Visitors": 379.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 12125.0, "Total Transactions": 760.0, "Total Customers": 613.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 14.98 }, "geometry": { "type": "Point", "coordinates": [ -75.170911, 40.081002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992778, "LONGITUDE": -75.097644, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 230.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7875.0, "Total Transactions": 455.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.097644, 39.992778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-ht9", "LOCATION_NAME": "Marc Rossi Auto Sales", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.003612, "LONGITUDE": -75.099938, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 43986.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 8900.0, "MEDIAN_SPEND_PER_CUSTOMER": 8900.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099938, 40.003612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2020, "Total Visits": 520.0, "Total Visitors": 324.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8121.0, "Total Transactions": 1129.0, "Total Customers": 417.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 9.15 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-xdv", "LOCATION_NAME": "Tiffin", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970151, "LONGITUDE": -75.148856, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 62.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 366.0, "Total Spend": 6250.0, "Total Transactions": 129.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.74, "MEDIAN_SPEND_PER_CUSTOMER": 48.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148856, 39.970151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-54v", "LOCATION_NAME": "United Fried Chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039073, "LONGITUDE": -75.143922, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 66.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 944.0, "Total Transactions": 77.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.3, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.143922, 40.039073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052422, "LONGITUDE": -75.00877, "DATE_RANGE_START": 2020, "Total Visits": 560.0, "Total Visitors": 468.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 18154.0, "Total Transactions": 385.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.05, "MEDIAN_SPEND_PER_CUSTOMER": 43.71 }, "geometry": { "type": "Point", "coordinates": [ -75.00877, 40.052422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phq-k75", "LOCATION_NAME": "Rodriguez Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.057192, "LONGITUDE": -75.148867, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 103.0, "POI_CBG": 421010267007.0, "MEDIAN_DWELL": 4.0, "Total Spend": 488.0, "Total Transactions": 54.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148867, 40.057192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "LOCATION_NAME": "Girard Meat Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.972943, "LONGITUDE": -75.217427, "DATE_RANGE_START": 2020, "Total Visits": 643.0, "Total Visitors": 520.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5510.0, "Total Transactions": 135.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 34.95 }, "geometry": { "type": "Point", "coordinates": [ -75.217427, 39.972943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "LOCATION_NAME": "Northeast Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 131.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 301.0, "Total Spend": 6553.0, "Total Transactions": 204.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-435", "LOCATION_NAME": "State Liquor Stores", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.920248, "LONGITUDE": -75.188384, "DATE_RANGE_START": 2020, "Total Visits": 1022.0, "Total Visitors": 772.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 594.0, "Total Transactions": 18.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 69.08 }, "geometry": { "type": "Point", "coordinates": [ -75.188384, 39.920248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8j-bp9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.035986, "LONGITUDE": -75.039532, "DATE_RANGE_START": 2020, "Total Visits": 429.0, "Total Visitors": 272.0, "POI_CBG": 421010330006.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5466.0, "Total Transactions": 200.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.96, "MEDIAN_SPEND_PER_CUSTOMER": 28.4 }, "geometry": { "type": "Point", "coordinates": [ -75.039532, 40.035986 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jsq", "LOCATION_NAME": "Patient Care Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.936332, "LONGITUDE": -75.157296, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 81.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 22.0, "Total Spend": 371.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.82, "MEDIAN_SPEND_PER_CUSTOMER": 41.82 }, "geometry": { "type": "Point", "coordinates": [ -75.157296, 39.936332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 79.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14660.0, "Total Transactions": 863.0, "Total Customers": 447.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951447, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2020, "Total Visits": 786.0, "Total Visitors": 566.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 12184.0, "Total Transactions": 633.0, "Total Customers": 343.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.951447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p86-hbk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.075694, "LONGITUDE": -75.084798, "DATE_RANGE_START": 2020, "Total Visits": 347.0, "Total Visitors": 240.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2428.0, "Total Transactions": 119.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.7, "MEDIAN_SPEND_PER_CUSTOMER": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084798, 40.075694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pjk-3bk", "LOCATION_NAME": "Posh", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.068847, "LONGITUDE": -75.240209, "DATE_RANGE_START": 2020, "Total Visits": 288.0, "Total Visitors": 218.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2198.0, "Total Transactions": 46.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.0, "MEDIAN_SPEND_PER_CUSTOMER": 43.48 }, "geometry": { "type": "Point", "coordinates": [ -75.240209, 40.068847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.087401, "LONGITUDE": -74.970519, "DATE_RANGE_START": 2020, "Total Visits": 1489.0, "Total Visitors": 1080.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1290.0, "Total Transactions": 54.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.73, "MEDIAN_SPEND_PER_CUSTOMER": 25.54 }, "geometry": { "type": "Point", "coordinates": [ -74.970519, 40.087401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 230.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10314.0, "Total Transactions": 717.0, "Total Customers": 534.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 15.97 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2020, "Total Visits": 1141.0, "Total Visitors": 875.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 16034.0, "Total Transactions": 417.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.29, "MEDIAN_SPEND_PER_CUSTOMER": 38.92 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "LOCATION_NAME": "Stanley's Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2020, "Total Visits": 854.0, "Total Visitors": 619.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 104223.0, "Total Transactions": 2517.0, "Total Customers": 1590.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.96, "MEDIAN_SPEND_PER_CUSTOMER": 35.58 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955218, "LONGITUDE": -75.155815, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 91.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 351.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.95, "MEDIAN_SPEND_PER_CUSTOMER": 40.95 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 39.955218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-6hq", "LOCATION_NAME": "Wrap Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949717, "LONGITUDE": -75.158951, "DATE_RANGE_START": 2020, "Total Visits": 258.0, "Total Visitors": 198.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3765.0, "Total Transactions": 91.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.53, "MEDIAN_SPEND_PER_CUSTOMER": 42.29 }, "geometry": { "type": "Point", "coordinates": [ -75.158951, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 191.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6870.0, "Total Transactions": 457.0, "Total Customers": 369.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 14.89 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2020, "Total Visits": 407.0, "Total Visitors": 347.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1095.0, "Total Transactions": 67.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.9, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "LOCATION_NAME": "Park Manor Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 161.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 365.0, "Total Spend": 5856.0, "Total Transactions": 453.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.91, "MEDIAN_SPEND_PER_CUSTOMER": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-yd9", "LOCATION_NAME": "C & R Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.938173, "LONGITUDE": -75.170563, "DATE_RANGE_START": 2020, "Total Visits": 836.0, "Total Visitors": 441.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 72.0, "Total Spend": 8516.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 107.57, "MEDIAN_SPEND_PER_CUSTOMER": 253.53 }, "geometry": { "type": "Point", "coordinates": [ -75.170563, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-hdv", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009459, "LONGITUDE": -75.174254, "DATE_RANGE_START": 2020, "Total Visits": 4601.0, "Total Visitors": 2481.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2548.0, "Total Transactions": 30.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.08, "MEDIAN_SPEND_PER_CUSTOMER": 109.36 }, "geometry": { "type": "Point", "coordinates": [ -75.174254, 40.009459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-v4v", "LOCATION_NAME": "Olde City Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949709, "LONGITUDE": -75.144055, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 69.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 564.0, "Total Transactions": 38.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.62 }, "geometry": { "type": "Point", "coordinates": [ -75.144055, 39.949709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.878244, "LONGITUDE": -75.24235, "DATE_RANGE_START": 2020, "Total Visits": 21350.0, "Total Visitors": 16814.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 4540.0, "Total Transactions": 326.0, "Total Customers": 314.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.38, "MEDIAN_SPEND_PER_CUSTOMER": 12.65 }, "geometry": { "type": "Point", "coordinates": [ -75.24235, 39.878244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055662, "LONGITUDE": -75.049241, "DATE_RANGE_START": 2020, "Total Visits": 2439.0, "Total Visitors": 1649.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 67007.0, "Total Transactions": 4156.0, "Total Customers": 2195.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.77, "MEDIAN_SPEND_PER_CUSTOMER": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -75.049241, 40.055662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp5-7wk", "LOCATION_NAME": "Friendly Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.984702, "LONGITUDE": -75.132436, "DATE_RANGE_START": 2020, "Total Visits": 6816.0, "Total Visitors": 2795.0, "POI_CBG": 421010162001.0, "MEDIAN_DWELL": 154.0, "Total Spend": 20.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132436, 39.984702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2020, "Total Visits": 1098.0, "Total Visitors": 734.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9622.0, "Total Transactions": 562.0, "Total Customers": 367.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "LOCATION_NAME": "Nike Factory Store", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 91.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 124.0, "Total Spend": 52787.0, "Total Transactions": 572.0, "Total Customers": 462.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.97, "MEDIAN_SPEND_PER_CUSTOMER": 80.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-t7q", "LOCATION_NAME": "TNS Diamonds", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.94842, "LONGITUDE": -75.154396, "DATE_RANGE_START": 2020, "Total Visits": 1665.0, "Total Visitors": 1229.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 189.0, "Total Spend": 9043.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.4, "MEDIAN_SPEND_PER_CUSTOMER": 97.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154396, 39.94842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012134, "LONGITUDE": -75.088896, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 83.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 598.0, "Total Transactions": 58.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.51 }, "geometry": { "type": "Point", "coordinates": [ -75.088896, 40.012134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj8-hwk", "LOCATION_NAME": "Oxford Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.019429, "LONGITUDE": -75.084382, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010301002.0, "MEDIAN_DWELL": 95.0, "Total Spend": 2569.0, "Total Transactions": 64.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.28, "MEDIAN_SPEND_PER_CUSTOMER": 33.19 }, "geometry": { "type": "Point", "coordinates": [ -75.084382, 40.019429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pgg-j7q", "LOCATION_NAME": "B & R Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.994344, "LONGITUDE": -75.169339, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010168005.0, "MEDIAN_DWELL": null, "Total Spend": 203.0, "Total Transactions": 20.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.29, "MEDIAN_SPEND_PER_CUSTOMER": 27.79 }, "geometry": { "type": "Point", "coordinates": [ -75.169339, 39.994344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.952664, "LONGITUDE": -75.15622, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 539.0, "Total Spend": 721.0, "Total Transactions": 58.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.06, "MEDIAN_SPEND_PER_CUSTOMER": 5.28 }, "geometry": { "type": "Point", "coordinates": [ -75.15622, 39.952664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p8j-94v", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034583, "LONGITUDE": -75.044102, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 94.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.044102, 40.034583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-hwk", "LOCATION_NAME": "Mr Bar Stool", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.953666, "LONGITUDE": -75.142763, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1007.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 253.7, "MEDIAN_SPEND_PER_CUSTOMER": 253.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142763, 39.953666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.025431, "LONGITUDE": -75.223871, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 34.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 12837.0, "Total Transactions": 437.0, "Total Customers": 262.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.2, "MEDIAN_SPEND_PER_CUSTOMER": 21.78 }, "geometry": { "type": "Point", "coordinates": [ -75.223871, 40.025431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnt-tgk", "LOCATION_NAME": "Hinge Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979226, "LONGITUDE": -75.112172, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010180011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1407.0, "Total Transactions": 62.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.2, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.112172, 39.979226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dwg-f75", "LOCATION_NAME": "Aya's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915076, "LONGITUDE": -75.240053, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": null, "Total Spend": 1339.0, "Total Transactions": 36.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.1, "MEDIAN_SPEND_PER_CUSTOMER": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.240053, 39.915076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 28753.0, "Total Transactions": 401.0, "Total Customers": 361.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.86, "MEDIAN_SPEND_PER_CUSTOMER": 68.58 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.058164, "LONGITUDE": -75.052414, "DATE_RANGE_START": 2020, "Total Visits": 488.0, "Total Visitors": 383.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3325.0, "Total Transactions": 149.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.82 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.058164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-vxq", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055747, "LONGITUDE": -75.073256, "DATE_RANGE_START": 2020, "Total Visits": 504.0, "Total Visitors": 423.0, "POI_CBG": 421010338002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 320.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073256, 40.055747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-9fz", "LOCATION_NAME": "D M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979141, "LONGITUDE": -75.171311, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 48.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 289.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.19, "MEDIAN_SPEND_PER_CUSTOMER": 20.17 }, "geometry": { "type": "Point", "coordinates": [ -75.171311, 39.979141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-nwk", "LOCATION_NAME": "Centro Musical", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.991818, "LONGITUDE": -75.139984, "DATE_RANGE_START": 2020, "Total Visits": 657.0, "Total Visitors": 429.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 86.0, "Total Spend": 1074.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 143.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 39.991818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2020, "Total Visits": 1649.0, "Total Visitors": 1141.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1892.0, "Total Transactions": 75.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.76, "MEDIAN_SPEND_PER_CUSTOMER": 30.99 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-b8v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.934826, "LONGITUDE": -75.178911, "DATE_RANGE_START": 2020, "Total Visits": 234.0, "Total Visitors": 167.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1960.0, "Total Transactions": 167.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.62, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178911, 39.934826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.035295, "LONGITUDE": -75.065039, "DATE_RANGE_START": 2020, "Total Visits": 494.0, "Total Visitors": 413.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1507.0, "Total Transactions": 60.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.24, "MEDIAN_SPEND_PER_CUSTOMER": 22.41 }, "geometry": { "type": "Point", "coordinates": [ -75.065039, 40.035295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmf-s3q", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944594, "LONGITUDE": -75.171766, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 58.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3883.0, "Total Transactions": 417.0, "Total Customers": 288.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.27, "MEDIAN_SPEND_PER_CUSTOMER": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171766, 39.944594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "LOCATION_NAME": "John's Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 18.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 361.0, "Total Transactions": 28.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.64, "MEDIAN_SPEND_PER_CUSTOMER": 21.41 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj6-bx5", "LOCATION_NAME": "Nam Vang Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037327, "LONGITUDE": -75.108009, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 46.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 397.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.23, "MEDIAN_SPEND_PER_CUSTOMER": 42.23 }, "geometry": { "type": "Point", "coordinates": [ -75.108009, 40.037327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": null, "Total Spend": 40.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.03, "MEDIAN_SPEND_PER_CUSTOMER": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2020, "Total Visits": 484.0, "Total Visitors": 379.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6915.0, "Total Transactions": 367.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.98, "MEDIAN_SPEND_PER_CUSTOMER": 19.37 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9w-sbk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.124225, "LONGITUDE": -75.015653, "DATE_RANGE_START": 2020, "Total Visits": 1753.0, "Total Visitors": 1241.0, "POI_CBG": 421010365013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4994.0, "Total Transactions": 191.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.62, "MEDIAN_SPEND_PER_CUSTOMER": 29.02 }, "geometry": { "type": "Point", "coordinates": [ -75.015653, 40.124225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-x89", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030078, "LONGITUDE": -75.146229, "DATE_RANGE_START": 2020, "Total Visits": 3142.0, "Total Visitors": 1931.0, "POI_CBG": 421010282001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 484.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.18 }, "geometry": { "type": "Point", "coordinates": [ -75.146229, 40.030078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pp5-k4v", "LOCATION_NAME": "Ho Le Chan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987263, "LONGITUDE": -75.109046, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 324.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109046, 39.987263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pnx-sh5", "LOCATION_NAME": "The International", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.974951, "LONGITUDE": -75.134534, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": null, "Total Spend": 4473.0, "Total Transactions": 153.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134534, 39.974951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.069743, "LONGITUDE": -75.051689, "DATE_RANGE_START": 2020, "Total Visits": 482.0, "Total Visitors": 373.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 845.0, "Total Transactions": 89.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.051689, 40.069743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.915644, "LONGITUDE": -75.139656, "DATE_RANGE_START": 2020, "Total Visits": 744.0, "Total Visitors": 582.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3281.0, "Total Transactions": 240.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.48, "MEDIAN_SPEND_PER_CUSTOMER": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.139656, 39.915644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.912527, "LONGITUDE": -75.154627, "DATE_RANGE_START": 2020, "Total Visits": 288.0, "Total Visitors": 244.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2768.0, "Total Transactions": 56.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.94, "MEDIAN_SPEND_PER_CUSTOMER": 36.65 }, "geometry": { "type": "Point", "coordinates": [ -75.154627, 39.912527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-8y9", "LOCATION_NAME": "The Pharmacy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934901, "LONGITUDE": -75.174223, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 32.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1971.0, "Total Transactions": 56.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.65, "MEDIAN_SPEND_PER_CUSTOMER": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174223, 39.934901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "LOCATION_NAME": "My Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945111, "LONGITUDE": -75.178763, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 664.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.9, "MEDIAN_SPEND_PER_CUSTOMER": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178763, 39.945111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-mx5", "LOCATION_NAME": "Real Food Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952907, "LONGITUDE": -75.169077, "DATE_RANGE_START": 2020, "Total Visits": 2388.0, "Total Visitors": 1348.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 189.0, "Total Spend": 781.0, "Total Transactions": 66.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169077, 39.952907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "LOCATION_NAME": "Big Ben Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 62.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8276.0, "Total Transactions": 318.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.74, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "LOCATION_NAME": "Javies Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.034848, "LONGITUDE": -75.234562, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 175.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 67412.0, "Total Transactions": 1945.0, "Total Customers": 1151.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.25, "MEDIAN_SPEND_PER_CUSTOMER": 38.09 }, "geometry": { "type": "Point", "coordinates": [ -75.234562, 40.034848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "LOCATION_NAME": "Beer Love", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 135.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3074.0, "Total Transactions": 109.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.15, "MEDIAN_SPEND_PER_CUSTOMER": 28.58 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2020, "Total Visits": 570.0, "Total Visitors": 379.0, "POI_CBG": 421010320003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2382.0, "Total Transactions": 87.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.095101, "LONGITUDE": -74.975911, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 183.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9046.0, "Total Transactions": 314.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.13, "MEDIAN_SPEND_PER_CUSTOMER": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -74.975911, 40.095101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "LOCATION_NAME": "Cafe Old Nelson", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954761, "LONGITUDE": -75.164691, "DATE_RANGE_START": 2020, "Total Visits": 151.0, "Total Visitors": 101.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 1034.0, "Total Transactions": 105.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.48, "MEDIAN_SPEND_PER_CUSTOMER": 10.05 }, "geometry": { "type": "Point", "coordinates": [ -75.164691, 39.954761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-ks5", "LOCATION_NAME": "Zama", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950901, "LONGITUDE": -75.172392, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 165.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 615.0, "Total Spend": 12569.0, "Total Transactions": 191.0, "Total Customers": 161.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.4, "MEDIAN_SPEND_PER_CUSTOMER": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172392, 39.950901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgj-2ff", "LOCATION_NAME": "Pita & Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979339, "LONGITUDE": -75.155043, "DATE_RANGE_START": 2020, "Total Visits": 343.0, "Total Visitors": 222.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 73.0, "Total Spend": 1435.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.0, "MEDIAN_SPEND_PER_CUSTOMER": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155043, 39.979339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj7-5fz", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043629, "LONGITUDE": -75.102849, "DATE_RANGE_START": 2020, "Total Visits": 399.0, "Total Visitors": 270.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 8.0, "Total Spend": 848.0, "Total Transactions": 79.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.01, "MEDIAN_SPEND_PER_CUSTOMER": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.102849, 40.043629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "LOCATION_NAME": "Hair Fashion & Beyond", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978135, "LONGITUDE": -75.158545, "DATE_RANGE_START": 2020, "Total Visits": 639.0, "Total Visitors": 556.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6251.0, "Total Transactions": 181.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.88, "MEDIAN_SPEND_PER_CUSTOMER": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.158545, 39.978135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-g8v", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.06232, "LONGITUDE": -75.152136, "DATE_RANGE_START": 2020, "Total Visits": 431.0, "Total Visitors": 337.0, "POI_CBG": 421010265001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7005.0, "Total Transactions": 183.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.27, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152136, 40.06232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2020, "Total Visits": 242.0, "Total Visitors": 155.0, "POI_CBG": 421010215001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 9629.0, "Total Transactions": 308.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.945629, "LONGITUDE": -75.237997, "DATE_RANGE_START": 2020, "Total Visits": 387.0, "Total Visitors": 282.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 10.0, "Total Spend": 14042.0, "Total Transactions": 337.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 30.76 }, "geometry": { "type": "Point", "coordinates": [ -75.237997, 39.945629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "LOCATION_NAME": "Harbor Freight Tools", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2020, "Total Visits": 1215.0, "Total Visitors": 1064.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 53770.0, "Total Transactions": 740.0, "Total Customers": 595.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.37, "MEDIAN_SPEND_PER_CUSTOMER": 44.35 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmb-7yv", "LOCATION_NAME": "John Yi Fish Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953479, "LONGITUDE": -75.159041, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 3738.0, "Total Transactions": 107.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.92, "MEDIAN_SPEND_PER_CUSTOMER": 27.85 }, "geometry": { "type": "Point", "coordinates": [ -75.159041, 39.953479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@63s-dvv-rx5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923209, "LONGITUDE": -75.238375, "DATE_RANGE_START": 2020, "Total Visits": 447.0, "Total Visitors": 328.0, "POI_CBG": 421010063003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1751.0, "Total Transactions": 95.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.57, "MEDIAN_SPEND_PER_CUSTOMER": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.238375, 39.923209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034612, "LONGITUDE": -75.175438, "DATE_RANGE_START": 2020, "Total Visits": 2652.0, "Total Visitors": 1602.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1701.0, "Total Transactions": 206.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.66, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.175438, 40.034612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.96694, "LONGITUDE": -75.233446, "DATE_RANGE_START": 2020, "Total Visits": 445.0, "Total Visitors": 383.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1738.0, "Total Transactions": 143.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.83, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.233446, 39.96694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-wx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950748, "LONGITUDE": -75.151909, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 161.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1897.0, "Total Transactions": 373.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.4, "MEDIAN_SPEND_PER_CUSTOMER": 9.78 }, "geometry": { "type": "Point", "coordinates": [ -75.151909, 39.950748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 262.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5530.0, "Total Transactions": 711.0, "Total Customers": 353.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.39, "MEDIAN_SPEND_PER_CUSTOMER": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2020, "Total Visits": 629.0, "Total Visitors": 365.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 36.0, "Total Spend": 8194.0, "Total Transactions": 1207.0, "Total Customers": 480.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-zxq", "LOCATION_NAME": "Federal Donuts South Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94181, "LONGITUDE": -75.152224, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 81.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1977.0, "Total Transactions": 169.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.152224, 39.94181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2020, "Total Visits": 1201.0, "Total Visitors": 834.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9439.0, "Total Transactions": 1254.0, "Total Customers": 667.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.34, "MEDIAN_SPEND_PER_CUSTOMER": 8.72 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmd-w49", "LOCATION_NAME": "Cook", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.94873, "LONGITUDE": -75.174113, "DATE_RANGE_START": 2020, "Total Visits": 1177.0, "Total Visitors": 572.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 200.0, "Total Spend": 1104.0, "Total Transactions": 30.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.98, "MEDIAN_SPEND_PER_CUSTOMER": 41.85 }, "geometry": { "type": "Point", "coordinates": [ -75.174113, 39.94873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949907, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 240.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1703.0, "Total Transactions": 151.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.34, "MEDIAN_SPEND_PER_CUSTOMER": 5.58 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.949907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.095744, "LONGITUDE": -74.976099, "DATE_RANGE_START": 2020, "Total Visits": 1445.0, "Total Visitors": 915.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 92299.0, "Total Transactions": 6074.0, "Total Customers": 2142.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.69, "MEDIAN_SPEND_PER_CUSTOMER": 24.66 }, "geometry": { "type": "Point", "coordinates": [ -74.976099, 40.095744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pgb-nh5", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.969197, "LONGITUDE": -75.159372, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 268.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 185.0, "Total Spend": 2827.0, "Total Transactions": 40.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.61, "MEDIAN_SPEND_PER_CUSTOMER": 55.87 }, "geometry": { "type": "Point", "coordinates": [ -75.159372, 39.969197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qcq", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039147, "LONGITUDE": -75.118804, "DATE_RANGE_START": 2020, "Total Visits": 3487.0, "Total Visitors": 1975.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 2177.0, "Total Transactions": 22.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.56, "MEDIAN_SPEND_PER_CUSTOMER": 31.16 }, "geometry": { "type": "Point", "coordinates": [ -75.118804, 40.039147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "LOCATION_NAME": "Medical Tower Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.948045, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2020, "Total Visits": 1030.0, "Total Visitors": 659.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 113.0, "Total Spend": 1796.0, "Total Transactions": 66.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.22, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.948045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.936229, "LONGITUDE": -75.194533, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 81.0, "POI_CBG": 421010033006.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1774.0, "Total Transactions": 73.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.7, "MEDIAN_SPEND_PER_CUSTOMER": 21.14 }, "geometry": { "type": "Point", "coordinates": [ -75.194533, 39.936229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.061568, "LONGITUDE": -75.05681, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 198.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2085.0, "Total Transactions": 95.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 20.85 }, "geometry": { "type": "Point", "coordinates": [ -75.05681, 40.061568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032503, "LONGITUDE": -75.08527, "DATE_RANGE_START": 2020, "Total Visits": 1606.0, "Total Visitors": 1137.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 706.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.08, "MEDIAN_SPEND_PER_CUSTOMER": 20.16 }, "geometry": { "type": "Point", "coordinates": [ -75.08527, 40.032503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951061, "LONGITUDE": -75.168264, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 103.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 412.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.56, "MEDIAN_SPEND_PER_CUSTOMER": 27.38 }, "geometry": { "type": "Point", "coordinates": [ -75.168264, 39.951061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pmf-j35", "LOCATION_NAME": "Head Start Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950646, "LONGITUDE": -75.169071, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 91.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1476.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 371.75, "MEDIAN_SPEND_PER_CUSTOMER": 371.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 39.950646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5s5", "LOCATION_NAME": "ROOST East Market", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951349, "LONGITUDE": -75.159655, "DATE_RANGE_START": 2020, "Total Visits": 1999.0, "Total Visitors": 1227.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 148.0, "Total Spend": 3934.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 642.01, "MEDIAN_SPEND_PER_CUSTOMER": 642.01 }, "geometry": { "type": "Point", "coordinates": [ -75.159655, 39.951349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dtm-v75", "LOCATION_NAME": "Delta Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.873088, "LONGITUDE": -75.27466, "DATE_RANGE_START": 2020, "Total Visits": 1163.0, "Total Visitors": 786.0, "POI_CBG": 420454037012.0, "MEDIAN_DWELL": 414.0, "Total Spend": 6991.0, "Total Transactions": 34.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27466, 39.873088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "LOCATION_NAME": "Thai Kuu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 89.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3942.0, "Total Transactions": 89.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.16, "MEDIAN_SPEND_PER_CUSTOMER": 52.44 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044629, "LONGITUDE": -75.142895, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 423.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3037.0, "Total Transactions": 244.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.4, "MEDIAN_SPEND_PER_CUSTOMER": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.142895, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-vxq", "LOCATION_NAME": "Jersey Mike's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955112, "LONGITUDE": -75.18233, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 200.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 4060.0, "Total Transactions": 310.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.64, "MEDIAN_SPEND_PER_CUSTOMER": 12.73 }, "geometry": { "type": "Point", "coordinates": [ -75.18233, 39.955112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019964, "LONGITUDE": -75.174488, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 163.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2692.0, "Total Transactions": 437.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.174488, 40.019964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "LOCATION_NAME": "Heng Fa Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2020, "Total Visits": 373.0, "Total Visitors": 260.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 39738.0, "Total Transactions": 752.0, "Total Customers": 522.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.93, "MEDIAN_SPEND_PER_CUSTOMER": 25.39 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2020, "Total Visits": 641.0, "Total Visitors": 461.0, "POI_CBG": 421010311013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1803.0, "Total Transactions": 69.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 21.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg4-bx5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.042838, "LONGITUDE": -75.179833, "DATE_RANGE_START": 2020, "Total Visits": 365.0, "Total Visitors": 242.0, "POI_CBG": 421010252002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3146.0, "Total Transactions": 141.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 25.35 }, "geometry": { "type": "Point", "coordinates": [ -75.179833, 40.042838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2020, "Total Visits": 1338.0, "Total Visitors": 885.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 3847.0, "Total Transactions": 202.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.63, "MEDIAN_SPEND_PER_CUSTOMER": 18.44 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-6tv", "LOCATION_NAME": "Allen Tire & Service", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.048405, "LONGITUDE": -75.096529, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": null, "Total Spend": 2710.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 129.5, "MEDIAN_SPEND_PER_CUSTOMER": 129.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096529, 40.048405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pp4-vfz", "LOCATION_NAME": "Franco's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982045, "LONGITUDE": -75.121584, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 14.0, "POI_CBG": 421010160004.0, "MEDIAN_DWELL": 141.0, "Total Spend": 3542.0, "Total Transactions": 129.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.3, "MEDIAN_SPEND_PER_CUSTOMER": 33.38 }, "geometry": { "type": "Point", "coordinates": [ -75.121584, 39.982045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "LOCATION_NAME": "Reggae Reggae Vibes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010144003.0, "MEDIAN_DWELL": 49.0, "Total Spend": 2229.0, "Total Transactions": 129.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "LOCATION_NAME": "Monk's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 105.0, "Total Spend": 8533.0, "Total Transactions": 167.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.14, "MEDIAN_SPEND_PER_CUSTOMER": 37.56 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.052515, "LONGITUDE": -75.058505, "DATE_RANGE_START": 2020, "Total Visits": 909.0, "Total Visitors": 734.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5227.0, "Total Transactions": 133.0, "Total Customers": 123.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.47, "MEDIAN_SPEND_PER_CUSTOMER": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.058505, 40.052515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj6-99f", "LOCATION_NAME": "Red Wine Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033146, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 38.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 500.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.69, "MEDIAN_SPEND_PER_CUSTOMER": 56.69 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.033146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "LOCATION_NAME": "The Bayou Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 5740.0, "Total Transactions": 197.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.4, "MEDIAN_SPEND_PER_CUSTOMER": 26.85 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "LOCATION_NAME": "Pickwick Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952852, "LONGITUDE": -75.169574, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 44.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1513.0, "Total Transactions": 60.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.66, "MEDIAN_SPEND_PER_CUSTOMER": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169574, 39.952852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pfz-bhq", "LOCATION_NAME": "Valerio Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025342, "LONGITUDE": -75.222719, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 46.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 2988.0, "Total Transactions": 276.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 11.02 }, "geometry": { "type": "Point", "coordinates": [ -75.222719, 40.025342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.925864, "LONGITUDE": -75.142894, "DATE_RANGE_START": 2020, "Total Visits": 5887.0, "Total Visitors": 4083.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 212101.0, "Total Transactions": 2100.0, "Total Customers": 1431.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.74, "MEDIAN_SPEND_PER_CUSTOMER": 56.02 }, "geometry": { "type": "Point", "coordinates": [ -75.142894, 39.925864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.954271, "LONGITUDE": -75.167991, "DATE_RANGE_START": 2020, "Total Visits": 2549.0, "Total Visitors": 1453.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 252.0, "Total Spend": 5272.0, "Total Transactions": 173.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 14.78 }, "geometry": { "type": "Point", "coordinates": [ -75.167991, 39.954271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8n5", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951999, "LONGITUDE": -75.157711, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 24766.0, "Total Transactions": 480.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.26, "MEDIAN_SPEND_PER_CUSTOMER": 42.64 }, "geometry": { "type": "Point", "coordinates": [ -75.157711, 39.951999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951608, "LONGITUDE": -75.168943, "DATE_RANGE_START": 2020, "Total Visits": 619.0, "Total Visitors": 554.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 766.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168943, 39.951608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.074942, "LONGITUDE": -75.035038, "DATE_RANGE_START": 2020, "Total Visits": 2168.0, "Total Visitors": 1461.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1432.0, "Total Transactions": 66.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.21 }, "geometry": { "type": "Point", "coordinates": [ -75.035038, 40.074942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "LOCATION_NAME": "East Falls Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010170001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 19851.0, "Total Transactions": 651.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.45, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-7h5", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.964803, "LONGITUDE": -75.14238, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 304.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 404.0, "Total Spend": 4567.0, "Total Transactions": 91.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 42.08 }, "geometry": { "type": "Point", "coordinates": [ -75.14238, 39.964803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "LOCATION_NAME": "Venu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911404, "LONGITUDE": -75.170366, "DATE_RANGE_START": 2020, "Total Visits": 2064.0, "Total Visitors": 1665.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 16755.0, "Total Transactions": 538.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.73, "MEDIAN_SPEND_PER_CUSTOMER": 32.56 }, "geometry": { "type": "Point", "coordinates": [ -75.170366, 39.911404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032189, "LONGITUDE": -75.214079, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 133.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 82.0, "Total Spend": 8580.0, "Total Transactions": 326.0, "Total Customers": 256.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.14, "MEDIAN_SPEND_PER_CUSTOMER": 25.51 }, "geometry": { "type": "Point", "coordinates": [ -75.214079, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2020, "Total Visits": 621.0, "Total Visitors": 451.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 9740.0, "Total Transactions": 711.0, "Total Customers": 572.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.15, "MEDIAN_SPEND_PER_CUSTOMER": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yjv", "LOCATION_NAME": "Zio Pizza Palace & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955076, "LONGITUDE": -75.154189, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 77.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 1615.0, "Total Transactions": 111.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.18, "MEDIAN_SPEND_PER_CUSTOMER": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.154189, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-r49", "LOCATION_NAME": "PA Auto Sales com", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.104341, "LONGITUDE": -75.003284, "DATE_RANGE_START": 2020, "Total Visits": 2263.0, "Total Visitors": 1747.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 5410.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 538.33, "MEDIAN_SPEND_PER_CUSTOMER": 538.33 }, "geometry": { "type": "Point", "coordinates": [ -75.003284, 40.104341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "LOCATION_NAME": "Yamitsuki Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2020, "Total Visits": 161.0, "Total Visitors": 107.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1503.0, "Total Transactions": 48.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 31.88 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999351, "LONGITUDE": -75.132987, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 79.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 365.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.38, "MEDIAN_SPEND_PER_CUSTOMER": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.132987, 39.999351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952029, "LONGITUDE": -75.167533, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 226.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1813.0, "Total Transactions": 167.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.65, "MEDIAN_SPEND_PER_CUSTOMER": 10.65 }, "geometry": { "type": "Point", "coordinates": [ -75.167533, 39.952029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "LOCATION_NAME": "Tampopo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953009, "LONGITUDE": -75.210311, "DATE_RANGE_START": 2020, "Total Visits": 331.0, "Total Visitors": 226.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 134.0, "Total Spend": 1188.0, "Total Transactions": 60.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.210311, 39.953009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-k75", "LOCATION_NAME": "Angela's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0945, "LONGITUDE": -75.018316, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 93.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1044.0, "Total Transactions": 56.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.73, "MEDIAN_SPEND_PER_CUSTOMER": 22.22 }, "geometry": { "type": "Point", "coordinates": [ -75.018316, 40.0945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924749, "LONGITUDE": -75.169152, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 93.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4113.0, "Total Transactions": 337.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.12, "MEDIAN_SPEND_PER_CUSTOMER": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169152, 39.924749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029727, "LONGITUDE": -75.09938, "DATE_RANGE_START": 2020, "Total Visits": 592.0, "Total Visitors": 478.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6948.0, "Total Transactions": 415.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.58, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.09938, 40.029727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950896, "LONGITUDE": -75.166342, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 64.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 162.0, "Total Spend": 4228.0, "Total Transactions": 403.0, "Total Customers": 318.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.47, "MEDIAN_SPEND_PER_CUSTOMER": 10.36 }, "geometry": { "type": "Point", "coordinates": [ -75.166342, 39.950896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-c3q", "LOCATION_NAME": "Foodery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944856, "LONGITUDE": -75.158469, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 91.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 18347.0, "Total Transactions": 1016.0, "Total Customers": 492.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.59, "MEDIAN_SPEND_PER_CUSTOMER": 24.75 }, "geometry": { "type": "Point", "coordinates": [ -75.158469, 39.944856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 143.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2928.0, "Total Transactions": 312.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.41, "MEDIAN_SPEND_PER_CUSTOMER": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050984, "LONGITUDE": -75.010119, "DATE_RANGE_START": 2020, "Total Visits": 1284.0, "Total Visitors": 655.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6116.0, "Total Transactions": 776.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.9, "MEDIAN_SPEND_PER_CUSTOMER": 9.32 }, "geometry": { "type": "Point", "coordinates": [ -75.010119, 40.050984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmf-tvz", "LOCATION_NAME": "Aurora Grace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949402, "LONGITUDE": -75.170471, "DATE_RANGE_START": 2020, "Total Visits": 820.0, "Total Visitors": 365.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 223.0, "Total Spend": 349.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170471, 39.949402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.046202, "LONGITUDE": -75.056569, "DATE_RANGE_START": 2020, "Total Visits": 1383.0, "Total Visitors": 990.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14191.0, "Total Transactions": 2066.0, "Total Customers": 957.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.6, "MEDIAN_SPEND_PER_CUSTOMER": 9.61 }, "geometry": { "type": "Point", "coordinates": [ -75.056569, 40.046202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952606, "LONGITUDE": -75.16665, "DATE_RANGE_START": 2020, "Total Visits": 1114.0, "Total Visitors": 867.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 35.0, "Total Spend": 2297.0, "Total Transactions": 377.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.13, "MEDIAN_SPEND_PER_CUSTOMER": 6.38 }, "geometry": { "type": "Point", "coordinates": [ -75.16665, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 151.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2280.0, "Total Transactions": 365.0, "Total Customers": 202.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 7.05 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmd-zfz", "LOCATION_NAME": "Small Oven Pastry Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939225, "LONGITUDE": -75.180201, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 139.0, "POI_CBG": 421010020001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 546.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180201, 39.939225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "LOCATION_NAME": "Milkcrate Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2020, "Total Visits": 445.0, "Total Visitors": 240.0, "POI_CBG": 421010143002.0, "MEDIAN_DWELL": 357.0, "Total Spend": 12787.0, "Total Transactions": 965.0, "Total Customers": 443.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2020, "Total Visits": 935.0, "Total Visitors": 597.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 18068.0, "Total Transactions": 1896.0, "Total Customers": 877.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.6, "MEDIAN_SPEND_PER_CUSTOMER": 11.26 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-s89", "LOCATION_NAME": "Best Buy Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.078011, "LONGITUDE": -75.024952, "DATE_RANGE_START": 2020, "Total Visits": 2322.0, "Total Visitors": 1874.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3507.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 335.0, "MEDIAN_SPEND_PER_CUSTOMER": 356.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024952, 40.078011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-7qz", "LOCATION_NAME": "Vedge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947987, "LONGITUDE": -75.161387, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 58.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 136.0, "Total Spend": 1351.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.2, "MEDIAN_SPEND_PER_CUSTOMER": 86.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161387, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "LOCATION_NAME": "Penn Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 89.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2572.0, "Total Transactions": 103.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.96, "MEDIAN_SPEND_PER_CUSTOMER": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034271, "LONGITUDE": -75.216406, "DATE_RANGE_START": 2020, "Total Visits": 335.0, "Total Visitors": 220.0, "POI_CBG": 421010213002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2001.0, "Total Transactions": 165.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.83, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.216406, 40.034271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "LOCATION_NAME": "Popi's Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": null, "Total Spend": 659.0, "Total Transactions": 14.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 75.08 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pnw-mx5", "LOCATION_NAME": "Stump", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 39.96557, "LONGITUDE": -75.14068, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 326.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.08, "MEDIAN_SPEND_PER_CUSTOMER": 82.08 }, "geometry": { "type": "Point", "coordinates": [ -75.14068, 39.96557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979068, "LONGITUDE": -75.159667, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 177.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1923.0, "Total Transactions": 248.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.47, "MEDIAN_SPEND_PER_CUSTOMER": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.159667, 39.979068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-qfz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.976667, "LONGITUDE": -75.231099, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 123.0, "POI_CBG": 421010112001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 818.0, "Total Transactions": 42.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.19, "MEDIAN_SPEND_PER_CUSTOMER": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231099, 39.976667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978284, "LONGITUDE": -75.224461, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 173.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 338.0, "Total Spend": 35483.0, "Total Transactions": 804.0, "Total Customers": 717.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.13, "MEDIAN_SPEND_PER_CUSTOMER": 31.77 }, "geometry": { "type": "Point", "coordinates": [ -75.224461, 39.978284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2020, "Total Visits": 1816.0, "Total Visitors": 1326.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 37973.0, "Total Transactions": 2033.0, "Total Customers": 1249.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.18, "MEDIAN_SPEND_PER_CUSTOMER": 20.93 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pgj-grk", "LOCATION_NAME": "Mexican Grill Stand", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979558, "LONGITUDE": -75.155335, "DATE_RANGE_START": 2020, "Total Visits": 343.0, "Total Visitors": 222.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 73.0, "Total Spend": 130.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.155335, 39.979558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "LOCATION_NAME": "China Gate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2020, "Total Visits": 780.0, "Total Visitors": 488.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1934.0, "Total Transactions": 67.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.34, "MEDIAN_SPEND_PER_CUSTOMER": 31.12 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "LOCATION_NAME": "Moy Fong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 85.0, "POI_CBG": 421010264005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2679.0, "Total Transactions": 129.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.85, "MEDIAN_SPEND_PER_CUSTOMER": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035531, "LONGITUDE": -75.217119, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 127.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5079.0, "Total Transactions": 760.0, "Total Customers": 375.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.217119, 40.035531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-tn5", "LOCATION_NAME": "The Fresh Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979613, "LONGITUDE": -75.11764, "DATE_RANGE_START": 2020, "Total Visits": 768.0, "Total Visitors": 349.0, "POI_CBG": 421010378003.0, "MEDIAN_DWELL": 547.0, "Total Spend": 52.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.06, "MEDIAN_SPEND_PER_CUSTOMER": 13.06 }, "geometry": { "type": "Point", "coordinates": [ -75.11764, 39.979613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "LOCATION_NAME": "Southgate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2020, "Total Visits": 399.0, "Total Visitors": 246.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 326.0, "Total Spend": 1592.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.56, "MEDIAN_SPEND_PER_CUSTOMER": 71.56 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913861, "LONGITUDE": -75.154438, "DATE_RANGE_START": 2020, "Total Visits": 4343.0, "Total Visitors": 2249.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 6903.0, "Total Transactions": 60.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.16, "MEDIAN_SPEND_PER_CUSTOMER": 106.96 }, "geometry": { "type": "Point", "coordinates": [ -75.154438, 39.913861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "LOCATION_NAME": "Clarkville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949731, "LONGITUDE": -75.209453, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 67.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": 416.0, "Total Spend": 9158.0, "Total Transactions": 324.0, "Total Customers": 256.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.209453, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-835", "LOCATION_NAME": "Down Home Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952864, "LONGITUDE": -75.159035, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1911.0, "Total Transactions": 87.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.88, "MEDIAN_SPEND_PER_CUSTOMER": 23.13 }, "geometry": { "type": "Point", "coordinates": [ -75.159035, 39.952864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "LOCATION_NAME": "South Street Souvlaki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2020, "Total Visits": 568.0, "Total Visitors": 417.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 30.0, "Total Spend": 966.0, "Total Transactions": 36.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.62, "MEDIAN_SPEND_PER_CUSTOMER": 31.12 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "LOCATION_NAME": "Davids Mai Lai Wah", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955591, "LONGITUDE": -75.155966, "DATE_RANGE_START": 2020, "Total Visits": 367.0, "Total Visitors": 262.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 217.0, "Total Spend": 6622.0, "Total Transactions": 195.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.63, "MEDIAN_SPEND_PER_CUSTOMER": 39.18 }, "geometry": { "type": "Point", "coordinates": [ -75.155966, 39.955591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 89.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2748.0, "Total Transactions": 387.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 7.49 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061832, "LONGITUDE": -75.084015, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 95.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1980.0, "Total Transactions": 337.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.19, "MEDIAN_SPEND_PER_CUSTOMER": 6.95 }, "geometry": { "type": "Point", "coordinates": [ -75.084015, 40.061832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011206, "LONGITUDE": -75.113008, "DATE_RANGE_START": 2020, "Total Visits": 629.0, "Total Visitors": 474.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11000.0, "Total Transactions": 1431.0, "Total Customers": 631.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.02 }, "geometry": { "type": "Point", "coordinates": [ -75.113008, 40.011206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-qzz", "LOCATION_NAME": "Fortune Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944339, "LONGITUDE": -75.172891, "DATE_RANGE_START": 2020, "Total Visits": 865.0, "Total Visitors": 320.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 490.0, "Total Spend": 279.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.06, "MEDIAN_SPEND_PER_CUSTOMER": 21.18 }, "geometry": { "type": "Point", "coordinates": [ -75.172891, 39.944339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "LOCATION_NAME": "Joes Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95039, "LONGITUDE": -75.167575, "DATE_RANGE_START": 2020, "Total Visits": 195.0, "Total Visitors": 149.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 623.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.23, "MEDIAN_SPEND_PER_CUSTOMER": 21.93 }, "geometry": { "type": "Point", "coordinates": [ -75.167575, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgj-cqz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977899, "LONGITUDE": -75.158476, "DATE_RANGE_START": 2020, "Total Visits": 234.0, "Total Visitors": 200.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 382.0, "Total Spend": 396.0, "Total Transactions": 26.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.74, "MEDIAN_SPEND_PER_CUSTOMER": 8.28 }, "geometry": { "type": "Point", "coordinates": [ -75.158476, 39.977899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2020, "Total Visits": 584.0, "Total Visitors": 423.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14221.0, "Total Transactions": 2066.0, "Total Customers": 885.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.71, "MEDIAN_SPEND_PER_CUSTOMER": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@628-pmf-n3q", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953446, "LONGITUDE": -75.165892, "DATE_RANGE_START": 2020, "Total Visits": 1663.0, "Total Visitors": 1076.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 90.0, "Total Spend": 121.0, "Total Transactions": 16.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.61, "MEDIAN_SPEND_PER_CUSTOMER": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165892, 39.953446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 246.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15438.0, "Total Transactions": 1443.0, "Total Customers": 923.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.07, "MEDIAN_SPEND_PER_CUSTOMER": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086321, "LONGITUDE": -74.971748, "DATE_RANGE_START": 2020, "Total Visits": 1755.0, "Total Visitors": 1135.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 2.0, "Total Spend": 11956.0, "Total Transactions": 1659.0, "Total Customers": 590.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.82, "MEDIAN_SPEND_PER_CUSTOMER": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -74.971748, 40.086321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 149.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 60.0, "Total Spend": 2061.0, "Total Transactions": 262.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.78, "MEDIAN_SPEND_PER_CUSTOMER": 8.71 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.067993, "LONGITUDE": -75.198422, "DATE_RANGE_START": 2020, "Total Visits": 200.0, "Total Visitors": 195.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 15941.0, "Total Transactions": 355.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.76, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.198422, 40.067993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg9-wc5", "LOCATION_NAME": "Fairmount Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.964685, "LONGITUDE": -75.169302, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010134023.0, "MEDIAN_DWELL": 8.0, "Total Spend": 506.0, "Total Transactions": 46.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.169302, 39.964685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "LOCATION_NAME": "China City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 30.0, "POI_CBG": 421010311011.0, "MEDIAN_DWELL": 948.0, "Total Spend": 863.0, "Total Transactions": 40.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.55, "MEDIAN_SPEND_PER_CUSTOMER": 29.68 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032491, "LONGITUDE": -75.214429, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 125.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3202.0, "Total Transactions": 133.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.38, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.214429, 40.032491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pft-yjv", "LOCATION_NAME": "Murphy's Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031371, "LONGITUDE": -75.207978, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 564.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.88 }, "geometry": { "type": "Point", "coordinates": [ -75.207978, 40.031371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "LOCATION_NAME": "Union Tap House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 800.0, "Total Transactions": 20.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.45, "MEDIAN_SPEND_PER_CUSTOMER": 44.44 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "LOCATION_NAME": "Best In Town Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 75.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 3224.0, "Total Transactions": 95.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.01, "MEDIAN_SPEND_PER_CUSTOMER": 34.01 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2020, "Total Visits": 461.0, "Total Visitors": 282.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 202.0, "Total Spend": 982.0, "Total Transactions": 93.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.19, "MEDIAN_SPEND_PER_CUSTOMER": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "LOCATION_NAME": "Fishtown Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 30.0, "Total Spend": 1203.0, "Total Transactions": 62.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 21.96 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phz-s89", "LOCATION_NAME": "Torres Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.998232, "LONGITUDE": -75.106593, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010188007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 80.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.84, "MEDIAN_SPEND_PER_CUSTOMER": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.106593, 39.998232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "LOCATION_NAME": "Falafel Time", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": null, "Total Spend": 2985.0, "Total Transactions": 159.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@63s-dvw-bhq", "LOCATION_NAME": "Pm Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.961425, "LONGITUDE": -75.224249, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010093003.0, "MEDIAN_DWELL": null, "Total Spend": 236.0, "Total Transactions": 28.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 13.59 }, "geometry": { "type": "Point", "coordinates": [ -75.224249, 39.961425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 38.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 445.0, "Total Spend": 2414.0, "Total Transactions": 312.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.05, "MEDIAN_SPEND_PER_CUSTOMER": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pgd-v75", "LOCATION_NAME": "7P Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.964658, "LONGITUDE": -75.199734, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 50.0, "POI_CBG": 421010108005.0, "MEDIAN_DWELL": 22.0, "Total Spend": 114.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 8.05 }, "geometry": { "type": "Point", "coordinates": [ -75.199734, 39.964658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p75-9pv", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044008, "LONGITUDE": -75.017305, "DATE_RANGE_START": 2020, "Total Visits": 193.0, "Total Visitors": 143.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 718.0, "Total Transactions": 18.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.017305, 40.044008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "LOCATION_NAME": "1 Stop Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 115.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8539.0, "Total Transactions": 387.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.04, "MEDIAN_SPEND_PER_CUSTOMER": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.960173, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 67.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1940.0, "Total Transactions": 320.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.46 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.960173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050139, "LONGITUDE": -75.066802, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 324.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3953.0, "Total Transactions": 193.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.53, "MEDIAN_SPEND_PER_CUSTOMER": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -75.066802, 40.050139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2020, "Total Visits": 1312.0, "Total Visitors": 913.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4223.0, "Total Transactions": 222.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.05, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-gzf", "LOCATION_NAME": "AnM Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.023031, "LONGITUDE": -75.134802, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 99.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3168.0, "Total Transactions": 242.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134802, 40.023031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "LOCATION_NAME": "10 Spot/MadRag", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.917816, "LONGITUDE": -75.185164, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 139.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 23731.0, "Total Transactions": 597.0, "Total Customers": 514.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.06, "MEDIAN_SPEND_PER_CUSTOMER": 30.43 }, "geometry": { "type": "Point", "coordinates": [ -75.185164, 39.917816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-p9q-yn5", "LOCATION_NAME": "Dolce Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088053, "LONGITUDE": -75.037654, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 12.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 653.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.58, "MEDIAN_SPEND_PER_CUSTOMER": 32.98 }, "geometry": { "type": "Point", "coordinates": [ -75.037654, 40.088053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgg-p5f", "LOCATION_NAME": "Mimmo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004649, "LONGITUDE": -75.17882, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010171004.0, "MEDIAN_DWELL": null, "Total Spend": 1342.0, "Total Transactions": 52.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.44, "MEDIAN_SPEND_PER_CUSTOMER": 19.63 }, "geometry": { "type": "Point", "coordinates": [ -75.17882, 40.004649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "LOCATION_NAME": "Academy Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 18.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 438.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-pgk", "LOCATION_NAME": "Best Sunny Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992784, "LONGITUDE": -75.148123, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010165003.0, "MEDIAN_DWELL": 104.0, "Total Spend": 422.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.39, "MEDIAN_SPEND_PER_CUSTOMER": 26.44 }, "geometry": { "type": "Point", "coordinates": [ -75.148123, 39.992784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-52k", "LOCATION_NAME": "Indian Sizzler", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959458, "LONGITUDE": -75.194962, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 30.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 158.0, "Total Spend": 522.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.49, "MEDIAN_SPEND_PER_CUSTOMER": 27.49 }, "geometry": { "type": "Point", "coordinates": [ -75.194962, 39.959458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2020, "Total Visits": 377.0, "Total Visitors": 322.0, "POI_CBG": 421010200001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5167.0, "Total Transactions": 486.0, "Total Customers": 383.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.62, "MEDIAN_SPEND_PER_CUSTOMER": 9.85 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "LOCATION_NAME": "Suraya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 46.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 2353.0, "Total Transactions": 30.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.11, "MEDIAN_SPEND_PER_CUSTOMER": 109.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026206, "LONGITUDE": -75.22393, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 48.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 283.0, "Total Spend": 2519.0, "Total Transactions": 139.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.68, "MEDIAN_SPEND_PER_CUSTOMER": 18.12 }, "geometry": { "type": "Point", "coordinates": [ -75.22393, 40.026206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "LOCATION_NAME": "Asian Bamboo House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 64.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3923.0, "Total Transactions": 111.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.9, "MEDIAN_SPEND_PER_CUSTOMER": 32.51 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dw2-c3q", "LOCATION_NAME": "Tony Boys Breakfast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962196, "LONGITUDE": -75.240563, "DATE_RANGE_START": 2020, "Total Visits": 907.0, "Total Visitors": 576.0, "POI_CBG": 421010095003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 580.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.39, "MEDIAN_SPEND_PER_CUSTOMER": 42.39 }, "geometry": { "type": "Point", "coordinates": [ -75.240563, 39.962196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-zmk", "LOCATION_NAME": "Colney Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036792, "LONGITUDE": -75.130653, "DATE_RANGE_START": 2020, "Total Visits": 1102.0, "Total Visitors": 673.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 30.0, "Total Spend": 5769.0, "Total Transactions": 272.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.85, "MEDIAN_SPEND_PER_CUSTOMER": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.130653, 40.036792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.099554, "LONGITUDE": -75.024268, "DATE_RANGE_START": 2020, "Total Visits": 2515.0, "Total Visitors": 2042.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1017.0, "Total Transactions": 177.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.31, "MEDIAN_SPEND_PER_CUSTOMER": 6.74 }, "geometry": { "type": "Point", "coordinates": [ -75.024268, 40.099554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2020, "Total Visits": 689.0, "Total Visitors": 552.0, "POI_CBG": 421010348022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7256.0, "Total Transactions": 798.0, "Total Customers": 470.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.67, "MEDIAN_SPEND_PER_CUSTOMER": 9.99 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2020, "Total Visits": 320.0, "Total Visitors": 256.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7013.0, "Total Transactions": 951.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 9.06 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pnw-x89", "LOCATION_NAME": "Pretty Girls Cook", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97001, "LONGITUDE": -75.147605, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 82.0, "Total Spend": 4495.0, "Total Transactions": 183.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.147605, 39.97001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "LOCATION_NAME": "El Merkury", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 526.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.12, "MEDIAN_SPEND_PER_CUSTOMER": 26.12 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-syv", "LOCATION_NAME": "Tony's Auto Service", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.915674, "LONGITUDE": -75.160462, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 30.0, "POI_CBG": 421010041022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 519.0, "Total Transactions": 30.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.48, "MEDIAN_SPEND_PER_CUSTOMER": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.160462, 39.915674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "LOCATION_NAME": "Dfti Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.95206, "LONGITUDE": -75.174572, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7524.0, "Total Transactions": 89.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 74.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174572, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "LOCATION_NAME": "Charlie Was a Sinner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 46.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 21126.0, "Total Transactions": 308.0, "Total Customers": 282.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.08, "MEDIAN_SPEND_PER_CUSTOMER": 58.26 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p7c-fcq", "LOCATION_NAME": "Don Panchito Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069404, "LONGITUDE": -75.008583, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 56.0, "POI_CBG": 421010348022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 242.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.008583, 40.069404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-rx5", "LOCATION_NAME": "Shanks Original", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934821, "LONGITUDE": -75.142056, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 129.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 39.934821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg9-k4v", "LOCATION_NAME": "Mom's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991401, "LONGITUDE": -75.180066, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 16.0, "POI_CBG": 421010169022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1334.0, "Total Transactions": 40.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.180066, 39.991401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "LOCATION_NAME": "Pinoy Groseri", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 30.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 889.0, "Total Spend": 3127.0, "Total Transactions": 67.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.65, "MEDIAN_SPEND_PER_CUSTOMER": 44.63 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "LOCATION_NAME": "Vic Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 38.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 13719.0, "Total Transactions": 310.0, "Total Customers": 236.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.12, "MEDIAN_SPEND_PER_CUSTOMER": 42.39 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-qs5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031776, "LONGITUDE": -75.104312, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 40.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 93.0, "Total Spend": 2021.0, "Total Transactions": 252.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.12, "MEDIAN_SPEND_PER_CUSTOMER": 8.67 }, "geometry": { "type": "Point", "coordinates": [ -75.104312, 40.031776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-fvf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033336, "LONGITUDE": -75.176853, "DATE_RANGE_START": 2020, "Total Visits": 240.0, "Total Visitors": 193.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1175.0, "Total Transactions": 66.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.73, "MEDIAN_SPEND_PER_CUSTOMER": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.176853, 40.033336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-h5z", "LOCATION_NAME": "Buena Onda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960932, "LONGITUDE": -75.170707, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 117.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 200.0, "Total Spend": 9953.0, "Total Transactions": 381.0, "Total Customers": 316.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.3, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.170707, 39.960932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "LOCATION_NAME": "Perkins Restaurant & Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 99.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1185.0, "Total Transactions": 52.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.57 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-5s5", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049399, "LONGITUDE": -75.061192, "DATE_RANGE_START": 2020, "Total Visits": 572.0, "Total Visitors": 462.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2149.0, "Total Transactions": 151.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.97, "MEDIAN_SPEND_PER_CUSTOMER": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.061192, 40.049399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-kfz", "LOCATION_NAME": "SoBol UCity", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951073, "LONGITUDE": -75.198726, "DATE_RANGE_START": 2020, "Total Visits": 1290.0, "Total Visitors": 838.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 655.0, "Total Transactions": 54.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.69, "MEDIAN_SPEND_PER_CUSTOMER": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.198726, 39.951073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2020, "Total Visits": 570.0, "Total Visitors": 387.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6387.0, "Total Transactions": 927.0, "Total Customers": 433.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.83, "MEDIAN_SPEND_PER_CUSTOMER": 8.08 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7x-dgk", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04172, "LONGITUDE": -75.064728, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 64.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 416.0, "Total Transactions": 56.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.51, "MEDIAN_SPEND_PER_CUSTOMER": 5.94 }, "geometry": { "type": "Point", "coordinates": [ -75.064728, 40.04172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953365, "LONGITUDE": -75.173088, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 232.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2240.0, "Total Transactions": 324.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.02, "MEDIAN_SPEND_PER_CUSTOMER": 6.59 }, "geometry": { "type": "Point", "coordinates": [ -75.173088, 39.953365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-5vf", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048428, "LONGITUDE": -75.061751, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 64.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 35.0, "Total Spend": 2768.0, "Total Transactions": 173.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061751, 40.048428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.916923, "LONGITUDE": -75.236784, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 206.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10001.0, "Total Transactions": 216.0, "Total Customers": 189.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.236784, 39.916923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2020, "Total Visits": 699.0, "Total Visitors": 542.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 11778.0, "Total Transactions": 506.0, "Total Customers": 328.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.22, "MEDIAN_SPEND_PER_CUSTOMER": 20.26 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phk-yvz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054784, "LONGITUDE": -75.126802, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 220.0, "POI_CBG": 421010269001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1780.0, "Total Transactions": 93.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.55, "MEDIAN_SPEND_PER_CUSTOMER": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126802, 40.054784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2020, "Total Visits": 1455.0, "Total Visitors": 1052.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7670.0, "Total Transactions": 453.0, "Total Customers": 359.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.06, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "LOCATION_NAME": "Cambria Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2020, "Total Visits": 3533.0, "Total Visitors": 2578.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 102.0, "Total Spend": 5853.0, "Total Transactions": 28.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 201.03, "MEDIAN_SPEND_PER_CUSTOMER": 176.82 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w49", "LOCATION_NAME": "The Children's Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087614, "LONGITUDE": -74.96103, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 322.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 148.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.76, "MEDIAN_SPEND_PER_CUSTOMER": 12.76 }, "geometry": { "type": "Point", "coordinates": [ -74.96103, 40.087614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087098, "LONGITUDE": -74.962333, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 187.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1440.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.71, "MEDIAN_SPEND_PER_CUSTOMER": 54.97 }, "geometry": { "type": "Point", "coordinates": [ -74.962333, 40.087098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmd-zfz", "LOCATION_NAME": "Porco's Porchetteria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939344, "LONGITUDE": -75.180082, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 286.0, "POI_CBG": 421010020001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 35.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.7, "MEDIAN_SPEND_PER_CUSTOMER": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180082, 39.939344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "LOCATION_NAME": "Dollar Mart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2020, "Total Visits": 802.0, "Total Visitors": 445.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 184.0, "Total Spend": 1610.0, "Total Transactions": 79.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.41, "MEDIAN_SPEND_PER_CUSTOMER": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.930175, "LONGITUDE": -75.144763, "DATE_RANGE_START": 2020, "Total Visits": 1499.0, "Total Visitors": 1254.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 35463.0, "Total Transactions": 617.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.16, "MEDIAN_SPEND_PER_CUSTOMER": 35.02 }, "geometry": { "type": "Point", "coordinates": [ -75.144763, 39.930175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgc-zzz", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.979858, "LONGITUDE": -75.220169, "DATE_RANGE_START": 2020, "Total Visits": 586.0, "Total Visitors": 389.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 161.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.66, "MEDIAN_SPEND_PER_CUSTOMER": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.220169, 39.979858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2020, "Total Visits": 947.0, "Total Visitors": 593.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 17506.0, "Total Transactions": 697.0, "Total Customers": 459.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.87, "MEDIAN_SPEND_PER_CUSTOMER": 19.62 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "LOCATION_NAME": "Gennaro's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 34.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 185.0, "Total Spend": 1176.0, "Total Transactions": 77.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.63, "MEDIAN_SPEND_PER_CUSTOMER": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.974361, "LONGITUDE": -75.199089, "DATE_RANGE_START": 2020, "Total Visits": 1818.0, "Total Visitors": 1318.0, "POI_CBG": 421010110001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1487.0, "Total Transactions": 64.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.92, "MEDIAN_SPEND_PER_CUSTOMER": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.199089, 39.974361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "LOCATION_NAME": "The Bagel Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937457, "LONGITUDE": -75.15033, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 48.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 6058.0, "Total Transactions": 387.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 21.97 }, "geometry": { "type": "Point", "coordinates": [ -75.15033, 39.937457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "LOCATION_NAME": "Apple Retail Store", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 236.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 71.0, "Total Spend": 70316.0, "Total Transactions": 268.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.96, "MEDIAN_SPEND_PER_CUSTOMER": 106.92 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "LOCATION_NAME": "Hong Kong Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2020, "Total Visits": 824.0, "Total Visitors": 593.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4737.0, "Total Transactions": 81.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.1, "MEDIAN_SPEND_PER_CUSTOMER": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-ckf", "LOCATION_NAME": "Tran Beer Dist", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.924541, "LONGITUDE": -75.173565, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 167.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 30.0, "Total Spend": 2856.0, "Total Transactions": 97.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.173565, 39.924541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.942529, "LONGITUDE": -75.164834, "DATE_RANGE_START": 2020, "Total Visits": 403.0, "Total Visitors": 117.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 544.0, "Total Spend": 1458.0, "Total Transactions": 81.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.98, "MEDIAN_SPEND_PER_CUSTOMER": 17.01 }, "geometry": { "type": "Point", "coordinates": [ -75.164834, 39.942529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-wtv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054812, "LONGITUDE": -75.054903, "DATE_RANGE_START": 2020, "Total Visits": 407.0, "Total Visitors": 270.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4544.0, "Total Transactions": 226.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.29, "MEDIAN_SPEND_PER_CUSTOMER": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054903, 40.054812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm9-zs5", "LOCATION_NAME": "Condom Kingdom", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.942054, "LONGITUDE": -75.150455, "DATE_RANGE_START": 2020, "Total Visits": 1006.0, "Total Visitors": 838.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 16.0, "Total Spend": 997.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.47, "MEDIAN_SPEND_PER_CUSTOMER": 20.47 }, "geometry": { "type": "Point", "coordinates": [ -75.150455, 39.942054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "LOCATION_NAME": "Fat Tuesday", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 62.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 86.0, "Total Spend": 14944.0, "Total Transactions": 838.0, "Total Customers": 651.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "LOCATION_NAME": "1 Stop Smoke Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 64.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2750.0, "Total Transactions": 103.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnw-yvz", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.97112, "LONGITUDE": -75.151073, "DATE_RANGE_START": 2020, "Total Visits": 568.0, "Total Visitors": 355.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1070.0, "Total Transactions": 46.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.04, "MEDIAN_SPEND_PER_CUSTOMER": 20.17 }, "geometry": { "type": "Point", "coordinates": [ -75.151073, 39.97112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.9622, "LONGITUDE": -75.172139, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1471.0, "Total Transactions": 56.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.27, "MEDIAN_SPEND_PER_CUSTOMER": 24.27 }, "geometry": { "type": "Point", "coordinates": [ -75.172139, 39.9622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-8n5", "LOCATION_NAME": "Federal Donuts North", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964219, "LONGITUDE": -75.14909, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010131001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 710.0, "Total Transactions": 42.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14909, 39.964219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w8v", "LOCATION_NAME": "Pro Image Sports", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087124, "LONGITUDE": -74.961763, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4928.0, "Total Transactions": 81.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.5, "MEDIAN_SPEND_PER_CUSTOMER": 62.79 }, "geometry": { "type": "Point", "coordinates": [ -74.961763, 40.087124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7b-kj9", "LOCATION_NAME": "Villagio Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055388, "LONGITUDE": -75.003512, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 46.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 387.0, "Total Spend": 2858.0, "Total Transactions": 105.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.01, "MEDIAN_SPEND_PER_CUSTOMER": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.003512, 40.055388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "LOCATION_NAME": "Mr. Tire", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 52.0, "POI_CBG": 421010316006.0, "MEDIAN_DWELL": 405.0, "Total Spend": 2648.0, "Total Transactions": 30.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.76, "MEDIAN_SPEND_PER_CUSTOMER": 73.02 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-qpv", "LOCATION_NAME": "Via Bicycle", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.943026, "LONGITUDE": -75.166002, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 54.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2327.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.33, "MEDIAN_SPEND_PER_CUSTOMER": 117.53 }, "geometry": { "type": "Point", "coordinates": [ -75.166002, 39.943026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "LOCATION_NAME": "Tacodelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 58.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1828.0, "Total Transactions": 135.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.979391, "LONGITUDE": -75.152636, "DATE_RANGE_START": 2020, "Total Visits": 1413.0, "Total Visitors": 705.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 134.0, "Total Spend": 18905.0, "Total Transactions": 1298.0, "Total Customers": 917.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.74, "MEDIAN_SPEND_PER_CUSTOMER": 14.64 }, "geometry": { "type": "Point", "coordinates": [ -75.152636, 39.979391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.997473, "LONGITUDE": -75.074081, "DATE_RANGE_START": 2020, "Total Visits": 345.0, "Total Visitors": 189.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7781.0, "Total Transactions": 329.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.86, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074081, 39.997473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085593, "LONGITUDE": -74.962215, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 115.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4736.0, "Total Transactions": 99.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962215, 40.085593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2020, "Total Visits": 480.0, "Total Visitors": 345.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 41.0, "Total Spend": 2272.0, "Total Transactions": 62.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.57 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "LOCATION_NAME": "Roses", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.039098, "LONGITUDE": -75.107749, "DATE_RANGE_START": 2020, "Total Visits": 1449.0, "Total Visitors": 1088.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 34584.0, "Total Transactions": 717.0, "Total Customers": 572.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.16, "MEDIAN_SPEND_PER_CUSTOMER": 38.51 }, "geometry": { "type": "Point", "coordinates": [ -75.107749, 40.039098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010314022.0, "MEDIAN_DWELL": null, "Total Spend": 190.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.2, "MEDIAN_SPEND_PER_CUSTOMER": 24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-2zf", "LOCATION_NAME": "Helm", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971556, "LONGITUDE": -75.144508, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010144001.0, "MEDIAN_DWELL": null, "Total Spend": 776.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.3, "MEDIAN_SPEND_PER_CUSTOMER": 57.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144508, 39.971556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pj5-3nq", "LOCATION_NAME": "Erie Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009145, "LONGITUDE": -75.152232, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010201022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 946.0, "Total Transactions": 89.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152232, 40.009145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pm3-st9", "LOCATION_NAME": "Laurel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929472, "LONGITUDE": -75.163723, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 4.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2286.0, "Total Transactions": 46.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.11, "MEDIAN_SPEND_PER_CUSTOMER": 42.66 }, "geometry": { "type": "Point", "coordinates": [ -75.163723, 39.929472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": null, "Total Spend": 5469.0, "Total Transactions": 723.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.56, "MEDIAN_SPEND_PER_CUSTOMER": 8.55 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjf-zvf", "LOCATION_NAME": "McNally's Tavern Chestnut Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077129, "LONGITUDE": -75.208866, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": null, "Total Spend": 6543.0, "Total Transactions": 127.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.33, "MEDIAN_SPEND_PER_CUSTOMER": 50.48 }, "geometry": { "type": "Point", "coordinates": [ -75.208866, 40.077129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "LOCATION_NAME": "Windfall Gallery", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 165.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 41.54 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009461, "LONGITUDE": -75.150639, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1051.0, "Total Transactions": 159.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.8, "MEDIAN_SPEND_PER_CUSTOMER": 6.31 }, "geometry": { "type": "Point", "coordinates": [ -75.150639, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "LOCATION_NAME": "Talk of the Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071911, "LONGITUDE": -75.161398, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 28.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 324.0, "Total Spend": 2283.0, "Total Transactions": 89.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 31.08 }, "geometry": { "type": "Point", "coordinates": [ -75.161398, 40.071911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 6574.0, "Total Transactions": 300.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.47, "MEDIAN_SPEND_PER_CUSTOMER": 26.32 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-phc-rkz", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.999213, "LONGITUDE": -75.22984, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 178.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.03, "MEDIAN_SPEND_PER_CUSTOMER": 9.03 }, "geometry": { "type": "Point", "coordinates": [ -75.22984, 39.999213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "LOCATION_NAME": "La Tienda MiniMarket", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 26.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 224.0, "Total Spend": 109.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.39, "MEDIAN_SPEND_PER_CUSTOMER": 27.39 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 32.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 830.0, "Total Spend": 2044.0, "Total Transactions": 310.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.54, "MEDIAN_SPEND_PER_CUSTOMER": 6.94 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "LOCATION_NAME": "Girard Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 307.0, "Total Transactions": 34.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.74, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "266-222@628-pm4-sh5", "LOCATION_NAME": "Ramayana Store", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.929048, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010028011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 194.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.75, "MEDIAN_SPEND_PER_CUSTOMER": 48.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.929048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-rkz", "LOCATION_NAME": "Cafe Lutecia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946587, "LONGITUDE": -75.179627, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 44.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 121.0, "Total Spend": 3017.0, "Total Transactions": 103.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.56, "MEDIAN_SPEND_PER_CUSTOMER": 37.94 }, "geometry": { "type": "Point", "coordinates": [ -75.179627, 39.946587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "LOCATION_NAME": "Bellini", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 46.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3860.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 107.12, "MEDIAN_SPEND_PER_CUSTOMER": 107.12 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26h-222@628-pm3-zmk", "LOCATION_NAME": "Wendy's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920091, "LONGITUDE": -75.159002, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 12.0, "POI_CBG": 421010041021.0, "MEDIAN_DWELL": 10.0, "Total Spend": 122.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 21.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159002, 39.920091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-fcq", "LOCATION_NAME": "Yeager Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.97236, "LONGITUDE": -75.226332, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 18.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 460.0, "Total Spend": 42381.0, "Total Transactions": 1332.0, "Total Customers": 967.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.07, "MEDIAN_SPEND_PER_CUSTOMER": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.226332, 39.97236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "LOCATION_NAME": "Vietnam Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 50.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5632.0, "Total Transactions": 143.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.75, "MEDIAN_SPEND_PER_CUSTOMER": 40.61 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992304, "LONGITUDE": -75.099808, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 199.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.11, "MEDIAN_SPEND_PER_CUSTOMER": 22.11 }, "geometry": { "type": "Point", "coordinates": [ -75.099808, 39.992304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj2-mrk", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006514, "LONGITUDE": -75.095617, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 163.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4867.0, "Total Transactions": 345.0, "Total Customers": 264.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.095617, 40.006514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5s5", "LOCATION_NAME": "Federal Donuts East Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951076, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2020, "Total Visits": 717.0, "Total Visitors": 522.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 113.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.951076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "LOCATION_NAME": "Spice Finch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2020, "Total Visits": 1159.0, "Total Visitors": 740.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 234.0, "Total Spend": 172.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.29, "MEDIAN_SPEND_PER_CUSTOMER": 43.29 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "LOCATION_NAME": "Chicko Tako", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 77.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2642.0, "Total Transactions": 135.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.67, "MEDIAN_SPEND_PER_CUSTOMER": 19.97 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-xnq", "LOCATION_NAME": "Dae Bak", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955289, "LONGITUDE": -75.156637, "DATE_RANGE_START": 2020, "Total Visits": 2001.0, "Total Visitors": 1358.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 550.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.8, "MEDIAN_SPEND_PER_CUSTOMER": 31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156637, 39.955289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030371, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2020, "Total Visits": 246.0, "Total Visitors": 214.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2218.0, "Total Transactions": 169.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 14.39 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2020, "Total Visits": 490.0, "Total Visitors": 383.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9128.0, "Total Transactions": 850.0, "Total Customers": 615.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.01, "MEDIAN_SPEND_PER_CUSTOMER": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-5pv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952074, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 81.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2084.0, "Total Transactions": 423.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.55, "MEDIAN_SPEND_PER_CUSTOMER": 5.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.952074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 272.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5072.0, "Total Transactions": 677.0, "Total Customers": 369.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.15, "MEDIAN_SPEND_PER_CUSTOMER": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm4-mkz", "LOCATION_NAME": "Benna's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93273, "LONGITUDE": -75.157747, "DATE_RANGE_START": 2020, "Total Visits": 234.0, "Total Visitors": 125.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 614.0, "Total Spend": 84.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157747, 39.93273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-c89", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068373, "LONGITUDE": -75.068436, "DATE_RANGE_START": 2020, "Total Visits": 1040.0, "Total Visitors": 500.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6072.0, "Total Transactions": 887.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.04, "MEDIAN_SPEND_PER_CUSTOMER": 8.72 }, "geometry": { "type": "Point", "coordinates": [ -75.068436, 40.068373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.038428, "LONGITUDE": -75.106684, "DATE_RANGE_START": 2020, "Total Visits": 133.0, "Total Visitors": 115.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 20803.0, "Total Transactions": 516.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.2, "MEDIAN_SPEND_PER_CUSTOMER": 30.85 }, "geometry": { "type": "Point", "coordinates": [ -75.106684, 40.038428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "LOCATION_NAME": "Race Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 67.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1518.0, "Total Transactions": 200.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.00641, "LONGITUDE": -75.099483, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 97.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2681.0, "Total Transactions": 133.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.88, "MEDIAN_SPEND_PER_CUSTOMER": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.099483, 40.00641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-b8v", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.059227, "LONGITUDE": -75.045575, "DATE_RANGE_START": 2020, "Total Visits": 419.0, "Total Visitors": 292.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1765.0, "Total Transactions": 87.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.9, "MEDIAN_SPEND_PER_CUSTOMER": 19.77 }, "geometry": { "type": "Point", "coordinates": [ -75.045575, 40.059227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "LOCATION_NAME": "Kiehl's", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2020, "Total Visits": 161.0, "Total Visitors": 119.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2227.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.6, "MEDIAN_SPEND_PER_CUSTOMER": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.961276, "LONGITUDE": -75.199304, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 123.0, "POI_CBG": 421010091003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 494.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 124.5, "MEDIAN_SPEND_PER_CUSTOMER": 124.5 }, "geometry": { "type": "Point", "coordinates": [ -75.199304, 39.961276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045256, "LONGITUDE": -75.086611, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 240.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 349.0, "Total Transactions": 20.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.01, "MEDIAN_SPEND_PER_CUSTOMER": 10.74 }, "geometry": { "type": "Point", "coordinates": [ -75.086611, 40.045256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 97.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5039.0, "Total Transactions": 419.0, "Total Customers": 355.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.65, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2020, "Total Visits": 546.0, "Total Visitors": 361.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13965.0, "Total Transactions": 1254.0, "Total Customers": 746.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.77, "MEDIAN_SPEND_PER_CUSTOMER": 14.69 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "LOCATION_NAME": "Desi Chaat House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 10.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 731.0, "Total Spend": 1261.0, "Total Transactions": 97.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.07, "MEDIAN_SPEND_PER_CUSTOMER": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-bc5", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963748, "LONGITUDE": -75.241226, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 12.0, "POI_CBG": 421010096002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1061.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.36, "MEDIAN_SPEND_PER_CUSTOMER": 19.96 }, "geometry": { "type": "Point", "coordinates": [ -75.241226, 39.963748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": null, "Total Spend": 2115.0, "Total Transactions": 252.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.25, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "LOCATION_NAME": "Henry James Saloon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 24.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 202.0, "Total Spend": 177.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.65, "MEDIAN_SPEND_PER_CUSTOMER": 44.65 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "LOCATION_NAME": "Friendship Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03925, "LONGITUDE": -75.04588, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2186.0, "Total Transactions": 24.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.87, "MEDIAN_SPEND_PER_CUSTOMER": 96.32 }, "geometry": { "type": "Point", "coordinates": [ -75.04588, 40.03925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "LOCATION_NAME": "Bad Brother", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5969.0, "Total Transactions": 145.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pj4-s89", "LOCATION_NAME": "Marv Loves Too", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.992943, "LONGITUDE": -75.134756, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 63.0, "Total Spend": 439.0, "Total Transactions": 14.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134756, 39.992943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-dqf", "LOCATION_NAME": "Good Neighbor Mini Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.941908, "LONGITUDE": -75.220217, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010073001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 355.0, "Total Transactions": 38.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.220217, 39.941908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "LOCATION_NAME": "Pub On Passyunk East", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": null, "Total Spend": 351.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.29, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "LOCATION_NAME": "RIM Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 648.0, "Total Transactions": 38.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "LOCATION_NAME": "2nd Street Brew House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 30.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 130.0, "Total Spend": 5222.0, "Total Transactions": 147.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.5, "MEDIAN_SPEND_PER_CUSTOMER": 33.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dwg-g6k", "LOCATION_NAME": "United", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.917055, "LONGITUDE": -75.235223, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 40.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 12034.0, "Total Transactions": 306.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.43 }, "geometry": { "type": "Point", "coordinates": [ -75.235223, 39.917055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "LOCATION_NAME": "Two Brothers", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.943904, "LONGITUDE": -75.228136, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 54.0, "POI_CBG": 421010071024.0, "MEDIAN_DWELL": 11.0, "Total Spend": 226.0, "Total Transactions": 42.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.75, "MEDIAN_SPEND_PER_CUSTOMER": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228136, 39.943904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "LOCATION_NAME": "In Riva", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2020, "Total Visits": 558.0, "Total Visitors": 397.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 99.0, "Total Spend": 36085.0, "Total Transactions": 550.0, "Total Customers": 461.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.58, "MEDIAN_SPEND_PER_CUSTOMER": 58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "LOCATION_NAME": "Stenton Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2865.0, "Total Transactions": 153.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.1, "MEDIAN_SPEND_PER_CUSTOMER": 18.08 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981705, "LONGITUDE": -75.180442, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010149004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1087.0, "Total Transactions": 103.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 8.39 }, "geometry": { "type": "Point", "coordinates": [ -75.180442, 39.981705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phn-9fz", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079281, "LONGITUDE": -75.174174, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 866.0, "Total Transactions": 41.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174174, 40.079281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfx-ks5", "LOCATION_NAME": "Gregs Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026584, "LONGITUDE": -75.226738, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6258.0, "Total Transactions": 258.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.2, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.226738, 40.026584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg9-ty9", "LOCATION_NAME": "Brandywine Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962927, "LONGITUDE": -75.163263, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1191.0, "Total Transactions": 45.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.962927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phy-wx5", "LOCATION_NAME": "Brother's Pizza House II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026513, "LONGITUDE": -75.12182, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 141.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.79, "MEDIAN_SPEND_PER_CUSTOMER": 19.06 }, "geometry": { "type": "Point", "coordinates": [ -75.12182, 40.026513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "LOCATION_NAME": "Pickwick Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952852, "LONGITUDE": -75.169574, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 67.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2084.0, "Total Transactions": 67.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.31, "MEDIAN_SPEND_PER_CUSTOMER": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.169574, 39.952852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pj2-tsq", "LOCATION_NAME": "Beijing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.015027, "LONGITUDE": -75.108817, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010191004.0, "MEDIAN_DWELL": null, "Total Spend": 686.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.2, "MEDIAN_SPEND_PER_CUSTOMER": 30.55 }, "geometry": { "type": "Point", "coordinates": [ -75.108817, 40.015027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-8jv", "LOCATION_NAME": "The Nile Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039401, "LONGITUDE": -75.177975, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 70.0, "Total Spend": 150.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.14, "MEDIAN_SPEND_PER_CUSTOMER": 19.14 }, "geometry": { "type": "Point", "coordinates": [ -75.177975, 40.039401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvw-mx5", "LOCATION_NAME": "Gaetano's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960076, "LONGITUDE": -75.226758, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": null, "Total Spend": 438.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.49, "MEDIAN_SPEND_PER_CUSTOMER": 17.49 }, "geometry": { "type": "Point", "coordinates": [ -75.226758, 39.960076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg9-xh5", "LOCATION_NAME": "Coffee Cream & Dreams", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966924, "LONGITUDE": -75.162284, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1013.0, "Total Transactions": 138.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162284, 39.966924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995073, "LONGITUDE": -75.126158, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 29.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1155.0, "Total Transactions": 117.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.99, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126158, 39.995073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-x3q", "LOCATION_NAME": "Medina mini market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984945, "LONGITUDE": -75.147239, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 12.0, "POI_CBG": 421010377003.0, "MEDIAN_DWELL": 1440.0, "Total Spend": 89.0, "Total Transactions": 19.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.94, "MEDIAN_SPEND_PER_CUSTOMER": 6.64 }, "geometry": { "type": "Point", "coordinates": [ -75.147239, 39.984945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010149005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 213.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.9, "MEDIAN_SPEND_PER_CUSTOMER": 13.42 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "LOCATION_NAME": "Chillin Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 24.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2911.0, "Total Transactions": 84.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.27, "MEDIAN_SPEND_PER_CUSTOMER": 47.32 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "LOCATION_NAME": "Uncle Oogie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4621.0, "Total Transactions": 167.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.9, "MEDIAN_SPEND_PER_CUSTOMER": 25.51 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050364, "LONGITUDE": -75.094508, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 702.0, "Total Transactions": 57.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.32, "MEDIAN_SPEND_PER_CUSTOMER": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.094508, 40.050364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-4vz", "LOCATION_NAME": "Cafe Tinto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02153, "LONGITUDE": -75.122622, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 43.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6177.0, "Total Transactions": 396.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.122622, 40.02153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "LOCATION_NAME": "Champ's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 50.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 403.0, "Total Spend": 6702.0, "Total Transactions": 379.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.26, "MEDIAN_SPEND_PER_CUSTOMER": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-gzf", "LOCATION_NAME": "Romano Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.023038, "LONGITUDE": -75.133728, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": null, "Total Spend": 3816.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 120.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133728, 40.023038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "LOCATION_NAME": "Kei Sushi Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": null, "Total Spend": 5168.0, "Total Transactions": 148.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.28, "MEDIAN_SPEND_PER_CUSTOMER": 31.46 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "LOCATION_NAME": "Vapordelphia", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2021, "Total Visits": 683.0, "Total Visitors": 494.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 287.0, "Total Spend": 8325.0, "Total Transactions": 172.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.88, "MEDIAN_SPEND_PER_CUSTOMER": 43.09 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-p7w-v4v", "LOCATION_NAME": "The Children's Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.047874, "LONGITUDE": -75.055616, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 229.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 374.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.0, "MEDIAN_SPEND_PER_CUSTOMER": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055616, 40.047874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "LOCATION_NAME": "Nike Factory Store", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 138.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 72870.0, "Total Transactions": 924.0, "Total Customers": 778.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.97, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.91305, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 212.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2083.0, "Total Transactions": 88.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.37, "MEDIAN_SPEND_PER_CUSTOMER": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.91305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.990629, "LONGITUDE": -75.10302, "DATE_RANGE_START": 2021, "Total Visits": 537.0, "Total Visitors": 451.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 46423.0, "Total Transactions": 955.0, "Total Customers": 740.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.99, "MEDIAN_SPEND_PER_CUSTOMER": 43.16 }, "geometry": { "type": "Point", "coordinates": [ -75.10302, 39.990629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p9j-zj9", "LOCATION_NAME": "Kabobi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0995, "LONGITUDE": -75.010461, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 100.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3230.0, "Total Transactions": 69.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 49.77 }, "geometry": { "type": "Point", "coordinates": [ -75.010461, 40.0995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2021, "Total Visits": 1205.0, "Total Visitors": 933.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 18096.0, "Total Transactions": 310.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.29, "MEDIAN_SPEND_PER_CUSTOMER": 54.22 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9q-zfz", "LOCATION_NAME": "Applebee's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076701, "LONGITUDE": -75.033636, "DATE_RANGE_START": 2021, "Total Visits": 618.0, "Total Visitors": 530.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 59.0, "Total Spend": 488.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.6, "MEDIAN_SPEND_PER_CUSTOMER": 15.34 }, "geometry": { "type": "Point", "coordinates": [ -75.033636, 40.076701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8sq", "LOCATION_NAME": "District Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95167, "LONGITUDE": -75.159171, "DATE_RANGE_START": 2021, "Total Visits": 7485.0, "Total Visitors": 5687.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 7518.0, "Total Transactions": 477.0, "Total Customers": 353.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.76, "MEDIAN_SPEND_PER_CUSTOMER": 14.86 }, "geometry": { "type": "Point", "coordinates": [ -75.159171, 39.95167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-68v", "LOCATION_NAME": "Kinme", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947803, "LONGITUDE": -75.160062, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 79.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 956.0, "Total Spend": 3082.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.6, "MEDIAN_SPEND_PER_CUSTOMER": 62.92 }, "geometry": { "type": "Point", "coordinates": [ -75.160062, 39.947803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928851, "LONGITUDE": -75.229354, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 119.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3079.0, "Total Transactions": 387.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.65, "MEDIAN_SPEND_PER_CUSTOMER": 8.59 }, "geometry": { "type": "Point", "coordinates": [ -75.229354, 39.928851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kj9", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950618, "LONGITUDE": -75.175914, "DATE_RANGE_START": 2021, "Total Visits": 1482.0, "Total Visitors": 1005.0, "POI_CBG": 421010008031.0, "MEDIAN_DWELL": 347.0, "Total Spend": 517.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.33, "MEDIAN_SPEND_PER_CUSTOMER": 13.33 }, "geometry": { "type": "Point", "coordinates": [ -75.175914, 39.950618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-x5z", "LOCATION_NAME": "Essen Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931036, "LONGITUDE": -75.161763, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 220.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 421.0, "Total Spend": 4662.0, "Total Transactions": 298.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.161763, 39.931036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pnw-pjv", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969267, "LONGITUDE": -75.133945, "DATE_RANGE_START": 2021, "Total Visits": 212.0, "Total Visitors": 191.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 278.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.88, "MEDIAN_SPEND_PER_CUSTOMER": 18.64 }, "geometry": { "type": "Point", "coordinates": [ -75.133945, 39.969267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dy9", "LOCATION_NAME": "Firestone Complete Auto Care", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052472, "LONGITUDE": -75.06646, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 76.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 98.0, "Total Spend": 377.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.06, "MEDIAN_SPEND_PER_CUSTOMER": 79.06 }, "geometry": { "type": "Point", "coordinates": [ -75.06646, 40.052472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pm4-pjv", "LOCATION_NAME": "Di Bruno Bros", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.938055, "LONGITUDE": -75.158145, "DATE_RANGE_START": 2021, "Total Visits": 592.0, "Total Visitors": 449.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 82.0, "Total Spend": 47815.0, "Total Transactions": 2088.0, "Total Customers": 1422.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.2, "MEDIAN_SPEND_PER_CUSTOMER": 19.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158145, 39.938055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "LOCATION_NAME": "Harbison Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 122.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3315.0, "Total Transactions": 95.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.5, "MEDIAN_SPEND_PER_CUSTOMER": 38.38 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-2kz", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075387, "LONGITUDE": -75.03207, "DATE_RANGE_START": 2021, "Total Visits": 1138.0, "Total Visitors": 976.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 215.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.72, "MEDIAN_SPEND_PER_CUSTOMER": 26.37 }, "geometry": { "type": "Point", "coordinates": [ -75.03207, 40.075387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "LOCATION_NAME": "Kohl's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.062537, "LONGITUDE": -75.235162, "DATE_RANGE_START": 2021, "Total Visits": 1048.0, "Total Visitors": 807.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 61516.0, "Total Transactions": 976.0, "Total Customers": 838.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.7, "MEDIAN_SPEND_PER_CUSTOMER": 45.35 }, "geometry": { "type": "Point", "coordinates": [ -75.235162, 40.062537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2021, "Total Visits": 284.0, "Total Visitors": 169.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1107.0, "Total Transactions": 53.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.04, "MEDIAN_SPEND_PER_CUSTOMER": 19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "LOCATION_NAME": "Tony's Luke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6916.0, "Total Transactions": 279.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "LOCATION_NAME": "Love Vape", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 131.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5853.0, "Total Transactions": 165.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "LOCATION_NAME": "Pub & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 33.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 20.0, "Total Spend": 6995.0, "Total Transactions": 72.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.84, "MEDIAN_SPEND_PER_CUSTOMER": 89.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-vzz", "LOCATION_NAME": "Barcelona Wine Bar & Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928118, "LONGITUDE": -75.165293, "DATE_RANGE_START": 2021, "Total Visits": 296.0, "Total Visitors": 177.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 286.0, "Total Spend": 1207.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.35, "MEDIAN_SPEND_PER_CUSTOMER": 54.35 }, "geometry": { "type": "Point", "coordinates": [ -75.165293, 39.928118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2021, "Total Visits": 224.0, "Total Visitors": 158.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 512.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.28, "MEDIAN_SPEND_PER_CUSTOMER": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zpv", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917091, "LONGITUDE": -75.187282, "DATE_RANGE_START": 2021, "Total Visits": 21251.0, "Total Visitors": 9943.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 615.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187282, 39.917091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948525, "LONGITUDE": -75.166014, "DATE_RANGE_START": 2021, "Total Visits": 604.0, "Total Visitors": 427.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 201.0, "Total Spend": 9931.0, "Total Transactions": 1649.0, "Total Customers": 690.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.09, "MEDIAN_SPEND_PER_CUSTOMER": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166014, 39.948525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvy-kfz", "LOCATION_NAME": "Al Waha Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951192, "LONGITUDE": -75.200055, "DATE_RANGE_START": 2021, "Total Visits": 1210.0, "Total Visitors": 449.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 427.0, "Total Spend": 137.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.200055, 39.951192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "LOCATION_NAME": "Tokyo Sushi & Catering", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2021, "Total Visits": 1539.0, "Total Visitors": 988.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 204.0, "Total Spend": 2185.0, "Total Transactions": 105.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.76, "MEDIAN_SPEND_PER_CUSTOMER": 21.37 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-5mk", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961178, "LONGITUDE": -75.143721, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 141.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 5707.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.49, "MEDIAN_SPEND_PER_CUSTOMER": 90.26 }, "geometry": { "type": "Point", "coordinates": [ -75.143721, 39.961178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-5s5", "LOCATION_NAME": "Canopy By Hilton", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951115, "LONGITUDE": -75.159793, "DATE_RANGE_START": 2021, "Total Visits": 2551.0, "Total Visitors": 1716.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 276.0, "Total Spend": 13088.0, "Total Transactions": 36.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 313.88, "MEDIAN_SPEND_PER_CUSTOMER": 385.96 }, "geometry": { "type": "Point", "coordinates": [ -75.159793, 39.951115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "LOCATION_NAME": "Crunchik'n", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2021, "Total Visits": 1396.0, "Total Visitors": 842.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 261.0, "Total Spend": 252.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.35, "MEDIAN_SPEND_PER_CUSTOMER": 32.35 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2021, "Total Visits": 811.0, "Total Visitors": 635.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 99951.0, "Total Transactions": 5895.0, "Total Customers": 4026.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.1, "MEDIAN_SPEND_PER_CUSTOMER": 18.97 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2021, "Total Visits": 382.0, "Total Visitors": 339.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9768.0, "Total Transactions": 819.0, "Total Customers": 630.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2021, "Total Visits": 480.0, "Total Visitors": 234.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4470.0, "Total Transactions": 871.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.54, "MEDIAN_SPEND_PER_CUSTOMER": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2021, "Total Visits": 468.0, "Total Visitors": 291.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6470.0, "Total Transactions": 838.0, "Total Customers": 482.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.78, "MEDIAN_SPEND_PER_CUSTOMER": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009408, "LONGITUDE": -75.196533, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 119.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10649.0, "Total Transactions": 1375.0, "Total Customers": 780.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.73, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196533, 40.009408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-c89", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068373, "LONGITUDE": -75.068436, "DATE_RANGE_START": 2021, "Total Visits": 1475.0, "Total Visitors": 680.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7896.0, "Total Transactions": 1007.0, "Total Customers": 442.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.62, "MEDIAN_SPEND_PER_CUSTOMER": 10.56 }, "geometry": { "type": "Point", "coordinates": [ -75.068436, 40.068373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-ks5", "LOCATION_NAME": "The Spice Rack", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.075333, "LONGITUDE": -75.206122, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": null, "Total Spend": 747.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206122, 40.075333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgk-z9f", "LOCATION_NAME": "Beauty & Fashion City", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999963, "LONGITUDE": -75.209335, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010122041.0, "MEDIAN_DWELL": 4.0, "Total Spend": 494.0, "Total Transactions": 36.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.94, "MEDIAN_SPEND_PER_CUSTOMER": 11.93 }, "geometry": { "type": "Point", "coordinates": [ -75.209335, 39.999963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "LOCATION_NAME": "New London Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010289013.0, "MEDIAN_DWELL": 165.0, "Total Spend": 3266.0, "Total Transactions": 110.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.7, "MEDIAN_SPEND_PER_CUSTOMER": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-224@628-pgb-n5z", "LOCATION_NAME": "Crab Du Jour Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968792, "LONGITUDE": -75.16057, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 12.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 946.0, "Total Spend": 15834.0, "Total Transactions": 284.0, "Total Customers": 251.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.73, "MEDIAN_SPEND_PER_CUSTOMER": 51.18 }, "geometry": { "type": "Point", "coordinates": [ -75.16057, 39.968792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": null, "Total Spend": 4880.0, "Total Transactions": 205.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.87, "MEDIAN_SPEND_PER_CUSTOMER": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "LOCATION_NAME": "Aya Asian Fusion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010330006.0, "MEDIAN_DWELL": 182.0, "Total Spend": 2540.0, "Total Transactions": 110.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.41, "MEDIAN_SPEND_PER_CUSTOMER": 26.19 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pg9-t9z", "LOCATION_NAME": "A&A Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.965619, "LONGITUDE": -75.165824, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 26.0, "POI_CBG": 421010134022.0, "MEDIAN_DWELL": 60.0, "Total Spend": 16.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.25, "MEDIAN_SPEND_PER_CUSTOMER": 3.25 }, "geometry": { "type": "Point", "coordinates": [ -75.165824, 39.965619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "LOCATION_NAME": "Abyssinia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 26.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 41.0, "Total Spend": 7613.0, "Total Transactions": 224.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.24, "MEDIAN_SPEND_PER_CUSTOMER": 35.5 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-phz-tjv", "LOCATION_NAME": "Pizza express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998436, "LONGITUDE": -75.110266, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010192004.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1143.0, "Total Transactions": 45.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.52, "MEDIAN_SPEND_PER_CUSTOMER": 28.46 }, "geometry": { "type": "Point", "coordinates": [ -75.110266, 39.998436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7z-6tv", "LOCATION_NAME": "Dollar Discount", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.055124, "LONGITUDE": -75.090736, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 74.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": 135.0, "Total Spend": 109.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.77, "MEDIAN_SPEND_PER_CUSTOMER": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.090736, 40.055124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2021, "Total Visits": 1298.0, "Total Visitors": 926.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 36.0, "Total Spend": 27046.0, "Total Transactions": 1900.0, "Total Customers": 1344.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.17, "MEDIAN_SPEND_PER_CUSTOMER": 14.84 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-835", "LOCATION_NAME": "Down Home Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952864, "LONGITUDE": -75.159035, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 7557.0, "Total Transactions": 303.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.55, "MEDIAN_SPEND_PER_CUSTOMER": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159035, 39.952864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2021, "Total Visits": 850.0, "Total Visitors": 599.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 61.0, "Total Spend": 13665.0, "Total Transactions": 215.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.7, "MEDIAN_SPEND_PER_CUSTOMER": 48.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2021, "Total Visits": 22380.0, "Total Visitors": 15420.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 18159.0, "Total Transactions": 1439.0, "Total Customers": 1057.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.56, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p74-wtv", "LOCATION_NAME": "Oteri's Italian Bakery Frankford Ave", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038952, "LONGITUDE": -75.035677, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 100.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 24.0, "Total Spend": 361.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.75, "MEDIAN_SPEND_PER_CUSTOMER": 37.75 }, "geometry": { "type": "Point", "coordinates": [ -75.035677, 40.038952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvy-kfz", "LOCATION_NAME": "Ahmad Gyro King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951086, "LONGITUDE": -75.19875, "DATE_RANGE_START": 2021, "Total Visits": 1131.0, "Total Visitors": 802.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 124.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.01, "MEDIAN_SPEND_PER_CUSTOMER": 26.01 }, "geometry": { "type": "Point", "coordinates": [ -75.19875, 39.951086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007477, "LONGITUDE": -75.212304, "DATE_RANGE_START": 2021, "Total Visits": 179.0, "Total Visitors": 150.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 4.0, "Total Spend": 22244.0, "Total Transactions": 1456.0, "Total Customers": 1189.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.12, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.212304, 40.007477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-qpv", "LOCATION_NAME": "New York Bagel Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97966, "LONGITUDE": -75.268066, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 165.0, "POI_CBG": 421010098011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 16227.0, "Total Transactions": 568.0, "Total Customers": 461.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.93, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268066, 39.97966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-3nq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917267, "LONGITUDE": -75.172584, "DATE_RANGE_START": 2021, "Total Visits": 1200.0, "Total Visitors": 477.0, "POI_CBG": 421010039022.0, "MEDIAN_DWELL": 641.0, "Total Spend": 248.0, "Total Transactions": 48.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 5.81 }, "geometry": { "type": "Point", "coordinates": [ -75.172584, 39.917267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-kj9", "LOCATION_NAME": "The Pleasure Chest", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950864, "LONGITUDE": -75.175215, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 72.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 385.0, "Total Spend": 3560.0, "Total Transactions": 69.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.5, "MEDIAN_SPEND_PER_CUSTOMER": 47.93 }, "geometry": { "type": "Point", "coordinates": [ -75.175215, 39.950864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-389", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.084522, "LONGITUDE": -74.967251, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 253.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 34.0, "Total Spend": 1770.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 370.8, "MEDIAN_SPEND_PER_CUSTOMER": 370.8 }, "geometry": { "type": "Point", "coordinates": [ -74.967251, 40.084522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-mrk", "LOCATION_NAME": "Elixr Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952527, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2021, "Total Visits": 1432.0, "Total Visitors": 1012.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 299.0, "Total Spend": 260.0, "Total Transactions": 33.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.46, "MEDIAN_SPEND_PER_CUSTOMER": 5.59 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.952527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "LOCATION_NAME": "Bubblefish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2021, "Total Visits": 4516.0, "Total Visitors": 3222.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 16137.0, "Total Transactions": 337.0, "Total Customers": 303.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.47, "MEDIAN_SPEND_PER_CUSTOMER": 50.67 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pm5-2ff", "LOCATION_NAME": "Wokano", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937057, "LONGITUDE": -75.161863, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 260.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 36.0, "Total Spend": 2513.0, "Total Transactions": 50.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.62, "MEDIAN_SPEND_PER_CUSTOMER": 46.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161863, 39.937057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3nq", "LOCATION_NAME": "Nick's Roast Beef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.083763, "LONGITUDE": -74.966105, "DATE_RANGE_START": 2021, "Total Visits": 661.0, "Total Visitors": 482.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 84.0, "Total Spend": 8135.0, "Total Transactions": 141.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.08, "MEDIAN_SPEND_PER_CUSTOMER": 54.93 }, "geometry": { "type": "Point", "coordinates": [ -74.966105, 40.083763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "LOCATION_NAME": "Fishtown Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1930.0, "Total Transactions": 76.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.23, "MEDIAN_SPEND_PER_CUSTOMER": 26.55 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "LOCATION_NAME": "General Tso", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2352.0, "Total Transactions": 81.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.86, "MEDIAN_SPEND_PER_CUSTOMER": 47.82 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "LOCATION_NAME": "Italian Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2517.0, "Total Transactions": 177.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.34, "MEDIAN_SPEND_PER_CUSTOMER": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "LOCATION_NAME": "Falafel Time", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1388.0, "Total Transactions": 79.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.1, "MEDIAN_SPEND_PER_CUSTOMER": 14.49 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038624, "LONGITUDE": -75.106851, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10246.0, "Total Transactions": 582.0, "Total Customers": 461.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.106851, 40.038624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "LOCATION_NAME": "1 Stop Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 72.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5880.0, "Total Transactions": 322.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.29, "MEDIAN_SPEND_PER_CUSTOMER": 26.21 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "LOCATION_NAME": "Evan's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 7.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 41.0, "Total Spend": 2343.0, "Total Transactions": 126.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.8, "MEDIAN_SPEND_PER_CUSTOMER": 16.11 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-435", "LOCATION_NAME": "Fresh Gulf Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.920683, "LONGITUDE": -75.187828, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1406.0, "Total Transactions": 72.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.59, "MEDIAN_SPEND_PER_CUSTOMER": 22.12 }, "geometry": { "type": "Point", "coordinates": [ -75.187828, 39.920683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "LOCATION_NAME": "Just To Serve You", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 12.0, "POI_CBG": 421010102001.0, "MEDIAN_DWELL": 143.0, "Total Spend": 1843.0, "Total Transactions": 62.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.46, "MEDIAN_SPEND_PER_CUSTOMER": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "LOCATION_NAME": "Pizza & Steak Master", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 12.0, "POI_CBG": 421010253001.0, "MEDIAN_DWELL": 920.0, "Total Spend": 696.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.76, "MEDIAN_SPEND_PER_CUSTOMER": 27.34 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-dvz", "LOCATION_NAME": "Pietro Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.912309, "LONGITUDE": -75.174217, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 73.0, "Total Spend": 1691.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.8, "MEDIAN_SPEND_PER_CUSTOMER": 187.38 }, "geometry": { "type": "Point", "coordinates": [ -75.174217, 39.912309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p74-wtv", "LOCATION_NAME": "Naryan Auto Group", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.038499, "LONGITUDE": -75.035061, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010330001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 34845.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 2300.0, "MEDIAN_SPEND_PER_CUSTOMER": 2300.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035061, 40.038499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm4-pjv", "LOCATION_NAME": "Cardenas Oil & Vinegar Taproom", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.937768, "LONGITUDE": -75.158238, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 53.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 51.0, "Total Spend": 1382.0, "Total Transactions": 31.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.9, "MEDIAN_SPEND_PER_CUSTOMER": 37.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158238, 39.937768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "LOCATION_NAME": "Tommy Hilfiger", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089952, "LONGITUDE": -74.962035, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6870.0, "Total Transactions": 91.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.52, "MEDIAN_SPEND_PER_CUSTOMER": 57.12 }, "geometry": { "type": "Point", "coordinates": [ -74.962035, 40.089952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-dqf", "LOCATION_NAME": "Convenience food mart", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979848, "LONGITUDE": -75.253605, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010375002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 50.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.38, "MEDIAN_SPEND_PER_CUSTOMER": 10.38 }, "geometry": { "type": "Point", "coordinates": [ -75.253605, 39.979848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-vcq", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.998344, "LONGITUDE": -75.136151, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 55.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1130.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.58, "MEDIAN_SPEND_PER_CUSTOMER": 44.58 }, "geometry": { "type": "Point", "coordinates": [ -75.136151, 39.998344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "LOCATION_NAME": "Green Leaf Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 62.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2192.0, "Total Transactions": 143.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@63s-dw2-7t9", "LOCATION_NAME": "62nd Kim's Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962693, "LONGITUDE": -75.2448, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 64.0, "POI_CBG": 421010096003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2016.0, "Total Transactions": 119.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.18, "MEDIAN_SPEND_PER_CUSTOMER": 17.09 }, "geometry": { "type": "Point", "coordinates": [ -75.2448, 39.962693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-zvf", "LOCATION_NAME": "Tavern On the Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077151, "LONGITUDE": -75.208916, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 45.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 80.0, "Total Spend": 3863.0, "Total Transactions": 55.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.86, "MEDIAN_SPEND_PER_CUSTOMER": 68.12 }, "geometry": { "type": "Point", "coordinates": [ -75.208916, 40.077151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 200.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10589.0, "Total Transactions": 797.0, "Total Customers": 611.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.92, "MEDIAN_SPEND_PER_CUSTOMER": 13.34 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2021, "Total Visits": 1329.0, "Total Visitors": 1069.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 63324.0, "Total Transactions": 3539.0, "Total Customers": 2353.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 20.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgd-z9f", "LOCATION_NAME": "UrHomeInPhilly", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.956628, "LONGITUDE": -75.194459, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 64.0, "Total Spend": 472.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.58, "MEDIAN_SPEND_PER_CUSTOMER": 48.58 }, "geometry": { "type": "Point", "coordinates": [ -75.194459, 39.956628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmc-qcq", "LOCATION_NAME": "2 Street Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930224, "LONGITUDE": -75.148223, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 10.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 228.0, "Total Spend": 797.0, "Total Transactions": 38.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148223, 39.930224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p7x-dsq", "LOCATION_NAME": "Angelos Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042556, "LONGITUDE": -75.063892, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 12.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1392.0, "Total Transactions": 45.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.5, "MEDIAN_SPEND_PER_CUSTOMER": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063892, 40.042556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgb-3dv", "LOCATION_NAME": "Rex Pizza & Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956427, "LONGITUDE": -75.165441, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 286.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3815.0, "Total Transactions": 229.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.87, "MEDIAN_SPEND_PER_CUSTOMER": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -75.165441, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "LOCATION_NAME": "Monk's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2021, "Total Visits": 255.0, "Total Visitors": 239.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 76.0, "Total Spend": 29989.0, "Total Transactions": 492.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.32, "MEDIAN_SPEND_PER_CUSTOMER": 54.05 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hh5", "LOCATION_NAME": "Square on Square", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94849, "LONGITUDE": -75.174456, "DATE_RANGE_START": 2021, "Total Visits": 1282.0, "Total Visitors": 747.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 109.0, "Total Spend": 1452.0, "Total Transactions": 64.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.82, "MEDIAN_SPEND_PER_CUSTOMER": 22.95 }, "geometry": { "type": "Point", "coordinates": [ -75.174456, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999771, "LONGITUDE": -75.153727, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 131.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 816.0, "Total Transactions": 76.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.35, "MEDIAN_SPEND_PER_CUSTOMER": 13.38 }, "geometry": { "type": "Point", "coordinates": [ -75.153727, 39.999771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-zmk", "LOCATION_NAME": "The Good King Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941737, "LONGITUDE": -75.15419, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": null, "Total Spend": 1797.0, "Total Transactions": 31.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.8, "MEDIAN_SPEND_PER_CUSTOMER": 113.66 }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 39.941737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-mrk", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953042, "LONGITUDE": -75.167502, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 215.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 271.0, "Total Spend": 554.0, "Total Transactions": 31.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.56, "MEDIAN_SPEND_PER_CUSTOMER": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.167502, 39.953042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p7c-3dv", "LOCATION_NAME": "Marathon", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.06844, "LONGITUDE": -75.007839, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 36.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1129.0, "Total Transactions": 43.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.18, "MEDIAN_SPEND_PER_CUSTOMER": 22.34 }, "geometry": { "type": "Point", "coordinates": [ -75.007839, 40.06844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 45.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5688.0, "Total Transactions": 597.0, "Total Customers": 432.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.39, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "LOCATION_NAME": "Fairmount Pizza and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 55.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 32.0, "Total Spend": 21865.0, "Total Transactions": 1298.0, "Total Customers": 854.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.29, "MEDIAN_SPEND_PER_CUSTOMER": 18.93 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-9cq", "LOCATION_NAME": "Flame House Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058738, "LONGITUDE": -75.052763, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 55.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 86.0, "Total Spend": 141.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052763, 40.058738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-r6k", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97237, "LONGITUDE": -75.140976, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 57.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 194.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140976, 39.97237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-68v", "LOCATION_NAME": "The Bike Stop", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948357, "LONGITUDE": -75.159979, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 60.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 37.0, "Total Spend": 17099.0, "Total Transactions": 995.0, "Total Customers": 317.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 26.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159979, 39.948357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.021127, "LONGITUDE": -75.149781, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 279.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 888.0, "Total Transactions": 41.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.149781, 40.021127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2021, "Total Visits": 365.0, "Total Visitors": 236.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 227.0, "Total Transactions": 24.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.49, "MEDIAN_SPEND_PER_CUSTOMER": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "LOCATION_NAME": "Athleta", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.94988, "LONGITUDE": -75.170326, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 351.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 5.0, "Total Spend": 25105.0, "Total Transactions": 282.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.38, "MEDIAN_SPEND_PER_CUSTOMER": 75.99 }, "geometry": { "type": "Point", "coordinates": [ -75.170326, 39.94988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "LOCATION_NAME": "lululemon athletica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2021, "Total Visits": 363.0, "Total Visitors": 341.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 7.0, "Total Spend": 26975.0, "Total Transactions": 251.0, "Total Customers": 215.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.0, "MEDIAN_SPEND_PER_CUSTOMER": 104.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-vvf", "LOCATION_NAME": "Steve Madden", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.089544, "LONGITUDE": -74.961668, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 167.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1698.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.73, "MEDIAN_SPEND_PER_CUSTOMER": 38.73 }, "geometry": { "type": "Point", "coordinates": [ -74.961668, 40.089544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043955, "LONGITUDE": -75.231236, "DATE_RANGE_START": 2021, "Total Visits": 332.0, "Total Visitors": 246.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 351.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.32, "MEDIAN_SPEND_PER_CUSTOMER": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.231236, 40.043955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-sbk", "LOCATION_NAME": "Coffee House Too", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97675, "LONGITUDE": -75.123708, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 55.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 58.0, "Total Spend": 348.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.99, "MEDIAN_SPEND_PER_CUSTOMER": 72.99 }, "geometry": { "type": "Point", "coordinates": [ -75.123708, 39.97675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "LOCATION_NAME": "Drury Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 62.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 22557.0, "Total Transactions": 544.0, "Total Customers": 442.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.25, "MEDIAN_SPEND_PER_CUSTOMER": 33.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "LOCATION_NAME": "Aura", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.961228, "LONGITUDE": -75.138826, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 126.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 187156.0, "Total Transactions": 2663.0, "Total Customers": 2251.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.36, "MEDIAN_SPEND_PER_CUSTOMER": 51.58 }, "geometry": { "type": "Point", "coordinates": [ -75.138826, 39.961228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-sbk", "LOCATION_NAME": "Izzy's 33", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927844, "LONGITUDE": -75.159073, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 165.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 267.0, "Total Spend": 1998.0, "Total Transactions": 43.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159073, 39.927844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-8vz", "LOCATION_NAME": "Dizengoff", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953032, "LONGITUDE": -75.192553, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 2288.0, "Total Transactions": 88.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.29, "MEDIAN_SPEND_PER_CUSTOMER": 20.29 }, "geometry": { "type": "Point", "coordinates": [ -75.192553, 39.953032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "LOCATION_NAME": "Crown Chicken and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 103.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 9495.0, "Total Transactions": 752.0, "Total Customers": 513.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 14.14 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 263.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1471.0, "Total Transactions": 79.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.58, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914434, "LONGITUDE": -75.156267, "DATE_RANGE_START": 2021, "Total Visits": 356.0, "Total Visitors": 227.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4916.0, "Total Transactions": 766.0, "Total Customers": 377.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.156267, 39.914434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-zj9", "LOCATION_NAME": "Pantry I Food Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013698, "LONGITUDE": -75.069042, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 141.0, "POI_CBG": 421010298005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 69.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069042, 40.013698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-gc5", "LOCATION_NAME": "Verree Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.072408, "LONGITUDE": -75.076041, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 86.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 212.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.95 }, "geometry": { "type": "Point", "coordinates": [ -75.076041, 40.072408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-54v", "LOCATION_NAME": "United Fried Chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039073, "LONGITUDE": -75.143922, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 57.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 968.0, "Total Transactions": 88.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.84, "MEDIAN_SPEND_PER_CUSTOMER": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.143922, 40.039073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnw-nt9", "LOCATION_NAME": "Fishtown Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.970532, "LONGITUDE": -75.134266, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 62.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 25.0, "Total Spend": 28185.0, "Total Transactions": 890.0, "Total Customers": 592.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134266, 39.970532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "LOCATION_NAME": "Open House", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950268, "LONGITUDE": -75.161745, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 64.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 20841.0, "Total Transactions": 444.0, "Total Customers": 382.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.99, "MEDIAN_SPEND_PER_CUSTOMER": 41.04 }, "geometry": { "type": "Point", "coordinates": [ -75.161745, 39.950268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-b8v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.934826, "LONGITUDE": -75.178911, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 64.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 446.0, "Total Transactions": 36.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178911, 39.934826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-zvf", "LOCATION_NAME": "South Street Magic", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.941265, "LONGITUDE": -75.150408, "DATE_RANGE_START": 2021, "Total Visits": 656.0, "Total Visitors": 473.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1053.0, "Total Transactions": 41.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.89, "MEDIAN_SPEND_PER_CUSTOMER": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150408, 39.941265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.936229, "LONGITUDE": -75.194533, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 69.0, "POI_CBG": 421010033006.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8342.0, "Total Transactions": 523.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.98, "MEDIAN_SPEND_PER_CUSTOMER": 20.94 }, "geometry": { "type": "Point", "coordinates": [ -75.194533, 39.936229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924749, "LONGITUDE": -75.169152, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 72.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4115.0, "Total Transactions": 389.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 10.67 }, "geometry": { "type": "Point", "coordinates": [ -75.169152, 39.924749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.080365, "LONGITUDE": -75.171922, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 122.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1289.0, "Total Transactions": 79.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.96, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.171922, 40.080365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "LOCATION_NAME": "VaporFi", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2021, "Total Visits": 749.0, "Total Visitors": 461.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 184.0, "Total Spend": 4643.0, "Total Transactions": 86.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.66, "MEDIAN_SPEND_PER_CUSTOMER": 57.22 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "LOCATION_NAME": "The Pizza Store", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 24.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 263.0, "Total Spend": 1910.0, "Total Transactions": 60.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.54, "MEDIAN_SPEND_PER_CUSTOMER": 26.73 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-4d9", "LOCATION_NAME": "Americas Quality Tire", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.020793, "LONGITUDE": -75.063071, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 31.0, "POI_CBG": 421010319003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 4243.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 160.0, "MEDIAN_SPEND_PER_CUSTOMER": 168.9 }, "geometry": { "type": "Point", "coordinates": [ -75.063071, 40.020793 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-phn-87q", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.080555, "LONGITUDE": -75.171342, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 6367.0, "Total Transactions": 62.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171342, 40.080555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2892.0, "Total Transactions": 53.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.74, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 40.079117, "LONGITUDE": -75.027659, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 72.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 181.0, "Total Spend": 3450.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.25, "MEDIAN_SPEND_PER_CUSTOMER": 59.25 }, "geometry": { "type": "Point", "coordinates": [ -75.027659, 40.079117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 72.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 85.0, "Total Spend": 7227.0, "Total Transactions": 1000.0, "Total Customers": 556.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.79, "MEDIAN_SPEND_PER_CUSTOMER": 9.92 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "LOCATION_NAME": "Pat's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2021, "Total Visits": 112.0, "Total Visitors": 98.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4593.0, "Total Transactions": 298.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm3-vxq", "LOCATION_NAME": "Noir Restaurant & Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926292, "LONGITUDE": -75.16736, "DATE_RANGE_START": 2021, "Total Visits": 735.0, "Total Visitors": 432.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 80.0, "Total Spend": 7904.0, "Total Transactions": 107.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.5, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16736, 39.926292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99223, "LONGITUDE": -75.09972, "DATE_RANGE_START": 2021, "Total Visits": 391.0, "Total Visitors": 270.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 9793.0, "Total Transactions": 255.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.52, "MEDIAN_SPEND_PER_CUSTOMER": 38.94 }, "geometry": { "type": "Point", "coordinates": [ -75.09972, 39.99223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "LOCATION_NAME": "Little Pete's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2021, "Total Visits": 1936.0, "Total Visitors": 1198.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 107.0, "Total Spend": 3428.0, "Total Transactions": 69.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.51, "MEDIAN_SPEND_PER_CUSTOMER": 48.27 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2021, "Total Visits": 189.0, "Total Visitors": 174.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 6161.0, "Total Transactions": 72.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.0, "MEDIAN_SPEND_PER_CUSTOMER": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmb-8sq", "LOCATION_NAME": "South Fellini", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951564, "LONGITUDE": -75.158766, "DATE_RANGE_START": 2021, "Total Visits": 7485.0, "Total Visitors": 5687.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 415.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158766, 39.951564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "LOCATION_NAME": "A Plus", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 131.0, "POI_CBG": 421010298005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3024.0, "Total Transactions": 263.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.83, "MEDIAN_SPEND_PER_CUSTOMER": 11.94 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2021, "Total Visits": 403.0, "Total Visitors": 308.0, "POI_CBG": 421010268002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3600.0, "Total Transactions": 272.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050125, "LONGITUDE": -75.141867, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 88.0, "POI_CBG": 421010268004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 695.0, "Total Transactions": 67.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.2, "MEDIAN_SPEND_PER_CUSTOMER": 9.51 }, "geometry": { "type": "Point", "coordinates": [ -75.141867, 40.050125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.055974, "LONGITUDE": -75.005102, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 215.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 4.0, "Total Spend": 942.0, "Total Transactions": 41.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.03, "MEDIAN_SPEND_PER_CUSTOMER": 27.35 }, "geometry": { "type": "Point", "coordinates": [ -75.005102, 40.055974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvw-wzf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.958527, "LONGITUDE": -75.235976, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 134.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1479.0, "Total Transactions": 146.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.33 }, "geometry": { "type": "Point", "coordinates": [ -75.235976, 39.958527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-ht9", "LOCATION_NAME": "Vapor Hut", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.0786, "LONGITUDE": -75.027064, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 167.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9869.0, "Total Transactions": 258.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.42, "MEDIAN_SPEND_PER_CUSTOMER": 40.49 }, "geometry": { "type": "Point", "coordinates": [ -75.027064, 40.0786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-6zf", "LOCATION_NAME": "American Freight", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.085479, "LONGITUDE": -74.963644, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 148.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7831.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 1430.43, "MEDIAN_SPEND_PER_CUSTOMER": 1430.43 }, "geometry": { "type": "Point", "coordinates": [ -74.963644, 40.085479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2021, "Total Visits": 1232.0, "Total Visitors": 757.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 33837.0, "Total Transactions": 3107.0, "Total Customers": 1506.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.2, "MEDIAN_SPEND_PER_CUSTOMER": 11.95 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-yd9", "LOCATION_NAME": "Somerton Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.129213, "LONGITUDE": -75.014014, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 210.0, "POI_CBG": 421010365013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 964.0, "Total Transactions": 41.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 50.62 }, "geometry": { "type": "Point", "coordinates": [ -75.014014, 40.129213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979068, "LONGITUDE": -75.159667, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 143.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2711.0, "Total Transactions": 274.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.58, "MEDIAN_SPEND_PER_CUSTOMER": 10.22 }, "geometry": { "type": "Point", "coordinates": [ -75.159667, 39.979068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 184.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2613.0, "Total Transactions": 212.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.19, "MEDIAN_SPEND_PER_CUSTOMER": 12.01 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.016586, "LONGITUDE": -75.149894, "DATE_RANGE_START": 2021, "Total Visits": 1339.0, "Total Visitors": 1014.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1498.0, "Total Transactions": 57.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.51, "MEDIAN_SPEND_PER_CUSTOMER": 25.41 }, "geometry": { "type": "Point", "coordinates": [ -75.149894, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012072, "LONGITUDE": -75.115243, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 105.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 603.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.44 }, "geometry": { "type": "Point", "coordinates": [ -75.115243, 40.012072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010298002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 521.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.84, "MEDIAN_SPEND_PER_CUSTOMER": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pgb-7t9", "LOCATION_NAME": "Plants Etc", "TOP_CATEGORY": "Florists", "LATITUDE": 39.967525, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": null, "Total Spend": 400.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.967525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "LOCATION_NAME": "The Tasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 169.0, "Total Spend": 9826.0, "Total Transactions": 282.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.64, "MEDIAN_SPEND_PER_CUSTOMER": 36.82 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-phq-nbk", "LOCATION_NAME": "Reyes Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.054327, "LONGITUDE": -75.148175, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 24.0, "POI_CBG": 421010267004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 344.0, "Total Transactions": 57.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148175, 40.054327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "LOCATION_NAME": "Mega Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010277003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1945.0, "Total Transactions": 81.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.2, "MEDIAN_SPEND_PER_CUSTOMER": 19.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "LOCATION_NAME": "Cafe La Maude", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010367002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 32809.0, "Total Transactions": 542.0, "Total Customers": 499.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.86, "MEDIAN_SPEND_PER_CUSTOMER": 61.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079208, "LONGITUDE": -75.02664, "DATE_RANGE_START": 2021, "Total Visits": 401.0, "Total Visitors": 327.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12037.0, "Total Transactions": 563.0, "Total Customers": 439.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.19, "MEDIAN_SPEND_PER_CUSTOMER": 20.39 }, "geometry": { "type": "Point", "coordinates": [ -75.02664, 40.079208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 272.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 34513.0, "Total Transactions": 2652.0, "Total Customers": 1857.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.61, "MEDIAN_SPEND_PER_CUSTOMER": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 124.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2632.0, "Total Transactions": 267.0, "Total Customers": 227.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.14, "MEDIAN_SPEND_PER_CUSTOMER": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942532, "LONGITUDE": -75.157241, "DATE_RANGE_START": 2021, "Total Visits": 406.0, "Total Visitors": 370.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7107.0, "Total Transactions": 1010.0, "Total Customers": 630.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.79, "MEDIAN_SPEND_PER_CUSTOMER": 6.77 }, "geometry": { "type": "Point", "coordinates": [ -75.157241, 39.942532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-7yv", "LOCATION_NAME": "Home2 Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.953662, "LONGITUDE": -75.15975, "DATE_RANGE_START": 2021, "Total Visits": 4091.0, "Total Visitors": 2833.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 263.0, "Total Spend": 10714.0, "Total Transactions": 31.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 352.52, "MEDIAN_SPEND_PER_CUSTOMER": 352.52 }, "geometry": { "type": "Point", "coordinates": [ -75.15975, 39.953662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 184.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 486.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.75, "MEDIAN_SPEND_PER_CUSTOMER": 101.75 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "LOCATION_NAME": "Brandy Melville", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2021, "Total Visits": 735.0, "Total Visitors": 637.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 35303.0, "Total Transactions": 673.0, "Total Customers": 601.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.2, "MEDIAN_SPEND_PER_CUSTOMER": 42.18 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2021, "Total Visits": 6950.0, "Total Visitors": 4026.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 347315.0, "Total Transactions": 6341.0, "Total Customers": 3730.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.09, "MEDIAN_SPEND_PER_CUSTOMER": 56.33 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.021226, "LONGITUDE": -75.14987, "DATE_RANGE_START": 2021, "Total Visits": 666.0, "Total Visitors": 363.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 334.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.96, "MEDIAN_SPEND_PER_CUSTOMER": 17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14987, 40.021226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8m-6rk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.026735, "LONGITUDE": -75.064295, "DATE_RANGE_START": 2021, "Total Visits": 406.0, "Total Visitors": 332.0, "POI_CBG": 421010319001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 555.0, "Total Transactions": 48.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.98, "MEDIAN_SPEND_PER_CUSTOMER": 20.32 }, "geometry": { "type": "Point", "coordinates": [ -75.064295, 40.026735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "LOCATION_NAME": "Microtel Inn and Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2021, "Total Visits": 587.0, "Total Visitors": 346.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 450.0, "Total Spend": 15020.0, "Total Transactions": 100.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 133.67, "MEDIAN_SPEND_PER_CUSTOMER": 150.72 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "LOCATION_NAME": "Warwick Hotel Rittenhouse Square", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949172, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2021, "Total Visits": 2551.0, "Total Visitors": 1592.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 363.0, "Total Spend": 7840.0, "Total Transactions": 48.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.0, "MEDIAN_SPEND_PER_CUSTOMER": 92.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.949172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "LOCATION_NAME": "Garden Court Eatery & Beer", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952636, "LONGITUDE": -75.21767, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10581.0, "Total Transactions": 594.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.25, "MEDIAN_SPEND_PER_CUSTOMER": 24.54 }, "geometry": { "type": "Point", "coordinates": [ -75.21767, 39.952636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phd-h89", "LOCATION_NAME": "El Limon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002787, "LONGITUDE": -75.222273, "DATE_RANGE_START": 2021, "Total Visits": 711.0, "Total Visitors": 575.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2848.0, "Total Transactions": 93.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.68, "MEDIAN_SPEND_PER_CUSTOMER": 33.17 }, "geometry": { "type": "Point", "coordinates": [ -75.222273, 40.002787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "LOCATION_NAME": "Morgan's Pier", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955033, "LONGITUDE": -75.13891, "DATE_RANGE_START": 2021, "Total Visits": 742.0, "Total Visitors": 632.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 275746.0, "Total Transactions": 6745.0, "Total Customers": 3979.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13891, 39.955033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p83-xdv", "LOCATION_NAME": "Mayura Indian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086185, "LONGITUDE": -75.045124, "DATE_RANGE_START": 2021, "Total Visits": 2291.0, "Total Visitors": 1110.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 337.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.52, "MEDIAN_SPEND_PER_CUSTOMER": 70.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045124, 40.086185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "LOCATION_NAME": "Banana Leaf", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953737, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 129.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 5595.0, "Total Transactions": 136.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.53, "MEDIAN_SPEND_PER_CUSTOMER": 35.65 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.953737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.048258, "LONGITUDE": -75.056175, "DATE_RANGE_START": 2021, "Total Visits": 289.0, "Total Visitors": 224.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 27.0, "Total Spend": 11569.0, "Total Transactions": 229.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.63, "MEDIAN_SPEND_PER_CUSTOMER": 39.96 }, "geometry": { "type": "Point", "coordinates": [ -75.056175, 40.048258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2021, "Total Visits": 289.0, "Total Visitors": 196.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7480.0, "Total Transactions": 439.0, "Total Customers": 379.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.06, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p7v-qj9", "LOCATION_NAME": "Oxford Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.066404, "LONGITUDE": -75.083593, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 153.0, "POI_CBG": 421010339001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 545.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.083593, 40.066404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2021, "Total Visits": 556.0, "Total Visitors": 496.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 40365.0, "Total Transactions": 675.0, "Total Customers": 611.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.02, "MEDIAN_SPEND_PER_CUSTOMER": 45.57 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2021, "Total Visits": 1566.0, "Total Visitors": 1088.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 201188.0, "Total Transactions": 10069.0, "Total Customers": 5556.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.1, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-6x5", "LOCATION_NAME": "Brooks Brothers", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949887, "LONGITUDE": -75.166618, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 239.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 11684.0, "Total Transactions": 38.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.01, "MEDIAN_SPEND_PER_CUSTOMER": 109.01 }, "geometry": { "type": "Point", "coordinates": [ -75.166618, 39.949887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2021, "Total Visits": 852.0, "Total Visitors": 656.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 48506.0, "Total Transactions": 1098.0, "Total Customers": 912.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.03, "MEDIAN_SPEND_PER_CUSTOMER": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.067993, "LONGITUDE": -75.198422, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 100.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 14953.0, "Total Transactions": 425.0, "Total Customers": 346.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.78, "MEDIAN_SPEND_PER_CUSTOMER": 29.41 }, "geometry": { "type": "Point", "coordinates": [ -75.198422, 40.067993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.0441, "LONGITUDE": -75.232794, "DATE_RANGE_START": 2021, "Total Visits": 1100.0, "Total Visitors": 749.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 245267.0, "Total Transactions": 6081.0, "Total Customers": 3437.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.29, "MEDIAN_SPEND_PER_CUSTOMER": 44.49 }, "geometry": { "type": "Point", "coordinates": [ -75.232794, 40.0441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.993729, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 103.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1857.0, "Total Transactions": 86.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.64, "MEDIAN_SPEND_PER_CUSTOMER": 21.07 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.993729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pmb-7t9", "LOCATION_NAME": "Jeans Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949139, "LONGITUDE": -75.163554, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 119.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1990.0, "Total Transactions": 165.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.163554, 39.949139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj6-bx5", "LOCATION_NAME": "Nam Vang Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037327, "LONGITUDE": -75.108009, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 84.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8378.0, "Total Transactions": 117.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.0, "MEDIAN_SPEND_PER_CUSTOMER": 75.99 }, "geometry": { "type": "Point", "coordinates": [ -75.108009, 40.037327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2021, "Total Visits": 745.0, "Total Visitors": 499.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 3.0, "Total Spend": 33468.0, "Total Transactions": 2740.0, "Total Customers": 1957.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.13, "MEDIAN_SPEND_PER_CUSTOMER": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-zfz", "LOCATION_NAME": "Sweet Treat Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934878, "LONGITUDE": -75.167189, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 112.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 349.0, "Total Spend": 1257.0, "Total Transactions": 110.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.38 }, "geometry": { "type": "Point", "coordinates": [ -75.167189, 39.934878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938246, "LONGITUDE": -75.166948, "DATE_RANGE_START": 2021, "Total Visits": 6308.0, "Total Visitors": 3668.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 8441.0, "Total Transactions": 1115.0, "Total Customers": 742.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.89, "MEDIAN_SPEND_PER_CUSTOMER": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.938246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2021, "Total Visits": 22380.0, "Total Visitors": 15420.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2294.0, "Total Transactions": 504.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.99, "MEDIAN_SPEND_PER_CUSTOMER": 5.97 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9s-j9z", "LOCATION_NAME": "Room Service 360", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.111182, "LONGITUDE": -75.003163, "DATE_RANGE_START": 2021, "Total Visits": 807.0, "Total Visitors": 558.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 234.0, "Total Spend": 4325.0, "Total Transactions": 115.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.7, "MEDIAN_SPEND_PER_CUSTOMER": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003163, 40.111182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmb-7yv", "LOCATION_NAME": "John Yi Fish Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953479, "LONGITUDE": -75.159041, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 5039.0, "Total Transactions": 141.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.99, "MEDIAN_SPEND_PER_CUSTOMER": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.159041, 39.953479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 255.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 22645.0, "Total Transactions": 1446.0, "Total Customers": 764.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.3, "MEDIAN_SPEND_PER_CUSTOMER": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjb-6ff", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.04808, "LONGITUDE": -75.143086, "DATE_RANGE_START": 2021, "Total Visits": 1107.0, "Total Visitors": 766.0, "POI_CBG": 421010277001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 167.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.51, "MEDIAN_SPEND_PER_CUSTOMER": 20.01 }, "geometry": { "type": "Point", "coordinates": [ -75.143086, 40.04808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-sbk", "LOCATION_NAME": "King Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.018597, "LONGITUDE": -75.129931, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": null, "Total Spend": 1135.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.03, "MEDIAN_SPEND_PER_CUSTOMER": 37.03 }, "geometry": { "type": "Point", "coordinates": [ -75.129931, 40.018597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "LOCATION_NAME": "Head House Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.940599, "LONGITUDE": -75.145587, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 5.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 582.0, "Total Spend": 2768.0, "Total Transactions": 84.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 32.35 }, "geometry": { "type": "Point", "coordinates": [ -75.145587, 39.940599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.959702, "LONGITUDE": -75.147615, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 248.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 401783.0, "Total Transactions": 9852.0, "Total Customers": 5599.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 45.42 }, "geometry": { "type": "Point", "coordinates": [ -75.147615, 39.959702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvw-bhq", "LOCATION_NAME": "Top Taste", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961231, "LONGITUDE": -75.224868, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 754.0, "Total Transactions": 33.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224868, 39.961231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p9w-dvz", "LOCATION_NAME": "Angelo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.121593, "LONGITUDE": -75.03516, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010358002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5506.0, "Total Transactions": 267.0, "Total Customers": 241.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.21, "MEDIAN_SPEND_PER_CUSTOMER": 20.43 }, "geometry": { "type": "Point", "coordinates": [ -75.03516, 40.121593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-6zf", "LOCATION_NAME": "Petes Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964375, "LONGITUDE": -75.204736, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1196.0, "Total Transactions": 57.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 18.79 }, "geometry": { "type": "Point", "coordinates": [ -75.204736, 39.964375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "LOCATION_NAME": "Revolution Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 36.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 5775.0, "Total Transactions": 279.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.99, "MEDIAN_SPEND_PER_CUSTOMER": 21.44 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p8j-94v", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034583, "LONGITUDE": -75.044102, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 110.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.044102, 40.034583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj4-3qz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017536, "LONGITUDE": -75.148496, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 10025.0, "Total Transactions": 365.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.35, "MEDIAN_SPEND_PER_CUSTOMER": 33.06 }, "geometry": { "type": "Point", "coordinates": [ -75.148496, 40.017536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-68v", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051732, "LONGITUDE": -75.010927, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4465.0, "Total Transactions": 172.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.09, "MEDIAN_SPEND_PER_CUSTOMER": 26.51 }, "geometry": { "type": "Point", "coordinates": [ -75.010927, 40.051732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "LOCATION_NAME": "New Star Express Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010111004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2946.0, "Total Transactions": 112.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 29.65 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm7-nwk", "LOCATION_NAME": "The Fresh Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934521, "LONGITUDE": -75.179405, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 444.0, "Total Spend": 12.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.5, "MEDIAN_SPEND_PER_CUSTOMER": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179405, 39.934521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2021, "Total Visits": 1506.0, "Total Visitors": 838.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8381.0, "Total Transactions": 446.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.23, "MEDIAN_SPEND_PER_CUSTOMER": 25.03 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2021, "Total Visits": 914.0, "Total Visitors": 730.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 4335.0, "Total Transactions": 88.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.82, "MEDIAN_SPEND_PER_CUSTOMER": 44.94 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-xnq", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.87811, "LONGITUDE": -75.239425, "DATE_RANGE_START": 2021, "Total Visits": 232048.0, "Total Visitors": 147833.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 57.0, "Total Spend": 5006.0, "Total Transactions": 95.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.19, "MEDIAN_SPEND_PER_CUSTOMER": 39.19 }, "geometry": { "type": "Point", "coordinates": [ -75.239425, 39.87811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6zf", "LOCATION_NAME": "Royal Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.085942, "LONGITUDE": -74.962636, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 81.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2162.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 122.0, "MEDIAN_SPEND_PER_CUSTOMER": 122.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962636, 40.085942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.964853, "LONGITUDE": -75.204438, "DATE_RANGE_START": 2021, "Total Visits": 325.0, "Total Visitors": 193.0, "POI_CBG": 421010107002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 527.0, "Total Transactions": 50.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.22, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.204438, 39.964853 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-2zf", "LOCATION_NAME": "Vapor Funky Monkey", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.024206, "LONGITUDE": -75.220514, "DATE_RANGE_START": 2021, "Total Visits": 494.0, "Total Visitors": 389.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 64.0, "Total Spend": 401.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.07, "MEDIAN_SPEND_PER_CUSTOMER": 84.07 }, "geometry": { "type": "Point", "coordinates": [ -75.220514, 40.024206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "LOCATION_NAME": "Sumo Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": null, "Total Spend": 1774.0, "Total Transactions": 57.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.01, "MEDIAN_SPEND_PER_CUSTOMER": 31.22 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "LOCATION_NAME": "Cafe Lift", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 26.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 518.0, "Total Spend": 27080.0, "Total Transactions": 625.0, "Total Customers": 585.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.4, "MEDIAN_SPEND_PER_CUSTOMER": 41.64 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "LOCATION_NAME": "Ibis Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010113002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2656.0, "Total Transactions": 98.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.55, "MEDIAN_SPEND_PER_CUSTOMER": 45.1 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm4-d35", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922429, "LONGITUDE": -75.169649, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2323.0, "Total Transactions": 162.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.84, "MEDIAN_SPEND_PER_CUSTOMER": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.169649, 39.922429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950471, "LONGITUDE": -75.146166, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 38.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 324.0, "Total Spend": 2216.0, "Total Transactions": 81.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.05, "MEDIAN_SPEND_PER_CUSTOMER": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -75.146166, 39.950471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmb-fpv", "LOCATION_NAME": "Locust Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947233, "LONGITUDE": -75.157426, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 57.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 291.0, "Total Spend": 11923.0, "Total Transactions": 305.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.02, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157426, 39.947233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2021, "Total Visits": 568.0, "Total Visitors": 408.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6740.0, "Total Transactions": 212.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.98, "MEDIAN_SPEND_PER_CUSTOMER": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.902552, "LONGITUDE": -75.240445, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 289.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7784.0, "Total Transactions": 212.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.55, "MEDIAN_SPEND_PER_CUSTOMER": 28.97 }, "geometry": { "type": "Point", "coordinates": [ -75.240445, 39.902552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-rp9", "LOCATION_NAME": "Sunrise Breakfast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066142, "LONGITUDE": -75.158748, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 125.0, "Total Spend": 1108.0, "Total Transactions": 53.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.2, "MEDIAN_SPEND_PER_CUSTOMER": 26.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158748, 40.066142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.064353, "LONGITUDE": -75.238205, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 95.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 419.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.72, "MEDIAN_SPEND_PER_CUSTOMER": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.238205, 40.064353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.928169, "LONGITUDE": -75.230056, "DATE_RANGE_START": 2021, "Total Visits": 544.0, "Total Visitors": 394.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 892.0, "Total Transactions": 33.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.19, "MEDIAN_SPEND_PER_CUSTOMER": 40.62 }, "geometry": { "type": "Point", "coordinates": [ -75.230056, 39.928169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "LOCATION_NAME": "Produce Junction", "TOP_CATEGORY": "Florists", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2021, "Total Visits": 425.0, "Total Visitors": 325.0, "POI_CBG": 421010120001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1259.0, "Total Transactions": 24.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.25, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-syv", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981631, "LONGITUDE": -75.144038, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010156002.0, "MEDIAN_DWELL": null, "Total Spend": 2056.0, "Total Transactions": 119.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.35, "MEDIAN_SPEND_PER_CUSTOMER": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144038, 39.981631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-w6k", "LOCATION_NAME": "Food & Friends", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948295, "LONGITUDE": -75.174192, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 155.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 2.0, "Total Spend": 22685.0, "Total Transactions": 1150.0, "Total Customers": 690.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.95, "MEDIAN_SPEND_PER_CUSTOMER": 23.04 }, "geometry": { "type": "Point", "coordinates": [ -75.174192, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "LOCATION_NAME": "Arch Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953757, "LONGITUDE": -75.15607, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 146.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1165.0, "Total Transactions": 36.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15607, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-hh5", "LOCATION_NAME": "Seulanga", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927765, "LONGITUDE": -75.175722, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010037011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 113.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.175722, 39.927765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2021, "Total Visits": 1768.0, "Total Visitors": 1129.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12514.0, "Total Transactions": 597.0, "Total Customers": 446.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.014555, "LONGITUDE": -75.15728, "DATE_RANGE_START": 2021, "Total Visits": 1186.0, "Total Visitors": 842.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 29368.0, "Total Transactions": 1122.0, "Total Customers": 594.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.04 }, "geometry": { "type": "Point", "coordinates": [ -75.15728, 40.014555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "LOCATION_NAME": "1 Tippling Place", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 43.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3298.0, "Total Transactions": 62.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.5, "MEDIAN_SPEND_PER_CUSTOMER": 39.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-xkf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.94872, "LONGITUDE": -75.21312, "DATE_RANGE_START": 2021, "Total Visits": 1971.0, "Total Visitors": 1229.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1705.0, "Total Transactions": 76.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.56, "MEDIAN_SPEND_PER_CUSTOMER": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.21312, 39.94872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bzf", "LOCATION_NAME": "Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025762, "LONGITUDE": -75.22385, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3917.0, "Total Transactions": 105.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.07, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22385, 40.025762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "LOCATION_NAME": "Allegro Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 98.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 45.0, "Total Spend": 22231.0, "Total Transactions": 1375.0, "Total Customers": 890.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 17.98 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2021, "Total Visits": 632.0, "Total Visitors": 451.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3146.0, "Total Transactions": 308.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "LOCATION_NAME": "Engimono Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2021, "Total Visits": 198.0, "Total Visitors": 110.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 370.0, "Total Spend": 11116.0, "Total Transactions": 267.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.63, "MEDIAN_SPEND_PER_CUSTOMER": 44.15 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2021, "Total Visits": 573.0, "Total Visitors": 413.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10854.0, "Total Transactions": 1411.0, "Total Customers": 778.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 8.57 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-tvz", "LOCATION_NAME": "Via Locusta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949069, "LONGITUDE": -75.170305, "DATE_RANGE_START": 2021, "Total Visits": 1310.0, "Total Visitors": 632.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 263.0, "Total Spend": 12962.0, "Total Transactions": 103.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 103.0, "MEDIAN_SPEND_PER_CUSTOMER": 99.78 }, "geometry": { "type": "Point", "coordinates": [ -75.170305, 39.949069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@63s-dvr-hyv", "LOCATION_NAME": "Taste Africa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925131, "LONGITUDE": -75.234583, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010063001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 60.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234583, 39.925131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "LOCATION_NAME": "Ruby Tuesday", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.887819, "LONGITUDE": -75.247004, "DATE_RANGE_START": 2021, "Total Visits": 630.0, "Total Visitors": 582.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 22295.0, "Total Transactions": 425.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.29, "MEDIAN_SPEND_PER_CUSTOMER": 51.05 }, "geometry": { "type": "Point", "coordinates": [ -75.247004, 39.887819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-6ff", "LOCATION_NAME": "Barra Rossa Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948634, "LONGITUDE": -75.157218, "DATE_RANGE_START": 2021, "Total Visits": 1368.0, "Total Visitors": 1115.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1929.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 116.32, "MEDIAN_SPEND_PER_CUSTOMER": 116.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157218, 39.948634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950371, "LONGITUDE": -75.158373, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 136.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 9414.0, "Total Transactions": 869.0, "Total Customers": 671.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.158373, 39.950371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 234.0, "POI_CBG": 421010347013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1056.0, "Total Transactions": 88.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.74, "MEDIAN_SPEND_PER_CUSTOMER": 9.01 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "LOCATION_NAME": "Rosario's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 24.0, "POI_CBG": 421010022002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 270.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.15, "MEDIAN_SPEND_PER_CUSTOMER": 28.15 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-pvz", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994647, "LONGITUDE": -75.095265, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 107.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5301.0, "Total Transactions": 270.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.66, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.095265, 39.994647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "LOCATION_NAME": "South Square Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2021, "Total Visits": 434.0, "Total Visitors": 234.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 73996.0, "Total Transactions": 3031.0, "Total Customers": 1255.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.94, "MEDIAN_SPEND_PER_CUSTOMER": 28.28 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "LOCATION_NAME": "The Fresh Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2021, "Total Visits": 699.0, "Total Visitors": 360.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 53198.0, "Total Transactions": 1095.0, "Total Customers": 649.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.35, "MEDIAN_SPEND_PER_CUSTOMER": 48.79 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "LOCATION_NAME": "Menagerie Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 10971.0, "Total Transactions": 1251.0, "Total Customers": 866.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.69, "MEDIAN_SPEND_PER_CUSTOMER": 8.48 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2021, "Total Visits": 284.0, "Total Visitors": 196.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1531.0, "Total Transactions": 172.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.38, "MEDIAN_SPEND_PER_CUSTOMER": 21.39 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.060844, "LONGITUDE": -75.192031, "DATE_RANGE_START": 2021, "Total Visits": 776.0, "Total Visitors": 537.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 81396.0, "Total Transactions": 9370.0, "Total Customers": 2709.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.27, "MEDIAN_SPEND_PER_CUSTOMER": 12.03 }, "geometry": { "type": "Point", "coordinates": [ -75.192031, 40.060844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2021, "Total Visits": 580.0, "Total Visitors": 351.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 11567.0, "Total Transactions": 494.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.96, "MEDIAN_SPEND_PER_CUSTOMER": 24.47 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "LOCATION_NAME": "China City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 50.0, "POI_CBG": 421010311011.0, "MEDIAN_DWELL": 695.0, "Total Spend": 786.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.75, "MEDIAN_SPEND_PER_CUSTOMER": 24.13 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.974361, "LONGITUDE": -75.199089, "DATE_RANGE_START": 2021, "Total Visits": 1764.0, "Total Visitors": 1473.0, "POI_CBG": 421010110001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1668.0, "Total Transactions": 72.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.03 }, "geometry": { "type": "Point", "coordinates": [ -75.199089, 39.974361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-2ff", "LOCATION_NAME": "Wyoming Mini market", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.020508, "LONGITUDE": -75.11429, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 57.0, "POI_CBG": 421010289022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 548.0, "Total Transactions": 67.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.11429, 40.020508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2021, "Total Visits": 1625.0, "Total Visitors": 1279.0, "POI_CBG": 421010380002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 24213.0, "Total Transactions": 979.0, "Total Customers": 652.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.34, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w49", "LOCATION_NAME": "Sam Ash Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.087105, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 165.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 8179.0, "Total Transactions": 76.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.93 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2021, "Total Visits": 905.0, "Total Visitors": 387.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 81.0, "Total Spend": 17724.0, "Total Transactions": 492.0, "Total Customers": 451.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.01, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-s89", "LOCATION_NAME": "Gyro Hut Halal Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915175, "LONGITUDE": -75.155379, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 69.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 119.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155379, 39.915175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "LOCATION_NAME": "Frame Fatale", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2021, "Total Visits": 826.0, "Total Visitors": 475.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 197.0, "Total Spend": 2042.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 260.73, "MEDIAN_SPEND_PER_CUSTOMER": 260.73 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "LOCATION_NAME": "Adobe Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 8941.0, "Total Transactions": 136.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.8, "MEDIAN_SPEND_PER_CUSTOMER": 60.15 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "LOCATION_NAME": "Thunderbird Salvage", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11320.0, "Total Transactions": 363.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.06, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgg-yvz", "LOCATION_NAME": "Favors", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9991, "LONGITUDE": -75.171017, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 19.0, "POI_CBG": 421010172024.0, "MEDIAN_DWELL": 1117.0, "Total Spend": 484.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 18.57 }, "geometry": { "type": "Point", "coordinates": [ -75.171017, 39.9991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-pmd-skf", "LOCATION_NAME": "Social House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944966, "LONGITUDE": -75.177113, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": null, "Total Spend": 1304.0, "Total Transactions": 184.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.86, "MEDIAN_SPEND_PER_CUSTOMER": 7.69 }, "geometry": { "type": "Point", "coordinates": [ -75.177113, 39.944966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-yqf", "LOCATION_NAME": "Shiao Lan Kung", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955257, "LONGITUDE": -75.155387, "DATE_RANGE_START": 2021, "Total Visits": 10434.0, "Total Visitors": 6952.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 711.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.43, "MEDIAN_SPEND_PER_CUSTOMER": 48.04 }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.955257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "LOCATION_NAME": "Southgate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 279.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3477.0, "Total Transactions": 55.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.36, "MEDIAN_SPEND_PER_CUSTOMER": 68.54 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-234@628-pmf-jd9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95159, "LONGITUDE": -75.168235, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 99.0, "Total Spend": 3467.0, "Total Transactions": 346.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168235, 39.95159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "LOCATION_NAME": "The Ranchito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 53.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2426.0, "Total Transactions": 95.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.5, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914447, "LONGITUDE": -75.156842, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 93.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1363.0, "Total Transactions": 112.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.78, "MEDIAN_SPEND_PER_CUSTOMER": 11.78 }, "geometry": { "type": "Point", "coordinates": [ -75.156842, 39.914447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "LOCATION_NAME": "Einstein Brothers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994394, "LONGITUDE": -75.238422, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 105.0, "POI_CBG": 421010117001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 905.0, "Total Transactions": 45.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.1, "MEDIAN_SPEND_PER_CUSTOMER": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.238422, 39.994394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22m@63s-dw4-rzf", "LOCATION_NAME": "Currito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895176, "LONGITUDE": -75.227955, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 62.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.89, "MEDIAN_SPEND_PER_CUSTOMER": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.227955, 39.895176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003544, "LONGITUDE": -75.165622, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 98.0, "POI_CBG": 421010202001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2982.0, "Total Transactions": 439.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.61, "MEDIAN_SPEND_PER_CUSTOMER": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.165622, 40.003544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 224.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 18654.0, "Total Transactions": 2451.0, "Total Customers": 1122.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.34, "MEDIAN_SPEND_PER_CUSTOMER": 10.58 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2021, "Total Visits": 453.0, "Total Visitors": 310.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 16751.0, "Total Transactions": 2227.0, "Total Customers": 1055.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.28, "MEDIAN_SPEND_PER_CUSTOMER": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-8n5", "LOCATION_NAME": "Federal Donuts North", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964219, "LONGITUDE": -75.14909, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 100.0, "POI_CBG": 421010131001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3731.0, "Total Transactions": 272.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.95, "MEDIAN_SPEND_PER_CUSTOMER": 12.11 }, "geometry": { "type": "Point", "coordinates": [ -75.14909, 39.964219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "LOCATION_NAME": "Brauhaus Schmitz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942007, "LONGITUDE": -75.154702, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 205.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 9140.0, "Total Transactions": 129.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.72, "MEDIAN_SPEND_PER_CUSTOMER": 65.28 }, "geometry": { "type": "Point", "coordinates": [ -75.154702, 39.942007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23b@63s-dw4-rzf", "LOCATION_NAME": "Bar Symon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.87555, "LONGITUDE": -75.238035, "DATE_RANGE_START": 2021, "Total Visits": 324922.0, "Total Visitors": 185623.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 66.0, "Total Spend": 192.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.74, "MEDIAN_SPEND_PER_CUSTOMER": 22.36 }, "geometry": { "type": "Point", "coordinates": [ -75.238035, 39.87555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pm9-wc5", "LOCATION_NAME": "Rebel Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949731, "LONGITUDE": -75.148051, "DATE_RANGE_START": 2021, "Total Visits": 4597.0, "Total Visitors": 3914.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 258.0, "Total Transactions": 24.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.93, "MEDIAN_SPEND_PER_CUSTOMER": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.148051, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-4y9", "LOCATION_NAME": "Vino Volo", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.875903, "LONGITUDE": -75.243029, "DATE_RANGE_START": 2021, "Total Visits": 324922.0, "Total Visitors": 185623.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 66.0, "Total Spend": 432.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.2, "MEDIAN_SPEND_PER_CUSTOMER": 55.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243029, 39.875903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-y9z", "LOCATION_NAME": "Alyan's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941428, "LONGITUDE": -75.149062, "DATE_RANGE_START": 2021, "Total Visits": 1158.0, "Total Visitors": 833.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 105.0, "Total Spend": 1928.0, "Total Transactions": 74.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.3, "MEDIAN_SPEND_PER_CUSTOMER": 29.09 }, "geometry": { "type": "Point", "coordinates": [ -75.149062, 39.941428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "LOCATION_NAME": "The Plough & the Stars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2021, "Total Visits": 411.0, "Total Visitors": 289.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 70.0, "Total Spend": 8033.0, "Total Transactions": 146.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.96 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 103.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10307.0, "Total Transactions": 716.0, "Total Customers": 468.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.42, "MEDIAN_SPEND_PER_CUSTOMER": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2021, "Total Visits": 356.0, "Total Visitors": 296.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 20986.0, "Total Transactions": 1847.0, "Total Customers": 1234.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.71 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pjf-zvf", "LOCATION_NAME": "Chestnut Hill Coffee Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076935, "LONGITUDE": -75.208429, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 189.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 69.0, "Total Spend": 356.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.99, "MEDIAN_SPEND_PER_CUSTOMER": 55.99 }, "geometry": { "type": "Point", "coordinates": [ -75.208429, 40.076935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947944, "LONGITUDE": -75.171288, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 112.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9246.0, "Total Transactions": 1344.0, "Total Customers": 728.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.35, "MEDIAN_SPEND_PER_CUSTOMER": 8.86 }, "geometry": { "type": "Point", "coordinates": [ -75.171288, 39.947944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024672, "LONGITUDE": -75.147508, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 91.0, "POI_CBG": 421010283003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4256.0, "Total Transactions": 594.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.04 }, "geometry": { "type": "Point", "coordinates": [ -75.147508, 40.024672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm4-ckf", "LOCATION_NAME": "A Plus Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924818, "LONGITUDE": -75.174415, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 100.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 2.0, "Total Spend": 256.0, "Total Transactions": 55.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.12, "MEDIAN_SPEND_PER_CUSTOMER": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174415, 39.924818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2021, "Total Visits": 1563.0, "Total Visitors": 654.0, "POI_CBG": 421010183001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 24984.0, "Total Transactions": 2427.0, "Total Customers": 785.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.14, "MEDIAN_SPEND_PER_CUSTOMER": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pg8-z2k", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.982802, "LONGITUDE": -75.187818, "DATE_RANGE_START": 2021, "Total Visits": 1699.0, "Total Visitors": 1196.0, "POI_CBG": 421010149006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 214.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 20.01 }, "geometry": { "type": "Point", "coordinates": [ -75.187818, 39.982802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pfv-649", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043396, "LONGITUDE": -75.190646, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 148.0, "POI_CBG": 421010237001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2713.0, "Total Transactions": 191.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.190646, 40.043396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992401, "LONGITUDE": -75.110955, "DATE_RANGE_START": 2021, "Total Visits": 363.0, "Total Visitors": 177.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 115.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.24, "MEDIAN_SPEND_PER_CUSTOMER": 5.24 }, "geometry": { "type": "Point", "coordinates": [ -75.110955, 39.992401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 258.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 850.0, "Total Transactions": 146.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.16, "MEDIAN_SPEND_PER_CUSTOMER": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qcq", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039147, "LONGITUDE": -75.118804, "DATE_RANGE_START": 2021, "Total Visits": 2811.0, "Total Visitors": 1499.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 49.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.29, "MEDIAN_SPEND_PER_CUSTOMER": 10.29 }, "geometry": { "type": "Point", "coordinates": [ -75.118804, 40.039147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phq-k75", "LOCATION_NAME": "Rodriguez Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.057192, "LONGITUDE": -75.148867, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 177.0, "POI_CBG": 421010267007.0, "MEDIAN_DWELL": 4.0, "Total Spend": 822.0, "Total Transactions": 88.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 7.28 }, "geometry": { "type": "Point", "coordinates": [ -75.148867, 40.057192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953745, "LONGITUDE": -75.172854, "DATE_RANGE_START": 2021, "Total Visits": 2179.0, "Total Visitors": 1432.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 35.0, "Total Spend": 12366.0, "Total Transactions": 752.0, "Total Customers": 420.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.09, "MEDIAN_SPEND_PER_CUSTOMER": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.172854, 39.953745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039629, "LONGITUDE": -75.109938, "DATE_RANGE_START": 2021, "Total Visits": 580.0, "Total Visitors": 449.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12800.0, "Total Transactions": 482.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.57, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109938, 40.039629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pm4-ckf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.924823, "LONGITUDE": -75.17424, "DATE_RANGE_START": 2021, "Total Visits": 993.0, "Total Visitors": 778.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 735.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.55 }, "geometry": { "type": "Point", "coordinates": [ -75.17424, 39.924823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2021, "Total Visits": 508.0, "Total Visitors": 387.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 874.0, "Total Transactions": 55.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pfx-kzz", "LOCATION_NAME": "Haggerty Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029098, "LONGITUDE": -75.225579, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010214004.0, "MEDIAN_DWELL": null, "Total Spend": 2675.0, "Total Transactions": 246.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.06, "MEDIAN_SPEND_PER_CUSTOMER": 15.74 }, "geometry": { "type": "Point", "coordinates": [ -75.225579, 40.029098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "LOCATION_NAME": "Taco Loco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 204.0, "Total Spend": 3367.0, "Total Transactions": 189.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.93, "MEDIAN_SPEND_PER_CUSTOMER": 18.41 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-hbk", "LOCATION_NAME": "Fox Street Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.008217, "LONGITUDE": -75.172147, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 228.0, "Total Spend": 14038.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 2941.0, "MEDIAN_SPEND_PER_CUSTOMER": 2941.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172147, 40.008217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-75z", "LOCATION_NAME": "North Third", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963481, "LONGITUDE": -75.142676, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 1216.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.72, "MEDIAN_SPEND_PER_CUSTOMER": 59.72 }, "geometry": { "type": "Point", "coordinates": [ -75.142676, 39.963481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2021, "Total Visits": 484.0, "Total Visitors": 394.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2215.0, "Total Transactions": 141.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.08, "MEDIAN_SPEND_PER_CUSTOMER": 7.58 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-975", "LOCATION_NAME": "Avril 50", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.953493, "LONGITUDE": -75.192528, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1538.0, "Total Transactions": 60.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.94, "MEDIAN_SPEND_PER_CUSTOMER": 20.94 }, "geometry": { "type": "Point", "coordinates": [ -75.192528, 39.953493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-wtv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054812, "LONGITUDE": -75.054903, "DATE_RANGE_START": 2021, "Total Visits": 442.0, "Total Visitors": 348.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4332.0, "Total Transactions": 251.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.06, "MEDIAN_SPEND_PER_CUSTOMER": 26.54 }, "geometry": { "type": "Point", "coordinates": [ -75.054903, 40.054812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-j5f", "LOCATION_NAME": "Indochino", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949824, "LONGITUDE": -75.170127, "DATE_RANGE_START": 2021, "Total Visits": 1098.0, "Total Visitors": 842.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2255.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 438.0, "MEDIAN_SPEND_PER_CUSTOMER": 438.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170127, 39.949824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-6x5", "LOCATION_NAME": "Bonobos", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949913, "LONGITUDE": -75.166858, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 224.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 6980.0, "Total Transactions": 38.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.0, "MEDIAN_SPEND_PER_CUSTOMER": 158.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166858, 39.949913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.051298, "LONGITUDE": -75.065323, "DATE_RANGE_START": 2021, "Total Visits": 2802.0, "Total Visitors": 2021.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 6390.0, "Total Transactions": 126.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.41, "MEDIAN_SPEND_PER_CUSTOMER": 46.96 }, "geometry": { "type": "Point", "coordinates": [ -75.065323, 40.051298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "LOCATION_NAME": "Le Meridien", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2021, "Total Visits": 1079.0, "Total Visitors": 554.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 441.0, "Total Spend": 32920.0, "Total Transactions": 160.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 179.21, "MEDIAN_SPEND_PER_CUSTOMER": 211.38 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "LOCATION_NAME": "Quaker Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060542, "LONGITUDE": -75.084471, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 119.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 5430.0, "Total Transactions": 181.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.74, "MEDIAN_SPEND_PER_CUSTOMER": 29.57 }, "geometry": { "type": "Point", "coordinates": [ -75.084471, 40.060542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xkf", "LOCATION_NAME": "Lee How Fook", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956286, "LONGITUDE": -75.157078, "DATE_RANGE_START": 2021, "Total Visits": 494.0, "Total Visitors": 344.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 1003.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.74, "MEDIAN_SPEND_PER_CUSTOMER": 50.74 }, "geometry": { "type": "Point", "coordinates": [ -75.157078, 39.956286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "LOCATION_NAME": "Bleu Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 124.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 68.0, "Total Spend": 3565.0, "Total Transactions": 57.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.58, "MEDIAN_SPEND_PER_CUSTOMER": 51.58 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8f-djv", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017133, "LONGITUDE": -75.084023, "DATE_RANGE_START": 2021, "Total Visits": 430.0, "Total Visitors": 282.0, "POI_CBG": 421010300006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1557.0, "Total Transactions": 86.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084023, 40.017133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "LOCATION_NAME": "Mustard Greens Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 81.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4722.0, "Total Transactions": 48.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.8, "MEDIAN_SPEND_PER_CUSTOMER": 115.04 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pmb-cwk", "LOCATION_NAME": "Sushi Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943263, "LONGITUDE": -75.163741, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 210.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 1077.0, "Total Spend": 2227.0, "Total Transactions": 98.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.93, "MEDIAN_SPEND_PER_CUSTOMER": 19.15 }, "geometry": { "type": "Point", "coordinates": [ -75.163741, 39.943263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2021, "Total Visits": 8112.0, "Total Visitors": 5668.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 3806.0, "Total Transactions": 487.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.21, "MEDIAN_SPEND_PER_CUSTOMER": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-4sq", "LOCATION_NAME": "Potbelly Sandwich Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979564, "LONGITUDE": -75.153441, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 76.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 834.0, "Total Spend": 7852.0, "Total Transactions": 570.0, "Total Customers": 384.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.28, "MEDIAN_SPEND_PER_CUSTOMER": 14.76 }, "geometry": { "type": "Point", "coordinates": [ -75.153441, 39.979564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-djv", "LOCATION_NAME": "Pastificio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911498, "LONGITUDE": -75.174639, "DATE_RANGE_START": 2021, "Total Visits": 2635.0, "Total Visitors": 2208.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 11010.0, "Total Transactions": 439.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.18, "MEDIAN_SPEND_PER_CUSTOMER": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.174639, 39.911498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2021, "Total Visits": 754.0, "Total Visitors": 504.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8261.0, "Total Transactions": 1000.0, "Total Customers": 551.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pnw-nh5", "LOCATION_NAME": "Johnny Brenda's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969072, "LONGITUDE": -75.134263, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 86.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 34.0, "Total Spend": 1808.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.33, "MEDIAN_SPEND_PER_CUSTOMER": 49.33 }, "geometry": { "type": "Point", "coordinates": [ -75.134263, 39.969072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "LOCATION_NAME": "Shing Kee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 107.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1379.0, "Total Transactions": 38.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.71, "MEDIAN_SPEND_PER_CUSTOMER": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj6-8y9", "LOCATION_NAME": "El Rinconcito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031782, "LONGITUDE": -75.107117, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 105.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 331.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 14.56 }, "geometry": { "type": "Point", "coordinates": [ -75.107117, 40.031782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-4sq", "LOCATION_NAME": "NOTO Philadelphia", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957795, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 158.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6704.0, "Total Transactions": 91.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.957795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "LOCATION_NAME": "Maggiano's Little Italy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953256, "LONGITUDE": -75.160263, "DATE_RANGE_START": 2021, "Total Visits": 754.0, "Total Visitors": 594.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 42930.0, "Total Transactions": 573.0, "Total Customers": 482.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.15, "MEDIAN_SPEND_PER_CUSTOMER": 48.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160263, 39.953256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045014, "LONGITUDE": -75.08777, "DATE_RANGE_START": 2021, "Total Visits": 508.0, "Total Visitors": 344.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 16752.0, "Total Transactions": 2057.0, "Total Customers": 874.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.96, "MEDIAN_SPEND_PER_CUSTOMER": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -75.08777, 40.045014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2021, "Total Visits": 499.0, "Total Visitors": 411.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1127.0, "Total Transactions": 69.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.94, "MEDIAN_SPEND_PER_CUSTOMER": 15.98 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 143.0, "POI_CBG": 421010140001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 482.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.02, "MEDIAN_SPEND_PER_CUSTOMER": 13.02 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-vj9", "LOCATION_NAME": "Baker Street Bread Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071164, "LONGITUDE": -75.200774, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 117.0, "POI_CBG": 421010257003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 42.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.200774, 40.071164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 215.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6702.0, "Total Transactions": 1119.0, "Total Customers": 446.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 7.01 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.899825, "LONGITUDE": -75.241379, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 255.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 315.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.241379, 39.899825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "LOCATION_NAME": "Pizza Boli's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 10.0, "POI_CBG": 421010190001.0, "MEDIAN_DWELL": 443.0, "Total Spend": 251.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.09, "MEDIAN_SPEND_PER_CUSTOMER": 14.17 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951369, "LONGITUDE": -75.166562, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 234.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 12.0, "Total Spend": 10745.0, "Total Transactions": 644.0, "Total Customers": 525.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.16, "MEDIAN_SPEND_PER_CUSTOMER": 17.32 }, "geometry": { "type": "Point", "coordinates": [ -75.166562, 39.951369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p74-cyv", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041879, "LONGITUDE": -75.027519, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010331022.0, "MEDIAN_DWELL": 13.0, "Total Spend": 340.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.34, "MEDIAN_SPEND_PER_CUSTOMER": 15.34 }, "geometry": { "type": "Point", "coordinates": [ -75.027519, 40.041879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-w49", "LOCATION_NAME": "The Royal Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948373, "LONGITUDE": -75.174503, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 21.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 136.0, "Total Spend": 1153.0, "Total Transactions": 24.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.06, "MEDIAN_SPEND_PER_CUSTOMER": 35.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174503, 39.948373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-rhq", "LOCATION_NAME": "Moonshine Philly", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925012, "LONGITUDE": -75.151601, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 31.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 60.0, "Total Spend": 11763.0, "Total Transactions": 184.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.37, "MEDIAN_SPEND_PER_CUSTOMER": 62.52 }, "geometry": { "type": "Point", "coordinates": [ -75.151601, 39.925012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 38.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1247.0, "Total Transactions": 50.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.9, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22g@628-pmb-92k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951633, "LONGITUDE": -75.155742, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 594.0, "Total Transactions": 100.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.3, "MEDIAN_SPEND_PER_CUSTOMER": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.155742, 39.951633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-224@628-pmb-yd9", "LOCATION_NAME": "Tiger Sugar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954258, "LONGITUDE": -75.156401, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 234.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5750.0, "Total Transactions": 513.0, "Total Customers": 425.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.49, "MEDIAN_SPEND_PER_CUSTOMER": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.156401, 39.954258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-2zf", "LOCATION_NAME": "Taco Riendo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971515, "LONGITUDE": -75.144515, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 17.0, "POI_CBG": 421010144001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 439.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.98, "MEDIAN_SPEND_PER_CUSTOMER": 91.98 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 39.971515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9953.0, "Total Transactions": 874.0, "Total Customers": 597.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pgd-v75", "LOCATION_NAME": "7P Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.964658, "LONGITUDE": -75.199734, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 38.0, "POI_CBG": 421010108005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 105.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.93, "MEDIAN_SPEND_PER_CUSTOMER": 6.14 }, "geometry": { "type": "Point", "coordinates": [ -75.199734, 39.964658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-yd9", "LOCATION_NAME": "C & R Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.938173, "LONGITUDE": -75.170563, "DATE_RANGE_START": 2021, "Total Visits": 442.0, "Total Visitors": 277.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3367.0, "Total Transactions": 29.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.57, "MEDIAN_SPEND_PER_CUSTOMER": 170.64 }, "geometry": { "type": "Point", "coordinates": [ -75.170563, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "LOCATION_NAME": "Hong Kong Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2021, "Total Visits": 716.0, "Total Visitors": 566.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 3738.0, "Total Transactions": 74.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.97, "MEDIAN_SPEND_PER_CUSTOMER": 59.72 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-6x5", "LOCATION_NAME": "Su Xing House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950249, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5502.0, "Total Transactions": 141.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.87, "MEDIAN_SPEND_PER_CUSTOMER": 32.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2021, "Total Visits": 1057.0, "Total Visitors": 637.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 10365.0, "Total Transactions": 625.0, "Total Customers": 372.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.43, "MEDIAN_SPEND_PER_CUSTOMER": 18.93 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "LOCATION_NAME": "Kiehl's", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 212.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8083.0, "Total Transactions": 126.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.52, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7w-pvz", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.044968, "LONGITUDE": -75.054721, "DATE_RANGE_START": 2021, "Total Visits": 372.0, "Total Visitors": 289.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4517.0, "Total Transactions": 224.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054721, 40.044968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-vxq", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055747, "LONGITUDE": -75.073256, "DATE_RANGE_START": 2021, "Total Visits": 351.0, "Total Visitors": 232.0, "POI_CBG": 421010338002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 621.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073256, 40.055747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfv-94v", "LOCATION_NAME": "Big Blue Marble Bookstore", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 40.046676, "LONGITUDE": -75.195832, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 264.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.31, "MEDIAN_SPEND_PER_CUSTOMER": 55.31 }, "geometry": { "type": "Point", "coordinates": [ -75.195832, 40.046676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pm9-tjv", "LOCATION_NAME": "Eden Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949548, "LONGITUDE": -75.154292, "DATE_RANGE_START": 2021, "Total Visits": 1745.0, "Total Visitors": 1394.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1775.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 209.0, "MEDIAN_SPEND_PER_CUSTOMER": 209.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154292, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "LOCATION_NAME": "Roses", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.039098, "LONGITUDE": -75.107749, "DATE_RANGE_START": 2021, "Total Visits": 668.0, "Total Visitors": 516.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 30996.0, "Total Transactions": 702.0, "Total Customers": 539.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.76, "MEDIAN_SPEND_PER_CUSTOMER": 38.57 }, "geometry": { "type": "Point", "coordinates": [ -75.107749, 40.039098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 93.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 17340.0, "Total Transactions": 370.0, "Total Customers": 303.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "LOCATION_NAME": "Two Brothers", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.943904, "LONGITUDE": -75.228136, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 21.0, "POI_CBG": 421010071024.0, "MEDIAN_DWELL": 78.0, "Total Spend": 1001.0, "Total Transactions": 69.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.74 }, "geometry": { "type": "Point", "coordinates": [ -75.228136, 39.943904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955622, "LONGITUDE": -75.192214, "DATE_RANGE_START": 2021, "Total Visits": 2112.0, "Total Visitors": 1391.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 73.0, "Total Spend": 1499.0, "Total Transactions": 184.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.57, "MEDIAN_SPEND_PER_CUSTOMER": 11.97 }, "geometry": { "type": "Point", "coordinates": [ -75.192214, 39.955622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-v4v", "LOCATION_NAME": "Food Point Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.928702, "LONGITUDE": -75.168281, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 117.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 667.0, "Total Spend": 792.0, "Total Transactions": 41.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.89, "MEDIAN_SPEND_PER_CUSTOMER": 22.42 }, "geometry": { "type": "Point", "coordinates": [ -75.168281, 39.928702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 200.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 86464.0, "Total Transactions": 7845.0, "Total Customers": 3778.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.33, "MEDIAN_SPEND_PER_CUSTOMER": 12.08 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-92k", "LOCATION_NAME": "Beef Jerky Outlet", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.951616, "LONGITUDE": -75.155729, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1425.0, "Total Transactions": 91.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155729, 39.951616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7v-f2k", "LOCATION_NAME": "Bob's Discount Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.051318, "LONGITUDE": -75.065293, "DATE_RANGE_START": 2021, "Total Visits": 2857.0, "Total Visitors": 2067.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 9796.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 1310.4, "MEDIAN_SPEND_PER_CUSTOMER": 1310.4 }, "geometry": { "type": "Point", "coordinates": [ -75.065293, 40.051318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-r49", "LOCATION_NAME": "IGA", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.975356, "LONGITUDE": -75.119618, "DATE_RANGE_START": 2021, "Total Visits": 1582.0, "Total Visitors": 723.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1927.0, "Total Transactions": 57.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.13 }, "geometry": { "type": "Point", "coordinates": [ -75.119618, 39.975356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "LOCATION_NAME": "Brewer's Outlet", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.953078, "LONGITUDE": -75.217954, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 15391.0, "Total Transactions": 401.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.04, "MEDIAN_SPEND_PER_CUSTOMER": 36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.217954, 39.953078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9m-gtv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.080307, "LONGITUDE": -74.99459, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 222.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7606.0, "Total Transactions": 353.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.66, "MEDIAN_SPEND_PER_CUSTOMER": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -74.99459, 40.080307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02088, "LONGITUDE": -75.134701, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 258.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 13473.0, "Total Transactions": 895.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 22.72 }, "geometry": { "type": "Point", "coordinates": [ -75.134701, 40.02088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.99726, "LONGITUDE": -75.153396, "DATE_RANGE_START": 2021, "Total Visits": 1344.0, "Total Visitors": 983.0, "POI_CBG": 421010174002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 21207.0, "Total Transactions": 800.0, "Total Customers": 589.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.33, "MEDIAN_SPEND_PER_CUSTOMER": 29.01 }, "geometry": { "type": "Point", "coordinates": [ -75.153396, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "LOCATION_NAME": "Higher Grounds", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 3131.0, "Total Transactions": 348.0, "Total Customers": 236.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-rhq", "LOCATION_NAME": "Tina's tacos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979315, "LONGITUDE": -75.125407, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010160007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 186.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.125407, 39.979315 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "LOCATION_NAME": "Kitchen Kapers", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 289.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 3171.0, "Total Transactions": 67.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.63, "MEDIAN_SPEND_PER_CUSTOMER": 43.15 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-n3q", "LOCATION_NAME": "Double Connect", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.959668, "LONGITUDE": -75.224073, "DATE_RANGE_START": 2021, "Total Visits": 16831.0, "Total Visitors": 6680.0, "POI_CBG": 421010085001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 847.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 177.5, "MEDIAN_SPEND_PER_CUSTOMER": 177.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224073, 39.959668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-cbk", "LOCATION_NAME": "Oregon Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913868, "LONGITUDE": -75.152939, "DATE_RANGE_START": 2021, "Total Visits": 1277.0, "Total Visitors": 757.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 41.0, "Total Spend": 811.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.64, "MEDIAN_SPEND_PER_CUSTOMER": 41.64 }, "geometry": { "type": "Point", "coordinates": [ -75.152939, 39.913868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 358.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3253.0, "Total Transactions": 169.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.15, "MEDIAN_SPEND_PER_CUSTOMER": 14.22 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-7qz", "LOCATION_NAME": "Vedge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947987, "LONGITUDE": -75.161387, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 112.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 21208.0, "Total Transactions": 172.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 116.03, "MEDIAN_SPEND_PER_CUSTOMER": 136.53 }, "geometry": { "type": "Point", "coordinates": [ -75.161387, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "LOCATION_NAME": "Weavers Way Co Op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 88.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 128653.0, "Total Transactions": 3446.0, "Total Customers": 1401.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.76, "MEDIAN_SPEND_PER_CUSTOMER": 48.41 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "LOCATION_NAME": "Tacodelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 107.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4800.0, "Total Transactions": 344.0, "Total Customers": 255.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-ygk", "LOCATION_NAME": "Shaxian Delicacies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953861, "LONGITUDE": -75.156353, "DATE_RANGE_START": 2021, "Total Visits": 260.0, "Total Visitors": 253.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 356.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.59, "MEDIAN_SPEND_PER_CUSTOMER": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.156353, 39.953861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-435", "LOCATION_NAME": "Atlas Pizza & Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947544, "LONGITUDE": -75.227506, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010073004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 275.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.48, "MEDIAN_SPEND_PER_CUSTOMER": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.227506, 39.947544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 322.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3146.0, "Total Transactions": 279.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.83, "MEDIAN_SPEND_PER_CUSTOMER": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "LOCATION_NAME": "HKS pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 38.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 374.0, "Total Spend": 11134.0, "Total Transactions": 399.0, "Total Customers": 332.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phn-qmk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068844, "LONGITUDE": -75.18088, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 134.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8211.0, "Total Transactions": 475.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 15.51 }, "geometry": { "type": "Point", "coordinates": [ -75.18088, 40.068844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "LOCATION_NAME": "Prince Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 21.0, "POI_CBG": 421010288002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4534.0, "Total Transactions": 210.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.77, "MEDIAN_SPEND_PER_CUSTOMER": 20.85 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2021, "Total Visits": 1072.0, "Total Visitors": 773.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7345.0, "Total Transactions": 449.0, "Total Customers": 236.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.24, "MEDIAN_SPEND_PER_CUSTOMER": 15.07 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@63s-dvv-rx5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923209, "LONGITUDE": -75.238375, "DATE_RANGE_START": 2021, "Total Visits": 365.0, "Total Visitors": 263.0, "POI_CBG": 421010063003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8782.0, "Total Transactions": 461.0, "Total Customers": 310.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.84 }, "geometry": { "type": "Point", "coordinates": [ -75.238375, 39.923209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "LOCATION_NAME": "In Riva", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2021, "Total Visits": 427.0, "Total Visitors": 389.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 53.0, "Total Spend": 41312.0, "Total Transactions": 592.0, "Total Customers": 527.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.13, "MEDIAN_SPEND_PER_CUSTOMER": 63.79 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2021, "Total Visits": 733.0, "Total Visitors": 506.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20819.0, "Total Transactions": 1566.0, "Total Customers": 964.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.22, "MEDIAN_SPEND_PER_CUSTOMER": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "LOCATION_NAME": "Jj Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951963, "LONGITUDE": -75.174719, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 31.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6380.0, "Total Transactions": 167.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.36, "MEDIAN_SPEND_PER_CUSTOMER": 35.94 }, "geometry": { "type": "Point", "coordinates": [ -75.174719, 39.951963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p74-n5z", "LOCATION_NAME": "Uniform Gear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.039579, "LONGITUDE": -75.024137, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 33.0, "POI_CBG": 421010329002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2592.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.95, "MEDIAN_SPEND_PER_CUSTOMER": 62.95 }, "geometry": { "type": "Point", "coordinates": [ -75.024137, 40.039579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dwf-td9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902299, "LONGITUDE": -75.242062, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 57.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9823.0, "Total Transactions": 687.0, "Total Customers": 527.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.242062, 39.902299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959088, "LONGITUDE": -75.1625, "DATE_RANGE_START": 2021, "Total Visits": 1315.0, "Total Visitors": 611.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 322.0, "Total Spend": 16316.0, "Total Transactions": 1220.0, "Total Customers": 742.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.1625, 39.959088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "LOCATION_NAME": "Mission BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 322.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1054.0, "Total Transactions": 41.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.81, "MEDIAN_SPEND_PER_CUSTOMER": 21.37 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p7x-6tv", "LOCATION_NAME": "Artifax", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.046392, "LONGITUDE": -75.058077, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 69.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10716.0, "Total Transactions": 224.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.6, "MEDIAN_SPEND_PER_CUSTOMER": 51.68 }, "geometry": { "type": "Point", "coordinates": [ -75.058077, 40.046392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-y7q", "LOCATION_NAME": "E Mei Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953596, "LONGITUDE": -75.155422, "DATE_RANGE_START": 2021, "Total Visits": 4516.0, "Total Visitors": 3222.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 7930.0, "Total Transactions": 122.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.04, "MEDIAN_SPEND_PER_CUSTOMER": 56.51 }, "geometry": { "type": "Point", "coordinates": [ -75.155422, 39.953596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051659, "LONGITUDE": -75.008179, "DATE_RANGE_START": 2021, "Total Visits": 415.0, "Total Visitors": 322.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8112.0, "Total Transactions": 251.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.02, "MEDIAN_SPEND_PER_CUSTOMER": 33.26 }, "geometry": { "type": "Point", "coordinates": [ -75.008179, 40.051659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "LOCATION_NAME": "Talula's Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2021, "Total Visits": 790.0, "Total Visitors": 649.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 62.0, "Total Spend": 78292.0, "Total Transactions": 1807.0, "Total Customers": 1107.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 33.36 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026137, "LONGITUDE": -75.042321, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 186.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 899.0, "Total Transactions": 84.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.81, "MEDIAN_SPEND_PER_CUSTOMER": 7.38 }, "geometry": { "type": "Point", "coordinates": [ -75.042321, 40.026137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "LOCATION_NAME": "Girard Meat Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.972943, "LONGITUDE": -75.217427, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 274.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 481.0, "Total Transactions": 36.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.84, "MEDIAN_SPEND_PER_CUSTOMER": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.217427, 39.972943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 158.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3437.0, "Total Transactions": 547.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.31, "MEDIAN_SPEND_PER_CUSTOMER": 8.03 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "LOCATION_NAME": "Charley's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5733.0, "Total Transactions": 322.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.48, "MEDIAN_SPEND_PER_CUSTOMER": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-7t9", "LOCATION_NAME": "The Kettle Black", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961646, "LONGITUDE": -75.140921, "DATE_RANGE_START": 2021, "Total Visits": 663.0, "Total Visitors": 594.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3311.0, "Total Transactions": 217.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.140921, 39.961646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 224.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 11805.0, "Total Transactions": 604.0, "Total Customers": 408.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.59, "MEDIAN_SPEND_PER_CUSTOMER": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949499, "LONGITUDE": -75.166653, "DATE_RANGE_START": 2021, "Total Visits": 501.0, "Total Visitors": 434.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 4.0, "Total Spend": 21893.0, "Total Transactions": 1759.0, "Total Customers": 1167.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.61, "MEDIAN_SPEND_PER_CUSTOMER": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -75.166653, 39.949499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032146, "LONGITUDE": -75.063064, "DATE_RANGE_START": 2021, "Total Visits": 974.0, "Total Visitors": 640.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 4.0, "Total Spend": 18514.0, "Total Transactions": 866.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.063064, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmc-v2k", "LOCATION_NAME": "HomeGoods", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.923473, "LONGITUDE": -75.140935, "DATE_RANGE_START": 2021, "Total Visits": 456.0, "Total Visitors": 389.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 140.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.25, "MEDIAN_SPEND_PER_CUSTOMER": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.140935, 39.923473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993511, "LONGITUDE": -75.143942, "DATE_RANGE_START": 2021, "Total Visits": 499.0, "Total Visitors": 272.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 469.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143942, 39.993511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008154, "LONGITUDE": -75.17322, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 110.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1229.0, "Total Transactions": 53.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.01, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 40.008154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm3-vzz", "LOCATION_NAME": "Sermania Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.928072, "LONGITUDE": -75.165393, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": null, "Total Spend": 229.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.9, "MEDIAN_SPEND_PER_CUSTOMER": 47.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165393, 39.928072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-225@628-pjf-j7q", "LOCATION_NAME": "All The Way Live", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075711, "LONGITUDE": -75.205375, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 3128.0, "Total Transactions": 81.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.59, "MEDIAN_SPEND_PER_CUSTOMER": 32.22 }, "geometry": { "type": "Point", "coordinates": [ -75.205375, 40.075711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "LOCATION_NAME": "Beijing Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1961.0, "Total Transactions": 79.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.2, "MEDIAN_SPEND_PER_CUSTOMER": 27.55 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-229@628-p85-hkf", "LOCATION_NAME": "Bluegrass Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.071403, "LONGITUDE": -75.030673, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 69.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 106.0, "Total Spend": 588.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 47.39 }, "geometry": { "type": "Point", "coordinates": [ -75.030673, 40.071403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8f-9cq", "LOCATION_NAME": "D & R Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.012762, "LONGITUDE": -75.081478, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 24.0, "POI_CBG": 421010300005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 85.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.87, "MEDIAN_SPEND_PER_CUSTOMER": 17.87 }, "geometry": { "type": "Point", "coordinates": [ -75.081478, 40.012762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2021, "Total Visits": 461.0, "Total Visitors": 305.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1339.0, "Total Transactions": 86.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.18, "MEDIAN_SPEND_PER_CUSTOMER": 8.08 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-66k", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949053, "LONGITUDE": -75.160719, "DATE_RANGE_START": 2021, "Total Visits": 4979.0, "Total Visitors": 3599.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 5640.0, "Total Transactions": 353.0, "Total Customers": 227.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.65, "MEDIAN_SPEND_PER_CUSTOMER": 12.08 }, "geometry": { "type": "Point", "coordinates": [ -75.160719, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 72.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12731.0, "Total Transactions": 198.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.98, "MEDIAN_SPEND_PER_CUSTOMER": 67.49 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "LOCATION_NAME": "Trio Delight Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037587, "LONGITUDE": -75.118044, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 978.0, "Total Transactions": 64.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.69, "MEDIAN_SPEND_PER_CUSTOMER": 15.88 }, "geometry": { "type": "Point", "coordinates": [ -75.118044, 40.037587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2021, "Total Visits": 2518.0, "Total Visitors": 2053.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 75115.0, "Total Transactions": 3060.0, "Total Customers": 2143.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.01, "MEDIAN_SPEND_PER_CUSTOMER": 27.42 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "LOCATION_NAME": "The Gold Standard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 45.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1677.0, "Total Transactions": 95.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.08, "MEDIAN_SPEND_PER_CUSTOMER": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "LOCATION_NAME": "Calvin Klein", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 122.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 129.0, "Total Spend": 9253.0, "Total Transactions": 141.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.49, "MEDIAN_SPEND_PER_CUSTOMER": 60.92 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "LOCATION_NAME": "Little Italy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 72.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 872.0, "Total Transactions": 41.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.63, "MEDIAN_SPEND_PER_CUSTOMER": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "LOCATION_NAME": "Pizzeria Stella", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 248.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 26.0, "Total Spend": 29442.0, "Total Transactions": 408.0, "Total Customers": 372.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.08, "MEDIAN_SPEND_PER_CUSTOMER": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.084266, "LONGITUDE": -74.961834, "DATE_RANGE_START": 2021, "Total Visits": 621.0, "Total Visitors": 511.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 20623.0, "Total Transactions": 1344.0, "Total Customers": 1086.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.7, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -74.961834, 40.084266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "LOCATION_NAME": "Cafe Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2021, "Total Visits": 325.0, "Total Visitors": 227.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 4041.0, "Total Transactions": 112.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 36.18 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dw2-7yv", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958784, "LONGITUDE": -75.241349, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 100.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 538.0, "Total Spend": 123.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.67, "MEDIAN_SPEND_PER_CUSTOMER": 25.67 }, "geometry": { "type": "Point", "coordinates": [ -75.241349, 39.958784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "LOCATION_NAME": "Barclay Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948498, "LONGITUDE": -75.170757, "DATE_RANGE_START": 2021, "Total Visits": 504.0, "Total Visitors": 399.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 32.0, "Total Spend": 57614.0, "Total Transactions": 200.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 263.87, "MEDIAN_SPEND_PER_CUSTOMER": 269.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170757, 39.948498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y9z", "LOCATION_NAME": "Copabanana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941497, "LONGITUDE": -75.14907, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 93.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 18426.0, "Total Transactions": 334.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.58, "MEDIAN_SPEND_PER_CUSTOMER": 50.58 }, "geometry": { "type": "Point", "coordinates": [ -75.14907, 39.941497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgy-ks5", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064334, "LONGITUDE": -75.23681, "DATE_RANGE_START": 2021, "Total Visits": 897.0, "Total Visitors": 248.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 60.0, "Total Spend": 14054.0, "Total Transactions": 971.0, "Total Customers": 742.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.83, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.23681, 40.064334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 205.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 22651.0, "Total Transactions": 2131.0, "Total Customers": 1346.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.11, "MEDIAN_SPEND_PER_CUSTOMER": 13.24 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087324, "LONGITUDE": -75.039996, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 224.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2493.0, "Total Transactions": 379.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.93, "MEDIAN_SPEND_PER_CUSTOMER": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.039996, 40.087324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "LOCATION_NAME": "Apple Retail Store", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2021, "Total Visits": 704.0, "Total Visitors": 551.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 295751.0, "Total Transactions": 1019.0, "Total Customers": 862.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.02, "MEDIAN_SPEND_PER_CUSTOMER": 115.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 112.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 38512.0, "Total Transactions": 1737.0, "Total Customers": 924.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.78, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2021, "Total Visits": 921.0, "Total Visitors": 558.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 62.0, "Total Spend": 26557.0, "Total Transactions": 1585.0, "Total Customers": 1074.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.59, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-bp9", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.064931, "LONGITUDE": -74.985003, "DATE_RANGE_START": 2021, "Total Visits": 3375.0, "Total Visitors": 1516.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 840.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.62, "MEDIAN_SPEND_PER_CUSTOMER": 41.62 }, "geometry": { "type": "Point", "coordinates": [ -74.985003, 40.064931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2021, "Total Visits": 1134.0, "Total Visitors": 976.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6514.0, "Total Transactions": 265.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.91807, "LONGITUDE": -75.17894, "DATE_RANGE_START": 2021, "Total Visits": 1998.0, "Total Visitors": 1253.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 280.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.52, "MEDIAN_SPEND_PER_CUSTOMER": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -75.17894, 39.91807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-3wk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.09991, "LONGITUDE": -75.009414, "DATE_RANGE_START": 2021, "Total Visits": 2530.0, "Total Visitors": 1780.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 882.0, "Total Transactions": 33.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.01, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009414, 40.09991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "LOCATION_NAME": "Boss Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 119.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 29843.0, "Total Transactions": 434.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.98, "MEDIAN_SPEND_PER_CUSTOMER": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "LOCATION_NAME": "Gaffney Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 95.0, "POI_CBG": 421010246001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7357.0, "Total Transactions": 148.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.71, "MEDIAN_SPEND_PER_CUSTOMER": 25.47 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnw-yvz", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.97112, "LONGITUDE": -75.151073, "DATE_RANGE_START": 2021, "Total Visits": 492.0, "Total Visitors": 389.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1161.0, "Total Transactions": 43.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.92, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151073, 39.97112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "LOCATION_NAME": "Tuna Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954087, "LONGITUDE": -75.143167, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 100.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 42258.0, "Total Transactions": 377.0, "Total Customers": 322.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.87, "MEDIAN_SPEND_PER_CUSTOMER": 81.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143167, 39.954087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp5-k2k", "LOCATION_NAME": "Momentos Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988005, "LONGITUDE": -75.109231, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 535.0, "Total Transactions": 29.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109231, 39.988005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-whq", "LOCATION_NAME": "Pho Xe Lua Viet Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955481, "LONGITUDE": -75.154675, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5134.0, "Total Transactions": 153.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.87, "MEDIAN_SPEND_PER_CUSTOMER": 32.89 }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj8-2c5", "LOCATION_NAME": "US1 Car Stereo", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029189, "LONGITUDE": -75.103473, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010292002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4521.0, "Total Transactions": 19.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 180.0, "MEDIAN_SPEND_PER_CUSTOMER": 260.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103473, 40.029189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-52k", "LOCATION_NAME": "Indian Sizzler", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959458, "LONGITUDE": -75.194962, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 36.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1955.0, "Total Transactions": 79.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.57, "MEDIAN_SPEND_PER_CUSTOMER": 23.19 }, "geometry": { "type": "Point", "coordinates": [ -75.194962, 39.959458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-mzf", "LOCATION_NAME": "Tir na nOg Irish Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.954415, "LONGITUDE": -75.16676, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 41.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 76.0, "Total Spend": 2819.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.98, "MEDIAN_SPEND_PER_CUSTOMER": 91.08 }, "geometry": { "type": "Point", "coordinates": [ -75.16676, 39.954415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p8m-syv", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02299, "LONGITUDE": -75.075925, "DATE_RANGE_START": 2021, "Total Visits": 847.0, "Total Visitors": 518.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4340.0, "Total Transactions": 298.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.78, "MEDIAN_SPEND_PER_CUSTOMER": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075925, 40.02299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2021, "Total Visits": 411.0, "Total Visitors": 241.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 262.0, "Total Spend": 29368.0, "Total Transactions": 1511.0, "Total Customers": 831.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.49, "MEDIAN_SPEND_PER_CUSTOMER": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "LOCATION_NAME": "Buddakan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948922, "LONGITUDE": -75.147091, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 274.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 77.0, "Total Spend": 69176.0, "Total Transactions": 442.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 118.46, "MEDIAN_SPEND_PER_CUSTOMER": 132.99 }, "geometry": { "type": "Point", "coordinates": [ -75.147091, 39.948922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-pn5", "LOCATION_NAME": "Yiro Yiro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954699, "LONGITUDE": -75.202157, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 191.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 43.0, "Total Spend": 3311.0, "Total Transactions": 136.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.95, "MEDIAN_SPEND_PER_CUSTOMER": 25.47 }, "geometry": { "type": "Point", "coordinates": [ -75.202157, 39.954699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pjf-kvf", "LOCATION_NAME": "Bijoux Fine Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.076914, "LONGITUDE": -75.207677, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 147.0, "Total Spend": 619.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.0, "MEDIAN_SPEND_PER_CUSTOMER": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207677, 40.076914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8vz", "LOCATION_NAME": "Cosi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950388, "LONGITUDE": -75.158367, "DATE_RANGE_START": 2021, "Total Visits": 1208.0, "Total Visitors": 900.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 3124.0, "Total Transactions": 229.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.07, "MEDIAN_SPEND_PER_CUSTOMER": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.158367, 39.950388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2021, "Total Visits": 578.0, "Total Visitors": 422.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2349.0, "Total Transactions": 64.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.91, "MEDIAN_SPEND_PER_CUSTOMER": 36.36 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pgh-8vz", "LOCATION_NAME": "Jaquez Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.000296, "LONGITUDE": -75.156196, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 29.0, "POI_CBG": 421010201013.0, "MEDIAN_DWELL": 30.0, "Total Spend": 183.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.48, "MEDIAN_SPEND_PER_CUSTOMER": 28.77 }, "geometry": { "type": "Point", "coordinates": [ -75.156196, 40.000296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "LOCATION_NAME": "Race Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 29.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 936.0, "Total Transactions": 93.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.87, "MEDIAN_SPEND_PER_CUSTOMER": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfv-94v", "LOCATION_NAME": "Wild Hand", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.046119, "LONGITUDE": -75.195912, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010236003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 325.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.195912, 40.046119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pp5-k4v", "LOCATION_NAME": "Ho Le Chan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987263, "LONGITUDE": -75.109046, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 14.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": null, "Total Spend": 286.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.25 }, "geometry": { "type": "Point", "coordinates": [ -75.109046, 39.987263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-ph6-whq", "LOCATION_NAME": "Cedar Park Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986565, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4478.0, "Total Transactions": 222.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "LOCATION_NAME": "Villavillekula", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075713, "LONGITUDE": -75.205415, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 2519.0, "Total Transactions": 41.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.44, "MEDIAN_SPEND_PER_CUSTOMER": 67.44 }, "geometry": { "type": "Point", "coordinates": [ -75.205415, 40.075713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-mzf", "LOCATION_NAME": "Cantina Dos Segundos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964821, "LONGITUDE": -75.140233, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 33.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 134.0, "Total Spend": 20732.0, "Total Transactions": 305.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.31, "MEDIAN_SPEND_PER_CUSTOMER": 54.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140233, 39.964821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmf-kzz", "LOCATION_NAME": "City Tap House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95591, "LONGITUDE": -75.169553, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 2383.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.45, "MEDIAN_SPEND_PER_CUSTOMER": 61.45 }, "geometry": { "type": "Point", "coordinates": [ -75.169553, 39.95591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p83-wzf", "LOCATION_NAME": "Beautyland", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.086398, "LONGITUDE": -75.046895, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 53.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 519.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.86 }, "geometry": { "type": "Point", "coordinates": [ -75.046895, 40.086398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgf-575", "LOCATION_NAME": "Crackn Crabs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960125, "LONGITUDE": -75.197142, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 69.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 655.0, "Total Spend": 6653.0, "Total Transactions": 126.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.36, "MEDIAN_SPEND_PER_CUSTOMER": 46.28 }, "geometry": { "type": "Point", "coordinates": [ -75.197142, 39.960125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.925864, "LONGITUDE": -75.142894, "DATE_RANGE_START": 2021, "Total Visits": 3733.0, "Total Visitors": 2630.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 207571.0, "Total Transactions": 1819.0, "Total Customers": 1074.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.36, "MEDIAN_SPEND_PER_CUSTOMER": 64.79 }, "geometry": { "type": "Point", "coordinates": [ -75.142894, 39.925864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "LOCATION_NAME": "Trader Joe's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954199, "LONGITUDE": -75.176054, "DATE_RANGE_START": 2021, "Total Visits": 1511.0, "Total Visitors": 1162.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 811629.0, "Total Transactions": 16315.0, "Total Customers": 9551.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.27, "MEDIAN_SPEND_PER_CUSTOMER": 63.08 }, "geometry": { "type": "Point", "coordinates": [ -75.176054, 39.954199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.878244, "LONGITUDE": -75.24235, "DATE_RANGE_START": 2021, "Total Visits": 56783.0, "Total Visitors": 47866.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 11733.0, "Total Transactions": 740.0, "Total Customers": 697.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.35, "MEDIAN_SPEND_PER_CUSTOMER": 13.71 }, "geometry": { "type": "Point", "coordinates": [ -75.24235, 39.878244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7v-nnq", "LOCATION_NAME": "Tano's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062163, "LONGITUDE": -75.080393, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 38.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 409.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.78, "MEDIAN_SPEND_PER_CUSTOMER": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080393, 40.062163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-8d9", "LOCATION_NAME": "Bee Natural", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952966, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 2319.0, "Total Transactions": 122.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.69, "MEDIAN_SPEND_PER_CUSTOMER": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.952966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-7bk", "LOCATION_NAME": "VIP Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.94892, "LONGITUDE": -75.162809, "DATE_RANGE_START": 2021, "Total Visits": 212.0, "Total Visitors": 131.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 152.0, "Total Spend": 32543.0, "Total Transactions": 1988.0, "Total Customers": 1007.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.162809, 39.94892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-47q", "LOCATION_NAME": "Beauty Time", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040779, "LONGITUDE": -75.109561, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 119.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5814.0, "Total Transactions": 177.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.44, "MEDIAN_SPEND_PER_CUSTOMER": 27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.109561, 40.040779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 67.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 13715.0, "Total Transactions": 411.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.55 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "LOCATION_NAME": "Dick's Sporting Goods", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.085609, "LONGITUDE": -74.967208, "DATE_RANGE_START": 2021, "Total Visits": 592.0, "Total Visitors": 530.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3492.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.14, "MEDIAN_SPEND_PER_CUSTOMER": 81.14 }, "geometry": { "type": "Point", "coordinates": [ -74.967208, 40.085609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2021, "Total Visits": 232.0, "Total Visitors": 203.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13974.0, "Total Transactions": 893.0, "Total Customers": 678.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.35, "MEDIAN_SPEND_PER_CUSTOMER": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "LOCATION_NAME": "Ocean Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95567, "LONGITUDE": -75.156821, "DATE_RANGE_START": 2021, "Total Visits": 5360.0, "Total Visitors": 4019.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 11459.0, "Total Transactions": 146.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.9, "MEDIAN_SPEND_PER_CUSTOMER": 66.88 }, "geometry": { "type": "Point", "coordinates": [ -75.156821, 39.95567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 84.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 47.0, "Total Spend": 23370.0, "Total Transactions": 389.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.6, "MEDIAN_SPEND_PER_CUSTOMER": 54.71 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pfz-bhq", "LOCATION_NAME": "Valerio Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025342, "LONGITUDE": -75.222719, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 91.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 9540.0, "Total Transactions": 773.0, "Total Customers": 532.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.02, "MEDIAN_SPEND_PER_CUSTOMER": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.222719, 40.025342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "LOCATION_NAME": "Aldo Lamberti Trattoria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.874852, "LONGITUDE": -75.241162, "DATE_RANGE_START": 2021, "Total Visits": 12234.0, "Total Visitors": 11215.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 434.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.72, "MEDIAN_SPEND_PER_CUSTOMER": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.241162, 39.874852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmf-tvz", "LOCATION_NAME": "Aurora Grace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949402, "LONGITUDE": -75.170471, "DATE_RANGE_START": 2021, "Total Visits": 1310.0, "Total Visitors": 632.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 263.0, "Total Spend": 637.0, "Total Transactions": 45.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170471, 39.949402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2021, "Total Visits": 621.0, "Total Visitors": 286.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5477.0, "Total Transactions": 768.0, "Total Customers": 322.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.09, "MEDIAN_SPEND_PER_CUSTOMER": 9.11 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "LOCATION_NAME": "Sang Kee Peking Duck House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 322.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 19082.0, "Total Transactions": 487.0, "Total Customers": 446.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.82, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "LOCATION_NAME": "Bleu Martini", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949349, "LONGITUDE": -75.144205, "DATE_RANGE_START": 2021, "Total Visits": 1625.0, "Total Visitors": 1327.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 44703.0, "Total Transactions": 601.0, "Total Customers": 408.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144205, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-7qz", "LOCATION_NAME": "Wax Downtown", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948559, "LONGITUDE": -75.153964, "DATE_RANGE_START": 2021, "Total Visits": 1950.0, "Total Visitors": 1370.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 97.0, "Total Spend": 987.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.0, "MEDIAN_SPEND_PER_CUSTOMER": 66.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153964, 39.948559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgh-vmk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982434, "LONGITUDE": -75.155908, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 203.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 117.0, "Total Spend": 4121.0, "Total Transactions": 344.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.7, "MEDIAN_SPEND_PER_CUSTOMER": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.155908, 39.982434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "LOCATION_NAME": "Chuck E. Cheese's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921782, "LONGITUDE": -75.1449, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 110.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 6870.0, "Total Transactions": 122.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.97, "MEDIAN_SPEND_PER_CUSTOMER": 25.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1449, 39.921782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 81.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 1193.0, "Total Spend": 10259.0, "Total Transactions": 1227.0, "Total Customers": 788.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.32, "MEDIAN_SPEND_PER_CUSTOMER": 8.52 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pmb-btv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.943154, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2021, "Total Visits": 2518.0, "Total Visitors": 1370.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 13.0, "Total Spend": 20408.0, "Total Transactions": 988.0, "Total Customers": 589.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.14, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.943154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.059864, "LONGITUDE": -75.166534, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 248.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2935.0, "Total Transactions": 174.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 20.69 }, "geometry": { "type": "Point", "coordinates": [ -75.166534, 40.059864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035531, "LONGITUDE": -75.217119, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 165.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7837.0, "Total Transactions": 1117.0, "Total Customers": 566.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.11, "MEDIAN_SPEND_PER_CUSTOMER": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.217119, 40.035531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "LOCATION_NAME": "Somerton Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.110353, "LONGITUDE": -75.024095, "DATE_RANGE_START": 2021, "Total Visits": 1695.0, "Total Visitors": 1286.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5392.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 200.0, "MEDIAN_SPEND_PER_CUSTOMER": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024095, 40.110353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "LOCATION_NAME": "Michaels Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.082446, "LONGITUDE": -75.023342, "DATE_RANGE_START": 2021, "Total Visits": 907.0, "Total Visitors": 797.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 73556.0, "Total Transactions": 2076.0, "Total Customers": 1714.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.37, "MEDIAN_SPEND_PER_CUSTOMER": 27.46 }, "geometry": { "type": "Point", "coordinates": [ -75.023342, 40.082446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.029581, "LONGITUDE": -75.100406, "DATE_RANGE_START": 2021, "Total Visits": 566.0, "Total Visitors": 511.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 16558.0, "Total Transactions": 344.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.37, "MEDIAN_SPEND_PER_CUSTOMER": 41.17 }, "geometry": { "type": "Point", "coordinates": [ -75.100406, 40.029581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmd-s5z", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.945275, "LONGITUDE": -75.177239, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 74.0, "POI_CBG": 421010012013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8449.0, "Total Transactions": 210.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.38, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.177239, 39.945275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-psq", "LOCATION_NAME": "Pho House Thang Long", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969594, "LONGITUDE": -75.138911, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 50.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3002.0, "Total Transactions": 93.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.32, "MEDIAN_SPEND_PER_CUSTOMER": 27.59 }, "geometry": { "type": "Point", "coordinates": [ -75.138911, 39.969594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvw-hwk", "LOCATION_NAME": "Quick & Quality", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953576, "LONGITUDE": -75.219432, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 26.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 32.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.5, "MEDIAN_SPEND_PER_CUSTOMER": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.219432, 39.953576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-gzf", "LOCATION_NAME": "U Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947628, "LONGITUDE": -75.161514, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 29.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 711.0, "Total Spend": 36723.0, "Total Transactions": 1411.0, "Total Customers": 675.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 31.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161514, 39.947628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "LOCATION_NAME": "The Bottle Shop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 75.0, "Total Spend": 21075.0, "Total Transactions": 864.0, "Total Customers": 580.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.42, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgy-r6k", "LOCATION_NAME": "Hopkins Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.051828, "LONGITUDE": -75.236578, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 36.0, "POI_CBG": 421010219001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 635.0, "Total Transactions": 21.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.99 }, "geometry": { "type": "Point", "coordinates": [ -75.236578, 40.051828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "LOCATION_NAME": "Bassetts Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 67.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 129.0, "Total Spend": 7814.0, "Total Transactions": 718.0, "Total Customers": 666.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 43.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 492.0, "Total Spend": 9842.0, "Total Transactions": 735.0, "Total Customers": 499.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.22, "MEDIAN_SPEND_PER_CUSTOMER": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "LOCATION_NAME": "SquareBurger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 69.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 69.0, "Total Spend": 1412.0, "Total Transactions": 112.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040654, "LONGITUDE": -75.144015, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 48.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4582.0, "Total Transactions": 186.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.62, "MEDIAN_SPEND_PER_CUSTOMER": 25.79 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.040654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-t5f", "LOCATION_NAME": "Golden Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965831, "LONGITUDE": -75.160375, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 323.0, "Total Spend": 1389.0, "Total Transactions": 57.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.1, "MEDIAN_SPEND_PER_CUSTOMER": 21.85 }, "geometry": { "type": "Point", "coordinates": [ -75.160375, 39.965831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-pn5", "LOCATION_NAME": "U Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954979, "LONGITUDE": -75.202634, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 72.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 29.0, "Total Spend": 2560.0, "Total Transactions": 88.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.16, "MEDIAN_SPEND_PER_CUSTOMER": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.202634, 39.954979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 295.0, "Total Transactions": 38.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.32, "MEDIAN_SPEND_PER_CUSTOMER": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "LOCATION_NAME": "Frankford Hall", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2021, "Total Visits": 764.0, "Total Visitors": 675.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 63.0, "Total Spend": 96885.0, "Total Transactions": 3585.0, "Total Customers": 2484.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.99 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955218, "LONGITUDE": -75.155815, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 232.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6212.0, "Total Transactions": 105.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.12, "MEDIAN_SPEND_PER_CUSTOMER": 51.51 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 39.955218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-xnq", "LOCATION_NAME": "Dim Sum Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955197, "LONGITUDE": -75.156774, "DATE_RANGE_START": 2021, "Total Visits": 260.0, "Total Visitors": 234.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 773.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 161.85, "MEDIAN_SPEND_PER_CUSTOMER": 161.85 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 39.955197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "LOCATION_NAME": "New Delhi Indian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 203.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 8694.0, "Total Transactions": 267.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.06, "MEDIAN_SPEND_PER_CUSTOMER": 36.57 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "LOCATION_NAME": "Chicko Tako", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 115.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3612.0, "Total Transactions": 174.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.6, "MEDIAN_SPEND_PER_CUSTOMER": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "LOCATION_NAME": "Greek Lady", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2021, "Total Visits": 255.0, "Total Visitors": 208.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 106.0, "Total Spend": 21121.0, "Total Transactions": 1148.0, "Total Customers": 835.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.66, "MEDIAN_SPEND_PER_CUSTOMER": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086321, "LONGITUDE": -74.971748, "DATE_RANGE_START": 2021, "Total Visits": 1685.0, "Total Visitors": 967.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 2.0, "Total Spend": 18814.0, "Total Transactions": 2317.0, "Total Customers": 761.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.71, "MEDIAN_SPEND_PER_CUSTOMER": 9.06 }, "geometry": { "type": "Point", "coordinates": [ -74.971748, 40.086321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pj2-d9z", "LOCATION_NAME": "T&S Express Market", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.010871, "LONGITUDE": -75.104013, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010191002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 123.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104013, 40.010871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-psq", "LOCATION_NAME": "Magic Noodles", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043529, "LONGITUDE": -75.052298, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 38.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 866.0, "Total Transactions": 29.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.05, "MEDIAN_SPEND_PER_CUSTOMER": 31.05 }, "geometry": { "type": "Point", "coordinates": [ -75.052298, 40.043529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phz-2ff", "LOCATION_NAME": "Wyoming Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020426, "LONGITUDE": -75.113704, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 50.0, "POI_CBG": 421010289022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 338.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.8, "MEDIAN_SPEND_PER_CUSTOMER": 15.86 }, "geometry": { "type": "Point", "coordinates": [ -75.113704, 40.020426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfz-ch5", "LOCATION_NAME": "Craft Manayunk", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022994, "LONGITUDE": -75.219064, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 109.0, "Total Spend": 18389.0, "Total Transactions": 308.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.78, "MEDIAN_SPEND_PER_CUSTOMER": 52.6 }, "geometry": { "type": "Point", "coordinates": [ -75.219064, 40.022994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "LOCATION_NAME": "Moy Fong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 69.0, "POI_CBG": 421010264005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4210.0, "Total Transactions": 193.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.32, "MEDIAN_SPEND_PER_CUSTOMER": 22.07 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "LOCATION_NAME": "Blue Corn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2021, "Total Visits": 592.0, "Total Visitors": 449.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 82.0, "Total Spend": 3340.0, "Total Transactions": 119.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.52, "MEDIAN_SPEND_PER_CUSTOMER": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "LOCATION_NAME": "Vernick Food & Drink", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2021, "Total Visits": 2547.0, "Total Visitors": 1465.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 226.0, "Total Spend": 12232.0, "Total Transactions": 88.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.38, "MEDIAN_SPEND_PER_CUSTOMER": 120.52 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-54v", "LOCATION_NAME": "Wood Street Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958437, "LONGITUDE": -75.158269, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 93.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 1105.0, "Total Spend": 11668.0, "Total Transactions": 358.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.52, "MEDIAN_SPEND_PER_CUSTOMER": 40.42 }, "geometry": { "type": "Point", "coordinates": [ -75.158269, 39.958437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-5zz", "LOCATION_NAME": "Panda Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949206, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2021, "Total Visits": 391.0, "Total Visitors": 177.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 228.0, "Total Spend": 971.0, "Total Transactions": 62.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.45, "MEDIAN_SPEND_PER_CUSTOMER": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.949206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 251.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1614.0, "Total Transactions": 124.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.63, "MEDIAN_SPEND_PER_CUSTOMER": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-zfz", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956578, "LONGITUDE": -75.177927, "DATE_RANGE_START": 2021, "Total Visits": 437.0, "Total Visitors": 260.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 83.0, "Total Spend": 987.0, "Total Transactions": 74.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.177927, 39.956578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm7-qj9", "LOCATION_NAME": "Cafe y Chocolate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924573, "LONGITUDE": -75.172685, "DATE_RANGE_START": 2021, "Total Visits": 325.0, "Total Visitors": 200.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 383.0, "Total Spend": 5425.0, "Total Transactions": 105.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.88, "MEDIAN_SPEND_PER_CUSTOMER": 51.12 }, "geometry": { "type": "Point", "coordinates": [ -75.172685, 39.924573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2021, "Total Visits": 780.0, "Total Visitors": 556.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 22661.0, "Total Transactions": 1883.0, "Total Customers": 1179.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.18, "MEDIAN_SPEND_PER_CUSTOMER": 13.24 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2021, "Total Visits": 272.0, "Total Visitors": 179.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13754.0, "Total Transactions": 1742.0, "Total Customers": 900.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.28 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg9-ty9", "LOCATION_NAME": "I Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963033, "LONGITUDE": -75.164167, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": null, "Total Spend": 3646.0, "Total Transactions": 198.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.164167, 39.963033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2021, "Total Visits": 1053.0, "Total Visitors": 659.0, "POI_CBG": 421010012021.0, "MEDIAN_DWELL": 37.0, "Total Spend": 35773.0, "Total Transactions": 2289.0, "Total Customers": 1014.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.88, "MEDIAN_SPEND_PER_CUSTOMER": 17.51 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2021, "Total Visits": 1064.0, "Total Visitors": 754.0, "POI_CBG": 421010337022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9606.0, "Total Transactions": 489.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 20.39 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031321, "LONGITUDE": -75.083478, "DATE_RANGE_START": 2021, "Total Visits": 1437.0, "Total Visitors": 914.0, "POI_CBG": 421010318004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 651.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.76, "MEDIAN_SPEND_PER_CUSTOMER": 26.76 }, "geometry": { "type": "Point", "coordinates": [ -75.083478, 40.031321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phj-rp9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.07278, "LONGITUDE": -75.15833, "DATE_RANGE_START": 2021, "Total Visits": 1788.0, "Total Visitors": 1076.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1524.0, "Total Transactions": 50.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.11, "MEDIAN_SPEND_PER_CUSTOMER": 41.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15833, 40.07278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-8y9", "LOCATION_NAME": "Forever 21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951978, "LONGITUDE": -75.155812, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 28988.0, "Total Transactions": 907.0, "Total Customers": 790.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.02, "MEDIAN_SPEND_PER_CUSTOMER": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155812, 39.951978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "LOCATION_NAME": "Ritz Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2021, "Total Visits": 905.0, "Total Visitors": 726.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 12103.0, "Total Transactions": 360.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.64, "MEDIAN_SPEND_PER_CUSTOMER": 36.91 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-jjv", "LOCATION_NAME": "MAC Cosmetics", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951489, "LONGITUDE": -75.170193, "DATE_RANGE_START": 2021, "Total Visits": 2017.0, "Total Visitors": 1434.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 62.0, "Total Spend": 896.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.26, "MEDIAN_SPEND_PER_CUSTOMER": 43.26 }, "geometry": { "type": "Point", "coordinates": [ -75.170193, 39.951489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.100724, "LONGITUDE": -75.010588, "DATE_RANGE_START": 2021, "Total Visits": 881.0, "Total Visitors": 616.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 7597.0, "Total Transactions": 205.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.86, "MEDIAN_SPEND_PER_CUSTOMER": 26.86 }, "geometry": { "type": "Point", "coordinates": [ -75.010588, 40.100724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p8m-v2k", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.029763, "LONGITUDE": -75.058989, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 265.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 991.0, "Total Transactions": 41.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.88, "MEDIAN_SPEND_PER_CUSTOMER": 23.34 }, "geometry": { "type": "Point", "coordinates": [ -75.058989, 40.029763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.91709, "LONGITUDE": -75.185434, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 291.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 16237.0, "Total Transactions": 368.0, "Total Customers": 334.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.7, "MEDIAN_SPEND_PER_CUSTOMER": 36.04 }, "geometry": { "type": "Point", "coordinates": [ -75.185434, 39.91709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-qs5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031776, "LONGITUDE": -75.104312, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 55.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 4526.0, "Total Transactions": 580.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 9.46 }, "geometry": { "type": "Point", "coordinates": [ -75.104312, 40.031776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "LOCATION_NAME": "A& A Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 10.0, "POI_CBG": 421010093001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1690.0, "Total Transactions": 146.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-gp9", "LOCATION_NAME": "Umai Umai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964683, "LONGITUDE": -75.174102, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 302.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174102, 39.964683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "LOCATION_NAME": "La Tienda MiniMarket", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 2.0, "Total Spend": 31.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.56, "MEDIAN_SPEND_PER_CUSTOMER": 6.56 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-zmk", "LOCATION_NAME": "Hip Hemp Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94189, "LONGITUDE": -75.153788, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": null, "Total Spend": 3684.0, "Total Transactions": 124.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.26, "MEDIAN_SPEND_PER_CUSTOMER": 39.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153788, 39.94189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-w8v", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.955679, "LONGITUDE": -75.181735, "DATE_RANGE_START": 2021, "Total Visits": 22380.0, "Total Visitors": 15420.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 362.0, "Total Transactions": 41.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.98, "MEDIAN_SPEND_PER_CUSTOMER": 9.99 }, "geometry": { "type": "Point", "coordinates": [ -75.181735, 39.955679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p7v-vxq", "LOCATION_NAME": "Algon Auto Clinic", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055758, "LONGITUDE": -75.073258, "DATE_RANGE_START": 2021, "Total Visits": 325.0, "Total Visitors": 205.0, "POI_CBG": 421010338002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 773.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073258, 40.055758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-qs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.912518, "LONGITUDE": -75.243563, "DATE_RANGE_START": 2021, "Total Visits": 1248.0, "Total Visitors": 842.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 783.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.45, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.243563, 39.912518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "LOCATION_NAME": "Asia Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 60.0, "POI_CBG": 421010310001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1508.0, "Total Transactions": 81.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.2, "MEDIAN_SPEND_PER_CUSTOMER": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "LOCATION_NAME": "Mulberry Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951945, "LONGITUDE": -75.144635, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 69.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 19108.0, "Total Transactions": 955.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.63, "MEDIAN_SPEND_PER_CUSTOMER": 25.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144635, 39.951945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "LOCATION_NAME": "Nautica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087648, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3648.0, "Total Transactions": 105.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.5, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.921672, "LONGITUDE": -75.186144, "DATE_RANGE_START": 2021, "Total Visits": 1243.0, "Total Visitors": 943.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 20302.0, "Total Transactions": 408.0, "Total Customers": 353.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.58, "MEDIAN_SPEND_PER_CUSTOMER": 41.36 }, "geometry": { "type": "Point", "coordinates": [ -75.186144, 39.921672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p8d-rp9", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998893, "LONGITUDE": -75.091892, "DATE_RANGE_START": 2021, "Total Visits": 6353.0, "Total Visitors": 3866.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 27.0, "Total Spend": 226658.0, "Total Transactions": 4394.0, "Total Customers": 2673.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.49, "MEDIAN_SPEND_PER_CUSTOMER": 51.68 }, "geometry": { "type": "Point", "coordinates": [ -75.091892, 39.998893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8j-bkz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.037321, "LONGITUDE": -75.040337, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 186.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 541.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.05, "MEDIAN_SPEND_PER_CUSTOMER": 15.05 }, "geometry": { "type": "Point", "coordinates": [ -75.040337, 40.037321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-ch5", "LOCATION_NAME": "Fishtown Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.974427, "LONGITUDE": -75.132999, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 5.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 350.0, "Total Spend": 7233.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.16, "MEDIAN_SPEND_PER_CUSTOMER": 56.16 }, "geometry": { "type": "Point", "coordinates": [ -75.132999, 39.974427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 203.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.9, "MEDIAN_SPEND_PER_CUSTOMER": 25.32 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pnx-sh5", "LOCATION_NAME": "The International", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.974951, "LONGITUDE": -75.134534, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": null, "Total Spend": 2723.0, "Total Transactions": 48.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.71, "MEDIAN_SPEND_PER_CUSTOMER": 58.79 }, "geometry": { "type": "Point", "coordinates": [ -75.134534, 39.974951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-vxq", "LOCATION_NAME": "Discount Shop", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029541, "LONGITUDE": -75.055611, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 26.0, "POI_CBG": 421010320003.0, "MEDIAN_DWELL": 205.0, "Total Spend": 2030.0, "Total Transactions": 186.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.055611, 40.029541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8n-6kz", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.027244, "LONGITUDE": -75.059172, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 100.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 215.0, "Total Spend": 2026.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.59, "MEDIAN_SPEND_PER_CUSTOMER": 74.91 }, "geometry": { "type": "Point", "coordinates": [ -75.059172, 40.027244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2021, "Total Visits": 2635.0, "Total Visitors": 1609.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 375908.0, "Total Transactions": 4905.0, "Total Customers": 2718.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.46, "MEDIAN_SPEND_PER_CUSTOMER": 44.43 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2021, "Total Visits": 1196.0, "Total Visitors": 792.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10310.0, "Total Transactions": 468.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.36, "MEDIAN_SPEND_PER_CUSTOMER": 20.94 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 162.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 20476.0, "Total Transactions": 795.0, "Total Customers": 525.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.94, "MEDIAN_SPEND_PER_CUSTOMER": 22.01 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "LOCATION_NAME": "Bloomingdale's Outlet Philadelphia", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 99.0, "Total Spend": 13030.0, "Total Transactions": 203.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.17, "MEDIAN_SPEND_PER_CUSTOMER": 46.58 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040673, "LONGITUDE": -75.076835, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 205.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 350.0, "Total Transactions": 29.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.15, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.076835, 40.040673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.021323, "LONGITUDE": -75.133522, "DATE_RANGE_START": 2021, "Total Visits": 296.0, "Total Visitors": 191.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 319.0, "Total Transactions": 21.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.88, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133522, 40.021323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "LOCATION_NAME": "Cottman Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2021, "Total Visits": 301.0, "Total Visitors": 167.0, "POI_CBG": 421010331013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8396.0, "Total Transactions": 325.0, "Total Customers": 181.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 34.27 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-qvf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.03237, "LONGITUDE": -75.101559, "DATE_RANGE_START": 2021, "Total Visits": 301.0, "Total Visitors": 282.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5163.0, "Total Transactions": 84.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.99, "MEDIAN_SPEND_PER_CUSTOMER": 56.36 }, "geometry": { "type": "Point", "coordinates": [ -75.101559, 40.03237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9q-ht9", "LOCATION_NAME": "Vince's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078713, "LONGITUDE": -75.027145, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 88.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 808.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.07, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027145, 40.078713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 64.0, "Total Spend": 5388.0, "Total Transactions": 332.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.33, "MEDIAN_SPEND_PER_CUSTOMER": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011206, "LONGITUDE": -75.113008, "DATE_RANGE_START": 2021, "Total Visits": 556.0, "Total Visitors": 332.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12755.0, "Total Transactions": 1379.0, "Total Customers": 628.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.84, "MEDIAN_SPEND_PER_CUSTOMER": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.113008, 40.011206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050984, "LONGITUDE": -75.010119, "DATE_RANGE_START": 2021, "Total Visits": 1544.0, "Total Visitors": 742.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8530.0, "Total Transactions": 1172.0, "Total Customers": 561.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 8.61 }, "geometry": { "type": "Point", "coordinates": [ -75.010119, 40.050984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "LOCATION_NAME": "Shot Tower Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 84.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 362.0, "Total Spend": 8796.0, "Total Transactions": 1038.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.93 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-75z", "LOCATION_NAME": "Ninja Bao", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953417, "LONGITUDE": -75.165928, "DATE_RANGE_START": 2021, "Total Visits": 1909.0, "Total Visitors": 1301.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 91.0, "Total Spend": 1032.0, "Total Transactions": 48.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.43, "MEDIAN_SPEND_PER_CUSTOMER": 22.04 }, "geometry": { "type": "Point", "coordinates": [ -75.165928, 39.953417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7w-c89", "LOCATION_NAME": "Philly's Finest Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068215, "LONGITUDE": -75.06872, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 138.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 55.0, "Total Spend": 1374.0, "Total Transactions": 41.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.22, "MEDIAN_SPEND_PER_CUSTOMER": 58.13 }, "geometry": { "type": "Point", "coordinates": [ -75.06872, 40.068215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-y5f", "LOCATION_NAME": "Mineralistic", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 39.941629, "LONGITUDE": -75.148231, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 72.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4410.0, "Total Transactions": 107.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.148231, 39.941629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-jd9", "LOCATION_NAME": "Watch Co", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952246, "LONGITUDE": -75.168308, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 99.0, "Total Spend": 1363.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168308, 39.952246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7b-kpv", "LOCATION_NAME": "China City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055685, "LONGITUDE": -75.004529, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": null, "Total Spend": 141.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.77, "MEDIAN_SPEND_PER_CUSTOMER": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.004529, 40.055685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "LOCATION_NAME": "Quetzally", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941598, "LONGITUDE": -75.163087, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1310.0, "Total Transactions": 50.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.62, "MEDIAN_SPEND_PER_CUSTOMER": 29.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163087, 39.941598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-mp9", "LOCATION_NAME": "Concourse Dance Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95318, "LONGITUDE": -75.167893, "DATE_RANGE_START": 2021, "Total Visits": 1055.0, "Total Visitors": 718.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 70.0, "Total Spend": 63385.0, "Total Transactions": 2663.0, "Total Customers": 1434.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.95, "MEDIAN_SPEND_PER_CUSTOMER": 34.98 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 39.95318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-snq", "LOCATION_NAME": "Alice Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948159, "LONGITUDE": -75.166048, "DATE_RANGE_START": 2021, "Total Visits": 4076.0, "Total Visitors": 2654.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 98.0, "Total Spend": 9108.0, "Total Transactions": 456.0, "Total Customers": 389.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.66, "MEDIAN_SPEND_PER_CUSTOMER": 13.63 }, "geometry": { "type": "Point", "coordinates": [ -75.166048, 39.948159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-fcq", "LOCATION_NAME": "Kanella", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946359, "LONGITUDE": -75.157966, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 148.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1979.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.84, "MEDIAN_SPEND_PER_CUSTOMER": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.157966, 39.946359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "LOCATION_NAME": "El Vez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2021, "Total Visits": 525.0, "Total Visitors": 382.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 175519.0, "Total Transactions": 2117.0, "Total Customers": 1945.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.21, "MEDIAN_SPEND_PER_CUSTOMER": 68.16 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-7nq", "LOCATION_NAME": "Jam Rock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928385, "LONGITUDE": -75.230768, "DATE_RANGE_START": 2021, "Total Visits": 819.0, "Total Visitors": 589.0, "POI_CBG": 421010066004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1495.0, "Total Transactions": 72.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.230768, 39.928385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pj2-94v", "LOCATION_NAME": "Hoagies Plus", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0012, "LONGITUDE": -75.114597, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 86.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 60.0, "Total Spend": 1304.0, "Total Transactions": 53.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 21.28 }, "geometry": { "type": "Point", "coordinates": [ -75.114597, 40.0012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7yv", "LOCATION_NAME": "Hunger Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953665, "LONGITUDE": -75.159753, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 174.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 570.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.78, "MEDIAN_SPEND_PER_CUSTOMER": 19.78 }, "geometry": { "type": "Point", "coordinates": [ -75.159753, 39.953665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-fmk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054375, "LONGITUDE": -75.072167, "DATE_RANGE_START": 2021, "Total Visits": 425.0, "Total Visitors": 329.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 40.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.47, "MEDIAN_SPEND_PER_CUSTOMER": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.072167, 40.054375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-kcq", "LOCATION_NAME": "Sushi Ya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973653, "LONGITUDE": -75.177969, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 91.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 515.0, "Total Spend": 895.0, "Total Transactions": 38.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.99, "MEDIAN_SPEND_PER_CUSTOMER": 33.07 }, "geometry": { "type": "Point", "coordinates": [ -75.177969, 39.973653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2021, "Total Visits": 506.0, "Total Visitors": 313.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7901.0, "Total Transactions": 1043.0, "Total Customers": 504.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.26, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@63s-dvy-wtv", "LOCATION_NAME": "Don Barriga Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953099, "LONGITUDE": -75.211951, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 26.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 21.0, "Total Spend": 7690.0, "Total Transactions": 253.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.96, "MEDIAN_SPEND_PER_CUSTOMER": 31.39 }, "geometry": { "type": "Point", "coordinates": [ -75.211951, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-tgk", "LOCATION_NAME": "Southside Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019691, "LONGITUDE": -75.174271, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 33.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": 520.0, "Total Spend": 245.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174271, 40.019691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 62.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1148.0, "Total Transactions": 74.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.27 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 64.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 576.0, "Total Transactions": 43.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.65, "MEDIAN_SPEND_PER_CUSTOMER": 10.29 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084825, "LONGITUDE": -74.9723, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 126.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 3.0, "Total Spend": 16377.0, "Total Transactions": 716.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.61, "MEDIAN_SPEND_PER_CUSTOMER": 20.21 }, "geometry": { "type": "Point", "coordinates": [ -74.9723, 40.084825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-vcq", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.923962, "LONGITUDE": -75.139231, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 177.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3383.0, "Total Transactions": 33.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 109.49, "MEDIAN_SPEND_PER_CUSTOMER": 114.98 }, "geometry": { "type": "Point", "coordinates": [ -75.139231, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-qpv", "LOCATION_NAME": "Via Bicycle", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.943026, "LONGITUDE": -75.166002, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 72.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 56.0, "Total Spend": 4781.0, "Total Transactions": 67.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.75, "MEDIAN_SPEND_PER_CUSTOMER": 68.07 }, "geometry": { "type": "Point", "coordinates": [ -75.166002, 39.943026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.041766, "LONGITUDE": -75.026083, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 119.0, "POI_CBG": 421010329001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 428.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.31, "MEDIAN_SPEND_PER_CUSTOMER": 14.51 }, "geometry": { "type": "Point", "coordinates": [ -75.026083, 40.041766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 272.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 865.0, "Total Transactions": 53.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.8, "MEDIAN_SPEND_PER_CUSTOMER": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032503, "LONGITUDE": -75.08527, "DATE_RANGE_START": 2021, "Total Visits": 1482.0, "Total Visitors": 1014.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 254.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.1, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08527, 40.032503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.007189, "LONGITUDE": -75.137271, "DATE_RANGE_START": 2021, "Total Visits": 990.0, "Total Visitors": 728.0, "POI_CBG": 421010199001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 549.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.12, "MEDIAN_SPEND_PER_CUSTOMER": 38.61 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.007189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2021, "Total Visits": 979.0, "Total Visitors": 616.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17295.0, "Total Transactions": 821.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.51 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-x89", "LOCATION_NAME": "Twin Smoke Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.929672, "LONGITUDE": -75.161301, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 220.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1289.0, "Total Transactions": 57.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.51, "MEDIAN_SPEND_PER_CUSTOMER": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.161301, 39.929672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg3-jqf", "LOCATION_NAME": "Jansen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062669, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 45.0, "POI_CBG": 421010388001.0, "MEDIAN_DWELL": 203.0, "Total Spend": 15383.0, "Total Transactions": 48.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 252.33, "MEDIAN_SPEND_PER_CUSTOMER": 265.26 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 40.062669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "LOCATION_NAME": "Triangle Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 50.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 61.0, "Total Spend": 33543.0, "Total Transactions": 673.0, "Total Customers": 549.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.12, "MEDIAN_SPEND_PER_CUSTOMER": 44.86 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "LOCATION_NAME": "El Fuego", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 57.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1061.0, "Total Transactions": 93.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.35, "MEDIAN_SPEND_PER_CUSTOMER": 13.75 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "LOCATION_NAME": "Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95002, "LONGITUDE": -75.162328, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 67.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 128067.0, "Total Transactions": 2570.0, "Total Customers": 2141.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162328, 39.95002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "LOCATION_NAME": "Four Seasons Hotels and Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.955061, "LONGITUDE": -75.170762, "DATE_RANGE_START": 2021, "Total Visits": 3081.0, "Total Visitors": 1745.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 299.0, "Total Spend": 39715.0, "Total Transactions": 267.0, "Total Customers": 236.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.53, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170762, 39.955061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "LOCATION_NAME": "Dolce Carini Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 93.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 98.0, "Total Spend": 3125.0, "Total Transactions": 220.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 18.32 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pj6-k4v", "LOCATION_NAME": "Mari Mari", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04511, "LONGITUDE": -75.117199, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 314.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.117199, 40.04511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgm-3qz", "LOCATION_NAME": "LeBus East Falls", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00891, "LONGITUDE": -75.193713, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 282.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1236.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.33, "MEDIAN_SPEND_PER_CUSTOMER": 34.09 }, "geometry": { "type": "Point", "coordinates": [ -75.193713, 40.00891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-kcq", "LOCATION_NAME": "Sweet Charlie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95076, "LONGITUDE": -75.173342, "DATE_RANGE_START": 2021, "Total Visits": 1353.0, "Total Visitors": 988.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 81.0, "Total Spend": 2773.0, "Total Transactions": 246.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.69, "MEDIAN_SPEND_PER_CUSTOMER": 9.07 }, "geometry": { "type": "Point", "coordinates": [ -75.173342, 39.95076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055857, "LONGITUDE": -75.157863, "DATE_RANGE_START": 2021, "Total Visits": 606.0, "Total Visitors": 413.0, "POI_CBG": 421010265006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10605.0, "Total Transactions": 902.0, "Total Customers": 604.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.35, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157863, 40.055857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-7yv", "LOCATION_NAME": "Old City Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953757, "LONGITUDE": -75.158885, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 1899.0, "Total Transactions": 234.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.35, "MEDIAN_SPEND_PER_CUSTOMER": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158885, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-8sq", "LOCATION_NAME": "Cinnabon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952174, "LONGITUDE": -75.158425, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 2776.0, "Total Transactions": 317.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 8.15 }, "geometry": { "type": "Point", "coordinates": [ -75.158425, 39.952174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7907.0, "Total Transactions": 298.0, "Total Customers": 227.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.37, "MEDIAN_SPEND_PER_CUSTOMER": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pp4-vfz", "LOCATION_NAME": "Franco's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982045, "LONGITUDE": -75.121584, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010160004.0, "MEDIAN_DWELL": null, "Total Spend": 2937.0, "Total Transactions": 124.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.07 }, "geometry": { "type": "Point", "coordinates": [ -75.121584, 39.982045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010314022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3232.0, "Total Transactions": 64.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.97, "MEDIAN_SPEND_PER_CUSTOMER": 39.97 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pgg-qs5", "LOCATION_NAME": "32nd Street Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.005082, "LONGITUDE": -75.181898, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1139.0, "Total Transactions": 48.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181898, 40.005082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-ph6-q4v", "LOCATION_NAME": "Lucky Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976559, "LONGITUDE": -75.232622, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010112007.0, "MEDIAN_DWELL": null, "Total Spend": 123.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.11, "MEDIAN_SPEND_PER_CUSTOMER": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.232622, 39.976559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-45f", "LOCATION_NAME": "Md Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977208, "LONGITUDE": -75.147273, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 17.0, "POI_CBG": 421010145001.0, "MEDIAN_DWELL": 313.0, "Total Spend": 1226.0, "Total Transactions": 100.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.19, "MEDIAN_SPEND_PER_CUSTOMER": 5.19 }, "geometry": { "type": "Point", "coordinates": [ -75.147273, 39.977208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-w8v", "LOCATION_NAME": "Main Street Madness", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.018, "LONGITUDE": -75.213362, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 17.0, "POI_CBG": 421010209003.0, "MEDIAN_DWELL": 399.0, "Total Spend": 1678.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.0, "MEDIAN_SPEND_PER_CUSTOMER": 74.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213362, 40.018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7b-kj9", "LOCATION_NAME": "Villagio Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055388, "LONGITUDE": -75.003512, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 43.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 488.0, "Total Spend": 1479.0, "Total Transactions": 53.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.47, "MEDIAN_SPEND_PER_CUSTOMER": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.003512, 40.055388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025459, "LONGITUDE": -75.149625, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 45.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 119.0, "Total Spend": 402.0, "Total Transactions": 43.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.149625, 40.025459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918299, "LONGITUDE": -75.180698, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 60.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 15316.0, "Total Transactions": 685.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.05, "MEDIAN_SPEND_PER_CUSTOMER": 19.86 }, "geometry": { "type": "Point", "coordinates": [ -75.180698, 39.918299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "LOCATION_NAME": "Fat Tuesday", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 62.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 70.0, "Total Spend": 20729.0, "Total Transactions": 1093.0, "Total Customers": 895.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph6-whq", "LOCATION_NAME": "Italian Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986561, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 1284.0, "Total Transactions": 57.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.95, "MEDIAN_SPEND_PER_CUSTOMER": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "LOCATION_NAME": "Volo Coffeehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 25374.0, "Total Transactions": 2212.0, "Total Customers": 1036.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-kcq", "LOCATION_NAME": "Holme Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056893, "LONGITUDE": -75.027632, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010347021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 642.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.01, "MEDIAN_SPEND_PER_CUSTOMER": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.027632, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-gp9", "LOCATION_NAME": "Mercato BYOB", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946499, "LONGITUDE": -75.161768, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 1038.0, "Total Spend": 4263.0, "Total Transactions": 55.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.62, "MEDIAN_SPEND_PER_CUSTOMER": 60.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161768, 39.946499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "LOCATION_NAME": "China Royal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010333003.0, "MEDIAN_DWELL": null, "Total Spend": 1978.0, "Total Transactions": 93.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.5, "MEDIAN_SPEND_PER_CUSTOMER": 22.95 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "LOCATION_NAME": "Hoagie Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010266007.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2960.0, "Total Transactions": 124.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "LOCATION_NAME": "Jack B Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.939115, "LONGITUDE": -75.149838, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6509.0, "Total Transactions": 60.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.6, "MEDIAN_SPEND_PER_CUSTOMER": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149838, 39.939115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "LOCATION_NAME": "Bellini", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 212.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 21.0, "Total Spend": 7184.0, "Total Transactions": 41.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 116.8, "MEDIAN_SPEND_PER_CUSTOMER": 116.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "LOCATION_NAME": "City Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2021, "Total Visits": 401.0, "Total Visitors": 272.0, "POI_CBG": 421010042013.0, "MEDIAN_DWELL": 24.0, "Total Spend": 6469.0, "Total Transactions": 267.0, "Total Customers": 234.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.85, "MEDIAN_SPEND_PER_CUSTOMER": 22.45 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgk-2rk", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.994689, "LONGITUDE": -75.158268, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 60.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 54.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.26, "MEDIAN_SPEND_PER_CUSTOMER": 11.26 }, "geometry": { "type": "Point", "coordinates": [ -75.158268, 39.994689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "LOCATION_NAME": "Tio Flores", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94381, "LONGITUDE": -75.168972, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 146.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 28.0, "Total Spend": 5438.0, "Total Transactions": 107.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.7, "MEDIAN_SPEND_PER_CUSTOMER": 54.69 }, "geometry": { "type": "Point", "coordinates": [ -75.168972, 39.94381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pmb-v75", "LOCATION_NAME": "Mei Mei Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948931, "LONGITUDE": -75.143532, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 215.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 1484.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.25, "MEDIAN_SPEND_PER_CUSTOMER": 84.25 }, "geometry": { "type": "Point", "coordinates": [ -75.143532, 39.948931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg9-vs5", "LOCATION_NAME": "The Fairview", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965375, "LONGITUDE": -75.172387, "DATE_RANGE_START": 2021, "Total Visits": 284.0, "Total Visitors": 103.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 461.0, "Total Spend": 4134.0, "Total Transactions": 62.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.97, "MEDIAN_SPEND_PER_CUSTOMER": 46.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172387, 39.965375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-224@628-pg2-cdv", "LOCATION_NAME": "Cherish Philly", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058226, "LONGITUDE": -75.189354, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 88.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 102.0, "Total Spend": 216.0, "Total Transactions": 21.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.189354, 40.058226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "LOCATION_NAME": "DiNapoli Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 69.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1054.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.1, "MEDIAN_SPEND_PER_CUSTOMER": 36.14 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-djv", "LOCATION_NAME": "Quality Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050855, "LONGITUDE": -75.094676, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 72.0, "POI_CBG": 421010306007.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1060.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.13, "MEDIAN_SPEND_PER_CUSTOMER": 27.27 }, "geometry": { "type": "Point", "coordinates": [ -75.094676, 40.050855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 124.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9348.0, "Total Transactions": 415.0, "Total Customers": 337.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.29, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030371, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 279.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2252.0, "Total Transactions": 150.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.26, "MEDIAN_SPEND_PER_CUSTOMER": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2021, "Total Visits": 1692.0, "Total Visitors": 1057.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 36902.0, "Total Transactions": 3442.0, "Total Customers": 1487.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.049354, "LONGITUDE": -74.989522, "DATE_RANGE_START": 2021, "Total Visits": 1513.0, "Total Visitors": 916.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 29024.0, "Total Transactions": 2842.0, "Total Customers": 1086.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.77, "MEDIAN_SPEND_PER_CUSTOMER": 13.28 }, "geometry": { "type": "Point", "coordinates": [ -74.989522, 40.049354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "LOCATION_NAME": "Eye Encounters", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2021, "Total Visits": 4212.0, "Total Visitors": 2685.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 51.0, "Total Spend": 1456.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.0, "MEDIAN_SPEND_PER_CUSTOMER": 79.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-st9", "LOCATION_NAME": "Osteria", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.965046, "LONGITUDE": -75.161654, "DATE_RANGE_START": 2021, "Total Visits": 823.0, "Total Visitors": 537.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 200.0, "Total Spend": 27845.0, "Total Transactions": 222.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.08, "MEDIAN_SPEND_PER_CUSTOMER": 84.38 }, "geometry": { "type": "Point", "coordinates": [ -75.161654, 39.965046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.945629, "LONGITUDE": -75.237997, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 200.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 11.0, "Total Spend": 14845.0, "Total Transactions": 277.0, "Total Customers": 241.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.18, "MEDIAN_SPEND_PER_CUSTOMER": 29.69 }, "geometry": { "type": "Point", "coordinates": [ -75.237997, 39.945629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pj2-d35", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.010891, "LONGITUDE": -75.107156, "DATE_RANGE_START": 2021, "Total Visits": 174.0, "Total Visitors": 141.0, "POI_CBG": 421010191006.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3530.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.65, "MEDIAN_SPEND_PER_CUSTOMER": 89.65 }, "geometry": { "type": "Point", "coordinates": [ -75.107156, 40.010891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-jgk", "LOCATION_NAME": "AM Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.971594, "LONGITUDE": -75.225601, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 215.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2962.0, "Total Transactions": 294.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225601, 39.971594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22h@628-pmb-7yv", "LOCATION_NAME": "Sweet As Fudge Candy Shoppe", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.954075, "LONGITUDE": -75.15933, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 3204.0, "Total Transactions": 243.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.81, "MEDIAN_SPEND_PER_CUSTOMER": 12.34 }, "geometry": { "type": "Point", "coordinates": [ -75.15933, 39.954075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999174, "LONGITUDE": -75.093264, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 126.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1329.0, "Total Transactions": 48.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.3, "MEDIAN_SPEND_PER_CUSTOMER": 22.99 }, "geometry": { "type": "Point", "coordinates": [ -75.093264, 39.999174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.907673, "LONGITUDE": -75.189086, "DATE_RANGE_START": 2021, "Total Visits": 2800.0, "Total Visitors": 1974.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1736.0, "Total Transactions": 57.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.59, "MEDIAN_SPEND_PER_CUSTOMER": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.189086, 39.907673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.029566, "LONGITUDE": -75.100398, "DATE_RANGE_START": 2021, "Total Visits": 566.0, "Total Visitors": 511.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 5626.0, "Total Transactions": 146.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.6, "MEDIAN_SPEND_PER_CUSTOMER": 32.11 }, "geometry": { "type": "Point", "coordinates": [ -75.100398, 40.029566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pp2-sdv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.995956, "LONGITUDE": -75.09064, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 93.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 330.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.56, "MEDIAN_SPEND_PER_CUSTOMER": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.09064, 39.995956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "LOCATION_NAME": "Circle Thrift", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.980269, "LONGITUDE": -75.128616, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 196.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 63.0, "Total Spend": 3297.0, "Total Transactions": 203.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.64, "MEDIAN_SPEND_PER_CUSTOMER": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128616, 39.980269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "LOCATION_NAME": "Northeast Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 134.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 468.0, "Total Spend": 7716.0, "Total Transactions": 248.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.13, "MEDIAN_SPEND_PER_CUSTOMER": 35.45 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pp5-5vf", "LOCATION_NAME": "Buzz Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977401, "LONGITUDE": -75.135043, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010157002.0, "MEDIAN_DWELL": null, "Total Spend": 90.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.8, "MEDIAN_SPEND_PER_CUSTOMER": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135043, 39.977401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pjf-ks5", "LOCATION_NAME": "Threadwell", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.075533, "LONGITUDE": -75.206071, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 707.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.13, "MEDIAN_SPEND_PER_CUSTOMER": 77.13 }, "geometry": { "type": "Point", "coordinates": [ -75.206071, 40.075533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "LOCATION_NAME": "Friendship Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03925, "LONGITUDE": -75.04588, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2030.0, "Total Transactions": 29.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.49, "MEDIAN_SPEND_PER_CUSTOMER": 30.62 }, "geometry": { "type": "Point", "coordinates": [ -75.04588, 40.03925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pgf-gkz", "LOCATION_NAME": "J & S Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.963865, "LONGITUDE": -75.203063, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010107002.0, "MEDIAN_DWELL": 102.0, "Total Spend": 4029.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 844.0, "MEDIAN_SPEND_PER_CUSTOMER": 844.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203063, 39.963865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1018.0, "Total Transactions": 112.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm3-zfz", "LOCATION_NAME": "Los Charales", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923202, "LONGITUDE": -75.161541, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 29.0, "POI_CBG": 421010041013.0, "MEDIAN_DWELL": 340.0, "Total Spend": 138.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161541, 39.923202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "LOCATION_NAME": "Giorgio On Pine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 41.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1344.0, "Total Spend": 16047.0, "Total Transactions": 205.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.82, "MEDIAN_SPEND_PER_CUSTOMER": 70.05 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-3kf", "LOCATION_NAME": "Sheraton Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.957083, "LONGITUDE": -75.167351, "DATE_RANGE_START": 2021, "Total Visits": 2129.0, "Total Visitors": 1043.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 462.0, "Total Spend": 3600.0, "Total Transactions": 24.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.18, "MEDIAN_SPEND_PER_CUSTOMER": 296.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167351, 39.957083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-225@628-pjk-3nq", "LOCATION_NAME": "Lucky Star Asian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069778, "LONGITUDE": -75.239531, "DATE_RANGE_START": 2021, "Total Visits": 578.0, "Total Visitors": 413.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 23.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.5, "MEDIAN_SPEND_PER_CUSTOMER": 4.75 }, "geometry": { "type": "Point", "coordinates": [ -75.239531, 40.069778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 167.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1500.0, "Total Transactions": 95.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yqf", "LOCATION_NAME": "T Swirl Crepe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955094, "LONGITUDE": -75.156151, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 88.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 184.0, "Total Spend": 6788.0, "Total Transactions": 387.0, "Total Customers": 356.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.61, "MEDIAN_SPEND_PER_CUSTOMER": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.156151, 39.955094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "LOCATION_NAME": "3 Brothers Pizza & Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010379002.0, "MEDIAN_DWELL": null, "Total Spend": 3657.0, "Total Transactions": 279.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-dqf", "LOCATION_NAME": "Good Neighbor Mini Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.941908, "LONGITUDE": -75.220217, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010073001.0, "MEDIAN_DWELL": null, "Total Spend": 687.0, "Total Transactions": 76.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.220217, 39.941908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnw-m49", "LOCATION_NAME": "One Shot Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96771, "LONGITUDE": -75.140654, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 15676.0, "Total Transactions": 1002.0, "Total Customers": 613.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.91, "MEDIAN_SPEND_PER_CUSTOMER": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.140654, 39.96771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931641, "LONGITUDE": -75.160608, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 45.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5843.0, "Total Transactions": 976.0, "Total Customers": 437.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 7.74 }, "geometry": { "type": "Point", "coordinates": [ -75.160608, 39.931641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026858, "LONGITUDE": -75.208809, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 69.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 14673.0, "Total Transactions": 2081.0, "Total Customers": 885.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.208809, 40.026858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 129.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 19256.0, "Total Transactions": 449.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.29, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-j5f", "LOCATION_NAME": "Kitchen Kapers", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.949485, "LONGITUDE": -75.169064, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 220.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7403.0, "Total Transactions": 126.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.34, "MEDIAN_SPEND_PER_CUSTOMER": 33.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169064, 39.949485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8d-m8v", "LOCATION_NAME": "Quicky Mart Express", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.012599, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 103.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3009.0, "Total Transactions": 162.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.83, "MEDIAN_SPEND_PER_CUSTOMER": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.012599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "LOCATION_NAME": "Sam's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 53.0, "Total Spend": 274.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.02, "MEDIAN_SPEND_PER_CUSTOMER": 24.02 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-dvz", "LOCATION_NAME": "Lighthouse Thrift Shop", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.051415, "LONGITUDE": -75.093615, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 31.0, "POI_CBG": 421010306007.0, "MEDIAN_DWELL": 8.0, "Total Spend": 651.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.91, "MEDIAN_SPEND_PER_CUSTOMER": 10.16 }, "geometry": { "type": "Point", "coordinates": [ -75.093615, 40.051415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pgg-p9z", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.004888, "LONGITUDE": -75.180206, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 33.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 129.0, "Total Spend": 3121.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 335.54, "MEDIAN_SPEND_PER_CUSTOMER": 335.54 }, "geometry": { "type": "Point", "coordinates": [ -75.180206, 40.004888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "LOCATION_NAME": "Xian Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9532, "LONGITUDE": -75.154945, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 98.0, "Total Spend": 260.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.36, "MEDIAN_SPEND_PER_CUSTOMER": 23.36 }, "geometry": { "type": "Point", "coordinates": [ -75.154945, 39.9532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pmb-yqf", "LOCATION_NAME": "Vivi Bubble Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954838, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 205.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7207.0, "Total Transactions": 838.0, "Total Customers": 726.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.954838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944289, "LONGITUDE": -75.17218, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 274.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 24684.0, "Total Transactions": 1391.0, "Total Customers": 742.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.14, "MEDIAN_SPEND_PER_CUSTOMER": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17218, 39.944289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940142, "LONGITUDE": -75.151529, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 119.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 50701.0, "Total Transactions": 2709.0, "Total Customers": 1313.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.49, "MEDIAN_SPEND_PER_CUSTOMER": 22.33 }, "geometry": { "type": "Point", "coordinates": [ -75.151529, 39.940142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035458, "LONGITUDE": -75.049099, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 184.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 117.0, "Total Spend": 6956.0, "Total Transactions": 260.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.7, "MEDIAN_SPEND_PER_CUSTOMER": 27.58 }, "geometry": { "type": "Point", "coordinates": [ -75.049099, 40.035458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2021, "Total Visits": 516.0, "Total Visitors": 325.0, "POI_CBG": 421010275001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6592.0, "Total Transactions": 327.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.77, "MEDIAN_SPEND_PER_CUSTOMER": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-223@628-p8n-389", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02098, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2021, "Total Visits": 260.0, "Total Visitors": 198.0, "POI_CBG": 421010323001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14703.0, "Total Transactions": 630.0, "Total Customers": 322.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.1, "MEDIAN_SPEND_PER_CUSTOMER": 25.86 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.02098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-225@628-pp5-dgk", "LOCATION_NAME": "A & F Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.993258, "LONGITUDE": -75.110206, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 129.0, "POI_CBG": 421010188005.0, "MEDIAN_DWELL": 67.0, "Total Spend": 541.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 113.35, "MEDIAN_SPEND_PER_CUSTOMER": 113.35 }, "geometry": { "type": "Point", "coordinates": [ -75.110206, 39.993258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 387.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 40335.0, "Total Transactions": 998.0, "Total Customers": 907.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.34, "MEDIAN_SPEND_PER_CUSTOMER": 30.2 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-zxq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.002963, "LONGITUDE": -75.152983, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 229.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 27345.0, "Total Transactions": 1294.0, "Total Customers": 685.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.36, "MEDIAN_SPEND_PER_CUSTOMER": 17.87 }, "geometry": { "type": "Point", "coordinates": [ -75.152983, 40.002963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2021, "Total Visits": 2527.0, "Total Visitors": 1773.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 9.0, "Total Spend": 25499.0, "Total Transactions": 1184.0, "Total Customers": 814.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.71, "MEDIAN_SPEND_PER_CUSTOMER": 18.52 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p7v-ffz", "LOCATION_NAME": "E Z Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.054304, "LONGITUDE": -75.070914, "DATE_RANGE_START": 2021, "Total Visits": 604.0, "Total Visitors": 327.0, "POI_CBG": 421010335003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17414.0, "Total Transactions": 833.0, "Total Customers": 427.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.89, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070914, 40.054304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vvf", "LOCATION_NAME": "Champion", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089655, "LONGITUDE": -74.961736, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 217.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 28.0, "Total Spend": 329.0, "Total Transactions": 57.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.98, "MEDIAN_SPEND_PER_CUSTOMER": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961736, 40.089655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgj-n5z", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.993397, "LONGITUDE": -75.144129, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 239.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 2276.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.5, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144129, 39.993397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-6x5", "LOCATION_NAME": "The North Face", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.949894, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 160.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7969.0, "Total Transactions": 72.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.62, "MEDIAN_SPEND_PER_CUSTOMER": 75.62 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmd-yjv", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937442, "LONGITUDE": -75.176792, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9057.0, "Total Transactions": 902.0, "Total Customers": 632.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176792, 39.937442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pg8-ks5", "LOCATION_NAME": "Rybrew", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974204, "LONGITUDE": -75.182529, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 17.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 24006.0, "Total Transactions": 1394.0, "Total Customers": 754.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 23.24 }, "geometry": { "type": "Point", "coordinates": [ -75.182529, 39.974204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-vmk", "LOCATION_NAME": "Maxi's Pizza Subs and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982213, "LONGITUDE": -75.15602, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 21.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 2451.0, "Total Transactions": 81.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.7, "MEDIAN_SPEND_PER_CUSTOMER": 27.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15602, 39.982213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "LOCATION_NAME": "Super Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1893.0, "Total Transactions": 69.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.63, "MEDIAN_SPEND_PER_CUSTOMER": 33.11 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "LOCATION_NAME": "King Wok Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 36.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 30.0, "Total Spend": 1921.0, "Total Transactions": 76.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 26.75 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "LOCATION_NAME": "Frieda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 20.0, "Total Spend": 7292.0, "Total Transactions": 341.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "LOCATION_NAME": "S and J Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948539, "LONGITUDE": -75.227093, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 67.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3083.0, "Total Transactions": 86.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.31, "MEDIAN_SPEND_PER_CUSTOMER": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -75.227093, 39.948539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "LOCATION_NAME": "South Street Souvlaki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2021, "Total Visits": 616.0, "Total Visitors": 477.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 581.0, "Total Spend": 2451.0, "Total Transactions": 69.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.4, "MEDIAN_SPEND_PER_CUSTOMER": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 138.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13217.0, "Total Transactions": 962.0, "Total Customers": 802.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.68, "MEDIAN_SPEND_PER_CUSTOMER": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pg9-td9", "LOCATION_NAME": "Tela's Market & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967388, "LONGITUDE": -75.168391, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 229.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 239.0, "Total Spend": 24512.0, "Total Transactions": 1597.0, "Total Customers": 881.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.74, "MEDIAN_SPEND_PER_CUSTOMER": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168391, 39.967388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "LOCATION_NAME": "Capriccio Cafe and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955464, "LONGITUDE": -75.166555, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 148.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 57.0, "Total Spend": 8264.0, "Total Transactions": 618.0, "Total Customers": 401.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.166555, 39.955464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2021, "Total Visits": 1396.0, "Total Visitors": 842.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 261.0, "Total Spend": 16130.0, "Total Transactions": 2587.0, "Total Customers": 1332.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.19, "MEDIAN_SPEND_PER_CUSTOMER": 8.22 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-rzf", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.995312, "LONGITUDE": -75.092003, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 308.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 745.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.092003, 39.995312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-g6k", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.918591, "LONGITUDE": -75.183167, "DATE_RANGE_START": 2021, "Total Visits": 396.0, "Total Visitors": 344.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8657.0, "Total Transactions": 241.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 22.55 }, "geometry": { "type": "Point", "coordinates": [ -75.183167, 39.918591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "LOCATION_NAME": "Academy Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 95.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 123.0, "Total Spend": 348.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.51, "MEDIAN_SPEND_PER_CUSTOMER": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7v-f2k", "LOCATION_NAME": "Raymour & Flanigan Outlet", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.051034, "LONGITUDE": -75.064888, "DATE_RANGE_START": 2021, "Total Visits": 551.0, "Total Visitors": 430.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 88842.0, "Total Transactions": 41.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 1760.32, "MEDIAN_SPEND_PER_CUSTOMER": 1880.16 }, "geometry": { "type": "Point", "coordinates": [ -75.064888, 40.051034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "LOCATION_NAME": "Grossman Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.951777, "LONGITUDE": -75.14359, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 208.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 402.0, "Total Spend": 23616.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 4597.56, "MEDIAN_SPEND_PER_CUSTOMER": 4947.56 }, "geometry": { "type": "Point", "coordinates": [ -75.14359, 39.951777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg4-bx5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.042838, "LONGITUDE": -75.179833, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 167.0, "POI_CBG": 421010252002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 18431.0, "Total Transactions": 874.0, "Total Customers": 558.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.33, "MEDIAN_SPEND_PER_CUSTOMER": 17.05 }, "geometry": { "type": "Point", "coordinates": [ -75.179833, 40.042838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj7-5fz", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043629, "LONGITUDE": -75.102849, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 263.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2881.0, "Total Transactions": 141.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.102849, 40.043629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pjk-3bk", "LOCATION_NAME": "Posh", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.068847, "LONGITUDE": -75.240209, "DATE_RANGE_START": 2021, "Total Visits": 625.0, "Total Visitors": 494.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 677.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.51, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240209, 40.068847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-92k", "LOCATION_NAME": "Eddie Bauer Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951639, "LONGITUDE": -75.155758, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 2525.0, "Total Transactions": 60.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155758, 39.951639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012134, "LONGITUDE": -75.088896, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 136.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 426.0, "Total Transactions": 31.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.84, "MEDIAN_SPEND_PER_CUSTOMER": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.088896, 40.012134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.954256, "LONGITUDE": -75.167978, "DATE_RANGE_START": 2021, "Total Visits": 3017.0, "Total Visitors": 2002.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 160.0, "Total Spend": 77.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.56, "MEDIAN_SPEND_PER_CUSTOMER": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.167978, 39.954256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-5j9", "LOCATION_NAME": "Dollar Up & Gifts", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.10998, "LONGITUDE": -75.024237, "DATE_RANGE_START": 2021, "Total Visits": 217.0, "Total Visitors": 191.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 874.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.56, "MEDIAN_SPEND_PER_CUSTOMER": 26.31 }, "geometry": { "type": "Point", "coordinates": [ -75.024237, 40.10998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.120348, "LONGITUDE": -75.015989, "DATE_RANGE_START": 2021, "Total Visits": 747.0, "Total Visitors": 544.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 409.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.21, "MEDIAN_SPEND_PER_CUSTOMER": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.015989, 40.120348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 105.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2279.0, "Total Transactions": 158.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.05, "MEDIAN_SPEND_PER_CUSTOMER": 11.74 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "LOCATION_NAME": "Four Seasons Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 396.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 21650.0, "Total Transactions": 461.0, "Total Customers": 427.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.96 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9p-pvz", "LOCATION_NAME": "Da Franco Pizzeria & Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.105135, "LONGITUDE": -75.033737, "DATE_RANGE_START": 2021, "Total Visits": 508.0, "Total Visitors": 391.0, "POI_CBG": 421010356022.0, "MEDIAN_DWELL": 26.0, "Total Spend": 357.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.02, "MEDIAN_SPEND_PER_CUSTOMER": 23.08 }, "geometry": { "type": "Point", "coordinates": [ -75.033737, 40.105135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079147, "LONGITUDE": -75.02653, "DATE_RANGE_START": 2021, "Total Visits": 518.0, "Total Visitors": 456.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 18208.0, "Total Transactions": 1212.0, "Total Customers": 893.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.23, "MEDIAN_SPEND_PER_CUSTOMER": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.02653, 40.079147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918938, "LONGITUDE": -75.140855, "DATE_RANGE_START": 2021, "Total Visits": 465.0, "Total Visitors": 444.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 128.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.87, "MEDIAN_SPEND_PER_CUSTOMER": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 39.918938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029744, "LONGITUDE": -75.099335, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 203.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 483.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.33, "MEDIAN_SPEND_PER_CUSTOMER": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.099335, 40.029744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087623, "LONGITUDE": -74.965267, "DATE_RANGE_START": 2021, "Total Visits": 1325.0, "Total Visitors": 1115.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 17216.0, "Total Transactions": 1279.0, "Total Customers": 969.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -74.965267, 40.087623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950896, "LONGITUDE": -75.166342, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 112.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 403.0, "Total Spend": 11503.0, "Total Transactions": 1038.0, "Total Customers": 790.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -75.166342, 39.950896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@628-pmf-mrk", "LOCATION_NAME": "Bain's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952412, "LONGITUDE": -75.168016, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 99.0, "Total Spend": 348.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.168016, 39.952412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-4jv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962295, "LONGITUDE": -75.162022, "DATE_RANGE_START": 2021, "Total Visits": 656.0, "Total Visitors": 563.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9752.0, "Total Transactions": 1329.0, "Total Customers": 656.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.89, "MEDIAN_SPEND_PER_CUSTOMER": 9.82 }, "geometry": { "type": "Point", "coordinates": [ -75.162022, 39.962295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-6tv", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.015035, "LONGITUDE": -75.178463, "DATE_RANGE_START": 2021, "Total Visits": 895.0, "Total Visitors": 726.0, "POI_CBG": 421010206001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 439.0, "Total Transactions": 29.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.67, "MEDIAN_SPEND_PER_CUSTOMER": 27.62 }, "geometry": { "type": "Point", "coordinates": [ -75.178463, 40.015035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.037805, "LONGITUDE": -75.117796, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 84.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1296.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 127.25, "MEDIAN_SPEND_PER_CUSTOMER": 160.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117796, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "LOCATION_NAME": "Eyes Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941491, "LONGITUDE": -75.149374, "DATE_RANGE_START": 2021, "Total Visits": 387.0, "Total Visitors": 377.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5691.0, "Total Transactions": 112.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.62, "MEDIAN_SPEND_PER_CUSTOMER": 29.43 }, "geometry": { "type": "Point", "coordinates": [ -75.149374, 39.941491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.063003, "LONGITUDE": -75.237723, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 234.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 48796.0, "Total Transactions": 1000.0, "Total Customers": 730.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.58, "MEDIAN_SPEND_PER_CUSTOMER": 47.33 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 40.063003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044581, "LONGITUDE": -75.086995, "DATE_RANGE_START": 2021, "Total Visits": 418.0, "Total Visitors": 387.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 755.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.87, "MEDIAN_SPEND_PER_CUSTOMER": 75.56 }, "geometry": { "type": "Point", "coordinates": [ -75.086995, 40.044581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmd-vfz", "LOCATION_NAME": "Tri State Computech", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.951755, "LONGITUDE": -75.176893, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 124.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1077.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.16, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176893, 39.951755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwg-f4v", "LOCATION_NAME": "Lucky Star Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913515, "LONGITUDE": -75.242295, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 105.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6156.0, "Total Transactions": 616.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.12 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.913515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2021, "Total Visits": 310.0, "Total Visitors": 167.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 338.0, "Total Transactions": 45.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.07, "MEDIAN_SPEND_PER_CUSTOMER": 4.39 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2021, "Total Visits": 606.0, "Total Visitors": 453.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 27577.0, "Total Transactions": 1356.0, "Total Customers": 759.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.14, "MEDIAN_SPEND_PER_CUSTOMER": 20.84 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2021, "Total Visits": 668.0, "Total Visitors": 482.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8362.0, "Total Transactions": 499.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.59, "MEDIAN_SPEND_PER_CUSTOMER": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 332.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 11324.0, "Total Transactions": 575.0, "Total Customers": 375.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.56, "MEDIAN_SPEND_PER_CUSTOMER": 19.18 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.028872, "LONGITUDE": -75.206199, "DATE_RANGE_START": 2021, "Total Visits": 1957.0, "Total Visitors": 1563.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3267.0, "Total Transactions": 93.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.96, "MEDIAN_SPEND_PER_CUSTOMER": 27.09 }, "geometry": { "type": "Point", "coordinates": [ -75.206199, 40.028872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-phm-5s5", "LOCATION_NAME": "Marathon", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.063884, "LONGITUDE": -75.140696, "DATE_RANGE_START": 2021, "Total Visits": 372.0, "Total Visitors": 298.0, "POI_CBG": 421010268001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4821.0, "Total Transactions": 160.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.38 }, "geometry": { "type": "Point", "coordinates": [ -75.140696, 40.063884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-st9", "LOCATION_NAME": "Cantina Los Caballitos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928871, "LONGITUDE": -75.16446, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 200.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 42.0, "Total Spend": 69630.0, "Total Transactions": 1138.0, "Total Customers": 983.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.16, "MEDIAN_SPEND_PER_CUSTOMER": 55.82 }, "geometry": { "type": "Point", "coordinates": [ -75.16446, 39.928871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 153.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 10232.0, "Total Transactions": 255.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.7, "MEDIAN_SPEND_PER_CUSTOMER": 35.13 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "LOCATION_NAME": "El Camino Real", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 98.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 92.0, "Total Spend": 6316.0, "Total Transactions": 74.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.04, "MEDIAN_SPEND_PER_CUSTOMER": 89.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "LOCATION_NAME": "Thai Singha House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95527, "LONGITUDE": -75.20037, "DATE_RANGE_START": 2021, "Total Visits": 981.0, "Total Visitors": 573.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 251.0, "Total Spend": 1148.0, "Total Transactions": 36.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.58, "MEDIAN_SPEND_PER_CUSTOMER": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.20037, 39.95527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "LOCATION_NAME": "Asia On the Parkway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95574, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2021, "Total Visits": 1628.0, "Total Visitors": 952.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 319.0, "Total Spend": 6726.0, "Total Transactions": 177.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.38, "MEDIAN_SPEND_PER_CUSTOMER": 45.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.95574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2021, "Total Visits": 568.0, "Total Visitors": 425.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 7153.0, "Total Transactions": 456.0, "Total Customers": 401.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.45, "MEDIAN_SPEND_PER_CUSTOMER": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pm9-wc5", "LOCATION_NAME": "Scoop DeVille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949779, "LONGITUDE": -75.148514, "DATE_RANGE_START": 2021, "Total Visits": 2076.0, "Total Visitors": 1905.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 2593.0, "Total Transactions": 232.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148514, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "LOCATION_NAME": "Function Coffee Labs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2021, "Total Visits": 1002.0, "Total Visitors": 766.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 25.0, "Total Spend": 2445.0, "Total Transactions": 234.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.046202, "LONGITUDE": -75.056569, "DATE_RANGE_START": 2021, "Total Visits": 1434.0, "Total Visitors": 811.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 22506.0, "Total Transactions": 2790.0, "Total Customers": 1368.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.69, "MEDIAN_SPEND_PER_CUSTOMER": 9.54 }, "geometry": { "type": "Point", "coordinates": [ -75.056569, 40.046202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-grk", "LOCATION_NAME": "Federal Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963015, "LONGITUDE": -75.174167, "DATE_RANGE_START": 2021, "Total Visits": 3095.0, "Total Visitors": 1835.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5693.0, "Total Transactions": 368.0, "Total Customers": 332.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.174167, 39.963015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg4-2rk", "LOCATION_NAME": "Maker artisan pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032925, "LONGITUDE": -75.168806, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010246001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 504.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.83, "MEDIAN_SPEND_PER_CUSTOMER": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.168806, 40.032925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp5-g49", "LOCATION_NAME": "Aramingo's Best Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984627, "LONGITUDE": -75.113365, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010179003.0, "MEDIAN_DWELL": 1043.0, "Total Spend": 4284.0, "Total Transactions": 141.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.11, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113365, 39.984627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8h-hyv", "LOCATION_NAME": "Philly's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025465, "LONGITUDE": -75.044676, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": null, "Total Spend": 297.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.24, "MEDIAN_SPEND_PER_CUSTOMER": 62.24 }, "geometry": { "type": "Point", "coordinates": [ -75.044676, 40.025465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-6tv", "LOCATION_NAME": "Gold Heart Direct", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.085488, "LONGITUDE": -74.962122, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1501.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 314.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962122, 40.085488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7x-5zz", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048936, "LONGITUDE": -75.06319, "DATE_RANGE_START": 2021, "Total Visits": 406.0, "Total Visitors": 272.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 12.0, "Total Spend": 961.0, "Total Transactions": 33.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.06319, 40.048936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-s89", "LOCATION_NAME": "SuitSupply", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.948725, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2021, "Total Visits": 628.0, "Total Visitors": 504.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 5.0, "Total Spend": 22538.0, "Total Transactions": 76.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 158.5, "MEDIAN_SPEND_PER_CUSTOMER": 231.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.948725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-y7q", "LOCATION_NAME": "K & A Gift Shop", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953734, "LONGITUDE": -75.155203, "DATE_RANGE_START": 2021, "Total Visits": 4516.0, "Total Visitors": 3222.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 255.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.155203, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-td9", "LOCATION_NAME": "Watkins Drinkery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927952, "LONGITUDE": -75.162075, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 17.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 26.0, "Total Spend": 179.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.59, "MEDIAN_SPEND_PER_CUSTOMER": 37.59 }, "geometry": { "type": "Point", "coordinates": [ -75.162075, 39.927952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-pn5", "LOCATION_NAME": "Luna Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976619, "LONGITUDE": -75.140834, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 21.0, "POI_CBG": 421010156001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 408.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.6, "MEDIAN_SPEND_PER_CUSTOMER": 49.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140834, 39.976619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tn5", "LOCATION_NAME": "Unclaimed Diamonds", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949045, "LONGITUDE": -75.153751, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 29.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 17315.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 1175.0, "MEDIAN_SPEND_PER_CUSTOMER": 1175.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153751, 39.949045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgj-cbk", "LOCATION_NAME": "Pazzo Pazzo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979011, "LONGITUDE": -75.161757, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 136.0, "POI_CBG": 421010147001.0, "MEDIAN_DWELL": 448.0, "Total Spend": 1221.0, "Total Transactions": 69.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.161757, 39.979011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "LOCATION_NAME": "Cafe Soho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2021, "Total Visits": 248.0, "Total Visitors": 181.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 28239.0, "Total Transactions": 544.0, "Total Customers": 453.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.25, "MEDIAN_SPEND_PER_CUSTOMER": 46.63 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "LOCATION_NAME": "Cafe Old Nelson", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954761, "LONGITUDE": -75.164691, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 212.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 102.0, "Total Spend": 2594.0, "Total Transactions": 217.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.62 }, "geometry": { "type": "Point", "coordinates": [ -75.164691, 39.954761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pj6-k4v", "LOCATION_NAME": "Mirim", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044989, "LONGITUDE": -75.117489, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3407.0, "Total Transactions": 189.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.117489, 40.044989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "LOCATION_NAME": "Linden Italian Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054575, "LONGITUDE": -75.004237, "DATE_RANGE_START": 2021, "Total Visits": 212.0, "Total Visitors": 160.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3519.0, "Total Transactions": 274.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.004237, 40.054575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 456.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 24782.0, "Total Transactions": 1640.0, "Total Customers": 1232.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.9, "MEDIAN_SPEND_PER_CUSTOMER": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 301.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10521.0, "Total Transactions": 778.0, "Total Customers": 554.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.83, "MEDIAN_SPEND_PER_CUSTOMER": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 348.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 19256.0, "Total Transactions": 1384.0, "Total Customers": 876.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-phq-v75", "LOCATION_NAME": "Paradise Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 40.070199, "LONGITUDE": -75.156873, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 13.0, "Total Spend": 453.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.6, "MEDIAN_SPEND_PER_CUSTOMER": 64.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156873, 40.070199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-zpv", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.97922, "LONGITUDE": -75.22266, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 79.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 8294.0, "Total Transactions": 110.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.19, "MEDIAN_SPEND_PER_CUSTOMER": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.22266, 39.97922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "LOCATION_NAME": "Apricot Stone", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 89.0, "Total Spend": 7714.0, "Total Transactions": 107.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.38, "MEDIAN_SPEND_PER_CUSTOMER": 53.14 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "LOCATION_NAME": "Royal Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 36.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 166.0, "Total Spend": 2857.0, "Total Transactions": 138.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.6, "MEDIAN_SPEND_PER_CUSTOMER": 27.26 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pm4-nh5", "LOCATION_NAME": "The Chilly Banana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937277, "LONGITUDE": -75.154779, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010024001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2176.0, "Total Transactions": 229.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.01, "MEDIAN_SPEND_PER_CUSTOMER": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.154779, 39.937277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11069.0, "Total Transactions": 790.0, "Total Customers": 578.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 12.83 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 134.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 945.0, "Total Spend": 75513.0, "Total Transactions": 141.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 560.0, "MEDIAN_SPEND_PER_CUSTOMER": 251.26 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y7q", "LOCATION_NAME": "Day N Nite", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.954252, "LONGITUDE": -75.1549, "DATE_RANGE_START": 2021, "Total Visits": 4516.0, "Total Visitors": 3222.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 2188.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.5, "MEDIAN_SPEND_PER_CUSTOMER": 55.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1549, 39.954252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 103.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2485.0, "Total Transactions": 100.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.3, "MEDIAN_SPEND_PER_CUSTOMER": 15.34 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "LOCATION_NAME": "Sky Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2021, "Total Visits": 301.0, "Total Visitors": 263.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 38.0, "Total Spend": 5712.0, "Total Transactions": 119.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.59, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phq-gff", "LOCATION_NAME": "Takka Grill & Shrimpie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067474, "LONGITUDE": -75.147141, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 69.0, "POI_CBG": 421010266003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1650.0, "Total Transactions": 67.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.45, "MEDIAN_SPEND_PER_CUSTOMER": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.147141, 40.067474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3qz", "LOCATION_NAME": "Grand China Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085175, "LONGITUDE": -74.967524, "DATE_RANGE_START": 2021, "Total Visits": 1437.0, "Total Visitors": 1200.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 39.0, "Total Spend": 20381.0, "Total Transactions": 434.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.55, "MEDIAN_SPEND_PER_CUSTOMER": 41.49 }, "geometry": { "type": "Point", "coordinates": [ -74.967524, 40.085175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2021, "Total Visits": 18897.0, "Total Visitors": 9649.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 127.0, "Total Spend": 24472.0, "Total Transactions": 1869.0, "Total Customers": 1007.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.85, "MEDIAN_SPEND_PER_CUSTOMER": 15.51 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2021, "Total Visits": 558.0, "Total Visitors": 384.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7852.0, "Total Transactions": 1160.0, "Total Customers": 468.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.78, "MEDIAN_SPEND_PER_CUSTOMER": 8.81 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-ks5", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951718, "LONGITUDE": -75.144312, "DATE_RANGE_START": 2021, "Total Visits": 492.0, "Total Visitors": 356.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 102.0, "Total Spend": 636.0, "Total Transactions": 31.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.25, "MEDIAN_SPEND_PER_CUSTOMER": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 39.951718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "LOCATION_NAME": "Sampan", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949535, "LONGITUDE": -75.16221, "DATE_RANGE_START": 2021, "Total Visits": 4924.0, "Total Visitors": 3408.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 25780.0, "Total Transactions": 337.0, "Total Customers": 289.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.49, "MEDIAN_SPEND_PER_CUSTOMER": 64.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16221, 39.949535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmf-jgk", "LOCATION_NAME": "Dizengoff", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950806, "LONGITUDE": -75.168528, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 298.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 246.0, "Total Spend": 3876.0, "Total Transactions": 155.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.49, "MEDIAN_SPEND_PER_CUSTOMER": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.168528, 39.950806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p75-9vf", "LOCATION_NAME": "Ashburner Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040603, "LONGITUDE": -75.015474, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 289.0, "POI_CBG": 421010349003.0, "MEDIAN_DWELL": 80.0, "Total Spend": 3612.0, "Total Transactions": 69.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.95 }, "geometry": { "type": "Point", "coordinates": [ -75.015474, 40.040603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "LOCATION_NAME": "City View Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 86.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 33081.0, "Total Transactions": 1590.0, "Total Customers": 1174.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.74, "MEDIAN_SPEND_PER_CUSTOMER": 20.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-v75", "LOCATION_NAME": "Oishii", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948105, "LONGITUDE": -75.143866, "DATE_RANGE_START": 2021, "Total Visits": 2050.0, "Total Visitors": 1570.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 80.0, "Total Spend": 4525.0, "Total Transactions": 86.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.2, "MEDIAN_SPEND_PER_CUSTOMER": 50.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143866, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "LOCATION_NAME": "Macaroni's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2021, "Total Visits": 418.0, "Total Visitors": 270.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 141.0, "Total Spend": 19084.0, "Total Transactions": 126.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.0, "MEDIAN_SPEND_PER_CUSTOMER": 91.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-c3q", "LOCATION_NAME": "Foodery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944856, "LONGITUDE": -75.158469, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 224.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 24501.0, "Total Transactions": 1294.0, "Total Customers": 630.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.4, "MEDIAN_SPEND_PER_CUSTOMER": 23.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158469, 39.944856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-47q", "LOCATION_NAME": "Halal Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962366, "LONGITUDE": -75.162749, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 105.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 174.0, "Total Spend": 910.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.7, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162749, 39.962366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2021, "Total Visits": 883.0, "Total Visitors": 558.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8629.0, "Total Transactions": 1117.0, "Total Customers": 609.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2021, "Total Visits": 527.0, "Total Visitors": 339.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7707.0, "Total Transactions": 974.0, "Total Customers": 384.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.01, "MEDIAN_SPEND_PER_CUSTOMER": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.101484, "LONGITUDE": -75.030277, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 215.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 7.0, "Total Spend": 514.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.030277, 40.101484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-fs5", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.919174, "LONGITUDE": -75.184979, "DATE_RANGE_START": 2021, "Total Visits": 1026.0, "Total Visitors": 749.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 81.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.184979, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8782.0, "Total Transactions": 733.0, "Total Customers": 609.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.47, "MEDIAN_SPEND_PER_CUSTOMER": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.05212, "LONGITUDE": -75.010353, "DATE_RANGE_START": 2021, "Total Visits": 1401.0, "Total Visitors": 831.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 10.0, "Total Spend": 73496.0, "Total Transactions": 1792.0, "Total Customers": 1301.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.08, "MEDIAN_SPEND_PER_CUSTOMER": 26.97 }, "geometry": { "type": "Point", "coordinates": [ -75.010353, 40.05212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050139, "LONGITUDE": -75.066802, "DATE_RANGE_START": 2021, "Total Visits": 611.0, "Total Visitors": 341.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 33.0, "Total Spend": 2361.0, "Total Transactions": 186.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.61, "MEDIAN_SPEND_PER_CUSTOMER": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.066802, 40.050139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8n-cqz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.03577, "LONGITUDE": -75.069964, "DATE_RANGE_START": 2021, "Total Visits": 940.0, "Total Visitors": 761.0, "POI_CBG": 421010313002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 574.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.06, "MEDIAN_SPEND_PER_CUSTOMER": 25.06 }, "geometry": { "type": "Point", "coordinates": [ -75.069964, 40.03577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 236.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 484.0, "Total Transactions": 57.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.55, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-33q", "LOCATION_NAME": "Hello World", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.953792, "LONGITUDE": -75.195373, "DATE_RANGE_START": 2021, "Total Visits": 699.0, "Total Visitors": 563.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 146.0, "Total Spend": 6822.0, "Total Transactions": 174.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.195373, 39.953792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm4-grk", "LOCATION_NAME": "AmeriThai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923914, "LONGITUDE": -75.167514, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2284.0, "Total Transactions": 60.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.25, "MEDIAN_SPEND_PER_CUSTOMER": 42.23 }, "geometry": { "type": "Point", "coordinates": [ -75.167514, 39.923914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-6zf", "LOCATION_NAME": "Danis Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.02883, "LONGITUDE": -75.063054, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010317003.0, "MEDIAN_DWELL": 57.0, "Total Spend": 18616.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 2000.0, "MEDIAN_SPEND_PER_CUSTOMER": 2000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063054, 40.02883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 177.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3607.0, "Total Transactions": 107.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.11, "MEDIAN_SPEND_PER_CUSTOMER": 30.71 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "LOCATION_NAME": "Capital Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 69.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 3151.0, "Total Transactions": 119.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.38, "MEDIAN_SPEND_PER_CUSTOMER": 26.07 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.990666, "LONGITUDE": -75.154886, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 72.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 17567.0, "Total Transactions": 403.0, "Total Customers": 322.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.12, "MEDIAN_SPEND_PER_CUSTOMER": 29.68 }, "geometry": { "type": "Point", "coordinates": [ -75.154886, 39.990666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961453, "LONGITUDE": -75.144571, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 72.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4497.0, "Total Transactions": 179.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 26.17 }, "geometry": { "type": "Point", "coordinates": [ -75.144571, 39.961453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "LOCATION_NAME": "Spice 28", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2021, "Total Visits": 174.0, "Total Visitors": 129.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 409.0, "Total Spend": 5641.0, "Total Transactions": 167.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.42, "MEDIAN_SPEND_PER_CUSTOMER": 28.83 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pmf-jgk", "LOCATION_NAME": "Abe Fisher", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950786, "LONGITUDE": -75.168347, "DATE_RANGE_START": 2021, "Total Visits": 477.0, "Total Visitors": 251.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 314.0, "Total Spend": 15600.0, "Total Transactions": 100.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 141.38, "MEDIAN_SPEND_PER_CUSTOMER": 158.64 }, "geometry": { "type": "Point", "coordinates": [ -75.168347, 39.950786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yjv", "LOCATION_NAME": "Zio Pizza Palace & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955076, "LONGITUDE": -75.154189, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 153.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 936.0, "Total Spend": 4570.0, "Total Transactions": 339.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 13.13 }, "geometry": { "type": "Point", "coordinates": [ -75.154189, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041625, "LONGITUDE": -75.064814, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 86.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 14.0, "Total Spend": 9803.0, "Total Transactions": 320.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.16, "MEDIAN_SPEND_PER_CUSTOMER": 28.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064814, 40.041625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6x5", "LOCATION_NAME": "Amma's South Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950885, "LONGITUDE": -75.166421, "DATE_RANGE_START": 2021, "Total Visits": 5251.0, "Total Visitors": 3716.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 13960.0, "Total Transactions": 267.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 47.55 }, "geometry": { "type": "Point", "coordinates": [ -75.166421, 39.950885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-dqf", "LOCATION_NAME": "Asian Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918335, "LONGITUDE": -75.181058, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 100.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 132.0, "Total Spend": 1467.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.66, "MEDIAN_SPEND_PER_CUSTOMER": 76.05 }, "geometry": { "type": "Point", "coordinates": [ -75.181058, 39.918335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "LOCATION_NAME": "Cafe Square One", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948829, "LONGITUDE": -75.146095, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 153.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6002.0, "Total Transactions": 425.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.19, "MEDIAN_SPEND_PER_CUSTOMER": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.146095, 39.948829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "LOCATION_NAME": "Checkers Drive-In Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 86.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 248.0, "Total Spend": 6090.0, "Total Transactions": 413.0, "Total Customers": 358.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.64, "MEDIAN_SPEND_PER_CUSTOMER": 14.19 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 251.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 5749.0, "Total Transactions": 819.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.66, "MEDIAN_SPEND_PER_CUSTOMER": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2021, "Total Visits": 489.0, "Total Visitors": 325.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 14614.0, "Total Transactions": 1983.0, "Total Customers": 876.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.4, "MEDIAN_SPEND_PER_CUSTOMER": 9.68 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043491, "LONGITUDE": -75.159296, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 184.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8376.0, "Total Transactions": 1055.0, "Total Customers": 563.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.74, "MEDIAN_SPEND_PER_CUSTOMER": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.159296, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942567, "LONGITUDE": -75.179023, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": null, "Total Spend": 4541.0, "Total Transactions": 496.0, "Total Customers": 372.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.47, "MEDIAN_SPEND_PER_CUSTOMER": 8.18 }, "geometry": { "type": "Point", "coordinates": [ -75.179023, 39.942567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2021, "Total Visits": 470.0, "Total Visitors": 346.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 16085.0, "Total Transactions": 2088.0, "Total Customers": 1131.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.57, "MEDIAN_SPEND_PER_CUSTOMER": 9.26 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "LOCATION_NAME": "My Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945111, "LONGITUDE": -75.178763, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1568.0, "Total Transactions": 41.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.8, "MEDIAN_SPEND_PER_CUSTOMER": 35.25 }, "geometry": { "type": "Point", "coordinates": [ -75.178763, 39.945111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8m-v2k", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.029454, "LONGITUDE": -75.058288, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 64.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4182.0, "Total Transactions": 86.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.88, "MEDIAN_SPEND_PER_CUSTOMER": 36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.058288, 40.029454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.015701, "LONGITUDE": -75.13771, "DATE_RANGE_START": 2021, "Total Visits": 158.0, "Total Visitors": 126.0, "POI_CBG": 421010197004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 16851.0, "Total Transactions": 315.0, "Total Customers": 227.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.31, "MEDIAN_SPEND_PER_CUSTOMER": 39.34 }, "geometry": { "type": "Point", "coordinates": [ -75.13771, 40.015701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2021, "Total Visits": 325.0, "Total Visitors": 186.0, "POI_CBG": 421010041013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1426.0, "Total Transactions": 115.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "LOCATION_NAME": "University City Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 74.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3114.0, "Total Transactions": 100.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.21, "MEDIAN_SPEND_PER_CUSTOMER": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.134399, "LONGITUDE": -75.01003, "DATE_RANGE_START": 2021, "Total Visits": 699.0, "Total Visitors": 585.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6911.0, "Total Transactions": 303.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.51, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.01003, 40.134399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "LOCATION_NAME": "Skyline Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 150.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 646.0, "Total Spend": 1275.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.98, "MEDIAN_SPEND_PER_CUSTOMER": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.000779, "LONGITUDE": -75.226852, "DATE_RANGE_START": 2021, "Total Visits": 2477.0, "Total Visitors": 1962.0, "POI_CBG": 421010121002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3192.0, "Total Transactions": 98.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.05, "MEDIAN_SPEND_PER_CUSTOMER": 48.05 }, "geometry": { "type": "Point", "coordinates": [ -75.226852, 40.000779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgj-8qf", "LOCATION_NAME": "Delgado Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.990198, "LONGITUDE": -75.162651, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010167013.0, "MEDIAN_DWELL": null, "Total Spend": 35.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 7.25 }, "geometry": { "type": "Point", "coordinates": [ -75.162651, 39.990198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951926, "LONGITUDE": -75.161906, "DATE_RANGE_START": 2021, "Total Visits": 5310.0, "Total Visitors": 4243.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 12555.0, "Total Transactions": 169.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 55.98 }, "geometry": { "type": "Point", "coordinates": [ -75.161906, 39.951926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 177.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 544.0, "Total Transactions": 57.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 11.06 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-f2k", "LOCATION_NAME": "Nick's Famous Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035181, "LONGITUDE": -75.178754, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 38.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 94.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.73 }, "geometry": { "type": "Point", "coordinates": [ -75.178754, 40.035181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvx-jd9", "LOCATION_NAME": "Song's Capital Discount", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.972561, "LONGITUDE": -75.225887, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 43.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 268.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.09, "MEDIAN_SPEND_PER_CUSTOMER": 56.09 }, "geometry": { "type": "Point", "coordinates": [ -75.225887, 39.972561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "LOCATION_NAME": "Popi's Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 60.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 66.0, "Total Spend": 7135.0, "Total Transactions": 143.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.16, "MEDIAN_SPEND_PER_CUSTOMER": 60.62 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwd-pjv", "LOCATION_NAME": "Urban Shop 543", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.889355, "LONGITUDE": -75.175351, "DATE_RANGE_START": 2021, "Total Visits": 189.0, "Total Visitors": 67.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 272.0, "Total Spend": 302.0, "Total Transactions": 33.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.58, "MEDIAN_SPEND_PER_CUSTOMER": 63.37 }, "geometry": { "type": "Point", "coordinates": [ -75.175351, 39.889355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "LOCATION_NAME": "Royal Farms", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2021, "Total Visits": 740.0, "Total Visitors": 544.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 55077.0, "Total Transactions": 2790.0, "Total Customers": 1451.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.53 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.95427, "LONGITUDE": -75.201494, "DATE_RANGE_START": 2021, "Total Visits": 2618.0, "Total Visitors": 1320.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 514.0, "Total Spend": 24355.0, "Total Transactions": 1554.0, "Total Customers": 807.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.48, "MEDIAN_SPEND_PER_CUSTOMER": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.201494, 39.95427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pm9-wc5", "LOCATION_NAME": "Renaissance Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949053, "LONGITUDE": -75.147888, "DATE_RANGE_START": 2021, "Total Visits": 1172.0, "Total Visitors": 1031.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 29647.0, "Total Transactions": 191.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.07, "MEDIAN_SPEND_PER_CUSTOMER": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147888, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-syv", "LOCATION_NAME": "Snyder Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926819, "LONGITUDE": -75.191169, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 105.0, "POI_CBG": 421010036003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 181.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191169, 39.926819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2021, "Total Visits": 449.0, "Total Visitors": 291.0, "POI_CBG": 421010389003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3618.0, "Total Transactions": 100.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.86, "MEDIAN_SPEND_PER_CUSTOMER": 22.86 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954547, "LONGITUDE": -75.194897, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 186.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 44729.0, "Total Transactions": 4642.0, "Total Customers": 2117.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.15, "MEDIAN_SPEND_PER_CUSTOMER": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.194897, 39.954547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 305.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 361.0, "Total Transactions": 31.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.77, "MEDIAN_SPEND_PER_CUSTOMER": 11.61 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "LOCATION_NAME": "Alaska King Crab House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 112.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 751.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ygk", "LOCATION_NAME": "QT Vietnamese Sandwich", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953408, "LONGITUDE": -75.156559, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 224.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 81.0, "Total Spend": 601.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.05, "MEDIAN_SPEND_PER_CUSTOMER": 14.05 }, "geometry": { "type": "Point", "coordinates": [ -75.156559, 39.953408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p77-pvz", "LOCATION_NAME": "Artigiano Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064629, "LONGITUDE": -74.987146, "DATE_RANGE_START": 2021, "Total Visits": 232.0, "Total Visitors": 186.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 171.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.07, "MEDIAN_SPEND_PER_CUSTOMER": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -74.987146, 40.064629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-gff", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011075, "LONGITUDE": -75.176591, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 115.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 3616.0, "Total Transactions": 289.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.64, "MEDIAN_SPEND_PER_CUSTOMER": 14.37 }, "geometry": { "type": "Point", "coordinates": [ -75.176591, 40.011075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2021, "Total Visits": 723.0, "Total Visitors": 468.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 13477.0, "Total Transactions": 1869.0, "Total Customers": 835.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 9.22 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-t35", "LOCATION_NAME": "Suprema Coffee Roastery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945926, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2021, "Total Visits": 1936.0, "Total Visitors": 1215.0, "POI_CBG": 421010012021.0, "MEDIAN_DWELL": 24.0, "Total Spend": 438.0, "Total Transactions": 60.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.945926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2021, "Total Visits": 976.0, "Total Visitors": 740.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10315.0, "Total Transactions": 360.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.71 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-p9z", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.014187, "LONGITUDE": -75.131595, "DATE_RANGE_START": 2021, "Total Visits": 833.0, "Total Visitors": 568.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 564.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.63, "MEDIAN_SPEND_PER_CUSTOMER": 29.63 }, "geometry": { "type": "Point", "coordinates": [ -75.131595, 40.014187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-w8v", "LOCATION_NAME": "Aéropostale", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.086851, "LONGITUDE": -74.962597, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4540.0, "Total Transactions": 91.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 28.53 }, "geometry": { "type": "Point", "coordinates": [ -74.962597, 40.086851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "LOCATION_NAME": "Sam's Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093002, "LONGITUDE": -74.958736, "DATE_RANGE_START": 2021, "Total Visits": 6160.0, "Total Visitors": 4010.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 360409.0, "Total Transactions": 5019.0, "Total Customers": 2370.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.0, "MEDIAN_SPEND_PER_CUSTOMER": 79.01 }, "geometry": { "type": "Point", "coordinates": [ -74.958736, 40.093002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "LOCATION_NAME": "European Republic", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2021, "Total Visits": 3150.0, "Total Visitors": 2341.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 1140.0, "Total Transactions": 91.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.32, "MEDIAN_SPEND_PER_CUSTOMER": 14.17 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-zs5", "LOCATION_NAME": "Golden Triangle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94154, "LONGITUDE": -75.15097, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 115.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 578.0, "Total Spend": 1776.0, "Total Transactions": 64.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.76, "MEDIAN_SPEND_PER_CUSTOMER": 32.24 }, "geometry": { "type": "Point", "coordinates": [ -75.15097, 39.94154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pmf-hh5", "LOCATION_NAME": "Koreana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952324, "LONGITUDE": -75.171634, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 198.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 843.0, "Total Spend": 260.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.171634, 39.952324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2021, "Total Visits": 623.0, "Total Visitors": 537.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15465.0, "Total Transactions": 1601.0, "Total Customers": 1091.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.39, "MEDIAN_SPEND_PER_CUSTOMER": 9.98 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5fz", "LOCATION_NAME": "Cogito Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949868, "LONGITUDE": -75.160219, "DATE_RANGE_START": 2021, "Total Visits": 5516.0, "Total Visitors": 3508.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 215.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160219, 39.949868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983085, "LONGITUDE": -75.241704, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10943.0, "Total Transactions": 420.0, "Total Customers": 334.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.29, "MEDIAN_SPEND_PER_CUSTOMER": 25.95 }, "geometry": { "type": "Point", "coordinates": [ -75.241704, 39.983085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "LOCATION_NAME": "Grace Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 8785.0, "Total Transactions": 177.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.23, "MEDIAN_SPEND_PER_CUSTOMER": 44.49 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7w-psq", "LOCATION_NAME": "England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043231, "LONGITUDE": -75.052729, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 10.0, "Total Spend": 727.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.91, "MEDIAN_SPEND_PER_CUSTOMER": 31.33 }, "geometry": { "type": "Point", "coordinates": [ -75.052729, 40.043231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "LOCATION_NAME": "King Food Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038528, "LONGITUDE": -75.036845, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 33.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1225.0, "Total Transactions": 43.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.94, "MEDIAN_SPEND_PER_CUSTOMER": 29.94 }, "geometry": { "type": "Point", "coordinates": [ -75.036845, 40.038528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p82-3wk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039012, "LONGITUDE": -75.097789, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 36.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 141.0, "Total Spend": 1875.0, "Total Transactions": 134.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.1, "MEDIAN_SPEND_PER_CUSTOMER": 16.03 }, "geometry": { "type": "Point", "coordinates": [ -75.097789, 40.039012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "LOCATION_NAME": "Triple Joy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 45.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2388.0, "Total Transactions": 134.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.45, "MEDIAN_SPEND_PER_CUSTOMER": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7z-6x5", "LOCATION_NAME": "Rising Sun Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056616, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 45.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 336.0, "Total Spend": 277.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.81, "MEDIAN_SPEND_PER_CUSTOMER": 21.41 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.056616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8t-w8v", "LOCATION_NAME": "jasmine Inc", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087715, "LONGITUDE": -74.961773, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 148.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 408.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.97, "MEDIAN_SPEND_PER_CUSTOMER": 32.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961773, 40.087715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "LOCATION_NAME": "Easy Pickins", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950651, "LONGITUDE": -75.160672, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 215.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 18236.0, "Total Transactions": 489.0, "Total Customers": 451.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.37, "MEDIAN_SPEND_PER_CUSTOMER": 32.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160672, 39.950651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj3-b8v", "LOCATION_NAME": "The Stand", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01377, "LONGITUDE": -75.15794, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010202005.0, "MEDIAN_DWELL": 90.0, "Total Spend": 22108.0, "Total Transactions": 387.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.02, "MEDIAN_SPEND_PER_CUSTOMER": 49.92 }, "geometry": { "type": "Point", "coordinates": [ -75.15794, 40.01377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-qpv", "LOCATION_NAME": "Sunrise Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009015, "LONGITUDE": -75.137692, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 17.0, "POI_CBG": 421010198006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1873.0, "Total Transactions": 64.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137692, 40.009015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "LOCATION_NAME": "Wilson's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 169.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 338.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.55, "MEDIAN_SPEND_PER_CUSTOMER": 12.55 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-j7q", "LOCATION_NAME": "Sues Produce Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951234, "LONGITUDE": -75.170685, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 179.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3065.0, "Total Transactions": 320.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.91, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.170685, 39.951234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "LOCATION_NAME": "Total Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2021, "Total Visits": 422.0, "Total Visitors": 332.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 62.0, "Total Spend": 4758.0, "Total Transactions": 179.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 27.99 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.02991, "LONGITUDE": -75.186134, "DATE_RANGE_START": 2021, "Total Visits": 1745.0, "Total Visitors": 1055.0, "POI_CBG": 421010239002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3209.0, "Total Transactions": 129.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.31, "MEDIAN_SPEND_PER_CUSTOMER": 24.4 }, "geometry": { "type": "Point", "coordinates": [ -75.186134, 40.02991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm3-xh5", "LOCATION_NAME": "Stephanie's Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.931071, "LONGITUDE": -75.159796, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 33.0, "Total Spend": 229.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 9.65 }, "geometry": { "type": "Point", "coordinates": [ -75.159796, 39.931071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "LOCATION_NAME": "King Wok's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2015.0, "Total Transactions": 74.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 28.2 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 21.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8121.0, "Total Transactions": 387.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.23, "MEDIAN_SPEND_PER_CUSTOMER": 25.59 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjk-rff", "LOCATION_NAME": "The Cedars House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.083003, "LONGITUDE": -75.232456, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010384001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 4151.0, "Total Transactions": 210.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.93, "MEDIAN_SPEND_PER_CUSTOMER": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.232456, 40.083003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-k9f", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.063455, "LONGITUDE": -75.236411, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1828.0, "Total Transactions": 86.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.3, "MEDIAN_SPEND_PER_CUSTOMER": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236411, 40.063455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-b49", "LOCATION_NAME": "E Cigs International", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.03586, "LONGITUDE": -75.217916, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 515.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.17, "MEDIAN_SPEND_PER_CUSTOMER": 53.17 }, "geometry": { "type": "Point", "coordinates": [ -75.217916, 40.03586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-v4v", "LOCATION_NAME": "Olde City Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949709, "LONGITUDE": -75.144055, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 117.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 143.0, "Total Spend": 1215.0, "Total Transactions": 36.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144055, 39.949709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7b-qpv", "LOCATION_NAME": "Alfreds Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.064373, "LONGITUDE": -75.02133, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 107.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1148.0, "Total Transactions": 36.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.13, "MEDIAN_SPEND_PER_CUSTOMER": 56.66 }, "geometry": { "type": "Point", "coordinates": [ -75.02133, 40.064373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pgh-v2k", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.985827, "LONGITUDE": -75.15577, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 155.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 29019.0, "Total Transactions": 1802.0, "Total Customers": 1062.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.96, "MEDIAN_SPEND_PER_CUSTOMER": 19.41 }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.985827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.055425, "LONGITUDE": -75.00482, "DATE_RANGE_START": 2021, "Total Visits": 988.0, "Total Visitors": 690.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 7.0, "Total Spend": 12955.0, "Total Transactions": 516.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.71, "MEDIAN_SPEND_PER_CUSTOMER": 22.32 }, "geometry": { "type": "Point", "coordinates": [ -75.00482, 40.055425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-92k", "LOCATION_NAME": "Sephora", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951634, "LONGITUDE": -75.155721, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 374.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.155721, 39.951634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 160.0, "POI_CBG": 421010242001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 557.0, "Total Transactions": 62.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.65, "MEDIAN_SPEND_PER_CUSTOMER": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008821, "LONGITUDE": -75.175673, "DATE_RANGE_START": 2021, "Total Visits": 561.0, "Total Visitors": 432.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2215.0, "Total Transactions": 122.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.99, "MEDIAN_SPEND_PER_CUSTOMER": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175673, 40.008821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p83-zcq", "LOCATION_NAME": "Kuttanadu Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.083172, "LONGITUDE": -75.048353, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 74.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1634.0, "Total Transactions": 64.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.51, "MEDIAN_SPEND_PER_CUSTOMER": 14.96 }, "geometry": { "type": "Point", "coordinates": [ -75.048353, 40.083172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw4-q75", "LOCATION_NAME": "Aloft Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.891128, "LONGITUDE": -75.233821, "DATE_RANGE_START": 2021, "Total Visits": 1141.0, "Total Visitors": 673.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 278.0, "Total Spend": 1099.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.95, "MEDIAN_SPEND_PER_CUSTOMER": 116.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233821, 39.891128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-kcq", "LOCATION_NAME": "Cosmic Cafe and Ciderhouse", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969067, "LONGITUDE": -75.185279, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 136.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 506.0, "Total Transactions": 29.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185279, 39.969067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "LOCATION_NAME": "Good Day Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 115.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1849.0, "Total Transactions": 136.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph6-vvf", "LOCATION_NAME": "Debreaux's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989238, "LONGITUDE": -75.24979, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 262.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.86, "MEDIAN_SPEND_PER_CUSTOMER": 54.86 }, "geometry": { "type": "Point", "coordinates": [ -75.24979, 39.989238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-8d9", "LOCATION_NAME": "Hilton Garden Inn", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.953445, "LONGITUDE": -75.157985, "DATE_RANGE_START": 2021, "Total Visits": 15430.0, "Total Visitors": 10007.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 46026.0, "Total Transactions": 210.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 199.12, "MEDIAN_SPEND_PER_CUSTOMER": 212.27 }, "geometry": { "type": "Point", "coordinates": [ -75.157985, 39.953445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg9-7h5", "LOCATION_NAME": "Hair Town", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991198, "LONGITUDE": -75.177954, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 26.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 174.0, "Total Spend": 14268.0, "Total Transactions": 313.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.94, "MEDIAN_SPEND_PER_CUSTOMER": 37.15 }, "geometry": { "type": "Point", "coordinates": [ -75.177954, 39.991198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "LOCATION_NAME": "Moshulu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941589, "LONGITUDE": -75.141261, "DATE_RANGE_START": 2021, "Total Visits": 1632.0, "Total Visitors": 1482.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 117018.0, "Total Transactions": 1568.0, "Total Customers": 1148.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 62.18 }, "geometry": { "type": "Point", "coordinates": [ -75.141261, 39.941589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "LOCATION_NAME": "China Gate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2021, "Total Visits": 1153.0, "Total Visitors": 709.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2833.0, "Total Transactions": 117.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.65, "MEDIAN_SPEND_PER_CUSTOMER": 25.42 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027472, "LONGITUDE": -75.209408, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 23391.0, "Total Transactions": 854.0, "Total Customers": 666.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.66, "MEDIAN_SPEND_PER_CUSTOMER": 28.21 }, "geometry": { "type": "Point", "coordinates": [ -75.209408, 40.027472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qmk", "LOCATION_NAME": "Sea Soul", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038264, "LONGITUDE": -75.11969, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 41.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2011.0, "Total Transactions": 76.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.78, "MEDIAN_SPEND_PER_CUSTOMER": 26.97 }, "geometry": { "type": "Point", "coordinates": [ -75.11969, 40.038264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 246.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 35598.0, "Total Transactions": 1537.0, "Total Customers": 976.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.06, "MEDIAN_SPEND_PER_CUSTOMER": 22.96 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-6p9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046097, "LONGITUDE": -75.142598, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 212.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17645.0, "Total Transactions": 905.0, "Total Customers": 616.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.22, "MEDIAN_SPEND_PER_CUSTOMER": 20.35 }, "geometry": { "type": "Point", "coordinates": [ -75.142598, 40.046097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "LOCATION_NAME": "Hair Fashion & Beyond", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978135, "LONGITUDE": -75.158545, "DATE_RANGE_START": 2021, "Total Visits": 425.0, "Total Visitors": 382.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 9142.0, "Total Transactions": 339.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.86, "MEDIAN_SPEND_PER_CUSTOMER": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.158545, 39.978135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950226, "LONGITUDE": -75.169589, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 119.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 17333.0, "Total Transactions": 489.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.16, "MEDIAN_SPEND_PER_CUSTOMER": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169589, 39.950226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 19.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 907.0, "Total Transactions": 93.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.15, "MEDIAN_SPEND_PER_CUSTOMER": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pp4-zxq", "LOCATION_NAME": "M R Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.988165, "LONGITUDE": -75.131689, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010163003.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1408.0, "Total Transactions": 95.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.99, "MEDIAN_SPEND_PER_CUSTOMER": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.131689, 39.988165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phy-mff", "LOCATION_NAME": "Rivas Monica", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.028515, "LONGITUDE": -75.140923, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010283001.0, "MEDIAN_DWELL": null, "Total Spend": 193.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.47, "MEDIAN_SPEND_PER_CUSTOMER": 40.47 }, "geometry": { "type": "Point", "coordinates": [ -75.140923, 40.028515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "LOCATION_NAME": "Ristorante Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5433.0, "Total Transactions": 53.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.25, "MEDIAN_SPEND_PER_CUSTOMER": 101.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p7x-dsq", "LOCATION_NAME": "Rib Rack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042525, "LONGITUDE": -75.063219, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 33.0, "POI_CBG": 421010314022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 1253.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.86, "MEDIAN_SPEND_PER_CUSTOMER": 48.86 }, "geometry": { "type": "Point", "coordinates": [ -75.063219, 40.042525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "LOCATION_NAME": "Sorrento's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 38.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 462.0, "Total Spend": 4311.0, "Total Transactions": 158.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.37, "MEDIAN_SPEND_PER_CUSTOMER": 29.85 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-vfz", "LOCATION_NAME": "Philly Homebrew Outlet West", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.942809, "LONGITUDE": -75.210442, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 12.0, "POI_CBG": 421010074002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 351.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.210442, 39.942809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "LOCATION_NAME": "The Little Apple", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.025728, "LONGITUDE": -75.223969, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 43.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 72.0, "Total Spend": 4708.0, "Total Transactions": 115.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.85, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.223969, 40.025728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "LOCATION_NAME": "Museum Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3607.0, "Total Transactions": 310.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.77, "MEDIAN_SPEND_PER_CUSTOMER": 18.16 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-syv", "LOCATION_NAME": "Sushi Garden & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944749, "LONGITUDE": -75.164917, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 60.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1663.0, "Total Transactions": 45.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.23, "MEDIAN_SPEND_PER_CUSTOMER": 32.08 }, "geometry": { "type": "Point", "coordinates": [ -75.164917, 39.944749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "LOCATION_NAME": "Solly Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 33.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1212.0, "Total Transactions": 45.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 26.06 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "LOCATION_NAME": "R.E. Michel", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 76.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 14479.0, "Total Transactions": 64.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.18, "MEDIAN_SPEND_PER_CUSTOMER": 103.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph8-qcq", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.978749, "LONGITUDE": -75.270239, "DATE_RANGE_START": 2021, "Total Visits": 816.0, "Total Visitors": 556.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 309.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.9, "MEDIAN_SPEND_PER_CUSTOMER": 64.68 }, "geometry": { "type": "Point", "coordinates": [ -75.270239, 39.978749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 179.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 123.0, "Total Spend": 23376.0, "Total Transactions": 1621.0, "Total Customers": 1212.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.58, "MEDIAN_SPEND_PER_CUSTOMER": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-yvz", "LOCATION_NAME": "Girard Beer Distributors", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.970277, "LONGITUDE": -75.150793, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 100.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 370.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.59, "MEDIAN_SPEND_PER_CUSTOMER": 46.51 }, "geometry": { "type": "Point", "coordinates": [ -75.150793, 39.970277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-vj9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.018604, "LONGITUDE": -75.214313, "DATE_RANGE_START": 2021, "Total Visits": 449.0, "Total Visitors": 337.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 19747.0, "Total Transactions": 909.0, "Total Customers": 630.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.58, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214313, 40.018604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.992376, "LONGITUDE": -75.140508, "DATE_RANGE_START": 2021, "Total Visits": 1084.0, "Total Visitors": 647.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13876.0, "Total Transactions": 535.0, "Total Customers": 384.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140508, 39.992376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p74-vs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.040935, "LONGITUDE": -75.030449, "DATE_RANGE_START": 2021, "Total Visits": 1702.0, "Total Visitors": 938.0, "POI_CBG": 421010331023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 637.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.09, "MEDIAN_SPEND_PER_CUSTOMER": 22.55 }, "geometry": { "type": "Point", "coordinates": [ -75.030449, 40.040935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-qxq", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.991716, "LONGITUDE": -75.09926, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 103.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1554.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09926, 39.991716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.08158, "LONGITUDE": -75.02629, "DATE_RANGE_START": 2021, "Total Visits": 489.0, "Total Visitors": 449.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 24697.0, "Total Transactions": 520.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.63, "MEDIAN_SPEND_PER_CUSTOMER": 43.39 }, "geometry": { "type": "Point", "coordinates": [ -75.02629, 40.08158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmb-5pv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952298, "LONGITUDE": -75.160846, "DATE_RANGE_START": 2021, "Total Visits": 709.0, "Total Visitors": 461.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 6013.0, "Total Transactions": 764.0, "Total Customers": 532.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.91, "MEDIAN_SPEND_PER_CUSTOMER": 7.35 }, "geometry": { "type": "Point", "coordinates": [ -75.160846, 39.952298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-rkz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914686, "LONGITUDE": -75.220838, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 134.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1124.0, "Total Transactions": 186.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.63, "MEDIAN_SPEND_PER_CUSTOMER": 7.41 }, "geometry": { "type": "Point", "coordinates": [ -75.220838, 39.914686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "LOCATION_NAME": "Locust Rendezvous", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948535, "LONGITUDE": -75.165879, "DATE_RANGE_START": 2021, "Total Visits": 1298.0, "Total Visitors": 926.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 108.0, "Total Spend": 16921.0, "Total Transactions": 384.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.1, "MEDIAN_SPEND_PER_CUSTOMER": 36.91 }, "geometry": { "type": "Point", "coordinates": [ -75.165879, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-8d9", "LOCATION_NAME": "Sky Club", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953909, "LONGITUDE": -75.15735, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 215.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 6383.0, "Total Transactions": 64.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.7, "MEDIAN_SPEND_PER_CUSTOMER": 65.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15735, 39.953909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "LOCATION_NAME": "Mr Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 76.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 80.0, "Total Spend": 6644.0, "Total Transactions": 203.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.92, "MEDIAN_SPEND_PER_CUSTOMER": 34.02 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-975", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953036, "LONGITUDE": -75.192281, "DATE_RANGE_START": 2021, "Total Visits": 272.0, "Total Visitors": 198.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 252.0, "Total Spend": 9528.0, "Total Transactions": 1401.0, "Total Customers": 859.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.35, "MEDIAN_SPEND_PER_CUSTOMER": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192281, 39.953036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 88.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 494.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p83-d9z", "LOCATION_NAME": "Bells Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.071547, "LONGITUDE": -75.049648, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 84.0, "POI_CBG": 421010337011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 68.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.23, "MEDIAN_SPEND_PER_CUSTOMER": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -75.049648, 40.071547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2021, "Total Visits": 473.0, "Total Visitors": 382.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 919.0, "Total Transactions": 84.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 7.68 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2021, "Total Visits": 4110.0, "Total Visitors": 1453.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 45.0, "Total Spend": 2433.0, "Total Transactions": 74.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.99, "MEDIAN_SPEND_PER_CUSTOMER": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-y9z", "LOCATION_NAME": "Bella Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941863, "LONGITUDE": -75.148989, "DATE_RANGE_START": 2021, "Total Visits": 1258.0, "Total Visitors": 1081.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2204.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 190.0, "MEDIAN_SPEND_PER_CUSTOMER": 190.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148989, 39.941863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "LOCATION_NAME": "Riverwards Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 74.0, "POI_CBG": 421010158001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 79576.0, "Total Transactions": 2854.0, "Total Customers": 1329.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.91, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 169.0, "POI_CBG": 421010188007.0, "MEDIAN_DWELL": 4.0, "Total Spend": 318.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.44, "MEDIAN_SPEND_PER_CUSTOMER": 2.69 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040921, "LONGITUDE": -75.065658, "DATE_RANGE_START": 2021, "Total Visits": 411.0, "Total Visitors": 246.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 224.0, "Total Transactions": 24.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.39, "MEDIAN_SPEND_PER_CUSTOMER": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065658, 40.040921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.037065, "LONGITUDE": -75.118922, "DATE_RANGE_START": 2021, "Total Visits": 418.0, "Total Visitors": 320.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 76670.0, "Total Transactions": 1979.0, "Total Customers": 1716.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.66, "MEDIAN_SPEND_PER_CUSTOMER": 29.66 }, "geometry": { "type": "Point", "coordinates": [ -75.118922, 40.037065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2021, "Total Visits": 4303.0, "Total Visitors": 2916.0, "POI_CBG": 421010361002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 12626.0, "Total Transactions": 420.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.41, "MEDIAN_SPEND_PER_CUSTOMER": 30.15 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgm-hwk", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.009599, "LONGITUDE": -75.196284, "DATE_RANGE_START": 2021, "Total Visits": 506.0, "Total Visitors": 389.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 327.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.31 }, "geometry": { "type": "Point", "coordinates": [ -75.196284, 40.009599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.914298, "LONGITUDE": -75.149292, "DATE_RANGE_START": 2021, "Total Visits": 3912.0, "Total Visitors": 2566.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1740.0, "Total Transactions": 60.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.36, "MEDIAN_SPEND_PER_CUSTOMER": 28.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149292, 39.914298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-p5f", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.977232, "LONGITUDE": -75.226077, "DATE_RANGE_START": 2021, "Total Visits": 470.0, "Total Visitors": 310.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 323.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226077, 39.977232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-phy-835", "LOCATION_NAME": "Metro Auto Sales", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.025151, "LONGITUDE": -75.129374, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010286002.0, "MEDIAN_DWELL": 72.0, "Total Spend": 2387.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 500.0, "MEDIAN_SPEND_PER_CUSTOMER": 500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129374, 40.025151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-5pv", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982882, "LONGITUDE": -75.10466, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 24.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 138.0, "Total Spend": 1239.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.10466, 39.982882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "LOCATION_NAME": "Fairmart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 29.0, "POI_CBG": 421010131001.0, "MEDIAN_DWELL": 124.0, "Total Spend": 4245.0, "Total Transactions": 379.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.67, "MEDIAN_SPEND_PER_CUSTOMER": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "LOCATION_NAME": "All The Way Live", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1464.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.43, "MEDIAN_SPEND_PER_CUSTOMER": 42.43 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-hdv", "LOCATION_NAME": "The Juice Room", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0592, "LONGITUDE": -75.189995, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 962.0, "Total Transactions": 76.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.59, "MEDIAN_SPEND_PER_CUSTOMER": 11.07 }, "geometry": { "type": "Point", "coordinates": [ -75.189995, 40.0592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p85-7nq", "LOCATION_NAME": "Tuscany Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056919, "LONGITUDE": -75.047895, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 36.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 476.0, "Total Spend": 189.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.68, "MEDIAN_SPEND_PER_CUSTOMER": 39.68 }, "geometry": { "type": "Point", "coordinates": [ -75.047895, 40.056919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "LOCATION_NAME": "Lets Grub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 789.0, "Total Transactions": 55.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.6, "MEDIAN_SPEND_PER_CUSTOMER": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmd-w49", "LOCATION_NAME": "Cook", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.94873, "LONGITUDE": -75.174113, "DATE_RANGE_START": 2021, "Total Visits": 1169.0, "Total Visitors": 613.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 181.0, "Total Spend": 145.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.53, "MEDIAN_SPEND_PER_CUSTOMER": 20.53 }, "geometry": { "type": "Point", "coordinates": [ -75.174113, 39.94873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "LOCATION_NAME": "Rays Cafe & Tea House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 123.0, "Total Spend": 285.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "LOCATION_NAME": "Rittenhouse Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 53.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 262.0, "Total Spend": 1339.0, "Total Transactions": 57.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 11.21 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9q-ht9", "LOCATION_NAME": "Bubbakoo's Burritos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078769, "LONGITUDE": -75.027229, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 55.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3388.0, "Total Transactions": 189.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.88, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.027229, 40.078769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-225@628-pm9-zs5", "LOCATION_NAME": "Aurora Grace", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.942077, "LONGITUDE": -75.150507, "DATE_RANGE_START": 2021, "Total Visits": 1530.0, "Total Visitors": 1351.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 15.0, "Total Spend": 181.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150507, 39.942077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046821, "LONGITUDE": -75.055507, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 215.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 148.0, "Total Spend": 2687.0, "Total Transactions": 110.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.48, "MEDIAN_SPEND_PER_CUSTOMER": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.055507, 40.046821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-6hq", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.087733, "LONGITUDE": -74.961181, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 745.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.99, "MEDIAN_SPEND_PER_CUSTOMER": 35.74 }, "geometry": { "type": "Point", "coordinates": [ -74.961181, 40.087733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8m-v2k", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.029571, "LONGITUDE": -75.058564, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 103.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 726.0, "Total Transactions": 53.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058564, 40.029571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgc-zzz", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.979858, "LONGITUDE": -75.220169, "DATE_RANGE_START": 2021, "Total Visits": 578.0, "Total Visitors": 315.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1046.0, "Total Transactions": 50.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220169, 39.979858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfx-kxq", "LOCATION_NAME": "Funny Monk Emporium", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.026687, "LONGITUDE": -75.224098, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 53.0, "POI_CBG": 421010214003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 19326.0, "Total Transactions": 418.0, "Total Customers": 303.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -75.224098, 40.026687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jy9", "LOCATION_NAME": "The Dive Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.936867, "LONGITUDE": -75.154753, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 74.0, "POI_CBG": 421010024001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 110.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154753, 39.936867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pnx-cbk", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97443, "LONGITUDE": -75.13265, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": null, "Total Spend": 129.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.56, "MEDIAN_SPEND_PER_CUSTOMER": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.13265, 39.97443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgf-7kf", "LOCATION_NAME": "Lavish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967761, "LONGITUDE": -75.210086, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010106001.0, "MEDIAN_DWELL": 301.0, "Total Spend": 3377.0, "Total Transactions": 48.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.5, "MEDIAN_SPEND_PER_CUSTOMER": 81.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210086, 39.967761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "LOCATION_NAME": "Pho Don", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 33.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 168.0, "Total Spend": 2187.0, "Total Transactions": 110.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.45, "MEDIAN_SPEND_PER_CUSTOMER": 31.06 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-wrk", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993383, "LONGITUDE": -75.155194, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 36.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 30.0, "Total Spend": 14770.0, "Total Transactions": 511.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.01, "MEDIAN_SPEND_PER_CUSTOMER": 27.17 }, "geometry": { "type": "Point", "coordinates": [ -75.155194, 39.993383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "LOCATION_NAME": "Heng Fa Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2021, "Total Visits": 652.0, "Total Visitors": 430.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 95768.0, "Total Transactions": 1131.0, "Total Customers": 649.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.55, "MEDIAN_SPEND_PER_CUSTOMER": 20.21 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953381, "LONGITUDE": -75.209698, "DATE_RANGE_START": 2021, "Total Visits": 933.0, "Total Visitors": 592.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 40654.0, "Total Transactions": 2387.0, "Total Customers": 1069.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 22.45 }, "geometry": { "type": "Point", "coordinates": [ -75.209698, 39.953381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "LOCATION_NAME": "Uniqlo", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951014, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2021, "Total Visits": 368.0, "Total Visitors": 236.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 237.0, "Total Spend": 26342.0, "Total Transactions": 418.0, "Total Customers": 348.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.91, "MEDIAN_SPEND_PER_CUSTOMER": 49.81 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.951014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "LOCATION_NAME": "Mostly Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.94129, "LONGITUDE": -75.151876, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 76.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1783.0, "Total Transactions": 95.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.15, "MEDIAN_SPEND_PER_CUSTOMER": 16.04 }, "geometry": { "type": "Point", "coordinates": [ -75.151876, 39.94129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "LOCATION_NAME": "Buffalo Exchange", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.951062, "LONGITUDE": -75.166599, "DATE_RANGE_START": 2021, "Total Visits": 5251.0, "Total Visitors": 3716.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 59148.0, "Total Transactions": 1535.0, "Total Customers": 1332.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166599, 39.951062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-cyv", "LOCATION_NAME": "El Provocon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039466, "LONGITUDE": -75.056309, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 88.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 802.0, "Total Transactions": 62.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056309, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "LOCATION_NAME": "DaMo Pasta Lab", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 205.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5530.0, "Total Transactions": 263.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 19.64 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pg2-zj9", "LOCATION_NAME": "Panda Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054638, "LONGITUDE": -75.193918, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 59.0, "Total Spend": 2562.0, "Total Transactions": 165.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.47, "MEDIAN_SPEND_PER_CUSTOMER": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.193918, 40.054638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-phj-rrk", "LOCATION_NAME": "BBQ Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071208, "LONGITUDE": -75.157221, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 26.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 305.0, "Total Spend": 549.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.54, "MEDIAN_SPEND_PER_CUSTOMER": 30.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157221, 40.071208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "LOCATION_NAME": "Mr. Tire", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010316006.0, "MEDIAN_DWELL": 116.0, "Total Spend": 8647.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 164.06, "MEDIAN_SPEND_PER_CUSTOMER": 164.06 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2021, "Total Visits": 1592.0, "Total Visitors": 1088.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 127480.0, "Total Transactions": 7050.0, "Total Customers": 2866.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.03, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-k75", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.094502, "LONGITUDE": -75.018223, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10331.0, "Total Transactions": 241.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.9, "MEDIAN_SPEND_PER_CUSTOMER": 37.7 }, "geometry": { "type": "Point", "coordinates": [ -75.018223, 40.094502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "LOCATION_NAME": "Suburban Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 126.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 95.0, "Total Transactions": 17.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2021, "Total Visits": 489.0, "Total Visitors": 365.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 23290.0, "Total Transactions": 1198.0, "Total Customers": 659.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.92, "MEDIAN_SPEND_PER_CUSTOMER": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.038428, "LONGITUDE": -75.106684, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 57.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 31522.0, "Total Transactions": 778.0, "Total Customers": 618.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.81, "MEDIAN_SPEND_PER_CUSTOMER": 25.97 }, "geometry": { "type": "Point", "coordinates": [ -75.106684, 40.038428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-td9", "LOCATION_NAME": "Milano's Pizzeria and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948998, "LONGITUDE": -75.157083, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 69.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 233.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.7, "MEDIAN_SPEND_PER_CUSTOMER": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157083, 39.948998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p9q-w8v", "LOCATION_NAME": "Big Daddy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081036, "LONGITUDE": -75.038535, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 74.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4445.0, "Total Transactions": 117.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.48, "MEDIAN_SPEND_PER_CUSTOMER": 40.61 }, "geometry": { "type": "Point", "coordinates": [ -75.038535, 40.081036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgy-kj9", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.062824, "LONGITUDE": -75.237514, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 48.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5347.0, "Total Transactions": 119.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.88, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.237514, 40.062824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "LOCATION_NAME": "South", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2021, "Total Visits": 227.0, "Total Visitors": 174.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 110.0, "Total Spend": 10235.0, "Total Transactions": 277.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.63, "MEDIAN_SPEND_PER_CUSTOMER": 31.51 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-223@628-pm4-mc5", "LOCATION_NAME": "Casa Mexico", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935496, "LONGITUDE": -75.15875, "DATE_RANGE_START": 2021, "Total Visits": 1315.0, "Total Visitors": 902.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 39.0, "Total Spend": 3621.0, "Total Transactions": 69.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.25, "MEDIAN_SPEND_PER_CUSTOMER": 48.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15875, 39.935496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-yqf", "LOCATION_NAME": "M Kee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955229, "LONGITUDE": -75.156117, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 155.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 911.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.06, "MEDIAN_SPEND_PER_CUSTOMER": 29.92 }, "geometry": { "type": "Point", "coordinates": [ -75.156117, 39.955229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "LOCATION_NAME": "Red Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2021, "Total Visits": 439.0, "Total Visitors": 401.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 54.0, "Total Spend": 20852.0, "Total Transactions": 310.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.02, "MEDIAN_SPEND_PER_CUSTOMER": 65.41 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "LOCATION_NAME": "Joes Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95039, "LONGITUDE": -75.167575, "DATE_RANGE_START": 2021, "Total Visits": 265.0, "Total Visitors": 217.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 222.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.55, "MEDIAN_SPEND_PER_CUSTOMER": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.167575, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949521, "LONGITUDE": -75.167452, "DATE_RANGE_START": 2021, "Total Visits": 1625.0, "Total Visitors": 1246.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 62.0, "Total Spend": 12160.0, "Total Transactions": 1704.0, "Total Customers": 1179.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.73, "MEDIAN_SPEND_PER_CUSTOMER": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167452, 39.949521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phq-g8v", "LOCATION_NAME": "M & J Market & Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.062316, "LONGITUDE": -75.152128, "DATE_RANGE_START": 2021, "Total Visits": 890.0, "Total Visitors": 640.0, "POI_CBG": 421010265001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1071.0, "Total Transactions": 48.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.152128, 40.062316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "LOCATION_NAME": "Hair Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2021, "Total Visits": 2442.0, "Total Visitors": 1465.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 12605.0, "Total Transactions": 363.0, "Total Customers": 291.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.81, "MEDIAN_SPEND_PER_CUSTOMER": 27.4 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.918005, "LONGITUDE": -75.188849, "DATE_RANGE_START": 2021, "Total Visits": 487.0, "Total Visitors": 420.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 20041.0, "Total Transactions": 382.0, "Total Customers": 291.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.79, "MEDIAN_SPEND_PER_CUSTOMER": 52.9 }, "geometry": { "type": "Point", "coordinates": [ -75.188849, 39.918005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-f2k", "LOCATION_NAME": "New Eli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993812, "LONGITUDE": -75.118652, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 181.0, "POI_CBG": 421010177011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 360.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.17, "MEDIAN_SPEND_PER_CUSTOMER": 47.17 }, "geometry": { "type": "Point", "coordinates": [ -75.118652, 39.993812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgf-fpv", "LOCATION_NAME": "Kabobeesh", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956522, "LONGITUDE": -75.206506, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 134.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 20.0, "Total Spend": 7211.0, "Total Transactions": 236.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.57, "MEDIAN_SPEND_PER_CUSTOMER": 26.67 }, "geometry": { "type": "Point", "coordinates": [ -75.206506, 39.956522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-xkf", "LOCATION_NAME": "Vietnam Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956332, "LONGITUDE": -75.157056, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 126.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 302.0, "Total Spend": 160.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.56, "MEDIAN_SPEND_PER_CUSTOMER": 33.56 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.956332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-j7q", "LOCATION_NAME": "Cavanaugh's Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951128, "LONGITUDE": -75.171573, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 172.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 54.0, "Total Spend": 1768.0, "Total Transactions": 64.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.04, "MEDIAN_SPEND_PER_CUSTOMER": 78.47 }, "geometry": { "type": "Point", "coordinates": [ -75.171573, 39.951128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-4vz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077481, "LONGITUDE": -75.031225, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 198.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 69.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.43, "MEDIAN_SPEND_PER_CUSTOMER": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.031225, 40.077481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25d-223@628-pm6-hyv", "LOCATION_NAME": "Dolores", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924509, "LONGITUDE": -75.149814, "DATE_RANGE_START": 2021, "Total Visits": 871.0, "Total Visitors": 461.0, "POI_CBG": 421010027022.0, "MEDIAN_DWELL": 215.0, "Total Spend": 788.0, "Total Transactions": 41.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.75 }, "geometry": { "type": "Point", "coordinates": [ -75.149814, 39.924509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 7.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": 232.0, "Total Spend": 5081.0, "Total Transactions": 628.0, "Total Customers": 425.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.66, "MEDIAN_SPEND_PER_CUSTOMER": 8.14 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-nnq", "LOCATION_NAME": "Square Pie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938609, "LONGITUDE": -75.152665, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 19.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1346.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.46, "MEDIAN_SPEND_PER_CUSTOMER": 31.46 }, "geometry": { "type": "Point", "coordinates": [ -75.152665, 39.938609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-3qz", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.017784, "LONGITUDE": -75.148619, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5327.0, "Total Transactions": 38.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.19, "MEDIAN_SPEND_PER_CUSTOMER": 78.82 }, "geometry": { "type": "Point", "coordinates": [ -75.148619, 40.017784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "LOCATION_NAME": "Chubby's Fox Chase Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 48.0, "POI_CBG": 421010341006.0, "MEDIAN_DWELL": 1200.0, "Total Spend": 1638.0, "Total Transactions": 79.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.09, "MEDIAN_SPEND_PER_CUSTOMER": 23.53 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmf-s3q", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944594, "LONGITUDE": -75.171766, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9749.0, "Total Transactions": 926.0, "Total Customers": 668.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.15, "MEDIAN_SPEND_PER_CUSTOMER": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.171766, 39.944594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 60.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 6320.0, "Total Transactions": 165.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.06, "MEDIAN_SPEND_PER_CUSTOMER": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "LOCATION_NAME": "Standard Tap", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964257, "LONGITUDE": -75.140401, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 60.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 76.0, "Total Spend": 5457.0, "Total Transactions": 76.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.9, "MEDIAN_SPEND_PER_CUSTOMER": 55.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140401, 39.964257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "LOCATION_NAME": "Ginza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 7223.0, "Total Transactions": 117.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.95, "MEDIAN_SPEND_PER_CUSTOMER": 58.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "LOCATION_NAME": "Convenient Food Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.034523, "LONGITUDE": -75.044217, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 38.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8137.0, "Total Transactions": 539.0, "Total Customers": 251.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.63, "MEDIAN_SPEND_PER_CUSTOMER": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.044217, 40.034523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp2-q75", "LOCATION_NAME": "Kensington Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995547, "LONGITUDE": -75.102511, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 60.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 123.0, "Total Spend": 320.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102511, 39.995547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "LOCATION_NAME": "Main Street Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.026391, "LONGITUDE": -75.226268, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 67.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 11872.0, "Total Transactions": 107.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226268, 40.026391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942147, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 158.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 77.0, "Total Spend": 23244.0, "Total Transactions": 876.0, "Total Customers": 675.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.75, "MEDIAN_SPEND_PER_CUSTOMER": 28.93 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.942147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-6ff", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948341, "LONGITUDE": -75.157035, "DATE_RANGE_START": 2021, "Total Visits": 969.0, "Total Visitors": 606.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 161.0, "Total Spend": 301.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157035, 39.948341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-gp9", "LOCATION_NAME": "Jay's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946457, "LONGITUDE": -75.162475, "DATE_RANGE_START": 2021, "Total Visits": 561.0, "Total Visitors": 408.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": 20.0, "Total Spend": 95.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.09, "MEDIAN_SPEND_PER_CUSTOMER": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.162475, 39.946457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2021, "Total Visits": 513.0, "Total Visitors": 439.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 21829.0, "Total Transactions": 1506.0, "Total Customers": 1055.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.27, "MEDIAN_SPEND_PER_CUSTOMER": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2021, "Total Visits": 735.0, "Total Visitors": 496.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 22026.0, "Total Transactions": 1516.0, "Total Customers": 838.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.13, "MEDIAN_SPEND_PER_CUSTOMER": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-ysq", "LOCATION_NAME": "C & R Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.93947, "LONGITUDE": -75.209529, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 155.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 21156.0, "Total Transactions": 55.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.66, "MEDIAN_SPEND_PER_CUSTOMER": 125.66 }, "geometry": { "type": "Point", "coordinates": [ -75.209529, 39.93947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "LOCATION_NAME": "Fair Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.968488, "LONGITUDE": -75.180495, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 217.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 711.0, "Total Spend": 4561.0, "Total Transactions": 353.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.180495, 39.968488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-wkz", "LOCATION_NAME": "rue21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088728, "LONGITUDE": -74.961198, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 334.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 686759.0, "Total Transactions": 15086.0, "Total Customers": 12201.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.23, "MEDIAN_SPEND_PER_CUSTOMER": 39.54 }, "geometry": { "type": "Point", "coordinates": [ -74.961198, 40.088728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2021, "Total Visits": 411.0, "Total Visitors": 337.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1058.0, "Total Transactions": 79.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.94, "MEDIAN_SPEND_PER_CUSTOMER": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "LOCATION_NAME": "1 Stop Smoke Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 110.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3052.0, "Total Transactions": 122.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.5, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "LOCATION_NAME": "Papa Nick's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 14.0, "POI_CBG": 421010272003.0, "MEDIAN_DWELL": 273.0, "Total Spend": 1252.0, "Total Transactions": 50.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.74, "MEDIAN_SPEND_PER_CUSTOMER": 34.62 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-zmk", "LOCATION_NAME": "Thank God Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.036218, "LONGITUDE": -75.129732, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 21.0, "POI_CBG": 421010274013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 86.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129732, 40.036218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rx5", "LOCATION_NAME": "Hair Hair", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978114, "LONGITUDE": -75.271405, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 32373.0, "Total Transactions": 874.0, "Total Customers": 695.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.16, "MEDIAN_SPEND_PER_CUSTOMER": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.271405, 39.978114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-g49", "LOCATION_NAME": "Ham Bone", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.977503, "LONGITUDE": -75.13156, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 67.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 9858.0, "Total Transactions": 177.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.9, "MEDIAN_SPEND_PER_CUSTOMER": 56.14 }, "geometry": { "type": "Point", "coordinates": [ -75.13156, 39.977503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "LOCATION_NAME": "Lee's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": null, "Total Spend": 4632.0, "Total Transactions": 232.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnz-yy9", "LOCATION_NAME": "Perri's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987227, "LONGITUDE": -75.108511, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": null, "Total Spend": 2734.0, "Total Transactions": 141.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.108511, 39.987227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 36877.0, "Total Transactions": 2024.0, "Total Customers": 1255.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w8v", "LOCATION_NAME": "Pro Image Sports", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087124, "LONGITUDE": -74.961763, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 95.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 8250.0, "Total Transactions": 138.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.5, "MEDIAN_SPEND_PER_CUSTOMER": 45.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961763, 40.087124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "LOCATION_NAME": "Bruno's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 62.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2066.0, "Total Transactions": 112.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.83, "MEDIAN_SPEND_PER_CUSTOMER": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-j7q", "LOCATION_NAME": "Flowers & Company", "TOP_CATEGORY": "Florists", "LATITUDE": 39.948248, "LONGITUDE": -75.172462, "DATE_RANGE_START": 2021, "Total Visits": 1449.0, "Total Visitors": 1072.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1196.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 35.73 }, "geometry": { "type": "Point", "coordinates": [ -75.172462, 39.948248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pnw-psq", "LOCATION_NAME": "Unleashed by Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.969106, "LONGITUDE": -75.139264, "DATE_RANGE_START": 2021, "Total Visits": 854.0, "Total Visitors": 587.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2575.0, "Total Transactions": 84.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.13, "MEDIAN_SPEND_PER_CUSTOMER": 33.61 }, "geometry": { "type": "Point", "coordinates": [ -75.139264, 39.969106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-4gk", "LOCATION_NAME": "I Heart Cambodia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921392, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010041012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 993.0, "Total Transactions": 31.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.51, "MEDIAN_SPEND_PER_CUSTOMER": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.921392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25p-222@628-pm4-cwk", "LOCATION_NAME": "Station Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925815, "LONGITUDE": -75.172603, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 29.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 79.0, "Total Spend": 270.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.64, "MEDIAN_SPEND_PER_CUSTOMER": 56.64 }, "geometry": { "type": "Point", "coordinates": [ -75.172603, 39.925815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "LOCATION_NAME": "El Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 33.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4203.0, "Total Transactions": 246.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.01, "MEDIAN_SPEND_PER_CUSTOMER": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm7-nwk", "LOCATION_NAME": "Point Crab's & Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.934951, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 11.0, "Total Spend": 147.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.72, "MEDIAN_SPEND_PER_CUSTOMER": 21.72 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.934951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.045071, "LONGITUDE": -75.088214, "DATE_RANGE_START": 2021, "Total Visits": 1320.0, "Total Visitors": 928.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 24611.0, "Total Transactions": 912.0, "Total Customers": 609.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.01, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.088214, 40.045071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-btv", "LOCATION_NAME": "Ridge Gas & Minimart", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.980802, "LONGITUDE": -75.173001, "DATE_RANGE_START": 2021, "Total Visits": 322.0, "Total Visitors": 232.0, "POI_CBG": 421010149001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2796.0, "Total Transactions": 169.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173001, 39.980802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "LOCATION_NAME": "Dragon Phoenix House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 62.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 88.0, "Total Spend": 2000.0, "Total Transactions": 53.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.67, "MEDIAN_SPEND_PER_CUSTOMER": 36.67 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "LOCATION_NAME": "Marine Layer", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949625, "LONGITUDE": -75.16782, "DATE_RANGE_START": 2021, "Total Visits": 1208.0, "Total Visitors": 931.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 15.0, "Total Spend": 4329.0, "Total Transactions": 53.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.5, "MEDIAN_SPEND_PER_CUSTOMER": 95.35 }, "geometry": { "type": "Point", "coordinates": [ -75.16782, 39.949625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wtv", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951227, "LONGITUDE": -75.152425, "DATE_RANGE_START": 2021, "Total Visits": 823.0, "Total Visitors": 628.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 20143.0, "Total Transactions": 1322.0, "Total Customers": 1038.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.15, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152425, 39.951227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7w-tn5", "LOCATION_NAME": "Way Out", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.047236, "LONGITUDE": -75.055695, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 143.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 71.0, "Total Spend": 2290.0, "Total Transactions": 57.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.74, "MEDIAN_SPEND_PER_CUSTOMER": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.055695, 40.047236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7b-vmk", "LOCATION_NAME": "Out Of Wack Jack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057001, "LONGITUDE": -75.014587, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 79.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 63.0, "Total Spend": 914.0, "Total Transactions": 29.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014587, 40.057001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972318, "LONGITUDE": -75.125675, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 131.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 7457.0, "Total Transactions": 1069.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.7, "MEDIAN_SPEND_PER_CUSTOMER": 9.34 }, "geometry": { "type": "Point", "coordinates": [ -75.125675, 39.972318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-mff", "LOCATION_NAME": "Jerusalem Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.006026, "LONGITUDE": -75.097718, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 236.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 17.0, "Total Spend": 9709.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 2034.05, "MEDIAN_SPEND_PER_CUSTOMER": 2034.05 }, "geometry": { "type": "Point", "coordinates": [ -75.097718, 40.006026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2021, "Total Visits": 2924.0, "Total Visitors": 1869.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 196820.0, "Total Transactions": 2609.0, "Total Customers": 1671.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.46, "MEDIAN_SPEND_PER_CUSTOMER": 44.86 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-j7q", "LOCATION_NAME": "Frecon Farms", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950808, "LONGITUDE": -75.171348, "DATE_RANGE_START": 2021, "Total Visits": 4434.0, "Total Visitors": 3162.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 1153.0, "Total Transactions": 79.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.171348, 39.950808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmd-zfz", "LOCATION_NAME": "Springfield Beer Distributor", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.939186, "LONGITUDE": -75.180299, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 167.0, "POI_CBG": 421010020001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 14211.0, "Total Transactions": 286.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.95, "MEDIAN_SPEND_PER_CUSTOMER": 47.46 }, "geometry": { "type": "Point", "coordinates": [ -75.180299, 39.939186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "LOCATION_NAME": "H&M (Hennes & Mauritz)", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088823, "LONGITUDE": -74.961811, "DATE_RANGE_START": 2021, "Total Visits": 470.0, "Total Visitors": 434.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 17724.0, "Total Transactions": 422.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.98, "MEDIAN_SPEND_PER_CUSTOMER": 32.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961811, 40.088823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "LOCATION_NAME": "El Rey", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 193.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 34.0, "Total Spend": 25695.0, "Total Transactions": 413.0, "Total Customers": 377.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.46, "MEDIAN_SPEND_PER_CUSTOMER": 54.38 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-jsq", "LOCATION_NAME": "Danny's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045112, "LONGITUDE": -75.117134, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 805.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117134, 40.045112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2021, "Total Visits": 4088.0, "Total Visitors": 3143.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 9572.0, "Total Transactions": 413.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.39, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-xwk", "LOCATION_NAME": "Walnut Street Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952066, "LONGITUDE": -75.183753, "DATE_RANGE_START": 2021, "Total Visits": 4735.0, "Total Visitors": 3215.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 198.0, "Total Spend": 4677.0, "Total Transactions": 64.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.24, "MEDIAN_SPEND_PER_CUSTOMER": 57.24 }, "geometry": { "type": "Point", "coordinates": [ -75.183753, 39.952066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "LOCATION_NAME": "Brick House Bar & Grille", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2021, "Total Visits": 504.0, "Total Visitors": 351.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 73.0, "Total Spend": 8192.0, "Total Transactions": 172.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.62, "MEDIAN_SPEND_PER_CUSTOMER": 50.25 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "LOCATION_NAME": "The Twisted Tail", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941828, "LONGITUDE": -75.145203, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 100.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 82.0, "Total Spend": 32232.0, "Total Transactions": 475.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.68, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145203, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-s89", "LOCATION_NAME": "Blume", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948455, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2021, "Total Visits": 305.0, "Total Visitors": 248.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 7.0, "Total Spend": 9726.0, "Total Transactions": 155.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.39, "MEDIAN_SPEND_PER_CUSTOMER": 51.66 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 39.948455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pmb-7yv", "LOCATION_NAME": "Umi Sushi And Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95348, "LONGITUDE": -75.159046, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 2398.0, "Total Transactions": 138.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.36, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159046, 39.95348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2021, "Total Visits": 10210.0, "Total Visitors": 5926.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 82.0, "Total Spend": 9071.0, "Total Transactions": 232.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.12, "MEDIAN_SPEND_PER_CUSTOMER": 28.09 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012435, "LONGITUDE": -75.119008, "DATE_RANGE_START": 2021, "Total Visits": 611.0, "Total Visitors": 508.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 17789.0, "Total Transactions": 1251.0, "Total Customers": 919.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.43, "MEDIAN_SPEND_PER_CUSTOMER": 15.26 }, "geometry": { "type": "Point", "coordinates": [ -75.119008, 40.012435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2021, "Total Visits": 332.0, "Total Visitors": 186.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 11626.0, "Total Transactions": 1346.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.16, "MEDIAN_SPEND_PER_CUSTOMER": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 81.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4124.0, "Total Transactions": 499.0, "Total Customers": 327.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.69 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94013, "LONGITUDE": -75.165831, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5371.0, "Total Transactions": 895.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.37, "MEDIAN_SPEND_PER_CUSTOMER": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.165831, 39.94013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.029917, "LONGITUDE": -75.0978, "DATE_RANGE_START": 2021, "Total Visits": 5453.0, "Total Visitors": 3134.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 119164.0, "Total Transactions": 976.0, "Total Customers": 642.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 74.1 }, "geometry": { "type": "Point", "coordinates": [ -75.0978, 40.029917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040652, "LONGITUDE": -75.223499, "DATE_RANGE_START": 2021, "Total Visits": 2007.0, "Total Visitors": 1215.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 244974.0, "Total Transactions": 12893.0, "Total Customers": 5766.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.68, "MEDIAN_SPEND_PER_CUSTOMER": 28.58 }, "geometry": { "type": "Point", "coordinates": [ -75.223499, 40.040652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.983382, "LONGITUDE": -75.10116, "DATE_RANGE_START": 2021, "Total Visits": 3124.0, "Total Visitors": 2107.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1238.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.44, "MEDIAN_SPEND_PER_CUSTOMER": 29.35 }, "geometry": { "type": "Point", "coordinates": [ -75.10116, 39.983382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031206, "LONGITUDE": -75.124676, "DATE_RANGE_START": 2021, "Total Visits": 1253.0, "Total Visitors": 737.0, "POI_CBG": 421010286005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 452.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.99, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124676, 40.031206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vfz", "LOCATION_NAME": "Four Worlds Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94341, "LONGITUDE": -75.210507, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010074001.0, "MEDIAN_DWELL": 894.0, "Total Spend": 181.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.18, "MEDIAN_SPEND_PER_CUSTOMER": 5.25 }, "geometry": { "type": "Point", "coordinates": [ -75.210507, 39.94341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pm3-vs5", "LOCATION_NAME": "Mike & Matt's Italian Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926268, "LONGITUDE": -75.165968, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 10.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 3.0, "Total Spend": 764.0, "Total Transactions": 79.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165968, 39.926268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 12.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 342.0, "Total Spend": 16279.0, "Total Transactions": 597.0, "Total Customers": 473.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.88, "MEDIAN_SPEND_PER_CUSTOMER": 30.41 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "LOCATION_NAME": "Bok Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.925217, "LONGITUDE": -75.160024, "DATE_RANGE_START": 2021, "Total Visits": 847.0, "Total Visitors": 585.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 109.0, "Total Spend": 48620.0, "Total Transactions": 1375.0, "Total Customers": 916.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.4, "MEDIAN_SPEND_PER_CUSTOMER": 34.43 }, "geometry": { "type": "Point", "coordinates": [ -75.160024, 39.925217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-bzf", "LOCATION_NAME": "Potato Corner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95172, "LONGITUDE": -75.155706, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 4151.0, "Total Transactions": 437.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155706, 39.95172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvv-249", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.916025, "LONGITUDE": -75.24632, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 5.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 6198.0, "Total Transactions": 57.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.19, "MEDIAN_SPEND_PER_CUSTOMER": 78.47 }, "geometry": { "type": "Point", "coordinates": [ -75.24632, 39.916025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "LOCATION_NAME": "Tomo Sushi & Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 7.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 2013.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.24, "MEDIAN_SPEND_PER_CUSTOMER": 57.24 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "LOCATION_NAME": "Christies Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": null, "Total Spend": 9203.0, "Total Transactions": 652.0, "Total Customers": 344.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.6, "MEDIAN_SPEND_PER_CUSTOMER": 17.79 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "LOCATION_NAME": "The Sidecar Bar & Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1794.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.19, "MEDIAN_SPEND_PER_CUSTOMER": 48.92 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8h-789", "LOCATION_NAME": "Palm Tree Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029254, "LONGITUDE": -75.03641, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 19.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3455.0, "Total Transactions": 251.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.92, "MEDIAN_SPEND_PER_CUSTOMER": 11.54 }, "geometry": { "type": "Point", "coordinates": [ -75.03641, 40.029254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-m8v", "LOCATION_NAME": "Furniture Mecca", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.004624, "LONGITUDE": -75.127638, "DATE_RANGE_START": 2021, "Total Visits": 363.0, "Total Visitors": 303.0, "POI_CBG": 421010195022.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3697.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 259.0, "MEDIAN_SPEND_PER_CUSTOMER": 259.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127638, 40.004624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2021, "Total Visits": 1337.0, "Total Visitors": 878.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3494.0, "Total Transactions": 107.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.14, "MEDIAN_SPEND_PER_CUSTOMER": 26.61 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.960173, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 136.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3362.0, "Total Transactions": 282.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.9, "MEDIAN_SPEND_PER_CUSTOMER": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.960173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2021, "Total Visits": 2575.0, "Total Visitors": 2002.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 113760.0, "Total Transactions": 4761.0, "Total Customers": 3117.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.85 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pnt-3wk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974268, "LONGITUDE": -75.119829, "DATE_RANGE_START": 2021, "Total Visits": 360.0, "Total Visitors": 289.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 997.0, "Total Transactions": 55.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.09, "MEDIAN_SPEND_PER_CUSTOMER": 19.75 }, "geometry": { "type": "Point", "coordinates": [ -75.119829, 39.974268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgk-z9f", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999874, "LONGITUDE": -75.209033, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010122041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 600.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.15, "MEDIAN_SPEND_PER_CUSTOMER": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.209033, 39.999874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp4-zfz", "LOCATION_NAME": "Liberty Gas Station", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991196, "LONGITUDE": -75.131119, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 217.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 25128.0, "Total Transactions": 788.0, "Total Customers": 575.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131119, 39.991196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.028739, "LONGITUDE": -75.099173, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 387.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 22055.0, "Total Transactions": 1048.0, "Total Customers": 893.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.8, "MEDIAN_SPEND_PER_CUSTOMER": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.099173, 40.028739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "LOCATION_NAME": "Mid Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 41.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 289.0, "Total Spend": 634.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.09, "MEDIAN_SPEND_PER_CUSTOMER": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgg-jsq", "LOCATION_NAME": "BBQ Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995114, "LONGITUDE": -75.167387, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 55.0, "POI_CBG": 421010168006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 588.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.71, "MEDIAN_SPEND_PER_CUSTOMER": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167387, 39.995114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pm3-vpv", "LOCATION_NAME": "Philadelphia Scooters", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.936705, "LONGITUDE": -75.186573, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 57.0, "POI_CBG": 421010020002.0, "MEDIAN_DWELL": 164.0, "Total Spend": 1400.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.92, "MEDIAN_SPEND_PER_CUSTOMER": 106.92 }, "geometry": { "type": "Point", "coordinates": [ -75.186573, 39.936705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "LOCATION_NAME": "Clarkville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949731, "LONGITUDE": -75.209453, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 57.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": 71.0, "Total Spend": 22593.0, "Total Transactions": 597.0, "Total Customers": 494.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 36.24 }, "geometry": { "type": "Point", "coordinates": [ -75.209453, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-nwk", "LOCATION_NAME": "One Pound Cheesesteaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989593, "LONGITUDE": -75.125509, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 62.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1195.0, "Total Transactions": 69.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125509, 39.989593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "LOCATION_NAME": "Dannys Wok 3", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010204002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 630.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.16, "MEDIAN_SPEND_PER_CUSTOMER": 41.16 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "LOCATION_NAME": "New Wave Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 53.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 360.0, "Total Spend": 9843.0, "Total Transactions": 208.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.05, "MEDIAN_SPEND_PER_CUSTOMER": 37.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-2kz", "LOCATION_NAME": "Digital Underground", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.939663, "LONGITUDE": -75.149717, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 64.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 1252.0, "Total Spend": 1123.0, "Total Transactions": 29.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.64, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149717, 39.939663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm9-5zz", "LOCATION_NAME": "Caffe Chicco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918638, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": null, "Total Spend": 170.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.8, "MEDIAN_SPEND_PER_CUSTOMER": 35.53 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.918638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-94v", "LOCATION_NAME": "Mood Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948631, "LONGITUDE": -75.215805, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": null, "Total Spend": 1718.0, "Total Transactions": 60.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.73, "MEDIAN_SPEND_PER_CUSTOMER": 26.73 }, "geometry": { "type": "Point", "coordinates": [ -75.215805, 39.948631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "LOCATION_NAME": "Vientiane Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010161003.0, "MEDIAN_DWELL": 78.0, "Total Spend": 997.0, "Total Transactions": 33.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.24, "MEDIAN_SPEND_PER_CUSTOMER": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2468.0, "Total Transactions": 55.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.96, "MEDIAN_SPEND_PER_CUSTOMER": 40.56 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "LOCATION_NAME": "Henry James Saloon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 53.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 114.0, "Total Spend": 1110.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.24, "MEDIAN_SPEND_PER_CUSTOMER": 45.64 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-bhq", "LOCATION_NAME": "Lloyd Whiskey Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.971373, "LONGITUDE": -75.127654, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 179.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 36.0, "Total Spend": 14647.0, "Total Transactions": 200.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.29, "MEDIAN_SPEND_PER_CUSTOMER": 70.95 }, "geometry": { "type": "Point", "coordinates": [ -75.127654, 39.971373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "LOCATION_NAME": "Lucha Cartel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 138.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 8532.0, "Total Transactions": 236.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmb-djv", "LOCATION_NAME": "Hawthornes Biercafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941057, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 88.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 669.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.92, "MEDIAN_SPEND_PER_CUSTOMER": 64.92 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.941057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-snq", "LOCATION_NAME": "Motel 6", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 40.103426, "LONGITUDE": -75.005145, "DATE_RANGE_START": 2021, "Total Visits": 439.0, "Total Visitors": 294.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 273.0, "Total Spend": 5909.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 124.96, "MEDIAN_SPEND_PER_CUSTOMER": 156.92 }, "geometry": { "type": "Point", "coordinates": [ -75.005145, 40.103426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@63s-dw4-rzf", "LOCATION_NAME": "Local Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895174, "LONGITUDE": -75.227977, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 82985.0, "Total Transactions": 3372.0, "Total Customers": 2709.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.63, "MEDIAN_SPEND_PER_CUSTOMER": 24.76 }, "geometry": { "type": "Point", "coordinates": [ -75.227977, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2021, "Total Visits": 733.0, "Total Visitors": 470.0, "POI_CBG": 421010085001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13783.0, "Total Transactions": 1014.0, "Total Customers": 733.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.37, "MEDIAN_SPEND_PER_CUSTOMER": 13.36 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22f@628-pmf-n5z", "LOCATION_NAME": "La Scala's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954543, "LONGITUDE": -75.168458, "DATE_RANGE_START": 2021, "Total Visits": 1539.0, "Total Visitors": 988.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 204.0, "Total Spend": 769.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.62, "MEDIAN_SPEND_PER_CUSTOMER": 58.87 }, "geometry": { "type": "Point", "coordinates": [ -75.168458, 39.954543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2021, "Total Visits": 1055.0, "Total Visitors": 764.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 12578.0, "Total Transactions": 1792.0, "Total Customers": 912.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.9, "MEDIAN_SPEND_PER_CUSTOMER": 9.42 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-y5f", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.086763, "LONGITUDE": -75.038776, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 162.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 547.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.32, "MEDIAN_SPEND_PER_CUSTOMER": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.038776, 40.086763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-cdv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.033248, "LONGITUDE": -75.131604, "DATE_RANGE_START": 2021, "Total Visits": 842.0, "Total Visitors": 508.0, "POI_CBG": 421010275003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1339.0, "Total Transactions": 36.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.29, "MEDIAN_SPEND_PER_CUSTOMER": 30.09 }, "geometry": { "type": "Point", "coordinates": [ -75.131604, 40.033248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.993791, "LONGITUDE": -75.155151, "DATE_RANGE_START": 2021, "Total Visits": 1487.0, "Total Visitors": 971.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 469.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 20.01 }, "geometry": { "type": "Point", "coordinates": [ -75.155151, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.912374, "LONGITUDE": -75.156918, "DATE_RANGE_START": 2021, "Total Visits": 1771.0, "Total Visitors": 1432.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 23.0, "Total Spend": 4858.0, "Total Transactions": 112.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.78, "MEDIAN_SPEND_PER_CUSTOMER": 27.78 }, "geometry": { "type": "Point", "coordinates": [ -75.156918, 39.912374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-kj9", "LOCATION_NAME": "Ace Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.953745, "LONGITUDE": -75.144691, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": null, "Total Spend": 607.0, "Total Transactions": 29.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 14.56 }, "geometry": { "type": "Point", "coordinates": [ -75.144691, 39.953745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-52k", "LOCATION_NAME": "Orient Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980968, "LONGITUDE": -75.15329, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 33.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 173.0, "Total Spend": 1665.0, "Total Transactions": 172.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15329, 39.980968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-sbk", "LOCATION_NAME": "Frankinstien Bike Worx", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.947579, "LONGITUDE": -75.167633, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 38.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 820.0, "Total Spend": 3861.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 219.24, "MEDIAN_SPEND_PER_CUSTOMER": 79.92 }, "geometry": { "type": "Point", "coordinates": [ -75.167633, 39.947579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "LOCATION_NAME": "Stateside", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 8273.0, "Total Transactions": 205.0, "Total Customers": 189.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.71, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7v-gkz", "LOCATION_NAME": "Villagio Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.053089, "LONGITUDE": -75.068847, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010335003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1938.0, "Total Transactions": 84.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.63, "MEDIAN_SPEND_PER_CUSTOMER": 21.77 }, "geometry": { "type": "Point", "coordinates": [ -75.068847, 40.053089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm9-y5f", "LOCATION_NAME": "Metalworks", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941674, "LONGITUDE": -75.148121, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 28.0, "Total Spend": 258.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.95, "MEDIAN_SPEND_PER_CUSTOMER": 53.95 }, "geometry": { "type": "Point", "coordinates": [ -75.148121, 39.941674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj9-5j9", "LOCATION_NAME": "D & D Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.042578, "LONGITUDE": -75.140373, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 12.0, "POI_CBG": 421010276003.0, "MEDIAN_DWELL": 71.0, "Total Spend": 248.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.03, "MEDIAN_SPEND_PER_CUSTOMER": 7.65 }, "geometry": { "type": "Point", "coordinates": [ -75.140373, 40.042578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "LOCATION_NAME": "The Book Trader", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 160.0, "Total Spend": 1242.0, "Total Transactions": 64.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.22, "MEDIAN_SPEND_PER_CUSTOMER": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "LOCATION_NAME": "Old English Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1807.0, "Total Transactions": 53.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.41, "MEDIAN_SPEND_PER_CUSTOMER": 34.78 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "LOCATION_NAME": "Four Seasons Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 62.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1063.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.55, "MEDIAN_SPEND_PER_CUSTOMER": 21.55 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "LOCATION_NAME": "C Town Supermarkets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.99594, "LONGITUDE": -75.172136, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 69.0, "POI_CBG": 421010169011.0, "MEDIAN_DWELL": 233.0, "Total Spend": 995.0, "Total Transactions": 84.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.58, "MEDIAN_SPEND_PER_CUSTOMER": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.172136, 39.99594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923962, "LONGITUDE": -75.142554, "DATE_RANGE_START": 2021, "Total Visits": 757.0, "Total Visitors": 609.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 18207.0, "Total Transactions": 1766.0, "Total Customers": 1418.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.81, "MEDIAN_SPEND_PER_CUSTOMER": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.142554, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "LOCATION_NAME": "Big Ben Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 50.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 9405.0, "Total Transactions": 303.0, "Total Customers": 227.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.59, "MEDIAN_SPEND_PER_CUSTOMER": 34.84 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-r49", "LOCATION_NAME": "PA Auto Sales com", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.104341, "LONGITUDE": -75.003284, "DATE_RANGE_START": 2021, "Total Visits": 504.0, "Total Visitors": 425.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 16706.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 1000.0, "MEDIAN_SPEND_PER_CUSTOMER": 1000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003284, 40.104341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2021, "Total Visits": 470.0, "Total Visitors": 382.0, "POI_CBG": 421010314021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 16833.0, "Total Transactions": 325.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.88, "MEDIAN_SPEND_PER_CUSTOMER": 38.82 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "LOCATION_NAME": "Best Buy Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.078042, "LONGITUDE": -75.024894, "DATE_RANGE_START": 2021, "Total Visits": 3227.0, "Total Visitors": 2298.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 1635.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 342.5, "MEDIAN_SPEND_PER_CUSTOMER": 342.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024894, 40.078042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm3-wff", "LOCATION_NAME": "Passyunk Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.931424, "LONGITUDE": -75.161293, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 220.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 421.0, "Total Spend": 741.0, "Total Transactions": 53.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.48, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161293, 39.931424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-249", "LOCATION_NAME": "Orthopedic Supply Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.073911, "LONGITUDE": -75.031195, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 74.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 668.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031195, 40.073911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "LOCATION_NAME": "Sue's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946236, "LONGITUDE": -75.145477, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 308.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 136.0, "Total Spend": 16232.0, "Total Transactions": 990.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.58, "MEDIAN_SPEND_PER_CUSTOMER": 30.74 }, "geometry": { "type": "Point", "coordinates": [ -75.145477, 39.946236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2021, "Total Visits": 3043.0, "Total Visitors": 1683.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 25351.0, "Total Transactions": 501.0, "Total Customers": 379.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 43.66 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "LOCATION_NAME": "Lombard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": null, "Total Spend": 1310.0, "Total Transactions": 193.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-kpv", "LOCATION_NAME": "Artisans On the Avenue", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075688, "LONGITUDE": -75.206238, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 7.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 97.0, "Total Spend": 570.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.0, "MEDIAN_SPEND_PER_CUSTOMER": 81.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206238, 40.075688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgb-c3q", "LOCATION_NAME": "Lucky Goat Coffeehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972559, "LONGITUDE": -75.179343, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": null, "Total Spend": 4739.0, "Total Transactions": 640.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.97, "MEDIAN_SPEND_PER_CUSTOMER": 9.87 }, "geometry": { "type": "Point", "coordinates": [ -75.179343, 39.972559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfv-94v", "LOCATION_NAME": "The Nesting House", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.04661, "LONGITUDE": -75.195379, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 32376.0, "Total Transactions": 191.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.14, "MEDIAN_SPEND_PER_CUSTOMER": 37.37 }, "geometry": { "type": "Point", "coordinates": [ -75.195379, 40.04661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pg2-hdv", "LOCATION_NAME": "Trattoria Moma", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059314, "LONGITUDE": -75.190082, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 31.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1076.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.69, "MEDIAN_SPEND_PER_CUSTOMER": 81.69 }, "geometry": { "type": "Point", "coordinates": [ -75.190082, 40.059314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "LOCATION_NAME": "New Zem Zem Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 41.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 895.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.16, "MEDIAN_SPEND_PER_CUSTOMER": 24.78 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pp2-47q", "LOCATION_NAME": "Tinys Bottle Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.982331, "LONGITUDE": -75.103167, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 43.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6769.0, "Total Transactions": 117.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.76, "MEDIAN_SPEND_PER_CUSTOMER": 60.34 }, "geometry": { "type": "Point", "coordinates": [ -75.103167, 39.982331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-kpv", "LOCATION_NAME": "Foreign Bazaar", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.952092, "LONGITUDE": -75.172676, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 48.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1486.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.16, "MEDIAN_SPEND_PER_CUSTOMER": 62.58 }, "geometry": { "type": "Point", "coordinates": [ -75.172676, 39.952092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pm3-t5f", "LOCATION_NAME": "River Twice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929748, "LONGITUDE": -75.163402, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 43.0, "Total Spend": 1921.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 311.76, "MEDIAN_SPEND_PER_CUSTOMER": 311.76 }, "geometry": { "type": "Point", "coordinates": [ -75.163402, 39.929748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "LOCATION_NAME": "Mr Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2993.0, "Total Transactions": 107.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.27, "MEDIAN_SPEND_PER_CUSTOMER": 27.34 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "LOCATION_NAME": "Suit Corner", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2021, "Total Visits": 933.0, "Total Visitors": 814.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 8291.0, "Total Transactions": 53.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 127.5, "MEDIAN_SPEND_PER_CUSTOMER": 199.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.002434, "LONGITUDE": -75.100336, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 86.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 265984.0, "Total Transactions": 169.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 694.21, "MEDIAN_SPEND_PER_CUSTOMER": 708.77 }, "geometry": { "type": "Point", "coordinates": [ -75.100336, 40.002434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnt-3wk", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.974634, "LONGITUDE": -75.119239, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 155.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 9129.0, "Total Transactions": 48.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.63, "MEDIAN_SPEND_PER_CUSTOMER": 97.63 }, "geometry": { "type": "Point", "coordinates": [ -75.119239, 39.974634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2021, "Total Visits": 413.0, "Total Visitors": 241.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3061.0, "Total Transactions": 255.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.951277, "LONGITUDE": -75.177618, "DATE_RANGE_START": 2021, "Total Visits": 2093.0, "Total Visitors": 1714.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2541.0, "Total Transactions": 91.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.37, "MEDIAN_SPEND_PER_CUSTOMER": 22.37 }, "geometry": { "type": "Point", "coordinates": [ -75.177618, 39.951277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.060462, "LONGITUDE": -75.081398, "DATE_RANGE_START": 2021, "Total Visits": 585.0, "Total Visitors": 413.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 834.0, "Total Transactions": 36.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.61, "MEDIAN_SPEND_PER_CUSTOMER": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.081398, 40.060462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-wx5", "LOCATION_NAME": "Gap Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090197, "LONGITUDE": -74.960879, "DATE_RANGE_START": 2021, "Total Visits": 198.0, "Total Visitors": 193.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3276.0, "Total Transactions": 60.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.99, "MEDIAN_SPEND_PER_CUSTOMER": 41.99 }, "geometry": { "type": "Point", "coordinates": [ -74.960879, 40.090197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 124.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 152.0, "Total Spend": 1279.0, "Total Transactions": 41.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.41, "MEDIAN_SPEND_PER_CUSTOMER": 26.41 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2021, "Total Visits": 7485.0, "Total Visitors": 5687.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 21946.0, "Total Transactions": 740.0, "Total Customers": 544.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.25, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p9k-r8v", "LOCATION_NAME": "The Union Tap", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.10443, "LONGITUDE": -75.000432, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 150.0, "POI_CBG": 421010361002.0, "MEDIAN_DWELL": 67.0, "Total Spend": 302.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.000432, 40.10443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "LOCATION_NAME": "Walmart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.083037, "LONGITUDE": -75.022233, "DATE_RANGE_START": 2021, "Total Visits": 12146.0, "Total Visitors": 8024.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 393497.0, "Total Transactions": 7666.0, "Total Customers": 4823.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.14, "MEDIAN_SPEND_PER_CUSTOMER": 49.94 }, "geometry": { "type": "Point", "coordinates": [ -75.022233, 40.083037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-nwk", "LOCATION_NAME": "Hiroki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971334, "LONGITUDE": -75.135176, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 76.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4281.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 489.02, "MEDIAN_SPEND_PER_CUSTOMER": 489.02 }, "geometry": { "type": "Point", "coordinates": [ -75.135176, 39.971334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-jjv", "LOCATION_NAME": "Copabanana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951555, "LONGITUDE": -75.203266, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 177.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 33.0, "Total Spend": 15082.0, "Total Transactions": 258.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.82, "MEDIAN_SPEND_PER_CUSTOMER": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203266, 39.951555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-2c5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073477, "LONGITUDE": -75.033695, "DATE_RANGE_START": 2021, "Total Visits": 554.0, "Total Visitors": 358.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9371.0, "Total Transactions": 1265.0, "Total Customers": 621.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.42, "MEDIAN_SPEND_PER_CUSTOMER": 9.69 }, "geometry": { "type": "Point", "coordinates": [ -75.033695, 40.073477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "LOCATION_NAME": "Menchie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 317.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 737.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.65, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "LOCATION_NAME": "Ox Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2021, "Total Visits": 1158.0, "Total Visitors": 833.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 105.0, "Total Spend": 3837.0, "Total Transactions": 332.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009461, "LONGITUDE": -75.150639, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3274.0, "Total Transactions": 501.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.44, "MEDIAN_SPEND_PER_CUSTOMER": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.150639, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8f-9mk", "LOCATION_NAME": "Frankford Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.013624, "LONGITUDE": -75.08702, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 74.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 163.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.82, "MEDIAN_SPEND_PER_CUSTOMER": 20.82 }, "geometry": { "type": "Point", "coordinates": [ -75.08702, 40.013624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pnx-6rk", "LOCATION_NAME": "Spring Garden Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.960581, "LONGITUDE": -75.14553, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 332.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1727.0, "Total Transactions": 55.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.35, "MEDIAN_SPEND_PER_CUSTOMER": 33.35 }, "geometry": { "type": "Point", "coordinates": [ -75.14553, 39.960581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2021, "Total Visits": 3002.0, "Total Visitors": 2057.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 22787.0, "Total Transactions": 857.0, "Total Customers": 628.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.01, "MEDIAN_SPEND_PER_CUSTOMER": 25.12 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.91784, "LONGITUDE": -75.186842, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 95.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 7410.0, "Total Transactions": 112.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.91, "MEDIAN_SPEND_PER_CUSTOMER": 52.91 }, "geometry": { "type": "Point", "coordinates": [ -75.186842, 39.91784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-j7q", "LOCATION_NAME": "Vango Lounge And Skybar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.951206, "LONGITUDE": -75.170692, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 91.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 34535.0, "Total Transactions": 358.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.51, "MEDIAN_SPEND_PER_CUSTOMER": 82.87 }, "geometry": { "type": "Point", "coordinates": [ -75.170692, 39.951206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "256-222@628-pm4-nqz", "LOCATION_NAME": "Saloon Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939873, "LONGITUDE": -75.154572, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010018001.0, "MEDIAN_DWELL": 82.0, "Total Spend": 255.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.41, "MEDIAN_SPEND_PER_CUSTOMER": 53.41 }, "geometry": { "type": "Point", "coordinates": [ -75.154572, 39.939873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "LOCATION_NAME": "Dairy Queen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087375, "LONGITUDE": -75.039949, "DATE_RANGE_START": 2021, "Total Visits": 403.0, "Total Visitors": 291.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2208.0, "Total Transactions": 165.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.039949, 40.087375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2021, "Total Visits": 1112.0, "Total Visitors": 735.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 791.0, "Total Spend": 13327.0, "Total Transactions": 43.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 215.8, "MEDIAN_SPEND_PER_CUSTOMER": 286.16 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2021, "Total Visits": 403.0, "Total Visitors": 382.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 929.0, "Total Transactions": 57.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.83, "MEDIAN_SPEND_PER_CUSTOMER": 12.83 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 200.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9135.0, "Total Transactions": 1043.0, "Total Customers": 492.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.98 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923566, "LONGITUDE": -75.245262, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 267.0, "POI_CBG": 421010064003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3820.0, "Total Transactions": 525.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.94, "MEDIAN_SPEND_PER_CUSTOMER": 8.41 }, "geometry": { "type": "Point", "coordinates": [ -75.245262, 39.923566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "LOCATION_NAME": "Nifty Fifty's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 105.0, "POI_CBG": 421010372003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11127.0, "Total Transactions": 382.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.63, "MEDIAN_SPEND_PER_CUSTOMER": 26.23 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "LOCATION_NAME": "Spice C", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 119.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 259.0, "Total Spend": 3444.0, "Total Transactions": 79.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.67, "MEDIAN_SPEND_PER_CUSTOMER": 38.67 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-brk", "LOCATION_NAME": "East Coast Wings + Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993916, "LONGITUDE": -75.091363, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 122.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 7322.0, "Total Transactions": 148.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.55, "MEDIAN_SPEND_PER_CUSTOMER": 49.25 }, "geometry": { "type": "Point", "coordinates": [ -75.091363, 39.993916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7nq", "LOCATION_NAME": "Bodega Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949277, "LONGITUDE": -75.161669, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 234.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 242.0, "Total Spend": 17105.0, "Total Transactions": 291.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.88, "MEDIAN_SPEND_PER_CUSTOMER": 56.08 }, "geometry": { "type": "Point", "coordinates": [ -75.161669, 39.949277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919412, "LONGITUDE": -75.187304, "DATE_RANGE_START": 2021, "Total Visits": 1007.0, "Total Visitors": 840.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 16360.0, "Total Transactions": 1463.0, "Total Customers": 1000.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 11.84 }, "geometry": { "type": "Point", "coordinates": [ -75.187304, 39.919412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "LOCATION_NAME": "Cold Stone Creamery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978153, "LONGITUDE": -75.119499, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 246.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7427.0, "Total Transactions": 511.0, "Total Customers": 411.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.36, "MEDIAN_SPEND_PER_CUSTOMER": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -75.119499, 39.978153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 119.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6092.0, "Total Transactions": 907.0, "Total Customers": 566.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.84, "MEDIAN_SPEND_PER_CUSTOMER": 7.34 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "LOCATION_NAME": "Evo Brickoven Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 36.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 59.0, "Total Spend": 7150.0, "Total Transactions": 480.0, "Total Customers": 322.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "LOCATION_NAME": "Red Poke Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1423.0, "Total Transactions": 79.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "LOCATION_NAME": "2nd Street Brew House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 48.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 79.0, "Total Spend": 7501.0, "Total Transactions": 236.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.25 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "LOCATION_NAME": "Crab Shack", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 55.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 183.0, "Total Spend": 3907.0, "Total Transactions": 98.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 49.55 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-p8m-mp9", "LOCATION_NAME": "Great Awakenings Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029451, "LONGITUDE": -75.081188, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 18.0, "Total Spend": 84.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.05, "MEDIAN_SPEND_PER_CUSTOMER": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.081188, 40.029451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@63s-dvr-hyv", "LOCATION_NAME": "Woodland and Conveince", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.925089, "LONGITUDE": -75.23477, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 19.0, "POI_CBG": 421010063001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 286.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23477, 39.925089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039133, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 74.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4662.0, "Total Transactions": 866.0, "Total Customers": 360.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.63, "MEDIAN_SPEND_PER_CUSTOMER": 8.78 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 40.039133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "LOCATION_NAME": "Desi Village", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 7.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1316.0, "Total Transactions": 41.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.1, "MEDIAN_SPEND_PER_CUSTOMER": 30.59 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "LOCATION_NAME": "Spasso Italian Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2021, "Total Visits": 525.0, "Total Visitors": 487.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 21376.0, "Total Transactions": 220.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.12, "MEDIAN_SPEND_PER_CUSTOMER": 77.08 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "LOCATION_NAME": "Marcello's Pizza Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2021, "Total Visits": 1695.0, "Total Visitors": 1286.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 640.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.74, "MEDIAN_SPEND_PER_CUSTOMER": 17.65 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-pn5", "LOCATION_NAME": "Hummus Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954342, "LONGITUDE": -75.202153, "DATE_RANGE_START": 2021, "Total Visits": 332.0, "Total Visitors": 272.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 13.0, "Total Spend": 5224.0, "Total Transactions": 286.0, "Total Customers": 227.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202153, 39.954342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-w8v", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955482, "LONGITUDE": -75.18177, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 181.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 16439.0, "Total Transactions": 1754.0, "Total Customers": 1458.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.18177, 39.955482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "LOCATION_NAME": "Tattooed Mom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941873, "LONGITUDE": -75.151859, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 131.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 32135.0, "Total Transactions": 1038.0, "Total Customers": 852.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151859, 39.941873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "LOCATION_NAME": "Arctic Scoop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": null, "Total Spend": 5413.0, "Total Transactions": 520.0, "Total Customers": 458.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "LOCATION_NAME": "Not Just Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2021, "Total Visits": 112.0, "Total Visitors": 24.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 343.0, "Total Spend": 580.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.28, "MEDIAN_SPEND_PER_CUSTOMER": 27.79 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "LOCATION_NAME": "Fiorino", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 45.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 41.0, "Total Spend": 6999.0, "Total Transactions": 55.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 103.14, "MEDIAN_SPEND_PER_CUSTOMER": 103.14 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "LOCATION_NAME": "Kennedy Food Garden", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 200.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3329.0, "Total Transactions": 229.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.53, "MEDIAN_SPEND_PER_CUSTOMER": 17.01 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.095744, "LONGITUDE": -74.976099, "DATE_RANGE_START": 2021, "Total Visits": 1986.0, "Total Visitors": 1232.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 142499.0, "Total Transactions": 8232.0, "Total Customers": 2986.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.39, "MEDIAN_SPEND_PER_CUSTOMER": 26.01 }, "geometry": { "type": "Point", "coordinates": [ -74.976099, 40.095744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "LOCATION_NAME": "Beer Stop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.015837, "LONGITUDE": -75.130275, "DATE_RANGE_START": 2021, "Total Visits": 260.0, "Total Visitors": 95.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 320.0, "Total Spend": 6568.0, "Total Transactions": 203.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.95, "MEDIAN_SPEND_PER_CUSTOMER": 35.74 }, "geometry": { "type": "Point", "coordinates": [ -75.130275, 40.015837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-5vf", "LOCATION_NAME": "Wellcare Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048598, "LONGITUDE": -75.061857, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 129.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 536.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.99, "MEDIAN_SPEND_PER_CUSTOMER": 12.82 }, "geometry": { "type": "Point", "coordinates": [ -75.061857, 40.048598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.954271, "LONGITUDE": -75.167991, "DATE_RANGE_START": 2021, "Total Visits": 3017.0, "Total Visitors": 2002.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 160.0, "Total Spend": 6052.0, "Total Transactions": 451.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.17, "MEDIAN_SPEND_PER_CUSTOMER": 10.71 }, "geometry": { "type": "Point", "coordinates": [ -75.167991, 39.954271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951608, "LONGITUDE": -75.168943, "DATE_RANGE_START": 2021, "Total Visits": 1215.0, "Total Visitors": 1045.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 783.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.49, "MEDIAN_SPEND_PER_CUSTOMER": 53.48 }, "geometry": { "type": "Point", "coordinates": [ -75.168943, 39.951608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-vzz", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.926515, "LONGITUDE": -75.145923, "DATE_RANGE_START": 2021, "Total Visits": 296.0, "Total Visitors": 248.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 293.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.46, "MEDIAN_SPEND_PER_CUSTOMER": 61.46 }, "geometry": { "type": "Point", "coordinates": [ -75.145923, 39.926515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8t-vvf", "LOCATION_NAME": "Hanesbrands", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089656, "LONGITUDE": -74.961738, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 212.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1187.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.78, "MEDIAN_SPEND_PER_CUSTOMER": 56.78 }, "geometry": { "type": "Point", "coordinates": [ -74.961738, 40.089656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-wkz", "LOCATION_NAME": "VIP Fashion", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.087669, "LONGITUDE": -74.96104, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6726.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.4, "MEDIAN_SPEND_PER_CUSTOMER": 123.42 }, "geometry": { "type": "Point", "coordinates": [ -74.96104, 40.087669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947798, "LONGITUDE": -75.1598, "DATE_RANGE_START": 2021, "Total Visits": 1745.0, "Total Visitors": 1444.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 15666.0, "Total Transactions": 1053.0, "Total Customers": 511.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.99, "MEDIAN_SPEND_PER_CUSTOMER": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.1598, 39.947798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7v-skf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055128, "LONGITUDE": -75.073724, "DATE_RANGE_START": 2021, "Total Visits": 1351.0, "Total Visitors": 931.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1466.0, "Total Transactions": 67.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 24.56 }, "geometry": { "type": "Point", "coordinates": [ -75.073724, 40.055128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "LOCATION_NAME": "Vince.", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2021, "Total Visits": 2575.0, "Total Visitors": 2012.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 6958.0, "Total Transactions": 36.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 147.0, "MEDIAN_SPEND_PER_CUSTOMER": 220.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-94v", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2021, "Total Visits": 16496.0, "Total Visitors": 10990.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 11774.0, "Total Transactions": 179.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.79, "MEDIAN_SPEND_PER_CUSTOMER": 40.49 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-r6k", "LOCATION_NAME": "Loop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.944579, "LONGITUDE": -75.174065, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 181.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 1807.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.49, "MEDIAN_SPEND_PER_CUSTOMER": 49.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174065, 39.944579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "LOCATION_NAME": "Dollar Mart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2021, "Total Visits": 592.0, "Total Visitors": 391.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 55.0, "Total Spend": 1597.0, "Total Transactions": 84.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.77, "MEDIAN_SPEND_PER_CUSTOMER": 13.67 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-835", "LOCATION_NAME": "Pennsylvania General Store", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953203, "LONGITUDE": -75.159393, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 275.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.32 }, "geometry": { "type": "Point", "coordinates": [ -75.159393, 39.953203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7x-b6k", "LOCATION_NAME": "New England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040059, "LONGITUDE": -75.066331, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 720.0, "Total Transactions": 36.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.23, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.066331, 40.040059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 29.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 720.0, "Total Spend": 1258.0, "Total Transactions": 155.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "LOCATION_NAME": "Butcher Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95199, "LONGITUDE": -75.174938, "DATE_RANGE_START": 2021, "Total Visits": 1408.0, "Total Visitors": 981.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 27659.0, "Total Transactions": 337.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.13, "MEDIAN_SPEND_PER_CUSTOMER": 80.37 }, "geometry": { "type": "Point", "coordinates": [ -75.174938, 39.95199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-3bk", "LOCATION_NAME": "Founded Coffee & Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012531, "LONGITUDE": -75.183909, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 36.0, "POI_CBG": 421010207003.0, "MEDIAN_DWELL": 25.0, "Total Spend": 4145.0, "Total Transactions": 134.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.14, "MEDIAN_SPEND_PER_CUSTOMER": 40.73 }, "geometry": { "type": "Point", "coordinates": [ -75.183909, 40.012531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2021, "Total Visits": 802.0, "Total Visitors": 585.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8803.0, "Total Transactions": 494.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.36, "MEDIAN_SPEND_PER_CUSTOMER": 16.58 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8n5", "LOCATION_NAME": "Columbia Sportswear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951969, "LONGITUDE": -75.157009, "DATE_RANGE_START": 2021, "Total Visits": 1690.0, "Total Visitors": 1406.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 4833.0, "Total Transactions": 95.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157009, 39.951969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.916033, "LONGITUDE": -75.188037, "DATE_RANGE_START": 2021, "Total Visits": 3093.0, "Total Visitors": 2279.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 41627.0, "Total Transactions": 384.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.5, "MEDIAN_SPEND_PER_CUSTOMER": 96.85 }, "geometry": { "type": "Point", "coordinates": [ -75.188037, 39.916033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.069743, "LONGITUDE": -75.051689, "DATE_RANGE_START": 2021, "Total Visits": 523.0, "Total Visitors": 403.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 675.0, "Total Transactions": 79.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.16, "MEDIAN_SPEND_PER_CUSTOMER": 10.44 }, "geometry": { "type": "Point", "coordinates": [ -75.051689, 40.069743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "LOCATION_NAME": "Ruckus Gallery", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 277.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 18968.0, "Total Transactions": 542.0, "Total Customers": 332.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 37.22 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-789", "LOCATION_NAME": "The Wine Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948078, "LONGITUDE": -75.224261, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 103.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 69.0, "Total Spend": 620.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.12, "MEDIAN_SPEND_PER_CUSTOMER": 69.77 }, "geometry": { "type": "Point", "coordinates": [ -75.224261, 39.948078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956525, "LONGITUDE": -75.195111, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 64.0, "Total Spend": 10930.0, "Total Transactions": 1356.0, "Total Customers": 840.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.86, "MEDIAN_SPEND_PER_CUSTOMER": 8.34 }, "geometry": { "type": "Point", "coordinates": [ -75.195111, 39.956525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 119.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2863.0, "Total Transactions": 332.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.01, "MEDIAN_SPEND_PER_CUSTOMER": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958195, "LONGITUDE": -75.208247, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 241.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8610.0, "Total Transactions": 1239.0, "Total Customers": 687.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.26, "MEDIAN_SPEND_PER_CUSTOMER": 8.71 }, "geometry": { "type": "Point", "coordinates": [ -75.208247, 39.958195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2021, "Total Visits": 406.0, "Total Visitors": 272.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1574.0, "Total Transactions": 258.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.95, "MEDIAN_SPEND_PER_CUSTOMER": 7.63 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-235@628-pmf-jd9", "LOCATION_NAME": "The Men's Wearhouse", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951253, "LONGITUDE": -75.168383, "DATE_RANGE_START": 2021, "Total Visits": 644.0, "Total Visitors": 446.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 223.0, "Total Spend": 9160.0, "Total Transactions": 48.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 148.0, "MEDIAN_SPEND_PER_CUSTOMER": 148.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168383, 39.951253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-p8f-9pv", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.014668, "LONGITUDE": -75.088538, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 181.0, "Total Spend": 2663.0, "Total Transactions": 165.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.98, "MEDIAN_SPEND_PER_CUSTOMER": 13.22 }, "geometry": { "type": "Point", "coordinates": [ -75.088538, 40.014668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "LOCATION_NAME": "YOLO Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010167024.0, "MEDIAN_DWELL": null, "Total Spend": 1847.0, "Total Transactions": 57.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-wzf", "LOCATION_NAME": "Mayfair Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038525, "LONGITUDE": -75.036899, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1113.0, "Total Transactions": 41.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.75, "MEDIAN_SPEND_PER_CUSTOMER": 39.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036899, 40.038525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-vj9", "LOCATION_NAME": "Fairmount Pet Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.967037, "LONGITUDE": -75.17115, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2137.0, "Total Transactions": 74.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 29.66 }, "geometry": { "type": "Point", "coordinates": [ -75.17115, 39.967037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030538, "LONGITUDE": -75.181434, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 129.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3741.0, "Total Transactions": 210.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 14.17 }, "geometry": { "type": "Point", "coordinates": [ -75.181434, 40.030538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dwf-bhq", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.912436, "LONGITUDE": -75.233807, "DATE_RANGE_START": 2021, "Total Visits": 518.0, "Total Visitors": 310.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 710.0, "Total Transactions": 41.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.233807, 39.912436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-bhq", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.960816, "LONGITUDE": -75.224417, "DATE_RANGE_START": 2021, "Total Visits": 198.0, "Total Visitors": 136.0, "POI_CBG": 421010093003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 349.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.57, "MEDIAN_SPEND_PER_CUSTOMER": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.224417, 39.960816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "LOCATION_NAME": "El Merkury", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5102.0, "Total Transactions": 310.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.04, "MEDIAN_SPEND_PER_CUSTOMER": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2021, "Total Visits": 702.0, "Total Visitors": 537.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 12574.0, "Total Transactions": 1771.0, "Total Customers": 802.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.36, "MEDIAN_SPEND_PER_CUSTOMER": 8.38 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032189, "LONGITUDE": -75.214079, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 131.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 9105.0, "Total Transactions": 377.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.45, "MEDIAN_SPEND_PER_CUSTOMER": 26.34 }, "geometry": { "type": "Point", "coordinates": [ -75.214079, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phy-v9f", "LOCATION_NAME": "The Crab Shack 2", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030196, "LONGITUDE": -75.117947, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 100.0, "POI_CBG": 421010290004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2051.0, "Total Transactions": 57.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.53, "MEDIAN_SPEND_PER_CUSTOMER": 33.53 }, "geometry": { "type": "Point", "coordinates": [ -75.117947, 40.030196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-k4v", "LOCATION_NAME": "Kisso Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954278, "LONGITUDE": -75.146239, "DATE_RANGE_START": 2021, "Total Visits": 1439.0, "Total Visitors": 1167.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 319.0, "Total Spend": 929.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 104.24, "MEDIAN_SPEND_PER_CUSTOMER": 139.05 }, "geometry": { "type": "Point", "coordinates": [ -75.146239, 39.954278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "LOCATION_NAME": "Yakitori Boy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 167.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 64.0, "Total Spend": 46925.0, "Total Transactions": 434.0, "Total Customers": 384.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.69, "MEDIAN_SPEND_PER_CUSTOMER": 74.62 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9973, "LONGITUDE": -75.092737, "DATE_RANGE_START": 2021, "Total Visits": 1103.0, "Total Visitors": 785.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 49353.0, "Total Transactions": 2766.0, "Total Customers": 1857.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.46, "MEDIAN_SPEND_PER_CUSTOMER": 19.61 }, "geometry": { "type": "Point", "coordinates": [ -75.092737, 39.9973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-ygk", "LOCATION_NAME": "Snow Show", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953739, "LONGITUDE": -75.15638, "DATE_RANGE_START": 2021, "Total Visits": 179.0, "Total Visitors": 174.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3110.0, "Total Transactions": 260.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.15638, 39.953739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgd-zs5", "LOCATION_NAME": "The Study at University City", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954404, "LONGITUDE": -75.19003, "DATE_RANGE_START": 2021, "Total Visits": 800.0, "Total Visitors": 523.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 405.0, "Total Spend": 326.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.19003, 39.954404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-n3q", "LOCATION_NAME": "Naya Market St", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953238, "LONGITUDE": -75.167055, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 198.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 63.0, "Total Spend": 541.0, "Total Transactions": 45.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.39, "MEDIAN_SPEND_PER_CUSTOMER": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.953238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pft-ygk", "LOCATION_NAME": "Chubbys Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029131, "LONGITUDE": -75.206304, "DATE_RANGE_START": 2021, "Total Visits": 382.0, "Total Visitors": 353.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 30628.0, "Total Transactions": 721.0, "Total Customers": 508.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.54, "MEDIAN_SPEND_PER_CUSTOMER": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.206304, 40.029131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-phy-6kz", "LOCATION_NAME": "La Casa Del Sandwich", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024809, "LONGITUDE": -75.123343, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 200.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1447.0, "Total Transactions": 86.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.25, "MEDIAN_SPEND_PER_CUSTOMER": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.123343, 40.024809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2021, "Total Visits": 809.0, "Total Visitors": 325.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 991.0, "Total Spend": 21464.0, "Total Transactions": 1706.0, "Total Customers": 1095.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-fvf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033336, "LONGITUDE": -75.176853, "DATE_RANGE_START": 2021, "Total Visits": 217.0, "Total Visitors": 189.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 303.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.79, "MEDIAN_SPEND_PER_CUSTOMER": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.176853, 40.033336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8v-7nq", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088588, "LONGITUDE": -74.965931, "DATE_RANGE_START": 2021, "Total Visits": 749.0, "Total Visitors": 453.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 594.0, "Total Transactions": 41.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.78, "MEDIAN_SPEND_PER_CUSTOMER": 12.78 }, "geometry": { "type": "Point", "coordinates": [ -74.965931, 40.088588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p8n-92k", "LOCATION_NAME": "The Taste of Brazil Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033699, "LONGITUDE": -75.072078, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 131.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1508.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.03, "MEDIAN_SPEND_PER_CUSTOMER": 53.03 }, "geometry": { "type": "Point", "coordinates": [ -75.072078, 40.033699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-qs5", "LOCATION_NAME": "Jet Wine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944107, "LONGITUDE": -75.168005, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 279.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 457.0, "Total Spend": 7382.0, "Total Transactions": 143.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.5, "MEDIAN_SPEND_PER_CUSTOMER": 36.25 }, "geometry": { "type": "Point", "coordinates": [ -75.168005, 39.944107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 100.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 1109.0, "Total Transactions": 67.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.61, "MEDIAN_SPEND_PER_CUSTOMER": 15.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 131.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 282.0, "Total Spend": 5644.0, "Total Transactions": 368.0, "Total Customers": 239.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.12, "MEDIAN_SPEND_PER_CUSTOMER": 11.23 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953617, "LONGITUDE": -75.167012, "DATE_RANGE_START": 2021, "Total Visits": 2229.0, "Total Visitors": 1683.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5695.0, "Total Transactions": 1050.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.1, "MEDIAN_SPEND_PER_CUSTOMER": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.167012, 39.953617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.036515, "LONGITUDE": -75.108096, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 110.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 122.0, "Total Spend": 13462.0, "Total Transactions": 296.0, "Total Customers": 234.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.98, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.108096, 40.036515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.916923, "LONGITUDE": -75.236784, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 112.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10883.0, "Total Transactions": 224.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.23, "MEDIAN_SPEND_PER_CUSTOMER": 31.71 }, "geometry": { "type": "Point", "coordinates": [ -75.236784, 39.916923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.991985, "LONGITUDE": -75.178334, "DATE_RANGE_START": 2021, "Total Visits": 413.0, "Total Visitors": 251.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 632.0, "Total Transactions": 38.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.36, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.178334, 39.991985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-835", "LOCATION_NAME": "Iovine Brothers Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.952988, "LONGITUDE": -75.158802, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 8151.0, "Total Transactions": 611.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.158802, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm6-jn5", "LOCATION_NAME": "Kyoto Japan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921763, "LONGITUDE": -75.14657, "DATE_RANGE_START": 2021, "Total Visits": 189.0, "Total Visitors": 150.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3060.0, "Total Transactions": 186.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.77, "MEDIAN_SPEND_PER_CUSTOMER": 24.13 }, "geometry": { "type": "Point", "coordinates": [ -75.14657, 39.921763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2021, "Total Visits": 420.0, "Total Visitors": 365.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 10012.0, "Total Transactions": 301.0, "Total Customers": 255.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.29, "MEDIAN_SPEND_PER_CUSTOMER": 31.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "255-222@628-pm9-y9z", "LOCATION_NAME": "Milkboy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941731, "LONGITUDE": -75.1493, "DATE_RANGE_START": 2021, "Total Visits": 1165.0, "Total Visitors": 1112.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3026.0, "Total Transactions": 57.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.08, "MEDIAN_SPEND_PER_CUSTOMER": 61.76 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.941731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6hq", "LOCATION_NAME": "Sueno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949738, "LONGITUDE": -75.16012, "DATE_RANGE_START": 2021, "Total Visits": 5516.0, "Total Visitors": 3508.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 45591.0, "Total Transactions": 475.0, "Total Customers": 425.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.28, "MEDIAN_SPEND_PER_CUSTOMER": 83.65 }, "geometry": { "type": "Point", "coordinates": [ -75.16012, 39.949738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "LOCATION_NAME": "Unit Su Vege", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 86.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 8512.0, "Total Transactions": 208.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.96, "MEDIAN_SPEND_PER_CUSTOMER": 34.78 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "LOCATION_NAME": "Medical Tower Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.948045, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2021, "Total Visits": 1527.0, "Total Visitors": 1057.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 86.0, "Total Spend": 1164.0, "Total Transactions": 76.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.65, "MEDIAN_SPEND_PER_CUSTOMER": 9.68 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.948045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.029597, "LONGITUDE": -75.145391, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 232.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 6.0, "Total Spend": 19263.0, "Total Transactions": 807.0, "Total Customers": 451.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.33, "MEDIAN_SPEND_PER_CUSTOMER": 24.04 }, "geometry": { "type": "Point", "coordinates": [ -75.145391, 40.029597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2021, "Total Visits": 542.0, "Total Visitors": 396.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 30145.0, "Total Transactions": 1644.0, "Total Customers": 924.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.55, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-d5f", "LOCATION_NAME": "Allen Tire & Service", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.019598, "LONGITUDE": -75.06328, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 19.0, "POI_CBG": 421010319003.0, "MEDIAN_DWELL": 81.0, "Total Spend": 4433.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 134.99, "MEDIAN_SPEND_PER_CUSTOMER": 134.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06328, 40.019598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.989253, "LONGITUDE": -75.090212, "DATE_RANGE_START": 2021, "Total Visits": 2649.0, "Total Visitors": 1473.0, "POI_CBG": 421010379006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 908.0, "Total Transactions": 41.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 36.48 }, "geometry": { "type": "Point", "coordinates": [ -75.090212, 39.989253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm5-fj9", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.913638, "LONGITUDE": -75.149864, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 406.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2452.0, "Total Transactions": 117.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.74 }, "geometry": { "type": "Point", "coordinates": [ -75.149864, 39.913638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-223@628-pnx-7qz", "LOCATION_NAME": "Dolce & Caffe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962218, "LONGITUDE": -75.141391, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 24.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6704.0, "Total Transactions": 554.0, "Total Customers": 360.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 12.74 }, "geometry": { "type": "Point", "coordinates": [ -75.141391, 39.962218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.084661, "LONGITUDE": -74.961825, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 370.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 28.0, "Total Spend": 5374.0, "Total Transactions": 81.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.33, "MEDIAN_SPEND_PER_CUSTOMER": 43.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961825, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "LOCATION_NAME": "John's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 757.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.46, "MEDIAN_SPEND_PER_CUSTOMER": 21.53 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8j-ct9", "LOCATION_NAME": "New London Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036249, "LONGITUDE": -75.042416, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3644.0, "Total Transactions": 136.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.82, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.042416, 40.036249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-tsq", "LOCATION_NAME": "Charlie's Roast Pork", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931451, "LONGITUDE": -75.149656, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3132.0, "Total Transactions": 143.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.44, "MEDIAN_SPEND_PER_CUSTOMER": 20.83 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 39.931451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-y7q", "LOCATION_NAME": "Brothers Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.007979, "LONGITUDE": -75.150258, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 41.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 168.0, "Total Spend": 1551.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 159.99, "MEDIAN_SPEND_PER_CUSTOMER": 159.99 }, "geometry": { "type": "Point", "coordinates": [ -75.150258, 40.007979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-p8m-v2k", "LOCATION_NAME": "Moon Flower House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029561, "LONGITUDE": -75.058358, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1186.0, "Total Transactions": 76.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.77, "MEDIAN_SPEND_PER_CUSTOMER": 20.68 }, "geometry": { "type": "Point", "coordinates": [ -75.058358, 40.029561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvq-dvz", "LOCATION_NAME": "Third Auto Sales Inc", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.94602, "LONGITUDE": -75.229173, "DATE_RANGE_START": 2021, "Total Visits": 360.0, "Total Visitors": 220.0, "POI_CBG": 421010072002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 943.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.11, "MEDIAN_SPEND_PER_CUSTOMER": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.229173, 39.94602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-85f", "LOCATION_NAME": "The Mattress Factory", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.026733, "LONGITUDE": -75.032183, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 141.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3814.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 313.0, "MEDIAN_SPEND_PER_CUSTOMER": 367.05 }, "geometry": { "type": "Point", "coordinates": [ -75.032183, 40.026733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "LOCATION_NAME": "Secret Garden", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 40.051859, "LONGITUDE": -75.235556, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 48.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3660.0, "Total Transactions": 95.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.22, "MEDIAN_SPEND_PER_CUSTOMER": 37.75 }, "geometry": { "type": "Point", "coordinates": [ -75.235556, 40.051859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p7w-gc5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072472, "LONGITUDE": -75.075745, "DATE_RANGE_START": 2021, "Total Visits": 876.0, "Total Visitors": 573.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 489.0, "Total Transactions": 60.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.23, "MEDIAN_SPEND_PER_CUSTOMER": 5.28 }, "geometry": { "type": "Point", "coordinates": [ -75.075745, 40.072472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm4-mc5", "LOCATION_NAME": "Meat Market El Pueblo", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.935181, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 112.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 792.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.25, "MEDIAN_SPEND_PER_CUSTOMER": 21.25 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.935181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.924926, "LONGITUDE": -75.169063, "DATE_RANGE_START": 2021, "Total Visits": 969.0, "Total Visitors": 623.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 20.0, "Total Spend": 25102.0, "Total Transactions": 1337.0, "Total Customers": 773.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.66, "MEDIAN_SPEND_PER_CUSTOMER": 19.77 }, "geometry": { "type": "Point", "coordinates": [ -75.169063, 39.924926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pm7-nkf", "LOCATION_NAME": "Culture Exchange", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.933425, "LONGITUDE": -75.1808, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 53.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 130.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.98, "MEDIAN_SPEND_PER_CUSTOMER": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.1808, 39.933425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "LOCATION_NAME": "Main Street Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 14241.0, "Total Transactions": 353.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.46, "MEDIAN_SPEND_PER_CUSTOMER": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2021, "Total Visits": 1399.0, "Total Visitors": 945.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7613.0, "Total Transactions": 384.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-3wk", "LOCATION_NAME": "Christian Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.942022, "LONGITUDE": -75.180801, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 62.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2068.0, "Total Transactions": 138.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.2, "MEDIAN_SPEND_PER_CUSTOMER": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.180801, 39.942022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "LOCATION_NAME": "Bar Bombon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 62.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 46958.0, "Total Transactions": 749.0, "Total Customers": 680.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.16, "MEDIAN_SPEND_PER_CUSTOMER": 57.02 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9q-jsq", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.084384, "LONGITUDE": -75.022786, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 208.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 525.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.5, "MEDIAN_SPEND_PER_CUSTOMER": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.022786, 40.084384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgf-33q", "LOCATION_NAME": "Ochatto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954494, "LONGITUDE": -75.195113, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 72.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 6967.0, "Total Transactions": 229.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.01, "MEDIAN_SPEND_PER_CUSTOMER": 25.43 }, "geometry": { "type": "Point", "coordinates": [ -75.195113, 39.954494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-jjv", "LOCATION_NAME": "Hakim's Bookstore", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.95665, "LONGITUDE": -75.225827, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 14.0, "POI_CBG": 421010085006.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4814.0, "Total Transactions": 394.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.97, "MEDIAN_SPEND_PER_CUSTOMER": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225827, 39.95665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.961276, "LONGITUDE": -75.199304, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 153.0, "POI_CBG": 421010091003.0, "MEDIAN_DWELL": 93.0, "Total Spend": 7208.0, "Total Transactions": 107.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.6, "MEDIAN_SPEND_PER_CUSTOMER": 59.4 }, "geometry": { "type": "Point", "coordinates": [ -75.199304, 39.961276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "LOCATION_NAME": "Baltimore Pet Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3084.0, "Total Transactions": 62.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.69, "MEDIAN_SPEND_PER_CUSTOMER": 59.37 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "LOCATION_NAME": "Royal's Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4831.0, "Total Transactions": 162.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.18, "MEDIAN_SPEND_PER_CUSTOMER": 33.49 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 988.0, "Total Transactions": 62.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.11, "MEDIAN_SPEND_PER_CUSTOMER": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2021, "Total Visits": 516.0, "Total Visitors": 375.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 15881.0, "Total Transactions": 737.0, "Total Customers": 444.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 19.84 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmb-gkz", "LOCATION_NAME": "Effie's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945113, "LONGITUDE": -75.160611, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1419.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.0, "MEDIAN_SPEND_PER_CUSTOMER": 78.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160611, 39.945113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.070297, "LONGITUDE": -75.030572, "DATE_RANGE_START": 2021, "Total Visits": 532.0, "Total Visitors": 396.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 25466.0, "Total Transactions": 1337.0, "Total Customers": 778.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.26, "MEDIAN_SPEND_PER_CUSTOMER": 21.09 }, "geometry": { "type": "Point", "coordinates": [ -75.030572, 40.070297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-kfz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991954, "LONGITUDE": -75.178916, "DATE_RANGE_START": 2021, "Total Visits": 365.0, "Total Visitors": 200.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7242.0, "Total Transactions": 301.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.75, "MEDIAN_SPEND_PER_CUSTOMER": 27.14 }, "geometry": { "type": "Point", "coordinates": [ -75.178916, 39.991954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pp4-jd9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.986516, "LONGITUDE": -75.12253, "DATE_RANGE_START": 2021, "Total Visits": 1181.0, "Total Visitors": 838.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 562.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.39 }, "geometry": { "type": "Point", "coordinates": [ -75.12253, 39.986516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2021, "Total Visits": 726.0, "Total Visitors": 673.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 24622.0, "Total Transactions": 1062.0, "Total Customers": 819.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 19.23 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "LOCATION_NAME": "Steak 'Em Up", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 48.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 464.0, "Total Spend": 4367.0, "Total Transactions": 169.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.99, "MEDIAN_SPEND_PER_CUSTOMER": 32.89 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-kfz", "LOCATION_NAME": "Machi Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950008, "LONGITUDE": -75.173818, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 48.0, "POI_CBG": 421010008034.0, "MEDIAN_DWELL": 9.0, "Total Spend": 533.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.63, "MEDIAN_SPEND_PER_CUSTOMER": 29.63 }, "geometry": { "type": "Point", "coordinates": [ -75.173818, 39.950008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946402, "LONGITUDE": -75.180743, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2910.0, "Total Transactions": 301.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180743, 39.946402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phz-ch5", "LOCATION_NAME": "Cafe Liz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034261, "LONGITUDE": -75.129795, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 41.0, "POI_CBG": 421010274013.0, "MEDIAN_DWELL": 31.0, "Total Spend": 4217.0, "Total Transactions": 36.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.0, "MEDIAN_SPEND_PER_CUSTOMER": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129795, 40.034261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-r49", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044228, "LONGITUDE": -75.087251, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 54.0, "Total Spend": 5565.0, "Total Transactions": 239.0, "Total Customers": 189.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.24, "MEDIAN_SPEND_PER_CUSTOMER": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.087251, 40.044228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "LOCATION_NAME": "Liberty Smokes", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.912433, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2021, "Total Visits": 604.0, "Total Visitors": 329.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 68.0, "Total Spend": 2228.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.9, "MEDIAN_SPEND_PER_CUSTOMER": 43.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.912433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vpv", "LOCATION_NAME": "John's Neighborhood Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.037445, "LONGITUDE": -75.168415, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010247003.0, "MEDIAN_DWELL": null, "Total Spend": 430.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.04, "MEDIAN_SPEND_PER_CUSTOMER": 90.04 }, "geometry": { "type": "Point", "coordinates": [ -75.168415, 40.037445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "LOCATION_NAME": "Quails", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 9032.0, "Total Transactions": 64.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.98, "MEDIAN_SPEND_PER_CUSTOMER": 78.98 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmb-xnq", "LOCATION_NAME": "Sakura Mandarin", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955481, "LONGITUDE": -75.157295, "DATE_RANGE_START": 2021, "Total Visits": 4088.0, "Total Visitors": 3143.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 539.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.85, "MEDIAN_SPEND_PER_CUSTOMER": 61.85 }, "geometry": { "type": "Point", "coordinates": [ -75.157295, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-223@628-pm4-n3q", "LOCATION_NAME": "Los Taquitos de Puebla", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93412, "LONGITUDE": -75.158732, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1315.0, "Total Transactions": 60.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.9, "MEDIAN_SPEND_PER_CUSTOMER": 25.16 }, "geometry": { "type": "Point", "coordinates": [ -75.158732, 39.93412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2021, "Total Visits": 1795.0, "Total Visitors": 1733.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7411.0, "Total Transactions": 408.0, "Total Customers": 377.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.1, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 146.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15054.0, "Total Transactions": 365.0, "Total Customers": 291.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 29.42 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.035295, "LONGITUDE": -75.065039, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 239.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 280.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.8, "MEDIAN_SPEND_PER_CUSTOMER": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.065039, 40.035295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029081, "LONGITUDE": -75.125232, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 160.0, "POI_CBG": 421010286001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 33012.0, "Total Transactions": 563.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.17, "MEDIAN_SPEND_PER_CUSTOMER": 37.99 }, "geometry": { "type": "Point", "coordinates": [ -75.125232, 40.029081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95261, "LONGITUDE": -75.174957, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 153.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 58.0, "Total Spend": 458.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.72, "MEDIAN_SPEND_PER_CUSTOMER": 17.33 }, "geometry": { "type": "Point", "coordinates": [ -75.174957, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg2-hdv", "LOCATION_NAME": "Mi Puebla Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059999, "LONGITUDE": -75.19073, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 81.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3428.0, "Total Transactions": 100.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.46, "MEDIAN_SPEND_PER_CUSTOMER": 37.96 }, "geometry": { "type": "Point", "coordinates": [ -75.19073, 40.059999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgh-6p9", "LOCATION_NAME": "New Station Pizza 8", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010722, "LONGITUDE": -75.164603, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010202004.0, "MEDIAN_DWELL": null, "Total Spend": 4384.0, "Total Transactions": 227.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.04, "MEDIAN_SPEND_PER_CUSTOMER": 21.85 }, "geometry": { "type": "Point", "coordinates": [ -75.164603, 40.010722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 241.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13474.0, "Total Transactions": 986.0, "Total Customers": 723.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.92, "MEDIAN_SPEND_PER_CUSTOMER": 14.05 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "LOCATION_NAME": "Sunny Side Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 112.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 585.0, "Total Transactions": 45.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 11.95 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-mx5", "LOCATION_NAME": "Real Food Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952907, "LONGITUDE": -75.169077, "DATE_RANGE_START": 2021, "Total Visits": 4499.0, "Total Visitors": 2914.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 221.0, "Total Spend": 2084.0, "Total Transactions": 129.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.19, "MEDIAN_SPEND_PER_CUSTOMER": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.169077, 39.952907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-p9q-hqz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079591, "LONGITUDE": -75.027394, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 117.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2132.0, "Total Transactions": 134.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.85, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027394, 40.079591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmb-gzf", "LOCATION_NAME": "Cloud Factory Hookah Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946776, "LONGITUDE": -75.161155, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 148.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 857.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.27, "MEDIAN_SPEND_PER_CUSTOMER": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.161155, 39.946776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-skf", "LOCATION_NAME": "Good Dog Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948847, "LONGITUDE": -75.166287, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 98.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 20.0, "Total Spend": 915.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.89, "MEDIAN_SPEND_PER_CUSTOMER": 45.89 }, "geometry": { "type": "Point", "coordinates": [ -75.166287, 39.948847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-w6k", "LOCATION_NAME": "Pizza Roma", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049594, "LONGITUDE": -75.059819, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 110.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1903.0, "Total Transactions": 112.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.31, "MEDIAN_SPEND_PER_CUSTOMER": 15.94 }, "geometry": { "type": "Point", "coordinates": [ -75.059819, 40.049594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010746, "LONGITUDE": -75.175382, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 179.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1613.0, "Total Transactions": 115.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.73, "MEDIAN_SPEND_PER_CUSTOMER": 16.22 }, "geometry": { "type": "Point", "coordinates": [ -75.175382, 40.010746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 224.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3386.0, "Total Transactions": 234.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.02, "MEDIAN_SPEND_PER_CUSTOMER": 12.57 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 272.0, "POI_CBG": 421010317003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 13859.0, "Total Transactions": 1165.0, "Total Customers": 716.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.45, "MEDIAN_SPEND_PER_CUSTOMER": 15.17 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953365, "LONGITUDE": -75.173088, "DATE_RANGE_START": 2021, "Total Visits": 351.0, "Total Visitors": 320.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 15.0, "Total Spend": 6317.0, "Total Transactions": 950.0, "Total Customers": 570.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.35, "MEDIAN_SPEND_PER_CUSTOMER": 6.87 }, "geometry": { "type": "Point", "coordinates": [ -75.173088, 39.953365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pm9-y9z", "LOCATION_NAME": "Gold Heart Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941621, "LONGITUDE": -75.150209, "DATE_RANGE_START": 2021, "Total Visits": 656.0, "Total Visitors": 473.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 35084.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 2750.0, "MEDIAN_SPEND_PER_CUSTOMER": 5500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150209, 39.941621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22d@628-pmf-hkf", "LOCATION_NAME": "Halal Kitch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954179, "LONGITUDE": -75.173698, "DATE_RANGE_START": 2021, "Total Visits": 2866.0, "Total Visitors": 1859.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 294.0, "Total Spend": 198.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173698, 39.954179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021282, "LONGITUDE": -75.14902, "DATE_RANGE_START": 2021, "Total Visits": 675.0, "Total Visitors": 556.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5753.0, "Total Transactions": 396.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.21, "MEDIAN_SPEND_PER_CUSTOMER": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14902, 40.021282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032699, "LONGITUDE": -75.063191, "DATE_RANGE_START": 2021, "Total Visits": 418.0, "Total Visitors": 379.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1625.0, "Total Transactions": 93.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.92, "MEDIAN_SPEND_PER_CUSTOMER": 15.97 }, "geometry": { "type": "Point", "coordinates": [ -75.063191, 40.032699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 217.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 15357.0, "Total Transactions": 1203.0, "Total Customers": 857.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032001, "LONGITUDE": -75.213304, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 84.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6448.0, "Total Transactions": 236.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.24, "MEDIAN_SPEND_PER_CUSTOMER": 26.92 }, "geometry": { "type": "Point", "coordinates": [ -75.213304, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-t7q", "LOCATION_NAME": "Paprica Modern Mediterranean Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949133, "LONGITUDE": -75.154633, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 122.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3492.0, "Total Transactions": 50.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.54, "MEDIAN_SPEND_PER_CUSTOMER": 62.54 }, "geometry": { "type": "Point", "coordinates": [ -75.154633, 39.949133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-3kf", "LOCATION_NAME": "Mirage Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941399, "LONGITUDE": -75.144795, "DATE_RANGE_START": 2021, "Total Visits": 1095.0, "Total Visitors": 912.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 37.0, "Total Spend": 21188.0, "Total Transactions": 212.0, "Total Customers": 181.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 74.74 }, "geometry": { "type": "Point", "coordinates": [ -75.144795, 39.941399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "LOCATION_NAME": "Dragon City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 81.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 400.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.17, "MEDIAN_SPEND_PER_CUSTOMER": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978087, "LONGITUDE": -75.11955, "DATE_RANGE_START": 2021, "Total Visits": 1327.0, "Total Visitors": 690.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14638.0, "Total Transactions": 1878.0, "Total Customers": 940.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 10.06 }, "geometry": { "type": "Point", "coordinates": [ -75.11955, 39.978087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948446, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2021, "Total Visits": 305.0, "Total Visitors": 222.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 33.0, "Total Spend": 5281.0, "Total Transactions": 933.0, "Total Customers": 480.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.21, "MEDIAN_SPEND_PER_CUSTOMER": 6.68 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.948446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-zxq", "LOCATION_NAME": "Federal Donuts South Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94181, "LONGITUDE": -75.152224, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 131.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 15255.0, "Total Transactions": 1031.0, "Total Customers": 924.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.45, "MEDIAN_SPEND_PER_CUSTOMER": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.152224, 39.94181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-h5z", "LOCATION_NAME": "Ground Up Coffee Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926043, "LONGITUDE": -75.168183, "DATE_RANGE_START": 2021, "Total Visits": 924.0, "Total Visitors": 637.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 2298.0, "Total Transactions": 260.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.168183, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "LOCATION_NAME": "Philly Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.010118, "LONGITUDE": -75.081162, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 124.0, "POI_CBG": 421010294003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 28099.0, "Total Transactions": 124.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.11, "MEDIAN_SPEND_PER_CUSTOMER": 47.49 }, "geometry": { "type": "Point", "coordinates": [ -75.081162, 40.010118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962963, "LONGITUDE": -75.174058, "DATE_RANGE_START": 2021, "Total Visits": 3095.0, "Total Visitors": 1835.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 233816.0, "Total Transactions": 6322.0, "Total Customers": 2695.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.08, "MEDIAN_SPEND_PER_CUSTOMER": 42.77 }, "geometry": { "type": "Point", "coordinates": [ -75.174058, 39.962963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25q-222@628-pm9-tn5", "LOCATION_NAME": "Superhots By George", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948564, "LONGITUDE": -75.153931, "DATE_RANGE_START": 2021, "Total Visits": 1950.0, "Total Visitors": 1370.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 97.0, "Total Spend": 536.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.65, "MEDIAN_SPEND_PER_CUSTOMER": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.153931, 39.948564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pp4-ks5", "LOCATION_NAME": "Caring Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.987937, "LONGITUDE": -75.127658, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 210.0, "POI_CBG": 421010161003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 36.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127658, 39.987937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019964, "LONGITUDE": -75.174488, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 165.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5013.0, "Total Transactions": 726.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 7.85 }, "geometry": { "type": "Point", "coordinates": [ -75.174488, 40.019964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm6-gx5", "LOCATION_NAME": "King Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915882, "LONGITUDE": -75.152424, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 218.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.59, "MEDIAN_SPEND_PER_CUSTOMER": 45.59 }, "geometry": { "type": "Point", "coordinates": [ -75.152424, 39.915882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026583, "LONGITUDE": -75.209516, "DATE_RANGE_START": 2021, "Total Visits": 993.0, "Total Visitors": 697.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1392.0, "Total Transactions": 45.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.81, "MEDIAN_SPEND_PER_CUSTOMER": 33.81 }, "geometry": { "type": "Point", "coordinates": [ -75.209516, 40.026583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044956, "LONGITUDE": -75.143877, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8914.0, "Total Transactions": 360.0, "Total Customers": 251.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.57, "MEDIAN_SPEND_PER_CUSTOMER": 25.63 }, "geometry": { "type": "Point", "coordinates": [ -75.143877, 40.044956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@63s-dvw-bhq", "LOCATION_NAME": "Pm Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.961425, "LONGITUDE": -75.224249, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010093003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 385.0, "Total Transactions": 50.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 9.09 }, "geometry": { "type": "Point", "coordinates": [ -75.224249, 39.961425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pg3-789", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067023, "LONGITUDE": -75.178027, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 212.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.85, "MEDIAN_SPEND_PER_CUSTOMER": 35.85 }, "geometry": { "type": "Point", "coordinates": [ -75.178027, 40.067023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-grk", "LOCATION_NAME": "Nick's Charcoal Pit", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923906, "LONGITUDE": -75.167451, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": null, "Total Spend": 4814.0, "Total Transactions": 119.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.7, "MEDIAN_SPEND_PER_CUSTOMER": 25.95 }, "geometry": { "type": "Point", "coordinates": [ -75.167451, 39.923906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "LOCATION_NAME": "Munchies Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949457, "LONGITUDE": -75.153676, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 160.0, "Total Spend": 4241.0, "Total Transactions": 358.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.07, "MEDIAN_SPEND_PER_CUSTOMER": 11.65 }, "geometry": { "type": "Point", "coordinates": [ -75.153676, 39.949457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "LOCATION_NAME": "Pho Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 107.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 7371.0, "Total Transactions": 189.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.45, "MEDIAN_SPEND_PER_CUSTOMER": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904365, "LONGITUDE": -75.169382, "DATE_RANGE_START": 2021, "Total Visits": 3062.0, "Total Visitors": 2647.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 69.0, "Total Spend": 4720.0, "Total Transactions": 274.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.169382, 39.904365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7z-7kf", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062355, "LONGITUDE": -75.08469, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 205.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 68.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.18, "MEDIAN_SPEND_PER_CUSTOMER": 8.18 }, "geometry": { "type": "Point", "coordinates": [ -75.08469, 40.062355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvw-hwk", "LOCATION_NAME": "Great Taste Chinese Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953652, "LONGITUDE": -75.219329, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 43.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 511.0, "Total Spend": 200.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.99, "MEDIAN_SPEND_PER_CUSTOMER": 41.99 }, "geometry": { "type": "Point", "coordinates": [ -75.219329, 39.953652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "LOCATION_NAME": "Wooden Shoe Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.942084, "LONGITUDE": -75.154166, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5688.0, "Total Transactions": 160.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.11, "MEDIAN_SPEND_PER_CUSTOMER": 31.27 }, "geometry": { "type": "Point", "coordinates": [ -75.154166, 39.942084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "LOCATION_NAME": "Honey Bee Gourmet Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945912, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 126.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 41.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 39.945912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "LOCATION_NAME": "Broad Street Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 48.0, "POI_CBG": 421010023001.0, "MEDIAN_DWELL": 241.0, "Total Spend": 6604.0, "Total Transactions": 210.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.63, "MEDIAN_SPEND_PER_CUSTOMER": 33.42 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phd-h89", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002639, "LONGITUDE": -75.222769, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 208.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6597.0, "Total Transactions": 358.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.222769, 40.002639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgj-2ff", "LOCATION_NAME": "Pita & Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979339, "LONGITUDE": -75.155043, "DATE_RANGE_START": 2021, "Total Visits": 1148.0, "Total Visitors": 819.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 64.0, "Total Spend": 406.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.0, "MEDIAN_SPEND_PER_CUSTOMER": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155043, 39.979339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "LOCATION_NAME": "Crash Bang Boom", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2021, "Total Visits": 1165.0, "Total Visitors": 1112.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1242.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 71.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-gkz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043254, "LONGITUDE": -75.158799, "DATE_RANGE_START": 2021, "Total Visits": 387.0, "Total Visitors": 255.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 13220.0, "Total Transactions": 874.0, "Total Customers": 432.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.07 }, "geometry": { "type": "Point", "coordinates": [ -75.158799, 40.043254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23h@628-pmf-sqz", "LOCATION_NAME": "LUSH", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949954, "LONGITUDE": -75.167065, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 246.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 21500.0, "Total Transactions": 604.0, "Total Customers": 592.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.45, "MEDIAN_SPEND_PER_CUSTOMER": 26.67 }, "geometry": { "type": "Point", "coordinates": [ -75.167065, 39.949954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tqf", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.926373, "LONGITUDE": -75.141555, "DATE_RANGE_START": 2021, "Total Visits": 8112.0, "Total Visitors": 5668.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 441960.0, "Total Transactions": 7103.0, "Total Customers": 5227.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.17, "MEDIAN_SPEND_PER_CUSTOMER": 50.36 }, "geometry": { "type": "Point", "coordinates": [ -75.141555, 39.926373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2021, "Total Visits": 1981.0, "Total Visitors": 1415.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 290444.0, "Total Transactions": 8391.0, "Total Customers": 4907.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.29, "MEDIAN_SPEND_PER_CUSTOMER": 38.31 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-j7q", "LOCATION_NAME": "Smokin Stogies N Stuff", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.951529, "LONGITUDE": -75.170525, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 203.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 18639.0, "Total Transactions": 597.0, "Total Customers": 411.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.3, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170525, 39.951529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 33.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9701.0, "Total Transactions": 422.0, "Total Customers": 348.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.95, "MEDIAN_SPEND_PER_CUSTOMER": 20.99 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg9-vzz", "LOCATION_NAME": "Fairmount Bicycles", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.967501, "LONGITUDE": -75.170829, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 36.0, "POI_CBG": 421010135002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10149.0, "Total Transactions": 93.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170829, 39.967501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-jd9", "LOCATION_NAME": "The Body Shop", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952033, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 72.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1799.0, "Total Transactions": 69.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2021, "Total Visits": 1060.0, "Total Visitors": 823.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 132411.0, "Total Transactions": 6516.0, "Total Customers": 3437.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-835", "LOCATION_NAME": "Molly Malloy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953325, "LONGITUDE": -75.158702, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 1061.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.29, "MEDIAN_SPEND_PER_CUSTOMER": 16.29 }, "geometry": { "type": "Point", "coordinates": [ -75.158702, 39.953325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 103.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 37.0, "Total Spend": 421.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.19, "MEDIAN_SPEND_PER_CUSTOMER": 88.19 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 217.0, "POI_CBG": 421010200001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7958.0, "Total Transactions": 823.0, "Total Customers": 592.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.84, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "LOCATION_NAME": "Dancewear On Broad LLC", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 94.0, "Total Spend": 1126.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.72, "MEDIAN_SPEND_PER_CUSTOMER": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pmb-fpv", "LOCATION_NAME": "Shaking Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946982, "LONGITUDE": -75.157365, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": null, "Total Spend": 4426.0, "Total Transactions": 95.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 49.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157365, 39.946982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "LOCATION_NAME": "Carter's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075968, "LONGITUDE": -75.031512, "DATE_RANGE_START": 2021, "Total Visits": 387.0, "Total Visitors": 363.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 3297.0, "Total Transactions": 79.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.48, "MEDIAN_SPEND_PER_CUSTOMER": 39.89 }, "geometry": { "type": "Point", "coordinates": [ -75.031512, 40.075968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pm9-wtv", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951286, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 16071.0, "Total Transactions": 449.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.49, "MEDIAN_SPEND_PER_CUSTOMER": 30.37 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.951286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-zmk", "LOCATION_NAME": "Paul's Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.037166, "LONGITUDE": -75.130496, "DATE_RANGE_START": 2021, "Total Visits": 1115.0, "Total Visitors": 523.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 314.0, "Total Spend": 704.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 40.037166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-7yv", "LOCATION_NAME": "Bee Natural", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953663, "LONGITUDE": -75.158929, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 1122.0, "Total Transactions": 57.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.19, "MEDIAN_SPEND_PER_CUSTOMER": 15.69 }, "geometry": { "type": "Point", "coordinates": [ -75.158929, 39.953663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-649", "LOCATION_NAME": "Quaker Valley Foods", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.094265, "LONGITUDE": -75.010029, "DATE_RANGE_START": 2021, "Total Visits": 289.0, "Total Visitors": 74.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 397.0, "Total Spend": 176113.0, "Total Transactions": 57.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 3190.84, "MEDIAN_SPEND_PER_CUSTOMER": 9046.53 }, "geometry": { "type": "Point", "coordinates": [ -75.010029, 40.094265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-td9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902269, "LONGITUDE": -75.241997, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2839.0, "Total Transactions": 220.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.16, "MEDIAN_SPEND_PER_CUSTOMER": 14.02 }, "geometry": { "type": "Point", "coordinates": [ -75.241997, 39.902269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm3-syv", "LOCATION_NAME": "Bing Bing Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928965, "LONGITUDE": -75.164747, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 69.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 4467.0, "Total Transactions": 69.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.85, "MEDIAN_SPEND_PER_CUSTOMER": 53.71 }, "geometry": { "type": "Point", "coordinates": [ -75.164747, 39.928965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "LOCATION_NAME": "RIM Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 60.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3310.0, "Total Transactions": 186.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pp5-kpv", "LOCATION_NAME": "Port Richmond Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.985432, "LONGITUDE": -75.107476, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 81.0, "POI_CBG": 421010180023.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1829.0, "Total Transactions": 134.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.3, "MEDIAN_SPEND_PER_CUSTOMER": 19.77 }, "geometry": { "type": "Point", "coordinates": [ -75.107476, 39.985432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "LOCATION_NAME": "New Pizza Villa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 10.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 631.0, "Total Spend": 1293.0, "Total Transactions": 55.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.82, "MEDIAN_SPEND_PER_CUSTOMER": 21.82 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgm-68v", "LOCATION_NAME": "Foghorn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009232, "LONGITUDE": -75.194181, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1690.0, "Total Transactions": 74.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.194181, 40.009232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-cbk", "LOCATION_NAME": "Torres", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01446, "LONGITUDE": -75.065885, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 19.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 955.0, "Total Transactions": 36.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.41, "MEDIAN_SPEND_PER_CUSTOMER": 30.54 }, "geometry": { "type": "Point", "coordinates": [ -75.065885, 40.01446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phj-rrk", "LOCATION_NAME": "Sunny Side Breakfast & Lunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071002, "LONGITUDE": -75.157739, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 24.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 5.0, "Total Spend": 230.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.26, "MEDIAN_SPEND_PER_CUSTOMER": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.157739, 40.071002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmd-snq", "LOCATION_NAME": "Pure Design", "TOP_CATEGORY": "Florists", "LATITUDE": 39.946224, "LONGITUDE": -75.178525, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 99.0, "Total Spend": 1159.0, "Total Transactions": 31.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.178525, 39.946224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p74-z75", "LOCATION_NAME": "Seafood Bay Inc", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041659, "LONGITUDE": -75.028001, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 45.0, "POI_CBG": 421010331022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1192.0, "Total Transactions": 41.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.32 }, "geometry": { "type": "Point", "coordinates": [ -75.028001, 40.041659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "LOCATION_NAME": "Stargazy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1098.0, "Total Transactions": 55.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.2, "MEDIAN_SPEND_PER_CUSTOMER": 17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "LOCATION_NAME": "Davis Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 657.0, "Total Spend": 2181.0, "Total Transactions": 72.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.33, "MEDIAN_SPEND_PER_CUSTOMER": 19.22 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hnq", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952468, "LONGITUDE": -75.173535, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": null, "Total Spend": 561.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.73, "MEDIAN_SPEND_PER_CUSTOMER": 11.73 }, "geometry": { "type": "Point", "coordinates": [ -75.173535, 39.952468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pmb-ygk", "LOCATION_NAME": "Oishii Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953252, "LONGITUDE": -75.15618, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 48.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5683.0, "Total Transactions": 332.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.26, "MEDIAN_SPEND_PER_CUSTOMER": 21.13 }, "geometry": { "type": "Point", "coordinates": [ -75.15618, 39.953252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "LOCATION_NAME": "Stanley's Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2021, "Total Visits": 585.0, "Total Visitors": 453.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 85653.0, "Total Transactions": 2126.0, "Total Customers": 1286.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "LOCATION_NAME": "A Lin Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 790.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.5, "MEDIAN_SPEND_PER_CUSTOMER": 34.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "LOCATION_NAME": "New Quality Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 13.0, "Total Spend": 483.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.65, "MEDIAN_SPEND_PER_CUSTOMER": 18.53 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmd-zfz", "LOCATION_NAME": "Small Oven Pastry Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939225, "LONGITUDE": -75.180201, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 79.0, "POI_CBG": 421010020001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 464.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.08, "MEDIAN_SPEND_PER_CUSTOMER": 17.08 }, "geometry": { "type": "Point", "coordinates": [ -75.180201, 39.939225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp4-syv", "LOCATION_NAME": "Memphis Market & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98172, "LONGITUDE": -75.120871, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 57.0, "POI_CBG": 421010160001.0, "MEDIAN_DWELL": 393.0, "Total Spend": 7853.0, "Total Transactions": 637.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.8, "MEDIAN_SPEND_PER_CUSTOMER": 17.83 }, "geometry": { "type": "Point", "coordinates": [ -75.120871, 39.98172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "LOCATION_NAME": "Reggae Reggae Vibes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 17.0, "POI_CBG": 421010144003.0, "MEDIAN_DWELL": 383.0, "Total Spend": 3206.0, "Total Transactions": 143.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.14, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-yn5", "LOCATION_NAME": "Encore", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973824, "LONGITUDE": -75.204593, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010110003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1339.0, "Total Transactions": 36.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204593, 39.973824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pnz-yvz", "LOCATION_NAME": "Gaul & Co Malthouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98263, "LONGITUDE": -75.107515, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010180023.0, "MEDIAN_DWELL": 193.0, "Total Spend": 300.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.75, "MEDIAN_SPEND_PER_CUSTOMER": 62.75 }, "geometry": { "type": "Point", "coordinates": [ -75.107515, 39.98263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pm3-vpv", "LOCATION_NAME": "Flannel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927129, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 45.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 106.0, "Total Spend": 3967.0, "Total Transactions": 76.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.99, "MEDIAN_SPEND_PER_CUSTOMER": 46.03 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.927129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033268, "LONGITUDE": -75.084729, "DATE_RANGE_START": 2021, "Total Visits": 437.0, "Total Visitors": 332.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1283.0, "Total Transactions": 95.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.17, "MEDIAN_SPEND_PER_CUSTOMER": 9.76 }, "geometry": { "type": "Point", "coordinates": [ -75.084729, 40.033268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "LOCATION_NAME": "Blick Art Materials", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 105.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 297.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.58, "MEDIAN_SPEND_PER_CUSTOMER": 22.24 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-7yv", "LOCATION_NAME": "7 Brothers Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.027871, "LONGITUDE": -75.125835, "DATE_RANGE_START": 2021, "Total Visits": 699.0, "Total Visitors": 492.0, "POI_CBG": 421010286001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1849.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.15, "MEDIAN_SPEND_PER_CUSTOMER": 13.38 }, "geometry": { "type": "Point", "coordinates": [ -75.125835, 40.027871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgb-47q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962439, "LONGITUDE": -75.1634, "DATE_RANGE_START": 2021, "Total Visits": 1255.0, "Total Visitors": 578.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 295.0, "Total Spend": 9798.0, "Total Transactions": 730.0, "Total Customers": 616.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.21, "MEDIAN_SPEND_PER_CUSTOMER": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.1634, 39.962439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5s5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950566, "LONGITUDE": -75.160281, "DATE_RANGE_START": 2021, "Total Visits": 1060.0, "Total Visitors": 914.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2081.0, "Total Transactions": 224.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.31, "MEDIAN_SPEND_PER_CUSTOMER": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.160281, 39.950566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22n@63s-dw9-7nq", "LOCATION_NAME": "Sunglass Hut", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.873547, "LONGITUDE": -75.247282, "DATE_RANGE_START": 2021, "Total Visits": 5506.0, "Total Visitors": 5203.0, "POI_CBG": 420459800001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 4896.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 211.44, "MEDIAN_SPEND_PER_CUSTOMER": 211.44 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.873547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087098, "LONGITUDE": -74.962333, "DATE_RANGE_START": 2021, "Total Visits": 492.0, "Total Visitors": 463.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2161.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.5, "MEDIAN_SPEND_PER_CUSTOMER": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962333, 40.087098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.912527, "LONGITUDE": -75.154627, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 210.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5548.0, "Total Transactions": 129.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.18, "MEDIAN_SPEND_PER_CUSTOMER": 34.71 }, "geometry": { "type": "Point", "coordinates": [ -75.154627, 39.912527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-sbk", "LOCATION_NAME": "Faulkner Hyundai", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.102704, "LONGITUDE": -75.006021, "DATE_RANGE_START": 2021, "Total Visits": 2067.0, "Total Visitors": 1520.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 29447.0, "Total Transactions": 110.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.06, "MEDIAN_SPEND_PER_CUSTOMER": 93.39 }, "geometry": { "type": "Point", "coordinates": [ -75.006021, 40.102704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "LOCATION_NAME": "Cambria Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2021, "Total Visits": 7224.0, "Total Visitors": 5227.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 41.0, "Total Spend": 8122.0, "Total Transactions": 43.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 200.12, "MEDIAN_SPEND_PER_CUSTOMER": 203.44 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "LOCATION_NAME": "Alexa Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 31.0, "POI_CBG": 421010308003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1815.0, "Total Transactions": 64.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.48 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-7t9", "LOCATION_NAME": "Flowers Etcetera By Denise", "TOP_CATEGORY": "Florists", "LATITUDE": 39.961729, "LONGITUDE": -75.140942, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 31.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 867.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140942, 39.961729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm9-y9z", "LOCATION_NAME": "InksterInc", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941856, "LONGITUDE": -75.149296, "DATE_RANGE_START": 2021, "Total Visits": 1165.0, "Total Visitors": 1112.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2892.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 605.81, "MEDIAN_SPEND_PER_CUSTOMER": 605.81 }, "geometry": { "type": "Point", "coordinates": [ -75.149296, 39.941856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-z75", "LOCATION_NAME": "Johnstone Supply", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.960021, "LONGITUDE": -75.149706, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 98.0, "POI_CBG": 421010376001.0, "MEDIAN_DWELL": 117.0, "Total Spend": 1129.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.13, "MEDIAN_SPEND_PER_CUSTOMER": 236.44 }, "geometry": { "type": "Point", "coordinates": [ -75.149706, 39.960021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2021, "Total Visits": 549.0, "Total Visitors": 389.0, "POI_CBG": 421010311013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 414.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.46, "MEDIAN_SPEND_PER_CUSTOMER": 25.46 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-vxq", "LOCATION_NAME": "Jersey Mike's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955112, "LONGITUDE": -75.18233, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 33.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9568.0, "Total Transactions": 754.0, "Total Customers": 640.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.15, "MEDIAN_SPEND_PER_CUSTOMER": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.18233, 39.955112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-p7q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.01382, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 41.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 217.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.52, "MEDIAN_SPEND_PER_CUSTOMER": 6.52 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 40.01382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-pvz", "LOCATION_NAME": "Red Lion Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.105639, "LONGITUDE": -75.033118, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 41.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 70.0, "Total Spend": 636.0, "Total Transactions": 24.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.88, "MEDIAN_SPEND_PER_CUSTOMER": 45.76 }, "geometry": { "type": "Point", "coordinates": [ -75.033118, 40.105639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033486, "LONGITUDE": -75.130876, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 141.0, "POI_CBG": 421010274013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10604.0, "Total Transactions": 1243.0, "Total Customers": 532.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.69, "MEDIAN_SPEND_PER_CUSTOMER": 10.65 }, "geometry": { "type": "Point", "coordinates": [ -75.130876, 40.033486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032682, "LONGITUDE": -75.084504, "DATE_RANGE_START": 2021, "Total Visits": 298.0, "Total Visitors": 191.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2248.0, "Total Transactions": 394.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.57, "MEDIAN_SPEND_PER_CUSTOMER": 8.31 }, "geometry": { "type": "Point", "coordinates": [ -75.084504, 40.032682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "LOCATION_NAME": "Tiffany & Co.", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950223, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2021, "Total Visits": 260.0, "Total Visitors": 217.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 32338.0, "Total Transactions": 53.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 118.8, "MEDIAN_SPEND_PER_CUSTOMER": 118.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.950223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "LOCATION_NAME": "Fleishman Fabrics & Supplies", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.93943, "LONGITUDE": -75.149516, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 191.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 5782.0, "Total Transactions": 167.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149516, 39.93943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.101947, "LONGITUDE": -75.011258, "DATE_RANGE_START": 2021, "Total Visits": 5053.0, "Total Visitors": 3363.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 224764.0, "Total Transactions": 4449.0, "Total Customers": 2733.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.16, "MEDIAN_SPEND_PER_CUSTOMER": 51.21 }, "geometry": { "type": "Point", "coordinates": [ -75.011258, 40.101947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-835", "LOCATION_NAME": "3J's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963054, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": null, "Total Spend": 178.0, "Total Transactions": 24.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.07, "MEDIAN_SPEND_PER_CUSTOMER": 14.82 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-fcq", "LOCATION_NAME": "Yeager Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.97236, "LONGITUDE": -75.226332, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 12.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 351.0, "Total Spend": 57670.0, "Total Transactions": 1695.0, "Total Customers": 1117.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 23.67 }, "geometry": { "type": "Point", "coordinates": [ -75.226332, 39.97236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm4-8sq", "LOCATION_NAME": "Olivares Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.934795, "LONGITUDE": -75.173301, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010030023.0, "MEDIAN_DWELL": 14.0, "Total Spend": 164.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.9, "MEDIAN_SPEND_PER_CUSTOMER": 18.15 }, "geometry": { "type": "Point", "coordinates": [ -75.173301, 39.934795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "LOCATION_NAME": "John's Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": null, "Total Spend": 645.0, "Total Transactions": 53.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.7, "MEDIAN_SPEND_PER_CUSTOMER": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "LOCATION_NAME": "Comfort & Floyd", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4356.0, "Total Transactions": 122.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.75, "MEDIAN_SPEND_PER_CUSTOMER": 36.29 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "LOCATION_NAME": "Olive Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2021, "Total Visits": 916.0, "Total Visitors": 800.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 61.0, "Total Spend": 36629.0, "Total Transactions": 640.0, "Total Customers": 561.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.36, "MEDIAN_SPEND_PER_CUSTOMER": 59.13 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "LOCATION_NAME": "Luke's Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 131.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 7262.0, "Total Transactions": 174.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.78, "MEDIAN_SPEND_PER_CUSTOMER": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "LOCATION_NAME": "Vintage Wine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 141.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 6129.0, "Total Transactions": 112.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.88, "MEDIAN_SPEND_PER_CUSTOMER": 52.75 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "LOCATION_NAME": "Trio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968734, "LONGITUDE": -75.180754, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 95.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4816.0, "Total Transactions": 234.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.7, "MEDIAN_SPEND_PER_CUSTOMER": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.180754, 39.968734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949164, "LONGITUDE": -75.163217, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3271.0, "Total Transactions": 561.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.2, "MEDIAN_SPEND_PER_CUSTOMER": 7.33 }, "geometry": { "type": "Point", "coordinates": [ -75.163217, 39.949164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954762, "LONGITUDE": -75.202149, "DATE_RANGE_START": 2021, "Total Visits": 224.0, "Total Visitors": 169.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 12.0, "Total Spend": 11654.0, "Total Transactions": 1800.0, "Total Customers": 776.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.12, "MEDIAN_SPEND_PER_CUSTOMER": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.202149, 39.954762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952606, "LONGITUDE": -75.16665, "DATE_RANGE_START": 2021, "Total Visits": 1747.0, "Total Visitors": 1456.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6046.0, "Total Transactions": 871.0, "Total Customers": 601.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.67, "MEDIAN_SPEND_PER_CUSTOMER": 6.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16665, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9mk", "LOCATION_NAME": "Island Ave Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904882, "LONGITUDE": -75.238376, "DATE_RANGE_START": 2021, "Total Visits": 673.0, "Total Visitors": 463.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 37.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.74, "MEDIAN_SPEND_PER_CUSTOMER": 7.74 }, "geometry": { "type": "Point", "coordinates": [ -75.238376, 39.904882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pj6-k4v", "LOCATION_NAME": "Pelicana Chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04453, "LONGITUDE": -75.117658, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1978.0, "Total Transactions": 64.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 28.49 }, "geometry": { "type": "Point", "coordinates": [ -75.117658, 40.04453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-tjv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949514, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 110.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2911.0, "Total Transactions": 530.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.65, "MEDIAN_SPEND_PER_CUSTOMER": 6.26 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-d35", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922445, "LONGITUDE": -75.169848, "DATE_RANGE_START": 2021, "Total Visits": 179.0, "Total Visitors": 165.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8524.0, "Total Transactions": 1014.0, "Total Customers": 642.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.38, "MEDIAN_SPEND_PER_CUSTOMER": 9.57 }, "geometry": { "type": "Point", "coordinates": [ -75.169848, 39.922445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-6tv", "LOCATION_NAME": "Smoothie King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951888, "LONGITUDE": -75.167584, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 99.0, "Total Spend": 6546.0, "Total Transactions": 783.0, "Total Customers": 501.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.9, "MEDIAN_SPEND_PER_CUSTOMER": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.167584, 39.951888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvr-9mk", "LOCATION_NAME": "60th Street Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93354, "LONGITUDE": -75.231211, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010065001.0, "MEDIAN_DWELL": null, "Total Spend": 8248.0, "Total Transactions": 442.0, "Total Customers": 320.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 21.99 }, "geometry": { "type": "Point", "coordinates": [ -75.231211, 39.93354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p8m-54v", "LOCATION_NAME": "Johnnie's Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022812, "LONGITUDE": -75.063613, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010319004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1089.0, "Total Transactions": 29.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.89, "MEDIAN_SPEND_PER_CUSTOMER": 50.9 }, "geometry": { "type": "Point", "coordinates": [ -75.063613, 40.022812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 200.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 12762.0, "Total Transactions": 196.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.89, "MEDIAN_SPEND_PER_CUSTOMER": 57.19 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "LOCATION_NAME": "Penrose Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2021, "Total Visits": 1100.0, "Total Visitors": 936.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 804.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 303.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8352.0, "Total Transactions": 556.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 16.06 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "LOCATION_NAME": "Milkcrate Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 172.0, "POI_CBG": 421010143002.0, "MEDIAN_DWELL": 191.0, "Total Spend": 16027.0, "Total Transactions": 1153.0, "Total Customers": 506.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.63 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "LOCATION_NAME": "Best In Town Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 50.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1661.0, "Total Transactions": 74.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.2, "MEDIAN_SPEND_PER_CUSTOMER": 28.83 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-qj9", "LOCATION_NAME": "Evergreen Young's Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.065852, "LONGITUDE": -75.083408, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 57.0, "POI_CBG": 421010339001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12222.0, "Total Transactions": 72.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 130.0, "MEDIAN_SPEND_PER_CUSTOMER": 162.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083408, 40.065852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pjf-tjv", "LOCATION_NAME": "Chestnut Hill Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.067974, "LONGITUDE": -75.196803, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010257002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 93.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196803, 40.067974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "LOCATION_NAME": "Philly Tacos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": null, "Total Spend": 8055.0, "Total Transactions": 346.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "LOCATION_NAME": "Romeo Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924602, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 153.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1147.0, "Total Transactions": 62.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.65, "MEDIAN_SPEND_PER_CUSTOMER": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.924602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "LOCATION_NAME": "Paisas Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2021, "Total Visits": 2038.0, "Total Visitors": 1363.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 255.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.69, "MEDIAN_SPEND_PER_CUSTOMER": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-zvf", "LOCATION_NAME": "Emmy Squared Pizza Queen Village", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941047, "LONGITUDE": -75.151101, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 317.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 3401.0, "Total Transactions": 55.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.96, "MEDIAN_SPEND_PER_CUSTOMER": 59.84 }, "geometry": { "type": "Point", "coordinates": [ -75.151101, 39.941047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "LOCATION_NAME": "Philly's Famous Italian Ices", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 31.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 780.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfx-tsq", "LOCATION_NAME": "Riverside Cycles", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 40.041642, "LONGITUDE": -75.237869, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 36.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 519.0, "Total Spend": 1666.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237869, 40.041642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-tn5", "LOCATION_NAME": "Koto Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948858, "LONGITUDE": -75.153256, "DATE_RANGE_START": 2021, "Total Visits": 778.0, "Total Visitors": 663.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 801.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.153256, 39.948858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfw-g6k", "LOCATION_NAME": "Apollo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012812, "LONGITUDE": -75.190541, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010207003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1595.0, "Total Transactions": 64.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.05, "MEDIAN_SPEND_PER_CUSTOMER": 30.12 }, "geometry": { "type": "Point", "coordinates": [ -75.190541, 40.012812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "LOCATION_NAME": "Real Food Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949409, "LONGITUDE": -75.167315, "DATE_RANGE_START": 2021, "Total Visits": 415.0, "Total Visitors": 286.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 98.0, "Total Spend": 877.0, "Total Transactions": 69.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.87, "MEDIAN_SPEND_PER_CUSTOMER": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.167315, 39.949409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "LOCATION_NAME": "Cry Baby Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2021, "Total Visits": 613.0, "Total Visitors": 456.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 5600.0, "Total Transactions": 62.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.66, "MEDIAN_SPEND_PER_CUSTOMER": 84.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 95.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3913.0, "Total Transactions": 205.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.54, "MEDIAN_SPEND_PER_CUSTOMER": 16.44 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pm8-pgk", "LOCATION_NAME": "Kasumi Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.910232, "LONGITUDE": -75.186866, "DATE_RANGE_START": 2021, "Total Visits": 1019.0, "Total Visitors": 625.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3347.0, "Total Transactions": 110.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.97, "MEDIAN_SPEND_PER_CUSTOMER": 31.06 }, "geometry": { "type": "Point", "coordinates": [ -75.186866, 39.910232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7w-59f", "LOCATION_NAME": "Espresso Cafe & Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058604, "LONGITUDE": -75.059473, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 48.0, "POI_CBG": 421010336002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 368.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059473, 40.058604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-7nq", "LOCATION_NAME": "Yards brewing", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.876036, "LONGITUDE": -75.242976, "DATE_RANGE_START": 2021, "Total Visits": 232048.0, "Total Visitors": 147833.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 57.0, "Total Spend": 1747.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.8, "MEDIAN_SPEND_PER_CUSTOMER": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242976, 39.876036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7nq", "LOCATION_NAME": "Woody's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948953, "LONGITUDE": -75.162366, "DATE_RANGE_START": 2021, "Total Visits": 1668.0, "Total Visitors": 1167.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 59.0, "Total Spend": 145967.0, "Total Transactions": 5057.0, "Total Customers": 2747.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.25, "MEDIAN_SPEND_PER_CUSTOMER": 38.13 }, "geometry": { "type": "Point", "coordinates": [ -75.162366, 39.948953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmf-389", "LOCATION_NAME": "Ferguson", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.939235, "LONGITUDE": -75.174446, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 117.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4981.0, "Total Transactions": 29.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.97, "MEDIAN_SPEND_PER_CUSTOMER": 40.96 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.939235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgj-cqz", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977801, "LONGITUDE": -75.158494, "DATE_RANGE_START": 2021, "Total Visits": 2532.0, "Total Visitors": 1845.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 57.0, "Total Spend": 1347.0, "Total Transactions": 95.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.49, "MEDIAN_SPEND_PER_CUSTOMER": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.158494, 39.977801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.027117, "LONGITUDE": -75.0631, "DATE_RANGE_START": 2021, "Total Visits": 589.0, "Total Visitors": 468.0, "POI_CBG": 421010319001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 35251.0, "Total Transactions": 511.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.34, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.0631, 40.027117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@63s-dw4-rzf", "LOCATION_NAME": "Gachi Sushi and Noodle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895158, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 243.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 16.42 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.895158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-s89", "LOCATION_NAME": "Tequilas Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948519, "LONGITUDE": -75.168054, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 153.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3134.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.37, "MEDIAN_SPEND_PER_CUSTOMER": 140.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168054, 39.948519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992304, "LONGITUDE": -75.099808, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 115.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3266.0, "Total Transactions": 181.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.9, "MEDIAN_SPEND_PER_CUSTOMER": 22.76 }, "geometry": { "type": "Point", "coordinates": [ -75.099808, 39.992304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089385, "LONGITUDE": -74.964383, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 260.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9867.0, "Total Transactions": 1110.0, "Total Customers": 473.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 8.02 }, "geometry": { "type": "Point", "coordinates": [ -74.964383, 40.089385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945401, "LONGITUDE": -75.178709, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 107.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 6.0, "Total Spend": 12351.0, "Total Transactions": 885.0, "Total Customers": 597.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.73, "MEDIAN_SPEND_PER_CUSTOMER": 7.67 }, "geometry": { "type": "Point", "coordinates": [ -75.178709, 39.945401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mzf", "LOCATION_NAME": "Passero's Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954206, "LONGITUDE": -75.167446, "DATE_RANGE_START": 2021, "Total Visits": 3017.0, "Total Visitors": 2002.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 160.0, "Total Spend": 256.0, "Total Transactions": 60.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.85, "MEDIAN_SPEND_PER_CUSTOMER": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167446, 39.954206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996676, "LONGITUDE": -75.089544, "DATE_RANGE_START": 2021, "Total Visits": 967.0, "Total Visitors": 730.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 32014.0, "Total Transactions": 649.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 26.19 }, "geometry": { "type": "Point", "coordinates": [ -75.089544, 39.996676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006521, "LONGITUDE": -75.100325, "DATE_RANGE_START": 2021, "Total Visits": 900.0, "Total Visitors": 592.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 875.0, "Total Transactions": 29.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.21, "MEDIAN_SPEND_PER_CUSTOMER": 30.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100325, 40.006521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.067745, "LONGITUDE": -75.198, "DATE_RANGE_START": 2021, "Total Visits": 322.0, "Total Visitors": 270.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 16534.0, "Total Transactions": 768.0, "Total Customers": 554.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.37, "MEDIAN_SPEND_PER_CUSTOMER": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.198, 40.067745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.058164, "LONGITUDE": -75.052414, "DATE_RANGE_START": 2021, "Total Visits": 1029.0, "Total Visitors": 685.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4772.0, "Total Transactions": 169.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 49.83 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.058164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043781, "LONGITUDE": -75.017638, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 205.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 627.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.18 }, "geometry": { "type": "Point", "coordinates": [ -75.017638, 40.043781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p9q-yn5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.088065, "LONGITUDE": -75.037683, "DATE_RANGE_START": 2021, "Total Visits": 549.0, "Total Visitors": 468.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 114.0, "Total Spend": 765.0, "Total Transactions": 45.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.037683, 40.088065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.930175, "LONGITUDE": -75.144763, "DATE_RANGE_START": 2021, "Total Visits": 1795.0, "Total Visitors": 1516.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 25862.0, "Total Transactions": 697.0, "Total Customers": 597.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.96, "MEDIAN_SPEND_PER_CUSTOMER": 29.54 }, "geometry": { "type": "Point", "coordinates": [ -75.144763, 39.930175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm4-g8v", "LOCATION_NAME": "V Marks the Shop", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.926043, "LONGITUDE": -75.171734, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2727.0, "Total Transactions": 79.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.95, "MEDIAN_SPEND_PER_CUSTOMER": 55.95 }, "geometry": { "type": "Point", "coordinates": [ -75.171734, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065, "LONGITUDE": -74.981932, "DATE_RANGE_START": 2021, "Total Visits": 5592.0, "Total Visitors": 3043.0, "POI_CBG": 421010362033.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1736.0, "Total Transactions": 43.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.42, "MEDIAN_SPEND_PER_CUSTOMER": 32.55 }, "geometry": { "type": "Point", "coordinates": [ -74.981932, 40.065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-p8d-8y9", "LOCATION_NAME": "T & J Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.00933, "LONGITUDE": -75.084903, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 24.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 667.0, "Total Transactions": 86.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 14.55 }, "geometry": { "type": "Point", "coordinates": [ -75.084903, 40.00933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm4-k2k", "LOCATION_NAME": "Cellular 2000 LLC", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.93569, "LONGITUDE": -75.155206, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 184.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.9, "MEDIAN_SPEND_PER_CUSTOMER": 30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155206, 39.93569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "LOCATION_NAME": "Philadelphia Bikesmith", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.962935, "LONGITUDE": -75.169326, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 7.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 272.0, "Total Spend": 11653.0, "Total Transactions": 141.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 50.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169326, 39.962935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "LOCATION_NAME": "Castor Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 24.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 421.0, "Total Spend": 3315.0, "Total Transactions": 162.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.37, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-2hq", "LOCATION_NAME": "O Sole Mio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937827, "LONGITUDE": -75.148269, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": null, "Total Spend": 2246.0, "Total Transactions": 67.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.62, "MEDIAN_SPEND_PER_CUSTOMER": 37.27 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 39.937827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phy-h3q", "LOCATION_NAME": "Latin Fashion", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.022384, "LONGITUDE": -75.133854, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3270.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 167.5, "MEDIAN_SPEND_PER_CUSTOMER": 167.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133854, 40.022384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-ph8-rx5", "LOCATION_NAME": "Royal Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.97851, "LONGITUDE": -75.271319, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 48.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 59.0, "Total Spend": 510.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271319, 39.97851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvx-2kz", "LOCATION_NAME": "Rising Sun", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968785, "LONGITUDE": -75.217282, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010104003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 80948.0, "Total Transactions": 1274.0, "Total Customers": 807.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.91, "MEDIAN_SPEND_PER_CUSTOMER": 26.44 }, "geometry": { "type": "Point", "coordinates": [ -75.217282, 39.968785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8m-x5z", "LOCATION_NAME": "Goody's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027482, "LONGITUDE": -75.061166, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": null, "Total Spend": 1993.0, "Total Transactions": 76.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.2, "MEDIAN_SPEND_PER_CUSTOMER": 25.2 }, "geometry": { "type": "Point", "coordinates": [ -75.061166, 40.027482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg9-bp9", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979916, "LONGITUDE": -75.175802, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010149001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 92.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175802, 39.979916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgf-52k", "LOCATION_NAME": "Chengdu Famous Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959245, "LONGITUDE": -75.194556, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": null, "Total Spend": 96.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.21, "MEDIAN_SPEND_PER_CUSTOMER": 20.21 }, "geometry": { "type": "Point", "coordinates": [ -75.194556, 39.959245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg9-cyv", "LOCATION_NAME": "Mercado Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983185, "LONGITUDE": -75.169254, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 29.0, "POI_CBG": 421010152004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 252.0, "Total Transactions": 26.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169254, 39.983185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8h-hyv", "LOCATION_NAME": "Athenian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025796, "LONGITUDE": -75.044061, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 165.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 21.95 }, "geometry": { "type": "Point", "coordinates": [ -75.044061, 40.025796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnx-9s5", "LOCATION_NAME": "Interstate Drafthouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971824, "LONGITUDE": -75.128675, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 45.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 717.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 150.11, "MEDIAN_SPEND_PER_CUSTOMER": 150.11 }, "geometry": { "type": "Point", "coordinates": [ -75.128675, 39.971824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.104996, "LONGITUDE": -75.007889, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 55.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 321.0, "Total Spend": 57083.0, "Total Transactions": 26.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 95.47, "MEDIAN_SPEND_PER_CUSTOMER": 912.59 }, "geometry": { "type": "Point", "coordinates": [ -75.007889, 40.104996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cdv", "LOCATION_NAME": "Beer Park", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.016575, "LONGITUDE": -75.150196, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 79.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 165.0, "Total Transactions": 17.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 34.47 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 40.016575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-wc5", "LOCATION_NAME": "Renzis Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029921, "LONGITUDE": -75.062595, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 79.0, "POI_CBG": 421010316004.0, "MEDIAN_DWELL": 678.0, "Total Spend": 139.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 9.17 }, "geometry": { "type": "Point", "coordinates": [ -75.062595, 40.029921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22x@628-pmf-n3q", "LOCATION_NAME": "Uptown Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953433, "LONGITUDE": -75.165886, "DATE_RANGE_START": 2021, "Total Visits": 1909.0, "Total Visitors": 1301.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 91.0, "Total Spend": 23767.0, "Total Transactions": 606.0, "Total Customers": 468.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.1, "MEDIAN_SPEND_PER_CUSTOMER": 39.36 }, "geometry": { "type": "Point", "coordinates": [ -75.165886, 39.953433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-vpv", "LOCATION_NAME": "Urban Saloon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967182, "LONGITUDE": -75.172904, "DATE_RANGE_START": 2021, "Total Visits": 690.0, "Total Visitors": 537.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 51.0, "Total Spend": 58109.0, "Total Transactions": 1031.0, "Total Customers": 842.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.61, "MEDIAN_SPEND_PER_CUSTOMER": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172904, 39.967182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm3-vzz", "LOCATION_NAME": "LaScala's Birra", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928592, "LONGITUDE": -75.165123, "DATE_RANGE_START": 2021, "Total Visits": 506.0, "Total Visitors": 408.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15853.0, "Total Transactions": 270.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.52, "MEDIAN_SPEND_PER_CUSTOMER": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165123, 39.928592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 360.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 24145.0, "Total Transactions": 2131.0, "Total Customers": 1508.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.7, "MEDIAN_SPEND_PER_CUSTOMER": 11.82 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj9-zmk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.036925, "LONGITUDE": -75.130756, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 115.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4158.0, "Total Transactions": 272.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.08, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130756, 40.036925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.936469, "LONGITUDE": -75.160327, "DATE_RANGE_START": 2021, "Total Visits": 2153.0, "Total Visitors": 1594.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2085.0, "Total Transactions": 55.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.56, "MEDIAN_SPEND_PER_CUSTOMER": 34.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160327, 39.936469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "LOCATION_NAME": "Little Fish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010018001.0, "MEDIAN_DWELL": null, "Total Spend": 472.0, "Total Transactions": 43.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "LOCATION_NAME": "LKQ", "TOP_CATEGORY": "Miscellaneous Durable Goods Merchant Wholesalers", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2021, "Total Visits": 272.0, "Total Visitors": 117.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 413.0, "Total Spend": 8747.0, "Total Transactions": 38.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 132.3, "MEDIAN_SPEND_PER_CUSTOMER": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-2ff", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.057857, "LONGITUDE": -75.164182, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 129.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 6434.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 200.0, "MEDIAN_SPEND_PER_CUSTOMER": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164182, 40.057857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj2-mp9", "LOCATION_NAME": "The Apple Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.005425, "LONGITUDE": -75.098798, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 152.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.95, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098798, 40.005425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pjf-kvf", "LOCATION_NAME": "Hideaway Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.076825, "LONGITUDE": -75.208128, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2005.0, "Total Transactions": 45.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.208128, 40.076825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-t7q", "LOCATION_NAME": "Vetri Cucina", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946687, "LONGITUDE": -75.163203, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": 121.0, "Total Spend": 32596.0, "Total Transactions": 74.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 469.98, "MEDIAN_SPEND_PER_CUSTOMER": 529.59 }, "geometry": { "type": "Point", "coordinates": [ -75.163203, 39.946687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-k75", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.094473, "LONGITUDE": -75.018339, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1177.0, "Total Transactions": 76.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 16.09 }, "geometry": { "type": "Point", "coordinates": [ -75.018339, 40.094473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-k75", "LOCATION_NAME": "Lendy's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.988027, "LONGITUDE": -75.143801, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010164004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 408.0, "Total Transactions": 67.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.99, "MEDIAN_SPEND_PER_CUSTOMER": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.143801, 39.988027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg2-4qf", "LOCATION_NAME": "Phu Fha Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029908, "LONGITUDE": -75.218798, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010213004.0, "MEDIAN_DWELL": null, "Total Spend": 436.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.92, "MEDIAN_SPEND_PER_CUSTOMER": 27.92 }, "geometry": { "type": "Point", "coordinates": [ -75.218798, 40.029908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-rtv", "LOCATION_NAME": "Takka Grill and Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029529, "LONGITUDE": -75.180791, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3380.0, "Total Transactions": 148.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.17, "MEDIAN_SPEND_PER_CUSTOMER": 25.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180791, 40.029529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.938146, "LONGITUDE": -75.172721, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 110.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15138.0, "Total Transactions": 408.0, "Total Customers": 332.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.172721, 39.938146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgg-p5f", "LOCATION_NAME": "Mimmo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004649, "LONGITUDE": -75.17882, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010171004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2489.0, "Total Transactions": 122.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.39, "MEDIAN_SPEND_PER_CUSTOMER": 27.14 }, "geometry": { "type": "Point", "coordinates": [ -75.17882, 40.004649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wkz", "LOCATION_NAME": "Xenos Candy 'N' Gifts", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948713, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2021, "Total Visits": 3150.0, "Total Visitors": 2341.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 869.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.13, "MEDIAN_SPEND_PER_CUSTOMER": 41.13 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.948713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2021, "Total Visits": 511.0, "Total Visitors": 391.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3968.0, "Total Transactions": 274.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.2, "MEDIAN_SPEND_PER_CUSTOMER": 19.13 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040851, "LONGITUDE": -75.075239, "DATE_RANGE_START": 2021, "Total Visits": 484.0, "Total Visitors": 344.0, "POI_CBG": 421010313004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6474.0, "Total Transactions": 337.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.45, "MEDIAN_SPEND_PER_CUSTOMER": 18.42 }, "geometry": { "type": "Point", "coordinates": [ -75.075239, 40.040851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998177, "LONGITUDE": -75.124544, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 153.0, "POI_CBG": 421010177025.0, "MEDIAN_DWELL": 11.0, "Total Spend": 78.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.7, "MEDIAN_SPEND_PER_CUSTOMER": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.124544, 39.998177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "LOCATION_NAME": "Mac Mart Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951438, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 203.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6232.0, "Total Transactions": 341.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.47, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-p8n-92k", "LOCATION_NAME": "Crab Du Jour Bustleton", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034004, "LONGITUDE": -75.071898, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 234.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 8134.0, "Total Transactions": 141.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.48, "MEDIAN_SPEND_PER_CUSTOMER": 48.03 }, "geometry": { "type": "Point", "coordinates": [ -75.071898, 40.034004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-5vf", "LOCATION_NAME": "Mario Brothers Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048464, "LONGITUDE": -75.061807, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 103.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 104.0, "Total Spend": 170.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.11, "MEDIAN_SPEND_PER_CUSTOMER": 14.11 }, "geometry": { "type": "Point", "coordinates": [ -75.061807, 40.048464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-85f", "LOCATION_NAME": "North Catholic Book Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.984977, "LONGITUDE": -75.106527, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 100.0, "POI_CBG": 421010180021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2492.0, "Total Transactions": 267.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.36, "MEDIAN_SPEND_PER_CUSTOMER": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.106527, 39.984977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pp5-5zz", "LOCATION_NAME": "Izakaya By Yanaga", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977775, "LONGITUDE": -75.131392, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 172.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 81.0, "Total Spend": 48.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131392, 39.977775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992457, "LONGITUDE": -75.097895, "DATE_RANGE_START": 2021, "Total Visits": 413.0, "Total Visitors": 327.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11974.0, "Total Transactions": 814.0, "Total Customers": 578.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.47, "MEDIAN_SPEND_PER_CUSTOMER": 15.29 }, "geometry": { "type": "Point", "coordinates": [ -75.097895, 39.992457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pj4-vcq", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998705, "LONGITUDE": -75.13519, "DATE_RANGE_START": 2021, "Total Visits": 685.0, "Total Visitors": 430.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 14.0, "Total Spend": 64.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.94, "MEDIAN_SPEND_PER_CUSTOMER": 5.94 }, "geometry": { "type": "Point", "coordinates": [ -75.13519, 39.998705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923331, "LONGITUDE": -75.144837, "DATE_RANGE_START": 2021, "Total Visits": 1709.0, "Total Visitors": 1119.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 53.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.19, "MEDIAN_SPEND_PER_CUSTOMER": 3.19 }, "geometry": { "type": "Point", "coordinates": [ -75.144837, 39.923331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.015127, "LONGITUDE": -75.178214, "DATE_RANGE_START": 2021, "Total Visits": 480.0, "Total Visitors": 334.0, "POI_CBG": 421010206001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4140.0, "Total Transactions": 675.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.94, "MEDIAN_SPEND_PER_CUSTOMER": 6.94 }, "geometry": { "type": "Point", "coordinates": [ -75.178214, 40.015127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-whq", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.051934, "LONGITUDE": -75.058717, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 401.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4859.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 151.11, "MEDIAN_SPEND_PER_CUSTOMER": 240.97 }, "geometry": { "type": "Point", "coordinates": [ -75.058717, 40.051934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "LOCATION_NAME": "Sprouts Farmers Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2021, "Total Visits": 2064.0, "Total Visitors": 1200.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 511797.0, "Total Transactions": 12730.0, "Total Customers": 6537.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.55, "MEDIAN_SPEND_PER_CUSTOMER": 45.17 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-g8v", "LOCATION_NAME": "Khaamar Baari Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046044, "LONGITUDE": -75.070773, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 74.0, "POI_CBG": 421010314015.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1175.0, "Total Transactions": 38.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.61, "MEDIAN_SPEND_PER_CUSTOMER": 25.97 }, "geometry": { "type": "Point", "coordinates": [ -75.070773, 40.046044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-435", "LOCATION_NAME": "State Liquor Stores", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.920248, "LONGITUDE": -75.188384, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 356.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 401.0, "Total Transactions": 19.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 84.08 }, "geometry": { "type": "Point", "coordinates": [ -75.188384, 39.920248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045558, "LONGITUDE": -75.087582, "DATE_RANGE_START": 2021, "Total Visits": 654.0, "Total Visitors": 535.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 26716.0, "Total Transactions": 1227.0, "Total Customers": 613.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.27, "MEDIAN_SPEND_PER_CUSTOMER": 21.99 }, "geometry": { "type": "Point", "coordinates": [ -75.087582, 40.045558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "LOCATION_NAME": "Gap Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.050036, "LONGITUDE": -75.06262, "DATE_RANGE_START": 2021, "Total Visits": 458.0, "Total Visitors": 387.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2522.0, "Total Transactions": 36.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.97, "MEDIAN_SPEND_PER_CUSTOMER": 84.97 }, "geometry": { "type": "Point", "coordinates": [ -75.06262, 40.050036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-hdv", "LOCATION_NAME": "The Book Corner", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.960171, "LONGITUDE": -75.171295, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 153.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1448.0, "Total Transactions": 112.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.171295, 39.960171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "LOCATION_NAME": "Neighborhood Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 181.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 675.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.66, "MEDIAN_SPEND_PER_CUSTOMER": 16.66 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmf-zj9", "LOCATION_NAME": "Arch Brunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955759, "LONGITUDE": -75.17646, "DATE_RANGE_START": 2021, "Total Visits": 1828.0, "Total Visitors": 1184.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 249.0, "Total Spend": 198.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17646, 39.955759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-66k", "LOCATION_NAME": "Oloroso", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948946, "LONGITUDE": -75.159995, "DATE_RANGE_START": 2021, "Total Visits": 2876.0, "Total Visitors": 1916.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 102.0, "Total Spend": 13466.0, "Total Transactions": 115.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.83, "MEDIAN_SPEND_PER_CUSTOMER": 101.31 }, "geometry": { "type": "Point", "coordinates": [ -75.159995, 39.948946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-789", "LOCATION_NAME": "Booker's Restaurant and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947999, "LONGITUDE": -75.22426, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 95.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 69.0, "Total Spend": 3873.0, "Total Transactions": 62.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.37, "MEDIAN_SPEND_PER_CUSTOMER": 51.23 }, "geometry": { "type": "Point", "coordinates": [ -75.22426, 39.947999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "LOCATION_NAME": "Davids Mai Lai Wah", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955591, "LONGITUDE": -75.155966, "DATE_RANGE_START": 2021, "Total Visits": 663.0, "Total Visitors": 525.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8747.0, "Total Transactions": 241.0, "Total Customers": 215.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.45, "MEDIAN_SPEND_PER_CUSTOMER": 37.65 }, "geometry": { "type": "Point", "coordinates": [ -75.155966, 39.955591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2021, "Total Visits": 482.0, "Total Visitors": 413.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 32317.0, "Total Transactions": 3141.0, "Total Customers": 1945.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.61, "MEDIAN_SPEND_PER_CUSTOMER": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029727, "LONGITUDE": -75.09938, "DATE_RANGE_START": 2021, "Total Visits": 401.0, "Total Visitors": 315.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 9453.0, "Total Transactions": 594.0, "Total Customers": 484.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.07, "MEDIAN_SPEND_PER_CUSTOMER": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.09938, 40.029727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6p9", "LOCATION_NAME": "DelFrisco's Double Eagle Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950881, "LONGITUDE": -75.165456, "DATE_RANGE_START": 2021, "Total Visits": 3131.0, "Total Visitors": 2456.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 113.0, "Total Spend": 38430.0, "Total Transactions": 258.0, "Total Customers": 234.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.21, "MEDIAN_SPEND_PER_CUSTOMER": 111.44 }, "geometry": { "type": "Point", "coordinates": [ -75.165456, 39.950881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-68v", "LOCATION_NAME": "Strangelove's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948065, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2021, "Total Visits": 1745.0, "Total Visitors": 1444.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1839.0, "Total Transactions": 38.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.4, "MEDIAN_SPEND_PER_CUSTOMER": 67.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.948065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8f-9xq", "LOCATION_NAME": "Leandro's Pizza House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013813, "LONGITUDE": -75.08597, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 79.0, "POI_CBG": 421010294003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 363.0, "Total Transactions": 19.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.48, "MEDIAN_SPEND_PER_CUSTOMER": 21.84 }, "geometry": { "type": "Point", "coordinates": [ -75.08597, 40.013813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "LOCATION_NAME": "Venu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911404, "LONGITUDE": -75.170366, "DATE_RANGE_START": 2021, "Total Visits": 2823.0, "Total Visitors": 2356.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 27954.0, "Total Transactions": 866.0, "Total Customers": 547.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.74, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170366, 39.911404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgf-3bk", "LOCATION_NAME": "Old Nelson Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956093, "LONGITUDE": -75.194408, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 98.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4506.0, "Total Transactions": 327.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.92, "MEDIAN_SPEND_PER_CUSTOMER": 12.03 }, "geometry": { "type": "Point", "coordinates": [ -75.194408, 39.956093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2021, "Total Visits": 482.0, "Total Visitors": 332.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8272.0, "Total Transactions": 1189.0, "Total Customers": 551.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.29, "MEDIAN_SPEND_PER_CUSTOMER": 10.62 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "LOCATION_NAME": "Rustica", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964423, "LONGITUDE": -75.140069, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 150.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 173.0, "Total Spend": 4027.0, "Total Transactions": 203.0, "Total Customers": 181.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.93 }, "geometry": { "type": "Point", "coordinates": [ -75.140069, 39.964423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "LOCATION_NAME": "El Coqui Panaderia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 165.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 12588.0, "Total Transactions": 563.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.13, "MEDIAN_SPEND_PER_CUSTOMER": 24.44 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "LOCATION_NAME": "Seorabol Korean Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2021, "Total Visits": 473.0, "Total Visitors": 251.0, "POI_CBG": 421010274023.0, "MEDIAN_DWELL": 87.0, "Total Spend": 4377.0, "Total Transactions": 74.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.8, "MEDIAN_SPEND_PER_CUSTOMER": 73.74 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dwf-wkz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902609, "LONGITUDE": -75.240437, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 289.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 103.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.53, "MEDIAN_SPEND_PER_CUSTOMER": 21.53 }, "geometry": { "type": "Point", "coordinates": [ -75.240437, 39.902609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 129.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 622.0, "Total Transactions": 43.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 12.45 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992769, "LONGITUDE": -75.100237, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 143.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 62.0, "Total Spend": 11049.0, "Total Transactions": 396.0, "Total Customers": 322.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.06, "MEDIAN_SPEND_PER_CUSTOMER": 28.19 }, "geometry": { "type": "Point", "coordinates": [ -75.100237, 39.992769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076409, "LONGITUDE": -75.206721, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 115.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5666.0, "Total Transactions": 711.0, "Total Customers": 492.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.87, "MEDIAN_SPEND_PER_CUSTOMER": 7.85 }, "geometry": { "type": "Point", "coordinates": [ -75.206721, 40.076409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-9cq", "LOCATION_NAME": "Federal Donuts West", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953537, "LONGITUDE": -75.193139, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1908.0, "Total Transactions": 115.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.193139, 39.953537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmc-tqf", "LOCATION_NAME": "Walmart Vision Center", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.92638, "LONGITUDE": -75.141584, "DATE_RANGE_START": 2021, "Total Visits": 7360.0, "Total Visitors": 5222.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1248.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.46, "MEDIAN_SPEND_PER_CUSTOMER": 261.49 }, "geometry": { "type": "Point", "coordinates": [ -75.141584, 39.92638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-3dv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940442, "LONGITUDE": -75.166876, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 239.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 22611.0, "Total Transactions": 1310.0, "Total Customers": 802.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.31, "MEDIAN_SPEND_PER_CUSTOMER": 18.05 }, "geometry": { "type": "Point", "coordinates": [ -75.166876, 39.940442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2021, "Total Visits": 480.0, "Total Visitors": 356.0, "POI_CBG": 421010320003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 14413.0, "Total Transactions": 652.0, "Total Customers": 477.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.49, "MEDIAN_SPEND_PER_CUSTOMER": 20.3 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.065575, "LONGITUDE": -75.072105, "DATE_RANGE_START": 2021, "Total Visits": 344.0, "Total Visitors": 203.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1433.0, "Total Transactions": 36.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.24, "MEDIAN_SPEND_PER_CUSTOMER": 29.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072105, 40.065575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2021, "Total Visits": 845.0, "Total Visitors": 518.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7186.0, "Total Transactions": 327.0, "Total Customers": 227.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-87q", "LOCATION_NAME": "Rittenhouse Needlepoint", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.953747, "LONGITUDE": -75.160369, "DATE_RANGE_START": 2021, "Total Visits": 6236.0, "Total Visitors": 4265.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 123.0, "Total Spend": 2037.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.83, "MEDIAN_SPEND_PER_CUSTOMER": 52.83 }, "geometry": { "type": "Point", "coordinates": [ -75.160369, 39.953747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-92k", "LOCATION_NAME": "Levi Strauss & Co.", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.95164, "LONGITUDE": -75.155746, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 5707.0, "Total Transactions": 81.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.5, "MEDIAN_SPEND_PER_CUSTOMER": 74.25 }, "geometry": { "type": "Point", "coordinates": [ -75.155746, 39.95164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.931302, "LONGITUDE": -75.225599, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 189.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 336.0, "Total Transactions": 41.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.05, "MEDIAN_SPEND_PER_CUSTOMER": 7.83 }, "geometry": { "type": "Point", "coordinates": [ -75.225599, 39.931302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-jd9", "LOCATION_NAME": "Club Quarters Philadelphia", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951302, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2021, "Total Visits": 372.0, "Total Visitors": 277.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 241.0, "Total Spend": 3939.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 229.36, "MEDIAN_SPEND_PER_CUSTOMER": 229.36 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.951302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "LOCATION_NAME": "The Cheesecake Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949381, "LONGITUDE": -75.165741, "DATE_RANGE_START": 2021, "Total Visits": 1270.0, "Total Visitors": 1062.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 36.0, "Total Spend": 54342.0, "Total Transactions": 957.0, "Total Customers": 857.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.31, "MEDIAN_SPEND_PER_CUSTOMER": 52.51 }, "geometry": { "type": "Point", "coordinates": [ -75.165741, 39.949381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2021, "Total Visits": 644.0, "Total Visitors": 520.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 2.0, "Total Spend": 25.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.32, "MEDIAN_SPEND_PER_CUSTOMER": 5.32 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029034, "LONGITUDE": -75.099595, "DATE_RANGE_START": 2021, "Total Visits": 1162.0, "Total Visitors": 821.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 77826.0, "Total Transactions": 4840.0, "Total Customers": 2981.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.45, "MEDIAN_SPEND_PER_CUSTOMER": 19.91 }, "geometry": { "type": "Point", "coordinates": [ -75.099595, 40.029034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962408, "LONGITUDE": -75.163643, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 117.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 89.0, "Total Spend": 9220.0, "Total Transactions": 1480.0, "Total Customers": 685.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.81, "MEDIAN_SPEND_PER_CUSTOMER": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.163643, 39.962408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-ndv", "LOCATION_NAME": "Kensington Quarters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97058, "LONGITUDE": -75.134713, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 122.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 15646.0, "Total Transactions": 155.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.04, "MEDIAN_SPEND_PER_CUSTOMER": 87.33 }, "geometry": { "type": "Point", "coordinates": [ -75.134713, 39.97058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-223@628-phy-rc5", "LOCATION_NAME": "Tierra Colombiana Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020572, "LONGITUDE": -75.133736, "DATE_RANGE_START": 2021, "Total Visits": 482.0, "Total Visitors": 379.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 956.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 172.68, "MEDIAN_SPEND_PER_CUSTOMER": 172.68 }, "geometry": { "type": "Point", "coordinates": [ -75.133736, 40.020572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-rzf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.996049, "LONGITUDE": -75.092849, "DATE_RANGE_START": 2021, "Total Visits": 890.0, "Total Visitors": 494.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2430.0, "Total Transactions": 358.0, "Total Customers": 189.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.66, "MEDIAN_SPEND_PER_CUSTOMER": 7.88 }, "geometry": { "type": "Point", "coordinates": [ -75.092849, 39.996049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950691, "LONGITUDE": -75.151871, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 136.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5415.0, "Total Transactions": 902.0, "Total Customers": 566.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.82, "MEDIAN_SPEND_PER_CUSTOMER": 6.31 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.950691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926446, "LONGITUDE": -75.145402, "DATE_RANGE_START": 2021, "Total Visits": 814.0, "Total Visitors": 558.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 93231.0, "Total Transactions": 8153.0, "Total Customers": 4227.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.84 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvw-mrk", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.958965, "LONGITUDE": -75.2254, "DATE_RANGE_START": 2021, "Total Visits": 692.0, "Total Visitors": 482.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 33.0, "Total Spend": 663.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 120.0, "MEDIAN_SPEND_PER_CUSTOMER": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2254, 39.958965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "LOCATION_NAME": "Finish Line", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086808, "LONGITUDE": -74.961767, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 107.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3215.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.0, "MEDIAN_SPEND_PER_CUSTOMER": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961767, 40.086808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm9-yn5", "LOCATION_NAME": "Bluebond Guitars", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.94235, "LONGITUDE": -75.148924, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 246.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2027.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.08, "MEDIAN_SPEND_PER_CUSTOMER": 82.08 }, "geometry": { "type": "Point", "coordinates": [ -75.148924, 39.94235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.997473, "LONGITUDE": -75.074081, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 200.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13529.0, "Total Transactions": 613.0, "Total Customers": 282.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.8, "MEDIAN_SPEND_PER_CUSTOMER": 28.49 }, "geometry": { "type": "Point", "coordinates": [ -75.074081, 39.997473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050926, "LONGITUDE": -75.066019, "DATE_RANGE_START": 2021, "Total Visits": 1525.0, "Total Visitors": 1067.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 865.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 26.02 }, "geometry": { "type": "Point", "coordinates": [ -75.066019, 40.050926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-p7b-qs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.063609, "LONGITUDE": -75.021861, "DATE_RANGE_START": 2021, "Total Visits": 1821.0, "Total Visitors": 914.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1745.0, "Total Transactions": 81.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 46.37 }, "geometry": { "type": "Point", "coordinates": [ -75.021861, 40.063609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.035916, "LONGITUDE": -75.217328, "DATE_RANGE_START": 2021, "Total Visits": 1652.0, "Total Visitors": 1005.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1928.0, "Total Transactions": 72.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.03, "MEDIAN_SPEND_PER_CUSTOMER": 32.11 }, "geometry": { "type": "Point", "coordinates": [ -75.217328, 40.035916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8y9", "LOCATION_NAME": "Windsor", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951878, "LONGITUDE": -75.155445, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1681.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.7, "MEDIAN_SPEND_PER_CUSTOMER": 62.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155445, 39.951878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-zmk", "LOCATION_NAME": "Touch of Gold", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941921, "LONGITUDE": -75.153483, "DATE_RANGE_START": 2021, "Total Visits": 852.0, "Total Visitors": 766.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 7859.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 1269.0, "MEDIAN_SPEND_PER_CUSTOMER": 1269.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153483, 39.941921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-zs5", "LOCATION_NAME": "Lady Love", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941785, "LONGITUDE": -75.151232, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 229.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7090.0, "Total Transactions": 74.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.38, "MEDIAN_SPEND_PER_CUSTOMER": 59.38 }, "geometry": { "type": "Point", "coordinates": [ -75.151232, 39.941785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmf-qfz", "LOCATION_NAME": "Entree Byob", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943935, "LONGITUDE": -75.169156, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": null, "Total Spend": 5650.0, "Total Transactions": 53.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.09, "MEDIAN_SPEND_PER_CUSTOMER": 112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169156, 39.943935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.970561, "LONGITUDE": -75.155313, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 251.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 862.0, "Total Transactions": 62.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.9, "MEDIAN_SPEND_PER_CUSTOMER": 10.52 }, "geometry": { "type": "Point", "coordinates": [ -75.155313, 39.970561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.076084, "LONGITUDE": -75.031448, "DATE_RANGE_START": 2021, "Total Visits": 1265.0, "Total Visitors": 1115.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 19869.0, "Total Transactions": 1019.0, "Total Customers": 874.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.56, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031448, 40.076084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp5-ct9", "LOCATION_NAME": "Crispy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995185, "LONGITUDE": -75.112579, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010178001.0, "MEDIAN_DWELL": null, "Total Spend": 1757.0, "Total Transactions": 62.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.81, "MEDIAN_SPEND_PER_CUSTOMER": 30.66 }, "geometry": { "type": "Point", "coordinates": [ -75.112579, 39.995185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zvf", "LOCATION_NAME": "M2O Burgers & Salads", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940282, "LONGITUDE": -75.150883, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": null, "Total Spend": 260.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.38, "MEDIAN_SPEND_PER_CUSTOMER": 16.38 }, "geometry": { "type": "Point", "coordinates": [ -75.150883, 39.940282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "LOCATION_NAME": "Lebel Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010112003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3965.0, "Total Transactions": 153.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.19, "MEDIAN_SPEND_PER_CUSTOMER": 23.58 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-tsq", "LOCATION_NAME": "Pennsport Beer Boutique", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.931601, "LONGITUDE": -75.149607, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 41.0, "Total Spend": 2099.0, "Total Transactions": 79.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.4, "MEDIAN_SPEND_PER_CUSTOMER": 28.63 }, "geometry": { "type": "Point", "coordinates": [ -75.149607, 39.931601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfz-bx5", "LOCATION_NAME": "Manayunk Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024589, "LONGITUDE": -75.221155, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 55.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 8718.0, "Total Transactions": 241.0, "Total Customers": 181.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.56, "MEDIAN_SPEND_PER_CUSTOMER": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221155, 40.024589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "LOCATION_NAME": "Brickbat Books", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": null, "Total Spend": 2090.0, "Total Transactions": 72.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.55, "MEDIAN_SPEND_PER_CUSTOMER": 34.45 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-gtv", "LOCATION_NAME": "Greenstreet Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946471, "LONGITUDE": -75.159628, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": null, "Total Spend": 356.0, "Total Transactions": 48.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.38, "MEDIAN_SPEND_PER_CUSTOMER": 7.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159628, 39.946471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "LOCATION_NAME": "Primal Nutrition", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 24.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4991.0, "Total Transactions": 48.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.52, "MEDIAN_SPEND_PER_CUSTOMER": 151.32 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-td9", "LOCATION_NAME": "NY Bagel & Deli Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96081, "LONGITUDE": -75.157392, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 24.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 141.0, "Total Spend": 5331.0, "Total Transactions": 458.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.77, "MEDIAN_SPEND_PER_CUSTOMER": 14.71 }, "geometry": { "type": "Point", "coordinates": [ -75.157392, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjf-zvf", "LOCATION_NAME": "McNally's Tavern Chestnut Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077129, "LONGITUDE": -75.208866, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 29.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 289.0, "Total Spend": 4039.0, "Total Transactions": 67.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.22, "MEDIAN_SPEND_PER_CUSTOMER": 40.58 }, "geometry": { "type": "Point", "coordinates": [ -75.208866, 40.077129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-f2k", "LOCATION_NAME": "Stina Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925216, "LONGITUDE": -75.174721, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 38.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 512.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.36, "MEDIAN_SPEND_PER_CUSTOMER": 58.36 }, "geometry": { "type": "Point", "coordinates": [ -75.174721, 39.925216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "LOCATION_NAME": "Sawatdee Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 639.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.86, "MEDIAN_SPEND_PER_CUSTOMER": 36.86 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.037244, "LONGITUDE": -75.17465, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 215.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13838.0, "Total Transactions": 282.0, "Total Customers": 241.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.49, "MEDIAN_SPEND_PER_CUSTOMER": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.17465, 40.037244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "LOCATION_NAME": "Tires Plus", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 160.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 269.0, "Total Spend": 15431.0, "Total Transactions": 64.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.11, "MEDIAN_SPEND_PER_CUSTOMER": 119.02 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-php-6tv", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.075237, "LONGITUDE": -75.156957, "DATE_RANGE_START": 2021, "Total Visits": 10303.0, "Total Visitors": 5575.0, "POI_CBG": 420912025001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 146.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.37, "MEDIAN_SPEND_PER_CUSTOMER": 11.57 }, "geometry": { "type": "Point", "coordinates": [ -75.156957, 40.075237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-75z", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952267, "LONGITUDE": -75.166533, "DATE_RANGE_START": 2021, "Total Visits": 415.0, "Total Visitors": 234.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 276.0, "Total Spend": 2866.0, "Total Transactions": 162.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.98, "MEDIAN_SPEND_PER_CUSTOMER": 15.48 }, "geometry": { "type": "Point", "coordinates": [ -75.166533, 39.952267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.91267, "LONGITUDE": -75.154671, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 100.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1003.0, "Total Transactions": 41.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.82, "MEDIAN_SPEND_PER_CUSTOMER": 28.93 }, "geometry": { "type": "Point", "coordinates": [ -75.154671, 39.91267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "LOCATION_NAME": "Double Knot", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 243.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 72.0, "Total Spend": 26084.0, "Total Transactions": 196.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.35, "MEDIAN_SPEND_PER_CUSTOMER": 126.86 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2021, "Total Visits": 5988.0, "Total Visitors": 3948.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 39962.0, "Total Transactions": 487.0, "Total Customers": 327.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.02, "MEDIAN_SPEND_PER_CUSTOMER": 90.68 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951643, "LONGITUDE": -75.17217, "DATE_RANGE_START": 2021, "Total Visits": 1630.0, "Total Visitors": 1126.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 249556.0, "Total Transactions": 7535.0, "Total Customers": 4866.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.52, "MEDIAN_SPEND_PER_CUSTOMER": 32.67 }, "geometry": { "type": "Point", "coordinates": [ -75.17217, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-t7q", "LOCATION_NAME": "Craftsman Row Saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949101, "LONGITUDE": -75.154283, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 193.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 6437.0, "Total Transactions": 134.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.32, "MEDIAN_SPEND_PER_CUSTOMER": 42.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154283, 39.949101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p72-5s5", "LOCATION_NAME": "Three Monkeys Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.053948, "LONGITUDE": -74.983889, "DATE_RANGE_START": 2021, "Total Visits": 630.0, "Total Visitors": 489.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 216.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.31, "MEDIAN_SPEND_PER_CUSTOMER": 45.31 }, "geometry": { "type": "Point", "coordinates": [ -74.983889, 40.053948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "LOCATION_NAME": "Asian Chopsticks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 91.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1670.0, "Total Transactions": 62.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.66, "MEDIAN_SPEND_PER_CUSTOMER": 28.73 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p72-9vf", "LOCATION_NAME": "Maggie's Waterfront Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043666, "LONGITUDE": -74.989672, "DATE_RANGE_START": 2021, "Total Visits": 1050.0, "Total Visitors": 869.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 702.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.84, "MEDIAN_SPEND_PER_CUSTOMER": 61.84 }, "geometry": { "type": "Point", "coordinates": [ -74.989672, 40.043666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-vs5", "LOCATION_NAME": "Ys Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.000195, "LONGITUDE": -75.106917, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 208.0, "POI_CBG": 421010192004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 600.0, "Total Transactions": 41.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.45, "MEDIAN_SPEND_PER_CUSTOMER": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.106917, 40.000195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pg9-vpv", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967164, "LONGITUDE": -75.172278, "DATE_RANGE_START": 2021, "Total Visits": 690.0, "Total Visitors": 537.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 51.0, "Total Spend": 3773.0, "Total Transactions": 334.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.73, "MEDIAN_SPEND_PER_CUSTOMER": 9.33 }, "geometry": { "type": "Point", "coordinates": [ -75.172278, 39.967164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm9-y9z", "LOCATION_NAME": "Lil' Pop Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94178, "LONGITUDE": -75.149245, "DATE_RANGE_START": 2021, "Total Visits": 1165.0, "Total Visitors": 1112.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2517.0, "Total Transactions": 234.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.99, "MEDIAN_SPEND_PER_CUSTOMER": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.94178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 220.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4943.0, "Total Transactions": 578.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.93, "MEDIAN_SPEND_PER_CUSTOMER": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-9mk", "LOCATION_NAME": "Bravo Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010647, "LONGITUDE": -75.151533, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010201021.0, "MEDIAN_DWELL": null, "Total Spend": 4824.0, "Total Transactions": 222.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.77, "MEDIAN_SPEND_PER_CUSTOMER": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.151533, 40.010647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pnw-x89", "LOCATION_NAME": "Pretty Girls Cook", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97001, "LONGITUDE": -75.147605, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 29.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 105.0, "Total Spend": 6504.0, "Total Transactions": 172.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.48, "MEDIAN_SPEND_PER_CUSTOMER": 28.97 }, "geometry": { "type": "Point", "coordinates": [ -75.147605, 39.97001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-jgk", "LOCATION_NAME": "The Foto Club", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.000866, "LONGITUDE": -75.097152, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 62.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 51.0, "Total Spend": 2429.0, "Total Transactions": 91.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.91, "MEDIAN_SPEND_PER_CUSTOMER": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.097152, 40.000866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvx-3dv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.967245, "LONGITUDE": -75.215949, "DATE_RANGE_START": 2021, "Total Visits": 377.0, "Total Visitors": 236.0, "POI_CBG": 421010105001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 401.0, "Total Transactions": 31.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215949, 39.967245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bzf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.035481, "LONGITUDE": -75.10725, "DATE_RANGE_START": 2021, "Total Visits": 351.0, "Total Visitors": 248.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 697.0, "Total Transactions": 38.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.03, "MEDIAN_SPEND_PER_CUSTOMER": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10725, 40.035481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pzn-zj9", "LOCATION_NAME": "La Casa Di Lucias", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 40.132324, "LONGITUDE": -75.010926, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 124.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 49.0, "Total Spend": 604.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.4, "MEDIAN_SPEND_PER_CUSTOMER": 41.75 }, "geometry": { "type": "Point", "coordinates": [ -75.010926, 40.132324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "LOCATION_NAME": "Tradesman's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950487, "LONGITUDE": -75.162708, "DATE_RANGE_START": 2021, "Total Visits": 558.0, "Total Visitors": 451.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 120039.0, "Total Transactions": 3143.0, "Total Customers": 2038.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.4, "MEDIAN_SPEND_PER_CUSTOMER": 42.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162708, 39.950487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-k75", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.08259, "LONGITUDE": -75.022988, "DATE_RANGE_START": 2021, "Total Visits": 12146.0, "Total Visitors": 8024.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3555.0, "Total Transactions": 427.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.01, "MEDIAN_SPEND_PER_CUSTOMER": 13.75 }, "geometry": { "type": "Point", "coordinates": [ -75.022988, 40.08259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "LOCATION_NAME": "Khyber Pass Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 258.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 32402.0, "Total Transactions": 580.0, "Total Customers": 518.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.0, "MEDIAN_SPEND_PER_CUSTOMER": 51.09 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-y7q", "LOCATION_NAME": "Friendship BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953597, "LONGITUDE": -75.155857, "DATE_RANGE_START": 2021, "Total Visits": 4516.0, "Total Visitors": 3222.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 4935.0, "Total Transactions": 53.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.44, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155857, 39.953597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-t5f", "LOCATION_NAME": "Pho Viet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035248, "LONGITUDE": -75.100976, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 155.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 12456.0, "Total Transactions": 337.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.28, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100976, 40.035248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-mzf", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.958726, "LONGITUDE": -75.2256, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 126.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 182.0, "Total Spend": 568.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2256, 39.958726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-yd9", "LOCATION_NAME": "Kayuh Bicycles & Cafe", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.973645, "LONGITUDE": -75.17798, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 91.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 515.0, "Total Spend": 123.0, "Total Transactions": 31.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17798, 39.973645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2021, "Total Visits": 785.0, "Total Visitors": 613.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 22835.0, "Total Transactions": 2029.0, "Total Customers": 1487.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04622, "LONGITUDE": -75.195937, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010236003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3909.0, "Total Transactions": 379.0, "Total Customers": 227.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.67, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.195937, 40.04622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.935654, "LONGITUDE": -75.186436, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 45.0, "POI_CBG": 421010032004.0, "MEDIAN_DWELL": 223.0, "Total Spend": 258.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.12, "MEDIAN_SPEND_PER_CUSTOMER": 20.12 }, "geometry": { "type": "Point", "coordinates": [ -75.186436, 39.935654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "LOCATION_NAME": "J & P Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953491, "LONGITUDE": -75.218951, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 45.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7585.0, "Total Transactions": 174.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.88, "MEDIAN_SPEND_PER_CUSTOMER": 34.52 }, "geometry": { "type": "Point", "coordinates": [ -75.218951, 39.953491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "LOCATION_NAME": "Smiley's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 48.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1389.0, "Total Transactions": 84.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.95, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "LOCATION_NAME": "Sunglass Hut", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952036, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 69.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6027.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 239.76, "MEDIAN_SPEND_PER_CUSTOMER": 239.76 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-mff", "LOCATION_NAME": "Con Murphy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955696, "LONGITUDE": -75.167996, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 162.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 568.0, "Total Spend": 901.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167996, 39.955696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-5xq", "LOCATION_NAME": "Liberty Choice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979685, "LONGITUDE": -75.132953, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 81.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13553.0, "Total Transactions": 864.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.98, "MEDIAN_SPEND_PER_CUSTOMER": 18.96 }, "geometry": { "type": "Point", "coordinates": [ -75.132953, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-wx5", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.903669, "LONGITUDE": -75.238891, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 148.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4450.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 328.21, "MEDIAN_SPEND_PER_CUSTOMER": 475.97 }, "geometry": { "type": "Point", "coordinates": [ -75.238891, 39.903669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-sbk", "LOCATION_NAME": "Spruce Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947568, "LONGITUDE": -75.167428, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 146.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 18.0, "Total Spend": 27750.0, "Total Transactions": 1181.0, "Total Customers": 606.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.17, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167428, 39.947568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-ckf", "LOCATION_NAME": "Tran Beer Dist", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.924541, "LONGITUDE": -75.173565, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 153.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1826.0, "Total Transactions": 79.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.173565, 39.924541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.909224, "LONGITUDE": -75.174004, "DATE_RANGE_START": 2021, "Total Visits": 625.0, "Total Visitors": 480.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5621.0, "Total Transactions": 298.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.29, "MEDIAN_SPEND_PER_CUSTOMER": 19.34 }, "geometry": { "type": "Point", "coordinates": [ -75.174004, 39.909224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p82-4jv", "LOCATION_NAME": "Queen Nails Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046418, "LONGITUDE": -75.098417, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 177.0, "POI_CBG": 421010305011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1304.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 126.9, "MEDIAN_SPEND_PER_CUSTOMER": 273.1 }, "geometry": { "type": "Point", "coordinates": [ -75.098417, 40.046418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 99.0, "Total Spend": 1986.0, "Total Transactions": 72.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.78, "MEDIAN_SPEND_PER_CUSTOMER": 24.21 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.973475, "LONGITUDE": -75.159323, "DATE_RANGE_START": 2021, "Total Visits": 771.0, "Total Visitors": 575.0, "POI_CBG": 421010140003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2980.0, "Total Transactions": 100.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.96, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159323, 39.973475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-m6k", "LOCATION_NAME": "Brave New Worlds", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.951384, "LONGITUDE": -75.143026, "DATE_RANGE_START": 2021, "Total Visits": 1508.0, "Total Visitors": 1055.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 223.0, "Total Spend": 49.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.143026, 39.951384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.978487, "LONGITUDE": -75.271145, "DATE_RANGE_START": 2021, "Total Visits": 857.0, "Total Visitors": 652.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 20.0, "Total Spend": 57487.0, "Total Transactions": 1177.0, "Total Customers": 1019.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 35.78 }, "geometry": { "type": "Point", "coordinates": [ -75.271145, 39.978487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "LOCATION_NAME": "Platinum", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 112.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 11444.0, "Total Transactions": 57.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 127.0, "MEDIAN_SPEND_PER_CUSTOMER": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "LOCATION_NAME": "J&J Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.925365, "LONGITUDE": -75.157449, "DATE_RANGE_START": 2021, "Total Visits": 212.0, "Total Visitors": 124.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5459.0, "Total Transactions": 432.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.26, "MEDIAN_SPEND_PER_CUSTOMER": 13.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157449, 39.925365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953206, "LONGITUDE": -75.160514, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 344.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2330.0, "Total Transactions": 189.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.04, "MEDIAN_SPEND_PER_CUSTOMER": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.160514, 39.953206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947336, "LONGITUDE": -75.228833, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 305.0, "POI_CBG": 421010073004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 22167.0, "Total Transactions": 1095.0, "Total Customers": 685.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.39, "MEDIAN_SPEND_PER_CUSTOMER": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.228833, 39.947336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054006, "LONGITUDE": -75.193227, "DATE_RANGE_START": 2021, "Total Visits": 289.0, "Total Visitors": 224.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10182.0, "Total Transactions": 518.0, "Total Customers": 360.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.193227, 40.054006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055372, "LONGITUDE": -75.089592, "DATE_RANGE_START": 2021, "Total Visits": 979.0, "Total Visitors": 606.0, "POI_CBG": 421010307002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 270.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.86, "MEDIAN_SPEND_PER_CUSTOMER": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.089592, 40.055372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mx5", "LOCATION_NAME": "Jos. A. Bank Clothiers", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952606, "LONGITUDE": -75.168302, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 99.0, "Total Spend": 15801.0, "Total Transactions": 117.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.0, "MEDIAN_SPEND_PER_CUSTOMER": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168302, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "LOCATION_NAME": "Golden Nugget Jewelers III", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2021, "Total Visits": 1745.0, "Total Visitors": 1394.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 85224.0, "Total Transactions": 57.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 1081.62, "MEDIAN_SPEND_PER_CUSTOMER": 1194.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "LOCATION_NAME": "Muslim Fashion", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2021, "Total Visits": 523.0, "Total Visitors": 375.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1649.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 53.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "LOCATION_NAME": "Liberty Time", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2021, "Total Visits": 3604.0, "Total Visitors": 2876.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1613.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.22, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "LOCATION_NAME": "Scrub Pro", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2021, "Total Visits": 2337.0, "Total Visitors": 1754.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 18202.0, "Total Transactions": 236.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.97, "MEDIAN_SPEND_PER_CUSTOMER": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26j-222@628-pgb-6x5", "LOCATION_NAME": "The Black Taxi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968738, "LONGITUDE": -75.178186, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": null, "Total Spend": 44226.0, "Total Transactions": 797.0, "Total Customers": 544.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.49, "MEDIAN_SPEND_PER_CUSTOMER": 49.81 }, "geometry": { "type": "Point", "coordinates": [ -75.178186, 39.968738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-qmk", "LOCATION_NAME": "Yeeroh", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943614, "LONGITUDE": -75.166117, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3178.0, "Total Transactions": 165.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.19 }, "geometry": { "type": "Point", "coordinates": [ -75.166117, 39.943614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg8-ks5", "LOCATION_NAME": "SPOT Gourmet Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974624, "LONGITUDE": -75.182611, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 34.0, "Total Spend": 353.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.17, "MEDIAN_SPEND_PER_CUSTOMER": 30.59 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.974624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "LOCATION_NAME": "Rapoport Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 50.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 103.0, "Total Spend": 269.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.83, "MEDIAN_SPEND_PER_CUSTOMER": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pjf-jvz", "LOCATION_NAME": "Bahia Bowls Chestnut Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072819, "LONGITUDE": -75.202597, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 50.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6420.0, "Total Transactions": 408.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.04, "MEDIAN_SPEND_PER_CUSTOMER": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.202597, 40.072819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026206, "LONGITUDE": -75.22393, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 53.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 519.0, "Total Spend": 5477.0, "Total Transactions": 341.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.46, "MEDIAN_SPEND_PER_CUSTOMER": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -75.22393, 40.026206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "LOCATION_NAME": "Pitchers Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.025059, "LONGITUDE": -75.223033, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 57.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 11680.0, "Total Transactions": 396.0, "Total Customers": 310.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.8, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223033, 40.025059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "LOCATION_NAME": "Penn Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 81.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1439.0, "Total Transactions": 53.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "LOCATION_NAME": "Bloomsday Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 160.0, "Total Spend": 5443.0, "Total Transactions": 60.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.96, "MEDIAN_SPEND_PER_CUSTOMER": 78.04 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pnw-mx5", "LOCATION_NAME": "Stump", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 39.96557, "LONGITUDE": -75.14068, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 180.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.64, "MEDIAN_SPEND_PER_CUSTOMER": 37.64 }, "geometry": { "type": "Point", "coordinates": [ -75.14068, 39.96557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmd-rx5", "LOCATION_NAME": "Cotoletta Fitler Square", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947447, "LONGITUDE": -75.179191, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 49.0, "Total Spend": 518.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.49, "MEDIAN_SPEND_PER_CUSTOMER": 108.49 }, "geometry": { "type": "Point", "coordinates": [ -75.179191, 39.947447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "LOCATION_NAME": "Guzman Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 41.0, "POI_CBG": 421010177023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 306.0, "Total Transactions": 36.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-jjv", "LOCATION_NAME": "Pelicana chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95156, "LONGITUDE": -75.203327, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 64.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1350.0, "Total Transactions": 43.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.4, "MEDIAN_SPEND_PER_CUSTOMER": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.203327, 39.95156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-zj9", "LOCATION_NAME": "Arch Gourmet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955807, "LONGITUDE": -75.176416, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 375.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176416, 39.955807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.991664, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 728.0, "Total Transactions": 31.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.24, "MEDIAN_SPEND_PER_CUSTOMER": 21.24 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.991664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.012783, "LONGITUDE": -75.150904, "DATE_RANGE_START": 2021, "Total Visits": 513.0, "Total Visitors": 432.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 26757.0, "Total Transactions": 365.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.18, "MEDIAN_SPEND_PER_CUSTOMER": 42.91 }, "geometry": { "type": "Point", "coordinates": [ -75.150904, 40.012783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25g-222@628-pm6-h89", "LOCATION_NAME": "Tony's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.91706, "LONGITUDE": -75.150829, "DATE_RANGE_START": 2021, "Total Visits": 804.0, "Total Visitors": 177.0, "POI_CBG": 421010042021.0, "MEDIAN_DWELL": 1252.0, "Total Spend": 255.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.74, "MEDIAN_SPEND_PER_CUSTOMER": 21.74 }, "geometry": { "type": "Point", "coordinates": [ -75.150829, 39.91706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-y9z", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954522, "LONGITUDE": -75.184483, "DATE_RANGE_START": 2021, "Total Visits": 1024.0, "Total Visitors": 644.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 280.0, "Total Spend": 9278.0, "Total Transactions": 742.0, "Total Customers": 630.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.17, "MEDIAN_SPEND_PER_CUSTOMER": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.184483, 39.954522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029093, "LONGITUDE": -75.118871, "DATE_RANGE_START": 2021, "Total Visits": 348.0, "Total Visitors": 243.0, "POI_CBG": 421010290004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1187.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.35, "MEDIAN_SPEND_PER_CUSTOMER": 12.68 }, "geometry": { "type": "Point", "coordinates": [ -75.118871, 40.029093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22b@628-pmb-7h5", "LOCATION_NAME": "Bain's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949072, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2021, "Total Visits": 7711.0, "Total Visitors": 5317.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 151.0, "Total Spend": 504.0, "Total Transactions": 55.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.13, "MEDIAN_SPEND_PER_CUSTOMER": 9.23 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.949072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081241, "LONGITUDE": -74.99492, "DATE_RANGE_START": 2021, "Total Visits": 539.0, "Total Visitors": 267.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4913.0, "Total Transactions": 716.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.9, "MEDIAN_SPEND_PER_CUSTOMER": 9.59 }, "geometry": { "type": "Point", "coordinates": [ -74.99492, 40.081241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j9z", "LOCATION_NAME": "aka.", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.950397, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 313.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 485.0, "Total Spend": 87.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.44, "MEDIAN_SPEND_PER_CUSTOMER": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.950397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "LOCATION_NAME": "Sang Kee Noodle House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954847, "LONGITUDE": -75.193677, "DATE_RANGE_START": 2021, "Total Visits": 928.0, "Total Visitors": 544.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 325.0, "Total Spend": 5022.0, "Total Transactions": 136.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.49, "MEDIAN_SPEND_PER_CUSTOMER": 36.13 }, "geometry": { "type": "Point", "coordinates": [ -75.193677, 39.954847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfz-bzf", "LOCATION_NAME": "Chabaa Thai Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025611, "LONGITUDE": -75.223488, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 81.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 114.0, "Total Spend": 5940.0, "Total Transactions": 134.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.72, "MEDIAN_SPEND_PER_CUSTOMER": 50.58 }, "geometry": { "type": "Point", "coordinates": [ -75.223488, 40.025611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "LOCATION_NAME": "NO 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2021, "Total Visits": 580.0, "Total Visitors": 456.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 179.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.53, "MEDIAN_SPEND_PER_CUSTOMER": 37.53 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-6x5", "LOCATION_NAME": "Ocean Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950182, "LONGITUDE": -75.165953, "DATE_RANGE_START": 2021, "Total Visits": 456.0, "Total Visitors": 422.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 12670.0, "Total Transactions": 60.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 177.99, "MEDIAN_SPEND_PER_CUSTOMER": 204.36 }, "geometry": { "type": "Point", "coordinates": [ -75.165953, 39.950182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962306, "LONGITUDE": -75.172957, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 117.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 28114.0, "Total Transactions": 1021.0, "Total Customers": 776.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.12, "MEDIAN_SPEND_PER_CUSTOMER": 29.77 }, "geometry": { "type": "Point", "coordinates": [ -75.172957, 39.962306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 100.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 10563.0, "Total Transactions": 702.0, "Total Customers": 513.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.45, "MEDIAN_SPEND_PER_CUSTOMER": 14.82 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 39.932572, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 165.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4406.0, "Total Transactions": 67.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.35, "MEDIAN_SPEND_PER_CUSTOMER": 89.27 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "LOCATION_NAME": "Pac A Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948693, "LONGITUDE": -75.160788, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 277.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 18834.0, "Total Transactions": 1038.0, "Total Customers": 480.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.03, "MEDIAN_SPEND_PER_CUSTOMER": 23.88 }, "geometry": { "type": "Point", "coordinates": [ -75.160788, 39.948693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "LOCATION_NAME": "Dfti Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.95206, "LONGITUDE": -75.174572, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 18034.0, "Total Transactions": 172.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.85, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174572, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "LOCATION_NAME": "Pizzeria Cappelli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948456, "LONGITUDE": -75.162098, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 110.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 31.0, "Total Spend": 11155.0, "Total Transactions": 585.0, "Total Customers": 501.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.79, "MEDIAN_SPEND_PER_CUSTOMER": 18.98 }, "geometry": { "type": "Point", "coordinates": [ -75.162098, 39.948456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pmf-jd9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.9512, "LONGITUDE": -75.168586, "DATE_RANGE_START": 2021, "Total Visits": 1874.0, "Total Visitors": 1248.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 417.0, "Total Spend": 51188.0, "Total Transactions": 3740.0, "Total Customers": 2079.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.2, "MEDIAN_SPEND_PER_CUSTOMER": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.168586, 39.9512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-qfz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.976667, "LONGITUDE": -75.231099, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 91.0, "POI_CBG": 421010112001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 5608.0, "Total Transactions": 284.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.49, "MEDIAN_SPEND_PER_CUSTOMER": 25.49 }, "geometry": { "type": "Point", "coordinates": [ -75.231099, 39.976667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj4-zzz", "LOCATION_NAME": "Wok Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005065, "LONGITUDE": -75.150775, "DATE_RANGE_START": 2021, "Total Visits": 11673.0, "Total Visitors": 4064.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 344.0, "Total Spend": 598.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.150775, 40.005065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5zz", "LOCATION_NAME": "Top Tomato Pizza Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948971, "LONGITUDE": -75.159389, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 172.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 83.0, "Total Spend": 10551.0, "Total Transactions": 387.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.62, "MEDIAN_SPEND_PER_CUSTOMER": 23.27 }, "geometry": { "type": "Point", "coordinates": [ -75.159389, 39.948971 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952204, "LONGITUDE": -75.166371, "DATE_RANGE_START": 2021, "Total Visits": 5561.0, "Total Visitors": 3692.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 172.0, "Total Spend": 5172.0, "Total Transactions": 862.0, "Total Customers": 344.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.27, "MEDIAN_SPEND_PER_CUSTOMER": 7.67 }, "geometry": { "type": "Point", "coordinates": [ -75.166371, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 353.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 11918.0, "Total Transactions": 1470.0, "Total Customers": 718.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.01, "MEDIAN_SPEND_PER_CUSTOMER": 10.11 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2021, "Total Visits": 563.0, "Total Visitors": 384.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 602.0, "Total Transactions": 48.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.81, "MEDIAN_SPEND_PER_CUSTOMER": 8.65 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-p85-p35", "LOCATION_NAME": "The Fresh Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057189, "LONGITUDE": -75.030329, "DATE_RANGE_START": 2021, "Total Visits": 814.0, "Total Visitors": 599.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 348.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 11.38 }, "geometry": { "type": "Point", "coordinates": [ -75.030329, 40.057189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032663, "LONGITUDE": -75.179788, "DATE_RANGE_START": 2021, "Total Visits": 348.0, "Total Visitors": 248.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 16695.0, "Total Transactions": 2105.0, "Total Customers": 897.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.03, "MEDIAN_SPEND_PER_CUSTOMER": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.179788, 40.032663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dvy-mx5", "LOCATION_NAME": "Tea Do", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95462, "LONGITUDE": -75.199919, "DATE_RANGE_START": 2021, "Total Visits": 2215.0, "Total Visitors": 1315.0, "POI_CBG": 421010088012.0, "MEDIAN_DWELL": 61.0, "Total Spend": 4827.0, "Total Transactions": 504.0, "Total Customers": 468.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.08, "MEDIAN_SPEND_PER_CUSTOMER": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.199919, 39.95462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-kfz", "LOCATION_NAME": "SoBol UCity", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951073, "LONGITUDE": -75.198726, "DATE_RANGE_START": 2021, "Total Visits": 1131.0, "Total Visitors": 802.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1888.0, "Total Transactions": 131.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.02, "MEDIAN_SPEND_PER_CUSTOMER": 12.07 }, "geometry": { "type": "Point", "coordinates": [ -75.198726, 39.951073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2021, "Total Visits": 745.0, "Total Visitors": 525.0, "POI_CBG": 421010348022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10068.0, "Total Transactions": 1055.0, "Total Customers": 666.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.86, "MEDIAN_SPEND_PER_CUSTOMER": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095685, "LONGITUDE": -75.015058, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 344.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3222.0, "Total Transactions": 489.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.62, "MEDIAN_SPEND_PER_CUSTOMER": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.015058, 40.095685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-jd9", "LOCATION_NAME": "Konditori", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95187, "LONGITUDE": -75.168863, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 189.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 183.0, "Total Spend": 240.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.94, "MEDIAN_SPEND_PER_CUSTOMER": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.168863, 39.95187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5s5", "LOCATION_NAME": "Federal Donuts East Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951076, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2021, "Total Visits": 2551.0, "Total Visitors": 1716.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 276.0, "Total Spend": 5270.0, "Total Transactions": 358.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.76, "MEDIAN_SPEND_PER_CUSTOMER": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.951076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "LOCATION_NAME": "Angelo's Pizza House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1573.0, "Total Transactions": 98.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 25.6 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvq-649", "LOCATION_NAME": "Three Sister Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954366, "LONGITUDE": -75.229741, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010085004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2046.0, "Total Transactions": 186.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229741, 39.954366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "LOCATION_NAME": "Oneals Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 21.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 11016.0, "Total Transactions": 267.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.38, "MEDIAN_SPEND_PER_CUSTOMER": 28.31 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "LOCATION_NAME": "Talk of the Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071911, "LONGITUDE": -75.161398, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8748.0, "Total Transactions": 224.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.38, "MEDIAN_SPEND_PER_CUSTOMER": 24.86 }, "geometry": { "type": "Point", "coordinates": [ -75.161398, 40.071911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-pvz", "LOCATION_NAME": "12 Steps Down", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.939056, "LONGITUDE": -75.157629, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 64.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 387.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157629, 39.939056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "LOCATION_NAME": "Harbor Freight Tools", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2021, "Total Visits": 566.0, "Total Visitors": 504.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 40689.0, "Total Transactions": 699.0, "Total Customers": 582.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.29, "MEDIAN_SPEND_PER_CUSTOMER": 42.1 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.068776, "LONGITUDE": -75.005362, "DATE_RANGE_START": 2021, "Total Visits": 1422.0, "Total Visitors": 945.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14326.0, "Total Transactions": 644.0, "Total Customers": 337.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 23.23 }, "geometry": { "type": "Point", "coordinates": [ -75.005362, 40.068776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-j9z", "LOCATION_NAME": "Rittenhouse Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950367, "LONGITUDE": -75.17049, "DATE_RANGE_START": 2021, "Total Visits": 2575.0, "Total Visitors": 2012.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 790.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.17049, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951447, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2021, "Total Visits": 811.0, "Total Visitors": 594.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 140.0, "Total Spend": 10976.0, "Total Transactions": 1014.0, "Total Customers": 635.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.63, "MEDIAN_SPEND_PER_CUSTOMER": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.951447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dwf-q2k", "LOCATION_NAME": "Marathon", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.913427, "LONGITUDE": -75.243685, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 253.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1978.0, "Total Transactions": 72.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.52, "MEDIAN_SPEND_PER_CUSTOMER": 20.02 }, "geometry": { "type": "Point", "coordinates": [ -75.243685, 39.913427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pgj-pgk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992811, "LONGITUDE": -75.147675, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 124.0, "POI_CBG": 421010164003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 687.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.49, "MEDIAN_SPEND_PER_CUSTOMER": 5.45 }, "geometry": { "type": "Point", "coordinates": [ -75.147675, 39.992811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.9542, "LONGITUDE": -75.225712, "DATE_RANGE_START": 2021, "Total Visits": 1136.0, "Total Visitors": 730.0, "POI_CBG": 421010085003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 461.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.95, "MEDIAN_SPEND_PER_CUSTOMER": 23.57 }, "geometry": { "type": "Point", "coordinates": [ -75.225712, 39.9542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2021, "Total Visits": 1019.0, "Total Visitors": 838.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 9066.0, "Total Transactions": 198.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.97, "MEDIAN_SPEND_PER_CUSTOMER": 46.17 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-zxq", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941838, "LONGITUDE": -75.152721, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 72.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2010.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.99, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152721, 39.941838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "LOCATION_NAME": "Tandy Leather Factory", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.102565, "LONGITUDE": -75.008773, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 198.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3137.0, "Total Transactions": 38.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.25, "MEDIAN_SPEND_PER_CUSTOMER": 113.65 }, "geometry": { "type": "Point", "coordinates": [ -75.008773, 40.102565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-3kf", "LOCATION_NAME": "South Side Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925364, "LONGITUDE": -75.159106, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": null, "Total Spend": 205.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.82, "MEDIAN_SPEND_PER_CUSTOMER": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.159106, 39.925364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "LOCATION_NAME": "Fairfield Inn & Suites by Marriott", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2021, "Total Visits": 1014.0, "Total Visitors": 687.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 323.0, "Total Spend": 38104.0, "Total Transactions": 222.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 166.48, "MEDIAN_SPEND_PER_CUSTOMER": 176.82 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.074794, "LONGITUDE": -75.032684, "DATE_RANGE_START": 2021, "Total Visits": 1215.0, "Total Visitors": 709.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 5554.0, "Total Transactions": 516.0, "Total Customers": 337.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.58 }, "geometry": { "type": "Point", "coordinates": [ -75.032684, 40.074794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.031024, "LONGITUDE": -75.099091, "DATE_RANGE_START": 2021, "Total Visits": 671.0, "Total Visitors": 578.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 14572.0, "Total Transactions": 399.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.099091, 40.031024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-vcq", "LOCATION_NAME": "The Dolphin Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.930579, "LONGITUDE": -75.167937, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 150.0, "POI_CBG": 421010029002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 27921.0, "Total Transactions": 1217.0, "Total Customers": 783.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.6, "MEDIAN_SPEND_PER_CUSTOMER": 29.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167937, 39.930579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9r-4y9", "LOCATION_NAME": "Chuck E. Cheese's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076158, "LONGITUDE": -75.031371, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 317.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2198.0, "Total Transactions": 98.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 30.38 }, "geometry": { "type": "Point", "coordinates": [ -75.031371, 40.076158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "LOCATION_NAME": "East Falls Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 12.0, "POI_CBG": 421010170001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 17764.0, "Total Transactions": 575.0, "Total Customers": 377.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.23, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "LOCATION_NAME": "Fishtown Social", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11568.0, "Total Transactions": 193.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.76, "MEDIAN_SPEND_PER_CUSTOMER": 70.66 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-pn5", "LOCATION_NAME": "Good's Vintage", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.93696, "LONGITUDE": -75.158415, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1030.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.5, "MEDIAN_SPEND_PER_CUSTOMER": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.93696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-t5f", "LOCATION_NAME": "Sum Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965929, "LONGITUDE": -75.160347, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 43.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1087.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 113.79, "MEDIAN_SPEND_PER_CUSTOMER": 127.52 }, "geometry": { "type": "Point", "coordinates": [ -75.160347, 39.965929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phq-2ff", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058682, "LONGITUDE": -75.164688, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 43.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3893.0, "Total Transactions": 191.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 19.68 }, "geometry": { "type": "Point", "coordinates": [ -75.164688, 40.058682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8h-5xq", "LOCATION_NAME": "New Station Pizza Iv", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026249, "LONGITUDE": -75.043153, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1957.0, "Total Transactions": 119.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.89, "MEDIAN_SPEND_PER_CUSTOMER": 17.97 }, "geometry": { "type": "Point", "coordinates": [ -75.043153, 40.026249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "LOCATION_NAME": "Knead Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948165, "LONGITUDE": -75.153606, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 120.0, "Total Spend": 5967.0, "Total Transactions": 480.0, "Total Customers": 387.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.153606, 39.948165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.030253, "LONGITUDE": -75.101415, "DATE_RANGE_START": 2021, "Total Visits": 558.0, "Total Visitors": 456.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 10863.0, "Total Transactions": 208.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.79, "MEDIAN_SPEND_PER_CUSTOMER": 50.22 }, "geometry": { "type": "Point", "coordinates": [ -75.101415, 40.030253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8j-ct9", "LOCATION_NAME": "Dress Up Time", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.036328, "LONGITUDE": -75.042105, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1281.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 268.39, "MEDIAN_SPEND_PER_CUSTOMER": 268.39 }, "geometry": { "type": "Point", "coordinates": [ -75.042105, 40.036328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmf-j35", "LOCATION_NAME": "Benjamin Lovell Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.95135, "LONGITUDE": -75.169937, "DATE_RANGE_START": 2021, "Total Visits": 2017.0, "Total Visitors": 1434.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 62.0, "Total Spend": 53.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169937, 39.95135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-5pv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952074, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2021, "Total Visits": 174.0, "Total Visitors": 148.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 195.0, "Total Spend": 4064.0, "Total Transactions": 778.0, "Total Customers": 339.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.34, "MEDIAN_SPEND_PER_CUSTOMER": 6.71 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.952074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8h-5mk", "LOCATION_NAME": "Benz Automotive", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.024738, "LONGITUDE": -75.035725, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 69.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 129.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035725, 40.024738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-y9z", "LOCATION_NAME": "Mai Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954031, "LONGITUDE": -75.18573, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 43.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 173.0, "Total Spend": 52.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 39.954031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "LOCATION_NAME": "Thai Kuu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 60.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1890.0, "Total Transactions": 45.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.04, "MEDIAN_SPEND_PER_CUSTOMER": 41.58 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-v2k", "LOCATION_NAME": "Original Village Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.107293, "LONGITUDE": -75.037623, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 64.0, "POI_CBG": 421010357021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4995.0, "Total Transactions": 160.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.42, "MEDIAN_SPEND_PER_CUSTOMER": 26.68 }, "geometry": { "type": "Point", "coordinates": [ -75.037623, 40.107293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg2-zs5", "LOCATION_NAME": "Mount Airy Tap Room", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.053904, "LONGITUDE": -75.194197, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010388004.0, "MEDIAN_DWELL": 129.0, "Total Spend": 12092.0, "Total Transactions": 227.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.2, "MEDIAN_SPEND_PER_CUSTOMER": 57.35 }, "geometry": { "type": "Point", "coordinates": [ -75.194197, 40.053904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p8d-fmk", "LOCATION_NAME": "Renzi's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998034, "LONGITUDE": -75.074418, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 36.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 194.0, "Total Spend": 155.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.074418, 39.998034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-nnq", "LOCATION_NAME": "M & M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.02486, "LONGITUDE": -75.210261, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 39.0, "Total Spend": 373.0, "Total Transactions": 57.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.19, "MEDIAN_SPEND_PER_CUSTOMER": 7.38 }, "geometry": { "type": "Point", "coordinates": [ -75.210261, 40.02486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "LOCATION_NAME": "Wah Gi Wah Halal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956965, "LONGITUDE": -75.211135, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": null, "Total Spend": 4918.0, "Total Transactions": 76.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.84, "MEDIAN_SPEND_PER_CUSTOMER": 72.59 }, "geometry": { "type": "Point", "coordinates": [ -75.211135, 39.956965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "LOCATION_NAME": "Oregon Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 17.0, "POI_CBG": 421010372001.0, "MEDIAN_DWELL": 725.0, "Total Spend": 314.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.6, "MEDIAN_SPEND_PER_CUSTOMER": 17.11 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "LOCATION_NAME": "Pasqually's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 15.0, "Total Spend": 21072.0, "Total Transactions": 931.0, "Total Customers": 558.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.79, "MEDIAN_SPEND_PER_CUSTOMER": 28.18 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4jv", "LOCATION_NAME": "Embroidery King", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.046955, "LONGITUDE": -75.098445, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 26.0, "POI_CBG": 421010305021.0, "MEDIAN_DWELL": 423.0, "Total Spend": 1348.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 150.0, "MEDIAN_SPEND_PER_CUSTOMER": 282.5 }, "geometry": { "type": "Point", "coordinates": [ -75.098445, 40.046955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "LOCATION_NAME": "Fountain Porter", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 29.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 154.0, "Total Spend": 3725.0, "Total Transactions": 81.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.31, "MEDIAN_SPEND_PER_CUSTOMER": 45.56 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-fcq", "LOCATION_NAME": "Ace Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.946706, "LONGITUDE": -75.157582, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 36.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 661.0, "Total Transactions": 57.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.78, "MEDIAN_SPEND_PER_CUSTOMER": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157582, 39.946706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8t-4qf", "LOCATION_NAME": "Speedy's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084571, "LONGITUDE": -74.972797, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 36.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 5.0, "Total Spend": 834.0, "Total Transactions": 36.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.57, "MEDIAN_SPEND_PER_CUSTOMER": 23.84 }, "geometry": { "type": "Point", "coordinates": [ -74.972797, 40.084571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj6-99f", "LOCATION_NAME": "Red Wine Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033146, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 60.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 99.0, "Total Spend": 356.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.033146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-x89", "LOCATION_NAME": "Kim's Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.029599, "LONGITUDE": -75.146407, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 67.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1234.0, "Total Transactions": 55.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146407, 40.029599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-q75", "LOCATION_NAME": "Stacy's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979079, "LONGITUDE": -75.268686, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 72.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 500.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.41, "MEDIAN_SPEND_PER_CUSTOMER": 16.41 }, "geometry": { "type": "Point", "coordinates": [ -75.268686, 39.979079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969391, "LONGITUDE": -75.159457, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 64.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5763.0, "Total Transactions": 828.0, "Total Customers": 484.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 7.96 }, "geometry": { "type": "Point", "coordinates": [ -75.159457, 39.969391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p85-cnq", "LOCATION_NAME": "New Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060663, "LONGITUDE": -75.051686, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": null, "Total Spend": 438.0, "Total Transactions": 33.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.35, "MEDIAN_SPEND_PER_CUSTOMER": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051686, 40.060663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-r6k", "LOCATION_NAME": "Grindcore House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929019, "LONGITUDE": -75.151738, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010027023.0, "MEDIAN_DWELL": 25.0, "Total Spend": 2000.0, "Total Transactions": 172.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.12, "MEDIAN_SPEND_PER_CUSTOMER": 10.56 }, "geometry": { "type": "Point", "coordinates": [ -75.151738, 39.929019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-8jv", "LOCATION_NAME": "Newmans Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038927, "LONGITUDE": -75.177558, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 395.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.9, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177558, 40.038927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "LOCATION_NAME": "Chestnut Hill Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 211.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-fcq", "LOCATION_NAME": "Litterpaw Pet Supply", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.946484, "LONGITUDE": -75.157626, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 21.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 253.0, "Total Spend": 143.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -75.157626, 39.946484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-pgk", "LOCATION_NAME": "Best Sunny Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992784, "LONGITUDE": -75.148123, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 26.0, "POI_CBG": 421010165003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 587.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.73 }, "geometry": { "type": "Point", "coordinates": [ -75.148123, 39.992784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-phn-qj9", "LOCATION_NAME": "Uptown Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.067574, "LONGITUDE": -75.179009, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 95.0, "Total Spend": 2777.0, "Total Transactions": 48.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.39, "MEDIAN_SPEND_PER_CUSTOMER": 32.19 }, "geometry": { "type": "Point", "coordinates": [ -75.179009, 40.067574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "LOCATION_NAME": "Dim Sum & Noodle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962276, "LONGITUDE": -75.172659, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": null, "Total Spend": 6748.0, "Total Transactions": 208.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.3, "MEDIAN_SPEND_PER_CUSTOMER": 38.02 }, "geometry": { "type": "Point", "coordinates": [ -75.172659, 39.962276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-k75", "LOCATION_NAME": "Angela's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0945, "LONGITUDE": -75.018316, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2413.0, "Total Transactions": 129.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.018316, 40.0945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnx-dsq", "LOCATION_NAME": "Cedar Point Bar and Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976851, "LONGITUDE": -75.127783, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 45.0, "Total Spend": 20534.0, "Total Transactions": 358.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.17, "MEDIAN_SPEND_PER_CUSTOMER": 45.22 }, "geometry": { "type": "Point", "coordinates": [ -75.127783, 39.976851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgf-h5z", "LOCATION_NAME": "American Picture Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.959767, "LONGITUDE": -75.198143, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 41.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 610.0, "Total Spend": 706.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 147.92, "MEDIAN_SPEND_PER_CUSTOMER": 147.92 }, "geometry": { "type": "Point", "coordinates": [ -75.198143, 39.959767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "LOCATION_NAME": "Walnut Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957098, "LONGITUDE": -75.224484, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 57.0, "POI_CBG": 421010085002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7898.0, "Total Transactions": 198.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.85, "MEDIAN_SPEND_PER_CUSTOMER": 34.37 }, "geometry": { "type": "Point", "coordinates": [ -75.224484, 39.957098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pfz-ch5", "LOCATION_NAME": "Pilgrim Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022764, "LONGITUDE": -75.219439, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 146.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 42.0, "Total Spend": 389.0, "Total Transactions": 60.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.63, "MEDIAN_SPEND_PER_CUSTOMER": 5.12 }, "geometry": { "type": "Point", "coordinates": [ -75.219439, 40.022764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-bc5", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963748, "LONGITUDE": -75.241226, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 14.0, "POI_CBG": 421010096002.0, "MEDIAN_DWELL": 593.0, "Total Spend": 2215.0, "Total Transactions": 107.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.17, "MEDIAN_SPEND_PER_CUSTOMER": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241226, 39.963748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.0471, "LONGITUDE": -75.142281, "DATE_RANGE_START": 2021, "Total Visits": 2461.0, "Total Visitors": 1599.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 38965.0, "Total Transactions": 1341.0, "Total Customers": 864.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.44, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142281, 40.0471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951061, "LONGITUDE": -75.168264, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 346.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 137.0, "Total Spend": 12119.0, "Total Transactions": 239.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.49, "MEDIAN_SPEND_PER_CUSTOMER": 42.52 }, "geometry": { "type": "Point", "coordinates": [ -75.168264, 39.951061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-wc5", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.086584, "LONGITUDE": -74.962146, "DATE_RANGE_START": 2021, "Total Visits": 351.0, "Total Visitors": 267.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 88.0, "Total Spend": 178.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.24, "MEDIAN_SPEND_PER_CUSTOMER": 37.24 }, "geometry": { "type": "Point", "coordinates": [ -74.962146, 40.086584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "LOCATION_NAME": "Dollar Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 205.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9567.0, "Total Transactions": 434.0, "Total Customers": 344.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.25, "MEDIAN_SPEND_PER_CUSTOMER": 20.44 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-sdv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915109, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 88.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 400.0, "Total Transactions": 31.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.81, "MEDIAN_SPEND_PER_CUSTOMER": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.915109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "LOCATION_NAME": "Chew Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 91.0, "POI_CBG": 421010252007.0, "MEDIAN_DWELL": 282.0, "Total Spend": 2988.0, "Total Transactions": 301.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.15, "MEDIAN_SPEND_PER_CUSTOMER": 12.44 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yd9", "LOCATION_NAME": "Tea Do", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954609, "LONGITUDE": -75.156246, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 236.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 5634.0, "Total Transactions": 561.0, "Total Customers": 504.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.31, "MEDIAN_SPEND_PER_CUSTOMER": 8.08 }, "geometry": { "type": "Point", "coordinates": [ -75.156246, 39.954609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 172.0, "POI_CBG": 421010268003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5601.0, "Total Transactions": 675.0, "Total Customers": 382.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 272.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5688.0, "Total Transactions": 912.0, "Total Customers": 594.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 7.34 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2021, "Total Visits": 198.0, "Total Visitors": 148.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1651.0, "Total Transactions": 74.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.55, "MEDIAN_SPEND_PER_CUSTOMER": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "LOCATION_NAME": "Pho Cyclo Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2021, "Total Visits": 1012.0, "Total Visitors": 637.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 46.0, "Total Spend": 1664.0, "Total Transactions": 60.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.49, "MEDIAN_SPEND_PER_CUSTOMER": 30.49 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012073, "LONGITUDE": -75.115248, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 105.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 393.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.4, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.115248, 40.012073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-6tv", "LOCATION_NAME": "Eternity Fashion", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951034, "LONGITUDE": -75.166595, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 124.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 119.0, "Total Spend": 13101.0, "Total Transactions": 294.0, "Total Customers": 255.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.99, "MEDIAN_SPEND_PER_CUSTOMER": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166595, 39.951034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.045974, "LONGITUDE": -75.070637, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 84.0, "POI_CBG": 421010314015.0, "MEDIAN_DWELL": 8.0, "Total Spend": 23498.0, "Total Transactions": 1974.0, "Total Customers": 1117.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.3, "MEDIAN_SPEND_PER_CUSTOMER": 11.32 }, "geometry": { "type": "Point", "coordinates": [ -75.070637, 40.045974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "LOCATION_NAME": "Beer Express", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2021, "Total Visits": 554.0, "Total Visitors": 456.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9351.0, "Total Transactions": 334.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.97, "MEDIAN_SPEND_PER_CUSTOMER": 36.21 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.959641, "LONGITUDE": -75.218508, "DATE_RANGE_START": 2021, "Total Visits": 434.0, "Total Visitors": 289.0, "POI_CBG": 421010104004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3758.0, "Total Transactions": 215.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.59, "MEDIAN_SPEND_PER_CUSTOMER": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.218508, 39.959641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-2kz", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.074571, "LONGITUDE": -75.032796, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 270.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 863.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.39, "MEDIAN_SPEND_PER_CUSTOMER": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032796, 40.074571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-kvf", "LOCATION_NAME": "Long In the Tooth", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.951536, "LONGITUDE": -75.174727, "DATE_RANGE_START": 2021, "Total Visits": 1408.0, "Total Visitors": 981.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 752.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.96, "MEDIAN_SPEND_PER_CUSTOMER": 73.96 }, "geometry": { "type": "Point", "coordinates": [ -75.174727, 39.951536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 167.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 676.0, "Total Transactions": 62.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.76, "MEDIAN_SPEND_PER_CUSTOMER": 9.12 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.917114, "LONGITUDE": -75.139852, "DATE_RANGE_START": 2021, "Total Visits": 783.0, "Total Visitors": 695.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 31229.0, "Total Transactions": 1597.0, "Total Customers": 1308.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.28, "MEDIAN_SPEND_PER_CUSTOMER": 17.61 }, "geometry": { "type": "Point", "coordinates": [ -75.139852, 39.917114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093157, "LONGITUDE": -75.032901, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 160.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 963.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.83 }, "geometry": { "type": "Point", "coordinates": [ -75.032901, 40.093157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj5-jqf", "LOCATION_NAME": "Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002083, "LONGITUDE": -75.132811, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": null, "Total Spend": 1108.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.59, "MEDIAN_SPEND_PER_CUSTOMER": 28.59 }, "geometry": { "type": "Point", "coordinates": [ -75.132811, 40.002083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "LOCATION_NAME": "Martinez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997199, "LONGITUDE": -75.175295, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010172022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 503.0, "Total Transactions": 72.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175295, 39.997199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p7w-x3q", "LOCATION_NAME": "Mobil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.035465, "LONGITUDE": -75.049236, "DATE_RANGE_START": 2021, "Total Visits": 1513.0, "Total Visitors": 792.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2003.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.24, "MEDIAN_SPEND_PER_CUSTOMER": 55.24 }, "geometry": { "type": "Point", "coordinates": [ -75.049236, 40.035465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.081571, "LONGITUDE": -75.172058, "DATE_RANGE_START": 2021, "Total Visits": 950.0, "Total Visitors": 704.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2114.0, "Total Transactions": 72.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.97, "MEDIAN_SPEND_PER_CUSTOMER": 35.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172058, 40.081571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-kvf", "LOCATION_NAME": "Caleb Meyer Studio", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.076278, "LONGITUDE": -75.207167, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 289.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 1142.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 149.04, "MEDIAN_SPEND_PER_CUSTOMER": 149.04 }, "geometry": { "type": "Point", "coordinates": [ -75.207167, 40.076278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2021, "Total Visits": 637.0, "Total Visitors": 415.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1087.0, "Total Transactions": 53.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.14, "MEDIAN_SPEND_PER_CUSTOMER": 13.14 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p75-9pv", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044008, "LONGITUDE": -75.017305, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 119.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 852.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.87, "MEDIAN_SPEND_PER_CUSTOMER": 178.47 }, "geometry": { "type": "Point", "coordinates": [ -75.017305, 40.044008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfv-649", "LOCATION_NAME": "Pelham Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043444, "LONGITUDE": -75.190762, "DATE_RANGE_START": 2021, "Total Visits": 838.0, "Total Visitors": 430.0, "POI_CBG": 421010237001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 324.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.73, "MEDIAN_SPEND_PER_CUSTOMER": 56.73 }, "geometry": { "type": "Point", "coordinates": [ -75.190762, 40.043444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.080322, "LONGITUDE": -75.171913, "DATE_RANGE_START": 2021, "Total Visits": 315.0, "Total Visitors": 227.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4525.0, "Total Transactions": 215.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.38, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171913, 40.080322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "LOCATION_NAME": "Barbuzzo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950022, "LONGITUDE": -75.162126, "DATE_RANGE_START": 2021, "Total Visits": 1993.0, "Total Visitors": 1456.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 10767.0, "Total Transactions": 122.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.72, "MEDIAN_SPEND_PER_CUSTOMER": 87.18 }, "geometry": { "type": "Point", "coordinates": [ -75.162126, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-87q", "LOCATION_NAME": "Kabuki Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953616, "LONGITUDE": -75.160916, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 162.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2994.0, "Total Transactions": 107.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.7, "MEDIAN_SPEND_PER_CUSTOMER": 34.83 }, "geometry": { "type": "Point", "coordinates": [ -75.160916, 39.953616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-tqf", "LOCATION_NAME": "Passeros Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949637, "LONGITUDE": -75.155037, "DATE_RANGE_START": 2021, "Total Visits": 420.0, "Total Visitors": 325.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 840.0, "Total Transactions": 117.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.2, "MEDIAN_SPEND_PER_CUSTOMER": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155037, 39.949637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-7wk", "LOCATION_NAME": "Fuel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953562, "LONGITUDE": -75.188092, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 107.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 237.0, "Total Spend": 14866.0, "Total Transactions": 544.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.24, "MEDIAN_SPEND_PER_CUSTOMER": 34.13 }, "geometry": { "type": "Point", "coordinates": [ -75.188092, 39.953562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@63s-dvr-hyv", "LOCATION_NAME": "A & C Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.925638, "LONGITUDE": -75.23463, "DATE_RANGE_START": 2021, "Total Visits": 158.0, "Total Visitors": 81.0, "POI_CBG": 421010063001.0, "MEDIAN_DWELL": 82.0, "Total Spend": 249.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.23463, 39.925638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pj8-tgk", "LOCATION_NAME": "New Ben City Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035691, "LONGITUDE": -75.100546, "DATE_RANGE_START": 2021, "Total Visits": 1446.0, "Total Visitors": 876.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 5146.0, "Total Transactions": 415.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.100546, 40.035691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvz-2p9", "LOCATION_NAME": "Chestnut Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956923, "LONGITUDE": -75.214531, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 74.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1568.0, "Total Transactions": 36.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214531, 39.956923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "LOCATION_NAME": "Green Farm", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 320.0, "POI_CBG": 421010357012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6703.0, "Total Transactions": 227.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.45, "MEDIAN_SPEND_PER_CUSTOMER": 32.29 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8f-7dv", "LOCATION_NAME": "Risque Video", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.00855, "LONGITUDE": -75.072772, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 239.0, "POI_CBG": 421010380002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 748.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 156.8, "MEDIAN_SPEND_PER_CUSTOMER": 156.8 }, "geometry": { "type": "Point", "coordinates": [ -75.072772, 40.00855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj5-3yv", "LOCATION_NAME": "Bravo Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010478, "LONGITUDE": -75.151556, "DATE_RANGE_START": 2021, "Total Visits": 389.0, "Total Visitors": 270.0, "POI_CBG": 421010201021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 350.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.76, "MEDIAN_SPEND_PER_CUSTOMER": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.151556, 40.010478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-p35", "LOCATION_NAME": "Fiore Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989223, "LONGITUDE": -75.127044, "DATE_RANGE_START": 2021, "Total Visits": 179.0, "Total Visitors": 153.0, "POI_CBG": 421010163001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2529.0, "Total Transactions": 122.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.51, "MEDIAN_SPEND_PER_CUSTOMER": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -75.127044, 39.989223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.04687, "LONGITUDE": -75.054304, "DATE_RANGE_START": 2021, "Total Visits": 2604.0, "Total Visitors": 2017.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 17142.0, "Total Transactions": 72.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 104.0, "MEDIAN_SPEND_PER_CUSTOMER": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054304, 40.04687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2021, "Total Visits": 599.0, "Total Visitors": 492.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 164.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.56, "MEDIAN_SPEND_PER_CUSTOMER": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "LOCATION_NAME": "Oyster House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 294.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 52.0, "Total Spend": 64433.0, "Total Transactions": 599.0, "Total Customers": 537.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.94, "MEDIAN_SPEND_PER_CUSTOMER": 99.89 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-y9z", "LOCATION_NAME": "The Pet Snobs Boutique", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.942339, "LONGITUDE": -75.157237, "DATE_RANGE_START": 2021, "Total Visits": 1339.0, "Total Visitors": 888.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 177.0, "Total Spend": 284.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.4, "MEDIAN_SPEND_PER_CUSTOMER": 59.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157237, 39.942339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2021, "Total Visits": 566.0, "Total Visitors": 477.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16946.0, "Total Transactions": 1115.0, "Total Customers": 871.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.25, "MEDIAN_SPEND_PER_CUSTOMER": 15.84 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pj6-6hq", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042687, "LONGITUDE": -75.109486, "DATE_RANGE_START": 2021, "Total Visits": 224.0, "Total Visitors": 86.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 468.0, "Total Spend": 4463.0, "Total Transactions": 64.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.94 }, "geometry": { "type": "Point", "coordinates": [ -75.109486, 40.042687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-hnq", "LOCATION_NAME": "Stock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952182, "LONGITUDE": -75.173159, "DATE_RANGE_START": 2021, "Total Visits": 4212.0, "Total Visitors": 2685.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 51.0, "Total Spend": 7214.0, "Total Transactions": 84.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.11, "MEDIAN_SPEND_PER_CUSTOMER": 62.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173159, 39.952182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm4-mkz", "LOCATION_NAME": "Benna's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93273, "LONGITUDE": -75.157747, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 181.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 6.0, "Total Spend": 43.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.79, "MEDIAN_SPEND_PER_CUSTOMER": 5.79 }, "geometry": { "type": "Point", "coordinates": [ -75.157747, 39.93273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "LOCATION_NAME": "Bardot Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 158.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 16833.0, "Total Transactions": 370.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.14, "MEDIAN_SPEND_PER_CUSTOMER": 52.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22g@63s-dw9-7nq", "LOCATION_NAME": "Admirals Club PHL Terminal A West", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.894648, "LONGITUDE": -75.229132, "DATE_RANGE_START": 2021, "Total Visits": 1709.0, "Total Visitors": 1415.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 466.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.79, "MEDIAN_SPEND_PER_CUSTOMER": 15.79 }, "geometry": { "type": "Point", "coordinates": [ -75.229132, 39.894648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 224.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 64.0, "Total Spend": 9233.0, "Total Transactions": 1172.0, "Total Customers": 852.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.16, "MEDIAN_SPEND_PER_CUSTOMER": 9.08 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-66k", "LOCATION_NAME": "Hatch and choop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94951, "LONGITUDE": -75.160766, "DATE_RANGE_START": 2021, "Total Visits": 907.0, "Total Visitors": 711.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1805.0, "Total Transactions": 124.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.6, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160766, 39.94951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23c@628-pmf-mrk", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952393, "LONGITUDE": -75.168002, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 99.0, "Total Spend": 8284.0, "Total Transactions": 513.0, "Total Customers": 425.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.58, "MEDIAN_SPEND_PER_CUSTOMER": 13.91 }, "geometry": { "type": "Point", "coordinates": [ -75.168002, 39.952393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 351.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8481.0, "Total Transactions": 704.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 11.77 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032391, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2021, "Total Visits": 480.0, "Total Visitors": 422.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 16797.0, "Total Transactions": 1198.0, "Total Customers": 931.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.01, "MEDIAN_SPEND_PER_CUSTOMER": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.032391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm9-tn5", "LOCATION_NAME": "Cafe Walnut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948274, "LONGITUDE": -75.152798, "DATE_RANGE_START": 2021, "Total Visits": 1950.0, "Total Visitors": 1370.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 97.0, "Total Spend": 1019.0, "Total Transactions": 126.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.29, "MEDIAN_SPEND_PER_CUSTOMER": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.152798, 39.948274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 220.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9321.0, "Total Transactions": 1169.0, "Total Customers": 718.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.63, "MEDIAN_SPEND_PER_CUSTOMER": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnw-nnq", "LOCATION_NAME": "Kung Fu Necktie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.970272, "LONGITUDE": -75.135925, "DATE_RANGE_START": 2021, "Total Visits": 468.0, "Total Visitors": 334.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 119.0, "Total Spend": 9043.0, "Total Transactions": 308.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 39.970272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj4-v4v", "LOCATION_NAME": "Taqueria La Raza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999423, "LONGITUDE": -75.134255, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 39.0, "Total Spend": 715.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.49, "MEDIAN_SPEND_PER_CUSTOMER": 35.49 }, "geometry": { "type": "Point", "coordinates": [ -75.134255, 39.999423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp5-7dv", "LOCATION_NAME": "Martha", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.982345, "LONGITUDE": -75.128218, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 98.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 24236.0, "Total Transactions": 446.0, "Total Customers": 408.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.8, "MEDIAN_SPEND_PER_CUSTOMER": 50.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128218, 39.982345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-wkz", "LOCATION_NAME": "Sassafras Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948812, "LONGITUDE": -75.144182, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 372.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 4159.0, "Total Transactions": 67.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.8, "MEDIAN_SPEND_PER_CUSTOMER": 66.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144182, 39.948812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnw-mzf", "LOCATION_NAME": "The Foodery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963893, "LONGITUDE": -75.14043, "DATE_RANGE_START": 2021, "Total Visits": 1053.0, "Total Visitors": 778.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 220.0, "Total Spend": 9425.0, "Total Transactions": 706.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.76, "MEDIAN_SPEND_PER_CUSTOMER": 26.44 }, "geometry": { "type": "Point", "coordinates": [ -75.14043, 39.963893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-73q", "LOCATION_NAME": "Dr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947797, "LONGITUDE": -75.193456, "DATE_RANGE_START": 2021, "Total Visits": 18897.0, "Total Visitors": 9649.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 127.0, "Total Spend": 5712.0, "Total Transactions": 1158.0, "Total Customers": 527.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.2, "MEDIAN_SPEND_PER_CUSTOMER": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193456, 39.947797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-89z", "LOCATION_NAME": "Dasiwa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969169, "LONGITUDE": -75.179702, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": null, "Total Spend": 6016.0, "Total Transactions": 131.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 42.77 }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.969169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "LOCATION_NAME": "Tavares Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 26.0, "POI_CBG": 421010247005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 145.0, "Total Transactions": 19.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.63, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-w49", "LOCATION_NAME": "The Bakeshop on 20th", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948428, "LONGITUDE": -75.174139, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 26.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 55.0, "Total Spend": 490.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.76, "MEDIAN_SPEND_PER_CUSTOMER": 17.76 }, "geometry": { "type": "Point", "coordinates": [ -75.174139, 39.948428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "LOCATION_NAME": "Cook and Shaker", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 29.0, "POI_CBG": 421010160001.0, "MEDIAN_DWELL": 1381.0, "Total Spend": 10804.0, "Total Transactions": 227.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.46, "MEDIAN_SPEND_PER_CUSTOMER": 55.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991684, "LONGITUDE": -75.154551, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1371.0, "Total Transactions": 115.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.85, "MEDIAN_SPEND_PER_CUSTOMER": 8.93 }, "geometry": { "type": "Point", "coordinates": [ -75.154551, 39.991684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgf-6zf", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.963777, "LONGITUDE": -75.203645, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 53.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7203.0, "Total Transactions": 57.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.0, "MEDIAN_SPEND_PER_CUSTOMER": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203645, 39.963777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "LOCATION_NAME": "Monster Pets", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2021, "Total Visits": 675.0, "Total Visitors": 504.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1108.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.97, "MEDIAN_SPEND_PER_CUSTOMER": 38.97 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p8t-6kz", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.083264, "LONGITUDE": -74.962395, "DATE_RANGE_START": 2021, "Total Visits": 13523.0, "Total Visitors": 8387.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 26.0, "Total Spend": 417114.0, "Total Transactions": 7551.0, "Total Customers": 4396.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.78, "MEDIAN_SPEND_PER_CUSTOMER": 51.31 }, "geometry": { "type": "Point", "coordinates": [ -74.962395, 40.083264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph8-q75", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978744, "LONGITUDE": -75.268394, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 64.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 45.0, "Total Spend": 963.0, "Total Transactions": 38.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.49, "MEDIAN_SPEND_PER_CUSTOMER": 28.89 }, "geometry": { "type": "Point", "coordinates": [ -75.268394, 39.978744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-rzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895169, "LONGITUDE": -75.227984, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 723.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.83, "MEDIAN_SPEND_PER_CUSTOMER": 87.83 }, "geometry": { "type": "Point", "coordinates": [ -75.227984, 39.895169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-5s5", "LOCATION_NAME": "Halal Gyro King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951797, "LONGITUDE": -75.15974, "DATE_RANGE_START": 2021, "Total Visits": 5444.0, "Total Visitors": 3573.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 4707.0, "Total Transactions": 327.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15974, 39.951797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081002, "LONGITUDE": -75.170911, "DATE_RANGE_START": 2021, "Total Visits": 394.0, "Total Visitors": 339.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11008.0, "Total Transactions": 702.0, "Total Customers": 599.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.170911, 40.081002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.966061, "LONGITUDE": -75.233588, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 222.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 29217.0, "Total Transactions": 628.0, "Total Customers": 353.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233588, 39.966061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2021, "Total Visits": 1160.0, "Total Visitors": 768.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 115779.0, "Total Transactions": 6656.0, "Total Customers": 2921.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.06, "MEDIAN_SPEND_PER_CUSTOMER": 25.08 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "LOCATION_NAME": "Beer Baron", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2021, "Total Visits": 2000.0, "Total Visitors": 1062.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 17428.0, "Total Transactions": 496.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 40.48 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.029702, "LONGITUDE": -75.035384, "DATE_RANGE_START": 2021, "Total Visits": 1568.0, "Total Visitors": 1134.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 752.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035384, 40.029702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2021, "Total Visits": 1239.0, "Total Visitors": 749.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 8020.0, "Total Transactions": 430.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 20.23 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.912498, "LONGITUDE": -75.15633, "DATE_RANGE_START": 2021, "Total Visits": 1408.0, "Total Visitors": 1165.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 9950.0, "Total Transactions": 181.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.78, "MEDIAN_SPEND_PER_CUSTOMER": 34.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15633, 39.912498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-rhq", "LOCATION_NAME": "Singh Tire Center", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.982111, "LONGITUDE": -75.138488, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010156001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 668.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.5, "MEDIAN_SPEND_PER_CUSTOMER": 47.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138488, 39.982111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgj-c5z", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979163, "LONGITUDE": -75.160092, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 177.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 162.0, "Total Spend": 5210.0, "Total Transactions": 432.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.160092, 39.979163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pgh-v2k", "LOCATION_NAME": "Crown Chicken and Biscuit", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986364, "LONGITUDE": -75.1559, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 191.0, "POI_CBG": 421010166002.0, "MEDIAN_DWELL": 109.0, "Total Spend": 241.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.42 }, "geometry": { "type": "Point", "coordinates": [ -75.1559, 39.986364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pm5-bzf", "LOCATION_NAME": "Mr Wish USA", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912953, "LONGITUDE": -75.153917, "DATE_RANGE_START": 2021, "Total Visits": 227.0, "Total Visitors": 203.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 706.0, "Total Transactions": 60.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.912953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pmb-ghq", "LOCATION_NAME": "Alexander Inn", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.946221, "LONGITUDE": -75.161018, "DATE_RANGE_START": 2021, "Total Visits": 1036.0, "Total Visitors": 625.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 340.0, "Total Spend": 2158.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 179.05, "MEDIAN_SPEND_PER_CUSTOMER": 179.05 }, "geometry": { "type": "Point", "coordinates": [ -75.161018, 39.946221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjj-wzf", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.073365, "LONGITUDE": -75.241949, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 155.0, "POI_CBG": 421010384001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 9429.0, "Total Transactions": 50.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 115.52, "MEDIAN_SPEND_PER_CUSTOMER": 144.75 }, "geometry": { "type": "Point", "coordinates": [ -75.241949, 40.073365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-2hq", "LOCATION_NAME": "Venus Video", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.917066, "LONGITUDE": -75.216791, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 315.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 6665.0, "Total Transactions": 110.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216791, 39.917066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "LOCATION_NAME": "Saks Off Fifth", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.088158, "LONGITUDE": -74.961632, "DATE_RANGE_START": 2021, "Total Visits": 1425.0, "Total Visitors": 1115.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 48136.0, "Total Transactions": 282.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.98, "MEDIAN_SPEND_PER_CUSTOMER": 84.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961632, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045678, "LONGITUDE": -75.11816, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 146.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1110.0, "Total Transactions": 74.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.95, "MEDIAN_SPEND_PER_CUSTOMER": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.11816, 40.045678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-tvz", "LOCATION_NAME": "Material Culture", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.01529, "LONGITUDE": -75.173584, "DATE_RANGE_START": 2021, "Total Visits": 768.0, "Total Visitors": 437.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 85.0, "Total Spend": 2361.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.84, "MEDIAN_SPEND_PER_CUSTOMER": 82.08 }, "geometry": { "type": "Point", "coordinates": [ -75.173584, 40.01529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2021, "Total Visits": 967.0, "Total Visitors": 711.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 313.0, "Total Spend": 25356.0, "Total Transactions": 663.0, "Total Customers": 599.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.912981, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5906.0, "Total Transactions": 103.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.19, "MEDIAN_SPEND_PER_CUSTOMER": 48.59 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.912981 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047033, "LONGITUDE": -74.993404, "DATE_RANGE_START": 2021, "Total Visits": 394.0, "Total Visitors": 277.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3847.0, "Total Transactions": 518.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -74.993404, 40.047033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9k-jvz", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.093114, "LONGITUDE": -75.019569, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 177.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4698.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.01, "MEDIAN_SPEND_PER_CUSTOMER": 74.01 }, "geometry": { "type": "Point", "coordinates": [ -75.019569, 40.093114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.112307, "LONGITUDE": -75.022895, "DATE_RANGE_START": 2021, "Total Visits": 938.0, "Total Visitors": 723.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6471.0, "Total Transactions": 322.0, "Total Customers": 251.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.97, "MEDIAN_SPEND_PER_CUSTOMER": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.022895, 40.112307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-835", "LOCATION_NAME": "Luhv Vegan Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953213, "LONGITUDE": -75.159384, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 2178.0, "Total Transactions": 141.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -75.159384, 39.953213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-6hq", "LOCATION_NAME": "Wrap Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949717, "LONGITUDE": -75.158951, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 284.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 5565.0, "Total Transactions": 112.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 38.75 }, "geometry": { "type": "Point", "coordinates": [ -75.158951, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "LOCATION_NAME": "So Korean Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2021, "Total Visits": 1277.0, "Total Visitors": 983.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 11539.0, "Total Transactions": 103.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.0, "MEDIAN_SPEND_PER_CUSTOMER": 96.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "LOCATION_NAME": "Hatville Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2021, "Total Visits": 508.0, "Total Visitors": 487.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1782.0, "Total Transactions": 143.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.99, "MEDIAN_SPEND_PER_CUSTOMER": 12.52 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8n5", "LOCATION_NAME": "Kai Japanese Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950968, "LONGITUDE": -75.157061, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 124.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3494.0, "Total Transactions": 98.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.28, "MEDIAN_SPEND_PER_CUSTOMER": 34.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157061, 39.950968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "LOCATION_NAME": "Mariposa Food Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947933, "LONGITUDE": -75.220657, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 81.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 78553.0, "Total Transactions": 2387.0, "Total Customers": 990.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.6, "MEDIAN_SPEND_PER_CUSTOMER": 45.05 }, "geometry": { "type": "Point", "coordinates": [ -75.220657, 39.947933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-28v", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978491, "LONGITUDE": -75.153508, "DATE_RANGE_START": 2021, "Total Visits": 757.0, "Total Visitors": 442.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 22668.0, "Total Transactions": 1566.0, "Total Customers": 871.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.62, "MEDIAN_SPEND_PER_CUSTOMER": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.978491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-j35", "LOCATION_NAME": "18th Street Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951252, "LONGITUDE": -75.170272, "DATE_RANGE_START": 2021, "Total Visits": 413.0, "Total Visitors": 356.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 370.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 26.79 }, "geometry": { "type": "Point", "coordinates": [ -75.170272, 39.951252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "LOCATION_NAME": "Express Fuel", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026572, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 158.0, "POI_CBG": 421010302004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7652.0, "Total Transactions": 384.0, "Total Customers": 255.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.61, "MEDIAN_SPEND_PER_CUSTOMER": 25.09 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "LOCATION_NAME": "Victoria's Secret", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090585, "LONGITUDE": -74.961564, "DATE_RANGE_START": 2021, "Total Visits": 494.0, "Total Visitors": 399.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 32.0, "Total Spend": 4313.0, "Total Transactions": 60.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.96, "MEDIAN_SPEND_PER_CUSTOMER": 41.46 }, "geometry": { "type": "Point", "coordinates": [ -74.961564, 40.090585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "LOCATION_NAME": "Urban Outfitters", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950066, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2021, "Total Visits": 666.0, "Total Visitors": 601.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 28609.0, "Total Transactions": 494.0, "Total Customers": 456.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.27, "MEDIAN_SPEND_PER_CUSTOMER": 49.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085593, "LONGITUDE": -74.962215, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 81.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8187.0, "Total Transactions": 172.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962215, 40.085593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.044593, "LONGITUDE": -75.101222, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 126.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 395.0, "Total Spend": 395.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.12, "MEDIAN_SPEND_PER_CUSTOMER": 16.16 }, "geometry": { "type": "Point", "coordinates": [ -75.101222, 40.044593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "LOCATION_NAME": "Navy Exchange", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2021, "Total Visits": 296.0, "Total Visitors": 91.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 272.0, "Total Spend": 12554.0, "Total Transactions": 327.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.35, "MEDIAN_SPEND_PER_CUSTOMER": 24.97 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pmb-c3q", "LOCATION_NAME": "Kin Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.944553, "LONGITUDE": -75.158728, "DATE_RANGE_START": 2021, "Total Visits": 967.0, "Total Visitors": 711.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 313.0, "Total Spend": 8336.0, "Total Transactions": 57.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.5, "MEDIAN_SPEND_PER_CUSTOMER": 98.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158728, 39.944553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-z75", "LOCATION_NAME": "LL Flooring", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.099015, "LONGITUDE": -75.011125, "DATE_RANGE_START": 2021, "Total Visits": 179.0, "Total Visitors": 112.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 120.0, "Total Spend": 7037.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 762.77, "MEDIAN_SPEND_PER_CUSTOMER": 1112.36 }, "geometry": { "type": "Point", "coordinates": [ -75.011125, 40.099015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.08189, "LONGITUDE": -75.037804, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 193.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 162.0, "Total Transactions": 24.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.3, "MEDIAN_SPEND_PER_CUSTOMER": 12.53 }, "geometry": { "type": "Point", "coordinates": [ -75.037804, 40.08189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-hbk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.996353, "LONGITUDE": -75.165984, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 112.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3636.0, "Total Transactions": 172.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.07, "MEDIAN_SPEND_PER_CUSTOMER": 22.87 }, "geometry": { "type": "Point", "coordinates": [ -75.165984, 39.996353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-jd9", "LOCATION_NAME": "The Children's Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950539, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2021, "Total Visits": 797.0, "Total Visitors": 697.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1346.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.48, "MEDIAN_SPEND_PER_CUSTOMER": 67.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2021, "Total Visits": 1723.0, "Total Visitors": 1029.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 22.0, "Total Spend": 92764.0, "Total Transactions": 2408.0, "Total Customers": 1024.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.05, "MEDIAN_SPEND_PER_CUSTOMER": 53.21 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065814, "LONGITUDE": -75.144222, "DATE_RANGE_START": 2021, "Total Visits": 575.0, "Total Visitors": 439.0, "POI_CBG": 421010266001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 816.0, "Total Transactions": 31.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.48, "MEDIAN_SPEND_PER_CUSTOMER": 26.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144222, 40.065814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-hwk", "LOCATION_NAME": "The Men's Wearhouse", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.079413, "LONGITUDE": -75.029146, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 84.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 273.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.23, "MEDIAN_SPEND_PER_CUSTOMER": 57.23 }, "geometry": { "type": "Point", "coordinates": [ -75.029146, 40.079413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kcq", "LOCATION_NAME": "Silver Legends", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950384, "LONGITUDE": -75.174268, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 126.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 27.0, "Total Spend": 496.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.0, "MEDIAN_SPEND_PER_CUSTOMER": 104.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174268, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.008742, "LONGITUDE": -75.17653, "DATE_RANGE_START": 2021, "Total Visits": 924.0, "Total Visitors": 585.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 11516.0, "Total Transactions": 260.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.97, "MEDIAN_SPEND_PER_CUSTOMER": 36.36 }, "geometry": { "type": "Point", "coordinates": [ -75.17653, 40.008742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 122.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 395.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.43, "MEDIAN_SPEND_PER_CUSTOMER": 15.21 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "LOCATION_NAME": "Roses Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2021, "Total Visits": 783.0, "Total Visitors": 461.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 260.0, "Total Spend": 825.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.69, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.991689, "LONGITUDE": -75.090963, "DATE_RANGE_START": 2021, "Total Visits": 3709.0, "Total Visitors": 2191.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 116374.0, "Total Transactions": 974.0, "Total Customers": 589.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.55, "MEDIAN_SPEND_PER_CUSTOMER": 58.26 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 39.991689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pj6-k4v", "LOCATION_NAME": "H Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.044993, "LONGITUDE": -75.117488, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 135050.0, "Total Transactions": 2504.0, "Total Customers": 1792.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.69, "MEDIAN_SPEND_PER_CUSTOMER": 47.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117488, 40.044993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "LOCATION_NAME": "Evergreen Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949185, "LONGITUDE": -75.147628, "DATE_RANGE_START": 2021, "Total Visits": 1532.0, "Total Visitors": 1253.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6343.0, "Total Transactions": 630.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.74, "MEDIAN_SPEND_PER_CUSTOMER": 17.33 }, "geometry": { "type": "Point", "coordinates": [ -75.147628, 39.949185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.962319, "LONGITUDE": -75.162376, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 131.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 222.0, "Total Spend": 19551.0, "Total Transactions": 1141.0, "Total Customers": 616.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.32, "MEDIAN_SPEND_PER_CUSTOMER": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.162376, 39.962319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967006, "LONGITUDE": -75.169701, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 229.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 65898.0, "Total Transactions": 4446.0, "Total Customers": 2160.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.49, "MEDIAN_SPEND_PER_CUSTOMER": 16.65 }, "geometry": { "type": "Point", "coordinates": [ -75.169701, 39.967006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-fvf", "LOCATION_NAME": "Jennifer Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.944398, "LONGITUDE": -75.216558, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 26.0, "POI_CBG": 421010078002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 518.0, "Total Transactions": 50.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.98, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.216558, 39.944398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgd-xdv", "LOCATION_NAME": "Smoked and Chopped", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.96613, "LONGITUDE": -75.191051, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 26.0, "POI_CBG": 421010109001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 468.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.5, "MEDIAN_SPEND_PER_CUSTOMER": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191051, 39.96613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-kmk", "LOCATION_NAME": "Philly Sunnyside Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974534, "LONGITUDE": -75.181976, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 29.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1108.0, "Total Transactions": 62.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.34, "MEDIAN_SPEND_PER_CUSTOMER": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.181976, 39.974534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "LOCATION_NAME": "Trattoria Carina", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010008011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4094.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.89, "MEDIAN_SPEND_PER_CUSTOMER": 110.89 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-t7q", "LOCATION_NAME": "Maria's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013401, "LONGITUDE": -75.135844, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010197002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2333.0, "Total Transactions": 107.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135844, 40.013401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "LOCATION_NAME": "Monde Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.952049, "LONGITUDE": -75.175756, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 379.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20480.0, "Total Transactions": 1329.0, "Total Customers": 656.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.56, "MEDIAN_SPEND_PER_CUSTOMER": 19.22 }, "geometry": { "type": "Point", "coordinates": [ -75.175756, 39.952049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-ks5", "LOCATION_NAME": "Oxford Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999792, "LONGITUDE": -75.129213, "DATE_RANGE_START": 2021, "Total Visits": 501.0, "Total Visitors": 205.0, "POI_CBG": 421010195013.0, "MEDIAN_DWELL": 453.0, "Total Spend": 655.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.58, "MEDIAN_SPEND_PER_CUSTOMER": 31.58 }, "geometry": { "type": "Point", "coordinates": [ -75.129213, 39.999792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2021, "Total Visits": 477.0, "Total Visitors": 391.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2735.0, "Total Transactions": 153.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.63, "MEDIAN_SPEND_PER_CUSTOMER": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmd-tvz", "LOCATION_NAME": "The Indie Shelf", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944748, "LONGITUDE": -75.180225, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 158.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1036.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.61, "MEDIAN_SPEND_PER_CUSTOMER": 71.61 }, "geometry": { "type": "Point", "coordinates": [ -75.180225, 39.944748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-228@628-pgb-4vz", "LOCATION_NAME": "Localhost", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.959817, "LONGITUDE": -75.161134, "DATE_RANGE_START": 2021, "Total Visits": 542.0, "Total Visitors": 286.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 278.0, "Total Spend": 102.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.32, "MEDIAN_SPEND_PER_CUSTOMER": 21.32 }, "geometry": { "type": "Point", "coordinates": [ -75.161134, 39.959817 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgh-cwk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.003103, "LONGITUDE": -75.162138, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 86.0, "POI_CBG": 421010202001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 229.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.4, "MEDIAN_SPEND_PER_CUSTOMER": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.162138, 40.003103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.995094, "LONGITUDE": -75.095646, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 305.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 352.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.7, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 39.995094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2021, "Total Visits": 1470.0, "Total Visitors": 945.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 7.0, "Total Spend": 596.0, "Total Transactions": 33.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.54, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp4-kfz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.987233, "LONGITUDE": -75.129676, "DATE_RANGE_START": 2021, "Total Visits": 351.0, "Total Visitors": 234.0, "POI_CBG": 421010161004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 989.0, "Total Transactions": 72.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.48, "MEDIAN_SPEND_PER_CUSTOMER": 16.34 }, "geometry": { "type": "Point", "coordinates": [ -75.129676, 39.987233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "LOCATION_NAME": "Bottle Bar East", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 74.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 39266.0, "Total Transactions": 1387.0, "Total Customers": 933.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-3yv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022096, "LONGITUDE": -75.125775, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 224.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2415.0, "Total Transactions": 72.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125775, 40.022096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2021, "Total Visits": 1141.0, "Total Visitors": 601.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 25563.0, "Total Transactions": 1246.0, "Total Customers": 556.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.63, "MEDIAN_SPEND_PER_CUSTOMER": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.008773, "LONGITUDE": -75.176588, "DATE_RANGE_START": 2021, "Total Visits": 924.0, "Total Visitors": 585.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 114322.0, "Total Transactions": 1747.0, "Total Customers": 1129.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.85, "MEDIAN_SPEND_PER_CUSTOMER": 33.45 }, "geometry": { "type": "Point", "coordinates": [ -75.176588, 40.008773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.087401, "LONGITUDE": -74.970519, "DATE_RANGE_START": 2021, "Total Visits": 1649.0, "Total Visitors": 1184.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1932.0, "Total Transactions": 50.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.82, "MEDIAN_SPEND_PER_CUSTOMER": 43.74 }, "geometry": { "type": "Point", "coordinates": [ -74.970519, 40.087401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8m-b8v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.016255, "LONGITUDE": -75.061394, "DATE_RANGE_START": 2021, "Total Visits": 504.0, "Total Visitors": 158.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": 459.0, "Total Spend": 869.0, "Total Transactions": 57.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 13.54 }, "geometry": { "type": "Point", "coordinates": [ -75.061394, 40.016255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j9z", "LOCATION_NAME": "Rouge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949689, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 191.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 174.0, "Total Spend": 13601.0, "Total Transactions": 153.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.94, "MEDIAN_SPEND_PER_CUSTOMER": 68.25 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.949689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pnw-w8v", "LOCATION_NAME": "Roar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.963353, "LONGITUDE": -75.1353, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 255.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 60.0, "Total Spend": 37796.0, "Total Transactions": 437.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1353, 39.963353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-hnq", "LOCATION_NAME": "The Ranstead Room", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952421, "LONGITUDE": -75.173819, "DATE_RANGE_START": 2021, "Total Visits": 2814.0, "Total Visitors": 1690.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 100.0, "Total Spend": 8284.0, "Total Transactions": 129.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.66, "MEDIAN_SPEND_PER_CUSTOMER": 53.33 }, "geometry": { "type": "Point", "coordinates": [ -75.173819, 39.952421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9w-q4v", "LOCATION_NAME": "Cafe Michelangelo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.12143, "LONGITUDE": -75.016007, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 346.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 7812.0, "Total Transactions": 103.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.28, "MEDIAN_SPEND_PER_CUSTOMER": 65.13 }, "geometry": { "type": "Point", "coordinates": [ -75.016007, 40.12143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "LOCATION_NAME": "Anastasi Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 167.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 16.0, "Total Spend": 27211.0, "Total Transactions": 406.0, "Total Customers": 334.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.34 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "LOCATION_NAME": "Nom Nom Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 110.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 103.0, "Total Spend": 3001.0, "Total Transactions": 95.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 33.92 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j7q", "LOCATION_NAME": "The Dandelion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951011, "LONGITUDE": -75.170702, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 282.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 40.0, "Total Spend": 2834.0, "Total Transactions": 31.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.42, "MEDIAN_SPEND_PER_CUSTOMER": 93.42 }, "geometry": { "type": "Point", "coordinates": [ -75.170702, 39.951011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-3wk", "LOCATION_NAME": "Cavanaughs Headhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942292, "LONGITUDE": -75.144972, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 370.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8955.0, "Total Transactions": 193.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.75, "MEDIAN_SPEND_PER_CUSTOMER": 47.69 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 39.942292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-tn5", "LOCATION_NAME": "Fat Salmon Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948136, "LONGITUDE": -75.153395, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 79.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 114.0, "Total Spend": 12248.0, "Total Transactions": 189.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.46, "MEDIAN_SPEND_PER_CUSTOMER": 70.11 }, "geometry": { "type": "Point", "coordinates": [ -75.153395, 39.948136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 93.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 737.0, "Total Transactions": 43.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.28, "MEDIAN_SPEND_PER_CUSTOMER": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-zmk", "LOCATION_NAME": "Colney Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036792, "LONGITUDE": -75.130653, "DATE_RANGE_START": 2021, "Total Visits": 1115.0, "Total Visitors": 523.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 314.0, "Total Spend": 3904.0, "Total Transactions": 193.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.4, "MEDIAN_SPEND_PER_CUSTOMER": 19.18 }, "geometry": { "type": "Point", "coordinates": [ -75.130653, 40.036792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "LOCATION_NAME": "Scoop Deville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949429, "LONGITUDE": -75.162851, "DATE_RANGE_START": 2021, "Total Visits": 375.0, "Total Visitors": 303.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 4664.0, "Total Transactions": 372.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.49, "MEDIAN_SPEND_PER_CUSTOMER": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -75.162851, 39.949429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmb-xyv", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955915, "LONGITUDE": -75.155905, "DATE_RANGE_START": 2021, "Total Visits": 396.0, "Total Visitors": 332.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 886.0, "Total Transactions": 93.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.33, "MEDIAN_SPEND_PER_CUSTOMER": 7.23 }, "geometry": { "type": "Point", "coordinates": [ -75.155905, 39.955915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 24718.0, "Total Transactions": 387.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.56, "MEDIAN_SPEND_PER_CUSTOMER": 54.39 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "LOCATION_NAME": "Moonlight Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 129.0, "POI_CBG": 421010265004.0, "MEDIAN_DWELL": 27.0, "Total Spend": 4021.0, "Total Transactions": 124.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-xnq", "LOCATION_NAME": "Dae Bak", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955289, "LONGITUDE": -75.156637, "DATE_RANGE_START": 2021, "Total Visits": 4088.0, "Total Visitors": 3143.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 6604.0, "Total Transactions": 107.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.72, "MEDIAN_SPEND_PER_CUSTOMER": 50.83 }, "geometry": { "type": "Point", "coordinates": [ -75.156637, 39.955289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-54v", "LOCATION_NAME": "Tyson Bees", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950018, "LONGITUDE": -75.191759, "DATE_RANGE_START": 2021, "Total Visits": 11031.0, "Total Visitors": 6496.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 96.0, "Total Spend": 6694.0, "Total Transactions": 294.0, "Total Customers": 189.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.02, "MEDIAN_SPEND_PER_CUSTOMER": 27.95 }, "geometry": { "type": "Point", "coordinates": [ -75.191759, 39.950018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmf-n5z", "LOCATION_NAME": "Di Bruno Bros", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954896, "LONGITUDE": -75.168695, "DATE_RANGE_START": 2021, "Total Visits": 1539.0, "Total Visitors": 988.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 204.0, "Total Spend": 79719.0, "Total Transactions": 3208.0, "Total Customers": 2031.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.94, "MEDIAN_SPEND_PER_CUSTOMER": 23.19 }, "geometry": { "type": "Point", "coordinates": [ -75.168695, 39.954896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-ks5", "LOCATION_NAME": "Born Yesterday", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950495, "LONGITUDE": -75.17265, "DATE_RANGE_START": 2021, "Total Visits": 1329.0, "Total Visitors": 828.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 120.0, "Total Spend": 7081.0, "Total Transactions": 122.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.5, "MEDIAN_SPEND_PER_CUSTOMER": 46.43 }, "geometry": { "type": "Point", "coordinates": [ -75.17265, 39.950495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "LOCATION_NAME": "George's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 84.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2433.0, "Total Transactions": 150.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.22, "MEDIAN_SPEND_PER_CUSTOMER": 19.72 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-gkz", "LOCATION_NAME": "Nifty Fifty's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079457, "LONGITUDE": -75.025402, "DATE_RANGE_START": 2021, "Total Visits": 1055.0, "Total Visitors": 947.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 8262.0, "Total Transactions": 260.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.74, "MEDIAN_SPEND_PER_CUSTOMER": 31.19 }, "geometry": { "type": "Point", "coordinates": [ -75.025402, 40.079457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-d35", "LOCATION_NAME": "Thomas'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970627, "LONGITUDE": -75.128561, "DATE_RANGE_START": 2021, "Total Visits": 174.0, "Total Visitors": 143.0, "POI_CBG": 421010143002.0, "MEDIAN_DWELL": 91.0, "Total Spend": 6815.0, "Total Transactions": 91.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.5, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128561, 39.970627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061832, "LONGITUDE": -75.084015, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 186.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3915.0, "Total Transactions": 628.0, "Total Customers": 291.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.19, "MEDIAN_SPEND_PER_CUSTOMER": 8.85 }, "geometry": { "type": "Point", "coordinates": [ -75.084015, 40.061832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm9-y9z", "LOCATION_NAME": "Urban Princess Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941138, "LONGITUDE": -75.149398, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 146.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2174.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.6, "MEDIAN_SPEND_PER_CUSTOMER": 50.22 }, "geometry": { "type": "Point", "coordinates": [ -75.149398, 39.941138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnw-nh5", "LOCATION_NAME": "Sancho Pistolas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969014, "LONGITUDE": -75.135132, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 88.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 78.0, "Total Spend": 4079.0, "Total Transactions": 60.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.4, "MEDIAN_SPEND_PER_CUSTOMER": 66.48 }, "geometry": { "type": "Point", "coordinates": [ -75.135132, 39.969014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2021, "Total Visits": 919.0, "Total Visitors": 527.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 22179.0, "Total Transactions": 979.0, "Total Customers": 618.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.2, "MEDIAN_SPEND_PER_CUSTOMER": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-35z", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957614, "LONGITUDE": -75.214932, "DATE_RANGE_START": 2021, "Total Visits": 346.0, "Total Visitors": 251.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 21318.0, "Total Transactions": 993.0, "Total Customers": 549.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.98, "MEDIAN_SPEND_PER_CUSTOMER": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.214932, 39.957614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph6-p5f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.977589, "LONGITUDE": -75.227009, "DATE_RANGE_START": 2021, "Total Visits": 1434.0, "Total Visitors": 1017.0, "POI_CBG": 421010118003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1456.0, "Total Transactions": 43.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.98, "MEDIAN_SPEND_PER_CUSTOMER": 34.21 }, "geometry": { "type": "Point", "coordinates": [ -75.227009, 39.977589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "LOCATION_NAME": "BP", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032516, "LONGITUDE": -75.084558, "DATE_RANGE_START": 2021, "Total Visits": 1563.0, "Total Visitors": 919.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 479.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.76, "MEDIAN_SPEND_PER_CUSTOMER": 11.76 }, "geometry": { "type": "Point", "coordinates": [ -75.084558, 40.032516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2021, "Total Visits": 601.0, "Total Visitors": 377.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 303.0, "Total Spend": 81843.0, "Total Transactions": 2967.0, "Total Customers": 1494.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.88, "MEDIAN_SPEND_PER_CUSTOMER": 34.82 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974271, "LONGITUDE": -75.11985, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 360.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 666.0, "Total Transactions": 36.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.4, "MEDIAN_SPEND_PER_CUSTOMER": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.11985, 39.974271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-8y9", "LOCATION_NAME": "Dollar Days Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.952899, "LONGITUDE": -75.218099, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4196.0, "Total Transactions": 229.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.8, "MEDIAN_SPEND_PER_CUSTOMER": 17.29 }, "geometry": { "type": "Point", "coordinates": [ -75.218099, 39.952899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yd9", "LOCATION_NAME": "Tai Lake", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954672, "LONGITUDE": -75.156344, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 105.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7833.0, "Total Transactions": 72.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 95.3, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156344, 39.954672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "LOCATION_NAME": "Cuba Libre Restaurant & Rum Bar Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 196.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 72.0, "Total Spend": 34810.0, "Total Transactions": 406.0, "Total Customers": 394.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.63, "MEDIAN_SPEND_PER_CUSTOMER": 66.36 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "LOCATION_NAME": "Penang", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954047, "LONGITUDE": -75.155868, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 229.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 13582.0, "Total Transactions": 277.0, "Total Customers": 255.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.4, "MEDIAN_SPEND_PER_CUSTOMER": 39.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155868, 39.954047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "LOCATION_NAME": "Spring Garden Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2021, "Total Visits": 468.0, "Total Visitors": 356.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10383.0, "Total Transactions": 210.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.02, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvp-bff", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945197, "LONGITUDE": -75.238981, "DATE_RANGE_START": 2021, "Total Visits": 189.0, "Total Visitors": 119.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 11.0, "Total Spend": 630.0, "Total Transactions": 31.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.08, "MEDIAN_SPEND_PER_CUSTOMER": 20.08 }, "geometry": { "type": "Point", "coordinates": [ -75.238981, 39.945197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj8-hwk", "LOCATION_NAME": "Oxford Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.019429, "LONGITUDE": -75.084382, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010301002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1842.0, "Total Transactions": 53.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.27, "MEDIAN_SPEND_PER_CUSTOMER": 34.41 }, "geometry": { "type": "Point", "coordinates": [ -75.084382, 40.019429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "LOCATION_NAME": "Malelani Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05294, "LONGITUDE": -75.186129, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 184.0, "Total Spend": 3125.0, "Total Transactions": 146.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.96, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.186129, 40.05294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-p35", "LOCATION_NAME": "Jhoandra Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007461, "LONGITUDE": -75.138722, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010199001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 800.0, "Total Transactions": 33.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.36, "MEDIAN_SPEND_PER_CUSTOMER": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.138722, 40.007461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "LOCATION_NAME": "Pizzeria Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 29.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 468.0, "Total Spend": 1317.0, "Total Transactions": 84.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 17.91 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "LOCATION_NAME": "The Quick Fixx", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4809.0, "Total Transactions": 236.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-xqz", "LOCATION_NAME": "Ambassador", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97078, "LONGITUDE": -75.147954, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 60.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3986.0, "Total Transactions": 74.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.88, "MEDIAN_SPEND_PER_CUSTOMER": 110.76 }, "geometry": { "type": "Point", "coordinates": [ -75.147954, 39.97078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6hq", "LOCATION_NAME": "Milkboy Philadelphia", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949997, "LONGITUDE": -75.158798, "DATE_RANGE_START": 2021, "Total Visits": 573.0, "Total Visitors": 437.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 4238.0, "Total Transactions": 55.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.4, "MEDIAN_SPEND_PER_CUSTOMER": 44.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158798, 39.949997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-hdv", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009459, "LONGITUDE": -75.174254, "DATE_RANGE_START": 2021, "Total Visits": 2463.0, "Total Visitors": 1463.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1903.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.17, "MEDIAN_SPEND_PER_CUSTOMER": 71.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174254, 40.009459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgm-3qz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.008377, "LONGITUDE": -75.193545, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 265.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3937.0, "Total Transactions": 389.0, "Total Customers": 303.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.68, "MEDIAN_SPEND_PER_CUSTOMER": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.193545, 40.008377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 167.0, "POI_CBG": 421010191003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 482.0, "Total Transactions": 33.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.19, "MEDIAN_SPEND_PER_CUSTOMER": 7.64 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.930286, "LONGITUDE": -75.155935, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 93.0, "POI_CBG": 421010028013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 23836.0, "Total Transactions": 1174.0, "Total Customers": 549.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.46, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155935, 39.930286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.921602, "LONGITUDE": -75.193164, "DATE_RANGE_START": 2021, "Total Visits": 2308.0, "Total Visitors": 1649.0, "POI_CBG": 421010036003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 800.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.05, "MEDIAN_SPEND_PER_CUSTOMER": 35.03 }, "geometry": { "type": "Point", "coordinates": [ -75.193164, 39.921602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "LOCATION_NAME": "OfficeMax", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.043545, "LONGITUDE": -75.054368, "DATE_RANGE_START": 2021, "Total Visits": 1535.0, "Total Visitors": 1263.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 14612.0, "Total Transactions": 377.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.56, "MEDIAN_SPEND_PER_CUSTOMER": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.054368, 40.043545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgm-28v", "LOCATION_NAME": "East Falls Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.007838, "LONGITUDE": -75.191777, "DATE_RANGE_START": 2021, "Total Visits": 7050.0, "Total Visitors": 5642.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 272.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.38, "MEDIAN_SPEND_PER_CUSTOMER": 56.94 }, "geometry": { "type": "Point", "coordinates": [ -75.191777, 40.007838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-hh5", "LOCATION_NAME": "Condesa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952583, "LONGITUDE": -75.171276, "DATE_RANGE_START": 2021, "Total Visits": 2155.0, "Total Visitors": 1439.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 199.0, "Total Spend": 6392.0, "Total Transactions": 143.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.28, "MEDIAN_SPEND_PER_CUSTOMER": 33.99 }, "geometry": { "type": "Point", "coordinates": [ -75.171276, 39.952583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 353.0, "POI_CBG": 421010096001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5110.0, "Total Transactions": 270.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.83, "MEDIAN_SPEND_PER_CUSTOMER": 16.46 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "LOCATION_NAME": "A Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950427, "LONGITUDE": -75.170427, "DATE_RANGE_START": 2021, "Total Visits": 788.0, "Total Visitors": 594.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 477.0, "Total Spend": 7288.0, "Total Transactions": 506.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.23, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170427, 39.950427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-skf", "LOCATION_NAME": "Max Brenner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949114, "LONGITUDE": -75.166283, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 196.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 11.0, "Total Spend": 16275.0, "Total Transactions": 334.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.33, "MEDIAN_SPEND_PER_CUSTOMER": 50.12 }, "geometry": { "type": "Point", "coordinates": [ -75.166283, 39.949114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-y5f", "LOCATION_NAME": "Neighborhood Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9409, "LONGITUDE": -75.147453, "DATE_RANGE_START": 2021, "Total Visits": 613.0, "Total Visitors": 456.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 7351.0, "Total Transactions": 184.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.11, "MEDIAN_SPEND_PER_CUSTOMER": 47.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147453, 39.9409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@628-pmb-835", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95246, "LONGITUDE": -75.158356, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 770.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.03, "MEDIAN_SPEND_PER_CUSTOMER": 44.03 }, "geometry": { "type": "Point", "coordinates": [ -75.158356, 39.95246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "LOCATION_NAME": "US Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 198.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3040.0, "Total Transactions": 143.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.68 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.033829, "LONGITUDE": -75.072583, "DATE_RANGE_START": 2021, "Total Visits": 809.0, "Total Visitors": 575.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 16772.0, "Total Transactions": 623.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.01, "MEDIAN_SPEND_PER_CUSTOMER": 30.17 }, "geometry": { "type": "Point", "coordinates": [ -75.072583, 40.033829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2021, "Total Visits": 487.0, "Total Visitors": 387.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2335.0, "Total Transactions": 55.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.54, "MEDIAN_SPEND_PER_CUSTOMER": 33.21 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2021, "Total Visits": 315.0, "Total Visitors": 289.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 37.0, "Total Spend": 48.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.12, "MEDIAN_SPEND_PER_CUSTOMER": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmc-qmk", "LOCATION_NAME": "Federal Donuts 2nd Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932221, "LONGITUDE": -75.147485, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 4071.0, "Total Transactions": 317.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 10.36 }, "geometry": { "type": "Point", "coordinates": [ -75.147485, 39.932221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94836, "LONGITUDE": -75.206367, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 24.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6140.0, "Total Transactions": 900.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.92, "MEDIAN_SPEND_PER_CUSTOMER": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -75.206367, 39.94836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.060394, "LONGITUDE": -75.164248, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 95.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 33182.0, "Total Transactions": 592.0, "Total Customers": 489.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.5, "MEDIAN_SPEND_PER_CUSTOMER": 36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164248, 40.060394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-j35", "LOCATION_NAME": "Paddy's Old City Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95373, "LONGITUDE": -75.143964, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 72.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 54.0, "Total Spend": 6973.0, "Total Transactions": 136.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.94, "MEDIAN_SPEND_PER_CUSTOMER": 50.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143964, 39.95373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-ty9", "LOCATION_NAME": "La Famiglia Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949369, "LONGITUDE": -75.142406, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 105.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1606.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 151.45, "MEDIAN_SPEND_PER_CUSTOMER": 151.45 }, "geometry": { "type": "Point", "coordinates": [ -75.142406, 39.949369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "LOCATION_NAME": "Reyes Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.961179, "LONGITUDE": -75.244847, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010083011.0, "MEDIAN_DWELL": null, "Total Spend": 916.0, "Total Transactions": 117.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.244847, 39.961179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-2tv", "LOCATION_NAME": "Tacony Latin Flavor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020803, "LONGITUDE": -75.053805, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010323002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 18.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.85, "MEDIAN_SPEND_PER_CUSTOMER": 3.85 }, "geometry": { "type": "Point", "coordinates": [ -75.053805, 40.020803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-cqz", "LOCATION_NAME": "Little Morocco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925459, "LONGITUDE": -75.170748, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 144.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.69, "MEDIAN_SPEND_PER_CUSTOMER": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.170748, 39.925459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-7dv", "LOCATION_NAME": "The Monkey Club", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.982488, "LONGITUDE": -75.128336, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 33.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 123.0, "Total Spend": 131.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.91, "MEDIAN_SPEND_PER_CUSTOMER": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.128336, 39.982488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "LOCATION_NAME": "Boostin' Bowls", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8063.0, "Total Transactions": 504.0, "Total Customers": 344.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.68, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj5-435", "LOCATION_NAME": "1 Stop Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009415, "LONGITUDE": -75.15067, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 532.0, "Total Transactions": 29.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.83, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15067, 40.009415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-t7q", "LOCATION_NAME": "Robert Lance Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949012, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 60.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2305.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 302.4, "MEDIAN_SPEND_PER_CUSTOMER": 302.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "LOCATION_NAME": "Spring Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 57.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 206.0, "Total Spend": 5122.0, "Total Transactions": 215.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.28, "MEDIAN_SPEND_PER_CUSTOMER": 23.55 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "LOCATION_NAME": "Time Out Sports Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 69.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 73.0, "Total Spend": 3343.0, "Total Transactions": 79.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "LOCATION_NAME": "Bourbon & Branch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 69.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 4226.0, "Total Transactions": 76.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.03, "MEDIAN_SPEND_PER_CUSTOMER": 45.96 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "LOCATION_NAME": "Cappuccio's Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 74.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2112.0, "Total Transactions": 50.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.03, "MEDIAN_SPEND_PER_CUSTOMER": 22.06 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "LOCATION_NAME": "Hilltown Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 91.0, "POI_CBG": 421010213004.0, "MEDIAN_DWELL": 152.0, "Total Spend": 40337.0, "Total Transactions": 778.0, "Total Customers": 582.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.89, "MEDIAN_SPEND_PER_CUSTOMER": 52.89 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.080948, "LONGITUDE": -75.025099, "DATE_RANGE_START": 2021, "Total Visits": 9045.0, "Total Visitors": 5955.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 185002.0, "Total Transactions": 2924.0, "Total Customers": 1950.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.04, "MEDIAN_SPEND_PER_CUSTOMER": 37.74 }, "geometry": { "type": "Point", "coordinates": [ -75.025099, 40.080948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2021, "Total Visits": 1826.0, "Total Visitors": 1079.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 85345.0, "Total Transactions": 9986.0, "Total Customers": 4334.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "LOCATION_NAME": "Beer Love", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 224.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 4465.0, "Total Transactions": 160.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.18, "MEDIAN_SPEND_PER_CUSTOMER": 28.61 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-g8v", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.06232, "LONGITUDE": -75.152136, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 220.0, "POI_CBG": 421010265001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6443.0, "Total Transactions": 251.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152136, 40.06232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.012396, "LONGITUDE": -75.112446, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 274.0, "POI_CBG": 421010289012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 24742.0, "Total Transactions": 1107.0, "Total Customers": 644.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112446, 40.012396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "LOCATION_NAME": "ALDO", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.952094, "LONGITUDE": -75.167619, "DATE_RANGE_START": 2021, "Total Visits": 735.0, "Total Visitors": 594.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 16.0, "Total Spend": 7498.0, "Total Transactions": 88.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167619, 39.952094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2021, "Total Visits": 1136.0, "Total Visitors": 838.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 17935.0, "Total Transactions": 344.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.57, "MEDIAN_SPEND_PER_CUSTOMER": 43.14 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.92482, "LONGITUDE": -75.146253, "DATE_RANGE_START": 2021, "Total Visits": 8618.0, "Total Visitors": 5043.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 686651.0, "Total Transactions": 11988.0, "Total Customers": 7427.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.76, "MEDIAN_SPEND_PER_CUSTOMER": 58.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146253, 39.92482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgk-28v", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.993135, "LONGITUDE": -75.152859, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 131.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 225.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.4, "MEDIAN_SPEND_PER_CUSTOMER": 47.16 }, "geometry": { "type": "Point", "coordinates": [ -75.152859, 39.993135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "LOCATION_NAME": "Old Nelson Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951893, "LONGITUDE": -75.173688, "DATE_RANGE_START": 2021, "Total Visits": 468.0, "Total Visitors": 310.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 304.0, "Total Spend": 49355.0, "Total Transactions": 4379.0, "Total Customers": 2158.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.54, "MEDIAN_SPEND_PER_CUSTOMER": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -75.173688, 39.951893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "LOCATION_NAME": "Kashmir Garden Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 91.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 8746.0, "Total Transactions": 227.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.32, "MEDIAN_SPEND_PER_CUSTOMER": 30.7 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "LOCATION_NAME": "Beauty Point", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.980086, "LONGITUDE": -75.235032, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 67.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 132.0, "Total Spend": 5911.0, "Total Transactions": 165.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235032, 39.980086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nyv", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.931469, "LONGITUDE": -75.144907, "DATE_RANGE_START": 2021, "Total Visits": 494.0, "Total Visitors": 413.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 8025.0, "Total Transactions": 29.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 181.36, "MEDIAN_SPEND_PER_CUSTOMER": 181.36 }, "geometry": { "type": "Point", "coordinates": [ -75.144907, 39.931469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2021, "Total Visits": 609.0, "Total Visitors": 353.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 18686.0, "Total Transactions": 294.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.62, "MEDIAN_SPEND_PER_CUSTOMER": 41.05 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "LOCATION_NAME": "Jomici Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2021, "Total Visits": 403.0, "Total Visitors": 265.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 151.0, "Total Spend": 201.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2021, "Total Visits": 1339.0, "Total Visitors": 905.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 131728.0, "Total Transactions": 7544.0, "Total Customers": 3296.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.44, "MEDIAN_SPEND_PER_CUSTOMER": 25.19 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-pmb-8qf", "LOCATION_NAME": "Jefferson Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950512, "LONGITUDE": -75.156532, "DATE_RANGE_START": 2021, "Total Visits": 2353.0, "Total Visitors": 1601.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 77.0, "Total Spend": 1143.0, "Total Transactions": 57.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.39, "MEDIAN_SPEND_PER_CUSTOMER": 18.39 }, "geometry": { "type": "Point", "coordinates": [ -75.156532, 39.950512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnt-435", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.974417, "LONGITUDE": -75.121241, "DATE_RANGE_START": 2021, "Total Visits": 2267.0, "Total Visitors": 1432.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 11606.0, "Total Transactions": 117.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.0, "MEDIAN_SPEND_PER_CUSTOMER": 57.78 }, "geometry": { "type": "Point", "coordinates": [ -75.121241, 39.974417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.00641, "LONGITUDE": -75.099483, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 162.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12365.0, "Total Transactions": 690.0, "Total Customers": 496.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.59, "MEDIAN_SPEND_PER_CUSTOMER": 18.68 }, "geometry": { "type": "Point", "coordinates": [ -75.099483, 40.00641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2021, "Total Visits": 1675.0, "Total Visitors": 1160.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2979.0, "Total Transactions": 95.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.03, "MEDIAN_SPEND_PER_CUSTOMER": 30.29 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.043988, "LONGITUDE": -75.054077, "DATE_RANGE_START": 2021, "Total Visits": 3267.0, "Total Visitors": 2351.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1469.0, "Total Transactions": 38.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.51, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054077, 40.043988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.923624, "LONGITUDE": -75.139475, "DATE_RANGE_START": 2021, "Total Visits": 520.0, "Total Visitors": 444.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 14070.0, "Total Transactions": 217.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.94, "MEDIAN_SPEND_PER_CUSTOMER": 53.24 }, "geometry": { "type": "Point", "coordinates": [ -75.139475, 39.923624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgh-h3q", "LOCATION_NAME": "Localhost", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.008715, "LONGITUDE": -75.176539, "DATE_RANGE_START": 2021, "Total Visits": 924.0, "Total Visitors": 585.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 169.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.85, "MEDIAN_SPEND_PER_CUSTOMER": 26.14 }, "geometry": { "type": "Point", "coordinates": [ -75.176539, 40.008715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-nwk", "LOCATION_NAME": "Centro Musical", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.991818, "LONGITUDE": -75.139984, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 282.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 155.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 39.991818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmd-vj9", "LOCATION_NAME": "Nature's Gallery Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.950794, "LONGITUDE": -75.177008, "DATE_RANGE_START": 2021, "Total Visits": 1482.0, "Total Visitors": 1005.0, "POI_CBG": 421010008031.0, "MEDIAN_DWELL": 347.0, "Total Spend": 1366.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.0, "MEDIAN_SPEND_PER_CUSTOMER": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177008, 39.950794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pmb-7qz", "LOCATION_NAME": "Little Nonna's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94777, "LONGITUDE": -75.162061, "DATE_RANGE_START": 2021, "Total Visits": 850.0, "Total Visitors": 599.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 61.0, "Total Spend": 1466.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.1, "MEDIAN_SPEND_PER_CUSTOMER": 93.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162061, 39.94777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-n5z", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954145, "LONGITUDE": -75.201008, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 141.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2643.0, "Total Transactions": 129.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.06, "MEDIAN_SPEND_PER_CUSTOMER": 16.31 }, "geometry": { "type": "Point", "coordinates": [ -75.201008, 39.954145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jgk", "LOCATION_NAME": "Dig Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951075, "LONGITUDE": -75.167966, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 169.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 863.0, "Total Spend": 604.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.62, "MEDIAN_SPEND_PER_CUSTOMER": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.167966, 39.951075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm6-jn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921871, "LONGITUDE": -75.14714, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 907.0, "Total Transactions": 136.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.03, "MEDIAN_SPEND_PER_CUSTOMER": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.14714, 39.921871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pmb-7qz", "LOCATION_NAME": "Voyeur Nightclub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948348, "LONGITUDE": -75.161699, "DATE_RANGE_START": 2021, "Total Visits": 487.0, "Total Visitors": 327.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 55.0, "Total Spend": 113188.0, "Total Transactions": 3890.0, "Total Customers": 1971.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161699, 39.948348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnz-jgk", "LOCATION_NAME": "Bonks Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986368, "LONGITUDE": -75.094326, "DATE_RANGE_START": 2021, "Total Visits": 344.0, "Total Visitors": 196.0, "POI_CBG": 421010378002.0, "MEDIAN_DWELL": 175.0, "Total Spend": 8498.0, "Total Transactions": 88.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.52, "MEDIAN_SPEND_PER_CUSTOMER": 78.29 }, "geometry": { "type": "Point", "coordinates": [ -75.094326, 39.986368 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-9j9", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953347, "LONGITUDE": -75.165403, "DATE_RANGE_START": 2021, "Total Visits": 1909.0, "Total Visitors": 1301.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 91.0, "Total Spend": 2235.0, "Total Transactions": 165.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.165403, 39.953347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5zz", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949143, "LONGITUDE": -75.1591, "DATE_RANGE_START": 2021, "Total Visits": 2876.0, "Total Visitors": 1916.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 102.0, "Total Spend": 86.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.04, "MEDIAN_SPEND_PER_CUSTOMER": 18.04 }, "geometry": { "type": "Point", "coordinates": [ -75.1591, 39.949143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "LOCATION_NAME": "Makkah Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 165.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 14712.0, "Total Transactions": 857.0, "Total Customers": 425.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.9, "MEDIAN_SPEND_PER_CUSTOMER": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-x3q", "LOCATION_NAME": "Manakeesh Cafe Bakery & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95498, "LONGITUDE": -75.211488, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 155.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 464.0, "Total Spend": 7898.0, "Total Transactions": 303.0, "Total Customers": 239.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 23.24 }, "geometry": { "type": "Point", "coordinates": [ -75.211488, 39.95498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 81.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10996.0, "Total Transactions": 778.0, "Total Customers": 582.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2021, "Total Visits": 1332.0, "Total Visitors": 1017.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 26991.0, "Total Transactions": 2332.0, "Total Customers": 1575.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 11.78 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.014677, "LONGITUDE": -75.130343, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 220.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6657.0, "Total Transactions": 773.0, "Total Customers": 532.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.21, "MEDIAN_SPEND_PER_CUSTOMER": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.014677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm6-gkz", "LOCATION_NAME": "South View Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919441, "LONGITUDE": -75.153896, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010042024.0, "MEDIAN_DWELL": null, "Total Spend": 927.0, "Total Transactions": 64.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.27 }, "geometry": { "type": "Point", "coordinates": [ -75.153896, 39.919441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025386, "LONGITUDE": -75.223869, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4930.0, "Total Transactions": 122.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.52, "MEDIAN_SPEND_PER_CUSTOMER": 38.52 }, "geometry": { "type": "Point", "coordinates": [ -75.223869, 40.025386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-tgk", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035436, "LONGITUDE": -75.099754, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 74.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2126.0, "Total Transactions": 179.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.26, "MEDIAN_SPEND_PER_CUSTOMER": 11.59 }, "geometry": { "type": "Point", "coordinates": [ -75.099754, 40.035436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pfz-bzf", "LOCATION_NAME": "Gary Mann Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.025665, "LONGITUDE": -75.223674, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5217.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 1092.9, "MEDIAN_SPEND_PER_CUSTOMER": 1092.9 }, "geometry": { "type": "Point", "coordinates": [ -75.223674, 40.025665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-p9s-2tv", "LOCATION_NAME": "Momma Mia's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.12023, "LONGITUDE": -74.995203, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 53.0, "POI_CBG": 421010365021.0, "MEDIAN_DWELL": 22.0, "Total Spend": 4170.0, "Total Transactions": 129.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.51, "MEDIAN_SPEND_PER_CUSTOMER": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995203, 40.12023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "LOCATION_NAME": "Gallo's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057623, "LONGITUDE": -75.044487, "DATE_RANGE_START": 2021, "Total Visits": 625.0, "Total Visitors": 494.0, "POI_CBG": 421010333001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 946.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.67, "MEDIAN_SPEND_PER_CUSTOMER": 85.67 }, "geometry": { "type": "Point", "coordinates": [ -75.044487, 40.057623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgd-z9f", "LOCATION_NAME": "Bombay Dhabba Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956797, "LONGITUDE": -75.194135, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 64.0, "Total Spend": 2330.0, "Total Transactions": 141.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.194135, 39.956797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2021, "Total Visits": 1053.0, "Total Visitors": 687.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 16.0, "Total Spend": 14091.0, "Total Transactions": 399.0, "Total Customers": 360.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.75, "MEDIAN_SPEND_PER_CUSTOMER": 33.94 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 126.0, "POI_CBG": 421010278002.0, "MEDIAN_DWELL": 671.0, "Total Spend": 1167.0, "Total Transactions": 88.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.59, "MEDIAN_SPEND_PER_CUSTOMER": 15.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2021, "Total Visits": 852.0, "Total Visitors": 520.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 404.0, "Total Spend": 13485.0, "Total Transactions": 291.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.8, "MEDIAN_SPEND_PER_CUSTOMER": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 177.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 11577.0, "Total Transactions": 764.0, "Total Customers": 604.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.82, "MEDIAN_SPEND_PER_CUSTOMER": 14.02 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 184.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 844.0, "Total Spend": 7041.0, "Total Transactions": 1024.0, "Total Customers": 628.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 6.67 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "LOCATION_NAME": "Luigi's Pizza Fresca", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 251.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 45.0, "Total Spend": 1138.0, "Total Transactions": 57.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.06, "MEDIAN_SPEND_PER_CUSTOMER": 22.03 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "LOCATION_NAME": "Drinkers Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952101, "LONGITUDE": -75.17208, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 203.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 68171.0, "Total Transactions": 1854.0, "Total Customers": 1253.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.06, "MEDIAN_SPEND_PER_CUSTOMER": 34.86 }, "geometry": { "type": "Point", "coordinates": [ -75.17208, 39.952101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-bp9", "LOCATION_NAME": "Sang Kee Noodle House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.909183, "LONGITUDE": -75.16467, "DATE_RANGE_START": 2021, "Total Visits": 7239.0, "Total Visitors": 3616.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 117.0, "Total Spend": 1896.0, "Total Transactions": 53.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.63, "MEDIAN_SPEND_PER_CUSTOMER": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.16467, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 341.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3448.0, "Total Transactions": 119.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.87, "MEDIAN_SPEND_PER_CUSTOMER": 25.22 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "LOCATION_NAME": "Schmear It", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956751, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 64.0, "Total Spend": 2348.0, "Total Transactions": 229.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-sbk", "LOCATION_NAME": "Howl At The Moon Philadelphia", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947729, "LONGITUDE": -75.166598, "DATE_RANGE_START": 2021, "Total Visits": 415.0, "Total Visitors": 301.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 66.0, "Total Spend": 55244.0, "Total Transactions": 1907.0, "Total Customers": 1038.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.25, "MEDIAN_SPEND_PER_CUSTOMER": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166598, 39.947729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-yqf", "LOCATION_NAME": "Chubby Cattle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954989, "LONGITUDE": -75.156236, "DATE_RANGE_START": 2021, "Total Visits": 4088.0, "Total Visitors": 3143.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 15079.0, "Total Transactions": 165.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.84, "MEDIAN_SPEND_PER_CUSTOMER": 78.52 }, "geometry": { "type": "Point", "coordinates": [ -75.156236, 39.954989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-9cq", "LOCATION_NAME": "White Dog Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953556, "LONGITUDE": -75.192905, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 51161.0, "Total Transactions": 628.0, "Total Customers": 604.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 66.82 }, "geometry": { "type": "Point", "coordinates": [ -75.192905, 39.953556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm4-h5z", "LOCATION_NAME": "Le Virtu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925948, "LONGITUDE": -75.16776, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 72.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 20.0, "Total Spend": 14701.0, "Total Transactions": 126.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.88, "MEDIAN_SPEND_PER_CUSTOMER": 107.85 }, "geometry": { "type": "Point", "coordinates": [ -75.16776, 39.925948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmb-grk", "LOCATION_NAME": "Yellowtail", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945044, "LONGITUDE": -75.161951, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 62.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 1227.0, "Total Spend": 1184.0, "Total Transactions": 31.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.79, "MEDIAN_SPEND_PER_CUSTOMER": 43.77 }, "geometry": { "type": "Point", "coordinates": [ -75.161951, 39.945044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@63s-dvy-8y9", "LOCATION_NAME": "48th Street Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953128, "LONGITUDE": -75.218509, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 67.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 77.0, "Total Spend": 686.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.48, "MEDIAN_SPEND_PER_CUSTOMER": 35.48 }, "geometry": { "type": "Point", "coordinates": [ -75.218509, 39.953128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 69.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 883.0, "Total Transactions": 53.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.98, "MEDIAN_SPEND_PER_CUSTOMER": 15.41 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-n3q", "LOCATION_NAME": "Pete's Clown House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003738, "LONGITUDE": -75.094646, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 74.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1287.0, "Total Transactions": 62.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.64, "MEDIAN_SPEND_PER_CUSTOMER": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.094646, 40.003738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "LOCATION_NAME": "Repo Records", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2021, "Total Visits": 1248.0, "Total Visitors": 990.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 27961.0, "Total Transactions": 647.0, "Total Customers": 592.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.31, "MEDIAN_SPEND_PER_CUSTOMER": 32.96 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-ph6-cdv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979947, "LONGITUDE": -75.248732, "DATE_RANGE_START": 2021, "Total Visits": 434.0, "Total Visitors": 246.0, "POI_CBG": 421010114001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 729.0, "Total Transactions": 50.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.89, "MEDIAN_SPEND_PER_CUSTOMER": 6.44 }, "geometry": { "type": "Point", "coordinates": [ -75.248732, 39.979947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2021, "Total Visits": 1504.0, "Total Visitors": 819.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 30287.0, "Total Transactions": 2780.0, "Total Customers": 1093.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.3, "MEDIAN_SPEND_PER_CUSTOMER": 14.52 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.061568, "LONGITUDE": -75.05681, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 243.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 8979.0, "Total Transactions": 391.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.24, "MEDIAN_SPEND_PER_CUSTOMER": 20.17 }, "geometry": { "type": "Point", "coordinates": [ -75.05681, 40.061568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2021, "Total Visits": 4229.0, "Total Visitors": 3057.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 19.0, "Total Spend": 962241.0, "Total Transactions": 17110.0, "Total Customers": 9757.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.96, "MEDIAN_SPEND_PER_CUSTOMER": 60.47 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-226@628-p8t-w49", "LOCATION_NAME": "Classico Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087666, "LONGITUDE": -74.961024, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 688.0, "Total Transactions": 76.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.31, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -74.961024, 40.087666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kcq", "LOCATION_NAME": "Almaz Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95075, "LONGITUDE": -75.173912, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 67.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 104.0, "Total Spend": 1401.0, "Total Transactions": 48.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.66, "MEDIAN_SPEND_PER_CUSTOMER": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.173912, 39.95075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-z75", "LOCATION_NAME": "Pierogi Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101174, "LONGITUDE": -75.028995, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 79.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2022.0, "Total Transactions": 50.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.6, "MEDIAN_SPEND_PER_CUSTOMER": 30.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028995, 40.101174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-rff", "LOCATION_NAME": "Montana Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042892, "LONGITUDE": -75.073677, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010313004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 254.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073677, 40.042892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "LOCATION_NAME": "L'anima", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 50.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 314.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.73, "MEDIAN_SPEND_PER_CUSTOMER": 65.73 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-wzf", "LOCATION_NAME": "Firestone Complete Auto Care", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.087378, "LONGITUDE": -75.035984, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15890.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 204.07, "MEDIAN_SPEND_PER_CUSTOMER": 362.34 }, "geometry": { "type": "Point", "coordinates": [ -75.035984, 40.087378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pfy-vmk", "LOCATION_NAME": "Triumph Motorcycles", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 40.019956, "LONGITUDE": -75.21517, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 55.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 26.0, "Total Spend": 2057.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.02, "MEDIAN_SPEND_PER_CUSTOMER": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21517, 40.019956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "LOCATION_NAME": "Pub On Passyunk East", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 57.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 55.0, "Total Spend": 720.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.3, "MEDIAN_SPEND_PER_CUSTOMER": 57.77 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.93927, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2021, "Total Visits": 547.0, "Total Visitors": 320.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 109.0, "Total Spend": 37973.0, "Total Transactions": 2155.0, "Total Customers": 1002.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.56, "MEDIAN_SPEND_PER_CUSTOMER": 21.39 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.93927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978284, "LONGITUDE": -75.224461, "DATE_RANGE_START": 2021, "Total Visits": 375.0, "Total Visitors": 267.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 68219.0, "Total Transactions": 1733.0, "Total Customers": 1489.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.89, "MEDIAN_SPEND_PER_CUSTOMER": 28.31 }, "geometry": { "type": "Point", "coordinates": [ -75.224461, 39.978284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-4y9", "LOCATION_NAME": "CIBO Express Market", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.87575, "LONGITUDE": -75.24417, "DATE_RANGE_START": 2021, "Total Visits": 324922.0, "Total Visitors": 185623.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 66.0, "Total Spend": 130.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.52, "MEDIAN_SPEND_PER_CUSTOMER": 7.63 }, "geometry": { "type": "Point", "coordinates": [ -75.24417, 39.87575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-mzf", "LOCATION_NAME": "4 Seasons", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003248, "LONGITUDE": -75.124064, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 50049.0, "Total Transactions": 905.0, "Total Customers": 733.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124064, 40.003248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-hwk", "LOCATION_NAME": "Mr Bar Stool", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.953666, "LONGITUDE": -75.142763, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4710.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 396.5, "MEDIAN_SPEND_PER_CUSTOMER": 396.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142763, 39.953666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "LOCATION_NAME": "Weavers Way Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 69.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 100364.0, "Total Transactions": 2730.0, "Total Customers": 1248.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.15, "MEDIAN_SPEND_PER_CUSTOMER": 44.78 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgj-zvf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.99726, "LONGITUDE": -75.154252, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3037.0, "Total Transactions": 48.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.56, "MEDIAN_SPEND_PER_CUSTOMER": 46.69 }, "geometry": { "type": "Point", "coordinates": [ -75.154252, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "LOCATION_NAME": "Lazos Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 21.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 545.0, "Total Spend": 3710.0, "Total Transactions": 189.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.55, "MEDIAN_SPEND_PER_CUSTOMER": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfy-d35", "LOCATION_NAME": "Something Different", "TOP_CATEGORY": "Florists", "LATITUDE": 40.033667, "LONGITUDE": -75.220915, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010213005.0, "MEDIAN_DWELL": null, "Total Spend": 1168.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220915, 40.033667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00769, "LONGITUDE": -75.17457, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 112.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7400.0, "Total Transactions": 859.0, "Total Customers": 501.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 9.32 }, "geometry": { "type": "Point", "coordinates": [ -75.17457, 40.00769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-225@628-p85-p35", "LOCATION_NAME": "Cafe Carmela", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05717, "LONGITUDE": -75.030373, "DATE_RANGE_START": 2021, "Total Visits": 232.0, "Total Visitors": 177.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 33.0, "Total Spend": 977.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.64, "MEDIAN_SPEND_PER_CUSTOMER": 72.64 }, "geometry": { "type": "Point", "coordinates": [ -75.030373, 40.05717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvr-2hq", "LOCATION_NAME": "Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.917185, "LONGITUDE": -75.216767, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 315.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 4582.0, "Total Transactions": 50.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.0, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216767, 39.917185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-3bk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.916261, "LONGITUDE": -75.173391, "DATE_RANGE_START": 2021, "Total Visits": 332.0, "Total Visitors": 260.0, "POI_CBG": 421010039022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 16979.0, "Total Transactions": 754.0, "Total Customers": 420.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.173391, 39.916261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-66k", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.049027, "LONGITUDE": -75.060408, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 263.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 13342.0, "Total Transactions": 138.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.5, "MEDIAN_SPEND_PER_CUSTOMER": 64.79 }, "geometry": { "type": "Point", "coordinates": [ -75.060408, 40.049027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-qs5", "LOCATION_NAME": "Flying Fish Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.91592, "LONGITUDE": -75.163019, "DATE_RANGE_START": 2021, "Total Visits": 768.0, "Total Visitors": 208.0, "POI_CBG": 421010041023.0, "MEDIAN_DWELL": 951.0, "Total Spend": 3776.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.29, "MEDIAN_SPEND_PER_CUSTOMER": 68.29 }, "geometry": { "type": "Point", "coordinates": [ -75.163019, 39.91592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22f@628-pmf-n3q", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953402, "LONGITUDE": -75.165876, "DATE_RANGE_START": 2021, "Total Visits": 1909.0, "Total Visitors": 1301.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 91.0, "Total Spend": 163.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165876, 39.953402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-tsq", "LOCATION_NAME": "Chaes Food LLC", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.983616, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 60.0, "POI_CBG": 421010162002.0, "MEDIAN_DWELL": 587.0, "Total Spend": 8720.0, "Total Transactions": 31.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 266.52, "MEDIAN_SPEND_PER_CUSTOMER": 200.73 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.983616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.048384, "LONGITUDE": -75.056563, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 148.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 52.0, "Total Spend": 3745.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 135.0, "MEDIAN_SPEND_PER_CUSTOMER": 130.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056563, 40.048384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8m-snq", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.022734, "LONGITUDE": -75.077262, "DATE_RANGE_START": 2021, "Total Visits": 399.0, "Total Visitors": 277.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 501.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.0, "MEDIAN_SPEND_PER_CUSTOMER": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077262, 40.022734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040962, "LONGITUDE": -75.223848, "DATE_RANGE_START": 2021, "Total Visits": 859.0, "Total Visitors": 592.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 18228.0, "Total Transactions": 890.0, "Total Customers": 606.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.82, "MEDIAN_SPEND_PER_CUSTOMER": 21.09 }, "geometry": { "type": "Point", "coordinates": [ -75.223848, 40.040962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "LOCATION_NAME": "Jo-Ann Fabric and Craft Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 196.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 14682.0, "Total Transactions": 432.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.6, "MEDIAN_SPEND_PER_CUSTOMER": 33.46 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "LOCATION_NAME": "The Last Word Bookshop", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 394.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 101.0, "Total Spend": 3260.0, "Total Transactions": 160.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.14, "MEDIAN_SPEND_PER_CUSTOMER": 16.14 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-28v", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030475, "LONGITUDE": -75.104415, "DATE_RANGE_START": 2021, "Total Visits": 1554.0, "Total Visitors": 1220.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 856.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.51, "MEDIAN_SPEND_PER_CUSTOMER": 27.18 }, "geometry": { "type": "Point", "coordinates": [ -75.104415, 40.030475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.016881, "LONGITUDE": -75.096377, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 122.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1473.0, "Total Transactions": 69.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.3, "MEDIAN_SPEND_PER_CUSTOMER": 35.56 }, "geometry": { "type": "Point", "coordinates": [ -75.096377, 40.016881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "LOCATION_NAME": "Destination XL", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 158.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 8421.0, "Total Transactions": 62.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.75, "MEDIAN_SPEND_PER_CUSTOMER": 119.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8t-vvf", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.089192, "LONGITUDE": -74.961438, "DATE_RANGE_START": 2021, "Total Visits": 511.0, "Total Visitors": 458.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1360.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.49, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961438, 40.089192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040308, "LONGITUDE": -75.143944, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 146.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2653.0, "Total Transactions": 150.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.37, "MEDIAN_SPEND_PER_CUSTOMER": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.143944, 40.040308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954892, "LONGITUDE": -75.206728, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 215.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3232.0, "Total Transactions": 193.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 11.53 }, "geometry": { "type": "Point", "coordinates": [ -75.206728, 39.954892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp5-qxq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.997222, "LONGITUDE": -75.123675, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 203.0, "POI_CBG": 421010177025.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5073.0, "Total Transactions": 341.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.27, "MEDIAN_SPEND_PER_CUSTOMER": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.123675, 39.997222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979849, "LONGITUDE": -75.269293, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 272.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 19392.0, "Total Transactions": 1358.0, "Total Customers": 1100.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.68, "MEDIAN_SPEND_PER_CUSTOMER": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.269293, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.931453, "LONGITUDE": -75.160518, "DATE_RANGE_START": 2021, "Total Visits": 878.0, "Total Visitors": 532.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 9.0, "Total Spend": 27627.0, "Total Transactions": 1468.0, "Total Customers": 692.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.38, "MEDIAN_SPEND_PER_CUSTOMER": 23.31 }, "geometry": { "type": "Point", "coordinates": [ -75.160518, 39.931453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pp5-ht9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.983672, "LONGITUDE": -75.115989, "DATE_RANGE_START": 2021, "Total Visits": 986.0, "Total Visitors": 685.0, "POI_CBG": 421010179005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 917.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.88, "MEDIAN_SPEND_PER_CUSTOMER": 40.88 }, "geometry": { "type": "Point", "coordinates": [ -75.115989, 39.983672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7x-dgk", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04172, "LONGITUDE": -75.064728, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 143.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2062.0, "Total Transactions": 169.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.52, "MEDIAN_SPEND_PER_CUSTOMER": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.064728, 40.04172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 193.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10740.0, "Total Transactions": 258.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 26.94 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.977128, "LONGITUDE": -75.274366, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 289.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 23471.0, "Total Transactions": 542.0, "Total Customers": 456.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.19, "MEDIAN_SPEND_PER_CUSTOMER": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.274366, 39.977128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@63s-dvq-73q", "LOCATION_NAME": "Park Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95248, "LONGITUDE": -75.22673, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 86.0, "POI_CBG": 421010080004.0, "MEDIAN_DWELL": 1390.0, "Total Spend": 1210.0, "Total Transactions": 69.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.22673, 39.95248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "LOCATION_NAME": "Axis Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95523, "LONGITUDE": -75.194652, "DATE_RANGE_START": 2021, "Total Visits": 606.0, "Total Visitors": 430.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 6554.0, "Total Transactions": 365.0, "Total Customers": 239.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.77, "MEDIAN_SPEND_PER_CUSTOMER": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.194652, 39.95523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-j7q", "LOCATION_NAME": "Byblos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951257, "LONGITUDE": -75.170681, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 103.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 16429.0, "Total Transactions": 141.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.54 }, "geometry": { "type": "Point", "coordinates": [ -75.170681, 39.951257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwb-pvz", "LOCATION_NAME": "TMK Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.91064, "LONGITUDE": -75.220471, "DATE_RANGE_START": 2021, "Total Visits": 513.0, "Total Visitors": 155.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 206.0, "Total Spend": 6884.0, "Total Transactions": 43.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 202.5, "MEDIAN_SPEND_PER_CUSTOMER": 102.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220471, 39.91064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2021, "Total Visits": 430.0, "Total Visitors": 308.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4250.0, "Total Transactions": 310.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 15.67 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 305.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 26.0, "Total Spend": 55480.0, "Total Transactions": 6969.0, "Total Customers": 3014.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.68, "MEDIAN_SPEND_PER_CUSTOMER": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-mzf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954224, "LONGITUDE": -75.167482, "DATE_RANGE_START": 2021, "Total Visits": 3017.0, "Total Visitors": 2002.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 160.0, "Total Spend": 1011.0, "Total Transactions": 150.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.78, "MEDIAN_SPEND_PER_CUSTOMER": 5.31 }, "geometry": { "type": "Point", "coordinates": [ -75.167482, 39.954224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032059, "LONGITUDE": -75.213927, "DATE_RANGE_START": 2021, "Total Visits": 422.0, "Total Visitors": 310.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 32.0, "Total Spend": 9257.0, "Total Transactions": 1007.0, "Total Customers": 661.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.05, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.213927, 40.032059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095264, "LONGITUDE": -75.015635, "DATE_RANGE_START": 2021, "Total Visits": 2086.0, "Total Visitors": 1379.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8549.0, "Total Transactions": 897.0, "Total Customers": 544.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.015635, 40.095264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2021, "Total Visits": 831.0, "Total Visitors": 587.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 22766.0, "Total Transactions": 1112.0, "Total Customers": 735.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.65, "MEDIAN_SPEND_PER_CUSTOMER": 18.89 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977256, "LONGITUDE": -75.226088, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 184.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5893.0, "Total Transactions": 671.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.24, "MEDIAN_SPEND_PER_CUSTOMER": 8.85 }, "geometry": { "type": "Point", "coordinates": [ -75.226088, 39.977256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jvz", "LOCATION_NAME": "Thin & Crispy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98312, "LONGITUDE": -75.123059, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 12.0, "POI_CBG": 421010160004.0, "MEDIAN_DWELL": 155.0, "Total Spend": 252.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.63, "MEDIAN_SPEND_PER_CUSTOMER": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.123059, 39.98312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": null, "Total Spend": 13078.0, "Total Transactions": 924.0, "Total Customers": 616.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 14.79 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-jsq", "LOCATION_NAME": "Rione", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951947, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 74.0, "Total Spend": 1505.0, "Total Transactions": 103.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.33, "MEDIAN_SPEND_PER_CUSTOMER": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.951947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-tn5", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948145, "LONGITUDE": -75.153461, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 60.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 205.0, "Total Spend": 1365.0, "Total Transactions": 88.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.04, "MEDIAN_SPEND_PER_CUSTOMER": 10.04 }, "geometry": { "type": "Point", "coordinates": [ -75.153461, 39.948145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8n5", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951999, "LONGITUDE": -75.157711, "DATE_RANGE_START": 2021, "Total Visits": 16496.0, "Total Visitors": 10990.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 57438.0, "Total Transactions": 1241.0, "Total Customers": 1115.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.157711, 39.951999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.940581, "LONGITUDE": -75.165835, "DATE_RANGE_START": 2021, "Total Visits": 1327.0, "Total Visitors": 952.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2010.0, "Total Transactions": 76.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.61, "MEDIAN_SPEND_PER_CUSTOMER": 24.63 }, "geometry": { "type": "Point", "coordinates": [ -75.165835, 39.940581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-qpv", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007797, "LONGITUDE": -75.141965, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 12.0, "POI_CBG": 421010199002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 246.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.95, "MEDIAN_SPEND_PER_CUSTOMER": 28.95 }, "geometry": { "type": "Point", "coordinates": [ -75.141965, 40.007797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.986359, "LONGITUDE": -75.179573, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 136.0, "POI_CBG": 421010151021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 160.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.3, "MEDIAN_SPEND_PER_CUSTOMER": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179573, 39.986359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-75z", "LOCATION_NAME": "Pizza Brain", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980599, "LONGITUDE": -75.128225, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 31.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 66.0, "Total Spend": 6053.0, "Total Transactions": 212.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.58, "MEDIAN_SPEND_PER_CUSTOMER": 27.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128225, 39.980599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "LOCATION_NAME": "The Ritz-Carlton", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2021, "Total Visits": 8728.0, "Total Visitors": 6241.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 170.0, "Total Spend": 35117.0, "Total Transactions": 95.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 227.88, "MEDIAN_SPEND_PER_CUSTOMER": 292.61 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg3-v4v", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.039046, "LONGITUDE": -75.170704, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 48.0, "POI_CBG": 421010247005.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2026.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.71, "MEDIAN_SPEND_PER_CUSTOMER": 183.27 }, "geometry": { "type": "Point", "coordinates": [ -75.170704, 40.039046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnw-nkf", "LOCATION_NAME": "Laser Wolf", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970668, "LONGITUDE": -75.13658, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 165.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 82.0, "Total Spend": 34130.0, "Total Transactions": 255.0, "Total Customers": 239.0, "MEDIAN_SPEND_PER_TRANSACTION": 122.97, "MEDIAN_SPEND_PER_CUSTOMER": 127.56 }, "geometry": { "type": "Point", "coordinates": [ -75.13658, 39.970668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "LOCATION_NAME": "Papa Joe's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 12.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 721.0, "Total Spend": 1494.0, "Total Transactions": 64.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.39, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phz-q4v", "LOCATION_NAME": "Jj's Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.005715, "LONGITUDE": -75.107525, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 88.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 87.0, "Total Spend": 1267.0, "Total Transactions": 29.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107525, 40.005715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-nwk", "LOCATION_NAME": "Louie Louie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953483, "LONGITUDE": -75.196032, "DATE_RANGE_START": 2021, "Total Visits": 217.0, "Total Visitors": 158.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 262.0, "Total Spend": 46698.0, "Total Transactions": 561.0, "Total Customers": 484.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 65.49 }, "geometry": { "type": "Point", "coordinates": [ -75.196032, 39.953483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-ty9", "LOCATION_NAME": "La Fontana Della Citta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947768, "LONGITUDE": -75.169697, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 177.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 24.0, "Total Spend": 220.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.15, "MEDIAN_SPEND_PER_CUSTOMER": 46.15 }, "geometry": { "type": "Point", "coordinates": [ -75.169697, 39.947768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992778, "LONGITUDE": -75.097644, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 210.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 13270.0, "Total Transactions": 802.0, "Total Customers": 585.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.05, "MEDIAN_SPEND_PER_CUSTOMER": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.097644, 39.992778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pj6-k4v", "LOCATION_NAME": "Tiger Sugar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045018, "LONGITUDE": -75.117501, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 9475.0, "Total Transactions": 874.0, "Total Customers": 749.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.4, "MEDIAN_SPEND_PER_CUSTOMER": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.117501, 40.045018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "LOCATION_NAME": "Keller Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072481, "LONGITUDE": -75.076705, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 191.0, "POI_CBG": 421010341002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1070.0, "Total Transactions": 62.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.09, "MEDIAN_SPEND_PER_CUSTOMER": 18.64 }, "geometry": { "type": "Point", "coordinates": [ -75.076705, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-6x5", "LOCATION_NAME": "Harp & Crown", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950579, "LONGITUDE": -75.166788, "DATE_RANGE_START": 2021, "Total Visits": 5251.0, "Total Visitors": 3716.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 12637.0, "Total Transactions": 155.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.55, "MEDIAN_SPEND_PER_CUSTOMER": 68.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166788, 39.950579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 103.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 6.0, "Total Spend": 424.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 88.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-4n5", "LOCATION_NAME": "Island Shack Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038192, "LONGITUDE": -75.143201, "DATE_RANGE_START": 2021, "Total Visits": 442.0, "Total Visitors": 284.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 58.0, "Total Spend": 250.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.143201, 40.038192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pm9-tqf", "LOCATION_NAME": "Wetzel's Pretzels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952391, "LONGITUDE": -75.157424, "DATE_RANGE_START": 2021, "Total Visits": 1124.0, "Total Visitors": 926.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4052.0, "Total Transactions": 470.0, "Total Customers": 344.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.157424, 39.952391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dtm-v75", "LOCATION_NAME": "Delta Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.873088, "LONGITUDE": -75.27466, "DATE_RANGE_START": 2021, "Total Visits": 1680.0, "Total Visitors": 998.0, "POI_CBG": 420454037012.0, "MEDIAN_DWELL": 350.0, "Total Spend": 2903.0, "Total Transactions": 79.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27466, 39.873088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5mk", "LOCATION_NAME": "Fogo de Chão", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950928, "LONGITUDE": -75.162963, "DATE_RANGE_START": 2021, "Total Visits": 18618.0, "Total Visitors": 13115.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 39373.0, "Total Transactions": 210.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 176.68, "MEDIAN_SPEND_PER_CUSTOMER": 177.82 }, "geometry": { "type": "Point", "coordinates": [ -75.162963, 39.950928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm8-djv", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911588, "LONGITUDE": -75.17455, "DATE_RANGE_START": 2021, "Total Visits": 2597.0, "Total Visitors": 2234.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 1093.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.37, "MEDIAN_SPEND_PER_CUSTOMER": 60.37 }, "geometry": { "type": "Point", "coordinates": [ -75.17455, 39.911588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-7h5", "LOCATION_NAME": "Estia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948448, "LONGITUDE": -75.165269, "DATE_RANGE_START": 2021, "Total Visits": 525.0, "Total Visitors": 473.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 1.0, "Total Spend": 14902.0, "Total Transactions": 98.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 119.76, "MEDIAN_SPEND_PER_CUSTOMER": 127.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165269, 39.948448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921808, "LONGITUDE": -75.146286, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 126.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3076.0, "Total Transactions": 165.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.75 }, "geometry": { "type": "Point", "coordinates": [ -75.146286, 39.921808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-wx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950748, "LONGITUDE": -75.151909, "DATE_RANGE_START": 2021, "Total Visits": 425.0, "Total Visitors": 334.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1870.0, "Total Transactions": 375.0, "Total Customers": 181.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.96, "MEDIAN_SPEND_PER_CUSTOMER": 6.68 }, "geometry": { "type": "Point", "coordinates": [ -75.151909, 39.950748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-cqz", "LOCATION_NAME": "Pita Chip", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977951, "LONGITUDE": -75.158444, "DATE_RANGE_START": 2021, "Total Visits": 396.0, "Total Visitors": 303.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 98.0, "Total Spend": 3689.0, "Total Transactions": 298.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.25, "MEDIAN_SPEND_PER_CUSTOMER": 11.52 }, "geometry": { "type": "Point", "coordinates": [ -75.158444, 39.977951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-jd9", "LOCATION_NAME": "Ten Asian Food Hall", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951674, "LONGITUDE": -75.169299, "DATE_RANGE_START": 2021, "Total Visits": 1916.0, "Total Visitors": 1594.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1141.0, "Total Transactions": 57.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.28, "MEDIAN_SPEND_PER_CUSTOMER": 18.28 }, "geometry": { "type": "Point", "coordinates": [ -75.169299, 39.951674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-vfz", "LOCATION_NAME": "Panorama", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950151, "LONGITUDE": -75.142176, "DATE_RANGE_START": 2021, "Total Visits": 3012.0, "Total Visitors": 2396.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 9282.0, "Total Transactions": 60.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 115.58, "MEDIAN_SPEND_PER_CUSTOMER": 133.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142176, 39.950151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2021, "Total Visits": 301.0, "Total Visitors": 212.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 128.0, "Total Spend": 14919.0, "Total Transactions": 1181.0, "Total Customers": 876.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.68, "MEDIAN_SPEND_PER_CUSTOMER": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@63s-dw9-7nq", "LOCATION_NAME": "Jack Duggan's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.874756, "LONGITUDE": -75.24707, "DATE_RANGE_START": 2021, "Total Visits": 232048.0, "Total Visitors": 147833.0, "POI_CBG": 420459800001.0, "MEDIAN_DWELL": 57.0, "Total Spend": 2925.0, "Total Transactions": 64.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24707, 39.874756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-qzz", "LOCATION_NAME": "Fortune Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944339, "LONGITUDE": -75.172891, "DATE_RANGE_START": 2021, "Total Visits": 551.0, "Total Visitors": 356.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 181.0, "Total Spend": 1260.0, "Total Transactions": 55.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.172891, 39.944339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-vpv", "LOCATION_NAME": "P'unk Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927124, "LONGITUDE": -75.166327, "DATE_RANGE_START": 2021, "Total Visits": 826.0, "Total Visitors": 475.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 197.0, "Total Spend": 192.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.3, "MEDIAN_SPEND_PER_CUSTOMER": 24.59 }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.927124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 103.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13065.0, "Total Transactions": 1496.0, "Total Customers": 618.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.44, "MEDIAN_SPEND_PER_CUSTOMER": 10.66 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "LOCATION_NAME": "Crazy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 220.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 265.0, "Total Spend": 7280.0, "Total Transactions": 181.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.12, "MEDIAN_SPEND_PER_CUSTOMER": 38.24 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-8d9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953621, "LONGITUDE": -75.157784, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 456.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4797.0, "Total Transactions": 804.0, "Total Customers": 525.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 6.83 }, "geometry": { "type": "Point", "coordinates": [ -75.157784, 39.953621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950584, "LONGITUDE": -75.167188, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 212.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 89.0, "Total Spend": 5083.0, "Total Transactions": 959.0, "Total Customers": 527.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.15, "MEDIAN_SPEND_PER_CUSTOMER": 5.71 }, "geometry": { "type": "Point", "coordinates": [ -75.167188, 39.950584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2021, "Total Visits": 1024.0, "Total Visitors": 683.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 12758.0, "Total Transactions": 1446.0, "Total Customers": 761.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.65, "MEDIAN_SPEND_PER_CUSTOMER": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "LOCATION_NAME": "Canto House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955533, "LONGITUDE": -75.155568, "DATE_RANGE_START": 2021, "Total Visits": 10434.0, "Total Visitors": 6952.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1479.0, "Total Transactions": 57.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.6, "MEDIAN_SPEND_PER_CUSTOMER": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155568, 39.955533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 208.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 55.0, "Total Spend": 157.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.63, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002693, "LONGITUDE": -75.222651, "DATE_RANGE_START": 2021, "Total Visits": 561.0, "Total Visitors": 406.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15206.0, "Total Transactions": 1618.0, "Total Customers": 1045.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.4, "MEDIAN_SPEND_PER_CUSTOMER": 9.94 }, "geometry": { "type": "Point", "coordinates": [ -75.222651, 40.002693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@63s-dw9-7dv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.877241, "LONGITUDE": -75.244155, "DATE_RANGE_START": 2021, "Total Visits": 1819.0, "Total Visitors": 1718.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 19022.0, "Total Transactions": 2043.0, "Total Customers": 1893.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.6, "MEDIAN_SPEND_PER_CUSTOMER": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.244155, 39.877241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yd9", "LOCATION_NAME": "Sleep Inn", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954446, "LONGITUDE": -75.157043, "DATE_RANGE_START": 2021, "Total Visits": 453.0, "Total Visitors": 317.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 107.0, "Total Spend": 2009.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 144.86, "MEDIAN_SPEND_PER_CUSTOMER": 144.86 }, "geometry": { "type": "Point", "coordinates": [ -75.157043, 39.954446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 265.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 976.0, "Total Transactions": 62.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.13, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pmd-rtv", "LOCATION_NAME": "Sally", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948932, "LONGITUDE": -75.178843, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 131.0, "POI_CBG": 421010008011.0, "MEDIAN_DWELL": 69.0, "Total Spend": 4701.0, "Total Transactions": 45.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 92.62, "MEDIAN_SPEND_PER_CUSTOMER": 92.62 }, "geometry": { "type": "Point", "coordinates": [ -75.178843, 39.948932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "LOCATION_NAME": "Wyndham", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952204, "LONGITUDE": -75.146959, "DATE_RANGE_START": 2021, "Total Visits": 2721.0, "Total Visitors": 1668.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 405.0, "Total Spend": 79027.0, "Total Transactions": 282.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 213.78, "MEDIAN_SPEND_PER_CUSTOMER": 220.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146959, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-ht9", "LOCATION_NAME": "Sonesta Philadelphia Rittenhouse Square", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952877, "LONGITUDE": -75.170604, "DATE_RANGE_START": 2021, "Total Visits": 964.0, "Total Visitors": 692.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 176.0, "Total Spend": 74438.0, "Total Transactions": 212.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 264.69, "MEDIAN_SPEND_PER_CUSTOMER": 266.48 }, "geometry": { "type": "Point", "coordinates": [ -75.170604, 39.952877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5pv", "LOCATION_NAME": "Hard Rock Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952216, "LONGITUDE": -75.159642, "DATE_RANGE_START": 2021, "Total Visits": 768.0, "Total Visitors": 623.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 41558.0, "Total Transactions": 726.0, "Total Customers": 621.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.52, "MEDIAN_SPEND_PER_CUSTOMER": 59.44 }, "geometry": { "type": "Point", "coordinates": [ -75.159642, 39.952216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-whq", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949985, "LONGITUDE": -75.146017, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 129.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1521.0, "Total Transactions": 88.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.146017, 39.949985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-8d9", "LOCATION_NAME": "Tom's Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953328, "LONGITUDE": -75.157763, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 13618.0, "Total Transactions": 296.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.66, "MEDIAN_SPEND_PER_CUSTOMER": 42.61 }, "geometry": { "type": "Point", "coordinates": [ -75.157763, 39.953328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "LOCATION_NAME": "Asian Bamboo House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 81.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5493.0, "Total Transactions": 174.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.41, "MEDIAN_SPEND_PER_CUSTOMER": 37.42 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "LOCATION_NAME": "Ruth's Chris Steak House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952962, "LONGITUDE": -75.170263, "DATE_RANGE_START": 2021, "Total Visits": 2119.0, "Total Visitors": 1251.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 413.0, "Total Spend": 31471.0, "Total Transactions": 189.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 168.94, "MEDIAN_SPEND_PER_CUSTOMER": 172.74 }, "geometry": { "type": "Point", "coordinates": [ -75.170263, 39.952962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2021, "Total Visits": 427.0, "Total Visitors": 329.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 19222.0, "Total Transactions": 1599.0, "Total Customers": 1069.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 13.59 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.875709, "LONGITUDE": -75.241464, "DATE_RANGE_START": 2021, "Total Visits": 324922.0, "Total Visitors": 185623.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 66.0, "Total Spend": 6104.0, "Total Transactions": 442.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.241464, 39.875709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-rkz", "LOCATION_NAME": "Zahav", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946194, "LONGITUDE": -75.145279, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 308.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 136.0, "Total Spend": 40941.0, "Total Transactions": 200.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 199.22, "MEDIAN_SPEND_PER_CUSTOMER": 202.63 }, "geometry": { "type": "Point", "coordinates": [ -75.145279, 39.946194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pp5-p35", "LOCATION_NAME": "Martin's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991299, "LONGITUDE": -75.123216, "DATE_RANGE_START": 2021, "Total Visits": 878.0, "Total Visitors": 604.0, "POI_CBG": 421010177022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 412.0, "Total Transactions": 48.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.29, "MEDIAN_SPEND_PER_CUSTOMER": 10.77 }, "geometry": { "type": "Point", "coordinates": [ -75.123216, 39.991299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zvf", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.997217, "LONGITUDE": -75.154386, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1354.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 141.88, "MEDIAN_SPEND_PER_CUSTOMER": 141.88 }, "geometry": { "type": "Point", "coordinates": [ -75.154386, 39.997217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "LOCATION_NAME": "Gennaro's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 60.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 1087.0, "Total Spend": 2994.0, "Total Transactions": 189.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.07, "MEDIAN_SPEND_PER_CUSTOMER": 20.06 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "LOCATION_NAME": "Frank's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2353.0, "Total Transactions": 119.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.84, "MEDIAN_SPEND_PER_CUSTOMER": 23.77 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg9-k4v", "LOCATION_NAME": "Mom's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991401, "LONGITUDE": -75.180066, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010169022.0, "MEDIAN_DWELL": null, "Total Spend": 499.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.72, "MEDIAN_SPEND_PER_CUSTOMER": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.180066, 39.991401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-php-s3q", "LOCATION_NAME": "Tejade Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.060966, "LONGITUDE": -75.161233, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010264004.0, "MEDIAN_DWELL": null, "Total Spend": 1028.0, "Total Transactions": 126.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161233, 40.060966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-jjv", "LOCATION_NAME": "Sweet Treat Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973199, "LONGITUDE": -75.222994, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1616.0, "Total Transactions": 126.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.2, "MEDIAN_SPEND_PER_CUSTOMER": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.222994, 39.973199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-6tv", "LOCATION_NAME": "Allen Tire & Service", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.048405, "LONGITUDE": -75.096529, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": null, "Total Spend": 23514.0, "Total Transactions": 50.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 166.19, "MEDIAN_SPEND_PER_CUSTOMER": 166.14 }, "geometry": { "type": "Point", "coordinates": [ -75.096529, 40.048405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfy-wkz", "LOCATION_NAME": "Dawson Street Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.018548, "LONGITUDE": -75.21277, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 14.0, "POI_CBG": 421010209004.0, "MEDIAN_DWELL": 130.0, "Total Spend": 1638.0, "Total Transactions": 55.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21277, 40.018548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 24.0, "POI_CBG": 421010093005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 929.0, "Total Transactions": 53.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.67, "MEDIAN_SPEND_PER_CUSTOMER": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phq-2hq", "LOCATION_NAME": "X Mark's the Spot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060083, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4502.0, "Total Transactions": 55.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.0, "MEDIAN_SPEND_PER_CUSTOMER": 79.68 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 40.060083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 26.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8978.0, "Total Transactions": 623.0, "Total Customers": 434.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.2, "MEDIAN_SPEND_PER_CUSTOMER": 14.77 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "LOCATION_NAME": "Cafe Thanh Truc", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 26.0, "Total Spend": 386.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.1, "MEDIAN_SPEND_PER_CUSTOMER": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p9p-z2k", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101427, "LONGITUDE": -75.028593, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1663.0, "Total Transactions": 119.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.91, "MEDIAN_SPEND_PER_CUSTOMER": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.028593, 40.101427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@63s-dvx-tsq", "LOCATION_NAME": "University City Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945765, "LONGITUDE": -75.213948, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 74.0, "POI_CBG": 421010078001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 121.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.44, "MEDIAN_SPEND_PER_CUSTOMER": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.213948, 39.945765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kfz", "LOCATION_NAME": "The Rittenhouse Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949841, "LONGITUDE": -75.173264, "DATE_RANGE_START": 2021, "Total Visits": 764.0, "Total Visitors": 449.0, "POI_CBG": 421010008034.0, "MEDIAN_DWELL": 142.0, "Total Spend": 33125.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 781.0, "MEDIAN_SPEND_PER_CUSTOMER": 776.34 }, "geometry": { "type": "Point", "coordinates": [ -75.173264, 39.949841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "LOCATION_NAME": "SouthHouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 98.0, "POI_CBG": 421010040023.0, "MEDIAN_DWELL": 249.0, "Total Spend": 7689.0, "Total Transactions": 189.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.82, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmb-6x5", "LOCATION_NAME": "Mission Taqueria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950235, "LONGITUDE": -75.166639, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 177.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1942.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.96, "MEDIAN_SPEND_PER_CUSTOMER": 77.96 }, "geometry": { "type": "Point", "coordinates": [ -75.166639, 39.950235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955756, "LONGITUDE": -75.201691, "DATE_RANGE_START": 2021, "Total Visits": 2286.0, "Total Visitors": 1150.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 420.0, "Total Spend": 6655.0, "Total Transactions": 136.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.36, "MEDIAN_SPEND_PER_CUSTOMER": 43.96 }, "geometry": { "type": "Point", "coordinates": [ -75.201691, 39.955756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-phy-kmk", "LOCATION_NAME": "El Sabor De Maria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025858, "LONGITUDE": -75.132587, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 298.0, "POI_CBG": 421010286003.0, "MEDIAN_DWELL": 58.0, "Total Spend": 102.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.34, "MEDIAN_SPEND_PER_CUSTOMER": 21.34 }, "geometry": { "type": "Point", "coordinates": [ -75.132587, 40.025858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 308.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1398.0, "Total Transactions": 112.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.47, "MEDIAN_SPEND_PER_CUSTOMER": 16.41 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055662, "LONGITUDE": -75.049241, "DATE_RANGE_START": 2021, "Total Visits": 2322.0, "Total Visitors": 1516.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 109494.0, "Total Transactions": 6193.0, "Total Customers": 2778.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.09, "MEDIAN_SPEND_PER_CUSTOMER": 25.06 }, "geometry": { "type": "Point", "coordinates": [ -75.049241, 40.055662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-7t9", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.11156, "LONGITUDE": -75.023472, "DATE_RANGE_START": 2021, "Total Visits": 2943.0, "Total Visitors": 1695.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 176.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.9, "MEDIAN_SPEND_PER_CUSTOMER": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.023472, 40.11156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.979391, "LONGITUDE": -75.152636, "DATE_RANGE_START": 2021, "Total Visits": 2341.0, "Total Visitors": 1126.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 357.0, "Total Spend": 27900.0, "Total Transactions": 1928.0, "Total Customers": 1461.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.83, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.152636, 39.979391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p86-hbk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.075694, "LONGITUDE": -75.084798, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 282.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8302.0, "Total Transactions": 453.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.08, "MEDIAN_SPEND_PER_CUSTOMER": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.084798, 40.075694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "LOCATION_NAME": "Forever 21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2021, "Total Visits": 616.0, "Total Visitors": 539.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 25450.0, "Total Transactions": 690.0, "Total Customers": 618.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.11 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kj9", "LOCATION_NAME": "Fleur De Lis Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950913, "LONGITUDE": -75.176137, "DATE_RANGE_START": 2021, "Total Visits": 2862.0, "Total Visitors": 2158.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 651.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.176137, 39.950913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgf-kj9", "LOCATION_NAME": "Wheel Fun Rentals Boathouse Row", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.969459, "LONGITUDE": -75.187508, "DATE_RANGE_START": 2021, "Total Visits": 232.0, "Total Visitors": 167.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 95.0, "Total Spend": 2399.0, "Total Transactions": 93.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187508, 39.969459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-t7q", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.901479, "LONGITUDE": -75.241623, "DATE_RANGE_START": 2021, "Total Visits": 2084.0, "Total Visitors": 1258.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1405.0, "Total Transactions": 17.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.11, "MEDIAN_SPEND_PER_CUSTOMER": 174.46 }, "geometry": { "type": "Point", "coordinates": [ -75.241623, 39.901479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913861, "LONGITUDE": -75.154438, "DATE_RANGE_START": 2021, "Total Visits": 3692.0, "Total Visitors": 1998.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1587.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.18, "MEDIAN_SPEND_PER_CUSTOMER": 182.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154438, 39.913861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950972, "LONGITUDE": -75.198395, "DATE_RANGE_START": 2021, "Total Visits": 1131.0, "Total Visitors": 802.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 60887.0, "Total Transactions": 6807.0, "Total Customers": 3131.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.54 }, "geometry": { "type": "Point", "coordinates": [ -75.198395, 39.950972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "LOCATION_NAME": "Javies Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.034848, "LONGITUDE": -75.234562, "DATE_RANGE_START": 2021, "Total Visits": 189.0, "Total Visitors": 150.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 55430.0, "Total Transactions": 1821.0, "Total Customers": 1074.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.53, "MEDIAN_SPEND_PER_CUSTOMER": 35.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234562, 40.034848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "LOCATION_NAME": "Johns Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03316, "LONGITUDE": -75.177034, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 119.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10047.0, "Total Transactions": 368.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.12, "MEDIAN_SPEND_PER_CUSTOMER": 26.45 }, "geometry": { "type": "Point", "coordinates": [ -75.177034, 40.03316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "LOCATION_NAME": "10 Spot/MadRag", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.917816, "LONGITUDE": -75.185164, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 105.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 38014.0, "Total Transactions": 864.0, "Total Customers": 697.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.98, "MEDIAN_SPEND_PER_CUSTOMER": 42.37 }, "geometry": { "type": "Point", "coordinates": [ -75.185164, 39.917816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "LOCATION_NAME": "Walmart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.031276, "LONGITUDE": -75.099634, "DATE_RANGE_START": 2021, "Total Visits": 6260.0, "Total Visitors": 4169.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 345628.0, "Total Transactions": 5525.0, "Total Customers": 3783.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.26, "MEDIAN_SPEND_PER_CUSTOMER": 52.49 }, "geometry": { "type": "Point", "coordinates": [ -75.099634, 40.031276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-hbk", "LOCATION_NAME": "Jyoti Indian Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060418, "LONGITUDE": -75.191506, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": null, "Total Spend": 260.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.14, "MEDIAN_SPEND_PER_CUSTOMER": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.191506, 40.060418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "LOCATION_NAME": "Overbrook Pizza Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": null, "Total Spend": 2321.0, "Total Transactions": 107.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.48, "MEDIAN_SPEND_PER_CUSTOMER": 19.48 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-p82-nqz", "LOCATION_NAME": "On Charcoal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041319, "LONGITUDE": -75.075986, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 24.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 134.0, "Total Spend": 377.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.55, "MEDIAN_SPEND_PER_CUSTOMER": 53.55 }, "geometry": { "type": "Point", "coordinates": [ -75.075986, 40.041319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgf-52k", "LOCATION_NAME": "Woosa Bubble Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959251, "LONGITUDE": -75.194643, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 41.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1773.0, "Total Transactions": 165.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194643, 39.959251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgj-xkf", "LOCATION_NAME": "Sunny's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.990908, "LONGITUDE": -75.154807, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 224.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.48, "MEDIAN_SPEND_PER_CUSTOMER": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.154807, 39.990908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwf-j35", "LOCATION_NAME": "Airgas", "TOP_CATEGORY": "Chemical and Allied Products Merchant Wholesalers", "LATITUDE": 39.90125, "LONGITUDE": -75.230162, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 53.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 155.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230162, 39.90125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-hnq", "LOCATION_NAME": "New Image Art & Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.952342, "LONGITUDE": -75.173299, "DATE_RANGE_START": 2021, "Total Visits": 4212.0, "Total Visitors": 2685.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 51.0, "Total Spend": 121.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.75, "MEDIAN_SPEND_PER_CUSTOMER": 18.75 }, "geometry": { "type": "Point", "coordinates": [ -75.173299, 39.952342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-5mk", "LOCATION_NAME": "West Elm", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950642, "LONGITUDE": -75.163094, "DATE_RANGE_START": 2021, "Total Visits": 616.0, "Total Visitors": 432.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 118.0, "Total Spend": 4291.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.163094, 39.950642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-dvz", "LOCATION_NAME": "Quick Stop", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993791, "LONGITUDE": -75.117865, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 408.0, "POI_CBG": 421010178005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4365.0, "Total Transactions": 243.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.34, "MEDIAN_SPEND_PER_CUSTOMER": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.117865, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2021, "Total Visits": 232.0, "Total Visitors": 191.0, "POI_CBG": 421010012013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 64266.0, "Total Transactions": 6752.0, "Total Customers": 3017.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.36 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "LOCATION_NAME": "The Beer Peddlers", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2021, "Total Visits": 227.0, "Total Visitors": 148.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 26176.0, "Total Transactions": 783.0, "Total Customers": 630.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.45, "MEDIAN_SPEND_PER_CUSTOMER": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pfz-bhq", "LOCATION_NAME": "Bendi", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.025401, "LONGITUDE": -75.22307, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5236.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 317.32, "MEDIAN_SPEND_PER_CUSTOMER": 324.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22307, 40.025401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.96694, "LONGITUDE": -75.233446, "DATE_RANGE_START": 2021, "Total Visits": 382.0, "Total Visitors": 265.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 624.0, "Total Transactions": 55.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 8.58 }, "geometry": { "type": "Point", "coordinates": [ -75.233446, 39.96694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "LOCATION_NAME": "Accent On Animals", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2021, "Total Visits": 683.0, "Total Visitors": 494.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 287.0, "Total Spend": 1399.0, "Total Transactions": 62.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2021, "Total Visits": 702.0, "Total Visitors": 482.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 78248.0, "Total Transactions": 1831.0, "Total Customers": 1301.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.66, "MEDIAN_SPEND_PER_CUSTOMER": 40.62 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-m8v", "LOCATION_NAME": "Ooh LaLa Salads", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970924, "LONGITUDE": -75.156972, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 31.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1360.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.86, "MEDIAN_SPEND_PER_CUSTOMER": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.156972, 39.970924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "LOCATION_NAME": "Yummy Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 36.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3720.0, "Total Transactions": 232.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.8, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-cdv", "LOCATION_NAME": "Holiday Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.04293, "LONGITUDE": -75.010392, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 321.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.38 }, "geometry": { "type": "Point", "coordinates": [ -75.010392, 40.04293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pgf-fj9", "LOCATION_NAME": "Cleopatra Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.956516, "LONGITUDE": -75.206034, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 60.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1790.0, "Total Transactions": 43.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206034, 39.956516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2021, "Total Visits": 640.0, "Total Visitors": 401.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5310.0, "Total Transactions": 859.0, "Total Customers": 434.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.33, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgf-4jv", "LOCATION_NAME": "Grilly Cheese", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957474, "LONGITUDE": -75.189936, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 461.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.44, "MEDIAN_SPEND_PER_CUSTOMER": 55.44 }, "geometry": { "type": "Point", "coordinates": [ -75.189936, 39.957474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pjf-p7q", "LOCATION_NAME": "Mimi's Cafe & Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076905, "LONGITUDE": -75.206381, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 26.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1309.0, "Total Transactions": 41.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.18, "MEDIAN_SPEND_PER_CUSTOMER": 34.37 }, "geometry": { "type": "Point", "coordinates": [ -75.206381, 40.076905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgj-pgk", "LOCATION_NAME": "Arthurs Dog House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992823, "LONGITUDE": -75.148113, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010165003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 720.0, "Total Transactions": 38.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.81, "MEDIAN_SPEND_PER_CUSTOMER": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.148113, 39.992823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-v75", "LOCATION_NAME": "JJ Bootleggers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94896, "LONGITUDE": -75.143844, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 400.0, "Total Spend": 68047.0, "Total Transactions": 2274.0, "Total Customers": 1067.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.8, "MEDIAN_SPEND_PER_CUSTOMER": 42.65 }, "geometry": { "type": "Point", "coordinates": [ -75.143844, 39.94896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rp9", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917838, "LONGITUDE": -75.186989, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 48.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 43.0, "Total Spend": 8901.0, "Total Transactions": 298.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.66, "MEDIAN_SPEND_PER_CUSTOMER": 28.63 }, "geometry": { "type": "Point", "coordinates": [ -75.186989, 39.917838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "LOCATION_NAME": "Thai Square Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 12.0, "POI_CBG": 421010013005.0, "MEDIAN_DWELL": 172.0, "Total Spend": 2899.0, "Total Transactions": 74.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.53, "MEDIAN_SPEND_PER_CUSTOMER": 39.69 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "LOCATION_NAME": "Nori Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 24.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1774.0, "Total Transactions": 48.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.16, "MEDIAN_SPEND_PER_CUSTOMER": 30.13 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pp5-94v", "LOCATION_NAME": "London Wreath", "TOP_CATEGORY": "Florists", "LATITUDE": 39.990978, "LONGITUDE": -75.116664, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 29.0, "POI_CBG": 421010178004.0, "MEDIAN_DWELL": 490.0, "Total Spend": 452.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 94.77, "MEDIAN_SPEND_PER_CUSTOMER": 94.77 }, "geometry": { "type": "Point", "coordinates": [ -75.116664, 39.990978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "LOCATION_NAME": "Independence Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 30405.0, "Total Transactions": 979.0, "Total Customers": 745.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.56, "MEDIAN_SPEND_PER_CUSTOMER": 33.64 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmb-835", "LOCATION_NAME": "Beck's Cajun Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953182, "LONGITUDE": -75.159431, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 2302.0, "Total Transactions": 105.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.12, "MEDIAN_SPEND_PER_CUSTOMER": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159431, 39.953182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8j-bp9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.035986, "LONGITUDE": -75.039532, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 215.0, "POI_CBG": 421010330006.0, "MEDIAN_DWELL": 8.0, "Total Spend": 14036.0, "Total Transactions": 642.0, "Total Customers": 356.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 25.35 }, "geometry": { "type": "Point", "coordinates": [ -75.039532, 40.035986 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "LOCATION_NAME": "Jini Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.085837, "LONGITUDE": -74.962154, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 339.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1556.0, "Total Transactions": 50.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.33, "MEDIAN_SPEND_PER_CUSTOMER": 18.33 }, "geometry": { "type": "Point", "coordinates": [ -74.962154, 40.085837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2021, "Total Visits": 396.0, "Total Visitors": 305.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 171.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.38, "MEDIAN_SPEND_PER_CUSTOMER": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-92k", "LOCATION_NAME": "Kate Spade", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952238, "LONGITUDE": -75.155945, "DATE_RANGE_START": 2021, "Total Visits": 632.0, "Total Visitors": 511.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 12345.0, "Total Transactions": 138.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.66, "MEDIAN_SPEND_PER_CUSTOMER": 84.46 }, "geometry": { "type": "Point", "coordinates": [ -75.155945, 39.952238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvx-59f", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.972941, "LONGITUDE": -75.217366, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 186.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 214.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 8.21 }, "geometry": { "type": "Point", "coordinates": [ -75.217366, 39.972941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2021, "Total Visits": 1723.0, "Total Visitors": 1167.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 73.0, "Total Spend": 21634.0, "Total Transactions": 613.0, "Total Customers": 511.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.02, "MEDIAN_SPEND_PER_CUSTOMER": 23.87 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-b8v", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.059227, "LONGITUDE": -75.045575, "DATE_RANGE_START": 2021, "Total Visits": 389.0, "Total Visitors": 253.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6618.0, "Total Transactions": 315.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.05, "MEDIAN_SPEND_PER_CUSTOMER": 19.52 }, "geometry": { "type": "Point", "coordinates": [ -75.045575, 40.059227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-94v", "LOCATION_NAME": "Torrid", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952222, "LONGITUDE": -75.156836, "DATE_RANGE_START": 2021, "Total Visits": 16496.0, "Total Visitors": 10990.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 3325.0, "Total Transactions": 53.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.71, "MEDIAN_SPEND_PER_CUSTOMER": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156836, 39.952222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pmf-j35", "LOCATION_NAME": "Head Start Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950646, "LONGITUDE": -75.169071, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 179.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3977.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 128.5, "MEDIAN_SPEND_PER_CUSTOMER": 158.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 39.950646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "LOCATION_NAME": "IKEA", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.917106, "LONGITUDE": -75.141639, "DATE_RANGE_START": 2021, "Total Visits": 6909.0, "Total Visitors": 5993.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 548826.0, "Total Transactions": 4788.0, "Total Customers": 3477.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.86, "MEDIAN_SPEND_PER_CUSTOMER": 75.98 }, "geometry": { "type": "Point", "coordinates": [ -75.141639, 39.917106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8m-v2k", "LOCATION_NAME": "Hung Vuong Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.030075, "LONGITUDE": -75.057846, "DATE_RANGE_START": 2021, "Total Visits": 802.0, "Total Visitors": 549.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 35313.0, "Total Transactions": 535.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.72, "MEDIAN_SPEND_PER_CUSTOMER": 45.65 }, "geometry": { "type": "Point", "coordinates": [ -75.057846, 40.030075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pj9-yvz", "LOCATION_NAME": "My Daughters Wedding", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.037569, "LONGITUDE": -75.130408, "DATE_RANGE_START": 2021, "Total Visits": 1115.0, "Total Visitors": 523.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 314.0, "Total Spend": 957.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 200.4, "MEDIAN_SPEND_PER_CUSTOMER": 200.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130408, 40.037569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj7-2p9", "LOCATION_NAME": "Jerusalem Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.040423, "LONGITUDE": -75.107572, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 122.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 15716.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 1195.0, "MEDIAN_SPEND_PER_CUSTOMER": 1195.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107572, 40.040423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-zzz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.058549, "LONGITUDE": -75.166373, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 186.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 12763.0, "Total Transactions": 628.0, "Total Customers": 406.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.41, "MEDIAN_SPEND_PER_CUSTOMER": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.166373, 40.058549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p7w-gc5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.072485, "LONGITUDE": -75.075778, "DATE_RANGE_START": 2021, "Total Visits": 871.0, "Total Visitors": 592.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1542.0, "Total Transactions": 43.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.06, "MEDIAN_SPEND_PER_CUSTOMER": 48.28 }, "geometry": { "type": "Point", "coordinates": [ -75.075778, 40.072485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.008575, "LONGITUDE": -75.193866, "DATE_RANGE_START": 2021, "Total Visits": 1671.0, "Total Visitors": 1339.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3854.0, "Total Transactions": 119.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.38, "MEDIAN_SPEND_PER_CUSTOMER": 37.76 }, "geometry": { "type": "Point", "coordinates": [ -75.193866, 40.008575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2021, "Total Visits": 10594.0, "Total Visitors": 6704.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 19875.0, "Total Transactions": 379.0, "Total Customers": 291.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.72, "MEDIAN_SPEND_PER_CUSTOMER": 31.74 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045011, "LONGITUDE": -75.144262, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 138.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1063.0, "Total Transactions": 36.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.82, "MEDIAN_SPEND_PER_CUSTOMER": 28.55 }, "geometry": { "type": "Point", "coordinates": [ -75.144262, 40.045011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "LOCATION_NAME": "CLo", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010195022.0, "MEDIAN_DWELL": null, "Total Spend": 17430.0, "Total Transactions": 158.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.2, "MEDIAN_SPEND_PER_CUSTOMER": 70.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "LOCATION_NAME": "King of Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 10.0, "POI_CBG": 421010037021.0, "MEDIAN_DWELL": 560.0, "Total Spend": 379.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.8, "MEDIAN_SPEND_PER_CUSTOMER": 39.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "LOCATION_NAME": "Fishtown Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 12.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 40.0, "Total Spend": 741.0, "Total Transactions": 24.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.11, "MEDIAN_SPEND_PER_CUSTOMER": 17.66 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-ph6-gkz", "LOCATION_NAME": "Habeeb's Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.98437, "LONGITUDE": -75.230985, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 559.0, "Total Spend": 1656.0, "Total Transactions": 212.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.1, "MEDIAN_SPEND_PER_CUSTOMER": 9.93 }, "geometry": { "type": "Point", "coordinates": [ -75.230985, 39.98437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "LOCATION_NAME": "San Lucas Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": null, "Total Spend": 945.0, "Total Transactions": 48.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.74, "MEDIAN_SPEND_PER_CUSTOMER": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068041, "LONGITUDE": -75.007034, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 29.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1919.0, "Total Transactions": 303.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.85, "MEDIAN_SPEND_PER_CUSTOMER": 6.39 }, "geometry": { "type": "Point", "coordinates": [ -75.007034, 40.068041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "LOCATION_NAME": "Varga Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 134.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 10.0, "Total Spend": 12612.0, "Total Transactions": 217.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.66 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "LOCATION_NAME": "Amada", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 155.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 182.0, "Total Spend": 27664.0, "Total Transactions": 203.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.73, "MEDIAN_SPEND_PER_CUSTOMER": 99.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "LOCATION_NAME": "China Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 453.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 37.0, "Total Spend": 13116.0, "Total Transactions": 138.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.52, "MEDIAN_SPEND_PER_CUSTOMER": 51.74 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-hh5", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951987, "LONGITUDE": -75.171121, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 251.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 874.0, "Total Spend": 630.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.54, "MEDIAN_SPEND_PER_CUSTOMER": 16.54 }, "geometry": { "type": "Point", "coordinates": [ -75.171121, 39.951987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "LOCATION_NAME": "Suraya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 317.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 81.0, "Total Spend": 10956.0, "Total Transactions": 64.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 104.12, "MEDIAN_SPEND_PER_CUSTOMER": 112.03 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jsq", "LOCATION_NAME": "Patient Care Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.936332, "LONGITUDE": -75.157296, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 50.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 57.0, "Total Spend": 38.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157296, 39.936332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "LOCATION_NAME": "Curran's Irish Inn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 210.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 2223.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.55, "MEDIAN_SPEND_PER_CUSTOMER": 34.75 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@63s-dvy-pn5", "LOCATION_NAME": "Hatch & Coop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954694, "LONGITUDE": -75.202176, "DATE_RANGE_START": 2021, "Total Visits": 632.0, "Total Visitors": 415.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 39.0, "Total Spend": 839.0, "Total Transactions": 60.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.98, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.202176, 39.954694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2021, "Total Visits": 310.0, "Total Visitors": 217.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 106.0, "Total Spend": 34023.0, "Total Transactions": 632.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.24, "MEDIAN_SPEND_PER_CUSTOMER": 46.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "LOCATION_NAME": "El Poquito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 72.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 10369.0, "Total Transactions": 141.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.88, "MEDIAN_SPEND_PER_CUSTOMER": 74.78 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8j-bff", "LOCATION_NAME": "Mayfair Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037436, "LONGITUDE": -75.038227, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 100.0, "POI_CBG": 421010330003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4685.0, "Total Transactions": 138.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.68, "MEDIAN_SPEND_PER_CUSTOMER": 33.84 }, "geometry": { "type": "Point", "coordinates": [ -75.038227, 40.037436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f9f", "LOCATION_NAME": "El Balconcito II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052956, "LONGITUDE": -75.064913, "DATE_RANGE_START": 2021, "Total Visits": 1038.0, "Total Visitors": 613.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 64.0, "Total Spend": 11091.0, "Total Transactions": 148.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.29, "MEDIAN_SPEND_PER_CUSTOMER": 65.29 }, "geometry": { "type": "Point", "coordinates": [ -75.064913, 40.052956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "LOCATION_NAME": "Giovani's Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951522, "LONGITUDE": -75.166746, "DATE_RANGE_START": 2021, "Total Visits": 981.0, "Total Visitors": 661.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 92.0, "Total Spend": 20533.0, "Total Transactions": 916.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.54 }, "geometry": { "type": "Point", "coordinates": [ -75.166746, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-835", "LOCATION_NAME": "Nanee's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953311, "LONGITUDE": -75.158833, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 1294.0, "Total Transactions": 91.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.62, "MEDIAN_SPEND_PER_CUSTOMER": 14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158833, 39.953311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938259, "LONGITUDE": -75.21557, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 143.0, "POI_CBG": 421010074005.0, "MEDIAN_DWELL": 11.0, "Total Spend": 8742.0, "Total Transactions": 525.0, "Total Customers": 377.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.17, "MEDIAN_SPEND_PER_CUSTOMER": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21557, 39.938259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm9-yd9", "LOCATION_NAME": "Famous 4th Street Delicatessen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940489, "LONGITUDE": -75.149633, "DATE_RANGE_START": 2021, "Total Visits": 174.0, "Total Visitors": 172.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 18000.0, "Total Transactions": 527.0, "Total Customers": 394.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149633, 39.940489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948761, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 212.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8247.0, "Total Transactions": 1274.0, "Total Customers": 752.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.35, "MEDIAN_SPEND_PER_CUSTOMER": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.948761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfx-kmk", "LOCATION_NAME": "Tsaocaa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02624, "LONGITUDE": -75.225272, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 100.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 147.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.31, "MEDIAN_SPEND_PER_CUSTOMER": 6.31 }, "geometry": { "type": "Point", "coordinates": [ -75.225272, 40.02624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2021, "Total Visits": 671.0, "Total Visitors": 449.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 12504.0, "Total Transactions": 1599.0, "Total Customers": 659.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 12.46 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "LOCATION_NAME": "Vic Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 158.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 13819.0, "Total Transactions": 327.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.86, "MEDIAN_SPEND_PER_CUSTOMER": 39.69 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pm3-st9", "LOCATION_NAME": "Laurel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929472, "LONGITUDE": -75.163723, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": null, "Total Spend": 6321.0, "Total Transactions": 48.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.03, "MEDIAN_SPEND_PER_CUSTOMER": 32.34 }, "geometry": { "type": "Point", "coordinates": [ -75.163723, 39.929472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfv-8vz", "LOCATION_NAME": "Weavers Way Mercantile", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046585, "LONGITUDE": -75.195343, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 239.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.195343, 40.046585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-mrk", "LOCATION_NAME": "Jerry's Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.965113, "LONGITUDE": -75.138904, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4972.0, "Total Transactions": 62.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.48, "MEDIAN_SPEND_PER_CUSTOMER": 82.32 }, "geometry": { "type": "Point", "coordinates": [ -75.138904, 39.965113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "LOCATION_NAME": "Fiesta Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 26.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 3134.0, "Total Transactions": 143.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.36, "MEDIAN_SPEND_PER_CUSTOMER": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p74-wzf", "LOCATION_NAME": "Vista Auto Group", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.038451, "LONGITUDE": -75.03703, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 31.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 368.0, "Total Spend": 9308.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 500.0, "MEDIAN_SPEND_PER_CUSTOMER": 500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03703, 40.038451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 38.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1315.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.89, "MEDIAN_SPEND_PER_CUSTOMER": 50.62 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9q-hqz", "LOCATION_NAME": "Pearle Vision", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.079188, "LONGITUDE": -75.028586, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 48.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 355.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.44, "MEDIAN_SPEND_PER_CUSTOMER": 74.44 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.079188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "LOCATION_NAME": "Somerset Splits", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010180013.0, "MEDIAN_DWELL": 38.0, "Total Spend": 1906.0, "Total Transactions": 162.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.38, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-h89", "LOCATION_NAME": "Gyu-Kaku", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960773, "LONGITUDE": -75.170117, "DATE_RANGE_START": 2021, "Total Visits": 542.0, "Total Visitors": 382.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 99.0, "Total Spend": 16246.0, "Total Transactions": 229.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.16, "MEDIAN_SPEND_PER_CUSTOMER": 73.84 }, "geometry": { "type": "Point", "coordinates": [ -75.170117, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-tvz", "LOCATION_NAME": "Devon Seafood Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949401, "LONGITUDE": -75.170553, "DATE_RANGE_START": 2021, "Total Visits": 1310.0, "Total Visitors": 632.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 263.0, "Total Spend": 915.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 95.86, "MEDIAN_SPEND_PER_CUSTOMER": 95.86 }, "geometry": { "type": "Point", "coordinates": [ -75.170553, 39.949401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94797, "LONGITUDE": -75.154128, "DATE_RANGE_START": 2021, "Total Visits": 344.0, "Total Visitors": 303.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7551.0, "Total Transactions": 1050.0, "Total Customers": 749.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.7, "MEDIAN_SPEND_PER_CUSTOMER": 6.54 }, "geometry": { "type": "Point", "coordinates": [ -75.154128, 39.94797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-j5f", "LOCATION_NAME": "Poppy's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074185, "LONGITUDE": -75.202466, "DATE_RANGE_START": 2021, "Total Visits": 668.0, "Total Visitors": 456.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 1626.0, "Total Transactions": 208.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202466, 40.074185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.099554, "LONGITUDE": -75.024268, "DATE_RANGE_START": 2021, "Total Visits": 2337.0, "Total Visitors": 1871.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1830.0, "Total Transactions": 248.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.07, "MEDIAN_SPEND_PER_CUSTOMER": 7.14 }, "geometry": { "type": "Point", "coordinates": [ -75.024268, 40.099554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgd-z9f", "LOCATION_NAME": "Pita Chip", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956634, "LONGITUDE": -75.194194, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 64.0, "Total Spend": 8830.0, "Total Transactions": 632.0, "Total Customers": 482.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.79, "MEDIAN_SPEND_PER_CUSTOMER": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.194194, 39.956634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97281, "LONGITUDE": -75.134837, "DATE_RANGE_START": 2021, "Total Visits": 905.0, "Total Visitors": 387.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 81.0, "Total Spend": 14998.0, "Total Transactions": 1375.0, "Total Customers": 1029.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.19 }, "geometry": { "type": "Point", "coordinates": [ -75.134837, 39.97281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5s5", "LOCATION_NAME": "Loews Philadelphia Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951431, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2021, "Total Visits": 9785.0, "Total Visitors": 5890.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 343.0, "Total Spend": 92773.0, "Total Transactions": 764.0, "Total Customers": 504.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 55.13 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 39.951431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pgm-68v", "LOCATION_NAME": "The Black Squirrel Pub and Haunt", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.009228, "LONGITUDE": -75.193913, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 217.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 163.0, "Total Spend": 14009.0, "Total Transactions": 129.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 112.88, "MEDIAN_SPEND_PER_CUSTOMER": 112.25 }, "geometry": { "type": "Point", "coordinates": [ -75.193913, 40.009228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-7wk", "LOCATION_NAME": "The Board & Brew", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953486, "LONGITUDE": -75.187898, "DATE_RANGE_START": 2021, "Total Visits": 1041.0, "Total Visitors": 251.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 1185.0, "Total Spend": 623.0, "Total Transactions": 38.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.7, "MEDIAN_SPEND_PER_CUSTOMER": 11.97 }, "geometry": { "type": "Point", "coordinates": [ -75.187898, 39.953486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "LOCATION_NAME": "New England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2021, "Total Visits": 387.0, "Total Visitors": 260.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2856.0, "Total Transactions": 136.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.28 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-t5f", "LOCATION_NAME": "Perla", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930011, "LONGITUDE": -75.162803, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 124.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2691.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 117.2, "MEDIAN_SPEND_PER_CUSTOMER": 117.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162803, 39.930011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-qs5", "LOCATION_NAME": "Panasian Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030993, "LONGITUDE": -75.10376, "DATE_RANGE_START": 2021, "Total Visits": 718.0, "Total Visitors": 623.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 29.0, "Total Spend": 5624.0, "Total Transactions": 160.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.2, "MEDIAN_SPEND_PER_CUSTOMER": 41.34 }, "geometry": { "type": "Point", "coordinates": [ -75.10376, 40.030993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017737, "LONGITUDE": -75.148813, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 95.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5216.0, "Total Transactions": 353.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.148813, 40.017737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm4-t7q", "LOCATION_NAME": "Mifflin Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924805, "LONGITUDE": -75.154427, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 124.0, "POI_CBG": 421010042014.0, "MEDIAN_DWELL": 414.0, "Total Spend": 812.0, "Total Transactions": 84.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.154427, 39.924805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.99445, "LONGITUDE": -75.09179, "DATE_RANGE_START": 2021, "Total Visits": 4222.0, "Total Visitors": 2186.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 9362.0, "Total Transactions": 45.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 181.02, "MEDIAN_SPEND_PER_CUSTOMER": 198.23 }, "geometry": { "type": "Point", "coordinates": [ -75.09179, 39.99445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2021, "Total Visits": 537.0, "Total Visitors": 401.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15406.0, "Total Transactions": 1294.0, "Total Customers": 919.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 322.0, "POI_CBG": 421010098011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10250.0, "Total Transactions": 957.0, "Total Customers": 773.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.85, "MEDIAN_SPEND_PER_CUSTOMER": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgf-dvz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958338, "LONGITUDE": -75.208218, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 79.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1953.0, "Total Transactions": 153.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.14, "MEDIAN_SPEND_PER_CUSTOMER": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.208218, 39.958338 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034799, "LONGITUDE": -75.06613, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 117.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5842.0, "Total Transactions": 234.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.06613, 40.034799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952029, "LONGITUDE": -75.167533, "DATE_RANGE_START": 2021, "Total Visits": 773.0, "Total Visitors": 580.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 10393.0, "Total Transactions": 897.0, "Total Customers": 621.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.167533, 39.952029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p85-2hq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066275, "LONGITUDE": -75.051537, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 146.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2116.0, "Total Transactions": 308.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.15, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051537, 40.066275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnz-xyv", "LOCATION_NAME": "Hong Kong Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988418, "LONGITUDE": -75.102851, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": null, "Total Spend": 387.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.91, "MEDIAN_SPEND_PER_CUSTOMER": 11.59 }, "geometry": { "type": "Point", "coordinates": [ -75.102851, 39.988418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-dd9", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991806, "LONGITUDE": -75.113116, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010178003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 745.0, "Total Transactions": 43.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.73, "MEDIAN_SPEND_PER_CUSTOMER": 10.73 }, "geometry": { "type": "Point", "coordinates": [ -75.113116, 39.991806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044029, "LONGITUDE": -75.102175, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 69.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7824.0, "Total Transactions": 1033.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.47, "MEDIAN_SPEND_PER_CUSTOMER": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.102175, 40.044029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-v75", "LOCATION_NAME": "W P Cooke", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 40.025446, "LONGITUDE": -75.147136, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010283003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2522.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 528.46, "MEDIAN_SPEND_PER_CUSTOMER": 528.46 }, "geometry": { "type": "Point", "coordinates": [ -75.147136, 40.025446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-649", "LOCATION_NAME": "The Barn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948417, "LONGITUDE": -75.22137, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 21.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3903.0, "Total Transactions": 124.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.22137, 39.948417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "LOCATION_NAME": "Jack's place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 31.0, "POI_CBG": 421010326007.0, "MEDIAN_DWELL": 515.0, "Total Spend": 534.0, "Total Transactions": 33.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.41, "MEDIAN_SPEND_PER_CUSTOMER": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "LOCATION_NAME": "P.C. Richard & Son", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.046246, "LONGITUDE": -75.059899, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 229.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 14.0, "Total Spend": 11949.0, "Total Transactions": 31.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 205.16, "MEDIAN_SPEND_PER_CUSTOMER": 205.16 }, "geometry": { "type": "Point", "coordinates": [ -75.059899, 40.046246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984509, "LONGITUDE": -75.121352, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 165.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1953.0, "Total Transactions": 76.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.72, "MEDIAN_SPEND_PER_CUSTOMER": 46.52 }, "geometry": { "type": "Point", "coordinates": [ -75.121352, 39.984509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-kj9", "LOCATION_NAME": "Sassafras Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953897, "LONGITUDE": -75.14465, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 100.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 15668.0, "Total Transactions": 1045.0, "Total Customers": 496.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14465, 39.953897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-psq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.120378, "LONGITUDE": -75.018088, "DATE_RANGE_START": 2021, "Total Visits": 663.0, "Total Visitors": 470.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 20791.0, "Total Transactions": 990.0, "Total Customers": 442.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 23.78 }, "geometry": { "type": "Point", "coordinates": [ -75.018088, 40.120378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-b49", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030422, "LONGITUDE": -75.153419, "DATE_RANGE_START": 2021, "Total Visits": 883.0, "Total Visitors": 616.0, "POI_CBG": 421010280003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1348.0, "Total Transactions": 55.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.153419, 40.030422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phy-5pv", "LOCATION_NAME": "E & S Mini Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023938, "LONGITUDE": -75.130466, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 151.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.65, "MEDIAN_SPEND_PER_CUSTOMER": 18.79 }, "geometry": { "type": "Point", "coordinates": [ -75.130466, 40.023938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "LOCATION_NAME": "Girard Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 252.0, "Total Transactions": 21.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.73, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "LOCATION_NAME": "M & M Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 31.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4578.0, "Total Transactions": 148.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.9622, "LONGITUDE": -75.172139, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 43.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5793.0, "Total Transactions": 158.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.22, "MEDIAN_SPEND_PER_CUSTOMER": 30.22 }, "geometry": { "type": "Point", "coordinates": [ -75.172139, 39.9622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "LOCATION_NAME": "El Balconcito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6068.0, "Total Transactions": 98.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.25, "MEDIAN_SPEND_PER_CUSTOMER": 56.25 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.052515, "LONGITUDE": -75.058505, "DATE_RANGE_START": 2021, "Total Visits": 831.0, "Total Visitors": 642.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7117.0, "Total Transactions": 172.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.25, "MEDIAN_SPEND_PER_CUSTOMER": 33.66 }, "geometry": { "type": "Point", "coordinates": [ -75.058505, 40.052515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "LOCATION_NAME": "iMunch Cafe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": null, "Total Spend": 6144.0, "Total Transactions": 320.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.005166, "LONGITUDE": -75.108882, "DATE_RANGE_START": 2021, "Total Visits": 1905.0, "Total Visitors": 1196.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 33381.0, "Total Transactions": 1251.0, "Total Customers": 840.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.06, "MEDIAN_SPEND_PER_CUSTOMER": 31.53 }, "geometry": { "type": "Point", "coordinates": [ -75.108882, 40.005166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.027243, "LONGITUDE": -75.110271, "DATE_RANGE_START": 2021, "Total Visits": 1243.0, "Total Visitors": 943.0, "POI_CBG": 421010292001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1798.0, "Total Transactions": 53.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.09, "MEDIAN_SPEND_PER_CUSTOMER": 35.09 }, "geometry": { "type": "Point", "coordinates": [ -75.110271, 40.027243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj4-y7q", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.007623, "LONGITUDE": -75.150494, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 243.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 156.0, "Total Spend": 9233.0, "Total Transactions": 100.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.99 }, "geometry": { "type": "Point", "coordinates": [ -75.150494, 40.007623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045256, "LONGITUDE": -75.086611, "DATE_RANGE_START": 2021, "Total Visits": 523.0, "Total Visitors": 320.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 59.0, "Total Spend": 384.0, "Total Transactions": 36.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.086611, 40.045256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "LOCATION_NAME": "CHAPMAN NISSAN", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.910684, "LONGITUDE": -75.224285, "DATE_RANGE_START": 2021, "Total Visits": 771.0, "Total Visitors": 432.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 20838.0, "Total Transactions": 69.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 120.44, "MEDIAN_SPEND_PER_CUSTOMER": 167.35 }, "geometry": { "type": "Point", "coordinates": [ -75.224285, 39.910684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2021, "Total Visits": 1389.0, "Total Visitors": 869.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 192790.0, "Total Transactions": 2150.0, "Total Customers": 1067.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.61, "MEDIAN_SPEND_PER_CUSTOMER": 49.29 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052422, "LONGITUDE": -75.00877, "DATE_RANGE_START": 2021, "Total Visits": 368.0, "Total Visitors": 289.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 18733.0, "Total Transactions": 413.0, "Total Customers": 332.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.58, "MEDIAN_SPEND_PER_CUSTOMER": 33.46 }, "geometry": { "type": "Point", "coordinates": [ -75.00877, 40.052422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "LOCATION_NAME": "Rittenhouse Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2021, "Total Visits": 1785.0, "Total Visitors": 1246.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 8.0, "Total Spend": 96546.0, "Total Transactions": 4315.0, "Total Customers": 1678.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949907, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 346.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3690.0, "Total Transactions": 344.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.43, "MEDIAN_SPEND_PER_CUSTOMER": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.949907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pmf-qs5", "LOCATION_NAME": "Wine Dive", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.943689, "LONGITUDE": -75.167525, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 136.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 51.0, "Total Spend": 3928.0, "Total Transactions": 84.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.72, "MEDIAN_SPEND_PER_CUSTOMER": 53.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167525, 39.943689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p8j-6hq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026851, "LONGITUDE": -75.028938, "DATE_RANGE_START": 2021, "Total Visits": 501.0, "Total Visitors": 415.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 725.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.87, "MEDIAN_SPEND_PER_CUSTOMER": 41.79 }, "geometry": { "type": "Point", "coordinates": [ -75.028938, 40.026851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "LOCATION_NAME": "Windsor", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08613, "LONGITUDE": -74.962864, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 379.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 31.0, "Total Spend": 16296.0, "Total Transactions": 341.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.9, "MEDIAN_SPEND_PER_CUSTOMER": 44.7 }, "geometry": { "type": "Point", "coordinates": [ -74.962864, 40.08613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.945313, "LONGITUDE": -75.238538, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 437.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 809.0, "Total Transactions": 67.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.3, "MEDIAN_SPEND_PER_CUSTOMER": 11.71 }, "geometry": { "type": "Point", "coordinates": [ -75.238538, 39.945313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-zs5", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.941661, "LONGITUDE": -75.151237, "DATE_RANGE_START": 2021, "Total Visits": 1248.0, "Total Visitors": 990.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 592.0, "Total Transactions": 33.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151237, 39.941661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.005384, "LONGITUDE": -75.097837, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 217.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1829.0, "Total Transactions": 74.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.26, "MEDIAN_SPEND_PER_CUSTOMER": 21.12 }, "geometry": { "type": "Point", "coordinates": [ -75.097837, 40.005384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj3-tn5", "LOCATION_NAME": "Royal K Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.026957, "LONGITUDE": -75.147676, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 298.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.5, "MEDIAN_SPEND_PER_CUSTOMER": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147676, 40.026957 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "LOCATION_NAME": "No 1 Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 41.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 341.0, "Total Spend": 765.0, "Total Transactions": 38.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.21, "MEDIAN_SPEND_PER_CUSTOMER": 32.51 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-sbk", "LOCATION_NAME": "The Igloo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945135, "LONGITUDE": -75.179463, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": null, "Total Spend": 931.0, "Total Transactions": 69.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.87, "MEDIAN_SPEND_PER_CUSTOMER": 10.34 }, "geometry": { "type": "Point", "coordinates": [ -75.179463, 39.945135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-v9f", "LOCATION_NAME": "Tang Pharmacy V", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068833, "LONGITUDE": -75.157234, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": null, "Total Spend": 737.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157234, 40.068833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "LOCATION_NAME": "Bad Brother", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": null, "Total Spend": 9168.0, "Total Transactions": 134.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.97, "MEDIAN_SPEND_PER_CUSTOMER": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-w8v", "LOCATION_NAME": "Friday Saturday Sunday", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948822, "LONGITUDE": -75.175905, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": null, "Total Spend": 4429.0, "Total Transactions": 53.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.42, "MEDIAN_SPEND_PER_CUSTOMER": 54.54 }, "geometry": { "type": "Point", "coordinates": [ -75.175905, 39.948822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "LOCATION_NAME": "Philadelphia Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991113, "LONGITUDE": -75.130735, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 76.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1914.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.99, "MEDIAN_SPEND_PER_CUSTOMER": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.130735, 39.991113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "LOCATION_NAME": "Hibiscus Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2925.0, "Total Transactions": 131.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.69, "MEDIAN_SPEND_PER_CUSTOMER": 21.62 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "LOCATION_NAME": "Park Manor Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 76.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 386.0, "Total Spend": 5694.0, "Total Transactions": 434.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-t9z", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947992, "LONGITUDE": -75.154441, "DATE_RANGE_START": 2021, "Total Visits": 1382.0, "Total Visitors": 1033.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 61.0, "Total Spend": 1787.0, "Total Transactions": 181.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.46 }, "geometry": { "type": "Point", "coordinates": [ -75.154441, 39.947992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.061169, "LONGITUDE": -75.237242, "DATE_RANGE_START": 2021, "Total Visits": 800.0, "Total Visitors": 597.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14327.0, "Total Transactions": 547.0, "Total Customers": 372.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.18, "MEDIAN_SPEND_PER_CUSTOMER": 21.29 }, "geometry": { "type": "Point", "coordinates": [ -75.237242, 40.061169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9w-zmk", "LOCATION_NAME": "Hendrix Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.118281, "LONGITUDE": -75.017944, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 315.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 961.0, "Total Transactions": 53.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.5, "MEDIAN_SPEND_PER_CUSTOMER": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.017944, 40.118281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmf-kvf", "LOCATION_NAME": "Village Whiskey", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.951382, "LONGITUDE": -75.173791, "DATE_RANGE_START": 2021, "Total Visits": 1408.0, "Total Visitors": 981.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 21238.0, "Total Transactions": 263.0, "Total Customers": 251.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.76, "MEDIAN_SPEND_PER_CUSTOMER": 71.52 }, "geometry": { "type": "Point", "coordinates": [ -75.173791, 39.951382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-rc5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977844, "LONGITUDE": -75.118479, "DATE_RANGE_START": 2021, "Total Visits": 628.0, "Total Visitors": 494.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 38279.0, "Total Transactions": 1685.0, "Total Customers": 938.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.01, "MEDIAN_SPEND_PER_CUSTOMER": 21.82 }, "geometry": { "type": "Point", "coordinates": [ -75.118479, 39.977844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "LOCATION_NAME": "Chill On the Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2121.0, "Total Transactions": 179.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.73, "MEDIAN_SPEND_PER_CUSTOMER": 11.41 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.96715, "LONGITUDE": -75.175689, "DATE_RANGE_START": 2021, "Total Visits": 1038.0, "Total Visitors": 826.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1969.0, "Total Transactions": 72.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.51, "MEDIAN_SPEND_PER_CUSTOMER": 37.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175689, 39.96715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 41.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1544.0, "Total Transactions": 45.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.47, "MEDIAN_SPEND_PER_CUSTOMER": 26.59 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-wkz", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.922348, "LONGITUDE": -75.146462, "DATE_RANGE_START": 2021, "Total Visits": 1005.0, "Total Visitors": 874.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 9310.0, "Total Transactions": 174.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.81, "MEDIAN_SPEND_PER_CUSTOMER": 45.67 }, "geometry": { "type": "Point", "coordinates": [ -75.146462, 39.922348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "LOCATION_NAME": "Nordstrom Rack", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951246, "LONGITUDE": -75.168975, "DATE_RANGE_START": 2021, "Total Visits": 1845.0, "Total Visitors": 1480.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 123188.0, "Total Transactions": 1888.0, "Total Customers": 1675.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.17, "MEDIAN_SPEND_PER_CUSTOMER": 49.97 }, "geometry": { "type": "Point", "coordinates": [ -75.168975, 39.951246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7w-wc5", "LOCATION_NAME": "McNally's Tavern Mayfair", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035746, "LONGITUDE": -75.049243, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": null, "Total Spend": 4845.0, "Total Transactions": 100.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.42, "MEDIAN_SPEND_PER_CUSTOMER": 40.69 }, "geometry": { "type": "Point", "coordinates": [ -75.049243, 40.035746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-wc5", "LOCATION_NAME": "Craft Hall", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962369, "LONGITUDE": -75.135937, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 294.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 90.0, "Total Spend": 13626.0, "Total Transactions": 255.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.64, "MEDIAN_SPEND_PER_CUSTOMER": 48.09 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.962369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "LOCATION_NAME": "Yummy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954519, "LONGITUDE": -75.170234, "DATE_RANGE_START": 2021, "Total Visits": 322.0, "Total Visitors": 191.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 101.0, "Total Spend": 1697.0, "Total Transactions": 88.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.04, "MEDIAN_SPEND_PER_CUSTOMER": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.170234, 39.954519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "LOCATION_NAME": "Yiro Yiro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032303, "LONGITUDE": -75.214323, "DATE_RANGE_START": 2021, "Total Visits": 1587.0, "Total Visitors": 986.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7669.0, "Total Transactions": 325.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.33, "MEDIAN_SPEND_PER_CUSTOMER": 22.28 }, "geometry": { "type": "Point", "coordinates": [ -75.214323, 40.032303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.051082, "LONGITUDE": -75.059668, "DATE_RANGE_START": 2021, "Total Visits": 6468.0, "Total Visitors": 4224.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 363633.0, "Total Transactions": 7294.0, "Total Customers": 4372.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.2, "MEDIAN_SPEND_PER_CUSTOMER": 49.11 }, "geometry": { "type": "Point", "coordinates": [ -75.059668, 40.051082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004821, "LONGITUDE": -75.179811, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 162.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 44.0, "Total Spend": 10866.0, "Total Transactions": 959.0, "Total Customers": 754.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.94, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.179811, 40.004821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pj8-pgk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031694, "LONGITUDE": -75.099517, "DATE_RANGE_START": 2021, "Total Visits": 6260.0, "Total Visitors": 4169.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3056.0, "Total Transactions": 279.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 12.17 }, "geometry": { "type": "Point", "coordinates": [ -75.099517, 40.031694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "LOCATION_NAME": "Xi'an Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 67.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 173.0, "Total Spend": 995.0, "Total Transactions": 38.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.06, "MEDIAN_SPEND_PER_CUSTOMER": 25.59 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2021, "Total Visits": 695.0, "Total Visitors": 372.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 11670.0, "Total Transactions": 1554.0, "Total Customers": 527.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.04, "MEDIAN_SPEND_PER_CUSTOMER": 10.34 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-835", "LOCATION_NAME": "Little Thai Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953099, "LONGITUDE": -75.159123, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 9731.0, "Total Transactions": 489.0, "Total Customers": 401.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.66, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.159123, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "LOCATION_NAME": "Mammoth Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969701, "LONGITUDE": -75.146132, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 95.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2338.0, "Total Transactions": 248.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.55, "MEDIAN_SPEND_PER_CUSTOMER": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.146132, 39.969701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-p8m-y7q", "LOCATION_NAME": "Crazy Crab House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031428, "LONGITUDE": -75.054109, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010316006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 388.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.07, "MEDIAN_SPEND_PER_CUSTOMER": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.054109, 40.031428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pj8-dqf", "LOCATION_NAME": "Oxford Circle Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033593, "LONGITUDE": -75.085029, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1483.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.07, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.085029, 40.033593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pfy-f4v", "LOCATION_NAME": "WorldWide Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.034557, "LONGITUDE": -75.215587, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 29.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 166.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.23, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.215587, 40.034557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "LOCATION_NAME": "Charlie Was a Sinner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 88.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 45966.0, "Total Transactions": 594.0, "Total Customers": 566.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.32, "MEDIAN_SPEND_PER_CUSTOMER": 62.71 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5mk", "LOCATION_NAME": "The Halal Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950744, "LONGITUDE": -75.161873, "DATE_RANGE_START": 2021, "Total Visits": 18618.0, "Total Visitors": 13115.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 661.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.1, "MEDIAN_SPEND_PER_CUSTOMER": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161873, 39.950744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phz-wkz", "LOCATION_NAME": "Steve's Old Pizza London", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.997988, "LONGITUDE": -75.101209, "DATE_RANGE_START": 2021, "Total Visits": 217.0, "Total Visitors": 33.0, "POI_CBG": 421010188002.0, "MEDIAN_DWELL": 361.0, "Total Spend": 2140.0, "Total Transactions": 105.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.84, "MEDIAN_SPEND_PER_CUSTOMER": 22.31 }, "geometry": { "type": "Point", "coordinates": [ -75.101209, 39.997988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmd-xqz", "LOCATION_NAME": "Cafe Ynez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939765, "LONGITUDE": -75.177339, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 33.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 182.0, "Total Spend": 523.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.47, "MEDIAN_SPEND_PER_CUSTOMER": 60.53 }, "geometry": { "type": "Point", "coordinates": [ -75.177339, 39.939765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "LOCATION_NAME": "Wadsworth Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 36.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4463.0, "Total Transactions": 236.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.04, "MEDIAN_SPEND_PER_CUSTOMER": 21.22 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-jgk", "LOCATION_NAME": "The Happy Rooster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950462, "LONGITUDE": -75.16756, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 208.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 43.0, "Total Spend": 12579.0, "Total Transactions": 246.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.11, "MEDIAN_SPEND_PER_CUSTOMER": 40.95 }, "geometry": { "type": "Point", "coordinates": [ -75.16756, 39.950462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22f@628-p9q-hqz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.07905, "LONGITUDE": -75.028048, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1314.0, "Total Transactions": 45.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.48, "MEDIAN_SPEND_PER_CUSTOMER": 29.61 }, "geometry": { "type": "Point", "coordinates": [ -75.028048, 40.07905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-yqf", "LOCATION_NAME": "Matcha Cafe Maiko", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95548, "LONGITUDE": -75.155132, "DATE_RANGE_START": 2021, "Total Visits": 10434.0, "Total Visitors": 6952.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1362.0, "Total Transactions": 117.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.42, "MEDIAN_SPEND_PER_CUSTOMER": 9.42 }, "geometry": { "type": "Point", "coordinates": [ -75.155132, 39.95548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-68v", "LOCATION_NAME": "J'aime French Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948054, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 184.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1323.0, "Total Transactions": 105.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.24, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.948054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-pjv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.993233, "LONGITUDE": -75.096202, "DATE_RANGE_START": 2021, "Total Visits": 666.0, "Total Visitors": 480.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 19834.0, "Total Transactions": 823.0, "Total Customers": 463.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.08, "MEDIAN_SPEND_PER_CUSTOMER": 23.86 }, "geometry": { "type": "Point", "coordinates": [ -75.096202, 39.993233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phk-yvz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.054755, "LONGITUDE": -75.125732, "DATE_RANGE_START": 2021, "Total Visits": 1413.0, "Total Visitors": 921.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2541.0, "Total Transactions": 95.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.79, "MEDIAN_SPEND_PER_CUSTOMER": 36.51 }, "geometry": { "type": "Point", "coordinates": [ -75.125732, 40.054755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.074942, "LONGITUDE": -75.035038, "DATE_RANGE_START": 2021, "Total Visits": 2002.0, "Total Visitors": 1549.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1563.0, "Total Transactions": 41.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.81, "MEDIAN_SPEND_PER_CUSTOMER": 41.81 }, "geometry": { "type": "Point", "coordinates": [ -75.035038, 40.074942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-x89", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030078, "LONGITUDE": -75.146229, "DATE_RANGE_START": 2021, "Total Visits": 2372.0, "Total Visitors": 1566.0, "POI_CBG": 421010282001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 453.0, "Total Transactions": 24.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.146229, 40.030078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "LOCATION_NAME": "Off Broadway Shoe Warehouse", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 554.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2763.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.49, "MEDIAN_SPEND_PER_CUSTOMER": 82.49 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2021, "Total Visits": 387.0, "Total Visitors": 217.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 170.0, "Total Spend": 3309.0, "Total Transactions": 67.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "LOCATION_NAME": "Moore Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.926601, "LONGITUDE": -75.156132, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 165.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20412.0, "Total Transactions": 561.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.156132, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 184.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6606.0, "Total Transactions": 637.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 11.51 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvw-jgk", "LOCATION_NAME": "Sun Ray Drugs", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957136, "LONGITUDE": -75.22573, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 115.0, "POI_CBG": 421010085006.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1855.0, "Total Transactions": 105.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.87, "MEDIAN_SPEND_PER_CUSTOMER": 3.55 }, "geometry": { "type": "Point", "coordinates": [ -75.22573, 39.957136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.042819, "LONGITUDE": -75.181027, "DATE_RANGE_START": 2021, "Total Visits": 1320.0, "Total Visitors": 716.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2209.0, "Total Transactions": 122.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.77, "MEDIAN_SPEND_PER_CUSTOMER": 32.14 }, "geometry": { "type": "Point", "coordinates": [ -75.181027, 40.042819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "LOCATION_NAME": "Dollar Value", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 162.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5628.0, "Total Transactions": 315.0, "Total Customers": 277.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.84, "MEDIAN_SPEND_PER_CUSTOMER": 12.55 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.004616, "LONGITUDE": -75.104425, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 172.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 342.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.29, "MEDIAN_SPEND_PER_CUSTOMER": 38.32 }, "geometry": { "type": "Point", "coordinates": [ -75.104425, 40.004616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgg-n3q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998932, "LONGITUDE": -75.167191, "DATE_RANGE_START": 2021, "Total Visits": 255.0, "Total Visitors": 181.0, "POI_CBG": 421010172011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 422.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.167191, 39.998932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-33q", "LOCATION_NAME": "LOFT", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.953717, "LONGITUDE": -75.195101, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1331.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.74, "MEDIAN_SPEND_PER_CUSTOMER": 48.43 }, "geometry": { "type": "Point", "coordinates": [ -75.195101, 39.953717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "LOCATION_NAME": "Melograno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951247, "LONGITUDE": -75.174115, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 50.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 1704.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.4, "MEDIAN_SPEND_PER_CUSTOMER": 71.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174115, 39.951247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pm9-s5z", "LOCATION_NAME": "PJ Clarkes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948105, "LONGITUDE": -75.151179, "DATE_RANGE_START": 2021, "Total Visits": 4523.0, "Total Visitors": 3313.0, "POI_CBG": 421010010011.0, "MEDIAN_DWELL": 58.0, "Total Spend": 428.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.66, "MEDIAN_SPEND_PER_CUSTOMER": 89.66 }, "geometry": { "type": "Point", "coordinates": [ -75.151179, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-ygk", "LOCATION_NAME": "Pho Cali", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953422, "LONGITUDE": -75.156467, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 291.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 4456.0, "Total Transactions": 134.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.31, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156467, 39.953422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044629, "LONGITUDE": -75.142895, "DATE_RANGE_START": 2021, "Total Visits": 422.0, "Total Visitors": 329.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2110.0, "Total Transactions": 203.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.78, "MEDIAN_SPEND_PER_CUSTOMER": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.142895, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@63s-dw2-4gk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.965722, "LONGITUDE": -75.246681, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 57.0, "POI_CBG": 421010096004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4657.0, "Total Transactions": 248.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 16.04 }, "geometry": { "type": "Point", "coordinates": [ -75.246681, 39.965722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 208.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 163.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.34, "MEDIAN_SPEND_PER_CUSTOMER": 8.92 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952459, "LONGITUDE": -75.162267, "DATE_RANGE_START": 2021, "Total Visits": 3088.0, "Total Visitors": 2320.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 203.0, "Total Spend": 7179.0, "Total Transactions": 1251.0, "Total Customers": 558.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.73, "MEDIAN_SPEND_PER_CUSTOMER": 8.08 }, "geometry": { "type": "Point", "coordinates": [ -75.162267, 39.952459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm4-b8v", "LOCATION_NAME": "Hyon's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935029, "LONGITUDE": -75.179358, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 12.0, "Total Spend": 140.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.97, "MEDIAN_SPEND_PER_CUSTOMER": 21.97 }, "geometry": { "type": "Point", "coordinates": [ -75.179358, 39.935029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22h@628-pmf-n3q", "LOCATION_NAME": "Genji", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953358, "LONGITUDE": -75.165439, "DATE_RANGE_START": 2021, "Total Visits": 227.0, "Total Visitors": 174.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 151.0, "Total Spend": 586.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.165439, 39.953358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgk-psq", "LOCATION_NAME": "West Village Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.003325, "LONGITUDE": -75.207238, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 72.0, "POI_CBG": 421010122012.0, "MEDIAN_DWELL": 523.0, "Total Spend": 47.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.34, "MEDIAN_SPEND_PER_CUSTOMER": 9.85 }, "geometry": { "type": "Point", "coordinates": [ -75.207238, 40.003325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.095101, "LONGITUDE": -74.975911, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 317.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 36514.0, "Total Transactions": 1301.0, "Total Customers": 752.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.06, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975911, 40.095101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp4-r49", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.975637, "LONGITUDE": -75.119836, "DATE_RANGE_START": 2021, "Total Visits": 2360.0, "Total Visitors": 1198.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5616.0, "Total Transactions": 119.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.42 }, "geometry": { "type": "Point", "coordinates": [ -75.119836, 39.975637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kmk", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.973034, "LONGITUDE": -75.158605, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 72.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 12231.0, "Total Transactions": 131.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 124.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158605, 39.973034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96142, "LONGITUDE": -75.144288, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 119.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4685.0, "Total Transactions": 733.0, "Total Customers": 396.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.3, "MEDIAN_SPEND_PER_CUSTOMER": 7.33 }, "geometry": { "type": "Point", "coordinates": [ -75.144288, 39.96142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-pvz", "LOCATION_NAME": "Triple Play Sports", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.939041, "LONGITUDE": -75.157707, "DATE_RANGE_START": 2021, "Total Visits": 547.0, "Total Visitors": 320.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 109.0, "Total Spend": 3601.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157707, 39.939041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg9-vzz", "LOCATION_NAME": "Ace Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.967397, "LONGITUDE": -75.170422, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 69.0, "POI_CBG": 421010135002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 435.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.94, "MEDIAN_SPEND_PER_CUSTOMER": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.170422, 39.967397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.980937, "LONGITUDE": -75.144152, "DATE_RANGE_START": 2021, "Total Visits": 1628.0, "Total Visitors": 1053.0, "POI_CBG": 421010156002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1859.0, "Total Transactions": 69.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.18, "MEDIAN_SPEND_PER_CUSTOMER": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144152, 39.980937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.032157, "LONGITUDE": -75.050449, "DATE_RANGE_START": 2021, "Total Visits": 473.0, "Total Visitors": 351.0, "POI_CBG": 421010325001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3334.0, "Total Transactions": 134.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.23, "MEDIAN_SPEND_PER_CUSTOMER": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050449, 40.032157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 177.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2323.0, "Total Transactions": 62.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.93, "MEDIAN_SPEND_PER_CUSTOMER": 9.98 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pj3-wrk", "LOCATION_NAME": "Silver Chopsticks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024907, "LONGITUDE": -75.14743, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010283003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 373.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.42, "MEDIAN_SPEND_PER_CUSTOMER": 41.42 }, "geometry": { "type": "Point", "coordinates": [ -75.14743, 40.024907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-73q", "LOCATION_NAME": "Byrne's Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984147, "LONGITUDE": -75.098754, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 138.0, "POI_CBG": 421010378002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12271.0, "Total Transactions": 189.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.15, "MEDIAN_SPEND_PER_CUSTOMER": 54.53 }, "geometry": { "type": "Point", "coordinates": [ -75.098754, 39.984147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "LOCATION_NAME": "TGI Fridays", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2021, "Total Visits": 950.0, "Total Visitors": 826.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 48.0, "Total Spend": 32208.0, "Total Transactions": 632.0, "Total Customers": 582.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.48, "MEDIAN_SPEND_PER_CUSTOMER": 43.82 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-w49", "LOCATION_NAME": "Sweet Lucy's Smokehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028508, "LONGITUDE": -75.027023, "DATE_RANGE_START": 2021, "Total Visits": 613.0, "Total Visitors": 513.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1869.0, "Total Transactions": 38.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.68, "MEDIAN_SPEND_PER_CUSTOMER": 54.89 }, "geometry": { "type": "Point", "coordinates": [ -75.027023, 40.028508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "LOCATION_NAME": "Station Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2021, "Total Visits": 289.0, "Total Visitors": 150.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 58.0, "Total Spend": 8404.0, "Total Transactions": 382.0, "Total Customers": 289.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.71, "MEDIAN_SPEND_PER_CUSTOMER": 24.38 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-5mk", "LOCATION_NAME": "McGillin's Olde Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95021, "LONGITUDE": -75.162564, "DATE_RANGE_START": 2021, "Total Visits": 418.0, "Total Visitors": 332.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 106257.0, "Total Transactions": 3253.0, "Total Customers": 2136.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162564, 39.95021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "LOCATION_NAME": "The Capital Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950707, "LONGITUDE": -75.163622, "DATE_RANGE_START": 2021, "Total Visits": 539.0, "Total Visitors": 456.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 45190.0, "Total Transactions": 227.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 175.85, "MEDIAN_SPEND_PER_CUSTOMER": 200.88 }, "geometry": { "type": "Point", "coordinates": [ -75.163622, 39.950707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-3qz", "LOCATION_NAME": "Jana Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.020931, "LONGITUDE": -75.117668, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 29.0, "POI_CBG": 421010289011.0, "MEDIAN_DWELL": 70.0, "Total Spend": 274.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.75, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117668, 40.020931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-m8v", "LOCATION_NAME": "Blazin Flavorz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988482, "LONGITUDE": -75.146793, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 33.0, "POI_CBG": 421010165003.0, "MEDIAN_DWELL": 178.0, "Total Spend": 511.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146793, 39.988482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 172.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 41.0, "Total Spend": 4442.0, "Total Transactions": 771.0, "Total Customers": 422.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.28, "MEDIAN_SPEND_PER_CUSTOMER": 6.09 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933087, "LONGITUDE": -75.144618, "DATE_RANGE_START": 2021, "Total Visits": 1265.0, "Total Visitors": 661.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 21556.0, "Total Transactions": 2983.0, "Total Customers": 1425.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.14, "MEDIAN_SPEND_PER_CUSTOMER": 9.61 }, "geometry": { "type": "Point", "coordinates": [ -75.144618, 39.933087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgf-33q", "LOCATION_NAME": "Kiwi Frozen Yogurt", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954562, "LONGITUDE": -75.195031, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 41.0, "Total Spend": 4509.0, "Total Transactions": 298.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.195031, 39.954562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-cyv", "LOCATION_NAME": "Holmesburg Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.041745, "LONGITUDE": -75.026513, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010329001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 522.0, "Total Transactions": 21.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.7, "MEDIAN_SPEND_PER_CUSTOMER": 51.48 }, "geometry": { "type": "Point", "coordinates": [ -75.026513, 40.041745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmb-66k", "LOCATION_NAME": "uBreakiFix", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.948576, "LONGITUDE": -75.160424, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 55.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2685.0, "Total Transactions": 55.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.44, "MEDIAN_SPEND_PER_CUSTOMER": 50.76 }, "geometry": { "type": "Point", "coordinates": [ -75.160424, 39.948576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980352, "LONGITUDE": -75.234957, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 57.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6232.0, "Total Transactions": 420.0, "Total Customers": 360.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.234957, 39.980352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgf-75z", "LOCATION_NAME": "Fresh & Tasty Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964751, "LONGITUDE": -75.205403, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 57.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 101.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205403, 39.964751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "LOCATION_NAME": "The Flavor Spot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 60.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 183.0, "Total Spend": 2979.0, "Total Transactions": 129.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.71, "MEDIAN_SPEND_PER_CUSTOMER": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "LOCATION_NAME": "Bindlestiff Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 163.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.78, "MEDIAN_SPEND_PER_CUSTOMER": 10.77 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "LOCATION_NAME": "Street Side", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 66.0, "Total Spend": 2430.0, "Total Transactions": 124.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.43, "MEDIAN_SPEND_PER_CUSTOMER": 18.74 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2021, "Total Visits": 480.0, "Total Visitors": 432.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9292.0, "Total Transactions": 251.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phk-yvz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054784, "LONGITUDE": -75.126802, "DATE_RANGE_START": 2021, "Total Visits": 272.0, "Total Visitors": 200.0, "POI_CBG": 421010269001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10197.0, "Total Transactions": 532.0, "Total Customers": 327.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.59, "MEDIAN_SPEND_PER_CUSTOMER": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.126802, 40.054784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2021, "Total Visits": 625.0, "Total Visitors": 422.0, "POI_CBG": 421010061001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2451.0, "Total Transactions": 167.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.47, "MEDIAN_SPEND_PER_CUSTOMER": 18.65 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039167, "LONGITUDE": -75.110538, "DATE_RANGE_START": 2021, "Total Visits": 1952.0, "Total Visitors": 1310.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1751.0, "Total Transactions": 48.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.57, "MEDIAN_SPEND_PER_CUSTOMER": 56.27 }, "geometry": { "type": "Point", "coordinates": [ -75.110538, 40.039167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.037208, "LONGITUDE": -75.172767, "DATE_RANGE_START": 2021, "Total Visits": 745.0, "Total Visitors": 484.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 27466.0, "Total Transactions": 1002.0, "Total Customers": 611.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.61, "MEDIAN_SPEND_PER_CUSTOMER": 33.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172767, 40.037208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w49", "LOCATION_NAME": "The Children's Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087614, "LONGITUDE": -74.96103, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 268.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.69, "MEDIAN_SPEND_PER_CUSTOMER": 44.69 }, "geometry": { "type": "Point", "coordinates": [ -74.96103, 40.087614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085814, "LONGITUDE": -74.963569, "DATE_RANGE_START": 2021, "Total Visits": 3232.0, "Total Visitors": 2556.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 27.0, "Total Spend": 18545.0, "Total Transactions": 473.0, "Total Customers": 420.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.09, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -74.963569, 40.085814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.915644, "LONGITUDE": -75.139656, "DATE_RANGE_START": 2021, "Total Visits": 570.0, "Total Visitors": 489.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3290.0, "Total Transactions": 248.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.41, "MEDIAN_SPEND_PER_CUSTOMER": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.139656, 39.915644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "LOCATION_NAME": "Gallelli Formal Wear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 69.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4339.0, "Total Transactions": 41.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-xqz", "LOCATION_NAME": "Brother's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006485, "LONGITUDE": -75.150169, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 31.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 101.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.99, "MEDIAN_SPEND_PER_CUSTOMER": 2.89 }, "geometry": { "type": "Point", "coordinates": [ -75.150169, 40.006485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj4-7wk", "LOCATION_NAME": "Vernie's Soul Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027362, "LONGITUDE": -75.153997, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010280003.0, "MEDIAN_DWELL": null, "Total Spend": 880.0, "Total Transactions": 45.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.91, "MEDIAN_SPEND_PER_CUSTOMER": 16.36 }, "geometry": { "type": "Point", "coordinates": [ -75.153997, 40.027362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj6-9s5", "LOCATION_NAME": "New Generation Super Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034686, "LONGITUDE": -75.115012, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 31.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 138.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.13 }, "geometry": { "type": "Point", "coordinates": [ -75.115012, 40.034686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj2-btv", "LOCATION_NAME": "Bentoulis Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01065, "LONGITUDE": -75.102956, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 36.0, "POI_CBG": 421010191002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1197.0, "Total Transactions": 38.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.8, "MEDIAN_SPEND_PER_CUSTOMER": 30.35 }, "geometry": { "type": "Point", "coordinates": [ -75.102956, 40.01065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7w-6zf", "LOCATION_NAME": "Ali Baba Cafe & Hookah Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.057745, "LONGITUDE": -75.060291, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 50.0, "POI_CBG": 421010336003.0, "MEDIAN_DWELL": 155.0, "Total Spend": 596.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.47, "MEDIAN_SPEND_PER_CUSTOMER": 27.47 }, "geometry": { "type": "Point", "coordinates": [ -75.060291, 40.057745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm3-vpv", "LOCATION_NAME": "Mesh Vintage", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.927333, "LONGITUDE": -75.166704, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 29.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1516.0, "Total Transactions": 41.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166704, 39.927333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dwg-g6k", "LOCATION_NAME": "United", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.917055, "LONGITUDE": -75.235223, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 60.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 11052.0, "Total Transactions": 449.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.77 }, "geometry": { "type": "Point", "coordinates": [ -75.235223, 39.917055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "LOCATION_NAME": "The Bagel Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937457, "LONGITUDE": -75.15033, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 60.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 55.0, "Total Spend": 5770.0, "Total Transactions": 384.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 16.32 }, "geometry": { "type": "Point", "coordinates": [ -75.15033, 39.937457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "LOCATION_NAME": "Fairdale Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084494, "LONGITUDE": -74.972673, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 48.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 108.0, "Total Spend": 112.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -74.972673, 40.084494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "LOCATION_NAME": "Union Tap House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 48.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 595.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.5, "MEDIAN_SPEND_PER_CUSTOMER": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pfy-b6k", "LOCATION_NAME": "Barry's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035119, "LONGITUDE": -75.217909, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 57.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": 209.0, "Total Spend": 3761.0, "Total Transactions": 143.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.2, "MEDIAN_SPEND_PER_CUSTOMER": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.217909, 40.035119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-9cq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953242, "LONGITUDE": -75.19352, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 67.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5202.0, "Total Transactions": 938.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.42, "MEDIAN_SPEND_PER_CUSTOMER": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19352, 39.953242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pg8-jjv", "LOCATION_NAME": "Deborah's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97383, "LONGITUDE": -75.179259, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": null, "Total Spend": 487.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.36, "MEDIAN_SPEND_PER_CUSTOMER": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.179259, 39.97383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "LOCATION_NAME": "Windfall Gallery", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 17.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 222.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.08, "MEDIAN_SPEND_PER_CUSTOMER": 46.44 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p8j-94v", "LOCATION_NAME": "Panda Chinese", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03456, "LONGITUDE": -75.044147, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 152.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.8, "MEDIAN_SPEND_PER_CUSTOMER": 31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.044147, 40.03456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "LOCATION_NAME": "Polo Ralph Lauren Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": null, "Total Spend": 37873.0, "Total Transactions": 341.0, "Total Customers": 303.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.49, "MEDIAN_SPEND_PER_CUSTOMER": 89.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pn5", "LOCATION_NAME": "Tortilleria San Roman", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937643, "LONGITUDE": -75.157989, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 212.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157989, 39.937643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "LOCATION_NAME": "Domenic's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2032.0, "Total Transactions": 67.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.06, "MEDIAN_SPEND_PER_CUSTOMER": 31.55 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-pqf", "LOCATION_NAME": "Senoj Clothing", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.944292, "LONGITUDE": -75.169204, "DATE_RANGE_START": 2021, "Total Visits": 723.0, "Total Visitors": 394.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 1029.0, "Total Spend": 578.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.0, "MEDIAN_SPEND_PER_CUSTOMER": 121.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169204, 39.944292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-gtv", "LOCATION_NAME": "Bruno's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067212, "LONGITUDE": -75.146516, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 764.0, "Total Transactions": 50.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 14.56 }, "geometry": { "type": "Point", "coordinates": [ -75.146516, 40.067212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-rtv", "LOCATION_NAME": "Thomas Bond House", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.947678, "LONGITUDE": -75.144078, "DATE_RANGE_START": 2021, "Total Visits": 1291.0, "Total Visitors": 909.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1404.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 192.23, "MEDIAN_SPEND_PER_CUSTOMER": 192.23 }, "geometry": { "type": "Point", "coordinates": [ -75.144078, 39.947678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "LOCATION_NAME": "Cleavers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951397, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 165.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 23718.0, "Total Transactions": 883.0, "Total Customers": 740.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.53, "MEDIAN_SPEND_PER_CUSTOMER": 24.97 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 39.951397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 172.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 15173.0, "Total Transactions": 327.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.02, "MEDIAN_SPEND_PER_CUSTOMER": 41.56 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8y9", "LOCATION_NAME": "City Winery Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952404, "LONGITUDE": -75.156249, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 3583.0, "Total Transactions": 48.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.66, "MEDIAN_SPEND_PER_CUSTOMER": 59.66 }, "geometry": { "type": "Point", "coordinates": [ -75.156249, 39.952404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-ty9", "LOCATION_NAME": "Shane Confectionery", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.949497, "LONGITUDE": -75.14262, "DATE_RANGE_START": 2021, "Total Visits": 1463.0, "Total Visitors": 1246.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 1187.0, "Total Transactions": 43.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14262, 39.949497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8m-snq", "LOCATION_NAME": "Station Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.022297, "LONGITUDE": -75.077816, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 325.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2423.0, "Total Transactions": 93.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.56, "MEDIAN_SPEND_PER_CUSTOMER": 27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077816, 40.022297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgg-rc5", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.003796, "LONGITUDE": -75.180647, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 184.0, "POI_CBG": 421010171004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3532.0, "Total Transactions": 179.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.73, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180647, 40.003796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yjv", "LOCATION_NAME": "Prince Tea House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955371, "LONGITUDE": -75.154071, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 136.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 5046.0, "Total Transactions": 138.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154071, 39.955371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfv-fmk", "LOCATION_NAME": "P & R Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.036996, "LONGITUDE": -75.186928, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010238004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 72.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186928, 40.036996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-vxq", "LOCATION_NAME": "Crown Drugs", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.029725, "LONGITUDE": -75.055436, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010320007.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3012.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 172.49, "MEDIAN_SPEND_PER_CUSTOMER": 164.74 }, "geometry": { "type": "Point", "coordinates": [ -75.055436, 40.029725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "LOCATION_NAME": "Academy Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 41.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 10.0, "Total Spend": 170.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pj5-3nq", "LOCATION_NAME": "Erie Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009145, "LONGITUDE": -75.152232, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010201022.0, "MEDIAN_DWELL": null, "Total Spend": 1199.0, "Total Transactions": 150.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152232, 40.009145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm3-zpv", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919286, "LONGITUDE": -75.159152, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 62.0, "POI_CBG": 421010041021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 486.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.1, "MEDIAN_SPEND_PER_CUSTOMER": 34.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159152, 39.919286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp5-gff", "LOCATION_NAME": "Stop One Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.985559, "LONGITUDE": -75.111594, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010179003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 235.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.85, "MEDIAN_SPEND_PER_CUSTOMER": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111594, 39.985559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmd-zcq", "LOCATION_NAME": "Los Camaradas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940826, "LONGITUDE": -75.179816, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010013003.0, "MEDIAN_DWELL": 83.0, "Total Spend": 7495.0, "Total Transactions": 155.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.04, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179816, 39.940826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "LOCATION_NAME": "The Bayou Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 32.0, "Total Spend": 13472.0, "Total Transactions": 339.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.18, "MEDIAN_SPEND_PER_CUSTOMER": 40.22 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvr-d5f", "LOCATION_NAME": "Y & B Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.921556, "LONGITUDE": -75.231623, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 31.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 74.0, "Total Spend": 792.0, "Total Transactions": 26.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 148.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231623, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-syv", "LOCATION_NAME": "Tony's Auto Service", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.915674, "LONGITUDE": -75.160462, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 33.0, "POI_CBG": 421010041022.0, "MEDIAN_DWELL": 265.0, "Total Spend": 162.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160462, 39.915674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-94v", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951985, "LONGITUDE": -75.157156, "DATE_RANGE_START": 2021, "Total Visits": 16496.0, "Total Visitors": 10990.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 2198.0, "Total Transactions": 41.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.99, "MEDIAN_SPEND_PER_CUSTOMER": 69.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157156, 39.951985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "LOCATION_NAME": "Nova Star Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.969977, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1152.0, "Total Transactions": 50.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.97, "MEDIAN_SPEND_PER_CUSTOMER": 19.49 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "LOCATION_NAME": "Castle Roxx", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 62.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 68.0, "Total Spend": 10954.0, "Total Transactions": 360.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-5cq", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950795, "LONGITUDE": -75.160907, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 282.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8122.0, "Total Transactions": 86.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.0, "MEDIAN_SPEND_PER_CUSTOMER": 75.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160907, 39.950795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087035, "LONGITUDE": -74.960571, "DATE_RANGE_START": 2021, "Total Visits": 1773.0, "Total Visitors": 1518.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 27.0, "Total Spend": 8175.0, "Total Transactions": 155.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 47.57 }, "geometry": { "type": "Point", "coordinates": [ -74.960571, 40.087035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-s5z", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.011216, "LONGITUDE": -75.115625, "DATE_RANGE_START": 2021, "Total Visits": 375.0, "Total Visitors": 303.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 5388.0, "Total Transactions": 198.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.115625, 40.011216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-q9f", "LOCATION_NAME": "BEL Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.105145, "LONGITUDE": -75.032134, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 91.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 919.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.032134, 40.105145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2021, "Total Visits": 902.0, "Total Visitors": 625.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2082.0, "Total Transactions": 110.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.52, "MEDIAN_SPEND_PER_CUSTOMER": 14.52 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.062718, "LONGITUDE": -75.083858, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 451.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 14711.0, "Total Transactions": 425.0, "Total Customers": 334.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.66, "MEDIAN_SPEND_PER_CUSTOMER": 29.73 }, "geometry": { "type": "Point", "coordinates": [ -75.083858, 40.062718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.119147, "LONGITUDE": -75.015143, "DATE_RANGE_START": 2021, "Total Visits": 5575.0, "Total Visitors": 3084.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 94482.0, "Total Transactions": 797.0, "Total Customers": 427.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.66, "MEDIAN_SPEND_PER_CUSTOMER": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -75.015143, 40.119147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 179.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1455.0, "Total Transactions": 53.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.07, "MEDIAN_SPEND_PER_CUSTOMER": 27.45 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "LOCATION_NAME": "Vietnam Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 131.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 43.0, "Total Spend": 692.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.98, "MEDIAN_SPEND_PER_CUSTOMER": 68.28 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7qz", "LOCATION_NAME": "Wishbone", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948376, "LONGITUDE": -75.162398, "DATE_RANGE_START": 2021, "Total Visits": 198.0, "Total Visitors": 134.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1816.0, "Total Transactions": 134.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.46, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.162398, 39.948376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "LOCATION_NAME": "Rice & Mix", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2021, "Total Visits": 298.0, "Total Visitors": 255.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4338.0, "Total Transactions": 251.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 22.21 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2021, "Total Visits": 573.0, "Total Visitors": 401.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12280.0, "Total Transactions": 969.0, "Total Customers": 628.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.65, "MEDIAN_SPEND_PER_CUSTOMER": 13.67 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.016586, "LONGITUDE": -75.096388, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 131.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5300.0, "Total Transactions": 279.0, "Total Customers": 239.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.57 }, "geometry": { "type": "Point", "coordinates": [ -75.096388, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.955786, "LONGITUDE": -75.214102, "DATE_RANGE_START": 2021, "Total Visits": 1702.0, "Total Visitors": 1222.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 693.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.61, "MEDIAN_SPEND_PER_CUSTOMER": 38.09 }, "geometry": { "type": "Point", "coordinates": [ -75.214102, 39.955786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8v-b8v", "LOCATION_NAME": "Sam's Club Fuel Center", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.091819, "LONGITUDE": -74.963857, "DATE_RANGE_START": 2021, "Total Visits": 4332.0, "Total Visitors": 2248.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1202.0, "Total Transactions": 38.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.17, "MEDIAN_SPEND_PER_CUSTOMER": 47.63 }, "geometry": { "type": "Point", "coordinates": [ -74.963857, 40.091819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-6ff", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.107593, "LONGITUDE": -75.02698, "DATE_RANGE_START": 2021, "Total Visits": 1041.0, "Total Visitors": 714.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4332.0, "Total Transactions": 220.0, "Total Customers": 181.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.57, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02698, 40.107593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "LOCATION_NAME": "Zumiez", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 148.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20707.0, "Total Transactions": 384.0, "Total Customers": 332.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.9, "MEDIAN_SPEND_PER_CUSTOMER": 49.9 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-gff", "LOCATION_NAME": "AAA Distributor", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.079352, "LONGITUDE": -75.023999, "DATE_RANGE_START": 2021, "Total Visits": 504.0, "Total Visitors": 360.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2783.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 244.09, "MEDIAN_SPEND_PER_CUSTOMER": 244.09 }, "geometry": { "type": "Point", "coordinates": [ -75.023999, 40.079352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.966876, "LONGITUDE": -75.233151, "DATE_RANGE_START": 2021, "Total Visits": 888.0, "Total Visitors": 585.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 277.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.11, "MEDIAN_SPEND_PER_CUSTOMER": 11.93 }, "geometry": { "type": "Point", "coordinates": [ -75.233151, 39.966876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2021, "Total Visits": 1449.0, "Total Visitors": 1067.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 205360.0, "Total Transactions": 11019.0, "Total Customers": 6668.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.54, "MEDIAN_SPEND_PER_CUSTOMER": 20.01 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp2-qzz", "LOCATION_NAME": "Cambridge Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.994215, "LONGITUDE": -75.097432, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 76.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 90.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.88, "MEDIAN_SPEND_PER_CUSTOMER": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.097432, 39.994215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg4-grk", "LOCATION_NAME": "1beautysupplypa", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.030533, "LONGITUDE": -75.181364, "DATE_RANGE_START": 2021, "Total Visits": 224.0, "Total Visitors": 174.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 13204.0, "Total Transactions": 382.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.181364, 40.030533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wc5", "LOCATION_NAME": "Abunai Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949658, "LONGITUDE": -75.147567, "DATE_RANGE_START": 2021, "Total Visits": 993.0, "Total Visitors": 828.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2506.0, "Total Transactions": 143.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.7, "MEDIAN_SPEND_PER_CUSTOMER": 14.76 }, "geometry": { "type": "Point", "coordinates": [ -75.147567, 39.949658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgy-p5f", "LOCATION_NAME": "Roxy Gas & Snacks", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.052502, "LONGITUDE": -75.236583, "DATE_RANGE_START": 2021, "Total Visits": 1067.0, "Total Visitors": 520.0, "POI_CBG": 421010219001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 152.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.236583, 40.052502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-92k", "LOCATION_NAME": "Francesca's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952109, "LONGITUDE": -75.155803, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 167.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 117.0, "Total Spend": 8177.0, "Total Transactions": 169.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155803, 39.952109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "LOCATION_NAME": "Theory", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949699, "LONGITUDE": -75.168323, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 26.0, "Total Spend": 4483.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 164.25, "MEDIAN_SPEND_PER_CUSTOMER": 163.13 }, "geometry": { "type": "Point", "coordinates": [ -75.168323, 39.949699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-r6k", "LOCATION_NAME": "United Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029584, "LONGITUDE": -75.100403, "DATE_RANGE_START": 2021, "Total Visits": 566.0, "Total Visitors": 511.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 23764.0, "Total Transactions": 737.0, "Total Customers": 420.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.58, "MEDIAN_SPEND_PER_CUSTOMER": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100403, 40.029584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "LOCATION_NAME": "Atomic City Comics", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.942034, "LONGITUDE": -75.153458, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 150.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3761.0, "Total Transactions": 93.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.153458, 39.942034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-8d9", "LOCATION_NAME": "Moge Tee Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953994, "LONGITUDE": -75.157412, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 181.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 154.0, "Total Spend": 1524.0, "Total Transactions": 179.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 6.83 }, "geometry": { "type": "Point", "coordinates": [ -75.157412, 39.953994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-5xq", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.051379, "LONGITUDE": -75.010945, "DATE_RANGE_START": 2021, "Total Visits": 578.0, "Total Visitors": 413.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 8.0, "Total Spend": 709.0, "Total Transactions": 50.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.28, "MEDIAN_SPEND_PER_CUSTOMER": 24.4 }, "geometry": { "type": "Point", "coordinates": [ -75.010945, 40.051379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "LOCATION_NAME": "Soy Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 138.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 937.0, "Total Spend": 4221.0, "Total Transactions": 277.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-y35", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.119184, "LONGITUDE": -75.01709, "DATE_RANGE_START": 2021, "Total Visits": 616.0, "Total Visitors": 425.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9432.0, "Total Transactions": 1279.0, "Total Customers": 556.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.94, "MEDIAN_SPEND_PER_CUSTOMER": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.01709, 40.119184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@63s-dvy-8sq", "LOCATION_NAME": "MK Food Service Equipment", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.95219, "LONGITUDE": -75.216689, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 17.0, "POI_CBG": 421010079001.0, "MEDIAN_DWELL": 1326.0, "Total Spend": 553.0, "Total Transactions": 62.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.86, "MEDIAN_SPEND_PER_CUSTOMER": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.216689, 39.95219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-8gk", "LOCATION_NAME": "Colinas Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.95962, "LONGITUDE": -75.241489, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 166.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.241489, 39.95962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-224@628-pg9-ty9", "LOCATION_NAME": "Mangia Macaroni", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963054, "LONGITUDE": -75.16434, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 26.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 311.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.15, "MEDIAN_SPEND_PER_CUSTOMER": 65.15 }, "geometry": { "type": "Point", "coordinates": [ -75.16434, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 10.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 158.0, "Total Spend": 6971.0, "Total Transactions": 181.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.72, "MEDIAN_SPEND_PER_CUSTOMER": 40.54 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "LOCATION_NAME": "Kaffa Crossing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956859, "LONGITUDE": -75.210414, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 54.0, "Total Spend": 4215.0, "Total Transactions": 117.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.05, "MEDIAN_SPEND_PER_CUSTOMER": 39.78 }, "geometry": { "type": "Point", "coordinates": [ -75.210414, 39.956859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pm4-2x5", "LOCATION_NAME": "Stadium Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919559, "LONGITUDE": -75.163925, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010040021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1028.0, "Total Transactions": 36.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.62, "MEDIAN_SPEND_PER_CUSTOMER": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.163925, 39.919559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "LOCATION_NAME": "Prohibition Taproom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 43.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 20290.0, "Total Transactions": 430.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.64, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "LOCATION_NAME": "El Punto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 62.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 486.0, "Total Spend": 4243.0, "Total Transactions": 181.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg4-47q", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030031, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2021, "Total Visits": 685.0, "Total Visitors": 430.0, "POI_CBG": 421010242001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 927.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.04, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 40.030031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "LOCATION_NAME": "Tap Room On 19th", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010038001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7653.0, "Total Transactions": 143.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.13, "MEDIAN_SPEND_PER_CUSTOMER": 55.88 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@63s-dvy-xwk", "LOCATION_NAME": "Lil' Pop Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953164, "LONGITUDE": -75.210265, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": null, "Total Spend": 1820.0, "Total Transactions": 224.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.74, "MEDIAN_SPEND_PER_CUSTOMER": 8.24 }, "geometry": { "type": "Point", "coordinates": [ -75.210265, 39.953164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-yvz", "LOCATION_NAME": "Hong Kong Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9915, "LONGITUDE": -75.15937, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 7.0, "POI_CBG": 421010167022.0, "MEDIAN_DWELL": 364.0, "Total Spend": 215.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.22, "MEDIAN_SPEND_PER_CUSTOMER": 29.22 }, "geometry": { "type": "Point", "coordinates": [ -75.15937, 39.9915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-ph6-gzf", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986348, "LONGITUDE": -75.231742, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 14.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2029.0, "Total Transactions": 112.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.39, "MEDIAN_SPEND_PER_CUSTOMER": 19.66 }, "geometry": { "type": "Point", "coordinates": [ -75.231742, 39.986348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-zcq", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.992691, "LONGITUDE": -75.131414, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010176014.0, "MEDIAN_DWELL": 31.0, "Total Spend": 343.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.33, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131414, 39.992691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "LOCATION_NAME": "Gia Pronto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7508.0, "Total Transactions": 945.0, "Total Customers": 566.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.4, "MEDIAN_SPEND_PER_CUSTOMER": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg9-b8v", "LOCATION_NAME": "Dragon Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981544, "LONGITUDE": -75.174071, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 24.0, "POI_CBG": 421010149001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 648.0, "Total Transactions": 38.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.69, "MEDIAN_SPEND_PER_CUSTOMER": 17.63 }, "geometry": { "type": "Point", "coordinates": [ -75.174071, 39.981544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-9s5", "LOCATION_NAME": "Mantua Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9677, "LONGITUDE": -75.203335, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010107002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 48.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203335, 39.9677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-ffz", "LOCATION_NAME": "D'jakarta Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920881, "LONGITUDE": -75.173653, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1403.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.5, "MEDIAN_SPEND_PER_CUSTOMER": 73.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173653, 39.920881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.025431, "LONGITUDE": -75.223871, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 16044.0, "Total Transactions": 377.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.223871, 40.025431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pj6-435", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040276, "LONGITUDE": -75.109025, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 168.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.25, "MEDIAN_SPEND_PER_CUSTOMER": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.109025, 40.040276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7572.0, "Total Transactions": 279.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 28.32 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "LOCATION_NAME": "Bistrot La Minette", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 132.0, "Total Spend": 4134.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.62, "MEDIAN_SPEND_PER_CUSTOMER": 77.98 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "LOCATION_NAME": "La Rosa Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 50.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 70.0, "Total Spend": 2201.0, "Total Transactions": 165.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.75 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "LOCATION_NAME": "Race Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 64.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4240.0, "Total Transactions": 95.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.7, "MEDIAN_SPEND_PER_CUSTOMER": 39.15 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-47q", "LOCATION_NAME": "Kid City", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.921142, "LONGITUDE": -75.185929, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 122.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 12177.0, "Total Transactions": 224.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.19, "MEDIAN_SPEND_PER_CUSTOMER": 46.26 }, "geometry": { "type": "Point", "coordinates": [ -75.185929, 39.921142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-435", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.918945, "LONGITUDE": -75.143088, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 286.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 29914.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 2833.97, "MEDIAN_SPEND_PER_CUSTOMER": 2833.97 }, "geometry": { "type": "Point", "coordinates": [ -75.143088, 39.918945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2021, "Total Visits": 449.0, "Total Visitors": 310.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1648.0, "Total Transactions": 84.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.46, "MEDIAN_SPEND_PER_CUSTOMER": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.011535, "LONGITUDE": -75.111695, "DATE_RANGE_START": 2021, "Total Visits": 807.0, "Total Visitors": 554.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7885.0, "Total Transactions": 413.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.77, "MEDIAN_SPEND_PER_CUSTOMER": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.111695, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm3-vzz", "LOCATION_NAME": "A Novel Idea", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.928207, "LONGITUDE": -75.165695, "DATE_RANGE_START": 2021, "Total Visits": 506.0, "Total Visitors": 408.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 892.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.13, "MEDIAN_SPEND_PER_CUSTOMER": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.165695, 39.928207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pzn-zj9", "LOCATION_NAME": "Sweeney's Station Saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.131466, "LONGITUDE": -75.011396, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 124.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2565.0, "Total Transactions": 76.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.35, "MEDIAN_SPEND_PER_CUSTOMER": 25.63 }, "geometry": { "type": "Point", "coordinates": [ -75.011396, 40.131466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "LOCATION_NAME": "Xiandu Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2021, "Total Visits": 2876.0, "Total Visitors": 1916.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 102.0, "Total Spend": 13320.0, "Total Transactions": 267.0, "Total Customers": 236.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.48, "MEDIAN_SPEND_PER_CUSTOMER": 44.06 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-ks5", "LOCATION_NAME": "Zama", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950901, "LONGITUDE": -75.172392, "DATE_RANGE_START": 2021, "Total Visits": 453.0, "Total Visitors": 267.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 158.0, "Total Spend": 29638.0, "Total Transactions": 360.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.76, "MEDIAN_SPEND_PER_CUSTOMER": 72.38 }, "geometry": { "type": "Point", "coordinates": [ -75.172392, 39.950901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-f9f", "LOCATION_NAME": "Dimension Latin Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052647, "LONGITUDE": -75.065236, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 100.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 132.0, "Total Spend": 4911.0, "Total Transactions": 98.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.76, "MEDIAN_SPEND_PER_CUSTOMER": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065236, 40.052647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "LOCATION_NAME": "Fiesta Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075222, "LONGITUDE": -75.204582, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 212.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 2564.0, "Total Transactions": 119.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.61, "MEDIAN_SPEND_PER_CUSTOMER": 16.95 }, "geometry": { "type": "Point", "coordinates": [ -75.204582, 40.075222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "LOCATION_NAME": "CAVA", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95186, "LONGITUDE": -75.16924, "DATE_RANGE_START": 2021, "Total Visits": 456.0, "Total Visitors": 387.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 62.0, "Total Spend": 24068.0, "Total Transactions": 1649.0, "Total Customers": 1265.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.59, "MEDIAN_SPEND_PER_CUSTOMER": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.16924, 39.95186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-5vf", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048428, "LONGITUDE": -75.061751, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 105.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 33.0, "Total Spend": 2474.0, "Total Transactions": 155.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 15.91 }, "geometry": { "type": "Point", "coordinates": [ -75.061751, 40.048428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952185, "LONGITUDE": -75.173618, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 150.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8746.0, "Total Transactions": 1494.0, "Total Customers": 663.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.58, "MEDIAN_SPEND_PER_CUSTOMER": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.173618, 39.952185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pmf-jd9", "LOCATION_NAME": "SoBol Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951746, "LONGITUDE": -75.168892, "DATE_RANGE_START": 2021, "Total Visits": 3604.0, "Total Visitors": 2876.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4460.0, "Total Transactions": 310.0, "Total Customers": 251.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.12, "MEDIAN_SPEND_PER_CUSTOMER": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.168892, 39.951746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@63s-dvw-f2k", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964788, "LONGITUDE": -75.22346, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 19.0, "POI_CBG": 421010103002.0, "MEDIAN_DWELL": 180.0, "Total Spend": 54.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.4, "MEDIAN_SPEND_PER_CUSTOMER": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22346, 39.964788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "LOCATION_NAME": "Garden's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010139003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2122.0, "Total Transactions": 174.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.94, "MEDIAN_SPEND_PER_CUSTOMER": 17.11 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-9fz", "LOCATION_NAME": "D M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979141, "LONGITUDE": -75.171311, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 344.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.97, "MEDIAN_SPEND_PER_CUSTOMER": 22.45 }, "geometry": { "type": "Point", "coordinates": [ -75.171311, 39.979141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947166, "LONGITUDE": -75.157345, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 53.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2564.0, "Total Transactions": 81.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.74, "MEDIAN_SPEND_PER_CUSTOMER": 26.52 }, "geometry": { "type": "Point", "coordinates": [ -75.157345, 39.947166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-ph8-qmk", "LOCATION_NAME": "Blue Lagoon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977926, "LONGITUDE": -75.26739, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 7.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 375.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.26739, 39.977926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-p7q", "LOCATION_NAME": "Turning Heads", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.993848, "LONGITUDE": -75.147504, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": null, "Total Spend": 215.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147504, 39.993848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pgg-b8v", "LOCATION_NAME": "Shrimp Express II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.000369, "LONGITUDE": -75.16696, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010172013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 503.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16696, 40.000369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "LOCATION_NAME": "Pinoy Groseri", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 29.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3916.0, "Total Transactions": 72.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.4, "MEDIAN_SPEND_PER_CUSTOMER": 63.02 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 60.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 528.0, "Total Spend": 3533.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.64, "MEDIAN_SPEND_PER_CUSTOMER": 68.64 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgm-68v", "LOCATION_NAME": "Shan Chuan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009211, "LONGITUDE": -75.194127, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": null, "Total Spend": 541.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.8, "MEDIAN_SPEND_PER_CUSTOMER": 51.72 }, "geometry": { "type": "Point", "coordinates": [ -75.194127, 40.009211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "LOCATION_NAME": "New Panda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 64.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4459.0, "Total Transactions": 160.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.83, "MEDIAN_SPEND_PER_CUSTOMER": 36.64 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "LOCATION_NAME": "Stock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 7293.0, "Total Transactions": 62.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.18, "MEDIAN_SPEND_PER_CUSTOMER": 147.75 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgg-dy9", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.00283, "LONGITUDE": -75.164018, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 79.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6505.0, "Total Transactions": 344.0, "Total Customers": 251.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.97 }, "geometry": { "type": "Point", "coordinates": [ -75.164018, 40.00283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-47q", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.921468, "LONGITUDE": -75.184708, "DATE_RANGE_START": 2021, "Total Visits": 158.0, "Total Visitors": 143.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1884.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.64, "MEDIAN_SPEND_PER_CUSTOMER": 68.64 }, "geometry": { "type": "Point", "coordinates": [ -75.184708, 39.921468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-qmk", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.030627, "LONGITUDE": -75.102315, "DATE_RANGE_START": 2021, "Total Visits": 604.0, "Total Visitors": 542.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 28577.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 500.0, "MEDIAN_SPEND_PER_CUSTOMER": 500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102315, 40.030627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2021, "Total Visits": 704.0, "Total Visitors": 539.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": 10.0, "Total Spend": 738.0, "Total Transactions": 38.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.66, "MEDIAN_SPEND_PER_CUSTOMER": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-jqf", "LOCATION_NAME": "Brewers Outlet Of Mt Airy & Chestnut Hill", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.063253, "LONGITUDE": -75.192693, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 122.0, "POI_CBG": 421010256003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 29143.0, "Total Transactions": 716.0, "Total Customers": 468.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.54, "MEDIAN_SPEND_PER_CUSTOMER": 41.57 }, "geometry": { "type": "Point", "coordinates": [ -75.192693, 40.063253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgf-3bk", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.955764, "LONGITUDE": -75.194013, "DATE_RANGE_START": 2021, "Total Visits": 2112.0, "Total Visitors": 1391.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 73.0, "Total Spend": 51.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.6, "MEDIAN_SPEND_PER_CUSTOMER": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194013, 39.955764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.072233, "LONGITUDE": -75.194825, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 131.0, "POI_CBG": 421010257001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 13218.0, "Total Transactions": 647.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.99, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194825, 40.072233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.068237, "LONGITUDE": -75.156911, "DATE_RANGE_START": 2021, "Total Visits": 1539.0, "Total Visitors": 1041.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1552.0, "Total Transactions": 57.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.81, "MEDIAN_SPEND_PER_CUSTOMER": 32.62 }, "geometry": { "type": "Point", "coordinates": [ -75.156911, 40.068237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "LOCATION_NAME": "Shoe Carnival", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.049924, "LONGITUDE": -75.062397, "DATE_RANGE_START": 2021, "Total Visits": 754.0, "Total Visitors": 692.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 19182.0, "Total Transactions": 260.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.99, "MEDIAN_SPEND_PER_CUSTOMER": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.062397, 40.049924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "LOCATION_NAME": "Journeys", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 146.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7666.0, "Total Transactions": 95.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.97, "MEDIAN_SPEND_PER_CUSTOMER": 59.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm4-s5z", "LOCATION_NAME": "The Pizza Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927861, "LONGITUDE": -75.157274, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 81.0, "POI_CBG": 421010028011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 824.0, "Total Transactions": 43.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.33 }, "geometry": { "type": "Point", "coordinates": [ -75.157274, 39.927861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "LOCATION_NAME": "Bistro SouthEast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2021, "Total Visits": 551.0, "Total Visitors": 356.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 181.0, "Total Spend": 2137.0, "Total Transactions": 98.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.36, "MEDIAN_SPEND_PER_CUSTOMER": 22.71 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2021, "Total Visits": 969.0, "Total Visitors": 623.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3058.0, "Total Transactions": 661.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.2, "MEDIAN_SPEND_PER_CUSTOMER": 5.81 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7w-7qz", "LOCATION_NAME": "The Crab house", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061854, "LONGITUDE": -75.055489, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 141.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1401.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.77, "MEDIAN_SPEND_PER_CUSTOMER": 46.77 }, "geometry": { "type": "Point", "coordinates": [ -75.055489, 40.061854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmb-ce5", "LOCATION_NAME": "Ralphs Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940063, "LONGITUDE": -75.157832, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 112.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 845.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 177.0, "MEDIAN_SPEND_PER_CUSTOMER": 177.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157832, 39.940063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "LOCATION_NAME": "Georgian Bread Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2021, "Total Visits": 477.0, "Total Visitors": 384.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2094.0, "Total Transactions": 60.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.04, "MEDIAN_SPEND_PER_CUSTOMER": 35.32 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "LOCATION_NAME": "Ruby Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2021, "Total Visits": 652.0, "Total Visitors": 616.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 21404.0, "Total Transactions": 532.0, "Total Customers": 389.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.92, "MEDIAN_SPEND_PER_CUSTOMER": 39.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-jgk", "LOCATION_NAME": "DanDan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950263, "LONGITUDE": -75.1676, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 146.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 17819.0, "Total Transactions": 396.0, "Total Customers": 372.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.93, "MEDIAN_SPEND_PER_CUSTOMER": 42.47 }, "geometry": { "type": "Point", "coordinates": [ -75.1676, 39.950263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956616, "LONGITUDE": -75.194139, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 239.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 16319.0, "Total Transactions": 2831.0, "Total Customers": 1110.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.96, "MEDIAN_SPEND_PER_CUSTOMER": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.194139, 39.956616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-phy-rc5", "LOCATION_NAME": "TABU Hookah Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.02058, "LONGITUDE": -75.133817, "DATE_RANGE_START": 2021, "Total Visits": 659.0, "Total Visitors": 461.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 62381.0, "Total Transactions": 2169.0, "Total Customers": 1232.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.03 }, "geometry": { "type": "Point", "coordinates": [ -75.133817, 40.02058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-xwk", "LOCATION_NAME": "aka.", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952073, "LONGITUDE": -75.184019, "DATE_RANGE_START": 2021, "Total Visits": 10792.0, "Total Visitors": 7640.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 68.0, "Total Spend": 129.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.952073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pmf-skf", "LOCATION_NAME": "Butcher and Singer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948984, "LONGITUDE": -75.166282, "DATE_RANGE_START": 2021, "Total Visits": 2804.0, "Total Visitors": 2160.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 28.0, "Total Spend": 45589.0, "Total Transactions": 167.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 236.16, "MEDIAN_SPEND_PER_CUSTOMER": 252.94 }, "geometry": { "type": "Point", "coordinates": [ -75.166282, 39.948984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-n3q", "LOCATION_NAME": "Express Breakfast & Lunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95342, "LONGITUDE": -75.165711, "DATE_RANGE_START": 2021, "Total Visits": 1909.0, "Total Visitors": 1301.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 91.0, "Total Spend": 17.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.5, "MEDIAN_SPEND_PER_CUSTOMER": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165711, 39.95342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pg8-bp9", "LOCATION_NAME": "WokWorks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984089, "LONGITUDE": -75.183, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 100.0, "POI_CBG": 421010151022.0, "MEDIAN_DWELL": 82.0, "Total Spend": 180.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.183, 39.984089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-tn5", "LOCATION_NAME": "The Fresh Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979613, "LONGITUDE": -75.11764, "DATE_RANGE_START": 2021, "Total Visits": 606.0, "Total Visitors": 282.0, "POI_CBG": 421010378003.0, "MEDIAN_DWELL": 227.0, "Total Spend": 95.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11764, 39.979613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfy-zj9", "LOCATION_NAME": "Mike's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022539, "LONGITUDE": -75.218415, "DATE_RANGE_START": 2021, "Total Visits": 726.0, "Total Visitors": 525.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 31.0, "Total Spend": 4774.0, "Total Transactions": 370.0, "Total Customers": 317.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218415, 40.022539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "LOCATION_NAME": "House of Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2021, "Total Visits": 971.0, "Total Visitors": 699.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3918.0, "Total Transactions": 107.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.5, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-7nq", "LOCATION_NAME": "Chatayee Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94915, "LONGITUDE": -75.161857, "DATE_RANGE_START": 2021, "Total Visits": 907.0, "Total Visitors": 661.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 140.0, "Total Spend": 904.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.76, "MEDIAN_SPEND_PER_CUSTOMER": 41.76 }, "geometry": { "type": "Point", "coordinates": [ -75.161857, 39.94915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 88.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 729.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.48, "MEDIAN_SPEND_PER_CUSTOMER": 32.59 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-grk", "LOCATION_NAME": "Bargain world", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.941099, "LONGITUDE": -75.21263, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 95.0, "POI_CBG": 421010074002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 532.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.98, "MEDIAN_SPEND_PER_CUSTOMER": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.21263, 39.941099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.95521, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 122.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 52798.0, "Total Transactions": 5869.0, "Total Customers": 2547.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.71, "MEDIAN_SPEND_PER_CUSTOMER": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.95521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-y7q", "LOCATION_NAME": "The Post", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952733, "LONGITUDE": -75.18366, "DATE_RANGE_START": 2021, "Total Visits": 969.0, "Total Visitors": 714.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 45.0, "Total Spend": 3586.0, "Total Transactions": 115.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.2, "MEDIAN_SPEND_PER_CUSTOMER": 32.11 }, "geometry": { "type": "Point", "coordinates": [ -75.18366, 39.952733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmb-rp9", "LOCATION_NAME": "Recess Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947601, "LONGITUDE": -75.143229, "DATE_RANGE_START": 2021, "Total Visits": 1029.0, "Total Visitors": 711.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12961.0, "Total Transactions": 189.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.36, "MEDIAN_SPEND_PER_CUSTOMER": 39.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143229, 39.947601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "LOCATION_NAME": "Buffalo Wild Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.082615, "LONGITUDE": -75.025718, "DATE_RANGE_START": 2021, "Total Visits": 1017.0, "Total Visitors": 893.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 21988.0, "Total Transactions": 537.0, "Total Customers": 470.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.68, "MEDIAN_SPEND_PER_CUSTOMER": 40.71 }, "geometry": { "type": "Point", "coordinates": [ -75.025718, 40.082615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "LOCATION_NAME": "Cantinho Brasileiro Restaurante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 86.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5939.0, "Total Transactions": 341.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.22, "MEDIAN_SPEND_PER_CUSTOMER": 22.95 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "LOCATION_NAME": "Smokey Joes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 100.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 88.0, "Total Spend": 15133.0, "Total Transactions": 477.0, "Total Customers": 339.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.4, "MEDIAN_SPEND_PER_CUSTOMER": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-y9z", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93105, "LONGITUDE": -75.226248, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 155.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3297.0, "Total Transactions": 198.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.17, "MEDIAN_SPEND_PER_CUSTOMER": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.226248, 39.93105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "LOCATION_NAME": "Sahara Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2021, "Total Visits": 7165.0, "Total Visitors": 4632.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 104.0, "Total Spend": 2393.0, "Total Transactions": 64.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.84, "MEDIAN_SPEND_PER_CUSTOMER": 27.41 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "LOCATION_NAME": "Fette Sau", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 112.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 23240.0, "Total Transactions": 327.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.28, "MEDIAN_SPEND_PER_CUSTOMER": 69.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "LOCATION_NAME": "Local 44", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952832, "LONGITUDE": -75.210325, "DATE_RANGE_START": 2021, "Total Visits": 298.0, "Total Visitors": 222.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 257.0, "Total Spend": 29872.0, "Total Transactions": 628.0, "Total Customers": 511.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.3, "MEDIAN_SPEND_PER_CUSTOMER": 46.53 }, "geometry": { "type": "Point", "coordinates": [ -75.210325, 39.952832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-9s5", "LOCATION_NAME": "Parkside Beef & Ale", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954767, "LONGITUDE": -75.164606, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 136.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3554.0, "Total Transactions": 124.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.72, "MEDIAN_SPEND_PER_CUSTOMER": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164606, 39.954767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pnw-ndv", "LOCATION_NAME": "Cake Life Bake Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970543, "LONGITUDE": -75.134645, "DATE_RANGE_START": 2021, "Total Visits": 484.0, "Total Visitors": 365.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 52.0, "Total Spend": 2624.0, "Total Transactions": 122.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.2, "MEDIAN_SPEND_PER_CUSTOMER": 17.47 }, "geometry": { "type": "Point", "coordinates": [ -75.134645, 39.970543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947387, "LONGITUDE": -75.16433, "DATE_RANGE_START": 2021, "Total Visits": 4098.0, "Total Visitors": 2181.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 319.0, "Total Spend": 3680.0, "Total Transactions": 351.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.67, "MEDIAN_SPEND_PER_CUSTOMER": 10.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16433, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-p8j-9mk", "LOCATION_NAME": "Capriotti Bros", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.035466, "LONGITUDE": -75.044048, "DATE_RANGE_START": 2021, "Total Visits": 561.0, "Total Visitors": 365.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 519.0, "Total Transactions": 36.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.64, "MEDIAN_SPEND_PER_CUSTOMER": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.044048, 40.035466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-t5f", "LOCATION_NAME": "Cavanaugh's Riverdeck", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957746, "LONGITUDE": -75.137247, "DATE_RANGE_START": 2021, "Total Visits": 823.0, "Total Visitors": 630.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 2455.0, "Total Transactions": 69.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.04, "MEDIAN_SPEND_PER_CUSTOMER": 51.08 }, "geometry": { "type": "Point", "coordinates": [ -75.137247, 39.957746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-z9f", "LOCATION_NAME": "Rosarios Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934489, "LONGITUDE": -75.169442, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 21.0, "POI_CBG": 421010022002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4908.0, "Total Transactions": 158.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.66, "MEDIAN_SPEND_PER_CUSTOMER": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.169442, 39.934489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "LOCATION_NAME": "Peddler Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 21.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 344.0, "Total Spend": 2246.0, "Total Transactions": 308.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-gzf", "LOCATION_NAME": "Bar X", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946786, "LONGITUDE": -75.161663, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4931.0, "Total Transactions": 208.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161663, 39.946786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999351, "LONGITUDE": -75.132987, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 84.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 455.0, "Total Transactions": 33.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.97, "MEDIAN_SPEND_PER_CUSTOMER": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.132987, 39.999351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "LOCATION_NAME": "Arby's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 172.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6133.0, "Total Transactions": 449.0, "Total Customers": 356.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "LOCATION_NAME": "Giovanni's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 33.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4560.0, "Total Transactions": 122.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.04, "MEDIAN_SPEND_PER_CUSTOMER": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8j-cyv", "LOCATION_NAME": "Apex Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.035775, "LONGITUDE": -75.04334, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 36.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 366.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.17, "MEDIAN_SPEND_PER_CUSTOMER": 30.17 }, "geometry": { "type": "Point", "coordinates": [ -75.04334, 40.035775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2021, "Total Visits": 513.0, "Total Visitors": 320.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 22423.0, "Total Transactions": 2842.0, "Total Customers": 1432.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.59, "MEDIAN_SPEND_PER_CUSTOMER": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-rkz", "LOCATION_NAME": "Cafe Lutecia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946587, "LONGITUDE": -75.179627, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": null, "Total Spend": 259.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.05, "MEDIAN_SPEND_PER_CUSTOMER": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.179627, 39.946587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "LOCATION_NAME": "Beck's Cajun Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2021, "Total Visits": 22380.0, "Total Visitors": 15420.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 10397.0, "Total Transactions": 513.0, "Total Customers": 484.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.38, "MEDIAN_SPEND_PER_CUSTOMER": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "LOCATION_NAME": "New Deck Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953506, "LONGITUDE": -75.192591, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 32861.0, "Total Transactions": 618.0, "Total Customers": 511.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 46.54 }, "geometry": { "type": "Point", "coordinates": [ -75.192591, 39.953506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2021, "Total Visits": 437.0, "Total Visitors": 360.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9691.0, "Total Transactions": 811.0, "Total Customers": 692.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.53, "MEDIAN_SPEND_PER_CUSTOMER": 10.65 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phk-yvz", "LOCATION_NAME": "Gogi BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054866, "LONGITUDE": -75.125965, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 110.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 91.0, "Total Spend": 4647.0, "Total Transactions": 31.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 122.16, "MEDIAN_SPEND_PER_CUSTOMER": 122.16 }, "geometry": { "type": "Point", "coordinates": [ -75.125965, 40.054866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "LOCATION_NAME": "Revolution House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 215.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 37818.0, "Total Transactions": 415.0, "Total Customers": 394.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.93, "MEDIAN_SPEND_PER_CUSTOMER": 57.88 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "LOCATION_NAME": "The Love", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2021, "Total Visits": 4434.0, "Total Visitors": 3162.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 69689.0, "Total Transactions": 616.0, "Total Customers": 547.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.5, "MEDIAN_SPEND_PER_CUSTOMER": 93.65 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2021, "Total Visits": 1790.0, "Total Visitors": 1224.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 42.0, "Total Spend": 36565.0, "Total Transactions": 2375.0, "Total Customers": 1356.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "LOCATION_NAME": "House of Kosher", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2021, "Total Visits": 563.0, "Total Visitors": 241.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 17346.0, "Total Transactions": 248.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.34, "MEDIAN_SPEND_PER_CUSTOMER": 65.86 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.094236, "LONGITUDE": -75.016653, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 458.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 11907.0, "Total Transactions": 969.0, "Total Customers": 671.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.55, "MEDIAN_SPEND_PER_CUSTOMER": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.016653, 40.094236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 74.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 10493.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.03, "MEDIAN_SPEND_PER_CUSTOMER": 51.92 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "LOCATION_NAME": "S & S Foods", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924738, "LONGITUDE": -75.144356, "DATE_RANGE_START": 2021, "Total Visits": 305.0, "Total Visitors": 253.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 7203.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 268.32, "MEDIAN_SPEND_PER_CUSTOMER": 352.51 }, "geometry": { "type": "Point", "coordinates": [ -75.144356, 39.924738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010110003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1450.0, "Total Transactions": 62.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.08, "MEDIAN_SPEND_PER_CUSTOMER": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvp-qmk", "LOCATION_NAME": "Caribbean Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94382, "LONGITUDE": -75.246381, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 38.0, "POI_CBG": 421010082004.0, "MEDIAN_DWELL": 81.0, "Total Spend": 269.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246381, 39.94382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-snq", "LOCATION_NAME": "Atlanta Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922758, "LONGITUDE": -75.186158, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1869.0, "Total Transactions": 74.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.186158, 39.922758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pgg-kmk", "LOCATION_NAME": "King Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.99818, "LONGITUDE": -75.165723, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 45.0, "POI_CBG": 421010173001.0, "MEDIAN_DWELL": 402.0, "Total Spend": 305.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.99, "MEDIAN_SPEND_PER_CUSTOMER": 63.99 }, "geometry": { "type": "Point", "coordinates": [ -75.165723, 39.99818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvx-vcq", "LOCATION_NAME": "Gold Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943788, "LONGITUDE": -75.210959, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 45.0, "POI_CBG": 421010074001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1193.0, "Total Transactions": 76.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.23, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210959, 39.943788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-9pv", "LOCATION_NAME": "Liberty Bell Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044508, "LONGITUDE": -75.01753, "DATE_RANGE_START": 2021, "Total Visits": 1322.0, "Total Visitors": 842.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 40.0, "Total Spend": 35.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 7.25 }, "geometry": { "type": "Point", "coordinates": [ -75.01753, 40.044508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "LOCATION_NAME": "Le Viet Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 138.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 620.0, "Total Spend": 3161.0, "Total Transactions": 43.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.81, "MEDIAN_SPEND_PER_CUSTOMER": 71.49 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dw9-wtv", "LOCATION_NAME": "Revive 21", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.880826, "LONGITUDE": -75.237536, "DATE_RANGE_START": 2021, "Total Visits": 18990.0, "Total Visitors": 15527.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 10124.0, "Total Transactions": 413.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.7, "MEDIAN_SPEND_PER_CUSTOMER": 23.95 }, "geometry": { "type": "Point", "coordinates": [ -75.237536, 39.880826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "LOCATION_NAME": "Finn Mccools Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2021, "Total Visits": 561.0, "Total Visitors": 494.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 24310.0, "Total Transactions": 484.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.1, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.063794, "LONGITUDE": -75.238861, "DATE_RANGE_START": 2021, "Total Visits": 425.0, "Total Visitors": 258.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 87.0, "Total Spend": 21571.0, "Total Transactions": 2010.0, "Total Customers": 1442.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.28, "MEDIAN_SPEND_PER_CUSTOMER": 10.87 }, "geometry": { "type": "Point", "coordinates": [ -75.238861, 40.063794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgd-zfz", "LOCATION_NAME": "Ramen Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957167, "LONGITUDE": -75.192099, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 79.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 916.0, "Total Spend": 3655.0, "Total Transactions": 67.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.32, "MEDIAN_SPEND_PER_CUSTOMER": 35.32 }, "geometry": { "type": "Point", "coordinates": [ -75.192099, 39.957167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "LOCATION_NAME": "Royal Boucherie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948704, "LONGITUDE": -75.144251, "DATE_RANGE_START": 2021, "Total Visits": 1014.0, "Total Visitors": 835.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 19046.0, "Total Transactions": 179.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.35, "MEDIAN_SPEND_PER_CUSTOMER": 100.76 }, "geometry": { "type": "Point", "coordinates": [ -75.144251, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "LOCATION_NAME": "Kostas Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96897, "LONGITUDE": -75.134955, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 100.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 16924.0, "Total Transactions": 683.0, "Total Customers": 513.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.64 }, "geometry": { "type": "Point", "coordinates": [ -75.134955, 39.96897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "LOCATION_NAME": "Parkway Corner Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 162.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4222.0, "Total Transactions": 282.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.54, "MEDIAN_SPEND_PER_CUSTOMER": 18.82 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "LOCATION_NAME": "Crown Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2021, "Total Visits": 1153.0, "Total Visitors": 709.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 10.0, "Total Spend": 4130.0, "Total Transactions": 141.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.9, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-zvf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940697, "LONGITUDE": -75.166565, "DATE_RANGE_START": 2021, "Total Visits": 1119.0, "Total Visitors": 838.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 13975.0, "Total Transactions": 1117.0, "Total Customers": 821.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.77, "MEDIAN_SPEND_PER_CUSTOMER": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.166565, 39.940697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-5zz", "LOCATION_NAME": "The Dining Car & Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050127, "LONGITUDE": -75.01115, "DATE_RANGE_START": 2021, "Total Visits": 823.0, "Total Visitors": 616.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 38.0, "Total Spend": 448.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.49, "MEDIAN_SPEND_PER_CUSTOMER": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.01115, 40.050127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "LOCATION_NAME": "Yamitsuki Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2021, "Total Visits": 487.0, "Total Visitors": 387.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 129.0, "Total Spend": 5298.0, "Total Transactions": 115.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.29, "MEDIAN_SPEND_PER_CUSTOMER": 44.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-snq", "LOCATION_NAME": "Fado Irish Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948313, "LONGITUDE": -75.166407, "DATE_RANGE_START": 2021, "Total Visits": 1504.0, "Total Visitors": 1055.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 97.0, "Total Spend": 8365.0, "Total Transactions": 203.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.01, "MEDIAN_SPEND_PER_CUSTOMER": 52.32 }, "geometry": { "type": "Point", "coordinates": [ -75.166407, 39.948313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pgb-6tv", "LOCATION_NAME": "Fairmount Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.968987, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 278.0, "Total Spend": 2592.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 324.0, "MEDIAN_SPEND_PER_CUSTOMER": 86.64 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.968987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "LOCATION_NAME": "Hunan Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 21.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 286.0, "Total Spend": 2253.0, "Total Transactions": 126.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.05, "MEDIAN_SPEND_PER_CUSTOMER": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj9-grk", "LOCATION_NAME": "Nedro Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.043815, "LONGITUDE": -75.156105, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 36.0, "POI_CBG": 421010279014.0, "MEDIAN_DWELL": 18.0, "Total Spend": 61.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.156105, 40.043815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj9-6p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.042256, "LONGITUDE": -75.144223, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 155.0, "POI_CBG": 421010278002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1105.0, "Total Transactions": 45.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.13, "MEDIAN_SPEND_PER_CUSTOMER": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144223, 40.042256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnz-xyv", "LOCATION_NAME": "Moju's Family Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988309, "LONGITUDE": -75.102423, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 12.0, "POI_CBG": 421010379002.0, "MEDIAN_DWELL": 345.0, "Total Spend": 517.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.63, "MEDIAN_SPEND_PER_CUSTOMER": 6.13 }, "geometry": { "type": "Point", "coordinates": [ -75.102423, 39.988309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 163.0, "Total Spend": 47521.0, "Total Transactions": 866.0, "Total Customers": 740.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.51, "MEDIAN_SPEND_PER_CUSTOMER": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pg2-zs5", "LOCATION_NAME": "South Philly Italian Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054139, "LONGITUDE": -75.194452, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010388004.0, "MEDIAN_DWELL": 91.0, "Total Spend": 1810.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.74, "MEDIAN_SPEND_PER_CUSTOMER": 81.74 }, "geometry": { "type": "Point", "coordinates": [ -75.194452, 40.054139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnt-tgk", "LOCATION_NAME": "Hinge Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979226, "LONGITUDE": -75.112172, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 14.0, "POI_CBG": 421010180011.0, "MEDIAN_DWELL": 80.0, "Total Spend": 52.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.112172, 39.979226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "LOCATION_NAME": "American Sardine Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 60.0, "Total Spend": 1969.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.56, "MEDIAN_SPEND_PER_CUSTOMER": 50.56 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "LOCATION_NAME": "Lucky 13 Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927169, "LONGITUDE": -75.167128, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 9157.0, "Total Transactions": 179.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.16, "MEDIAN_SPEND_PER_CUSTOMER": 40.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167128, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-qj9", "LOCATION_NAME": "Mack Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.966784, "LONGITUDE": -75.242585, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 55.0, "POI_CBG": 421010096005.0, "MEDIAN_DWELL": 1406.0, "Total Spend": 2559.0, "Total Transactions": 81.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.09, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242585, 39.966784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-3kf", "LOCATION_NAME": "Bistro Romano", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941964, "LONGITUDE": -75.144702, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 77.0, "Total Spend": 4526.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.95, "MEDIAN_SPEND_PER_CUSTOMER": 101.95 }, "geometry": { "type": "Point", "coordinates": [ -75.144702, 39.941964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pjf-t5f", "LOCATION_NAME": "Host", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.069687, "LONGITUDE": -75.200234, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": null, "Total Spend": 1866.0, "Total Transactions": 57.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.200234, 40.069687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj3-3nq", "LOCATION_NAME": "Mora Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022573, "LONGITUDE": -75.156258, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010280001.0, "MEDIAN_DWELL": null, "Total Spend": 41.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.31, "MEDIAN_SPEND_PER_CUSTOMER": 8.67 }, "geometry": { "type": "Point", "coordinates": [ -75.156258, 40.022573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-y5f", "LOCATION_NAME": "Haagen Dazs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941281, "LONGITUDE": -75.147232, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": null, "Total Spend": 7997.0, "Total Transactions": 680.0, "Total Customers": 587.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -75.147232, 39.941281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962152, "LONGITUDE": -75.2011, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 17.0, "POI_CBG": 421010108004.0, "MEDIAN_DWELL": 293.0, "Total Spend": 144.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.2011, 39.962152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm4-b6k", "LOCATION_NAME": "Two Eagles Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934031, "LONGITUDE": -75.177208, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 21.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 84.0, "Total Spend": 3386.0, "Total Transactions": 189.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.6, "MEDIAN_SPEND_PER_CUSTOMER": 22.47 }, "geometry": { "type": "Point", "coordinates": [ -75.177208, 39.934031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-249", "LOCATION_NAME": "Two Brothers Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003487, "LONGITUDE": -75.150398, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": null, "Total Spend": 4037.0, "Total Transactions": 172.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.99, "MEDIAN_SPEND_PER_CUSTOMER": 21.74 }, "geometry": { "type": "Point", "coordinates": [ -75.150398, 40.003487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "LOCATION_NAME": "Claudio's Specialty Foods", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7120.0, "Total Transactions": 110.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.39, "MEDIAN_SPEND_PER_CUSTOMER": 31.83 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.952664, "LONGITUDE": -75.15622, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1024.0, "Total Transactions": 136.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 7.64 }, "geometry": { "type": "Point", "coordinates": [ -75.15622, 39.952664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnw-mzf", "LOCATION_NAME": "Once Worn Consignment", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.964394, "LONGITUDE": -75.140857, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 2299.0, "Total Transactions": 72.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.5, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140857, 39.964394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "LOCATION_NAME": "Annies Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010100004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1697.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.0, "MEDIAN_SPEND_PER_CUSTOMER": 105.72 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgg-9xq", "LOCATION_NAME": "Boss Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.003922, "LONGITUDE": -75.168399, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010171003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 13937.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 681.46, "MEDIAN_SPEND_PER_CUSTOMER": 681.46 }, "geometry": { "type": "Point", "coordinates": [ -75.168399, 40.003922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg4-mx5", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.04358, "LONGITUDE": -75.159446, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": null, "Total Spend": 2639.0, "Total Transactions": 55.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.77, "MEDIAN_SPEND_PER_CUSTOMER": 47.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159446, 40.04358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "LOCATION_NAME": "Desi Chaat House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 14.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 493.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.1, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "LOCATION_NAME": "Colonial Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 14.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": 254.0, "Total Spend": 1486.0, "Total Transactions": 67.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.91, "MEDIAN_SPEND_PER_CUSTOMER": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2021, "Total Visits": 461.0, "Total Visitors": 277.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1397.0, "Total Transactions": 69.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.72, "MEDIAN_SPEND_PER_CUSTOMER": 17.65 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "LOCATION_NAME": "Galaxy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010338004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2828.0, "Total Transactions": 110.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.47, "MEDIAN_SPEND_PER_CUSTOMER": 36.31 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-bp9", "LOCATION_NAME": "Brown Street Coffee & Banhery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970469, "LONGITUDE": -75.179503, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2411.0, "Total Transactions": 210.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.7, "MEDIAN_SPEND_PER_CUSTOMER": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.179503, 39.970469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvx-w6k", "LOCATION_NAME": "The Green Line Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949809, "LONGITUDE": -75.209105, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 33.0, "POI_CBG": 421010087022.0, "MEDIAN_DWELL": 157.0, "Total Spend": 206.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.44, "MEDIAN_SPEND_PER_CUSTOMER": 17.11 }, "geometry": { "type": "Point", "coordinates": [ -75.209105, 39.949809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-kvf", "LOCATION_NAME": "20th Street Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951712, "LONGITUDE": -75.173725, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": null, "Total Spend": 461.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 34.32 }, "geometry": { "type": "Point", "coordinates": [ -75.173725, 39.951712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-xdv", "LOCATION_NAME": "Tiffin", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970151, "LONGITUDE": -75.148856, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 67.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 463.0, "Total Spend": 3442.0, "Total Transactions": 98.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.03, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.148856, 39.970151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "LOCATION_NAME": "Tavern On Camac", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947272, "LONGITUDE": -75.161618, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 88.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 44.0, "Total Spend": 41952.0, "Total Transactions": 1621.0, "Total Customers": 716.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 36.47 }, "geometry": { "type": "Point", "coordinates": [ -75.161618, 39.947272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "LOCATION_NAME": "Nam Phuong", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936493, "LONGITUDE": -75.162002, "DATE_RANGE_START": 2021, "Total Visits": 1241.0, "Total Visitors": 1095.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 26.0, "Total Spend": 18207.0, "Total Transactions": 356.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.4, "MEDIAN_SPEND_PER_CUSTOMER": 45.78 }, "geometry": { "type": "Point", "coordinates": [ -75.162002, 39.936493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 146.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6047.0, "Total Transactions": 272.0, "Total Customers": 241.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.73, "MEDIAN_SPEND_PER_CUSTOMER": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 79.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 139.0, "Total Spend": 1392.0, "Total Transactions": 74.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.82, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5zz", "LOCATION_NAME": "Chix & Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94898, "LONGITUDE": -75.159094, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 115.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 140.0, "Total Spend": 4935.0, "Total Transactions": 313.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.34, "MEDIAN_SPEND_PER_CUSTOMER": 19.81 }, "geometry": { "type": "Point", "coordinates": [ -75.159094, 39.94898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-ks5", "LOCATION_NAME": "Sharetea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934528, "LONGITUDE": -75.154692, "DATE_RANGE_START": 2021, "Total Visits": 1635.0, "Total Visitors": 1019.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 45.0, "Total Spend": 3369.0, "Total Transactions": 310.0, "Total Customers": 239.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.65, "MEDIAN_SPEND_PER_CUSTOMER": 11.79 }, "geometry": { "type": "Point", "coordinates": [ -75.154692, 39.934528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953718, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 103.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 42.0, "Total Spend": 4228.0, "Total Transactions": 947.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.1, "MEDIAN_SPEND_PER_CUSTOMER": 5.76 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.953718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2021, "Total Visits": 778.0, "Total Visitors": 396.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5618.0, "Total Transactions": 745.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.1, "MEDIAN_SPEND_PER_CUSTOMER": 10.24 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 174.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10642.0, "Total Transactions": 1372.0, "Total Customers": 683.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.78, "MEDIAN_SPEND_PER_CUSTOMER": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "LOCATION_NAME": "Rieker's Prime Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 203.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 464.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.98, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2021, "Total Visits": 792.0, "Total Visitors": 580.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 20331.0, "Total Transactions": 926.0, "Total Customers": 606.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.61, "MEDIAN_SPEND_PER_CUSTOMER": 19.77 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwd-v9f", "LOCATION_NAME": "RevZilla", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.900369, "LONGITUDE": -75.195065, "DATE_RANGE_START": 2021, "Total Visits": 112.0, "Total Visitors": 86.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 55230.0, "Total Transactions": 200.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 188.18, "MEDIAN_SPEND_PER_CUSTOMER": 220.44 }, "geometry": { "type": "Point", "coordinates": [ -75.195065, 39.900369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.991624, "LONGITUDE": -75.134387, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 160.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15873.0, "Total Transactions": 291.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.36, "MEDIAN_SPEND_PER_CUSTOMER": 35.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134387, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "LOCATION_NAME": "CB2", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2021, "Total Visits": 1327.0, "Total Visitors": 1000.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 18.0, "Total Spend": 39807.0, "Total Transactions": 112.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.74, "MEDIAN_SPEND_PER_CUSTOMER": 52.55 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2021, "Total Visits": 847.0, "Total Visitors": 635.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11350.0, "Total Transactions": 461.0, "Total Customers": 368.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.55, "MEDIAN_SPEND_PER_CUSTOMER": 24.39 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-gzf", "LOCATION_NAME": "AnM Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.023031, "LONGITUDE": -75.134802, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 74.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4394.0, "Total Transactions": 284.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134802, 40.023031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2021, "Total Visits": 1098.0, "Total Visitors": 692.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 30411.0, "Total Transactions": 2907.0, "Total Customers": 1232.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.86, "MEDIAN_SPEND_PER_CUSTOMER": 13.03 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-33q", "LOCATION_NAME": "Urban Outfitters", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.953788, "LONGITUDE": -75.194952, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 141.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 7924.0, "Total Transactions": 141.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.6, "MEDIAN_SPEND_PER_CUSTOMER": 50.37 }, "geometry": { "type": "Point", "coordinates": [ -75.194952, 39.953788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 141.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 10.0, "Total Spend": 227.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.69, "MEDIAN_SPEND_PER_CUSTOMER": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-snq", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948548, "LONGITUDE": -75.166465, "DATE_RANGE_START": 2021, "Total Visits": 9869.0, "Total Visitors": 5788.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 111.0, "Total Spend": 20.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.18, "MEDIAN_SPEND_PER_CUSTOMER": 4.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166465, 39.948548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "LOCATION_NAME": "A Z Budget", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 36.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 726.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.8, "MEDIAN_SPEND_PER_CUSTOMER": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.898752, "LONGITUDE": -75.240579, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 189.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 694.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.240579, 39.898752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 196.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1137.0, "Total Transactions": 86.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.63, "MEDIAN_SPEND_PER_CUSTOMER": 11.35 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2021, "Total Visits": 1320.0, "Total Visitors": 988.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 25756.0, "Total Transactions": 1031.0, "Total Customers": 695.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.21, "MEDIAN_SPEND_PER_CUSTOMER": 27.61 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-28v", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.074524, "LONGITUDE": -75.032955, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 48.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2919.0, "Total Transactions": 64.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.032955, 40.074524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-8y9", "LOCATION_NAME": "Accu Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953369, "LONGITUDE": -75.218457, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 55.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 322.0, "Total Spend": 290.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.22, "MEDIAN_SPEND_PER_CUSTOMER": 30.22 }, "geometry": { "type": "Point", "coordinates": [ -75.218457, 39.953369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 217.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4665.0, "Total Transactions": 103.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.79, "MEDIAN_SPEND_PER_CUSTOMER": 43.71 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032491, "LONGITUDE": -75.214429, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 117.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3409.0, "Total Transactions": 138.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.4, "MEDIAN_SPEND_PER_CUSTOMER": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.214429, 40.032491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "LOCATION_NAME": "Front Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970159, "LONGITUDE": -75.135552, "DATE_RANGE_START": 2021, "Total Visits": 427.0, "Total Visitors": 387.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 53.0, "Total Spend": 76403.0, "Total Transactions": 1496.0, "Total Customers": 1165.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.12, "MEDIAN_SPEND_PER_CUSTOMER": 50.76 }, "geometry": { "type": "Point", "coordinates": [ -75.135552, 39.970159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-zcq", "LOCATION_NAME": "Savas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958284, "LONGITUDE": -75.192713, "DATE_RANGE_START": 2021, "Total Visits": 427.0, "Total Visitors": 258.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 80.0, "Total Spend": 106.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.19, "MEDIAN_SPEND_PER_CUSTOMER": 22.19 }, "geometry": { "type": "Point", "coordinates": [ -75.192713, 39.958284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-whq", "LOCATION_NAME": "Ocean City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95631, "LONGITUDE": -75.15439, "DATE_RANGE_START": 2021, "Total Visits": 227.0, "Total Visitors": 193.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1664.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.3, "MEDIAN_SPEND_PER_CUSTOMER": 43.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15439, 39.95631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "LOCATION_NAME": "Morimoto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 186.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 121.0, "Total Spend": 50187.0, "Total Transactions": 203.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 200.36, "MEDIAN_SPEND_PER_CUSTOMER": 201.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-5s5", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049399, "LONGITUDE": -75.061192, "DATE_RANGE_START": 2021, "Total Visits": 570.0, "Total Visitors": 387.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1020.0, "Total Transactions": 79.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 12.17 }, "geometry": { "type": "Point", "coordinates": [ -75.061192, 40.049399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "LOCATION_NAME": "T cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947904, "LONGITUDE": -75.142953, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 138.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 27804.0, "Total Transactions": 2556.0, "Total Customers": 1489.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.95, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142953, 39.947904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-n5z", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954037, "LONGITUDE": -75.200292, "DATE_RANGE_START": 2021, "Total Visits": 993.0, "Total Visitors": 697.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 9287.0, "Total Transactions": 1243.0, "Total Customers": 788.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.95, "MEDIAN_SPEND_PER_CUSTOMER": 7.13 }, "geometry": { "type": "Point", "coordinates": [ -75.200292, 39.954037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-c3q", "LOCATION_NAME": "Yarnphoria", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.944703, "LONGITUDE": -75.159061, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": null, "Total Spend": 1354.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.96, "MEDIAN_SPEND_PER_CUSTOMER": 102.96 }, "geometry": { "type": "Point", "coordinates": [ -75.159061, 39.944703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm3-vpv", "LOCATION_NAME": "Passyunk Avenue Philly Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927906, "LONGITUDE": -75.166004, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 81.0, "Total Spend": 7270.0, "Total Transactions": 484.0, "Total Customers": 332.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.17, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166004, 39.927906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-s89", "LOCATION_NAME": "Best Buy Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.078011, "LONGITUDE": -75.024952, "DATE_RANGE_START": 2021, "Total Visits": 3227.0, "Total Visitors": 2298.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 2584.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 393.62, "MEDIAN_SPEND_PER_CUSTOMER": 393.62 }, "geometry": { "type": "Point", "coordinates": [ -75.024952, 40.078011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-8y9", "LOCATION_NAME": "The Pharmacy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934901, "LONGITUDE": -75.174223, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 102.0, "Total Spend": 8086.0, "Total Transactions": 105.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.174223, 39.934901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "LOCATION_NAME": "Anthropologie", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950352, "LONGITUDE": -75.170778, "DATE_RANGE_START": 2021, "Total Visits": 4434.0, "Total Visitors": 3162.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 284394.0, "Total Transactions": 1988.0, "Total Customers": 1284.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.96, "MEDIAN_SPEND_PER_CUSTOMER": 89.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170778, 39.950352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "LOCATION_NAME": "Petrovsky Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2021, "Total Visits": 1663.0, "Total Visitors": 943.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 36403.0, "Total Transactions": 1212.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.96, "MEDIAN_SPEND_PER_CUSTOMER": 41.67 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-4n5", "LOCATION_NAME": "Shoe Factory", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.047111, "LONGITUDE": -75.070347, "DATE_RANGE_START": 2021, "Total Visits": 305.0, "Total Visitors": 189.0, "POI_CBG": 421010310003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4593.0, "Total Transactions": 138.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.98, "MEDIAN_SPEND_PER_CUSTOMER": 27.48 }, "geometry": { "type": "Point", "coordinates": [ -75.070347, 40.047111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-brk", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.994031, "LONGITUDE": -75.091432, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 212.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9100.0, "Total Transactions": 110.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.28, "MEDIAN_SPEND_PER_CUSTOMER": 49.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091432, 39.994031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.95137, "LONGITUDE": -75.166677, "DATE_RANGE_START": 2021, "Total Visits": 1518.0, "Total Visitors": 1272.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 29379.0, "Total Transactions": 2143.0, "Total Customers": 1582.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.69, "MEDIAN_SPEND_PER_CUSTOMER": 11.83 }, "geometry": { "type": "Point", "coordinates": [ -75.166677, 39.95137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-33q", "LOCATION_NAME": "Capital Auto Auction", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.025317, "LONGITUDE": -75.026634, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 50.0, "Total Spend": 191.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.026634, 40.025317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjb-6p9", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046633, "LONGITUDE": -75.14228, "DATE_RANGE_START": 2021, "Total Visits": 365.0, "Total Visitors": 253.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 335.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.43, "MEDIAN_SPEND_PER_CUSTOMER": 44.53 }, "geometry": { "type": "Point", "coordinates": [ -75.14228, 40.046633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pg8-nwk", "LOCATION_NAME": "Oxford Food Shop", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.980357, "LONGITUDE": -75.18068, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 50.0, "POI_CBG": 421010149004.0, "MEDIAN_DWELL": 28.0, "Total Spend": 269.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.63, "MEDIAN_SPEND_PER_CUSTOMER": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.18068, 39.980357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.942529, "LONGITUDE": -75.164834, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 95.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 1321.0, "Total Spend": 3779.0, "Total Transactions": 138.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.93, "MEDIAN_SPEND_PER_CUSTOMER": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164834, 39.942529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.031542, "LONGITUDE": -75.100256, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 167.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7428.0, "Total Transactions": 115.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.38, "MEDIAN_SPEND_PER_CUSTOMER": 62.77 }, "geometry": { "type": "Point", "coordinates": [ -75.100256, 40.031542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.105422, "LONGITUDE": -75.032802, "DATE_RANGE_START": 2021, "Total Visits": 1315.0, "Total Visitors": 885.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 879.0, "Total Transactions": 38.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.19, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032802, 40.105422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-6p9", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950763, "LONGITUDE": -75.164862, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 224.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 73.0, "Total Spend": 7038.0, "Total Transactions": 76.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.5, "MEDIAN_SPEND_PER_CUSTOMER": 95.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164862, 39.950763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034271, "LONGITUDE": -75.216406, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 150.0, "POI_CBG": 421010213002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 728.0, "Total Transactions": 93.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.95, "MEDIAN_SPEND_PER_CUSTOMER": 9.56 }, "geometry": { "type": "Point", "coordinates": [ -75.216406, 40.034271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "LOCATION_NAME": "Oregon Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 64.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 13214.0, "Total Transactions": 1012.0, "Total Customers": 599.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-d5f", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992273, "LONGITUDE": -75.110947, "DATE_RANGE_START": 2021, "Total Visits": 363.0, "Total Visitors": 177.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 327.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.84, "MEDIAN_SPEND_PER_CUSTOMER": 8.84 }, "geometry": { "type": "Point", "coordinates": [ -75.110947, 39.992273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-c5z", "LOCATION_NAME": "Maple Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97918, "LONGITUDE": -75.160433, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 76.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 539.0, "Total Spend": 3153.0, "Total Transactions": 189.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.160433, 39.97918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-7h5", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.964803, "LONGITUDE": -75.14238, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 308.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 80.0, "Total Spend": 7189.0, "Total Transactions": 203.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.49, "MEDIAN_SPEND_PER_CUSTOMER": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.14238, 39.964803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2021, "Total Visits": 465.0, "Total Visitors": 427.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 26411.0, "Total Transactions": 1064.0, "Total Customers": 921.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-9vf", "LOCATION_NAME": "Soul Boat", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931707, "LONGITUDE": -75.169132, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010030024.0, "MEDIAN_DWELL": null, "Total Spend": 418.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.169132, 39.931707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y9z", "LOCATION_NAME": "Delightful Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953218, "LONGITUDE": -75.155064, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 103.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 627.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.31, "MEDIAN_SPEND_PER_CUSTOMER": 31.15 }, "geometry": { "type": "Point", "coordinates": [ -75.155064, 39.953218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmc-vzz", "LOCATION_NAME": "Chopstick House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926547, "LONGITUDE": -75.14612, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 81.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1266.0, "Total Transactions": 62.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.64, "MEDIAN_SPEND_PER_CUSTOMER": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.14612, 39.926547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "LOCATION_NAME": "Barcade", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96746, "LONGITUDE": -75.134594, "DATE_RANGE_START": 2021, "Total Visits": 740.0, "Total Visitors": 594.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 78.0, "Total Spend": 42171.0, "Total Transactions": 1348.0, "Total Customers": 1084.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.92, "MEDIAN_SPEND_PER_CUSTOMER": 29.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134594, 39.96746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p85-hkf", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071857, "LONGITUDE": -75.030407, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 232.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.63, "MEDIAN_SPEND_PER_CUSTOMER": 48.63 }, "geometry": { "type": "Point", "coordinates": [ -75.030407, 40.071857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5zz", "LOCATION_NAME": "Moriartys Restaurant & Irish Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948666, "LONGITUDE": -75.159836, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 146.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 31.0, "Total Spend": 22964.0, "Total Transactions": 496.0, "Total Customers": 451.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.8, "MEDIAN_SPEND_PER_CUSTOMER": 40.08 }, "geometry": { "type": "Point", "coordinates": [ -75.159836, 39.948666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "LOCATION_NAME": "Bookhaven", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 73.0, "Total Spend": 3081.0, "Total Transactions": 103.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.84, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-yjv", "LOCATION_NAME": "Amazing Crab House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940979, "LONGITUDE": -75.14584, "DATE_RANGE_START": 2021, "Total Visits": 525.0, "Total Visitors": 434.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 11081.0, "Total Transactions": 143.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.71, "MEDIAN_SPEND_PER_CUSTOMER": 65.95 }, "geometry": { "type": "Point", "coordinates": [ -75.14584, 39.940979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "LOCATION_NAME": "Fuel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7026.0, "Total Transactions": 210.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.79, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "LOCATION_NAME": "Saigon Noodle Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074096, "LONGITUDE": -75.202561, "DATE_RANGE_START": 2021, "Total Visits": 668.0, "Total Visitors": 456.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 2832.0, "Total Transactions": 136.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.29, "MEDIAN_SPEND_PER_CUSTOMER": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.202561, 40.074096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948772, "LONGITUDE": -75.160716, "DATE_RANGE_START": 2021, "Total Visits": 551.0, "Total Visitors": 461.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 122.0, "Total Spend": 14726.0, "Total Transactions": 1189.0, "Total Customers": 885.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -75.160716, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj2-7bk", "LOCATION_NAME": "Pizza House Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.997808, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 38.0, "POI_CBG": 421010177023.0, "MEDIAN_DWELL": 54.0, "Total Spend": 622.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.71, "MEDIAN_SPEND_PER_CUSTOMER": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.997808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.913456, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 41.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4817.0, "Total Transactions": 148.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.57, "MEDIAN_SPEND_PER_CUSTOMER": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 50.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 29.0, "Total Spend": 19254.0, "Total Transactions": 730.0, "Total Customers": 601.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.21, "MEDIAN_SPEND_PER_CUSTOMER": 26.76 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "LOCATION_NAME": "East Coast Tropicals", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 53.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 152.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.91, "MEDIAN_SPEND_PER_CUSTOMER": 31.91 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8b-cbk", "LOCATION_NAME": "Smoker's Palace", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.017474, "LONGITUDE": -75.051228, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 67.0, "POI_CBG": 421010323001.0, "MEDIAN_DWELL": null, "Total Spend": 7960.0, "Total Transactions": 344.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 31.81 }, "geometry": { "type": "Point", "coordinates": [ -75.051228, 40.017474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-bp9", "LOCATION_NAME": "Live Casino & Hotel Philadelphia", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.909524, "LONGITUDE": -75.164712, "DATE_RANGE_START": 2021, "Total Visits": 7239.0, "Total Visitors": 3616.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 117.0, "Total Spend": 5052.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 359.78, "MEDIAN_SPEND_PER_CUSTOMER": 359.78 }, "geometry": { "type": "Point", "coordinates": [ -75.164712, 39.909524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pp5-jgk", "LOCATION_NAME": "Tin Can Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.981701, "LONGITUDE": -75.113705, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 122.0, "POI_CBG": 421010180013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14313.0, "Total Transactions": 236.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 55.97 }, "geometry": { "type": "Point", "coordinates": [ -75.113705, 39.981701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pj5-j9z", "LOCATION_NAME": "Pizza Power", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998737, "LONGITUDE": -75.128356, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 21.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 168.0, "Total Spend": 115.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.04, "MEDIAN_SPEND_PER_CUSTOMER": 11.04 }, "geometry": { "type": "Point", "coordinates": [ -75.128356, 39.998737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "LOCATION_NAME": "New Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2021, "Total Visits": 456.0, "Total Visitors": 186.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 66.0, "Total Spend": 1343.0, "Total Transactions": 67.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.09, "MEDIAN_SPEND_PER_CUSTOMER": 17.67 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pm6-f2k", "LOCATION_NAME": "Bobs Food Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.920704, "LONGITUDE": -75.15184, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 33.0, "POI_CBG": 421010042012.0, "MEDIAN_DWELL": 78.0, "Total Spend": 461.0, "Total Transactions": 50.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.8, "MEDIAN_SPEND_PER_CUSTOMER": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.15184, 39.920704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-y5f", "LOCATION_NAME": "Reef Restaurant & Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941163, "LONGITUDE": -75.147404, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 4748.0, "Total Transactions": 60.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.19, "MEDIAN_SPEND_PER_CUSTOMER": 86.83 }, "geometry": { "type": "Point", "coordinates": [ -75.147404, 39.941163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 76.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 22254.0, "Total Transactions": 1480.0, "Total Customers": 1215.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.12, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "LOCATION_NAME": "Tampopo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953009, "LONGITUDE": -75.210311, "DATE_RANGE_START": 2021, "Total Visits": 298.0, "Total Visitors": 222.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 257.0, "Total Spend": 1178.0, "Total Transactions": 53.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.06, "MEDIAN_SPEND_PER_CUSTOMER": 22.87 }, "geometry": { "type": "Point", "coordinates": [ -75.210311, 39.953009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 198.0, "POI_CBG": 421010101005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7805.0, "Total Transactions": 964.0, "Total Customers": 597.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.79, "MEDIAN_SPEND_PER_CUSTOMER": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 110.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2719.0, "Total Transactions": 394.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.02, "MEDIAN_SPEND_PER_CUSTOMER": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 141.0, "POI_CBG": 421010171003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6129.0, "Total Transactions": 260.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.28, "MEDIAN_SPEND_PER_CUSTOMER": 21.69 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952045, "LONGITUDE": -75.16824, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 99.0, "Total Spend": 13725.0, "Total Transactions": 303.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.72, "MEDIAN_SPEND_PER_CUSTOMER": 33.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16824, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034612, "LONGITUDE": -75.175438, "DATE_RANGE_START": 2021, "Total Visits": 1530.0, "Total Visitors": 979.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 477.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 10.29 }, "geometry": { "type": "Point", "coordinates": [ -75.175438, 40.034612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p83-y5f", "LOCATION_NAME": "Pennypack Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 40.085429, "LONGITUDE": -75.045472, "DATE_RANGE_START": 2021, "Total Visits": 706.0, "Total Visitors": 537.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1164.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 129.6, "MEDIAN_SPEND_PER_CUSTOMER": 129.6 }, "geometry": { "type": "Point", "coordinates": [ -75.045472, 40.085429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-jd9", "LOCATION_NAME": "Westin Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952041, "LONGITUDE": -75.168491, "DATE_RANGE_START": 2021, "Total Visits": 2888.0, "Total Visitors": 1974.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 189.0, "Total Spend": 34070.0, "Total Transactions": 110.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 267.04, "MEDIAN_SPEND_PER_CUSTOMER": 271.12 }, "geometry": { "type": "Point", "coordinates": [ -75.168491, 39.952041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.099643, "LONGITUDE": -75.010101, "DATE_RANGE_START": 2021, "Total Visits": 394.0, "Total Visitors": 387.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 12190.0, "Total Transactions": 305.0, "Total Customers": 291.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.71, "MEDIAN_SPEND_PER_CUSTOMER": 39.32 }, "geometry": { "type": "Point", "coordinates": [ -75.010101, 40.099643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-5zz", "LOCATION_NAME": "Crunchik'n", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948207, "LONGITUDE": -75.159314, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 88.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 164.0, "Total Spend": 225.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.85, "MEDIAN_SPEND_PER_CUSTOMER": 23.16 }, "geometry": { "type": "Point", "coordinates": [ -75.159314, 39.948207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "LOCATION_NAME": "Perkins Restaurant & Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2021, "Total Visits": 456.0, "Total Visitors": 399.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 6602.0, "Total Transactions": 200.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.4, "MEDIAN_SPEND_PER_CUSTOMER": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pgb-249", "LOCATION_NAME": "Nom Wah Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956611, "LONGITUDE": -75.160874, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 177.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 4330.0, "Total Transactions": 76.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.26 }, "geometry": { "type": "Point", "coordinates": [ -75.160874, 39.956611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw4-rzf", "LOCATION_NAME": "LOVE Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895174, "LONGITUDE": -75.227972, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 56793.0, "Total Transactions": 2585.0, "Total Customers": 2095.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.64, "MEDIAN_SPEND_PER_CUSTOMER": 21.09 }, "geometry": { "type": "Point", "coordinates": [ -75.227972, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2021, "Total Visits": 993.0, "Total Visitors": 819.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 21541.0, "Total Transactions": 1601.0, "Total Customers": 1258.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.44, "MEDIAN_SPEND_PER_CUSTOMER": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 146.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 389.0, "Total Transactions": 33.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.91, "MEDIAN_SPEND_PER_CUSTOMER": 14.92 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-btv", "LOCATION_NAME": "Kraftwork", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971499, "LONGITUDE": -75.127358, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": null, "Total Spend": 9918.0, "Total Transactions": 177.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.84, "MEDIAN_SPEND_PER_CUSTOMER": 66.44 }, "geometry": { "type": "Point", "coordinates": [ -75.127358, 39.971499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm4-k4v", "LOCATION_NAME": "Tacos California", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936462, "LONGITUDE": -75.15694, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": null, "Total Spend": 128.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.89, "MEDIAN_SPEND_PER_CUSTOMER": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.15694, 39.936462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "LOCATION_NAME": "Sweet Creations Unlimited", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.017723, "LONGITUDE": -75.059702, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1347.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.08, "MEDIAN_SPEND_PER_CUSTOMER": 51.66 }, "geometry": { "type": "Point", "coordinates": [ -75.059702, 40.017723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgj-249", "LOCATION_NAME": "Sunny Halal Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979244, "LONGITUDE": -75.155824, "DATE_RANGE_START": 2021, "Total Visits": 377.0, "Total Visitors": 148.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 296.0, "Total Spend": 193.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155824, 39.979244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-qcq", "LOCATION_NAME": "Wayne Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029009, "LONGITUDE": -75.17466, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 31.0, "POI_CBG": 421010240003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 70.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.75, "MEDIAN_SPEND_PER_CUSTOMER": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.17466, 40.029009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2021, "Total Visits": 363.0, "Total Visitors": 243.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7702.0, "Total Transactions": 1019.0, "Total Customers": 556.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002692, "LONGITUDE": -75.214454, "DATE_RANGE_START": 2021, "Total Visits": 396.0, "Total Visitors": 303.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12432.0, "Total Transactions": 1652.0, "Total Customers": 788.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.23, "MEDIAN_SPEND_PER_CUSTOMER": 8.66 }, "geometry": { "type": "Point", "coordinates": [ -75.214454, 40.002692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfx-ks5", "LOCATION_NAME": "Artesano Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027058, "LONGITUDE": -75.2268, "DATE_RANGE_START": 2021, "Total Visits": 859.0, "Total Visitors": 680.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 175.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.3, "MEDIAN_SPEND_PER_CUSTOMER": 17.59 }, "geometry": { "type": "Point", "coordinates": [ -75.2268, 40.027058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@63s-dw4-rzf", "LOCATION_NAME": "British Airways Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.895193, "LONGITUDE": -75.227957, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 171.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 35.84 }, "geometry": { "type": "Point", "coordinates": [ -75.227957, 39.895193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "LOCATION_NAME": "Spice Finch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2021, "Total Visits": 2551.0, "Total Visitors": 1592.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 363.0, "Total Spend": 14659.0, "Total Transactions": 184.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.71, "MEDIAN_SPEND_PER_CUSTOMER": 77.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "LOCATION_NAME": "Tandoori bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2021, "Total Visits": 585.0, "Total Visitors": 396.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4916.0, "Total Transactions": 117.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.15, "MEDIAN_SPEND_PER_CUSTOMER": 31.64 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "LOCATION_NAME": "Ryan's Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2021, "Total Visits": 265.0, "Total Visitors": 181.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 64.0, "Total Spend": 69359.0, "Total Transactions": 2501.0, "Total Customers": 1401.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "LOCATION_NAME": "La Calaca Feliz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 95.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 57.0, "Total Spend": 7753.0, "Total Transactions": 129.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.87, "MEDIAN_SPEND_PER_CUSTOMER": 53.68 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-h5z", "LOCATION_NAME": "Buena Onda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960932, "LONGITUDE": -75.170707, "DATE_RANGE_START": 2021, "Total Visits": 265.0, "Total Visitors": 205.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 18862.0, "Total Transactions": 757.0, "Total Customers": 587.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.21 }, "geometry": { "type": "Point", "coordinates": [ -75.170707, 39.960932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfy-zfz", "LOCATION_NAME": "The Rook Manayunk", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021721, "LONGITUDE": -75.215726, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 148.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 83.0, "Total Spend": 16924.0, "Total Transactions": 356.0, "Total Customers": 289.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.84, "MEDIAN_SPEND_PER_CUSTOMER": 49.56 }, "geometry": { "type": "Point", "coordinates": [ -75.215726, 40.021721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22q@628-pmb-835", "LOCATION_NAME": "Pearl's Oyster Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95321, "LONGITUDE": -75.159401, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 6090.0, "Total Transactions": 234.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.73, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.159401, 39.95321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "LOCATION_NAME": "Tony Luke's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.906891, "LONGITUDE": -75.166013, "DATE_RANGE_START": 2021, "Total Visits": 2069.0, "Total Visitors": 1983.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 10778.0, "Total Transactions": 461.0, "Total Customers": 425.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.9, "MEDIAN_SPEND_PER_CUSTOMER": 21.87 }, "geometry": { "type": "Point", "coordinates": [ -75.166013, 39.906891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-v75", "LOCATION_NAME": "Buffalo Billiards", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948098, "LONGITUDE": -75.143221, "DATE_RANGE_START": 2021, "Total Visits": 496.0, "Total Visitors": 382.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 81.0, "Total Spend": 30091.0, "Total Transactions": 780.0, "Total Customers": 539.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.01, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143221, 39.948098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp4-tvz", "LOCATION_NAME": "Best Deli II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978727, "LONGITUDE": -75.115372, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 98.0, "POI_CBG": 421010378003.0, "MEDIAN_DWELL": 491.0, "Total Spend": 2386.0, "Total Transactions": 146.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.25, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.115372, 39.978727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7yv", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953782, "LONGITUDE": -75.159676, "DATE_RANGE_START": 2021, "Total Visits": 1871.0, "Total Visitors": 1516.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 20491.0, "Total Transactions": 1284.0, "Total Customers": 914.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 15.74 }, "geometry": { "type": "Point", "coordinates": [ -75.159676, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "LOCATION_NAME": "Jamba", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.87525, "LONGITUDE": -75.241494, "DATE_RANGE_START": 2021, "Total Visits": 232048.0, "Total Visitors": 147833.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 57.0, "Total Spend": 3825.0, "Total Transactions": 351.0, "Total Customers": 332.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.59, "MEDIAN_SPEND_PER_CUSTOMER": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.241494, 39.87525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-2hq", "LOCATION_NAME": "Las Cazuelas Restaurant BYOB", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969878, "LONGITUDE": -75.143998, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 123.0, "Total Spend": 4335.0, "Total Transactions": 79.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.39, "MEDIAN_SPEND_PER_CUSTOMER": 38.56 }, "geometry": { "type": "Point", "coordinates": [ -75.143998, 39.969878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006873, "LONGITUDE": -75.123103, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 100.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5197.0, "Total Transactions": 623.0, "Total Customers": 372.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.96 }, "geometry": { "type": "Point", "coordinates": [ -75.123103, 40.006873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pjk-3nq", "LOCATION_NAME": "Pina's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069435, "LONGITUDE": -75.239981, "DATE_RANGE_START": 2021, "Total Visits": 578.0, "Total Visitors": 413.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 4350.0, "Total Transactions": 193.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.19 }, "geometry": { "type": "Point", "coordinates": [ -75.239981, 40.069435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954574, "LONGITUDE": -75.169932, "DATE_RANGE_START": 2021, "Total Visits": 706.0, "Total Visitors": 496.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 83.0, "Total Spend": 28821.0, "Total Transactions": 563.0, "Total Customers": 463.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.18, "MEDIAN_SPEND_PER_CUSTOMER": 40.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169932, 39.954574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-vmk", "LOCATION_NAME": "E Frank Hopkins", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.906965, "LONGITUDE": -75.154623, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 107.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 270.0, "Total Spend": 12429.0, "Total Transactions": 38.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 147.0, "MEDIAN_SPEND_PER_CUSTOMER": 292.14 }, "geometry": { "type": "Point", "coordinates": [ -75.154623, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "LOCATION_NAME": "DJ Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2021, "Total Visits": 296.0, "Total Visitors": 251.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5521.0, "Total Transactions": 115.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.1, "MEDIAN_SPEND_PER_CUSTOMER": 33.34 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 146.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15990.0, "Total Transactions": 926.0, "Total Customers": 745.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 17.34 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@63s-dvw-mrk", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.959737, "LONGITUDE": -75.225178, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 57.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 2.0, "Total Spend": 11207.0, "Total Transactions": 76.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.99, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225178, 39.959737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-h5z", "LOCATION_NAME": "Gaetano's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960401, "LONGITUDE": -75.19778, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 57.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 800.0, "Total Spend": 80.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.11, "MEDIAN_SPEND_PER_CUSTOMER": 11.11 }, "geometry": { "type": "Point", "coordinates": [ -75.19778, 39.960401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j7q", "LOCATION_NAME": "Boyds Philadelphia", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951667, "LONGITUDE": -75.171279, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 243.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 248.0, "Total Spend": 47028.0, "Total Transactions": 36.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 395.0, "MEDIAN_SPEND_PER_CUSTOMER": 1437.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171279, 39.951667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "LOCATION_NAME": "Greene Street", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 289.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 1049.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.87, "MEDIAN_SPEND_PER_CUSTOMER": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.916081, "LONGITUDE": -75.185496, "DATE_RANGE_START": 2021, "Total Visits": 3852.0, "Total Visitors": 2184.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 175370.0, "Total Transactions": 1258.0, "Total Customers": 723.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.7, "MEDIAN_SPEND_PER_CUSTOMER": 59.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185496, 39.916081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.982036, "LONGITUDE": -75.156118, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 91.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2049.0, "Total Transactions": 322.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.93, "MEDIAN_SPEND_PER_CUSTOMER": 8.59 }, "geometry": { "type": "Point", "coordinates": [ -75.156118, 39.982036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 69.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1616.0, "Total Transactions": 119.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.24, "MEDIAN_SPEND_PER_CUSTOMER": 10.94 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p7z-x89", "LOCATION_NAME": "Don Pedro Meats and Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.035069, "LONGITUDE": -75.082126, "DATE_RANGE_START": 2021, "Total Visits": 437.0, "Total Visitors": 339.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8633.0, "Total Transactions": 129.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.34, "MEDIAN_SPEND_PER_CUSTOMER": 50.02 }, "geometry": { "type": "Point", "coordinates": [ -75.082126, 40.035069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-jjv", "LOCATION_NAME": "Allen Edmonds", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.9515, "LONGITUDE": -75.170237, "DATE_RANGE_START": 2021, "Total Visits": 501.0, "Total Visitors": 475.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6706.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 291.0, "MEDIAN_SPEND_PER_CUSTOMER": 432.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170237, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 110.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 8750.0, "Total Transactions": 179.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.992425, "LONGITUDE": -75.101329, "DATE_RANGE_START": 2021, "Total Visits": 847.0, "Total Visitors": 709.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 12863.0, "Total Transactions": 248.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.24, "MEDIAN_SPEND_PER_CUSTOMER": 44.88 }, "geometry": { "type": "Point", "coordinates": [ -75.101329, 39.992425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-kvf", "LOCATION_NAME": "The Wellness Refinery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950375, "LONGITUDE": -75.144624, "DATE_RANGE_START": 2021, "Total Visits": 1177.0, "Total Visitors": 1007.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1931.0, "Total Transactions": 33.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144624, 39.950375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "LOCATION_NAME": "Hadramout", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 21.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2518.0, "Total Transactions": 53.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.67, "MEDIAN_SPEND_PER_CUSTOMER": 44.2 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg9-wc5", "LOCATION_NAME": "Fairmount Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.964685, "LONGITUDE": -75.169302, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 29.0, "POI_CBG": 421010134023.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1258.0, "Total Transactions": 67.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.92, "MEDIAN_SPEND_PER_CUSTOMER": 24.61 }, "geometry": { "type": "Point", "coordinates": [ -75.169302, 39.964685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "LOCATION_NAME": "Jetro Cash & Carry", "TOP_CATEGORY": "Grocery and Related Product Merchant Wholesalers", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2021, "Total Visits": 2525.0, "Total Visitors": 1542.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 708467.0, "Total Transactions": 924.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 446.41, "MEDIAN_SPEND_PER_CUSTOMER": 591.77 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2021, "Total Visits": 2146.0, "Total Visitors": 1685.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 334633.0, "Total Transactions": 4630.0, "Total Customers": 3241.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.37, "MEDIAN_SPEND_PER_CUSTOMER": 42.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "LOCATION_NAME": "Paradise Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010190004.0, "MEDIAN_DWELL": null, "Total Spend": 1931.0, "Total Transactions": 74.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.71, "MEDIAN_SPEND_PER_CUSTOMER": 29.84 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjf-jy9", "LOCATION_NAME": "Bredenbeck's Bakery & Ice Cream Parlor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072481, "LONGITUDE": -75.202392, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": null, "Total Spend": 26477.0, "Total Transactions": 1126.0, "Total Customers": 847.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.81, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.202392, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pm8-kxq", "LOCATION_NAME": "Victory Beer Hall", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.904214, "LONGITUDE": -75.169344, "DATE_RANGE_START": 2021, "Total Visits": 2816.0, "Total Visitors": 2432.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 66.0, "Total Spend": 12757.0, "Total Transactions": 551.0, "Total Customers": 422.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.9, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169344, 39.904214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "LOCATION_NAME": "Miller's Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079795, "LONGITUDE": -75.028682, "DATE_RANGE_START": 2021, "Total Visits": 733.0, "Total Visitors": 616.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 51485.0, "Total Transactions": 871.0, "Total Customers": 785.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.99, "MEDIAN_SPEND_PER_CUSTOMER": 55.24 }, "geometry": { "type": "Point", "coordinates": [ -75.028682, 40.079795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "LOCATION_NAME": "Golden Crust Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2384.0, "Total Transactions": 110.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.02, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-75z", "LOCATION_NAME": "Cosi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947085, "LONGITUDE": -75.193998, "DATE_RANGE_START": 2021, "Total Visits": 18897.0, "Total Visitors": 9649.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 127.0, "Total Spend": 4006.0, "Total Transactions": 232.0, "Total Customers": 189.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.61 }, "geometry": { "type": "Point", "coordinates": [ -75.193998, 39.947085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.085969, "LONGITUDE": -75.04681, "DATE_RANGE_START": 2021, "Total Visits": 506.0, "Total Visitors": 387.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 19240.0, "Total Transactions": 885.0, "Total Customers": 535.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.99 }, "geometry": { "type": "Point", "coordinates": [ -75.04681, 40.085969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2021, "Total Visits": 1568.0, "Total Visitors": 907.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 32016.0, "Total Transactions": 1389.0, "Total Customers": 745.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 30.81 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "LOCATION_NAME": "Loco Dollar", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998868, "LONGITUDE": -75.126992, "DATE_RANGE_START": 2021, "Total Visits": 377.0, "Total Visitors": 220.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3865.0, "Total Transactions": 165.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.45, "MEDIAN_SPEND_PER_CUSTOMER": 23.93 }, "geometry": { "type": "Point", "coordinates": [ -75.126992, 39.998868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pg4-w49", "LOCATION_NAME": "Pauline's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040848, "LONGITUDE": -75.157522, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 21.0, "POI_CBG": 421010279022.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3449.0, "Total Transactions": 255.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.08, "MEDIAN_SPEND_PER_CUSTOMER": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157522, 40.040848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "LOCATION_NAME": "In & Out Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 24.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 343.0, "Total Spend": 1690.0, "Total Transactions": 64.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.36, "MEDIAN_SPEND_PER_CUSTOMER": 27.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 39.0, "Total Spend": 435.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.65, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "LOCATION_NAME": "Sonnys Famous Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949796, "LONGITUDE": -75.144721, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20000.0, "Total Transactions": 757.0, "Total Customers": 661.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144721, 39.949796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj2-mrk", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006514, "LONGITUDE": -75.095617, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 60.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2505.0, "Total Transactions": 184.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.095617, 40.006514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvw-9pv", "LOCATION_NAME": "52nd Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963376, "LONGITUDE": -75.224566, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010093005.0, "MEDIAN_DWELL": null, "Total Spend": 5441.0, "Total Transactions": 489.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224566, 39.963376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "LOCATION_NAME": "Ganaan Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": null, "Total Spend": 9078.0, "Total Transactions": 267.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.75, "MEDIAN_SPEND_PER_CUSTOMER": 41.2 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-kfz", "LOCATION_NAME": "UrHomeInPhilly", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949546, "LONGITUDE": -75.173863, "DATE_RANGE_START": 2021, "Total Visits": 112.0, "Total Visitors": 91.0, "POI_CBG": 421010008034.0, "MEDIAN_DWELL": 2.0, "Total Spend": 175.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.69, "MEDIAN_SPEND_PER_CUSTOMER": 36.69 }, "geometry": { "type": "Point", "coordinates": [ -75.173863, 39.949546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5mk", "LOCATION_NAME": "U Bahn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95079, "LONGITUDE": -75.16242, "DATE_RANGE_START": 2021, "Total Visits": 18618.0, "Total Visitors": 13115.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 66858.0, "Total Transactions": 2246.0, "Total Customers": 1239.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.8, "MEDIAN_SPEND_PER_CUSTOMER": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16242, 39.95079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-sdv", "LOCATION_NAME": "Independence Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950376, "LONGITUDE": -75.15103, "DATE_RANGE_START": 2021, "Total Visits": 1685.0, "Total Visitors": 1537.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 17790.0, "Total Transactions": 690.0, "Total Customers": 561.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.18 }, "geometry": { "type": "Point", "coordinates": [ -75.15103, 39.950376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2021, "Total Visits": 224.0, "Total Visitors": 165.0, "POI_CBG": 421010215001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 13467.0, "Total Transactions": 389.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 21.03 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2021, "Total Visits": 1270.0, "Total Visitors": 907.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 138683.0, "Total Transactions": 7862.0, "Total Customers": 3554.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.69, "MEDIAN_SPEND_PER_CUSTOMER": 24.53 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "LOCATION_NAME": "Banana Republic Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952113, "LONGITUDE": -75.172438, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 289.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 17.0, "Total Spend": 7908.0, "Total Transactions": 119.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.49, "MEDIAN_SPEND_PER_CUSTOMER": 71.98 }, "geometry": { "type": "Point", "coordinates": [ -75.172438, 39.952113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.921823, "LONGITUDE": -75.170522, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 294.0, "POI_CBG": 421010039012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2601.0, "Total Transactions": 243.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.3, "MEDIAN_SPEND_PER_CUSTOMER": 11.35 }, "geometry": { "type": "Point", "coordinates": [ -75.170522, 39.921823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 232.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 54.0, "Total Spend": 13519.0, "Total Transactions": 704.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.32, "MEDIAN_SPEND_PER_CUSTOMER": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-92k", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951715, "LONGITUDE": -75.155788, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 6523.0, "Total Transactions": 143.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155788, 39.951715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.031655, "LONGITUDE": -75.099529, "DATE_RANGE_START": 2021, "Total Visits": 6093.0, "Total Visitors": 4074.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 368.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.71, "MEDIAN_SPEND_PER_CUSTOMER": 20.78 }, "geometry": { "type": "Point", "coordinates": [ -75.099529, 40.031655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-249", "LOCATION_NAME": "On Point Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937259, "LONGITUDE": -75.177106, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9022.0, "Total Transactions": 196.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.36, "MEDIAN_SPEND_PER_CUSTOMER": 47.36 }, "geometry": { "type": "Point", "coordinates": [ -75.177106, 39.937259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7z-qs5", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.043867, "LONGITUDE": -75.088282, "DATE_RANGE_START": 2021, "Total Visits": 2962.0, "Total Visitors": 1556.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 938.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.47, "MEDIAN_SPEND_PER_CUSTOMER": 21.27 }, "geometry": { "type": "Point", "coordinates": [ -75.088282, 40.043867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-f75", "LOCATION_NAME": "Beer City", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.972301, "LONGITUDE": -75.125884, "DATE_RANGE_START": 2021, "Total Visits": 468.0, "Total Visitors": 272.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 18319.0, "Total Transactions": 623.0, "Total Customers": 387.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 29.74 }, "geometry": { "type": "Point", "coordinates": [ -75.125884, 39.972301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "LOCATION_NAME": "Deluxe Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048286, "LONGITUDE": -75.012528, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 124.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 152.0, "Total Spend": 513.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 9.17 }, "geometry": { "type": "Point", "coordinates": [ -75.012528, 40.048286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2021, "Total Visits": 1227.0, "Total Visitors": 866.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 51448.0, "Total Transactions": 2007.0, "Total Customers": 1320.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.05, "MEDIAN_SPEND_PER_CUSTOMER": 31.39 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2022, "Total Visits": 380.0, "Total Visitors": 226.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5251.0, "Total Transactions": 800.0, "Total Customers": 247.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.62, "MEDIAN_SPEND_PER_CUSTOMER": 9.22 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9s-j9z", "LOCATION_NAME": "Room Service 360", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.111182, "LONGITUDE": -75.003163, "DATE_RANGE_START": 2022, "Total Visits": 453.0, "Total Visitors": 343.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 317.0, "Total Spend": 8665.0, "Total Transactions": 38.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 92.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003163, 40.111182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-ph6-gx5", "LOCATION_NAME": "Community Mini Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984629, "LONGITUDE": -75.229321, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010119002.0, "MEDIAN_DWELL": null, "Total Spend": 89.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229321, 39.984629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "LOCATION_NAME": "Giovanni's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1588.0, "Total Transactions": 89.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.77, "MEDIAN_SPEND_PER_CUSTOMER": 29.54 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgf-52k", "LOCATION_NAME": "Woosa Bubble Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959251, "LONGITUDE": -75.194643, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2133.0, "Total Transactions": 167.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.32, "MEDIAN_SPEND_PER_CUSTOMER": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.194643, 39.959251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "LOCATION_NAME": "New Star Express Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010111004.0, "MEDIAN_DWELL": null, "Total Spend": 3775.0, "Total Transactions": 150.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.34, "MEDIAN_SPEND_PER_CUSTOMER": 52.49 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tn5", "LOCATION_NAME": "Unclaimed Diamonds", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949045, "LONGITUDE": -75.153751, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 40.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 12648.0, "Total Transactions": 21.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 525.0, "MEDIAN_SPEND_PER_CUSTOMER": 1000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153751, 39.949045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-gff", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011075, "LONGITUDE": -75.176591, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 44.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3067.0, "Total Transactions": 251.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.32, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176591, 40.011075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981705, "LONGITUDE": -75.180442, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 45.0, "POI_CBG": 421010149004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7184.0, "Total Transactions": 606.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.53, "MEDIAN_SPEND_PER_CUSTOMER": 23.03 }, "geometry": { "type": "Point", "coordinates": [ -75.180442, 39.981705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.02991, "LONGITUDE": -75.186134, "DATE_RANGE_START": 2022, "Total Visits": 1491.0, "Total Visitors": 890.0, "POI_CBG": 421010239002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3470.0, "Total Transactions": 84.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.22, "MEDIAN_SPEND_PER_CUSTOMER": 65.09 }, "geometry": { "type": "Point", "coordinates": [ -75.186134, 40.02991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "LOCATION_NAME": "Bookhaven", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3834.0, "Total Transactions": 129.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "LOCATION_NAME": "Lucky 13 Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927169, "LONGITUDE": -75.167128, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 740.0, "Total Spend": 10831.0, "Total Transactions": 315.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.58, "MEDIAN_SPEND_PER_CUSTOMER": 63.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167128, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg4-2rk", "LOCATION_NAME": "Maker artisan pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032925, "LONGITUDE": -75.168806, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010246001.0, "MEDIAN_DWELL": null, "Total Spend": 1302.0, "Total Transactions": 33.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.66, "MEDIAN_SPEND_PER_CUSTOMER": 94.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168806, 40.032925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-phz-tjv", "LOCATION_NAME": "The Marketplace Philly", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.998284, "LONGITUDE": -75.110525, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 51.0, "POI_CBG": 421010192004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 291.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110525, 39.998284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-kmk", "LOCATION_NAME": "Philly Sunnyside Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974534, "LONGITUDE": -75.181976, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1224.0, "Total Transactions": 47.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.72, "MEDIAN_SPEND_PER_CUSTOMER": 39.44 }, "geometry": { "type": "Point", "coordinates": [ -75.181976, 39.974534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-yqf", "LOCATION_NAME": "Shiao Lan Kung", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955257, "LONGITUDE": -75.155387, "DATE_RANGE_START": 2022, "Total Visits": 10046.0, "Total Visitors": 7164.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1582.0, "Total Transactions": 28.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.0, "MEDIAN_SPEND_PER_CUSTOMER": 142.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.955257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmf-kpv", "LOCATION_NAME": "Chinese Food Cart", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953188, "LONGITUDE": -75.171816, "DATE_RANGE_START": 2022, "Total Visits": 4371.0, "Total Visitors": 3077.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 70.0, "Total Spend": 397.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.95, "MEDIAN_SPEND_PER_CUSTOMER": 63.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171816, 39.953188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "LOCATION_NAME": "Cook and Shaker", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 28.0, "POI_CBG": 421010160001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 14529.0, "Total Transactions": 220.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.93, "MEDIAN_SPEND_PER_CUSTOMER": 125.19 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032001, "LONGITUDE": -75.213304, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 70.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 300.0, "Total Spend": 2675.0, "Total Transactions": 80.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.38, "MEDIAN_SPEND_PER_CUSTOMER": 32.69 }, "geometry": { "type": "Point", "coordinates": [ -75.213304, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2022, "Total Visits": 319.0, "Total Visitors": 167.0, "POI_CBG": 421010268003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5562.0, "Total Transactions": 955.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.3, "MEDIAN_SPEND_PER_CUSTOMER": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-75z", "LOCATION_NAME": "Ninja Bao", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953417, "LONGITUDE": -75.165928, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 63.0, "Total Spend": 512.0, "Total Transactions": 31.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.65, "MEDIAN_SPEND_PER_CUSTOMER": 25.79 }, "geometry": { "type": "Point", "coordinates": [ -75.165928, 39.953417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg9-7h5", "LOCATION_NAME": "Hair Town", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991198, "LONGITUDE": -75.177954, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 37.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 11856.0, "Total Transactions": 350.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 56.12 }, "geometry": { "type": "Point", "coordinates": [ -75.177954, 39.991198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm9-whq", "LOCATION_NAME": "Old City Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949756, "LONGITUDE": -75.145531, "DATE_RANGE_START": 2022, "Total Visits": 868.0, "Total Visitors": 662.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 52.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.145531, 39.949756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "LOCATION_NAME": "Ruby Tuesday", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.887819, "LONGITUDE": -75.247004, "DATE_RANGE_START": 2022, "Total Visits": 720.0, "Total Visitors": 681.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 15456.0, "Total Transactions": 315.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.93, "MEDIAN_SPEND_PER_CUSTOMER": 46.62 }, "geometry": { "type": "Point", "coordinates": [ -75.247004, 39.887819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "LOCATION_NAME": "Le Viet Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 108.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 123.0, "Total Spend": 361.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 51.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-ks5", "LOCATION_NAME": "Zama", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950901, "LONGITUDE": -75.172392, "DATE_RANGE_START": 2022, "Total Visits": 383.0, "Total Visitors": 220.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 456.0, "Total Spend": 30898.0, "Total Transactions": 354.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.08, "MEDIAN_SPEND_PER_CUSTOMER": 142.14 }, "geometry": { "type": "Point", "coordinates": [ -75.172392, 39.950901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 39.932572, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 148.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2065.0, "Total Transactions": 44.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.44, "MEDIAN_SPEND_PER_CUSTOMER": 50.93 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.068776, "LONGITUDE": -75.005362, "DATE_RANGE_START": 2022, "Total Visits": 1136.0, "Total Visitors": 814.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6164.0, "Total Transactions": 232.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.53, "MEDIAN_SPEND_PER_CUSTOMER": 21.97 }, "geometry": { "type": "Point", "coordinates": [ -75.005362, 40.068776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051659, "LONGITUDE": -75.008179, "DATE_RANGE_START": 2022, "Total Visits": 287.0, "Total Visitors": 199.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2148.0, "Total Transactions": 103.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.02, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008179, 40.051659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2022, "Total Visits": 1599.0, "Total Visitors": 669.0, "POI_CBG": 421010183001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 19414.0, "Total Transactions": 1641.0, "Total Customers": 535.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.08, "MEDIAN_SPEND_PER_CUSTOMER": 16.53 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-psq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.120378, "LONGITUDE": -75.018088, "DATE_RANGE_START": 2022, "Total Visits": 537.0, "Total Visitors": 394.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 15913.0, "Total Transactions": 758.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.74, "MEDIAN_SPEND_PER_CUSTOMER": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.018088, 40.120378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.031542, "LONGITUDE": -75.100256, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 166.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2196.0, "Total Transactions": 37.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -75.100256, 40.031542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-g8v", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.011165, "LONGITUDE": -75.176365, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 82.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3440.0, "Total Transactions": 91.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.97, "MEDIAN_SPEND_PER_CUSTOMER": 28.26 }, "geometry": { "type": "Point", "coordinates": [ -75.176365, 40.011165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm9-yn5", "LOCATION_NAME": "Bluebond Guitars", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.94235, "LONGITUDE": -75.148924, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 223.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 571.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 104.0, "MEDIAN_SPEND_PER_CUSTOMER": 164.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148924, 39.94235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2022, "Total Visits": 591.0, "Total Visitors": 517.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 28122.0, "Total Transactions": 528.0, "Total Customers": 460.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.66, "MEDIAN_SPEND_PER_CUSTOMER": 40.71 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2022, "Total Visits": 8209.0, "Total Visitors": 6230.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 10058.0, "Total Transactions": 359.0, "Total Customers": 324.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2022, "Total Visits": 3028.0, "Total Visitors": 2326.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 16.0, "Total Spend": 545543.0, "Total Transactions": 10281.0, "Total Customers": 6171.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.05, "MEDIAN_SPEND_PER_CUSTOMER": 54.66 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-6p9", "LOCATION_NAME": "W Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951534, "LONGITUDE": -75.165211, "DATE_RANGE_START": 2022, "Total Visits": 2120.0, "Total Visitors": 1718.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 42425.0, "Total Transactions": 82.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 471.44, "MEDIAN_SPEND_PER_CUSTOMER": 545.66 }, "geometry": { "type": "Point", "coordinates": [ -75.165211, 39.951534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-6x5", "LOCATION_NAME": "Harp & Crown", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950579, "LONGITUDE": -75.166788, "DATE_RANGE_START": 2022, "Total Visits": 4990.0, "Total Visitors": 3734.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 17730.0, "Total Transactions": 183.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.6, "MEDIAN_SPEND_PER_CUSTOMER": 102.76 }, "geometry": { "type": "Point", "coordinates": [ -75.166788, 39.950579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-bp9", "LOCATION_NAME": "Sang Kee Noodle House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.909183, "LONGITUDE": -75.16467, "DATE_RANGE_START": 2022, "Total Visits": 6842.0, "Total Visitors": 3409.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 120.0, "Total Spend": 34774.0, "Total Transactions": 1242.0, "Total Customers": 589.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.34, "MEDIAN_SPEND_PER_CUSTOMER": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16467, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y9z", "LOCATION_NAME": "Copabanana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941497, "LONGITUDE": -75.14907, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 103.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 30876.0, "Total Transactions": 497.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 107.54 }, "geometry": { "type": "Point", "coordinates": [ -75.14907, 39.941497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2022, "Total Visits": 368.0, "Total Visitors": 275.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 19742.0, "Total Transactions": 1843.0, "Total Customers": 1152.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.35, "MEDIAN_SPEND_PER_CUSTOMER": 12.37 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-rzf", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.995312, "LONGITUDE": -75.092003, "DATE_RANGE_START": 2022, "Total Visits": 298.0, "Total Visitors": 258.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1176.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.54, "MEDIAN_SPEND_PER_CUSTOMER": 33.61 }, "geometry": { "type": "Point", "coordinates": [ -75.092003, 39.995312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj2-btv", "LOCATION_NAME": "Bentoulis Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01065, "LONGITUDE": -75.102956, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 52.0, "POI_CBG": 421010191002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1864.0, "Total Transactions": 77.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.12, "MEDIAN_SPEND_PER_CUSTOMER": 34.25 }, "geometry": { "type": "Point", "coordinates": [ -75.102956, 40.01065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-qmk", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.030627, "LONGITUDE": -75.102315, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 385.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 45290.0, "Total Transactions": 33.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 500.0, "MEDIAN_SPEND_PER_CUSTOMER": 1772.08 }, "geometry": { "type": "Point", "coordinates": [ -75.102315, 40.030627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-p8m-v2k", "LOCATION_NAME": "Moon Flower House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029561, "LONGITUDE": -75.058358, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 64.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1231.0, "Total Transactions": 63.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 28.46 }, "geometry": { "type": "Point", "coordinates": [ -75.058358, 40.029561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-rkz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914686, "LONGITUDE": -75.220838, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 92.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 883.0, "Total Transactions": 118.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.86, "MEDIAN_SPEND_PER_CUSTOMER": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.220838, 39.914686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfx-ks5", "LOCATION_NAME": "Artesano Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027058, "LONGITUDE": -75.2268, "DATE_RANGE_START": 2022, "Total Visits": 652.0, "Total Visitors": 530.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 403.0, "Total Transactions": 26.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.73, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.2268, 40.027058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-49z", "LOCATION_NAME": "Ginny Gourmet Sweet Treats", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038736, "LONGITUDE": -75.128328, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 5.0, "POI_CBG": 421010274012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 59.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.128328, 40.038736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm4-b8v", "LOCATION_NAME": "Hyon's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935029, "LONGITUDE": -75.179358, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2831.0, "Total Transactions": 176.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 32.66 }, "geometry": { "type": "Point", "coordinates": [ -75.179358, 39.935029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991684, "LONGITUDE": -75.154551, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 152.0, "Total Spend": 6029.0, "Total Transactions": 455.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.67, "MEDIAN_SPEND_PER_CUSTOMER": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.154551, 39.991684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.069743, "LONGITUDE": -75.051689, "DATE_RANGE_START": 2022, "Total Visits": 439.0, "Total Visitors": 366.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 471.0, "Total Transactions": 54.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.3, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.051689, 40.069743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-gzf", "LOCATION_NAME": "Bar X", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946786, "LONGITUDE": -75.161663, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 37.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6286.0, "Total Transactions": 265.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161663, 39.946786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-b8v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.934826, "LONGITUDE": -75.178911, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 40.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 114.0, "Total Spend": 1204.0, "Total Transactions": 94.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.178911, 39.934826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-ch5", "LOCATION_NAME": "Fishtown Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.974427, "LONGITUDE": -75.132999, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": null, "Total Spend": 9394.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 546.98, "MEDIAN_SPEND_PER_CUSTOMER": 668.96 }, "geometry": { "type": "Point", "coordinates": [ -75.132999, 39.974427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pzn-zj9", "LOCATION_NAME": "Sweeney's Station Saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.131466, "LONGITUDE": -75.011396, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 63.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 8506.0, "Total Transactions": 270.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.59, "MEDIAN_SPEND_PER_CUSTOMER": 61.52 }, "geometry": { "type": "Point", "coordinates": [ -75.011396, 40.131466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "LOCATION_NAME": "King of Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010037021.0, "MEDIAN_DWELL": null, "Total Spend": 163.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.87, "MEDIAN_SPEND_PER_CUSTOMER": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "255-222@628-pm9-y9z", "LOCATION_NAME": "Milkboy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941731, "LONGITUDE": -75.1493, "DATE_RANGE_START": 2022, "Total Visits": 949.0, "Total Visitors": 864.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1623.0, "Total Transactions": 31.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.71, "MEDIAN_SPEND_PER_CUSTOMER": 135.48 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.941731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "LOCATION_NAME": "Beck's Cajun Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2022, "Total Visits": 28654.0, "Total Visitors": 19157.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 12846.0, "Total Transactions": 659.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.16, "MEDIAN_SPEND_PER_CUSTOMER": 31.24 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "LOCATION_NAME": "Bloomsday Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7041.0, "Total Transactions": 98.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.59, "MEDIAN_SPEND_PER_CUSTOMER": 81.34 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgm-3qz", "LOCATION_NAME": "LeBus East Falls", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00891, "LONGITUDE": -75.193713, "DATE_RANGE_START": 2022, "Total Visits": 232.0, "Total Visitors": 193.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 24.0, "Total Spend": 279.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.22, "MEDIAN_SPEND_PER_CUSTOMER": 53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193713, 40.00891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "LOCATION_NAME": "Monk's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 183.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 51.0, "Total Spend": 49372.0, "Total Transactions": 707.0, "Total Customers": 347.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.98, "MEDIAN_SPEND_PER_CUSTOMER": 111.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-45f", "LOCATION_NAME": "Md Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977208, "LONGITUDE": -75.147273, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 26.0, "POI_CBG": 421010145001.0, "MEDIAN_DWELL": 613.0, "Total Spend": 2210.0, "Total Transactions": 138.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.18 }, "geometry": { "type": "Point", "coordinates": [ -75.147273, 39.977208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-6tv", "LOCATION_NAME": "Allen Tire & Service", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.048405, "LONGITUDE": -75.096529, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4505.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.74, "MEDIAN_SPEND_PER_CUSTOMER": 283.87 }, "geometry": { "type": "Point", "coordinates": [ -75.096529, 40.048405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.916081, "LONGITUDE": -75.185496, "DATE_RANGE_START": 2022, "Total Visits": 2230.0, "Total Visitors": 1394.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 155478.0, "Total Transactions": 1004.0, "Total Customers": 497.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.89, "MEDIAN_SPEND_PER_CUSTOMER": 62.99 }, "geometry": { "type": "Point", "coordinates": [ -75.185496, 39.916081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2022, "Total Visits": 2680.0, "Total Visitors": 1720.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 118283.0, "Total Transactions": 810.0, "Total Customers": 444.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.07, "MEDIAN_SPEND_PER_CUSTOMER": 33.74 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-p85-6kz", "LOCATION_NAME": "IGA", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.068401, "LONGITUDE": -75.051737, "DATE_RANGE_START": 2022, "Total Visits": 1995.0, "Total Visitors": 1155.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2718.0, "Total Transactions": 87.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.14, "MEDIAN_SPEND_PER_CUSTOMER": 53.89 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.068401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 150.0, "Total Spend": 26753.0, "Total Transactions": 1798.0, "Total Customers": 678.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.21, "MEDIAN_SPEND_PER_CUSTOMER": 29.56 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmd-snq", "LOCATION_NAME": "Pure Design", "TOP_CATEGORY": "Florists", "LATITUDE": 39.946224, "LONGITUDE": -75.178525, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": null, "Total Spend": 1220.0, "Total Transactions": 35.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 53.46 }, "geometry": { "type": "Point", "coordinates": [ -75.178525, 39.946224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-3wk", "LOCATION_NAME": "Christian Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.942022, "LONGITUDE": -75.180801, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 24.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4118.0, "Total Transactions": 209.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180801, 39.942022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-kj9", "LOCATION_NAME": "Olc", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.953669, "LONGITUDE": -75.145037, "DATE_RANGE_START": 2022, "Total Visits": 693.0, "Total Visitors": 570.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 11316.0, "Total Transactions": 282.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.51, "MEDIAN_SPEND_PER_CUSTOMER": 31.16 }, "geometry": { "type": "Point", "coordinates": [ -75.145037, 39.953669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.029597, "LONGITUDE": -75.145391, "DATE_RANGE_START": 2022, "Total Visits": 242.0, "Total Visitors": 148.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8863.0, "Total Transactions": 484.0, "Total Customers": 277.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 23.44 }, "geometry": { "type": "Point", "coordinates": [ -75.145391, 40.029597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-22d@628-p9q-tn5", "LOCATION_NAME": "Greenman's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.083997, "LONGITUDE": -75.035563, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 146.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 114.0, "Total Spend": 629.0, "Total Transactions": 49.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.035563, 40.083997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-hh5", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951987, "LONGITUDE": -75.171121, "DATE_RANGE_START": 2022, "Total Visits": 354.0, "Total Visitors": 256.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 124.0, "Total Spend": 916.0, "Total Transactions": 42.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.07, "MEDIAN_SPEND_PER_CUSTOMER": 22.08 }, "geometry": { "type": "Point", "coordinates": [ -75.171121, 39.951987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmb-5pv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952298, "LONGITUDE": -75.160846, "DATE_RANGE_START": 2022, "Total Visits": 988.0, "Total Visitors": 632.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 237.0, "Total Spend": 10992.0, "Total Transactions": 951.0, "Total Customers": 624.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.94, "MEDIAN_SPEND_PER_CUSTOMER": 11.43 }, "geometry": { "type": "Point", "coordinates": [ -75.160846, 39.952298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2022, "Total Visits": 535.0, "Total Visitors": 200.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 628.0, "Total Spend": 17073.0, "Total Transactions": 2080.0, "Total Customers": 742.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.59, "MEDIAN_SPEND_PER_CUSTOMER": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@63s-dvx-tsq", "LOCATION_NAME": "University City Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945765, "LONGITUDE": -75.213948, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 52.0, "POI_CBG": 421010078001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 455.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213948, 39.945765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-vj9", "LOCATION_NAME": "Fairmount Pet Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.967037, "LONGITUDE": -75.17115, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": null, "Total Spend": 4258.0, "Total Transactions": 103.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.91, "MEDIAN_SPEND_PER_CUSTOMER": 64.78 }, "geometry": { "type": "Point", "coordinates": [ -75.17115, 39.967037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999174, "LONGITUDE": -75.093264, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 96.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 620.0, "Total Transactions": 24.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.7, "MEDIAN_SPEND_PER_CUSTOMER": 26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093264, 39.999174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "LOCATION_NAME": "Drury Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 136.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 145.0, "Total Spend": 48156.0, "Total Transactions": 1523.0, "Total Customers": 624.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.69, "MEDIAN_SPEND_PER_CUSTOMER": 55.39 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "LOCATION_NAME": "Nordstrom Rack", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951246, "LONGITUDE": -75.168975, "DATE_RANGE_START": 2022, "Total Visits": 1612.0, "Total Visitors": 1345.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 90366.0, "Total Transactions": 1213.0, "Total Customers": 1087.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.59, "MEDIAN_SPEND_PER_CUSTOMER": 52.91 }, "geometry": { "type": "Point", "coordinates": [ -75.168975, 39.951246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg2-zs5", "LOCATION_NAME": "Mount Airy Tap Room", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.053904, "LONGITUDE": -75.194197, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 37.0, "POI_CBG": 421010388004.0, "MEDIAN_DWELL": 66.0, "Total Spend": 21598.0, "Total Transactions": 324.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.59, "MEDIAN_SPEND_PER_CUSTOMER": 103.03 }, "geometry": { "type": "Point", "coordinates": [ -75.194197, 40.053904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmb-xnq", "LOCATION_NAME": "Sakura Mandarin", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955481, "LONGITUDE": -75.157295, "DATE_RANGE_START": 2022, "Total Visits": 5082.0, "Total Visitors": 3631.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 267.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.05, "MEDIAN_SPEND_PER_CUSTOMER": 41.18 }, "geometry": { "type": "Point", "coordinates": [ -75.157295, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg4-j9z", "LOCATION_NAME": "G'town Sports", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.035551, "LONGITUDE": -75.174594, "DATE_RANGE_START": 2022, "Total Visits": 1185.0, "Total Visitors": 772.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 206.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 59.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174594, 40.035551 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950226, "LONGITUDE": -75.169589, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 211.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 27659.0, "Total Transactions": 357.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 111.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169589, 39.950226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-whq", "LOCATION_NAME": "Kick Axe Throwing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94991, "LONGITUDE": -75.145059, "DATE_RANGE_START": 2022, "Total Visits": 3399.0, "Total Visitors": 2453.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 70.0, "Total Spend": 496.0, "Total Transactions": 12.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.2, "MEDIAN_SPEND_PER_CUSTOMER": 64.48 }, "geometry": { "type": "Point", "coordinates": [ -75.145059, 39.94991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "LOCATION_NAME": "Spice Finch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2022, "Total Visits": 2512.0, "Total Visitors": 1556.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 272.0, "Total Spend": 28430.0, "Total Transactions": 258.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.04, "MEDIAN_SPEND_PER_CUSTOMER": 124.34 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pjf-kvf", "LOCATION_NAME": "Tailored Home", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.076272, "LONGITUDE": -75.207332, "DATE_RANGE_START": 2022, "Total Visits": 443.0, "Total Visitors": 284.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 106.0, "Total Spend": 213.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.02, "MEDIAN_SPEND_PER_CUSTOMER": 61.02 }, "geometry": { "type": "Point", "coordinates": [ -75.207332, 40.076272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "LOCATION_NAME": "Pizza Boli's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010190001.0, "MEDIAN_DWELL": null, "Total Spend": 336.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph6-whq", "LOCATION_NAME": "Italian Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986561, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 23.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2159.0, "Total Transactions": 92.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "LOCATION_NAME": "Sam's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 26.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 325.0, "Total Spend": 1942.0, "Total Transactions": 113.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.61, "MEDIAN_SPEND_PER_CUSTOMER": 34.28 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2022, "Total Visits": 779.0, "Total Visitors": 540.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 81.0, "Total Spend": 30496.0, "Total Transactions": 519.0, "Total Customers": 256.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.4, "MEDIAN_SPEND_PER_CUSTOMER": 98.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "LOCATION_NAME": "The Capital Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950707, "LONGITUDE": -75.163622, "DATE_RANGE_START": 2022, "Total Visits": 423.0, "Total Visitors": 368.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 43581.0, "Total Transactions": 169.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 192.27, "MEDIAN_SPEND_PER_CUSTOMER": 210.28 }, "geometry": { "type": "Point", "coordinates": [ -75.163622, 39.950707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pnx-c89", "LOCATION_NAME": "Cheu Fishtown", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972312, "LONGITUDE": -75.134585, "DATE_RANGE_START": 2022, "Total Visits": 1038.0, "Total Visitors": 470.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 643.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 92.27, "MEDIAN_SPEND_PER_CUSTOMER": 184.53 }, "geometry": { "type": "Point", "coordinates": [ -75.134585, 39.972312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 73.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 740.0, "Total Transactions": 42.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.59, "MEDIAN_SPEND_PER_CUSTOMER": 21.57 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96142, "LONGITUDE": -75.144288, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 118.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3975.0, "Total Transactions": 530.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.52, "MEDIAN_SPEND_PER_CUSTOMER": 9.07 }, "geometry": { "type": "Point", "coordinates": [ -75.144288, 39.96142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949521, "LONGITUDE": -75.167452, "DATE_RANGE_START": 2022, "Total Visits": 1167.0, "Total Visitors": 920.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 20.0, "Total Spend": 14738.0, "Total Transactions": 1650.0, "Total Customers": 1068.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167452, 39.949521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-d5f", "LOCATION_NAME": "Philly's Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.020009, "LONGITUDE": -75.063793, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 82.0, "POI_CBG": 421010319003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2400.0, "Total Transactions": 103.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.51, "MEDIAN_SPEND_PER_CUSTOMER": 42.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063793, 40.020009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "LOCATION_NAME": "Hair Fashion & Beyond", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978135, "LONGITUDE": -75.158545, "DATE_RANGE_START": 2022, "Total Visits": 516.0, "Total Visitors": 399.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 786.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.73, "MEDIAN_SPEND_PER_CUSTOMER": 30.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158545, 39.978135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg4-47q", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030031, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2022, "Total Visits": 674.0, "Total Visitors": 409.0, "POI_CBG": 421010242001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 762.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.22, "MEDIAN_SPEND_PER_CUSTOMER": 18.16 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 40.030031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kcq", "LOCATION_NAME": "Silver Legends", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950384, "LONGITUDE": -75.174268, "DATE_RANGE_START": 2022, "Total Visits": 355.0, "Total Visitors": 166.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 757.0, "Total Spend": 991.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174268, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-3yv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022096, "LONGITUDE": -75.125775, "DATE_RANGE_START": 2022, "Total Visits": 408.0, "Total Visitors": 277.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2821.0, "Total Transactions": 127.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.29 }, "geometry": { "type": "Point", "coordinates": [ -75.125775, 40.022096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026137, "LONGITUDE": -75.042321, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 193.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 471.0, "Total Transactions": 51.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.55, "MEDIAN_SPEND_PER_CUSTOMER": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.042321, 40.026137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953745, "LONGITUDE": -75.172854, "DATE_RANGE_START": 2022, "Total Visits": 1953.0, "Total Visitors": 1389.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 21.0, "Total Spend": 15653.0, "Total Transactions": 932.0, "Total Customers": 612.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 13.39 }, "geometry": { "type": "Point", "coordinates": [ -75.172854, 39.953745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-6p9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046097, "LONGITUDE": -75.142598, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 200.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13740.0, "Total Transactions": 631.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.1, "MEDIAN_SPEND_PER_CUSTOMER": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.142598, 40.046097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pm8-kxq", "LOCATION_NAME": "Victory Beer Hall", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.904214, "LONGITUDE": -75.169344, "DATE_RANGE_START": 2022, "Total Visits": 4518.0, "Total Visitors": 3836.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 53655.0, "Total Transactions": 1901.0, "Total Customers": 805.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169344, 39.904214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pj9-q4v", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038777, "LONGITUDE": -75.149388, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 105.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 1047.0, "Total Spend": 1451.0, "Total Transactions": 85.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.52 }, "geometry": { "type": "Point", "coordinates": [ -75.149388, 40.038777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2022, "Total Visits": 7978.0, "Total Visitors": 5340.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2852.0, "Total Transactions": 354.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.74, "MEDIAN_SPEND_PER_CUSTOMER": 8.96 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp4-syv", "LOCATION_NAME": "Memphis Market & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98172, "LONGITUDE": -75.120871, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 49.0, "POI_CBG": 421010160001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8299.0, "Total Transactions": 659.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120871, 39.98172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2022, "Total Visits": 1608.0, "Total Visitors": 946.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 61.0, "Total Spend": 22593.0, "Total Transactions": 1326.0, "Total Customers": 812.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.9, "MEDIAN_SPEND_PER_CUSTOMER": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951061, "LONGITUDE": -75.168264, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 324.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 126.0, "Total Spend": 4940.0, "Total Transactions": 136.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.168264, 39.951061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-skf", "LOCATION_NAME": "Good Dog Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948847, "LONGITUDE": -75.166287, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 120.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 40.0, "Total Spend": 2631.0, "Total Transactions": 42.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.18, "MEDIAN_SPEND_PER_CUSTOMER": 146.72 }, "geometry": { "type": "Point", "coordinates": [ -75.166287, 39.948847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-5mk", "LOCATION_NAME": "McGillin's Olde Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95021, "LONGITUDE": -75.162564, "DATE_RANGE_START": 2022, "Total Visits": 763.0, "Total Visitors": 678.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 126412.0, "Total Transactions": 4671.0, "Total Customers": 1619.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 54.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162564, 39.95021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "LOCATION_NAME": "El Poquito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 57.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 10253.0, "Total Transactions": 125.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.84, "MEDIAN_SPEND_PER_CUSTOMER": 107.52 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-vmk", "LOCATION_NAME": "E Frank Hopkins", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.906965, "LONGITUDE": -75.154623, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 57.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 361.0, "Total Spend": 27619.0, "Total Transactions": 49.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 241.2, "MEDIAN_SPEND_PER_CUSTOMER": 482.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154623, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032189, "LONGITUDE": -75.214079, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 112.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9741.0, "Total Transactions": 385.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.13, "MEDIAN_SPEND_PER_CUSTOMER": 44.09 }, "geometry": { "type": "Point", "coordinates": [ -75.214079, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "LOCATION_NAME": "TGI Fridays", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2022, "Total Visits": 747.0, "Total Visitors": 678.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 42.0, "Total Spend": 24172.0, "Total Transactions": 479.0, "Total Customers": 422.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.04, "MEDIAN_SPEND_PER_CUSTOMER": 49.04 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "LOCATION_NAME": "Ocean Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95567, "LONGITUDE": -75.156821, "DATE_RANGE_START": 2022, "Total Visits": 4598.0, "Total Visitors": 3310.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 14321.0, "Total Transactions": 157.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.05, "MEDIAN_SPEND_PER_CUSTOMER": 130.02 }, "geometry": { "type": "Point", "coordinates": [ -75.156821, 39.95567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "LOCATION_NAME": "Luke's Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 141.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11156.0, "Total Transactions": 216.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.23, "MEDIAN_SPEND_PER_CUSTOMER": 77.76 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-wkz", "LOCATION_NAME": "Samsonite Outlet", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.087661, "LONGITUDE": -74.961617, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 193.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 263.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.79, "MEDIAN_SPEND_PER_CUSTOMER": 75.58 }, "geometry": { "type": "Point", "coordinates": [ -74.961617, 40.087661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 101.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15059.0, "Total Transactions": 592.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.42, "MEDIAN_SPEND_PER_CUSTOMER": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-2c5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073477, "LONGITUDE": -75.033695, "DATE_RANGE_START": 2022, "Total Visits": 411.0, "Total Visitors": 294.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5034.0, "Total Transactions": 699.0, "Total Customers": 345.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.58, "MEDIAN_SPEND_PER_CUSTOMER": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.033695, 40.073477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-pj4-xwk", "LOCATION_NAME": "Tribeca Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007053, "LONGITUDE": -75.151464, "DATE_RANGE_START": 2022, "Total Visits": 10615.0, "Total Visitors": 3632.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 331.0, "Total Spend": 5889.0, "Total Transactions": 632.0, "Total Customers": 199.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.67, "MEDIAN_SPEND_PER_CUSTOMER": 20.84 }, "geometry": { "type": "Point", "coordinates": [ -75.151464, 40.007053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 63.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 184.0, "Total Spend": 1981.0, "Total Transactions": 103.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.97, "MEDIAN_SPEND_PER_CUSTOMER": 32.56 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "LOCATION_NAME": "China Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2022, "Total Visits": 634.0, "Total Visitors": 510.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 36.0, "Total Spend": 4474.0, "Total Transactions": 96.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.83, "MEDIAN_SPEND_PER_CUSTOMER": 71.55 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-st9", "LOCATION_NAME": "Cantina Los Caballitos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928871, "LONGITUDE": -75.16446, "DATE_RANGE_START": 2022, "Total Visits": 246.0, "Total Visitors": 199.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 41.0, "Total Spend": 86613.0, "Total Transactions": 1510.0, "Total Customers": 720.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.06, "MEDIAN_SPEND_PER_CUSTOMER": 93.12 }, "geometry": { "type": "Point", "coordinates": [ -75.16446, 39.928871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pgb-tn5", "LOCATION_NAME": "JC Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962905, "LONGITUDE": -75.15611, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 99.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 671.0, "Total Spend": 4346.0, "Total Transactions": 406.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.49, "MEDIAN_SPEND_PER_CUSTOMER": 26.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15611, 39.962905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.021127, "LONGITUDE": -75.149781, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 280.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1567.0, "Total Transactions": 66.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.11, "MEDIAN_SPEND_PER_CUSTOMER": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.149781, 40.021127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm6-w49", "LOCATION_NAME": "777 Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.9327, "LONGITUDE": -75.19274, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 68.0, "POI_CBG": 421010033005.0, "MEDIAN_DWELL": 79.0, "Total Spend": 1581.0, "Total Transactions": 117.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.07, "MEDIAN_SPEND_PER_CUSTOMER": 32.24 }, "geometry": { "type": "Point", "coordinates": [ -75.19274, 39.9327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 105.0, "POI_CBG": 421010171003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2860.0, "Total Transactions": 136.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.07, "MEDIAN_SPEND_PER_CUSTOMER": 14.91 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 232.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8299.0, "Total Transactions": 416.0, "Total Customers": 300.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.69, "MEDIAN_SPEND_PER_CUSTOMER": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-wtv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054812, "LONGITUDE": -75.054903, "DATE_RANGE_START": 2022, "Total Visits": 422.0, "Total Visitors": 343.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8908.0, "Total Transactions": 364.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.054903, 40.054812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2022, "Total Visits": 524.0, "Total Visitors": 456.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12128.0, "Total Transactions": 216.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.23, "MEDIAN_SPEND_PER_CUSTOMER": 42.91 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7nq", "LOCATION_NAME": "Bodega Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949277, "LONGITUDE": -75.161669, "DATE_RANGE_START": 2022, "Total Visits": 456.0, "Total Visitors": 240.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 255.0, "Total Spend": 16829.0, "Total Transactions": 256.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.0, "MEDIAN_SPEND_PER_CUSTOMER": 106.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161669, 39.949277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.029917, "LONGITUDE": -75.0978, "DATE_RANGE_START": 2022, "Total Visits": 3573.0, "Total Visitors": 2199.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 79923.0, "Total Transactions": 618.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.76, "MEDIAN_SPEND_PER_CUSTOMER": 84.61 }, "geometry": { "type": "Point", "coordinates": [ -75.0978, 40.029917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22p@628-pmf-sqz", "LOCATION_NAME": "Food Cart", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949977, "LONGITUDE": -75.167596, "DATE_RANGE_START": 2022, "Total Visits": 3209.0, "Total Visitors": 2516.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 184.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.95, "MEDIAN_SPEND_PER_CUSTOMER": 52.93 }, "geometry": { "type": "Point", "coordinates": [ -75.167596, 39.949977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954574, "LONGITUDE": -75.169932, "DATE_RANGE_START": 2022, "Total Visits": 509.0, "Total Visitors": 333.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 81.0, "Total Spend": 29323.0, "Total Transactions": 697.0, "Total Customers": 307.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.77, "MEDIAN_SPEND_PER_CUSTOMER": 64.96 }, "geometry": { "type": "Point", "coordinates": [ -75.169932, 39.954574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "LOCATION_NAME": "Spice 28", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 167.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 14430.0, "Total Transactions": 307.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.62, "MEDIAN_SPEND_PER_CUSTOMER": 68.58 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "LOCATION_NAME": "Oyster House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2022, "Total Visits": 463.0, "Total Visitors": 402.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 43.0, "Total Spend": 93358.0, "Total Transactions": 749.0, "Total Customers": 376.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.95, "MEDIAN_SPEND_PER_CUSTOMER": 185.93 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041625, "LONGITUDE": -75.064814, "DATE_RANGE_START": 2022, "Total Visits": 157.0, "Total Visitors": 125.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 22.0, "Total Spend": 10584.0, "Total Transactions": 221.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 74.42 }, "geometry": { "type": "Point", "coordinates": [ -75.064814, 40.041625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-23v@628-pmb-835", "LOCATION_NAME": "The Head Nut", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953175, "LONGITUDE": -75.159415, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 7912.0, "Total Transactions": 300.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.25, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159415, 39.953175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "LOCATION_NAME": "Yummy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954519, "LONGITUDE": -75.170234, "DATE_RANGE_START": 2022, "Total Visits": 364.0, "Total Visitors": 199.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 114.0, "Total Spend": 4406.0, "Total Transactions": 179.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.04, "MEDIAN_SPEND_PER_CUSTOMER": 53.36 }, "geometry": { "type": "Point", "coordinates": [ -75.170234, 39.954519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "LOCATION_NAME": "Xi'an Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 190.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 83.0, "Total Spend": 965.0, "Total Transactions": 33.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.73, "MEDIAN_SPEND_PER_CUSTOMER": 37.83 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "LOCATION_NAME": "Moonlight Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 75.0, "POI_CBG": 421010265004.0, "MEDIAN_DWELL": 47.0, "Total Spend": 6287.0, "Total Transactions": 218.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.88, "MEDIAN_SPEND_PER_CUSTOMER": 60.32 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pmf-jd9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.9512, "LONGITUDE": -75.168586, "DATE_RANGE_START": 2022, "Total Visits": 2033.0, "Total Visitors": 1413.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 327.0, "Total Spend": 37107.0, "Total Transactions": 2526.0, "Total Customers": 1505.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.65, "MEDIAN_SPEND_PER_CUSTOMER": 13.81 }, "geometry": { "type": "Point", "coordinates": [ -75.168586, 39.9512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2022, "Total Visits": 535.0, "Total Visitors": 443.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 607.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.1, "MEDIAN_SPEND_PER_CUSTOMER": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 129.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 401.0, "Total Transactions": 31.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.25, "MEDIAN_SPEND_PER_CUSTOMER": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2022, "Total Visits": 664.0, "Total Visitors": 498.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9392.0, "Total Transactions": 1146.0, "Total Customers": 544.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949907, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2022, "Total Visits": 298.0, "Total Visitors": 242.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2187.0, "Total Transactions": 204.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.78, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.949907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2022, "Total Visits": 735.0, "Total Visitors": 615.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 14271.0, "Total Transactions": 751.0, "Total Customers": 601.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.89 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-phm-5s5", "LOCATION_NAME": "Marathon", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.063884, "LONGITUDE": -75.140696, "DATE_RANGE_START": 2022, "Total Visits": 427.0, "Total Visitors": 308.0, "POI_CBG": 421010268001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4153.0, "Total Transactions": 99.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.28 }, "geometry": { "type": "Point", "coordinates": [ -75.140696, 40.063884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.907673, "LONGITUDE": -75.189086, "DATE_RANGE_START": 2022, "Total Visits": 2862.0, "Total Visitors": 2016.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1191.0, "Total Transactions": 40.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.55 }, "geometry": { "type": "Point", "coordinates": [ -75.189086, 39.907673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-v2k", "LOCATION_NAME": "Lane Bryant", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.923477, "LONGITUDE": -75.140627, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 186.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 357.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.98, "MEDIAN_SPEND_PER_CUSTOMER": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -75.140627, 39.923477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.029566, "LONGITUDE": -75.100398, "DATE_RANGE_START": 2022, "Total Visits": 801.0, "Total Visitors": 726.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 5468.0, "Total Transactions": 124.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.96, "MEDIAN_SPEND_PER_CUSTOMER": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.100398, 40.029566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-q9f", "LOCATION_NAME": "BEL Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.105145, "LONGITUDE": -75.032134, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 108.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1286.0, "Total Transactions": 24.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032134, 40.105145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp4-kfz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.987233, "LONGITUDE": -75.129676, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 129.0, "POI_CBG": 421010161004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 805.0, "Total Transactions": 47.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.36, "MEDIAN_SPEND_PER_CUSTOMER": 17.51 }, "geometry": { "type": "Point", "coordinates": [ -75.129676, 39.987233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@63s-dwg-2hq", "LOCATION_NAME": "Ben's Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.911529, "LONGITUDE": -75.228465, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 63.0, "POI_CBG": 421010061001.0, "MEDIAN_DWELL": 358.0, "Total Spend": 101.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 29.12 }, "geometry": { "type": "Point", "coordinates": [ -75.228465, 39.911529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2022, "Total Visits": 1021.0, "Total Visitors": 796.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 20306.0, "Total Transactions": 685.0, "Total Customers": 439.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933087, "LONGITUDE": -75.144618, "DATE_RANGE_START": 2022, "Total Visits": 1211.0, "Total Visitors": 697.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 16505.0, "Total Transactions": 2136.0, "Total Customers": 889.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.36, "MEDIAN_SPEND_PER_CUSTOMER": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -75.144618, 39.933087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-zfz", "LOCATION_NAME": "Sweet Treat Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934878, "LONGITUDE": -75.167189, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 75.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 30.0, "Total Spend": 3243.0, "Total Transactions": 376.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167189, 39.934878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "LOCATION_NAME": "Microtel Inn and Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2022, "Total Visits": 1028.0, "Total Visitors": 448.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 506.0, "Total Spend": 4982.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 139.49, "MEDIAN_SPEND_PER_CUSTOMER": 188.89 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmb-gzf", "LOCATION_NAME": "Cloud Factory Hookah Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946776, "LONGITUDE": -75.161155, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 124.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 313.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.42, "MEDIAN_SPEND_PER_CUSTOMER": 89.97 }, "geometry": { "type": "Point", "coordinates": [ -75.161155, 39.946776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-789", "LOCATION_NAME": "The Wine Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948078, "LONGITUDE": -75.224261, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 141.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 1184.0, "Total Transactions": 35.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.75, "MEDIAN_SPEND_PER_CUSTOMER": 61.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224261, 39.948078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-52k", "LOCATION_NAME": "Indian Sizzler", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959458, "LONGITUDE": -75.194962, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2095.0, "Total Transactions": 113.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.194962, 39.959458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 37.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7144.0, "Total Transactions": 413.0, "Total Customers": 333.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 16.91 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "LOCATION_NAME": "Canto House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955533, "LONGITUDE": -75.155568, "DATE_RANGE_START": 2022, "Total Visits": 10046.0, "Total Visitors": 7164.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2739.0, "Total Transactions": 91.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.46, "MEDIAN_SPEND_PER_CUSTOMER": 44.93 }, "geometry": { "type": "Point", "coordinates": [ -75.155568, 39.955533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmf-s3q", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944594, "LONGITUDE": -75.171766, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 28.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9162.0, "Total Transactions": 796.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.1, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171766, 39.944594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "LOCATION_NAME": "Jack B Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.939115, "LONGITUDE": -75.149838, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 37.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5530.0, "Total Transactions": 66.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.91, "MEDIAN_SPEND_PER_CUSTOMER": 112.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149838, 39.939115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-d7q", "LOCATION_NAME": "Alex's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034052, "LONGITUDE": -75.220933, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": null, "Total Spend": 169.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.23, "MEDIAN_SPEND_PER_CUSTOMER": 48.45 }, "geometry": { "type": "Point", "coordinates": [ -75.220933, 40.034052 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-ph5-wc5", "LOCATION_NAME": "Four Seasons", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.97425, "LONGITUDE": -75.240201, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010101001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10829.0, "Total Transactions": 341.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.44, "MEDIAN_SPEND_PER_CUSTOMER": 20.93 }, "geometry": { "type": "Point", "coordinates": [ -75.240201, 39.97425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "LOCATION_NAME": "Papa Joe's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 19.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 279.0, "Total Spend": 1108.0, "Total Transactions": 38.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.42, "MEDIAN_SPEND_PER_CUSTOMER": 32.24 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "LOCATION_NAME": "Eyes Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941491, "LONGITUDE": -75.149374, "DATE_RANGE_START": 2022, "Total Visits": 463.0, "Total Visitors": 448.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3907.0, "Total Transactions": 89.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.66, "MEDIAN_SPEND_PER_CUSTOMER": 64.02 }, "geometry": { "type": "Point", "coordinates": [ -75.149374, 39.941491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-6x5", "LOCATION_NAME": "The North Face", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.949894, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 118.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 117.0, "Total Spend": 3463.0, "Total Transactions": 45.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.5, "MEDIAN_SPEND_PER_CUSTOMER": 53.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008154, "LONGITUDE": -75.17322, "DATE_RANGE_START": 2022, "Total Visits": 218.0, "Total Visitors": 190.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1168.0, "Total Transactions": 129.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.45, "MEDIAN_SPEND_PER_CUSTOMER": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 40.008154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "LOCATION_NAME": "Bourbon & Branch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 58.0, "Total Spend": 5447.0, "Total Transactions": 96.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.81, "MEDIAN_SPEND_PER_CUSTOMER": 93.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-m49", "LOCATION_NAME": "Lincoln Chicken & Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045702, "LONGITUDE": -75.164907, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 24.0, "POI_CBG": 421010248002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 252.0, "Total Transactions": 24.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.73, "MEDIAN_SPEND_PER_CUSTOMER": 22.38 }, "geometry": { "type": "Point", "coordinates": [ -75.164907, 40.045702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-m6k", "LOCATION_NAME": "Arch Street Lighting", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.951738, "LONGITUDE": -75.142429, "DATE_RANGE_START": 2022, "Total Visits": 916.0, "Total Visitors": 631.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 516.0, "Total Spend": 3417.0, "Total Transactions": 16.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 322.59, "MEDIAN_SPEND_PER_CUSTOMER": 307.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142429, 39.951738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nyv", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.931469, "LONGITUDE": -75.144907, "DATE_RANGE_START": 2022, "Total Visits": 399.0, "Total Visitors": 333.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2325.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 215.08, "MEDIAN_SPEND_PER_CUSTOMER": 215.08 }, "geometry": { "type": "Point", "coordinates": [ -75.144907, 39.931469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2022, "Total Visits": 287.0, "Total Visitors": 209.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 430.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.66, "MEDIAN_SPEND_PER_CUSTOMER": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 174.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2530.0, "Total Transactions": 77.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.3, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.101484, "LONGITUDE": -75.030277, "DATE_RANGE_START": 2022, "Total Visits": 246.0, "Total Visitors": 226.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1329.0, "Total Transactions": 16.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.46, "MEDIAN_SPEND_PER_CUSTOMER": 225.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030277, 40.101484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "LOCATION_NAME": "Tires Plus", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 131.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3705.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 198.27, "MEDIAN_SPEND_PER_CUSTOMER": 198.27 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.119147, "LONGITUDE": -75.015143, "DATE_RANGE_START": 2022, "Total Visits": 4286.0, "Total Visitors": 2462.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 77367.0, "Total Transactions": 634.0, "Total Customers": 333.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.18, "MEDIAN_SPEND_PER_CUSTOMER": 53.93 }, "geometry": { "type": "Point", "coordinates": [ -75.015143, 40.119147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2022, "Total Visits": 493.0, "Total Visitors": 378.0, "POI_CBG": 421010275001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 7255.0, "Total Transactions": 427.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 17.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-j35", "LOCATION_NAME": "18th Street Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951252, "LONGITUDE": -75.170272, "DATE_RANGE_START": 2022, "Total Visits": 503.0, "Total Visitors": 362.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 2035.0, "Total Transactions": 33.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170272, 39.951252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.940581, "LONGITUDE": -75.165835, "DATE_RANGE_START": 2022, "Total Visits": 1209.0, "Total Visitors": 826.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1055.0, "Total Transactions": 56.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.09, "MEDIAN_SPEND_PER_CUSTOMER": 16.81 }, "geometry": { "type": "Point", "coordinates": [ -75.165835, 39.940581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "LOCATION_NAME": "Windsor", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08613, "LONGITUDE": -74.962864, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 307.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 31480.0, "Total Transactions": 289.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.9, "MEDIAN_SPEND_PER_CUSTOMER": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -74.962864, 40.08613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "LOCATION_NAME": "iMunch Cafe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1294.0, "Total Transactions": 23.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.6, "MEDIAN_SPEND_PER_CUSTOMER": 45.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgg-wff", "LOCATION_NAME": "Carolina Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996753, "LONGITUDE": -75.175067, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 24.0, "POI_CBG": 421010172022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1450.0, "Total Transactions": 131.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.09, "MEDIAN_SPEND_PER_CUSTOMER": 36.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175067, 39.996753 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-tn5", "LOCATION_NAME": "Kusturiss Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.948919, "LONGITUDE": -75.153588, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 338.0, "Total Spend": 518.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.4, "MEDIAN_SPEND_PER_CUSTOMER": 148.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153588, 39.948919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p74-z75", "LOCATION_NAME": "Seafood Bay Inc", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041659, "LONGITUDE": -75.028001, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010331022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1009.0, "Total Transactions": 54.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.07, "MEDIAN_SPEND_PER_CUSTOMER": 35.16 }, "geometry": { "type": "Point", "coordinates": [ -75.028001, 40.041659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "LOCATION_NAME": "Trio Delight Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037587, "LONGITUDE": -75.118044, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 38.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2708.0, "Total Transactions": 141.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.92, "MEDIAN_SPEND_PER_CUSTOMER": 37.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118044, 40.037587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-6zf", "LOCATION_NAME": "Petes Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964375, "LONGITUDE": -75.204736, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3432.0, "Total Transactions": 148.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.08, "MEDIAN_SPEND_PER_CUSTOMER": 31.65 }, "geometry": { "type": "Point", "coordinates": [ -75.204736, 39.964375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045558, "LONGITUDE": -75.087582, "DATE_RANGE_START": 2022, "Total Visits": 685.0, "Total Visitors": 422.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 13098.0, "Total Transactions": 613.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 18.38 }, "geometry": { "type": "Point", "coordinates": [ -75.087582, 40.045558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "LOCATION_NAME": "Eye Encounters", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2022, "Total Visits": 4984.0, "Total Visitors": 3396.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1031.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.0, "MEDIAN_SPEND_PER_CUSTOMER": 154.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mx5", "LOCATION_NAME": "Jos. A. Bank Clothiers", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952606, "LONGITUDE": -75.168302, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 78.0, "Total Spend": 18593.0, "Total Transactions": 106.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 112.0, "MEDIAN_SPEND_PER_CUSTOMER": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168302, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "LOCATION_NAME": "Gap Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.050036, "LONGITUDE": -75.06262, "DATE_RANGE_START": 2022, "Total Visits": 298.0, "Total Visitors": 251.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 2201.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.99, "MEDIAN_SPEND_PER_CUSTOMER": 60.71 }, "geometry": { "type": "Point", "coordinates": [ -75.06262, 40.050036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.051298, "LONGITUDE": -75.065323, "DATE_RANGE_START": 2022, "Total Visits": 2239.0, "Total Visitors": 1758.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1625.0, "Total Transactions": 42.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.67, "MEDIAN_SPEND_PER_CUSTOMER": 38.11 }, "geometry": { "type": "Point", "coordinates": [ -75.065323, 40.051298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23g@628-pmf-sqz", "LOCATION_NAME": "New Balance Philadelphia", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.949971, "LONGITUDE": -75.168174, "DATE_RANGE_START": 2022, "Total Visits": 225.0, "Total Visitors": 172.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 5393.0, "Total Transactions": 44.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 121.49, "MEDIAN_SPEND_PER_CUSTOMER": 106.98 }, "geometry": { "type": "Point", "coordinates": [ -75.168174, 39.949971 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087098, "LONGITUDE": -74.962333, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 376.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1283.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.87, "MEDIAN_SPEND_PER_CUSTOMER": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962333, 40.087098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vxq", "LOCATION_NAME": "Liberty Bell Bicycle", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.926446, "LONGITUDE": -75.166883, "DATE_RANGE_START": 2022, "Total Visits": 465.0, "Total Visitors": 129.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 1250.0, "Total Spend": 442.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.38, "MEDIAN_SPEND_PER_CUSTOMER": 126.76 }, "geometry": { "type": "Point", "coordinates": [ -75.166883, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-hdv", "LOCATION_NAME": "The Book Corner", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.960171, "LONGITUDE": -75.171295, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 166.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2368.0, "Total Transactions": 169.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 19.72 }, "geometry": { "type": "Point", "coordinates": [ -75.171295, 39.960171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p9q-yn5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.088065, "LONGITUDE": -75.037683, "DATE_RANGE_START": 2022, "Total Visits": 1160.0, "Total Visitors": 1033.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 93.0, "Total Spend": 485.0, "Total Transactions": 44.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.95, "MEDIAN_SPEND_PER_CUSTOMER": 8.85 }, "geometry": { "type": "Point", "coordinates": [ -75.037683, 40.088065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2022, "Total Visits": 476.0, "Total Visitors": 335.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 461.0, "Total Transactions": 28.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.76, "MEDIAN_SPEND_PER_CUSTOMER": 10.62 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "LOCATION_NAME": "Liberty Smokes", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.912433, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 200.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 88.0, "Total Spend": 1611.0, "Total Transactions": 40.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.93, "MEDIAN_SPEND_PER_CUSTOMER": 114.04 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.912433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pp4-x3q", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.985931, "LONGITUDE": -75.132237, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 127.0, "POI_CBG": 421010163004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 517.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.99, "MEDIAN_SPEND_PER_CUSTOMER": 15.15 }, "geometry": { "type": "Point", "coordinates": [ -75.132237, 39.985931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pm9-y9z", "LOCATION_NAME": "Shyne Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941833, "LONGITUDE": -75.148783, "DATE_RANGE_START": 2022, "Total Visits": 1202.0, "Total Visitors": 998.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 777623.0, "Total Transactions": 188.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 5000.0, "MEDIAN_SPEND_PER_CUSTOMER": 2376.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148783, 39.941833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "LOCATION_NAME": "Dick's Sporting Goods", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.085609, "LONGITUDE": -74.967208, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 305.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 313.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.51, "MEDIAN_SPEND_PER_CUSTOMER": 89.94 }, "geometry": { "type": "Point", "coordinates": [ -74.967208, 40.085609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.992425, "LONGITUDE": -75.101329, "DATE_RANGE_START": 2022, "Total Visits": 753.0, "Total Visitors": 564.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 6174.0, "Total Transactions": 143.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.97, "MEDIAN_SPEND_PER_CUSTOMER": 43.59 }, "geometry": { "type": "Point", "coordinates": [ -75.101329, 39.992425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-mzf", "LOCATION_NAME": "Cantina Dos Segundos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964821, "LONGITUDE": -75.140233, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 28380.0, "Total Transactions": 526.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.7, "MEDIAN_SPEND_PER_CUSTOMER": 104.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140233, 39.964821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22f@628-p9q-hqz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.07905, "LONGITUDE": -75.028048, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 826.0, "Total Transactions": 37.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.76, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.028048, 40.07905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 54.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 54.0, "Total Spend": 5193.0, "Total Transactions": 145.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.24, "MEDIAN_SPEND_PER_CUSTOMER": 28.38 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-9pv", "LOCATION_NAME": "The Buffalo House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043677, "LONGITUDE": -75.017847, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 40.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2893.0, "Total Transactions": 117.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 41.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017847, 40.043677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-fcq", "LOCATION_NAME": "Yeager Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.97236, "LONGITUDE": -75.226332, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 7.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 357.0, "Total Spend": 45248.0, "Total Transactions": 990.0, "Total Customers": 718.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.84, "MEDIAN_SPEND_PER_CUSTOMER": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.226332, 39.97236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "LOCATION_NAME": "Brick House Bar & Grille", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2022, "Total Visits": 467.0, "Total Visitors": 301.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 74.0, "Total Spend": 10694.0, "Total Transactions": 272.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.25, "MEDIAN_SPEND_PER_CUSTOMER": 74.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2022, "Total Visits": 157.0, "Total Visitors": 139.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1790.0, "Total Transactions": 96.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.75 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 181.0, "POI_CBG": 421010317003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 10960.0, "Total Transactions": 751.0, "Total Customers": 509.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.02, "MEDIAN_SPEND_PER_CUSTOMER": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-228@628-pjf-jvz", "LOCATION_NAME": "Tokyo Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074121, "LONGITUDE": -75.202557, "DATE_RANGE_START": 2022, "Total Visits": 441.0, "Total Visitors": 301.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 10331.0, "Total Transactions": 260.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 54.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202557, 40.074121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm6-jn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921871, "LONGITUDE": -75.14714, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 108.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 765.0, "Total Transactions": 105.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.14714, 39.921871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pgb-7t9", "LOCATION_NAME": "Plants Etc", "TOP_CATEGORY": "Florists", "LATITUDE": 39.967525, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": null, "Total Spend": 414.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.4, "MEDIAN_SPEND_PER_CUSTOMER": 118.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.967525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "LOCATION_NAME": "Thai Square Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 9.0, "POI_CBG": 421010013005.0, "MEDIAN_DWELL": 39.0, "Total Spend": 4071.0, "Total Transactions": 75.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.77, "MEDIAN_SPEND_PER_CUSTOMER": 69.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "LOCATION_NAME": "Wah Gi Wah Halal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956965, "LONGITUDE": -75.211135, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3158.0, "Total Transactions": 33.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.0, "MEDIAN_SPEND_PER_CUSTOMER": 170.04 }, "geometry": { "type": "Point", "coordinates": [ -75.211135, 39.956965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-xnq", "LOCATION_NAME": "Dim Sum Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955197, "LONGITUDE": -75.156774, "DATE_RANGE_START": 2022, "Total Visits": 514.0, "Total Visitors": 432.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 854.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.85, "MEDIAN_SPEND_PER_CUSTOMER": 245.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 39.955197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "LOCATION_NAME": "Royal's Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 24183.0, "Total Transactions": 293.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 123.38, "MEDIAN_SPEND_PER_CUSTOMER": 51.18 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm3-vxq", "LOCATION_NAME": "Noir Restaurant & Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926292, "LONGITUDE": -75.16736, "DATE_RANGE_START": 2022, "Total Visits": 624.0, "Total Visitors": 378.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 95.0, "Total Spend": 6515.0, "Total Transactions": 103.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.21, "MEDIAN_SPEND_PER_CUSTOMER": 101.56 }, "geometry": { "type": "Point", "coordinates": [ -75.16736, 39.926292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "LOCATION_NAME": "Macaroni's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2022, "Total Visits": 397.0, "Total Visitors": 270.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 112.0, "Total Spend": 22165.0, "Total Transactions": 214.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.06, "MEDIAN_SPEND_PER_CUSTOMER": 167.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfz-bzf", "LOCATION_NAME": "Chabaa Thai Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025611, "LONGITUDE": -75.223488, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 94.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 10821.0, "Total Transactions": 171.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.44, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223488, 40.025611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "LOCATION_NAME": "Dim Sum & Noodle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962276, "LONGITUDE": -75.172659, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 26.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 122.0, "Total Spend": 6144.0, "Total Transactions": 209.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.22, "MEDIAN_SPEND_PER_CUSTOMER": 48.45 }, "geometry": { "type": "Point", "coordinates": [ -75.172659, 39.962276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "LOCATION_NAME": "Gennaro's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3757.0, "Total Transactions": 223.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 29.76 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "LOCATION_NAME": "Pho Don", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 1773.0, "Total Transactions": 94.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.72, "MEDIAN_SPEND_PER_CUSTOMER": 30.51 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "LOCATION_NAME": "Pac A Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948693, "LONGITUDE": -75.160788, "DATE_RANGE_START": 2022, "Total Visits": 294.0, "Total Visitors": 240.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 24756.0, "Total Transactions": 1291.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 37.16 }, "geometry": { "type": "Point", "coordinates": [ -75.160788, 39.948693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-kmk", "LOCATION_NAME": "A Plus Mini Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.97357, "LONGITUDE": -75.159507, "DATE_RANGE_START": 2022, "Total Visits": 286.0, "Total Visitors": 228.0, "POI_CBG": 421010140003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 192.0, "Total Transactions": 37.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.64, "MEDIAN_SPEND_PER_CUSTOMER": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.159507, 39.97357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-n3q", "LOCATION_NAME": "Double Connect", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.959668, "LONGITUDE": -75.224073, "DATE_RANGE_START": 2022, "Total Visits": 14863.0, "Total Visitors": 5896.0, "POI_CBG": 421010085001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 599.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 84.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224073, 39.959668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pg8-jjv", "LOCATION_NAME": "Deborah's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97383, "LONGITUDE": -75.179259, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 273.0, "Total Transactions": 9.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.14, "MEDIAN_SPEND_PER_CUSTOMER": 78.25 }, "geometry": { "type": "Point", "coordinates": [ -75.179259, 39.97383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pj6-435", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040276, "LONGITUDE": -75.109025, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 124.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.55, "MEDIAN_SPEND_PER_CUSTOMER": 7.55 }, "geometry": { "type": "Point", "coordinates": [ -75.109025, 40.040276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2022, "Total Visits": 652.0, "Total Visitors": 443.0, "POI_CBG": 421010085001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 11371.0, "Total Transactions": 880.0, "Total Customers": 620.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.62, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgg-yvz", "LOCATION_NAME": "Favors", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9991, "LONGITUDE": -75.171017, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010172024.0, "MEDIAN_DWELL": 24.0, "Total Spend": 98.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.171017, 39.9991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-49z", "LOCATION_NAME": "Greek From Greece", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957922, "LONGITUDE": -75.188878, "DATE_RANGE_START": 2022, "Total Visits": 1227.0, "Total Visitors": 449.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 100.0, "Total Spend": 167.0, "Total Transactions": 17.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.38, "MEDIAN_SPEND_PER_CUSTOMER": 26.9 }, "geometry": { "type": "Point", "coordinates": [ -75.188878, 39.957922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pm3-vs5", "LOCATION_NAME": "Mike & Matt's Italian Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926268, "LONGITUDE": -75.165968, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 21.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 777.0, "Total Transactions": 68.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165968, 39.926268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pmf-jd9", "LOCATION_NAME": "SoBol Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951746, "LONGITUDE": -75.168892, "DATE_RANGE_START": 2022, "Total Visits": 3983.0, "Total Visitors": 3178.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2565.0, "Total Transactions": 169.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168892, 39.951746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "LOCATION_NAME": "Head House Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.940599, "LONGITUDE": -75.145587, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": null, "Total Spend": 6521.0, "Total Transactions": 171.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.03, "MEDIAN_SPEND_PER_CUSTOMER": 63.71 }, "geometry": { "type": "Point", "coordinates": [ -75.145587, 39.940599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg9-b8v", "LOCATION_NAME": "Dragon Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981544, "LONGITUDE": -75.174071, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010149001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1291.0, "Total Transactions": 54.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.73, "MEDIAN_SPEND_PER_CUSTOMER": 63.62 }, "geometry": { "type": "Point", "coordinates": [ -75.174071, 39.981544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-9cq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953242, "LONGITUDE": -75.19352, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 132.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 104.0, "Total Spend": 8621.0, "Total Transactions": 1500.0, "Total Customers": 620.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.74, "MEDIAN_SPEND_PER_CUSTOMER": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.19352, 39.953242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pj4-t7q", "LOCATION_NAME": "Nexcare Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.996106, "LONGITUDE": -75.13916, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010176012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 288.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.95, "MEDIAN_SPEND_PER_CUSTOMER": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13916, 39.996106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "LOCATION_NAME": "Hunan Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 89.0, "Total Spend": 3926.0, "Total Transactions": 202.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.76, "MEDIAN_SPEND_PER_CUSTOMER": 32.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6283.0, "Total Transactions": 146.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.93, "MEDIAN_SPEND_PER_CUSTOMER": 65.44 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "LOCATION_NAME": "Papa Nick's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 23.0, "POI_CBG": 421010272003.0, "MEDIAN_DWELL": 34.0, "Total Spend": 8085.0, "Total Transactions": 315.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.01, "MEDIAN_SPEND_PER_CUSTOMER": 45.22 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "LOCATION_NAME": "John's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 702.0, "Total Transactions": 49.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "LOCATION_NAME": "M & M Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1950.0, "Total Transactions": 64.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.5, "MEDIAN_SPEND_PER_CUSTOMER": 54.58 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phn-9fz", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079281, "LONGITUDE": -75.174174, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 775.0, "Total Transactions": 37.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.75, "MEDIAN_SPEND_PER_CUSTOMER": 42.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174174, 40.079281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "LOCATION_NAME": "Sweet Creations Unlimited", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.017723, "LONGITUDE": -75.059702, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": 52.0, "Total Spend": 859.0, "Total Transactions": 19.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.38, "MEDIAN_SPEND_PER_CUSTOMER": 33.26 }, "geometry": { "type": "Point", "coordinates": [ -75.059702, 40.017723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-yd9", "LOCATION_NAME": "Essene Market & Cafe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940035, "LONGITUDE": -75.149067, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 23.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 42.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.68, "MEDIAN_SPEND_PER_CUSTOMER": 12.07 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045256, "LONGITUDE": -75.086611, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 246.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 510.0, "Total Transactions": 23.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.086611, 40.045256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "LOCATION_NAME": "Easy Pickins", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950651, "LONGITUDE": -75.160672, "DATE_RANGE_START": 2022, "Total Visits": 268.0, "Total Visitors": 237.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 20605.0, "Total Transactions": 542.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.52, "MEDIAN_SPEND_PER_CUSTOMER": 51.05 }, "geometry": { "type": "Point", "coordinates": [ -75.160672, 39.950651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8b-cbk", "LOCATION_NAME": "Smoker's Palace", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.017474, "LONGITUDE": -75.051228, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010323001.0, "MEDIAN_DWELL": null, "Total Spend": 8148.0, "Total Transactions": 347.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.22, "MEDIAN_SPEND_PER_CUSTOMER": 59.36 }, "geometry": { "type": "Point", "coordinates": [ -75.051228, 40.017474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "LOCATION_NAME": "Curran's Irish Inn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 157.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 4445.0, "Total Transactions": 84.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.63, "MEDIAN_SPEND_PER_CUSTOMER": 85.25 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "LOCATION_NAME": "So Korean Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2022, "Total Visits": 847.0, "Total Visitors": 660.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 18819.0, "Total Transactions": 145.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.78, "MEDIAN_SPEND_PER_CUSTOMER": 207.22 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054006, "LONGITUDE": -75.193227, "DATE_RANGE_START": 2022, "Total Visits": 274.0, "Total Visitors": 230.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15979.0, "Total Transactions": 552.0, "Total Customers": 338.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.6, "MEDIAN_SPEND_PER_CUSTOMER": 21.56 }, "geometry": { "type": "Point", "coordinates": [ -75.193227, 40.054006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "LOCATION_NAME": "Platinum", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 96.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 12000.0, "Total Transactions": 49.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 291.5, "MEDIAN_SPEND_PER_CUSTOMER": 535.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "LOCATION_NAME": "Bruno's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 56.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 736.0, "Total Transactions": 31.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.37, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "LOCATION_NAME": "Khyber Pass Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2022, "Total Visits": 282.0, "Total Visitors": 267.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 37882.0, "Total Transactions": 841.0, "Total Customers": 425.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.3, "MEDIAN_SPEND_PER_CUSTOMER": 67.79 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "LOCATION_NAME": "Asian Bamboo House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 118.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5428.0, "Total Transactions": 223.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.25, "MEDIAN_SPEND_PER_CUSTOMER": 53.33 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 40.079117, "LONGITUDE": -75.027659, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 75.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 138.0, "Total Spend": 3081.0, "Total Transactions": 19.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.32, "MEDIAN_SPEND_PER_CUSTOMER": 26.24 }, "geometry": { "type": "Point", "coordinates": [ -75.027659, 40.079117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm4-pvz", "LOCATION_NAME": "George's Sandwich Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938819, "LONGITUDE": -75.157978, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 91.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 686.0, "Total Transactions": 56.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157978, 39.938819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm4-b6k", "LOCATION_NAME": "Two Eagles Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934031, "LONGITUDE": -75.177208, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 21.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5201.0, "Total Transactions": 200.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.38, "MEDIAN_SPEND_PER_CUSTOMER": 54.42 }, "geometry": { "type": "Point", "coordinates": [ -75.177208, 39.934031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-gp9", "LOCATION_NAME": "Jay's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946457, "LONGITUDE": -75.162475, "DATE_RANGE_START": 2022, "Total Visits": 517.0, "Total Visitors": 340.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": 311.0, "Total Spend": 74.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.09, "MEDIAN_SPEND_PER_CUSTOMER": 21.22 }, "geometry": { "type": "Point", "coordinates": [ -75.162475, 39.946457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-hdv", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009459, "LONGITUDE": -75.174254, "DATE_RANGE_START": 2022, "Total Visits": 1599.0, "Total Visitors": 1010.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1474.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.87, "MEDIAN_SPEND_PER_CUSTOMER": 45.94 }, "geometry": { "type": "Point", "coordinates": [ -75.174254, 40.009459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dtn-hqz", "LOCATION_NAME": "Bruegger's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.89519, "LONGITUDE": -75.227949, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5028.0, "Total Transactions": 389.0, "Total Customers": 357.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.6, "MEDIAN_SPEND_PER_CUSTOMER": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.227949, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg9-cyv", "LOCATION_NAME": "Mercado Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983185, "LONGITUDE": -75.169254, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 28.0, "POI_CBG": 421010152004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3598.0, "Total Transactions": 348.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 52.15 }, "geometry": { "type": "Point", "coordinates": [ -75.169254, 39.983185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "LOCATION_NAME": "Atomic City Comics", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.942034, "LONGITUDE": -75.153458, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 103.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4916.0, "Total Transactions": 98.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.88, "MEDIAN_SPEND_PER_CUSTOMER": 68.55 }, "geometry": { "type": "Point", "coordinates": [ -75.153458, 39.942034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.918005, "LONGITUDE": -75.188849, "DATE_RANGE_START": 2022, "Total Visits": 404.0, "Total Visitors": 312.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 9846.0, "Total Transactions": 226.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.07, "MEDIAN_SPEND_PER_CUSTOMER": 29.55 }, "geometry": { "type": "Point", "coordinates": [ -75.188849, 39.918005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2022, "Total Visits": 1045.0, "Total Visitors": 789.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3822.0, "Total Transactions": 150.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.84, "MEDIAN_SPEND_PER_CUSTOMER": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-3nq", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084019, "LONGITUDE": -74.96509, "DATE_RANGE_START": 2022, "Total Visits": 474.0, "Total Visitors": 415.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 419.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -74.96509, 40.084019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 221.0, "POI_CBG": 421010101005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6774.0, "Total Transactions": 761.0, "Total Customers": 422.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.65, "MEDIAN_SPEND_PER_CUSTOMER": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-225@63s-dvy-89z", "LOCATION_NAME": "The Satellite Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947724, "LONGITUDE": -75.222685, "DATE_RANGE_START": 2022, "Total Visits": 436.0, "Total Visitors": 321.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1236.0, "Total Transactions": 110.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.64, "MEDIAN_SPEND_PER_CUSTOMER": 15.67 }, "geometry": { "type": "Point", "coordinates": [ -75.222685, 39.947724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-kj9", "LOCATION_NAME": "Sassafras Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953897, "LONGITUDE": -75.14465, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 94.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 22808.0, "Total Transactions": 1361.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.54, "MEDIAN_SPEND_PER_CUSTOMER": 36.07 }, "geometry": { "type": "Point", "coordinates": [ -75.14465, 39.953897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pgh-vs5", "LOCATION_NAME": "Foot Long Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983008, "LONGITUDE": -75.153324, "DATE_RANGE_START": 2022, "Total Visits": 434.0, "Total Visitors": 226.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 162.0, "Total Spend": 1583.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 123.0, "MEDIAN_SPEND_PER_CUSTOMER": 246.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153324, 39.983008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948446, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 174.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 14.0, "Total Spend": 5397.0, "Total Transactions": 915.0, "Total Customers": 423.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.05, "MEDIAN_SPEND_PER_CUSTOMER": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.948446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.043988, "LONGITUDE": -75.054077, "DATE_RANGE_START": 2022, "Total Visits": 3005.0, "Total Visitors": 2117.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 674.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.76, "MEDIAN_SPEND_PER_CUSTOMER": 51.9 }, "geometry": { "type": "Point", "coordinates": [ -75.054077, 40.043988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-j5f", "LOCATION_NAME": "Poppy's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074185, "LONGITUDE": -75.202466, "DATE_RANGE_START": 2022, "Total Visits": 441.0, "Total Visitors": 301.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 1548.0, "Total Transactions": 193.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202466, 40.074185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5s5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950566, "LONGITUDE": -75.160281, "DATE_RANGE_START": 2022, "Total Visits": 800.0, "Total Visitors": 686.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1822.0, "Total Transactions": 183.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.07, "MEDIAN_SPEND_PER_CUSTOMER": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.160281, 39.950566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-94v", "LOCATION_NAME": "Torrid", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952222, "LONGITUDE": -75.156836, "DATE_RANGE_START": 2022, "Total Visits": 21494.0, "Total Visitors": 13739.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 4807.0, "Total Transactions": 51.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.05, "MEDIAN_SPEND_PER_CUSTOMER": 62.03 }, "geometry": { "type": "Point", "coordinates": [ -75.156836, 39.952222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2022, "Total Visits": 1673.0, "Total Visitors": 1277.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 206155.0, "Total Transactions": 9619.0, "Total Customers": 4551.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.19, "MEDIAN_SPEND_PER_CUSTOMER": 24.89 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2022, "Total Visits": 1033.0, "Total Visitors": 629.0, "POI_CBG": 421010012021.0, "MEDIAN_DWELL": 20.0, "Total Spend": 37005.0, "Total Transactions": 2176.0, "Total Customers": 1037.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.52, "MEDIAN_SPEND_PER_CUSTOMER": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-94v", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2022, "Total Visits": 21494.0, "Total Visitors": 13739.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 10814.0, "Total Transactions": 157.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.63, "MEDIAN_SPEND_PER_CUSTOMER": 50.14 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24p-222@628-pmf-kcq", "LOCATION_NAME": "Liberty Art & Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950849, "LONGITUDE": -75.173904, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 159.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 10796.0, "Total Transactions": 21.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 654.48, "MEDIAN_SPEND_PER_CUSTOMER": 896.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173904, 39.950849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.993729, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 106.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3719.0, "Total Transactions": 105.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.13, "MEDIAN_SPEND_PER_CUSTOMER": 9.23 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.993729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-syv", "LOCATION_NAME": "Tony's Auto Service", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.915674, "LONGITUDE": -75.160462, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 31.0, "POI_CBG": 421010041022.0, "MEDIAN_DWELL": 118.0, "Total Spend": 284.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.1, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.160462, 39.915674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgy-p5f", "LOCATION_NAME": "Roxy Gas & Snacks", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.052502, "LONGITUDE": -75.236583, "DATE_RANGE_START": 2022, "Total Visits": 1098.0, "Total Visitors": 552.0, "POI_CBG": 421010219001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 72.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.61, "MEDIAN_SPEND_PER_CUSTOMER": 20.61 }, "geometry": { "type": "Point", "coordinates": [ -75.236583, 40.052502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-6x5", "LOCATION_NAME": "Brooks Brothers", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949887, "LONGITUDE": -75.166618, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 145.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3865.0, "Total Transactions": 23.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 148.8, "MEDIAN_SPEND_PER_CUSTOMER": 186.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166618, 39.949887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-249", "LOCATION_NAME": "On Point Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937259, "LONGITUDE": -75.177106, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 35.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 5630.0, "Total Transactions": 117.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.84, "MEDIAN_SPEND_PER_CUSTOMER": 88.96 }, "geometry": { "type": "Point", "coordinates": [ -75.177106, 39.937259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj9-6p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.042256, "LONGITUDE": -75.144223, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 159.0, "POI_CBG": 421010278002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 476.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.54, "MEDIAN_SPEND_PER_CUSTOMER": 22.54 }, "geometry": { "type": "Point", "coordinates": [ -75.144223, 40.042256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj4-y7q", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.007623, "LONGITUDE": -75.150494, "DATE_RANGE_START": 2022, "Total Visits": 270.0, "Total Visitors": 216.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 212.0, "Total Spend": 6177.0, "Total Transactions": 57.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.0, "MEDIAN_SPEND_PER_CUSTOMER": 112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150494, 40.007623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "LOCATION_NAME": "The Ritz-Carlton", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2022, "Total Visits": 10415.0, "Total Visitors": 7589.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 121.0, "Total Spend": 27488.0, "Total Transactions": 71.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 252.32, "MEDIAN_SPEND_PER_CUSTOMER": 303.13 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050926, "LONGITUDE": -75.066019, "DATE_RANGE_START": 2022, "Total Visits": 1568.0, "Total Visitors": 1103.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1050.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.49 }, "geometry": { "type": "Point", "coordinates": [ -75.066019, 40.050926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-9fz", "LOCATION_NAME": "D M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979141, "LONGITUDE": -75.171311, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2377.0, "Total Transactions": 294.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.98 }, "geometry": { "type": "Point", "coordinates": [ -75.171311, 39.979141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-jqf", "LOCATION_NAME": "Brewers Outlet Of Mt Airy & Chestnut Hill", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.063253, "LONGITUDE": -75.192693, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 99.0, "POI_CBG": 421010256003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 25164.0, "Total Transactions": 740.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.06, "MEDIAN_SPEND_PER_CUSTOMER": 53.26 }, "geometry": { "type": "Point", "coordinates": [ -75.192693, 40.063253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.037208, "LONGITUDE": -75.172767, "DATE_RANGE_START": 2022, "Total Visits": 939.0, "Total Visitors": 533.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6695.0, "Total Transactions": 127.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.9, "MEDIAN_SPEND_PER_CUSTOMER": 37.65 }, "geometry": { "type": "Point", "coordinates": [ -75.172767, 40.037208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2022, "Total Visits": 936.0, "Total Visitors": 625.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 784.0, "Total Transactions": 52.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.69, "MEDIAN_SPEND_PER_CUSTOMER": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-qxq", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.99248, "LONGITUDE": -75.099968, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 275.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5017.0, "Total Transactions": 141.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.54, "MEDIAN_SPEND_PER_CUSTOMER": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.099968, 39.99248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-y7q", "LOCATION_NAME": "K & A Gift Shop", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953734, "LONGITUDE": -75.155203, "DATE_RANGE_START": 2022, "Total Visits": 5087.0, "Total Visitors": 3380.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 258.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.155203, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999351, "LONGITUDE": -75.132987, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 85.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 215.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.49, "MEDIAN_SPEND_PER_CUSTOMER": 12.49 }, "geometry": { "type": "Point", "coordinates": [ -75.132987, 39.999351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-6kz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085677, "LONGITUDE": -74.967871, "DATE_RANGE_START": 2022, "Total Visits": 563.0, "Total Visitors": 399.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2196.0, "Total Transactions": 216.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.51, "MEDIAN_SPEND_PER_CUSTOMER": 12.17 }, "geometry": { "type": "Point", "coordinates": [ -74.967871, 40.085677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-tn5", "LOCATION_NAME": "Koto Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948858, "LONGITUDE": -75.153256, "DATE_RANGE_START": 2022, "Total Visits": 646.0, "Total Visitors": 503.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2939.0, "Total Transactions": 105.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.15, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153256, 39.948858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8m-6rk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.026735, "LONGITUDE": -75.064295, "DATE_RANGE_START": 2022, "Total Visits": 418.0, "Total Visitors": 321.0, "POI_CBG": 421010319001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 584.0, "Total Transactions": 38.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.57, "MEDIAN_SPEND_PER_CUSTOMER": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064295, 40.026735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 33.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4290.0, "Total Transactions": 169.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.8, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "LOCATION_NAME": "Desi Chaat House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 659.0, "Total Transactions": 44.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.44, "MEDIAN_SPEND_PER_CUSTOMER": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "LOCATION_NAME": "Ganaan Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": 39.0, "Total Spend": 8190.0, "Total Transactions": 216.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.2, "MEDIAN_SPEND_PER_CUSTOMER": 70.88 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2022, "Total Visits": 728.0, "Total Visitors": 495.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": 11.0, "Total Spend": 571.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.23, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2022, "Total Visits": 1152.0, "Total Visitors": 713.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 178403.0, "Total Transactions": 3065.0, "Total Customers": 906.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.94, "MEDIAN_SPEND_PER_CUSTOMER": 102.12 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2022, "Total Visits": 1052.0, "Total Visitors": 781.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9597.0, "Total Transactions": 289.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.22, "MEDIAN_SPEND_PER_CUSTOMER": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.061568, "LONGITUDE": -75.05681, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 178.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6611.0, "Total Transactions": 348.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 19.41 }, "geometry": { "type": "Point", "coordinates": [ -75.05681, 40.061568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065, "LONGITUDE": -74.981932, "DATE_RANGE_START": 2022, "Total Visits": 5148.0, "Total Visitors": 2847.0, "POI_CBG": 421010362033.0, "MEDIAN_DWELL": 3.0, "Total Spend": 115.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.79, "MEDIAN_SPEND_PER_CUSTOMER": 27.79 }, "geometry": { "type": "Point", "coordinates": [ -74.981932, 40.065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031321, "LONGITUDE": -75.083478, "DATE_RANGE_START": 2022, "Total Visits": 1108.0, "Total Visitors": 763.0, "POI_CBG": 421010318004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 375.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.71, "MEDIAN_SPEND_PER_CUSTOMER": 30.94 }, "geometry": { "type": "Point", "coordinates": [ -75.083478, 40.031321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-g49", "LOCATION_NAME": "Ham Bone", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.977503, "LONGITUDE": -75.13156, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11357.0, "Total Transactions": 185.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.33, "MEDIAN_SPEND_PER_CUSTOMER": 96.93 }, "geometry": { "type": "Point", "coordinates": [ -75.13156, 39.977503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 85.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 859.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.07, "MEDIAN_SPEND_PER_CUSTOMER": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "LOCATION_NAME": "Sue's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946236, "LONGITUDE": -75.145477, "DATE_RANGE_START": 2022, "Total Visits": 636.0, "Total Visitors": 336.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 146.0, "Total Spend": 13289.0, "Total Transactions": 812.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.15, "MEDIAN_SPEND_PER_CUSTOMER": 46.08 }, "geometry": { "type": "Point", "coordinates": [ -75.145477, 39.946236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2022, "Total Visits": 1124.0, "Total Visitors": 756.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20155.0, "Total Transactions": 1807.0, "Total Customers": 848.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.73, "MEDIAN_SPEND_PER_CUSTOMER": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-pjv", "LOCATION_NAME": "Speedy Beverage Drive Thru", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.022333, "LONGITUDE": -75.209243, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 71.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 527.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.209243, 40.022333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-225@628-pp5-dgk", "LOCATION_NAME": "A & F Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.993258, "LONGITUDE": -75.110206, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 164.0, "POI_CBG": 421010188005.0, "MEDIAN_DWELL": 16.0, "Total Spend": 272.0, "Total Transactions": 17.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110206, 39.993258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg9-bp9", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979916, "LONGITUDE": -75.175802, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 14.0, "POI_CBG": 421010149001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 96.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.175802, 39.979916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph6-vvf", "LOCATION_NAME": "Debreaux's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989238, "LONGITUDE": -75.24979, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 214.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24979, 39.989238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "LOCATION_NAME": "Windfall Gallery", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 17.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 1903.0, "Total Transactions": 44.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.88, "MEDIAN_SPEND_PER_CUSTOMER": 73.88 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "LOCATION_NAME": "Georgian Bread Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2022, "Total Visits": 564.0, "Total Visitors": 420.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5788.0, "Total Transactions": 139.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.97, "MEDIAN_SPEND_PER_CUSTOMER": 58.31 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-6x5", "LOCATION_NAME": "Polka Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983781, "LONGITUDE": -75.101812, "DATE_RANGE_START": 2022, "Total Visits": 362.0, "Total Visitors": 139.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 1347.0, "Total Spend": 300.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.49, "MEDIAN_SPEND_PER_CUSTOMER": 12.34 }, "geometry": { "type": "Point", "coordinates": [ -75.101812, 39.983781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021282, "LONGITUDE": -75.14902, "DATE_RANGE_START": 2022, "Total Visits": 582.0, "Total Visitors": 446.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3909.0, "Total Transactions": 249.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.78, "MEDIAN_SPEND_PER_CUSTOMER": 16.06 }, "geometry": { "type": "Point", "coordinates": [ -75.14902, 40.021282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-6zf", "LOCATION_NAME": "Danis Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.02883, "LONGITUDE": -75.063054, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010317003.0, "MEDIAN_DWELL": 54.0, "Total Spend": 6969.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 500.0, "MEDIAN_SPEND_PER_CUSTOMER": 1000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063054, 40.02883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.036515, "LONGITUDE": -75.108096, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 125.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 11264.0, "Total Transactions": 213.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.108096, 40.036515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-835", "LOCATION_NAME": "Iovine Brothers Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.952988, "LONGITUDE": -75.158802, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 12415.0, "Total Transactions": 998.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.72, "MEDIAN_SPEND_PER_CUSTOMER": 17.92 }, "geometry": { "type": "Point", "coordinates": [ -75.158802, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992304, "LONGITUDE": -75.099808, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 77.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3622.0, "Total Transactions": 80.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.42, "MEDIAN_SPEND_PER_CUSTOMER": 19.95 }, "geometry": { "type": "Point", "coordinates": [ -75.099808, 39.992304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087623, "LONGITUDE": -74.965267, "DATE_RANGE_START": 2022, "Total Visits": 1127.0, "Total Visitors": 939.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 11401.0, "Total Transactions": 733.0, "Total Customers": 563.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.01, "MEDIAN_SPEND_PER_CUSTOMER": 16.04 }, "geometry": { "type": "Point", "coordinates": [ -74.965267, 40.087623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079208, "LONGITUDE": -75.02664, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 249.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5684.0, "Total Transactions": 244.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.96, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02664, 40.079208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-9cq", "LOCATION_NAME": "Federal Donuts West", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953537, "LONGITUDE": -75.193139, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 4609.0, "Total Transactions": 310.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.9, "MEDIAN_SPEND_PER_CUSTOMER": 21.44 }, "geometry": { "type": "Point", "coordinates": [ -75.193139, 39.953537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg9-ty9", "LOCATION_NAME": "I Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963033, "LONGITUDE": -75.164167, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 28.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3209.0, "Total Transactions": 179.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.97 }, "geometry": { "type": "Point", "coordinates": [ -75.164167, 39.963033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-qpv", "LOCATION_NAME": "New York Bagel Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97966, "LONGITUDE": -75.268066, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 185.0, "POI_CBG": 421010098011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 21400.0, "Total Transactions": 681.0, "Total Customers": 321.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.52, "MEDIAN_SPEND_PER_CUSTOMER": 46.61 }, "geometry": { "type": "Point", "coordinates": [ -75.268066, 39.97966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2022, "Total Visits": 328.0, "Total Visitors": 150.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 945.0, "Total Spend": 19259.0, "Total Transactions": 181.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "LOCATION_NAME": "Baltimore Pet Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 62.0, "Total Spend": 2478.0, "Total Transactions": 57.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.58, "MEDIAN_SPEND_PER_CUSTOMER": 72.33 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-cnq", "LOCATION_NAME": "Vape O2", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.970583, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 13956.0, "Total Transactions": 479.0, "Total Customers": 164.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.71, "MEDIAN_SPEND_PER_CUSTOMER": 56.56 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.970583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-75z", "LOCATION_NAME": "Cosi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947085, "LONGITUDE": -75.193998, "DATE_RANGE_START": 2022, "Total Visits": 17711.0, "Total Visitors": 9317.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 114.0, "Total Spend": 6488.0, "Total Transactions": 376.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.68, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193998, 39.947085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.063003, "LONGITUDE": -75.237723, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 136.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 37916.0, "Total Transactions": 714.0, "Total Customers": 561.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.28, "MEDIAN_SPEND_PER_CUSTOMER": 47.97 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 40.063003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-qpv", "LOCATION_NAME": "Shalom Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979511, "LONGITUDE": -75.26908, "DATE_RANGE_START": 2022, "Total Visits": 390.0, "Total Visitors": 251.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 178.0, "Total Spend": 1003.0, "Total Transactions": 37.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.74, "MEDIAN_SPEND_PER_CUSTOMER": 60.66 }, "geometry": { "type": "Point", "coordinates": [ -75.26908, 39.979511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "LOCATION_NAME": "Good Day Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2022, "Total Visits": 211.0, "Total Visitors": 183.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3952.0, "Total Transactions": 235.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.83, "MEDIAN_SPEND_PER_CUSTOMER": 33.98 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p85-7wk", "LOCATION_NAME": "Merc Bros Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058617, "LONGITUDE": -75.046078, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 10.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 328.0, "Total Transactions": 21.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.39, "MEDIAN_SPEND_PER_CUSTOMER": 41.15 }, "geometry": { "type": "Point", "coordinates": [ -75.046078, 40.058617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dw2-btv", "LOCATION_NAME": "Uptown Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960941, "LONGITUDE": -75.241259, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 12.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 509.0, "Total Spend": 8092.0, "Total Transactions": 524.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.2, "MEDIAN_SPEND_PER_CUSTOMER": 42.83 }, "geometry": { "type": "Point", "coordinates": [ -75.241259, 39.960941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "LOCATION_NAME": "Lazos Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 14.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5166.0, "Total Transactions": 280.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.44, "MEDIAN_SPEND_PER_CUSTOMER": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 57.0, "Total Spend": 30076.0, "Total Transactions": 2218.0, "Total Customers": 617.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 33.16 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "LOCATION_NAME": "Sumo Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1071.0, "Total Transactions": 47.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 38.51 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "LOCATION_NAME": "Makkah Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2022, "Total Visits": 265.0, "Total Visitors": 183.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 14.0, "Total Spend": 27475.0, "Total Transactions": 1193.0, "Total Customers": 362.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.78, "MEDIAN_SPEND_PER_CUSTOMER": 50.95 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-pmd-skf", "LOCATION_NAME": "Social House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944966, "LONGITUDE": -75.177113, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 54.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4338.0, "Total Transactions": 490.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.27, "MEDIAN_SPEND_PER_CUSTOMER": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177113, 39.944966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-snq", "LOCATION_NAME": "Fado Irish Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948313, "LONGITUDE": -75.166407, "DATE_RANGE_START": 2022, "Total Visits": 1272.0, "Total Visitors": 956.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 31.0, "Total Spend": 6590.0, "Total Transactions": 118.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.72, "MEDIAN_SPEND_PER_CUSTOMER": 41.93 }, "geometry": { "type": "Point", "coordinates": [ -75.166407, 39.948313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "LOCATION_NAME": "Engimono Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 87.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 422.0, "Total Spend": 11114.0, "Total Transactions": 289.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.99, "MEDIAN_SPEND_PER_CUSTOMER": 68.13 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw4-q75", "LOCATION_NAME": "Aloft Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.891128, "LONGITUDE": -75.233821, "DATE_RANGE_START": 2022, "Total Visits": 1110.0, "Total Visitors": 622.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 310.0, "Total Spend": 673.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 193.18, "MEDIAN_SPEND_PER_CUSTOMER": 193.18 }, "geometry": { "type": "Point", "coordinates": [ -75.233821, 39.891128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-5s5", "LOCATION_NAME": "Canopy By Hilton", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951115, "LONGITUDE": -75.159793, "DATE_RANGE_START": 2022, "Total Visits": 2282.0, "Total Visitors": 1479.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 243.0, "Total Spend": 9632.0, "Total Transactions": 24.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 304.9, "MEDIAN_SPEND_PER_CUSTOMER": 602.02 }, "geometry": { "type": "Point", "coordinates": [ -75.159793, 39.951115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-7nq", "LOCATION_NAME": "Yards brewing", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.876036, "LONGITUDE": -75.242976, "DATE_RANGE_START": 2022, "Total Visits": 226042.0, "Total Visitors": 145993.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 1244.0, "Total Transactions": 30.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.8, "MEDIAN_SPEND_PER_CUSTOMER": 81.31 }, "geometry": { "type": "Point", "coordinates": [ -75.242976, 39.876036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "LOCATION_NAME": "City View Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 61.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 62.0, "Total Spend": 48573.0, "Total Transactions": 2359.0, "Total Customers": 895.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-x5z", "LOCATION_NAME": "Essen Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931036, "LONGITUDE": -75.161763, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 277.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 154.0, "Total Spend": 6530.0, "Total Transactions": 429.0, "Total Customers": 166.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.36, "MEDIAN_SPEND_PER_CUSTOMER": 26.17 }, "geometry": { "type": "Point", "coordinates": [ -75.161763, 39.931036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2022, "Total Visits": 530.0, "Total Visitors": 355.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 13021.0, "Total Transactions": 1526.0, "Total Customers": 793.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.21, "MEDIAN_SPEND_PER_CUSTOMER": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "LOCATION_NAME": "New Pizza Villa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 14.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 483.0, "Total Spend": 2132.0, "Total Transactions": 77.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.35, "MEDIAN_SPEND_PER_CUSTOMER": 34.94 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg9-xh5", "LOCATION_NAME": "Coffee Cream & Dreams", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966924, "LONGITUDE": -75.162284, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 16.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 322.0, "Total Transactions": 38.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.01, "MEDIAN_SPEND_PER_CUSTOMER": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.162284, 39.966924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-wzf", "LOCATION_NAME": "Mayfair Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038525, "LONGITUDE": -75.036899, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 297.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.9, "MEDIAN_SPEND_PER_CUSTOMER": 85.15 }, "geometry": { "type": "Point", "coordinates": [ -75.036899, 40.038525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "LOCATION_NAME": "Pizzeria Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 21.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 175.0, "Total Spend": 3524.0, "Total Transactions": 167.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.42, "MEDIAN_SPEND_PER_CUSTOMER": 43.77 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "LOCATION_NAME": "Fiesta Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 33.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4640.0, "Total Transactions": 195.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 37.16 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "LOCATION_NAME": "Fountain Porter", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 44.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 28.0, "Total Spend": 3349.0, "Total Transactions": 106.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.8, "MEDIAN_SPEND_PER_CUSTOMER": 45.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hnq", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952468, "LONGITUDE": -75.173535, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 31.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 992.0, "Total Spend": 3837.0, "Total Transactions": 181.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.73, "MEDIAN_SPEND_PER_CUSTOMER": 29.96 }, "geometry": { "type": "Point", "coordinates": [ -75.173535, 39.952468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.916923, "LONGITUDE": -75.236784, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 106.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 10026.0, "Total Transactions": 209.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.07, "MEDIAN_SPEND_PER_CUSTOMER": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.236784, 39.916923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-5mk", "LOCATION_NAME": "West Elm", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950642, "LONGITUDE": -75.163094, "DATE_RANGE_START": 2022, "Total Visits": 516.0, "Total Visitors": 340.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 182.0, "Total Spend": 3789.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.4, "MEDIAN_SPEND_PER_CUSTOMER": 86.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163094, 39.950642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2022, "Total Visits": 9183.0, "Total Visitors": 5472.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 73.0, "Total Spend": 784.0, "Total Transactions": 28.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.78, "MEDIAN_SPEND_PER_CUSTOMER": 40.89 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "LOCATION_NAME": "Vintage Wine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 218.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 17438.0, "Total Transactions": 326.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.55, "MEDIAN_SPEND_PER_CUSTOMER": 81.32 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952606, "LONGITUDE": -75.16665, "DATE_RANGE_START": 2022, "Total Visits": 1591.0, "Total Visitors": 1361.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5990.0, "Total Transactions": 812.0, "Total Customers": 462.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.16665, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w8v", "LOCATION_NAME": "Pro Image Sports", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087124, "LONGITUDE": -74.961763, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 56.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2114.0, "Total Transactions": 31.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.99, "MEDIAN_SPEND_PER_CUSTOMER": 57.82 }, "geometry": { "type": "Point", "coordinates": [ -74.961763, 40.087124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 115.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 478.0, "Total Transactions": 19.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.54, "MEDIAN_SPEND_PER_CUSTOMER": 37.21 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012072, "LONGITUDE": -75.115243, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 199.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 674.0, "Total Transactions": 23.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.65, "MEDIAN_SPEND_PER_CUSTOMER": 25.18 }, "geometry": { "type": "Point", "coordinates": [ -75.115243, 40.012072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2022, "Total Visits": 4636.0, "Total Visitors": 1364.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 51.0, "Total Spend": 517.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.6, "MEDIAN_SPEND_PER_CUSTOMER": 13.73 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8h-789", "LOCATION_NAME": "Palm Tree Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029254, "LONGITUDE": -75.03641, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 37.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6266.0, "Total Transactions": 455.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.08, "MEDIAN_SPEND_PER_CUSTOMER": 29.8 }, "geometry": { "type": "Point", "coordinates": [ -75.03641, 40.029254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "LOCATION_NAME": "Mariposa Food Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947933, "LONGITUDE": -75.220657, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 42.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 105804.0, "Total Transactions": 3221.0, "Total Customers": 770.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.23, "MEDIAN_SPEND_PER_CUSTOMER": 73.12 }, "geometry": { "type": "Point", "coordinates": [ -75.220657, 39.947933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-8n5", "LOCATION_NAME": "Federal Donuts North", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964219, "LONGITUDE": -75.14909, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 101.0, "POI_CBG": 421010131001.0, "MEDIAN_DWELL": 314.0, "Total Spend": 6814.0, "Total Transactions": 495.0, "Total Customers": 350.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.94, "MEDIAN_SPEND_PER_CUSTOMER": 14.28 }, "geometry": { "type": "Point", "coordinates": [ -75.14909, 39.964219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050984, "LONGITUDE": -75.010119, "DATE_RANGE_START": 2022, "Total Visits": 1408.0, "Total Visitors": 681.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7123.0, "Total Transactions": 882.0, "Total Customers": 383.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.65, "MEDIAN_SPEND_PER_CUSTOMER": 11.19 }, "geometry": { "type": "Point", "coordinates": [ -75.010119, 40.050984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pgm-68v", "LOCATION_NAME": "The Black Squirrel Pub and Haunt", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.009228, "LONGITUDE": -75.193913, "DATE_RANGE_START": 2022, "Total Visits": 216.0, "Total Visitors": 152.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 71.0, "Total Spend": 15574.0, "Total Transactions": 200.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.13, "MEDIAN_SPEND_PER_CUSTOMER": 126.65 }, "geometry": { "type": "Point", "coordinates": [ -75.193913, 40.009228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "LOCATION_NAME": "Sang Kee Peking Duck House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2022, "Total Visits": 312.0, "Total Visitors": 287.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 24661.0, "Total Transactions": 589.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.88 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-4vz", "LOCATION_NAME": "The Fresh Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084712, "LONGITUDE": -74.970547, "DATE_RANGE_START": 2022, "Total Visits": 443.0, "Total Visitors": 183.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 61.0, "Total Spend": 340.0, "Total Transactions": 14.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.13, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970547, 40.084712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 117.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 120.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.36, "MEDIAN_SPEND_PER_CUSTOMER": 11.36 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgf-dvz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958338, "LONGITUDE": -75.208218, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 71.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 33934.0, "Total Transactions": 202.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.59, "MEDIAN_SPEND_PER_CUSTOMER": 18.66 }, "geometry": { "type": "Point", "coordinates": [ -75.208218, 39.958338 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "LOCATION_NAME": "Union Tap House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 57.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 35.0, "Total Spend": 3531.0, "Total Transactions": 52.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.64, "MEDIAN_SPEND_PER_CUSTOMER": 95.28 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2022, "Total Visits": 451.0, "Total Visitors": 354.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3741.0, "Total Transactions": 420.0, "Total Customers": 303.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.85, "MEDIAN_SPEND_PER_CUSTOMER": 9.05 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "LOCATION_NAME": "Taco Loco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": null, "Total Spend": 277.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pnx-cbk", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97443, "LONGITUDE": -75.13265, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 198.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.51 }, "geometry": { "type": "Point", "coordinates": [ -75.13265, 39.97443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "LOCATION_NAME": "Bad Brother", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 60.0, "Total Spend": 11287.0, "Total Transactions": 183.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.9, "MEDIAN_SPEND_PER_CUSTOMER": 127.12 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm4-d35", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922429, "LONGITUDE": -75.169649, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1476.0, "Total Transactions": 87.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.89, "MEDIAN_SPEND_PER_CUSTOMER": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169649, 39.922429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pp4-rp9", "LOCATION_NAME": "Garrisons Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.978687, "LONGITUDE": -75.126187, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010160002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 336.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.14, "MEDIAN_SPEND_PER_CUSTOMER": 9.34 }, "geometry": { "type": "Point", "coordinates": [ -75.126187, 39.978687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvy-y9z", "LOCATION_NAME": "The Herb Nook", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953326, "LONGITUDE": -75.217424, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 495.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.01, "MEDIAN_SPEND_PER_CUSTOMER": 142.01 }, "geometry": { "type": "Point", "coordinates": [ -75.217424, 39.953326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zvf", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.997217, "LONGITUDE": -75.154386, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 474.0, "Total Transactions": 14.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.28, "MEDIAN_SPEND_PER_CUSTOMER": 33.23 }, "geometry": { "type": "Point", "coordinates": [ -75.154386, 39.997217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pj2-7dv", "LOCATION_NAME": "J & R Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996146, "LONGITUDE": -75.119382, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 30.0, "POI_CBG": 421010177011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 95.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.119382, 39.996146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-575", "LOCATION_NAME": "Aldo's Pizzarama", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.108537, "LONGITUDE": -75.025505, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 38.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 301.0, "Total Spend": 2641.0, "Total Transactions": 164.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.25, "MEDIAN_SPEND_PER_CUSTOMER": 32.29 }, "geometry": { "type": "Point", "coordinates": [ -75.025505, 40.108537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-47q", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.921468, "LONGITUDE": -75.184708, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 87.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 4158.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 189.69, "MEDIAN_SPEND_PER_CUSTOMER": 1098.57 }, "geometry": { "type": "Point", "coordinates": [ -75.184708, 39.921468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-8jv", "LOCATION_NAME": "Newmans Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038927, "LONGITUDE": -75.177558, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": null, "Total Spend": 1224.0, "Total Transactions": 54.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.92, "MEDIAN_SPEND_PER_CUSTOMER": 53.17 }, "geometry": { "type": "Point", "coordinates": [ -75.177558, 40.038927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2022, "Total Visits": 301.0, "Total Visitors": 153.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 215.0, "Total Spend": 12377.0, "Total Transactions": 535.0, "Total Customers": 335.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.32, "MEDIAN_SPEND_PER_CUSTOMER": 20.91 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 43486.0, "Total Transactions": 2624.0, "Total Customers": 1493.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.7, "MEDIAN_SPEND_PER_CUSTOMER": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-ks5", "LOCATION_NAME": "Oxford Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999792, "LONGITUDE": -75.129213, "DATE_RANGE_START": 2022, "Total Visits": 493.0, "Total Visitors": 172.0, "POI_CBG": 421010195013.0, "MEDIAN_DWELL": 1042.0, "Total Spend": 9438.0, "Total Transactions": 206.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.7, "MEDIAN_SPEND_PER_CUSTOMER": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129213, 39.999792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.9542, "LONGITUDE": -75.225712, "DATE_RANGE_START": 2022, "Total Visits": 904.0, "Total Visitors": 613.0, "POI_CBG": 421010085003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1166.0, "Total Transactions": 28.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.83, "MEDIAN_SPEND_PER_CUSTOMER": 27.83 }, "geometry": { "type": "Point", "coordinates": [ -75.225712, 39.9542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "LOCATION_NAME": "US Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 96.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1237.0, "Total Transactions": 52.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pgj-pgk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992811, "LONGITUDE": -75.147675, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 106.0, "POI_CBG": 421010164003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 508.0, "Total Transactions": 77.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.4, "MEDIAN_SPEND_PER_CUSTOMER": 6.32 }, "geometry": { "type": "Point", "coordinates": [ -75.147675, 39.992811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pp5-sqz", "LOCATION_NAME": "Pizza Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998117, "LONGITUDE": -75.129195, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 87.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 331.0, "Total Transactions": 23.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.04, "MEDIAN_SPEND_PER_CUSTOMER": 7.08 }, "geometry": { "type": "Point", "coordinates": [ -75.129195, 39.998117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "LOCATION_NAME": "Finn Mccools Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2022, "Total Visits": 542.0, "Total Visitors": 498.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 17592.0, "Total Transactions": 432.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.6, "MEDIAN_SPEND_PER_CUSTOMER": 73.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "LOCATION_NAME": "Paisas Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2022, "Total Visits": 2352.0, "Total Visitors": 1584.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 857.0, "Total Transactions": 44.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.16, "MEDIAN_SPEND_PER_CUSTOMER": 51.68 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-wc5", "LOCATION_NAME": "Craft Hall", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962369, "LONGITUDE": -75.135937, "DATE_RANGE_START": 2022, "Total Visits": 411.0, "Total Visitors": 319.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 4275.0, "Total Transactions": 45.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.08, "MEDIAN_SPEND_PER_CUSTOMER": 77.13 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.962369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "LOCATION_NAME": "Vic Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2022, "Total Visits": 261.0, "Total Visitors": 188.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 101.0, "Total Spend": 14686.0, "Total Transactions": 361.0, "Total Customers": 181.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.43, "MEDIAN_SPEND_PER_CUSTOMER": 62.65 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 185.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5840.0, "Total Transactions": 298.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.87, "MEDIAN_SPEND_PER_CUSTOMER": 21.42 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3qz", "LOCATION_NAME": "Grand China Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085175, "LONGITUDE": -74.967524, "DATE_RANGE_START": 2022, "Total Visits": 970.0, "Total Visitors": 781.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 43.0, "Total Spend": 32284.0, "Total Transactions": 573.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.57, "MEDIAN_SPEND_PER_CUSTOMER": 95.39 }, "geometry": { "type": "Point", "coordinates": [ -74.967524, 40.085175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 275.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4783.0, "Total Transactions": 310.0, "Total Customers": 202.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.27, "MEDIAN_SPEND_PER_CUSTOMER": 15.27 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-d35", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922445, "LONGITUDE": -75.169848, "DATE_RANGE_START": 2022, "Total Visits": 300.0, "Total Visitors": 226.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7357.0, "Total Transactions": 774.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.08, "MEDIAN_SPEND_PER_CUSTOMER": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169848, 39.922445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033486, "LONGITUDE": -75.130876, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 148.0, "POI_CBG": 421010274013.0, "MEDIAN_DWELL": 233.0, "Total Spend": 7080.0, "Total Transactions": 840.0, "Total Customers": 390.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.24 }, "geometry": { "type": "Point", "coordinates": [ -75.130876, 40.033486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006521, "LONGITUDE": -75.100325, "DATE_RANGE_START": 2022, "Total Visits": 777.0, "Total Visitors": 530.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1085.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.83, "MEDIAN_SPEND_PER_CUSTOMER": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.100325, 40.006521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgk-2rk", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.994689, "LONGITUDE": -75.158268, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 68.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 93.0, "Total Spend": 324.0, "Total Transactions": 31.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.93, "MEDIAN_SPEND_PER_CUSTOMER": 12.74 }, "geometry": { "type": "Point", "coordinates": [ -75.158268, 39.994689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951608, "LONGITUDE": -75.168943, "DATE_RANGE_START": 2022, "Total Visits": 1441.0, "Total Visitors": 1233.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 603.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.99, "MEDIAN_SPEND_PER_CUSTOMER": 36.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168943, 39.951608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp4-r49", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.975637, "LONGITUDE": -75.119836, "DATE_RANGE_START": 2022, "Total Visits": 1824.0, "Total Visitors": 889.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3314.0, "Total Transactions": 61.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.38, "MEDIAN_SPEND_PER_CUSTOMER": 62.49 }, "geometry": { "type": "Point", "coordinates": [ -75.119836, 39.975637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-kpv", "LOCATION_NAME": "Foreign Bazaar", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.952092, "LONGITUDE": -75.172676, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 70.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1573.0, "Total Transactions": 57.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.7, "MEDIAN_SPEND_PER_CUSTOMER": 29.68 }, "geometry": { "type": "Point", "coordinates": [ -75.172676, 39.952092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 174.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 24500.0, "Total Transactions": 443.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.68, "MEDIAN_SPEND_PER_CUSTOMER": 105.62 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5fz", "LOCATION_NAME": "Van Leeuwen Artisan Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94999, "LONGITUDE": -75.161731, "DATE_RANGE_START": 2022, "Total Visits": 822.0, "Total Visitors": 653.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 58.0, "Total Spend": 4496.0, "Total Transactions": 345.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.18, "MEDIAN_SPEND_PER_CUSTOMER": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161731, 39.94999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2022, "Total Visits": 246.0, "Total Visitors": 211.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 12997.0, "Total Transactions": 986.0, "Total Customers": 716.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.37, "MEDIAN_SPEND_PER_CUSTOMER": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017737, "LONGITUDE": -75.148813, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 101.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4086.0, "Total Transactions": 246.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.148813, 40.017737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2022, "Total Visits": 319.0, "Total Visitors": 221.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5298.0, "Total Transactions": 735.0, "Total Customers": 375.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-snq", "LOCATION_NAME": "Motel 6", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 40.103426, "LONGITUDE": -75.005145, "DATE_RANGE_START": 2022, "Total Visits": 333.0, "Total Visitors": 216.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 167.0, "Total Spend": 2213.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 151.11, "MEDIAN_SPEND_PER_CUSTOMER": 151.11 }, "geometry": { "type": "Point", "coordinates": [ -75.005145, 40.103426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "LOCATION_NAME": "Time Out Sports Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 57.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 72.0, "Total Spend": 2832.0, "Total Transactions": 84.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.5, "MEDIAN_SPEND_PER_CUSTOMER": 64.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 172.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 16105.0, "Total Transactions": 620.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.42, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2022, "Total Visits": 993.0, "Total Visitors": 627.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 16775.0, "Total Transactions": 434.0, "Total Customers": 211.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.48, "MEDIAN_SPEND_PER_CUSTOMER": 63.94 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "LOCATION_NAME": "Dancewear On Broad LLC", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 42.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 185.0, "Total Spend": 2428.0, "Total Transactions": 49.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.24, "MEDIAN_SPEND_PER_CUSTOMER": 58.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pm9-wzf", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951742, "LONGITUDE": -75.153889, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 49.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 479.0, "Total Spend": 20.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.68, "MEDIAN_SPEND_PER_CUSTOMER": 5.68 }, "geometry": { "type": "Point", "coordinates": [ -75.153889, 39.951742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "LOCATION_NAME": "Blick Art Materials", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 94.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 242.0, "Total Spend": 544.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 156.18, "MEDIAN_SPEND_PER_CUSTOMER": 156.18 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-mzf", "LOCATION_NAME": "4 Seasons", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003248, "LONGITUDE": -75.124064, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 26.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 7921.0, "Total Transactions": 308.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.19, "MEDIAN_SPEND_PER_CUSTOMER": 19.86 }, "geometry": { "type": "Point", "coordinates": [ -75.124064, 40.003248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6hq", "LOCATION_NAME": "Nurses Uniform Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950135, "LONGITUDE": -75.158882, "DATE_RANGE_START": 2022, "Total Visits": 6244.0, "Total Visitors": 3777.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 226.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158882, 39.950135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "LOCATION_NAME": "Kei Sushi Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 34.0, "Total Spend": 8457.0, "Total Transactions": 183.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.2, "MEDIAN_SPEND_PER_CUSTOMER": 86.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2022, "Total Visits": 317.0, "Total Visitors": 226.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1033.0, "Total Transactions": 89.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.35, "MEDIAN_SPEND_PER_CUSTOMER": 9.34 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "LOCATION_NAME": "El Merkury", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 7747.0, "Total Transactions": 502.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.12, "MEDIAN_SPEND_PER_CUSTOMER": 27.76 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-phc-xbk", "LOCATION_NAME": "H & R Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.991073, "LONGITUDE": -75.226902, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 54.0, "POI_CBG": 421010119004.0, "MEDIAN_DWELL": 524.0, "Total Spend": 171.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.25, "MEDIAN_SPEND_PER_CUSTOMER": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226902, 39.991073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-vmk", "LOCATION_NAME": "Maxi's Pizza Subs and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982213, "LONGITUDE": -75.15602, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1462.0, "Total Transactions": 101.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.94, "MEDIAN_SPEND_PER_CUSTOMER": 19.34 }, "geometry": { "type": "Point", "coordinates": [ -75.15602, 39.982213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-t5f", "LOCATION_NAME": "Sum Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965929, "LONGITUDE": -75.160347, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 662.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 94.98, "MEDIAN_SPEND_PER_CUSTOMER": 189.95 }, "geometry": { "type": "Point", "coordinates": [ -75.160347, 39.965929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kcq", "LOCATION_NAME": "Almaz Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95075, "LONGITUDE": -75.173912, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 35.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 134.0, "Total Spend": 2334.0, "Total Transactions": 91.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.17, "MEDIAN_SPEND_PER_CUSTOMER": 49.88 }, "geometry": { "type": "Point", "coordinates": [ -75.173912, 39.95075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmb-3nq", "LOCATION_NAME": "Headhouse Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.941022, "LONGITUDE": -75.145387, "DATE_RANGE_START": 2022, "Total Visits": 368.0, "Total Visitors": 260.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 112.0, "Total Spend": 132.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.89, "MEDIAN_SPEND_PER_CUSTOMER": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.145387, 39.941022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.945629, "LONGITUDE": -75.237997, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 150.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8400.0, "Total Transactions": 176.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.237997, 39.945629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2022, "Total Visits": 1289.0, "Total Visitors": 793.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 902.0, "Total Transactions": 33.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.33, "MEDIAN_SPEND_PER_CUSTOMER": 28.52 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pm4-ckf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.924823, "LONGITUDE": -75.17424, "DATE_RANGE_START": 2022, "Total Visits": 932.0, "Total Visitors": 638.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 742.0, "Total Transactions": 24.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.43, "MEDIAN_SPEND_PER_CUSTOMER": 53.11 }, "geometry": { "type": "Point", "coordinates": [ -75.17424, 39.924823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-j9z", "LOCATION_NAME": "Rittenhouse Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950367, "LONGITUDE": -75.17049, "DATE_RANGE_START": 2022, "Total Visits": 2801.0, "Total Visitors": 2228.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 605.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.59, "MEDIAN_SPEND_PER_CUSTOMER": 47.18 }, "geometry": { "type": "Point", "coordinates": [ -75.17049, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.080322, "LONGITUDE": -75.171913, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 150.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3620.0, "Total Transactions": 157.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.27, "MEDIAN_SPEND_PER_CUSTOMER": 14.98 }, "geometry": { "type": "Point", "coordinates": [ -75.171913, 40.080322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.95427, "LONGITUDE": -75.201494, "DATE_RANGE_START": 2022, "Total Visits": 4103.0, "Total Visitors": 2592.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 33.0, "Total Spend": 21848.0, "Total Transactions": 1512.0, "Total Customers": 840.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.34, "MEDIAN_SPEND_PER_CUSTOMER": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.201494, 39.95427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-qj9", "LOCATION_NAME": "Erietronics", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.00772, "LONGITUDE": -75.141248, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 84.0, "POI_CBG": 421010199002.0, "MEDIAN_DWELL": 238.0, "Total Spend": 3318.0, "Total Transactions": 19.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141248, 40.00772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-pmf-qpv", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.94287, "LONGITUDE": -75.165374, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 159.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1630.0, "Total Transactions": 35.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 47.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165374, 39.94287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-2hq", "LOCATION_NAME": "Venus Video", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.917066, "LONGITUDE": -75.216791, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 159.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5691.0, "Total Transactions": 138.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.1, "MEDIAN_SPEND_PER_CUSTOMER": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216791, 39.917066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-kj9", "LOCATION_NAME": "The Pleasure Chest", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950864, "LONGITUDE": -75.175215, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 54.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2750.0, "Total Transactions": 54.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.01, "MEDIAN_SPEND_PER_CUSTOMER": 84.02 }, "geometry": { "type": "Point", "coordinates": [ -75.175215, 39.950864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "LOCATION_NAME": "Sam's Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093002, "LONGITUDE": -74.958736, "DATE_RANGE_START": 2022, "Total Visits": 6261.0, "Total Visitors": 3861.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 328463.0, "Total Transactions": 4160.0, "Total Customers": 1927.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.77, "MEDIAN_SPEND_PER_CUSTOMER": 93.14 }, "geometry": { "type": "Point", "coordinates": [ -74.958736, 40.093002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm3-vzz", "LOCATION_NAME": "A Novel Idea", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.928207, "LONGITUDE": -75.165695, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 336.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 342.0, "Total Transactions": 14.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165695, 39.928207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-grk", "LOCATION_NAME": "Bargain world", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.941099, "LONGITUDE": -75.21263, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 120.0, "POI_CBG": 421010074002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 131.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.85, "MEDIAN_SPEND_PER_CUSTOMER": 37.69 }, "geometry": { "type": "Point", "coordinates": [ -75.21263, 39.941099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "LOCATION_NAME": "J&J Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.925365, "LONGITUDE": -75.157449, "DATE_RANGE_START": 2022, "Total Visits": 343.0, "Total Visitors": 155.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 200.0, "Total Spend": 4511.0, "Total Transactions": 348.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.77, "MEDIAN_SPEND_PER_CUSTOMER": 31.94 }, "geometry": { "type": "Point", "coordinates": [ -75.157449, 39.925365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2022, "Total Visits": 300.0, "Total Visitors": 268.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10059.0, "Total Transactions": 730.0, "Total Customers": 563.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.92, "MEDIAN_SPEND_PER_CUSTOMER": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2022, "Total Visits": 389.0, "Total Visitors": 303.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7773.0, "Total Transactions": 563.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.13, "MEDIAN_SPEND_PER_CUSTOMER": 15.62 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978087, "LONGITUDE": -75.11955, "DATE_RANGE_START": 2022, "Total Visits": 1221.0, "Total Visitors": 629.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10426.0, "Total Transactions": 1244.0, "Total Customers": 666.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.42, "MEDIAN_SPEND_PER_CUSTOMER": 9.96 }, "geometry": { "type": "Point", "coordinates": [ -75.11955, 39.978087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-7yv", "LOCATION_NAME": "Old City Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953757, "LONGITUDE": -75.158885, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 35627.0, "Total Transactions": 4040.0, "Total Customers": 1286.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.85, "MEDIAN_SPEND_PER_CUSTOMER": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.158885, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.93927, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 305.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 32746.0, "Total Transactions": 1657.0, "Total Customers": 812.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 20.67 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.93927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pj3-wff", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.024012, "LONGITUDE": -75.148537, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 78.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7056.0, "Total Transactions": 333.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.64, "MEDIAN_SPEND_PER_CUSTOMER": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.148537, 40.024012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.923624, "LONGITUDE": -75.139475, "DATE_RANGE_START": 2022, "Total Visits": 401.0, "Total Visitors": 329.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 11930.0, "Total Transactions": 188.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.99, "MEDIAN_SPEND_PER_CUSTOMER": 56.99 }, "geometry": { "type": "Point", "coordinates": [ -75.139475, 39.923624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "LOCATION_NAME": "Hair Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2022, "Total Visits": 1854.0, "Total Visitors": 1120.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7409.0, "Total Transactions": 160.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.87, "MEDIAN_SPEND_PER_CUSTOMER": 41.52 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "LOCATION_NAME": "Walmart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.083037, "LONGITUDE": -75.022233, "DATE_RANGE_START": 2022, "Total Visits": 11793.0, "Total Visitors": 7707.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 333793.0, "Total Transactions": 5883.0, "Total Customers": 3434.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.09, "MEDIAN_SPEND_PER_CUSTOMER": 55.02 }, "geometry": { "type": "Point", "coordinates": [ -75.022233, 40.083037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm4-ckf", "LOCATION_NAME": "A Plus Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924818, "LONGITUDE": -75.174415, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 108.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 2.0, "Total Spend": 123.0, "Total Transactions": 37.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.48, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174415, 39.924818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjb-6p9", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046633, "LONGITUDE": -75.14228, "DATE_RANGE_START": 2022, "Total Visits": 382.0, "Total Visitors": 267.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 69.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.56, "MEDIAN_SPEND_PER_CUSTOMER": 19.74 }, "geometry": { "type": "Point", "coordinates": [ -75.14228, 40.046633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p7z-x89", "LOCATION_NAME": "Don Pedro Meats and Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.035069, "LONGITUDE": -75.082126, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 317.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 15455.0, "Total Transactions": 282.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.66, "MEDIAN_SPEND_PER_CUSTOMER": 65.86 }, "geometry": { "type": "Point", "coordinates": [ -75.082126, 40.035069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.931453, "LONGITUDE": -75.160518, "DATE_RANGE_START": 2022, "Total Visits": 676.0, "Total Visitors": 399.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 8.0, "Total Spend": 22773.0, "Total Transactions": 1260.0, "Total Customers": 699.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.07, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160518, 39.931453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.974361, "LONGITUDE": -75.199089, "DATE_RANGE_START": 2022, "Total Visits": 1545.0, "Total Visitors": 1265.0, "POI_CBG": 421010110001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2235.0, "Total Transactions": 54.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199089, 39.974361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjb-6ff", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.04808, "LONGITUDE": -75.143086, "DATE_RANGE_START": 2022, "Total Visits": 991.0, "Total Visitors": 718.0, "POI_CBG": 421010277001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 344.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.25, "MEDIAN_SPEND_PER_CUSTOMER": 56.25 }, "geometry": { "type": "Point", "coordinates": [ -75.143086, 40.04808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-2kz", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.074571, "LONGITUDE": -75.032796, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 178.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2032.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.13, "MEDIAN_SPEND_PER_CUSTOMER": 83.13 }, "geometry": { "type": "Point", "coordinates": [ -75.032796, 40.074571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "LOCATION_NAME": "Journeys", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 105.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3905.0, "Total Transactions": 52.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.55, "MEDIAN_SPEND_PER_CUSTOMER": 62.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "LOCATION_NAME": "Zumiez", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 139.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 10415.0, "Total Transactions": 160.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.43, "MEDIAN_SPEND_PER_CUSTOMER": 57.93 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.055974, "LONGITUDE": -75.005102, "DATE_RANGE_START": 2022, "Total Visits": 329.0, "Total Visitors": 253.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 5.0, "Total Spend": 593.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.91, "MEDIAN_SPEND_PER_CUSTOMER": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.005102, 40.055974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kj9", "LOCATION_NAME": "Fleur De Lis Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950913, "LONGITUDE": -75.176137, "DATE_RANGE_START": 2022, "Total Visits": 2848.0, "Total Visitors": 2195.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1670.0, "Total Transactions": 26.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.0, "MEDIAN_SPEND_PER_CUSTOMER": 92.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176137, 39.950913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgk-z9f", "LOCATION_NAME": "Beauty & Fashion City", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999963, "LONGITUDE": -75.209335, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010122041.0, "MEDIAN_DWELL": null, "Total Spend": 308.0, "Total Transactions": 26.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.209335, 39.999963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "LOCATION_NAME": "Reggae Reggae Vibes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010144003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1971.0, "Total Transactions": 138.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.82, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.966061, "LONGITUDE": -75.233588, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 101.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 16291.0, "Total Transactions": 376.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.233588, 39.966061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.990666, "LONGITUDE": -75.154886, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 85.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13450.0, "Total Transactions": 319.0, "Total Customers": 211.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.154886, 39.990666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "LOCATION_NAME": "South Square Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2022, "Total Visits": 321.0, "Total Visitors": 176.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 8.0, "Total Spend": 92387.0, "Total Transactions": 3629.0, "Total Customers": 948.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.97, "MEDIAN_SPEND_PER_CUSTOMER": 51.32 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "LOCATION_NAME": "Super Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 14.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 268.0, "Total Spend": 2486.0, "Total Transactions": 91.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.46, "MEDIAN_SPEND_PER_CUSTOMER": 46.04 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "LOCATION_NAME": "Nova Star Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.969977, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2627.0, "Total Transactions": 138.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.72 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926446, "LONGITUDE": -75.145402, "DATE_RANGE_START": 2022, "Total Visits": 902.0, "Total Visitors": 699.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 72127.0, "Total Transactions": 5720.0, "Total Customers": 3089.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.35, "MEDIAN_SPEND_PER_CUSTOMER": 13.81 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@63s-dvy-mzf", "LOCATION_NAME": "University Square Farmers Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953747, "LONGITUDE": -75.198512, "DATE_RANGE_START": 2022, "Total Visits": 4399.0, "Total Visitors": 1902.0, "POI_CBG": 421010088011.0, "MEDIAN_DWELL": 52.0, "Total Spend": 627.0, "Total Transactions": 31.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198512, 39.953747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-f2k", "LOCATION_NAME": "J J Family Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.964773, "LONGITUDE": -75.223375, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 23.0, "POI_CBG": 421010103002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2868.0, "Total Transactions": 172.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 22.25 }, "geometry": { "type": "Point", "coordinates": [ -75.223375, 39.964773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnt-tgk", "LOCATION_NAME": "Hinge Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979226, "LONGITUDE": -75.112172, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 23.0, "POI_CBG": 421010180011.0, "MEDIAN_DWELL": 409.0, "Total Spend": 3280.0, "Total Transactions": 96.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 83.16 }, "geometry": { "type": "Point", "coordinates": [ -75.112172, 39.979226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23h@628-pmf-sqz", "LOCATION_NAME": "LUSH", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949954, "LONGITUDE": -75.167065, "DATE_RANGE_START": 2022, "Total Visits": 247.0, "Total Visitors": 211.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 13800.0, "Total Transactions": 369.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.43, "MEDIAN_SPEND_PER_CUSTOMER": 30.69 }, "geometry": { "type": "Point", "coordinates": [ -75.167065, 39.949954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kpv", "LOCATION_NAME": "Citi Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.006332, "LONGITUDE": -75.091282, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 108.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 33754.0, "Total Transactions": 1218.0, "Total Customers": 352.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.5, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091282, 40.006332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg3-v4v", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.039046, "LONGITUDE": -75.170704, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 35.0, "POI_CBG": 421010247005.0, "MEDIAN_DWELL": 56.0, "Total Spend": 2821.0, "Total Transactions": 31.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.61, "MEDIAN_SPEND_PER_CUSTOMER": 105.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170704, 40.039046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "LOCATION_NAME": "Old English Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 35.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 237.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.91, "MEDIAN_SPEND_PER_CUSTOMER": 61.82 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-5cq", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950795, "LONGITUDE": -75.160907, "DATE_RANGE_START": 2022, "Total Visits": 524.0, "Total Visitors": 479.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3089.0, "Total Transactions": 37.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160907, 39.950795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmf-j35", "LOCATION_NAME": "Benjamin Lovell Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.95135, "LONGITUDE": -75.169937, "DATE_RANGE_START": 2022, "Total Visits": 1946.0, "Total Visitors": 1375.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 230.0, "Total Spend": 514.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 147.45, "MEDIAN_SPEND_PER_CUSTOMER": 147.45 }, "geometry": { "type": "Point", "coordinates": [ -75.169937, 39.95135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2022, "Total Visits": 871.0, "Total Visitors": 627.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 22.0, "Total Spend": 16444.0, "Total Transactions": 336.0, "Total Customers": 254.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.97, "MEDIAN_SPEND_PER_CUSTOMER": 44.46 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "LOCATION_NAME": "Scrub Pro", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2022, "Total Visits": 1941.0, "Total Visitors": 1326.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 18908.0, "Total Transactions": 301.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.18, "MEDIAN_SPEND_PER_CUSTOMER": 105.85 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-phy-rc5", "LOCATION_NAME": "TABU Hookah Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.02058, "LONGITUDE": -75.133817, "DATE_RANGE_START": 2022, "Total Visits": 486.0, "Total Visitors": 329.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 64.0, "Total Spend": 80076.0, "Total Transactions": 2641.0, "Total Customers": 793.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.6, "MEDIAN_SPEND_PER_CUSTOMER": 65.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133817, 40.02058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@63s-dvy-pn5", "LOCATION_NAME": "Hatch & Coop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954694, "LONGITUDE": -75.202176, "DATE_RANGE_START": 2022, "Total Visits": 537.0, "Total Visitors": 392.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 25.0, "Total Spend": 4107.0, "Total Transactions": 253.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 32.14 }, "geometry": { "type": "Point", "coordinates": [ -75.202176, 39.954694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-68v", "LOCATION_NAME": "Strangelove's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948065, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2022, "Total Visits": 1296.0, "Total Visitors": 876.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 138.0, "Total Spend": 2569.0, "Total Transactions": 38.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.3, "MEDIAN_SPEND_PER_CUSTOMER": 79.12 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.948065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955756, "LONGITUDE": -75.201691, "DATE_RANGE_START": 2022, "Total Visits": 2192.0, "Total Visitors": 1108.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 256.0, "Total Spend": 10053.0, "Total Transactions": 200.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.82, "MEDIAN_SPEND_PER_CUSTOMER": 88.3 }, "geometry": { "type": "Point", "coordinates": [ -75.201691, 39.955756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "LOCATION_NAME": "Trio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968734, "LONGITUDE": -75.180754, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 108.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4112.0, "Total Transactions": 275.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 38.12 }, "geometry": { "type": "Point", "coordinates": [ -75.180754, 39.968734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj9-4d9", "LOCATION_NAME": "Breakfast Time", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04107, "LONGITUDE": -75.144758, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 59.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 2276.0, "Total Transactions": 150.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.26, "MEDIAN_SPEND_PER_CUSTOMER": 26.52 }, "geometry": { "type": "Point", "coordinates": [ -75.144758, 40.04107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "LOCATION_NAME": "Le Meridien", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2022, "Total Visits": 1124.0, "Total Visitors": 634.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 328.0, "Total Spend": 35531.0, "Total Transactions": 127.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 173.39, "MEDIAN_SPEND_PER_CUSTOMER": 266.48 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-223@628-pnx-2hq", "LOCATION_NAME": "CARQUEST Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.970181, "LONGITUDE": -75.143474, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 77.0, "POI_CBG": 421010144001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 612.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 175.66, "MEDIAN_SPEND_PER_CUSTOMER": 175.66 }, "geometry": { "type": "Point", "coordinates": [ -75.143474, 39.970181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pp5-jgk", "LOCATION_NAME": "Tin Can Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.981701, "LONGITUDE": -75.113705, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 110.0, "POI_CBG": 421010180013.0, "MEDIAN_DWELL": 16.0, "Total Spend": 11929.0, "Total Transactions": 272.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.99, "MEDIAN_SPEND_PER_CUSTOMER": 76.64 }, "geometry": { "type": "Point", "coordinates": [ -75.113705, 39.981701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94836, "LONGITUDE": -75.206367, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 31.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5413.0, "Total Transactions": 714.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.36, "MEDIAN_SPEND_PER_CUSTOMER": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.206367, 39.94836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "LOCATION_NAME": "Romeo Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924602, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2022, "Total Visits": 280.0, "Total Visitors": 179.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 36.0, "Total Spend": 2237.0, "Total Transactions": 108.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.82, "MEDIAN_SPEND_PER_CUSTOMER": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.924602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-yqf", "LOCATION_NAME": "Chubby Cattle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954989, "LONGITUDE": -75.156236, "DATE_RANGE_START": 2022, "Total Visits": 5082.0, "Total Visitors": 3631.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 18997.0, "Total Transactions": 162.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.69, "MEDIAN_SPEND_PER_CUSTOMER": 198.14 }, "geometry": { "type": "Point", "coordinates": [ -75.156236, 39.954989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "LOCATION_NAME": "Perkins Restaurant & Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2022, "Total Visits": 460.0, "Total Visitors": 347.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 27.0, "Total Spend": 561.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.64, "MEDIAN_SPEND_PER_CUSTOMER": 35.82 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2022, "Total Visits": 545.0, "Total Visitors": 355.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 547.0, "Total Transactions": 73.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.18, "MEDIAN_SPEND_PER_CUSTOMER": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-td9", "LOCATION_NAME": "Campus Pizza Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983716, "LONGITUDE": -75.149807, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 89.0, "POI_CBG": 421010377002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 47.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.51, "MEDIAN_SPEND_PER_CUSTOMER": 13.51 }, "geometry": { "type": "Point", "coordinates": [ -75.149807, 39.983716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgf-3bk", "LOCATION_NAME": "Old Nelson Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956093, "LONGITUDE": -75.194408, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 124.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3654.0, "Total Transactions": 253.0, "Total Customers": 235.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.13, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194408, 39.956093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-3bk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.916261, "LONGITUDE": -75.173391, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 200.0, "POI_CBG": 421010039022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12248.0, "Total Transactions": 476.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173391, 39.916261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "LOCATION_NAME": "Cafe Square One", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948829, "LONGITUDE": -75.146095, "DATE_RANGE_START": 2022, "Total Visits": 308.0, "Total Visitors": 300.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5921.0, "Total Transactions": 336.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.146095, 39.948829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-qzz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993907, "LONGITUDE": -75.096856, "DATE_RANGE_START": 2022, "Total Visits": 498.0, "Total Visitors": 427.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 91.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.01, "MEDIAN_SPEND_PER_CUSTOMER": 7.01 }, "geometry": { "type": "Point", "coordinates": [ -75.096856, 39.993907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "LOCATION_NAME": "Fiesta Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075222, "LONGITUDE": -75.204582, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 199.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 4408.0, "Total Transactions": 270.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 30.54 }, "geometry": { "type": "Point", "coordinates": [ -75.204582, 40.075222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2022, "Total Visits": 833.0, "Total Visitors": 603.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 16941.0, "Total Transactions": 1106.0, "Total Customers": 721.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.37, "MEDIAN_SPEND_PER_CUSTOMER": 17.43 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 118.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9252.0, "Total Transactions": 1150.0, "Total Customers": 531.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.64, "MEDIAN_SPEND_PER_CUSTOMER": 10.66 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956616, "LONGITUDE": -75.194139, "DATE_RANGE_START": 2022, "Total Visits": 394.0, "Total Visitors": 314.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10593.0, "Total Transactions": 1620.0, "Total Customers": 690.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.28, "MEDIAN_SPEND_PER_CUSTOMER": 8.46 }, "geometry": { "type": "Point", "coordinates": [ -75.194139, 39.956616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2022, "Total Visits": 483.0, "Total Visitors": 375.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17221.0, "Total Transactions": 1129.0, "Total Customers": 723.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.45, "MEDIAN_SPEND_PER_CUSTOMER": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2022, "Total Visits": 650.0, "Total Visitors": 420.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12180.0, "Total Transactions": 1061.0, "Total Customers": 723.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.7, "MEDIAN_SPEND_PER_CUSTOMER": 11.93 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnz-xyv", "LOCATION_NAME": "Moju's Family Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988309, "LONGITUDE": -75.102423, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010379002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1896.0, "Total Transactions": 78.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.85 }, "geometry": { "type": "Point", "coordinates": [ -75.102423, 39.988309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-73q", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947698, "LONGITUDE": -75.193491, "DATE_RANGE_START": 2022, "Total Visits": 693.0, "Total Visitors": 521.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7176.0, "Total Transactions": 855.0, "Total Customers": 592.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.97, "MEDIAN_SPEND_PER_CUSTOMER": 8.97 }, "geometry": { "type": "Point", "coordinates": [ -75.193491, 39.947698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "LOCATION_NAME": "Wadsworth Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 23.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 58.0, "Total Spend": 6372.0, "Total Transactions": 352.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.25, "MEDIAN_SPEND_PER_CUSTOMER": 43.03 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2022, "Total Visits": 1199.0, "Total Visitors": 848.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 109856.0, "Total Transactions": 4387.0, "Total Customers": 2200.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.46 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.095744, "LONGITUDE": -74.976099, "DATE_RANGE_START": 2022, "Total Visits": 1991.0, "Total Visitors": 1274.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 114433.0, "Total Transactions": 5687.0, "Total Customers": 2061.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.63, "MEDIAN_SPEND_PER_CUSTOMER": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -74.976099, 40.095744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jsq", "LOCATION_NAME": "Patient Care Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.936332, "LONGITUDE": -75.157296, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 68.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 122.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.09, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157296, 39.936332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2022, "Total Visits": 939.0, "Total Visitors": 599.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5806.0, "Total Transactions": 251.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 20.04 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-7bk", "LOCATION_NAME": "Golden Kingdom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927769, "LONGITUDE": -75.230845, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 28.0, "POI_CBG": 421010066004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2007.0, "Total Transactions": 31.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.42, "MEDIAN_SPEND_PER_CUSTOMER": 59.38 }, "geometry": { "type": "Point", "coordinates": [ -75.230845, 39.927769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "LOCATION_NAME": "Calvin Klein", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 57.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4783.0, "Total Transactions": 73.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.95, "MEDIAN_SPEND_PER_CUSTOMER": 56.72 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "LOCATION_NAME": "Muslim Fashion", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2022, "Total Visits": 301.0, "Total Visitors": 267.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2317.0, "Total Transactions": 21.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 123.5, "MEDIAN_SPEND_PER_CUSTOMER": 244.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgj-cbk", "LOCATION_NAME": "Columbia Fish", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.9795, "LONGITUDE": -75.162782, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 51.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 91.0, "Total Spend": 310.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.86, "MEDIAN_SPEND_PER_CUSTOMER": 88.86 }, "geometry": { "type": "Point", "coordinates": [ -75.162782, 39.9795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-j7q", "LOCATION_NAME": "Frecon Farms", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950808, "LONGITUDE": -75.171348, "DATE_RANGE_START": 2022, "Total Visits": 4134.0, "Total Visitors": 2798.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 3854.0, "Total Transactions": 251.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.75, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171348, 39.950808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940142, "LONGITUDE": -75.151529, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 38693.0, "Total Transactions": 2153.0, "Total Customers": 997.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.82, "MEDIAN_SPEND_PER_CUSTOMER": 21.61 }, "geometry": { "type": "Point", "coordinates": [ -75.151529, 39.940142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 101.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 30046.0, "Total Transactions": 1350.0, "Total Customers": 688.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.86, "MEDIAN_SPEND_PER_CUSTOMER": 28.35 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.005166, "LONGITUDE": -75.108882, "DATE_RANGE_START": 2022, "Total Visits": 1737.0, "Total Visitors": 1028.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6797.0, "Total Transactions": 206.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.79 }, "geometry": { "type": "Point", "coordinates": [ -75.108882, 40.005166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2022, "Total Visits": 2214.0, "Total Visitors": 1742.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 66032.0, "Total Transactions": 2148.0, "Total Customers": 1596.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.79, "MEDIAN_SPEND_PER_CUSTOMER": 35.06 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@63s-dvw-mrk", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.959737, "LONGITUDE": -75.225178, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 66.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7921.0, "Total Transactions": 70.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225178, 39.959737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-3qz", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.017784, "LONGITUDE": -75.148619, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 91.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4024.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.69, "MEDIAN_SPEND_PER_CUSTOMER": 57.23 }, "geometry": { "type": "Point", "coordinates": [ -75.148619, 40.017784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-8y9", "LOCATION_NAME": "Dollar Days Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.952899, "LONGITUDE": -75.218099, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 148.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 7574.0, "Total Transactions": 411.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.15, "MEDIAN_SPEND_PER_CUSTOMER": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218099, 39.952899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.016881, "LONGITUDE": -75.096377, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 122.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1465.0, "Total Transactions": 157.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.55, "MEDIAN_SPEND_PER_CUSTOMER": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.096377, 40.016881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "LOCATION_NAME": "Michaels Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.082446, "LONGITUDE": -75.023342, "DATE_RANGE_START": 2022, "Total Visits": 841.0, "Total Visitors": 740.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 44238.0, "Total Transactions": 1305.0, "Total Customers": 1044.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.71, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.023342, 40.082446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w49", "LOCATION_NAME": "Sam Ash Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.087105, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 146.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 10504.0, "Total Transactions": 63.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.05, "MEDIAN_SPEND_PER_CUSTOMER": 69.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgk-nwk", "LOCATION_NAME": "Sharon Reed Book Store", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 40.003494, "LONGITUDE": -75.210472, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 68.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 70.0, "Total Spend": 1348.0, "Total Transactions": 115.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.8, "MEDIAN_SPEND_PER_CUSTOMER": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.210472, 40.003494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.95521, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2022, "Total Visits": 462.0, "Total Visitors": 340.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 48477.0, "Total Transactions": 5007.0, "Total Customers": 2112.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.87, "MEDIAN_SPEND_PER_CUSTOMER": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.95521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22r@628-pmb-7yv", "LOCATION_NAME": "Golden Fish Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953709, "LONGITUDE": -75.158958, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 589.0, "Total Transactions": 42.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.96, "MEDIAN_SPEND_PER_CUSTOMER": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.158958, 39.953709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-tn5", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948145, "LONGITUDE": -75.153461, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 73.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 814.0, "Total Spend": 2349.0, "Total Transactions": 124.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.47, "MEDIAN_SPEND_PER_CUSTOMER": 22.12 }, "geometry": { "type": "Point", "coordinates": [ -75.153461, 39.948145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.979391, "LONGITUDE": -75.152636, "DATE_RANGE_START": 2022, "Total Visits": 2092.0, "Total Visitors": 1045.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 179.0, "Total Spend": 19079.0, "Total Transactions": 1371.0, "Total Customers": 666.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.52, "MEDIAN_SPEND_PER_CUSTOMER": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.152636, 39.979391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pjf-kvf", "LOCATION_NAME": "Hideaway Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.076825, "LONGITUDE": -75.208128, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 98.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 350.0, "Total Spend": 2182.0, "Total Transactions": 64.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208128, 40.076825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.912527, "LONGITUDE": -75.154627, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 190.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3604.0, "Total Transactions": 85.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.1, "MEDIAN_SPEND_PER_CUSTOMER": 30.35 }, "geometry": { "type": "Point", "coordinates": [ -75.154627, 39.912527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-87q", "LOCATION_NAME": "Rittenhouse Needlepoint", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.953747, "LONGITUDE": -75.160369, "DATE_RANGE_START": 2022, "Total Visits": 6573.0, "Total Visitors": 4744.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 70.0, "Total Spend": 256.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.77, "MEDIAN_SPEND_PER_CUSTOMER": 23.18 }, "geometry": { "type": "Point", "coordinates": [ -75.160369, 39.953747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-djv", "LOCATION_NAME": "Robins Auto Sales", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.007208, "LONGITUDE": -75.131277, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 56.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 432.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.0, "MEDIAN_SPEND_PER_CUSTOMER": 124.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131277, 40.007208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg9-xt9", "LOCATION_NAME": "Francisville Farmers Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.967356, "LONGITUDE": -75.161649, "DATE_RANGE_START": 2022, "Total Visits": 193.0, "Total Visitors": 167.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 482.0, "Total Transactions": 24.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.48, "MEDIAN_SPEND_PER_CUSTOMER": 36.96 }, "geometry": { "type": "Point", "coordinates": [ -75.161649, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sbk", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.913277, "LONGITUDE": -75.154576, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 80.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3576.0, "Total Transactions": 94.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 33.65 }, "geometry": { "type": "Point", "coordinates": [ -75.154576, 39.913277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "LOCATION_NAME": "Marine Layer", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949625, "LONGITUDE": -75.16782, "DATE_RANGE_START": 2022, "Total Visits": 1197.0, "Total Visitors": 1012.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5645.0, "Total Transactions": 56.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 148.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16782, 39.949625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "LOCATION_NAME": "lululemon athletica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 284.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 28616.0, "Total Transactions": 242.0, "Total Customers": 211.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.0, "MEDIAN_SPEND_PER_CUSTOMER": 103.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2022, "Total Visits": 6484.0, "Total Visitors": 3507.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 208469.0, "Total Transactions": 4084.0, "Total Customers": 2319.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.31, "MEDIAN_SPEND_PER_CUSTOMER": 54.38 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 176.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 473.0, "Total Transactions": 28.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm9-zmk", "LOCATION_NAME": "Anastacia's Antiques", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.941324, "LONGITUDE": -75.153108, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": null, "Total Spend": 21657.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 3034.8, "MEDIAN_SPEND_PER_CUSTOMER": 6215.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153108, 39.941324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-ty9", "LOCATION_NAME": "Sakura Japanese Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962988, "LONGITUDE": -75.163765, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 923.0, "Total Transactions": 40.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.163765, 39.962988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "LOCATION_NAME": "Just To Serve You", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 19.0, "POI_CBG": 421010102001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1075.0, "Total Transactions": 38.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.22, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 39.0, "Total Spend": 4533.0, "Total Transactions": 195.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.84, "MEDIAN_SPEND_PER_CUSTOMER": 36.74 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-nwk", "LOCATION_NAME": "La Casa Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005788, "LONGITUDE": -75.102968, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 28.0, "POI_CBG": 421010190001.0, "MEDIAN_DWELL": 469.0, "Total Spend": 4340.0, "Total Transactions": 211.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.91, "MEDIAN_SPEND_PER_CUSTOMER": 41.82 }, "geometry": { "type": "Point", "coordinates": [ -75.102968, 40.005788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-w49", "LOCATION_NAME": "The Royal Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948373, "LONGITUDE": -75.174503, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 28.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 311.0, "Total Spend": 370.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.16 }, "geometry": { "type": "Point", "coordinates": [ -75.174503, 39.948373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-75z", "LOCATION_NAME": "North Third", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963481, "LONGITUDE": -75.142676, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 44.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 73.0, "Total Spend": 1175.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 189.16 }, "geometry": { "type": "Point", "coordinates": [ -75.142676, 39.963481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "LOCATION_NAME": "Clarkville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949731, "LONGITUDE": -75.209453, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 45.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": 76.0, "Total Spend": 32253.0, "Total Transactions": 828.0, "Total Customers": 378.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.91, "MEDIAN_SPEND_PER_CUSTOMER": 68.16 }, "geometry": { "type": "Point", "coordinates": [ -75.209453, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-r6k", "LOCATION_NAME": "Grindcore House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929019, "LONGITUDE": -75.151738, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010027023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4062.0, "Total Transactions": 310.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 27.32 }, "geometry": { "type": "Point", "coordinates": [ -75.151738, 39.929019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "LOCATION_NAME": "Riverwards Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 78.0, "POI_CBG": 421010158001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 32484.0, "Total Transactions": 1152.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.09, "MEDIAN_SPEND_PER_CUSTOMER": 81.44 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-qs5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.991422, "LONGITUDE": -75.097766, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 186.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 133.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.04, "MEDIAN_SPEND_PER_CUSTOMER": 38.04 }, "geometry": { "type": "Point", "coordinates": [ -75.097766, 39.991422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-bhq", "LOCATION_NAME": "Lloyd Whiskey Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.971373, "LONGITUDE": -75.127654, "DATE_RANGE_START": 2022, "Total Visits": 183.0, "Total Visitors": 132.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 31.0, "Total Spend": 24268.0, "Total Transactions": 329.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 119.54 }, "geometry": { "type": "Point", "coordinates": [ -75.127654, 39.971373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-6x5", "LOCATION_NAME": "Ocean Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950182, "LONGITUDE": -75.165953, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 279.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 7768.0, "Total Transactions": 35.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 164.74, "MEDIAN_SPEND_PER_CUSTOMER": 227.88 }, "geometry": { "type": "Point", "coordinates": [ -75.165953, 39.950182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "LOCATION_NAME": "Front Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970159, "LONGITUDE": -75.135552, "DATE_RANGE_START": 2022, "Total Visits": 479.0, "Total Visitors": 355.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 86.0, "Total Spend": 78018.0, "Total Transactions": 1436.0, "Total Customers": 697.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.08, "MEDIAN_SPEND_PER_CUSTOMER": 89.82 }, "geometry": { "type": "Point", "coordinates": [ -75.135552, 39.970159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-mrk", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953042, "LONGITUDE": -75.167502, "DATE_RANGE_START": 2022, "Total Visits": 371.0, "Total Visitors": 232.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 159.0, "Total Spend": 579.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.28, "MEDIAN_SPEND_PER_CUSTOMER": 15.46 }, "geometry": { "type": "Point", "coordinates": [ -75.167502, 39.953042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm4-k2k", "LOCATION_NAME": "Four Seasons", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934412, "LONGITUDE": -75.1543, "DATE_RANGE_START": 2022, "Total Visits": 1427.0, "Total Visitors": 995.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 38669.0, "Total Transactions": 906.0, "Total Customers": 443.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.22, "MEDIAN_SPEND_PER_CUSTOMER": 16.23 }, "geometry": { "type": "Point", "coordinates": [ -75.1543, 39.934412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "LOCATION_NAME": "Frieda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 54.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 34.0, "Total Spend": 7975.0, "Total Transactions": 331.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.52, "MEDIAN_SPEND_PER_CUSTOMER": 47.15 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p9p-z2k", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101427, "LONGITUDE": -75.028593, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 57.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1187.0, "Total Transactions": 80.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.13, "MEDIAN_SPEND_PER_CUSTOMER": 15.78 }, "geometry": { "type": "Point", "coordinates": [ -75.028593, 40.101427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "LOCATION_NAME": "In Riva", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 134.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 34.0, "Total Spend": 54756.0, "Total Transactions": 733.0, "Total Customers": 352.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.66, "MEDIAN_SPEND_PER_CUSTOMER": 128.12 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pj6-k4v", "LOCATION_NAME": "Mirim", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044989, "LONGITUDE": -75.117489, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 6718.0, "Total Transactions": 340.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.19, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.117489, 40.044989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029093, "LONGITUDE": -75.118871, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 185.0, "POI_CBG": 421010290004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1531.0, "Total Transactions": 77.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.43, "MEDIAN_SPEND_PER_CUSTOMER": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.118871, 40.029093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-vvf", "LOCATION_NAME": "Pret A Manger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955744, "LONGITUDE": -75.181965, "DATE_RANGE_START": 2022, "Total Visits": 28654.0, "Total Visitors": 19157.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 14620.0, "Total Transactions": 1389.0, "Total Customers": 1150.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.28, "MEDIAN_SPEND_PER_CUSTOMER": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.181965, 39.955744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pnw-pjv", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969267, "LONGITUDE": -75.133945, "DATE_RANGE_START": 2022, "Total Visits": 328.0, "Total Visitors": 294.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 32.0, "Total Spend": 301.0, "Total Transactions": 24.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.64, "MEDIAN_SPEND_PER_CUSTOMER": 29.64 }, "geometry": { "type": "Point", "coordinates": [ -75.133945, 39.969267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2022, "Total Visits": 1768.0, "Total Visitors": 1106.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3242.0, "Total Transactions": 85.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.01, "MEDIAN_SPEND_PER_CUSTOMER": 47.76 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.058164, "LONGITUDE": -75.052414, "DATE_RANGE_START": 2022, "Total Visits": 1305.0, "Total Visitors": 812.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4964.0, "Total Transactions": 108.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.06, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.058164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.92482, "LONGITUDE": -75.146253, "DATE_RANGE_START": 2022, "Total Visits": 7192.0, "Total Visitors": 4659.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 445751.0, "Total Transactions": 7847.0, "Total Customers": 4906.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.2, "MEDIAN_SPEND_PER_CUSTOMER": 56.62 }, "geometry": { "type": "Point", "coordinates": [ -75.146253, 39.92482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2022, "Total Visits": 725.0, "Total Visitors": 608.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16474.0, "Total Transactions": 840.0, "Total Customers": 599.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.25, "MEDIAN_SPEND_PER_CUSTOMER": 19.25 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-5vf", "LOCATION_NAME": "Wellcare Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048598, "LONGITUDE": -75.061857, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 94.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 906.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.12, "MEDIAN_SPEND_PER_CUSTOMER": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.061857, 40.048598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8v-7nq", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088588, "LONGITUDE": -74.965931, "DATE_RANGE_START": 2022, "Total Visits": 488.0, "Total Visitors": 413.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 371.0, "Total Transactions": 31.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.43, "MEDIAN_SPEND_PER_CUSTOMER": 12.86 }, "geometry": { "type": "Point", "coordinates": [ -74.965931, 40.088588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.055425, "LONGITUDE": -75.00482, "DATE_RANGE_START": 2022, "Total Visits": 829.0, "Total Visitors": 608.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8329.0, "Total Transactions": 343.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.65, "MEDIAN_SPEND_PER_CUSTOMER": 22.99 }, "geometry": { "type": "Point", "coordinates": [ -75.00482, 40.055425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-ffz", "LOCATION_NAME": "D'jakarta Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920881, "LONGITUDE": -75.173653, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 42.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": 628.0, "Total Spend": 2152.0, "Total Transactions": 42.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.62, "MEDIAN_SPEND_PER_CUSTOMER": 98.72 }, "geometry": { "type": "Point", "coordinates": [ -75.173653, 39.920881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 40.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 464.0, "Total Spend": 5840.0, "Total Transactions": 411.0, "Total Customers": 261.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.18 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-q2k", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.912266, "LONGITUDE": -75.155082, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 54.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 538.0, "Total Transactions": 23.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.17, "MEDIAN_SPEND_PER_CUSTOMER": 32.07 }, "geometry": { "type": "Point", "coordinates": [ -75.155082, 39.912266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-t7q", "LOCATION_NAME": "Vetri Cucina", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946687, "LONGITUDE": -75.163203, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 42.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": 107.0, "Total Spend": 29152.0, "Total Transactions": 52.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 534.95, "MEDIAN_SPEND_PER_CUSTOMER": 1029.7 }, "geometry": { "type": "Point", "coordinates": [ -75.163203, 39.946687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmf-g6k", "LOCATION_NAME": "D J Casmiri Food Service", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 39.943633, "LONGITUDE": -75.189462, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 94.0, "POI_CBG": 421010013005.0, "MEDIAN_DWELL": 61.0, "Total Spend": 113.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.48, "MEDIAN_SPEND_PER_CUSTOMER": 10.95 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.943633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-w6k", "LOCATION_NAME": "Pizza Roma", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049594, "LONGITUDE": -75.059819, "DATE_RANGE_START": 2022, "Total Visits": 220.0, "Total Visitors": 186.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8044.0, "Total Transactions": 608.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.81, "MEDIAN_SPEND_PER_CUSTOMER": 34.46 }, "geometry": { "type": "Point", "coordinates": [ -75.059819, 40.049594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-nnq", "LOCATION_NAME": "M & M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.02486, "LONGITUDE": -75.210261, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1052.0, "Total Transactions": 113.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 30.99 }, "geometry": { "type": "Point", "coordinates": [ -75.210261, 40.02486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-n3q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95343, "LONGITUDE": -75.165858, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 63.0, "Total Spend": 954.0, "Total Transactions": 181.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.69, "MEDIAN_SPEND_PER_CUSTOMER": 5.41 }, "geometry": { "type": "Point", "coordinates": [ -75.165858, 39.95343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012073, "LONGITUDE": -75.115248, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 199.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 441.0, "Total Transactions": 33.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.05, "MEDIAN_SPEND_PER_CUSTOMER": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.115248, 40.012073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-brk", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.994031, "LONGITUDE": -75.091432, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 141.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 10849.0, "Total Transactions": 89.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 62.27 }, "geometry": { "type": "Point", "coordinates": [ -75.091432, 39.994031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2022, "Total Visits": 1991.0, "Total Visitors": 1423.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 229403.0, "Total Transactions": 6223.0, "Total Customers": 3575.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.49, "MEDIAN_SPEND_PER_CUSTOMER": 39.86 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "LOCATION_NAME": "Paradise Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 23.0, "POI_CBG": 421010190004.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1228.0, "Total Transactions": 44.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.71, "MEDIAN_SPEND_PER_CUSTOMER": 64.16 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039133, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 89.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4357.0, "Total Transactions": 747.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.24, "MEDIAN_SPEND_PER_CUSTOMER": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 40.039133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-389", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.084522, "LONGITUDE": -74.967251, "DATE_RANGE_START": 2022, "Total Visits": 235.0, "Total Visitors": 200.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 26.0, "Total Spend": 23565.0, "Total Transactions": 21.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 658.68, "MEDIAN_SPEND_PER_CUSTOMER": 1468.63 }, "geometry": { "type": "Point", "coordinates": [ -74.967251, 40.084522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "LOCATION_NAME": "Best Buy Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.078042, "LONGITUDE": -75.024894, "DATE_RANGE_START": 2022, "Total Visits": 2162.0, "Total Visitors": 1504.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 84.0, "Total Spend": 10073.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 1155.0, "MEDIAN_SPEND_PER_CUSTOMER": 2310.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024894, 40.078042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "LOCATION_NAME": "CB2", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2022, "Total Visits": 1186.0, "Total Visitors": 904.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 38.0, "Total Spend": 39450.0, "Total Transactions": 138.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.1, "MEDIAN_SPEND_PER_CUSTOMER": 92.36 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-phc-rkz", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.999213, "LONGITUDE": -75.22984, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 54.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.78, "MEDIAN_SPEND_PER_CUSTOMER": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.22984, 39.999213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.954271, "LONGITUDE": -75.167991, "DATE_RANGE_START": 2022, "Total Visits": 4749.0, "Total Visitors": 2620.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 40.0, "Total Spend": 5470.0, "Total Transactions": 312.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 16.08 }, "geometry": { "type": "Point", "coordinates": [ -75.167991, 39.954271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.045071, "LONGITUDE": -75.088214, "DATE_RANGE_START": 2022, "Total Visits": 1425.0, "Total Visitors": 883.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4394.0, "Total Transactions": 110.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.06, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088214, 40.045071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-hwk", "LOCATION_NAME": "The Men's Wearhouse", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.079413, "LONGITUDE": -75.029146, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 117.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4232.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 162.6, "MEDIAN_SPEND_PER_CUSTOMER": 205.19 }, "geometry": { "type": "Point", "coordinates": [ -75.029146, 40.079413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "LOCATION_NAME": "Destination XL", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 141.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5996.0, "Total Transactions": 57.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.26, "MEDIAN_SPEND_PER_CUSTOMER": 100.63 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "LOCATION_NAME": "Theory", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949699, "LONGITUDE": -75.168323, "DATE_RANGE_START": 2022, "Total Visits": 279.0, "Total Visitors": 228.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 198.0, "Total Spend": 7772.0, "Total Transactions": 26.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 220.0, "MEDIAN_SPEND_PER_CUSTOMER": 470.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168323, 39.949699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-tsq", "LOCATION_NAME": "J's Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.017868, "LONGITUDE": -75.091027, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 28.0, "POI_CBG": 421010301003.0, "MEDIAN_DWELL": null, "Total Spend": 310.0, "Total Transactions": 44.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091027, 40.017868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7w-wp9", "LOCATION_NAME": "Cappys Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032823, "LONGITUDE": -75.048281, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 28.0, "POI_CBG": 421010325001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 22696.0, "Total Transactions": 101.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 120.0, "MEDIAN_SPEND_PER_CUSTOMER": 405.75 }, "geometry": { "type": "Point", "coordinates": [ -75.048281, 40.032823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.005384, "LONGITUDE": -75.097837, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 155.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 621.0, "Total Transactions": 54.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.67, "MEDIAN_SPEND_PER_CUSTOMER": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.097837, 40.005384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmd-vj9", "LOCATION_NAME": "Nature's Gallery Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.950794, "LONGITUDE": -75.177008, "DATE_RANGE_START": 2022, "Total Visits": 1436.0, "Total Visitors": 829.0, "POI_CBG": 421010008031.0, "MEDIAN_DWELL": 259.0, "Total Spend": 978.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.0, "MEDIAN_SPEND_PER_CUSTOMER": 162.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177008, 39.950794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 162.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 179.0, "Total Spend": 21210.0, "Total Transactions": 612.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.81, "MEDIAN_SPEND_PER_CUSTOMER": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dwf-q9f", "LOCATION_NAME": "Shotz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911065, "LONGITUDE": -75.243379, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 10.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 871.0, "Total Transactions": 21.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.75, "MEDIAN_SPEND_PER_CUSTOMER": 175.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243379, 39.911065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-7yv", "LOCATION_NAME": "Carnival Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967096, "LONGITUDE": -75.208944, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010106001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 299.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.62, "MEDIAN_SPEND_PER_CUSTOMER": 37.24 }, "geometry": { "type": "Point", "coordinates": [ -75.208944, 39.967096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-68v", "LOCATION_NAME": "J'aime French Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948054, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 146.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1582.0, "Total Transactions": 117.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.45, "MEDIAN_SPEND_PER_CUSTOMER": 21.08 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.948054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm9-tn5", "LOCATION_NAME": "Cafe Walnut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948274, "LONGITUDE": -75.152798, "DATE_RANGE_START": 2022, "Total Visits": 1821.0, "Total Visitors": 1206.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 122.0, "Total Spend": 4342.0, "Total Transactions": 436.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152798, 39.948274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00769, "LONGITUDE": -75.17457, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 84.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3957.0, "Total Transactions": 432.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.59, "MEDIAN_SPEND_PER_CUSTOMER": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.17457, 40.00769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg4-grk", "LOCATION_NAME": "1beautysupplypa", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.030533, "LONGITUDE": -75.181364, "DATE_RANGE_START": 2022, "Total Visits": 279.0, "Total Visitors": 213.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6740.0, "Total Transactions": 169.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.22, "MEDIAN_SPEND_PER_CUSTOMER": 60.45 }, "geometry": { "type": "Point", "coordinates": [ -75.181364, 40.030533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 24.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1874.0, "Total Transactions": 91.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p85-7nq", "LOCATION_NAME": "Tuscany Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056919, "LONGITUDE": -75.047895, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 57.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 77.0, "Total Spend": 501.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.77, "MEDIAN_SPEND_PER_CUSTOMER": 88.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047895, 40.056919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "LOCATION_NAME": "Spring Garden Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2022, "Total Visits": 321.0, "Total Visitors": 261.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8754.0, "Total Transactions": 324.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.21, "MEDIAN_SPEND_PER_CUSTOMER": 49.16 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4sq", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038439, "LONGITUDE": -75.144402, "DATE_RANGE_START": 2022, "Total Visits": 305.0, "Total Visitors": 233.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 455.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.35, "MEDIAN_SPEND_PER_CUSTOMER": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144402, 40.038439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pm7-49z", "LOCATION_NAME": "Mike's Hot Dog Cart", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922168, "LONGITUDE": -75.186888, "DATE_RANGE_START": 2022, "Total Visits": 3835.0, "Total Visitors": 2432.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 926.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.47, "MEDIAN_SPEND_PER_CUSTOMER": 59.55 }, "geometry": { "type": "Point", "coordinates": [ -75.186888, 39.922168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm4-h5z", "LOCATION_NAME": "Le Virtu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925948, "LONGITUDE": -75.16776, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 37.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 61.0, "Total Spend": 16297.0, "Total Transactions": 127.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 114.24, "MEDIAN_SPEND_PER_CUSTOMER": 202.08 }, "geometry": { "type": "Point", "coordinates": [ -75.16776, 39.925948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yqf", "LOCATION_NAME": "T Swirl Crepe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955094, "LONGITUDE": -75.156151, "DATE_RANGE_START": 2022, "Total Visits": 225.0, "Total Visitors": 174.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 9581.0, "Total Transactions": 512.0, "Total Customers": 256.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.74, "MEDIAN_SPEND_PER_CUSTOMER": 30.51 }, "geometry": { "type": "Point", "coordinates": [ -75.156151, 39.955094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@63s-dvy-8y9", "LOCATION_NAME": "48th Street Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953128, "LONGITUDE": -75.218509, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 38.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 59.0, "Total Spend": 1960.0, "Total Transactions": 40.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.84, "MEDIAN_SPEND_PER_CUSTOMER": 56.16 }, "geometry": { "type": "Point", "coordinates": [ -75.218509, 39.953128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "LOCATION_NAME": "A Z Budget", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 77.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5710.0, "Total Transactions": 40.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.76, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-vxq", "LOCATION_NAME": "Jersey Mike's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955112, "LONGITUDE": -75.18233, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 57.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9075.0, "Total Transactions": 716.0, "Total Customers": 575.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.21, "MEDIAN_SPEND_PER_CUSTOMER": 12.82 }, "geometry": { "type": "Point", "coordinates": [ -75.18233, 39.955112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pm9-wtv", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951286, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 12633.0, "Total Transactions": 322.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.98, "MEDIAN_SPEND_PER_CUSTOMER": 26.94 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.951286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-tsq", "LOCATION_NAME": "Pennsport Beer Boutique", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.931601, "LONGITUDE": -75.149607, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 45.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3641.0, "Total Transactions": 176.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.2, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149607, 39.931601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977256, "LONGITUDE": -75.226088, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 146.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2544.0, "Total Transactions": 326.0, "Total Customers": 199.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.54, "MEDIAN_SPEND_PER_CUSTOMER": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.226088, 39.977256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-6p9", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951312, "LONGITUDE": -75.166086, "DATE_RANGE_START": 2022, "Total Visits": 805.0, "Total Visitors": 608.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 63.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.73, "MEDIAN_SPEND_PER_CUSTOMER": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.166086, 39.951312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-5s5", "LOCATION_NAME": "Halal Gyro King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951797, "LONGITUDE": -75.15974, "DATE_RANGE_START": 2022, "Total Visits": 5603.0, "Total Visitors": 3727.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 95.0, "Total Spend": 1787.0, "Total Transactions": 113.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15974, 39.951797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2022, "Total Visits": 603.0, "Total Visitors": 359.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8677.0, "Total Transactions": 1064.0, "Total Customers": 404.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.89, "MEDIAN_SPEND_PER_CUSTOMER": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2022, "Total Visits": 596.0, "Total Visitors": 321.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4188.0, "Total Transactions": 625.0, "Total Customers": 256.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.05, "MEDIAN_SPEND_PER_CUSTOMER": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94797, "LONGITUDE": -75.154128, "DATE_RANGE_START": 2022, "Total Visits": 406.0, "Total Visitors": 275.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 123.0, "Total Spend": 5752.0, "Total Transactions": 692.0, "Total Customers": 439.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 9.13 }, "geometry": { "type": "Point", "coordinates": [ -75.154128, 39.94797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956525, "LONGITUDE": -75.195111, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 8768.0, "Total Transactions": 1134.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.4, "MEDIAN_SPEND_PER_CUSTOMER": 13.88 }, "geometry": { "type": "Point", "coordinates": [ -75.195111, 39.956525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "LOCATION_NAME": "Asia Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010310001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1427.0, "Total Transactions": 51.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.54, "MEDIAN_SPEND_PER_CUSTOMER": 52.63 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2022, "Total Visits": 1155.0, "Total Visitors": 807.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11953.0, "Total Transactions": 514.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.37 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-j5f", "LOCATION_NAME": "J Crew", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950211, "LONGITUDE": -75.169927, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 192.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 154.0, "Total Spend": 19982.0, "Total Transactions": 185.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.72, "MEDIAN_SPEND_PER_CUSTOMER": 89.89 }, "geometry": { "type": "Point", "coordinates": [ -75.169927, 39.950211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-kzz", "LOCATION_NAME": "Sioux Zanne Messix", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.951652, "LONGITUDE": -75.145431, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 237.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 154.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.04, "MEDIAN_SPEND_PER_CUSTOMER": 44.07 }, "geometry": { "type": "Point", "coordinates": [ -75.145431, 39.951652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pmc-2p9", "LOCATION_NAME": "Haley Quinn's Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960383, "LONGITUDE": -75.155544, "DATE_RANGE_START": 2022, "Total Visits": 216.0, "Total Visitors": 150.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 53.0, "Total Spend": 178.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.155544, 39.960383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnw-yvz", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.97112, "LONGITUDE": -75.151073, "DATE_RANGE_START": 2022, "Total Visits": 392.0, "Total Visitors": 329.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 608.0, "Total Transactions": 24.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.02, "MEDIAN_SPEND_PER_CUSTOMER": 24.93 }, "geometry": { "type": "Point", "coordinates": [ -75.151073, 39.97112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.990629, "LONGITUDE": -75.10302, "DATE_RANGE_START": 2022, "Total Visits": 493.0, "Total Visitors": 423.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 28128.0, "Total Transactions": 690.0, "Total Customers": 462.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.65, "MEDIAN_SPEND_PER_CUSTOMER": 42.27 }, "geometry": { "type": "Point", "coordinates": [ -75.10302, 39.990629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947944, "LONGITUDE": -75.171288, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 145.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6224.0, "Total Transactions": 819.0, "Total Customers": 484.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.171288, 39.947944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959088, "LONGITUDE": -75.1625, "DATE_RANGE_START": 2022, "Total Visits": 1498.0, "Total Visitors": 704.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 340.0, "Total Spend": 13449.0, "Total Transactions": 1030.0, "Total Customers": 397.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.84, "MEDIAN_SPEND_PER_CUSTOMER": 27.12 }, "geometry": { "type": "Point", "coordinates": [ -75.1625, 39.959088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032059, "LONGITUDE": -75.213927, "DATE_RANGE_START": 2022, "Total Visits": 462.0, "Total Visitors": 329.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6350.0, "Total Transactions": 692.0, "Total Customers": 392.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.21, "MEDIAN_SPEND_PER_CUSTOMER": 9.08 }, "geometry": { "type": "Point", "coordinates": [ -75.213927, 40.032059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@63s-dvx-fcq", "LOCATION_NAME": "Veganish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971859, "LONGITUDE": -75.226167, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": null, "Total Spend": 638.0, "Total Transactions": 30.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.16, "MEDIAN_SPEND_PER_CUSTOMER": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226167, 39.971859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm3-vpv", "LOCATION_NAME": "Mesh Vintage", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.927333, "LONGITUDE": -75.166704, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 28.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 121.0, "Total Spend": 2244.0, "Total Transactions": 70.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 64.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166704, 39.927333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-w49", "LOCATION_NAME": "Seafood Unlimited", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948416, "LONGITUDE": -75.174494, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 30.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 289.0, "Total Spend": 1188.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.09, "MEDIAN_SPEND_PER_CUSTOMER": 102.18 }, "geometry": { "type": "Point", "coordinates": [ -75.174494, 39.948416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-phn-87q", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.080555, "LONGITUDE": -75.171342, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 33.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1897.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171342, 40.080555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-p7w-wtv", "LOCATION_NAME": "Twistee Treat", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033208, "LONGITUDE": -75.048855, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 49.0, "POI_CBG": 421010315013.0, "MEDIAN_DWELL": 136.0, "Total Spend": 1352.0, "Total Transactions": 99.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 23.49 }, "geometry": { "type": "Point", "coordinates": [ -75.048855, 40.033208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "LOCATION_NAME": "Prince Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 30.0, "POI_CBG": 421010288002.0, "MEDIAN_DWELL": 651.0, "Total Spend": 5464.0, "Total Transactions": 183.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.49, "MEDIAN_SPEND_PER_CUSTOMER": 55.52 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pgg-cqz", "LOCATION_NAME": "Dj's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.001113, "LONGITUDE": -75.172721, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010171004.0, "MEDIAN_DWELL": 421.0, "Total Spend": 105.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172721, 40.001113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm4-8sq", "LOCATION_NAME": "Olivares Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.934795, "LONGITUDE": -75.173301, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010030023.0, "MEDIAN_DWELL": 72.0, "Total Spend": 458.0, "Total Transactions": 33.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.96, "MEDIAN_SPEND_PER_CUSTOMER": 13.95 }, "geometry": { "type": "Point", "coordinates": [ -75.173301, 39.934795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "LOCATION_NAME": "Two Brothers", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.943904, "LONGITUDE": -75.228136, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010071024.0, "MEDIAN_DWELL": 40.0, "Total Spend": 3038.0, "Total Transactions": 37.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.69, "MEDIAN_SPEND_PER_CUSTOMER": 69.27 }, "geometry": { "type": "Point", "coordinates": [ -75.228136, 39.943904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "LOCATION_NAME": "Davis Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3182.0, "Total Transactions": 138.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.1, "MEDIAN_SPEND_PER_CUSTOMER": 46.65 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "LOCATION_NAME": "Polo Ralph Lauren Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 19355.0, "Total Transactions": 178.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.99, "MEDIAN_SPEND_PER_CUSTOMER": 74.14 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg9-x5z", "LOCATION_NAME": "Vineyards Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96989, "LONGITUDE": -75.162961, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 8907.0, "Total Transactions": 902.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.9, "MEDIAN_SPEND_PER_CUSTOMER": 27.02 }, "geometry": { "type": "Point", "coordinates": [ -75.162961, 39.96989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 10.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 121.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.82, "MEDIAN_SPEND_PER_CUSTOMER": 13.64 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 113.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 481.0, "Total Transactions": 31.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.41, "MEDIAN_SPEND_PER_CUSTOMER": 12.46 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4qf", "LOCATION_NAME": "Sun Rise Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.021353, "LONGITUDE": -75.125766, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010288001.0, "MEDIAN_DWELL": null, "Total Spend": 231.0, "Total Transactions": 35.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.12, "MEDIAN_SPEND_PER_CUSTOMER": 8.58 }, "geometry": { "type": "Point", "coordinates": [ -75.125766, 40.021353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2022, "Total Visits": 716.0, "Total Visitors": 510.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5982.0, "Total Transactions": 439.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.83, "MEDIAN_SPEND_PER_CUSTOMER": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 152.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11097.0, "Total Transactions": 678.0, "Total Customers": 484.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 15.74 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2022, "Total Visits": 17711.0, "Total Visitors": 9317.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 114.0, "Total Spend": 15782.0, "Total Transactions": 1179.0, "Total Customers": 709.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.014677, "LONGITUDE": -75.130343, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 155.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6111.0, "Total Transactions": 692.0, "Total Customers": 345.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.07, "MEDIAN_SPEND_PER_CUSTOMER": 12.07 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.014677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yjv", "LOCATION_NAME": "Prince Tea House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955371, "LONGITUDE": -75.154071, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 103.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 5428.0, "Total Transactions": 139.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.99, "MEDIAN_SPEND_PER_CUSTOMER": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.154071, 39.955371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pj5-j7q", "LOCATION_NAME": "Sanchez Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999917, "LONGITUDE": -75.128744, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 398.0, "Total Transactions": 30.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.56, "MEDIAN_SPEND_PER_CUSTOMER": 27.12 }, "geometry": { "type": "Point", "coordinates": [ -75.128744, 39.999917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "LOCATION_NAME": "Philly's Famous Italian Ices", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13519.0, "Total Transactions": 124.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-4gk", "LOCATION_NAME": "I Heart Cambodia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921392, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 30.0, "POI_CBG": 421010041012.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1156.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.97, "MEDIAN_SPEND_PER_CUSTOMER": 79.94 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.921392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-php-45f", "LOCATION_NAME": "J&j Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.071586, "LONGITUDE": -75.16171, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 14.0, "POI_CBG": 421010263011.0, "MEDIAN_DWELL": 1381.0, "Total Spend": 9030.0, "Total Transactions": 319.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 50.02 }, "geometry": { "type": "Point", "coordinates": [ -75.16171, 40.071586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvr-d5f", "LOCATION_NAME": "Y & B Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.921556, "LONGITUDE": -75.231623, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 23.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 18331.0, "Total Transactions": 913.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 88.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231623, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "LOCATION_NAME": "Ibis Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 31.0, "POI_CBG": 421010113002.0, "MEDIAN_DWELL": 92.0, "Total Spend": 4052.0, "Total Transactions": 150.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.6, "MEDIAN_SPEND_PER_CUSTOMER": 59.46 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm4-hnq", "LOCATION_NAME": "Los Cuatro Soles", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928485, "LONGITUDE": -75.173061, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010030013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2728.0, "Total Transactions": 98.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.21, "MEDIAN_SPEND_PER_CUSTOMER": 56.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173061, 39.928485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmf-jgk", "LOCATION_NAME": "Dizengoff", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950806, "LONGITUDE": -75.168528, "DATE_RANGE_START": 2022, "Total Visits": 474.0, "Total Visitors": 286.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 366.0, "Total Spend": 4881.0, "Total Transactions": 206.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.49, "MEDIAN_SPEND_PER_CUSTOMER": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.168528, 39.950806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnw-nkf", "LOCATION_NAME": "Laser Wolf", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970668, "LONGITUDE": -75.13658, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 132.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 102.0, "Total Spend": 34134.0, "Total Transactions": 228.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 142.8, "MEDIAN_SPEND_PER_CUSTOMER": 217.21 }, "geometry": { "type": "Point", "coordinates": [ -75.13658, 39.970668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "LOCATION_NAME": "Ruby Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 578.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 25253.0, "Total Transactions": 561.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.92, "MEDIAN_SPEND_PER_CUSTOMER": 79.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2022, "Total Visits": 322.0, "Total Visitors": 263.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8700.0, "Total Transactions": 544.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.07, "MEDIAN_SPEND_PER_CUSTOMER": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 17.0, "POI_CBG": 421010298002.0, "MEDIAN_DWELL": 396.0, "Total Spend": 1922.0, "Total Transactions": 84.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.14, "MEDIAN_SPEND_PER_CUSTOMER": 44.71 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "LOCATION_NAME": "Alexa Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010308003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3979.0, "Total Transactions": 96.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "LOCATION_NAME": "Pinoy Groseri", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 26.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 1227.0, "Total Spend": 2716.0, "Total Transactions": 47.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.5, "MEDIAN_SPEND_PER_CUSTOMER": 99.54 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-8d9", "LOCATION_NAME": "Hilton Garden Inn", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.953445, "LONGITUDE": -75.157985, "DATE_RANGE_START": 2022, "Total Visits": 16448.0, "Total Visitors": 10162.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 40473.0, "Total Transactions": 148.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 208.3, "MEDIAN_SPEND_PER_CUSTOMER": 229.75 }, "geometry": { "type": "Point", "coordinates": [ -75.157985, 39.953445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pmc-q75", "LOCATION_NAME": "Brulee Catering", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 39.929972, "LONGITUDE": -75.146804, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 96.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 476.0, "Total Spend": 7984.0, "Total Transactions": 716.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.4, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146804, 39.929972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "LOCATION_NAME": "Drinkers Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952101, "LONGITUDE": -75.17208, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 277.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 75511.0, "Total Transactions": 2756.0, "Total Customers": 949.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.56, "MEDIAN_SPEND_PER_CUSTOMER": 52.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17208, 39.952101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "LOCATION_NAME": "Cry Baby Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2022, "Total Visits": 570.0, "Total Visitors": 455.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 6614.0, "Total Transactions": 63.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.37, "MEDIAN_SPEND_PER_CUSTOMER": 164.34 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "LOCATION_NAME": "Tandoori bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2022, "Total Visits": 652.0, "Total Visitors": 460.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20843.0, "Total Transactions": 200.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.92, "MEDIAN_SPEND_PER_CUSTOMER": 92.28 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-psq", "LOCATION_NAME": "Magic Noodles", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043529, "LONGITUDE": -75.052298, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 66.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2124.0, "Total Transactions": 66.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.68, "MEDIAN_SPEND_PER_CUSTOMER": 76.36 }, "geometry": { "type": "Point", "coordinates": [ -75.052298, 40.043529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "LOCATION_NAME": "City Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 218.0, "POI_CBG": 421010042013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4200.0, "Total Transactions": 186.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.71, "MEDIAN_SPEND_PER_CUSTOMER": 43.12 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-5s5", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049399, "LONGITUDE": -75.061192, "DATE_RANGE_START": 2022, "Total Visits": 5072.0, "Total Visitors": 2695.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1138.0, "Total Transactions": 61.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.64, "MEDIAN_SPEND_PER_CUSTOMER": 24.07 }, "geometry": { "type": "Point", "coordinates": [ -75.061192, 40.049399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-fmk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054375, "LONGITUDE": -75.072167, "DATE_RANGE_START": 2022, "Total Visits": 317.0, "Total Visitors": 291.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8789.0, "Total Transactions": 613.0, "Total Customers": 451.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 15.15 }, "geometry": { "type": "Point", "coordinates": [ -75.072167, 40.054375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 145.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9765.0, "Total Transactions": 662.0, "Total Customers": 500.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pp5-p35", "LOCATION_NAME": "Martin's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991299, "LONGITUDE": -75.123216, "DATE_RANGE_START": 2022, "Total Visits": 899.0, "Total Visitors": 671.0, "POI_CBG": 421010177022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1160.0, "Total Transactions": 84.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.08, "MEDIAN_SPEND_PER_CUSTOMER": 29.94 }, "geometry": { "type": "Point", "coordinates": [ -75.123216, 39.991299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095264, "LONGITUDE": -75.015635, "DATE_RANGE_START": 2022, "Total Visits": 2193.0, "Total Visitors": 1256.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6604.0, "Total Transactions": 638.0, "Total Customers": 385.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.86, "MEDIAN_SPEND_PER_CUSTOMER": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015635, 40.095264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 113.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7906.0, "Total Transactions": 878.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.21, "MEDIAN_SPEND_PER_CUSTOMER": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "LOCATION_NAME": "Walnut Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957098, "LONGITUDE": -75.224484, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 40.0, "POI_CBG": 421010085002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 12238.0, "Total Transactions": 277.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.45, "MEDIAN_SPEND_PER_CUSTOMER": 77.48 }, "geometry": { "type": "Point", "coordinates": [ -75.224484, 39.957098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pjf-jvz", "LOCATION_NAME": "Laurel Hill Gardens", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 40.073009, "LONGITUDE": -75.201894, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010257003.0, "MEDIAN_DWELL": null, "Total Spend": 1917.0, "Total Transactions": 24.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.13, "MEDIAN_SPEND_PER_CUSTOMER": 51.75 }, "geometry": { "type": "Point", "coordinates": [ -75.201894, 40.073009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-fzz", "LOCATION_NAME": "Elmwood Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.919867, "LONGITUDE": -75.233893, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 63.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233893, 39.919867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-n5z", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954715, "LONGITUDE": -75.168495, "DATE_RANGE_START": 2022, "Total Visits": 3279.0, "Total Visitors": 1596.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 392.0, "Total Spend": 3515.0, "Total Transactions": 301.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.39, "MEDIAN_SPEND_PER_CUSTOMER": 12.85 }, "geometry": { "type": "Point", "coordinates": [ -75.168495, 39.954715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmb-8n5", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951212, "LONGITUDE": -75.156618, "DATE_RANGE_START": 2022, "Total Visits": 1491.0, "Total Visitors": 1068.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 7692.0, "Total Transactions": 606.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.156618, 39.951212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 333.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 18194.0, "Total Transactions": 1552.0, "Total Customers": 1085.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.56, "MEDIAN_SPEND_PER_CUSTOMER": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9k-33q", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.1011, "LONGITUDE": -75.008197, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 82.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 73.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.67, "MEDIAN_SPEND_PER_CUSTOMER": 5.67 }, "geometry": { "type": "Point", "coordinates": [ -75.008197, 40.1011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 64.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 665.0, "Total Spend": 3848.0, "Total Transactions": 474.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.32 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-sh5", "LOCATION_NAME": "Gryphon Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974248, "LONGITUDE": -75.135044, "DATE_RANGE_START": 2022, "Total Visits": 434.0, "Total Visitors": 293.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 204.0, "Total Spend": 270.0, "Total Transactions": 19.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.01, "MEDIAN_SPEND_PER_CUSTOMER": 67.19 }, "geometry": { "type": "Point", "coordinates": [ -75.135044, 39.974248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "LOCATION_NAME": "Golden Crust Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2013.0, "Total Transactions": 112.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.991689, "LONGITUDE": -75.090963, "DATE_RANGE_START": 2022, "Total Visits": 3197.0, "Total Visitors": 1847.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 118046.0, "Total Transactions": 733.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.44, "MEDIAN_SPEND_PER_CUSTOMER": 69.29 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 39.991689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2022, "Total Visits": 1456.0, "Total Visitors": 648.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 12230.0, "Total Transactions": 202.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.34, "MEDIAN_SPEND_PER_CUSTOMER": 34.01 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-7yv", "LOCATION_NAME": "7 Brothers Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.027871, "LONGITUDE": -75.125835, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 420.0, "POI_CBG": 421010286001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 111.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.98 }, "geometry": { "type": "Point", "coordinates": [ -75.125835, 40.027871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25d-222@628-pm3-vpv", "LOCATION_NAME": "Favors & Flavors", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.92705, "LONGITUDE": -75.166412, "DATE_RANGE_START": 2022, "Total Visits": 709.0, "Total Visitors": 484.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 46.0, "Total Spend": 849.0, "Total Transactions": 110.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.18, "MEDIAN_SPEND_PER_CUSTOMER": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.166412, 39.92705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.942529, "LONGITUDE": -75.164834, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 108.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 131.0, "Total Spend": 1219.0, "Total Transactions": 56.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.14, "MEDIAN_SPEND_PER_CUSTOMER": 20.68 }, "geometry": { "type": "Point", "coordinates": [ -75.164834, 39.942529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 64.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4291.0, "Total Transactions": 57.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.99, "MEDIAN_SPEND_PER_CUSTOMER": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p7w-gc5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.072485, "LONGITUDE": -75.075778, "DATE_RANGE_START": 2022, "Total Visits": 796.0, "Total Visitors": 483.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1044.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.08 }, "geometry": { "type": "Point", "coordinates": [ -75.075778, 40.072485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "LOCATION_NAME": "Anthropologie", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950352, "LONGITUDE": -75.170778, "DATE_RANGE_START": 2022, "Total Visits": 4134.0, "Total Visitors": 2798.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 196929.0, "Total Transactions": 1308.0, "Total Customers": 909.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.11, "MEDIAN_SPEND_PER_CUSTOMER": 99.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170778, 39.950352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-w8v", "LOCATION_NAME": "Aéropostale", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.086851, "LONGITUDE": -74.962597, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 169.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2622.0, "Total Transactions": 61.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.94, "MEDIAN_SPEND_PER_CUSTOMER": 41.25 }, "geometry": { "type": "Point", "coordinates": [ -74.962597, 40.086851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914434, "LONGITUDE": -75.156267, "DATE_RANGE_START": 2022, "Total Visits": 444.0, "Total Visitors": 244.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5902.0, "Total Transactions": 815.0, "Total Customers": 324.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 9.96 }, "geometry": { "type": "Point", "coordinates": [ -75.156267, 39.914434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2022, "Total Visits": 1120.0, "Total Visitors": 713.0, "POI_CBG": 421010337022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7432.0, "Total Transactions": 460.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "LOCATION_NAME": "Kiehl's", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2022, "Total Visits": 354.0, "Total Visitors": 322.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4518.0, "Total Transactions": 75.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.36, "MEDIAN_SPEND_PER_CUSTOMER": 52.38 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087035, "LONGITUDE": -74.960571, "DATE_RANGE_START": 2022, "Total Visits": 1153.0, "Total Visitors": 965.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3919.0, "Total Transactions": 87.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.98, "MEDIAN_SPEND_PER_CUSTOMER": 33.42 }, "geometry": { "type": "Point", "coordinates": [ -74.960571, 40.087035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "LOCATION_NAME": "Crown Chicken and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 136.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 13767.0, "Total Transactions": 1066.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 26.86 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgf-33q", "LOCATION_NAME": "Ochatto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954494, "LONGITUDE": -75.195113, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 106.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 37.0, "Total Spend": 11219.0, "Total Transactions": 251.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.36, "MEDIAN_SPEND_PER_CUSTOMER": 80.04 }, "geometry": { "type": "Point", "coordinates": [ -75.195113, 39.954494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-wc5", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.086584, "LONGITUDE": -74.962146, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 160.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 230.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.89, "MEDIAN_SPEND_PER_CUSTOMER": 65.89 }, "geometry": { "type": "Point", "coordinates": [ -74.962146, 40.086584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "LOCATION_NAME": "Sampan", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949535, "LONGITUDE": -75.16221, "DATE_RANGE_START": 2022, "Total Visits": 5903.0, "Total Visitors": 3627.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 165.0, "Total Spend": 21821.0, "Total Transactions": 282.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.4, "MEDIAN_SPEND_PER_CUSTOMER": 98.59 }, "geometry": { "type": "Point", "coordinates": [ -75.16221, 39.949535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2022, "Total Visits": 359.0, "Total Visitors": 209.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 791.0, "Total Transactions": 103.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.58, "MEDIAN_SPEND_PER_CUSTOMER": 7.21 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2022, "Total Visits": 566.0, "Total Visitors": 411.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14627.0, "Total Transactions": 824.0, "Total Customers": 608.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.37, "MEDIAN_SPEND_PER_CUSTOMER": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-jgk", "LOCATION_NAME": "Saxbys Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952783, "LONGITUDE": -75.203063, "DATE_RANGE_START": 2022, "Total Visits": 498.0, "Total Visitors": 291.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 136.0, "Total Spend": 36.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.42, "MEDIAN_SPEND_PER_CUSTOMER": 6.42 }, "geometry": { "type": "Point", "coordinates": [ -75.203063, 39.952783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061832, "LONGITUDE": -75.084015, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2685.0, "Total Transactions": 371.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.44, "MEDIAN_SPEND_PER_CUSTOMER": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.084015, 40.061832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@63s-dw9-8jv", "LOCATION_NAME": "Stellar News", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.876747, "LONGITUDE": -75.247168, "DATE_RANGE_START": 2022, "Total Visits": 313162.0, "Total Visitors": 180913.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 148.0, "Total Transactions": 19.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.71, "MEDIAN_SPEND_PER_CUSTOMER": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.247168, 39.876747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5fz", "LOCATION_NAME": "Cogito Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949868, "LONGITUDE": -75.160219, "DATE_RANGE_START": 2022, "Total Visits": 6244.0, "Total Visitors": 3777.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 231.0, "Total Transactions": 26.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160219, 39.949868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-225@628-p85-p35", "LOCATION_NAME": "Cafe Carmela", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05717, "LONGITUDE": -75.030373, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 164.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1631.0, "Total Transactions": 40.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030373, 40.05717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951643, "LONGITUDE": -75.17217, "DATE_RANGE_START": 2022, "Total Visits": 1627.0, "Total Visitors": 1270.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 146916.0, "Total Transactions": 4789.0, "Total Customers": 3106.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.35, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17217, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 204.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 30.0, "Total Spend": 30395.0, "Total Transactions": 763.0, "Total Customers": 340.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.2, "MEDIAN_SPEND_PER_CUSTOMER": 62.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 225.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1319.0, "Total Transactions": 138.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.15, "MEDIAN_SPEND_PER_CUSTOMER": 11.11 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-5pv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952074, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2022, "Total Visits": 639.0, "Total Visitors": 509.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 6360.0, "Total Transactions": 1030.0, "Total Customers": 493.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 7.44 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.952074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-rtv", "LOCATION_NAME": "Takka Grill and Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029529, "LONGITUDE": -75.180791, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3142.0, "Total Transactions": 138.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.76, "MEDIAN_SPEND_PER_CUSTOMER": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.180791, 40.029529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "LOCATION_NAME": "Total Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2022, "Total Visits": 439.0, "Total Visitors": 300.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 47.0, "Total Spend": 10238.0, "Total Transactions": 287.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 45.34 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-6hq", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.087733, "LONGITUDE": -74.961181, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 233.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.22, "MEDIAN_SPEND_PER_CUSTOMER": 11.15 }, "geometry": { "type": "Point", "coordinates": [ -74.961181, 40.087733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgg-dy9", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.00283, "LONGITUDE": -75.164018, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 66.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3529.0, "Total Transactions": 192.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.98, "MEDIAN_SPEND_PER_CUSTOMER": 21.94 }, "geometry": { "type": "Point", "coordinates": [ -75.164018, 40.00283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.037805, "LONGITUDE": -75.117796, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 80.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 468.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.15, "MEDIAN_SPEND_PER_CUSTOMER": 47.15 }, "geometry": { "type": "Point", "coordinates": [ -75.117796, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-8sq", "LOCATION_NAME": "Aéropostale", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951989, "LONGITUDE": -75.155796, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 773.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.94, "MEDIAN_SPEND_PER_CUSTOMER": 23.94 }, "geometry": { "type": "Point", "coordinates": [ -75.155796, 39.951989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-223@628-pm4-mc5", "LOCATION_NAME": "Casa Mexico", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935496, "LONGITUDE": -75.15875, "DATE_RANGE_START": 2022, "Total Visits": 1315.0, "Total Visitors": 894.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 35.0, "Total Spend": 6253.0, "Total Transactions": 124.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 66.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15875, 39.935496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938246, "LONGITUDE": -75.166948, "DATE_RANGE_START": 2022, "Total Visits": 5983.0, "Total Visitors": 3211.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 28.0, "Total Spend": 6547.0, "Total Transactions": 779.0, "Total Customers": 544.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.43, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.938246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgh-vs5", "LOCATION_NAME": "Honey Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982386, "LONGITUDE": -75.153596, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 12.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 120.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.153596, 39.982386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-gzf", "LOCATION_NAME": "Romano Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.023038, "LONGITUDE": -75.133728, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": null, "Total Spend": 10916.0, "Total Transactions": 33.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 374.0, "MEDIAN_SPEND_PER_CUSTOMER": 748.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133728, 40.023038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "LOCATION_NAME": "Buddakan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948922, "LONGITUDE": -75.147091, "DATE_RANGE_START": 2022, "Total Visits": 390.0, "Total Visitors": 322.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 81.0, "Total Spend": 78395.0, "Total Transactions": 409.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 168.48, "MEDIAN_SPEND_PER_CUSTOMER": 260.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147091, 39.948922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvx-xh5", "LOCATION_NAME": "Jinxed", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.949202, "LONGITUDE": -75.213783, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 101.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 703.0, "Total Transactions": 23.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213783, 39.949202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "LOCATION_NAME": "Ruckus Gallery", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 240.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 20302.0, "Total Transactions": 601.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.63, "MEDIAN_SPEND_PER_CUSTOMER": 52.12 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pp4-vfz", "LOCATION_NAME": "Franco's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982045, "LONGITUDE": -75.121584, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 12.0, "POI_CBG": 421010160004.0, "MEDIAN_DWELL": 401.0, "Total Spend": 2666.0, "Total Transactions": 101.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.04, "MEDIAN_SPEND_PER_CUSTOMER": 58.54 }, "geometry": { "type": "Point", "coordinates": [ -75.121584, 39.982045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 206.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.16, "MEDIAN_SPEND_PER_CUSTOMER": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvw-hwk", "LOCATION_NAME": "Quick & Quality", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953576, "LONGITUDE": -75.219432, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 19.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2855.0, "Total Transactions": 49.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219432, 39.953576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-223@628-p8n-389", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02098, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 127.0, "POI_CBG": 421010323001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10521.0, "Total Transactions": 544.0, "Total Customers": 254.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 20.12 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.02098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8v-b8v", "LOCATION_NAME": "Sam's Club Fuel Center", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.091819, "LONGITUDE": -74.963857, "DATE_RANGE_START": 2022, "Total Visits": 4078.0, "Total Visitors": 2207.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 983.0, "Total Transactions": 17.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.68, "MEDIAN_SPEND_PER_CUSTOMER": 237.58 }, "geometry": { "type": "Point", "coordinates": [ -74.963857, 40.091819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pj2-tsq", "LOCATION_NAME": "Beijing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.015027, "LONGITUDE": -75.108817, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 21.0, "POI_CBG": 421010191004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 600.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.63, "MEDIAN_SPEND_PER_CUSTOMER": 61.25 }, "geometry": { "type": "Point", "coordinates": [ -75.108817, 40.015027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2022, "Total Visits": 408.0, "Total Visitors": 324.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 517.0, "Total Transactions": 42.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.03, "MEDIAN_SPEND_PER_CUSTOMER": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040308, "LONGITUDE": -75.143944, "DATE_RANGE_START": 2022, "Total Visits": 249.0, "Total Visitors": 192.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1316.0, "Total Transactions": 85.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.11, "MEDIAN_SPEND_PER_CUSTOMER": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.143944, 40.040308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-kcq", "LOCATION_NAME": "Sushi Ya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973653, "LONGITUDE": -75.177969, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 125.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2382.0, "Total Transactions": 70.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.27, "MEDIAN_SPEND_PER_CUSTOMER": 55.57 }, "geometry": { "type": "Point", "coordinates": [ -75.177969, 39.973653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 80.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 401.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.04, "MEDIAN_SPEND_PER_CUSTOMER": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953718, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 200.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4878.0, "Total Transactions": 878.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.953718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958195, "LONGITUDE": -75.208247, "DATE_RANGE_START": 2022, "Total Visits": 270.0, "Total Visitors": 206.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8053.0, "Total Transactions": 960.0, "Total Customers": 474.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.79, "MEDIAN_SPEND_PER_CUSTOMER": 10.23 }, "geometry": { "type": "Point", "coordinates": [ -75.208247, 39.958195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pj5-qs5", "LOCATION_NAME": "Craytaste", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010836, "LONGITUDE": -75.139631, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010198004.0, "MEDIAN_DWELL": null, "Total Spend": 661.0, "Total Transactions": 16.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.1, "MEDIAN_SPEND_PER_CUSTOMER": 168.96 }, "geometry": { "type": "Point", "coordinates": [ -75.139631, 40.010836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pmb-7yv", "LOCATION_NAME": "Umi Sushi And Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95348, "LONGITUDE": -75.159046, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 5270.0, "Total Transactions": 333.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.28, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.159046, 39.95348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phk-yvz", "LOCATION_NAME": "Gogi BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054866, "LONGITUDE": -75.125965, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 68.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 491.0, "Total Spend": 2352.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.85, "MEDIAN_SPEND_PER_CUSTOMER": 44.85 }, "geometry": { "type": "Point", "coordinates": [ -75.125965, 40.054866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@63s-dw4-rzf", "LOCATION_NAME": "Mezzogiorno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895194, "LONGITUDE": -75.227968, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 44463.0, "Total Transactions": 3220.0, "Total Customers": 1531.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227968, 39.895194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm7-nwk", "LOCATION_NAME": "The Fresh Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934521, "LONGITUDE": -75.179405, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 551.0, "Total Transactions": 44.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179405, 39.934521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "LOCATION_NAME": "Unit Su Vege", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 80.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 11308.0, "Total Transactions": 244.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.17, "MEDIAN_SPEND_PER_CUSTOMER": 72.16 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "LOCATION_NAME": "Honey Bee Gourmet Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945912, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 115.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 387.0, "Total Transactions": 49.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 39.945912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2022, "Total Visits": 645.0, "Total Visitors": 369.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1554.0, "Total Transactions": 59.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.59, "MEDIAN_SPEND_PER_CUSTOMER": 30.05 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.960173, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 127.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1321.0, "Total Transactions": 185.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.97, "MEDIAN_SPEND_PER_CUSTOMER": 9.82 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.960173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phz-z4v", "LOCATION_NAME": "BooksRun com", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 40.005848, "LONGITUDE": -75.117861, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 56.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 520.0, "Total Spend": 3726.0, "Total Transactions": 89.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.08, "MEDIAN_SPEND_PER_CUSTOMER": 61.02 }, "geometry": { "type": "Point", "coordinates": [ -75.117861, 40.005848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-p5f", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.977232, "LONGITUDE": -75.226077, "DATE_RANGE_START": 2022, "Total Visits": 380.0, "Total Visitors": 282.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 216.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.62, "MEDIAN_SPEND_PER_CUSTOMER": 7.93 }, "geometry": { "type": "Point", "coordinates": [ -75.226077, 39.977232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.051082, "LONGITUDE": -75.059668, "DATE_RANGE_START": 2022, "Total Visits": 5439.0, "Total Visitors": 3652.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 223853.0, "Total Transactions": 4883.0, "Total Customers": 2817.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.06, "MEDIAN_SPEND_PER_CUSTOMER": 45.39 }, "geometry": { "type": "Point", "coordinates": [ -75.059668, 40.051082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 37.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1581.0, "Total Transactions": 152.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.74, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "LOCATION_NAME": "Four Seasons Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 56.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1391.0, "Total Transactions": 38.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.54, "MEDIAN_SPEND_PER_CUSTOMER": 62.18 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-2ff", "LOCATION_NAME": "Wyoming Mini market", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.020508, "LONGITUDE": -75.11429, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 82.0, "POI_CBG": 421010289022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 228.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.22, "MEDIAN_SPEND_PER_CUSTOMER": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.11429, 40.020508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7w-wc5", "LOCATION_NAME": "McNally's Tavern Mayfair", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035746, "LONGITUDE": -75.049243, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": null, "Total Spend": 6454.0, "Total Transactions": 136.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.59, "MEDIAN_SPEND_PER_CUSTOMER": 74.64 }, "geometry": { "type": "Point", "coordinates": [ -75.049243, 40.035746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "LOCATION_NAME": "Kennedy Food Garden", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2022, "Total Visits": 296.0, "Total Visitors": 218.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6527.0, "Total Transactions": 352.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.62, "MEDIAN_SPEND_PER_CUSTOMER": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pp4-zs5", "LOCATION_NAME": "Kensington Mini Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.988738, "LONGITUDE": -75.127705, "DATE_RANGE_START": 2022, "Total Visits": 1998.0, "Total Visitors": 1308.0, "POI_CBG": 421010163001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 930.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.0, "MEDIAN_SPEND_PER_CUSTOMER": 154.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127705, 39.988738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmb-7yv", "LOCATION_NAME": "John Yi Fish Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953479, "LONGITUDE": -75.159041, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 10960.0, "Total Transactions": 291.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.26, "MEDIAN_SPEND_PER_CUSTOMER": 71.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159041, 39.953479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-89z", "LOCATION_NAME": "Dasiwa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969169, "LONGITUDE": -75.179702, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": null, "Total Spend": 4154.0, "Total Transactions": 150.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.6, "MEDIAN_SPEND_PER_CUSTOMER": 38.82 }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.969169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@63s-dvv-rx5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923209, "LONGITUDE": -75.238375, "DATE_RANGE_START": 2022, "Total Visits": 307.0, "Total Visitors": 220.0, "POI_CBG": 421010063003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7463.0, "Total Transactions": 329.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.97, "MEDIAN_SPEND_PER_CUSTOMER": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.238375, 39.923209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-4d9", "LOCATION_NAME": "Americas Quality Tire", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.020793, "LONGITUDE": -75.063071, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 19.0, "POI_CBG": 421010319003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2477.0, "Total Transactions": 28.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.92, "MEDIAN_SPEND_PER_CUSTOMER": 111.84 }, "geometry": { "type": "Point", "coordinates": [ -75.063071, 40.020793 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942567, "LONGITUDE": -75.179023, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 4282.0, "Total Transactions": 514.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.94, "MEDIAN_SPEND_PER_CUSTOMER": 13.22 }, "geometry": { "type": "Point", "coordinates": [ -75.179023, 39.942567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-wkz", "LOCATION_NAME": "rue21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088728, "LONGITUDE": -74.961198, "DATE_RANGE_START": 2022, "Total Visits": 300.0, "Total Visitors": 263.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 309116.0, "Total Transactions": 8498.0, "Total Customers": 5880.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.8, "MEDIAN_SPEND_PER_CUSTOMER": 37.92 }, "geometry": { "type": "Point", "coordinates": [ -74.961198, 40.088728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-94v", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951985, "LONGITUDE": -75.157156, "DATE_RANGE_START": 2022, "Total Visits": 21494.0, "Total Visitors": 13739.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1258.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.6, "MEDIAN_SPEND_PER_CUSTOMER": 70.96 }, "geometry": { "type": "Point", "coordinates": [ -75.157156, 39.951985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-vcq", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.923962, "LONGITUDE": -75.139231, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 103.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2560.0, "Total Transactions": 33.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.99, "MEDIAN_SPEND_PER_CUSTOMER": 53.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139231, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pm9-tjv", "LOCATION_NAME": "Eden Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949548, "LONGITUDE": -75.154292, "DATE_RANGE_START": 2022, "Total Visits": 1373.0, "Total Visitors": 1031.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 1916.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 275.0, "MEDIAN_SPEND_PER_CUSTOMER": 550.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154292, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 89.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 131.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p92-mzf", "LOCATION_NAME": "Philly Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.093695, "LONGITUDE": -74.96082, "DATE_RANGE_START": 2022, "Total Visits": 329.0, "Total Visitors": 280.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 239.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.13, "MEDIAN_SPEND_PER_CUSTOMER": 37.18 }, "geometry": { "type": "Point", "coordinates": [ -74.96082, 40.093695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-gp9", "LOCATION_NAME": "Mercato BYOB", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946499, "LONGITUDE": -75.161768, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5700.0, "Total Transactions": 57.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.31, "MEDIAN_SPEND_PER_CUSTOMER": 202.42 }, "geometry": { "type": "Point", "coordinates": [ -75.161768, 39.946499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "LOCATION_NAME": "General Tso", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 21.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 2750.0, "Total Transactions": 80.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.8, "MEDIAN_SPEND_PER_CUSTOMER": 74.55 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgf-73q", "LOCATION_NAME": "Lancaster Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.965853, "LONGITUDE": -75.206317, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 33.0, "POI_CBG": 421010107002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 141.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206317, 39.965853 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "LOCATION_NAME": "Bleu Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 80.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 551.0, "Total Spend": 2768.0, "Total Transactions": 42.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.35, "MEDIAN_SPEND_PER_CUSTOMER": 98.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pgb-249", "LOCATION_NAME": "Nom Wah Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956611, "LONGITUDE": -75.160874, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 162.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 7523.0, "Total Transactions": 152.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.6, "MEDIAN_SPEND_PER_CUSTOMER": 89.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160874, 39.956611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "LOCATION_NAME": "J & P Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953491, "LONGITUDE": -75.218951, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 37.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 210.0, "Total Spend": 5332.0, "Total Transactions": 197.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.28, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218951, 39.953491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "LOCATION_NAME": "DJ Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 214.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 4.0, "Total Spend": 228.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.65, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "LOCATION_NAME": "Tio Flores", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94381, "LONGITUDE": -75.168972, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 115.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 647.0, "Total Spend": 1977.0, "Total Transactions": 31.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.98, "MEDIAN_SPEND_PER_CUSTOMER": 83.42 }, "geometry": { "type": "Point", "coordinates": [ -75.168972, 39.94381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "LOCATION_NAME": "Yamitsuki Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2022, "Total Visits": 503.0, "Total Visitors": 415.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 13560.0, "Total Transactions": 308.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.86, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-228@628-p8t-w49", "LOCATION_NAME": "Street Corner", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.087377, "LONGITUDE": -74.961635, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 698.0, "Total Transactions": 110.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961635, 40.087377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pmb-v75", "LOCATION_NAME": "Mei Mei Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948931, "LONGITUDE": -75.143532, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 247.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 79.0, "Total Spend": 8558.0, "Total Transactions": 56.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.37, "MEDIAN_SPEND_PER_CUSTOMER": 186.74 }, "geometry": { "type": "Point", "coordinates": [ -75.143532, 39.948931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "LOCATION_NAME": "East Coast Tropicals", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 44.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4359.0, "Total Transactions": 33.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.91, "MEDIAN_SPEND_PER_CUSTOMER": 178.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-mzf", "LOCATION_NAME": "Tir na nOg Irish Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.954415, "LONGITUDE": -75.16676, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 54.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 183.0, "Total Spend": 6007.0, "Total Transactions": 30.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.75, "MEDIAN_SPEND_PER_CUSTOMER": 71.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16676, 39.954415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2022, "Total Visits": 821.0, "Total Visitors": 618.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 18925.0, "Total Transactions": 899.0, "Total Customers": 585.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.19, "MEDIAN_SPEND_PER_CUSTOMER": 19.61 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "LOCATION_NAME": "Pickwick Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952852, "LONGITUDE": -75.169574, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 92.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 286.0, "Total Spend": 4391.0, "Total Transactions": 139.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.98, "MEDIAN_SPEND_PER_CUSTOMER": 35.24 }, "geometry": { "type": "Point", "coordinates": [ -75.169574, 39.952852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phk-yvz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054784, "LONGITUDE": -75.126802, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 178.0, "POI_CBG": 421010269001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7510.0, "Total Transactions": 361.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.36, "MEDIAN_SPEND_PER_CUSTOMER": 23.77 }, "geometry": { "type": "Point", "coordinates": [ -75.126802, 40.054784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.914298, "LONGITUDE": -75.149292, "DATE_RANGE_START": 2022, "Total Visits": 3186.0, "Total Visitors": 2004.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1347.0, "Total Transactions": 37.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.73 }, "geometry": { "type": "Point", "coordinates": [ -75.149292, 39.914298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.087401, "LONGITUDE": -74.970519, "DATE_RANGE_START": 2022, "Total Visits": 1943.0, "Total Visitors": 1291.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1767.0, "Total Transactions": 31.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.86, "MEDIAN_SPEND_PER_CUSTOMER": 76.34 }, "geometry": { "type": "Point", "coordinates": [ -74.970519, 40.087401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-g8v", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.06232, "LONGITUDE": -75.152136, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 159.0, "POI_CBG": 421010265001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1886.0, "Total Transactions": 44.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152136, 40.06232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p7v-vxq", "LOCATION_NAME": "Algon Auto Clinic", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055758, "LONGITUDE": -75.073258, "DATE_RANGE_START": 2022, "Total Visits": 307.0, "Total Visitors": 166.0, "POI_CBG": 421010338002.0, "MEDIAN_DWELL": 173.0, "Total Spend": 1204.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073258, 40.055758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-pn5", "LOCATION_NAME": "U Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954979, "LONGITUDE": -75.202634, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 91.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 35.0, "Total Spend": 7130.0, "Total Transactions": 211.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.22, "MEDIAN_SPEND_PER_CUSTOMER": 63.92 }, "geometry": { "type": "Point", "coordinates": [ -75.202634, 39.954979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgj-cqz", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977801, "LONGITUDE": -75.158494, "DATE_RANGE_START": 2022, "Total Visits": 2385.0, "Total Visitors": 1744.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 64.0, "Total Spend": 1598.0, "Total Transactions": 105.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.15, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158494, 39.977801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-sdv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915109, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 358.0, "Total Transactions": 19.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.13, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.915109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2022, "Total Visits": 878.0, "Total Visitors": 620.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 72006.0, "Total Transactions": 4249.0, "Total Customers": 2939.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.35, "MEDIAN_SPEND_PER_CUSTOMER": 18.54 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-223@628-p7x-7dv", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050189, "LONGITUDE": -75.064815, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 78.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 42.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.01, "MEDIAN_SPEND_PER_CUSTOMER": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.064815, 40.050189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "LOCATION_NAME": "Chew Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2022, "Total Visits": 157.0, "Total Visitors": 59.0, "POI_CBG": 421010252007.0, "MEDIAN_DWELL": 198.0, "Total Spend": 3873.0, "Total Transactions": 401.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 31.36 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089385, "LONGITUDE": -74.964383, "DATE_RANGE_START": 2022, "Total Visits": 280.0, "Total Visitors": 240.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4081.0, "Total Transactions": 561.0, "Total Customers": 348.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 8.03 }, "geometry": { "type": "Point", "coordinates": [ -74.964383, 40.089385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5fz", "LOCATION_NAME": "Pressed Juicery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950032, "LONGITUDE": -75.161637, "DATE_RANGE_START": 2022, "Total Visits": 822.0, "Total Visitors": 653.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 58.0, "Total Spend": 2481.0, "Total Transactions": 218.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.34, "MEDIAN_SPEND_PER_CUSTOMER": 12.19 }, "geometry": { "type": "Point", "coordinates": [ -75.161637, 39.950032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfv-649", "LOCATION_NAME": "Pelham Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043444, "LONGITUDE": -75.190762, "DATE_RANGE_START": 2022, "Total Visits": 706.0, "Total Visitors": 427.0, "POI_CBG": 421010237001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 813.0, "Total Transactions": 26.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.88, "MEDIAN_SPEND_PER_CUSTOMER": 74.21 }, "geometry": { "type": "Point", "coordinates": [ -75.190762, 40.043444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.012396, "LONGITUDE": -75.112446, "DATE_RANGE_START": 2022, "Total Visits": 390.0, "Total Visitors": 267.0, "POI_CBG": 421010289012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 19613.0, "Total Transactions": 768.0, "Total Customers": 441.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.112446, 40.012396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pp5-ht9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.983672, "LONGITUDE": -75.115989, "DATE_RANGE_START": 2022, "Total Visits": 1031.0, "Total Visitors": 638.0, "POI_CBG": 421010179005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 305.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.85, "MEDIAN_SPEND_PER_CUSTOMER": 29.85 }, "geometry": { "type": "Point", "coordinates": [ -75.115989, 39.983672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pm4-jn5", "LOCATION_NAME": "Los Carnales Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.936194, "LONGITUDE": -75.156685, "DATE_RANGE_START": 2022, "Total Visits": 385.0, "Total Visitors": 268.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 47.0, "Total Spend": 1547.0, "Total Transactions": 106.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.25, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156685, 39.936194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955622, "LONGITUDE": -75.192214, "DATE_RANGE_START": 2022, "Total Visits": 2303.0, "Total Visitors": 1484.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 63.0, "Total Spend": 1460.0, "Total Transactions": 125.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.22, "MEDIAN_SPEND_PER_CUSTOMER": 12.33 }, "geometry": { "type": "Point", "coordinates": [ -75.192214, 39.955622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "LOCATION_NAME": "Petrovsky Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2022, "Total Visits": 1561.0, "Total Visitors": 864.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 54469.0, "Total Transactions": 1510.0, "Total Customers": 392.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.56, "MEDIAN_SPEND_PER_CUSTOMER": 79.72 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2022, "Total Visits": 979.0, "Total Visitors": 692.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5715.0, "Total Transactions": 251.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.55, "MEDIAN_SPEND_PER_CUSTOMER": 23.13 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.91267, "LONGITUDE": -75.154671, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 64.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1438.0, "Total Transactions": 40.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.54, "MEDIAN_SPEND_PER_CUSTOMER": 25.54 }, "geometry": { "type": "Point", "coordinates": [ -75.154671, 39.91267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.993791, "LONGITUDE": -75.155151, "DATE_RANGE_START": 2022, "Total Visits": 1484.0, "Total Visitors": 1052.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 430.0, "Total Transactions": 17.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.05, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155151, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7v-skf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055128, "LONGITUDE": -75.073724, "DATE_RANGE_START": 2022, "Total Visits": 1357.0, "Total Visitors": 854.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2189.0, "Total Transactions": 77.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.23, "MEDIAN_SPEND_PER_CUSTOMER": 47.93 }, "geometry": { "type": "Point", "coordinates": [ -75.073724, 40.055128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "LOCATION_NAME": "Tommy Hilfiger", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089952, "LONGITUDE": -74.962035, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 89.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5045.0, "Total Transactions": 80.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 54.29 }, "geometry": { "type": "Point", "coordinates": [ -74.962035, 40.089952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2022, "Total Visits": 432.0, "Total Visitors": 291.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 84199.0, "Total Transactions": 2850.0, "Total Customers": 1413.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.77, "MEDIAN_SPEND_PER_CUSTOMER": 35.86 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.076084, "LONGITUDE": -75.031448, "DATE_RANGE_START": 2022, "Total Visits": 1308.0, "Total Visitors": 1113.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 16386.0, "Total Transactions": 798.0, "Total Customers": 624.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.91 }, "geometry": { "type": "Point", "coordinates": [ -75.031448, 40.076084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "LOCATION_NAME": "Banana Republic Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952113, "LONGITUDE": -75.172438, "DATE_RANGE_START": 2022, "Total Visits": 312.0, "Total Visitors": 263.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 22.0, "Total Spend": 7803.0, "Total Transactions": 127.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.52, "MEDIAN_SPEND_PER_CUSTOMER": 44.49 }, "geometry": { "type": "Point", "coordinates": [ -75.172438, 39.952113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "LOCATION_NAME": "Vince.", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2022, "Total Visits": 2801.0, "Total Visitors": 2228.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 3320.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 306.5, "MEDIAN_SPEND_PER_CUSTOMER": 306.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "LOCATION_NAME": "Love Vape", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 63.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 10557.0, "Total Transactions": 314.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.81, "MEDIAN_SPEND_PER_CUSTOMER": 60.48 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "LOCATION_NAME": "Quetzally", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941598, "LONGITUDE": -75.163087, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": null, "Total Spend": 2146.0, "Total Transactions": 66.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.21, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163087, 39.941598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-249", "LOCATION_NAME": "Red Hook Coffee & Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938563, "LONGITUDE": -75.149659, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 17.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 166.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.17, "MEDIAN_SPEND_PER_CUSTOMER": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.149659, 39.938563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-snq", "LOCATION_NAME": "Atlanta Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922758, "LONGITUDE": -75.186158, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2832.0, "Total Transactions": 105.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.98, "MEDIAN_SPEND_PER_CUSTOMER": 49.96 }, "geometry": { "type": "Point", "coordinates": [ -75.186158, 39.922758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "LOCATION_NAME": "Sorrento's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 23.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 303.0, "Total Spend": 2974.0, "Total Transactions": 127.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.69, "MEDIAN_SPEND_PER_CUSTOMER": 44.42 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-gtv", "LOCATION_NAME": "Greenstreet Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946471, "LONGITUDE": -75.159628, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1339.0, "Total Transactions": 162.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.159628, 39.946471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050139, "LONGITUDE": -75.066802, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 298.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 697.0, "Total Transactions": 59.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.89, "MEDIAN_SPEND_PER_CUSTOMER": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.066802, 40.050139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2022, "Total Visits": 2329.0, "Total Visitors": 1634.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2821.0, "Total Transactions": 84.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.2, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-kvf", "LOCATION_NAME": "Long In the Tooth", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.951536, "LONGITUDE": -75.174727, "DATE_RANGE_START": 2022, "Total Visits": 1801.0, "Total Visitors": 1275.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 412.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 118.23 }, "geometry": { "type": "Point", "coordinates": [ -75.174727, 39.951536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-r6k", "LOCATION_NAME": "Loop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.944579, "LONGITUDE": -75.174065, "DATE_RANGE_START": 2022, "Total Visits": 253.0, "Total Visitors": 167.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 241.0, "Total Spend": 4369.0, "Total Transactions": 82.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.2, "MEDIAN_SPEND_PER_CUSTOMER": 66.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174065, 39.944579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvw-wzf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.958527, "LONGITUDE": -75.235976, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 117.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1404.0, "Total Transactions": 138.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.49, "MEDIAN_SPEND_PER_CUSTOMER": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235976, 39.958527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-8sq", "LOCATION_NAME": "Edible Arrangements", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.949551, "LONGITUDE": -75.160537, "DATE_RANGE_START": 2022, "Total Visits": 345.0, "Total Visitors": 312.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 82.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.99, "MEDIAN_SPEND_PER_CUSTOMER": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160537, 39.949551 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009461, "LONGITUDE": -75.150639, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2766.0, "Total Transactions": 409.0, "Total Customers": 164.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.44, "MEDIAN_SPEND_PER_CUSTOMER": 7.93 }, "geometry": { "type": "Point", "coordinates": [ -75.150639, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-ygk", "LOCATION_NAME": "Shaxian Delicacies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953861, "LONGITUDE": -75.156353, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 155.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 511.0, "Total Transactions": 28.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156353, 39.953861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7w-tn5", "LOCATION_NAME": "Way Out", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.047236, "LONGITUDE": -75.055695, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 115.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 31.0, "Total Spend": 9631.0, "Total Transactions": 197.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055695, 40.047236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p76-b6k", "LOCATION_NAME": "Atlantic Tactical", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.031408, "LONGITUDE": -75.022482, "DATE_RANGE_START": 2022, "Total Visits": 554.0, "Total Visitors": 423.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 55.0, "Total Spend": 4495.0, "Total Transactions": 23.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.16, "MEDIAN_SPEND_PER_CUSTOMER": 73.63 }, "geometry": { "type": "Point", "coordinates": [ -75.022482, 40.031408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-ph6-gzf", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986348, "LONGITUDE": -75.231742, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": null, "Total Spend": 3843.0, "Total Transactions": 129.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.7, "MEDIAN_SPEND_PER_CUSTOMER": 59.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231742, 39.986348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfv-94v", "LOCATION_NAME": "Big Blue Marble Bookstore", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 40.046676, "LONGITUDE": -75.195832, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 135.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.92, "MEDIAN_SPEND_PER_CUSTOMER": 29.12 }, "geometry": { "type": "Point", "coordinates": [ -75.195832, 40.046676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm7-nwk", "LOCATION_NAME": "Point Crab's & Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.934951, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2898.0, "Total Transactions": 51.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 81.75 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.934951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-mrk", "LOCATION_NAME": "Jerry's Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.965113, "LONGITUDE": -75.138904, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 125.0, "Total Spend": 3931.0, "Total Transactions": 59.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.0, "MEDIAN_SPEND_PER_CUSTOMER": 96.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138904, 39.965113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7b-kj9", "LOCATION_NAME": "Villagio Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055388, "LONGITUDE": -75.003512, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 21.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 406.0, "Total Spend": 1325.0, "Total Transactions": 54.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.92, "MEDIAN_SPEND_PER_CUSTOMER": 47.84 }, "geometry": { "type": "Point", "coordinates": [ -75.003512, 40.055388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-phj-rrk", "LOCATION_NAME": "BBQ Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071208, "LONGITUDE": -75.157221, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 12.0, "Total Spend": 696.0, "Total Transactions": 31.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 64.02 }, "geometry": { "type": "Point", "coordinates": [ -75.157221, 40.071208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-bc5", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963748, "LONGITUDE": -75.241226, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010096002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2242.0, "Total Transactions": 99.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.9, "MEDIAN_SPEND_PER_CUSTOMER": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241226, 39.963748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8j-cyv", "LOCATION_NAME": "Apex Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.035775, "LONGITUDE": -75.04334, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": null, "Total Spend": 1045.0, "Total Transactions": 17.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.49, "MEDIAN_SPEND_PER_CUSTOMER": 74.96 }, "geometry": { "type": "Point", "coordinates": [ -75.04334, 40.035775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "LOCATION_NAME": "A& A Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010093001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4621.0, "Total Transactions": 453.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.36 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmb-835", "LOCATION_NAME": "Beck's Cajun Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953182, "LONGITUDE": -75.159431, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 9905.0, "Total Transactions": 439.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.95, "MEDIAN_SPEND_PER_CUSTOMER": 36.64 }, "geometry": { "type": "Point", "coordinates": [ -75.159431, 39.953182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-n89", "LOCATION_NAME": "Southside Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960357, "LONGITUDE": -75.225351, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 157.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 438.0, "Total Spend": 120.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.11, "MEDIAN_SPEND_PER_CUSTOMER": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.225351, 39.960357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "LOCATION_NAME": "Sonnys Famous Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949796, "LONGITUDE": -75.144721, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 181.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 27908.0, "Total Transactions": 1019.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144721, 39.949796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-vfz", "LOCATION_NAME": "Panorama", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950151, "LONGITUDE": -75.142176, "DATE_RANGE_START": 2022, "Total Visits": 4385.0, "Total Visitors": 2991.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 9412.0, "Total Transactions": 70.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 140.63, "MEDIAN_SPEND_PER_CUSTOMER": 269.28 }, "geometry": { "type": "Point", "coordinates": [ -75.142176, 39.950151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pp5-5vf", "LOCATION_NAME": "Buzz Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977401, "LONGITUDE": -75.135043, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010157002.0, "MEDIAN_DWELL": null, "Total Spend": 328.0, "Total Transactions": 23.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.94, "MEDIAN_SPEND_PER_CUSTOMER": 45.11 }, "geometry": { "type": "Point", "coordinates": [ -75.135043, 39.977401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "LOCATION_NAME": "Monster Pets", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2022, "Total Visits": 531.0, "Total Visitors": 395.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2860.0, "Total Transactions": 61.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.74, "MEDIAN_SPEND_PER_CUSTOMER": 55.04 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "LOCATION_NAME": "Pizza & Steak Master", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010253001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1997.0, "Total Transactions": 92.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.55, "MEDIAN_SPEND_PER_CUSTOMER": 63.05 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj4-7wk", "LOCATION_NAME": "Vernie's Soul Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027362, "LONGITUDE": -75.153997, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010280003.0, "MEDIAN_DWELL": 135.0, "Total Spend": 875.0, "Total Transactions": 35.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.36, "MEDIAN_SPEND_PER_CUSTOMER": 47.32 }, "geometry": { "type": "Point", "coordinates": [ -75.153997, 40.027362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "LOCATION_NAME": "Hadramout", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 17.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2486.0, "Total Transactions": 57.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.22, "MEDIAN_SPEND_PER_CUSTOMER": 62.88 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm4-k4v", "LOCATION_NAME": "Tacos California", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936462, "LONGITUDE": -75.15694, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 317.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15694, 39.936462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2022, "Total Visits": 301.0, "Total Visitors": 240.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13587.0, "Total Transactions": 997.0, "Total Customers": 693.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.85, "MEDIAN_SPEND_PER_CUSTOMER": 13.84 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgh-h5z", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007766, "LONGITUDE": -75.174356, "DATE_RANGE_START": 2022, "Total Visits": 395.0, "Total Visitors": 338.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7901.0, "Total Transactions": 449.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.38, "MEDIAN_SPEND_PER_CUSTOMER": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.174356, 40.007766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmf-rx5", "LOCATION_NAME": "Viet Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944017, "LONGITUDE": -75.170118, "DATE_RANGE_START": 2022, "Total Visits": 693.0, "Total Visitors": 375.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 550.0, "Total Spend": 523.0, "Total Transactions": 35.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.44, "MEDIAN_SPEND_PER_CUSTOMER": 30.96 }, "geometry": { "type": "Point", "coordinates": [ -75.170118, 39.944017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-whq", "LOCATION_NAME": "Pho Xe Lua Viet Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955481, "LONGITUDE": -75.154675, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 6375.0, "Total Transactions": 169.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.29, "MEDIAN_SPEND_PER_CUSTOMER": 69.68 }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-7nq", "LOCATION_NAME": "Jam Rock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928385, "LONGITUDE": -75.230768, "DATE_RANGE_START": 2022, "Total Visits": 702.0, "Total Visitors": 469.0, "POI_CBG": 421010066004.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1603.0, "Total Transactions": 78.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.230768, 39.928385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-2zf", "LOCATION_NAME": "Asia Mix Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103233, "LONGITUDE": -75.010226, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 500.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 769.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.09, "MEDIAN_SPEND_PER_CUSTOMER": 70.18 }, "geometry": { "type": "Point", "coordinates": [ -75.010226, 40.103233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph8-qcq", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.978749, "LONGITUDE": -75.270239, "DATE_RANGE_START": 2022, "Total Visits": 869.0, "Total Visitors": 587.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 203.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.84, "MEDIAN_SPEND_PER_CUSTOMER": 17.84 }, "geometry": { "type": "Point", "coordinates": [ -75.270239, 39.978749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp5-g49", "LOCATION_NAME": "Aramingo's Best Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984627, "LONGITUDE": -75.113365, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010179003.0, "MEDIAN_DWELL": null, "Total Spend": 3601.0, "Total Transactions": 122.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.33, "MEDIAN_SPEND_PER_CUSTOMER": 55.08 }, "geometry": { "type": "Point", "coordinates": [ -75.113365, 39.984627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnz-zj9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.99116, "LONGITUDE": -75.102091, "DATE_RANGE_START": 2022, "Total Visits": 359.0, "Total Visitors": 277.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 225.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.5, "MEDIAN_SPEND_PER_CUSTOMER": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102091, 39.99116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-jn5", "LOCATION_NAME": "Arch Enemy Arts", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.951916, "LONGITUDE": -75.142146, "DATE_RANGE_START": 2022, "Total Visits": 1941.0, "Total Visitors": 1564.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 134.0, "Total Spend": 618.0, "Total Transactions": 21.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142146, 39.951916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-wrk", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993383, "LONGITUDE": -75.155194, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 49.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 231.0, "Total Spend": 8826.0, "Total Transactions": 286.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.04, "MEDIAN_SPEND_PER_CUSTOMER": 30.43 }, "geometry": { "type": "Point", "coordinates": [ -75.155194, 39.993383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnw-mzf", "LOCATION_NAME": "Once Worn Consignment", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.964394, "LONGITUDE": -75.140857, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": null, "Total Spend": 3056.0, "Total Transactions": 91.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.3, "MEDIAN_SPEND_PER_CUSTOMER": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140857, 39.964394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "LOCATION_NAME": "Thunderbird Salvage", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 35.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2967.0, "Total Transactions": 70.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmd-rx5", "LOCATION_NAME": "Cotoletta Fitler Square", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947447, "LONGITUDE": -75.179191, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": null, "Total Spend": 3005.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 169.92, "MEDIAN_SPEND_PER_CUSTOMER": 339.84 }, "geometry": { "type": "Point", "coordinates": [ -75.179191, 39.947447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "LOCATION_NAME": "Dfti Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.95206, "LONGITUDE": -75.174572, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 47.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 17554.0, "Total Transactions": 190.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.0, "MEDIAN_SPEND_PER_CUSTOMER": 169.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174572, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@63s-dwg-f9f", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913707, "LONGITUDE": -75.240275, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1221.0, "Total Transactions": 57.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.22, "MEDIAN_SPEND_PER_CUSTOMER": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.240275, 39.913707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-fcq", "LOCATION_NAME": "Litterpaw Pet Supply", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.946484, "LONGITUDE": -75.157626, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 224.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.9, "MEDIAN_SPEND_PER_CUSTOMER": 45.34 }, "geometry": { "type": "Point", "coordinates": [ -75.157626, 39.946484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "LOCATION_NAME": "Castle Roxx", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 9819.0, "Total Transactions": 324.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phd-h89", "LOCATION_NAME": "El Limon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002787, "LONGITUDE": -75.222273, "DATE_RANGE_START": 2022, "Total Visits": 502.0, "Total Visitors": 425.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 900.0, "Total Transactions": 37.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.2, "MEDIAN_SPEND_PER_CUSTOMER": 38.65 }, "geometry": { "type": "Point", "coordinates": [ -75.222273, 40.002787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgj-2ff", "LOCATION_NAME": "Pita & Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979339, "LONGITUDE": -75.155043, "DATE_RANGE_START": 2022, "Total Visits": 1706.0, "Total Visitors": 1289.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 152.0, "Total Spend": 2355.0, "Total Transactions": 49.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.66, "MEDIAN_SPEND_PER_CUSTOMER": 70.48 }, "geometry": { "type": "Point", "coordinates": [ -75.155043, 39.979339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2022, "Total Visits": 336.0, "Total Visitors": 239.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 15081.0, "Total Transactions": 1831.0, "Total Customers": 873.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.1, "MEDIAN_SPEND_PER_CUSTOMER": 11.17 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2022, "Total Visits": 294.0, "Total Visitors": 237.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 21888.0, "Total Transactions": 824.0, "Total Customers": 563.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.34, "MEDIAN_SPEND_PER_CUSTOMER": 21.47 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "LOCATION_NAME": "Double Knot", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2022, "Total Visits": 394.0, "Total Visitors": 333.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 30334.0, "Total Transactions": 213.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 121.78, "MEDIAN_SPEND_PER_CUSTOMER": 222.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.030253, "LONGITUDE": -75.101415, "DATE_RANGE_START": 2022, "Total Visits": 401.0, "Total Visitors": 368.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3303.0, "Total Transactions": 64.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.99, "MEDIAN_SPEND_PER_CUSTOMER": 25.99 }, "geometry": { "type": "Point", "coordinates": [ -75.101415, 40.030253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-4n5", "LOCATION_NAME": "Shoe Factory", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.047111, "LONGITUDE": -75.070347, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 162.0, "POI_CBG": 421010310003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10822.0, "Total Transactions": 91.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.97 }, "geometry": { "type": "Point", "coordinates": [ -75.070347, 40.047111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2022, "Total Visits": 1141.0, "Total Visitors": 777.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 343.0, "Total Transactions": 23.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.1, "MEDIAN_SPEND_PER_CUSTOMER": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-sbk", "LOCATION_NAME": "Faulkner Hyundai", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.102704, "LONGITUDE": -75.006021, "DATE_RANGE_START": 2022, "Total Visits": 1214.0, "Total Visitors": 894.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 20672.0, "Total Transactions": 51.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.04, "MEDIAN_SPEND_PER_CUSTOMER": 101.04 }, "geometry": { "type": "Point", "coordinates": [ -75.006021, 40.102704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-whq", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.051934, "LONGITUDE": -75.058717, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 277.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3475.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.72, "MEDIAN_SPEND_PER_CUSTOMER": 97.72 }, "geometry": { "type": "Point", "coordinates": [ -75.058717, 40.051934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.067745, "LONGITUDE": -75.198, "DATE_RANGE_START": 2022, "Total Visits": 406.0, "Total Visitors": 328.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 15268.0, "Total Transactions": 765.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.45, "MEDIAN_SPEND_PER_CUSTOMER": 19.05 }, "geometry": { "type": "Point", "coordinates": [ -75.198, 40.067745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvx-59f", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.972941, "LONGITUDE": -75.217366, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 199.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 729.0, "Total Transactions": 84.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.4, "MEDIAN_SPEND_PER_CUSTOMER": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.217366, 39.972941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 112.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 3448.0, "Total Transactions": 66.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.13, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-k75", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.08259, "LONGITUDE": -75.022988, "DATE_RANGE_START": 2022, "Total Visits": 11793.0, "Total Visitors": 7707.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1949.0, "Total Transactions": 230.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.55, "MEDIAN_SPEND_PER_CUSTOMER": 12.93 }, "geometry": { "type": "Point", "coordinates": [ -75.022988, 40.08259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 211.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11309.0, "Total Transactions": 1589.0, "Total Customers": 720.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.03, "MEDIAN_SPEND_PER_CUSTOMER": 9.66 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.015127, "LONGITUDE": -75.178214, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 322.0, "POI_CBG": 421010206001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2709.0, "Total Transactions": 399.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.7, "MEDIAN_SPEND_PER_CUSTOMER": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178214, 40.015127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pmb-8y9", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95161, "LONGITUDE": -75.155822, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 188.0, "Total Transactions": 26.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.19, "MEDIAN_SPEND_PER_CUSTOMER": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.155822, 39.95161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006873, "LONGITUDE": -75.123103, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 145.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3420.0, "Total Transactions": 404.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.73, "MEDIAN_SPEND_PER_CUSTOMER": 10.58 }, "geometry": { "type": "Point", "coordinates": [ -75.123103, 40.006873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "LOCATION_NAME": "Tavares Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010247005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 150.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.72, "MEDIAN_SPEND_PER_CUSTOMER": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-zmk", "LOCATION_NAME": "Hip Hemp Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94189, "LONGITUDE": -75.153788, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 1107.0, "Total Transactions": 42.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.9, "MEDIAN_SPEND_PER_CUSTOMER": 40.67 }, "geometry": { "type": "Point", "coordinates": [ -75.153788, 39.94189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 75.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 204.0, "Total Spend": 544.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.44, "MEDIAN_SPEND_PER_CUSTOMER": 70.72 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvp-bff", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945197, "LONGITUDE": -75.238981, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 89.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1451.0, "Total Transactions": 52.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.03, "MEDIAN_SPEND_PER_CUSTOMER": 19.41 }, "geometry": { "type": "Point", "coordinates": [ -75.238981, 39.945197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@63s-dvy-8sq", "LOCATION_NAME": "MK Food Service Equipment", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.95219, "LONGITUDE": -75.216689, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010079001.0, "MEDIAN_DWELL": null, "Total Spend": 466.0, "Total Transactions": 54.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.68, "MEDIAN_SPEND_PER_CUSTOMER": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.216689, 39.95219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "LOCATION_NAME": "Street Side", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1660.0, "Total Transactions": 99.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.92, "MEDIAN_SPEND_PER_CUSTOMER": 33.63 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@63s-dvy-wtv", "LOCATION_NAME": "Don Barriga Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953099, "LONGITUDE": -75.211951, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 17.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 16.0, "Total Spend": 11215.0, "Total Transactions": 287.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.94, "MEDIAN_SPEND_PER_CUSTOMER": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.211951, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "LOCATION_NAME": "Jack's place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 23.0, "POI_CBG": 421010326007.0, "MEDIAN_DWELL": 197.0, "Total Spend": 429.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.43, "MEDIAN_SPEND_PER_CUSTOMER": 67.94 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8h-hyv", "LOCATION_NAME": "Athenian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025796, "LONGITUDE": -75.044061, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 312.0, "Total Transactions": 14.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.25, "MEDIAN_SPEND_PER_CUSTOMER": 38.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044061, 40.025796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-bp9", "LOCATION_NAME": "Brown Street Coffee & Banhery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970469, "LONGITUDE": -75.179503, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 28.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3448.0, "Total Transactions": 301.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.54, "MEDIAN_SPEND_PER_CUSTOMER": 38.25 }, "geometry": { "type": "Point", "coordinates": [ -75.179503, 39.970469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-r6k", "LOCATION_NAME": "United Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029584, "LONGITUDE": -75.100403, "DATE_RANGE_START": 2022, "Total Visits": 801.0, "Total Visitors": 726.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 34141.0, "Total Transactions": 669.0, "Total Customers": 319.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.64, "MEDIAN_SPEND_PER_CUSTOMER": 83.28 }, "geometry": { "type": "Point", "coordinates": [ -75.100403, 40.029584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-dqf", "LOCATION_NAME": "Asian Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918335, "LONGITUDE": -75.181058, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 108.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 124.0, "Total Spend": 3160.0, "Total Transactions": 26.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.94, "MEDIAN_SPEND_PER_CUSTOMER": 121.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181058, 39.918335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "LOCATION_NAME": "Bar Bombon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 101.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 37951.0, "Total Transactions": 596.0, "Total Customers": 321.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.01, "MEDIAN_SPEND_PER_CUSTOMER": 96.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rp9", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917838, "LONGITUDE": -75.186989, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 35.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6090.0, "Total Transactions": 211.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.09, "MEDIAN_SPEND_PER_CUSTOMER": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -75.186989, 39.917838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "LOCATION_NAME": "Bistrot La Minette", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 42.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 14595.0, "Total Transactions": 112.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 136.62, "MEDIAN_SPEND_PER_CUSTOMER": 284.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.952664, "LONGITUDE": -75.15622, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 49.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 218.0, "Total Spend": 973.0, "Total Transactions": 122.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.13, "MEDIAN_SPEND_PER_CUSTOMER": 7.72 }, "geometry": { "type": "Point", "coordinates": [ -75.15622, 39.952664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "LOCATION_NAME": "Garden Court Eatery & Beer", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952636, "LONGITUDE": -75.21767, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 148.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 7286.0, "Total Transactions": 404.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.1, "MEDIAN_SPEND_PER_CUSTOMER": 37.08 }, "geometry": { "type": "Point", "coordinates": [ -75.21767, 39.952636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "LOCATION_NAME": "Chicko Tako", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 96.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4176.0, "Total Transactions": 192.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.59, "MEDIAN_SPEND_PER_CUSTOMER": 31.12 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8j-bff", "LOCATION_NAME": "Mayfair Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037436, "LONGITUDE": -75.038227, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 70.0, "POI_CBG": 421010330003.0, "MEDIAN_DWELL": 30.0, "Total Spend": 5822.0, "Total Transactions": 160.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.61, "MEDIAN_SPEND_PER_CUSTOMER": 79.12 }, "geometry": { "type": "Point", "coordinates": [ -75.038227, 40.037436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj8-hwk", "LOCATION_NAME": "Oxford Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.019429, "LONGITUDE": -75.084382, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010301002.0, "MEDIAN_DWELL": null, "Total Spend": 1002.0, "Total Transactions": 38.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.53, "MEDIAN_SPEND_PER_CUSTOMER": 55.06 }, "geometry": { "type": "Point", "coordinates": [ -75.084382, 40.019429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "LOCATION_NAME": "Desi Village", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 834.0, "Total Transactions": 35.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.87, "MEDIAN_SPEND_PER_CUSTOMER": 42.02 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25j-223@628-pgg-kxq", "LOCATION_NAME": "Indiana Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.999848, "LONGITUDE": -75.164871, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010173001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 317.0, "Total Transactions": 24.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.4, "MEDIAN_SPEND_PER_CUSTOMER": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.164871, 39.999848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-sbk", "LOCATION_NAME": "The Igloo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945135, "LONGITUDE": -75.179463, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 135.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.85, "MEDIAN_SPEND_PER_CUSTOMER": 35.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179463, 39.945135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnx-9s5", "LOCATION_NAME": "Interstate Drafthouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971824, "LONGITUDE": -75.128675, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 26.0, "Total Spend": 250.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.74, "MEDIAN_SPEND_PER_CUSTOMER": 71.74 }, "geometry": { "type": "Point", "coordinates": [ -75.128675, 39.971824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969391, "LONGITUDE": -75.159457, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 45.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5470.0, "Total Transactions": 669.0, "Total Customers": 335.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.78, "MEDIAN_SPEND_PER_CUSTOMER": 10.44 }, "geometry": { "type": "Point", "coordinates": [ -75.159457, 39.969391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-249", "LOCATION_NAME": "Two Brothers Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003487, "LONGITUDE": -75.150398, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 10.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 348.0, "Total Spend": 7816.0, "Total Transactions": 322.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.15, "MEDIAN_SPEND_PER_CUSTOMER": 39.54 }, "geometry": { "type": "Point", "coordinates": [ -75.150398, 40.003487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-php-ygk", "LOCATION_NAME": "Stop One Food Market & Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.053727, "LONGITUDE": -75.155505, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 23.0, "POI_CBG": 421010277006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2587.0, "Total Transactions": 211.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155505, 40.053727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pg2-zj9", "LOCATION_NAME": "Panda Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054638, "LONGITUDE": -75.193918, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 797.0, "Total Transactions": 51.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 30.05 }, "geometry": { "type": "Point", "coordinates": [ -75.193918, 40.054638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "LOCATION_NAME": "Cafe Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2022, "Total Visits": 294.0, "Total Visitors": 181.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 386.0, "Total Spend": 3330.0, "Total Transactions": 110.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.3, "MEDIAN_SPEND_PER_CUSTOMER": 42.74 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961453, "LONGITUDE": -75.144571, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 64.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 133.0, "Total Spend": 8416.0, "Total Transactions": 279.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.25, "MEDIAN_SPEND_PER_CUSTOMER": 44.01 }, "geometry": { "type": "Point", "coordinates": [ -75.144571, 39.961453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "LOCATION_NAME": "Gallo's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057623, "LONGITUDE": -75.044487, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 303.0, "POI_CBG": 421010333001.0, "MEDIAN_DWELL": 69.0, "Total Spend": 601.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.52, "MEDIAN_SPEND_PER_CUSTOMER": 111.04 }, "geometry": { "type": "Point", "coordinates": [ -75.044487, 40.057623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-w49", "LOCATION_NAME": "Sweet Lucy's Smokehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028508, "LONGITUDE": -75.027023, "DATE_RANGE_START": 2022, "Total Visits": 587.0, "Total Visitors": 491.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 4775.0, "Total Transactions": 59.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.98, "MEDIAN_SPEND_PER_CUSTOMER": 82.89 }, "geometry": { "type": "Point", "coordinates": [ -75.027023, 40.028508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-n3q", "LOCATION_NAME": "Express Breakfast & Lunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95342, "LONGITUDE": -75.165711, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 63.0, "Total Spend": 93.0, "Total Transactions": 12.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 26.55 }, "geometry": { "type": "Point", "coordinates": [ -75.165711, 39.95342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "LOCATION_NAME": "Barclay Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948498, "LONGITUDE": -75.170757, "DATE_RANGE_START": 2022, "Total Visits": 458.0, "Total Visitors": 352.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 67.0, "Total Spend": 61387.0, "Total Transactions": 206.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 300.0, "MEDIAN_SPEND_PER_CUSTOMER": 541.78 }, "geometry": { "type": "Point", "coordinates": [ -75.170757, 39.948498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-73q", "LOCATION_NAME": "Byrne's Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984147, "LONGITUDE": -75.098754, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 113.0, "POI_CBG": 421010378002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 13844.0, "Total Transactions": 267.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.99, "MEDIAN_SPEND_PER_CUSTOMER": 98.92 }, "geometry": { "type": "Point", "coordinates": [ -75.098754, 39.984147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "LOCATION_NAME": "Pizzeria Cappelli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948456, "LONGITUDE": -75.162098, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 56.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 512.0, "Total Spend": 25338.0, "Total Transactions": 1218.0, "Total Customers": 535.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.6, "MEDIAN_SPEND_PER_CUSTOMER": 37.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162098, 39.948456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm4-f2k", "LOCATION_NAME": "17 Snyder Chinese", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924907, "LONGITUDE": -75.174741, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2690.0, "Total Transactions": 134.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.93, "MEDIAN_SPEND_PER_CUSTOMER": 36.13 }, "geometry": { "type": "Point", "coordinates": [ -75.174741, 39.924907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "LOCATION_NAME": "Angelo's Pizza House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 23.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 267.0, "Total Spend": 977.0, "Total Transactions": 73.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 34.13 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "LOCATION_NAME": "Stateside", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 17431.0, "Total Transactions": 361.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.36, "MEDIAN_SPEND_PER_CUSTOMER": 73.2 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-pjv", "LOCATION_NAME": "Murph's Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968904, "LONGITUDE": -75.133385, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 72.0, "Total Spend": 780.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 202.5, "MEDIAN_SPEND_PER_CUSTOMER": 223.75 }, "geometry": { "type": "Point", "coordinates": [ -75.133385, 39.968904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-7h5", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.991208, "LONGITUDE": -75.177977, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 37.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 284.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.97, "MEDIAN_SPEND_PER_CUSTOMER": 28.36 }, "geometry": { "type": "Point", "coordinates": [ -75.177977, 39.991208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pm4-2x5", "LOCATION_NAME": "Stadium Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919559, "LONGITUDE": -75.163925, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 38.0, "POI_CBG": 421010040021.0, "MEDIAN_DWELL": 976.0, "Total Spend": 2884.0, "Total Transactions": 71.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.29, "MEDIAN_SPEND_PER_CUSTOMER": 64.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163925, 39.919559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmd-xt9", "LOCATION_NAME": "Cava Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.939271, "LONGITUDE": -75.176627, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 101.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 206.0, "Total Spend": 131521.0, "Total Transactions": 211.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.26, "MEDIAN_SPEND_PER_CUSTOMER": 356.52 }, "geometry": { "type": "Point", "coordinates": [ -75.176627, 39.939271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921808, "LONGITUDE": -75.146286, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 160.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2991.0, "Total Transactions": 127.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.57, "MEDIAN_SPEND_PER_CUSTOMER": 23.14 }, "geometry": { "type": "Point", "coordinates": [ -75.146286, 39.921808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2022, "Total Visits": 361.0, "Total Visitors": 237.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8962.0, "Total Transactions": 781.0, "Total Customers": 526.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "LOCATION_NAME": "Station Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 113.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 120.0, "Total Spend": 3645.0, "Total Transactions": 164.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.02, "MEDIAN_SPEND_PER_CUSTOMER": 50.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938259, "LONGITUDE": -75.21557, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 174.0, "POI_CBG": 421010074005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6705.0, "Total Transactions": 359.0, "Total Customers": 319.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.34, "MEDIAN_SPEND_PER_CUSTOMER": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.21557, 39.938259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914447, "LONGITUDE": -75.156842, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 71.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 57.0, "Total Spend": 742.0, "Total Transactions": 54.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.59, "MEDIAN_SPEND_PER_CUSTOMER": 12.01 }, "geometry": { "type": "Point", "coordinates": [ -75.156842, 39.914447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfx-kmk", "LOCATION_NAME": "Tsaocaa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02624, "LONGITUDE": -75.225272, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 73.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2201.0, "Total Transactions": 200.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 15.78 }, "geometry": { "type": "Point", "coordinates": [ -75.225272, 40.02624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931641, "LONGITUDE": -75.160608, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 103.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4688.0, "Total Transactions": 638.0, "Total Customers": 317.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160608, 39.931641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8f-djv", "LOCATION_NAME": "Kim's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.017031, "LONGITUDE": -75.083994, "DATE_RANGE_START": 2022, "Total Visits": 463.0, "Total Visitors": 287.0, "POI_CBG": 421010300006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 97.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.91, "MEDIAN_SPEND_PER_CUSTOMER": 27.82 }, "geometry": { "type": "Point", "coordinates": [ -75.083994, 40.017031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 61.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1585.0, "Total Transactions": 17.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.99, "MEDIAN_SPEND_PER_CUSTOMER": 54.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "LOCATION_NAME": "10 Spot/MadRag", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.917816, "LONGITUDE": -75.185164, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 134.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 16709.0, "Total Transactions": 472.0, "Total Customers": 376.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.98, "MEDIAN_SPEND_PER_CUSTOMER": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -75.185164, 39.917816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "LOCATION_NAME": "Nautica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087648, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2530.0, "Total Transactions": 61.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.11, "MEDIAN_SPEND_PER_CUSTOMER": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-92k", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951715, "LONGITUDE": -75.155788, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2510.0, "Total Transactions": 47.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.99, "MEDIAN_SPEND_PER_CUSTOMER": 41.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155788, 39.951715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-d5f", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992273, "LONGITUDE": -75.110947, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 82.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 264.0, "Total Spend": 116.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.35, "MEDIAN_SPEND_PER_CUSTOMER": 5.29 }, "geometry": { "type": "Point", "coordinates": [ -75.110947, 39.992273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-835", "LOCATION_NAME": "R&C Food Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.001226, "LONGITUDE": -75.115072, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 98.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 89.0, "Total Spend": 13.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.88, "MEDIAN_SPEND_PER_CUSTOMER": 3.75 }, "geometry": { "type": "Point", "coordinates": [ -75.115072, 40.001226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-k75", "LOCATION_NAME": "Angela's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0945, "LONGITUDE": -75.018316, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 70.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1582.0, "Total Transactions": 92.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.42, "MEDIAN_SPEND_PER_CUSTOMER": 26.79 }, "geometry": { "type": "Point", "coordinates": [ -75.018316, 40.0945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-djv", "LOCATION_NAME": "Pastificio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911498, "LONGITUDE": -75.174639, "DATE_RANGE_START": 2022, "Total Visits": 2436.0, "Total Visitors": 2033.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 14706.0, "Total Transactions": 585.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.62, "MEDIAN_SPEND_PER_CUSTOMER": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.174639, 39.911498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953365, "LONGITUDE": -75.173088, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 376.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5891.0, "Total Transactions": 726.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.43, "MEDIAN_SPEND_PER_CUSTOMER": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.173088, 39.953365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "LOCATION_NAME": "Little Pete's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2022, "Total Visits": 1646.0, "Total Visitors": 948.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 185.0, "Total Spend": 3020.0, "Total Transactions": 71.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.68, "MEDIAN_SPEND_PER_CUSTOMER": 73.36 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-tgk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045215, "LONGITUDE": -75.086673, "DATE_RANGE_START": 2022, "Total Visits": 1469.0, "Total Visitors": 1113.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 31.0, "Total Spend": 6380.0, "Total Transactions": 380.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.93 }, "geometry": { "type": "Point", "coordinates": [ -75.086673, 40.045215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-6p9", "LOCATION_NAME": "Pret A Manger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951392, "LONGITUDE": -75.16582, "DATE_RANGE_START": 2022, "Total Visits": 9204.0, "Total Visitors": 6356.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2457.0, "Total Transactions": 225.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.16582, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-n5z", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954145, "LONGITUDE": -75.201008, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 293.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 61.0, "Total Spend": 3768.0, "Total Transactions": 176.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.73, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.201008, 39.954145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079147, "LONGITUDE": -75.02653, "DATE_RANGE_START": 2022, "Total Visits": 456.0, "Total Visitors": 375.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12083.0, "Total Transactions": 693.0, "Total Customers": 538.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.02653, 40.079147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 211.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 11782.0, "Total Transactions": 1240.0, "Total Customers": 620.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.4, "MEDIAN_SPEND_PER_CUSTOMER": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2022, "Total Visits": 279.0, "Total Visitors": 230.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5771.0, "Total Transactions": 514.0, "Total Customers": 256.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 9.59 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-sdv", "LOCATION_NAME": "Independence Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950376, "LONGITUDE": -75.15103, "DATE_RANGE_START": 2022, "Total Visits": 1281.0, "Total Visitors": 1108.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 29496.0, "Total Transactions": 1153.0, "Total Customers": 514.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.5, "MEDIAN_SPEND_PER_CUSTOMER": 41.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15103, 39.950376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnw-nh5", "LOCATION_NAME": "Sancho Pistolas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969014, "LONGITUDE": -75.135132, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 80.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 2904.0, "Total Transactions": 49.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.69, "MEDIAN_SPEND_PER_CUSTOMER": 113.92 }, "geometry": { "type": "Point", "coordinates": [ -75.135132, 39.969014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-v75", "LOCATION_NAME": "JJ Bootleggers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94896, "LONGITUDE": -75.143844, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 63.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 60007.0, "Total Transactions": 2355.0, "Total Customers": 653.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.14, "MEDIAN_SPEND_PER_CUSTOMER": 65.32 }, "geometry": { "type": "Point", "coordinates": [ -75.143844, 39.94896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.015701, "LONGITUDE": -75.13771, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 118.0, "POI_CBG": 421010197004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 21505.0, "Total Transactions": 251.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.42, "MEDIAN_SPEND_PER_CUSTOMER": 42.64 }, "geometry": { "type": "Point", "coordinates": [ -75.13771, 40.015701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 96.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13620.0, "Total Transactions": 256.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-syv", "LOCATION_NAME": "Snyder Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926819, "LONGITUDE": -75.191169, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 54.0, "POI_CBG": 421010036003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 186.0, "Total Transactions": 16.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191169, 39.926819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pj2-d9z", "LOCATION_NAME": "T&S Express Market", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.010871, "LONGITUDE": -75.104013, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 59.0, "POI_CBG": 421010191002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 269.0, "Total Transactions": 38.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104013, 40.010871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.038428, "LONGITUDE": -75.106684, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 87.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 28464.0, "Total Transactions": 643.0, "Total Customers": 300.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.57, "MEDIAN_SPEND_PER_CUSTOMER": 36.61 }, "geometry": { "type": "Point", "coordinates": [ -75.106684, 40.038428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2022, "Total Visits": 1066.0, "Total Visitors": 594.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 51374.0, "Total Transactions": 5976.0, "Total Customers": 2615.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.29, "MEDIAN_SPEND_PER_CUSTOMER": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2022, "Total Visits": 1504.0, "Total Visitors": 787.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 137882.0, "Total Transactions": 7350.0, "Total Customers": 3331.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.16, "MEDIAN_SPEND_PER_CUSTOMER": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "LOCATION_NAME": "S and J Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948539, "LONGITUDE": -75.227093, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 52.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4794.0, "Total Transactions": 146.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.77, "MEDIAN_SPEND_PER_CUSTOMER": 55.44 }, "geometry": { "type": "Point", "coordinates": [ -75.227093, 39.948539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.909224, "LONGITUDE": -75.174004, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 490.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6588.0, "Total Transactions": 429.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.82 }, "geometry": { "type": "Point", "coordinates": [ -75.174004, 39.909224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2022, "Total Visits": 547.0, "Total Visitors": 416.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 19001.0, "Total Transactions": 1099.0, "Total Customers": 646.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.46, "MEDIAN_SPEND_PER_CUSTOMER": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@63s-dvp-bff", "LOCATION_NAME": "Total Beauty Supplies", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945299, "LONGITUDE": -75.238685, "DATE_RANGE_START": 2022, "Total Visits": 1207.0, "Total Visitors": 805.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8046.0, "Total Transactions": 274.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.56, "MEDIAN_SPEND_PER_CUSTOMER": 36.94 }, "geometry": { "type": "Point", "coordinates": [ -75.238685, 39.945299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "LOCATION_NAME": "Bindlestiff Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": null, "Total Spend": 454.0, "Total Transactions": 23.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8n-3nq", "LOCATION_NAME": "Perrys Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023149, "LONGITUDE": -75.061553, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 12.0, "POI_CBG": 421010319002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1446.0, "Total Transactions": 71.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061553, 40.023149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-zmk", "LOCATION_NAME": "Touch of Gold", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941921, "LONGITUDE": -75.153483, "DATE_RANGE_START": 2022, "Total Visits": 725.0, "Total Visitors": 598.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 2258.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.0, "MEDIAN_SPEND_PER_CUSTOMER": 648.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153483, 39.941921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phz-6c5", "LOCATION_NAME": "L & M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.0235, "LONGITUDE": -75.115742, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010289023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 57.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115742, 40.0235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "LOCATION_NAME": "Tony's Luke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9070.0, "Total Transactions": 314.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.95, "MEDIAN_SPEND_PER_CUSTOMER": 39.42 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p74-cyv", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041879, "LONGITUDE": -75.027519, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 17.0, "POI_CBG": 421010331022.0, "MEDIAN_DWELL": 578.0, "Total Spend": 301.0, "Total Transactions": 12.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.027519, 40.041879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p75-9pv", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044008, "LONGITUDE": -75.017305, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 77.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1846.0, "Total Transactions": 26.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.55, "MEDIAN_SPEND_PER_CUSTOMER": 123.1 }, "geometry": { "type": "Point", "coordinates": [ -75.017305, 40.044008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8m-snq", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.022472, "LONGITUDE": -75.077322, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 85.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1348.0, "Total Transactions": 35.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.96, "MEDIAN_SPEND_PER_CUSTOMER": 37.71 }, "geometry": { "type": "Point", "coordinates": [ -75.077322, 40.022472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-zj9", "LOCATION_NAME": "Arch Gourmet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955807, "LONGITUDE": -75.176416, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1087.0, "Total Transactions": 30.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176416, 39.955807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-jjv", "LOCATION_NAME": "Allen Edmonds", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.9515, "LONGITUDE": -75.170237, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 542.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2069.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 322.96, "MEDIAN_SPEND_PER_CUSTOMER": 322.96 }, "geometry": { "type": "Point", "coordinates": [ -75.170237, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-223@628-pnx-7qz", "LOCATION_NAME": "Dolce & Caffe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962218, "LONGITUDE": -75.141391, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 7016.0, "Total Transactions": 603.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.83, "MEDIAN_SPEND_PER_CUSTOMER": 23.54 }, "geometry": { "type": "Point", "coordinates": [ -75.141391, 39.962218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040673, "LONGITUDE": -75.076835, "DATE_RANGE_START": 2022, "Total Visits": 331.0, "Total Visitors": 233.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 744.0, "Total Transactions": 105.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.28, "MEDIAN_SPEND_PER_CUSTOMER": 8.06 }, "geometry": { "type": "Point", "coordinates": [ -75.076835, 40.040673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgm-3qz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.008377, "LONGITUDE": -75.193545, "DATE_RANGE_START": 2022, "Total Visits": 213.0, "Total Visitors": 188.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2604.0, "Total Transactions": 246.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.43, "MEDIAN_SPEND_PER_CUSTOMER": 10.1 }, "geometry": { "type": "Point", "coordinates": [ -75.193545, 40.008377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7w-6zf", "LOCATION_NAME": "Friend's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057282, "LONGITUDE": -75.060843, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 19.0, "POI_CBG": 421010336003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 331.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.5, "MEDIAN_SPEND_PER_CUSTOMER": 95.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060843, 40.057282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj2-94v", "LOCATION_NAME": "Classic Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001175, "LONGITUDE": -75.114716, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 21.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 829.0, "Total Transactions": 49.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.52, "MEDIAN_SPEND_PER_CUSTOMER": 37.96 }, "geometry": { "type": "Point", "coordinates": [ -75.114716, 40.001175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "LOCATION_NAME": "Christies Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 12.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 388.0, "Total Spend": 12849.0, "Total Transactions": 847.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.48, "MEDIAN_SPEND_PER_CUSTOMER": 30.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "LOCATION_NAME": "Overbrook Pizza Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6087.0, "Total Transactions": 244.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.36, "MEDIAN_SPEND_PER_CUSTOMER": 40.16 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010314022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6703.0, "Total Transactions": 125.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.07, "MEDIAN_SPEND_PER_CUSTOMER": 84.38 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-c3q", "LOCATION_NAME": "Yarnphoria", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.944703, "LONGITUDE": -75.159061, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 9.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 148.0, "Total Spend": 1286.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159061, 39.944703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-p8m-cnq", "LOCATION_NAME": "Citizens Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.014895, "LONGITUDE": -75.065047, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010298002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 196.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.17, "MEDIAN_SPEND_PER_CUSTOMER": 56.17 }, "geometry": { "type": "Point", "coordinates": [ -75.065047, 40.014895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "LOCATION_NAME": "Champ's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 51.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 30.0, "Total Spend": 3947.0, "Total Transactions": 206.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "LOCATION_NAME": "Mr Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 52.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 31.0, "Total Spend": 5393.0, "Total Transactions": 155.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.79, "MEDIAN_SPEND_PER_CUSTOMER": 66.36 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "LOCATION_NAME": "Museum Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 38.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4996.0, "Total Transactions": 387.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.92, "MEDIAN_SPEND_PER_CUSTOMER": 23.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-pn5", "LOCATION_NAME": "Good's Vintage", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.93696, "LONGITUDE": -75.158415, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 40.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 131.0, "Total Spend": 971.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 86.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.93696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "LOCATION_NAME": "Royal Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3635.0, "Total Transactions": 179.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.4, "MEDIAN_SPEND_PER_CUSTOMER": 47.42 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-4vz", "LOCATION_NAME": "Cafe Tinto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02153, "LONGITUDE": -75.122622, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 40.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3778.0, "Total Transactions": 272.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.91, "MEDIAN_SPEND_PER_CUSTOMER": 39.49 }, "geometry": { "type": "Point", "coordinates": [ -75.122622, 40.02153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-xqz", "LOCATION_NAME": "Brother's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006485, "LONGITUDE": -75.150169, "DATE_RANGE_START": 2022, "Total Visits": 148.0, "Total Visitors": 42.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 296.0, "Total Spend": 1331.0, "Total Transactions": 103.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.49, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150169, 40.006485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-tgk", "LOCATION_NAME": "Angelina's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987407, "LONGITUDE": -75.139218, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010163004.0, "MEDIAN_DWELL": null, "Total Spend": 894.0, "Total Transactions": 63.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139218, 39.987407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@63s-dvy-xwk", "LOCATION_NAME": "Lil' Pop Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953164, "LONGITUDE": -75.210265, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 14.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 30.0, "Total Spend": 3896.0, "Total Transactions": 368.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.74, "MEDIAN_SPEND_PER_CUSTOMER": 15.73 }, "geometry": { "type": "Point", "coordinates": [ -75.210265, 39.953164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-7qz", "LOCATION_NAME": "Wax Downtown", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948559, "LONGITUDE": -75.153964, "DATE_RANGE_START": 2022, "Total Visits": 1821.0, "Total Visitors": 1206.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 122.0, "Total Spend": 2235.0, "Total Transactions": 31.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.0, "MEDIAN_SPEND_PER_CUSTOMER": 136.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153964, 39.948559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.945313, "LONGITUDE": -75.238538, "DATE_RANGE_START": 2022, "Total Visits": 542.0, "Total Visitors": 375.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1994.0, "Total Transactions": 202.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.238538, 39.945313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j7q", "LOCATION_NAME": "Boyds Philadelphia", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951667, "LONGITUDE": -75.171279, "DATE_RANGE_START": 2022, "Total Visits": 350.0, "Total Visitors": 223.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 149.0, "Total Spend": 61790.0, "Total Transactions": 51.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 811.0, "MEDIAN_SPEND_PER_CUSTOMER": 1580.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171279, 39.951667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-jd9", "LOCATION_NAME": "Watch Co", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952246, "LONGITUDE": -75.168308, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 78.0, "Total Spend": 1298.0, "Total Transactions": 33.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168308, 39.952246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgk-z9f", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999874, "LONGITUDE": -75.209033, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010122041.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1603.0, "Total Transactions": 91.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.84, "MEDIAN_SPEND_PER_CUSTOMER": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209033, 39.999874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "LOCATION_NAME": "John's Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 10.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1086.0, "Total Transactions": 75.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 24.01 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "LOCATION_NAME": "Oregon Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010372001.0, "MEDIAN_DWELL": 87.0, "Total Spend": 1023.0, "Total Transactions": 68.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.22, "MEDIAN_SPEND_PER_CUSTOMER": 24.44 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044956, "LONGITUDE": -75.143877, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3645.0, "Total Transactions": 139.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.84, "MEDIAN_SPEND_PER_CUSTOMER": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.143877, 40.044956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.899825, "LONGITUDE": -75.241379, "DATE_RANGE_START": 2022, "Total Visits": 584.0, "Total Visitors": 397.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 4756.0, "Total Transactions": 291.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.35, "MEDIAN_SPEND_PER_CUSTOMER": 28.69 }, "geometry": { "type": "Point", "coordinates": [ -75.241379, 39.899825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-grk", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979416, "LONGITUDE": -75.154998, "DATE_RANGE_START": 2022, "Total Visits": 1706.0, "Total Visitors": 1289.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 152.0, "Total Spend": 818.0, "Total Transactions": 52.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.41, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.154998, 39.979416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2022, "Total Visits": 521.0, "Total Visitors": 371.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9292.0, "Total Transactions": 786.0, "Total Customers": 491.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.57, "MEDIAN_SPEND_PER_CUSTOMER": 12.31 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg9-59f", "LOCATION_NAME": "Charlies Country Ribs", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.98708, "LONGITUDE": -75.175955, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010151021.0, "MEDIAN_DWELL": null, "Total Spend": 156.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.44, "MEDIAN_SPEND_PER_CUSTOMER": 44.88 }, "geometry": { "type": "Point", "coordinates": [ -75.175955, 39.98708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pj5-t9z", "LOCATION_NAME": "Las Rancheritas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011864, "LONGITUDE": -75.136101, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010198006.0, "MEDIAN_DWELL": 43.0, "Total Spend": 654.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.5, "MEDIAN_SPEND_PER_CUSTOMER": 73.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136101, 40.011864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfy-wkz", "LOCATION_NAME": "Dawson Street Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.018548, "LONGITUDE": -75.21277, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 10.0, "POI_CBG": 421010209004.0, "MEDIAN_DWELL": 30.0, "Total Spend": 8548.0, "Total Transactions": 322.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.96, "MEDIAN_SPEND_PER_CUSTOMER": 50.52 }, "geometry": { "type": "Point", "coordinates": [ -75.21277, 40.018548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-sbk", "LOCATION_NAME": "King Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.018597, "LONGITUDE": -75.129931, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1731.0, "Total Transactions": 21.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.91, "MEDIAN_SPEND_PER_CUSTOMER": 139.82 }, "geometry": { "type": "Point", "coordinates": [ -75.129931, 40.018597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg2-4qf", "LOCATION_NAME": "Phu Fha Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029908, "LONGITUDE": -75.218798, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010213004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1398.0, "Total Transactions": 35.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.04, "MEDIAN_SPEND_PER_CUSTOMER": 86.07 }, "geometry": { "type": "Point", "coordinates": [ -75.218798, 40.029908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-wrk", "LOCATION_NAME": "Lulu Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955024, "LONGITUDE": -75.212218, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 14.0, "POI_CBG": 421010086012.0, "MEDIAN_DWELL": 460.0, "Total Spend": 229.0, "Total Transactions": 14.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.87, "MEDIAN_SPEND_PER_CUSTOMER": 32.96 }, "geometry": { "type": "Point", "coordinates": [ -75.212218, 39.955024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962152, "LONGITUDE": -75.2011, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010108004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1591.0, "Total Transactions": 157.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.2011, 39.962152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dw9-835", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.878257, "LONGITUDE": -75.238877, "DATE_RANGE_START": 2022, "Total Visits": 1721.0, "Total Visitors": 1625.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 10806.0, "Total Transactions": 777.0, "Total Customers": 726.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.07, "MEDIAN_SPEND_PER_CUSTOMER": 12.41 }, "geometry": { "type": "Point", "coordinates": [ -75.238877, 39.878257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "LOCATION_NAME": "Hoagie Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 30.0, "POI_CBG": 421010266007.0, "MEDIAN_DWELL": 366.0, "Total Spend": 7570.0, "Total Transactions": 430.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 39.89 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgb-389", "LOCATION_NAME": "Callowhill Greens", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960219, "LONGITUDE": -75.168614, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 1124.0, "Total Transactions": 68.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.24, "MEDIAN_SPEND_PER_CUSTOMER": 26.48 }, "geometry": { "type": "Point", "coordinates": [ -75.168614, 39.960219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.997473, "LONGITUDE": -75.074081, "DATE_RANGE_START": 2022, "Total Visits": 279.0, "Total Visitors": 202.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10618.0, "Total Transactions": 458.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.91, "MEDIAN_SPEND_PER_CUSTOMER": 29.54 }, "geometry": { "type": "Point", "coordinates": [ -75.074081, 39.997473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-jgk", "LOCATION_NAME": "The Foto Club", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.000866, "LONGITUDE": -75.097152, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 322.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 75.0, "Total Spend": 8156.0, "Total Transactions": 375.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.29, "MEDIAN_SPEND_PER_CUSTOMER": 50.88 }, "geometry": { "type": "Point", "coordinates": [ -75.097152, 40.000866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "LOCATION_NAME": "Lombard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": null, "Total Spend": 2316.0, "Total Transactions": 312.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "LOCATION_NAME": "All The Way Live", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1569.0, "Total Transactions": 51.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.83, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjf-jy9", "LOCATION_NAME": "Bredenbeck's Bakery & Ice Cream Parlor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072481, "LONGITUDE": -75.202392, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 34528.0, "Total Transactions": 1436.0, "Total Customers": 592.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.202392, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2022, "Total Visits": 2139.0, "Total Visitors": 1509.0, "POI_CBG": 421010380002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20511.0, "Total Transactions": 758.0, "Total Customers": 497.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.99, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-6p9", "LOCATION_NAME": "Samsun Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950889, "LONGITUDE": -75.166442, "DATE_RANGE_START": 2022, "Total Visits": 4990.0, "Total Visitors": 3734.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 383.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.99, "MEDIAN_SPEND_PER_CUSTOMER": 109.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166442, 39.950889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvr-fzz", "LOCATION_NAME": "Lucky Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920022, "LONGITUDE": -75.233823, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 60.0, "Total Spend": 539.0, "Total Transactions": 19.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233823, 39.920022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmd-zcq", "LOCATION_NAME": "Los Camaradas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940826, "LONGITUDE": -75.179816, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010013003.0, "MEDIAN_DWELL": 80.0, "Total Spend": 13112.0, "Total Transactions": 202.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 91.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179816, 39.940826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pft-ygk", "LOCATION_NAME": "Chubbys Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029131, "LONGITUDE": -75.206304, "DATE_RANGE_START": 2022, "Total Visits": 408.0, "Total Visitors": 343.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 21239.0, "Total Transactions": 742.0, "Total Customers": 382.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.08, "MEDIAN_SPEND_PER_CUSTOMER": 44.15 }, "geometry": { "type": "Point", "coordinates": [ -75.206304, 40.029131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-8jv", "LOCATION_NAME": "The Nile Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039401, "LONGITUDE": -75.177975, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 214.0, "Total Spend": 398.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.08, "MEDIAN_SPEND_PER_CUSTOMER": 114.16 }, "geometry": { "type": "Point", "coordinates": [ -75.177975, 40.039401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "LOCATION_NAME": "Nom Nom Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 146.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2989.0, "Total Transactions": 66.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.84, "MEDIAN_SPEND_PER_CUSTOMER": 73.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmb-djv", "LOCATION_NAME": "Hawthornes Biercafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941057, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 54.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 370.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.08, "MEDIAN_SPEND_PER_CUSTOMER": 106.15 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.941057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pj6-rx5", "LOCATION_NAME": "Bravo's Pizza Seafood House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038349, "LONGITUDE": -75.124135, "DATE_RANGE_START": 2022, "Total Visits": 249.0, "Total Visitors": 176.0, "POI_CBG": 421010274023.0, "MEDIAN_DWELL": 52.0, "Total Spend": 443.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 127.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124135, 40.038349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-9cq", "LOCATION_NAME": "White Dog Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953556, "LONGITUDE": -75.192905, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 9627.0, "Total Transactions": 132.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.19, "MEDIAN_SPEND_PER_CUSTOMER": 98.16 }, "geometry": { "type": "Point", "coordinates": [ -75.192905, 39.953556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7yv", "LOCATION_NAME": "Hunger Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953665, "LONGITUDE": -75.159753, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 268.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 91.0, "Total Spend": 758.0, "Total Transactions": 40.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.3, "MEDIAN_SPEND_PER_CUSTOMER": 33.91 }, "geometry": { "type": "Point", "coordinates": [ -75.159753, 39.953665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 192.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7577.0, "Total Transactions": 444.0, "Total Customers": 340.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.1, "MEDIAN_SPEND_PER_CUSTOMER": 18.94 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-zmk", "LOCATION_NAME": "Colney Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036792, "LONGITUDE": -75.130653, "DATE_RANGE_START": 2022, "Total Visits": 885.0, "Total Visitors": 420.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 363.0, "Total Spend": 5424.0, "Total Transactions": 274.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.25, "MEDIAN_SPEND_PER_CUSTOMER": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130653, 40.036792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-t7q", "LOCATION_NAME": "Paprica Modern Mediterranean Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949133, "LONGITUDE": -75.154633, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 99.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 123.0, "Total Spend": 5174.0, "Total Transactions": 89.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.83, "MEDIAN_SPEND_PER_CUSTOMER": 92.78 }, "geometry": { "type": "Point", "coordinates": [ -75.154633, 39.949133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2022, "Total Visits": 395.0, "Total Visitors": 322.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 19492.0, "Total Transactions": 1643.0, "Total Customers": 894.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.22, "MEDIAN_SPEND_PER_CUSTOMER": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "LOCATION_NAME": "Bassetts Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 87.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9592.0, "Total Transactions": 902.0, "Total Customers": 441.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.96, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pp4-r49", "LOCATION_NAME": "Pet Supplies Plus", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.974037, "LONGITUDE": -75.12038, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 89.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 20706.0, "Total Transactions": 449.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.5, "MEDIAN_SPEND_PER_CUSTOMER": 51.24 }, "geometry": { "type": "Point", "coordinates": [ -75.12038, 39.974037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7z-xnq", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032765, "LONGITUDE": -75.083361, "DATE_RANGE_START": 2022, "Total Visits": 329.0, "Total Visitors": 254.0, "POI_CBG": 421010312003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7039.0, "Total Transactions": 545.0, "Total Customers": 366.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.6, "MEDIAN_SPEND_PER_CUSTOMER": 14.35 }, "geometry": { "type": "Point", "coordinates": [ -75.083361, 40.032765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-p8n-cnq", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.036246, "LONGITUDE": -75.070259, "DATE_RANGE_START": 2022, "Total Visits": 1470.0, "Total Visitors": 967.0, "POI_CBG": 421010313003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 80618.0, "Total Transactions": 3418.0, "Total Customers": 1578.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.97, "MEDIAN_SPEND_PER_CUSTOMER": 25.83 }, "geometry": { "type": "Point", "coordinates": [ -75.070259, 40.036246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.070297, "LONGITUDE": -75.030572, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 319.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 16277.0, "Total Transactions": 810.0, "Total Customers": 465.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.67, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030572, 40.070297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "LOCATION_NAME": "Johns Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03316, "LONGITUDE": -75.177034, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 63.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10203.0, "Total Transactions": 427.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.55, "MEDIAN_SPEND_PER_CUSTOMER": 38.82 }, "geometry": { "type": "Point", "coordinates": [ -75.177034, 40.03316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pg4-j9z", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.035849, "LONGITUDE": -75.174389, "DATE_RANGE_START": 2022, "Total Visits": 786.0, "Total Visitors": 589.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3744.0, "Total Transactions": 40.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.98, "MEDIAN_SPEND_PER_CUSTOMER": 92.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174389, 40.035849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.912981, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 64.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 47.0, "Total Spend": 2969.0, "Total Transactions": 37.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.04, "MEDIAN_SPEND_PER_CUSTOMER": 39.97 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.912981 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.035295, "LONGITUDE": -75.065039, "DATE_RANGE_START": 2022, "Total Visits": 371.0, "Total Visitors": 289.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 558.0, "Total Transactions": 28.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.33, "MEDIAN_SPEND_PER_CUSTOMER": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.065039, 40.035295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-c89", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068373, "LONGITUDE": -75.068436, "DATE_RANGE_START": 2022, "Total Visits": 1284.0, "Total Visitors": 521.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7166.0, "Total Transactions": 897.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.21 }, "geometry": { "type": "Point", "coordinates": [ -75.068436, 40.068373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmf-kj9", "LOCATION_NAME": "Ateethi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951075, "LONGITUDE": -75.175107, "DATE_RANGE_START": 2022, "Total Visits": 2063.0, "Total Visitors": 1380.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 90.0, "Total Spend": 583.0, "Total Transactions": 45.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.4, "MEDIAN_SPEND_PER_CUSTOMER": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175107, 39.951075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "LOCATION_NAME": "Crunchik'n", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2022, "Total Visits": 1357.0, "Total Visitors": 772.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 183.0, "Total Spend": 459.0, "Total Transactions": 21.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "LOCATION_NAME": "A Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950427, "LONGITUDE": -75.170427, "DATE_RANGE_START": 2022, "Total Visits": 718.0, "Total Visitors": 552.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 63.0, "Total Spend": 21449.0, "Total Transactions": 1179.0, "Total Customers": 495.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 31.96 }, "geometry": { "type": "Point", "coordinates": [ -75.170427, 39.950427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pj6-k4v", "LOCATION_NAME": "Pelicana Chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04453, "LONGITUDE": -75.117658, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1104.0, "Total Transactions": 21.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.13, "MEDIAN_SPEND_PER_CUSTOMER": 160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117658, 40.04453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phd-h89", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002639, "LONGITUDE": -75.222769, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 127.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4508.0, "Total Transactions": 225.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.64, "MEDIAN_SPEND_PER_CUSTOMER": 17.25 }, "geometry": { "type": "Point", "coordinates": [ -75.222769, 40.002639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pmb-vfz", "LOCATION_NAME": "Liberty Bell Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949128, "LONGITUDE": -75.14367, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 49.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 355.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.74, "MEDIAN_SPEND_PER_CUSTOMER": 41.48 }, "geometry": { "type": "Point", "coordinates": [ -75.14367, 39.949128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmd-yjv", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937442, "LONGITUDE": -75.176792, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5126.0, "Total Transactions": 502.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.98, "MEDIAN_SPEND_PER_CUSTOMER": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.176792, 39.937442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "LOCATION_NAME": "Chillin Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 478.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.14, "MEDIAN_SPEND_PER_CUSTOMER": 96.28 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-w6k", "LOCATION_NAME": "Food & Friends", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948295, "LONGITUDE": -75.174192, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 112.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 1.0, "Total Spend": 30839.0, "Total Transactions": 1603.0, "Total Customers": 498.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.22, "MEDIAN_SPEND_PER_CUSTOMER": 43.46 }, "geometry": { "type": "Point", "coordinates": [ -75.174192, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050364, "LONGITUDE": -75.094508, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 61.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1563.0, "Total Transactions": 174.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.49, "MEDIAN_SPEND_PER_CUSTOMER": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.094508, 40.050364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "LOCATION_NAME": "Asia On the Parkway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95574, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2022, "Total Visits": 1742.0, "Total Visitors": 1016.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 346.0, "Total Spend": 8703.0, "Total Transactions": 183.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 60.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.95574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 9887.0, "Total Transactions": 348.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 30.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-ph8-rx5", "LOCATION_NAME": "Royal Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.97851, "LONGITUDE": -75.271319, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 399.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.24, "MEDIAN_SPEND_PER_CUSTOMER": 114.48 }, "geometry": { "type": "Point", "coordinates": [ -75.271319, 39.97851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-yn5", "LOCATION_NAME": "Encore", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973824, "LONGITUDE": -75.204593, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 30.0, "POI_CBG": 421010110003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 895.0, "Total Transactions": 35.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.5, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204593, 39.973824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "LOCATION_NAME": "New Deck Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953506, "LONGITUDE": -75.192591, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 41472.0, "Total Transactions": 749.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.56, "MEDIAN_SPEND_PER_CUSTOMER": 86.65 }, "geometry": { "type": "Point", "coordinates": [ -75.192591, 39.953506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-tvz", "LOCATION_NAME": "Via Locusta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949069, "LONGITUDE": -75.170305, "DATE_RANGE_START": 2022, "Total Visits": 995.0, "Total Visitors": 549.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 216.0, "Total Spend": 17395.0, "Total Transactions": 183.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.04, "MEDIAN_SPEND_PER_CUSTOMER": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170305, 39.949069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-k75", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.094473, "LONGITUDE": -75.018339, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 64.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 244.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.55, "MEDIAN_SPEND_PER_CUSTOMER": 22.55 }, "geometry": { "type": "Point", "coordinates": [ -75.018339, 40.094473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7w-c89", "LOCATION_NAME": "Philly's Finest Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068215, "LONGITUDE": -75.06872, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 96.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 147.0, "Total Spend": 2773.0, "Total Transactions": 112.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.85, "MEDIAN_SPEND_PER_CUSTOMER": 63.22 }, "geometry": { "type": "Point", "coordinates": [ -75.06872, 40.068215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "LOCATION_NAME": "Royal Boucherie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948704, "LONGITUDE": -75.144251, "DATE_RANGE_START": 2022, "Total Visits": 1094.0, "Total Visitors": 866.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 57.0, "Total Spend": 15139.0, "Total Transactions": 150.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.76, "MEDIAN_SPEND_PER_CUSTOMER": 145.08 }, "geometry": { "type": "Point", "coordinates": [ -75.144251, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 75.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2221.0, "Total Transactions": 38.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.88, "MEDIAN_SPEND_PER_CUSTOMER": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-jjv", "LOCATION_NAME": "Copabanana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951555, "LONGITUDE": -75.203266, "DATE_RANGE_START": 2022, "Total Visits": 294.0, "Total Visitors": 220.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 80.0, "Total Spend": 13700.0, "Total Transactions": 223.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.77, "MEDIAN_SPEND_PER_CUSTOMER": 90.9 }, "geometry": { "type": "Point", "coordinates": [ -75.203266, 39.951555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-7nq", "LOCATION_NAME": "Chatayee Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94915, "LONGITUDE": -75.161857, "DATE_RANGE_START": 2022, "Total Visits": 1037.0, "Total Visitors": 646.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 272.0, "Total Spend": 766.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.18, "MEDIAN_SPEND_PER_CUSTOMER": 79.68 }, "geometry": { "type": "Point", "coordinates": [ -75.161857, 39.94915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-ty9", "LOCATION_NAME": "Stir", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965783, "LONGITUDE": -75.181173, "DATE_RANGE_START": 2022, "Total Visits": 3180.0, "Total Visitors": 2786.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 92.0, "Total Spend": 2825.0, "Total Transactions": 91.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.5, "MEDIAN_SPEND_PER_CUSTOMER": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181173, 39.965783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 251.0, "POI_CBG": 421010200001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7570.0, "Total Transactions": 753.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.47, "MEDIAN_SPEND_PER_CUSTOMER": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 61.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 251.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.57, "MEDIAN_SPEND_PER_CUSTOMER": 18.41 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tqf", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.926373, "LONGITUDE": -75.141555, "DATE_RANGE_START": 2022, "Total Visits": 7978.0, "Total Visitors": 5340.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 416860.0, "Total Transactions": 6418.0, "Total Customers": 4293.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.97, "MEDIAN_SPEND_PER_CUSTOMER": 54.98 }, "geometry": { "type": "Point", "coordinates": [ -75.141555, 39.926373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pfv-649", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043396, "LONGITUDE": -75.190646, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 160.0, "POI_CBG": 421010237001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3101.0, "Total Transactions": 296.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.24, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.190646, 40.043396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030538, "LONGITUDE": -75.181434, "DATE_RANGE_START": 2022, "Total Visits": 211.0, "Total Visitors": 157.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2542.0, "Total Transactions": 148.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.9, "MEDIAN_SPEND_PER_CUSTOMER": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.181434, 40.030538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.021226, "LONGITUDE": -75.14987, "DATE_RANGE_START": 2022, "Total Visits": 488.0, "Total Visitors": 347.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 335.0, "Total Transactions": 24.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.55, "MEDIAN_SPEND_PER_CUSTOMER": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14987, 40.021226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pmb-cwk", "LOCATION_NAME": "Sushi Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943263, "LONGITUDE": -75.163741, "DATE_RANGE_START": 2022, "Total Visits": 265.0, "Total Visitors": 169.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 401.0, "Total Spend": 3876.0, "Total Transactions": 113.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.04, "MEDIAN_SPEND_PER_CUSTOMER": 51.26 }, "geometry": { "type": "Point", "coordinates": [ -75.163741, 39.943263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-ks5", "LOCATION_NAME": "Sharetea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934528, "LONGITUDE": -75.154692, "DATE_RANGE_START": 2022, "Total Visits": 1427.0, "Total Visitors": 995.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 4084.0, "Total Transactions": 329.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.62, "MEDIAN_SPEND_PER_CUSTOMER": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154692, 39.934528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5s5", "LOCATION_NAME": "Loews Philadelphia Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951431, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2022, "Total Visits": 15002.0, "Total Visitors": 9187.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 279.0, "Total Spend": 83801.0, "Total Transactions": 758.0, "Total Customers": 465.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.2, "MEDIAN_SPEND_PER_CUSTOMER": 49.44 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 39.951431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22g@63s-dw9-7nq", "LOCATION_NAME": "Admirals Club PHL Terminal A West", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.894648, "LONGITUDE": -75.229132, "DATE_RANGE_START": 2022, "Total Visits": 1301.0, "Total Visitors": 1106.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 947.0, "Total Transactions": 45.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.64, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229132, 39.894648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "LOCATION_NAME": "Tampopo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953009, "LONGITUDE": -75.210311, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 181.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 480.0, "Total Spend": 1584.0, "Total Transactions": 82.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.85, "MEDIAN_SPEND_PER_CUSTOMER": 30.46 }, "geometry": { "type": "Point", "coordinates": [ -75.210311, 39.953009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8f-djv", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017133, "LONGITUDE": -75.084023, "DATE_RANGE_START": 2022, "Total Visits": 463.0, "Total Visitors": 287.0, "POI_CBG": 421010300006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 571.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.98, "MEDIAN_SPEND_PER_CUSTOMER": 46.78 }, "geometry": { "type": "Point", "coordinates": [ -75.084023, 40.017133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6p9", "LOCATION_NAME": "DelFrisco's Double Eagle Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950881, "LONGITUDE": -75.165456, "DATE_RANGE_START": 2022, "Total Visits": 3288.0, "Total Visitors": 2610.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 71.0, "Total Spend": 34881.0, "Total Transactions": 280.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.28, "MEDIAN_SPEND_PER_CUSTOMER": 197.36 }, "geometry": { "type": "Point", "coordinates": [ -75.165456, 39.950881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pj5-j9z", "LOCATION_NAME": "Pizza Power", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998737, "LONGITUDE": -75.128356, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 12.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 339.0, "Total Spend": 337.0, "Total Transactions": 14.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.58, "MEDIAN_SPEND_PER_CUSTOMER": 58.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128356, 39.998737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vfz", "LOCATION_NAME": "Four Worlds Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94341, "LONGITUDE": -75.210507, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010074001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2563.0, "Total Transactions": 157.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.26, "MEDIAN_SPEND_PER_CUSTOMER": 26.52 }, "geometry": { "type": "Point", "coordinates": [ -75.210507, 39.94341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pn5", "LOCATION_NAME": "Tortilleria San Roman", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937643, "LONGITUDE": -75.157989, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 195.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157989, 39.937643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-t5f", "LOCATION_NAME": "Golden Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965831, "LONGITUDE": -75.160375, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 19.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 946.0, "Total Transactions": 47.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.6, "MEDIAN_SPEND_PER_CUSTOMER": 34.08 }, "geometry": { "type": "Point", "coordinates": [ -75.160375, 39.965831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp5-gff", "LOCATION_NAME": "Stop One Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.985559, "LONGITUDE": -75.111594, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 30.0, "POI_CBG": 421010179003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 609.0, "Total Transactions": 47.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.25, "MEDIAN_SPEND_PER_CUSTOMER": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.111594, 39.985559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvx-xkf", "LOCATION_NAME": "Fiesta Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948778, "LONGITUDE": -75.213466, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 40.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 31.0, "Total Spend": 715.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.6, "MEDIAN_SPEND_PER_CUSTOMER": 205.19 }, "geometry": { "type": "Point", "coordinates": [ -75.213466, 39.948778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-z9f", "LOCATION_NAME": "Rosarios Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934489, "LONGITUDE": -75.169442, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 44.0, "POI_CBG": 421010022002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4407.0, "Total Transactions": 171.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.06, "MEDIAN_SPEND_PER_CUSTOMER": 48.44 }, "geometry": { "type": "Point", "coordinates": [ -75.169442, 39.934489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 47.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5572.0, "Total Transactions": 728.0, "Total Customers": 387.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.65, "MEDIAN_SPEND_PER_CUSTOMER": 9.51 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-94v", "LOCATION_NAME": "La tapenade", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941057, "LONGITUDE": -75.146154, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 44.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 464.0, "Total Spend": 9035.0, "Total Transactions": 368.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.25, "MEDIAN_SPEND_PER_CUSTOMER": 29.59 }, "geometry": { "type": "Point", "coordinates": [ -75.146154, 39.941057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgk-z9f", "LOCATION_NAME": "Fuwa Deli&beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99997, "LONGITUDE": -75.209417, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010122041.0, "MEDIAN_DWELL": 3.0, "Total Spend": 699.0, "Total Transactions": 9.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.0, "MEDIAN_SPEND_PER_CUSTOMER": 200.73 }, "geometry": { "type": "Point", "coordinates": [ -75.209417, 39.99997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 122.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4632.0, "Total Transactions": 321.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.58, "MEDIAN_SPEND_PER_CUSTOMER": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@63s-dvw-bhq", "LOCATION_NAME": "Pm Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.961425, "LONGITUDE": -75.224249, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010093003.0, "MEDIAN_DWELL": 709.0, "Total Spend": 771.0, "Total Transactions": 87.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224249, 39.961425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983085, "LONGITUDE": -75.241704, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 28.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8022.0, "Total Transactions": 293.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.26, "MEDIAN_SPEND_PER_CUSTOMER": 29.28 }, "geometry": { "type": "Point", "coordinates": [ -75.241704, 39.983085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "LOCATION_NAME": "The Gold Standard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 181.0, "Total Spend": 4152.0, "Total Transactions": 233.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 36.94 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04622, "LONGITUDE": -75.195937, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 52.0, "POI_CBG": 421010236003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 861.0, "Total Transactions": 47.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.1, "MEDIAN_SPEND_PER_CUSTOMER": 17.43 }, "geometry": { "type": "Point", "coordinates": [ -75.195937, 40.04622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f9f", "LOCATION_NAME": "El Balconcito II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052956, "LONGITUDE": -75.064913, "DATE_RANGE_START": 2022, "Total Visits": 1444.0, "Total Visitors": 784.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 66.0, "Total Spend": 8787.0, "Total Transactions": 113.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.24, "MEDIAN_SPEND_PER_CUSTOMER": 135.08 }, "geometry": { "type": "Point", "coordinates": [ -75.064913, 40.052956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-fvf", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.0328, "LONGITUDE": -75.177311, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 91.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1326.0, "Total Transactions": 40.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.98, "MEDIAN_SPEND_PER_CUSTOMER": 29.08 }, "geometry": { "type": "Point", "coordinates": [ -75.177311, 40.0328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.964853, "LONGITUDE": -75.204438, "DATE_RANGE_START": 2022, "Total Visits": 267.0, "Total Visitors": 186.0, "POI_CBG": 421010107002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 937.0, "Total Transactions": 103.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.16, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.204438, 39.964853 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.986359, "LONGITUDE": -75.179573, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 99.0, "POI_CBG": 421010151021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 174.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.179573, 39.986359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j5f", "LOCATION_NAME": "Paper Source", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.94972, "LONGITUDE": -75.168619, "DATE_RANGE_START": 2022, "Total Visits": 510.0, "Total Visitors": 293.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 651.0, "Total Spend": 11853.0, "Total Transactions": 404.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.14, "MEDIAN_SPEND_PER_CUSTOMER": 25.33 }, "geometry": { "type": "Point", "coordinates": [ -75.168619, 39.94972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "LOCATION_NAME": "OfficeMax", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.043545, "LONGITUDE": -75.054368, "DATE_RANGE_START": 2022, "Total Visits": 1087.0, "Total Visitors": 925.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8771.0, "Total Transactions": 225.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054368, 40.043545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-4y9", "LOCATION_NAME": "CIBO Express Market", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.87575, "LONGITUDE": -75.24417, "DATE_RANGE_START": 2022, "Total Visits": 313162.0, "Total Visitors": 180913.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 174.0, "Total Transactions": 16.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24417, 39.87575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@63s-dw4-rzf", "LOCATION_NAME": "Gachi Sushi and Noodle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895158, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9759.0, "Total Transactions": 544.0, "Total Customers": 256.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.9, "MEDIAN_SPEND_PER_CUSTOMER": 31.56 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.895158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-dd9", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991806, "LONGITUDE": -75.113116, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010178003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1745.0, "Total Transactions": 118.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.9, "MEDIAN_SPEND_PER_CUSTOMER": 31.9 }, "geometry": { "type": "Point", "coordinates": [ -75.113116, 39.991806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-y9z", "LOCATION_NAME": "Bella Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941863, "LONGITUDE": -75.148989, "DATE_RANGE_START": 2022, "Total Visits": 1202.0, "Total Visitors": 998.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 864.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 111.0, "MEDIAN_SPEND_PER_CUSTOMER": 248.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148989, 39.941863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "LOCATION_NAME": "Olive Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2022, "Total Visits": 1108.0, "Total Visitors": 817.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 58.0, "Total Spend": 19635.0, "Total Transactions": 335.0, "Total Customers": 307.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.54, "MEDIAN_SPEND_PER_CUSTOMER": 59.47 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-yd9", "LOCATION_NAME": "Ciocca Subaru of Philadelphia", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.936465, "LONGITUDE": -75.198692, "DATE_RANGE_START": 2022, "Total Visits": 366.0, "Total Visitors": 270.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 85.0, "Total Spend": 13566.0, "Total Transactions": 24.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 190.64, "MEDIAN_SPEND_PER_CUSTOMER": 196.35 }, "geometry": { "type": "Point", "coordinates": [ -75.198692, 39.936465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj7-54v", "LOCATION_NAME": "New China Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04309, "LONGITUDE": -75.103706, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 8.0, "Total Spend": 297.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.63, "MEDIAN_SPEND_PER_CUSTOMER": 28.52 }, "geometry": { "type": "Point", "coordinates": [ -75.103706, 40.04309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pg2-zs5", "LOCATION_NAME": "South Philly Italian Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054139, "LONGITUDE": -75.194452, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010388004.0, "MEDIAN_DWELL": null, "Total Spend": 521.0, "Total Transactions": 16.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.11, "MEDIAN_SPEND_PER_CUSTOMER": 70.22 }, "geometry": { "type": "Point", "coordinates": [ -75.194452, 40.054139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-z75", "LOCATION_NAME": "Johnstone Supply", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.960021, "LONGITUDE": -75.149706, "DATE_RANGE_START": 2022, "Total Visits": 383.0, "Total Visitors": 272.0, "POI_CBG": 421010376001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1805.0, "Total Transactions": 16.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.54, "MEDIAN_SPEND_PER_CUSTOMER": 517.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149706, 39.960021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmc-v2k", "LOCATION_NAME": "HomeGoods", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.923473, "LONGITUDE": -75.140935, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 282.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 79.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.8, "MEDIAN_SPEND_PER_CUSTOMER": 22.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140935, 39.923473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvs-2ff", "LOCATION_NAME": "Kim's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.93806, "LONGITUDE": -75.22561, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 70.0, "POI_CBG": 421010071012.0, "MEDIAN_DWELL": 58.0, "Total Spend": 299.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.53, "MEDIAN_SPEND_PER_CUSTOMER": 23.06 }, "geometry": { "type": "Point", "coordinates": [ -75.22561, 39.93806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2022, "Total Visits": 429.0, "Total Visitors": 284.0, "POI_CBG": 421010389003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2688.0, "Total Transactions": 70.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.64, "MEDIAN_SPEND_PER_CUSTOMER": 43.88 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "LOCATION_NAME": "Cottman Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2022, "Total Visits": 274.0, "Total Visitors": 185.0, "POI_CBG": 421010331013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10840.0, "Total Transactions": 429.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 44.26 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj4-vj9", "LOCATION_NAME": "Freddy & Tony's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999255, "LONGITUDE": -75.133375, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 47.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 54.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.56, "MEDIAN_SPEND_PER_CUSTOMER": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.133375, 39.999255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-3dv", "LOCATION_NAME": "Sheraton Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.95502, "LONGITUDE": -75.193986, "DATE_RANGE_START": 2022, "Total Visits": 2573.0, "Total Visitors": 1089.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 459.0, "Total Spend": 3418.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 278.74, "MEDIAN_SPEND_PER_CUSTOMER": 522.48 }, "geometry": { "type": "Point", "coordinates": [ -75.193986, 39.95502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phz-z4v", "LOCATION_NAME": "Emes Bedding", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.005856, "LONGITUDE": -75.117995, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 56.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 520.0, "Total Spend": 172.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.32, "MEDIAN_SPEND_PER_CUSTOMER": 49.32 }, "geometry": { "type": "Point", "coordinates": [ -75.117995, 40.005856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "LOCATION_NAME": "ALDO", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.952094, "LONGITUDE": -75.167619, "DATE_RANGE_START": 2022, "Total Visits": 821.0, "Total Visitors": 601.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 121.0, "Total Spend": 2858.0, "Total Transactions": 38.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.98, "MEDIAN_SPEND_PER_CUSTOMER": 60.04 }, "geometry": { "type": "Point", "coordinates": [ -75.167619, 39.952094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "LOCATION_NAME": "Red Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2022, "Total Visits": 340.0, "Total Visitors": 317.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 54.0, "Total Spend": 13485.0, "Total Transactions": 200.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.83, "MEDIAN_SPEND_PER_CUSTOMER": 69.71 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pm9-y9z", "LOCATION_NAME": "Gold Heart Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941621, "LONGITUDE": -75.150209, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 366.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 17450.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 704.0, "MEDIAN_SPEND_PER_CUSTOMER": 1408.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150209, 39.941621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962306, "LONGITUDE": -75.172957, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 113.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 72.0, "Total Spend": 18344.0, "Total Transactions": 620.0, "Total Customers": 481.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.77, "MEDIAN_SPEND_PER_CUSTOMER": 30.97 }, "geometry": { "type": "Point", "coordinates": [ -75.172957, 39.962306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979849, "LONGITUDE": -75.269293, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 226.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 16401.0, "Total Transactions": 918.0, "Total Customers": 688.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.77, "MEDIAN_SPEND_PER_CUSTOMER": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.269293, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgc-wzf", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977954, "LONGITUDE": -75.224016, "DATE_RANGE_START": 2022, "Total Visits": 2009.0, "Total Visitors": 1063.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 339.0, "Total Transactions": 23.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.88, "MEDIAN_SPEND_PER_CUSTOMER": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.224016, 39.977954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7bk", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948987, "LONGITUDE": -75.16307, "DATE_RANGE_START": 2022, "Total Visits": 620.0, "Total Visitors": 453.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 56.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.19, "MEDIAN_SPEND_PER_CUSTOMER": 12.19 }, "geometry": { "type": "Point", "coordinates": [ -75.16307, 39.948987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2022, "Total Visits": 718.0, "Total Visitors": 521.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8207.0, "Total Transactions": 1064.0, "Total Customers": 549.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94013, "LONGITUDE": -75.165831, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 84.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3991.0, "Total Transactions": 622.0, "Total Customers": 289.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.76, "MEDIAN_SPEND_PER_CUSTOMER": 8.09 }, "geometry": { "type": "Point", "coordinates": [ -75.165831, 39.94013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918938, "LONGITUDE": -75.140855, "DATE_RANGE_START": 2022, "Total Visits": 477.0, "Total Visitors": 397.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 211.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.69, "MEDIAN_SPEND_PER_CUSTOMER": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 39.918938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "LOCATION_NAME": "Chuck E. Cheese's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921782, "LONGITUDE": -75.1449, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 127.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 1785.0, "Total Transactions": 33.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.81, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1449, 39.921782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "LOCATION_NAME": "Tattooed Mom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941873, "LONGITUDE": -75.151859, "DATE_RANGE_START": 2022, "Total Visits": 181.0, "Total Visitors": 167.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 55536.0, "Total Transactions": 1486.0, "Total Customers": 702.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.04, "MEDIAN_SPEND_PER_CUSTOMER": 67.04 }, "geometry": { "type": "Point", "coordinates": [ -75.151859, 39.941873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-68v", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051732, "LONGITUDE": -75.010927, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 33.0, "Total Spend": 3387.0, "Total Transactions": 106.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.78, "MEDIAN_SPEND_PER_CUSTOMER": 33.2 }, "geometry": { "type": "Point", "coordinates": [ -75.010927, 40.051732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7qz", "LOCATION_NAME": "Wishbone", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948376, "LONGITUDE": -75.162398, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 160.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 89.0, "Total Spend": 1967.0, "Total Transactions": 96.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.66, "MEDIAN_SPEND_PER_CUSTOMER": 31.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162398, 39.948376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-c5z", "LOCATION_NAME": "Maple Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97918, "LONGITUDE": -75.160433, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 91.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 60.0, "Total Spend": 4260.0, "Total Transactions": 228.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160433, 39.97918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-k4v", "LOCATION_NAME": "Paradise Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968728, "LONGITUDE": -75.136484, "DATE_RANGE_START": 2022, "Total Visits": 458.0, "Total Visitors": 348.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 34.0, "Total Spend": 557.0, "Total Transactions": 23.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.22, "MEDIAN_SPEND_PER_CUSTOMER": 30.03 }, "geometry": { "type": "Point", "coordinates": [ -75.136484, 39.968728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2022, "Total Visits": 282.0, "Total Visitors": 254.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3928.0, "Total Transactions": 106.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.51, "MEDIAN_SPEND_PER_CUSTOMER": 61.24 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@628-pmb-835", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95246, "LONGITUDE": -75.158356, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 259.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.06, "MEDIAN_SPEND_PER_CUSTOMER": 41.06 }, "geometry": { "type": "Point", "coordinates": [ -75.158356, 39.95246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pj6-k4v", "LOCATION_NAME": "Mari Mari", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04511, "LONGITUDE": -75.117199, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 192.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.57, "MEDIAN_SPEND_PER_CUSTOMER": 27.13 }, "geometry": { "type": "Point", "coordinates": [ -75.117199, 40.04511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgg-9xq", "LOCATION_NAME": "Boss Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.003922, "LONGITUDE": -75.168399, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 44.0, "POI_CBG": 421010171003.0, "MEDIAN_DWELL": 266.0, "Total Spend": 7108.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 1000.0, "MEDIAN_SPEND_PER_CUSTOMER": 2000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168399, 40.003922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "LOCATION_NAME": "Weavers Way Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 66.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 368.0, "Total Spend": 91540.0, "Total Transactions": 2246.0, "Total Customers": 678.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.98, "MEDIAN_SPEND_PER_CUSTOMER": 85.18 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 293.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2727.0, "Total Transactions": 242.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.69, "MEDIAN_SPEND_PER_CUSTOMER": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954547, "LONGITUDE": -75.194897, "DATE_RANGE_START": 2022, "Total Visits": 256.0, "Total Visitors": 183.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 42078.0, "Total Transactions": 3988.0, "Total Customers": 1730.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.12, "MEDIAN_SPEND_PER_CUSTOMER": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.194897, 39.954547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 125.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 144.0, "Total Spend": 921.0, "Total Transactions": 17.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.42, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.955786, "LONGITUDE": -75.214102, "DATE_RANGE_START": 2022, "Total Visits": 1638.0, "Total Visitors": 1166.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1087.0, "Total Transactions": 35.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.5, "MEDIAN_SPEND_PER_CUSTOMER": 35.25 }, "geometry": { "type": "Point", "coordinates": [ -75.214102, 39.955786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phy-v9f", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030432, "LONGITUDE": -75.118462, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 122.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2897.0, "Total Transactions": 101.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118462, 40.030432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "LOCATION_NAME": "Forever 21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2022, "Total Visits": 1200.0, "Total Visitors": 970.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 23.0, "Total Spend": 13574.0, "Total Transactions": 395.0, "Total Customers": 345.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.26, "MEDIAN_SPEND_PER_CUSTOMER": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvx-3dv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.967245, "LONGITUDE": -75.215949, "DATE_RANGE_START": 2022, "Total Visits": 397.0, "Total Visitors": 247.0, "POI_CBG": 421010105001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 933.0, "Total Transactions": 47.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.41, "MEDIAN_SPEND_PER_CUSTOMER": 20.86 }, "geometry": { "type": "Point", "coordinates": [ -75.215949, 39.967245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.008742, "LONGITUDE": -75.17653, "DATE_RANGE_START": 2022, "Total Visits": 639.0, "Total Visitors": 411.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 34.0, "Total Spend": 12447.0, "Total Transactions": 272.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 38.46 }, "geometry": { "type": "Point", "coordinates": [ -75.17653, 40.008742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-2kz", "LOCATION_NAME": "Digital Underground", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.939663, "LONGITUDE": -75.149717, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 52.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 973.0, "Total Spend": 2585.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 367.16, "MEDIAN_SPEND_PER_CUSTOMER": 734.32 }, "geometry": { "type": "Point", "coordinates": [ -75.149717, 39.939663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 139.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2396.0, "Total Transactions": 193.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.61, "MEDIAN_SPEND_PER_CUSTOMER": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-5vf", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048428, "LONGITUDE": -75.061751, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 87.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1621.0, "Total Transactions": 99.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.94, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.061751, 40.048428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081241, "LONGITUDE": -74.99492, "DATE_RANGE_START": 2022, "Total Visits": 540.0, "Total Visitors": 256.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2533.0, "Total Transactions": 314.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.53, "MEDIAN_SPEND_PER_CUSTOMER": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -74.99492, 40.081241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 94.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5673.0, "Total Transactions": 688.0, "Total Customers": 333.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 8.61 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-x89", "LOCATION_NAME": "Green Lion Breads", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950111, "LONGITUDE": -75.147526, "DATE_RANGE_START": 2022, "Total Visits": 744.0, "Total Visitors": 617.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 21.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.05, "MEDIAN_SPEND_PER_CUSTOMER": 6.05 }, "geometry": { "type": "Point", "coordinates": [ -75.147526, 39.950111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm6-gkz", "LOCATION_NAME": "South View Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919441, "LONGITUDE": -75.153896, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 9.0, "POI_CBG": 421010042024.0, "MEDIAN_DWELL": 91.0, "Total Spend": 2180.0, "Total Transactions": 98.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.91, "MEDIAN_SPEND_PER_CUSTOMER": 41.28 }, "geometry": { "type": "Point", "coordinates": [ -75.153896, 39.919441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pm3-vpv", "LOCATION_NAME": "Philadelphia Scooters", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.936705, "LONGITUDE": -75.186573, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 70.0, "POI_CBG": 421010020002.0, "MEDIAN_DWELL": 457.0, "Total Spend": 2149.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 282.16, "MEDIAN_SPEND_PER_CUSTOMER": 308.41 }, "geometry": { "type": "Point", "coordinates": [ -75.186573, 39.936705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmb-ckf", "LOCATION_NAME": "Home Gallery", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.942072, "LONGITUDE": -75.154677, "DATE_RANGE_START": 2022, "Total Visits": 840.0, "Total Visitors": 634.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 95.0, "Total Spend": 46283.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 2915.96, "MEDIAN_SPEND_PER_CUSTOMER": 5831.92 }, "geometry": { "type": "Point", "coordinates": [ -75.154677, 39.942072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "LOCATION_NAME": "Apple Retail Store", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2022, "Total Visits": 615.0, "Total Visitors": 458.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 66.0, "Total Spend": 204994.0, "Total Transactions": 760.0, "Total Customers": 674.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.12, "MEDIAN_SPEND_PER_CUSTOMER": 106.92 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-phy-hdv", "LOCATION_NAME": "Kim's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022409, "LONGITUDE": -75.133408, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 159.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 611.0, "Total Transactions": 38.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.52, "MEDIAN_SPEND_PER_CUSTOMER": 35.72 }, "geometry": { "type": "Point", "coordinates": [ -75.133408, 40.022409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.878244, "LONGITUDE": -75.24235, "DATE_RANGE_START": 2022, "Total Visits": 49623.0, "Total Visitors": 42898.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 14807.0, "Total Transactions": 1110.0, "Total Customers": 580.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.64 }, "geometry": { "type": "Point", "coordinates": [ -75.24235, 39.878244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@63s-dw9-7nq", "LOCATION_NAME": "Jack Duggan's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.874756, "LONGITUDE": -75.24707, "DATE_RANGE_START": 2022, "Total Visits": 226042.0, "Total Visitors": 145993.0, "POI_CBG": 420459800001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 1887.0, "Total Transactions": 42.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.3, "MEDIAN_SPEND_PER_CUSTOMER": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.24707, 39.874756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "LOCATION_NAME": "Real Food Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949409, "LONGITUDE": -75.167315, "DATE_RANGE_START": 2022, "Total Visits": 361.0, "Total Visitors": 261.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 174.0, "Total Spend": 1763.0, "Total Transactions": 98.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.24, "MEDIAN_SPEND_PER_CUSTOMER": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.167315, 39.949409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "LOCATION_NAME": "Nam Phuong", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936493, "LONGITUDE": -75.162002, "DATE_RANGE_START": 2022, "Total Visits": 1073.0, "Total Visitors": 862.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 31.0, "Total Spend": 17364.0, "Total Transactions": 347.0, "Total Customers": 176.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.07, "MEDIAN_SPEND_PER_CUSTOMER": 72.02 }, "geometry": { "type": "Point", "coordinates": [ -75.162002, 39.936493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3yv", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101772, "LONGITUDE": -75.007116, "DATE_RANGE_START": 2022, "Total Visits": 1437.0, "Total Visitors": 1258.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 557.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.8, "MEDIAN_SPEND_PER_CUSTOMER": 91.6 }, "geometry": { "type": "Point", "coordinates": [ -75.007116, 40.101772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "LOCATION_NAME": "The Sidecar Bar & Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 42.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 68.0, "Total Spend": 4468.0, "Total Transactions": 94.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.34, "MEDIAN_SPEND_PER_CUSTOMER": 66.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "LOCATION_NAME": "Smiley's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 52.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1191.0, "Total Transactions": 71.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.97, "MEDIAN_SPEND_PER_CUSTOMER": 20.18 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phz-q4v", "LOCATION_NAME": "Jj's Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.005715, "LONGITUDE": -75.107525, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 61.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 60.0, "Total Spend": 1801.0, "Total Transactions": 42.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.5, "MEDIAN_SPEND_PER_CUSTOMER": 82.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107525, 40.005715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-whq", "LOCATION_NAME": "Ocean City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95631, "LONGITUDE": -75.15439, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 209.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 58.0, "Total Spend": 6983.0, "Total Transactions": 101.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.7, "MEDIAN_SPEND_PER_CUSTOMER": 103.85 }, "geometry": { "type": "Point", "coordinates": [ -75.15439, 39.95631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgb-s89", "LOCATION_NAME": "The Lucky Well Spring Arts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961294, "LONGITUDE": -75.154234, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 89.0, "POI_CBG": 421010376001.0, "MEDIAN_DWELL": 150.0, "Total Spend": 2874.0, "Total Transactions": 73.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.56, "MEDIAN_SPEND_PER_CUSTOMER": 80.76 }, "geometry": { "type": "Point", "coordinates": [ -75.154234, 39.961294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 105.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7073.0, "Total Transactions": 321.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.8, "MEDIAN_SPEND_PER_CUSTOMER": 22.76 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012435, "LONGITUDE": -75.119008, "DATE_RANGE_START": 2022, "Total Visits": 723.0, "Total Visitors": 566.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 19881.0, "Total Transactions": 1296.0, "Total Customers": 808.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 18.86 }, "geometry": { "type": "Point", "coordinates": [ -75.119008, 40.012435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-wx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950748, "LONGITUDE": -75.151909, "DATE_RANGE_START": 2022, "Total Visits": 373.0, "Total Visitors": 312.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1596.0, "Total Transactions": 308.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.63, "MEDIAN_SPEND_PER_CUSTOMER": 6.46 }, "geometry": { "type": "Point", "coordinates": [ -75.151909, 39.950748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmf-6x5", "LOCATION_NAME": "Gia Pronto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947732, "LONGITUDE": -75.192715, "DATE_RANGE_START": 2022, "Total Visits": 17711.0, "Total Visitors": 9317.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 114.0, "Total Spend": 2057.0, "Total Transactions": 237.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.43, "MEDIAN_SPEND_PER_CUSTOMER": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.192715, 39.947732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-djv", "LOCATION_NAME": "Quality Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050855, "LONGITUDE": -75.094676, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 64.0, "POI_CBG": 421010306007.0, "MEDIAN_DWELL": 182.0, "Total Spend": 196.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.08, "MEDIAN_SPEND_PER_CUSTOMER": 20.47 }, "geometry": { "type": "Point", "coordinates": [ -75.094676, 40.050855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "LOCATION_NAME": "Broad Street Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 57.0, "POI_CBG": 421010023001.0, "MEDIAN_DWELL": 371.0, "Total Spend": 5592.0, "Total Transactions": 169.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.88, "MEDIAN_SPEND_PER_CUSTOMER": 47.86 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "LOCATION_NAME": "Academy Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 40.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9470.0, "Total Transactions": 267.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.34 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-x89", "LOCATION_NAME": "Kim's Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.029599, "LONGITUDE": -75.146407, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 42.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 364.0, "Total Spend": 1564.0, "Total Transactions": 71.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146407, 40.029599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "LOCATION_NAME": "Charley's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1629.0, "Total Transactions": 124.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.36, "MEDIAN_SPEND_PER_CUSTOMER": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2022, "Total Visits": 603.0, "Total Visitors": 411.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2033.0, "Total Transactions": 195.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.07, "MEDIAN_SPEND_PER_CUSTOMER": 10.53 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23b@63s-dw4-rzf", "LOCATION_NAME": "Bar Symon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.87555, "LONGITUDE": -75.238035, "DATE_RANGE_START": 2022, "Total Visits": 313162.0, "Total Visitors": 180913.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 315.0, "Total Transactions": 12.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.238035, 39.87555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "LOCATION_NAME": "Smokey Joes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 155.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 38.0, "Total Spend": 18346.0, "Total Transactions": 664.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.65 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.991624, "LONGITUDE": -75.134387, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 148.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 11496.0, "Total Transactions": 211.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.52, "MEDIAN_SPEND_PER_CUSTOMER": 42.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134387, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5pv", "LOCATION_NAME": "Hard Rock Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952216, "LONGITUDE": -75.159642, "DATE_RANGE_START": 2022, "Total Visits": 1793.0, "Total Visitors": 1340.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 81.0, "Total Spend": 37318.0, "Total Transactions": 632.0, "Total Customers": 517.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.02, "MEDIAN_SPEND_PER_CUSTOMER": 46.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159642, 39.952216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-td9", "LOCATION_NAME": "Jamaica Way", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.90332, "LONGITUDE": -75.240643, "DATE_RANGE_START": 2022, "Total Visits": 314.0, "Total Visitors": 272.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 395.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.72, "MEDIAN_SPEND_PER_CUSTOMER": 63.44 }, "geometry": { "type": "Point", "coordinates": [ -75.240643, 39.90332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "LOCATION_NAME": "Cantinho Brasileiro Restaurante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 99.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1378.0, "Total Transactions": 52.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.73, "MEDIAN_SPEND_PER_CUSTOMER": 53.41 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "LOCATION_NAME": "No 1 Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 45.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 980.0, "Total Transactions": 57.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.89, "MEDIAN_SPEND_PER_CUSTOMER": 34.75 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-y9z", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954522, "LONGITUDE": -75.184483, "DATE_RANGE_START": 2022, "Total Visits": 1516.0, "Total Visitors": 993.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 114.0, "Total Spend": 44700.0, "Total Transactions": 3059.0, "Total Customers": 1080.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.99, "MEDIAN_SPEND_PER_CUSTOMER": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.184483, 39.954522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwb-pvz", "LOCATION_NAME": "TMK Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.91064, "LONGITUDE": -75.220471, "DATE_RANGE_START": 2022, "Total Visits": 402.0, "Total Visitors": 112.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 151.0, "Total Spend": 9830.0, "Total Transactions": 375.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.49, "MEDIAN_SPEND_PER_CUSTOMER": 16.36 }, "geometry": { "type": "Point", "coordinates": [ -75.220471, 39.91064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-hwk", "LOCATION_NAME": "Mr Bar Stool", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.953666, "LONGITUDE": -75.142763, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7436.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 859.68, "MEDIAN_SPEND_PER_CUSTOMER": 1719.36 }, "geometry": { "type": "Point", "coordinates": [ -75.142763, 39.953666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.027117, "LONGITUDE": -75.0631, "DATE_RANGE_START": 2022, "Total Visits": 702.0, "Total Visitors": 551.0, "POI_CBG": 421010319001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 17437.0, "Total Transactions": 340.0, "Total Customers": 247.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.38, "MEDIAN_SPEND_PER_CUSTOMER": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.0631, 40.027117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pp5-f75", "LOCATION_NAME": "Kensington Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.994865, "LONGITUDE": -75.116136, "DATE_RANGE_START": 2022, "Total Visits": 737.0, "Total Visitors": 563.0, "POI_CBG": 421010178005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 331.0, "Total Transactions": 9.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 95.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116136, 39.994865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pgh-v2k", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.985827, "LONGITUDE": -75.15577, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 115.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 15126.0, "Total Transactions": 915.0, "Total Customers": 509.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.99, "MEDIAN_SPEND_PER_CUSTOMER": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.985827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2022, "Total Visits": 422.0, "Total Visitors": 338.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2101.0, "Total Transactions": 179.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.35, "MEDIAN_SPEND_PER_CUSTOMER": 8.44 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pm9-wc5", "LOCATION_NAME": "Renaissance Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949053, "LONGITUDE": -75.147888, "DATE_RANGE_START": 2022, "Total Visits": 1591.0, "Total Visitors": 1204.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 23972.0, "Total Transactions": 136.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.6, "MEDIAN_SPEND_PER_CUSTOMER": 63.92 }, "geometry": { "type": "Point", "coordinates": [ -75.147888, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kpv", "LOCATION_NAME": "Pearl", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951744, "LONGITUDE": -75.172393, "DATE_RANGE_START": 2022, "Total Visits": 4730.0, "Total Visitors": 3213.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 646.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.75, "MEDIAN_SPEND_PER_CUSTOMER": 57.68 }, "geometry": { "type": "Point", "coordinates": [ -75.172393, 39.951744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-td9", "LOCATION_NAME": "NY Bagel & Deli Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96081, "LONGITUDE": -75.157392, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 19.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3780.0, "Total Transactions": 230.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.96, "MEDIAN_SPEND_PER_CUSTOMER": 30.22 }, "geometry": { "type": "Point", "coordinates": [ -75.157392, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "LOCATION_NAME": "Trader Joe's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954199, "LONGITUDE": -75.176054, "DATE_RANGE_START": 2022, "Total Visits": 1242.0, "Total Visitors": 974.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 694747.0, "Total Transactions": 14267.0, "Total Customers": 8009.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.01, "MEDIAN_SPEND_PER_CUSTOMER": 61.28 }, "geometry": { "type": "Point", "coordinates": [ -75.176054, 39.954199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "LOCATION_NAME": "Evo Brickoven Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 945.0, "Total Transactions": 26.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.54, "MEDIAN_SPEND_PER_CUSTOMER": 51.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp5-k2k", "LOCATION_NAME": "Momentos Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988005, "LONGITUDE": -75.109231, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 19.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": 277.0, "Total Spend": 833.0, "Total Transactions": 37.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109231, 39.988005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phz-wkz", "LOCATION_NAME": "Steve's Old Pizza London", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.997988, "LONGITUDE": -75.101209, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 28.0, "POI_CBG": 421010188002.0, "MEDIAN_DWELL": 306.0, "Total Spend": 2198.0, "Total Transactions": 99.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.61, "MEDIAN_SPEND_PER_CUSTOMER": 38.79 }, "geometry": { "type": "Point", "coordinates": [ -75.101209, 39.997988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj6-bx5", "LOCATION_NAME": "Nam Vang Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037327, "LONGITUDE": -75.108009, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 127.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 17038.0, "Total Transactions": 199.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.46, "MEDIAN_SPEND_PER_CUSTOMER": 142.52 }, "geometry": { "type": "Point", "coordinates": [ -75.108009, 40.037327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "LOCATION_NAME": "Arby's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 131.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3326.0, "Total Transactions": 223.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 14.62 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pj8-pgk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031694, "LONGITUDE": -75.099517, "DATE_RANGE_START": 2022, "Total Visits": 5946.0, "Total Visitors": 3946.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 2296.0, "Total Transactions": 181.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 12.38 }, "geometry": { "type": "Point", "coordinates": [ -75.099517, 40.031694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pm9-wc5", "LOCATION_NAME": "Scoop DeVille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949779, "LONGITUDE": -75.148514, "DATE_RANGE_START": 2022, "Total Visits": 1693.0, "Total Visitors": 1504.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 10164.0, "Total Transactions": 714.0, "Total Customers": 394.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148514, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2022, "Total Visits": 789.0, "Total Visitors": 559.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 60.0, "Total Spend": 27746.0, "Total Transactions": 1678.0, "Total Customers": 1012.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.62, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-zzz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.058549, "LONGITUDE": -75.166373, "DATE_RANGE_START": 2022, "Total Visits": 291.0, "Total Visitors": 160.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 7944.0, "Total Transactions": 436.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.45, "MEDIAN_SPEND_PER_CUSTOMER": 22.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166373, 40.058549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.037065, "LONGITUDE": -75.118922, "DATE_RANGE_START": 2022, "Total Visits": 343.0, "Total Visitors": 261.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 47944.0, "Total Transactions": 1207.0, "Total Customers": 563.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.54, "MEDIAN_SPEND_PER_CUSTOMER": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.118922, 40.037065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-6p9", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950763, "LONGITUDE": -75.164862, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 289.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1777.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.5, "MEDIAN_SPEND_PER_CUSTOMER": 61.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164862, 39.950763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dwf-bhq", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.912436, "LONGITUDE": -75.233807, "DATE_RANGE_START": 2022, "Total Visits": 314.0, "Total Visitors": 232.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 212.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.2, "MEDIAN_SPEND_PER_CUSTOMER": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.233807, 39.912436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 244.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1039.0, "Total Transactions": 45.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.26, "MEDIAN_SPEND_PER_CUSTOMER": 21.54 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgk-28v", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.993135, "LONGITUDE": -75.152859, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 138.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 449.0, "Total Transactions": 24.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.152859, 39.993135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-xwk", "LOCATION_NAME": "aka.", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952073, "LONGITUDE": -75.184019, "DATE_RANGE_START": 2022, "Total Visits": 12589.0, "Total Visitors": 9051.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 72.0, "Total Spend": 1164.0, "Total Transactions": 38.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.952073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj4-zvf", "LOCATION_NAME": "Tony Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0045, "LONGITUDE": -75.15291, "DATE_RANGE_START": 2022, "Total Visits": 183.0, "Total Visitors": 112.0, "POI_CBG": 421010201011.0, "MEDIAN_DWELL": 287.0, "Total Spend": 66.0, "Total Transactions": 14.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15291, 40.0045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnz-jgk", "LOCATION_NAME": "Bonks Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986368, "LONGITUDE": -75.094326, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 185.0, "POI_CBG": 421010378002.0, "MEDIAN_DWELL": 126.0, "Total Spend": 5983.0, "Total Transactions": 106.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.78, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094326, 39.986368 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2022, "Total Visits": 359.0, "Total Visitors": 335.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2192.0, "Total Transactions": 131.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvx-w6k", "LOCATION_NAME": "The Green Line Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949809, "LONGITUDE": -75.209105, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 44.0, "POI_CBG": 421010087022.0, "MEDIAN_DWELL": 51.0, "Total Spend": 101.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209105, 39.949809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "LOCATION_NAME": "Pizzeria Stella", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 186.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 37612.0, "Total Transactions": 481.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.6, "MEDIAN_SPEND_PER_CUSTOMER": 114.28 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pj9-4d9", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04031, "LONGITUDE": -75.143956, "DATE_RANGE_START": 2022, "Total Visits": 261.0, "Total Visitors": 199.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 311.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.82, "MEDIAN_SPEND_PER_CUSTOMER": 37.64 }, "geometry": { "type": "Point", "coordinates": [ -75.143956, 40.04031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmb-dd9", "LOCATION_NAME": "Town Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.944522, "LONGITUDE": -75.163234, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 80.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1182.0, "Total Transactions": 96.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.99, "MEDIAN_SPEND_PER_CUSTOMER": 42.48 }, "geometry": { "type": "Point", "coordinates": [ -75.163234, 39.944522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-y7q", "LOCATION_NAME": "E Mei Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953596, "LONGITUDE": -75.155422, "DATE_RANGE_START": 2022, "Total Visits": 5087.0, "Total Visitors": 3380.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 18499.0, "Total Transactions": 247.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.42, "MEDIAN_SPEND_PER_CUSTOMER": 88.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155422, 39.953596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "LOCATION_NAME": "Barbuzzo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950022, "LONGITUDE": -75.162126, "DATE_RANGE_START": 2022, "Total Visits": 3659.0, "Total Visitors": 2632.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 10055.0, "Total Transactions": 103.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.49, "MEDIAN_SPEND_PER_CUSTOMER": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162126, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "LOCATION_NAME": "Four Seasons Hotels and Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.955061, "LONGITUDE": -75.170762, "DATE_RANGE_START": 2022, "Total Visits": 4214.0, "Total Visitors": 2080.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 337.0, "Total Spend": 14333.0, "Total Transactions": 174.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.92 }, "geometry": { "type": "Point", "coordinates": [ -75.170762, 39.955061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm5-qmk", "LOCATION_NAME": "Donna's Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.915783, "LONGITUDE": -75.161722, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 239.0, "POI_CBG": 421010041022.0, "MEDIAN_DWELL": 212.0, "Total Spend": 100.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.16, "MEDIAN_SPEND_PER_CUSTOMER": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.161722, 39.915783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfy-zfz", "LOCATION_NAME": "The Rook Manayunk", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021721, "LONGITUDE": -75.215726, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 150.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 42.0, "Total Spend": 30235.0, "Total Transactions": 479.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.36, "MEDIAN_SPEND_PER_CUSTOMER": 112.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215726, 40.021721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-6hq", "LOCATION_NAME": "Wrap Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949717, "LONGITUDE": -75.158951, "DATE_RANGE_START": 2022, "Total Visits": 497.0, "Total Visitors": 336.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 85.0, "Total Spend": 4149.0, "Total Transactions": 122.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.89, "MEDIAN_SPEND_PER_CUSTOMER": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158951, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "LOCATION_NAME": "Aldo Lamberti Trattoria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.874852, "LONGITUDE": -75.241162, "DATE_RANGE_START": 2022, "Total Visits": 10396.0, "Total Visitors": 9338.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 21.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.08, "MEDIAN_SPEND_PER_CUSTOMER": 6.08 }, "geometry": { "type": "Point", "coordinates": [ -75.241162, 39.874852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-mc5", "LOCATION_NAME": "ABV Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.985505, "LONGITUDE": -75.095782, "DATE_RANGE_START": 2022, "Total Visits": 300.0, "Total Visitors": 268.0, "POI_CBG": 421010378002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 459.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.5, "MEDIAN_SPEND_PER_CUSTOMER": 59.22 }, "geometry": { "type": "Point", "coordinates": [ -75.095782, 39.985505 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2022, "Total Visits": 904.0, "Total Visitors": 620.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 22255.0, "Total Transactions": 1129.0, "Total Customers": 634.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.67, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "LOCATION_NAME": "Morgan's Pier", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955033, "LONGITUDE": -75.13891, "DATE_RANGE_START": 2022, "Total Visits": 720.0, "Total Visitors": 657.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 38756.0, "Total Transactions": 1218.0, "Total Customers": 375.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 66.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13891, 39.955033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-b8v", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.059227, "LONGITUDE": -75.045575, "DATE_RANGE_START": 2022, "Total Visits": 247.0, "Total Visitors": 218.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7275.0, "Total Transactions": 279.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.38, "MEDIAN_SPEND_PER_CUSTOMER": 27.51 }, "geometry": { "type": "Point", "coordinates": [ -75.045575, 40.059227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ygk", "LOCATION_NAME": "QT Vietnamese Sandwich", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953408, "LONGITUDE": -75.156559, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 141.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 272.0, "Total Spend": 461.0, "Total Transactions": 31.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.09, "MEDIAN_SPEND_PER_CUSTOMER": 28.18 }, "geometry": { "type": "Point", "coordinates": [ -75.156559, 39.953408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgd-zvf", "LOCATION_NAME": "Nafi Food Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95556, "LONGITUDE": -75.193236, "DATE_RANGE_START": 2022, "Total Visits": 2303.0, "Total Visitors": 1484.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 63.0, "Total Spend": 64.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.18, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.95556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2022, "Total Visits": 423.0, "Total Visitors": 390.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 36311.0, "Total Transactions": 589.0, "Total Customers": 510.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.28, "MEDIAN_SPEND_PER_CUSTOMER": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "LOCATION_NAME": "Shing Kee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 124.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 4016.0, "Total Transactions": 64.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.63, "MEDIAN_SPEND_PER_CUSTOMER": 77.73 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2022, "Total Visits": 1221.0, "Total Visitors": 711.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6284.0, "Total Transactions": 233.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.03, "MEDIAN_SPEND_PER_CUSTOMER": 29.76 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031206, "LONGITUDE": -75.124676, "DATE_RANGE_START": 2022, "Total Visits": 1061.0, "Total Visitors": 631.0, "POI_CBG": 421010286005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 614.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.72, "MEDIAN_SPEND_PER_CUSTOMER": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.124676, 40.031206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-33q", "LOCATION_NAME": "LOFT", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.953717, "LONGITUDE": -75.195101, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 70.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4016.0, "Total Transactions": 31.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.04, "MEDIAN_SPEND_PER_CUSTOMER": 137.51 }, "geometry": { "type": "Point", "coordinates": [ -75.195101, 39.953717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-8d9", "LOCATION_NAME": "Bar Ly Chinatown", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.954199, "LONGITUDE": -75.157606, "DATE_RANGE_START": 2022, "Total Visits": 587.0, "Total Visitors": 486.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 284.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.63, "MEDIAN_SPEND_PER_CUSTOMER": 81.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157606, 39.954199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "LOCATION_NAME": "Oregon Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 64.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 93.0, "Total Spend": 17137.0, "Total Transactions": 1118.0, "Total Customers": 406.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.75 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2022, "Total Visits": 216.0, "Total Visitors": 204.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 8779.0, "Total Transactions": 171.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.89, "MEDIAN_SPEND_PER_CUSTOMER": 84.26 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-zs5", "LOCATION_NAME": "Lady Love", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941785, "LONGITUDE": -75.151232, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 106.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 304.0, "Total Spend": 6419.0, "Total Transactions": 71.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.22, "MEDIAN_SPEND_PER_CUSTOMER": 118.91 }, "geometry": { "type": "Point", "coordinates": [ -75.151232, 39.941785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "LOCATION_NAME": "New Delhi Indian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 134.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 92.0, "Total Spend": 13154.0, "Total Transactions": 368.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.39, "MEDIAN_SPEND_PER_CUSTOMER": 53.79 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 148.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 10916.0, "Total Transactions": 112.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.98, "MEDIAN_SPEND_PER_CUSTOMER": 58.32 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.921602, "LONGITUDE": -75.193164, "DATE_RANGE_START": 2022, "Total Visits": 2176.0, "Total Visitors": 1495.0, "POI_CBG": 421010036003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1112.0, "Total Transactions": 24.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.98, "MEDIAN_SPEND_PER_CUSTOMER": 49.96 }, "geometry": { "type": "Point", "coordinates": [ -75.193164, 39.921602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.916033, "LONGITUDE": -75.188037, "DATE_RANGE_START": 2022, "Total Visits": 2070.0, "Total Visitors": 1443.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 33251.0, "Total Transactions": 329.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.94, "MEDIAN_SPEND_PER_CUSTOMER": 102.75 }, "geometry": { "type": "Point", "coordinates": [ -75.188037, 39.916033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 115.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 864.0, "Total Transactions": 42.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.6, "MEDIAN_SPEND_PER_CUSTOMER": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "LOCATION_NAME": "Athleta", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.94988, "LONGITUDE": -75.170326, "DATE_RANGE_START": 2022, "Total Visits": 361.0, "Total Visitors": 284.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 17.0, "Total Spend": 13371.0, "Total Transactions": 122.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.5, "MEDIAN_SPEND_PER_CUSTOMER": 91.98 }, "geometry": { "type": "Point", "coordinates": [ -75.170326, 39.94988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 174.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 54700.0, "Total Transactions": 4927.0, "Total Customers": 2441.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.77, "MEDIAN_SPEND_PER_CUSTOMER": 12.76 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pp4-ks5", "LOCATION_NAME": "Caring Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.987937, "LONGITUDE": -75.127658, "DATE_RANGE_START": 2022, "Total Visits": 249.0, "Total Visitors": 157.0, "POI_CBG": 421010161003.0, "MEDIAN_DWELL": 363.0, "Total Spend": 80.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127658, 39.987937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.99726, "LONGITUDE": -75.153396, "DATE_RANGE_START": 2022, "Total Visits": 1214.0, "Total Visitors": 904.0, "POI_CBG": 421010174002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9575.0, "Total Transactions": 328.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.03, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153396, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "LOCATION_NAME": "Victoria's Secret", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090585, "LONGITUDE": -74.961564, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 375.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 23.0, "Total Spend": 2452.0, "Total Transactions": 26.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.0, "MEDIAN_SPEND_PER_CUSTOMER": 102.75 }, "geometry": { "type": "Point", "coordinates": [ -74.961564, 40.090585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmb-fpv", "LOCATION_NAME": "Locust Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947233, "LONGITUDE": -75.157426, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 75.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 61.0, "Total Spend": 13290.0, "Total Transactions": 510.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.9, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157426, 39.947233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "LOCATION_NAME": "Philly Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.010118, "LONGITUDE": -75.081162, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 120.0, "POI_CBG": 421010294003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2995.0, "Total Transactions": 63.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.17, "MEDIAN_SPEND_PER_CUSTOMER": 59.25 }, "geometry": { "type": "Point", "coordinates": [ -75.081162, 40.010118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-9j9", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055278, "LONGITUDE": -75.049853, "DATE_RANGE_START": 2022, "Total Visits": 951.0, "Total Visitors": 632.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 295.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.62, "MEDIAN_SPEND_PER_CUSTOMER": 84.62 }, "geometry": { "type": "Point", "coordinates": [ -75.049853, 40.055278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2022, "Total Visits": 270.0, "Total Visitors": 138.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3191.0, "Total Transactions": 220.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.56, "MEDIAN_SPEND_PER_CUSTOMER": 17.06 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012134, "LONGITUDE": -75.088896, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 125.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1537.0, "Total Transactions": 164.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 8.51 }, "geometry": { "type": "Point", "coordinates": [ -75.088896, 40.012134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.935654, "LONGITUDE": -75.186436, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 56.0, "POI_CBG": 421010032004.0, "MEDIAN_DWELL": 195.0, "Total Spend": 217.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.58, "MEDIAN_SPEND_PER_CUSTOMER": 19.58 }, "geometry": { "type": "Point", "coordinates": [ -75.186436, 39.935654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.060462, "LONGITUDE": -75.081398, "DATE_RANGE_START": 2022, "Total Visits": 570.0, "Total Visitors": 430.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 652.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.19, "MEDIAN_SPEND_PER_CUSTOMER": 47.1 }, "geometry": { "type": "Point", "coordinates": [ -75.081398, 40.060462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6hq", "LOCATION_NAME": "Milkboy Philadelphia", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949997, "LONGITUDE": -75.158798, "DATE_RANGE_START": 2022, "Total Visits": 836.0, "Total Visitors": 580.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 3992.0, "Total Transactions": 56.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.89, "MEDIAN_SPEND_PER_CUSTOMER": 76.84 }, "geometry": { "type": "Point", "coordinates": [ -75.158798, 39.949997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vvf", "LOCATION_NAME": "Champion", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089655, "LONGITUDE": -74.961736, "DATE_RANGE_START": 2022, "Total Visits": 213.0, "Total Visitors": 157.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 40.0, "Total Spend": 114.0, "Total Transactions": 23.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961736, 40.089655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yd9", "LOCATION_NAME": "Tai Lake", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954672, "LONGITUDE": -75.156344, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 117.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 7817.0, "Total Transactions": 89.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.75, "MEDIAN_SPEND_PER_CUSTOMER": 128.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156344, 39.954672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "LOCATION_NAME": "Cafe Lift", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 57.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 27497.0, "Total Transactions": 664.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.65, "MEDIAN_SPEND_PER_CUSTOMER": 66.16 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-t9z", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947992, "LONGITUDE": -75.154441, "DATE_RANGE_START": 2022, "Total Visits": 990.0, "Total Visitors": 791.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 32.0, "Total Spend": 1974.0, "Total Transactions": 169.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.22 }, "geometry": { "type": "Point", "coordinates": [ -75.154441, 39.947992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "LOCATION_NAME": "Venu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911404, "LONGITUDE": -75.170366, "DATE_RANGE_START": 2022, "Total Visits": 3253.0, "Total Visitors": 2610.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 28817.0, "Total Transactions": 929.0, "Total Customers": 321.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.17, "MEDIAN_SPEND_PER_CUSTOMER": 66.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170366, 39.911404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2022, "Total Visits": 1120.0, "Total Visitors": 765.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 99534.0, "Total Transactions": 4817.0, "Total Customers": 2227.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.36, "MEDIAN_SPEND_PER_CUSTOMER": 24.17 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-ty9", "LOCATION_NAME": "La Famiglia Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949369, "LONGITUDE": -75.142406, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 77.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 370.0, "Total Spend": 1872.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 153.7, "MEDIAN_SPEND_PER_CUSTOMER": 307.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142406, 39.949369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "LOCATION_NAME": "Milkcrate Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 118.0, "POI_CBG": 421010143002.0, "MEDIAN_DWELL": 92.0, "Total Spend": 31538.0, "Total Transactions": 2033.0, "Total Customers": 476.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.1, "MEDIAN_SPEND_PER_CUSTOMER": 39.15 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22g@628-pmb-92k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951633, "LONGITUDE": -75.155742, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 631.0, "Total Transactions": 110.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155742, 39.951633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 160.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2466.0, "Total Transactions": 265.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.43, "MEDIAN_SPEND_PER_CUSTOMER": 13.34 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pj2-d35", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.010891, "LONGITUDE": -75.107156, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 94.0, "POI_CBG": 421010191006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3898.0, "Total Transactions": 37.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.06, "MEDIAN_SPEND_PER_CUSTOMER": 85.81 }, "geometry": { "type": "Point", "coordinates": [ -75.107156, 40.010891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-mp9", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.9536, "LONGITUDE": -75.167205, "DATE_RANGE_START": 2022, "Total Visits": 2552.0, "Total Visitors": 1777.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 30.0, "Total Spend": 33.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.4, "MEDIAN_SPEND_PER_CUSTOMER": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167205, 39.9536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-jjv", "LOCATION_NAME": "MAC Cosmetics", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951489, "LONGITUDE": -75.170193, "DATE_RANGE_START": 2022, "Total Visits": 1946.0, "Total Visitors": 1375.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 230.0, "Total Spend": 928.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.58, "MEDIAN_SPEND_PER_CUSTOMER": 41.58 }, "geometry": { "type": "Point", "coordinates": [ -75.170193, 39.951489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-s89", "LOCATION_NAME": "SuitSupply", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.948725, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 540.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 30993.0, "Total Transactions": 75.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 358.0, "MEDIAN_SPEND_PER_CUSTOMER": 774.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.948725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj9-4d9", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.039716, "LONGITUDE": -75.144869, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 80.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3317.0, "Total Transactions": 38.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.74, "MEDIAN_SPEND_PER_CUSTOMER": 91.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144869, 40.039716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-7yv", "LOCATION_NAME": "Bee Natural", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953663, "LONGITUDE": -75.158929, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 3840.0, "Total Transactions": 181.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.69, "MEDIAN_SPEND_PER_CUSTOMER": 29.19 }, "geometry": { "type": "Point", "coordinates": [ -75.158929, 39.953663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvw-r49", "LOCATION_NAME": "Passero's Gourmet Coffee Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96327, "LONGITUDE": -75.23701, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 3.0, "POI_CBG": 421010095002.0, "MEDIAN_DWELL": null, "Total Spend": 1984.0, "Total Transactions": 301.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.27, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.96327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "LOCATION_NAME": "Frank's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 567.0, "Total Spend": 5633.0, "Total Transactions": 186.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.69, "MEDIAN_SPEND_PER_CUSTOMER": 69.86 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-zcq", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.992691, "LONGITUDE": -75.131414, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010176014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 157.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131414, 39.992691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm4-pjv", "LOCATION_NAME": "Cardenas Oil & Vinegar Taproom", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.937768, "LONGITUDE": -75.158238, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1584.0, "Total Transactions": 31.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.95, "MEDIAN_SPEND_PER_CUSTOMER": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158238, 39.937768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "LOCATION_NAME": "Cafe Thanh Truc", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 25.0, "Total Spend": 2916.0, "Total Transactions": 78.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 84.52 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "LOCATION_NAME": "Solly Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 33.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 359.0, "Total Spend": 2890.0, "Total Transactions": 89.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.12, "MEDIAN_SPEND_PER_CUSTOMER": 68.01 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfy-d35", "LOCATION_NAME": "Something Different", "TOP_CATEGORY": "Florists", "LATITUDE": 40.033667, "LONGITUDE": -75.220915, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010213005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 311.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.85, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220915, 40.033667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-225@628-pjf-kvf", "LOCATION_NAME": "Palladio Custom Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.077213, "LONGITUDE": -75.207917, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 28.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 771.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.58, "MEDIAN_SPEND_PER_CUSTOMER": 221.16 }, "geometry": { "type": "Point", "coordinates": [ -75.207917, 40.077213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040652, "LONGITUDE": -75.223499, "DATE_RANGE_START": 2022, "Total Visits": 1744.0, "Total Visitors": 1103.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 194482.0, "Total Transactions": 8706.0, "Total Customers": 3981.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.21, "MEDIAN_SPEND_PER_CUSTOMER": 28.55 }, "geometry": { "type": "Point", "coordinates": [ -75.223499, 40.040652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pj2-94v", "LOCATION_NAME": "Hoagies Plus", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0012, "LONGITUDE": -75.114597, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 98.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 89.0, "Total Spend": 1018.0, "Total Transactions": 44.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.26, "MEDIAN_SPEND_PER_CUSTOMER": 45.14 }, "geometry": { "type": "Point", "coordinates": [ -75.114597, 40.0012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@628-pmf-mrk", "LOCATION_NAME": "Bain's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952412, "LONGITUDE": -75.168016, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 78.0, "Total Spend": 153.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.168016, 39.952412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045014, "LONGITUDE": -75.08777, "DATE_RANGE_START": 2022, "Total Visits": 512.0, "Total Visitors": 352.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10803.0, "Total Transactions": 1258.0, "Total Customers": 554.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.08777, 40.045014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "LOCATION_NAME": "Kaffa Crossing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956859, "LONGITUDE": -75.210414, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 17.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 1364.0, "Total Spend": 5466.0, "Total Transactions": 120.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.32, "MEDIAN_SPEND_PER_CUSTOMER": 77.04 }, "geometry": { "type": "Point", "coordinates": [ -75.210414, 39.956859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-phn-qj9", "LOCATION_NAME": "Uptown Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.067574, "LONGITUDE": -75.179009, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3082.0, "Total Transactions": 52.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.0, "MEDIAN_SPEND_PER_CUSTOMER": 129.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179009, 40.067574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "LOCATION_NAME": "Girard Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 30.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 121.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.029702, "LONGITUDE": -75.035384, "DATE_RANGE_START": 2022, "Total Visits": 1429.0, "Total Visitors": 930.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 372.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.38, "MEDIAN_SPEND_PER_CUSTOMER": 29.38 }, "geometry": { "type": "Point", "coordinates": [ -75.035384, 40.029702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039167, "LONGITUDE": -75.110538, "DATE_RANGE_START": 2022, "Total Visits": 1808.0, "Total Visitors": 1192.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1900.0, "Total Transactions": 35.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.01, "MEDIAN_SPEND_PER_CUSTOMER": 63.36 }, "geometry": { "type": "Point", "coordinates": [ -75.110538, 40.039167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgc-x5z", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.9785, "LONGITUDE": -75.225466, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 141.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 6110.0, "Total Transactions": 174.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.72, "MEDIAN_SPEND_PER_CUSTOMER": 34.94 }, "geometry": { "type": "Point", "coordinates": [ -75.225466, 39.9785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "LOCATION_NAME": "Penn Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 80.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2292.0, "Total Transactions": 80.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 27.56 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-vvf", "LOCATION_NAME": "Steve Madden", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.089544, "LONGITUDE": -74.961668, "DATE_RANGE_START": 2022, "Total Visits": 279.0, "Total Visitors": 263.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 844.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 72.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961668, 40.089544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "LOCATION_NAME": "Quails", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 178.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6866.0, "Total Transactions": 49.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.99, "MEDIAN_SPEND_PER_CUSTOMER": 82.47 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.912498, "LONGITUDE": -75.15633, "DATE_RANGE_START": 2022, "Total Visits": 1169.0, "Total Visitors": 932.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5214.0, "Total Transactions": 150.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.18, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15633, 39.912498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953381, "LONGITUDE": -75.209698, "DATE_RANGE_START": 2022, "Total Visits": 784.0, "Total Visitors": 497.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 38780.0, "Total Transactions": 2085.0, "Total Customers": 976.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.78, "MEDIAN_SPEND_PER_CUSTOMER": 21.81 }, "geometry": { "type": "Point", "coordinates": [ -75.209698, 39.953381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.930286, "LONGITUDE": -75.155935, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 103.0, "POI_CBG": 421010028013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 17325.0, "Total Transactions": 890.0, "Total Customers": 368.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.75, "MEDIAN_SPEND_PER_CUSTOMER": 23.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155935, 39.930286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-y9z", "LOCATION_NAME": "Black and Nobel", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.941799, "LONGITUDE": -75.149568, "DATE_RANGE_START": 2022, "Total Visits": 949.0, "Total Visitors": 864.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 197.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.149568, 39.941799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "LOCATION_NAME": "The Last Word Bookshop", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2022, "Total Visits": 598.0, "Total Visitors": 517.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 70.0, "Total Spend": 3645.0, "Total Transactions": 188.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.45, "MEDIAN_SPEND_PER_CUSTOMER": 21.49 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "LOCATION_NAME": "Open House", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950268, "LONGITUDE": -75.161745, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 152.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 84.0, "Total Spend": 25611.0, "Total Transactions": 528.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.72, "MEDIAN_SPEND_PER_CUSTOMER": 60.94 }, "geometry": { "type": "Point", "coordinates": [ -75.161745, 39.950268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-swk", "LOCATION_NAME": "Philly Bride", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949775, "LONGITUDE": -75.146016, "DATE_RANGE_START": 2022, "Total Visits": 1148.0, "Total Visitors": 1028.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 7771.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1115.11, "MEDIAN_SPEND_PER_CUSTOMER": 2230.22 }, "geometry": { "type": "Point", "coordinates": [ -75.146016, 39.949775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@63s-dvr-hyv", "LOCATION_NAME": "Woodland and Conveince", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.925089, "LONGITUDE": -75.23477, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 12.0, "POI_CBG": 421010063001.0, "MEDIAN_DWELL": 185.0, "Total Spend": 153.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23477, 39.925089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.913456, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 21.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 292.0, "Total Spend": 1093.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.99, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pg9-t9z", "LOCATION_NAME": "A&A Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.965619, "LONGITUDE": -75.165824, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 19.0, "POI_CBG": 421010134022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3410.0, "Total Transactions": 378.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 20.66 }, "geometry": { "type": "Point", "coordinates": [ -75.165824, 39.965619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg2-hdv", "LOCATION_NAME": "Golden Crust Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059871, "LONGITUDE": -75.190661, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 21.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 222.0, "Total Spend": 4325.0, "Total Transactions": 162.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.31, "MEDIAN_SPEND_PER_CUSTOMER": 43.34 }, "geometry": { "type": "Point", "coordinates": [ -75.190661, 40.059871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-qmk", "LOCATION_NAME": "Yeeroh", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943614, "LONGITUDE": -75.166117, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5207.0, "Total Transactions": 308.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.39, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.166117, 39.943614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "LOCATION_NAME": "Peddler Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5790.0, "Total Transactions": 700.0, "Total Customers": 235.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-223@628-pm3-vpv", "LOCATION_NAME": "Asian Fusion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927745, "LONGITUDE": -75.16578, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 164.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.65, "MEDIAN_SPEND_PER_CUSTOMER": 27.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16578, 39.927745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2ff", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99066, "LONGITUDE": -75.135816, "DATE_RANGE_START": 2022, "Total Visits": 286.0, "Total Visitors": 239.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 94.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.61, "MEDIAN_SPEND_PER_CUSTOMER": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.135816, 39.99066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942147, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 81.0, "Total Spend": 15962.0, "Total Transactions": 516.0, "Total Customers": 437.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.88, "MEDIAN_SPEND_PER_CUSTOMER": 31.85 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.942147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055857, "LONGITUDE": -75.157863, "DATE_RANGE_START": 2022, "Total Visits": 510.0, "Total Visitors": 333.0, "POI_CBG": 421010265006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9830.0, "Total Transactions": 955.0, "Total Customers": 427.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.4, "MEDIAN_SPEND_PER_CUSTOMER": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157863, 40.055857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-246@628-pmb-835", "LOCATION_NAME": "Frank's Alot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95318, "LONGITUDE": -75.159402, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 7419.0, "Total Transactions": 451.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.74, "MEDIAN_SPEND_PER_CUSTOMER": 27.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159402, 39.95318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2tv", "LOCATION_NAME": "The Monkey & The Elephant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970901, "LONGITUDE": -75.142611, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 181.0, "POI_CBG": 421010144001.0, "MEDIAN_DWELL": 164.0, "Total Spend": 177.0, "Total Transactions": 14.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.07, "MEDIAN_SPEND_PER_CUSTOMER": 50.84 }, "geometry": { "type": "Point", "coordinates": [ -75.142611, 39.970901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2022, "Total Visits": 432.0, "Total Visitors": 282.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7211.0, "Total Transactions": 359.0, "Total Customers": 211.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.17, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8m-v2k", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.029454, "LONGITUDE": -75.058288, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 89.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4502.0, "Total Transactions": 45.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.51, "MEDIAN_SPEND_PER_CUSTOMER": 41.02 }, "geometry": { "type": "Point", "coordinates": [ -75.058288, 40.029454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.959702, "LONGITUDE": -75.147615, "DATE_RANGE_START": 2022, "Total Visits": 364.0, "Total Visitors": 244.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 118.0, "Total Spend": 291300.0, "Total Transactions": 7300.0, "Total Customers": 4051.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.63, "MEDIAN_SPEND_PER_CUSTOMER": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.147615, 39.959702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "LOCATION_NAME": "San Lucas Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2284.0, "Total Transactions": 87.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 54.84 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg8-d5f", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983854, "LONGITUDE": -75.184956, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 19.0, "POI_CBG": 421010151011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 185.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.88, "MEDIAN_SPEND_PER_CUSTOMER": 19.76 }, "geometry": { "type": "Point", "coordinates": [ -75.184956, 39.983854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "LOCATION_NAME": "Sunny Side Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 961.0, "Total Transactions": 44.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.45 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-mzf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954224, "LONGITUDE": -75.167482, "DATE_RANGE_START": 2022, "Total Visits": 4749.0, "Total Visitors": 2620.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1446.0, "Total Transactions": 249.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.47, "MEDIAN_SPEND_PER_CUSTOMER": 5.48 }, "geometry": { "type": "Point", "coordinates": [ -75.167482, 39.954224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-yd9", "LOCATION_NAME": "Somerton Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.129213, "LONGITUDE": -75.014014, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 141.0, "POI_CBG": 421010365013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 612.0, "Total Transactions": 26.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.014014, 40.129213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-4vz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077481, "LONGITUDE": -75.031225, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 87.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 372.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.13, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.031225, 40.077481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.112307, "LONGITUDE": -75.022895, "DATE_RANGE_START": 2022, "Total Visits": 1131.0, "Total Visitors": 835.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6761.0, "Total Transactions": 341.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.79, "MEDIAN_SPEND_PER_CUSTOMER": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.022895, 40.112307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "LOCATION_NAME": "Jomici Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2022, "Total Visits": 328.0, "Total Visitors": 195.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 374.0, "Total Spend": 448.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 59.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "LOCATION_NAME": "Sunglass Hut", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952036, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 73.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2632.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 215.46, "MEDIAN_SPEND_PER_CUSTOMER": 213.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950371, "LONGITUDE": -75.158373, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 185.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 8174.0, "Total Transactions": 713.0, "Total Customers": 523.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.43, "MEDIAN_SPEND_PER_CUSTOMER": 11.96 }, "geometry": { "type": "Point", "coordinates": [ -75.158373, 39.950371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 110.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 258.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.18, "MEDIAN_SPEND_PER_CUSTOMER": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-6ff", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.107593, "LONGITUDE": -75.02698, "DATE_RANGE_START": 2022, "Total Visits": 880.0, "Total Visitors": 646.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2949.0, "Total Transactions": 118.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02698, 40.107593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.081571, "LONGITUDE": -75.172058, "DATE_RANGE_START": 2022, "Total Visits": 1021.0, "Total Visitors": 627.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 598.0, "Total Transactions": 24.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.23, "MEDIAN_SPEND_PER_CUSTOMER": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.172058, 40.081571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-6ff", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948341, "LONGITUDE": -75.157035, "DATE_RANGE_START": 2022, "Total Visits": 1664.0, "Total Visitors": 981.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 130.0, "Total Spend": 527.0, "Total Transactions": 35.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.46, "MEDIAN_SPEND_PER_CUSTOMER": 15.19 }, "geometry": { "type": "Point", "coordinates": [ -75.157035, 39.948341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-r49", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044228, "LONGITUDE": -75.087251, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 54.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 68.0, "Total Spend": 4049.0, "Total Transactions": 145.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.73, "MEDIAN_SPEND_PER_CUSTOMER": 29.39 }, "geometry": { "type": "Point", "coordinates": [ -75.087251, 40.044228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "LOCATION_NAME": "Crazy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2022, "Total Visits": 308.0, "Total Visitors": 251.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6756.0, "Total Transactions": 186.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.6, "MEDIAN_SPEND_PER_CUSTOMER": 41.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmb-9mk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954692, "LONGITUDE": -75.162815, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 972.0, "Total Transactions": 122.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.97, "MEDIAN_SPEND_PER_CUSTOMER": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.162815, 39.954692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 176.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 12610.0, "Total Transactions": 1531.0, "Total Customers": 721.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8j-d5f", "LOCATION_NAME": "Icemoon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036801, "LONGITUDE": -75.04133, "DATE_RANGE_START": 2022, "Total Visits": 289.0, "Total Visitors": 261.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3456.0, "Total Transactions": 249.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.59, "MEDIAN_SPEND_PER_CUSTOMER": 24.54 }, "geometry": { "type": "Point", "coordinates": [ -75.04133, 40.036801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8y9", "LOCATION_NAME": "Windsor", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951878, "LONGITUDE": -75.155445, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 17071.0, "Total Transactions": 82.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.0, "MEDIAN_SPEND_PER_CUSTOMER": 153.68 }, "geometry": { "type": "Point", "coordinates": [ -75.155445, 39.951878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.992376, "LONGITUDE": -75.140508, "DATE_RANGE_START": 2022, "Total Visits": 1085.0, "Total Visitors": 695.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2762.0, "Total Transactions": 78.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.08, "MEDIAN_SPEND_PER_CUSTOMER": 37.63 }, "geometry": { "type": "Point", "coordinates": [ -75.140508, 39.992376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvw-mrk", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.958965, "LONGITUDE": -75.2254, "DATE_RANGE_START": 2022, "Total Visits": 446.0, "Total Visitors": 315.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 60.0, "Total Spend": 2086.0, "Total Transactions": 12.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.0, "MEDIAN_SPEND_PER_CUSTOMER": 598.73 }, "geometry": { "type": "Point", "coordinates": [ -75.2254, 39.958965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953206, "LONGITUDE": -75.160514, "DATE_RANGE_START": 2022, "Total Visits": 632.0, "Total Visitors": 561.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3945.0, "Total Transactions": 321.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.68, "MEDIAN_SPEND_PER_CUSTOMER": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.160514, 39.953206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.08189, "LONGITUDE": -75.037804, "DATE_RANGE_START": 2022, "Total Visits": 409.0, "Total Visitors": 284.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 381.0, "Total Transactions": 31.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.37, "MEDIAN_SPEND_PER_CUSTOMER": 12.93 }, "geometry": { "type": "Point", "coordinates": [ -75.037804, 40.08189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-dvz", "LOCATION_NAME": "Quick Stop", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993791, "LONGITUDE": -75.117865, "DATE_RANGE_START": 2022, "Total Visits": 486.0, "Total Visitors": 340.0, "POI_CBG": 421010178005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2212.0, "Total Transactions": 197.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.23, "MEDIAN_SPEND_PER_CUSTOMER": 22.55 }, "geometry": { "type": "Point", "coordinates": [ -75.117865, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.049354, "LONGITUDE": -74.989522, "DATE_RANGE_START": 2022, "Total Visits": 1566.0, "Total Visitors": 868.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20621.0, "Total Transactions": 2010.0, "Total Customers": 826.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.82, "MEDIAN_SPEND_PER_CUSTOMER": 13.61 }, "geometry": { "type": "Point", "coordinates": [ -74.989522, 40.049354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2022, "Total Visits": 744.0, "Total Visitors": 429.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 58.0, "Total Spend": 14882.0, "Total Transactions": 777.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.98, "MEDIAN_SPEND_PER_CUSTOMER": 26.15 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2022, "Total Visits": 577.0, "Total Visitors": 392.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4406.0, "Total Transactions": 162.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.36, "MEDIAN_SPEND_PER_CUSTOMER": 28.26 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p7w-x3q", "LOCATION_NAME": "Mobil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.035465, "LONGITUDE": -75.049236, "DATE_RANGE_START": 2022, "Total Visits": 1678.0, "Total Visitors": 969.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2632.0, "Total Transactions": 26.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.89 }, "geometry": { "type": "Point", "coordinates": [ -75.049236, 40.035465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2022, "Total Visits": 1568.0, "Total Visitors": 895.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 28457.0, "Total Transactions": 2565.0, "Total Customers": 1118.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.34, "MEDIAN_SPEND_PER_CUSTOMER": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-nkf", "LOCATION_NAME": "Dave & Buster's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.956182, "LONGITUDE": -75.138382, "DATE_RANGE_START": 2022, "Total Visits": 3044.0, "Total Visitors": 2434.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 94.0, "Total Spend": 397.0, "Total Transactions": 19.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 51.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138382, 39.956182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "LOCATION_NAME": "The Love", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2022, "Total Visits": 4134.0, "Total Visitors": 2798.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 96514.0, "Total Transactions": 833.0, "Total Customers": 441.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 185.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-p7q", "LOCATION_NAME": "Turning Heads", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.993848, "LONGITUDE": -75.147504, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": null, "Total Spend": 1293.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.0, "MEDIAN_SPEND_PER_CUSTOMER": 158.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147504, 39.993848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.08158, "LONGITUDE": -75.02629, "DATE_RANGE_START": 2022, "Total Visits": 530.0, "Total Visitors": 488.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 12309.0, "Total Transactions": 300.0, "Total Customers": 247.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.49, "MEDIAN_SPEND_PER_CUSTOMER": 36.09 }, "geometry": { "type": "Point", "coordinates": [ -75.02629, 40.08158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "LOCATION_NAME": "Gaffney Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 132.0, "POI_CBG": 421010246001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6792.0, "Total Transactions": 200.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.41, "MEDIAN_SPEND_PER_CUSTOMER": 43.89 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.101947, "LONGITUDE": -75.011258, "DATE_RANGE_START": 2022, "Total Visits": 4228.0, "Total Visitors": 3019.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 133894.0, "Total Transactions": 2903.0, "Total Customers": 1739.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.47, "MEDIAN_SPEND_PER_CUSTOMER": 47.55 }, "geometry": { "type": "Point", "coordinates": [ -75.011258, 40.101947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "LOCATION_NAME": "Northeast Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2022, "Total Visits": 256.0, "Total Visitors": 124.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 545.0, "Total Spend": 6144.0, "Total Transactions": 256.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.75, "MEDIAN_SPEND_PER_CUSTOMER": 53.4 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-w8v", "LOCATION_NAME": "Champs Sports", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.048335, "LONGITUDE": -75.058283, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 61.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 131.0, "Total Spend": 9024.0, "Total Transactions": 96.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 92.0, "MEDIAN_SPEND_PER_CUSTOMER": 95.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058283, 40.048335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974271, "LONGITUDE": -75.11985, "DATE_RANGE_START": 2022, "Total Visits": 423.0, "Total Visitors": 315.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 708.0, "Total Transactions": 49.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.77, "MEDIAN_SPEND_PER_CUSTOMER": 8.05 }, "geometry": { "type": "Point", "coordinates": [ -75.11985, 39.974271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-qvf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.03237, "LONGITUDE": -75.101559, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 145.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6432.0, "Total Transactions": 87.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.1, "MEDIAN_SPEND_PER_CUSTOMER": 44.52 }, "geometry": { "type": "Point", "coordinates": [ -75.101559, 40.03237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfx-ks5", "LOCATION_NAME": "Gregs Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026584, "LONGITUDE": -75.226738, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": null, "Total Spend": 5223.0, "Total Transactions": 223.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.06, "MEDIAN_SPEND_PER_CUSTOMER": 39.36 }, "geometry": { "type": "Point", "coordinates": [ -75.226738, 40.026584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "LOCATION_NAME": "Neighborhood Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2022, "Total Visits": 253.0, "Total Visitors": 167.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 241.0, "Total Spend": 1587.0, "Total Transactions": 78.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.7, "MEDIAN_SPEND_PER_CUSTOMER": 31.87 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "LOCATION_NAME": "Fairdale Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084494, "LONGITUDE": -74.972673, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 49.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 3.0, "Total Spend": 287.0, "Total Transactions": 14.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.72, "MEDIAN_SPEND_PER_CUSTOMER": 82.33 }, "geometry": { "type": "Point", "coordinates": [ -74.972673, 40.084494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-kfz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991954, "LONGITUDE": -75.178916, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 164.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4200.0, "Total Transactions": 190.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.19, "MEDIAN_SPEND_PER_CUSTOMER": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.178916, 39.991954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 17.0, "POI_CBG": 421010093005.0, "MEDIAN_DWELL": 185.0, "Total Spend": 334.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.05, "MEDIAN_SPEND_PER_CUSTOMER": 28.46 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph8-q75", "LOCATION_NAME": "Bryn Mawr Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978684, "LONGITUDE": -75.268113, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 207.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2546.0, "Total Transactions": 117.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.08, "MEDIAN_SPEND_PER_CUSTOMER": 40.43 }, "geometry": { "type": "Point", "coordinates": [ -75.268113, 39.978684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-yqf", "LOCATION_NAME": "Matcha Cafe Maiko", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95548, "LONGITUDE": -75.155132, "DATE_RANGE_START": 2022, "Total Visits": 10046.0, "Total Visitors": 7164.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 4009.0, "Total Transactions": 364.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.34, "MEDIAN_SPEND_PER_CUSTOMER": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.155132, 39.95548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-ht9", "LOCATION_NAME": "Vapor Hut", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.0786, "LONGITUDE": -75.027064, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 145.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13467.0, "Total Transactions": 347.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 83.19 }, "geometry": { "type": "Point", "coordinates": [ -75.027064, 40.0786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "LOCATION_NAME": "Mid Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 24.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 154.0, "Total Spend": 560.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.19, "MEDIAN_SPEND_PER_CUSTOMER": 78.28 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.000779, "LONGITUDE": -75.226852, "DATE_RANGE_START": 2022, "Total Visits": 2274.0, "Total Visitors": 1721.0, "POI_CBG": 421010121002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1544.0, "Total Transactions": 35.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.18, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226852, 40.000779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "LOCATION_NAME": "H&M (Hennes & Mauritz)", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088823, "LONGITUDE": -74.961811, "DATE_RANGE_START": 2022, "Total Visits": 643.0, "Total Visitors": 514.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 8485.0, "Total Transactions": 209.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.48, "MEDIAN_SPEND_PER_CUSTOMER": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961811, 40.088823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.084661, "LONGITUDE": -74.961825, "DATE_RANGE_START": 2022, "Total Visits": 350.0, "Total Visitors": 280.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 27.0, "Total Spend": 1480.0, "Total Transactions": 52.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961825, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.060394, "LONGITUDE": -75.164248, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 89.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 19528.0, "Total Transactions": 397.0, "Total Customers": 335.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 25.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164248, 40.060394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "LOCATION_NAME": "Colonial Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": 30.0, "Total Spend": 2902.0, "Total Transactions": 155.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.85, "MEDIAN_SPEND_PER_CUSTOMER": 44.01 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-229@628-p85-hkf", "LOCATION_NAME": "Bluegrass Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.071403, "LONGITUDE": -75.030673, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 82.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 228.0, "Total Spend": 712.0, "Total Transactions": 23.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 92.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030673, 40.071403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pmb-btv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.943154, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2022, "Total Visits": 1984.0, "Total Visitors": 1213.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 19895.0, "Total Transactions": 915.0, "Total Customers": 552.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.16, "MEDIAN_SPEND_PER_CUSTOMER": 17.47 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.943154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p82-3wk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039012, "LONGITUDE": -75.097789, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 42.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 171.0, "Total Spend": 694.0, "Total Transactions": 51.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.02, "MEDIAN_SPEND_PER_CUSTOMER": 16.32 }, "geometry": { "type": "Point", "coordinates": [ -75.097789, 40.039012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065814, "LONGITUDE": -75.144222, "DATE_RANGE_START": 2022, "Total Visits": 495.0, "Total Visitors": 333.0, "POI_CBG": 421010266001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 797.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.11, "MEDIAN_SPEND_PER_CUSTOMER": 33.11 }, "geometry": { "type": "Point", "coordinates": [ -75.144222, 40.065814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.035916, "LONGITUDE": -75.217328, "DATE_RANGE_START": 2022, "Total Visits": 1443.0, "Total Visitors": 916.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2071.0, "Total Transactions": 49.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.68, "MEDIAN_SPEND_PER_CUSTOMER": 42.7 }, "geometry": { "type": "Point", "coordinates": [ -75.217328, 40.035916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj4-3qz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017536, "LONGITUDE": -75.148496, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 28.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 80.0, "Total Spend": 4668.0, "Total Transactions": 164.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.17 }, "geometry": { "type": "Point", "coordinates": [ -75.148496, 40.017536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-223@628-pm9-tjv", "LOCATION_NAME": "Tonys Paradise", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949313, "LONGITUDE": -75.153743, "DATE_RANGE_START": 2022, "Total Visits": 1101.0, "Total Visitors": 949.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 90.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.34, "MEDIAN_SPEND_PER_CUSTOMER": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -75.153743, 39.949313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-225@628-pmf-jgk", "LOCATION_NAME": "Rec & Royal", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.951028, "LONGITUDE": -75.168618, "DATE_RANGE_START": 2022, "Total Visits": 998.0, "Total Visitors": 728.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 344.0, "Total Spend": 2666.0, "Total Transactions": 51.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.83, "MEDIAN_SPEND_PER_CUSTOMER": 126.42 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.951028 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5mk", "LOCATION_NAME": "The Halal Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950744, "LONGITUDE": -75.161873, "DATE_RANGE_START": 2022, "Total Visits": 18324.0, "Total Visitors": 13202.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2720.0, "Total Transactions": 117.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.85, "MEDIAN_SPEND_PER_CUSTOMER": 33.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161873, 39.950744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "LOCATION_NAME": "The Quick Fixx", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 61.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 34.0, "Total Spend": 6635.0, "Total Transactions": 382.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.07, "MEDIAN_SPEND_PER_CUSTOMER": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pg8-bp9", "LOCATION_NAME": "WokWorks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984089, "LONGITUDE": -75.183, "DATE_RANGE_START": 2022, "Total Visits": 338.0, "Total Visitors": 211.0, "POI_CBG": 421010151022.0, "MEDIAN_DWELL": 169.0, "Total Spend": 202.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.96, "MEDIAN_SPEND_PER_CUSTOMER": 57.92 }, "geometry": { "type": "Point", "coordinates": [ -75.183, 39.984089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-d35", "LOCATION_NAME": "Thomas'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970627, "LONGITUDE": -75.128561, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 87.0, "POI_CBG": 421010143002.0, "MEDIAN_DWELL": 168.0, "Total Spend": 5660.0, "Total Transactions": 94.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 57.35 }, "geometry": { "type": "Point", "coordinates": [ -75.128561, 39.970627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-68v", "LOCATION_NAME": "Kinme", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947803, "LONGITUDE": -75.160062, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 66.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 160.0, "Total Spend": 5428.0, "Total Transactions": 87.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.12, "MEDIAN_SPEND_PER_CUSTOMER": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160062, 39.947803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-835", "LOCATION_NAME": "Nanee's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953311, "LONGITUDE": -75.158833, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 2687.0, "Total Transactions": 150.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.91, "MEDIAN_SPEND_PER_CUSTOMER": 28.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158833, 39.953311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2022, "Total Visits": 1676.0, "Total Visitors": 1206.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 30.0, "Total Spend": 17404.0, "Total Transactions": 1345.0, "Total Customers": 618.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.32, "MEDIAN_SPEND_PER_CUSTOMER": 21.84 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5zz", "LOCATION_NAME": "Chix & Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94898, "LONGITUDE": -75.159094, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 84.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4553.0, "Total Transactions": 335.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.09, "MEDIAN_SPEND_PER_CUSTOMER": 28.86 }, "geometry": { "type": "Point", "coordinates": [ -75.159094, 39.94898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "LOCATION_NAME": "Amada", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 78.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 41313.0, "Total Transactions": 312.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.52, "MEDIAN_SPEND_PER_CUSTOMER": 149.04 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-tgk", "LOCATION_NAME": "Southside Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019691, "LONGITUDE": -75.174271, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 26.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": 308.0, "Total Spend": 149.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.9, "MEDIAN_SPEND_PER_CUSTOMER": 19.79 }, "geometry": { "type": "Point", "coordinates": [ -75.174271, 40.019691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@63s-dvq-jjv", "LOCATION_NAME": "Lucky Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956772, "LONGITUDE": -75.242093, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010083023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 79.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.242093, 39.956772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-52k", "LOCATION_NAME": "Orient Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980968, "LONGITUDE": -75.15329, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2826.0, "Total Transactions": 251.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15329, 39.980968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvx-2kz", "LOCATION_NAME": "Rising Sun", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968785, "LONGITUDE": -75.217282, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010104003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 46270.0, "Total Transactions": 1645.0, "Total Customers": 498.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.02, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217282, 39.968785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "LOCATION_NAME": "Anastasi Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2022, "Total Visits": 235.0, "Total Visitors": 179.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 21125.0, "Total Transactions": 395.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.7, "MEDIAN_SPEND_PER_CUSTOMER": 66.02 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "LOCATION_NAME": "Fuel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 35.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 19.0, "Total Spend": 12579.0, "Total Transactions": 387.0, "Total Customers": 164.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.72, "MEDIAN_SPEND_PER_CUSTOMER": 60.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvx-tsq", "LOCATION_NAME": "Salt & Pepper Deli III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945704, "LONGITUDE": -75.213904, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010078001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 652.0, "Total Transactions": 26.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.25, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213904, 39.945704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26j-222@628-pgb-6x5", "LOCATION_NAME": "The Black Taxi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968738, "LONGITUDE": -75.178186, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 42867.0, "Total Transactions": 1051.0, "Total Customers": 389.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.5, "MEDIAN_SPEND_PER_CUSTOMER": 70.96 }, "geometry": { "type": "Point", "coordinates": [ -75.178186, 39.968738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "LOCATION_NAME": "Cafe La Maude", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 56.0, "POI_CBG": 421010367002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 4683.0, "Total Transactions": 73.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.52, "MEDIAN_SPEND_PER_CUSTOMER": 113.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2022, "Total Visits": 540.0, "Total Visitors": 395.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15474.0, "Total Transactions": 1256.0, "Total Customers": 693.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.27, "MEDIAN_SPEND_PER_CUSTOMER": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923566, "LONGITUDE": -75.245262, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 226.0, "POI_CBG": 421010064003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3762.0, "Total Transactions": 402.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.64, "MEDIAN_SPEND_PER_CUSTOMER": 10.28 }, "geometry": { "type": "Point", "coordinates": [ -75.245262, 39.923566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019964, "LONGITUDE": -75.174488, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 134.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2554.0, "Total Transactions": 387.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 8.16 }, "geometry": { "type": "Point", "coordinates": [ -75.174488, 40.019964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-223@628-p8d-yd9", "LOCATION_NAME": "Tavares Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.015008, "LONGITUDE": -75.070982, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 17.0, "POI_CBG": 421010298005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 168.0, "Total Transactions": 21.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.88, "MEDIAN_SPEND_PER_CUSTOMER": 17.14 }, "geometry": { "type": "Point", "coordinates": [ -75.070982, 40.015008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pp5-7wk", "LOCATION_NAME": "La Esquina del Bronco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984824, "LONGITUDE": -75.133049, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010162001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 310.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.91, "MEDIAN_SPEND_PER_CUSTOMER": 41.16 }, "geometry": { "type": "Point", "coordinates": [ -75.133049, 39.984824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p7x-dsq", "LOCATION_NAME": "Angelos Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042556, "LONGITUDE": -75.063892, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 23.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2657.0, "Total Transactions": 136.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063892, 40.042556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvx-zmk", "LOCATION_NAME": "Bus and Trolley Sales", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.937753, "LONGITUDE": -75.203731, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 24.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 459.0, "Total Spend": 383.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.0, "MEDIAN_SPEND_PER_CUSTOMER": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203731, 39.937753 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p8j-94v", "LOCATION_NAME": "Panda Chinese", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03456, "LONGITUDE": -75.044147, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 28.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 356.0, "Total Spend": 141.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.3, "MEDIAN_SPEND_PER_CUSTOMER": 40.6 }, "geometry": { "type": "Point", "coordinates": [ -75.044147, 40.03456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pgg-p9z", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.004888, "LONGITUDE": -75.180206, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1391.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 399.25, "MEDIAN_SPEND_PER_CUSTOMER": 399.25 }, "geometry": { "type": "Point", "coordinates": [ -75.180206, 40.004888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-649", "LOCATION_NAME": "The Barn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948417, "LONGITUDE": -75.22137, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 35.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 47.0, "Total Spend": 8369.0, "Total Transactions": 244.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.4, "MEDIAN_SPEND_PER_CUSTOMER": 72.06 }, "geometry": { "type": "Point", "coordinates": [ -75.22137, 39.948417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p82-4jv", "LOCATION_NAME": "Jc Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.04695, "LONGITUDE": -75.097959, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 38.0, "POI_CBG": 421010305011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 208.0, "Total Transactions": 31.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.097959, 40.04695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvx-vcq", "LOCATION_NAME": "Gold Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943788, "LONGITUDE": -75.210959, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010074001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2177.0, "Total Transactions": 152.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 26.84 }, "geometry": { "type": "Point", "coordinates": [ -75.210959, 39.943788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029034, "LONGITUDE": -75.099595, "DATE_RANGE_START": 2022, "Total Visits": 1394.0, "Total Visitors": 937.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 55974.0, "Total Transactions": 3227.0, "Total Customers": 1904.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.099595, 40.029034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2022, "Total Visits": 220.0, "Total Visitors": 188.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7243.0, "Total Transactions": 425.0, "Total Customers": 355.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.59, "MEDIAN_SPEND_PER_CUSTOMER": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "LOCATION_NAME": "Fette Sau", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 51.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 32943.0, "Total Transactions": 474.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.55, "MEDIAN_SPEND_PER_CUSTOMER": 115.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-nnq", "LOCATION_NAME": "Square Pie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938609, "LONGITUDE": -75.152665, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 2.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1195.0, "Total Transactions": 52.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.57, "MEDIAN_SPEND_PER_CUSTOMER": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.152665, 39.938609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-x3q", "LOCATION_NAME": "Medina mini market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984945, "LONGITUDE": -75.147239, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010377003.0, "MEDIAN_DWELL": 35.0, "Total Spend": 178.0, "Total Transactions": 24.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147239, 39.984945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7b-kpv", "LOCATION_NAME": "China City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055685, "LONGITUDE": -75.004529, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": null, "Total Spend": 180.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.86, "MEDIAN_SPEND_PER_CUSTOMER": 37.97 }, "geometry": { "type": "Point", "coordinates": [ -75.004529, 40.055685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918299, "LONGITUDE": -75.180698, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10462.0, "Total Transactions": 533.0, "Total Customers": 368.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.62, "MEDIAN_SPEND_PER_CUSTOMER": 14.55 }, "geometry": { "type": "Point", "coordinates": [ -75.180698, 39.918299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.048384, "LONGITUDE": -75.056563, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 24.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 65.0, "Total Spend": 1037.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.99, "MEDIAN_SPEND_PER_CUSTOMER": 79.99 }, "geometry": { "type": "Point", "coordinates": [ -75.056563, 40.048384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pgb-nh5", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.969197, "LONGITUDE": -75.159372, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 105.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9201.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 191.32, "MEDIAN_SPEND_PER_CUSTOMER": 191.32 }, "geometry": { "type": "Point", "coordinates": [ -75.159372, 39.969197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-g6k", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.918591, "LONGITUDE": -75.183167, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 200.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6246.0, "Total Transactions": 213.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.18, "MEDIAN_SPEND_PER_CUSTOMER": 22.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183167, 39.918591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.062718, "LONGITUDE": -75.083858, "DATE_RANGE_START": 2022, "Total Visits": 564.0, "Total Visitors": 423.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 18603.0, "Total Transactions": 394.0, "Total Customers": 261.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.37, "MEDIAN_SPEND_PER_CUSTOMER": 40.53 }, "geometry": { "type": "Point", "coordinates": [ -75.083858, 40.062718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "LOCATION_NAME": "Kashmir Garden Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 98.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9693.0, "Total Transactions": 213.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.11, "MEDIAN_SPEND_PER_CUSTOMER": 86.76 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-3dv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940442, "LONGITUDE": -75.166876, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 181.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13269.0, "Total Transactions": 718.0, "Total Customers": 460.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 15.26 }, "geometry": { "type": "Point", "coordinates": [ -75.166876, 39.940442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2022, "Total Visits": 1652.0, "Total Visitors": 1063.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 114147.0, "Total Transactions": 5526.0, "Total Customers": 2359.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.65, "MEDIAN_SPEND_PER_CUSTOMER": 25.01 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-92k", "LOCATION_NAME": "Francesca's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952109, "LONGITUDE": -75.155803, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 80.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5205.0, "Total Transactions": 103.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.88, "MEDIAN_SPEND_PER_CUSTOMER": 36.09 }, "geometry": { "type": "Point", "coordinates": [ -75.155803, 39.952109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pm4-gtv", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.925222, "LONGITUDE": -75.169039, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 98.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 8.0, "Total Spend": 466.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.63, "MEDIAN_SPEND_PER_CUSTOMER": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.169039, 39.925222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2022, "Total Visits": 833.0, "Total Visitors": 512.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 20813.0, "Total Transactions": 777.0, "Total Customers": 436.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.06, "MEDIAN_SPEND_PER_CUSTOMER": 32.75 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pm4-pn5", "LOCATION_NAME": "C & S Discount Store", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.937282, "LONGITUDE": -75.158341, "DATE_RANGE_START": 2022, "Total Visits": 916.0, "Total Visitors": 655.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 28.0, "Total Spend": 593.0, "Total Transactions": 70.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.158341, 39.937282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-5j9", "LOCATION_NAME": "Dollar Up & Gifts", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.10998, "LONGITUDE": -75.024237, "DATE_RANGE_START": 2022, "Total Visits": 688.0, "Total Visitors": 498.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 866.0, "Total Transactions": 63.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.53, "MEDIAN_SPEND_PER_CUSTOMER": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.024237, 40.10998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050125, "LONGITUDE": -75.141867, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 71.0, "POI_CBG": 421010268004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1323.0, "Total Transactions": 164.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.97, "MEDIAN_SPEND_PER_CUSTOMER": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.141867, 40.050125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2022, "Total Visits": 890.0, "Total Visitors": 643.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 4266.0, "Total Transactions": 61.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 46.66 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "LOCATION_NAME": "Tandy Leather Factory", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.102565, "LONGITUDE": -75.008773, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 145.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 749.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 107.45, "MEDIAN_SPEND_PER_CUSTOMER": 214.9 }, "geometry": { "type": "Point", "coordinates": [ -75.008773, 40.102565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "LOCATION_NAME": "Annies Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010100004.0, "MEDIAN_DWELL": null, "Total Spend": 439.0, "Total Transactions": 9.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.62, "MEDIAN_SPEND_PER_CUSTOMER": 126.07 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-phy-kcq", "LOCATION_NAME": "La Parrillada", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027461, "LONGITUDE": -75.132799, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010285001.0, "MEDIAN_DWELL": null, "Total Spend": 359.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 102.99 }, "geometry": { "type": "Point", "coordinates": [ -75.132799, 40.027461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pgh-649", "LOCATION_NAME": "Brito's Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.010131, "LONGITUDE": -75.155853, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010201021.0, "MEDIAN_DWELL": 260.0, "Total Spend": 685.0, "Total Transactions": 71.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155853, 40.010131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.031655, "LONGITUDE": -75.099529, "DATE_RANGE_START": 2022, "Total Visits": 5833.0, "Total Visitors": 3864.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 362.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.099529, 40.031655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2022, "Total Visits": 427.0, "Total Visitors": 321.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 18862.0, "Total Transactions": 1662.0, "Total Customers": 1047.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.33, "MEDIAN_SPEND_PER_CUSTOMER": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924749, "LONGITUDE": -75.169152, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 75.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4244.0, "Total Transactions": 420.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.95, "MEDIAN_SPEND_PER_CUSTOMER": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.169152, 39.924749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pgh-v2k", "LOCATION_NAME": "Crown Chicken and Biscuit", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986364, "LONGITUDE": -75.1559, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 112.0, "POI_CBG": 421010166002.0, "MEDIAN_DWELL": 212.0, "Total Spend": 285.0, "Total Transactions": 26.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.66, "MEDIAN_SPEND_PER_CUSTOMER": 17.32 }, "geometry": { "type": "Point", "coordinates": [ -75.1559, 39.986364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 84.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 633.0, "Total Transactions": 33.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.24, "MEDIAN_SPEND_PER_CUSTOMER": 20.56 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2022, "Total Visits": 1075.0, "Total Visitors": 657.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8980.0, "Total Transactions": 1049.0, "Total Customers": 561.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pgb-5vf", "LOCATION_NAME": "B & J Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962851, "LONGITUDE": -75.16648, "DATE_RANGE_START": 2022, "Total Visits": 2019.0, "Total Visitors": 1204.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 106.0, "Total Spend": 109.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16648, 39.962851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-jd9", "LOCATION_NAME": "Club Quarters Philadelphia", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951302, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2022, "Total Visits": 516.0, "Total Visitors": 375.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 186.0, "Total Spend": 2697.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 164.67, "MEDIAN_SPEND_PER_CUSTOMER": 314.55 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.951302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-j5f", "LOCATION_NAME": "Kitchen Kapers", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.949485, "LONGITUDE": -75.169064, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 213.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3046.0, "Total Transactions": 77.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.13, "MEDIAN_SPEND_PER_CUSTOMER": 44.25 }, "geometry": { "type": "Point", "coordinates": [ -75.169064, 39.949485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 99.0, "POI_CBG": 421010188007.0, "MEDIAN_DWELL": 2.0, "Total Spend": 286.0, "Total Transactions": 56.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.79, "MEDIAN_SPEND_PER_CUSTOMER": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wc5", "LOCATION_NAME": "Abunai Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949658, "LONGITUDE": -75.147567, "DATE_RANGE_START": 2022, "Total Visits": 855.0, "Total Visitors": 625.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1788.0, "Total Transactions": 112.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.56, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.147567, 39.949658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 85.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 34.0, "Total Spend": 855.0, "Total Transactions": 19.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.25, "MEDIAN_SPEND_PER_CUSTOMER": 66.51 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.00641, "LONGITUDE": -75.099483, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 132.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7270.0, "Total Transactions": 434.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.55, "MEDIAN_SPEND_PER_CUSTOMER": 17.39 }, "geometry": { "type": "Point", "coordinates": [ -75.099483, 40.00641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-jd9", "LOCATION_NAME": "The Body Shop", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952033, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 78.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 529.0, "Total Transactions": 23.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "LOCATION_NAME": "Asian Chopsticks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 82.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 71.0, "Total Spend": 2845.0, "Total Transactions": 91.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.7, "MEDIAN_SPEND_PER_CUSTOMER": 69.23 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "LOCATION_NAME": "Cuba Libre Restaurant & Rum Bar Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2022, "Total Visits": 389.0, "Total Visitors": 362.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 71254.0, "Total Transactions": 787.0, "Total Customers": 343.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.8, "MEDIAN_SPEND_PER_CUSTOMER": 117.52 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085814, "LONGITUDE": -74.963569, "DATE_RANGE_START": 2022, "Total Visits": 2669.0, "Total Visitors": 2092.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 30.0, "Total Spend": 11291.0, "Total Transactions": 253.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.98, "MEDIAN_SPEND_PER_CUSTOMER": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -74.963569, 40.085814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmf-389", "LOCATION_NAME": "Ferguson", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.939235, "LONGITUDE": -75.174446, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 96.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 278.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.87, "MEDIAN_SPEND_PER_CUSTOMER": 79.87 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.939235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-w8v", "LOCATION_NAME": "Friday Saturday Sunday", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948822, "LONGITUDE": -75.175905, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 194.0, "Total Spend": 13236.0, "Total Transactions": 152.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.8, "MEDIAN_SPEND_PER_CUSTOMER": 153.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175905, 39.948822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-btv", "LOCATION_NAME": "Kraftwork", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971499, "LONGITUDE": -75.127358, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": null, "Total Spend": 5877.0, "Total Transactions": 136.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.06, "MEDIAN_SPEND_PER_CUSTOMER": 65.84 }, "geometry": { "type": "Point", "coordinates": [ -75.127358, 39.971499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pgf-3bk", "LOCATION_NAME": "Promed Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.956395, "LONGITUDE": -75.193735, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 58.0, "Total Spend": 1395.0, "Total Transactions": 42.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.03, "MEDIAN_SPEND_PER_CUSTOMER": 77.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193735, 39.956395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "LOCATION_NAME": "New Panda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3680.0, "Total Transactions": 150.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.36, "MEDIAN_SPEND_PER_CUSTOMER": 55.35 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvz-2c5", "LOCATION_NAME": "International Foods and Spices", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.954931, "LONGITUDE": -75.20692, "DATE_RANGE_START": 2022, "Total Visits": 153.0, "Total Visitors": 131.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 108.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.18, "MEDIAN_SPEND_PER_CUSTOMER": 20.36 }, "geometry": { "type": "Point", "coordinates": [ -75.20692, 39.954931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-gkz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043254, "LONGITUDE": -75.158799, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 183.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8113.0, "Total Transactions": 425.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.3, "MEDIAN_SPEND_PER_CUSTOMER": 21.78 }, "geometry": { "type": "Point", "coordinates": [ -75.158799, 40.043254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8j-ct9", "LOCATION_NAME": "New London Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036249, "LONGITUDE": -75.042416, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6611.0, "Total Transactions": 232.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.39, "MEDIAN_SPEND_PER_CUSTOMER": 56.15 }, "geometry": { "type": "Point", "coordinates": [ -75.042416, 40.036249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944289, "LONGITUDE": -75.17218, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 230.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 15391.0, "Total Transactions": 645.0, "Total Customers": 317.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.22, "MEDIAN_SPEND_PER_CUSTOMER": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.17218, 39.944289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-7t9", "LOCATION_NAME": "Flowers Etcetera By Denise", "TOP_CATEGORY": "Florists", "LATITUDE": 39.961729, "LONGITUDE": -75.140942, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 31.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 91.0, "Total Spend": 3700.0, "Total Transactions": 14.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.5, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140942, 39.961729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p7x-6tv", "LOCATION_NAME": "Artifax", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.046392, "LONGITUDE": -75.058077, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 31.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12614.0, "Total Transactions": 277.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.35, "MEDIAN_SPEND_PER_CUSTOMER": 64.7 }, "geometry": { "type": "Point", "coordinates": [ -75.058077, 40.046392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvp-qmk", "LOCATION_NAME": "Caribbean Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94382, "LONGITUDE": -75.246381, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010082004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 524.0, "Total Transactions": 35.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.75, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246381, 39.94382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-33q", "LOCATION_NAME": "Urban Outfitters", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.953788, "LONGITUDE": -75.194952, "DATE_RANGE_START": 2022, "Total Visits": 225.0, "Total Visitors": 167.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 7716.0, "Total Transactions": 143.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.23, "MEDIAN_SPEND_PER_CUSTOMER": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.194952, 39.953788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-229@628-pj2-mrk", "LOCATION_NAME": "Universal Dollar", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.006684, "LONGITUDE": -75.096267, "DATE_RANGE_START": 2022, "Total Visits": 664.0, "Total Visitors": 430.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 78.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.01, "MEDIAN_SPEND_PER_CUSTOMER": 22.47 }, "geometry": { "type": "Point", "coordinates": [ -75.096267, 40.006684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-5xq", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.051379, "LONGITUDE": -75.010945, "DATE_RANGE_START": 2022, "Total Visits": 495.0, "Total Visitors": 389.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 394.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.9, "MEDIAN_SPEND_PER_CUSTOMER": 32.8 }, "geometry": { "type": "Point", "coordinates": [ -75.010945, 40.051379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgb-c3q", "LOCATION_NAME": "Lucky Goat Coffeehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972559, "LONGITUDE": -75.179343, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": null, "Total Spend": 5868.0, "Total Transactions": 787.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 21.44 }, "geometry": { "type": "Point", "coordinates": [ -75.179343, 39.972559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-vxq", "LOCATION_NAME": "Crown Drugs", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.029725, "LONGITUDE": -75.055436, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010320007.0, "MEDIAN_DWELL": null, "Total Spend": 509.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.79, "MEDIAN_SPEND_PER_CUSTOMER": 146.19 }, "geometry": { "type": "Point", "coordinates": [ -75.055436, 40.029725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "LOCATION_NAME": "Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95002, "LONGITUDE": -75.162328, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 127.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 170738.0, "Total Transactions": 3695.0, "Total Customers": 1652.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 62.32 }, "geometry": { "type": "Point", "coordinates": [ -75.162328, 39.95002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "LOCATION_NAME": "Greek Lady", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2022, "Total Visits": 195.0, "Total Visitors": 167.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 62.0, "Total Spend": 26153.0, "Total Transactions": 1117.0, "Total Customers": 477.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.77, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-224@628-pmb-kzz", "LOCATION_NAME": "Home Cuban Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950812, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2022, "Total Visits": 552.0, "Total Visitors": 378.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 79.0, "Total Spend": 578.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 165.95, "MEDIAN_SPEND_PER_CUSTOMER": 165.95 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.950812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3nq", "LOCATION_NAME": "Nick's Roast Beef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.083763, "LONGITUDE": -74.966105, "DATE_RANGE_START": 2022, "Total Visits": 411.0, "Total Visitors": 298.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 60.0, "Total Spend": 6545.0, "Total Transactions": 176.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.44, "MEDIAN_SPEND_PER_CUSTOMER": 69.81 }, "geometry": { "type": "Point", "coordinates": [ -74.966105, 40.083763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pfy-b6k", "LOCATION_NAME": "Barry's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035119, "LONGITUDE": -75.217909, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 35.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": 270.0, "Total Spend": 2196.0, "Total Transactions": 105.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.39, "MEDIAN_SPEND_PER_CUSTOMER": 28.86 }, "geometry": { "type": "Point", "coordinates": [ -75.217909, 40.035119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgg-jsq", "LOCATION_NAME": "BBQ Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995114, "LONGITUDE": -75.167387, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 51.0, "POI_CBG": 421010168006.0, "MEDIAN_DWELL": 487.0, "Total Spend": 626.0, "Total Transactions": 28.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.06, "MEDIAN_SPEND_PER_CUSTOMER": 30.11 }, "geometry": { "type": "Point", "coordinates": [ -75.167387, 39.995114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "LOCATION_NAME": "Allegro Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2022, "Total Visits": 329.0, "Total Visitors": 183.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 45.0, "Total Spend": 21819.0, "Total Transactions": 1237.0, "Total Customers": 497.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.69, "MEDIAN_SPEND_PER_CUSTOMER": 30.36 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2022, "Total Visits": 1005.0, "Total Visitors": 730.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 3.0, "Total Spend": 26020.0, "Total Transactions": 2059.0, "Total Customers": 1307.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.14, "MEDIAN_SPEND_PER_CUSTOMER": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-phq-rp9", "LOCATION_NAME": "Deli Delight", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066189, "LONGITUDE": -75.159352, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010263023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 740.0, "Total Transactions": 40.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159352, 40.066189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952459, "LONGITUDE": -75.162267, "DATE_RANGE_START": 2022, "Total Visits": 3669.0, "Total Visitors": 2692.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 263.0, "Total Spend": 6736.0, "Total Transactions": 1085.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.58, "MEDIAN_SPEND_PER_CUSTOMER": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162267, 39.952459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2022, "Total Visits": 218.0, "Total Visitors": 152.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8695.0, "Total Transactions": 984.0, "Total Customers": 538.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pfz-bhq", "LOCATION_NAME": "Valerio Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025342, "LONGITUDE": -75.222719, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 115.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 18419.0, "Total Transactions": 1444.0, "Total Customers": 535.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.19, "MEDIAN_SPEND_PER_CUSTOMER": 23.61 }, "geometry": { "type": "Point", "coordinates": [ -75.222719, 40.025342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7z-7kf", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062355, "LONGITUDE": -75.08469, "DATE_RANGE_START": 2022, "Total Visits": 270.0, "Total Visitors": 181.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 35.0, "Total Spend": 156.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.95, "MEDIAN_SPEND_PER_CUSTOMER": 25.53 }, "geometry": { "type": "Point", "coordinates": [ -75.08469, 40.062355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032682, "LONGITUDE": -75.084504, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 162.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1516.0, "Total Transactions": 199.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.85, "MEDIAN_SPEND_PER_CUSTOMER": 9.24 }, "geometry": { "type": "Point", "coordinates": [ -75.084504, 40.032682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-kpv", "LOCATION_NAME": "Artisans On the Avenue", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075688, "LONGITUDE": -75.206238, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 887.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 62.64 }, "geometry": { "type": "Point", "coordinates": [ -75.206238, 40.075688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pg4-w49", "LOCATION_NAME": "Pauline's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040848, "LONGITUDE": -75.157522, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 21.0, "POI_CBG": 421010279022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3786.0, "Total Transactions": 251.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.76, "MEDIAN_SPEND_PER_CUSTOMER": 35.66 }, "geometry": { "type": "Point", "coordinates": [ -75.157522, 40.040848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "LOCATION_NAME": "Race Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 28.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 88.0, "Total Spend": 587.0, "Total Transactions": 61.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.49, "MEDIAN_SPEND_PER_CUSTOMER": 16.98 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmf-qfz", "LOCATION_NAME": "Entree Byob", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943935, "LONGITUDE": -75.169156, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 108.0, "Total Spend": 3214.0, "Total Transactions": 14.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 128.0, "MEDIAN_SPEND_PER_CUSTOMER": 220.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169156, 39.943935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "LOCATION_NAME": "Higher Grounds", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4900.0, "Total Transactions": 542.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 19.58 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "LOCATION_NAME": "American Sardine Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 113.0, "Total Spend": 3703.0, "Total Transactions": 56.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.54, "MEDIAN_SPEND_PER_CUSTOMER": 107.51 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-gtv", "LOCATION_NAME": "Cosi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980925, "LONGITUDE": -75.157606, "DATE_RANGE_START": 2022, "Total Visits": 2315.0, "Total Visitors": 1366.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 92.0, "Total Spend": 3457.0, "Total Transactions": 174.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.13, "MEDIAN_SPEND_PER_CUSTOMER": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157606, 39.980925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-skf", "LOCATION_NAME": "Max Brenner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949114, "LONGITUDE": -75.166283, "DATE_RANGE_START": 2022, "Total Visits": 352.0, "Total Visitors": 282.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 59.0, "Total Spend": 14837.0, "Total Transactions": 183.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.15, "MEDIAN_SPEND_PER_CUSTOMER": 73.32 }, "geometry": { "type": "Point", "coordinates": [ -75.166283, 39.949114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dw2-c3q", "LOCATION_NAME": "Tony Boys Breakfast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962196, "LONGITUDE": -75.240563, "DATE_RANGE_START": 2022, "Total Visits": 915.0, "Total Visitors": 666.0, "POI_CBG": 421010095003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 253.0, "Total Transactions": 14.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.31, "MEDIAN_SPEND_PER_CUSTOMER": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.240563, 39.962196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmb-ce5", "LOCATION_NAME": "Angelo's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940639, "LONGITUDE": -75.157632, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 66.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 153.0, "Total Spend": 4501.0, "Total Transactions": 200.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.157632, 39.940639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-ygk", "LOCATION_NAME": "Pho Cali", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953422, "LONGITUDE": -75.156467, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 220.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 6566.0, "Total Transactions": 174.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.39, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156467, 39.953422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-jjv", "LOCATION_NAME": "The Continental Mid Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951903, "LONGITUDE": -75.170452, "DATE_RANGE_START": 2022, "Total Visits": 1028.0, "Total Visitors": 901.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 48.0, "Total Spend": 377.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.18, "MEDIAN_SPEND_PER_CUSTOMER": 108.18 }, "geometry": { "type": "Point", "coordinates": [ -75.170452, 39.951903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 38.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 13.0, "Total Spend": 24549.0, "Total Transactions": 2415.0, "Total Customers": 786.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.9622, "LONGITUDE": -75.172139, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 38.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 115.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.7, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.172139, 39.9622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "LOCATION_NAME": "Arctic Scoop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 42.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 563.0, "Total Spend": 9347.0, "Total Transactions": 824.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgg-b8v", "LOCATION_NAME": "Fingers & Wings Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001078, "LONGITUDE": -75.166601, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010172013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 32.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.38, "MEDIAN_SPEND_PER_CUSTOMER": 9.24 }, "geometry": { "type": "Point", "coordinates": [ -75.166601, 40.001078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-yqf", "LOCATION_NAME": "Chick's Philly", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938939, "LONGITUDE": -75.174017, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 596.0, "Total Spend": 3459.0, "Total Transactions": 51.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.32, "MEDIAN_SPEND_PER_CUSTOMER": 119.84 }, "geometry": { "type": "Point", "coordinates": [ -75.174017, 39.938939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "LOCATION_NAME": "Claudio's Specialty Foods", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3863.0, "Total Transactions": 99.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.39, "MEDIAN_SPEND_PER_CUSTOMER": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "LOCATION_NAME": "Penang", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954047, "LONGITUDE": -75.155868, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 167.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 19893.0, "Total Transactions": 406.0, "Total Customers": 211.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.88, "MEDIAN_SPEND_PER_CUSTOMER": 75.08 }, "geometry": { "type": "Point", "coordinates": [ -75.155868, 39.954047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-xqz", "LOCATION_NAME": "The Original Turkey", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956427, "LONGITUDE": -75.158805, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 87.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9855.0, "Total Transactions": 669.0, "Total Customers": 317.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.35, "MEDIAN_SPEND_PER_CUSTOMER": 28.05 }, "geometry": { "type": "Point", "coordinates": [ -75.158805, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-zvf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940697, "LONGITUDE": -75.166565, "DATE_RANGE_START": 2022, "Total Visits": 822.0, "Total Visitors": 671.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12005.0, "Total Transactions": 789.0, "Total Customers": 610.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.166565, 39.940697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgy-ks5", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064334, "LONGITUDE": -75.23681, "DATE_RANGE_START": 2022, "Total Visits": 1004.0, "Total Visitors": 263.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 15059.0, "Total Transactions": 941.0, "Total Customers": 650.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.37, "MEDIAN_SPEND_PER_CUSTOMER": 17.13 }, "geometry": { "type": "Point", "coordinates": [ -75.23681, 40.064334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-t9z", "LOCATION_NAME": "Last Drop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945156, "LONGITUDE": -75.163064, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 254.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 392.0, "Total Transactions": 38.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.74 }, "geometry": { "type": "Point", "coordinates": [ -75.163064, 39.945156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-5vf", "LOCATION_NAME": "Golden Dragon Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961461, "LONGITUDE": -75.16684, "DATE_RANGE_START": 2022, "Total Visits": 448.0, "Total Visitors": 202.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 121.0, "Total Spend": 122.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.58, "MEDIAN_SPEND_PER_CUSTOMER": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.16684, 39.961461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pm5-bzf", "LOCATION_NAME": "Mr Wish USA", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912953, "LONGITUDE": -75.153917, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 202.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 22.0, "Total Spend": 47.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.912953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-ks5", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951718, "LONGITUDE": -75.144312, "DATE_RANGE_START": 2022, "Total Visits": 709.0, "Total Visitors": 451.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 276.0, "Total Spend": 369.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.67, "MEDIAN_SPEND_PER_CUSTOMER": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 39.951718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-4jv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962295, "LONGITUDE": -75.162022, "DATE_RANGE_START": 2022, "Total Visits": 1042.0, "Total Visitors": 676.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 66.0, "Total Spend": 7905.0, "Total Transactions": 951.0, "Total Customers": 526.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.162022, 39.962295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972318, "LONGITUDE": -75.125675, "DATE_RANGE_START": 2022, "Total Visits": 343.0, "Total Visitors": 157.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4352.0, "Total Transactions": 629.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.125675, 39.972318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948761, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2022, "Total Visits": 195.0, "Total Visitors": 164.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4690.0, "Total Transactions": 603.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.16, "MEDIAN_SPEND_PER_CUSTOMER": 7.69 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.948761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 169.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9191.0, "Total Transactions": 1131.0, "Total Customers": 390.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.23, "MEDIAN_SPEND_PER_CUSTOMER": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928851, "LONGITUDE": -75.229354, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 92.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2036.0, "Total Transactions": 233.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.32, "MEDIAN_SPEND_PER_CUSTOMER": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -75.229354, 39.928851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmc-qmk", "LOCATION_NAME": "Federal Donuts 2nd Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932221, "LONGITUDE": -75.147485, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 7.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 340.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.49, "MEDIAN_SPEND_PER_CUSTOMER": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.147485, 39.932221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-v9f", "LOCATION_NAME": "Tang Pharmacy V", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068833, "LONGITUDE": -75.157234, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": null, "Total Spend": 756.0, "Total Transactions": 16.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157234, 40.068833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-p7b-qs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.063609, "LONGITUDE": -75.021861, "DATE_RANGE_START": 2022, "Total Visits": 1706.0, "Total Visitors": 848.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 655.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.43 }, "geometry": { "type": "Point", "coordinates": [ -75.021861, 40.063609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2022, "Total Visits": 835.0, "Total Visitors": 676.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 5369.0, "Total Transactions": 124.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.54, "MEDIAN_SPEND_PER_CUSTOMER": 35.61 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "LOCATION_NAME": "Navy Exchange", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 115.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 209.0, "Total Spend": 5660.0, "Total Transactions": 179.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.94, "MEDIAN_SPEND_PER_CUSTOMER": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-7h5", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.964803, "LONGITUDE": -75.14238, "DATE_RANGE_START": 2022, "Total Visits": 498.0, "Total Visitors": 296.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 605.0, "Total Spend": 18153.0, "Total Transactions": 505.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.05, "MEDIAN_SPEND_PER_CUSTOMER": 59.35 }, "geometry": { "type": "Point", "coordinates": [ -75.14238, 39.964803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-649", "LOCATION_NAME": "Quaker Valley Foods", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.094265, "LONGITUDE": -75.010029, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 71.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 401.0, "Total Spend": 37539.0, "Total Transactions": 17.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1068.4, "MEDIAN_SPEND_PER_CUSTOMER": 10773.59 }, "geometry": { "type": "Point", "coordinates": [ -75.010029, 40.094265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "LOCATION_NAME": "Fat Tuesday", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 71.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 10162.0, "Total Transactions": 500.0, "Total Customers": 411.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "LOCATION_NAME": "Brewer's Outlet", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.953078, "LONGITUDE": -75.217954, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 148.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 27194.0, "Total Transactions": 800.0, "Total Customers": 319.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.44 }, "geometry": { "type": "Point", "coordinates": [ -75.217954, 39.953078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2022, "Total Visits": 355.0, "Total Visitors": 272.0, "POI_CBG": 421010320003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8978.0, "Total Transactions": 401.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.65, "MEDIAN_SPEND_PER_CUSTOMER": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.061169, "LONGITUDE": -75.237242, "DATE_RANGE_START": 2022, "Total Visits": 707.0, "Total Visitors": 507.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8777.0, "Total Transactions": 436.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.96, "MEDIAN_SPEND_PER_CUSTOMER": 20.34 }, "geometry": { "type": "Point", "coordinates": [ -75.237242, 40.061169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvw-jgk", "LOCATION_NAME": "Sun Ray Drugs", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957136, "LONGITUDE": -75.22573, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 77.0, "POI_CBG": 421010085006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1386.0, "Total Transactions": 57.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.68, "MEDIAN_SPEND_PER_CUSTOMER": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.22573, 39.957136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2022, "Total Visits": 449.0, "Total Visitors": 329.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1430.0, "Total Transactions": 103.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.49, "MEDIAN_SPEND_PER_CUSTOMER": 13.74 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.96715, "LONGITUDE": -75.175689, "DATE_RANGE_START": 2022, "Total Visits": 981.0, "Total Visitors": 763.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2347.0, "Total Transactions": 82.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.12, "MEDIAN_SPEND_PER_CUSTOMER": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.175689, 39.96715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qmk", "LOCATION_NAME": "Sea Soul", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038264, "LONGITUDE": -75.11969, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 49.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3521.0, "Total Transactions": 118.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.73, "MEDIAN_SPEND_PER_CUSTOMER": 36.16 }, "geometry": { "type": "Point", "coordinates": [ -75.11969, 40.038264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg3-jqf", "LOCATION_NAME": "Jansen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062669, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 51.0, "POI_CBG": 421010388001.0, "MEDIAN_DWELL": 269.0, "Total Spend": 18028.0, "Total Transactions": 73.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 229.64, "MEDIAN_SPEND_PER_CUSTOMER": 467.06 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 40.062669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-h89", "LOCATION_NAME": "Kite & Key", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960365, "LONGITUDE": -75.169693, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 56.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 174.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.91, "MEDIAN_SPEND_PER_CUSTOMER": 49.82 }, "geometry": { "type": "Point", "coordinates": [ -75.169693, 39.960365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 77.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3676.0, "Total Transactions": 185.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.1, "MEDIAN_SPEND_PER_CUSTOMER": 23.03 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-6rk", "LOCATION_NAME": "Magic Carpet Foods", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950915, "LONGITUDE": -75.195176, "DATE_RANGE_START": 2022, "Total Visits": 833.0, "Total Visitors": 533.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 4842.0, "Total Transactions": 472.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.195176, 39.950915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-tn5", "LOCATION_NAME": "The Fresh Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979613, "LONGITUDE": -75.11764, "DATE_RANGE_START": 2022, "Total Visits": 625.0, "Total Visitors": 240.0, "POI_CBG": 421010378003.0, "MEDIAN_DWELL": 696.0, "Total Spend": 529.0, "Total Transactions": 31.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.75, "MEDIAN_SPEND_PER_CUSTOMER": 39.25 }, "geometry": { "type": "Point", "coordinates": [ -75.11764, 39.979613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-mrk", "LOCATION_NAME": "Auntie Anne's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952065, "LONGITUDE": -75.167537, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 78.0, "Total Spend": 23.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.52, "MEDIAN_SPEND_PER_CUSTOMER": 6.52 }, "geometry": { "type": "Point", "coordinates": [ -75.167537, 39.952065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-cdv", "LOCATION_NAME": "Holiday Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.04293, "LONGITUDE": -75.010392, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 31.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 526.0, "Total Transactions": 28.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.26, "MEDIAN_SPEND_PER_CUSTOMER": 58.56 }, "geometry": { "type": "Point", "coordinates": [ -75.010392, 40.04293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "LOCATION_NAME": "YOLO Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 14.0, "POI_CBG": 421010167024.0, "MEDIAN_DWELL": 74.0, "Total Spend": 1446.0, "Total Transactions": 44.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pjf-ks5", "LOCATION_NAME": "Threadwell", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.075533, "LONGITUDE": -75.206071, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1197.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.66, "MEDIAN_SPEND_PER_CUSTOMER": 99.58 }, "geometry": { "type": "Point", "coordinates": [ -75.206071, 40.075533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22x@628-pmf-n3q", "LOCATION_NAME": "Uptown Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953433, "LONGITUDE": -75.165886, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 63.0, "Total Spend": 86633.0, "Total Transactions": 3159.0, "Total Customers": 1066.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.76, "MEDIAN_SPEND_PER_CUSTOMER": 59.36 }, "geometry": { "type": "Point", "coordinates": [ -75.165886, 39.953433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-h5z", "LOCATION_NAME": "Buena Onda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960932, "LONGITUDE": -75.170707, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 240.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 20649.0, "Total Transactions": 876.0, "Total Customers": 383.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.2, "MEDIAN_SPEND_PER_CUSTOMER": 45.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170707, 39.960932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "LOCATION_NAME": "Domenic's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 87.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 932.0, "Total Transactions": 33.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.05, "MEDIAN_SPEND_PER_CUSTOMER": 44.1 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2022, "Total Visits": 1314.0, "Total Visitors": 1260.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14502.0, "Total Transactions": 728.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.79, "MEDIAN_SPEND_PER_CUSTOMER": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "LOCATION_NAME": "La Rosa Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 68.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1249.0, "Total Transactions": 105.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.046202, "LONGITUDE": -75.056569, "DATE_RANGE_START": 2022, "Total Visits": 1209.0, "Total Visitors": 781.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12669.0, "Total Transactions": 1673.0, "Total Customers": 831.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.23, "MEDIAN_SPEND_PER_CUSTOMER": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.056569, 40.046202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "LOCATION_NAME": "Sang Kee Noodle House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954847, "LONGITUDE": -75.193677, "DATE_RANGE_START": 2022, "Total Visits": 958.0, "Total Visitors": 510.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 390.0, "Total Spend": 4520.0, "Total Transactions": 179.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193677, 39.954847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw4-rzf", "LOCATION_NAME": "La Tapenade Mediterranean Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.880653, "LONGITUDE": -75.238331, "DATE_RANGE_START": 2022, "Total Visits": 13519.0, "Total Visitors": 11242.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 10908.0, "Total Transactions": 488.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.75, "MEDIAN_SPEND_PER_CUSTOMER": 31.11 }, "geometry": { "type": "Point", "coordinates": [ -75.238331, 39.880653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-syv", "LOCATION_NAME": "Sushi Garden & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944749, "LONGITUDE": -75.164917, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 71.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 65.0, "Total Spend": 1118.0, "Total Transactions": 42.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.13, "MEDIAN_SPEND_PER_CUSTOMER": 52.82 }, "geometry": { "type": "Point", "coordinates": [ -75.164917, 39.944749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg9-k4v", "LOCATION_NAME": "Mom's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991401, "LONGITUDE": -75.180066, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010169022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1442.0, "Total Transactions": 44.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.88 }, "geometry": { "type": "Point", "coordinates": [ -75.180066, 39.991401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-ht9", "LOCATION_NAME": "Sonesta Philadelphia Rittenhouse Square", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952877, "LONGITUDE": -75.170604, "DATE_RANGE_START": 2022, "Total Visits": 1366.0, "Total Visitors": 817.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 208.0, "Total Spend": 3586.0, "Total Transactions": 26.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.0, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170604, 39.952877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-pvz", "LOCATION_NAME": "Triple Play Sports", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.939041, "LONGITUDE": -75.157707, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 305.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8951.0, "Total Transactions": 66.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157707, 39.939041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-4jv", "LOCATION_NAME": "Del Rossi's Cheesesteak", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961482, "LONGITUDE": -75.14504, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 105.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 15717.0, "Total Transactions": 474.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.97, "MEDIAN_SPEND_PER_CUSTOMER": 45.65 }, "geometry": { "type": "Point", "coordinates": [ -75.14504, 39.961482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.099643, "LONGITUDE": -75.010101, "DATE_RANGE_START": 2022, "Total Visits": 350.0, "Total Visitors": 329.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 8455.0, "Total Transactions": 209.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.86, "MEDIAN_SPEND_PER_CUSTOMER": 42.98 }, "geometry": { "type": "Point", "coordinates": [ -75.010101, 40.099643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "LOCATION_NAME": "Giovani's Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951522, "LONGITUDE": -75.166746, "DATE_RANGE_START": 2022, "Total Visits": 887.0, "Total Visitors": 686.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 67.0, "Total Spend": 25166.0, "Total Transactions": 1172.0, "Total Customers": 406.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.77, "MEDIAN_SPEND_PER_CUSTOMER": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.166746, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xkf", "LOCATION_NAME": "Lee How Fook", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956286, "LONGITUDE": -75.157078, "DATE_RANGE_START": 2022, "Total Visits": 364.0, "Total Visitors": 300.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1505.0, "Total Transactions": 23.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.17, "MEDIAN_SPEND_PER_CUSTOMER": 44.91 }, "geometry": { "type": "Point", "coordinates": [ -75.157078, 39.956286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-789", "LOCATION_NAME": "Booker's Restaurant and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947999, "LONGITUDE": -75.22426, "DATE_RANGE_START": 2022, "Total Visits": 153.0, "Total Visitors": 125.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 3742.0, "Total Transactions": 45.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.72, "MEDIAN_SPEND_PER_CUSTOMER": 71.64 }, "geometry": { "type": "Point", "coordinates": [ -75.22426, 39.947999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dvw-mx5", "LOCATION_NAME": "Sunshine Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.960055, "LONGITUDE": -75.226746, "DATE_RANGE_START": 2022, "Total Visits": 14863.0, "Total Visitors": 5896.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 41.0, "Total Spend": 600.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.55, "MEDIAN_SPEND_PER_CUSTOMER": 87.93 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.960055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2022, "Total Visits": 469.0, "Total Visitors": 315.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5783.0, "Total Transactions": 472.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-66k", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949053, "LONGITUDE": -75.160719, "DATE_RANGE_START": 2022, "Total Visits": 4451.0, "Total Visitors": 3033.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4644.0, "Total Transactions": 310.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.31, "MEDIAN_SPEND_PER_CUSTOMER": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.160719, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2022, "Total Visits": 458.0, "Total Visitors": 267.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 210.0, "Total Spend": 29915.0, "Total Transactions": 1427.0, "Total Customers": 775.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.68, "MEDIAN_SPEND_PER_CUSTOMER": 24.18 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-8gk", "LOCATION_NAME": "Colinas Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.95962, "LONGITUDE": -75.241489, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 791.0, "Total Transactions": 87.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.241489, 39.95962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.007189, "LONGITUDE": -75.137271, "DATE_RANGE_START": 2022, "Total Visits": 1098.0, "Total Visitors": 765.0, "POI_CBG": 421010199001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 814.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.01, "MEDIAN_SPEND_PER_CUSTOMER": 91.01 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.007189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmd-xqz", "LOCATION_NAME": "Cafe Ynez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939765, "LONGITUDE": -75.177339, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 17.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 90.0, "Total Spend": 1741.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.96, "MEDIAN_SPEND_PER_CUSTOMER": 111.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177339, 39.939765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-m8v", "LOCATION_NAME": "Ooh LaLa Salads", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970924, "LONGITUDE": -75.156972, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 132.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.88, "MEDIAN_SPEND_PER_CUSTOMER": 37.77 }, "geometry": { "type": "Point", "coordinates": [ -75.156972, 39.970924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pp4-snq", "LOCATION_NAME": "Good Time Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.97726, "LONGITUDE": -75.123641, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 21.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 80.0, "Total Spend": 2670.0, "Total Transactions": 42.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.09, "MEDIAN_SPEND_PER_CUSTOMER": 144.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123641, 39.97726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-m8v", "LOCATION_NAME": "Blazin Flavorz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988482, "LONGITUDE": -75.146793, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010165003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3506.0, "Total Transactions": 106.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.5, "MEDIAN_SPEND_PER_CUSTOMER": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146793, 39.988482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "LOCATION_NAME": "El Balconcito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 477.0, "Total Transactions": 17.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.16, "MEDIAN_SPEND_PER_CUSTOMER": 81.56 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfx-kxq", "LOCATION_NAME": "Funny Monk Emporium", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.026687, "LONGITUDE": -75.224098, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 57.0, "POI_CBG": 421010214003.0, "MEDIAN_DWELL": 424.0, "Total Spend": 20258.0, "Total Transactions": 554.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224098, 40.026687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j7q", "LOCATION_NAME": "J Mclaughlin", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075451, "LONGITUDE": -75.204853, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 441.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 126.52, "MEDIAN_SPEND_PER_CUSTOMER": 126.52 }, "geometry": { "type": "Point", "coordinates": [ -75.204853, 40.075451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm3-vzz", "LOCATION_NAME": "Sermania Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.928072, "LONGITUDE": -75.165393, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1266.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 160.0, "MEDIAN_SPEND_PER_CUSTOMER": 320.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165393, 39.928072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j9z", "LOCATION_NAME": "aka.", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.950397, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 314.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 99.0, "Total Spend": 3304.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 255.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.950397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "LOCATION_NAME": "Fairfield Inn & Suites by Marriott", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2022, "Total Visits": 1272.0, "Total Visitors": 735.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 292.0, "Total Spend": 76037.0, "Total Transactions": 291.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 187.28, "MEDIAN_SPEND_PER_CUSTOMER": 214.03 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-pvz", "LOCATION_NAME": "Red Lion Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.105639, "LONGITUDE": -75.033118, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 63.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1866.0, "Total Transactions": 82.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 165.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033118, 40.105639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8y9", "LOCATION_NAME": "City Winery Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952404, "LONGITUDE": -75.156249, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 12832.0, "Total Transactions": 197.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.0, "MEDIAN_SPEND_PER_CUSTOMER": 112.72 }, "geometry": { "type": "Point", "coordinates": [ -75.156249, 39.952404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phz-2ff", "LOCATION_NAME": "Wyoming Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020426, "LONGITUDE": -75.113704, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 77.0, "POI_CBG": 421010289022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 482.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.5, "MEDIAN_SPEND_PER_CUSTOMER": 52.26 }, "geometry": { "type": "Point", "coordinates": [ -75.113704, 40.020426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "LOCATION_NAME": "Barcade", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96746, "LONGITUDE": -75.134594, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 603.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 47455.0, "Total Transactions": 1624.0, "Total Customers": 737.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.8, "MEDIAN_SPEND_PER_CUSTOMER": 50.04 }, "geometry": { "type": "Point", "coordinates": [ -75.134594, 39.96746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-vpv", "LOCATION_NAME": "P'unk Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927124, "LONGITUDE": -75.166327, "DATE_RANGE_START": 2022, "Total Visits": 709.0, "Total Visitors": 484.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 46.0, "Total Spend": 189.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.63, "MEDIAN_SPEND_PER_CUSTOMER": 54.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.927124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-9s5", "LOCATION_NAME": "Parkside Beef & Ale", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954767, "LONGITUDE": -75.164606, "DATE_RANGE_START": 2022, "Total Visits": 183.0, "Total Visitors": 153.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 7672.0, "Total Transactions": 247.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.6, "MEDIAN_SPEND_PER_CUSTOMER": 78.72 }, "geometry": { "type": "Point", "coordinates": [ -75.164606, 39.954767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj6-8y9", "LOCATION_NAME": "El Rinconcito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031782, "LONGITUDE": -75.107117, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 84.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 107.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.36, "MEDIAN_SPEND_PER_CUSTOMER": 30.72 }, "geometry": { "type": "Point", "coordinates": [ -75.107117, 40.031782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "LOCATION_NAME": "China Gate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2022, "Total Visits": 997.0, "Total Visitors": 690.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3071.0, "Total Transactions": 131.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.95, "MEDIAN_SPEND_PER_CUSTOMER": 44.22 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "LOCATION_NAME": "La Calaca Feliz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 57.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 41.0, "Total Spend": 7375.0, "Total Transactions": 92.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.01, "MEDIAN_SPEND_PER_CUSTOMER": 123.93 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pj6-k4v", "LOCATION_NAME": "Tiger Sugar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045018, "LONGITUDE": -75.117501, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 12270.0, "Total Transactions": 1052.0, "Total Customers": 526.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.77 }, "geometry": { "type": "Point", "coordinates": [ -75.117501, 40.045018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011206, "LONGITUDE": -75.113008, "DATE_RANGE_START": 2022, "Total Visits": 679.0, "Total Visitors": 390.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9958.0, "Total Transactions": 1125.0, "Total Customers": 523.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 11.64 }, "geometry": { "type": "Point", "coordinates": [ -75.113008, 40.011206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pgf-fj9", "LOCATION_NAME": "Cleopatra Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.956516, "LONGITUDE": -75.206034, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 52.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2321.0, "Total Transactions": 44.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.0, "MEDIAN_SPEND_PER_CUSTOMER": 92.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206034, 39.956516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "LOCATION_NAME": "George's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 129.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3807.0, "Total Transactions": 232.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "LOCATION_NAME": "DaMo Pasta Lab", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 181.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7059.0, "Total Transactions": 280.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99223, "LONGITUDE": -75.09972, "DATE_RANGE_START": 2022, "Total Visits": 286.0, "Total Visitors": 220.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 40.0, "Total Spend": 7059.0, "Total Transactions": 148.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.56, "MEDIAN_SPEND_PER_CUSTOMER": 43.06 }, "geometry": { "type": "Point", "coordinates": [ -75.09972, 39.99223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pzp-2zf", "LOCATION_NAME": "Station Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.131988, "LONGITUDE": -75.012285, "DATE_RANGE_START": 2022, "Total Visits": 491.0, "Total Visitors": 408.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 37.0, "Total Spend": 3960.0, "Total Transactions": 193.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.9, "MEDIAN_SPEND_PER_CUSTOMER": 39.97 }, "geometry": { "type": "Point", "coordinates": [ -75.012285, 40.131988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 120.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 25676.0, "Total Transactions": 1423.0, "Total Customers": 753.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.12, "MEDIAN_SPEND_PER_CUSTOMER": 17.84 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949164, "LONGITUDE": -75.163217, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 179.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2472.0, "Total Transactions": 434.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.73, "MEDIAN_SPEND_PER_CUSTOMER": 7.21 }, "geometry": { "type": "Point", "coordinates": [ -75.163217, 39.949164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pp2-2kz", "LOCATION_NAME": "Aramingo Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.992444, "LONGITUDE": -75.101354, "DATE_RANGE_START": 2022, "Total Visits": 753.0, "Total Visitors": 564.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 4673.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 198.0, "MEDIAN_SPEND_PER_CUSTOMER": 396.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101354, 39.992444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.928169, "LONGITUDE": -75.230056, "DATE_RANGE_START": 2022, "Total Visits": 436.0, "Total Visitors": 291.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 372.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.17, "MEDIAN_SPEND_PER_CUSTOMER": 14.47 }, "geometry": { "type": "Point", "coordinates": [ -75.230056, 39.928169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923962, "LONGITUDE": -75.142554, "DATE_RANGE_START": 2022, "Total Visits": 1024.0, "Total Visitors": 828.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14568.0, "Total Transactions": 1373.0, "Total Customers": 1040.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.13, "MEDIAN_SPEND_PER_CUSTOMER": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.142554, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-jgk", "LOCATION_NAME": "DanDan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950263, "LONGITUDE": -75.1676, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 162.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 19787.0, "Total Transactions": 429.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.06, "MEDIAN_SPEND_PER_CUSTOMER": 70.71 }, "geometry": { "type": "Point", "coordinates": [ -75.1676, 39.950263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 225.0, "POI_CBG": 421010347013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4786.0, "Total Transactions": 364.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.47, "MEDIAN_SPEND_PER_CUSTOMER": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7x-vzz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049089, "LONGITUDE": -75.059427, "DATE_RANGE_START": 2022, "Total Visits": 1281.0, "Total Visitors": 857.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 348.0, "Total Transactions": 35.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.82, "MEDIAN_SPEND_PER_CUSTOMER": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.059427, 40.049089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-mrk", "LOCATION_NAME": "Elixr Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952527, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2022, "Total Visits": 1690.0, "Total Visitors": 1155.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 249.0, "Total Spend": 5453.0, "Total Transactions": 538.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.94, "MEDIAN_SPEND_PER_CUSTOMER": 21.25 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.952527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 169.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4801.0, "Total Transactions": 692.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.03, "MEDIAN_SPEND_PER_CUSTOMER": 8.65 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pnw-nh5", "LOCATION_NAME": "Johnny Brenda's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969072, "LONGITUDE": -75.134263, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 176.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 37.0, "Total Spend": 1454.0, "Total Transactions": 57.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.52, "MEDIAN_SPEND_PER_CUSTOMER": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -75.134263, 39.969072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-t5f", "LOCATION_NAME": "Perla", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930011, "LONGITUDE": -75.162803, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 75.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 13.0, "Total Spend": 9548.0, "Total Transactions": 64.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 123.68, "MEDIAN_SPEND_PER_CUSTOMER": 229.04 }, "geometry": { "type": "Point", "coordinates": [ -75.162803, 39.930011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-j7q", "LOCATION_NAME": "Cavanaugh's Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951128, "LONGITUDE": -75.171573, "DATE_RANGE_START": 2022, "Total Visits": 308.0, "Total Visitors": 192.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 2313.0, "Total Transactions": 63.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.76, "MEDIAN_SPEND_PER_CUSTOMER": 91.92 }, "geometry": { "type": "Point", "coordinates": [ -75.171573, 39.951128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pm9-tjv", "LOCATION_NAME": "Watches Etc", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949318, "LONGITUDE": -75.153835, "DATE_RANGE_START": 2022, "Total Visits": 1101.0, "Total Visitors": 949.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2924.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 419.6, "MEDIAN_SPEND_PER_CUSTOMER": 839.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153835, 39.949318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pp5-p35", "LOCATION_NAME": "Q & A Wholesale", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.990714, "LONGITUDE": -75.123434, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010178007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 135.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.75, "MEDIAN_SPEND_PER_CUSTOMER": 38.75 }, "geometry": { "type": "Point", "coordinates": [ -75.123434, 39.990714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "LOCATION_NAME": "Fiorino", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 82.0, "Total Spend": 10348.0, "Total Transactions": 91.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.08, "MEDIAN_SPEND_PER_CUSTOMER": 225.58 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-835", "LOCATION_NAME": "Down Home Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952864, "LONGITUDE": -75.159035, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 21315.0, "Total Transactions": 789.0, "Total Customers": 392.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.23, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159035, 39.952864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-pjv", "LOCATION_NAME": "Pattaya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952851, "LONGITUDE": -75.204788, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 94.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 422.0, "Total Spend": 2065.0, "Total Transactions": 40.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.04, "MEDIAN_SPEND_PER_CUSTOMER": 92.08 }, "geometry": { "type": "Point", "coordinates": [ -75.204788, 39.952851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7v-f2k", "LOCATION_NAME": "Raymour & Flanigan Outlet", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.051034, "LONGITUDE": -75.064888, "DATE_RANGE_START": 2022, "Total Visits": 366.0, "Total Visitors": 301.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2284.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 472.98, "MEDIAN_SPEND_PER_CUSTOMER": 655.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064888, 40.051034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "LOCATION_NAME": "Charlie Was a Sinner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 148.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 102.0, "Total Spend": 49494.0, "Total Transactions": 622.0, "Total Customers": 321.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.68, "MEDIAN_SPEND_PER_CUSTOMER": 135.77 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-224@628-pmb-66k", "LOCATION_NAME": "Cosmic Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949349, "LONGITUDE": -75.160742, "DATE_RANGE_START": 2022, "Total Visits": 4451.0, "Total Visitors": 3033.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 297.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.8, "MEDIAN_SPEND_PER_CUSTOMER": 40.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160742, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "LOCATION_NAME": "Cafe Old Nelson", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954761, "LONGITUDE": -75.164691, "DATE_RANGE_START": 2022, "Total Visits": 267.0, "Total Visitors": 193.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 180.0, "Total Spend": 4114.0, "Total Transactions": 368.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.31, "MEDIAN_SPEND_PER_CUSTOMER": 19.27 }, "geometry": { "type": "Point", "coordinates": [ -75.164691, 39.954761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979068, "LONGITUDE": -75.159667, "DATE_RANGE_START": 2022, "Total Visits": 261.0, "Total Visitors": 179.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1339.0, "Total Transactions": 218.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.59, "MEDIAN_SPEND_PER_CUSTOMER": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.159667, 39.979068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phn-qmk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068844, "LONGITUDE": -75.18088, "DATE_RANGE_START": 2022, "Total Visits": 157.0, "Total Visitors": 99.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6565.0, "Total Transactions": 289.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.45, "MEDIAN_SPEND_PER_CUSTOMER": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.18088, 40.068844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040962, "LONGITUDE": -75.223848, "DATE_RANGE_START": 2022, "Total Visits": 620.0, "Total Visitors": 449.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15743.0, "Total Transactions": 747.0, "Total Customers": 537.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.79, "MEDIAN_SPEND_PER_CUSTOMER": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.223848, 40.040962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg4-mx5", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.04358, "LONGITUDE": -75.159446, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 44.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6020.0, "Total Transactions": 49.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.5, "MEDIAN_SPEND_PER_CUSTOMER": 66.14 }, "geometry": { "type": "Point", "coordinates": [ -75.159446, 40.04358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pnx-sh5", "LOCATION_NAME": "The International", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.974951, "LONGITUDE": -75.134534, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 45.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 53.0, "Total Spend": 120.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.19, "MEDIAN_SPEND_PER_CUSTOMER": 34.49 }, "geometry": { "type": "Point", "coordinates": [ -75.134534, 39.974951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "LOCATION_NAME": "Urban Outfitters", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950066, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2022, "Total Visits": 1171.0, "Total Visitors": 1023.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 18185.0, "Total Transactions": 406.0, "Total Customers": 369.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.86, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8j-bkz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.037321, "LONGITUDE": -75.040337, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 153.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 44.0, "Total Spend": 1068.0, "Total Transactions": 110.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.040337, 40.037321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "LOCATION_NAME": "Red Poke Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2566.0, "Total Transactions": 117.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.12, "MEDIAN_SPEND_PER_CUSTOMER": 31.98 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "LOCATION_NAME": "King Food Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038528, "LONGITUDE": -75.036845, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 730.0, "Total Transactions": 45.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.69, "MEDIAN_SPEND_PER_CUSTOMER": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -75.036845, 40.038528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995073, "LONGITUDE": -75.126158, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 35.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 601.0, "Total Transactions": 56.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.48 }, "geometry": { "type": "Point", "coordinates": [ -75.126158, 39.995073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3828.0, "Total Transactions": 143.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.33, "MEDIAN_SPEND_PER_CUSTOMER": 49.42 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "LOCATION_NAME": "Guzman Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 44.0, "POI_CBG": 421010177023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1273.0, "Total Transactions": 92.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.24, "MEDIAN_SPEND_PER_CUSTOMER": 22.98 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "LOCATION_NAME": "Little Fish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010018001.0, "MEDIAN_DWELL": null, "Total Spend": 3790.0, "Total Transactions": 42.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.18, "MEDIAN_SPEND_PER_CUSTOMER": 56.36 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "LOCATION_NAME": "Tomo Sushi & Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 3226.0, "Total Transactions": 61.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.8, "MEDIAN_SPEND_PER_CUSTOMER": 87.16 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj3-tqf", "LOCATION_NAME": "Lucky Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027775, "LONGITUDE": -75.14691, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 756.0, "Total Transactions": 44.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 52.65 }, "geometry": { "type": "Point", "coordinates": [ -75.14691, 40.027775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfy-2ff", "LOCATION_NAME": "Tasty Twisters Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035673, "LONGITUDE": -75.236122, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 241.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236122, 40.035673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7z-6tv", "LOCATION_NAME": "Dollar Discount", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.055124, "LONGITUDE": -75.090736, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 40.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": 30.0, "Total Spend": 576.0, "Total Transactions": 26.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.14, "MEDIAN_SPEND_PER_CUSTOMER": 27.49 }, "geometry": { "type": "Point", "coordinates": [ -75.090736, 40.055124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phq-gff", "LOCATION_NAME": "Takka Grill & Shrimpie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067474, "LONGITUDE": -75.147141, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 51.0, "POI_CBG": 421010266003.0, "MEDIAN_DWELL": 709.0, "Total Spend": 1908.0, "Total Transactions": 85.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147141, 40.067474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-k9f", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.063455, "LONGITUDE": -75.236411, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 56.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 76.0, "Total Spend": 1915.0, "Total Transactions": 127.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.236411, 40.063455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "LOCATION_NAME": "Buffalo Wild Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.082615, "LONGITUDE": -75.025718, "DATE_RANGE_START": 2022, "Total Visits": 897.0, "Total Visitors": 798.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 8308.0, "Total Transactions": 192.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.43, "MEDIAN_SPEND_PER_CUSTOMER": 42.01 }, "geometry": { "type": "Point", "coordinates": [ -75.025718, 40.082615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "LOCATION_NAME": "Standard Tap", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964257, "LONGITUDE": -75.140401, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 57.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 5067.0, "Total Transactions": 77.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.73, "MEDIAN_SPEND_PER_CUSTOMER": 74.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140401, 39.964257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052422, "LONGITUDE": -75.00877, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 233.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 17440.0, "Total Transactions": 287.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.96, "MEDIAN_SPEND_PER_CUSTOMER": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.00877, 40.052422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "LOCATION_NAME": "S & S Foods", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924738, "LONGITUDE": -75.144356, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 284.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 52939.0, "Total Transactions": 105.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 218.0, "MEDIAN_SPEND_PER_CUSTOMER": 759.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144356, 39.924738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "LOCATION_NAME": "1 Stop Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 82.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 14385.0, "Total Transactions": 812.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.88, "MEDIAN_SPEND_PER_CUSTOMER": 31.88 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-975", "LOCATION_NAME": "Avril 50", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.953493, "LONGITUDE": -75.192528, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 1917.0, "Total Transactions": 87.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.97, "MEDIAN_SPEND_PER_CUSTOMER": 37.52 }, "geometry": { "type": "Point", "coordinates": [ -75.192528, 39.953493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-gzf", "LOCATION_NAME": "U Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947628, "LONGITUDE": -75.161514, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 64.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 51.0, "Total Spend": 44226.0, "Total Transactions": 1880.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.8, "MEDIAN_SPEND_PER_CUSTOMER": 56.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161514, 39.947628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-h89", "LOCATION_NAME": "Gyu-Kaku", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960773, "LONGITUDE": -75.170117, "DATE_RANGE_START": 2022, "Total Visits": 580.0, "Total Visitors": 425.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 103.0, "Total Spend": 32526.0, "Total Transactions": 293.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 107.35, "MEDIAN_SPEND_PER_CUSTOMER": 177.82 }, "geometry": { "type": "Point", "coordinates": [ -75.170117, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "LOCATION_NAME": "Hilltown Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 80.0, "POI_CBG": 421010213004.0, "MEDIAN_DWELL": 201.0, "Total Spend": 54080.0, "Total Transactions": 1078.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.83, "MEDIAN_SPEND_PER_CUSTOMER": 89.13 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "LOCATION_NAME": "El Camino Real", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 99.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 91.0, "Total Spend": 6158.0, "Total Transactions": 91.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.13, "MEDIAN_SPEND_PER_CUSTOMER": 113.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-vcq", "LOCATION_NAME": "The Dolphin Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.930579, "LONGITUDE": -75.167937, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 96.0, "POI_CBG": 421010029002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 269.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.6, "MEDIAN_SPEND_PER_CUSTOMER": 39.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167937, 39.930579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "LOCATION_NAME": "Pho Cyclo Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2022, "Total Visits": 902.0, "Total Visitors": 564.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 33.0, "Total Spend": 2497.0, "Total Transactions": 84.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.3, "MEDIAN_SPEND_PER_CUSTOMER": 63.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pm9-whq", "LOCATION_NAME": "Kurry Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950437, "LONGITUDE": -75.145824, "DATE_RANGE_START": 2022, "Total Visits": 1613.0, "Total Visitors": 1197.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 306.0, "Total Transactions": 14.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.2, "MEDIAN_SPEND_PER_CUSTOMER": 58.18 }, "geometry": { "type": "Point", "coordinates": [ -75.145824, 39.950437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg5-dsq", "LOCATION_NAME": "Valley Green Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054006, "LONGITUDE": -75.218198, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 112.0, "POI_CBG": 421019801001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 24566.0, "Total Transactions": 333.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.34, "MEDIAN_SPEND_PER_CUSTOMER": 78.96 }, "geometry": { "type": "Point", "coordinates": [ -75.218198, 40.054006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgj-cbk", "LOCATION_NAME": "Pazzo Pazzo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979011, "LONGITUDE": -75.161757, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 112.0, "POI_CBG": 421010147001.0, "MEDIAN_DWELL": 92.0, "Total Spend": 12247.0, "Total Transactions": 824.0, "Total Customers": 256.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.61, "MEDIAN_SPEND_PER_CUSTOMER": 29.08 }, "geometry": { "type": "Point", "coordinates": [ -75.161757, 39.979011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-225@628-pjk-3nq", "LOCATION_NAME": "Lucky Star Asian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069778, "LONGITUDE": -75.239531, "DATE_RANGE_START": 2022, "Total Visits": 561.0, "Total Visitors": 382.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 302.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.59, "MEDIAN_SPEND_PER_CUSTOMER": 29.88 }, "geometry": { "type": "Point", "coordinates": [ -75.239531, 40.069778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2022, "Total Visits": 28654.0, "Total Visitors": 19157.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2928.0, "Total Transactions": 221.0, "Total Customers": 209.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.92, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y9z", "LOCATION_NAME": "The Vision Denim Division", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941612, "LONGITUDE": -75.149864, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 366.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 836.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149864, 39.941612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2022, "Total Visits": 296.0, "Total Visitors": 228.0, "POI_CBG": 421010012013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 53014.0, "Total Transactions": 5249.0, "Total Customers": 2155.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.22, "MEDIAN_SPEND_PER_CUSTOMER": 12.65 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "LOCATION_NAME": "Beer Love", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 172.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 7168.0, "Total Transactions": 244.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.49, "MEDIAN_SPEND_PER_CUSTOMER": 57.78 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-zxq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.002963, "LONGITUDE": -75.152983, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 146.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8430.0, "Total Transactions": 519.0, "Total Customers": 361.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.84, "MEDIAN_SPEND_PER_CUSTOMER": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.152983, 40.002963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 75.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 103.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.49, "MEDIAN_SPEND_PER_CUSTOMER": 29.49 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 336.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9415.0, "Total Transactions": 692.0, "Total Customers": 293.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.07, "MEDIAN_SPEND_PER_CUSTOMER": 17.21 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "LOCATION_NAME": "Mostly Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.94129, "LONGITUDE": -75.151876, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 77.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2929.0, "Total Transactions": 166.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.01, "MEDIAN_SPEND_PER_CUSTOMER": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.151876, 39.94129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "LOCATION_NAME": "Off Broadway Shoe Warehouse", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2022, "Total Visits": 535.0, "Total Visitors": 456.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2129.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 114.23, "MEDIAN_SPEND_PER_CUSTOMER": 149.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p8j-6hq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026851, "LONGITUDE": -75.028938, "DATE_RANGE_START": 2022, "Total Visits": 453.0, "Total Visitors": 389.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 620.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.93, "MEDIAN_SPEND_PER_CUSTOMER": 58.93 }, "geometry": { "type": "Point", "coordinates": [ -75.028938, 40.026851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.04687, "LONGITUDE": -75.054304, "DATE_RANGE_START": 2022, "Total Visits": 2371.0, "Total Visitors": 1787.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 31.0, "Total Spend": 7714.0, "Total Transactions": 78.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.19, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054304, 40.04687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p8t-6kz", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.083264, "LONGITUDE": -74.962395, "DATE_RANGE_START": 2022, "Total Visits": 12634.0, "Total Visitors": 7591.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 29.0, "Total Spend": 305602.0, "Total Transactions": 5047.0, "Total Customers": 2920.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.37, "MEDIAN_SPEND_PER_CUSTOMER": 52.97 }, "geometry": { "type": "Point", "coordinates": [ -74.962395, 40.083264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-qpv", "LOCATION_NAME": "Sunrise Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009015, "LONGITUDE": -75.137692, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 5.0, "POI_CBG": 421010198006.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3949.0, "Total Transactions": 110.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.0, "MEDIAN_SPEND_PER_CUSTOMER": 74.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137692, 40.009015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-wc5", "LOCATION_NAME": "Renzis Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029921, "LONGITUDE": -75.062595, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 54.0, "POI_CBG": 421010316004.0, "MEDIAN_DWELL": 196.0, "Total Spend": 93.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.36, "MEDIAN_SPEND_PER_CUSTOMER": 26.73 }, "geometry": { "type": "Point", "coordinates": [ -75.062595, 40.029921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-7yv", "LOCATION_NAME": "Koi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961215, "LONGITUDE": -75.141549, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 89.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 823.0, "Total Transactions": 94.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.67, "MEDIAN_SPEND_PER_CUSTOMER": 36.99 }, "geometry": { "type": "Point", "coordinates": [ -75.141549, 39.961215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 84.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 10160.0, "Total Transactions": 239.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 22.98 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-qs5", "LOCATION_NAME": "Flying Fish Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.91592, "LONGITUDE": -75.163019, "DATE_RANGE_START": 2022, "Total Visits": 558.0, "Total Visitors": 166.0, "POI_CBG": 421010041023.0, "MEDIAN_DWELL": 1102.0, "Total Spend": 6925.0, "Total Transactions": 75.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.82, "MEDIAN_SPEND_PER_CUSTOMER": 79.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163019, 39.91592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2022, "Total Visits": 1225.0, "Total Visitors": 859.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6291.0, "Total Transactions": 303.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.19, "MEDIAN_SPEND_PER_CUSTOMER": 18.13 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-pqf", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05323, "LONGITUDE": -75.185876, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 10.0, "POI_CBG": 421010253003.0, "MEDIAN_DWELL": null, "Total Spend": 416.0, "Total Transactions": 24.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.45, "MEDIAN_SPEND_PER_CUSTOMER": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185876, 40.05323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-xkf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.94872, "LONGITUDE": -75.21312, "DATE_RANGE_START": 2022, "Total Visits": 1089.0, "Total Visitors": 746.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 358.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.54, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21312, 39.94872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phj-rp9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.07278, "LONGITUDE": -75.15833, "DATE_RANGE_START": 2022, "Total Visits": 1089.0, "Total Visitors": 714.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 7.0, "Total Spend": 556.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15833, 40.07278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.016586, "LONGITUDE": -75.149894, "DATE_RANGE_START": 2022, "Total Visits": 1289.0, "Total Visitors": 913.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 645.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.62, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149894, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj2-sh5", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.012182, "LONGITUDE": -75.115173, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 23.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4394.0, "Total Transactions": 94.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.47, "MEDIAN_SPEND_PER_CUSTOMER": 39.15 }, "geometry": { "type": "Point", "coordinates": [ -75.115173, 40.012182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "LOCATION_NAME": "Somerset Splits", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 30.0, "POI_CBG": 421010180013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4894.0, "Total Transactions": 315.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.2, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.044593, "LONGITUDE": -75.101222, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 59.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 124.0, "Total Spend": 241.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.87, "MEDIAN_SPEND_PER_CUSTOMER": 13.87 }, "geometry": { "type": "Point", "coordinates": [ -75.101222, 40.044593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phm-8jv", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054104, "LONGITUDE": -75.141923, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 38.0, "POI_CBG": 421010268003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 161.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.26, "MEDIAN_SPEND_PER_CUSTOMER": 28.05 }, "geometry": { "type": "Point", "coordinates": [ -75.141923, 40.054104 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 4094.0, "Total Transactions": 275.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-54v", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991295, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 71.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 311.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.8, "MEDIAN_SPEND_PER_CUSTOMER": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-49z", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921974, "LONGITUDE": -75.18737, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 112.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 11.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.24, "MEDIAN_SPEND_PER_CUSTOMER": 3.24 }, "geometry": { "type": "Point", "coordinates": [ -75.18737, 39.921974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2022, "Total Visits": 402.0, "Total Visitors": 301.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7662.0, "Total Transactions": 943.0, "Total Customers": 467.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.57, "MEDIAN_SPEND_PER_CUSTOMER": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5s5", "LOCATION_NAME": "Federal Donuts East Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951076, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2022, "Total Visits": 2282.0, "Total Visitors": 1479.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 243.0, "Total Spend": 18531.0, "Total Transactions": 1291.0, "Total Customers": 627.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.26, "MEDIAN_SPEND_PER_CUSTOMER": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.951076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-rff", "LOCATION_NAME": "Montana Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042892, "LONGITUDE": -75.073677, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010313004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 193.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073677, 40.042892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "LOCATION_NAME": "Pub On Passyunk East", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 44.0, "Total Spend": 400.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.5, "MEDIAN_SPEND_PER_CUSTOMER": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-t5f", "LOCATION_NAME": "The Palace of Indian", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930086, "LONGITUDE": -75.162858, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": null, "Total Spend": 184.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.88, "MEDIAN_SPEND_PER_CUSTOMER": 52.85 }, "geometry": { "type": "Point", "coordinates": [ -75.162858, 39.930086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 99.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2065.0, "Total Transactions": 242.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.29, "MEDIAN_SPEND_PER_CUSTOMER": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950691, "LONGITUDE": -75.151871, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 132.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4217.0, "Total Transactions": 669.0, "Total Customers": 416.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.07, "MEDIAN_SPEND_PER_CUSTOMER": 6.78 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.950691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-223@628-pm3-t5f", "LOCATION_NAME": "Mish Mish", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.929648, "LONGITUDE": -75.162988, "DATE_RANGE_START": 2022, "Total Visits": 148.0, "Total Visitors": 115.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2451.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 146.1, "MEDIAN_SPEND_PER_CUSTOMER": 191.68 }, "geometry": { "type": "Point", "coordinates": [ -75.162988, 39.929648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-j7q", "LOCATION_NAME": "Vango Lounge And Skybar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.951206, "LONGITUDE": -75.170692, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 108.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 38368.0, "Total Transactions": 333.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 92.16, "MEDIAN_SPEND_PER_CUSTOMER": 188.62 }, "geometry": { "type": "Point", "coordinates": [ -75.170692, 39.951206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmf-kzz", "LOCATION_NAME": "City Tap House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95591, "LONGITUDE": -75.169553, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 66.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 758.0, "Total Transactions": 17.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.69, "MEDIAN_SPEND_PER_CUSTOMER": 100.69 }, "geometry": { "type": "Point", "coordinates": [ -75.169553, 39.95591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pmf-skf", "LOCATION_NAME": "Butcher and Singer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948984, "LONGITUDE": -75.166282, "DATE_RANGE_START": 2022, "Total Visits": 3005.0, "Total Visitors": 2120.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 31.0, "Total Spend": 47290.0, "Total Transactions": 218.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 210.68, "MEDIAN_SPEND_PER_CUSTOMER": 375.36 }, "geometry": { "type": "Point", "coordinates": [ -75.166282, 39.948984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm9-y5f", "LOCATION_NAME": "Sushi Planet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940725, "LONGITUDE": -75.14792, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 47.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 2558.0, "Total Transactions": 56.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.86, "MEDIAN_SPEND_PER_CUSTOMER": 59.54 }, "geometry": { "type": "Point", "coordinates": [ -75.14792, 39.940725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 530.0, "Total Transactions": 59.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm3-syv", "LOCATION_NAME": "Bing Bing Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928965, "LONGITUDE": -75.164747, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 75.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 9426.0, "Total Transactions": 118.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.68, "MEDIAN_SPEND_PER_CUSTOMER": 125.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164747, 39.928965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "LOCATION_NAME": "Dragon City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 146.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 508.0, "Total Transactions": 14.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.2, "MEDIAN_SPEND_PER_CUSTOMER": 145.75 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-xnq", "LOCATION_NAME": "Dae Bak", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955289, "LONGITUDE": -75.156637, "DATE_RANGE_START": 2022, "Total Visits": 5082.0, "Total Visitors": 3631.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 9421.0, "Total Transactions": 148.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 130.72 }, "geometry": { "type": "Point", "coordinates": [ -75.156637, 39.955289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-yqf", "LOCATION_NAME": "M Kee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955229, "LONGITUDE": -75.156117, "DATE_RANGE_START": 2022, "Total Visits": 242.0, "Total Visitors": 199.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1486.0, "Total Transactions": 44.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 57.24 }, "geometry": { "type": "Point", "coordinates": [ -75.156117, 39.955229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm3-t5f", "LOCATION_NAME": "Manatawny Still Works", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.929704, "LONGITUDE": -75.163451, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 360.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.56, "MEDIAN_SPEND_PER_CUSTOMER": 75.12 }, "geometry": { "type": "Point", "coordinates": [ -75.163451, 39.929704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm3-x5z", "LOCATION_NAME": "South Fellini", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.93071, "LONGITUDE": -75.162097, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 129.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 23.0, "Total Spend": 296.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.5, "MEDIAN_SPEND_PER_CUSTOMER": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162097, 39.93071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pnw-psq", "LOCATION_NAME": "Lodge", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.96959, "LONGITUDE": -75.138853, "DATE_RANGE_START": 2022, "Total Visits": 265.0, "Total Visitors": 157.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 341.0, "Total Spend": 609.0, "Total Transactions": 33.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138853, 39.96959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvr-2hq", "LOCATION_NAME": "Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.917185, "LONGITUDE": -75.216767, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 159.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 8380.0, "Total Transactions": 44.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 150.0, "MEDIAN_SPEND_PER_CUSTOMER": 324.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216767, 39.917185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.982036, "LONGITUDE": -75.156118, "DATE_RANGE_START": 2022, "Total Visits": 314.0, "Total Visitors": 192.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 288.0, "Total Spend": 1656.0, "Total Transactions": 294.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.38, "MEDIAN_SPEND_PER_CUSTOMER": 6.05 }, "geometry": { "type": "Point", "coordinates": [ -75.156118, 39.982036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "LOCATION_NAME": "Cappuccio's Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 73.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3181.0, "Total Transactions": 61.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.4, "MEDIAN_SPEND_PER_CUSTOMER": 64.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "LOCATION_NAME": "Girard Meat Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.972943, "LONGITUDE": -75.217427, "DATE_RANGE_START": 2022, "Total Visits": 307.0, "Total Visitors": 272.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8118.0, "Total Transactions": 167.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.3, "MEDIAN_SPEND_PER_CUSTOMER": 72.36 }, "geometry": { "type": "Point", "coordinates": [ -75.217427, 39.972943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pj4-vcq", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998705, "LONGITUDE": -75.13519, "DATE_RANGE_START": 2022, "Total Visits": 601.0, "Total Visitors": 383.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 115.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.88, "MEDIAN_SPEND_PER_CUSTOMER": 32.88 }, "geometry": { "type": "Point", "coordinates": [ -75.13519, 39.998705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pfz-bzf", "LOCATION_NAME": "Remix", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.025758, "LONGITUDE": -75.223819, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 51.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 307.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.0, "MEDIAN_SPEND_PER_CUSTOMER": 88.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223819, 40.025758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pjf-zvf", "LOCATION_NAME": "Chestnut Hill Sports", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.077007, "LONGITUDE": -75.208666, "DATE_RANGE_START": 2022, "Total Visits": 558.0, "Total Visitors": 350.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 1868.0, "Total Transactions": 51.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208666, 40.077007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-wkz", "LOCATION_NAME": "VIP Fashion", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.087669, "LONGITUDE": -74.96104, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 3342.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 120.0, "MEDIAN_SPEND_PER_CUSTOMER": 238.78 }, "geometry": { "type": "Point", "coordinates": [ -74.96104, 40.087669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.031024, "LONGITUDE": -75.099091, "DATE_RANGE_START": 2022, "Total Visits": 479.0, "Total Visitors": 430.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 9373.0, "Total Transactions": 209.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.6, "MEDIAN_SPEND_PER_CUSTOMER": 25.46 }, "geometry": { "type": "Point", "coordinates": [ -75.099091, 40.031024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p85-2c5", "LOCATION_NAME": "Ed's Cleaning Service", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.06578, "LONGITUDE": -75.050923, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 120.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3256.0, "Total Transactions": 16.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 250.0, "MEDIAN_SPEND_PER_CUSTOMER": 934.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050923, 40.06578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgf-33q", "LOCATION_NAME": "Kiwi Frozen Yogurt", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954562, "LONGITUDE": -75.195031, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 89.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 185.0, "Total Spend": 3256.0, "Total Transactions": 232.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.1, "MEDIAN_SPEND_PER_CUSTOMER": 26.19 }, "geometry": { "type": "Point", "coordinates": [ -75.195031, 39.954562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948525, "LONGITUDE": -75.166014, "DATE_RANGE_START": 2022, "Total Visits": 502.0, "Total Visitors": 362.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 179.0, "Total Spend": 10294.0, "Total Transactions": 1517.0, "Total Customers": 564.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -75.166014, 39.948525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.045974, "LONGITUDE": -75.070637, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 96.0, "POI_CBG": 421010314015.0, "MEDIAN_DWELL": 30.0, "Total Spend": 13702.0, "Total Transactions": 1289.0, "Total Customers": 711.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.07, "MEDIAN_SPEND_PER_CUSTOMER": 13.26 }, "geometry": { "type": "Point", "coordinates": [ -75.070637, 40.045974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-y35", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.119184, "LONGITUDE": -75.01709, "DATE_RANGE_START": 2022, "Total Visits": 490.0, "Total Visitors": 364.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8473.0, "Total Transactions": 1150.0, "Total Customers": 420.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.01709, 40.119184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-224@628-pmb-yd9", "LOCATION_NAME": "Tiger Sugar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954258, "LONGITUDE": -75.156401, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 200.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2985.0, "Total Transactions": 249.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.15, "MEDIAN_SPEND_PER_CUSTOMER": 15.85 }, "geometry": { "type": "Point", "coordinates": [ -75.156401, 39.954258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnz-xyv", "LOCATION_NAME": "Hong Kong Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988418, "LONGITUDE": -75.102851, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1139.0, "Total Transactions": 82.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.1, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102851, 39.988418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg9-wc5", "LOCATION_NAME": "Fairmount Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.964685, "LONGITUDE": -75.169302, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 23.0, "POI_CBG": 421010134023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2454.0, "Total Transactions": 146.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.6, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169302, 39.964685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 31.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3419.0, "Total Transactions": 132.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.05, "MEDIAN_SPEND_PER_CUSTOMER": 26.93 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "LOCATION_NAME": "Vientiane Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 33.0, "POI_CBG": 421010161003.0, "MEDIAN_DWELL": 210.0, "Total Spend": 1475.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.72, "MEDIAN_SPEND_PER_CUSTOMER": 125.44 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dwg-f4v", "LOCATION_NAME": "State Liquor Stores", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.91373, "LONGITUDE": -75.242762, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 37.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 100.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.59, "MEDIAN_SPEND_PER_CUSTOMER": 28.59 }, "geometry": { "type": "Point", "coordinates": [ -75.242762, 39.91373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-f9f", "LOCATION_NAME": "Dimension Latin Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052647, "LONGITUDE": -75.065236, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 120.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1473.0, "Total Transactions": 19.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.3, "MEDIAN_SPEND_PER_CUSTOMER": 162.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065236, 40.052647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 287.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 753.0, "Total Transactions": 51.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.47, "MEDIAN_SPEND_PER_CUSTOMER": 15.47 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-224@628-pmb-5fz", "LOCATION_NAME": "Bread & Butter Gourmet Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94999, "LONGITUDE": -75.161353, "DATE_RANGE_START": 2022, "Total Visits": 2969.0, "Total Visitors": 2366.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 34.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.161353, 39.94999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pm9-tqf", "LOCATION_NAME": "Wetzel's Pretzels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952391, "LONGITUDE": -75.157424, "DATE_RANGE_START": 2022, "Total Visits": 869.0, "Total Visitors": 678.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3112.0, "Total Transactions": 333.0, "Total Customers": 300.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.86, "MEDIAN_SPEND_PER_CUSTOMER": 8.57 }, "geometry": { "type": "Point", "coordinates": [ -75.157424, 39.952391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 265.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7281.0, "Total Transactions": 915.0, "Total Customers": 366.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.21, "MEDIAN_SPEND_PER_CUSTOMER": 11.95 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-975", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953036, "LONGITUDE": -75.192281, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 195.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11690.0, "Total Transactions": 1110.0, "Total Customers": 639.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.08, "MEDIAN_SPEND_PER_CUSTOMER": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192281, 39.953036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmb-grk", "LOCATION_NAME": "Yellowtail", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945044, "LONGITUDE": -75.161951, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 251.0, "Total Spend": 777.0, "Total Transactions": 31.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.35, "MEDIAN_SPEND_PER_CUSTOMER": 36.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161951, 39.945044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040654, "LONGITUDE": -75.144015, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 44.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3093.0, "Total Transactions": 125.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.75, "MEDIAN_SPEND_PER_CUSTOMER": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.040654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p9w-dvz", "LOCATION_NAME": "Angelo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.121593, "LONGITUDE": -75.03516, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 47.0, "POI_CBG": 421010358002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 3568.0, "Total Transactions": 225.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.69, "MEDIAN_SPEND_PER_CUSTOMER": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.03516, 40.121593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p83-wzf", "LOCATION_NAME": "Beautyland", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.086398, "LONGITUDE": -75.046895, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 51.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 584.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.77, "MEDIAN_SPEND_PER_CUSTOMER": 23.54 }, "geometry": { "type": "Point", "coordinates": [ -75.046895, 40.086398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgf-h5z", "LOCATION_NAME": "American Picture Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.959767, "LONGITUDE": -75.198143, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 40.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 112.0, "Total Spend": 3589.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 487.05, "MEDIAN_SPEND_PER_CUSTOMER": 1030.11 }, "geometry": { "type": "Point", "coordinates": [ -75.198143, 39.959767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "LOCATION_NAME": "Gallelli Formal Wear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 37.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 141.0, "Total Spend": 2779.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.0, "MEDIAN_SPEND_PER_CUSTOMER": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pgh-h3q", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00873, "LONGITUDE": -75.176539, "DATE_RANGE_START": 2022, "Total Visits": 639.0, "Total Visitors": 411.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 34.0, "Total Spend": 10332.0, "Total Transactions": 672.0, "Total Customers": 538.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.21, "MEDIAN_SPEND_PER_CUSTOMER": 15.07 }, "geometry": { "type": "Point", "coordinates": [ -75.176539, 40.00873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2022, "Total Visits": 681.0, "Total Visitors": 493.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 19089.0, "Total Transactions": 1695.0, "Total Customers": 1160.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.49, "MEDIAN_SPEND_PER_CUSTOMER": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-hnq", "LOCATION_NAME": "New Image Art & Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.952342, "LONGITUDE": -75.173299, "DATE_RANGE_START": 2022, "Total Visits": 4984.0, "Total Visitors": 3396.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1606.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 300.0, "MEDIAN_SPEND_PER_CUSTOMER": 300.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173299, 39.952342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-hdv", "LOCATION_NAME": "The Juice Room", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0592, "LONGITUDE": -75.189995, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 33.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 616.0, "Total Transactions": 31.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.63, "MEDIAN_SPEND_PER_CUSTOMER": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.189995, 40.0592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgj-zvf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.99726, "LONGITUDE": -75.154252, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11321.0, "Total Transactions": 110.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.96, "MEDIAN_SPEND_PER_CUSTOMER": 74.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154252, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p8d-fmk", "LOCATION_NAME": "Renzi's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998034, "LONGITUDE": -75.074418, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 40.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 366.0, "Total Spend": 638.0, "Total Transactions": 26.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 46.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074418, 39.998034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "LOCATION_NAME": "Pitchers Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.025059, "LONGITUDE": -75.223033, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 49.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 19076.0, "Total Transactions": 662.0, "Total Customers": 275.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.6, "MEDIAN_SPEND_PER_CUSTOMER": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223033, 40.025059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2022, "Total Visits": 291.0, "Total Visitors": 169.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6113.0, "Total Transactions": 732.0, "Total Customers": 317.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.72, "MEDIAN_SPEND_PER_CUSTOMER": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "LOCATION_NAME": "Kitchen Kapers", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2022, "Total Visits": 443.0, "Total Visitors": 284.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 106.0, "Total Spend": 8140.0, "Total Transactions": 141.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.58, "MEDIAN_SPEND_PER_CUSTOMER": 70.1 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "LOCATION_NAME": "Evergreen Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949185, "LONGITUDE": -75.147628, "DATE_RANGE_START": 2022, "Total Visits": 1657.0, "Total Visitors": 1235.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10846.0, "Total Transactions": 1045.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.1, "MEDIAN_SPEND_PER_CUSTOMER": 34.16 }, "geometry": { "type": "Point", "coordinates": [ -75.147628, 39.949185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.095101, "LONGITUDE": -74.975911, "DATE_RANGE_START": 2022, "Total Visits": 340.0, "Total Visitors": 280.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 16326.0, "Total Transactions": 831.0, "Total Customers": 500.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.68, "MEDIAN_SPEND_PER_CUSTOMER": 22.84 }, "geometry": { "type": "Point", "coordinates": [ -74.975911, 40.095101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj2-mp9", "LOCATION_NAME": "The Apple Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.005425, "LONGITUDE": -75.098798, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 59.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 7.0, "Total Spend": 287.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098798, 40.005425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2022, "Total Visits": 596.0, "Total Visitors": 416.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13274.0, "Total Transactions": 645.0, "Total Customers": 443.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.39, "MEDIAN_SPEND_PER_CUSTOMER": 16.96 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "LOCATION_NAME": "Locust Rendezvous", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948535, "LONGITUDE": -75.165879, "DATE_RANGE_START": 2022, "Total Visits": 1139.0, "Total Visitors": 829.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 70.0, "Total Spend": 20044.0, "Total Transactions": 510.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 79.05 }, "geometry": { "type": "Point", "coordinates": [ -75.165879, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-wkz", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.922348, "LONGITUDE": -75.146462, "DATE_RANGE_START": 2022, "Total Visits": 836.0, "Total Visitors": 732.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4812.0, "Total Transactions": 110.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.61, "MEDIAN_SPEND_PER_CUSTOMER": 45.96 }, "geometry": { "type": "Point", "coordinates": [ -75.146462, 39.922348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-rx5", "LOCATION_NAME": "Miles Table", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943903, "LONGITUDE": -75.169551, "DATE_RANGE_START": 2022, "Total Visits": 693.0, "Total Visitors": 375.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 550.0, "Total Spend": 2873.0, "Total Transactions": 122.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.13, "MEDIAN_SPEND_PER_CUSTOMER": 29.86 }, "geometry": { "type": "Point", "coordinates": [ -75.169551, 39.943903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085593, "LONGITUDE": -74.962215, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 112.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3676.0, "Total Transactions": 84.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 40.55 }, "geometry": { "type": "Point", "coordinates": [ -74.962215, 40.085593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p9q-w8v", "LOCATION_NAME": "Big Daddy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081036, "LONGITUDE": -75.038535, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 61.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6967.0, "Total Transactions": 209.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.95, "MEDIAN_SPEND_PER_CUSTOMER": 71.02 }, "geometry": { "type": "Point", "coordinates": [ -75.038535, 40.081036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "LOCATION_NAME": "Bottle Bar East", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 68.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 50293.0, "Total Transactions": 1866.0, "Total Customers": 603.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pgj-fzz", "LOCATION_NAME": "Philly Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983705, "LONGITUDE": -75.157179, "DATE_RANGE_START": 2022, "Total Visits": 700.0, "Total Visitors": 497.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 488.0, "Total Spend": 9168.0, "Total Transactions": 462.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.18, "MEDIAN_SPEND_PER_CUSTOMER": 39.16 }, "geometry": { "type": "Point", "coordinates": [ -75.157179, 39.983705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-k4v", "LOCATION_NAME": "Kisso Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954278, "LONGITUDE": -75.146239, "DATE_RANGE_START": 2022, "Total Visits": 1850.0, "Total Visitors": 1547.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 139.0, "Total Spend": 2362.0, "Total Transactions": 23.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.0, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146239, 39.954278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-47q", "LOCATION_NAME": "Halal Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962366, "LONGITUDE": -75.162749, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 164.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 311.0, "Total Transactions": 28.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162749, 39.962366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-hnq", "LOCATION_NAME": "The Ranstead Room", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952421, "LONGITUDE": -75.173819, "DATE_RANGE_START": 2022, "Total Visits": 3352.0, "Total Visitors": 2281.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 31.0, "Total Spend": 12886.0, "Total Transactions": 197.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.3, "MEDIAN_SPEND_PER_CUSTOMER": 82.88 }, "geometry": { "type": "Point", "coordinates": [ -75.173819, 39.952421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-zs5", "LOCATION_NAME": "Golden Triangle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94154, "LONGITUDE": -75.15097, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 92.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2343.0, "Total Transactions": 73.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.08, "MEDIAN_SPEND_PER_CUSTOMER": 52.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15097, 39.94154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9w-575", "LOCATION_NAME": "Taste King Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.108989, "LONGITUDE": -75.025021, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 124.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 92.0, "Total Spend": 2357.0, "Total Transactions": 56.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.01, "MEDIAN_SPEND_PER_CUSTOMER": 88.68 }, "geometry": { "type": "Point", "coordinates": [ -75.025021, 40.108989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm3-wff", "LOCATION_NAME": "Passyunk Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.931424, "LONGITUDE": -75.161293, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 277.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 154.0, "Total Spend": 1802.0, "Total Transactions": 80.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.99, "MEDIAN_SPEND_PER_CUSTOMER": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161293, 39.931424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22f@628-pmf-n3q", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953402, "LONGITUDE": -75.165876, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 63.0, "Total Spend": 61.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.165876, 39.953402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pfx-kzz", "LOCATION_NAME": "Haggerty Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029098, "LONGITUDE": -75.225579, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010214004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3952.0, "Total Transactions": 267.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 36.63 }, "geometry": { "type": "Point", "coordinates": [ -75.225579, 40.029098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026858, "LONGITUDE": -75.208809, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 73.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9548.0, "Total Transactions": 1418.0, "Total Customers": 571.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.66 }, "geometry": { "type": "Point", "coordinates": [ -75.208809, 40.026858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2022, "Total Visits": 1357.0, "Total Visitors": 772.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 183.0, "Total Spend": 8481.0, "Total Transactions": 1434.0, "Total Customers": 721.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 7.86 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-47q", "LOCATION_NAME": "Kid City", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.921142, "LONGITUDE": -75.185929, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 59.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5324.0, "Total Transactions": 127.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.97, "MEDIAN_SPEND_PER_CUSTOMER": 58.65 }, "geometry": { "type": "Point", "coordinates": [ -75.185929, 39.921142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044581, "LONGITUDE": -75.086995, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 267.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 199.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.77, "MEDIAN_SPEND_PER_CUSTOMER": 27.77 }, "geometry": { "type": "Point", "coordinates": [ -75.086995, 40.044581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "LOCATION_NAME": "South", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 275.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 80.0, "Total Spend": 7618.0, "Total Transactions": 256.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.63, "MEDIAN_SPEND_PER_CUSTOMER": 57.07 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 150.0, "POI_CBG": 421010041013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1752.0, "Total Transactions": 145.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.05, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-qs5", "LOCATION_NAME": "Jet Wine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944107, "LONGITUDE": -75.168005, "DATE_RANGE_START": 2022, "Total Visits": 375.0, "Total Visitors": 282.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 81.0, "Total Spend": 12728.0, "Total Transactions": 179.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.5, "MEDIAN_SPEND_PER_CUSTOMER": 76.01 }, "geometry": { "type": "Point", "coordinates": [ -75.168005, 39.944107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "LOCATION_NAME": "Saigon Noodle Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074096, "LONGITUDE": -75.202561, "DATE_RANGE_START": 2022, "Total Visits": 441.0, "Total Visitors": 301.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 4100.0, "Total Transactions": 225.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.26, "MEDIAN_SPEND_PER_CUSTOMER": 35.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202561, 40.074096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "LOCATION_NAME": "Bistro SouthEast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2022, "Total Visits": 488.0, "Total Visitors": 272.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 297.0, "Total Spend": 3448.0, "Total Transactions": 141.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.3, "MEDIAN_SPEND_PER_CUSTOMER": 49.26 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-6x5", "LOCATION_NAME": "Giuseppe & Sons", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950627, "LONGITUDE": -75.166809, "DATE_RANGE_START": 2022, "Total Visits": 4990.0, "Total Visitors": 3734.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 7519.0, "Total Transactions": 78.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.58, "MEDIAN_SPEND_PER_CUSTOMER": 133.76 }, "geometry": { "type": "Point", "coordinates": [ -75.166809, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj9-zmk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.036925, "LONGITUDE": -75.130756, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 64.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3495.0, "Total Transactions": 164.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 20.35 }, "geometry": { "type": "Point", "coordinates": [ -75.130756, 40.036925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "LOCATION_NAME": "Beauty Point", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.980086, "LONGITUDE": -75.235032, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 75.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7266.0, "Total Transactions": 202.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.19, "MEDIAN_SPEND_PER_CUSTOMER": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.235032, 39.980086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-236@63s-dw4-rzf", "LOCATION_NAME": "L'Occitane", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.895196, "LONGITUDE": -75.227963, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4576.0, "Total Transactions": 80.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.04, "MEDIAN_SPEND_PER_CUSTOMER": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.227963, 39.895196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2022, "Total Visits": 314.0, "Total Visitors": 239.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1645.0, "Total Transactions": 169.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.05, "MEDIAN_SPEND_PER_CUSTOMER": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8m-b8v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.016255, "LONGITUDE": -75.061394, "DATE_RANGE_START": 2022, "Total Visits": 355.0, "Total Visitors": 124.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": 353.0, "Total Spend": 1142.0, "Total Transactions": 172.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.65, "MEDIAN_SPEND_PER_CUSTOMER": 10.23 }, "geometry": { "type": "Point", "coordinates": [ -75.061394, 40.016255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvp-bff", "LOCATION_NAME": "Beer Stop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.945295, "LONGITUDE": -75.238695, "DATE_RANGE_START": 2022, "Total Visits": 1207.0, "Total Visitors": 805.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1075.0, "Total Transactions": 33.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.99, "MEDIAN_SPEND_PER_CUSTOMER": 47.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238695, 39.945295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p7v-ffz", "LOCATION_NAME": "E Z Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.054304, "LONGITUDE": -75.070914, "DATE_RANGE_START": 2022, "Total Visits": 662.0, "Total Visitors": 385.0, "POI_CBG": 421010335003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 21064.0, "Total Transactions": 768.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.02, "MEDIAN_SPEND_PER_CUSTOMER": 52.14 }, "geometry": { "type": "Point", "coordinates": [ -75.070914, 40.054304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-qs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.912518, "LONGITUDE": -75.243563, "DATE_RANGE_START": 2022, "Total Visits": 1328.0, "Total Visitors": 791.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1090.0, "Total Transactions": 38.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.63 }, "geometry": { "type": "Point", "coordinates": [ -75.243563, 39.912518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-sbk", "LOCATION_NAME": "Frankinstien Bike Worx", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.947579, "LONGITUDE": -75.167633, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 64.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 104.0, "Total Spend": 866.0, "Total Transactions": 21.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.16, "MEDIAN_SPEND_PER_CUSTOMER": 92.88 }, "geometry": { "type": "Point", "coordinates": [ -75.167633, 39.947579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.074794, "LONGITUDE": -75.032684, "DATE_RANGE_START": 2022, "Total Visits": 1277.0, "Total Visitors": 659.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 2414.0, "Total Transactions": 167.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.37, "MEDIAN_SPEND_PER_CUSTOMER": 10.83 }, "geometry": { "type": "Point", "coordinates": [ -75.032684, 40.074794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "LOCATION_NAME": "Brauhaus Schmitz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942007, "LONGITUDE": -75.154702, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 141.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 4028.0, "Total Transactions": 45.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.63, "MEDIAN_SPEND_PER_CUSTOMER": 88.16 }, "geometry": { "type": "Point", "coordinates": [ -75.154702, 39.942007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "LOCATION_NAME": "European Republic", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2022, "Total Visits": 3399.0, "Total Visitors": 2453.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 70.0, "Total Spend": 2295.0, "Total Transactions": 172.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.16, "MEDIAN_SPEND_PER_CUSTOMER": 31.42 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-pvz", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994647, "LONGITUDE": -75.095265, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 122.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4797.0, "Total Transactions": 197.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 25.36 }, "geometry": { "type": "Point", "coordinates": [ -75.095265, 39.994647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.052515, "LONGITUDE": -75.058505, "DATE_RANGE_START": 2022, "Total Visits": 730.0, "Total Visitors": 591.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4121.0, "Total Transactions": 152.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.058505, 40.052515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp4-tvz", "LOCATION_NAME": "Best Deli II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978727, "LONGITUDE": -75.115372, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 108.0, "POI_CBG": 421010378003.0, "MEDIAN_DWELL": 80.0, "Total Spend": 3069.0, "Total Transactions": 171.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.72, "MEDIAN_SPEND_PER_CUSTOMER": 36.03 }, "geometry": { "type": "Point", "coordinates": [ -75.115372, 39.978727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948772, "LONGITUDE": -75.160716, "DATE_RANGE_START": 2022, "Total Visits": 362.0, "Total Visitors": 291.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 16043.0, "Total Transactions": 1239.0, "Total Customers": 803.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 13.61 }, "geometry": { "type": "Point", "coordinates": [ -75.160716, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002692, "LONGITUDE": -75.214454, "DATE_RANGE_START": 2022, "Total Visits": 338.0, "Total Visitors": 282.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9671.0, "Total Transactions": 1113.0, "Total Customers": 577.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.11, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.214454, 40.002692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076409, "LONGITUDE": -75.206721, "DATE_RANGE_START": 2022, "Total Visits": 220.0, "Total Visitors": 150.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 11508.0, "Total Transactions": 1106.0, "Total Customers": 652.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.82, "MEDIAN_SPEND_PER_CUSTOMER": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.206721, 40.076409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "LOCATION_NAME": "El Rey", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 247.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 31.0, "Total Spend": 38505.0, "Total Transactions": 612.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.44, "MEDIAN_SPEND_PER_CUSTOMER": 93.68 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-t35", "LOCATION_NAME": "Brexel Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960745, "LONGITUDE": -75.189369, "DATE_RANGE_START": 2022, "Total Visits": 317.0, "Total Visitors": 164.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 272.0, "Total Spend": 1212.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.59, "MEDIAN_SPEND_PER_CUSTOMER": 109.18 }, "geometry": { "type": "Point", "coordinates": [ -75.189369, 39.960745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-9j9", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953347, "LONGITUDE": -75.165403, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 63.0, "Total Spend": 598.0, "Total Transactions": 30.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 41.04 }, "geometry": { "type": "Point", "coordinates": [ -75.165403, 39.953347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dw9-wtv", "LOCATION_NAME": "Revive 21", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.880826, "LONGITUDE": -75.237536, "DATE_RANGE_START": 2022, "Total Visits": 13519.0, "Total Visitors": 11242.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 3467.0, "Total Transactions": 122.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237536, 39.880826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "LOCATION_NAME": "Best In Town Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 70.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4143.0, "Total Transactions": 164.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.6 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "LOCATION_NAME": "Rays Cafe & Tea House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 972.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.52, "MEDIAN_SPEND_PER_CUSTOMER": 39.52 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6x5", "LOCATION_NAME": "Amma's South Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950885, "LONGITUDE": -75.166421, "DATE_RANGE_START": 2022, "Total Visits": 4990.0, "Total Visitors": 3734.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 5391.0, "Total Transactions": 115.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.17, "MEDIAN_SPEND_PER_CUSTOMER": 63.78 }, "geometry": { "type": "Point", "coordinates": [ -75.166421, 39.950885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "LOCATION_NAME": "Talula's Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2022, "Total Visits": 679.0, "Total Visitors": 505.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 58.0, "Total Spend": 87903.0, "Total Transactions": 2322.0, "Total Customers": 794.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 63.48 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-grk", "LOCATION_NAME": "Nick's Charcoal Pit", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923906, "LONGITUDE": -75.167451, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": null, "Total Spend": 3514.0, "Total Transactions": 113.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.49, "MEDIAN_SPEND_PER_CUSTOMER": 57.85 }, "geometry": { "type": "Point", "coordinates": [ -75.167451, 39.923906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-jjv", "LOCATION_NAME": "Hakim's Bookstore", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.95665, "LONGITUDE": -75.225827, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010085006.0, "MEDIAN_DWELL": null, "Total Spend": 8086.0, "Total Transactions": 754.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.96, "MEDIAN_SPEND_PER_CUSTOMER": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225827, 39.95665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2022, "Total Visits": 906.0, "Total Visitors": 587.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6025.0, "Total Transactions": 256.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.76, "MEDIAN_SPEND_PER_CUSTOMER": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2022, "Total Visits": 1010.0, "Total Visitors": 599.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 16438.0, "Total Transactions": 613.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.03, "MEDIAN_SPEND_PER_CUSTOMER": 30.37 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "LOCATION_NAME": "Big Ben Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 23.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 14733.0, "Total Transactions": 484.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.05, "MEDIAN_SPEND_PER_CUSTOMER": 53.76 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "LOCATION_NAME": "Nike Factory Store", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 125.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 48751.0, "Total Transactions": 749.0, "Total Customers": 659.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.46, "MEDIAN_SPEND_PER_CUSTOMER": 52.64 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "LOCATION_NAME": "Triple Joy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 40.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 448.0, "Total Spend": 2285.0, "Total Transactions": 167.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.1, "MEDIAN_SPEND_PER_CUSTOMER": 51.15 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgf-7kf", "LOCATION_NAME": "Lavish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967761, "LONGITUDE": -75.210086, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 42.0, "POI_CBG": 421010106001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 875.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.5, "MEDIAN_SPEND_PER_CUSTOMER": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210086, 39.967761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dwg-g6k", "LOCATION_NAME": "United", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.917055, "LONGITUDE": -75.235223, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 44.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 14022.0, "Total Transactions": 491.0, "Total Customers": 164.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 51.93 }, "geometry": { "type": "Point", "coordinates": [ -75.235223, 39.917055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "LOCATION_NAME": "The Little Apple", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.025728, "LONGITUDE": -75.223969, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 64.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5632.0, "Total Transactions": 143.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.8, "MEDIAN_SPEND_PER_CUSTOMER": 57.16 }, "geometry": { "type": "Point", "coordinates": [ -75.223969, 40.025728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pp2-85f", "LOCATION_NAME": "Tony's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985499, "LONGITUDE": -75.106228, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 35.0, "POI_CBG": 421010180021.0, "MEDIAN_DWELL": 239.0, "Total Spend": 2227.0, "Total Transactions": 138.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.87, "MEDIAN_SPEND_PER_CUSTOMER": 42.26 }, "geometry": { "type": "Point", "coordinates": [ -75.106228, 39.985499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-sqz", "LOCATION_NAME": "Ashton Cigar Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949464, "LONGITUDE": -75.167106, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 240.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 56.0, "Total Spend": 32016.0, "Total Transactions": 364.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.23, "MEDIAN_SPEND_PER_CUSTOMER": 154.34 }, "geometry": { "type": "Point", "coordinates": [ -75.167106, 39.949464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5fz", "LOCATION_NAME": "Zio's Brick Oven Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950079, "LONGITUDE": -75.161743, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 75.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 10020.0, "Total Transactions": 768.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.4, "MEDIAN_SPEND_PER_CUSTOMER": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.161743, 39.950079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm8-djv", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911588, "LONGITUDE": -75.17455, "DATE_RANGE_START": 2022, "Total Visits": 2404.0, "Total Visitors": 2005.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 328.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.62, "MEDIAN_SPEND_PER_CUSTOMER": 48.81 }, "geometry": { "type": "Point", "coordinates": [ -75.17455, 39.911588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "LOCATION_NAME": "DiNapoli Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 87.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2578.0, "Total Transactions": 63.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.51, "MEDIAN_SPEND_PER_CUSTOMER": 68.72 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.104996, "LONGITUDE": -75.007889, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 26.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 341.0, "Total Spend": 9601.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 483.84, "MEDIAN_SPEND_PER_CUSTOMER": 1468.8 }, "geometry": { "type": "Point", "coordinates": [ -75.007889, 40.104996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-x3q", "LOCATION_NAME": "Manakeesh Cafe Bakery & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95498, "LONGITUDE": -75.211488, "DATE_RANGE_START": 2022, "Total Visits": 213.0, "Total Visitors": 138.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 125.0, "Total Spend": 674.0, "Total Transactions": 23.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.19, "MEDIAN_SPEND_PER_CUSTOMER": 62.61 }, "geometry": { "type": "Point", "coordinates": [ -75.211488, 39.95498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "LOCATION_NAME": "Ristorante Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 45.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 79.0, "Total Spend": 10747.0, "Total Transactions": 70.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 124.9, "MEDIAN_SPEND_PER_CUSTOMER": 183.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9p-z75", "LOCATION_NAME": "Prince Of Pizza & Falafel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101596, "LONGITUDE": -75.028395, "DATE_RANGE_START": 2022, "Total Visits": 1486.0, "Total Visitors": 1071.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 30.0, "Total Spend": 5674.0, "Total Transactions": 186.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.88, "MEDIAN_SPEND_PER_CUSTOMER": 66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028395, 40.101596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "LOCATION_NAME": "Lucha Cartel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2022, "Total Visits": 434.0, "Total Visitors": 305.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 13941.0, "Total Transactions": 411.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.72 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 230.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 741.0, "Total Transactions": 33.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.39, "MEDIAN_SPEND_PER_CUSTOMER": 20.81 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-226@628-p8t-w49", "LOCATION_NAME": "Classico Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087666, "LONGITUDE": -74.961024, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1688.0, "Total Transactions": 134.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 26.35 }, "geometry": { "type": "Point", "coordinates": [ -74.961024, 40.087666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pg9-td9", "LOCATION_NAME": "Tela's Market & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967388, "LONGITUDE": -75.168391, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 202.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 116.0, "Total Spend": 4786.0, "Total Transactions": 202.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.6, "MEDIAN_SPEND_PER_CUSTOMER": 40.56 }, "geometry": { "type": "Point", "coordinates": [ -75.168391, 39.967388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2022, "Total Visits": 193.0, "Total Visitors": 167.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 549.0, "Total Spend": 4702.0, "Total Transactions": 835.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.49, "MEDIAN_SPEND_PER_CUSTOMER": 7.86 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 57.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 249.0, "Total Spend": 3929.0, "Total Transactions": 91.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.55, "MEDIAN_SPEND_PER_CUSTOMER": 70.41 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "LOCATION_NAME": "Aya Asian Fusion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 37.0, "POI_CBG": 421010330006.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3204.0, "Total Transactions": 91.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.05, "MEDIAN_SPEND_PER_CUSTOMER": 47.9 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8j-ct9", "LOCATION_NAME": "Hunan Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035881, "LONGITUDE": -75.042073, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 52.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 94.0, "Total Spend": 1198.0, "Total Transactions": 47.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.09, "MEDIAN_SPEND_PER_CUSTOMER": 53.72 }, "geometry": { "type": "Point", "coordinates": [ -75.042073, 40.035881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "LOCATION_NAME": "P.C. Richard & Son", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.046246, "LONGITUDE": -75.059899, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 178.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4425.0, "Total Transactions": 12.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 191.99, "MEDIAN_SPEND_PER_CUSTOMER": 383.98 }, "geometry": { "type": "Point", "coordinates": [ -75.059899, 40.046246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "LOCATION_NAME": "The Fresh Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2022, "Total Visits": 620.0, "Total Visitors": 331.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 35610.0, "Total Transactions": 706.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.67, "MEDIAN_SPEND_PER_CUSTOMER": 48.05 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8d-kpv", "LOCATION_NAME": "Best Buy Imports", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.006235, "LONGITUDE": -75.092056, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 245.0, "Total Spend": 4495.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 293.83, "MEDIAN_SPEND_PER_CUSTOMER": 483.32 }, "geometry": { "type": "Point", "coordinates": [ -75.092056, 40.006235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.991985, "LONGITUDE": -75.178334, "DATE_RANGE_START": 2022, "Total Visits": 517.0, "Total Visitors": 303.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 718.0, "Total Transactions": 28.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.77, "MEDIAN_SPEND_PER_CUSTOMER": 26.52 }, "geometry": { "type": "Point", "coordinates": [ -75.178334, 39.991985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-sbk", "LOCATION_NAME": "Spruce Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947568, "LONGITUDE": -75.167428, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 183.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 2.0, "Total Spend": 34615.0, "Total Transactions": 1666.0, "Total Customers": 436.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.8, "MEDIAN_SPEND_PER_CUSTOMER": 43.89 }, "geometry": { "type": "Point", "coordinates": [ -75.167428, 39.947568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "LOCATION_NAME": "Dairy Queen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087375, "LONGITUDE": -75.039949, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 296.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2680.0, "Total Transactions": 232.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.56, "MEDIAN_SPEND_PER_CUSTOMER": 11.21 }, "geometry": { "type": "Point", "coordinates": [ -75.039949, 40.087375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97281, "LONGITUDE": -75.134837, "DATE_RANGE_START": 2022, "Total Visits": 1038.0, "Total Visitors": 470.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 13166.0, "Total Transactions": 1136.0, "Total Customers": 817.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.58, "MEDIAN_SPEND_PER_CUSTOMER": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134837, 39.97281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953617, "LONGITUDE": -75.167012, "DATE_RANGE_START": 2022, "Total Visits": 2552.0, "Total Visitors": 1777.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 30.0, "Total Spend": 5474.0, "Total Transactions": 1091.0, "Total Customers": 497.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.31, "MEDIAN_SPEND_PER_CUSTOMER": 6.36 }, "geometry": { "type": "Point", "coordinates": [ -75.167012, 39.953617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p8n-btv", "LOCATION_NAME": "El New Sunrise Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.03352, "LONGITUDE": -75.066168, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": null, "Total Spend": 137.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.37, "MEDIAN_SPEND_PER_CUSTOMER": 12.74 }, "geometry": { "type": "Point", "coordinates": [ -75.066168, 40.03352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "LOCATION_NAME": "Philly Tacos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": null, "Total Spend": 163.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.47, "MEDIAN_SPEND_PER_CUSTOMER": 6.47 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "LOCATION_NAME": "Tavern On Camac", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947272, "LONGITUDE": -75.161618, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 101.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 39.0, "Total Spend": 56313.0, "Total Transactions": 2456.0, "Total Customers": 601.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.93, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161618, 39.947272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "LOCATION_NAME": "Tokyo Sushi & Catering", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2022, "Total Visits": 3279.0, "Total Visitors": 1596.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 392.0, "Total Spend": 4980.0, "Total Transactions": 314.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.18, "MEDIAN_SPEND_PER_CUSTOMER": 31.28 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "LOCATION_NAME": "Race Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 89.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 7849.0, "Total Transactions": 131.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.65, "MEDIAN_SPEND_PER_CUSTOMER": 94.49 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-whq", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949985, "LONGITUDE": -75.146017, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 108.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3401.0, "Total Transactions": 167.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.37, "MEDIAN_SPEND_PER_CUSTOMER": 31.94 }, "geometry": { "type": "Point", "coordinates": [ -75.146017, 39.949985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-227@628-pmf-j35", "LOCATION_NAME": "Cheys Kitchen", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950469, "LONGITUDE": -75.169274, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 94.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 81.0, "Total Spend": 210.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.02, "MEDIAN_SPEND_PER_CUSTOMER": 54.04 }, "geometry": { "type": "Point", "coordinates": [ -75.169274, 39.950469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-2hq", "LOCATION_NAME": "Las Cazuelas Restaurant BYOB", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969878, "LONGITUDE": -75.143998, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 222.0, "Total Spend": 7736.0, "Total Transactions": 84.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.78, "MEDIAN_SPEND_PER_CUSTOMER": 111.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143998, 39.969878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvr-9mk", "LOCATION_NAME": "60th Street Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93354, "LONGITUDE": -75.231211, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010065001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6738.0, "Total Transactions": 350.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.62, "MEDIAN_SPEND_PER_CUSTOMER": 35.38 }, "geometry": { "type": "Point", "coordinates": [ -75.231211, 39.93354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-75z", "LOCATION_NAME": "Pizza Brain", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980599, "LONGITUDE": -75.128225, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11644.0, "Total Transactions": 329.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.39, "MEDIAN_SPEND_PER_CUSTOMER": 37.61 }, "geometry": { "type": "Point", "coordinates": [ -75.128225, 39.980599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992457, "LONGITUDE": -75.097895, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 293.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9702.0, "Total Transactions": 568.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.88, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.097895, 39.992457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnt-435", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974852, "LONGITUDE": -75.120942, "DATE_RANGE_START": 2022, "Total Visits": 599.0, "Total Visitors": 373.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 769.0, "Total Transactions": 66.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.120942, 39.974852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2022, "Total Visits": 282.0, "Total Visitors": 181.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 179.0, "Total Transactions": 23.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.97, "MEDIAN_SPEND_PER_CUSTOMER": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "LOCATION_NAME": "CLo", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 2.0, "POI_CBG": 421010195022.0, "MEDIAN_DWELL": null, "Total Spend": 13163.0, "Total Transactions": 307.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.48, "MEDIAN_SPEND_PER_CUSTOMER": 83.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "LOCATION_NAME": "Boss Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 75.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 17781.0, "Total Transactions": 279.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.98, "MEDIAN_SPEND_PER_CUSTOMER": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8t-vvf", "LOCATION_NAME": "Hanesbrands", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089656, "LONGITUDE": -74.961738, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 155.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 40.0, "Total Spend": 2123.0, "Total Transactions": 54.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 58.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961738, 40.089656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dy9", "LOCATION_NAME": "Firestone Complete Auto Care", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052472, "LONGITUDE": -75.06646, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 75.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 209.0, "Total Spend": 1000.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.05, "MEDIAN_SPEND_PER_CUSTOMER": 157.09 }, "geometry": { "type": "Point", "coordinates": [ -75.06646, 40.052472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg9-vvf", "LOCATION_NAME": "Marina Montano Designs", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.966951, "LONGITUDE": -75.169145, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 240.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 797.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.59, "MEDIAN_SPEND_PER_CUSTOMER": 187.18 }, "geometry": { "type": "Point", "coordinates": [ -75.169145, 39.966951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045011, "LONGITUDE": -75.144262, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 117.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 289.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.2, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144262, 40.045011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2022, "Total Visits": 220.0, "Total Visitors": 167.0, "POI_CBG": 421010242001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1813.0, "Total Transactions": 254.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.86, "MEDIAN_SPEND_PER_CUSTOMER": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.995094, "LONGITUDE": -75.095646, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 235.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 592.0, "Total Transactions": 33.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 39.995094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-r49", "LOCATION_NAME": "IGA", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.975356, "LONGITUDE": -75.119618, "DATE_RANGE_START": 2022, "Total Visits": 1307.0, "Total Visitors": 610.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 89.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.83, "MEDIAN_SPEND_PER_CUSTOMER": 7.66 }, "geometry": { "type": "Point", "coordinates": [ -75.119618, 39.975356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pjb-8qf", "LOCATION_NAME": "Kim's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.050403, "LONGITUDE": -75.141786, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 138.0, "POI_CBG": 421010268004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 838.0, "Total Transactions": 38.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.24, "MEDIAN_SPEND_PER_CUSTOMER": 41.63 }, "geometry": { "type": "Point", "coordinates": [ -75.141786, 40.050403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-v4v", "LOCATION_NAME": "Food Point Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.928702, "LONGITUDE": -75.168281, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 92.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 328.0, "Total Spend": 1044.0, "Total Transactions": 40.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.83, "MEDIAN_SPEND_PER_CUSTOMER": 59.15 }, "geometry": { "type": "Point", "coordinates": [ -75.168281, 39.928702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2022, "Total Visits": 451.0, "Total Visitors": 305.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1108.0, "Total Transactions": 75.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.42, "MEDIAN_SPEND_PER_CUSTOMER": 11.14 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-pmb-8qf", "LOCATION_NAME": "Jefferson Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950512, "LONGITUDE": -75.156532, "DATE_RANGE_START": 2022, "Total Visits": 2066.0, "Total Visitors": 1467.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 363.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156532, 39.950512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "LOCATION_NAME": "Bardot Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 159.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 14257.0, "Total Transactions": 366.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.75, "MEDIAN_SPEND_PER_CUSTOMER": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-syv", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981631, "LONGITUDE": -75.144038, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010156002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1455.0, "Total Transactions": 94.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.85, "MEDIAN_SPEND_PER_CUSTOMER": 28.55 }, "geometry": { "type": "Point", "coordinates": [ -75.144038, 39.981631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pmd-rtv", "LOCATION_NAME": "Sally", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948932, "LONGITUDE": -75.178843, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 110.0, "POI_CBG": 421010008011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4718.0, "Total Transactions": 73.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.38, "MEDIAN_SPEND_PER_CUSTOMER": 95.41 }, "geometry": { "type": "Point", "coordinates": [ -75.178843, 39.948932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "LOCATION_NAME": "Southgate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2022, "Total Visits": 362.0, "Total Visitors": 253.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 121.0, "Total Spend": 2751.0, "Total Transactions": 42.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.12, "MEDIAN_SPEND_PER_CUSTOMER": 84.36 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pjf-t5f", "LOCATION_NAME": "Host", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.069687, "LONGITUDE": -75.200234, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 73.0, "Total Spend": 1067.0, "Total Transactions": 44.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.74, "MEDIAN_SPEND_PER_CUSTOMER": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.200234, 40.069687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-5vf", "LOCATION_NAME": "Mario Brothers Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048464, "LONGITUDE": -75.061807, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 91.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 378.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.66, "MEDIAN_SPEND_PER_CUSTOMER": 85.32 }, "geometry": { "type": "Point", "coordinates": [ -75.061807, 40.048464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 23.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1876.0, "Total Transactions": 106.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.56, "MEDIAN_SPEND_PER_CUSTOMER": 32.22 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pmb-fpv", "LOCATION_NAME": "Shaking Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946982, "LONGITUDE": -75.157365, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 28.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5148.0, "Total Transactions": 120.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.67, "MEDIAN_SPEND_PER_CUSTOMER": 71.34 }, "geometry": { "type": "Point", "coordinates": [ -75.157365, 39.946982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm9-5cq", "LOCATION_NAME": "Friends Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.91628, "LONGITUDE": -75.165627, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 31.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1146.0, "Total Transactions": 98.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.45, "MEDIAN_SPEND_PER_CUSTOMER": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165627, 39.91628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kmk", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.973034, "LONGITUDE": -75.158605, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 38.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 270.0, "Total Spend": 4492.0, "Total Transactions": 31.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 127.48, "MEDIAN_SPEND_PER_CUSTOMER": 139.97 }, "geometry": { "type": "Point", "coordinates": [ -75.158605, 39.973034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-t7q", "LOCATION_NAME": "Pamma Tools", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949116, "LONGITUDE": -75.154492, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 44.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1474.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 402.0, "MEDIAN_SPEND_PER_CUSTOMER": 423.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154492, 39.949116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "LOCATION_NAME": "A Plus", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2022, "Total Visits": 181.0, "Total Visitors": 122.0, "POI_CBG": 421010298005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2300.0, "Total Transactions": 181.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.36 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8m-snq", "LOCATION_NAME": "Station Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.022297, "LONGITUDE": -75.077816, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 204.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1069.0, "Total Transactions": 35.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.15, "MEDIAN_SPEND_PER_CUSTOMER": 48.49 }, "geometry": { "type": "Point", "coordinates": [ -75.077816, 40.022297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032503, "LONGITUDE": -75.08527, "DATE_RANGE_START": 2022, "Total Visits": 796.0, "Total Visitors": 533.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 567.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.03, "MEDIAN_SPEND_PER_CUSTOMER": 40.03 }, "geometry": { "type": "Point", "coordinates": [ -75.08527, 40.032503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pjk-3bk", "LOCATION_NAME": "Posh", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.068847, "LONGITUDE": -75.240209, "DATE_RANGE_START": 2022, "Total Visits": 697.0, "Total Visitors": 507.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1160.0, "Total Transactions": 17.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.0, "MEDIAN_SPEND_PER_CUSTOMER": 164.16 }, "geometry": { "type": "Point", "coordinates": [ -75.240209, 40.068847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "LOCATION_NAME": "Produce Junction", "TOP_CATEGORY": "Florists", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2022, "Total Visits": 345.0, "Total Visitors": 274.0, "POI_CBG": 421010120001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 192.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "LOCATION_NAME": "Roses Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2022, "Total Visits": 836.0, "Total Visitors": 479.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 333.0, "Total Spend": 1845.0, "Total Transactions": 28.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.25, "MEDIAN_SPEND_PER_CUSTOMER": 85.32 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmb-66k", "LOCATION_NAME": "uBreakiFix", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.948576, "LONGITUDE": -75.160424, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 54.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 44.0, "Total Spend": 3829.0, "Total Transactions": 66.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.84, "MEDIAN_SPEND_PER_CUSTOMER": 130.56 }, "geometry": { "type": "Point", "coordinates": [ -75.160424, 39.948576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "LOCATION_NAME": "Rittenhouse Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2022, "Total Visits": 1758.0, "Total Visitors": 1160.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 8.0, "Total Spend": 132322.0, "Total Transactions": 5760.0, "Total Customers": 1213.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.46, "MEDIAN_SPEND_PER_CUSTOMER": 62.39 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2022, "Total Visits": 502.0, "Total Visitors": 341.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1656.0, "Total Transactions": 155.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.96, "MEDIAN_SPEND_PER_CUSTOMER": 7.96 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040921, "LONGITUDE": -75.065658, "DATE_RANGE_START": 2022, "Total Visits": 549.0, "Total Visitors": 362.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 493.0, "Total Transactions": 68.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.28, "MEDIAN_SPEND_PER_CUSTOMER": 10.83 }, "geometry": { "type": "Point", "coordinates": [ -75.065658, 40.040921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035458, "LONGITUDE": -75.049099, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 204.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5196.0, "Total Transactions": 146.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.09, "MEDIAN_SPEND_PER_CUSTOMER": 40.04 }, "geometry": { "type": "Point", "coordinates": [ -75.049099, 40.035458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-qj9", "LOCATION_NAME": "Mack Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.966784, "LONGITUDE": -75.242585, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 64.0, "POI_CBG": 421010096005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3014.0, "Total Transactions": 172.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242585, 39.966784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.962319, "LONGITUDE": -75.162376, "DATE_RANGE_START": 2022, "Total Visits": 338.0, "Total Visitors": 218.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 18540.0, "Total Transactions": 1718.0, "Total Customers": 643.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.162376, 39.962319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "LOCATION_NAME": "Wyndham", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952204, "LONGITUDE": -75.146959, "DATE_RANGE_START": 2022, "Total Visits": 3082.0, "Total Visitors": 1641.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 435.0, "Total Spend": 49064.0, "Total Transactions": 270.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.88, "MEDIAN_SPEND_PER_CUSTOMER": 77.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146959, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hh5", "LOCATION_NAME": "Square on Square", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94849, "LONGITUDE": -75.174456, "DATE_RANGE_START": 2022, "Total Visits": 805.0, "Total Visitors": 528.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 71.0, "Total Spend": 1630.0, "Total Transactions": 71.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.41, "MEDIAN_SPEND_PER_CUSTOMER": 38.79 }, "geometry": { "type": "Point", "coordinates": [ -75.174456, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "LOCATION_NAME": "Harbor Freight Tools", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2022, "Total Visits": 510.0, "Total Visitors": 437.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 45609.0, "Total Transactions": 686.0, "Total Customers": 568.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.11, "MEDIAN_SPEND_PER_CUSTOMER": 37.49 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-dqf", "LOCATION_NAME": "Good Neighbor Mini Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.941908, "LONGITUDE": -75.220217, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 33.0, "POI_CBG": 421010073001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1885.0, "Total Transactions": 172.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.25, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220217, 39.941908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7v-nnq", "LOCATION_NAME": "Tano's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062163, "LONGITUDE": -75.080393, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 37.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 82.0, "Total Spend": 602.0, "Total Transactions": 35.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.44, "MEDIAN_SPEND_PER_CUSTOMER": 28.88 }, "geometry": { "type": "Point", "coordinates": [ -75.080393, 40.062163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "LOCATION_NAME": "Carter's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075968, "LONGITUDE": -75.031512, "DATE_RANGE_START": 2022, "Total Visits": 463.0, "Total Visitors": 415.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2617.0, "Total Transactions": 52.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.14, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031512, 40.075968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 155.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1040.0, "Total Transactions": 68.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.77, "MEDIAN_SPEND_PER_CUSTOMER": 18.51 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-2hq", "LOCATION_NAME": "O Sole Mio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937827, "LONGITUDE": -75.148269, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 14.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 2726.0, "Total Transactions": 68.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.39, "MEDIAN_SPEND_PER_CUSTOMER": 68.93 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 39.937827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj8-g6k", "LOCATION_NAME": "Ami Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.033615, "LONGITUDE": -75.090608, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 16.0, "POI_CBG": 421010390002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 304.0, "Total Transactions": 24.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.98 }, "geometry": { "type": "Point", "coordinates": [ -75.090608, 40.033615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2022, "Total Visits": 1958.0, "Total Visitors": 1352.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 118345.0, "Total Transactions": 1401.0, "Total Customers": 927.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.98, "MEDIAN_SPEND_PER_CUSTOMER": 27.08 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-28v", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978491, "LONGITUDE": -75.153508, "DATE_RANGE_START": 2022, "Total Visits": 617.0, "Total Visitors": 371.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 217.0, "Total Spend": 20820.0, "Total Transactions": 1545.0, "Total Customers": 864.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.49, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.978491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2022, "Total Visits": 331.0, "Total Visitors": 254.0, "POI_CBG": 421010061001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2003.0, "Total Transactions": 127.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.05, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2022, "Total Visits": 1138.0, "Total Visitors": 760.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 49043.0, "Total Transactions": 1533.0, "Total Customers": 972.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.63 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2022, "Total Visits": 15234.0, "Total Visitors": 9800.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 7667.0, "Total Transactions": 160.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.47, "MEDIAN_SPEND_PER_CUSTOMER": 42.03 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-6ff", "LOCATION_NAME": "Lighthouse Thrift Shop", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.041347, "LONGITUDE": -75.107276, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 2.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 39.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.62, "MEDIAN_SPEND_PER_CUSTOMER": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.107276, 40.041347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj8-2c5", "LOCATION_NAME": "US1 Car Stereo", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029189, "LONGITUDE": -75.103473, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010292002.0, "MEDIAN_DWELL": 56.0, "Total Spend": 1254.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 135.0, "MEDIAN_SPEND_PER_CUSTOMER": 270.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103473, 40.029189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010110003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 272.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.0, "MEDIAN_SPEND_PER_CUSTOMER": 78.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "LOCATION_NAME": "Popi's Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 85.0, "Total Spend": 3015.0, "Total Transactions": 26.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 116.12, "MEDIAN_SPEND_PER_CUSTOMER": 196.04 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-jd9", "LOCATION_NAME": "Ten Asian Food Hall", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951674, "LONGITUDE": -75.169299, "DATE_RANGE_START": 2022, "Total Visits": 1986.0, "Total Visitors": 1695.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 22.0, "Total Spend": 724.0, "Total Transactions": 21.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.57, "MEDIAN_SPEND_PER_CUSTOMER": 83.16 }, "geometry": { "type": "Point", "coordinates": [ -75.169299, 39.951674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "LOCATION_NAME": "Revolution House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 202.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 30499.0, "Total Transactions": 481.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.4, "MEDIAN_SPEND_PER_CUSTOMER": 85.64 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "LOCATION_NAME": "Park Manor Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 77.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 403.0, "Total Spend": 7740.0, "Total Transactions": 627.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.01, "MEDIAN_SPEND_PER_CUSTOMER": 30.34 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "LOCATION_NAME": "The Bayou Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 110.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 31.0, "Total Spend": 22841.0, "Total Transactions": 784.0, "Total Customers": 310.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-6tv", "LOCATION_NAME": "Smoothie King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951888, "LONGITUDE": -75.167584, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 78.0, "Total Spend": 3112.0, "Total Transactions": 343.0, "Total Customers": 291.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.55, "MEDIAN_SPEND_PER_CUSTOMER": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.167584, 39.951888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "LOCATION_NAME": "Jamba", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.87525, "LONGITUDE": -75.241494, "DATE_RANGE_START": 2022, "Total Visits": 226042.0, "Total Visitors": 145993.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 1869.0, "Total Transactions": 148.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.88, "MEDIAN_SPEND_PER_CUSTOMER": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.241494, 39.87525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2022, "Total Visits": 540.0, "Total Visitors": 253.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4627.0, "Total Transactions": 571.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.29, "MEDIAN_SPEND_PER_CUSTOMER": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pr4-d35", "LOCATION_NAME": "Rush Order Tees", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.112433, "LONGITUDE": -74.979188, "DATE_RANGE_START": 2022, "Total Visits": 195.0, "Total Visitors": 42.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 544.0, "Total Spend": 6903.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 175.7, "MEDIAN_SPEND_PER_CUSTOMER": 260.36 }, "geometry": { "type": "Point", "coordinates": [ -74.979188, 40.112433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "LOCATION_NAME": "Henry James Saloon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 45.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 130.0, "Total Spend": 7174.0, "Total Transactions": 125.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.2, "MEDIAN_SPEND_PER_CUSTOMER": 95.82 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmf-zj9", "LOCATION_NAME": "Arch Brunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955759, "LONGITUDE": -75.17646, "DATE_RANGE_START": 2022, "Total Visits": 1810.0, "Total Visitors": 1263.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 256.0, "Total Spend": 1256.0, "Total Transactions": 35.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17646, 39.955759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-wkz", "LOCATION_NAME": "Sassafras Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948812, "LONGITUDE": -75.144182, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 275.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4978.0, "Total Transactions": 49.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.62, "MEDIAN_SPEND_PER_CUSTOMER": 79.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144182, 39.948812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "LOCATION_NAME": "Tradesman's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950487, "LONGITUDE": -75.162708, "DATE_RANGE_START": 2022, "Total Visits": 632.0, "Total Visitors": 528.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 65464.0, "Total Transactions": 1847.0, "Total Customers": 774.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.52, "MEDIAN_SPEND_PER_CUSTOMER": 56.25 }, "geometry": { "type": "Point", "coordinates": [ -75.162708, 39.950487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "LOCATION_NAME": "Spice C", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 186.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 6776.0, "Total Transactions": 209.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.37, "MEDIAN_SPEND_PER_CUSTOMER": 50.54 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-v75", "LOCATION_NAME": "Oishii", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948105, "LONGITUDE": -75.143866, "DATE_RANGE_START": 2022, "Total Visits": 2087.0, "Total Visitors": 1528.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 55.0, "Total Spend": 20301.0, "Total Transactions": 822.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143866, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "LOCATION_NAME": "Cambria Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2022, "Total Visits": 6932.0, "Total Visitors": 4793.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 100.0, "Total Spend": 19989.0, "Total Transactions": 70.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 219.72, "MEDIAN_SPEND_PER_CUSTOMER": 235.98 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phy-h3q", "LOCATION_NAME": "El Patron bar restaurant", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.022106, "LONGITUDE": -75.133416, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 159.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 1105.0, "Total Transactions": 37.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.64, "MEDIAN_SPEND_PER_CUSTOMER": 57.72 }, "geometry": { "type": "Point", "coordinates": [ -75.133416, 40.022106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmb-7nq", "LOCATION_NAME": "Graffiti Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949568, "LONGITUDE": -75.162157, "DATE_RANGE_START": 2022, "Total Visits": 5903.0, "Total Visitors": 3627.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 165.0, "Total Spend": 390.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.22, "MEDIAN_SPEND_PER_CUSTOMER": 112.07 }, "geometry": { "type": "Point", "coordinates": [ -75.162157, 39.949568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p72-5s5", "LOCATION_NAME": "Three Monkeys Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.053948, "LONGITUDE": -74.983889, "DATE_RANGE_START": 2022, "Total Visits": 551.0, "Total Visitors": 394.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 544.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 104.4, "MEDIAN_SPEND_PER_CUSTOMER": 156.1 }, "geometry": { "type": "Point", "coordinates": [ -74.983889, 40.053948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "LOCATION_NAME": "Penrose Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2022, "Total Visits": 779.0, "Total Visitors": 674.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2568.0, "Total Transactions": 51.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.56, "MEDIAN_SPEND_PER_CUSTOMER": 78.38 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047033, "LONGITUDE": -74.993404, "DATE_RANGE_START": 2022, "Total Visits": 510.0, "Total Visitors": 279.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2962.0, "Total Transactions": 373.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.4, "MEDIAN_SPEND_PER_CUSTOMER": 9.15 }, "geometry": { "type": "Point", "coordinates": [ -74.993404, 40.047033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mzf", "LOCATION_NAME": "Passero's Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954206, "LONGITUDE": -75.167446, "DATE_RANGE_START": 2022, "Total Visits": 4749.0, "Total Visitors": 2620.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 40.0, "Total Spend": 3705.0, "Total Transactions": 530.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.55, "MEDIAN_SPEND_PER_CUSTOMER": 15.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167446, 39.954206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2022, "Total Visits": 756.0, "Total Visitors": 538.0, "POI_CBG": 421010348022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7617.0, "Total Transactions": 805.0, "Total Customers": 444.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 84.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 657.0, "Total Transactions": 91.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.45, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22c@63s-dw9-7nq", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.878147, "LONGITUDE": -75.237777, "DATE_RANGE_START": 2022, "Total Visits": 2561.0, "Total Visitors": 2451.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2885.0, "Total Transactions": 200.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.18, "MEDIAN_SPEND_PER_CUSTOMER": 19.54 }, "geometry": { "type": "Point", "coordinates": [ -75.237777, 39.878147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2022, "Total Visits": 913.0, "Total Visitors": 545.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 421.0, "Total Spend": 20148.0, "Total Transactions": 383.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 77.76 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-fvf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033336, "LONGITUDE": -75.176853, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 122.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 761.0, "Total Transactions": 33.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.75, "MEDIAN_SPEND_PER_CUSTOMER": 35.81 }, "geometry": { "type": "Point", "coordinates": [ -75.176853, 40.033336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9973, "LONGITUDE": -75.092737, "DATE_RANGE_START": 2022, "Total Visits": 1110.0, "Total Visitors": 883.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 39097.0, "Total Transactions": 2173.0, "Total Customers": 1394.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.19, "MEDIAN_SPEND_PER_CUSTOMER": 19.48 }, "geometry": { "type": "Point", "coordinates": [ -75.092737, 39.9973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 265.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4197.0, "Total Transactions": 481.0, "Total Customers": 326.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.66, "MEDIAN_SPEND_PER_CUSTOMER": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "LOCATION_NAME": "Capriccio Cafe and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955464, "LONGITUDE": -75.166555, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 124.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2119.0, "Total Transactions": 192.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.32, "MEDIAN_SPEND_PER_CUSTOMER": 19.11 }, "geometry": { "type": "Point", "coordinates": [ -75.166555, 39.955464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pm9-vxq", "LOCATION_NAME": "Wyndam Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952228, "LONGITUDE": -75.147286, "DATE_RANGE_START": 2022, "Total Visits": 3082.0, "Total Visitors": 1641.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 435.0, "Total Spend": 52.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147286, 39.952228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "LOCATION_NAME": "Dragon Phoenix House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 99.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 156.0, "Total Spend": 2243.0, "Total Transactions": 70.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.27, "MEDIAN_SPEND_PER_CUSTOMER": 55.86 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "LOCATION_NAME": "New England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 202.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1893.0, "Total Transactions": 68.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.7, "MEDIAN_SPEND_PER_CUSTOMER": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfy-zj9", "LOCATION_NAME": "Mike's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022539, "LONGITUDE": -75.218415, "DATE_RANGE_START": 2022, "Total Visits": 540.0, "Total Visitors": 441.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 54.0, "Total Spend": 6584.0, "Total Transactions": 575.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218415, 40.022539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22q@628-pmb-835", "LOCATION_NAME": "Pearl's Oyster Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95321, "LONGITUDE": -75.159401, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 10993.0, "Total Transactions": 362.0, "Total Customers": 176.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.82, "MEDIAN_SPEND_PER_CUSTOMER": 49.68 }, "geometry": { "type": "Point", "coordinates": [ -75.159401, 39.95321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "LOCATION_NAME": "La Tienda MiniMarket", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 2.0, "Total Spend": 83.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.72 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "LOCATION_NAME": "Convenient Food Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.034523, "LONGITUDE": -75.044217, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 51.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 15011.0, "Total Transactions": 1143.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.37, "MEDIAN_SPEND_PER_CUSTOMER": 25.06 }, "geometry": { "type": "Point", "coordinates": [ -75.044217, 40.034523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-ph6-cdv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979947, "LONGITUDE": -75.248732, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 213.0, "POI_CBG": 421010114001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 927.0, "Total Transactions": 70.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.55, "MEDIAN_SPEND_PER_CUSTOMER": 11.78 }, "geometry": { "type": "Point", "coordinates": [ -75.248732, 39.979947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phj-rrk", "LOCATION_NAME": "Sunny Side Breakfast & Lunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071002, "LONGITUDE": -75.157739, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 35.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1512.0, "Total Transactions": 63.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.3, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157739, 40.071002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 134.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 6.0, "Total Spend": 10742.0, "Total Transactions": 551.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 22.92 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-rc5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977844, "LONGITUDE": -75.118479, "DATE_RANGE_START": 2022, "Total Visits": 479.0, "Total Visitors": 361.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 23550.0, "Total Transactions": 1105.0, "Total Customers": 645.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.82, "MEDIAN_SPEND_PER_CUSTOMER": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.118479, 39.977844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046821, "LONGITUDE": -75.055507, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 77.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2386.0, "Total Transactions": 61.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.98, "MEDIAN_SPEND_PER_CUSTOMER": 31.49 }, "geometry": { "type": "Point", "coordinates": [ -75.055507, 40.046821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-p7q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.01382, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 61.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 532.0, "Total Transactions": 75.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.42, "MEDIAN_SPEND_PER_CUSTOMER": 6.92 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 40.01382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmb-8sq", "LOCATION_NAME": "South Fellini", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951564, "LONGITUDE": -75.158766, "DATE_RANGE_START": 2022, "Total Visits": 8209.0, "Total Visitors": 6230.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1977.0, "Total Transactions": 40.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 51.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158766, 39.951564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029081, "LONGITUDE": -75.125232, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 192.0, "POI_CBG": 421010286001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 19136.0, "Total Transactions": 395.0, "Total Customers": 291.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.31, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.125232, 40.029081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22h@628-pmb-7yv", "LOCATION_NAME": "Sweet As Fudge Candy Shoppe", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.954075, "LONGITUDE": -75.15933, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 3078.0, "Total Transactions": 225.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.37, "MEDIAN_SPEND_PER_CUSTOMER": 19.19 }, "geometry": { "type": "Point", "coordinates": [ -75.15933, 39.954075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "LOCATION_NAME": "Beer Express", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2022, "Total Visits": 524.0, "Total Visitors": 413.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 19415.0, "Total Transactions": 624.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.34, "MEDIAN_SPEND_PER_CUSTOMER": 69.54 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.004616, "LONGITUDE": -75.104425, "DATE_RANGE_START": 2022, "Total Visits": 253.0, "Total Visitors": 160.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 187.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.9, "MEDIAN_SPEND_PER_CUSTOMER": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.104425, 40.004616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvw-9pv", "LOCATION_NAME": "52nd Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963376, "LONGITUDE": -75.224566, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010093005.0, "MEDIAN_DWELL": 512.0, "Total Spend": 1714.0, "Total Transactions": 117.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224566, 39.963376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "LOCATION_NAME": "Trattoria Carina", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010008011.0, "MEDIAN_DWELL": 31.0, "Total Spend": 3808.0, "Total Transactions": 35.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 107.22, "MEDIAN_SPEND_PER_CUSTOMER": 117.96 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "LOCATION_NAME": "Reyes Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.961179, "LONGITUDE": -75.244847, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 21.0, "POI_CBG": 421010083011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2641.0, "Total Transactions": 338.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 21.41 }, "geometry": { "type": "Point", "coordinates": [ -75.244847, 39.961179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025386, "LONGITUDE": -75.223869, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1657.0, "Total Transactions": 49.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.46, "MEDIAN_SPEND_PER_CUSTOMER": 64.76 }, "geometry": { "type": "Point", "coordinates": [ -75.223869, 40.025386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pp5-k4v", "LOCATION_NAME": "Ho Le Chan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987263, "LONGITUDE": -75.109046, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1699.0, "Total Transactions": 31.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.75, "MEDIAN_SPEND_PER_CUSTOMER": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109046, 39.987263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgf-6zf", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.963777, "LONGITUDE": -75.203645, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 28.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1683.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.0, "MEDIAN_SPEND_PER_CUSTOMER": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203645, 39.963777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pj4-qj9", "LOCATION_NAME": "Peralta Beer Distributor", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.007458, "LONGITUDE": -75.14105, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 122.0, "POI_CBG": 421010199002.0, "MEDIAN_DWELL": 105.0, "Total Spend": 150.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.0, "MEDIAN_SPEND_PER_CUSTOMER": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14105, 40.007458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-7bk", "LOCATION_NAME": "VIP Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.94892, "LONGITUDE": -75.162809, "DATE_RANGE_START": 2022, "Total Visits": 375.0, "Total Visitors": 244.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 119.0, "Total Spend": 49963.0, "Total Transactions": 3077.0, "Total Customers": 835.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.35, "MEDIAN_SPEND_PER_CUSTOMER": 31.24 }, "geometry": { "type": "Point", "coordinates": [ -75.162809, 39.94892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-ckf", "LOCATION_NAME": "Tran Beer Dist", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.924541, "LONGITUDE": -75.173565, "DATE_RANGE_START": 2022, "Total Visits": 280.0, "Total Visitors": 179.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 36.0, "Total Spend": 1805.0, "Total Transactions": 73.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173565, 39.924541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947336, "LONGITUDE": -75.228833, "DATE_RANGE_START": 2022, "Total Visits": 343.0, "Total Visitors": 265.0, "POI_CBG": 421010073004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 17062.0, "Total Transactions": 869.0, "Total Customers": 519.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.91, "MEDIAN_SPEND_PER_CUSTOMER": 20.32 }, "geometry": { "type": "Point", "coordinates": [ -75.228833, 39.947336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w49", "LOCATION_NAME": "The Children's Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087614, "LONGITUDE": -74.96103, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 197.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.68, "MEDIAN_SPEND_PER_CUSTOMER": 56.68 }, "geometry": { "type": "Point", "coordinates": [ -74.96103, 40.087614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-92k", "LOCATION_NAME": "Kate Spade", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952238, "LONGITUDE": -75.155945, "DATE_RANGE_START": 2022, "Total Visits": 564.0, "Total Visitors": 493.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6551.0, "Total Transactions": 57.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 112.32, "MEDIAN_SPEND_PER_CUSTOMER": 112.32 }, "geometry": { "type": "Point", "coordinates": [ -75.155945, 39.952238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "LOCATION_NAME": "Shoe Carnival", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.049924, "LONGITUDE": -75.062397, "DATE_RANGE_START": 2022, "Total Visits": 556.0, "Total Visitors": 498.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 9881.0, "Total Transactions": 160.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 59.98 }, "geometry": { "type": "Point", "coordinates": [ -75.062397, 40.049924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmf-j5f", "LOCATION_NAME": "Lagos", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950375, "LONGITUDE": -75.170461, "DATE_RANGE_START": 2022, "Total Visits": 2801.0, "Total Visitors": 2228.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 11575.0, "Total Transactions": 19.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 908.38, "MEDIAN_SPEND_PER_CUSTOMER": 600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170461, 39.950375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2022, "Total Visits": 1204.0, "Total Visitors": 768.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 6.0, "Total Spend": 127.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "LOCATION_NAME": "Dollar Mart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2022, "Total Visits": 436.0, "Total Visitors": 321.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3244.0, "Total Transactions": 129.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.46, "MEDIAN_SPEND_PER_CUSTOMER": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p74-wzf", "LOCATION_NAME": "Vista Auto Group", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.038451, "LONGITUDE": -75.03703, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 45.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 60.0, "Total Spend": 9059.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1300.0, "MEDIAN_SPEND_PER_CUSTOMER": 2600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03703, 40.038451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.060844, "LONGITUDE": -75.192031, "DATE_RANGE_START": 2022, "Total Visits": 667.0, "Total Visitors": 503.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 31230.0, "Total Transactions": 2561.0, "Total Customers": 1462.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.68, "MEDIAN_SPEND_PER_CUSTOMER": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.192031, 40.060844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvz-2p9", "LOCATION_NAME": "Chestnut Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956923, "LONGITUDE": -75.214531, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 850.0, "Total Transactions": 31.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 62.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214531, 39.956923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2022, "Total Visits": 822.0, "Total Visitors": 514.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1978.0, "Total Transactions": 112.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.45, "MEDIAN_SPEND_PER_CUSTOMER": 17.41 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951447, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2022, "Total Visits": 751.0, "Total Visitors": 627.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 22474.0, "Total Transactions": 1343.0, "Total Customers": 1004.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.16, "MEDIAN_SPEND_PER_CUSTOMER": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.951447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "LOCATION_NAME": "Express Fuel", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026572, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2022, "Total Visits": 267.0, "Total Visitors": 181.0, "POI_CBG": 421010302004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 59720.0, "Total Transactions": 2439.0, "Total Customers": 591.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-28v", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030475, "LONGITUDE": -75.104415, "DATE_RANGE_START": 2022, "Total Visits": 1646.0, "Total Visitors": 1227.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 556.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.12, "MEDIAN_SPEND_PER_CUSTOMER": 30.12 }, "geometry": { "type": "Point", "coordinates": [ -75.104415, 40.030475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-y7q", "LOCATION_NAME": "Chu Shang Spicy 厨尚麻辣", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95387, "LONGITUDE": -75.155752, "DATE_RANGE_START": 2022, "Total Visits": 362.0, "Total Visitors": 294.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 878.0, "Total Transactions": 19.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.05, "MEDIAN_SPEND_PER_CUSTOMER": 114.53 }, "geometry": { "type": "Point", "coordinates": [ -75.155752, 39.95387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfz-bx5", "LOCATION_NAME": "Manayunk Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024589, "LONGITUDE": -75.221155, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 89.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 70.0, "Total Spend": 9294.0, "Total Transactions": 289.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.22, "MEDIAN_SPEND_PER_CUSTOMER": 60.44 }, "geometry": { "type": "Point", "coordinates": [ -75.221155, 40.024589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-5pv", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982882, "LONGITUDE": -75.10466, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 24.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 576.0, "Total Spend": 2200.0, "Total Transactions": 103.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.78, "MEDIAN_SPEND_PER_CUSTOMER": 33.02 }, "geometry": { "type": "Point", "coordinates": [ -75.10466, 39.982882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-y5f", "LOCATION_NAME": "Mineralistic", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 39.941629, "LONGITUDE": -75.148231, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3598.0, "Total Transactions": 68.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 71.28 }, "geometry": { "type": "Point", "coordinates": [ -75.148231, 39.941629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjj-wzf", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.073365, "LONGITUDE": -75.241949, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 98.0, "POI_CBG": 421010384001.0, "MEDIAN_DWELL": 106.0, "Total Spend": 12150.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 179.18, "MEDIAN_SPEND_PER_CUSTOMER": 486.65 }, "geometry": { "type": "Point", "coordinates": [ -75.241949, 40.073365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2022, "Total Visits": 1357.0, "Total Visitors": 829.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 14.0, "Total Spend": 95474.0, "Total Transactions": 2178.0, "Total Customers": 960.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.61, "MEDIAN_SPEND_PER_CUSTOMER": 51.64 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-jgk", "LOCATION_NAME": "AM Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.971594, "LONGITUDE": -75.225601, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 251.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1511.0, "Total Transactions": 159.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.99, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225601, 39.971594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-6tv", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.015035, "LONGITUDE": -75.178463, "DATE_RANGE_START": 2022, "Total Visits": 782.0, "Total Visitors": 643.0, "POI_CBG": 421010206001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 642.0, "Total Transactions": 23.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178463, 40.015035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm4-k2k", "LOCATION_NAME": "Cellular 2000 LLC", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.93569, "LONGITUDE": -75.155206, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 42.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 408.0, "Total Spend": 707.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.46, "MEDIAN_SPEND_PER_CUSTOMER": 202.91 }, "geometry": { "type": "Point", "coordinates": [ -75.155206, 39.93569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-68v", "LOCATION_NAME": "The Bike Stop", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948357, "LONGITUDE": -75.159979, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 47.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 31.0, "Total Spend": 25265.0, "Total Transactions": 1427.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 53.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159979, 39.948357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgk-psq", "LOCATION_NAME": "West Village Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.003325, "LONGITUDE": -75.207238, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 71.0, "POI_CBG": 421010122012.0, "MEDIAN_DWELL": 521.0, "Total Spend": 149.0, "Total Transactions": 23.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.36, "MEDIAN_SPEND_PER_CUSTOMER": 8.72 }, "geometry": { "type": "Point", "coordinates": [ -75.207238, 40.003325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.068237, "LONGITUDE": -75.156911, "DATE_RANGE_START": 2022, "Total Visits": 1481.0, "Total Visitors": 960.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1469.0, "Total Transactions": 44.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.14, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156911, 40.068237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-b49", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030422, "LONGITUDE": -75.153419, "DATE_RANGE_START": 2022, "Total Visits": 941.0, "Total Visitors": 632.0, "POI_CBG": 421010280003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 377.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.85, "MEDIAN_SPEND_PER_CUSTOMER": 31.58 }, "geometry": { "type": "Point", "coordinates": [ -75.153419, 40.030422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-mrk", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.959821, "LONGITUDE": -75.225314, "DATE_RANGE_START": 2022, "Total Visits": 14863.0, "Total Visitors": 5896.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 41.0, "Total Spend": 3185.0, "Total Transactions": 59.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.49, "MEDIAN_SPEND_PER_CUSTOMER": 54.98 }, "geometry": { "type": "Point", "coordinates": [ -75.225314, 39.959821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043781, "LONGITUDE": -75.017638, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 143.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 270.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.37, "MEDIAN_SPEND_PER_CUSTOMER": 14.37 }, "geometry": { "type": "Point", "coordinates": [ -75.017638, 40.043781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgh-cwk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.003103, "LONGITUDE": -75.162138, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 71.0, "POI_CBG": 421010202001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 582.0, "Total Transactions": 56.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.18, "MEDIAN_SPEND_PER_CUSTOMER": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.162138, 40.003103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pj9-yvz", "LOCATION_NAME": "Rose Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.037453, "LONGITUDE": -75.130447, "DATE_RANGE_START": 2022, "Total Visits": 885.0, "Total Visitors": 420.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 363.0, "Total Spend": 1552.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 189.0, "MEDIAN_SPEND_PER_CUSTOMER": 378.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130447, 40.037453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6zf", "LOCATION_NAME": "Royal Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.085942, "LONGITUDE": -74.962636, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 103.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6986.0, "Total Transactions": 31.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.0, "MEDIAN_SPEND_PER_CUSTOMER": 170.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962636, 40.085942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034271, "LONGITUDE": -75.216406, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 112.0, "POI_CBG": 421010213002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1922.0, "Total Transactions": 155.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.52, "MEDIAN_SPEND_PER_CUSTOMER": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.216406, 40.034271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038624, "LONGITUDE": -75.106851, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 49.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7182.0, "Total Transactions": 389.0, "Total Customers": 326.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.66, "MEDIAN_SPEND_PER_CUSTOMER": 16.93 }, "geometry": { "type": "Point", "coordinates": [ -75.106851, 40.038624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95261, "LONGITUDE": -75.174957, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 160.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 183.0, "Total Spend": 1104.0, "Total Transactions": 68.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.44, "MEDIAN_SPEND_PER_CUSTOMER": 26.81 }, "geometry": { "type": "Point", "coordinates": [ -75.174957, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "LOCATION_NAME": "Banana Leaf", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953737, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 155.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 6592.0, "Total Transactions": 181.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.15, "MEDIAN_SPEND_PER_CUSTOMER": 47.22 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.953737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-s89", "LOCATION_NAME": "Pen and Pencil", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948013, "LONGITUDE": -75.167208, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 49.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6249.0, "Total Transactions": 148.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 107.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167208, 39.948013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmd-rkz", "LOCATION_NAME": "Fitler Square Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.947217, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 56.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1070.0, "Total Transactions": 40.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.59, "MEDIAN_SPEND_PER_CUSTOMER": 36.96 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.947217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008821, "LONGITUDE": -75.175673, "DATE_RANGE_START": 2022, "Total Visits": 472.0, "Total Visitors": 354.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1366.0, "Total Transactions": 89.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.92, "MEDIAN_SPEND_PER_CUSTOMER": 14.64 }, "geometry": { "type": "Point", "coordinates": [ -75.175673, 40.008821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7b-qpv", "LOCATION_NAME": "Alfreds Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.064373, "LONGITUDE": -75.02133, "DATE_RANGE_START": 2022, "Total Visits": 211.0, "Total Visitors": 159.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1864.0, "Total Transactions": 64.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 65.98 }, "geometry": { "type": "Point", "coordinates": [ -75.02133, 40.064373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "LOCATION_NAME": "3 Brothers Pizza & Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 16.0, "POI_CBG": 421010379002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 756.0, "Total Transactions": 37.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 30.12 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.924926, "LONGITUDE": -75.169063, "DATE_RANGE_START": 2022, "Total Visits": 991.0, "Total Visitors": 558.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 13.0, "Total Spend": 23111.0, "Total Transactions": 1134.0, "Total Customers": 571.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.49, "MEDIAN_SPEND_PER_CUSTOMER": 25.95 }, "geometry": { "type": "Point", "coordinates": [ -75.169063, 39.924926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p75-9vf", "LOCATION_NAME": "Ashburner Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040603, "LONGITUDE": -75.015474, "DATE_RANGE_START": 2022, "Total Visits": 312.0, "Total Visitors": 265.0, "POI_CBG": 421010349003.0, "MEDIAN_DWELL": 81.0, "Total Spend": 4731.0, "Total Transactions": 98.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.3, "MEDIAN_SPEND_PER_CUSTOMER": 102.78 }, "geometry": { "type": "Point", "coordinates": [ -75.015474, 40.040603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22b@628-phd-q75", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002688, "LONGITUDE": -75.214249, "DATE_RANGE_START": 2022, "Total Visits": 1854.0, "Total Visitors": 1120.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5584.0, "Total Transactions": 392.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.214249, 40.002688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-y9z", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93105, "LONGITUDE": -75.226248, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 148.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4821.0, "Total Transactions": 277.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226248, 39.93105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.134399, "LONGITUDE": -75.01003, "DATE_RANGE_START": 2022, "Total Visits": 763.0, "Total Visitors": 606.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4035.0, "Total Transactions": 261.0, "Total Customers": 164.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01003, 40.134399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-ks5", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95206, "LONGITUDE": -75.145094, "DATE_RANGE_START": 2022, "Total Visits": 216.0, "Total Visitors": 190.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5391.0, "Total Transactions": 592.0, "Total Customers": 394.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.38, "MEDIAN_SPEND_PER_CUSTOMER": 9.94 }, "geometry": { "type": "Point", "coordinates": [ -75.145094, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-p9z", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.014187, "LONGITUDE": -75.131595, "DATE_RANGE_START": 2022, "Total Visits": 939.0, "Total Visitors": 620.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 891.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.26, "MEDIAN_SPEND_PER_CUSTOMER": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.131595, 40.014187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-3wk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.09991, "LONGITUDE": -75.009414, "DATE_RANGE_START": 2022, "Total Visits": 1819.0, "Total Visitors": 1343.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 905.0, "Total Transactions": 28.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.56, "MEDIAN_SPEND_PER_CUSTOMER": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.009414, 40.09991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.91807, "LONGITUDE": -75.17894, "DATE_RANGE_START": 2022, "Total Visits": 2193.0, "Total Visitors": 1246.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 392.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.16, "MEDIAN_SPEND_PER_CUSTOMER": 60.51 }, "geometry": { "type": "Point", "coordinates": [ -75.17894, 39.91807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pm9-t7q", "LOCATION_NAME": "R N Diamonds", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.948676, "LONGITUDE": -75.154309, "DATE_RANGE_START": 2022, "Total Visits": 1608.0, "Total Visitors": 1221.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1942.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 152.0, "MEDIAN_SPEND_PER_CUSTOMER": 557.44 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.948676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.100724, "LONGITUDE": -75.010588, "DATE_RANGE_START": 2022, "Total Visits": 848.0, "Total Visitors": 657.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5642.0, "Total Transactions": 132.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.91, "MEDIAN_SPEND_PER_CUSTOMER": 25.07 }, "geometry": { "type": "Point", "coordinates": [ -75.010588, 40.100724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "LOCATION_NAME": "Mulberry Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951945, "LONGITUDE": -75.144635, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 61.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 22318.0, "Total Transactions": 1115.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.4, "MEDIAN_SPEND_PER_CUSTOMER": 42.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144635, 39.951945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996676, "LONGITUDE": -75.089544, "DATE_RANGE_START": 2022, "Total Visits": 681.0, "Total Visitors": 531.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 28114.0, "Total Transactions": 662.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.62, "MEDIAN_SPEND_PER_CUSTOMER": 41.24 }, "geometry": { "type": "Point", "coordinates": [ -75.089544, 39.996676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": null, "Total Spend": 21854.0, "Total Transactions": 2394.0, "Total Customers": 660.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mff", "LOCATION_NAME": "Family Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006057, "LONGITUDE": -75.096664, "DATE_RANGE_START": 2022, "Total Visits": 2204.0, "Total Visitors": 1373.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2045.0, "Total Transactions": 176.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.14, "MEDIAN_SPEND_PER_CUSTOMER": 22.84 }, "geometry": { "type": "Point", "coordinates": [ -75.096664, 40.006057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "LOCATION_NAME": "Hong Kong Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2022, "Total Visits": 554.0, "Total Visitors": 402.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2897.0, "Total Transactions": 54.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.08, "MEDIAN_SPEND_PER_CUSTOMER": 79.06 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "LOCATION_NAME": "Garden's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010139003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1979.0, "Total Transactions": 136.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.64, "MEDIAN_SPEND_PER_CUSTOMER": 26.85 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "LOCATION_NAME": "Jo-Ann Fabric and Craft Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 226.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 9714.0, "Total Transactions": 254.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.81, "MEDIAN_SPEND_PER_CUSTOMER": 33.75 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2022, "Total Visits": 287.0, "Total Visitors": 178.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 579.0, "Total Spend": 30944.0, "Total Transactions": 2122.0, "Total Customers": 758.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.97, "MEDIAN_SPEND_PER_CUSTOMER": 29.38 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 145.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3092.0, "Total Transactions": 315.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.15, "MEDIAN_SPEND_PER_CUSTOMER": 8.21 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "LOCATION_NAME": "Stargazy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": null, "Total Spend": 1104.0, "Total Transactions": 57.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.65, "MEDIAN_SPEND_PER_CUSTOMER": 29.77 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-235@628-pmf-jd9", "LOCATION_NAME": "The Men's Wearhouse", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951253, "LONGITUDE": -75.168383, "DATE_RANGE_START": 2022, "Total Visits": 826.0, "Total Visitors": 570.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 265.0, "Total Spend": 6595.0, "Total Transactions": 40.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 189.98, "MEDIAN_SPEND_PER_CUSTOMER": 205.19 }, "geometry": { "type": "Point", "coordinates": [ -75.168383, 39.951253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-2kz", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075387, "LONGITUDE": -75.03207, "DATE_RANGE_START": 2022, "Total Visits": 902.0, "Total Visitors": 815.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 274.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.65, "MEDIAN_SPEND_PER_CUSTOMER": 78.65 }, "geometry": { "type": "Point", "coordinates": [ -75.03207, 40.075387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-fs5", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.919174, "LONGITUDE": -75.184979, "DATE_RANGE_START": 2022, "Total Visits": 486.0, "Total Visitors": 430.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1410.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.68, "MEDIAN_SPEND_PER_CUSTOMER": 48.76 }, "geometry": { "type": "Point", "coordinates": [ -75.184979, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pgy-ks5", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.064304, "LONGITUDE": -75.236768, "DATE_RANGE_START": 2022, "Total Visits": 1004.0, "Total Visitors": 263.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 13764.0, "Total Transactions": 321.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.9, "MEDIAN_SPEND_PER_CUSTOMER": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.236768, 40.064304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "LOCATION_NAME": "Grossman Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.951777, "LONGITUDE": -75.14359, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 162.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 467.0, "Total Spend": 16410.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 2319.84, "MEDIAN_SPEND_PER_CUSTOMER": 4639.68 }, "geometry": { "type": "Point", "coordinates": [ -75.14359, 39.951777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-mx5", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006784, "LONGITUDE": -75.097559, "DATE_RANGE_START": 2022, "Total Visits": 580.0, "Total Visitors": 401.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 561.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.05, "MEDIAN_SPEND_PER_CUSTOMER": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.097559, 40.006784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "LOCATION_NAME": "L'anima", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 836.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.44, "MEDIAN_SPEND_PER_CUSTOMER": 104.66 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "LOCATION_NAME": "Yummy Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 273.0, "Total Spend": 3863.0, "Total Transactions": 188.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-835", "LOCATION_NAME": "3J's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963054, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 37841.0, "Total Transactions": 2617.0, "Total Customers": 767.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.89, "MEDIAN_SPEND_PER_CUSTOMER": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.936469, "LONGITUDE": -75.160327, "DATE_RANGE_START": 2022, "Total Visits": 1756.0, "Total Visitors": 1312.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2585.0, "Total Transactions": 51.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.01, "MEDIAN_SPEND_PER_CUSTOMER": 50.48 }, "geometry": { "type": "Point", "coordinates": [ -75.160327, 39.936469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dwf-q2k", "LOCATION_NAME": "Marathon", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.913427, "LONGITUDE": -75.243685, "DATE_RANGE_START": 2022, "Total Visits": 308.0, "Total Visitors": 246.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3196.0, "Total Transactions": 78.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.33, "MEDIAN_SPEND_PER_CUSTOMER": 49.21 }, "geometry": { "type": "Point", "coordinates": [ -75.243685, 39.913427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-gzf", "LOCATION_NAME": "AnM Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.023031, "LONGITUDE": -75.134802, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 87.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8987.0, "Total Transactions": 551.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134802, 40.023031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-qpv", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007797, "LONGITUDE": -75.141965, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010199002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 169.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.23, "MEDIAN_SPEND_PER_CUSTOMER": 48.45 }, "geometry": { "type": "Point", "coordinates": [ -75.141965, 40.007797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.915644, "LONGITUDE": -75.139656, "DATE_RANGE_START": 2022, "Total Visits": 448.0, "Total Visitors": 364.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1535.0, "Total Transactions": 101.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.59, "MEDIAN_SPEND_PER_CUSTOMER": 14.78 }, "geometry": { "type": "Point", "coordinates": [ -75.139656, 39.915644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-y9z", "LOCATION_NAME": "The Pet Snobs Boutique", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.942339, "LONGITUDE": -75.157237, "DATE_RANGE_START": 2022, "Total Visits": 1225.0, "Total Visitors": 791.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 146.0, "Total Spend": 2004.0, "Total Transactions": 16.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.8, "MEDIAN_SPEND_PER_CUSTOMER": 189.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157237, 39.942339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj2-7bk", "LOCATION_NAME": "Pizza House Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.997808, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 51.0, "POI_CBG": 421010177023.0, "MEDIAN_DWELL": 53.0, "Total Spend": 608.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.8, "MEDIAN_SPEND_PER_CUSTOMER": 41.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.997808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-224@628-pmf-j7q", "LOCATION_NAME": "Flower Expressions", "TOP_CATEGORY": "Florists", "LATITUDE": 39.951224, "LONGITUDE": -75.170326, "DATE_RANGE_START": 2022, "Total Visits": 1946.0, "Total Visitors": 1375.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 230.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.33, "MEDIAN_SPEND_PER_CUSTOMER": 7.33 }, "geometry": { "type": "Point", "coordinates": [ -75.170326, 39.951224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-zxq", "LOCATION_NAME": "Federal Donuts South Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94181, "LONGITUDE": -75.152224, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 108.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 24541.0, "Total Transactions": 1706.0, "Total Customers": 760.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 25.94 }, "geometry": { "type": "Point", "coordinates": [ -75.152224, 39.94181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-pmf-wtv", "LOCATION_NAME": "Menagerie", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.953529, "LONGITUDE": -75.179339, "DATE_RANGE_START": 2022, "Total Visits": 3955.0, "Total Visitors": 2878.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 211.0, "Total Spend": 47.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179339, 39.953529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm4-mc5", "LOCATION_NAME": "Meat Market El Pueblo", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.935181, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 94.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1492.0, "Total Transactions": 59.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.935181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "LOCATION_NAME": "Liberty Time", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2022, "Total Visits": 3983.0, "Total Visitors": 3178.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1918.0, "Total Transactions": 35.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.18, "MEDIAN_SPEND_PER_CUSTOMER": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-d5f", "LOCATION_NAME": "Allen Tire & Service", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.019598, "LONGITUDE": -75.06328, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 17.0, "POI_CBG": 421010319003.0, "MEDIAN_DWELL": 342.0, "Total Spend": 1429.0, "Total Transactions": 14.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.84, "MEDIAN_SPEND_PER_CUSTOMER": 388.54 }, "geometry": { "type": "Point", "coordinates": [ -75.06328, 40.019598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pm9-wc5", "LOCATION_NAME": "Rebel Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949731, "LONGITUDE": -75.148051, "DATE_RANGE_START": 2022, "Total Visits": 4265.0, "Total Visitors": 3429.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 266.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.08, "MEDIAN_SPEND_PER_CUSTOMER": 24.16 }, "geometry": { "type": "Point", "coordinates": [ -75.148051, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 458.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9302.0, "Total Transactions": 667.0, "Total Customers": 537.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.01, "MEDIAN_SPEND_PER_CUSTOMER": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-v75", "LOCATION_NAME": "Margherita Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948535, "LONGITUDE": -75.144159, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 75.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8253.0, "Total Transactions": 742.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954762, "LONGITUDE": -75.202149, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 105.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 20.0, "Total Spend": 7270.0, "Total Transactions": 1094.0, "Total Customers": 521.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.49, "MEDIAN_SPEND_PER_CUSTOMER": 8.55 }, "geometry": { "type": "Point", "coordinates": [ -75.202149, 39.954762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dvw-bhq", "LOCATION_NAME": "Yummy Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961114, "LONGITUDE": -75.224901, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 7.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 455.0, "Total Spend": 386.0, "Total Transactions": 30.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.99, "MEDIAN_SPEND_PER_CUSTOMER": 16.52 }, "geometry": { "type": "Point", "coordinates": [ -75.224901, 39.961114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "LOCATION_NAME": "A Lin Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": null, "Total Spend": 1248.0, "Total Transactions": 42.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.43, "MEDIAN_SPEND_PER_CUSTOMER": 67.25 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 17.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 398.0, "Total Spend": 17423.0, "Total Transactions": 1261.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 26.07 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967006, "LONGITUDE": -75.169701, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 240.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 45809.0, "Total Transactions": 2850.0, "Total Customers": 1469.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.169701, 39.967006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pvz", "LOCATION_NAME": "Fiorella's Sausage", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.939102, "LONGITUDE": -75.156801, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": null, "Total Spend": 4378.0, "Total Transactions": 37.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.5, "MEDIAN_SPEND_PER_CUSTOMER": 142.93 }, "geometry": { "type": "Point", "coordinates": [ -75.156801, 39.939102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "263-222@628-pm3-y5f", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934047, "LONGITUDE": -75.166057, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 21.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 93.0, "Total Spend": 477.0, "Total Transactions": 44.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.8, "MEDIAN_SPEND_PER_CUSTOMER": 22.04 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 39.934047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp4-zfz", "LOCATION_NAME": "Liberty Gas Station", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991196, "LONGITUDE": -75.131119, "DATE_RANGE_START": 2022, "Total Visits": 364.0, "Total Visitors": 254.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1493.0, "Total Transactions": 59.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.71, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131119, 39.991196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "LOCATION_NAME": "El Vez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2022, "Total Visits": 787.0, "Total Visitors": 639.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 148763.0, "Total Transactions": 2030.0, "Total Customers": 1019.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.12, "MEDIAN_SPEND_PER_CUSTOMER": 111.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pj4-3qz", "LOCATION_NAME": "Crazy Wave", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.017645, "LONGITUDE": -75.148812, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 57.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7643.0, "Total Transactions": 251.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.87, "MEDIAN_SPEND_PER_CUSTOMER": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 40.017645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "LOCATION_NAME": "Crown Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2022, "Total Visits": 997.0, "Total Visitors": 690.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5566.0, "Total Transactions": 199.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.16, "MEDIAN_SPEND_PER_CUSTOMER": 52.8 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22n@63s-dw9-7nq", "LOCATION_NAME": "Sunglass Hut", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.873547, "LONGITUDE": -75.247282, "DATE_RANGE_START": 2022, "Total Visits": 6122.0, "Total Visitors": 5850.0, "POI_CBG": 420459800001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 4843.0, "Total Transactions": 23.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 220.32, "MEDIAN_SPEND_PER_CUSTOMER": 220.32 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.873547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-p9q-hqz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079591, "LONGITUDE": -75.027394, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 73.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1694.0, "Total Transactions": 98.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.55, "MEDIAN_SPEND_PER_CUSTOMER": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.027394, 40.079591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026583, "LONGITUDE": -75.209516, "DATE_RANGE_START": 2022, "Total Visits": 918.0, "Total Visitors": 697.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1794.0, "Total Transactions": 47.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.29, "MEDIAN_SPEND_PER_CUSTOMER": 46.02 }, "geometry": { "type": "Point", "coordinates": [ -75.209516, 40.026583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.912374, "LONGITUDE": -75.156918, "DATE_RANGE_START": 2022, "Total Visits": 1437.0, "Total Visitors": 1160.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 22.0, "Total Spend": 4571.0, "Total Transactions": 80.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.03, "MEDIAN_SPEND_PER_CUSTOMER": 45.02 }, "geometry": { "type": "Point", "coordinates": [ -75.156918, 39.912374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-3wk", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.920324, "LONGITUDE": -75.186369, "DATE_RANGE_START": 2022, "Total Visits": 228.0, "Total Visitors": 200.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1286.0, "Total Transactions": 42.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.49, "MEDIAN_SPEND_PER_CUSTOMER": 21.99 }, "geometry": { "type": "Point", "coordinates": [ -75.186369, 39.920324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "LOCATION_NAME": "Cold Stone Creamery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978153, "LONGITUDE": -75.119499, "DATE_RANGE_START": 2022, "Total Visits": 228.0, "Total Visitors": 190.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6078.0, "Total Transactions": 350.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.64 }, "geometry": { "type": "Point", "coordinates": [ -75.119499, 39.978153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-xbk", "LOCATION_NAME": "Gear N Up", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.985537, "LONGITUDE": -75.132208, "DATE_RANGE_START": 2022, "Total Visits": 11866.0, "Total Visitors": 4392.0, "POI_CBG": 421010163004.0, "MEDIAN_DWELL": 220.0, "Total Spend": 1174.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.5, "MEDIAN_SPEND_PER_CUSTOMER": 147.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132208, 39.985537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2022, "Total Visits": 497.0, "Total Visitors": 404.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 675.0, "Total Transactions": 31.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.01, "MEDIAN_SPEND_PER_CUSTOMER": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2022, "Total Visits": 1044.0, "Total Visitors": 749.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 106.0, "Total Spend": 8951.0, "Total Transactions": 301.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-bhq", "LOCATION_NAME": "China House II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912259, "LONGITUDE": -75.233384, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 19.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 869.0, "Total Transactions": 14.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.77, "MEDIAN_SPEND_PER_CUSTOMER": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233384, 39.912259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pnw-mx5", "LOCATION_NAME": "Stump", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 39.96557, "LONGITUDE": -75.14068, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 93.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.79, "MEDIAN_SPEND_PER_CUSTOMER": 26.79 }, "geometry": { "type": "Point", "coordinates": [ -75.14068, 39.96557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "LOCATION_NAME": "Falafel Time", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 449.0, "Total Spend": 284.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phq-2hq", "LOCATION_NAME": "Suzy Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.060068, "LONGITUDE": -75.165918, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 35.0, "POI_CBG": 421010264005.0, "MEDIAN_DWELL": 189.0, "Total Spend": 1291.0, "Total Transactions": 42.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.07, "MEDIAN_SPEND_PER_CUSTOMER": 42.06 }, "geometry": { "type": "Point", "coordinates": [ -75.165918, 40.060068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-9mk", "LOCATION_NAME": "Bravo Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010647, "LONGITUDE": -75.151533, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 45.0, "POI_CBG": 421010201021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2432.0, "Total Transactions": 96.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.94, "MEDIAN_SPEND_PER_CUSTOMER": 50.43 }, "geometry": { "type": "Point", "coordinates": [ -75.151533, 40.010647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-wzf", "LOCATION_NAME": "Sloane Honda", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.094883, "LONGITUDE": -75.029846, "DATE_RANGE_START": 2022, "Total Visits": 1460.0, "Total Visitors": 962.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 30.0, "Total Spend": 226.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.99, "MEDIAN_SPEND_PER_CUSTOMER": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.029846, 40.094883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 267.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 91.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.96, "MEDIAN_SPEND_PER_CUSTOMER": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950896, "LONGITUDE": -75.166342, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 92.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 6651.0, "Total Transactions": 542.0, "Total Customers": 397.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166342, 39.950896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-t35", "LOCATION_NAME": "Suprema Coffee Roastery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945926, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2022, "Total Visits": 1787.0, "Total Visitors": 1105.0, "POI_CBG": 421010012021.0, "MEDIAN_DWELL": 66.0, "Total Spend": 148.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.75, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.945926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-x89", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970205, "LONGITUDE": -75.147863, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 251.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 116.0, "Total Spend": 348.0, "Total Transactions": 38.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147863, 39.970205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfv-94v", "LOCATION_NAME": "Wild Hand", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.046119, "LONGITUDE": -75.195912, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 52.0, "POI_CBG": 421010236003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1012.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.17, "MEDIAN_SPEND_PER_CUSTOMER": 290.34 }, "geometry": { "type": "Point", "coordinates": [ -75.195912, 40.046119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.002434, "LONGITUDE": -75.100336, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 54.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 67879.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 761.13, "MEDIAN_SPEND_PER_CUSTOMER": 765.18 }, "geometry": { "type": "Point", "coordinates": [ -75.100336, 40.002434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "LOCATION_NAME": "Jetro Cash & Carry", "TOP_CATEGORY": "Grocery and Related Product Merchant Wholesalers", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2022, "Total Visits": 2693.0, "Total Visitors": 1927.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 628531.0, "Total Transactions": 770.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 473.7, "MEDIAN_SPEND_PER_CUSTOMER": 837.71 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.012783, "LONGITUDE": -75.150904, "DATE_RANGE_START": 2022, "Total Visits": 530.0, "Total Visitors": 369.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 18692.0, "Total Transactions": 341.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.72, "MEDIAN_SPEND_PER_CUSTOMER": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.150904, 40.012783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "LOCATION_NAME": "Wilson's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 183.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 917.0, "Total Transactions": 61.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.11, "MEDIAN_SPEND_PER_CUSTOMER": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wkz", "LOCATION_NAME": "Xenos Candy 'N' Gifts", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948713, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2022, "Total Visits": 3399.0, "Total Visitors": 2453.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 70.0, "Total Spend": 146.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.36, "MEDIAN_SPEND_PER_CUSTOMER": 24.79 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.948713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.085969, "LONGITUDE": -75.04681, "DATE_RANGE_START": 2022, "Total Visits": 514.0, "Total Visitors": 362.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 12244.0, "Total Transactions": 676.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.2, "MEDIAN_SPEND_PER_CUSTOMER": 20.44 }, "geometry": { "type": "Point", "coordinates": [ -75.04681, 40.085969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9q-jsq", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.084384, "LONGITUDE": -75.022786, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 131.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 569.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.99, "MEDIAN_SPEND_PER_CUSTOMER": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.022786, 40.084384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.931302, "LONGITUDE": -75.225599, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 141.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 912.0, "Total Transactions": 112.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.34, "MEDIAN_SPEND_PER_CUSTOMER": 7.63 }, "geometry": { "type": "Point", "coordinates": [ -75.225599, 39.931302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p9w-4sq", "LOCATION_NAME": "Victoria Flower", "TOP_CATEGORY": "Florists", "LATITUDE": 40.110694, "LONGITUDE": -75.023832, "DATE_RANGE_START": 2022, "Total Visits": 249.0, "Total Visitors": 239.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 683.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.52, "MEDIAN_SPEND_PER_CUSTOMER": 149.04 }, "geometry": { "type": "Point", "coordinates": [ -75.023832, 40.110694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.067993, "LONGITUDE": -75.198422, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 94.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 10067.0, "Total Transactions": 239.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.37, "MEDIAN_SPEND_PER_CUSTOMER": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.198422, 40.067993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "LOCATION_NAME": "Lets Grub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2037.0, "Total Transactions": 113.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.92 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pj8-f9f", "LOCATION_NAME": "Oxford Restaurant Breakfast and Lunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029429, "LONGITUDE": -75.084771, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1446.0, "Total Transactions": 9.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 201.99, "MEDIAN_SPEND_PER_CUSTOMER": 414.98 }, "geometry": { "type": "Point", "coordinates": [ -75.084771, 40.029429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "LOCATION_NAME": "Mr Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 35.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3105.0, "Total Transactions": 112.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.28, "MEDIAN_SPEND_PER_CUSTOMER": 49.08 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "LOCATION_NAME": "Dollar Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 207.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 10411.0, "Total Transactions": 540.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 29.22 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvq-dvz", "LOCATION_NAME": "Third Auto Sales Inc", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.94602, "LONGITUDE": -75.229173, "DATE_RANGE_START": 2022, "Total Visits": 267.0, "Total Visitors": 181.0, "POI_CBG": 421010072002.0, "MEDIAN_DWELL": 184.0, "Total Spend": 1330.0, "Total Transactions": 47.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.75, "MEDIAN_SPEND_PER_CUSTOMER": 44.05 }, "geometry": { "type": "Point", "coordinates": [ -75.229173, 39.94602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-2ff", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.057857, "LONGITUDE": -75.164182, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 54.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4462.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.23, "MEDIAN_SPEND_PER_CUSTOMER": 184.07 }, "geometry": { "type": "Point", "coordinates": [ -75.164182, 40.057857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 171.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 8320.0, "Total Transactions": 181.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.51, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-wzf", "LOCATION_NAME": "Firestone Complete Auto Care", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.087378, "LONGITUDE": -75.035984, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 57.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8635.0, "Total Transactions": 35.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 107.34, "MEDIAN_SPEND_PER_CUSTOMER": 115.55 }, "geometry": { "type": "Point", "coordinates": [ -75.035984, 40.087378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm5-fj9", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.913638, "LONGITUDE": -75.149864, "DATE_RANGE_START": 2022, "Total Visits": 554.0, "Total Visitors": 479.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1187.0, "Total Transactions": 44.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.3, "MEDIAN_SPEND_PER_CUSTOMER": 56.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149864, 39.913638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pjf-kvf", "LOCATION_NAME": "Bijoux Fine Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.076914, "LONGITUDE": -75.207677, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 56.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 54.0, "Total Spend": 1148.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 164.7, "MEDIAN_SPEND_PER_CUSTOMER": 329.4 }, "geometry": { "type": "Point", "coordinates": [ -75.207677, 40.076914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.048258, "LONGITUDE": -75.056175, "DATE_RANGE_START": 2022, "Total Visits": 296.0, "Total Visitors": 254.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 11241.0, "Total Transactions": 279.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.98, "MEDIAN_SPEND_PER_CUSTOMER": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.056175, 40.048258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034612, "LONGITUDE": -75.175438, "DATE_RANGE_START": 2022, "Total Visits": 1185.0, "Total Visitors": 772.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 625.0, "Total Transactions": 68.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -75.175438, 40.034612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pmb-kzz", "LOCATION_NAME": "Philadelphia Independents", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.951299, "LONGITUDE": -75.145296, "DATE_RANGE_START": 2022, "Total Visits": 552.0, "Total Visitors": 378.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 79.0, "Total Spend": 649.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145296, 39.951299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947166, "LONGITUDE": -75.157345, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 47.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 233.0, "Total Spend": 2478.0, "Total Transactions": 89.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.93, "MEDIAN_SPEND_PER_CUSTOMER": 36.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157345, 39.947166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-75z", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.964664, "LONGITUDE": -75.205269, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 717.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.01, "MEDIAN_SPEND_PER_CUSTOMER": 28.94 }, "geometry": { "type": "Point", "coordinates": [ -75.205269, 39.964664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-sbk", "LOCATION_NAME": "Howl At The Moon Philadelphia", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947729, "LONGITUDE": -75.166598, "DATE_RANGE_START": 2022, "Total Visits": 289.0, "Total Visitors": 218.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 4.0, "Total Spend": 29849.0, "Total Transactions": 1317.0, "Total Customers": 436.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.75, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166598, 39.947729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "LOCATION_NAME": "Mac Mart Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951438, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 242.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1865.0, "Total Transactions": 131.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.64, "MEDIAN_SPEND_PER_CUSTOMER": 24.88 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "LOCATION_NAME": "Ruth's Chris Steak House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952962, "LONGITUDE": -75.170263, "DATE_RANGE_START": 2022, "Total Visits": 1976.0, "Total Visitors": 1160.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 402.0, "Total Spend": 23805.0, "Total Transactions": 108.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 174.11, "MEDIAN_SPEND_PER_CUSTOMER": 195.65 }, "geometry": { "type": "Point", "coordinates": [ -75.170263, 39.952962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "LOCATION_NAME": "Axis Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95523, "LONGITUDE": -75.194652, "DATE_RANGE_START": 2022, "Total Visits": 906.0, "Total Visitors": 423.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 290.0, "Total Spend": 5549.0, "Total Transactions": 352.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.83, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194652, 39.95523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-85f", "LOCATION_NAME": "North Catholic Book Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.984977, "LONGITUDE": -75.106527, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 103.0, "POI_CBG": 421010180021.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1461.0, "Total Transactions": 110.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.62, "MEDIAN_SPEND_PER_CUSTOMER": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.106527, 39.984977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pm8-pgk", "LOCATION_NAME": "Kasumi Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.910232, "LONGITUDE": -75.186866, "DATE_RANGE_START": 2022, "Total Visits": 1362.0, "Total Visitors": 742.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4054.0, "Total Transactions": 136.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.15, "MEDIAN_SPEND_PER_CUSTOMER": 55.19 }, "geometry": { "type": "Point", "coordinates": [ -75.186866, 39.910232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7bk", "LOCATION_NAME": "Attico Rooftop Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948632, "LONGITUDE": -75.164198, "DATE_RANGE_START": 2022, "Total Visits": 6721.0, "Total Visitors": 4338.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 157.0, "Total Spend": 14130.0, "Total Transactions": 153.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.94, "MEDIAN_SPEND_PER_CUSTOMER": 155.93 }, "geometry": { "type": "Point", "coordinates": [ -75.164198, 39.948632 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm9-y9z", "LOCATION_NAME": "Lil' Pop Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94178, "LONGITUDE": -75.149245, "DATE_RANGE_START": 2022, "Total Visits": 949.0, "Total Visitors": 864.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2254.0, "Total Transactions": 237.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.99, "MEDIAN_SPEND_PER_CUSTOMER": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.94178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-zpv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957784, "LONGITUDE": -75.209056, "DATE_RANGE_START": 2022, "Total Visits": 291.0, "Total Visitors": 214.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 10502.0, "Total Transactions": 606.0, "Total Customers": 474.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 17.69 }, "geometry": { "type": "Point", "coordinates": [ -75.209056, 39.957784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 101.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1129.0, "Total Transactions": 54.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.18, "MEDIAN_SPEND_PER_CUSTOMER": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.980937, "LONGITUDE": -75.144152, "DATE_RANGE_START": 2022, "Total Visits": 1591.0, "Total Visitors": 990.0, "POI_CBG": 421010156002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 18204.0, "Total Transactions": 326.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.79, "MEDIAN_SPEND_PER_CUSTOMER": 93.82 }, "geometry": { "type": "Point", "coordinates": [ -75.144152, 39.980937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvw-mx5", "LOCATION_NAME": "Gaetano's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960076, "LONGITUDE": -75.226758, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 713.0, "Total Transactions": 49.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.63, "MEDIAN_SPEND_PER_CUSTOMER": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226758, 39.960076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 24.0, "POI_CBG": 421010149005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5162.0, "Total Transactions": 453.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.38, "MEDIAN_SPEND_PER_CUSTOMER": 25.78 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8d-m8v", "LOCATION_NAME": "Quicky Mart Express", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.012599, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 68.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1238.0, "Total Transactions": 66.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.13, "MEDIAN_SPEND_PER_CUSTOMER": 54.41 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.012599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "LOCATION_NAME": "El Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 7938.0, "Total Transactions": 437.0, "Total Customers": 209.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.66, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pj8-dqf", "LOCATION_NAME": "Oxford Circle Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033593, "LONGITUDE": -75.085029, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3909.0, "Total Transactions": 122.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.085029, 40.033593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p86-hbk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.075694, "LONGITUDE": -75.084798, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 139.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5678.0, "Total Transactions": 286.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.65, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084798, 40.075694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7x-5zz", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048936, "LONGITUDE": -75.06319, "DATE_RANGE_START": 2022, "Total Visits": 265.0, "Total Visitors": 216.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 329.0, "Total Transactions": 23.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -75.06319, 40.048936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.008773, "LONGITUDE": -75.176588, "DATE_RANGE_START": 2022, "Total Visits": 639.0, "Total Visitors": 411.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 34.0, "Total Spend": 22596.0, "Total Transactions": 564.0, "Total Customers": 369.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.34, "MEDIAN_SPEND_PER_CUSTOMER": 38.22 }, "geometry": { "type": "Point", "coordinates": [ -75.176588, 40.008773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.105422, "LONGITUDE": -75.032802, "DATE_RANGE_START": 2022, "Total Visits": 1249.0, "Total Visitors": 822.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 723.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032802, 40.105422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pp4-jd9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.986516, "LONGITUDE": -75.12253, "DATE_RANGE_START": 2022, "Total Visits": 1089.0, "Total Visitors": 791.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 827.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.82, "MEDIAN_SPEND_PER_CUSTOMER": 46.94 }, "geometry": { "type": "Point", "coordinates": [ -75.12253, 39.986516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032146, "LONGITUDE": -75.063064, "DATE_RANGE_START": 2022, "Total Visits": 1105.0, "Total Visitors": 692.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4677.0, "Total Transactions": 192.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 28.23 }, "geometry": { "type": "Point", "coordinates": [ -75.063064, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.91305, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 124.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 185.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.07, "MEDIAN_SPEND_PER_CUSTOMER": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.91305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952029, "LONGITUDE": -75.167533, "DATE_RANGE_START": 2022, "Total Visits": 958.0, "Total Visitors": 631.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 59.0, "Total Spend": 6832.0, "Total Transactions": 594.0, "Total Customers": 455.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.02, "MEDIAN_SPEND_PER_CUSTOMER": 12.21 }, "geometry": { "type": "Point", "coordinates": [ -75.167533, 39.952029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@63s-dw9-7kf", "LOCATION_NAME": "Earl of Sandwich", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.877092, "LONGITUDE": -75.240554, "DATE_RANGE_START": 2022, "Total Visits": 226042.0, "Total Visitors": 145993.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 626.0, "Total Transactions": 37.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.240554, 39.877092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2022, "Total Visits": 533.0, "Total Visitors": 267.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4636.0, "Total Transactions": 551.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.2, "MEDIAN_SPEND_PER_CUSTOMER": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-dvz", "LOCATION_NAME": "Lighthouse Thrift Shop", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.051415, "LONGITUDE": -75.093615, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 35.0, "POI_CBG": 421010306007.0, "MEDIAN_DWELL": 61.0, "Total Spend": 188.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.02, "MEDIAN_SPEND_PER_CUSTOMER": 54.03 }, "geometry": { "type": "Point", "coordinates": [ -75.093615, 40.051415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-bp9", "LOCATION_NAME": "Live Casino & Hotel Philadelphia", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.909524, "LONGITUDE": -75.164712, "DATE_RANGE_START": 2022, "Total Visits": 6842.0, "Total Visitors": 3409.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 120.0, "Total Spend": 6011.0, "Total Transactions": 21.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 254.66, "MEDIAN_SPEND_PER_CUSTOMER": 298.88 }, "geometry": { "type": "Point", "coordinates": [ -75.164712, 39.909524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7z-6x5", "LOCATION_NAME": "Rising Sun Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056616, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 37.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 346.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.17, "MEDIAN_SPEND_PER_CUSTOMER": 20.96 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.056616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "LOCATION_NAME": "Fishtown Social", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 12397.0, "Total Transactions": 242.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.59, "MEDIAN_SPEND_PER_CUSTOMER": 83.17 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-28v", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.074524, "LONGITUDE": -75.032955, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 42.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 871.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.99, "MEDIAN_SPEND_PER_CUSTOMER": 48.99 }, "geometry": { "type": "Point", "coordinates": [ -75.032955, 40.074524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992778, "LONGITUDE": -75.097644, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 115.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 274.0, "Total Spend": 8090.0, "Total Transactions": 418.0, "Total Customers": 357.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.64, "MEDIAN_SPEND_PER_CUSTOMER": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.097644, 39.992778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm6-gx5", "LOCATION_NAME": "King Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915882, "LONGITUDE": -75.152424, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 105.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152424, 39.915882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phq-2hq", "LOCATION_NAME": "X Mark's the Spot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060083, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 101.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.2, "MEDIAN_SPEND_PER_CUSTOMER": 28.92 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 40.060083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "LOCATION_NAME": "New Quality Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 23.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 1354.0, "Total Spend": 282.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.58, "MEDIAN_SPEND_PER_CUSTOMER": 45.16 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-w6k", "LOCATION_NAME": "National Mechanics", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.94956, "LONGITUDE": -75.146014, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 117.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 3401.0, "Total Transactions": 63.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.73, "MEDIAN_SPEND_PER_CUSTOMER": 96.24 }, "geometry": { "type": "Point", "coordinates": [ -75.146014, 39.94956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-gkz", "LOCATION_NAME": "Nifty Fifty's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079457, "LONGITUDE": -75.025402, "DATE_RANGE_START": 2022, "Total Visits": 1333.0, "Total Visitors": 1052.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 5364.0, "Total Transactions": 216.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.72, "MEDIAN_SPEND_PER_CUSTOMER": 37.32 }, "geometry": { "type": "Point", "coordinates": [ -75.025402, 40.079457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "LOCATION_NAME": "Nifty Fifty's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 77.0, "POI_CBG": 421010372003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6244.0, "Total Transactions": 200.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.17, "MEDIAN_SPEND_PER_CUSTOMER": 40.69 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8h-5zz", "LOCATION_NAME": "Bullseye Darts", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.026099, "LONGITUDE": -75.042549, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": null, "Total Spend": 184.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.042549, 40.026099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jvz", "LOCATION_NAME": "Thin & Crispy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98312, "LONGITUDE": -75.123059, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 7.0, "POI_CBG": 421010160004.0, "MEDIAN_DWELL": 140.0, "Total Spend": 828.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.27, "MEDIAN_SPEND_PER_CUSTOMER": 108.54 }, "geometry": { "type": "Point", "coordinates": [ -75.123059, 39.98312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "LOCATION_NAME": "HKS pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 10.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9339.0, "Total Transactions": 517.0, "Total Customers": 233.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.34 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "LOCATION_NAME": "Luigi's Pizza Fresca", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2022, "Total Visits": 474.0, "Total Visitors": 272.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 469.0, "Total Spend": 1409.0, "Total Transactions": 61.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.54, "MEDIAN_SPEND_PER_CUSTOMER": 39.37 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p83-y5f", "LOCATION_NAME": "Royal Passage", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085495, "LONGITUDE": -75.045412, "DATE_RANGE_START": 2022, "Total Visits": 153.0, "Total Visitors": 110.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 123.0, "Total Spend": 11403.0, "Total Transactions": 9.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 432.0, "MEDIAN_SPEND_PER_CUSTOMER": 3272.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045412, 40.085495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "LOCATION_NAME": "Butcher Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95199, "LONGITUDE": -75.174938, "DATE_RANGE_START": 2022, "Total Visits": 1801.0, "Total Visitors": 1275.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 31865.0, "Total Transactions": 389.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.11, "MEDIAN_SPEND_PER_CUSTOMER": 109.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174938, 39.95199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "LOCATION_NAME": "Capital Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 57.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 14112.0, "Total Transactions": 570.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.29, "MEDIAN_SPEND_PER_CUSTOMER": 51.66 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "LOCATION_NAME": "Crab Shack", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 64.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3101.0, "Total Transactions": 84.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.3, "MEDIAN_SPEND_PER_CUSTOMER": 77.76 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-8y9", "LOCATION_NAME": "Forever 21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951978, "LONGITUDE": -75.155812, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 11385.0, "Total Transactions": 448.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.79, "MEDIAN_SPEND_PER_CUSTOMER": 19.98 }, "geometry": { "type": "Point", "coordinates": [ -75.155812, 39.951978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951926, "LONGITUDE": -75.161906, "DATE_RANGE_START": 2022, "Total Visits": 6267.0, "Total Visitors": 5082.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16107.0, "Total Transactions": 174.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.18, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161906, 39.951926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-sh5", "LOCATION_NAME": "La Viola", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948024, "LONGITUDE": -75.168108, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 28.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 105.0, "Total Spend": 1365.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.05, "MEDIAN_SPEND_PER_CUSTOMER": 297.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168108, 39.948024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-pgk", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.992681, "LONGITUDE": -75.14772, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 33.0, "POI_CBG": 421010164003.0, "MEDIAN_DWELL": 323.0, "Total Spend": 901.0, "Total Transactions": 26.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.51, "MEDIAN_SPEND_PER_CUSTOMER": 28.36 }, "geometry": { "type": "Point", "coordinates": [ -75.14772, 39.992681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj4-v4v", "LOCATION_NAME": "Taqueria La Raza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999423, "LONGITUDE": -75.134255, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 37.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 101.0, "Total Spend": 960.0, "Total Transactions": 26.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.05, "MEDIAN_SPEND_PER_CUSTOMER": 100.16 }, "geometry": { "type": "Point", "coordinates": [ -75.134255, 39.999423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.025431, "LONGITUDE": -75.223871, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 18682.0, "Total Transactions": 310.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.05, "MEDIAN_SPEND_PER_CUSTOMER": 87.76 }, "geometry": { "type": "Point", "coordinates": [ -75.223871, 40.025431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 143.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 460.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.27, "MEDIAN_SPEND_PER_CUSTOMER": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "LOCATION_NAME": "Javies Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.034848, "LONGITUDE": -75.234562, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 141.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10373.0, "Total Transactions": 443.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.16, "MEDIAN_SPEND_PER_CUSTOMER": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.234562, 40.034848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25q-222@628-pm9-tn5", "LOCATION_NAME": "Superhots By George", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948564, "LONGITUDE": -75.153931, "DATE_RANGE_START": 2022, "Total Visits": 1821.0, "Total Visitors": 1206.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 122.0, "Total Spend": 769.0, "Total Transactions": 44.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.41, "MEDIAN_SPEND_PER_CUSTOMER": 29.03 }, "geometry": { "type": "Point", "coordinates": [ -75.153931, 39.948564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-92k", "LOCATION_NAME": "Beef Jerky Outlet", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.951616, "LONGITUDE": -75.155729, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1032.0, "Total Transactions": 35.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.92, "MEDIAN_SPEND_PER_CUSTOMER": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155729, 39.951616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9m-gtv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.080307, "LONGITUDE": -74.99459, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 171.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5868.0, "Total Transactions": 260.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.59 }, "geometry": { "type": "Point", "coordinates": [ -74.99459, 40.080307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.059864, "LONGITUDE": -75.166534, "DATE_RANGE_START": 2022, "Total Visits": 260.0, "Total Visitors": 186.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4465.0, "Total Transactions": 171.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.56, "MEDIAN_SPEND_PER_CUSTOMER": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.166534, 40.059864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-35z", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957614, "LONGITUDE": -75.214932, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 136.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 33599.0, "Total Transactions": 1760.0, "Total Customers": 1044.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.31, "MEDIAN_SPEND_PER_CUSTOMER": 19.46 }, "geometry": { "type": "Point", "coordinates": [ -75.214932, 39.957614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph6-p5f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.977589, "LONGITUDE": -75.227009, "DATE_RANGE_START": 2022, "Total Visits": 1233.0, "Total Visitors": 873.0, "POI_CBG": 421010118003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 926.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.01, "MEDIAN_SPEND_PER_CUSTOMER": 36.01 }, "geometry": { "type": "Point", "coordinates": [ -75.227009, 39.977589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2022, "Total Visits": 2049.0, "Total Visitors": 1509.0, "POI_CBG": 421010361002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9908.0, "Total Transactions": 307.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 39.27 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm9-zs5", "LOCATION_NAME": "Condom Kingdom", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.942054, "LONGITUDE": -75.150455, "DATE_RANGE_START": 2022, "Total Visits": 1169.0, "Total Visitors": 979.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3813.0, "Total Transactions": 84.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.46, "MEDIAN_SPEND_PER_CUSTOMER": 81.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150455, 39.942054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.91784, "LONGITUDE": -75.186842, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 78.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 74.0, "Total Spend": 6664.0, "Total Transactions": 87.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.89, "MEDIAN_SPEND_PER_CUSTOMER": 62.63 }, "geometry": { "type": "Point", "coordinates": [ -75.186842, 39.91784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "LOCATION_NAME": "Buffalo Exchange", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.951062, "LONGITUDE": -75.166599, "DATE_RANGE_START": 2022, "Total Visits": 4990.0, "Total Visitors": 3734.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 45274.0, "Total Transactions": 1143.0, "Total Customers": 949.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166599, 39.951062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "LOCATION_NAME": "Four Seasons Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2022, "Total Visits": 409.0, "Total Visitors": 305.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 31203.0, "Total Transactions": 598.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.61, "MEDIAN_SPEND_PER_CUSTOMER": 82.92 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgf-fpv", "LOCATION_NAME": "Kabobeesh", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956522, "LONGITUDE": -75.206506, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 120.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 37.0, "Total Spend": 7909.0, "Total Transactions": 230.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.28, "MEDIAN_SPEND_PER_CUSTOMER": 51.13 }, "geometry": { "type": "Point", "coordinates": [ -75.206506, 39.956522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "LOCATION_NAME": "Dannys Wok 3", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 61.0, "POI_CBG": 421010204002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 96.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-kvf", "LOCATION_NAME": "Wilder", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951501, "LONGITUDE": -75.174013, "DATE_RANGE_START": 2022, "Total Visits": 1801.0, "Total Visitors": 1275.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 19959.0, "Total Transactions": 134.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 111.28, "MEDIAN_SPEND_PER_CUSTOMER": 168.79 }, "geometry": { "type": "Point", "coordinates": [ -75.174013, 39.951501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-tn5", "LOCATION_NAME": "Fat Salmon Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948136, "LONGITUDE": -75.153395, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 96.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 354.0, "Total Spend": 10518.0, "Total Transactions": 214.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.1, "MEDIAN_SPEND_PER_CUSTOMER": 95.88 }, "geometry": { "type": "Point", "coordinates": [ -75.153395, 39.948136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942532, "LONGITUDE": -75.157241, "DATE_RANGE_START": 2022, "Total Visits": 385.0, "Total Visitors": 300.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4996.0, "Total Transactions": 622.0, "Total Customers": 389.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.33, "MEDIAN_SPEND_PER_CUSTOMER": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.157241, 39.942532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-8d9", "LOCATION_NAME": "Moge Tee Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953994, "LONGITUDE": -75.157412, "DATE_RANGE_START": 2022, "Total Visits": 402.0, "Total Visitors": 312.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 288.0, "Total Spend": 1751.0, "Total Transactions": 171.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 13.44 }, "geometry": { "type": "Point", "coordinates": [ -75.157412, 39.953994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-tjv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949514, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 78.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1818.0, "Total Transactions": 307.0, "Total Customers": 176.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "LOCATION_NAME": "East Falls Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010170001.0, "MEDIAN_DWELL": null, "Total Spend": 22645.0, "Total Transactions": 862.0, "Total Customers": 261.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.59, "MEDIAN_SPEND_PER_CUSTOMER": 60.14 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-225@628-pjf-j7q", "LOCATION_NAME": "All The Way Live", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075711, "LONGITUDE": -75.205375, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 921.0, "Total Transactions": 23.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.01, "MEDIAN_SPEND_PER_CUSTOMER": 86.07 }, "geometry": { "type": "Point", "coordinates": [ -75.205375, 40.075711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993511, "LONGITUDE": -75.143942, "DATE_RANGE_START": 2022, "Total Visits": 453.0, "Total Visitors": 268.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 703.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.4, "MEDIAN_SPEND_PER_CUSTOMER": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143942, 39.993511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm8-2kz", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.939239, "LONGITUDE": -75.197843, "DATE_RANGE_START": 2022, "Total Visits": 531.0, "Total Visitors": 453.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2853.0, "Total Transactions": 103.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.69, "MEDIAN_SPEND_PER_CUSTOMER": 58.44 }, "geometry": { "type": "Point", "coordinates": [ -75.197843, 39.939239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "LOCATION_NAME": "Royal Farms", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2022, "Total Visits": 422.0, "Total Visitors": 286.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 56428.0, "Total Transactions": 1974.0, "Total Customers": 918.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.98, "MEDIAN_SPEND_PER_CUSTOMER": 25.93 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954892, "LONGITUDE": -75.206728, "DATE_RANGE_START": 2022, "Total Visits": 291.0, "Total Visitors": 206.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2140.0, "Total Transactions": 202.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.94, "MEDIAN_SPEND_PER_CUSTOMER": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.206728, 39.954892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-227@628-p9k-2zf", "LOCATION_NAME": "Beer Center", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.103141, "LONGITUDE": -75.010331, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 500.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3401.0, "Total Transactions": 153.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010331, 40.103141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-qfz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.976667, "LONGITUDE": -75.231099, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 61.0, "POI_CBG": 421010112001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3508.0, "Total Transactions": 186.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.48, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.231099, 39.976667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-mzf", "LOCATION_NAME": "Philadelphia Gas Works", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.958271, "LONGITUDE": -75.226212, "DATE_RANGE_START": 2022, "Total Visits": 301.0, "Total Visitors": 267.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3843.0, "Total Transactions": 64.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226212, 39.958271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-zxq", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941838, "LONGITUDE": -75.152721, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 71.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 8134.0, "Total Transactions": 73.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152721, 39.941838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-xnq", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.87811, "LONGITUDE": -75.239425, "DATE_RANGE_START": 2022, "Total Visits": 226042.0, "Total Visitors": 145993.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 2856.0, "Total Transactions": 63.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239425, 39.87811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnt-435", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.974417, "LONGITUDE": -75.121241, "DATE_RANGE_START": 2022, "Total Visits": 2387.0, "Total Visitors": 1463.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4308.0, "Total Transactions": 80.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.83, "MEDIAN_SPEND_PER_CUSTOMER": 39.83 }, "geometry": { "type": "Point", "coordinates": [ -75.121241, 39.974417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7v-gkz", "LOCATION_NAME": "Villagio Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.053089, "LONGITUDE": -75.068847, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 44.0, "POI_CBG": 421010335003.0, "MEDIAN_DWELL": 580.0, "Total Spend": 3246.0, "Total Transactions": 108.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.56, "MEDIAN_SPEND_PER_CUSTOMER": 67.83 }, "geometry": { "type": "Point", "coordinates": [ -75.068847, 40.053089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-7wk", "LOCATION_NAME": "The Board & Brew", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953486, "LONGITUDE": -75.187898, "DATE_RANGE_START": 2022, "Total Visits": 1803.0, "Total Visitors": 425.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 1020.0, "Total Spend": 2225.0, "Total Transactions": 89.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.94, "MEDIAN_SPEND_PER_CUSTOMER": 30.04 }, "geometry": { "type": "Point", "coordinates": [ -75.187898, 39.953486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-y7q", "LOCATION_NAME": "The Post", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952733, "LONGITUDE": -75.18366, "DATE_RANGE_START": 2022, "Total Visits": 793.0, "Total Visitors": 618.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2230.0, "Total Transactions": 75.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.04, "MEDIAN_SPEND_PER_CUSTOMER": 40.08 }, "geometry": { "type": "Point", "coordinates": [ -75.18366, 39.952733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-y9z", "LOCATION_NAME": "Alyan's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941428, "LONGITUDE": -75.149062, "DATE_RANGE_START": 2022, "Total Visits": 1437.0, "Total Visitors": 1132.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 173.0, "Total Spend": 4408.0, "Total Transactions": 120.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.4, "MEDIAN_SPEND_PER_CUSTOMER": 51.87 }, "geometry": { "type": "Point", "coordinates": [ -75.149062, 39.941428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-5xq", "LOCATION_NAME": "Liberty Choice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979685, "LONGITUDE": -75.132953, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 157.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 335.0, "Total Spend": 20655.0, "Total Transactions": 1354.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.97, "MEDIAN_SPEND_PER_CUSTOMER": 34.96 }, "geometry": { "type": "Point", "coordinates": [ -75.132953, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "LOCATION_NAME": "Kostas Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96897, "LONGITUDE": -75.134955, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 64.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 24988.0, "Total Transactions": 873.0, "Total Customers": 310.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 53.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134955, 39.96897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-9j9", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952572, "LONGITUDE": -75.165215, "DATE_RANGE_START": 2022, "Total Visits": 26119.0, "Total Visitors": 14640.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 152.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.87, "MEDIAN_SPEND_PER_CUSTOMER": 43.74 }, "geometry": { "type": "Point", "coordinates": [ -75.165215, 39.952572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p85-4d9", "LOCATION_NAME": "Mediterranean 2000", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061102, "LONGITUDE": -75.052153, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 73.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 212.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.36, "MEDIAN_SPEND_PER_CUSTOMER": 60.71 }, "geometry": { "type": "Point", "coordinates": [ -75.052153, 40.061102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007477, "LONGITUDE": -75.212304, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 118.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16467.0, "Total Transactions": 1075.0, "Total Customers": 826.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.61, "MEDIAN_SPEND_PER_CUSTOMER": 14.69 }, "geometry": { "type": "Point", "coordinates": [ -75.212304, 40.007477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "LOCATION_NAME": "CAVA", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95186, "LONGITUDE": -75.16924, "DATE_RANGE_START": 2022, "Total Visits": 406.0, "Total Visitors": 345.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 43.0, "Total Spend": 29508.0, "Total Transactions": 1927.0, "Total Customers": 850.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.01, "MEDIAN_SPEND_PER_CUSTOMER": 28.21 }, "geometry": { "type": "Point", "coordinates": [ -75.16924, 39.95186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmb-kj9", "LOCATION_NAME": "Oui", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953782, "LONGITUDE": -75.145092, "DATE_RANGE_START": 2022, "Total Visits": 693.0, "Total Visitors": 570.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1404.0, "Total Transactions": 40.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.62, "MEDIAN_SPEND_PER_CUSTOMER": 44.72 }, "geometry": { "type": "Point", "coordinates": [ -75.145092, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yd9", "LOCATION_NAME": "Tea Do", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954609, "LONGITUDE": -75.156246, "DATE_RANGE_START": 2022, "Total Visits": 321.0, "Total Visitors": 308.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 24651.0, "Total Transactions": 2436.0, "Total Customers": 1040.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.42, "MEDIAN_SPEND_PER_CUSTOMER": 16.14 }, "geometry": { "type": "Point", "coordinates": [ -75.156246, 39.954609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025459, "LONGITUDE": -75.149625, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 24.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1050.0, "Total Transactions": 108.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149625, 40.025459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pj3-gx5", "LOCATION_NAME": "Beijing Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022567, "LONGITUDE": -75.162046, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 26.0, "POI_CBG": 421010244002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 487.0, "Total Transactions": 28.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162046, 40.022567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "LOCATION_NAME": "Green Leaf Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 45.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 51.0, "Total Spend": 8013.0, "Total Transactions": 350.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.76 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2022, "Total Visits": 235.0, "Total Visitors": 209.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12257.0, "Total Transactions": 267.0, "Total Customers": 211.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 31.7 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950972, "LONGITUDE": -75.198395, "DATE_RANGE_START": 2022, "Total Visits": 777.0, "Total Visitors": 589.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 22557.0, "Total Transactions": 2556.0, "Total Customers": 1359.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.27, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.198395, 39.950972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "LOCATION_NAME": "Monde Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.952049, "LONGITUDE": -75.175756, "DATE_RANGE_START": 2022, "Total Visits": 740.0, "Total Visitors": 599.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 27018.0, "Total Transactions": 2026.0, "Total Customers": 477.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.61, "MEDIAN_SPEND_PER_CUSTOMER": 27.04 }, "geometry": { "type": "Point", "coordinates": [ -75.175756, 39.952049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "LOCATION_NAME": "Loco Dollar", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998868, "LONGITUDE": -75.126992, "DATE_RANGE_START": 2022, "Total Visits": 441.0, "Total Visitors": 261.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3387.0, "Total Transactions": 157.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.26, "MEDIAN_SPEND_PER_CUSTOMER": 39.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126992, 39.998868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 78.0, "Total Spend": 1095.0, "Total Transactions": 42.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.38, "MEDIAN_SPEND_PER_CUSTOMER": 27.99 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgg-rc5", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.003796, "LONGITUDE": -75.180647, "DATE_RANGE_START": 2022, "Total Visits": 270.0, "Total Visitors": 223.0, "POI_CBG": 421010171004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9321.0, "Total Transactions": 481.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.74 }, "geometry": { "type": "Point", "coordinates": [ -75.180647, 40.003796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2022, "Total Visits": 2817.0, "Total Visitors": 2138.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 98397.0, "Total Transactions": 3741.0, "Total Customers": 2329.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.35, "MEDIAN_SPEND_PER_CUSTOMER": 30.05 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.973475, "LONGITUDE": -75.159323, "DATE_RANGE_START": 2022, "Total Visits": 493.0, "Total Visitors": 446.0, "POI_CBG": 421010140003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4181.0, "Total Transactions": 136.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.55, "MEDIAN_SPEND_PER_CUSTOMER": 40.32 }, "geometry": { "type": "Point", "coordinates": [ -75.159323, 39.973475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-bp9", "LOCATION_NAME": "Hidden River Yarns", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.025483, "LONGITUDE": -75.223994, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1425.0, "Total Transactions": 26.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 162.04 }, "geometry": { "type": "Point", "coordinates": [ -75.223994, 40.025483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-zs5", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.941661, "LONGITUDE": -75.151237, "DATE_RANGE_START": 2022, "Total Visits": 859.0, "Total Visitors": 679.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 477.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.0, "MEDIAN_SPEND_PER_CUSTOMER": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151237, 39.941661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-p7c-3yv", "LOCATION_NAME": "J L's Beer Box", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.067747, "LONGITUDE": -75.005826, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 84.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4034.0, "Total Transactions": 145.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 59.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005826, 40.067747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "LOCATION_NAME": "Deluxe Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048286, "LONGITUDE": -75.012528, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 99.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 413.0, "Total Transactions": 19.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 64.36 }, "geometry": { "type": "Point", "coordinates": [ -75.012528, 40.048286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2022, "Total Visits": 434.0, "Total Visitors": 357.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1332.0, "Total Transactions": 61.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.95, "MEDIAN_SPEND_PER_CUSTOMER": 24.23 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wtv", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951227, "LONGITUDE": -75.152425, "DATE_RANGE_START": 2022, "Total Visits": 690.0, "Total Visitors": 561.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 13899.0, "Total Transactions": 976.0, "Total Customers": 803.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.67, "MEDIAN_SPEND_PER_CUSTOMER": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.152425, 39.951227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2022, "Total Visits": 373.0, "Total Visitors": 286.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1715.0, "Total Transactions": 166.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.45, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pg4-2p9", "LOCATION_NAME": "Bargain Thrift Center", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.031821, "LONGITUDE": -75.167835, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 92.0, "POI_CBG": 421010245004.0, "MEDIAN_DWELL": 71.0, "Total Spend": 8147.0, "Total Transactions": 258.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167835, 40.031821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zxq", "LOCATION_NAME": "Sky Store", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.941905, "LONGITUDE": -75.153237, "DATE_RANGE_START": 2022, "Total Visits": 725.0, "Total Visitors": 598.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 10017.0, "Total Transactions": 286.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.02, "MEDIAN_SPEND_PER_CUSTOMER": 46.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153237, 39.941905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-3wk", "LOCATION_NAME": "Cavanaughs Headhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942292, "LONGITUDE": -75.144972, "DATE_RANGE_START": 2022, "Total Visits": 427.0, "Total Visitors": 326.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 34.0, "Total Spend": 341.0, "Total Transactions": 23.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.8, "MEDIAN_SPEND_PER_CUSTOMER": 46.84 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 39.942292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-8vz", "LOCATION_NAME": "Dizengoff", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953032, "LONGITUDE": -75.192553, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 6320.0, "Total Transactions": 279.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.38, "MEDIAN_SPEND_PER_CUSTOMER": 36.83 }, "geometry": { "type": "Point", "coordinates": [ -75.192553, 39.953032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-87q", "LOCATION_NAME": "Kabuki Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953616, "LONGITUDE": -75.160916, "DATE_RANGE_START": 2022, "Total Visits": 247.0, "Total Visitors": 216.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1706.0, "Total Transactions": 77.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.99, "MEDIAN_SPEND_PER_CUSTOMER": 30.08 }, "geometry": { "type": "Point", "coordinates": [ -75.160916, 39.953616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2022, "Total Visits": 852.0, "Total Visitors": 544.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5500.0, "Total Transactions": 688.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm8-zzz", "LOCATION_NAME": "Fresh Express Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.916936, "LONGITUDE": -75.17071, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 77.0, "POI_CBG": 421010040023.0, "MEDIAN_DWELL": 494.0, "Total Spend": 228.0, "Total Transactions": 26.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.18, "MEDIAN_SPEND_PER_CUSTOMER": 65.34 }, "geometry": { "type": "Point", "coordinates": [ -75.17071, 39.916936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "LOCATION_NAME": "Revolution Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 42.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3927.0, "Total Transactions": 200.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.94, "MEDIAN_SPEND_PER_CUSTOMER": 33.88 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-t7q", "LOCATION_NAME": "Maria's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013401, "LONGITUDE": -75.135844, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 45.0, "POI_CBG": 421010197002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 12059.0, "Total Transactions": 793.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135844, 40.013401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992769, "LONGITUDE": -75.100237, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 51.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8325.0, "Total Transactions": 265.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.06, "MEDIAN_SPEND_PER_CUSTOMER": 33.11 }, "geometry": { "type": "Point", "coordinates": [ -75.100237, 39.992769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "LOCATION_NAME": "Philadelphia Bikesmith", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.962935, "LONGITUDE": -75.169326, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 186.0, "Total Spend": 22916.0, "Total Transactions": 110.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.96, "MEDIAN_SPEND_PER_CUSTOMER": 104.71 }, "geometry": { "type": "Point", "coordinates": [ -75.169326, 39.962935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "LOCATION_NAME": "Brandy Melville", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2022, "Total Visits": 636.0, "Total Visitors": 519.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 28396.0, "Total Transactions": 497.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.38 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-fzz", "LOCATION_NAME": "The Children's Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.917936, "LONGITUDE": -75.185126, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 89.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 142.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.46, "MEDIAN_SPEND_PER_CUSTOMER": 40.71 }, "geometry": { "type": "Point", "coordinates": [ -75.185126, 39.917936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp4-tsq", "LOCATION_NAME": "Green Rock Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979669, "LONGITUDE": -75.116167, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 14.0, "POI_CBG": 421010378003.0, "MEDIAN_DWELL": 101.0, "Total Spend": 3043.0, "Total Transactions": 75.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.0, "MEDIAN_SPEND_PER_CUSTOMER": 69.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116167, 39.979669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-d5f", "LOCATION_NAME": "Best Deal Discount Store", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.957506, "LONGITUDE": -75.202207, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1133.0, "Total Transactions": 89.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.69, "MEDIAN_SPEND_PER_CUSTOMER": 21.09 }, "geometry": { "type": "Point", "coordinates": [ -75.202207, 39.957506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "LOCATION_NAME": "Ginza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 7543.0, "Total Transactions": 148.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.67, "MEDIAN_SPEND_PER_CUSTOMER": 69.98 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "LOCATION_NAME": "Kohl's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.062537, "LONGITUDE": -75.235162, "DATE_RANGE_START": 2022, "Total Visits": 782.0, "Total Visitors": 631.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 32500.0, "Total Transactions": 672.0, "Total Customers": 573.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.23, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.235162, 40.062537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.954256, "LONGITUDE": -75.167978, "DATE_RANGE_START": 2022, "Total Visits": 4749.0, "Total Visitors": 2620.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 40.0, "Total Spend": 66.0, "Total Transactions": 12.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.95, "MEDIAN_SPEND_PER_CUSTOMER": 4.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167978, 39.954256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.95137, "LONGITUDE": -75.166677, "DATE_RANGE_START": 2022, "Total Visits": 1558.0, "Total Visitors": 1354.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 10.0, "Total Spend": 16795.0, "Total Transactions": 1308.0, "Total Customers": 1117.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166677, 39.95137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.027243, "LONGITUDE": -75.110271, "DATE_RANGE_START": 2022, "Total Visits": 1190.0, "Total Visitors": 857.0, "POI_CBG": 421010292001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 446.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.72, "MEDIAN_SPEND_PER_CUSTOMER": 38.72 }, "geometry": { "type": "Point", "coordinates": [ -75.110271, 40.027243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgc-zzz", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.979858, "LONGITUDE": -75.220169, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 228.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1063.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.0, "MEDIAN_SPEND_PER_CUSTOMER": 90.69 }, "geometry": { "type": "Point", "coordinates": [ -75.220169, 39.979858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "LOCATION_NAME": "Circle Thrift", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.980269, "LONGITUDE": -75.128616, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 193.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 186.0, "Total Spend": 6542.0, "Total Transactions": 293.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.94, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128616, 39.980269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2022, "Total Visits": 1308.0, "Total Visitors": 1103.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4136.0, "Total Transactions": 181.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-hbk", "LOCATION_NAME": "Jyoti Indian Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060418, "LONGITUDE": -75.191506, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 548.0, "Total Transactions": 28.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.74, "MEDIAN_SPEND_PER_CUSTOMER": 33.43 }, "geometry": { "type": "Point", "coordinates": [ -75.191506, 40.060418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgm-68v", "LOCATION_NAME": "Foghorn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009232, "LONGITUDE": -75.194181, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 28.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2848.0, "Total Transactions": 118.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.36, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.194181, 40.009232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "LOCATION_NAME": "Finish Line", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086808, "LONGITUDE": -74.961767, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 61.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1983.0, "Total Transactions": 23.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.1, "MEDIAN_SPEND_PER_CUSTOMER": 107.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961767, 40.086808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-gtv", "LOCATION_NAME": "Bruno's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067212, "LONGITUDE": -75.146516, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 30.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 439.0, "Total Transactions": 16.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 54.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146516, 40.067212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvw-bhq", "LOCATION_NAME": "Top Taste", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961231, "LONGITUDE": -75.224868, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 99.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224868, 39.961231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvr-5pv", "LOCATION_NAME": "Jim's Food Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923383, "LONGITUDE": -75.221531, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 19.0, "POI_CBG": 421010067001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 55.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.69, "MEDIAN_SPEND_PER_CUSTOMER": 15.69 }, "geometry": { "type": "Point", "coordinates": [ -75.221531, 39.923383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "LOCATION_NAME": "Beer Stop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.015837, "LONGITUDE": -75.130275, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 127.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8381.0, "Total Transactions": 286.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.85, "MEDIAN_SPEND_PER_CUSTOMER": 58.22 }, "geometry": { "type": "Point", "coordinates": [ -75.130275, 40.015837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084825, "LONGITUDE": -74.9723, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 120.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11747.0, "Total Transactions": 599.0, "Total Customers": 326.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.2, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9723, 40.084825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pj4-y7q", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.007893, "LONGITUDE": -75.150596, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 103.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1858.0, "Total Transactions": 52.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.62, "MEDIAN_SPEND_PER_CUSTOMER": 28.16 }, "geometry": { "type": "Point", "coordinates": [ -75.150596, 40.007893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-s5z", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.011216, "LONGITUDE": -75.115625, "DATE_RANGE_START": 2022, "Total Visits": 286.0, "Total Visitors": 207.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 4315.0, "Total Transactions": 89.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.43 }, "geometry": { "type": "Point", "coordinates": [ -75.115625, 40.011216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.902552, "LONGITUDE": -75.240445, "DATE_RANGE_START": 2022, "Total Visits": 432.0, "Total Visitors": 368.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6256.0, "Total Transactions": 225.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.99, "MEDIAN_SPEND_PER_CUSTOMER": 31.13 }, "geometry": { "type": "Point", "coordinates": [ -75.240445, 39.902552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "LOCATION_NAME": "El Fuego", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 49.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 574.0, "Total Spend": 2334.0, "Total Transactions": 178.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.26, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2022, "Total Visits": 1455.0, "Total Visitors": 1063.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 20494.0, "Total Transactions": 1720.0, "Total Customers": 1164.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.87, "MEDIAN_SPEND_PER_CUSTOMER": 11.96 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "LOCATION_NAME": "Mission BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2022, "Total Visits": 343.0, "Total Visitors": 279.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 3120.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.88, "MEDIAN_SPEND_PER_CUSTOMER": 39.69 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-nwk", "LOCATION_NAME": "Hiroki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971334, "LONGITUDE": -75.135176, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 143.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5198.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 766.44, "MEDIAN_SPEND_PER_CUSTOMER": 1043.52 }, "geometry": { "type": "Point", "coordinates": [ -75.135176, 39.971334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-nqz", "LOCATION_NAME": "Thanal Indian Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955758, "LONGITUDE": -75.172555, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 70.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 2506.0, "Total Transactions": 38.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172555, 39.955758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-hh5", "LOCATION_NAME": "Devil's Alley Bar & Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952132, "LONGITUDE": -75.172213, "DATE_RANGE_START": 2022, "Total Visits": 256.0, "Total Visitors": 239.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 13.0, "Total Spend": 592.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.6, "MEDIAN_SPEND_PER_CUSTOMER": 113.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172213, 39.952132 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-234@628-pmf-jd9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95159, "LONGITUDE": -75.168235, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 78.0, "Total Spend": 2797.0, "Total Transactions": 260.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.54, "MEDIAN_SPEND_PER_CUSTOMER": 11.64 }, "geometry": { "type": "Point", "coordinates": [ -75.168235, 39.95159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp5-ct9", "LOCATION_NAME": "Crispy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995185, "LONGITUDE": -75.112579, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010178001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3490.0, "Total Transactions": 132.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.04, "MEDIAN_SPEND_PER_CUSTOMER": 68.52 }, "geometry": { "type": "Point", "coordinates": [ -75.112579, 39.995185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2022, "Total Visits": 568.0, "Total Visitors": 514.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 14708.0, "Total Transactions": 1028.0, "Total Customers": 676.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.81, "MEDIAN_SPEND_PER_CUSTOMER": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-ks5", "LOCATION_NAME": "Elwood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96637, "LONGITUDE": -75.134125, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 54.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 358.0, "Total Spend": 980.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 140.56, "MEDIAN_SPEND_PER_CUSTOMER": 281.12 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 39.96637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "LOCATION_NAME": "Bubblefish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2022, "Total Visits": 5087.0, "Total Visitors": 3380.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 11725.0, "Total Transactions": 305.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pg5-2tv", "LOCATION_NAME": "Morton Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.04563, "LONGITUDE": -75.176218, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 23.0, "POI_CBG": 421010252004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2753.0, "Total Transactions": 240.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.38, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176218, 40.04563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj3-3nq", "LOCATION_NAME": "Mora Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022573, "LONGITUDE": -75.156258, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010280001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 774.0, "Total Transactions": 61.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 29.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156258, 40.022573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "LOCATION_NAME": "Comfort & Floyd", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": null, "Total Spend": 4181.0, "Total Transactions": 115.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.5, "MEDIAN_SPEND_PER_CUSTOMER": 65.81 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 26.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": null, "Total Spend": 1877.0, "Total Transactions": 207.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 12.86 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yd9", "LOCATION_NAME": "Sleep Inn", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954446, "LONGITUDE": -75.157043, "DATE_RANGE_START": 2022, "Total Visits": 402.0, "Total Visitors": 277.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 69.0, "Total Spend": 4363.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 170.01, "MEDIAN_SPEND_PER_CUSTOMER": 298.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157043, 39.954446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-7yv", "LOCATION_NAME": "Home2 Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.953662, "LONGITUDE": -75.15975, "DATE_RANGE_START": 2022, "Total Visits": 4568.0, "Total Visitors": 3321.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 160.0, "Total Spend": 10164.0, "Total Transactions": 45.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 191.55, "MEDIAN_SPEND_PER_CUSTOMER": 193.18 }, "geometry": { "type": "Point", "coordinates": [ -75.15975, 39.953662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "LOCATION_NAME": "New Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2022, "Total Visits": 340.0, "Total Visitors": 178.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 109.0, "Total Spend": 2985.0, "Total Transactions": 118.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.76, "MEDIAN_SPEND_PER_CUSTOMER": 39.69 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-54v", "LOCATION_NAME": "Wood Street Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958437, "LONGITUDE": -75.158269, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 91.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 11499.0, "Total Transactions": 413.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.64, "MEDIAN_SPEND_PER_CUSTOMER": 45.22 }, "geometry": { "type": "Point", "coordinates": [ -75.158269, 39.958437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "LOCATION_NAME": "Hatville Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 603.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2355.0, "Total Transactions": 143.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.71, "MEDIAN_SPEND_PER_CUSTOMER": 22.48 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "LOCATION_NAME": "Bleu Martini", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949349, "LONGITUDE": -75.144205, "DATE_RANGE_START": 2022, "Total Visits": 1953.0, "Total Visitors": 1664.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 55247.0, "Total Transactions": 807.0, "Total Customers": 275.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.29, "MEDIAN_SPEND_PER_CUSTOMER": 94.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144205, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwd-pjv", "LOCATION_NAME": "Urban Shop 543", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.889355, "LONGITUDE": -75.175351, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 71.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 338.0, "Total Spend": 391.0, "Total Transactions": 35.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.93, "MEDIAN_SPEND_PER_CUSTOMER": 43.41 }, "geometry": { "type": "Point", "coordinates": [ -75.175351, 39.889355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "LOCATION_NAME": "Melograno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951247, "LONGITUDE": -75.174115, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 54.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1471.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.02, "MEDIAN_SPEND_PER_CUSTOMER": 140.04 }, "geometry": { "type": "Point", "coordinates": [ -75.174115, 39.951247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj5-435", "LOCATION_NAME": "1 Stop Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009415, "LONGITUDE": -75.15067, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 59.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 151.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.65, "MEDIAN_SPEND_PER_CUSTOMER": 43.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15067, 40.009415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnt-3wk", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.974634, "LONGITUDE": -75.119239, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 115.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 6738.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.48, "MEDIAN_SPEND_PER_CUSTOMER": 139.33 }, "geometry": { "type": "Point", "coordinates": [ -75.119239, 39.974634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2022, "Total Visits": 436.0, "Total Visitors": 362.0, "POI_CBG": 421010314021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6669.0, "Total Transactions": 176.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 24.64 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.977128, "LONGITUDE": -75.274366, "DATE_RANGE_START": 2022, "Total Visits": 368.0, "Total Visitors": 263.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 8.0, "Total Spend": 14967.0, "Total Transactions": 371.0, "Total Customers": 280.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.65, "MEDIAN_SPEND_PER_CUSTOMER": 26.45 }, "geometry": { "type": "Point", "coordinates": [ -75.274366, 39.977128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9w-zmk", "LOCATION_NAME": "Hendrix Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.118281, "LONGITUDE": -75.017944, "DATE_RANGE_START": 2022, "Total Visits": 554.0, "Total Visitors": 432.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1252.0, "Total Transactions": 49.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.017944, 40.118281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj7-5fz", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043629, "LONGITUDE": -75.102849, "DATE_RANGE_START": 2022, "Total Visits": 390.0, "Total Visitors": 265.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1243.0, "Total Transactions": 84.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.58, "MEDIAN_SPEND_PER_CUSTOMER": 12.62 }, "geometry": { "type": "Point", "coordinates": [ -75.102849, 40.043629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-hbk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.996353, "LONGITUDE": -75.165984, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 89.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2573.0, "Total Transactions": 146.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.14, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165984, 39.996353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 204.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4468.0, "Total Transactions": 87.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2022, "Total Visits": 672.0, "Total Visitors": 531.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 18336.0, "Total Transactions": 1375.0, "Total Customers": 833.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.09, "MEDIAN_SPEND_PER_CUSTOMER": 15.72 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2022, "Total Visits": 28654.0, "Total Visitors": 19157.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3937.0, "Total Transactions": 706.0, "Total Customers": 359.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.11, "MEDIAN_SPEND_PER_CUSTOMER": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-p8n-92k", "LOCATION_NAME": "Crab Du Jour Bustleton", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034004, "LONGITUDE": -75.071898, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 213.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 93.0, "Total Spend": 10771.0, "Total Transactions": 221.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.79, "MEDIAN_SPEND_PER_CUSTOMER": 75.18 }, "geometry": { "type": "Point", "coordinates": [ -75.071898, 40.034004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "LOCATION_NAME": "Mega Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 57.0, "POI_CBG": 421010277003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2004.0, "Total Transactions": 125.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.65, "MEDIAN_SPEND_PER_CUSTOMER": 27.55 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-sdv", "LOCATION_NAME": "P S & Co", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.94866, "LONGITUDE": -75.16974, "DATE_RANGE_START": 2022, "Total Visits": 157.0, "Total Visitors": 124.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 40.0, "Total Spend": 876.0, "Total Transactions": 23.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.4, "MEDIAN_SPEND_PER_CUSTOMER": 74.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16974, 39.94866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 214.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 28660.0, "Total Transactions": 1174.0, "Total Customers": 772.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.17, "MEDIAN_SPEND_PER_CUSTOMER": 23.28 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 213.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 324.0, "Total Transactions": 26.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.9, "MEDIAN_SPEND_PER_CUSTOMER": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998177, "LONGITUDE": -75.124544, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 134.0, "POI_CBG": 421010177025.0, "MEDIAN_DWELL": 2.0, "Total Spend": 344.0, "Total Transactions": 56.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.65, "MEDIAN_SPEND_PER_CUSTOMER": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.124544, 39.998177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2022, "Total Visits": 1038.0, "Total Visitors": 470.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 2377.0, "Total Transactions": 87.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.08, "MEDIAN_SPEND_PER_CUSTOMER": 48.16 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2022, "Total Visits": 1620.0, "Total Visitors": 1009.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 28914.0, "Total Transactions": 2399.0, "Total Customers": 1089.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.18, "MEDIAN_SPEND_PER_CUSTOMER": 13.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgy-r6k", "LOCATION_NAME": "Hopkins Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.051828, "LONGITUDE": -75.236578, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 38.0, "POI_CBG": 421010219001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 347.0, "Total Transactions": 23.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.236578, 40.051828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2022, "Total Visits": 2077.0, "Total Visitors": 1409.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 6.0, "Total Spend": 20293.0, "Total Transactions": 949.0, "Total Customers": 666.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.21, "MEDIAN_SPEND_PER_CUSTOMER": 18.54 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 294.0, "POI_CBG": 421010096001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1897.0, "Total Transactions": 157.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.4, "MEDIAN_SPEND_PER_CUSTOMER": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "LOCATION_NAME": "My Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945111, "LONGITUDE": -75.178763, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 45.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 250.0, "Total Spend": 1077.0, "Total Transactions": 26.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.3, "MEDIAN_SPEND_PER_CUSTOMER": 71.95 }, "geometry": { "type": "Point", "coordinates": [ -75.178763, 39.945111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmd-tvz", "LOCATION_NAME": "The Indie Shelf", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944748, "LONGITUDE": -75.180225, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 152.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2421.0, "Total Transactions": 40.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.64, "MEDIAN_SPEND_PER_CUSTOMER": 101.52 }, "geometry": { "type": "Point", "coordinates": [ -75.180225, 39.944748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9q-hqz", "LOCATION_NAME": "Pearle Vision", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.079188, "LONGITUDE": -75.028586, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 99.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 477.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 136.8, "MEDIAN_SPEND_PER_CUSTOMER": 136.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.079188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.008575, "LONGITUDE": -75.193866, "DATE_RANGE_START": 2022, "Total Visits": 1415.0, "Total Visitors": 1124.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3041.0, "Total Transactions": 70.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.29, "MEDIAN_SPEND_PER_CUSTOMER": 51.37 }, "geometry": { "type": "Point", "coordinates": [ -75.193866, 40.008575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7w-pvz", "LOCATION_NAME": "Philly Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.044968, "LONGITUDE": -75.054721, "DATE_RANGE_START": 2022, "Total Visits": 331.0, "Total Visitors": 274.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3749.0, "Total Transactions": 148.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.95, "MEDIAN_SPEND_PER_CUSTOMER": 36.18 }, "geometry": { "type": "Point", "coordinates": [ -75.054721, 40.044968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "LOCATION_NAME": "Saks Off Fifth", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.088158, "LONGITUDE": -74.961632, "DATE_RANGE_START": 2022, "Total Visits": 1293.0, "Total Visitors": 1002.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 30.0, "Total Spend": 14509.0, "Total Transactions": 143.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.17, "MEDIAN_SPEND_PER_CUSTOMER": 66.22 }, "geometry": { "type": "Point", "coordinates": [ -74.961632, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-ph6-gkz", "LOCATION_NAME": "Habeeb's Convenience Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.98437, "LONGITUDE": -75.230985, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 19.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6844.0, "Total Transactions": 732.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -75.230985, 39.98437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pm3-vpv", "LOCATION_NAME": "Flannel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927129, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 30.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 41.0, "Total Spend": 21756.0, "Total Transactions": 404.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.73, "MEDIAN_SPEND_PER_CUSTOMER": 77.44 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.927129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pfy-brk", "LOCATION_NAME": "White Yak", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033768, "LONGITUDE": -75.215842, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010213002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 5596.0, "Total Transactions": 112.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.65, "MEDIAN_SPEND_PER_CUSTOMER": 96.28 }, "geometry": { "type": "Point", "coordinates": [ -75.215842, 40.033768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dqf", "LOCATION_NAME": "Five Brothers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033693, "LONGITUDE": -75.084934, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": null, "Total Spend": 1834.0, "Total Transactions": 197.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 15.28 }, "geometry": { "type": "Point", "coordinates": [ -75.084934, 40.033693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "LOCATION_NAME": "Keller Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072481, "LONGITUDE": -75.076705, "DATE_RANGE_START": 2022, "Total Visits": 235.0, "Total Visitors": 171.0, "POI_CBG": 421010341002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1329.0, "Total Transactions": 42.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.39, "MEDIAN_SPEND_PER_CUSTOMER": 68.49 }, "geometry": { "type": "Point", "coordinates": [ -75.076705, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-qzz", "LOCATION_NAME": "Fortune Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944339, "LONGITUDE": -75.172891, "DATE_RANGE_START": 2022, "Total Visits": 488.0, "Total Visitors": 272.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 297.0, "Total Spend": 558.0, "Total Transactions": 19.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.35, "MEDIAN_SPEND_PER_CUSTOMER": 109.28 }, "geometry": { "type": "Point", "coordinates": [ -75.172891, 39.944339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980352, "LONGITUDE": -75.234957, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 51.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5807.0, "Total Transactions": 308.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 16.76 }, "geometry": { "type": "Point", "coordinates": [ -75.234957, 39.980352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002693, "LONGITUDE": -75.222651, "DATE_RANGE_START": 2022, "Total Visits": 434.0, "Total Visitors": 362.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8902.0, "Total Transactions": 866.0, "Total Customers": 605.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.18, "MEDIAN_SPEND_PER_CUSTOMER": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.222651, 40.002693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dvy-mx5", "LOCATION_NAME": "Tea Do", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95462, "LONGITUDE": -75.199919, "DATE_RANGE_START": 2022, "Total Visits": 1915.0, "Total Visitors": 1221.0, "POI_CBG": 421010088012.0, "MEDIAN_DWELL": 48.0, "Total Spend": 3223.0, "Total Transactions": 319.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.2, "MEDIAN_SPEND_PER_CUSTOMER": 13.14 }, "geometry": { "type": "Point", "coordinates": [ -75.199919, 39.95462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-sbk", "LOCATION_NAME": "Woven Treasures", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.945195, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 7128.0, "Total Transactions": 85.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 61.56 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.945195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p9r-249", "LOCATION_NAME": "A Tech", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.074455, "LONGITUDE": -75.03178, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 16.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 146.0, "Total Spend": 116.0, "Total Transactions": 28.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03178, 40.074455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-d35", "LOCATION_NAME": "Dipinto Guitars", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.970499, "LONGITUDE": -75.13019, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1616.0, "Total Transactions": 23.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.54, "MEDIAN_SPEND_PER_CUSTOMER": 55.89 }, "geometry": { "type": "Point", "coordinates": [ -75.13019, 39.970499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "LOCATION_NAME": "Adobe Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 16.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 7706.0, "Total Transactions": 202.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 63.82 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pj5-3nq", "LOCATION_NAME": "Erie Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009145, "LONGITUDE": -75.152232, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 26.0, "POI_CBG": 421010201022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 71.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152232, 40.009145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmd-zfz", "LOCATION_NAME": "Small Oven Pastry Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939225, "LONGITUDE": -75.180201, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 38.0, "POI_CBG": 421010020001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1082.0, "Total Transactions": 70.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 34.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180201, 39.939225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "LOCATION_NAME": "Davids Mai Lai Wah", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955591, "LONGITUDE": -75.155966, "DATE_RANGE_START": 2022, "Total Visits": 486.0, "Total Visitors": 430.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 13969.0, "Total Transactions": 449.0, "Total Customers": 209.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.6, "MEDIAN_SPEND_PER_CUSTOMER": 62.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155966, 39.955591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p8n-92k", "LOCATION_NAME": "The Taste of Brazil Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033699, "LONGITUDE": -75.072078, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 143.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1320.0, "Total Transactions": 33.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.52, "MEDIAN_SPEND_PER_CUSTOMER": 65.29 }, "geometry": { "type": "Point", "coordinates": [ -75.072078, 40.033699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-nnq", "LOCATION_NAME": "Duran Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.990021, "LONGITUDE": -75.139877, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 16.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 125.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.2, "MEDIAN_SPEND_PER_CUSTOMER": 10.58 }, "geometry": { "type": "Point", "coordinates": [ -75.139877, 39.990021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmb-xyv", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955915, "LONGITUDE": -75.155905, "DATE_RANGE_START": 2022, "Total Visits": 402.0, "Total Visitors": 336.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 69.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.93, "MEDIAN_SPEND_PER_CUSTOMER": 19.85 }, "geometry": { "type": "Point", "coordinates": [ -75.155905, 39.955915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-kj9", "LOCATION_NAME": "Mode Moderne", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.9538, "LONGITUDE": -75.144666, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": null, "Total Spend": 706.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.2, "MEDIAN_SPEND_PER_CUSTOMER": 140.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144666, 39.9538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp5-f4v", "LOCATION_NAME": "Potter Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.99519, "LONGITUDE": -75.116522, "DATE_RANGE_START": 2022, "Total Visits": 1510.0, "Total Visitors": 1002.0, "POI_CBG": 421010177011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 168.0, "Total Transactions": 21.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.15, "MEDIAN_SPEND_PER_CUSTOMER": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116522, 39.99519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-7dv", "LOCATION_NAME": "The Monkey Club", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.982488, "LONGITUDE": -75.128336, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 19.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 72.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.04, "MEDIAN_SPEND_PER_CUSTOMER": 20.65 }, "geometry": { "type": "Point", "coordinates": [ -75.128336, 39.982488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-zmk", "LOCATION_NAME": "The Good King Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941737, "LONGITUDE": -75.15419, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 21778.0, "Total Transactions": 347.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.9, "MEDIAN_SPEND_PER_CUSTOMER": 109.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 39.941737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-8d9", "LOCATION_NAME": "Bee Natural", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.952966, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 1198.0, "Total Transactions": 80.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.69, "MEDIAN_SPEND_PER_CUSTOMER": 21.84 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.952966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2022, "Total Visits": 794.0, "Total Visitors": 460.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11399.0, "Total Transactions": 608.0, "Total Customers": 392.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 17.19 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-p35", "LOCATION_NAME": "Circle Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.05718, "LONGITUDE": -75.030551, "DATE_RANGE_START": 2022, "Total Visits": 946.0, "Total Visitors": 622.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 25.0, "Total Spend": 37.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.3, "MEDIAN_SPEND_PER_CUSTOMER": 10.59 }, "geometry": { "type": "Point", "coordinates": [ -75.030551, 40.05718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2022, "Total Visits": 382.0, "Total Visitors": 246.0, "POI_CBG": 421010268002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4286.0, "Total Transactions": 183.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.16, "MEDIAN_SPEND_PER_CUSTOMER": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 305.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 234661.0, "Total Transactions": 6497.0, "Total Customers": 2735.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.88, "MEDIAN_SPEND_PER_CUSTOMER": 53.9 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-mzf", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.958726, "LONGITUDE": -75.2256, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 70.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 152.0, "Total Spend": 2055.0, "Total Transactions": 21.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2256, 39.958726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-9mk", "LOCATION_NAME": "Majestic Clubhouse Store", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.906063, "LONGITUDE": -75.166504, "DATE_RANGE_START": 2022, "Total Visits": 61245.0, "Total Visitors": 47799.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 214.0, "Total Spend": 1973.0, "Total Transactions": 112.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.53, "MEDIAN_SPEND_PER_CUSTOMER": 48.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166504, 39.906063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.029581, "LONGITUDE": -75.100406, "DATE_RANGE_START": 2022, "Total Visits": 801.0, "Total Visitors": 726.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 10231.0, "Total Transactions": 233.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.69, "MEDIAN_SPEND_PER_CUSTOMER": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.100406, 40.029581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgg-n3q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998932, "LONGITUDE": -75.167191, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 141.0, "POI_CBG": 421010172011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1074.0, "Total Transactions": 106.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167191, 39.998932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.930175, "LONGITUDE": -75.144763, "DATE_RANGE_START": 2022, "Total Visits": 1707.0, "Total Visitors": 1474.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 19956.0, "Total Transactions": 408.0, "Total Customers": 345.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.36, "MEDIAN_SPEND_PER_CUSTOMER": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.144763, 39.930175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvy-kfz", "LOCATION_NAME": "Al Waha Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951192, "LONGITUDE": -75.200055, "DATE_RANGE_START": 2022, "Total Visits": 1355.0, "Total Visitors": 629.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 294.0, "Total Spend": 267.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.200055, 39.951192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "LOCATION_NAME": "Cafe Soho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 146.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 29594.0, "Total Transactions": 495.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.61, "MEDIAN_SPEND_PER_CUSTOMER": 91.86 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-224@628-pgb-n5z", "LOCATION_NAME": "Crab Du Jour Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968792, "LONGITUDE": -75.16057, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 59.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 109.0, "Total Spend": 13283.0, "Total Transactions": 261.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.51, "MEDIAN_SPEND_PER_CUSTOMER": 91.37 }, "geometry": { "type": "Point", "coordinates": [ -75.16057, 39.968792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-5zz", "LOCATION_NAME": "Panda Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949206, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2022, "Total Visits": 235.0, "Total Visitors": 138.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 176.0, "Total Spend": 545.0, "Total Transactions": 30.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.55, "MEDIAN_SPEND_PER_CUSTOMER": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.949206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "LOCATION_NAME": "Joes Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95039, "LONGITUDE": -75.167575, "DATE_RANGE_START": 2022, "Total Visits": 253.0, "Total Visitors": 218.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 433.0, "Total Transactions": 24.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.3, "MEDIAN_SPEND_PER_CUSTOMER": 24.76 }, "geometry": { "type": "Point", "coordinates": [ -75.167575, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "LOCATION_NAME": "Rice & Mix", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2022, "Total Visits": 389.0, "Total Visitors": 293.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4050.0, "Total Transactions": 179.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.73, "MEDIAN_SPEND_PER_CUSTOMER": 36.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pm4-pjv", "LOCATION_NAME": "Di Bruno Bros", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.938055, "LONGITUDE": -75.158145, "DATE_RANGE_START": 2022, "Total Visits": 395.0, "Total Visitors": 305.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 56.0, "Total Spend": 66735.0, "Total Transactions": 2666.0, "Total Customers": 1077.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.18, "MEDIAN_SPEND_PER_CUSTOMER": 39.51 }, "geometry": { "type": "Point", "coordinates": [ -75.158145, 39.938055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8j-bp9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.035986, "LONGITUDE": -75.039532, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 157.0, "POI_CBG": 421010330006.0, "MEDIAN_DWELL": 8.0, "Total Spend": 12087.0, "Total Transactions": 537.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.8, "MEDIAN_SPEND_PER_CUSTOMER": 21.96 }, "geometry": { "type": "Point", "coordinates": [ -75.039532, 40.035986 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-975", "LOCATION_NAME": "DK Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952998, "LONGITUDE": -75.192279, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 924.0, "Total Transactions": 40.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.9, "MEDIAN_SPEND_PER_CUSTOMER": 52.92 }, "geometry": { "type": "Point", "coordinates": [ -75.192279, 39.952998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm9-zs5", "LOCATION_NAME": "Ishkabibble's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942066, "LONGITUDE": -75.151372, "DATE_RANGE_START": 2022, "Total Visits": 484.0, "Total Visitors": 411.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 30.0, "Total Spend": 193.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.5, "MEDIAN_SPEND_PER_CUSTOMER": 55.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151372, 39.942066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-kpv", "LOCATION_NAME": "The Goat Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951177, "LONGITUDE": -75.172386, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 120.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 52.0, "Total Spend": 15532.0, "Total Transactions": 341.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.06, "MEDIAN_SPEND_PER_CUSTOMER": 89.82 }, "geometry": { "type": "Point", "coordinates": [ -75.172386, 39.951177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-vpv", "LOCATION_NAME": "Urban Saloon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967182, "LONGITUDE": -75.172904, "DATE_RANGE_START": 2022, "Total Visits": 702.0, "Total Visitors": 490.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 60.0, "Total Spend": 76742.0, "Total Transactions": 1317.0, "Total Customers": 580.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.88, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172904, 39.967182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-h5z", "LOCATION_NAME": "Gaetano's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960401, "LONGITUDE": -75.19778, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 96.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 970.0, "Total Spend": 1160.0, "Total Transactions": 54.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.6, "MEDIAN_SPEND_PER_CUSTOMER": 26.08 }, "geometry": { "type": "Point", "coordinates": [ -75.19778, 39.960401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm4-pvz", "LOCATION_NAME": "Kyushu Ramen & Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938608, "LONGITUDE": -75.157741, "DATE_RANGE_START": 2022, "Total Visits": 911.0, "Total Visitors": 533.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 252.0, "Total Spend": 187.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.15, "MEDIAN_SPEND_PER_CUSTOMER": 53.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157741, 39.938608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2022, "Total Visits": 1061.0, "Total Visitors": 801.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 17314.0, "Total Transactions": 1162.0, "Total Customers": 904.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.3, "MEDIAN_SPEND_PER_CUSTOMER": 14.28 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "LOCATION_NAME": "Einstein Brothers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994394, "LONGITUDE": -75.238422, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 125.0, "POI_CBG": 421010117001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 425.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.49, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238422, 39.994394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 120.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 27998.0, "Total Transactions": 2098.0, "Total Customers": 1382.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.27, "MEDIAN_SPEND_PER_CUSTOMER": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.921672, "LONGITUDE": -75.186144, "DATE_RANGE_START": 2022, "Total Visits": 1059.0, "Total Visitors": 768.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 12077.0, "Total Transactions": 254.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.97, "MEDIAN_SPEND_PER_CUSTOMER": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.186144, 39.921672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "LOCATION_NAME": "Dollar Value", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 113.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8804.0, "Total Transactions": 516.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.92, "MEDIAN_SPEND_PER_CUSTOMER": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "LOCATION_NAME": "VaporFi", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2022, "Total Visits": 704.0, "Total Visitors": 524.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 4719.0, "Total Transactions": 117.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 93.92 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-wx5", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.903669, "LONGITUDE": -75.238891, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 141.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 286.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.19, "MEDIAN_SPEND_PER_CUSTOMER": 62.19 }, "geometry": { "type": "Point", "coordinates": [ -75.238891, 39.903669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pnx-qpv", "LOCATION_NAME": "Ideal Tile of Philadelphia", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.974873, "LONGITUDE": -75.144396, "DATE_RANGE_START": 2022, "Total Visits": 681.0, "Total Visitors": 240.0, "POI_CBG": 421010144003.0, "MEDIAN_DWELL": 341.0, "Total Spend": 247.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 71.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144396, 39.974873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-94v", "LOCATION_NAME": "Mood Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948631, "LONGITUDE": -75.215805, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": null, "Total Spend": 2191.0, "Total Transactions": 94.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.15, "MEDIAN_SPEND_PER_CUSTOMER": 52.54 }, "geometry": { "type": "Point", "coordinates": [ -75.215805, 39.948631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-qxq", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.991716, "LONGITUDE": -75.09926, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 82.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 967.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.0, "MEDIAN_SPEND_PER_CUSTOMER": 194.97 }, "geometry": { "type": "Point", "coordinates": [ -75.09926, 39.991716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7z-vj9", "LOCATION_NAME": "Super Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035471, "LONGITUDE": -75.080757, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 70.0, "POI_CBG": 421010312001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 831.0, "Total Transactions": 122.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.44, "MEDIAN_SPEND_PER_CUSTOMER": 21.18 }, "geometry": { "type": "Point", "coordinates": [ -75.080757, 40.035471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "LOCATION_NAME": "Heng Fa Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2022, "Total Visits": 448.0, "Total Visitors": 355.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 229067.0, "Total Transactions": 1469.0, "Total Customers": 544.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.26, "MEDIAN_SPEND_PER_CUSTOMER": 39.55 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-kfz", "LOCATION_NAME": "Machi Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950008, "LONGITUDE": -75.173818, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010008034.0, "MEDIAN_DWELL": 1.0, "Total Spend": 116.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.23, "MEDIAN_SPEND_PER_CUSTOMER": 15.67 }, "geometry": { "type": "Point", "coordinates": [ -75.173818, 39.950008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "LOCATION_NAME": "Suburban Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 118.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 271.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045678, "LONGITUDE": -75.11816, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 120.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1532.0, "Total Transactions": 185.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.91, "MEDIAN_SPEND_PER_CUSTOMER": 8.68 }, "geometry": { "type": "Point", "coordinates": [ -75.11816, 40.045678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-2tv", "LOCATION_NAME": "E Z Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.066202, "LONGITUDE": -75.051009, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 169.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 18249.0, "Total Transactions": 568.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.98, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051009, 40.066202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmd-s5z", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.945275, "LONGITUDE": -75.177239, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 91.0, "POI_CBG": 421010012013.0, "MEDIAN_DWELL": 13.0, "Total Spend": 15257.0, "Total Transactions": 387.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.31, "MEDIAN_SPEND_PER_CUSTOMER": 50.84 }, "geometry": { "type": "Point", "coordinates": [ -75.177239, 39.945275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgb-2tv", "LOCATION_NAME": "Local", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957095, "LONGITUDE": -75.167019, "DATE_RANGE_START": 2022, "Total Visits": 4380.0, "Total Visitors": 1854.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 516.0, "Total Spend": 13929.0, "Total Transactions": 274.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.2, "MEDIAN_SPEND_PER_CUSTOMER": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167019, 39.957095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "LOCATION_NAME": "Frankford Hall", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2022, "Total Visits": 608.0, "Total Visitors": 556.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 82551.0, "Total Transactions": 3211.0, "Total Customers": 1237.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.36 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phy-bhq", "LOCATION_NAME": "Old English Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.014292, "LONGITUDE": -75.126329, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 745.0, "Total Transactions": 23.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.84, "MEDIAN_SPEND_PER_CUSTOMER": 82.84 }, "geometry": { "type": "Point", "coordinates": [ -75.126329, 40.014292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "LOCATION_NAME": "Somerton Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.110353, "LONGITUDE": -75.024095, "DATE_RANGE_START": 2022, "Total Visits": 3105.0, "Total Visitors": 1814.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1429.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.0, "MEDIAN_SPEND_PER_CUSTOMER": 162.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024095, 40.110353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-2hq", "LOCATION_NAME": "El Purepecha", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958175, "LONGITUDE": -75.157958, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 134.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 672.0, "Total Spend": 10258.0, "Total Transactions": 272.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.44, "MEDIAN_SPEND_PER_CUSTOMER": 62.92 }, "geometry": { "type": "Point", "coordinates": [ -75.157958, 39.958175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9w-q4v", "LOCATION_NAME": "Cafe Michelangelo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.12143, "LONGITUDE": -75.016007, "DATE_RANGE_START": 2022, "Total Visits": 301.0, "Total Visitors": 214.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 64.0, "Total Spend": 17698.0, "Total Transactions": 204.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.94, "MEDIAN_SPEND_PER_CUSTOMER": 111.88 }, "geometry": { "type": "Point", "coordinates": [ -75.016007, 40.12143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "LOCATION_NAME": "Fleishman Fabrics & Supplies", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.93943, "LONGITUDE": -75.149516, "DATE_RANGE_START": 2022, "Total Visits": 314.0, "Total Visitors": 124.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 702.0, "Total Spend": 6752.0, "Total Transactions": 216.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.8, "MEDIAN_SPEND_PER_CUSTOMER": 43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149516, 39.93943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.0441, "LONGITUDE": -75.232794, "DATE_RANGE_START": 2022, "Total Visits": 901.0, "Total Visitors": 580.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 190044.0, "Total Transactions": 4805.0, "Total Customers": 2718.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.62, "MEDIAN_SPEND_PER_CUSTOMER": 44.77 }, "geometry": { "type": "Point", "coordinates": [ -75.232794, 40.0441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2022, "Total Visits": 671.0, "Total Visitors": 484.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 59446.0, "Total Transactions": 1326.0, "Total Customers": 875.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.38, "MEDIAN_SPEND_PER_CUSTOMER": 45.94 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-bp9", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.064931, "LONGITUDE": -74.985003, "DATE_RANGE_START": 2022, "Total Visits": 3505.0, "Total Visitors": 1591.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1247.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 119.9, "MEDIAN_SPEND_PER_CUSTOMER": 119.9 }, "geometry": { "type": "Point", "coordinates": [ -74.985003, 40.064931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pp2-4jv", "LOCATION_NAME": "Piast International Delicatessen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983739, "LONGITUDE": -75.102531, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 103.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 186.0, "Total Spend": 167.0, "Total Transactions": 21.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102531, 39.983739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-ks5", "LOCATION_NAME": "The Spice Rack", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.075333, "LONGITUDE": -75.206122, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 512.0, "Total Transactions": 14.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206122, 40.075333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "LOCATION_NAME": "Volo Coffeehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 29797.0, "Total Transactions": 2233.0, "Total Customers": 688.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.48 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p7x-dsq", "LOCATION_NAME": "Rib Rack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042525, "LONGITUDE": -75.063219, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010314022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 6319.0, "Total Transactions": 160.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.56, "MEDIAN_SPEND_PER_CUSTOMER": 82.22 }, "geometry": { "type": "Point", "coordinates": [ -75.063219, 40.042525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p72-hqz", "LOCATION_NAME": "Dagwood's Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05063, "LONGITUDE": -74.999822, "DATE_RANGE_START": 2022, "Total Visits": 664.0, "Total Visitors": 505.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 59.0, "Total Spend": 996.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.42, "MEDIAN_SPEND_PER_CUSTOMER": 125.42 }, "geometry": { "type": "Point", "coordinates": [ -74.999822, 40.05063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 124.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1081.0, "Total Transactions": 26.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.25, "MEDIAN_SPEND_PER_CUSTOMER": 52.92 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-st9", "LOCATION_NAME": "Osteria", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.965046, "LONGITUDE": -75.161654, "DATE_RANGE_START": 2022, "Total Visits": 756.0, "Total Visitors": 465.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 146.0, "Total Spend": 54719.0, "Total Transactions": 389.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.62, "MEDIAN_SPEND_PER_CUSTOMER": 188.92 }, "geometry": { "type": "Point", "coordinates": [ -75.161654, 39.965046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-j35", "LOCATION_NAME": "Paddy's Old City Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95373, "LONGITUDE": -75.143964, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 64.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 102.0, "Total Spend": 10280.0, "Total Transactions": 176.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.14, "MEDIAN_SPEND_PER_CUSTOMER": 129.92 }, "geometry": { "type": "Point", "coordinates": [ -75.143964, 39.95373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-s89", "LOCATION_NAME": "Blume", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948455, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2022, "Total Visits": 566.0, "Total Visitors": 366.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 74.0, "Total Spend": 17893.0, "Total Transactions": 267.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.28, "MEDIAN_SPEND_PER_CUSTOMER": 94.56 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 39.948455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-z75", "LOCATION_NAME": "Pierogi Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101174, "LONGITUDE": -75.028995, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 82.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2780.0, "Total Transactions": 57.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.79, "MEDIAN_SPEND_PER_CUSTOMER": 79.43 }, "geometry": { "type": "Point", "coordinates": [ -75.028995, 40.101174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-jjv", "LOCATION_NAME": "Pelicana chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95156, "LONGITUDE": -75.203327, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 87.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 45.0, "Total Spend": 730.0, "Total Transactions": 26.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 51.29 }, "geometry": { "type": "Point", "coordinates": [ -75.203327, 39.95156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pmf-x89", "LOCATION_NAME": "The Jimmy Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954244, "LONGITUDE": -75.187043, "DATE_RANGE_START": 2022, "Total Visits": 599.0, "Total Visitors": 490.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2072.0, "Total Transactions": 54.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.3, "MEDIAN_SPEND_PER_CUSTOMER": 52.9 }, "geometry": { "type": "Point", "coordinates": [ -75.187043, 39.954244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "LOCATION_NAME": "Maggiano's Little Italy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953256, "LONGITUDE": -75.160263, "DATE_RANGE_START": 2022, "Total Visits": 756.0, "Total Visitors": 662.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 35023.0, "Total Transactions": 688.0, "Total Customers": 483.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 57.51 }, "geometry": { "type": "Point", "coordinates": [ -75.160263, 39.953256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-xwk", "LOCATION_NAME": "Hive Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931826, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 92.0, "POI_CBG": 421010030021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4379.0, "Total Transactions": 481.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 21.14 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.931826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dw4-qj9", "LOCATION_NAME": "Four Points By Sheraton", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.89167, "LONGITUDE": -75.232621, "DATE_RANGE_START": 2022, "Total Visits": 1389.0, "Total Visitors": 894.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 210.0, "Total Spend": 1306.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 141.97, "MEDIAN_SPEND_PER_CUSTOMER": 169.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232621, 39.89167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmf-jjv", "LOCATION_NAME": "Harper's Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952385, "LONGITUDE": -75.169897, "DATE_RANGE_START": 2022, "Total Visits": 4869.0, "Total Visitors": 2918.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 248.0, "Total Spend": 845.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.33, "MEDIAN_SPEND_PER_CUSTOMER": 115.77 }, "geometry": { "type": "Point", "coordinates": [ -75.169897, 39.952385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-snq", "LOCATION_NAME": "Alice Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948159, "LONGITUDE": -75.166048, "DATE_RANGE_START": 2022, "Total Visits": 4673.0, "Total Visitors": 3307.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 153.0, "Total Spend": 6098.0, "Total Transactions": 347.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.83, "MEDIAN_SPEND_PER_CUSTOMER": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.166048, 39.948159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-yjv", "LOCATION_NAME": "Amazing Crab House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940979, "LONGITUDE": -75.14584, "DATE_RANGE_START": 2022, "Total Visits": 484.0, "Total Visitors": 378.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 8610.0, "Total Transactions": 112.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.59, "MEDIAN_SPEND_PER_CUSTOMER": 118.78 }, "geometry": { "type": "Point", "coordinates": [ -75.14584, 39.940979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-k75", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.094502, "LONGITUDE": -75.018223, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 68.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5439.0, "Total Transactions": 124.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.97, "MEDIAN_SPEND_PER_CUSTOMER": 35.19 }, "geometry": { "type": "Point", "coordinates": [ -75.018223, 40.094502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "LOCATION_NAME": "1 Stop Smoke Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 129.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2920.0, "Total Transactions": 98.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 45.32 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904365, "LONGITUDE": -75.169382, "DATE_RANGE_START": 2022, "Total Visits": 4916.0, "Total Visitors": 4187.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 9424.0, "Total Transactions": 451.0, "Total Customers": 235.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.14, "MEDIAN_SPEND_PER_CUSTOMER": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.169382, 39.904365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-ph6-whq", "LOCATION_NAME": "Cedar Park Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986565, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 21.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3621.0, "Total Transactions": 157.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.79, "MEDIAN_SPEND_PER_CUSTOMER": 45.15 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-435", "LOCATION_NAME": "Atlas Pizza & Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947544, "LONGITUDE": -75.227506, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010073004.0, "MEDIAN_DWELL": 287.0, "Total Spend": 237.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.85, "MEDIAN_SPEND_PER_CUSTOMER": 32.61 }, "geometry": { "type": "Point", "coordinates": [ -75.227506, 39.947544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjf-zvf", "LOCATION_NAME": "McNally's Tavern Chestnut Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077129, "LONGITUDE": -75.208866, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 47.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 8742.0, "Total Transactions": 169.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.65, "MEDIAN_SPEND_PER_CUSTOMER": 74.76 }, "geometry": { "type": "Point", "coordinates": [ -75.208866, 40.077129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024672, "LONGITUDE": -75.147508, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 64.0, "POI_CBG": 421010283003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2821.0, "Total Transactions": 397.0, "Total Customers": 206.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.99, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.147508, 40.024672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952204, "LONGITUDE": -75.166371, "DATE_RANGE_START": 2022, "Total Visits": 6073.0, "Total Visitors": 4157.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 107.0, "Total Spend": 3113.0, "Total Transactions": 517.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.05, "MEDIAN_SPEND_PER_CUSTOMER": 7.64 }, "geometry": { "type": "Point", "coordinates": [ -75.166371, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "LOCATION_NAME": "C Town Supermarkets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.99594, "LONGITUDE": -75.172136, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 42.0, "POI_CBG": 421010169011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4254.0, "Total Transactions": 225.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.96, "MEDIAN_SPEND_PER_CUSTOMER": 21.87 }, "geometry": { "type": "Point", "coordinates": [ -75.172136, 39.99594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7z-qs5", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.043867, "LONGITUDE": -75.088282, "DATE_RANGE_START": 2022, "Total Visits": 2495.0, "Total Visitors": 1335.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 4636.0, "Total Transactions": 23.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 222.77, "MEDIAN_SPEND_PER_CUSTOMER": 448.75 }, "geometry": { "type": "Point", "coordinates": [ -75.088282, 40.043867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2022, "Total Visits": 429.0, "Total Visitors": 267.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 288.0, "Total Transactions": 38.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.33 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055662, "LONGITUDE": -75.049241, "DATE_RANGE_START": 2022, "Total Visits": 2768.0, "Total Visitors": 1730.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 113701.0, "Total Transactions": 5251.0, "Total Customers": 2314.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.97, "MEDIAN_SPEND_PER_CUSTOMER": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.049241, 40.055662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "LOCATION_NAME": "Harbison Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2022, "Total Visits": 181.0, "Total Visitors": 103.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2717.0, "Total Transactions": 108.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.011535, "LONGITUDE": -75.111695, "DATE_RANGE_START": 2022, "Total Visits": 812.0, "Total Visitors": 577.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7704.0, "Total Transactions": 500.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.17, "MEDIAN_SPEND_PER_CUSTOMER": 15.48 }, "geometry": { "type": "Point", "coordinates": [ -75.111695, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "LOCATION_NAME": "Rittenhouse Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 57.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1231.0, "Total Transactions": 64.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.56, "MEDIAN_SPEND_PER_CUSTOMER": 21.23 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kfz", "LOCATION_NAME": "The Rittenhouse Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949841, "LONGITUDE": -75.173264, "DATE_RANGE_START": 2022, "Total Visits": 747.0, "Total Visitors": 472.0, "POI_CBG": 421010008034.0, "MEDIAN_DWELL": 105.0, "Total Spend": 28800.0, "Total Transactions": 45.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 178.73, "MEDIAN_SPEND_PER_CUSTOMER": 467.68 }, "geometry": { "type": "Point", "coordinates": [ -75.173264, 39.949841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "LOCATION_NAME": "Secret Garden", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 40.051859, "LONGITUDE": -75.235556, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 61.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5740.0, "Total Transactions": 146.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.22, "MEDIAN_SPEND_PER_CUSTOMER": 55.02 }, "geometry": { "type": "Point", "coordinates": [ -75.235556, 40.051859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmb-ce5", "LOCATION_NAME": "Ralphs Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940063, "LONGITUDE": -75.157832, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 174.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 375.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 107.5, "MEDIAN_SPEND_PER_CUSTOMER": 107.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157832, 39.940063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "LOCATION_NAME": "Jj Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951963, "LONGITUDE": -75.174719, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 63.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 83.0, "Total Spend": 11549.0, "Total Transactions": 247.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.04, "MEDIAN_SPEND_PER_CUSTOMER": 61.36 }, "geometry": { "type": "Point", "coordinates": [ -75.174719, 39.951963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-xqz", "LOCATION_NAME": "Ambassador", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97078, "LONGITUDE": -75.147954, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 57.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 1641.0, "Total Transactions": 51.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.75, "MEDIAN_SPEND_PER_CUSTOMER": 93.84 }, "geometry": { "type": "Point", "coordinates": [ -75.147954, 39.97078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-jd9", "LOCATION_NAME": "Westin Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952041, "LONGITUDE": -75.168491, "DATE_RANGE_START": 2022, "Total Visits": 2801.0, "Total Visitors": 1981.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 127.0, "Total Spend": 22179.0, "Total Transactions": 122.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.1, "MEDIAN_SPEND_PER_CUSTOMER": 193.18 }, "geometry": { "type": "Point", "coordinates": [ -75.168491, 39.952041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-6p9", "LOCATION_NAME": "Dolce Italian Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951185, "LONGITUDE": -75.165142, "DATE_RANGE_START": 2022, "Total Visits": 4390.0, "Total Visitors": 2627.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 364.0, "Total Spend": 1416.0, "Total Transactions": 23.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.72, "MEDIAN_SPEND_PER_CUSTOMER": 85.44 }, "geometry": { "type": "Point", "coordinates": [ -75.165142, 39.951185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9q-ht9", "LOCATION_NAME": "Bubbakoo's Burritos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078769, "LONGITUDE": -75.027229, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 61.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2723.0, "Total Transactions": 148.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 37.23 }, "geometry": { "type": "Point", "coordinates": [ -75.027229, 40.078769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-cbk", "LOCATION_NAME": "Oregon Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913868, "LONGITUDE": -75.152939, "DATE_RANGE_START": 2022, "Total Visits": 767.0, "Total Visitors": 573.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 39.0, "Total Spend": 854.0, "Total Transactions": 28.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.73, "MEDIAN_SPEND_PER_CUSTOMER": 45.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152939, 39.913868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgb-7h5", "LOCATION_NAME": "Pete's Famous Pizza Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967183, "LONGITUDE": -75.176415, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 59.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 209.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176415, 39.967183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "LOCATION_NAME": "Varga Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 176.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 12669.0, "Total Transactions": 207.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.69, "MEDIAN_SPEND_PER_CUSTOMER": 87.08 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@63s-dw4-rzf", "LOCATION_NAME": "Admirals Club Terminal F", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.880659, "LONGITUDE": -75.23736, "DATE_RANGE_START": 2022, "Total Visits": 13519.0, "Total Visitors": 11242.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 414.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.41, "MEDIAN_SPEND_PER_CUSTOMER": 118.82 }, "geometry": { "type": "Point", "coordinates": [ -75.23736, 39.880659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2022, "Total Visits": 1291.0, "Total Visitors": 916.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 111042.0, "Total Transactions": 5709.0, "Total Customers": 2293.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.47, "MEDIAN_SPEND_PER_CUSTOMER": 26.49 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-qs5", "LOCATION_NAME": "Panasian Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030993, "LONGITUDE": -75.10376, "DATE_RANGE_START": 2022, "Total Visits": 530.0, "Total Visitors": 469.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 30.0, "Total Spend": 11373.0, "Total Transactions": 256.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.45, "MEDIAN_SPEND_PER_CUSTOMER": 77.72 }, "geometry": { "type": "Point", "coordinates": [ -75.10376, 40.030993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgg-n3q", "LOCATION_NAME": "Wine & Spirits Stores", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.998975, "LONGITUDE": -75.166581, "DATE_RANGE_START": 2022, "Total Visits": 228.0, "Total Visitors": 125.0, "POI_CBG": 421010173001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 669.0, "Total Transactions": 24.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.166581, 39.998975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "LOCATION_NAME": "The Bottle Shop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": null, "Total Spend": 18271.0, "Total Transactions": 746.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.09, "MEDIAN_SPEND_PER_CUSTOMER": 44.32 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "LOCATION_NAME": "Lee's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 959.0, "Total Spend": 4247.0, "Total Transactions": 253.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-ph8-qmk", "LOCATION_NAME": "Blue Lagoon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977926, "LONGITUDE": -75.26739, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 21.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 103.0, "Total Spend": 533.0, "Total Transactions": 19.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.78, "MEDIAN_SPEND_PER_CUSTOMER": 60.48 }, "geometry": { "type": "Point", "coordinates": [ -75.26739, 39.977926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pjk-3nq", "LOCATION_NAME": "Pina's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069435, "LONGITUDE": -75.239981, "DATE_RANGE_START": 2022, "Total Visits": 561.0, "Total Visitors": 382.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 333.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.77, "MEDIAN_SPEND_PER_CUSTOMER": 35.54 }, "geometry": { "type": "Point", "coordinates": [ -75.239981, 40.069435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "LOCATION_NAME": "Rosario's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 52.0, "POI_CBG": 421010022002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2085.0, "Total Transactions": 84.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.35, "MEDIAN_SPEND_PER_CUSTOMER": 38.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-835", "LOCATION_NAME": "Luhv Vegan Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953213, "LONGITUDE": -75.159384, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 5848.0, "Total Transactions": 336.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.13, "MEDIAN_SPEND_PER_CUSTOMER": 31.02 }, "geometry": { "type": "Point", "coordinates": [ -75.159384, 39.953213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pgb-fxq", "LOCATION_NAME": "Cherry Street Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95699, "LONGITUDE": -75.175753, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 98.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 843.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 121.0, "MEDIAN_SPEND_PER_CUSTOMER": 242.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175753, 39.95699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgd-zfz", "LOCATION_NAME": "Ramen Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957167, "LONGITUDE": -75.192099, "DATE_RANGE_START": 2022, "Total Visits": 652.0, "Total Visitors": 115.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 809.0, "Total Spend": 1407.0, "Total Transactions": 38.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.44, "MEDIAN_SPEND_PER_CUSTOMER": 55.46 }, "geometry": { "type": "Point", "coordinates": [ -75.192099, 39.957167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "LOCATION_NAME": "Spasso Italian Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2022, "Total Visits": 528.0, "Total Visitors": 500.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 35775.0, "Total Transactions": 362.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.4, "MEDIAN_SPEND_PER_CUSTOMER": 165.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmc-vzz", "LOCATION_NAME": "Chopstick House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926547, "LONGITUDE": -75.14612, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 80.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2083.0, "Total Transactions": 96.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.66, "MEDIAN_SPEND_PER_CUSTOMER": 38.63 }, "geometry": { "type": "Point", "coordinates": [ -75.14612, 39.926547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-td9", "LOCATION_NAME": "Volver", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946987, "LONGITUDE": -75.165701, "DATE_RANGE_START": 2022, "Total Visits": 1441.0, "Total Visitors": 1106.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3970.0, "Total Transactions": 37.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.3, "MEDIAN_SPEND_PER_CUSTOMER": 156.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165701, 39.946987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951369, "LONGITUDE": -75.166562, "DATE_RANGE_START": 2022, "Total Visits": 390.0, "Total Visitors": 338.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9137.0, "Total Transactions": 523.0, "Total Customers": 423.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.1, "MEDIAN_SPEND_PER_CUSTOMER": 17.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166562, 39.951369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923331, "LONGITUDE": -75.144837, "DATE_RANGE_START": 2022, "Total Visits": 1071.0, "Total Visitors": 753.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 220.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.8, "MEDIAN_SPEND_PER_CUSTOMER": 17.18 }, "geometry": { "type": "Point", "coordinates": [ -75.144837, 39.923331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-q75", "LOCATION_NAME": "Stacy's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979079, "LONGITUDE": -75.268686, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 49.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 398.0, "Total Transactions": 24.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.4, "MEDIAN_SPEND_PER_CUSTOMER": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.268686, 39.979079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 49.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 4360.0, "Total Transactions": 186.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.8, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg9-ty9", "LOCATION_NAME": "Brandywine Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962927, "LONGITUDE": -75.163263, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 52.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 561.0, "Total Transactions": 45.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.962927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnw-m49", "LOCATION_NAME": "One Shot Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96771, "LONGITUDE": -75.140654, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 22527.0, "Total Transactions": 1287.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.28, "MEDIAN_SPEND_PER_CUSTOMER": 37.16 }, "geometry": { "type": "Point", "coordinates": [ -75.140654, 39.96771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-phm-8gk", "LOCATION_NAME": "Tri State Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.05453, "LONGITUDE": -75.141682, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 21.0, "POI_CBG": 421010268003.0, "MEDIAN_DWELL": 238.0, "Total Spend": 1436.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 206.0, "MEDIAN_SPEND_PER_CUSTOMER": 412.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141682, 40.05453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "LOCATION_NAME": "Suit Corner", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2022, "Total Visits": 1148.0, "Total Visitors": 1028.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3836.0, "Total Transactions": 24.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.88, "MEDIAN_SPEND_PER_CUSTOMER": 228.88 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-k75", "LOCATION_NAME": "Best Buy", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.082306, "LONGITUDE": -75.023635, "DATE_RANGE_START": 2022, "Total Visits": 655.0, "Total Visitors": 571.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4704.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 92.4, "MEDIAN_SPEND_PER_CUSTOMER": 92.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023635, 40.082306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2022, "Total Visits": 1256.0, "Total Visitors": 871.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 185564.0, "Total Transactions": 7471.0, "Total Customers": 3984.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.07, "MEDIAN_SPEND_PER_CUSTOMER": 29.44 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "LOCATION_NAME": "Green Farm", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2022, "Total Visits": 503.0, "Total Visitors": 394.0, "POI_CBG": 421010357012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4105.0, "Total Transactions": 200.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.29, "MEDIAN_SPEND_PER_CUSTOMER": 42.26 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22h@628-pmf-n3q", "LOCATION_NAME": "Genji", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953358, "LONGITUDE": -75.165439, "DATE_RANGE_START": 2022, "Total Visits": 446.0, "Total Visitors": 331.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 43.0, "Total Spend": 664.0, "Total Transactions": 45.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.165439, 39.953358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "LOCATION_NAME": "Abyssinia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 42.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 17.0, "Total Spend": 6753.0, "Total Transactions": 199.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.2, "MEDIAN_SPEND_PER_CUSTOMER": 51.24 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-xbk", "LOCATION_NAME": "Ricky Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951154, "LONGITUDE": -75.14673, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 51.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 464.0, "Total Transactions": 21.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14673, 39.951154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bzf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.035481, "LONGITUDE": -75.10725, "DATE_RANGE_START": 2022, "Total Visits": 376.0, "Total Visitors": 244.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1067.0, "Total Transactions": 141.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.14, "MEDIAN_SPEND_PER_CUSTOMER": 7.73 }, "geometry": { "type": "Point", "coordinates": [ -75.10725, 40.035481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pgg-b8v", "LOCATION_NAME": "Shrimp Express II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.000369, "LONGITUDE": -75.16696, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010172013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 988.0, "Total Transactions": 30.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.88, "MEDIAN_SPEND_PER_CUSTOMER": 52.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16696, 40.000369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phy-h3q", "LOCATION_NAME": "Latin Fashion", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.022384, "LONGITUDE": -75.133854, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2648.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133854, 40.022384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-xt9", "LOCATION_NAME": "Family Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.987227, "LONGITUDE": -75.138158, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 17.0, "POI_CBG": 421010163004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3239.0, "Total Transactions": 312.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.8, "MEDIAN_SPEND_PER_CUSTOMER": 20.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138158, 39.987227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "LOCATION_NAME": "Mr. Tire", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 23.0, "POI_CBG": 421010316006.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2399.0, "Total Transactions": 12.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 142.57, "MEDIAN_SPEND_PER_CUSTOMER": 243.44 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phy-wx5", "LOCATION_NAME": "Brother's Pizza House II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026513, "LONGITUDE": -75.12182, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 178.0, "Total Transactions": 9.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.84, "MEDIAN_SPEND_PER_CUSTOMER": 50.96 }, "geometry": { "type": "Point", "coordinates": [ -75.12182, 40.026513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2022, "Total Visits": 247.0, "Total Visitors": 183.0, "POI_CBG": 421010191003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 169.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.23, "MEDIAN_SPEND_PER_CUSTOMER": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-tsq", "LOCATION_NAME": "Chaes Food LLC", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.983616, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 61.0, "POI_CBG": 421010162002.0, "MEDIAN_DWELL": 365.0, "Total Spend": 19528.0, "Total Transactions": 37.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 247.5, "MEDIAN_SPEND_PER_CUSTOMER": 295.03 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.983616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "LOCATION_NAME": "Moore Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.926601, "LONGITUDE": -75.156132, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 197.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 22405.0, "Total Transactions": 662.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.15, "MEDIAN_SPEND_PER_CUSTOMER": 64.76 }, "geometry": { "type": "Point", "coordinates": [ -75.156132, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-92k", "LOCATION_NAME": "Eddie Bauer Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951639, "LONGITUDE": -75.155758, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2599.0, "Total Transactions": 51.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 37.98 }, "geometry": { "type": "Point", "coordinates": [ -75.155758, 39.951639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.028739, "LONGITUDE": -75.099173, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 305.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12775.0, "Total Transactions": 638.0, "Total Customers": 530.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.53, "MEDIAN_SPEND_PER_CUSTOMER": 17.34 }, "geometry": { "type": "Point", "coordinates": [ -75.099173, 40.028739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.021323, "LONGITUDE": -75.133522, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 146.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1322.0, "Total Transactions": 120.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.28, "MEDIAN_SPEND_PER_CUSTOMER": 9.83 }, "geometry": { "type": "Point", "coordinates": [ -75.133522, 40.021323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-p9k-2zf", "LOCATION_NAME": "Dollar Surplus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.103109, "LONGITUDE": -75.010252, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 500.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 569.0, "Total Transactions": 49.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.09, "MEDIAN_SPEND_PER_CUSTOMER": 20.18 }, "geometry": { "type": "Point", "coordinates": [ -75.010252, 40.103109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-73q", "LOCATION_NAME": "Dr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947797, "LONGITUDE": -75.193456, "DATE_RANGE_START": 2022, "Total Visits": 17711.0, "Total Visitors": 9317.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 114.0, "Total Spend": 9837.0, "Total Transactions": 1986.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.43, "MEDIAN_SPEND_PER_CUSTOMER": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.193456, 39.947797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-87q", "LOCATION_NAME": "Marriott Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952751, "LONGITUDE": -75.160485, "DATE_RANGE_START": 2022, "Total Visits": 16025.0, "Total Visitors": 9542.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 200.0, "Total Spend": 2935.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 104.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160485, 39.952751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phd-h3q", "LOCATION_NAME": "North American Motor Inns", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 40.003057, "LONGITUDE": -75.221338, "DATE_RANGE_START": 2022, "Total Visits": 322.0, "Total Visitors": 240.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 182.0, "Total Spend": 1351.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 387.68, "MEDIAN_SPEND_PER_CUSTOMER": 387.68 }, "geometry": { "type": "Point", "coordinates": [ -75.221338, 40.003057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgd-zs5", "LOCATION_NAME": "The Study at University City", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954404, "LONGITUDE": -75.19003, "DATE_RANGE_START": 2022, "Total Visits": 1495.0, "Total Visitors": 831.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 477.0, "Total Spend": 149.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.34, "MEDIAN_SPEND_PER_CUSTOMER": 42.67 }, "geometry": { "type": "Point", "coordinates": [ -75.19003, 39.954404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-66k", "LOCATION_NAME": "Oloroso", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948946, "LONGITUDE": -75.159995, "DATE_RANGE_START": 2022, "Total Visits": 2065.0, "Total Visitors": 1467.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 5589.0, "Total Transactions": 44.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.0, "MEDIAN_SPEND_PER_CUSTOMER": 174.55 }, "geometry": { "type": "Point", "coordinates": [ -75.159995, 39.948946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913861, "LONGITUDE": -75.154438, "DATE_RANGE_START": 2022, "Total Visits": 2761.0, "Total Visitors": 1598.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 970.0, "Total Transactions": 12.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.59, "MEDIAN_SPEND_PER_CUSTOMER": 98.88 }, "geometry": { "type": "Point", "coordinates": [ -75.154438, 39.913861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2022, "Total Visits": 1636.0, "Total Visitors": 1096.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 109601.0, "Total Transactions": 5617.0, "Total Customers": 2094.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.3, "MEDIAN_SPEND_PER_CUSTOMER": 25.49 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-vzz", "LOCATION_NAME": "Barcelona Wine Bar & Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928118, "LONGITUDE": -75.165293, "DATE_RANGE_START": 2022, "Total Visits": 225.0, "Total Visitors": 157.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 97.0, "Total Spend": 3345.0, "Total Transactions": 31.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 112.77, "MEDIAN_SPEND_PER_CUSTOMER": 186.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165293, 39.928118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pm9-zs5", "LOCATION_NAME": "Retrospect", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941639, "LONGITUDE": -75.151247, "DATE_RANGE_START": 2022, "Total Visits": 859.0, "Total Visitors": 679.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 941.0, "Total Transactions": 45.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151247, 39.941639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pgc-hh5", "LOCATION_NAME": "Leidy's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974749, "LONGITUDE": -75.209918, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010110002.0, "MEDIAN_DWELL": null, "Total Spend": 351.0, "Total Transactions": 38.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.46, "MEDIAN_SPEND_PER_CUSTOMER": 10.92 }, "geometry": { "type": "Point", "coordinates": [ -75.209918, 39.974749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj3-b8v", "LOCATION_NAME": "The Stand", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01377, "LONGITUDE": -75.15794, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010202005.0, "MEDIAN_DWELL": null, "Total Spend": 16325.0, "Total Transactions": 321.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.53, "MEDIAN_SPEND_PER_CUSTOMER": 82.24 }, "geometry": { "type": "Point", "coordinates": [ -75.15794, 40.01377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgh-vmk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982434, "LONGITUDE": -75.155908, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 218.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3383.0, "Total Transactions": 240.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.16, "MEDIAN_SPEND_PER_CUSTOMER": 15.04 }, "geometry": { "type": "Point", "coordinates": [ -75.155908, 39.982434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032663, "LONGITUDE": -75.179788, "DATE_RANGE_START": 2022, "Total Visits": 348.0, "Total Visitors": 211.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11814.0, "Total Transactions": 1413.0, "Total Customers": 629.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.38, "MEDIAN_SPEND_PER_CUSTOMER": 10.15 }, "geometry": { "type": "Point", "coordinates": [ -75.179788, 40.032663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "LOCATION_NAME": "Schmear It", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956751, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 3134.0, "Total Transactions": 321.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pjf-jvz", "LOCATION_NAME": "Bahia Bowls Chestnut Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072819, "LONGITUDE": -75.202597, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7044.0, "Total Transactions": 448.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.36, "MEDIAN_SPEND_PER_CUSTOMER": 32.04 }, "geometry": { "type": "Point", "coordinates": [ -75.202597, 40.072819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-wkz", "LOCATION_NAME": "Garces Events", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 39.951558, "LONGITUDE": -75.180009, "DATE_RANGE_START": 2022, "Total Visits": 521.0, "Total Visitors": 354.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 103.0, "Total Spend": 20414.0, "Total Transactions": 1228.0, "Total Customers": 578.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.2, "MEDIAN_SPEND_PER_CUSTOMER": 27.44 }, "geometry": { "type": "Point", "coordinates": [ -75.180009, 39.951558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-y7q", "LOCATION_NAME": "Brothers Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.007979, "LONGITUDE": -75.150258, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 31.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 662.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.99, "MEDIAN_SPEND_PER_CUSTOMER": 119.98 }, "geometry": { "type": "Point", "coordinates": [ -75.150258, 40.007979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962963, "LONGITUDE": -75.174058, "DATE_RANGE_START": 2022, "Total Visits": 2455.0, "Total Visitors": 1474.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 178348.0, "Total Transactions": 4227.0, "Total Customers": 1777.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.29, "MEDIAN_SPEND_PER_CUSTOMER": 47.67 }, "geometry": { "type": "Point", "coordinates": [ -75.174058, 39.962963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-6rk", "LOCATION_NAME": "The Bishop's Collar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967569, "LONGITUDE": -75.176728, "DATE_RANGE_START": 2022, "Total Visits": 512.0, "Total Visitors": 397.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 58.0, "Total Spend": 9269.0, "Total Transactions": 221.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 85.78 }, "geometry": { "type": "Point", "coordinates": [ -75.176728, 39.967569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-jgk", "LOCATION_NAME": "The Happy Rooster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950462, "LONGITUDE": -75.16756, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 139.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 10298.0, "Total Transactions": 251.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.2, "MEDIAN_SPEND_PER_CUSTOMER": 69.95 }, "geometry": { "type": "Point", "coordinates": [ -75.16756, 39.950462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-ty9", "LOCATION_NAME": "Shane Confectionery", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.949497, "LONGITUDE": -75.14262, "DATE_RANGE_START": 2022, "Total Visits": 1265.0, "Total Visitors": 1058.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 4330.0, "Total Transactions": 155.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14262, 39.949497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040851, "LONGITUDE": -75.075239, "DATE_RANGE_START": 2022, "Total Visits": 507.0, "Total Visitors": 326.0, "POI_CBG": 421010313004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4258.0, "Total Transactions": 268.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.43, "MEDIAN_SPEND_PER_CUSTOMER": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.075239, 40.040851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.989253, "LONGITUDE": -75.090212, "DATE_RANGE_START": 2022, "Total Visits": 2188.0, "Total Visitors": 1206.0, "POI_CBG": 421010379006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 443.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.3, "MEDIAN_SPEND_PER_CUSTOMER": 35.25 }, "geometry": { "type": "Point", "coordinates": [ -75.090212, 39.989253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8t-vvf", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.089192, "LONGITUDE": -74.961438, "DATE_RANGE_START": 2022, "Total Visits": 211.0, "Total Visitors": 199.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 325.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.79, "MEDIAN_SPEND_PER_CUSTOMER": 28.79 }, "geometry": { "type": "Point", "coordinates": [ -74.961438, 40.089192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-qzz", "LOCATION_NAME": "Umai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944367, "LONGITUDE": -75.173187, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 70.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 406.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 95.6, "MEDIAN_SPEND_PER_CUSTOMER": 116.66 }, "geometry": { "type": "Point", "coordinates": [ -75.173187, 39.944367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-sbk", "LOCATION_NAME": "Izzy's 33", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927844, "LONGITUDE": -75.159073, "DATE_RANGE_START": 2022, "Total Visits": 300.0, "Total Visitors": 172.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 66.0, "Total Spend": 3430.0, "Total Transactions": 77.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.94, "MEDIAN_SPEND_PER_CUSTOMER": 50.59 }, "geometry": { "type": "Point", "coordinates": [ -75.159073, 39.927844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "LOCATION_NAME": "Checkers Drive-In Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 91.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5410.0, "Total Transactions": 380.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.45, "MEDIAN_SPEND_PER_CUSTOMER": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 202.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6913.0, "Total Transactions": 519.0, "Total Customers": 394.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.62, "MEDIAN_SPEND_PER_CUSTOMER": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "LOCATION_NAME": "RIM Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 54.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2071.0, "Total Transactions": 115.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2022, "Total Visits": 5082.0, "Total Visitors": 3631.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 12900.0, "Total Transactions": 490.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.06, "MEDIAN_SPEND_PER_CUSTOMER": 40.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 261.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 34.0, "Total Spend": 19450.0, "Total Transactions": 1524.0, "Total Customers": 859.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "LOCATION_NAME": "Scoop Deville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949429, "LONGITUDE": -75.162851, "DATE_RANGE_START": 2022, "Total Visits": 470.0, "Total Visitors": 326.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 12350.0, "Total Transactions": 909.0, "Total Customers": 474.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.25 }, "geometry": { "type": "Point", "coordinates": [ -75.162851, 39.949429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "LOCATION_NAME": "Sprouts Farmers Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2022, "Total Visits": 1918.0, "Total Visitors": 977.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 339915.0, "Total Transactions": 8702.0, "Total Customers": 4380.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.82, "MEDIAN_SPEND_PER_CUSTOMER": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2022, "Total Visits": 1909.0, "Total Visitors": 1012.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 75195.0, "Total Transactions": 7744.0, "Total Customers": 3127.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.55, "MEDIAN_SPEND_PER_CUSTOMER": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2022, "Total Visits": 502.0, "Total Visitors": 395.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 438.0, "Total Transactions": 26.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.3, "MEDIAN_SPEND_PER_CUSTOMER": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p85-p7q", "LOCATION_NAME": "Kim's General Store", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.057222, "LONGITUDE": -75.030807, "DATE_RANGE_START": 2022, "Total Visits": 946.0, "Total Visitors": 622.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1922.0, "Total Transactions": 118.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.83, "MEDIAN_SPEND_PER_CUSTOMER": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.030807, 40.057222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "LOCATION_NAME": "The Ranchito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 49.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2225.0, "Total Transactions": 98.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2022, "Total Visits": 793.0, "Total Visitors": 594.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12076.0, "Total Transactions": 1017.0, "Total Customers": 739.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-226@628-pgb-3qz", "LOCATION_NAME": "Jazzman's Cafe & Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957638, "LONGITUDE": -75.163879, "DATE_RANGE_START": 2022, "Total Visits": 632.0, "Total Visitors": 483.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 117.0, "Total Spend": 39.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.54, "MEDIAN_SPEND_PER_CUSTOMER": 11.08 }, "geometry": { "type": "Point", "coordinates": [ -75.163879, 39.957638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2022, "Total Visits": 824.0, "Total Visitors": 472.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 13941.0, "Total Transactions": 1610.0, "Total Customers": 662.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.95, "MEDIAN_SPEND_PER_CUSTOMER": 11.36 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033268, "LONGITUDE": -75.084729, "DATE_RANGE_START": 2022, "Total Visits": 380.0, "Total Visitors": 280.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1268.0, "Total Transactions": 179.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.94, "MEDIAN_SPEND_PER_CUSTOMER": 7.61 }, "geometry": { "type": "Point", "coordinates": [ -75.084729, 40.033268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj8-2ff", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030225, "LONGITUDE": -75.104904, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 256.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 48.0, "Total Spend": 64.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.104904, 40.030225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "LOCATION_NAME": "El Coqui Panaderia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 207.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 22992.0, "Total Transactions": 782.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.6, "MEDIAN_SPEND_PER_CUSTOMER": 34.36 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "LOCATION_NAME": "Vernick Food & Drink", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2022, "Total Visits": 2063.0, "Total Visitors": 1380.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 90.0, "Total Spend": 25677.0, "Total Transactions": 153.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.0, "MEDIAN_SPEND_PER_CUSTOMER": 265.85 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg2-hdv", "LOCATION_NAME": "Mi Puebla Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059999, "LONGITUDE": -75.19073, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 51.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9857.0, "Total Transactions": 314.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 57.84 }, "geometry": { "type": "Point", "coordinates": [ -75.19073, 40.059999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-3kf", "LOCATION_NAME": "Mirage Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941399, "LONGITUDE": -75.144795, "DATE_RANGE_START": 2022, "Total Visits": 749.0, "Total Visitors": 596.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 38.0, "Total Spend": 32363.0, "Total Transactions": 268.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.7, "MEDIAN_SPEND_PER_CUSTOMER": 150.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144795, 39.941399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgf-kj9", "LOCATION_NAME": "Cosmic Catering", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 39.969073, "LONGITUDE": -75.185313, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 152.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 11745.0, "Total Transactions": 1012.0, "Total Customers": 382.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185313, 39.969073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnw-nnq", "LOCATION_NAME": "Kung Fu Necktie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.970272, "LONGITUDE": -75.135925, "DATE_RANGE_START": 2022, "Total Visits": 672.0, "Total Visitors": 540.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 2077.0, "Total Transactions": 92.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 39.970272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "LOCATION_NAME": "House of Kosher", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 190.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 28573.0, "Total Transactions": 322.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.67, "MEDIAN_SPEND_PER_CUSTOMER": 118.04 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-7bk", "LOCATION_NAME": "Franky Bradley's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948507, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2022, "Total Visits": 392.0, "Total Visitors": 308.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 31.0, "Total Spend": 585.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.0, "MEDIAN_SPEND_PER_CUSTOMER": 86.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.948507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-mp9", "LOCATION_NAME": "Concourse Dance Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95318, "LONGITUDE": -75.167893, "DATE_RANGE_START": 2022, "Total Visits": 937.0, "Total Visitors": 678.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 87.0, "Total Spend": 66160.0, "Total Transactions": 3188.0, "Total Customers": 768.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 39.95318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-s89", "LOCATION_NAME": "Tequilas Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948519, "LONGITUDE": -75.168054, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 223.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1799.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 177.42, "MEDIAN_SPEND_PER_CUSTOMER": 250.06 }, "geometry": { "type": "Point", "coordinates": [ -75.168054, 39.948519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "LOCATION_NAME": "Thai Singha House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95527, "LONGITUDE": -75.20037, "DATE_RANGE_START": 2022, "Total Visits": 1129.0, "Total Visitors": 564.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 353.0, "Total Spend": 1824.0, "Total Transactions": 51.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.52 }, "geometry": { "type": "Point", "coordinates": [ -75.20037, 39.95527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-phy-6kz", "LOCATION_NAME": "La Casa Del Sandwich", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024809, "LONGITUDE": -75.123343, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 195.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 38.0, "Total Spend": 209.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123343, 40.024809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2022, "Total Visits": 632.0, "Total Visitors": 399.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 8181.0, "Total Transactions": 695.0, "Total Customers": 558.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.89, "MEDIAN_SPEND_PER_CUSTOMER": 11.07 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2022, "Total Visits": 479.0, "Total Visitors": 413.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 18199.0, "Total Transactions": 1108.0, "Total Customers": 819.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.05, "MEDIAN_SPEND_PER_CUSTOMER": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2022, "Total Visits": 364.0, "Total Visitors": 317.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7229.0, "Total Transactions": 542.0, "Total Customers": 406.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.6, "MEDIAN_SPEND_PER_CUSTOMER": 13.05 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "LOCATION_NAME": "Shot Tower Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 73.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 85.0, "Total Spend": 10302.0, "Total Transactions": 1145.0, "Total Customers": 321.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.38 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952185, "LONGITUDE": -75.173618, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 159.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6619.0, "Total Transactions": 1031.0, "Total Customers": 495.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.47, "MEDIAN_SPEND_PER_CUSTOMER": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.173618, 39.952185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-h5z", "LOCATION_NAME": "Ground Up Coffee Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926043, "LONGITUDE": -75.168183, "DATE_RANGE_START": 2022, "Total Visits": 1179.0, "Total Visitors": 744.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 174.0, "Total Spend": 3015.0, "Total Transactions": 324.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.38, "MEDIAN_SPEND_PER_CUSTOMER": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.168183, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-f2k", "LOCATION_NAME": "Stina Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925216, "LONGITUDE": -75.174721, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 31.0, "Total Spend": 725.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174721, 39.925216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "LOCATION_NAME": "Fishtown Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2322.0, "Total Transactions": 105.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pj3-73q", "LOCATION_NAME": "Duran Grocery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023362, "LONGITUDE": -75.149988, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010280004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 731.0, "Total Transactions": 61.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.149988, 40.023362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgf-3bk", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.955764, "LONGITUDE": -75.194013, "DATE_RANGE_START": 2022, "Total Visits": 2303.0, "Total Visitors": 1484.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 63.0, "Total Spend": 76.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.08, "MEDIAN_SPEND_PER_CUSTOMER": 7.08 }, "geometry": { "type": "Point", "coordinates": [ -75.194013, 39.955764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2022, "Total Visits": 500.0, "Total Visitors": 389.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2292.0, "Total Transactions": 89.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.45, "MEDIAN_SPEND_PER_CUSTOMER": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pp5-gc5", "LOCATION_NAME": "The Resource Exchange", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.983924, "LONGITUDE": -75.113554, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 91.0, "POI_CBG": 421010180013.0, "MEDIAN_DWELL": 38.0, "Total Spend": 142.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.13, "MEDIAN_SPEND_PER_CUSTOMER": 40.77 }, "geometry": { "type": "Point", "coordinates": [ -75.113554, 39.983924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgf-575", "LOCATION_NAME": "Crackn Crabs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960125, "LONGITUDE": -75.197142, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 98.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 935.0, "Total Spend": 6423.0, "Total Transactions": 113.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 88.56 }, "geometry": { "type": "Point", "coordinates": [ -75.197142, 39.960125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-jsq", "LOCATION_NAME": "Danny's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045112, "LONGITUDE": -75.117134, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 19617.0, "Total Transactions": 423.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.92, "MEDIAN_SPEND_PER_CUSTOMER": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.117134, 40.045112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "LOCATION_NAME": "Knead Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948165, "LONGITUDE": -75.153606, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 64.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 181.0, "Total Spend": 7794.0, "Total Transactions": 516.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.99, "MEDIAN_SPEND_PER_CUSTOMER": 26.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153606, 39.948165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999771, "LONGITUDE": -75.153727, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 71.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 332.0, "Total Spend": 550.0, "Total Transactions": 30.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.91, "MEDIAN_SPEND_PER_CUSTOMER": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.153727, 39.999771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pmb-ghq", "LOCATION_NAME": "Alexander Inn", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.946221, "LONGITUDE": -75.161018, "DATE_RANGE_START": 2022, "Total Visits": 1042.0, "Total Visitors": 568.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 459.0, "Total Spend": 2174.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 166.33, "MEDIAN_SPEND_PER_CUSTOMER": 623.82 }, "geometry": { "type": "Point", "coordinates": [ -75.161018, 39.946221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "LOCATION_NAME": "Morimoto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2022, "Total Visits": 261.0, "Total Visitors": 193.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 54723.0, "Total Transactions": 272.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 171.49, "MEDIAN_SPEND_PER_CUSTOMER": 320.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-qzz", "LOCATION_NAME": "Randazzo's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944329, "LONGITUDE": -75.172844, "DATE_RANGE_START": 2022, "Total Visits": 488.0, "Total Visitors": 272.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 297.0, "Total Spend": 9310.0, "Total Transactions": 474.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.3, "MEDIAN_SPEND_PER_CUSTOMER": 38.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172844, 39.944329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5zz", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949143, "LONGITUDE": -75.1591, "DATE_RANGE_START": 2022, "Total Visits": 2065.0, "Total Visitors": 1467.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 228.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.82, "MEDIAN_SPEND_PER_CUSTOMER": 26.82 }, "geometry": { "type": "Point", "coordinates": [ -75.1591, 39.949143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 96.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6401.0, "Total Transactions": 481.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004821, "LONGITUDE": -75.179811, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 214.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8394.0, "Total Transactions": 749.0, "Total Customers": 575.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.47, "MEDIAN_SPEND_PER_CUSTOMER": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.179811, 40.004821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp5-5fz", "LOCATION_NAME": "El Sabor Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981887, "LONGITUDE": -75.135939, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 5.0, "POI_CBG": 421010157001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1582.0, "Total Transactions": 82.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.36, "MEDIAN_SPEND_PER_CUSTOMER": 62.72 }, "geometry": { "type": "Point", "coordinates": [ -75.135939, 39.981887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm4-6c5", "LOCATION_NAME": "Gil Grocery 2", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93326, "LONGITUDE": -75.176127, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 825.0, "Total Transactions": 61.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.176127, 39.93326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "LOCATION_NAME": "Galaxy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010338004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6706.0, "Total Transactions": 235.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.86, "MEDIAN_SPEND_PER_CUSTOMER": 75.41 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032391, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2022, "Total Visits": 629.0, "Total Visitors": 524.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 18356.0, "Total Transactions": 1268.0, "Total Customers": 812.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.74, "MEDIAN_SPEND_PER_CUSTOMER": 15.95 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.032391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23c@628-pmf-mrk", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952393, "LONGITUDE": -75.168002, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 78.0, "Total Spend": 3368.0, "Total Transactions": 188.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.81, "MEDIAN_SPEND_PER_CUSTOMER": 27.62 }, "geometry": { "type": "Point", "coordinates": [ -75.168002, 39.952393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029727, "LONGITUDE": -75.09938, "DATE_RANGE_START": 2022, "Total Visits": 354.0, "Total Visitors": 242.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 6563.0, "Total Transactions": 369.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.13, "MEDIAN_SPEND_PER_CUSTOMER": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.09938, 40.029727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2022, "Total Visits": 355.0, "Total Visitors": 268.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5058.0, "Total Transactions": 599.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.28 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-skf", "LOCATION_NAME": "Elixr Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949308, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2022, "Total Visits": 3005.0, "Total Visitors": 2120.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1691.0, "Total Transactions": 216.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.27, "MEDIAN_SPEND_PER_CUSTOMER": 12.92 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "LOCATION_NAME": "Stenton Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4559.0, "Total Transactions": 206.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.86, "MEDIAN_SPEND_PER_CUSTOMER": 45.26 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-xt9", "LOCATION_NAME": "Taproom", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.036887, "LONGITUDE": -75.031645, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 10.0, "POI_CBG": 421010329004.0, "MEDIAN_DWELL": 1414.0, "Total Spend": 487.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.83, "MEDIAN_SPEND_PER_CUSTOMER": 107.66 }, "geometry": { "type": "Point", "coordinates": [ -75.031645, 40.036887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgm-68v", "LOCATION_NAME": "Shan Chuan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009211, "LONGITUDE": -75.194127, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": null, "Total Spend": 370.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.61, "MEDIAN_SPEND_PER_CUSTOMER": 45.39 }, "geometry": { "type": "Point", "coordinates": [ -75.194127, 40.009211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "LOCATION_NAME": "Castor Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 28.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 55.0, "Total Spend": 7194.0, "Total Transactions": 321.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.5, "MEDIAN_SPEND_PER_CUSTOMER": 36.35 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "LOCATION_NAME": "Main Street Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 42.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 13584.0, "Total Transactions": 287.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.78, "MEDIAN_SPEND_PER_CUSTOMER": 69.1 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rx5", "LOCATION_NAME": "Hair Hair", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978114, "LONGITUDE": -75.271405, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 132.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 9.0, "Total Spend": 26456.0, "Total Transactions": 828.0, "Total Customers": 362.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.73, "MEDIAN_SPEND_PER_CUSTOMER": 53.05 }, "geometry": { "type": "Point", "coordinates": [ -75.271405, 39.978114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 56.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 35069.0, "Total Transactions": 605.0, "Total Customers": 551.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.22, "MEDIAN_SPEND_PER_CUSTOMER": 48.48 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-6x5", "LOCATION_NAME": "Bonobos", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949913, "LONGITUDE": -75.166858, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 127.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 906.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 128.5, "MEDIAN_SPEND_PER_CUSTOMER": 128.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166858, 39.949913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-bhq", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.960816, "LONGITUDE": -75.224417, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 113.0, "POI_CBG": 421010093003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1672.0, "Total Transactions": 157.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.13, "MEDIAN_SPEND_PER_CUSTOMER": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.224417, 39.960816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093157, "LONGITUDE": -75.032901, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 153.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 674.0, "Total Transactions": 49.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.84, "MEDIAN_SPEND_PER_CUSTOMER": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.032901, 40.093157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.91709, "LONGITUDE": -75.185434, "DATE_RANGE_START": 2022, "Total Visits": 298.0, "Total Visitors": 221.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 7725.0, "Total Transactions": 235.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.09, "MEDIAN_SPEND_PER_CUSTOMER": 21.54 }, "geometry": { "type": "Point", "coordinates": [ -75.185434, 39.91709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "LOCATION_NAME": "R.E. Michel", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 61.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 24855.0, "Total Transactions": 44.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 356.03, "MEDIAN_SPEND_PER_CUSTOMER": 283.11 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-224@628-pg9-ty9", "LOCATION_NAME": "Our Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.962959, "LONGITUDE": -75.163439, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 10.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 307.0, "Total Spend": 2629.0, "Total Transactions": 23.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 135.2, "MEDIAN_SPEND_PER_CUSTOMER": 133.39 }, "geometry": { "type": "Point", "coordinates": [ -75.163439, 39.962959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pgb-6tv", "LOCATION_NAME": "Fairmount Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.968987, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": null, "Total Spend": 1225.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 178.45, "MEDIAN_SPEND_PER_CUSTOMER": 351.47 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.968987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "LOCATION_NAME": "Friendship Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03925, "LONGITUDE": -75.04588, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 16.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1407.0, "Total Transactions": 42.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.93, "MEDIAN_SPEND_PER_CUSTOMER": 176.64 }, "geometry": { "type": "Point", "coordinates": [ -75.04588, 40.03925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-p8f-9pv", "LOCATION_NAME": "Nuts To You", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.014668, "LONGITUDE": -75.088538, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 17.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1036.0, "Total Transactions": 80.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.98, "MEDIAN_SPEND_PER_CUSTOMER": 21.96 }, "geometry": { "type": "Point", "coordinates": [ -75.088538, 40.014668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-pvz", "LOCATION_NAME": "Midnight Iris", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.945191, "LONGITUDE": -75.170462, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 19.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 566.0, "Total Spend": 13148.0, "Total Transactions": 244.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.96, "MEDIAN_SPEND_PER_CUSTOMER": 96.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "266-222@628-pm4-sh5", "LOCATION_NAME": "Ramayana Store", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.929048, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010028011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 145.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.929048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2022, "Total Visits": 2810.0, "Total Visitors": 1648.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 56156.0, "Total Transactions": 1040.0, "Total Customers": 434.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.96, "MEDIAN_SPEND_PER_CUSTOMER": 77.04 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "LOCATION_NAME": "The Beer Peddlers", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 159.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 32788.0, "Total Transactions": 1002.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.9, "MEDIAN_SPEND_PER_CUSTOMER": 60.44 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "LOCATION_NAME": "Medical Tower Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.948045, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2022, "Total Visits": 1185.0, "Total Visitors": 833.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 57.0, "Total Spend": 3849.0, "Total Transactions": 159.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.74, "MEDIAN_SPEND_PER_CUSTOMER": 26.94 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.948045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8n-cqz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.03577, "LONGITUDE": -75.069964, "DATE_RANGE_START": 2022, "Total Visits": 927.0, "Total Visitors": 690.0, "POI_CBG": 421010313002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 449.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.89, "MEDIAN_SPEND_PER_CUSTOMER": 33.89 }, "geometry": { "type": "Point", "coordinates": [ -75.069964, 40.03577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-nwk", "LOCATION_NAME": "Centro Musical", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.991818, "LONGITUDE": -75.139984, "DATE_RANGE_START": 2022, "Total Visits": 624.0, "Total Visitors": 307.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 819.0, "Total Spend": 377.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 39.991818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-z2k", "LOCATION_NAME": "New Town Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960042, "LONGITUDE": -75.153453, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 12.0, "POI_CBG": 421010376001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1080.0, "Total Transactions": 68.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.03, "MEDIAN_SPEND_PER_CUSTOMER": 62.82 }, "geometry": { "type": "Point", "coordinates": [ -75.153453, 39.960042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22t@628-pmb-7yv", "LOCATION_NAME": "De Village", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.953424, "LONGITUDE": -75.1591, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 3454.0, "Total Transactions": 106.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.6, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1591, 39.953424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "LOCATION_NAME": "The Pizza Store", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 26.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2701.0, "Total Transactions": 92.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.64, "MEDIAN_SPEND_PER_CUSTOMER": 44.87 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "LOCATION_NAME": "In & Out Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 31.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 365.0, "Total Spend": 1367.0, "Total Transactions": 45.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.89, "MEDIAN_SPEND_PER_CUSTOMER": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg8-f2k", "LOCATION_NAME": "Green Village", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986829, "LONGITUDE": -75.18121, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 35.0, "POI_CBG": 421010151023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 373.0, "Total Transactions": 17.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.65, "MEDIAN_SPEND_PER_CUSTOMER": 41.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18121, 39.986829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "LOCATION_NAME": "Lebel Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010112003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4236.0, "Total Transactions": 183.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.09, "MEDIAN_SPEND_PER_CUSTOMER": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "LOCATION_NAME": "Not Just Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 52.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 421.0, "Total Transactions": 31.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg4-bx5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.042838, "LONGITUDE": -75.179833, "DATE_RANGE_START": 2022, "Total Visits": 247.0, "Total Visitors": 160.0, "POI_CBG": 421010252002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 13981.0, "Total Transactions": 646.0, "Total Customers": 385.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.75, "MEDIAN_SPEND_PER_CUSTOMER": 23.27 }, "geometry": { "type": "Point", "coordinates": [ -75.179833, 40.042838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8n5", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951999, "LONGITUDE": -75.157711, "DATE_RANGE_START": 2022, "Total Visits": 21494.0, "Total Visitors": 13739.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 52111.0, "Total Transactions": 1132.0, "Total Customers": 1021.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.55, "MEDIAN_SPEND_PER_CUSTOMER": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157711, 39.951999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.042819, "LONGITUDE": -75.181027, "DATE_RANGE_START": 2022, "Total Visits": 995.0, "Total Visitors": 580.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2393.0, "Total Transactions": 92.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.18, "MEDIAN_SPEND_PER_CUSTOMER": 30.02 }, "geometry": { "type": "Point", "coordinates": [ -75.181027, 40.042819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pfz-bzf", "LOCATION_NAME": "Gary Mann Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.025665, "LONGITUDE": -75.223674, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 77.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 540.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.223674, 40.025665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "LOCATION_NAME": "Bok Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.925217, "LONGITUDE": -75.160024, "DATE_RANGE_START": 2022, "Total Visits": 1007.0, "Total Visitors": 674.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 97.0, "Total Spend": 15013.0, "Total Transactions": 587.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.66, "MEDIAN_SPEND_PER_CUSTOMER": 50.08 }, "geometry": { "type": "Point", "coordinates": [ -75.160024, 39.925217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "LOCATION_NAME": "The Twisted Tail", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941828, "LONGITUDE": -75.145203, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 68.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 72.0, "Total Spend": 29886.0, "Total Transactions": 416.0, "Total Customers": 211.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.3, "MEDIAN_SPEND_PER_CUSTOMER": 103.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145203, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 106.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1809.0, "Total Transactions": 91.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.59, "MEDIAN_SPEND_PER_CUSTOMER": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029744, "LONGITUDE": -75.099335, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 179.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 579.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.6, "MEDIAN_SPEND_PER_CUSTOMER": 36.94 }, "geometry": { "type": "Point", "coordinates": [ -75.099335, 40.029744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmf-n5z", "LOCATION_NAME": "Di Bruno Bros", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954896, "LONGITUDE": -75.168695, "DATE_RANGE_START": 2022, "Total Visits": 3279.0, "Total Visitors": 1596.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 392.0, "Total Spend": 51554.0, "Total Transactions": 1963.0, "Total Customers": 913.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 33.33 }, "geometry": { "type": "Point", "coordinates": [ -75.168695, 39.954896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pj6-k4v", "LOCATION_NAME": "H Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.044993, "LONGITUDE": -75.117488, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 192261.0, "Total Transactions": 8737.0, "Total Customers": 4504.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.95, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.117488, 40.044993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p75-3nq", "LOCATION_NAME": "Torresdale Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.048663, "LONGITUDE": -75.011484, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 73.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1847.0, "Total Transactions": 68.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.06, "MEDIAN_SPEND_PER_CUSTOMER": 45.34 }, "geometry": { "type": "Point", "coordinates": [ -75.011484, 40.048663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039629, "LONGITUDE": -75.109938, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 322.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12496.0, "Total Transactions": 436.0, "Total Customers": 275.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.05, "MEDIAN_SPEND_PER_CUSTOMER": 33.73 }, "geometry": { "type": "Point", "coordinates": [ -75.109938, 40.039629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "LOCATION_NAME": "Walmart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.031276, "LONGITUDE": -75.099634, "DATE_RANGE_START": 2022, "Total Visits": 5946.0, "Total Visitors": 3946.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 246372.0, "Total Transactions": 3995.0, "Total Customers": 2756.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.44, "MEDIAN_SPEND_PER_CUSTOMER": 51.45 }, "geometry": { "type": "Point", "coordinates": [ -75.099634, 40.031276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-7dv", "LOCATION_NAME": "Joe Santucci's Square Pizza Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0859, "LONGITUDE": -74.971119, "DATE_RANGE_START": 2022, "Total Visits": 312.0, "Total Visitors": 186.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 233.0, "Total Spend": 1335.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 126.88, "MEDIAN_SPEND_PER_CUSTOMER": 383.21 }, "geometry": { "type": "Point", "coordinates": [ -74.971119, 40.0859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "LOCATION_NAME": "Parkway Corner Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2022, "Total Visits": 193.0, "Total Visitors": 172.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 8256.0, "Total Transactions": 617.0, "Total Customers": 181.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.97, "MEDIAN_SPEND_PER_CUSTOMER": 25.84 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8vz", "LOCATION_NAME": "Cosi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950388, "LONGITUDE": -75.158367, "DATE_RANGE_START": 2022, "Total Visits": 1659.0, "Total Visitors": 1183.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 3032.0, "Total Transactions": 174.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158367, 39.950388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-nwk", "LOCATION_NAME": "Pod", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953599, "LONGITUDE": -75.195089, "DATE_RANGE_START": 2022, "Total Visits": 4342.0, "Total Visitors": 2699.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 91.0, "Total Spend": 74.0, "Total Transactions": 17.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.68, "MEDIAN_SPEND_PER_CUSTOMER": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.195089, 39.953599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j9z", "LOCATION_NAME": "Rouge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949689, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2022, "Total Visits": 397.0, "Total Visitors": 193.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 389.0, "Total Spend": 14555.0, "Total Transactions": 204.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.76, "MEDIAN_SPEND_PER_CUSTOMER": 125.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.949689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "LOCATION_NAME": "Little Italy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 63.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 859.0, "Total Transactions": 82.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.42, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "LOCATION_NAME": "House of Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2022, "Total Visits": 869.0, "Total Visitors": 641.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3185.0, "Total Transactions": 78.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 103.9 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj2-mrk", "LOCATION_NAME": "Texas Chicken and Burgers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006514, "LONGITUDE": -75.095617, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 85.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5932.0, "Total Transactions": 394.0, "Total Customers": 199.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 22.92 }, "geometry": { "type": "Point", "coordinates": [ -75.095617, 40.006514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9p-z75", "LOCATION_NAME": "Ahi Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102378, "LONGITUDE": -75.028785, "DATE_RANGE_START": 2022, "Total Visits": 16016.0, "Total Visitors": 8004.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9140.0, "Total Transactions": 246.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.02, "MEDIAN_SPEND_PER_CUSTOMER": 64.04 }, "geometry": { "type": "Point", "coordinates": [ -75.028785, 40.102378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "LOCATION_NAME": "CHAPMAN NISSAN", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.910684, "LONGITUDE": -75.224285, "DATE_RANGE_START": 2022, "Total Visits": 397.0, "Total Visitors": 286.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 69.0, "Total Spend": 34885.0, "Total Transactions": 57.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 174.5, "MEDIAN_SPEND_PER_CUSTOMER": 174.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224285, 39.910684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwd-v9f", "LOCATION_NAME": "RevZilla", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.900369, "LONGITUDE": -75.195065, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 64.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 79533.0, "Total Transactions": 226.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 222.24, "MEDIAN_SPEND_PER_CUSTOMER": 352.35 }, "geometry": { "type": "Point", "coordinates": [ -75.195065, 39.900369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.983382, "LONGITUDE": -75.10116, "DATE_RANGE_START": 2022, "Total Visits": 2857.0, "Total Visitors": 1909.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1023.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.31, "MEDIAN_SPEND_PER_CUSTOMER": 75.31 }, "geometry": { "type": "Point", "coordinates": [ -75.10116, 39.983382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "LOCATION_NAME": "Uniqlo", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951014, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2022, "Total Visits": 622.0, "Total Visitors": 439.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 134.0, "Total Spend": 29818.0, "Total Transactions": 495.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.7, "MEDIAN_SPEND_PER_CUSTOMER": 49.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.951014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952045, "LONGITUDE": -75.16824, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 78.0, "Total Spend": 5648.0, "Total Transactions": 139.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.06, "MEDIAN_SPEND_PER_CUSTOMER": 27.95 }, "geometry": { "type": "Point", "coordinates": [ -75.16824, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "LOCATION_NAME": "Accent On Animals", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2022, "Total Visits": 657.0, "Total Visitors": 376.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 213.0, "Total Spend": 6402.0, "Total Transactions": 331.0, "Total Customers": 164.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm7-sh5", "LOCATION_NAME": "Philip's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922589, "LONGITUDE": -75.18482, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 30.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 17.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18482, 39.922589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "LOCATION_NAME": "Pub & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 31.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 55.0, "Total Spend": 5965.0, "Total Transactions": 73.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.07, "MEDIAN_SPEND_PER_CUSTOMER": 110.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "LOCATION_NAME": "New Zem Zem Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2730.0, "Total Transactions": 113.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.02, "MEDIAN_SPEND_PER_CUSTOMER": 46.82 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj6-99f", "LOCATION_NAME": "Red Wine Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033146, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 40.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 154.0, "Total Spend": 1832.0, "Total Transactions": 24.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 263.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.033146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-85f", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.028399, "LONGITUDE": -75.127425, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 57.0, "POI_CBG": 421010286006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1717.0, "Total Transactions": 199.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.38, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127425, 40.028399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-v9f", "LOCATION_NAME": "Liberty Gas Station", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.928013, "LONGITUDE": -75.15048, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010027023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1809.0, "Total Transactions": 73.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15048, 39.928013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-mrk", "LOCATION_NAME": "Pat's King of Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933211, "LONGITUDE": -75.159243, "DATE_RANGE_START": 2022, "Total Visits": 1434.0, "Total Visitors": 1355.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 147.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.36, "MEDIAN_SPEND_PER_CUSTOMER": 26.72 }, "geometry": { "type": "Point", "coordinates": [ -75.159243, 39.933211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-4sq", "LOCATION_NAME": "Potbelly Sandwich Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979564, "LONGITUDE": -75.153441, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 77.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 127.0, "Total Spend": 4092.0, "Total Transactions": 298.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.15, "MEDIAN_SPEND_PER_CUSTOMER": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153441, 39.979564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-c89", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007079, "LONGITUDE": -75.128063, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 200.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9755.0, "Total Transactions": 669.0, "Total Customers": 498.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.12, "MEDIAN_SPEND_PER_CUSTOMER": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.128063, 40.007079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-3nq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917267, "LONGITUDE": -75.172584, "DATE_RANGE_START": 2022, "Total Visits": 1080.0, "Total Visitors": 394.0, "POI_CBG": 421010039022.0, "MEDIAN_DWELL": 653.0, "Total Spend": 289.0, "Total Transactions": 31.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.03, "MEDIAN_SPEND_PER_CUSTOMER": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.172584, 39.917267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003544, "LONGITUDE": -75.165622, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 59.0, "POI_CBG": 421010202001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1970.0, "Total Transactions": 228.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.97, "MEDIAN_SPEND_PER_CUSTOMER": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.165622, 40.003544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-w49", "LOCATION_NAME": "The Bakeshop on 20th", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948428, "LONGITUDE": -75.174139, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 23.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 57.0, "Total Spend": 2315.0, "Total Transactions": 148.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.25, "MEDIAN_SPEND_PER_CUSTOMER": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.174139, 39.948428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9v-k2k", "LOCATION_NAME": "Alef Standard Packaging", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 40.110128, "LONGITUDE": -74.983606, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 26.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 217.0, "Total Spend": 262.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.59, "MEDIAN_SPEND_PER_CUSTOMER": 75.18 }, "geometry": { "type": "Point", "coordinates": [ -74.983606, 40.110128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "LOCATION_NAME": "Grace Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 40.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 241.0, "Total Spend": 18227.0, "Total Transactions": 427.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.15, "MEDIAN_SPEND_PER_CUSTOMER": 69.94 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 47.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 34.0, "Total Spend": 3003.0, "Total Transactions": 64.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.5, "MEDIAN_SPEND_PER_CUSTOMER": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j7q", "LOCATION_NAME": "The Dandelion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951011, "LONGITUDE": -75.170702, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 223.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 419.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.22, "MEDIAN_SPEND_PER_CUSTOMER": 90.44 }, "geometry": { "type": "Point", "coordinates": [ -75.170702, 39.951011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2022, "Total Visits": 280.0, "Total Visitors": 218.0, "POI_CBG": 421010098011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 9034.0, "Total Transactions": 721.0, "Total Customers": 544.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.24, "MEDIAN_SPEND_PER_CUSTOMER": 11.32 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmd-vfz", "LOCATION_NAME": "Tsuki Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951096, "LONGITUDE": -75.177135, "DATE_RANGE_START": 2022, "Total Visits": 242.0, "Total Visitors": 225.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2363.0, "Total Transactions": 87.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.09, "MEDIAN_SPEND_PER_CUSTOMER": 47.42 }, "geometry": { "type": "Point", "coordinates": [ -75.177135, 39.951096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgj-c5z", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979163, "LONGITUDE": -75.160092, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 178.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2618.0, "Total Transactions": 197.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.41, "MEDIAN_SPEND_PER_CUSTOMER": 12.71 }, "geometry": { "type": "Point", "coordinates": [ -75.160092, 39.979163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-t5f", "LOCATION_NAME": "Pho Viet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035248, "LONGITUDE": -75.100976, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 157.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 8537.0, "Total Transactions": 230.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.100976, 40.035248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pm5-2ff", "LOCATION_NAME": "Wokano", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937057, "LONGITUDE": -75.161863, "DATE_RANGE_START": 2022, "Total Visits": 319.0, "Total Visitors": 268.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 31.0, "Total Spend": 3567.0, "Total Transactions": 56.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.75, "MEDIAN_SPEND_PER_CUSTOMER": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161863, 39.937057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "LOCATION_NAME": "Ritz Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2022, "Total Visits": 744.0, "Total Visitors": 589.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 21016.0, "Total Transactions": 610.0, "Total Customers": 254.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.91, "MEDIAN_SPEND_PER_CUSTOMER": 63.4 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "LOCATION_NAME": "Chill On the Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 92.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 9817.0, "Total Transactions": 868.0, "Total Customers": 348.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.78, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-xwk", "LOCATION_NAME": "The Daily", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96686, "LONGITUDE": -75.160091, "DATE_RANGE_START": 2022, "Total Visits": 2601.0, "Total Visitors": 1383.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 102.0, "Total Spend": 26161.0, "Total Transactions": 373.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.85, "MEDIAN_SPEND_PER_CUSTOMER": 110.73 }, "geometry": { "type": "Point", "coordinates": [ -75.160091, 39.96686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvr-7bk", "LOCATION_NAME": "Woodland Village Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927328, "LONGITUDE": -75.231404, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 31.0, "POI_CBG": 421010066004.0, "MEDIAN_DWELL": 22.0, "Total Spend": 37.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.36, "MEDIAN_SPEND_PER_CUSTOMER": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.231404, 39.927328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "LOCATION_NAME": "Italian Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 31.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5238.0, "Total Transactions": 280.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 30.66 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027472, "LONGITUDE": -75.209408, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 31.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 10996.0, "Total Transactions": 402.0, "Total Customers": 289.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.17, "MEDIAN_SPEND_PER_CUSTOMER": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.209408, 40.027472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "LOCATION_NAME": "The Book Trader", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 35.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 77.0, "Total Spend": 2045.0, "Total Transactions": 127.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.01, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgj-6hq", "LOCATION_NAME": "Diamond Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985195, "LONGITUDE": -75.161525, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 35.0, "POI_CBG": 421010153002.0, "MEDIAN_DWELL": 30.0, "Total Spend": 3943.0, "Total Transactions": 228.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.93, "MEDIAN_SPEND_PER_CUSTOMER": 34.02 }, "geometry": { "type": "Point", "coordinates": [ -75.161525, 39.985195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "LOCATION_NAME": "Triangle Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 51.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 25.0, "Total Spend": 52101.0, "Total Transactions": 1157.0, "Total Customers": 483.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.18, "MEDIAN_SPEND_PER_CUSTOMER": 87.28 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030371, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2022, "Total Visits": 287.0, "Total Visitors": 251.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 787.0, "Total Transactions": 56.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.48, "MEDIAN_SPEND_PER_CUSTOMER": 13.63 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2022, "Total Visits": 220.0, "Total Visitors": 143.0, "POI_CBG": 421010278002.0, "MEDIAN_DWELL": 333.0, "Total Spend": 662.0, "Total Transactions": 38.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.24, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043491, "LONGITUDE": -75.159296, "DATE_RANGE_START": 2022, "Total Visits": 260.0, "Total Visitors": 178.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5688.0, "Total Transactions": 695.0, "Total Customers": 362.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.56, "MEDIAN_SPEND_PER_CUSTOMER": 10.59 }, "geometry": { "type": "Point", "coordinates": [ -75.159296, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962408, "LONGITUDE": -75.163643, "DATE_RANGE_START": 2022, "Total Visits": 294.0, "Total Visitors": 178.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 6755.0, "Total Transactions": 967.0, "Total Customers": 439.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 9.74 }, "geometry": { "type": "Point", "coordinates": [ -75.163643, 39.962408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-phz-tjv", "LOCATION_NAME": "Pizza express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998436, "LONGITUDE": -75.110266, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 66.0, "POI_CBG": 421010192004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 156.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.32, "MEDIAN_SPEND_PER_CUSTOMER": 44.63 }, "geometry": { "type": "Point", "coordinates": [ -75.110266, 39.998436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-zcq", "LOCATION_NAME": "Savas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958284, "LONGITUDE": -75.192713, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 251.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 31.0, "Total Spend": 893.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 120.09, "MEDIAN_SPEND_PER_CUSTOMER": 240.18 }, "geometry": { "type": "Point", "coordinates": [ -75.192713, 39.958284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "LOCATION_NAME": "Prohibition Taproom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 68.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 34.0, "Total Spend": 22740.0, "Total Transactions": 507.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.4, "MEDIAN_SPEND_PER_CUSTOMER": 78.78 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 232.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9564.0, "Total Transactions": 650.0, "Total Customers": 474.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.1, "MEDIAN_SPEND_PER_CUSTOMER": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-zfz", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956578, "LONGITUDE": -75.177927, "DATE_RANGE_START": 2022, "Total Visits": 552.0, "Total Visitors": 333.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 65.0, "Total Spend": 1451.0, "Total Transactions": 84.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.58, "MEDIAN_SPEND_PER_CUSTOMER": 27.15 }, "geometry": { "type": "Point", "coordinates": [ -75.177927, 39.956578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-td9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902269, "LONGITUDE": -75.241997, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 57.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2208.0, "Total Transactions": 129.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 16.65 }, "geometry": { "type": "Point", "coordinates": [ -75.241997, 39.902269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-8d9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953621, "LONGITUDE": -75.157784, "DATE_RANGE_START": 2022, "Total Visits": 781.0, "Total Visitors": 652.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5279.0, "Total Transactions": 786.0, "Total Customers": 472.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 8.18 }, "geometry": { "type": "Point", "coordinates": [ -75.157784, 39.953621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026206, "LONGITUDE": -75.22393, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 82.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 356.0, "Total Spend": 5947.0, "Total Transactions": 399.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 31.17 }, "geometry": { "type": "Point", "coordinates": [ -75.22393, 40.026206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvy-xwk", "LOCATION_NAME": "TacoTaco Mexican", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953228, "LONGITUDE": -75.210287, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 21.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 23.0, "Total Spend": 16086.0, "Total Transactions": 927.0, "Total Customers": 340.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.31, "MEDIAN_SPEND_PER_CUSTOMER": 35.26 }, "geometry": { "type": "Point", "coordinates": [ -75.210287, 39.953228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-xdv", "LOCATION_NAME": "Tiffin", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970151, "LONGITUDE": -75.148856, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 30.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 410.0, "Total Spend": 3327.0, "Total Transactions": 73.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.91, "MEDIAN_SPEND_PER_CUSTOMER": 61.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148856, 39.970151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "LOCATION_NAME": "Rapoport Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 38.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 295.0, "Total Spend": 460.0, "Total Transactions": 21.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.98, "MEDIAN_SPEND_PER_CUSTOMER": 52.88 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "LOCATION_NAME": "Primal Nutrition", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 40.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4278.0, "Total Transactions": 49.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.88, "MEDIAN_SPEND_PER_CUSTOMER": 175.76 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 127.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 18027.0, "Total Transactions": 1122.0, "Total Customers": 826.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2022, "Total Visits": 228.0, "Total Visitors": 164.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6740.0, "Total Transactions": 786.0, "Total Customers": 456.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.61, "MEDIAN_SPEND_PER_CUSTOMER": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.05212, "LONGITUDE": -75.010353, "DATE_RANGE_START": 2022, "Total Visits": 956.0, "Total Visitors": 570.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 177730.0, "Total Transactions": 4141.0, "Total Customers": 1251.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.45, "MEDIAN_SPEND_PER_CUSTOMER": 71.82 }, "geometry": { "type": "Point", "coordinates": [ -75.010353, 40.05212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "LOCATION_NAME": "Fair Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.968488, "LONGITUDE": -75.180495, "DATE_RANGE_START": 2022, "Total Visits": 336.0, "Total Visitors": 232.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 337.0, "Total Spend": 6424.0, "Total Transactions": 606.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.87, "MEDIAN_SPEND_PER_CUSTOMER": 19.49 }, "geometry": { "type": "Point", "coordinates": [ -75.180495, 39.968488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgb-47q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962439, "LONGITUDE": -75.1634, "DATE_RANGE_START": 2022, "Total Visits": 1739.0, "Total Visitors": 794.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 240.0, "Total Spend": 12321.0, "Total Transactions": 925.0, "Total Customers": 577.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.59, "MEDIAN_SPEND_PER_CUSTOMER": 15.64 }, "geometry": { "type": "Point", "coordinates": [ -75.1634, 39.962439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "LOCATION_NAME": "Rieker's Prime Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 138.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 372.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.45, "MEDIAN_SPEND_PER_CUSTOMER": 106.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p8m-syv", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02299, "LONGITUDE": -75.075925, "DATE_RANGE_START": 2022, "Total Visits": 462.0, "Total Visitors": 369.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1005.0, "Total Transactions": 54.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.65, "MEDIAN_SPEND_PER_CUSTOMER": 25.61 }, "geometry": { "type": "Point", "coordinates": [ -75.075925, 40.02299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.072233, "LONGITUDE": -75.194825, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 91.0, "POI_CBG": 421010257001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12247.0, "Total Transactions": 502.0, "Total Customers": 282.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.71, "MEDIAN_SPEND_PER_CUSTOMER": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.194825, 40.072233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-x89", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030078, "LONGITUDE": -75.146229, "DATE_RANGE_START": 2022, "Total Visits": 2176.0, "Total Visitors": 1333.0, "POI_CBG": 421010282001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 205.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146229, 40.030078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "LOCATION_NAME": "University City Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 38.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1084.0, "Total Transactions": 38.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 48.55 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-pjv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.993233, "LONGITUDE": -75.096202, "DATE_RANGE_START": 2022, "Total Visits": 483.0, "Total Visitors": 392.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9791.0, "Total Transactions": 458.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.096202, 39.993233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978284, "LONGITUDE": -75.224461, "DATE_RANGE_START": 2022, "Total Visits": 193.0, "Total Visitors": 178.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20927.0, "Total Transactions": 1082.0, "Total Customers": 199.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 34.78 }, "geometry": { "type": "Point", "coordinates": [ -75.224461, 39.978284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "LOCATION_NAME": "Skyline Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2022, "Total Visits": 213.0, "Total Visitors": 148.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6976.0, "Total Transactions": 30.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 168.48, "MEDIAN_SPEND_PER_CUSTOMER": 336.96 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pm9-y9z", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.941946, "LONGITUDE": -75.149832, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 174.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 261.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.45, "MEDIAN_SPEND_PER_CUSTOMER": 74.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.941946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-66k", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.049027, "LONGITUDE": -75.060408, "DATE_RANGE_START": 2022, "Total Visits": 218.0, "Total Visitors": 179.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9808.0, "Total Transactions": 120.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 34.42 }, "geometry": { "type": "Point", "coordinates": [ -75.060408, 40.049027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "LOCATION_NAME": "Main Street Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.026391, "LONGITUDE": -75.226268, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 103.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 153.0, "Total Spend": 2606.0, "Total Transactions": 40.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.48, "MEDIAN_SPEND_PER_CUSTOMER": 72.88 }, "geometry": { "type": "Point", "coordinates": [ -75.226268, 40.026391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "LOCATION_NAME": "Roses", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.039098, "LONGITUDE": -75.107749, "DATE_RANGE_START": 2022, "Total Visits": 551.0, "Total Visitors": 406.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 41692.0, "Total Transactions": 1171.0, "Total Customers": 383.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.61, "MEDIAN_SPEND_PER_CUSTOMER": 63.55 }, "geometry": { "type": "Point", "coordinates": [ -75.107749, 40.039098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.898752, "LONGITUDE": -75.240579, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 308.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 370.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240579, 39.898752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.120348, "LONGITUDE": -75.015989, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 333.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 543.0, "Total Transactions": 30.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.06, "MEDIAN_SPEND_PER_CUSTOMER": 24.03 }, "geometry": { "type": "Point", "coordinates": [ -75.015989, 40.120348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950584, "LONGITUDE": -75.167188, "DATE_RANGE_START": 2022, "Total Visits": 308.0, "Total Visitors": 258.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 8234.0, "Total Transactions": 1382.0, "Total Customers": 547.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 8.45 }, "geometry": { "type": "Point", "coordinates": [ -75.167188, 39.950584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-k4v", "LOCATION_NAME": "Kingstone Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.990889, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 38.0, "POI_CBG": 421010169022.0, "MEDIAN_DWELL": 157.0, "Total Spend": 2376.0, "Total Transactions": 146.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 45.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.990889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pj6-6hq", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042687, "LONGITUDE": -75.109486, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 49.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 300.0, "Total Spend": 823.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.09, "MEDIAN_SPEND_PER_CUSTOMER": 133.89 }, "geometry": { "type": "Point", "coordinates": [ -75.109486, 40.042687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8h-g49", "LOCATION_NAME": "Marjam Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.021268, "LONGITUDE": -75.037536, "DATE_RANGE_START": 2022, "Total Visits": 423.0, "Total Visitors": 375.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4061.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 349.21, "MEDIAN_SPEND_PER_CUSTOMER": 1165.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037536, 40.021268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pg8-ks5", "LOCATION_NAME": "Rybrew", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974204, "LONGITUDE": -75.182529, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 30.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 23.0, "Total Spend": 31730.0, "Total Transactions": 2010.0, "Total Customers": 491.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.01, "MEDIAN_SPEND_PER_CUSTOMER": 40.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182529, 39.974204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-y7q", "LOCATION_NAME": "Friendship BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953597, "LONGITUDE": -75.155857, "DATE_RANGE_START": 2022, "Total Visits": 5087.0, "Total Visitors": 3380.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 3249.0, "Total Transactions": 59.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.11, "MEDIAN_SPEND_PER_CUSTOMER": 80.74 }, "geometry": { "type": "Point", "coordinates": [ -75.155857, 39.953597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2022, "Total Visits": 1537.0, "Total Visitors": 1240.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 17859.0, "Total Transactions": 331.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.84, "MEDIAN_SPEND_PER_CUSTOMER": 93.98 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.065575, "LONGITUDE": -75.072105, "DATE_RANGE_START": 2022, "Total Visits": 397.0, "Total Visitors": 220.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 539.0, "Total Transactions": 28.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.57, "MEDIAN_SPEND_PER_CUSTOMER": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.072105, 40.065575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "LOCATION_NAME": "Martinez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997199, "LONGITUDE": -75.175295, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010172022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1110.0, "Total Transactions": 82.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175295, 39.997199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5zz", "LOCATION_NAME": "Moriartys Restaurant & Irish Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948666, "LONGITUDE": -75.159836, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 112.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 43.0, "Total Spend": 24971.0, "Total Transactions": 432.0, "Total Customers": 235.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.55, "MEDIAN_SPEND_PER_CUSTOMER": 65.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159836, 39.948666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "LOCATION_NAME": "Yiro Yiro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032303, "LONGITUDE": -75.214323, "DATE_RANGE_START": 2022, "Total Visits": 1571.0, "Total Visitors": 948.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 10543.0, "Total Transactions": 486.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.214323, 40.032303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "LOCATION_NAME": "The Cheesecake Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949381, "LONGITUDE": -75.165741, "DATE_RANGE_START": 2022, "Total Visits": 1265.0, "Total Visitors": 997.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 57.0, "Total Spend": 29534.0, "Total Transactions": 542.0, "Total Customers": 474.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.84, "MEDIAN_SPEND_PER_CUSTOMER": 50.81 }, "geometry": { "type": "Point", "coordinates": [ -75.165741, 39.949381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2022, "Total Visits": 333.0, "Total Visitors": 195.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 410.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.66, "MEDIAN_SPEND_PER_CUSTOMER": 12.66 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pfx-s89", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.038452, "LONGITUDE": -75.239365, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 14.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 68.0, "Total Spend": 56589.0, "Total Transactions": 1437.0, "Total Customers": 559.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239365, 40.038452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-jjv", "LOCATION_NAME": "Sweet Treat Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973199, "LONGITUDE": -75.222994, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5623.0, "Total Transactions": 591.0, "Total Customers": 235.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222994, 39.973199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7x-b6k", "LOCATION_NAME": "New England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040059, "LONGITUDE": -75.066331, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 771.0, "Total Transactions": 31.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.03, "MEDIAN_SPEND_PER_CUSTOMER": 52.06 }, "geometry": { "type": "Point", "coordinates": [ -75.066331, 40.040059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-5xq", "LOCATION_NAME": "Throwbaxx Bar & Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042336, "LONGITUDE": -75.226518, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 40.0, "POI_CBG": 421010216001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 1041.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.1, "MEDIAN_SPEND_PER_CUSTOMER": 40.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226518, 40.042336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-33q", "LOCATION_NAME": "Hello World", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.953792, "LONGITUDE": -75.195373, "DATE_RANGE_START": 2022, "Total Visits": 679.0, "Total Visitors": 524.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 91.0, "Total Spend": 9610.0, "Total Transactions": 270.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195373, 39.953792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-435", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.918945, "LONGITUDE": -75.143088, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 186.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 3036.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 871.45, "MEDIAN_SPEND_PER_CUSTOMER": 871.45 }, "geometry": { "type": "Point", "coordinates": [ -75.143088, 39.918945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.966876, "LONGITUDE": -75.233151, "DATE_RANGE_START": 2022, "Total Visits": 728.0, "Total Visitors": 484.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1495.0, "Total Transactions": 47.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.64, "MEDIAN_SPEND_PER_CUSTOMER": 27.79 }, "geometry": { "type": "Point", "coordinates": [ -75.233151, 39.966876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgy-kj9", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.062824, "LONGITUDE": -75.237514, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 44.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4415.0, "Total Transactions": 77.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 34.66 }, "geometry": { "type": "Point", "coordinates": [ -75.237514, 40.062824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 44.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2667.0, "Total Transactions": 77.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.9, "MEDIAN_SPEND_PER_CUSTOMER": 53.92 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-phy-kmk", "LOCATION_NAME": "Hong Kong", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025945, "LONGITUDE": -75.132561, "DATE_RANGE_START": 2022, "Total Visits": 472.0, "Total Visitors": 261.0, "POI_CBG": 421010286003.0, "MEDIAN_DWELL": 122.0, "Total Spend": 44482.0, "Total Transactions": 638.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.93, "MEDIAN_SPEND_PER_CUSTOMER": 66.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132561, 40.025945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068041, "LONGITUDE": -75.007034, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 31.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1391.0, "Total Transactions": 179.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.16, "MEDIAN_SPEND_PER_CUSTOMER": 8.19 }, "geometry": { "type": "Point", "coordinates": [ -75.007034, 40.068041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-v2k", "LOCATION_NAME": "Philadelphia Gas Works", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.930101, "LONGITUDE": -75.168102, "DATE_RANGE_START": 2022, "Total Visits": 674.0, "Total Visitors": 315.0, "POI_CBG": 421010029002.0, "MEDIAN_DWELL": 148.0, "Total Spend": 7488.0, "Total Transactions": 115.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.0, "MEDIAN_SPEND_PER_CUSTOMER": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168102, 39.930101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-226@628-pmb-xnq", "LOCATION_NAME": "Access Karaoke", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.955252, "LONGITUDE": -75.156508, "DATE_RANGE_START": 2022, "Total Visits": 5082.0, "Total Visitors": 3631.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 8206.0, "Total Transactions": 124.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.6, "MEDIAN_SPEND_PER_CUSTOMER": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156508, 39.955252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "LOCATION_NAME": "Pat's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 112.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5440.0, "Total Transactions": 368.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.09, "MEDIAN_SPEND_PER_CUSTOMER": 27.67 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-835", "LOCATION_NAME": "Little Thai Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953099, "LONGITUDE": -75.159123, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 11127.0, "Total Transactions": 617.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.96, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.159123, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j35", "LOCATION_NAME": "Her Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950724, "LONGITUDE": -75.170177, "DATE_RANGE_START": 2022, "Total Visits": 432.0, "Total Visitors": 338.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 3474.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 295.86, "MEDIAN_SPEND_PER_CUSTOMER": 556.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170177, 39.950724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dwf-td9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902299, "LONGITUDE": -75.242062, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 105.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6384.0, "Total Transactions": 394.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242062, 39.902299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "LOCATION_NAME": "Rustica", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964423, "LONGITUDE": -75.140069, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 155.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 86.0, "Total Spend": 7977.0, "Total Transactions": 389.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.24, "MEDIAN_SPEND_PER_CUSTOMER": 37.44 }, "geometry": { "type": "Point", "coordinates": [ -75.140069, 39.964423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044629, "LONGITUDE": -75.142895, "DATE_RANGE_START": 2022, "Total Visits": 432.0, "Total Visitors": 357.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1213.0, "Total Transactions": 99.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.1, "MEDIAN_SPEND_PER_CUSTOMER": 12.66 }, "geometry": { "type": "Point", "coordinates": [ -75.142895, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-2tv", "LOCATION_NAME": "Chick A Boom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971007, "LONGITUDE": -75.21574, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 87.0, "POI_CBG": 421010105002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3246.0, "Total Transactions": 115.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.89, "MEDIAN_SPEND_PER_CUSTOMER": 36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.21574, 39.971007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pmb-gtv", "LOCATION_NAME": "Middle Child", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947198, "LONGITUDE": -75.159468, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 207.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 115.0, "Total Spend": 830.0, "Total Transactions": 31.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.88, "MEDIAN_SPEND_PER_CUSTOMER": 37.76 }, "geometry": { "type": "Point", "coordinates": [ -75.159468, 39.947198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-3h5", "LOCATION_NAME": "19 Degrees", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941163, "LONGITUDE": -75.17414, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 59.0, "POI_CBG": 421010019001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 711.0, "Total Transactions": 47.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17414, 39.941163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-224@628-pg2-cdv", "LOCATION_NAME": "Cherish Philly", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058226, "LONGITUDE": -75.189354, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 77.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 29.0, "Total Spend": 770.0, "Total Transactions": 45.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.03, "MEDIAN_SPEND_PER_CUSTOMER": 58.32 }, "geometry": { "type": "Point", "coordinates": [ -75.189354, 40.058226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "LOCATION_NAME": "Function Coffee Labs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2022, "Total Visits": 916.0, "Total Visitors": 655.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1558.0, "Total Transactions": 152.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2022, "Total Visits": 1122.0, "Total Visitors": 815.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 39416.0, "Total Transactions": 2254.0, "Total Customers": 1504.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.3, "MEDIAN_SPEND_PER_CUSTOMER": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "LOCATION_NAME": "Suraya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2022, "Total Visits": 469.0, "Total Visitors": 408.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 88.0, "Total Spend": 27602.0, "Total Transactions": 179.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 134.32, "MEDIAN_SPEND_PER_CUSTOMER": 193.31 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7yv", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953782, "LONGITUDE": -75.159676, "DATE_RANGE_START": 2022, "Total Visits": 1972.0, "Total Visitors": 1681.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 13700.0, "Total Transactions": 817.0, "Total Customers": 620.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.159676, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2022, "Total Visits": 991.0, "Total Visitors": 558.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 13.0, "Total Spend": 5318.0, "Total Transactions": 733.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.84, "MEDIAN_SPEND_PER_CUSTOMER": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.016586, "LONGITUDE": -75.096388, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 157.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3651.0, "Total Transactions": 216.0, "Total Customers": 176.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 17.22 }, "geometry": { "type": "Point", "coordinates": [ -75.096388, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2022, "Total Visits": 265.0, "Total Visitors": 171.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6106.0, "Total Transactions": 740.0, "Total Customers": 397.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.42, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 98.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2767.0, "Total Transactions": 348.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.03, "MEDIAN_SPEND_PER_CUSTOMER": 8.15 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044029, "LONGITUDE": -75.102175, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 89.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4060.0, "Total Transactions": 516.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.76, "MEDIAN_SPEND_PER_CUSTOMER": 9.52 }, "geometry": { "type": "Point", "coordinates": [ -75.102175, 40.044029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "LOCATION_NAME": "Frame Fatale", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2022, "Total Visits": 709.0, "Total Visitors": 484.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 46.0, "Total Spend": 2154.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 185.49, "MEDIAN_SPEND_PER_CUSTOMER": 370.97 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "LOCATION_NAME": "Greene Street", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2022, "Total Visits": 443.0, "Total Visitors": 284.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 106.0, "Total Spend": 2313.0, "Total Transactions": 30.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.9, "MEDIAN_SPEND_PER_CUSTOMER": 142.36 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "LOCATION_NAME": "Crash Bang Boom", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2022, "Total Visits": 949.0, "Total Visitors": 864.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1597.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.0, "MEDIAN_SPEND_PER_CUSTOMER": 157.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pj8-tgk", "LOCATION_NAME": "New Ben City Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035691, "LONGITUDE": -75.100546, "DATE_RANGE_START": 2022, "Total Visits": 1162.0, "Total Visitors": 659.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3469.0, "Total Transactions": 267.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.100546, 40.035691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.014555, "LONGITUDE": -75.15728, "DATE_RANGE_START": 2022, "Total Visits": 1115.0, "Total Visitors": 768.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4590.0, "Total Transactions": 110.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 47.56 }, "geometry": { "type": "Point", "coordinates": [ -75.15728, 40.014555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgm-hwk", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.009599, "LONGITUDE": -75.196284, "DATE_RANGE_START": 2022, "Total Visits": 467.0, "Total Visitors": 359.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 826.0, "Total Transactions": 37.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196284, 40.009599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "LOCATION_NAME": "Tiffany & Co.", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950223, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 204.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 30129.0, "Total Transactions": 44.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 378.0, "MEDIAN_SPEND_PER_CUSTOMER": 459.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.950223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p8d-rp9", "LOCATION_NAME": "Walmart Supercenter", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998893, "LONGITUDE": -75.091892, "DATE_RANGE_START": 2022, "Total Visits": 6265.0, "Total Visitors": 3704.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 29.0, "Total Spend": 225308.0, "Total Transactions": 3690.0, "Total Customers": 2253.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.5, "MEDIAN_SPEND_PER_CUSTOMER": 58.91 }, "geometry": { "type": "Point", "coordinates": [ -75.091892, 39.998893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "LOCATION_NAME": "Giorgio On Pine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 56.0, "Total Spend": 25882.0, "Total Transactions": 239.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.52, "MEDIAN_SPEND_PER_CUSTOMER": 169.86 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "LOCATION_NAME": "Fairmart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 37.0, "POI_CBG": 421010131001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3481.0, "Total Transactions": 321.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.62, "MEDIAN_SPEND_PER_CUSTOMER": 16.21 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "LOCATION_NAME": "Boostin' Bowls", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 11578.0, "Total Transactions": 652.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.89, "MEDIAN_SPEND_PER_CUSTOMER": 30.88 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p8h-yd9", "LOCATION_NAME": "Al's Catering Service", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 40.035283, "LONGITUDE": -75.02565, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 129.0, "POI_CBG": 421010329002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 95.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.31, "MEDIAN_SPEND_PER_CUSTOMER": 27.31 }, "geometry": { "type": "Point", "coordinates": [ -75.02565, 40.035283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "LOCATION_NAME": "Ryan's Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 178.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 30.0, "Total Spend": 52411.0, "Total Transactions": 1908.0, "Total Customers": 695.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 53.4 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "LOCATION_NAME": "Sawatdee Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 59.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 96.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.57, "MEDIAN_SPEND_PER_CUSTOMER": 27.62 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "LOCATION_NAME": "Moy Fong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 52.0, "POI_CBG": 421010264005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5139.0, "Total Transactions": 195.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.96, "MEDIAN_SPEND_PER_CUSTOMER": 41.14 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "LOCATION_NAME": "Alaska King Crab House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 124.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 961.0, "Total Transactions": 28.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.93, "MEDIAN_SPEND_PER_CUSTOMER": 69.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-7qz", "LOCATION_NAME": "Vedge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947987, "LONGITUDE": -75.161387, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 138.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 261.0, "Total Spend": 34636.0, "Total Transactions": 260.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 129.16, "MEDIAN_SPEND_PER_CUSTOMER": 243.46 }, "geometry": { "type": "Point", "coordinates": [ -75.161387, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9r-4y9", "LOCATION_NAME": "Chuck E. Cheese's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076158, "LONGITUDE": -75.031371, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 321.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2026.0, "Total Transactions": 84.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.48, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031371, 40.076158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010746, "LONGITUDE": -75.175382, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 240.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 509.0, "Total Transactions": 38.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.06 }, "geometry": { "type": "Point", "coordinates": [ -75.175382, 40.010746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm9-yd9", "LOCATION_NAME": "Famous 4th Street Delicatessen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940489, "LONGITUDE": -75.149633, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 84.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 23578.0, "Total Transactions": 606.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.42, "MEDIAN_SPEND_PER_CUSTOMER": 58.06 }, "geometry": { "type": "Point", "coordinates": [ -75.149633, 39.940489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-hnq", "LOCATION_NAME": "Stock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952182, "LONGITUDE": -75.173159, "DATE_RANGE_START": 2022, "Total Visits": 4984.0, "Total Visitors": 3396.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 6264.0, "Total Transactions": 38.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 118.91, "MEDIAN_SPEND_PER_CUSTOMER": 198.67 }, "geometry": { "type": "Point", "coordinates": [ -75.173159, 39.952182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-ygk", "LOCATION_NAME": "Snow Show", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953739, "LONGITUDE": -75.15638, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 125.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2905.0, "Total Transactions": 235.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.15638, 39.953739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@63s-dw9-7dv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.877241, "LONGITUDE": -75.244155, "DATE_RANGE_START": 2022, "Total Visits": 1699.0, "Total Visitors": 1578.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 12859.0, "Total Transactions": 1298.0, "Total Customers": 1078.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.69, "MEDIAN_SPEND_PER_CUSTOMER": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.244155, 39.877241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pp2-47q", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982157, "LONGITUDE": -75.10349, "DATE_RANGE_START": 2022, "Total Visits": 183.0, "Total Visitors": 71.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 922.0, "Total Spend": 464.0, "Total Transactions": 49.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 12.32 }, "geometry": { "type": "Point", "coordinates": [ -75.10349, 39.982157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "LOCATION_NAME": "Beer Baron", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2022, "Total Visits": 1896.0, "Total Visitors": 1035.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 16714.0, "Total Transactions": 503.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.72, "MEDIAN_SPEND_PER_CUSTOMER": 80.96 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2022, "Total Visits": 803.0, "Total Visitors": 551.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 21767.0, "Total Transactions": 1040.0, "Total Customers": 688.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.87, "MEDIAN_SPEND_PER_CUSTOMER": 22.13 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "LOCATION_NAME": "Arch Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953757, "LONGITUDE": -75.15607, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 221.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1478.0, "Total Transactions": 33.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15607, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947798, "LONGITUDE": -75.1598, "DATE_RANGE_START": 2022, "Total Visits": 1296.0, "Total Visitors": 876.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 138.0, "Total Spend": 6565.0, "Total Transactions": 350.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 16.27 }, "geometry": { "type": "Point", "coordinates": [ -75.1598, 39.947798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.951277, "LONGITUDE": -75.177618, "DATE_RANGE_START": 2022, "Total Visits": 2239.0, "Total Visitors": 1798.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3235.0, "Total Transactions": 92.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.02, "MEDIAN_SPEND_PER_CUSTOMER": 36.64 }, "geometry": { "type": "Point", "coordinates": [ -75.177618, 39.951277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2022, "Total Visits": 787.0, "Total Visitors": 575.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10161.0, "Total Transactions": 434.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.961276, "LONGITUDE": -75.199304, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 171.0, "POI_CBG": 421010091003.0, "MEDIAN_DWELL": 430.0, "Total Spend": 14351.0, "Total Transactions": 186.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.16, "MEDIAN_SPEND_PER_CUSTOMER": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.199304, 39.961276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.917114, "LONGITUDE": -75.139852, "DATE_RANGE_START": 2022, "Total Visits": 578.0, "Total Visitors": 521.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 23311.0, "Total Transactions": 1242.0, "Total Customers": 986.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 16.96 }, "geometry": { "type": "Point", "coordinates": [ -75.139852, 39.917114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.084266, "LONGITUDE": -74.961834, "DATE_RANGE_START": 2022, "Total Visits": 355.0, "Total Visitors": 333.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 11164.0, "Total Transactions": 781.0, "Total Customers": 641.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.7, "MEDIAN_SPEND_PER_CUSTOMER": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -74.961834, 40.084266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-x89", "LOCATION_NAME": "Twin Smoke Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.929672, "LONGITUDE": -75.161301, "DATE_RANGE_START": 2022, "Total Visits": 183.0, "Total Visitors": 129.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 152.0, "Total Spend": 71.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.21, "MEDIAN_SPEND_PER_CUSTOMER": 20.42 }, "geometry": { "type": "Point", "coordinates": [ -75.161301, 39.929672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "LOCATION_NAME": "Spring Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 78.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5672.0, "Total Transactions": 293.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.09, "MEDIAN_SPEND_PER_CUSTOMER": 31.21 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.959641, "LONGITUDE": -75.218508, "DATE_RANGE_START": 2022, "Total Visits": 362.0, "Total Visitors": 279.0, "POI_CBG": 421010104004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3783.0, "Total Transactions": 235.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.98, "MEDIAN_SPEND_PER_CUSTOMER": 14.71 }, "geometry": { "type": "Point", "coordinates": [ -75.218508, 39.959641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "LOCATION_NAME": "BP", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032516, "LONGITUDE": -75.084558, "DATE_RANGE_START": 2022, "Total Visits": 1321.0, "Total Visitors": 875.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6122.0, "Total Transactions": 207.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.62 }, "geometry": { "type": "Point", "coordinates": [ -75.084558, 40.032516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-wx5", "LOCATION_NAME": "Gap Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090197, "LONGITUDE": -74.960879, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 190.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1029.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.2, "MEDIAN_SPEND_PER_CUSTOMER": 36.2 }, "geometry": { "type": "Point", "coordinates": [ -74.960879, 40.090197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "LOCATION_NAME": "Wooden Shoe Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.942084, "LONGITUDE": -75.154166, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 51.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 931.0, "Total Spend": 4150.0, "Total Transactions": 129.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.79, "MEDIAN_SPEND_PER_CUSTOMER": 39.95 }, "geometry": { "type": "Point", "coordinates": [ -75.154166, 39.942084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "LOCATION_NAME": "Bloomingdale's Outlet Philadelphia", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 78.0, "Total Spend": 4696.0, "Total Transactions": 92.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-835", "LOCATION_NAME": "Pennsylvania General Store", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953203, "LONGITUDE": -75.159393, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 1633.0, "Total Transactions": 99.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.88, "MEDIAN_SPEND_PER_CUSTOMER": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.159393, 39.953203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmf-j5f", "LOCATION_NAME": "Stir", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949714, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2022, "Total Visits": 3800.0, "Total Visitors": 2474.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 62.0, "Total Spend": 5678.0, "Total Transactions": 181.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.949714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-ndv", "LOCATION_NAME": "Kensington Quarters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97058, "LONGITUDE": -75.134713, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 103.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 24563.0, "Total Transactions": 169.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.18, "MEDIAN_SPEND_PER_CUSTOMER": 182.76 }, "geometry": { "type": "Point", "coordinates": [ -75.134713, 39.97058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "LOCATION_NAME": "Fairmount Pizza and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 145.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 29492.0, "Total Transactions": 1747.0, "Total Customers": 685.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 31.42 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "LOCATION_NAME": "Apricot Stone", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 26.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 86.0, "Total Spend": 12970.0, "Total Transactions": 160.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.35, "MEDIAN_SPEND_PER_CUSTOMER": 77.76 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phq-2ff", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058682, "LONGITUDE": -75.164688, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 31.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 77.0, "Total Spend": 2733.0, "Total Transactions": 134.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.72, "MEDIAN_SPEND_PER_CUSTOMER": 20.96 }, "geometry": { "type": "Point", "coordinates": [ -75.164688, 40.058682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946402, "LONGITUDE": -75.180743, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 40.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4101.0, "Total Transactions": 420.0, "Total Customers": 202.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180743, 39.946402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "LOCATION_NAME": "King Wok Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 45.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3120.0, "Total Transactions": 96.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.76, "MEDIAN_SPEND_PER_CUSTOMER": 53.2 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043955, "LONGITUDE": -75.231236, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 176.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 511.0, "Total Transactions": 31.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231236, 40.043955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.992401, "LONGITUDE": -75.110955, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 82.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 264.0, "Total Spend": 34.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.75, "MEDIAN_SPEND_PER_CUSTOMER": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110955, 39.992401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg9-tgk", "LOCATION_NAME": "The Spring Gardens", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 39.963016, "LONGITUDE": -75.168206, "DATE_RANGE_START": 2022, "Total Visits": 1118.0, "Total Visitors": 481.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 260.0, "Total Spend": 35685.0, "Total Transactions": 869.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.5, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168206, 39.963016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-jjv", "LOCATION_NAME": "Pastrami & Things", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952406, "LONGITUDE": -75.170418, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 132.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 45.0, "Total Spend": 852.0, "Total Transactions": 113.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 14.72 }, "geometry": { "type": "Point", "coordinates": [ -75.170418, 39.952406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949499, "LONGITUDE": -75.166653, "DATE_RANGE_START": 2022, "Total Visits": 467.0, "Total Visitors": 359.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 14.0, "Total Spend": 13714.0, "Total Transactions": 1101.0, "Total Customers": 807.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 13.61 }, "geometry": { "type": "Point", "coordinates": [ -75.166653, 39.949499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "LOCATION_NAME": "Soy Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 115.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 485.0, "Total Spend": 4490.0, "Total Transactions": 272.0, "Total Customers": 131.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.07, "MEDIAN_SPEND_PER_CUSTOMER": 24.24 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p7w-gc5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072472, "LONGITUDE": -75.075745, "DATE_RANGE_START": 2022, "Total Visits": 848.0, "Total Visitors": 516.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2114.0, "Total Transactions": 84.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 28.29 }, "geometry": { "type": "Point", "coordinates": [ -75.075745, 40.072472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmf-kvf", "LOCATION_NAME": "Village Whiskey", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.951382, "LONGITUDE": -75.173791, "DATE_RANGE_START": 2022, "Total Visits": 1801.0, "Total Visitors": 1275.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 16794.0, "Total Transactions": 284.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.1, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173791, 39.951382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-vxq", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055747, "LONGITUDE": -75.073256, "DATE_RANGE_START": 2022, "Total Visits": 340.0, "Total Visitors": 192.0, "POI_CBG": 421010338002.0, "MEDIAN_DWELL": 120.0, "Total Spend": 234.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.02, "MEDIAN_SPEND_PER_CUSTOMER": 32.02 }, "geometry": { "type": "Point", "coordinates": [ -75.073256, 40.055747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8n5", "LOCATION_NAME": "Columbia Sportswear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951969, "LONGITUDE": -75.157009, "DATE_RANGE_START": 2022, "Total Visits": 1932.0, "Total Visitors": 1650.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5706.0, "Total Transactions": 117.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.98, "MEDIAN_SPEND_PER_CUSTOMER": 76.81 }, "geometry": { "type": "Point", "coordinates": [ -75.157009, 39.951969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.080365, "LONGITUDE": -75.171922, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 84.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1178.0, "Total Transactions": 134.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.72, "MEDIAN_SPEND_PER_CUSTOMER": 8.86 }, "geometry": { "type": "Point", "coordinates": [ -75.171922, 40.080365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.925864, "LONGITUDE": -75.142894, "DATE_RANGE_START": 2022, "Total Visits": 2784.0, "Total Visitors": 1946.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 164780.0, "Total Transactions": 1338.0, "Total Customers": 777.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.5, "MEDIAN_SPEND_PER_CUSTOMER": 51.77 }, "geometry": { "type": "Point", "coordinates": [ -75.142894, 39.925864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgk-sqz", "LOCATION_NAME": "Sleep Number", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.007451, "LONGITUDE": -75.21243, "DATE_RANGE_START": 2022, "Total Visits": 568.0, "Total Visitors": 469.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 9.0, "Total Spend": 21527.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 3089.08, "MEDIAN_SPEND_PER_CUSTOMER": 6178.15 }, "geometry": { "type": "Point", "coordinates": [ -75.21243, 40.007451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "LOCATION_NAME": "IKEA", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.917106, "LONGITUDE": -75.141639, "DATE_RANGE_START": 2022, "Total Visits": 5251.0, "Total Visitors": 4643.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 627964.0, "Total Transactions": 6089.0, "Total Customers": 4333.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 60.44 }, "geometry": { "type": "Point", "coordinates": [ -75.141639, 39.917106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dw7-gkz", "LOCATION_NAME": "Aviation Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.877894, "LONGITUDE": -75.244682, "DATE_RANGE_START": 2022, "Total Visits": 8028.0, "Total Visitors": 6237.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 163.0, "Total Spend": 6742.0, "Total Transactions": 59.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.16, "MEDIAN_SPEND_PER_CUSTOMER": 212.32 }, "geometry": { "type": "Point", "coordinates": [ -75.244682, 39.877894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "LOCATION_NAME": "El Punto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 115.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8799.0, "Total Transactions": 305.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.5, "MEDIAN_SPEND_PER_CUSTOMER": 51.75 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 272.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2671.0, "Total Transactions": 235.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.68, "MEDIAN_SPEND_PER_CUSTOMER": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8n5", "LOCATION_NAME": "Kai Japanese Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950968, "LONGITUDE": -75.157061, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 162.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9720.0, "Total Transactions": 223.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.05, "MEDIAN_SPEND_PER_CUSTOMER": 61.11 }, "geometry": { "type": "Point", "coordinates": [ -75.157061, 39.950968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032491, "LONGITUDE": -75.214429, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 112.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 831.0, "Total Transactions": 40.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.81, "MEDIAN_SPEND_PER_CUSTOMER": 31.62 }, "geometry": { "type": "Point", "coordinates": [ -75.214429, 40.032491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pmb-c3q", "LOCATION_NAME": "Kin Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.944553, "LONGITUDE": -75.158728, "DATE_RANGE_START": 2022, "Total Visits": 1044.0, "Total Visitors": 749.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 106.0, "Total Spend": 8370.0, "Total Transactions": 26.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 298.08, "MEDIAN_SPEND_PER_CUSTOMER": 632.48 }, "geometry": { "type": "Point", "coordinates": [ -75.158728, 39.944553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-54v", "LOCATION_NAME": "United Fried Chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039073, "LONGITUDE": -75.143922, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 870.0, "Total Transactions": 75.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.36, "MEDIAN_SPEND_PER_CUSTOMER": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143922, 40.039073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "LOCATION_NAME": "Repo Records", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2022, "Total Visits": 859.0, "Total Visitors": 679.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 33519.0, "Total Transactions": 730.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.71, "MEDIAN_SPEND_PER_CUSTOMER": 73.42 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-t5f", "LOCATION_NAME": "Ta China Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965931, "LONGITUDE": -75.160374, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 92.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.25, "MEDIAN_SPEND_PER_CUSTOMER": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160374, 39.965931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pj3-kfz", "LOCATION_NAME": "Chocolates By Esonkee", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.02334, "LONGITUDE": -75.163261, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010244002.0, "MEDIAN_DWELL": null, "Total Spend": 586.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.57, "MEDIAN_SPEND_PER_CUSTOMER": 45.14 }, "geometry": { "type": "Point", "coordinates": [ -75.163261, 40.02334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "LOCATION_NAME": "Warwick Hotel Rittenhouse Square", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949172, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2022, "Total Visits": 2512.0, "Total Visitors": 1556.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 272.0, "Total Spend": 13087.0, "Total Transactions": 61.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 206.52, "MEDIAN_SPEND_PER_CUSTOMER": 397.46 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.949172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-8d9", "LOCATION_NAME": "Sky Club", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953909, "LONGITUDE": -75.15735, "DATE_RANGE_START": 2022, "Total Visits": 380.0, "Total Visitors": 256.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 169.0, "Total Spend": 5615.0, "Total Transactions": 35.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 122.77, "MEDIAN_SPEND_PER_CUSTOMER": 363.08 }, "geometry": { "type": "Point", "coordinates": [ -75.15735, 39.953909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-whq", "LOCATION_NAME": "Mac's Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949782, "LONGITUDE": -75.144728, "DATE_RANGE_START": 2022, "Total Visits": 3399.0, "Total Visitors": 2453.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 70.0, "Total Spend": 8617.0, "Total Transactions": 260.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.48, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144728, 39.949782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-7h5", "LOCATION_NAME": "Estia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948448, "LONGITUDE": -75.165269, "DATE_RANGE_START": 2022, "Total Visits": 653.0, "Total Visitors": 540.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 26.0, "Total Spend": 21992.0, "Total Transactions": 152.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 115.0, "MEDIAN_SPEND_PER_CUSTOMER": 214.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165269, 39.948448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-435", "LOCATION_NAME": "Clock Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.008873, "LONGITUDE": -75.15059, "DATE_RANGE_START": 2022, "Total Visits": 601.0, "Total Visitors": 437.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 1676.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 175.0, "MEDIAN_SPEND_PER_CUSTOMER": 202.15 }, "geometry": { "type": "Point", "coordinates": [ -75.15059, 40.008873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-f2k", "LOCATION_NAME": "New Eli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993812, "LONGITUDE": -75.118652, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 265.0, "POI_CBG": 421010177011.0, "MEDIAN_DWELL": 57.0, "Total Spend": 700.0, "Total Transactions": 19.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.25, "MEDIAN_SPEND_PER_CUSTOMER": 97.42 }, "geometry": { "type": "Point", "coordinates": [ -75.118652, 39.993812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947387, "LONGITUDE": -75.16433, "DATE_RANGE_START": 2022, "Total Visits": 3690.0, "Total Visitors": 2023.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 329.0, "Total Spend": 3067.0, "Total Transactions": 314.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16433, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y9z", "LOCATION_NAME": "Delightful Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953218, "LONGITUDE": -75.155064, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 84.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 493.0, "Total Spend": 325.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.19 }, "geometry": { "type": "Point", "coordinates": [ -75.155064, 39.953218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pnx-st9", "LOCATION_NAME": "Lmno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.975936, "LONGITUDE": -75.133832, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 240.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 70.0, "Total Spend": 2792.0, "Total Transactions": 37.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.0, "MEDIAN_SPEND_PER_CUSTOMER": 128.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133832, 39.975936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "LOCATION_NAME": "Dolce Carini Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 101.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2500.0, "Total Transactions": 186.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.43, "MEDIAN_SPEND_PER_CUSTOMER": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955218, "LONGITUDE": -75.155815, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 230.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10721.0, "Total Transactions": 181.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.56, "MEDIAN_SPEND_PER_CUSTOMER": 93.87 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 39.955218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "LOCATION_NAME": "Pho Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 63.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 219.0, "Total Spend": 8734.0, "Total Transactions": 169.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.15, "MEDIAN_SPEND_PER_CUSTOMER": 94.67 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "LOCATION_NAME": "Tuna Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954087, "LONGITUDE": -75.143167, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 98.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 198.0, "Total Spend": 47613.0, "Total Transactions": 486.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.23, "MEDIAN_SPEND_PER_CUSTOMER": 160.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143167, 39.954087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 59.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1865.0, "Total Transactions": 118.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.44, "MEDIAN_SPEND_PER_CUSTOMER": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 188.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10930.0, "Total Transactions": 631.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.45, "MEDIAN_SPEND_PER_CUSTOMER": 18.26 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-rzf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.996049, "LONGITUDE": -75.092849, "DATE_RANGE_START": 2022, "Total Visits": 841.0, "Total Visitors": 359.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1589.0, "Total Transactions": 211.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.06, "MEDIAN_SPEND_PER_CUSTOMER": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092849, 39.996049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p85-2hq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066275, "LONGITUDE": -75.051537, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 117.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 825.0, "Total Transactions": 98.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.56, "MEDIAN_SPEND_PER_CUSTOMER": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.051537, 40.066275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.074942, "LONGITUDE": -75.035038, "DATE_RANGE_START": 2022, "Total Visits": 2017.0, "Total Visitors": 1359.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1000.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.31, "MEDIAN_SPEND_PER_CUSTOMER": 51.31 }, "geometry": { "type": "Point", "coordinates": [ -75.035038, 40.074942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "LOCATION_NAME": "Golden Nugget Jewelers III", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2022, "Total Visits": 1373.0, "Total Visitors": 1031.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 114410.0, "Total Transactions": 105.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 1000.0, "MEDIAN_SPEND_PER_CUSTOMER": 1230.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmd-w49", "LOCATION_NAME": "Cook", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.94873, "LONGITUDE": -75.174113, "DATE_RANGE_START": 2022, "Total Visits": 796.0, "Total Visitors": 537.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 32.0, "Total Spend": 543.0, "Total Transactions": 21.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.12, "MEDIAN_SPEND_PER_CUSTOMER": 70.56 }, "geometry": { "type": "Point", "coordinates": [ -75.174113, 39.94873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 31.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 43.0, "Total Spend": 726.0, "Total Transactions": 37.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.8, "MEDIAN_SPEND_PER_CUSTOMER": 39.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "LOCATION_NAME": "New Wave Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 47.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 80.0, "Total Spend": 8104.0, "Total Transactions": 150.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.83, "MEDIAN_SPEND_PER_CUSTOMER": 64.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "LOCATION_NAME": "Villavillekula", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075713, "LONGITUDE": -75.205415, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1928.0, "Total Transactions": 38.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.6, "MEDIAN_SPEND_PER_CUSTOMER": 105.84 }, "geometry": { "type": "Point", "coordinates": [ -75.205415, 40.075713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfv-94v", "LOCATION_NAME": "The Nesting House", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.04661, "LONGITUDE": -75.195379, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 14.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 297.0, "Total Spend": 47670.0, "Total Transactions": 66.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 699.0, "MEDIAN_SPEND_PER_CUSTOMER": 4544.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195379, 40.04661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p7c-3dv", "LOCATION_NAME": "Marathon", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.06844, "LONGITUDE": -75.007839, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 19.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2755.0, "Total Transactions": 96.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.69 }, "geometry": { "type": "Point", "coordinates": [ -75.007839, 40.06844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "LOCATION_NAME": "Mustard Greens Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 66.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2492.0, "Total Transactions": 33.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.59, "MEDIAN_SPEND_PER_CUSTOMER": 137.54 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "LOCATION_NAME": "Tacodelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 73.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 243.0, "Total Spend": 6377.0, "Total Transactions": 413.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.01, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 139.0, "POI_CBG": 421010140001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 236.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmf-ht9", "LOCATION_NAME": "Devon & Blakely", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953611, "LONGITUDE": -75.170322, "DATE_RANGE_START": 2022, "Total Visits": 2838.0, "Total Visitors": 2044.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8595.0, "Total Transactions": 547.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 25.22 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 39.953611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-v75", "LOCATION_NAME": "Buffalo Billiards", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948098, "LONGITUDE": -75.143221, "DATE_RANGE_START": 2022, "Total Visits": 481.0, "Total Visitors": 345.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 77.0, "Total Spend": 62297.0, "Total Transactions": 1892.0, "Total Customers": 721.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.02, "MEDIAN_SPEND_PER_CUSTOMER": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143221, 39.948098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "LOCATION_NAME": "The Plough & the Stars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 167.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 6915.0, "Total Transactions": 132.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.25, "MEDIAN_SPEND_PER_CUSTOMER": 65.68 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22d@628-pmf-hkf", "LOCATION_NAME": "Halal Kitch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954179, "LONGITUDE": -75.173698, "DATE_RANGE_START": 2022, "Total Visits": 2894.0, "Total Visitors": 1850.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 262.0, "Total Spend": 2971.0, "Total Transactions": 122.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.15, "MEDIAN_SPEND_PER_CUSTOMER": 32.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173698, 39.954179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 38.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4156.0, "Total Transactions": 24.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 104.92, "MEDIAN_SPEND_PER_CUSTOMER": 147.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-kvf", "LOCATION_NAME": "20th Street Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951712, "LONGITUDE": -75.173725, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 182.0, "Total Spend": 366.0, "Total Transactions": 30.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.16, "MEDIAN_SPEND_PER_CUSTOMER": 26.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173725, 39.951712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-qs5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031776, "LONGITUDE": -75.104312, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 54.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3441.0, "Total Transactions": 476.0, "Total Customers": 164.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104312, 40.031776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.028872, "LONGITUDE": -75.206199, "DATE_RANGE_START": 2022, "Total Visits": 1584.0, "Total Visitors": 1200.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1698.0, "Total Transactions": 52.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.87, "MEDIAN_SPEND_PER_CUSTOMER": 28.59 }, "geometry": { "type": "Point", "coordinates": [ -75.206199, 40.028872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvy-9j9", "LOCATION_NAME": "Gas & Mini Mart", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.948746, "LONGITUDE": -75.214523, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 89.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 90.0, "Total Spend": 348.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214523, 39.948746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034799, "LONGITUDE": -75.06613, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 80.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1615.0, "Total Transactions": 54.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.26, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06613, 40.034799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "LOCATION_NAME": "Menchie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2022, "Total Visits": 368.0, "Total Visitors": 319.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 639.0, "Total Transactions": 40.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.95, "MEDIAN_SPEND_PER_CUSTOMER": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-224@628-pm4-h5z", "LOCATION_NAME": "Favors & Flavors", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926083, "LONGITUDE": -75.167651, "DATE_RANGE_START": 2022, "Total Visits": 624.0, "Total Visitors": 378.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 95.0, "Total Spend": 293.0, "Total Transactions": 47.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.62, "MEDIAN_SPEND_PER_CUSTOMER": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.167651, 39.926083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pnw-x89", "LOCATION_NAME": "Pretty Girls Cook", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97001, "LONGITUDE": -75.147605, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 37.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 456.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.0, "MEDIAN_SPEND_PER_CUSTOMER": 130.95 }, "geometry": { "type": "Point", "coordinates": [ -75.147605, 39.97001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 185.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 5630.0, "Total Transactions": 112.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.48, "MEDIAN_SPEND_PER_CUSTOMER": 85.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgj-9xq", "LOCATION_NAME": "Brothers Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.990985, "LONGITUDE": -75.167059, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 19.0, "POI_CBG": 421010168006.0, "MEDIAN_DWELL": 162.0, "Total Spend": 297.0, "Total Transactions": 38.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167059, 39.990985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.094236, "LONGITUDE": -75.016653, "DATE_RANGE_START": 2022, "Total Visits": 787.0, "Total Visitors": 601.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8273.0, "Total Transactions": 592.0, "Total Customers": 434.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 13.35 }, "geometry": { "type": "Point", "coordinates": [ -75.016653, 40.094236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-4jv", "LOCATION_NAME": "Saxbys Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957412, "LONGITUDE": -75.190756, "DATE_RANGE_START": 2022, "Total Visits": 274.0, "Total Visitors": 171.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 162.0, "Total Spend": 114.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.69, "MEDIAN_SPEND_PER_CUSTOMER": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.190756, 39.957412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-n5z", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954037, "LONGITUDE": -75.200292, "DATE_RANGE_START": 2022, "Total Visits": 1460.0, "Total Visitors": 1054.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7653.0, "Total Transactions": 970.0, "Total Customers": 638.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.200292, 39.954037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984509, "LONGITUDE": -75.121352, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 153.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3569.0, "Total Transactions": 87.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.76, "MEDIAN_SPEND_PER_CUSTOMER": 38.08 }, "geometry": { "type": "Point", "coordinates": [ -75.121352, 39.984509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-gc5", "LOCATION_NAME": "Verree Mini Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072294, "LONGITUDE": -75.076111, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 174.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 45.0, "Total Spend": 298.0, "Total Transactions": 24.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076111, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgm-28v", "LOCATION_NAME": "East Falls Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.007838, "LONGITUDE": -75.191777, "DATE_RANGE_START": 2022, "Total Visits": 6068.0, "Total Visitors": 4835.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 912.0, "Total Transactions": 52.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.71, "MEDIAN_SPEND_PER_CUSTOMER": 42.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191777, 40.007838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgd-z9f", "LOCATION_NAME": "UrHomeInPhilly", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.956628, "LONGITUDE": -75.194459, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 53.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.194459, 39.956628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-4sq", "LOCATION_NAME": "NOTO Philadelphia", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957795, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 106.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 314.0, "Total Transactions": 12.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 90.01 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.957795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y7q", "LOCATION_NAME": "Day N Nite", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.954252, "LONGITUDE": -75.1549, "DATE_RANGE_START": 2022, "Total Visits": 5087.0, "Total Visitors": 3380.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 9634.0, "Total Transactions": 166.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 138.96 }, "geometry": { "type": "Point", "coordinates": [ -75.1549, 39.954252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2022, "Total Visits": 491.0, "Total Visitors": 340.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3356.0, "Total Transactions": 152.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.95 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-rhq", "LOCATION_NAME": "Tina's tacos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979315, "LONGITUDE": -75.125407, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 56.0, "POI_CBG": 421010160007.0, "MEDIAN_DWELL": 39.0, "Total Spend": 190.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.54, "MEDIAN_SPEND_PER_CUSTOMER": 54.54 }, "geometry": { "type": "Point", "coordinates": [ -75.125407, 39.979315 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pnx-bp9", "LOCATION_NAME": "Girard Food & Gas Mart", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.971685, "LONGITUDE": -75.124961, "DATE_RANGE_START": 2022, "Total Visits": 869.0, "Total Visitors": 524.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 21690.0, "Total Transactions": 850.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.13, "MEDIAN_SPEND_PER_CUSTOMER": 50.55 }, "geometry": { "type": "Point", "coordinates": [ -75.124961, 39.971685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-rhq", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.038152, "LONGITUDE": -75.116908, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 99.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1724.0, "Total Transactions": 44.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.2, "MEDIAN_SPEND_PER_CUSTOMER": 29.53 }, "geometry": { "type": "Point", "coordinates": [ -75.116908, 40.038152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 136.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 20.0, "Total Spend": 4832.0, "Total Transactions": 164.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.92, "MEDIAN_SPEND_PER_CUSTOMER": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 68.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1651.0, "Total Transactions": 84.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.36, "MEDIAN_SPEND_PER_CUSTOMER": 19.19 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.96694, "LONGITUDE": -75.233446, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 253.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2186.0, "Total Transactions": 192.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.7, "MEDIAN_SPEND_PER_CUSTOMER": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.233446, 39.96694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2022, "Total Visits": 503.0, "Total Visitors": 355.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1513.0, "Total Transactions": 37.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.55, "MEDIAN_SPEND_PER_CUSTOMER": 43.63 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 209.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6768.0, "Total Transactions": 815.0, "Total Customers": 380.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.36, "MEDIAN_SPEND_PER_CUSTOMER": 11.06 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "LOCATION_NAME": "Menagerie Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 16429.0, "Total Transactions": 1836.0, "Total Customers": 596.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.59, "MEDIAN_SPEND_PER_CUSTOMER": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "LOCATION_NAME": "Aura", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.961228, "LONGITUDE": -75.138826, "DATE_RANGE_START": 2022, "Total Visits": 148.0, "Total Visitors": 117.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 388843.0, "Total Transactions": 3955.0, "Total Customers": 1667.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.52, "MEDIAN_SPEND_PER_CUSTOMER": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138826, 39.961228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-6hq", "LOCATION_NAME": "Hoshi's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949331, "LONGITUDE": -75.159161, "DATE_RANGE_START": 2022, "Total Visits": 291.0, "Total Visitors": 157.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 226.0, "Total Spend": 1004.0, "Total Transactions": 47.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.99, "MEDIAN_SPEND_PER_CUSTOMER": 35.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159161, 39.949331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "LOCATION_NAME": "Steak 'Em Up", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 56.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 375.0, "Total Spend": 4374.0, "Total Transactions": 174.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.52, "MEDIAN_SPEND_PER_CUSTOMER": 56.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.063794, "LONGITUDE": -75.238861, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 171.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 19626.0, "Total Transactions": 1775.0, "Total Customers": 1117.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.238861, 40.063794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2022, "Total Visits": 218.0, "Total Visitors": 143.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3498.0, "Total Transactions": 389.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.81, "MEDIAN_SPEND_PER_CUSTOMER": 11.01 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pg9-vpv", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967164, "LONGITUDE": -75.172278, "DATE_RANGE_START": 2022, "Total Visits": 702.0, "Total Visitors": 490.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 60.0, "Total Spend": 10106.0, "Total Transactions": 937.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172278, 39.967164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095685, "LONGITUDE": -75.015058, "DATE_RANGE_START": 2022, "Total Visits": 340.0, "Total Visitors": 206.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1767.0, "Total Transactions": 206.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.58 }, "geometry": { "type": "Point", "coordinates": [ -75.015058, 40.095685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "LOCATION_NAME": "T cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947904, "LONGITUDE": -75.142953, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 192.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 13.0, "Total Spend": 20571.0, "Total Transactions": 1571.0, "Total Customers": 594.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.142953, 39.947904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnw-nt9", "LOCATION_NAME": "Fishtown Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.970532, "LONGITUDE": -75.134266, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 30.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 60.0, "Total Spend": 33527.0, "Total Transactions": 1192.0, "Total Customers": 486.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.8, "MEDIAN_SPEND_PER_CUSTOMER": 47.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134266, 39.970532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-cyv", "LOCATION_NAME": "Holmesburg Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.041745, "LONGITUDE": -75.026513, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 31.0, "POI_CBG": 421010329001.0, "MEDIAN_DWELL": 251.0, "Total Spend": 456.0, "Total Transactions": 47.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.06, "MEDIAN_SPEND_PER_CUSTOMER": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.026513, 40.041745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@63s-dw2-4gk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.965722, "LONGITUDE": -75.246681, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 45.0, "POI_CBG": 421010096004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4705.0, "Total Transactions": 206.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.05, "MEDIAN_SPEND_PER_CUSTOMER": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -75.246681, 39.965722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "LOCATION_NAME": "Xian Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9532, "LONGITUDE": -75.154945, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 45.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1944.0, "Total Transactions": 66.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.83, "MEDIAN_SPEND_PER_CUSTOMER": 38.95 }, "geometry": { "type": "Point", "coordinates": [ -75.154945, 39.9532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-r49", "LOCATION_NAME": "PA Auto Sales com", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.104341, "LONGITUDE": -75.003284, "DATE_RANGE_START": 2022, "Total Visits": 404.0, "Total Visitors": 328.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 36814.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 1460.0, "MEDIAN_SPEND_PER_CUSTOMER": 2920.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003284, 40.104341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.037244, "LONGITUDE": -75.17465, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 174.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 925.0, "Total Spend": 10485.0, "Total Transactions": 209.0, "Total Customers": 141.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.93, "MEDIAN_SPEND_PER_CUSTOMER": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.17465, 40.037244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-f75", "LOCATION_NAME": "Beer City", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.972301, "LONGITUDE": -75.125884, "DATE_RANGE_START": 2022, "Total Visits": 460.0, "Total Visitors": 230.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 22865.0, "Total Transactions": 885.0, "Total Customers": 310.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.11, "MEDIAN_SPEND_PER_CUSTOMER": 47.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125884, 39.972301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phq-k75", "LOCATION_NAME": "Rodriguez Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.057192, "LONGITUDE": -75.148867, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 146.0, "POI_CBG": 421010267007.0, "MEDIAN_DWELL": 3.0, "Total Spend": 273.0, "Total Transactions": 17.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.05, "MEDIAN_SPEND_PER_CUSTOMER": 34.88 }, "geometry": { "type": "Point", "coordinates": [ -75.148867, 40.057192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-c3q", "LOCATION_NAME": "Foodery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944856, "LONGITUDE": -75.158469, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 171.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 33319.0, "Total Transactions": 1960.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 36.44 }, "geometry": { "type": "Point", "coordinates": [ -75.158469, 39.944856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 105.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9561.0, "Total Transactions": 561.0, "Total Customers": 441.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.26, "MEDIAN_SPEND_PER_CUSTOMER": 18.66 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-zvf", "LOCATION_NAME": "Tavern On the Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077151, "LONGITUDE": -75.208916, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 45.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 92.0, "Total Spend": 9807.0, "Total Transactions": 152.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.64, "MEDIAN_SPEND_PER_CUSTOMER": 116.16 }, "geometry": { "type": "Point", "coordinates": [ -75.208916, 40.077151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02088, "LONGITUDE": -75.134701, "DATE_RANGE_START": 2022, "Total Visits": 267.0, "Total Visitors": 190.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7792.0, "Total Transactions": 380.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.59, "MEDIAN_SPEND_PER_CUSTOMER": 28.93 }, "geometry": { "type": "Point", "coordinates": [ -75.134701, 40.02088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-8sq", "LOCATION_NAME": "Cinnabon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952174, "LONGITUDE": -75.158425, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 2261.0, "Total Transactions": 265.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.72, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158425, 39.952174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24r-222@628-pm7-kmk", "LOCATION_NAME": "8 Brothers Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.933486, "LONGITUDE": -75.18947, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 51.0, "POI_CBG": 421010032006.0, "MEDIAN_DWELL": 11.0, "Total Spend": 625.0, "Total Transactions": 71.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18947, 39.933486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "LOCATION_NAME": "Jini Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.085837, "LONGITUDE": -74.962154, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 134.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8499.0, "Total Transactions": 314.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.03, "MEDIAN_SPEND_PER_CUSTOMER": 49.58 }, "geometry": { "type": "Point", "coordinates": [ -74.962154, 40.085837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009408, "LONGITUDE": -75.196533, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 160.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6721.0, "Total Transactions": 754.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 9.21 }, "geometry": { "type": "Point", "coordinates": [ -75.196533, 40.009408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945401, "LONGITUDE": -75.178709, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 145.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9027.0, "Total Transactions": 598.0, "Total Customers": 376.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.43, "MEDIAN_SPEND_PER_CUSTOMER": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.178709, 39.945401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phk-yvz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.054755, "LONGITUDE": -75.125732, "DATE_RANGE_START": 2022, "Total Visits": 1206.0, "Total Visitors": 800.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 942.0, "Total Transactions": 33.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.13, "MEDIAN_SPEND_PER_CUSTOMER": 40.01 }, "geometry": { "type": "Point", "coordinates": [ -75.125732, 40.054755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.033829, "LONGITUDE": -75.072583, "DATE_RANGE_START": 2022, "Total Visits": 1080.0, "Total Visitors": 735.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2134.0, "Total Transactions": 63.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.17, "MEDIAN_SPEND_PER_CUSTOMER": 39.59 }, "geometry": { "type": "Point", "coordinates": [ -75.072583, 40.033829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-zpv", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.97922, "LONGITUDE": -75.22266, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 59.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3475.0, "Total Transactions": 54.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.19, "MEDIAN_SPEND_PER_CUSTOMER": 51.64 }, "geometry": { "type": "Point", "coordinates": [ -75.22266, 39.97922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pnw-w8v", "LOCATION_NAME": "Roar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.963353, "LONGITUDE": -75.1353, "DATE_RANGE_START": 2022, "Total Visits": 455.0, "Total Visitors": 321.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 62.0, "Total Spend": 87322.0, "Total Transactions": 695.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.1, "MEDIAN_SPEND_PER_CUSTOMER": 91.06 }, "geometry": { "type": "Point", "coordinates": [ -75.1353, 39.963353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pmb-7qz", "LOCATION_NAME": "Voyeur Nightclub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948348, "LONGITUDE": -75.161699, "DATE_RANGE_START": 2022, "Total Visits": 319.0, "Total Visitors": 226.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 51.0, "Total Spend": 84694.0, "Total Transactions": 2976.0, "Total Customers": 890.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.8, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161699, 39.948348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-5zz", "LOCATION_NAME": "Crunchik'n", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948207, "LONGITUDE": -75.159314, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 112.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 58.0, "Total Spend": 1256.0, "Total Transactions": 51.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.81, "MEDIAN_SPEND_PER_CUSTOMER": 28.84 }, "geometry": { "type": "Point", "coordinates": [ -75.159314, 39.948207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6hq", "LOCATION_NAME": "Sueno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949738, "LONGITUDE": -75.16012, "DATE_RANGE_START": 2022, "Total Visits": 6244.0, "Total Visitors": 3777.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 37852.0, "Total Transactions": 549.0, "Total Customers": 289.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.28, "MEDIAN_SPEND_PER_CUSTOMER": 101.86 }, "geometry": { "type": "Point", "coordinates": [ -75.16012, 39.949738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phy-v9f", "LOCATION_NAME": "The Crab Shack 2", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030196, "LONGITUDE": -75.117947, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 105.0, "POI_CBG": 421010290004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4635.0, "Total Transactions": 105.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 79.95 }, "geometry": { "type": "Point", "coordinates": [ -75.117947, 40.030196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "LOCATION_NAME": "The Flavor Spot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 45.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 8.0, "Total Spend": 7489.0, "Total Transactions": 249.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.92, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-tgk", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035436, "LONGITUDE": -75.099754, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 51.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 311.0, "Total Transactions": 26.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.099754, 40.035436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dtm-v75", "LOCATION_NAME": "Delta Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.873088, "LONGITUDE": -75.27466, "DATE_RANGE_START": 2022, "Total Visits": 2023.0, "Total Visitors": 1014.0, "POI_CBG": 420454037012.0, "MEDIAN_DWELL": 361.0, "Total Spend": 2970.0, "Total Transactions": 84.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27466, 39.873088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p85-hkf", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071857, "LONGITUDE": -75.030407, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 17.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 238.0, "Total Spend": 2146.0, "Total Transactions": 94.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.030407, 40.071857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "LOCATION_NAME": "Yakitori Boy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 127.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 80.0, "Total Spend": 45465.0, "Total Transactions": 631.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.04, "MEDIAN_SPEND_PER_CUSTOMER": 111.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "LOCATION_NAME": "Sahara Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2022, "Total Visits": 6721.0, "Total Visitors": 4338.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 157.0, "Total Spend": 2700.0, "Total Transactions": 75.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.21, "MEDIAN_SPEND_PER_CUSTOMER": 55.22 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-8d9", "LOCATION_NAME": "Tom's Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953328, "LONGITUDE": -75.157763, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 71.0, "Total Spend": 21155.0, "Total Transactions": 441.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.73, "MEDIAN_SPEND_PER_CUSTOMER": 70.28 }, "geometry": { "type": "Point", "coordinates": [ -75.157763, 39.953328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "LOCATION_NAME": "Tony Luke's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.906891, "LONGITUDE": -75.166013, "DATE_RANGE_START": 2022, "Total Visits": 2159.0, "Total Visitors": 2068.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 10206.0, "Total Transactions": 411.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.166013, 39.906891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "LOCATION_NAME": "Oneals Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 11558.0, "Total Transactions": 315.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.9, "MEDIAN_SPEND_PER_CUSTOMER": 70.16 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-rhq", "LOCATION_NAME": "Moonshine Philly", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925012, "LONGITUDE": -75.151601, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 53.0, "Total Spend": 16975.0, "Total Transactions": 289.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.4, "MEDIAN_SPEND_PER_CUSTOMER": 109.89 }, "geometry": { "type": "Point", "coordinates": [ -75.151601, 39.925012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950471, "LONGITUDE": -75.146166, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 37.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 23379.0, "Total Transactions": 591.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 63.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146166, 39.950471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.080948, "LONGITUDE": -75.025099, "DATE_RANGE_START": 2022, "Total Visits": 7401.0, "Total Visitors": 4955.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 62283.0, "Total Transactions": 882.0, "Total Customers": 598.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.98, "MEDIAN_SPEND_PER_CUSTOMER": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.025099, 40.080948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj7-w49", "LOCATION_NAME": "Castor Avenue Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.01813, "LONGITUDE": -75.09505, "DATE_RANGE_START": 2022, "Total Visits": 848.0, "Total Visitors": 599.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 247.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.39, "MEDIAN_SPEND_PER_CUSTOMER": 71.01 }, "geometry": { "type": "Point", "coordinates": [ -75.09505, 40.01813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2022, "Total Visits": 498.0, "Total Visitors": 347.0, "POI_CBG": 421010311013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 624.0, "Total Transactions": 31.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.11, "MEDIAN_SPEND_PER_CUSTOMER": 25.15 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2022, "Total Visits": 484.0, "Total Visitors": 333.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 10106.0, "Total Transactions": 409.0, "Total Customers": 303.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 21.46 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-p7x-7kf", "LOCATION_NAME": "A Plus Mini Market", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050709, "LONGITUDE": -75.06609, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 105.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 104.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06609, 40.050709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-92k", "LOCATION_NAME": "Levi Strauss & Co.", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.95164, "LONGITUDE": -75.155746, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 4072.0, "Total Transactions": 68.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.38, "MEDIAN_SPEND_PER_CUSTOMER": 34.69 }, "geometry": { "type": "Point", "coordinates": [ -75.155746, 39.95164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 131.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 788.0, "Total Transactions": 125.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.06, "MEDIAN_SPEND_PER_CUSTOMER": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8m-v2k", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.029571, "LONGITUDE": -75.058564, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 87.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1532.0, "Total Transactions": 146.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.92, "MEDIAN_SPEND_PER_CUSTOMER": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.058564, 40.029571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4jv", "LOCATION_NAME": "Embroidery King", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.046955, "LONGITUDE": -75.098445, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 26.0, "POI_CBG": 421010305021.0, "MEDIAN_DWELL": 474.0, "Total Spend": 3286.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 247.74, "MEDIAN_SPEND_PER_CUSTOMER": 495.48 }, "geometry": { "type": "Point", "coordinates": [ -75.098445, 40.046955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-435", "LOCATION_NAME": "Fresh Gulf Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.920683, "LONGITUDE": -75.187828, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 835.0, "Total Transactions": 38.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.37, "MEDIAN_SPEND_PER_CUSTOMER": 43.4 }, "geometry": { "type": "Point", "coordinates": [ -75.187828, 39.920683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "LOCATION_NAME": "China Royal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 38.0, "POI_CBG": 421010333003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3019.0, "Total Transactions": 99.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.65, "MEDIAN_SPEND_PER_CUSTOMER": 53.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pjb-6c5", "LOCATION_NAME": "Broadview Kitchen & Bath", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.050005, "LONGITUDE": -75.142784, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010277001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3354.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.05, "MEDIAN_SPEND_PER_CUSTOMER": 853.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142784, 40.050005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pzn-zj9", "LOCATION_NAME": "La Casa Di Lucias", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 40.132324, "LONGITUDE": -75.010926, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 117.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 59.0, "Total Spend": 2765.0, "Total Transactions": 59.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.11, "MEDIAN_SPEND_PER_CUSTOMER": 64.58 }, "geometry": { "type": "Point", "coordinates": [ -75.010926, 40.132324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5mk", "LOCATION_NAME": "U Bahn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95079, "LONGITUDE": -75.16242, "DATE_RANGE_START": 2022, "Total Visits": 18324.0, "Total Visitors": 13202.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 5582.0, "Total Transactions": 167.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.68, "MEDIAN_SPEND_PER_CUSTOMER": 60.16 }, "geometry": { "type": "Point", "coordinates": [ -75.16242, 39.95079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "LOCATION_NAME": "Miller's Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079795, "LONGITUDE": -75.028682, "DATE_RANGE_START": 2022, "Total Visits": 510.0, "Total Visitors": 441.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 36843.0, "Total Transactions": 625.0, "Total Customers": 542.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.84, "MEDIAN_SPEND_PER_CUSTOMER": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028682, 40.079795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pmb-ygk", "LOCATION_NAME": "Oishii Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953252, "LONGITUDE": -75.15618, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9349.0, "Total Transactions": 456.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.29, "MEDIAN_SPEND_PER_CUSTOMER": 33.92 }, "geometry": { "type": "Point", "coordinates": [ -75.15618, 39.953252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "LOCATION_NAME": "Cleavers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951397, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 254.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 28648.0, "Total Transactions": 859.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.89, "MEDIAN_SPEND_PER_CUSTOMER": 48.66 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 39.951397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-59f", "LOCATION_NAME": "Bellissima Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058663, "LONGITUDE": -75.059466, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 35.0, "POI_CBG": 421010336002.0, "MEDIAN_DWELL": 313.0, "Total Spend": 1175.0, "Total Transactions": 49.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.2, "MEDIAN_SPEND_PER_CUSTOMER": 46.5 }, "geometry": { "type": "Point", "coordinates": [ -75.059466, 40.058663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p9j-zj9", "LOCATION_NAME": "Kabobi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0995, "LONGITUDE": -75.010461, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 49.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1660.0, "Total Transactions": 42.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.72, "MEDIAN_SPEND_PER_CUSTOMER": 60.3 }, "geometry": { "type": "Point", "coordinates": [ -75.010461, 40.0995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "LOCATION_NAME": "Chestnut Hill Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 380.0, "Total Spend": 376.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "LOCATION_NAME": "The Tasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7479.0, "Total Transactions": 242.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.7, "MEDIAN_SPEND_PER_CUSTOMER": 69.22 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "LOCATION_NAME": "Fishtown Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 17.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 125.0, "Total Spend": 3012.0, "Total Transactions": 143.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.21, "MEDIAN_SPEND_PER_CUSTOMER": 77.56 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "LOCATION_NAME": "Beijing Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 172.0, "Total Transactions": 10.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.73, "MEDIAN_SPEND_PER_CUSTOMER": 24.65 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 26.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 108.0, "Total Spend": 13111.0, "Total Transactions": 500.0, "Total Customers": 397.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.48, "MEDIAN_SPEND_PER_CUSTOMER": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "LOCATION_NAME": "China City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 28.0, "POI_CBG": 421010311011.0, "MEDIAN_DWELL": 758.0, "Total Spend": 1728.0, "Total Transactions": 68.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.09, "MEDIAN_SPEND_PER_CUSTOMER": 50.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-fvf", "LOCATION_NAME": "Jennifer Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.944398, "LONGITUDE": -75.216558, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 30.0, "POI_CBG": 421010078002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 397.0, "Total Transactions": 64.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216558, 39.944398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.938146, "LONGITUDE": -75.172721, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 87.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11845.0, "Total Transactions": 322.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.41, "MEDIAN_SPEND_PER_CUSTOMER": 27.53 }, "geometry": { "type": "Point", "coordinates": [ -75.172721, 39.938146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pgj-s3q", "LOCATION_NAME": "Espinal Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.982055, "LONGITUDE": -75.147277, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 28.0, "POI_CBG": 421010377003.0, "MEDIAN_DWELL": 334.0, "Total Spend": 26.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147277, 39.982055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.032157, "LONGITUDE": -75.050449, "DATE_RANGE_START": 2022, "Total Visits": 610.0, "Total Visitors": 448.0, "POI_CBG": 421010325001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3304.0, "Total Transactions": 101.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.41, "MEDIAN_SPEND_PER_CUSTOMER": 36.07 }, "geometry": { "type": "Point", "coordinates": [ -75.050449, 40.032157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-y5f", "LOCATION_NAME": "Haagen Dazs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941281, "LONGITUDE": -75.147232, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3861.0, "Total Transactions": 355.0, "Total Customers": 310.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.89, "MEDIAN_SPEND_PER_CUSTOMER": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.147232, 39.941281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.921823, "LONGITUDE": -75.170522, "DATE_RANGE_START": 2022, "Total Visits": 321.0, "Total Visitors": 242.0, "POI_CBG": 421010039012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5777.0, "Total Transactions": 526.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.01, "MEDIAN_SPEND_PER_CUSTOMER": 10.28 }, "geometry": { "type": "Point", "coordinates": [ -75.170522, 39.921823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "LOCATION_NAME": "Philadelphia Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991113, "LONGITUDE": -75.130735, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 44.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2437.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130735, 39.991113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-r49", "LOCATION_NAME": "The Richmond Bottle Shop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.975358, "LONGITUDE": -75.119619, "DATE_RANGE_START": 2022, "Total Visits": 1281.0, "Total Visitors": 599.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 341.0, "Total Transactions": 14.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.62, "MEDIAN_SPEND_PER_CUSTOMER": 50.73 }, "geometry": { "type": "Point", "coordinates": [ -75.119619, 39.975358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.0471, "LONGITUDE": -75.142281, "DATE_RANGE_START": 2022, "Total Visits": 2247.0, "Total Visitors": 1476.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7947.0, "Total Transactions": 172.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.97, "MEDIAN_SPEND_PER_CUSTOMER": 50.22 }, "geometry": { "type": "Point", "coordinates": [ -75.142281, 40.0471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8n5", "LOCATION_NAME": "Primark", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951745, "LONGITUDE": -75.15699, "DATE_RANGE_START": 2022, "Total Visits": 21494.0, "Total Visitors": 13739.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1366.0, "Total Transactions": 35.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15699, 39.951745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2022, "Total Visits": 395.0, "Total Visitors": 247.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 152.0, "Total Spend": 28034.0, "Total Transactions": 892.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 40.58 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.041766, "LONGITUDE": -75.026083, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 131.0, "POI_CBG": 421010329001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 273.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.87, "MEDIAN_SPEND_PER_CUSTOMER": 23.14 }, "geometry": { "type": "Point", "coordinates": [ -75.026083, 40.041766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-j7q", "LOCATION_NAME": "Flowers & Company", "TOP_CATEGORY": "Florists", "LATITUDE": 39.948248, "LONGITUDE": -75.172462, "DATE_RANGE_START": 2022, "Total Visits": 1338.0, "Total Visitors": 918.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 35.0, "Total Spend": 1631.0, "Total Transactions": 33.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 110.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172462, 39.948248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-t7q", "LOCATION_NAME": "Craftsman Row Saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949101, "LONGITUDE": -75.154283, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 207.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 20887.0, "Total Transactions": 324.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.24, "MEDIAN_SPEND_PER_CUSTOMER": 104.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154283, 39.949101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2022, "Total Visits": 1787.0, "Total Visitors": 1317.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 149.0, "Total Spend": 12495.0, "Total Transactions": 401.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.74, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2022, "Total Visits": 1120.0, "Total Visitors": 739.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 504.0, "Total Spend": 42480.0, "Total Transactions": 233.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 130.89, "MEDIAN_SPEND_PER_CUSTOMER": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7nq", "LOCATION_NAME": "Woody's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948953, "LONGITUDE": -75.162366, "DATE_RANGE_START": 2022, "Total Visits": 2385.0, "Total Visitors": 1331.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 271.0, "Total Spend": 131390.0, "Total Transactions": 4643.0, "Total Customers": 1458.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.7, "MEDIAN_SPEND_PER_CUSTOMER": 67.46 }, "geometry": { "type": "Point", "coordinates": [ -75.162366, 39.948953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-t5f", "LOCATION_NAME": "Cavanaugh's Riverdeck", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957746, "LONGITUDE": -75.137247, "DATE_RANGE_START": 2022, "Total Visits": 382.0, "Total Visitors": 307.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 314.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.92, "MEDIAN_SPEND_PER_CUSTOMER": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.137247, 39.957746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-qj9", "LOCATION_NAME": "Suzani Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103023, "LONGITUDE": -75.030669, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 139.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 101.0, "Total Spend": 281.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.57, "MEDIAN_SPEND_PER_CUSTOMER": 80.57 }, "geometry": { "type": "Point", "coordinates": [ -75.030669, 40.103023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-6ff", "LOCATION_NAME": "Barra Rossa Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948634, "LONGITUDE": -75.157218, "DATE_RANGE_START": 2022, "Total Visits": 1387.0, "Total Visitors": 1200.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1561.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.7, "MEDIAN_SPEND_PER_CUSTOMER": 105.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157218, 39.948634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfw-g6k", "LOCATION_NAME": "Apollo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012812, "LONGITUDE": -75.190541, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010207003.0, "MEDIAN_DWELL": null, "Total Spend": 821.0, "Total Transactions": 40.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.62, "MEDIAN_SPEND_PER_CUSTOMER": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.190541, 40.012812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-227@628-pm4-mff", "LOCATION_NAME": "APlus", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.936496, "LONGITUDE": -75.160414, "DATE_RANGE_START": 2022, "Total Visits": 699.0, "Total Visitors": 582.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1848.0, "Total Transactions": 162.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.95, "MEDIAN_SPEND_PER_CUSTOMER": 26.28 }, "geometry": { "type": "Point", "coordinates": [ -75.160414, 39.936496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvq-649", "LOCATION_NAME": "Three Sister Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954366, "LONGITUDE": -75.229741, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010085004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2616.0, "Total Transactions": 216.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.63, "MEDIAN_SPEND_PER_CUSTOMER": 35.38 }, "geometry": { "type": "Point", "coordinates": [ -75.229741, 39.954366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-cqz", "LOCATION_NAME": "Little Morocco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925459, "LONGITUDE": -75.170748, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 283.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.170748, 39.925459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-pvz", "LOCATION_NAME": "12 Steps Down", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.939056, "LONGITUDE": -75.157629, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 70.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 98.0, "Total Spend": 418.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157629, 39.939056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-xwk", "LOCATION_NAME": "Walnut Street Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952066, "LONGITUDE": -75.183753, "DATE_RANGE_START": 2022, "Total Visits": 4190.0, "Total Visitors": 2770.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 268.0, "Total Spend": 4412.0, "Total Transactions": 66.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.3, "MEDIAN_SPEND_PER_CUSTOMER": 110.88 }, "geometry": { "type": "Point", "coordinates": [ -75.183753, 39.952066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pnt-3wk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974268, "LONGITUDE": -75.119829, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 267.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1735.0, "Total Transactions": 59.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.26 }, "geometry": { "type": "Point", "coordinates": [ -75.119829, 39.974268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8658.0, "Total Transactions": 134.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.91, "MEDIAN_SPEND_PER_CUSTOMER": 84.84 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919412, "LONGITUDE": -75.187304, "DATE_RANGE_START": 2022, "Total Visits": 1004.0, "Total Visitors": 786.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 20805.0, "Total Transactions": 1500.0, "Total Customers": 929.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.8, "MEDIAN_SPEND_PER_CUSTOMER": 14.77 }, "geometry": { "type": "Point", "coordinates": [ -75.187304, 39.919412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm3-vpv", "LOCATION_NAME": "Nice Things Handmade", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.927868, "LONGITUDE": -75.165592, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 21.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 30.0, "Total Spend": 452.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.6, "MEDIAN_SPEND_PER_CUSTOMER": 97.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165592, 39.927868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-zmk", "LOCATION_NAME": "Paul's Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.037166, "LONGITUDE": -75.130496, "DATE_RANGE_START": 2022, "Total Visits": 885.0, "Total Visitors": 420.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 363.0, "Total Spend": 296.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 40.037166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22c@628-pm9-x3q", "LOCATION_NAME": "B & R Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949401, "LONGITUDE": -75.154312, "DATE_RANGE_START": 2022, "Total Visits": 1373.0, "Total Visitors": 1031.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 10537.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1512.0, "MEDIAN_SPEND_PER_CUSTOMER": 3024.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154312, 39.949401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-hh5", "LOCATION_NAME": "Condesa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952583, "LONGITUDE": -75.171276, "DATE_RANGE_START": 2022, "Total Visits": 2429.0, "Total Visitors": 1545.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 263.0, "Total Spend": 11409.0, "Total Transactions": 228.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.83, "MEDIAN_SPEND_PER_CUSTOMER": 67.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171276, 39.952583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.970561, "LONGITUDE": -75.155313, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 197.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 753.0, "Total Transactions": 49.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.23, "MEDIAN_SPEND_PER_CUSTOMER": 7.23 }, "geometry": { "type": "Point", "coordinates": [ -75.155313, 39.970561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.99445, "LONGITUDE": -75.09179, "DATE_RANGE_START": 2022, "Total Visits": 3450.0, "Total Visitors": 1904.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 2665.0, "Total Transactions": 23.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 116.83, "MEDIAN_SPEND_PER_CUSTOMER": 83.15 }, "geometry": { "type": "Point", "coordinates": [ -75.09179, 39.99445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-nwk", "LOCATION_NAME": "Louie Louie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953483, "LONGITUDE": -75.196032, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 174.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 11240.0, "Total Transactions": 148.0, "Total Customers": 77.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.5, "MEDIAN_SPEND_PER_CUSTOMER": 116.48 }, "geometry": { "type": "Point", "coordinates": [ -75.196032, 39.953483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "LOCATION_NAME": "Independence Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 17574.0, "Total Transactions": 486.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.08, "MEDIAN_SPEND_PER_CUSTOMER": 53.86 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-54v", "LOCATION_NAME": "Tyson Bees", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950018, "LONGITUDE": -75.191759, "DATE_RANGE_START": 2022, "Total Visits": 18074.0, "Total Visitors": 7908.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 205.0, "Total Spend": 278.0, "Total Transactions": 23.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.191759, 39.950018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-n3q", "LOCATION_NAME": "Pete's Clown House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003738, "LONGITUDE": -75.094646, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 78.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2351.0, "Total Transactions": 125.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 48.53 }, "geometry": { "type": "Point", "coordinates": [ -75.094646, 40.003738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "LOCATION_NAME": "The Bagel Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937457, "LONGITUDE": -75.15033, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 59.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 749.0, "Total Spend": 11110.0, "Total Transactions": 704.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.53, "MEDIAN_SPEND_PER_CUSTOMER": 28.54 }, "geometry": { "type": "Point", "coordinates": [ -75.15033, 39.937457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055372, "LONGITUDE": -75.089592, "DATE_RANGE_START": 2022, "Total Visits": 869.0, "Total Visitors": 578.0, "POI_CBG": 421010307002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1497.0, "Total Transactions": 35.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.35, "MEDIAN_SPEND_PER_CUSTOMER": 32.66 }, "geometry": { "type": "Point", "coordinates": [ -75.089592, 40.055372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-tqf", "LOCATION_NAME": "Passeros Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949637, "LONGITUDE": -75.155037, "DATE_RANGE_START": 2022, "Total Visits": 341.0, "Total Visitors": 246.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3199.0, "Total Transactions": 395.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 16.84 }, "geometry": { "type": "Point", "coordinates": [ -75.155037, 39.949637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-grk", "LOCATION_NAME": "Federal Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963015, "LONGITUDE": -75.174167, "DATE_RANGE_START": 2022, "Total Visits": 2455.0, "Total Visitors": 1474.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 4373.0, "Total Transactions": 296.0, "Total Customers": 164.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 19.94 }, "geometry": { "type": "Point", "coordinates": [ -75.174167, 39.963015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p74-vfz", "LOCATION_NAME": "Liberty Bell Bicycle", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.03991, "LONGITUDE": -75.031204, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 61.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 275.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.51, "MEDIAN_SPEND_PER_CUSTOMER": 79.02 }, "geometry": { "type": "Point", "coordinates": [ -75.031204, 40.03991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.978487, "LONGITUDE": -75.271145, "DATE_RANGE_START": 2022, "Total Visits": 666.0, "Total Visitors": 514.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 20.0, "Total Spend": 33352.0, "Total Transactions": 768.0, "Total Customers": 582.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.3, "MEDIAN_SPEND_PER_CUSTOMER": 35.24 }, "geometry": { "type": "Point", "coordinates": [ -75.271145, 39.978487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2022, "Total Visits": 4747.0, "Total Visitors": 3218.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 51705.0, "Total Transactions": 491.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.37, "MEDIAN_SPEND_PER_CUSTOMER": 101.31 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.064353, "LONGITUDE": -75.238205, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 129.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 270.0, "Total Transactions": 19.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.238205, 40.064353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "LOCATION_NAME": "Old Nelson Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951893, "LONGITUDE": -75.173688, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 260.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 85983.0, "Total Transactions": 8018.0, "Total Customers": 2042.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.13, "MEDIAN_SPEND_PER_CUSTOMER": 22.99 }, "geometry": { "type": "Point", "coordinates": [ -75.173688, 39.951893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "LOCATION_NAME": "2nd Street Brew House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 45.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 23.0, "Total Spend": 6031.0, "Total Transactions": 214.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-mff", "LOCATION_NAME": "Con Murphy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955696, "LONGITUDE": -75.167996, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 171.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 365.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.89, "MEDIAN_SPEND_PER_CUSTOMER": 66.66 }, "geometry": { "type": "Point", "coordinates": [ -75.167996, 39.955696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bzf", "LOCATION_NAME": "Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025762, "LONGITUDE": -75.22385, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 61.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 249.0, "Total Spend": 5590.0, "Total Transactions": 195.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.91, "MEDIAN_SPEND_PER_CUSTOMER": 76.24 }, "geometry": { "type": "Point", "coordinates": [ -75.22385, 40.025762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.936229, "LONGITUDE": -75.194533, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 56.0, "POI_CBG": 421010033006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6115.0, "Total Transactions": 331.0, "Total Customers": 209.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.89, "MEDIAN_SPEND_PER_CUSTOMER": 21.56 }, "geometry": { "type": "Point", "coordinates": [ -75.194533, 39.936229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph8-q75", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978744, "LONGITUDE": -75.268394, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 56.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 32.0, "Total Spend": 687.0, "Total Transactions": 38.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.76, "MEDIAN_SPEND_PER_CUSTOMER": 20.57 }, "geometry": { "type": "Point", "coordinates": [ -75.268394, 39.978744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "LOCATION_NAME": "Gia Pronto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 40.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 15257.0, "Total Transactions": 1688.0, "Total Customers": 531.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-47q", "LOCATION_NAME": "The Lunar Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982358, "LONGITUDE": -75.103191, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 42.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 30.0, "Total Spend": 13683.0, "Total Transactions": 263.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.76, "MEDIAN_SPEND_PER_CUSTOMER": 99.96 }, "geometry": { "type": "Point", "coordinates": [ -75.103191, 39.982358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "LOCATION_NAME": "SouthHouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2022, "Total Visits": 387.0, "Total Visitors": 220.0, "POI_CBG": 421010040023.0, "MEDIAN_DWELL": 172.0, "Total Spend": 9100.0, "Total Transactions": 284.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.87, "MEDIAN_SPEND_PER_CUSTOMER": 49.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgd-z9f", "LOCATION_NAME": "Bombay Dhabba Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956797, "LONGITUDE": -75.194135, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 2346.0, "Total Transactions": 108.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.65, "MEDIAN_SPEND_PER_CUSTOMER": 47.17 }, "geometry": { "type": "Point", "coordinates": [ -75.194135, 39.956797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087324, "LONGITUDE": -75.039996, "DATE_RANGE_START": 2022, "Total Visits": 376.0, "Total Visitors": 230.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1671.0, "Total Transactions": 246.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.039996, 40.087324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035531, "LONGITUDE": -75.217119, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 134.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5966.0, "Total Transactions": 646.0, "Total Customers": 328.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.83, "MEDIAN_SPEND_PER_CUSTOMER": 10.09 }, "geometry": { "type": "Point", "coordinates": [ -75.217119, 40.035531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2022, "Total Visits": 228.0, "Total Visitors": 172.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4365.0, "Total Transactions": 552.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw4-rzf", "LOCATION_NAME": "LOVE Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895174, "LONGITUDE": -75.227972, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 52615.0, "Total Transactions": 2524.0, "Total Customers": 1190.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.27, "MEDIAN_SPEND_PER_CUSTOMER": 33.36 }, "geometry": { "type": "Point", "coordinates": [ -75.227972, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "LOCATION_NAME": "LKQ", "TOP_CATEGORY": "Miscellaneous Durable Goods Merchant Wholesalers", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 84.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 339.0, "Total Spend": 5693.0, "Total Transactions": 35.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.59, "MEDIAN_SPEND_PER_CUSTOMER": 88.59 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj4-zzz", "LOCATION_NAME": "Wok Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005065, "LONGITUDE": -75.150775, "DATE_RANGE_START": 2022, "Total Visits": 10615.0, "Total Visitors": 3632.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 331.0, "Total Spend": 288.0, "Total Transactions": 21.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.150775, 40.005065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-3kf", "LOCATION_NAME": "Sheraton Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.957083, "LONGITUDE": -75.167351, "DATE_RANGE_START": 2022, "Total Visits": 2134.0, "Total Visitors": 1028.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 466.0, "Total Spend": 9013.0, "Total Transactions": 40.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.0, "MEDIAN_SPEND_PER_CUSTOMER": 149.14 }, "geometry": { "type": "Point", "coordinates": [ -75.167351, 39.957083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "LOCATION_NAME": "South Street Souvlaki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2022, "Total Visits": 718.0, "Total Visitors": 467.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 635.0, "Total Spend": 1760.0, "Total Transactions": 44.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 51.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg9-vs5", "LOCATION_NAME": "The Fairview", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965375, "LONGITUDE": -75.172387, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 118.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 136.0, "Total Spend": 21479.0, "Total Transactions": 352.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.62, "MEDIAN_SPEND_PER_CUSTOMER": 91.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172387, 39.965375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081002, "LONGITUDE": -75.170911, "DATE_RANGE_START": 2022, "Total Visits": 336.0, "Total Visitors": 291.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11649.0, "Total Transactions": 646.0, "Total Customers": 469.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.26, "MEDIAN_SPEND_PER_CUSTOMER": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.170911, 40.081002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm3-vzz", "LOCATION_NAME": "LaScala's Birra", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928592, "LONGITUDE": -75.165123, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 336.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 22011.0, "Total Transactions": 401.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.71, "MEDIAN_SPEND_PER_CUSTOMER": 88.42 }, "geometry": { "type": "Point", "coordinates": [ -75.165123, 39.928592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "LOCATION_NAME": "Vietnam Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2022, "Total Visits": 181.0, "Total Visitors": 131.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 62.0, "Total Spend": 2290.0, "Total Transactions": 35.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.74, "MEDIAN_SPEND_PER_CUSTOMER": 91.48 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7b-vmk", "LOCATION_NAME": "Out Of Wack Jack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057001, "LONGITUDE": -75.014587, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 129.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 61.0, "Total Spend": 1104.0, "Total Transactions": 26.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.75, "MEDIAN_SPEND_PER_CUSTOMER": 73.63 }, "geometry": { "type": "Point", "coordinates": [ -75.014587, 40.057001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p74-wtv", "LOCATION_NAME": "Oteri's Italian Bakery Frankford Ave", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038952, "LONGITUDE": -75.035677, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 176.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 13.0, "Total Spend": 159.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.83, "MEDIAN_SPEND_PER_CUSTOMER": 45.66 }, "geometry": { "type": "Point", "coordinates": [ -75.035677, 40.038952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032699, "LONGITUDE": -75.063191, "DATE_RANGE_START": 2022, "Total Visits": 378.0, "Total Visitors": 298.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1166.0, "Total Transactions": 66.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.11 }, "geometry": { "type": "Point", "coordinates": [ -75.063191, 40.032699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "LOCATION_NAME": "Stock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 70.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 5279.0, "Total Transactions": 40.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 140.06, "MEDIAN_SPEND_PER_CUSTOMER": 183.59 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pfy-f75", "LOCATION_NAME": "Halal Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035603, "LONGITUDE": -75.217121, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 87.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 216.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.01, "MEDIAN_SPEND_PER_CUSTOMER": 62.01 }, "geometry": { "type": "Point", "coordinates": [ -75.217121, 40.035603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086321, "LONGITUDE": -74.971748, "DATE_RANGE_START": 2022, "Total Visits": 1927.0, "Total Visitors": 1061.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9277.0, "Total Transactions": 1214.0, "Total Customers": 535.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 9.05 }, "geometry": { "type": "Point", "coordinates": [ -74.971748, 40.086321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "LOCATION_NAME": "Xiandu Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2022, "Total Visits": 2065.0, "Total Visitors": 1467.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 11292.0, "Total Transactions": 253.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.11, "MEDIAN_SPEND_PER_CUSTOMER": 68.02 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "LOCATION_NAME": "Blue Corn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2022, "Total Visits": 395.0, "Total Visitors": 305.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 56.0, "Total Spend": 3891.0, "Total Transactions": 101.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 68.58 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmc-2ff", "LOCATION_NAME": "The Trestle Inn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.958777, "LONGITUDE": -75.156489, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 125.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 13539.0, "Total Transactions": 369.0, "Total Customers": 164.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.1, "MEDIAN_SPEND_PER_CUSTOMER": 69.98 }, "geometry": { "type": "Point", "coordinates": [ -75.156489, 39.958777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "LOCATION_NAME": "Pasqually's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 19642.0, "Total Transactions": 854.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.7, "MEDIAN_SPEND_PER_CUSTOMER": 51.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pp2-sdv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.995956, "LONGITUDE": -75.09064, "DATE_RANGE_START": 2022, "Total Visits": 286.0, "Total Visitors": 240.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 547.0, "Total Transactions": 31.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.07, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.09064, 39.995956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@63s-dvw-f2k", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964788, "LONGITUDE": -75.22346, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010103002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 586.0, "Total Transactions": 33.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.74, "MEDIAN_SPEND_PER_CUSTOMER": 28.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22346, 39.964788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 178.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 13793.0, "Total Transactions": 341.0, "Total Customers": 164.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.57, "MEDIAN_SPEND_PER_CUSTOMER": 60.77 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2022, "Total Visits": 561.0, "Total Visitors": 449.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 16106.0, "Total Transactions": 472.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.1, "MEDIAN_SPEND_PER_CUSTOMER": 62.11 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-r6k", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97237, "LONGITUDE": -75.140976, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 54.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 178.0, "Total Transactions": 24.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.32, "MEDIAN_SPEND_PER_CUSTOMER": 19.53 }, "geometry": { "type": "Point", "coordinates": [ -75.140976, 39.97237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "LOCATION_NAME": "Seorabol Korean Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 115.0, "POI_CBG": 421010274023.0, "MEDIAN_DWELL": 56.0, "Total Spend": 3879.0, "Total Transactions": 59.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.95, "MEDIAN_SPEND_PER_CUSTOMER": 126.73 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp5-qxq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.997222, "LONGITUDE": -75.123675, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 138.0, "POI_CBG": 421010177025.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9188.0, "Total Transactions": 596.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.44, "MEDIAN_SPEND_PER_CUSTOMER": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.123675, 39.997222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "LOCATION_NAME": "Academy Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 84.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1282.0, "Total Transactions": 24.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 44.02 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "LOCATION_NAME": "Stanley's Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 291.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 105023.0, "Total Transactions": 2756.0, "Total Customers": 981.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.43, "MEDIAN_SPEND_PER_CUSTOMER": 56.14 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "LOCATION_NAME": "Hibiscus Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 58.0, "Total Spend": 5792.0, "Total Transactions": 240.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.72, "MEDIAN_SPEND_PER_CUSTOMER": 37.43 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 96.0, "POI_CBG": 421010215001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9207.0, "Total Transactions": 256.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@63s-dwc-cbk", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.918372, "LONGITUDE": -75.209677, "DATE_RANGE_START": 2022, "Total Visits": 577.0, "Total Visitors": 453.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 415.0, "Total Transactions": 14.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.25, "MEDIAN_SPEND_PER_CUSTOMER": 60.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209677, 39.918372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "LOCATION_NAME": "Malelani Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05294, "LONGITUDE": -75.186129, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2217.0, "Total Transactions": 84.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.7, "MEDIAN_SPEND_PER_CUSTOMER": 41.46 }, "geometry": { "type": "Point", "coordinates": [ -75.186129, 40.05294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-y5f", "LOCATION_NAME": "Neighborhood Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9409, "LONGITUDE": -75.147453, "DATE_RANGE_START": 2022, "Total Visits": 570.0, "Total Visitors": 455.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 9096.0, "Total Transactions": 230.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.43, "MEDIAN_SPEND_PER_CUSTOMER": 60.75 }, "geometry": { "type": "Point", "coordinates": [ -75.147453, 39.9409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-cyv", "LOCATION_NAME": "El Provocon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039466, "LONGITUDE": -75.056309, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 91.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1282.0, "Total Transactions": 87.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056309, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmd-w49", "LOCATION_NAME": "Twenty Manning", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948622, "LONGITUDE": -75.17407, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 94.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 61.0, "Total Spend": 5949.0, "Total Transactions": 63.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.69, "MEDIAN_SPEND_PER_CUSTOMER": 159.12 }, "geometry": { "type": "Point", "coordinates": [ -75.17407, 39.948622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "LOCATION_NAME": "NO 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 500.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 539.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.68, "MEDIAN_SPEND_PER_CUSTOMER": 45.68 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 99.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4241.0, "Total Transactions": 157.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.95, "MEDIAN_SPEND_PER_CUSTOMER": 51.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-n3q", "LOCATION_NAME": "Naya Market St", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953238, "LONGITUDE": -75.167055, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 207.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 206.0, "Total Spend": 1616.0, "Total Transactions": 129.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.39, "MEDIAN_SPEND_PER_CUSTOMER": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.953238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p9k-r8v", "LOCATION_NAME": "The Union Tap", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.10443, "LONGITUDE": -75.000432, "DATE_RANGE_START": 2022, "Total Visits": 181.0, "Total Visitors": 113.0, "POI_CBG": 421010361002.0, "MEDIAN_DWELL": 60.0, "Total Spend": 1093.0, "Total Transactions": 37.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.000432, 40.10443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p72-9vf", "LOCATION_NAME": "Maggie's Waterfront Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043666, "LONGITUDE": -74.989672, "DATE_RANGE_START": 2022, "Total Visits": 1204.0, "Total Visitors": 911.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 273.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.4, "MEDIAN_SPEND_PER_CUSTOMER": 78.4 }, "geometry": { "type": "Point", "coordinates": [ -74.989672, 40.043666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2022, "Total Visits": 796.0, "Total Visitors": 523.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16507.0, "Total Transactions": 1200.0, "Total Customers": 728.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.66, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "LOCATION_NAME": "Mammoth Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969701, "LONGITUDE": -75.146132, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 78.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3588.0, "Total Transactions": 326.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.37, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146132, 39.969701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-kfz", "LOCATION_NAME": "SoBol UCity", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951073, "LONGITUDE": -75.198726, "DATE_RANGE_START": 2022, "Total Visits": 777.0, "Total Visitors": 589.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3510.0, "Total Transactions": 246.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.69, "MEDIAN_SPEND_PER_CUSTOMER": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.198726, 39.951073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-7wk", "LOCATION_NAME": "Fuel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953562, "LONGITUDE": -75.188092, "DATE_RANGE_START": 2022, "Total Visits": 371.0, "Total Visitors": 176.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 446.0, "Total Spend": 15042.0, "Total Transactions": 402.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.51, "MEDIAN_SPEND_PER_CUSTOMER": 86.36 }, "geometry": { "type": "Point", "coordinates": [ -75.188092, 39.953562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-8y9", "LOCATION_NAME": "The Pharmacy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934901, "LONGITUDE": -75.174223, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 59.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 143.0, "Total Spend": 4690.0, "Total Transactions": 188.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.53, "MEDIAN_SPEND_PER_CUSTOMER": 24.02 }, "geometry": { "type": "Point", "coordinates": [ -75.174223, 39.934901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-jsq", "LOCATION_NAME": "Rione", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951947, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 57.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1472.0, "Total Transactions": 117.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.56, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.951947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "LOCATION_NAME": "SquareBurger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 176.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 9733.0, "Total Transactions": 551.0, "Total Customers": 260.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.62 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.875709, "LONGITUDE": -75.241464, "DATE_RANGE_START": 2022, "Total Visits": 313162.0, "Total Visitors": 180913.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 5045.0, "Total Transactions": 373.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.02, "MEDIAN_SPEND_PER_CUSTOMER": 18.94 }, "geometry": { "type": "Point", "coordinates": [ -75.241464, 39.875709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm6-jn5", "LOCATION_NAME": "Kyoto Japan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921763, "LONGITUDE": -75.14657, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 155.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5471.0, "Total Transactions": 237.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.49, "MEDIAN_SPEND_PER_CUSTOMER": 45.88 }, "geometry": { "type": "Point", "coordinates": [ -75.14657, 39.921763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5zz", "LOCATION_NAME": "Top Tomato Pizza Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948971, "LONGITUDE": -75.159389, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 70.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2351.0, "Total Transactions": 85.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.48, "MEDIAN_SPEND_PER_CUSTOMER": 60.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159389, 39.948971 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm4-s5z", "LOCATION_NAME": "The Pizza Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927861, "LONGITUDE": -75.157274, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 73.0, "POI_CBG": 421010028011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 613.0, "Total Transactions": 31.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.99, "MEDIAN_SPEND_PER_CUSTOMER": 40.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157274, 39.927861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-w8v", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955482, "LONGITUDE": -75.18177, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 286.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14008.0, "Total Transactions": 1392.0, "Total Customers": 1159.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 10.29 }, "geometry": { "type": "Point", "coordinates": [ -75.18177, 39.955482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "LOCATION_NAME": "Linden Italian Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054575, "LONGITUDE": -75.004237, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 96.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1712.0, "Total Transactions": 99.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 53.62 }, "geometry": { "type": "Point", "coordinates": [ -75.004237, 40.054575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-kcq", "LOCATION_NAME": "Sweet Charlie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95076, "LONGITUDE": -75.173342, "DATE_RANGE_START": 2022, "Total Visits": 1132.0, "Total Visitors": 854.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 2404.0, "Total Transactions": 167.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.92, "MEDIAN_SPEND_PER_CUSTOMER": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.173342, 39.95076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2022, "Total Visits": 585.0, "Total Visitors": 338.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10036.0, "Total Transactions": 1244.0, "Total Customers": 502.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.85, "MEDIAN_SPEND_PER_CUSTOMER": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 214.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6685.0, "Total Transactions": 800.0, "Total Customers": 547.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2022, "Total Visits": 714.0, "Total Visitors": 408.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 9431.0, "Total Transactions": 1287.0, "Total Customers": 483.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "LOCATION_NAME": "Ox Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2022, "Total Visits": 1437.0, "Total Visitors": 1132.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 173.0, "Total Spend": 6322.0, "Total Transactions": 580.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "LOCATION_NAME": "Brickbat Books", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 2254.0, "Total Transactions": 80.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.25, "MEDIAN_SPEND_PER_CUSTOMER": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "LOCATION_NAME": "Uncle Oogie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 30.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2786.0, "Total Transactions": 145.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.95, "MEDIAN_SPEND_PER_CUSTOMER": 33.11 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "LOCATION_NAME": "Thai Kuu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 49.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3057.0, "Total Transactions": 63.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.63, "MEDIAN_SPEND_PER_CUSTOMER": 89.64 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2022, "Total Visits": 1688.0, "Total Visitors": 1150.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 113585.0, "Total Transactions": 1279.0, "Total Customers": 857.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.06, "MEDIAN_SPEND_PER_CUSTOMER": 23.95 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pgg-qs5", "LOCATION_NAME": "32nd Street Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.005082, "LONGITUDE": -75.181898, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2453.0, "Total Transactions": 63.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.181898, 40.005082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pj9-jvz", "LOCATION_NAME": "Soul Kitchen 5935", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044681, "LONGITUDE": -75.149272, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010278001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 1745.0, "Total Transactions": 49.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.22, "MEDIAN_SPEND_PER_CUSTOMER": 48.49 }, "geometry": { "type": "Point", "coordinates": [ -75.149272, 40.044681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.991664, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 152.0, "Total Spend": 363.0, "Total Transactions": 23.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.45, "MEDIAN_SPEND_PER_CUSTOMER": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.991664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "LOCATION_NAME": "Evan's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 24.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2557.0, "Total Transactions": 152.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.69, "MEDIAN_SPEND_PER_CUSTOMER": 29.02 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "LOCATION_NAME": "Marcello's Pizza Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2022, "Total Visits": 3105.0, "Total Visitors": 1814.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2437.0, "Total Transactions": 89.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 31.98 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "LOCATION_NAME": "Local 44", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952832, "LONGITUDE": -75.210325, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 181.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 480.0, "Total Spend": 40514.0, "Total Transactions": 833.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.55, "MEDIAN_SPEND_PER_CUSTOMER": 80.72 }, "geometry": { "type": "Point", "coordinates": [ -75.210325, 39.952832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "LOCATION_NAME": "Munchies Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949457, "LONGITUDE": -75.153676, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 68.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 283.0, "Total Spend": 8069.0, "Total Transactions": 685.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 29.96 }, "geometry": { "type": "Point", "coordinates": [ -75.153676, 39.949457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-g8v", "LOCATION_NAME": "Ultimo Coffee Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926977, "LONGITUDE": -75.171073, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 186.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 300.0, "Total Spend": 58.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.28, "MEDIAN_SPEND_PER_CUSTOMER": 16.56 }, "geometry": { "type": "Point", "coordinates": [ -75.171073, 39.926977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.099554, "LONGITUDE": -75.024268, "DATE_RANGE_START": 2022, "Total Visits": 1521.0, "Total Visitors": 1260.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1334.0, "Total Transactions": 232.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.24, "MEDIAN_SPEND_PER_CUSTOMER": 7.59 }, "geometry": { "type": "Point", "coordinates": [ -75.024268, 40.099554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "LOCATION_NAME": "1 Tippling Place", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 44.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 8062.0, "Total Transactions": 117.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.55, "MEDIAN_SPEND_PER_CUSTOMER": 109.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 63.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 5.0, "Total Spend": 22872.0, "Total Transactions": 331.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.09, "MEDIAN_SPEND_PER_CUSTOMER": 99.36 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "LOCATION_NAME": "New London Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010289013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6002.0, "Total Transactions": 172.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.85, "MEDIAN_SPEND_PER_CUSTOMER": 61.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm4-ct9", "LOCATION_NAME": "Hibachi 2 Go", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924257, "LONGITUDE": -75.170377, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 218.0, "Total Spend": 309.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.41, "MEDIAN_SPEND_PER_CUSTOMER": 40.82 }, "geometry": { "type": "Point", "coordinates": [ -75.170377, 39.924257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "LOCATION_NAME": "Talk of the Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071911, "LONGITUDE": -75.161398, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 61.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.94, "MEDIAN_SPEND_PER_CUSTOMER": 11.94 }, "geometry": { "type": "Point", "coordinates": [ -75.161398, 40.071911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pp4-zxq", "LOCATION_NAME": "M R Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.988165, "LONGITUDE": -75.131689, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010163003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4762.0, "Total Transactions": 322.0, "Total Customers": 164.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.22 }, "geometry": { "type": "Point", "coordinates": [ -75.131689, 39.988165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgh-45f", "LOCATION_NAME": "City Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009428, "LONGITUDE": -75.164387, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 38.0, "POI_CBG": 421010202004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2183.0, "Total Transactions": 200.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 29.06 }, "geometry": { "type": "Point", "coordinates": [ -75.164387, 40.009428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@63s-dvy-pjv", "LOCATION_NAME": "Chix & Chicks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956274, "LONGITUDE": -75.202371, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 49.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 366.0, "Total Spend": 936.0, "Total Transactions": 17.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.32, "MEDIAN_SPEND_PER_CUSTOMER": 81.14 }, "geometry": { "type": "Point", "coordinates": [ -75.202371, 39.956274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "LOCATION_NAME": "Tap Room On 19th", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010038001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 10113.0, "Total Transactions": 195.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.93, "MEDIAN_SPEND_PER_CUSTOMER": 107.42 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "LOCATION_NAME": "Nori Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 23.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 413.0, "Total Spend": 6304.0, "Total Transactions": 150.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.54, "MEDIAN_SPEND_PER_CUSTOMER": 72.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "LOCATION_NAME": "King Wok's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": 82.0, "Total Spend": 2655.0, "Total Transactions": 98.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.4, "MEDIAN_SPEND_PER_CUSTOMER": 49.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "LOCATION_NAME": "Moshulu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941589, "LONGITUDE": -75.141261, "DATE_RANGE_START": 2022, "Total Visits": 1312.0, "Total Visitors": 1166.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10408.0, "Total Transactions": 181.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.01, "MEDIAN_SPEND_PER_CUSTOMER": 92.86 }, "geometry": { "type": "Point", "coordinates": [ -75.141261, 39.941589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-2x5", "LOCATION_NAME": "LongHorn Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919428, "LONGITUDE": -75.14118, "DATE_RANGE_START": 2022, "Total Visits": 564.0, "Total Visitors": 472.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 285.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.76, "MEDIAN_SPEND_PER_CUSTOMER": 28.76 }, "geometry": { "type": "Point", "coordinates": [ -75.14118, 39.919428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "LOCATION_NAME": "Quaker Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060542, "LONGITUDE": -75.084471, "DATE_RANGE_START": 2022, "Total Visits": 153.0, "Total Visitors": 134.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 8259.0, "Total Transactions": 260.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 58.98 }, "geometry": { "type": "Point", "coordinates": [ -75.084471, 40.060542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-v2k", "LOCATION_NAME": "Original Village Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.107293, "LONGITUDE": -75.037623, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 96.0, "POI_CBG": 421010357021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11317.0, "Total Transactions": 287.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.34, "MEDIAN_SPEND_PER_CUSTOMER": 61.78 }, "geometry": { "type": "Point", "coordinates": [ -75.037623, 40.107293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pm9-s5z", "LOCATION_NAME": "PJ Clarkes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948105, "LONGITUDE": -75.151179, "DATE_RANGE_START": 2022, "Total Visits": 3836.0, "Total Visitors": 2890.0, "POI_CBG": 421010010011.0, "MEDIAN_DWELL": 52.0, "Total Spend": 1360.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.3, "MEDIAN_SPEND_PER_CUSTOMER": 147.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151179, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "LOCATION_NAME": "Chubby's Fox Chase Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2022, "Total Visits": 153.0, "Total Visitors": 63.0, "POI_CBG": 421010341006.0, "MEDIAN_DWELL": 608.0, "Total Spend": 2492.0, "Total Transactions": 105.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.68, "MEDIAN_SPEND_PER_CUSTOMER": 42.08 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "LOCATION_NAME": "Bellini", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 169.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8095.0, "Total Transactions": 87.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.26, "MEDIAN_SPEND_PER_CUSTOMER": 159.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-pn5", "LOCATION_NAME": "Yiro Yiro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954699, "LONGITUDE": -75.202157, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 185.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 24.0, "Total Spend": 7870.0, "Total Transactions": 387.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 29.96 }, "geometry": { "type": "Point", "coordinates": [ -75.202157, 39.954699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-phy-kmk", "LOCATION_NAME": "El Sabor De Maria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025858, "LONGITUDE": -75.132587, "DATE_RANGE_START": 2022, "Total Visits": 472.0, "Total Visitors": 261.0, "POI_CBG": 421010286003.0, "MEDIAN_DWELL": 122.0, "Total Spend": 2107.0, "Total Transactions": 64.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.96, "MEDIAN_SPEND_PER_CUSTOMER": 69.53 }, "geometry": { "type": "Point", "coordinates": [ -75.132587, 40.025858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-6x5", "LOCATION_NAME": "Su Xing House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950249, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 37.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 4926.0, "Total Transactions": 122.0, "Total Customers": 52.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.95, "MEDIAN_SPEND_PER_CUSTOMER": 67.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "LOCATION_NAME": "Sky Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2022, "Total Visits": 213.0, "Total Visitors": 185.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 15.0, "Total Spend": 7160.0, "Total Transactions": 127.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.14, "MEDIAN_SPEND_PER_CUSTOMER": 90.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-224@63s-dvy-pjv", "LOCATION_NAME": "Irie Entree", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955909, "LONGITUDE": -75.202374, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 118.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 163.0, "Total Spend": 2530.0, "Total Transactions": 14.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 215.0, "MEDIAN_SPEND_PER_CUSTOMER": 430.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202374, 39.955909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "LOCATION_NAME": "Vapordelphia", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2022, "Total Visits": 657.0, "Total Visitors": 376.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 213.0, "Total Spend": 7017.0, "Total Transactions": 155.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "LOCATION_NAME": "Weavers Way Co Op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 80.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 201334.0, "Total Transactions": 5164.0, "Total Customers": 1193.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.71, "MEDIAN_SPEND_PER_CUSTOMER": 72.34 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "LOCATION_NAME": "Stanley's Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 195.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 11673.0, "Total Transactions": 288.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.65, "MEDIAN_SPEND_PER_CUSTOMER": 36.42 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "LOCATION_NAME": "P.C. Richard & Son", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.045946, "LONGITUDE": -75.060205, "DATE_RANGE_START": 2023, "Total Visits": 209.0, "Total Visitors": 99.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 522.0, "Total Spend": 4538.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.39, "MEDIAN_SPEND_PER_CUSTOMER": 145.78 }, "geometry": { "type": "Point", "coordinates": [ -75.060205, 40.045946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.961315, "LONGITUDE": -75.199232, "DATE_RANGE_START": 2023, "Total Visits": 293.0, "Total Visitors": 90.0, "POI_CBG": 421010091003.0, "MEDIAN_DWELL": 373.0, "Total Spend": 3655.0, "Total Transactions": 109.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.17 }, "geometry": { "type": "Point", "coordinates": [ -75.199232, 39.961315 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pj4-3qz", "LOCATION_NAME": "Crazy Wave", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.017645, "LONGITUDE": -75.148812, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 132.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2272.0, "Total Transactions": 84.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.41, "MEDIAN_SPEND_PER_CUSTOMER": 21.57 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 40.017645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-87q", "LOCATION_NAME": "Rittenhouse Needlepoint", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.953748, "LONGITUDE": -75.160376, "DATE_RANGE_START": 2023, "Total Visits": 5172.0, "Total Visitors": 3775.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 206.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.37, "MEDIAN_SPEND_PER_CUSTOMER": 55.64 }, "geometry": { "type": "Point", "coordinates": [ -75.160376, 39.953748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-975", "LOCATION_NAME": "Goldie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952988, "LONGITUDE": -75.192295, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 350.0, "Total Transactions": 15.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.54, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192295, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2000.0, "Total Transactions": 157.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.037805, "LONGITUDE": -75.117799, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 1025.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.3, "MEDIAN_SPEND_PER_CUSTOMER": 98.28 }, "geometry": { "type": "Point", "coordinates": [ -75.117799, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2023, "Total Visits": 377.0, "Total Visitors": 336.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2889.0, "Total Transactions": 106.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981985, "LONGITUDE": -75.156128, "DATE_RANGE_START": 2023, "Total Visits": 918.0, "Total Visitors": 431.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1046.0, "Total Transactions": 118.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.28, "MEDIAN_SPEND_PER_CUSTOMER": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -75.156128, 39.981985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "LOCATION_NAME": "The Beer Peddlers", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 170.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13949.0, "Total Transactions": 466.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.29, "MEDIAN_SPEND_PER_CUSTOMER": 31.59 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-bp9", "LOCATION_NAME": "Hidden River Yarns", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.025482, "LONGITUDE": -75.223991, "DATE_RANGE_START": 2023, "Total Visits": 120.0, "Total Visitors": 113.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 220.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.09, "MEDIAN_SPEND_PER_CUSTOMER": 35.09 }, "geometry": { "type": "Point", "coordinates": [ -75.223991, 40.025482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.99242, "LONGITUDE": -75.110931, "DATE_RANGE_START": 2023, "Total Visits": 421.0, "Total Visitors": 292.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 19.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.110931, 39.99242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-jd9", "LOCATION_NAME": "Watch Co", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952218, "LONGITUDE": -75.168358, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 1333.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168358, 39.952218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.007067, "LONGITUDE": -75.137329, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010199001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 319.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.62, "MEDIAN_SPEND_PER_CUSTOMER": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.137329, 40.007067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.095209, "LONGITUDE": -74.975929, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 15.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 15921.0, "Total Transactions": 669.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.27, "MEDIAN_SPEND_PER_CUSTOMER": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -74.975929, 40.095209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "LOCATION_NAME": "Love Vape", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2023, "Total Visits": 116.0, "Total Visitors": 113.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5180.0, "Total Transactions": 143.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.16, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050709, "LONGITUDE": -75.06609, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 875.0, "Total Transactions": 25.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.27, "MEDIAN_SPEND_PER_CUSTOMER": 30.37 }, "geometry": { "type": "Point", "coordinates": [ -75.06609, 40.050709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-68v", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.050558, "LONGITUDE": -75.061669, "DATE_RANGE_START": 2023, "Total Visits": 2102.0, "Total Visitors": 1435.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 80200.0, "Total Transactions": 2017.0, "Total Customers": 968.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.62, "MEDIAN_SPEND_PER_CUSTOMER": 39.16 }, "geometry": { "type": "Point", "coordinates": [ -75.061669, 40.050558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8d-m8v", "LOCATION_NAME": "Quicky Mart Express", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.012787, "LONGITUDE": -75.088276, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1060.0, "Total Transactions": 25.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 15.45 }, "geometry": { "type": "Point", "coordinates": [ -75.088276, 40.012787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.055484, "LONGITUDE": -75.004811, "DATE_RANGE_START": 2023, "Total Visits": 1157.0, "Total Visitors": 820.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 22.0, "Total Spend": 8159.0, "Total Transactions": 258.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.58, "MEDIAN_SPEND_PER_CUSTOMER": 26.79 }, "geometry": { "type": "Point", "coordinates": [ -75.004811, 40.055484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8m-snq", "LOCATION_NAME": "Station Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.022158, "LONGITUDE": -75.077575, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 232.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 545.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.62, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077575, 40.022158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pvz", "LOCATION_NAME": "Fiorella's Sausage", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.939102, "LONGITUDE": -75.156801, "DATE_RANGE_START": 2023, "Total Visits": 143.0, "Total Visitors": 143.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1626.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 198.04, "MEDIAN_SPEND_PER_CUSTOMER": 198.04 }, "geometry": { "type": "Point", "coordinates": [ -75.156801, 39.939102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017797, "LONGITUDE": -75.148772, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4083.0, "Total Transactions": 213.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.37, "MEDIAN_SPEND_PER_CUSTOMER": 24.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148772, 40.017797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.012393, "LONGITUDE": -75.112599, "DATE_RANGE_START": 2023, "Total Visits": 36.0, "Total Visitors": 24.0, "POI_CBG": 421010289012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11605.0, "Total Transactions": 554.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.13, "MEDIAN_SPEND_PER_CUSTOMER": 28.03 }, "geometry": { "type": "Point", "coordinates": [ -75.112599, 40.012393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-j9z", "LOCATION_NAME": "Cousins Fresh Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926349, "LONGITUDE": -75.233762, "DATE_RANGE_START": 2023, "Total Visits": 371.0, "Total Visitors": 261.0, "POI_CBG": 421010066003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 140.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.86, "MEDIAN_SPEND_PER_CUSTOMER": 55.86 }, "geometry": { "type": "Point", "coordinates": [ -75.233762, 39.926349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "LOCATION_NAME": "Brandy Melville", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2023, "Total Visits": 701.0, "Total Visitors": 590.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 30572.0, "Total Transactions": 539.0, "Total Customers": 467.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954573, "LONGITUDE": -75.19487, "DATE_RANGE_START": 2023, "Total Visits": 740.0, "Total Visitors": 370.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 150.0, "Total Spend": 29393.0, "Total Transactions": 2972.0, "Total Customers": 1394.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 12.17 }, "geometry": { "type": "Point", "coordinates": [ -75.19487, 39.954573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2023, "Total Visits": 1841.0, "Total Visitors": 1018.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 22791.0, "Total Transactions": 2891.0, "Total Customers": 1413.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.6, "MEDIAN_SPEND_PER_CUSTOMER": 10.22 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg4-hyv", "LOCATION_NAME": "City Blue", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.034857, "LONGITUDE": -75.175485, "DATE_RANGE_START": 2023, "Total Visits": 1132.0, "Total Visitors": 570.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 3544.0, "Total Transactions": 59.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175485, 40.034857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "LOCATION_NAME": "El Punto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2023, "Total Visits": 148.0, "Total Visitors": 124.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2834.0, "Total Transactions": 103.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-whq", "LOCATION_NAME": "Kick Axe Throwing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94991, "LONGITUDE": -75.145059, "DATE_RANGE_START": 2023, "Total Visits": 2528.0, "Total Visitors": 1506.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 178.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.9, "MEDIAN_SPEND_PER_CUSTOMER": 70.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145059, 39.94991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@63s-dvq-jsq", "LOCATION_NAME": "Torres Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955389, "LONGITUDE": -75.238236, "DATE_RANGE_START": 2023, "Total Visits": 86.0, "Total Visitors": 69.0, "POI_CBG": 421010084005.0, "MEDIAN_DWELL": 145.0, "Total Spend": 144.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.93, "MEDIAN_SPEND_PER_CUSTOMER": 11.62 }, "geometry": { "type": "Point", "coordinates": [ -75.238236, 39.955389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "LOCATION_NAME": "Oregon Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 160.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6905.0, "Total Transactions": 467.0, "Total Customers": 292.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-fpv", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.056636, "LONGITUDE": -75.189574, "DATE_RANGE_START": 2023, "Total Visits": 1810.0, "Total Visitors": 1057.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 101887.0, "Total Transactions": 2855.0, "Total Customers": 1229.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.57, "MEDIAN_SPEND_PER_CUSTOMER": 38.64 }, "geometry": { "type": "Point", "coordinates": [ -75.189574, 40.056636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.04935, "LONGITUDE": -74.989527, "DATE_RANGE_START": 2023, "Total Visits": 1319.0, "Total Visitors": 858.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17604.0, "Total Transactions": 1685.0, "Total Customers": 646.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.41, "MEDIAN_SPEND_PER_CUSTOMER": 13.67 }, "geometry": { "type": "Point", "coordinates": [ -74.989527, 40.04935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-22r@628-pmb-6tv", "LOCATION_NAME": "Brooklyn Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952448, "LONGITUDE": -75.167954, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 235.0, "Total Transactions": 23.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.34, "MEDIAN_SPEND_PER_CUSTOMER": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167954, 39.952448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2023, "Total Visits": 873.0, "Total Visitors": 745.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8462.0, "Total Transactions": 451.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.22, "MEDIAN_SPEND_PER_CUSTOMER": 19.48 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "LOCATION_NAME": "Perkins Restaurant & Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2023, "Total Visits": 524.0, "Total Visitors": 403.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 25.0, "Total Spend": 292.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.06, "MEDIAN_SPEND_PER_CUSTOMER": 50.02 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p77-c3q", "LOCATION_NAME": "Wingstop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064934, "LONGITUDE": -74.983754, "DATE_RANGE_START": 2023, "Total Visits": 298.0, "Total Visitors": 276.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9275.0, "Total Transactions": 486.0, "Total Customers": 432.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.48, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -74.983754, 40.064934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "LOCATION_NAME": "Double Knot", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 178.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 9761.0, "Total Transactions": 59.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 111.88, "MEDIAN_SPEND_PER_CUSTOMER": 111.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.945906, "LONGITUDE": -75.239015, "DATE_RANGE_START": 2023, "Total Visits": 728.0, "Total Visitors": 485.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1760.0, "Total Transactions": 145.0, "Total Customers": 116.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.92, "MEDIAN_SPEND_PER_CUSTOMER": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.239015, 39.945906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "LOCATION_NAME": "A Lin Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 182.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 491.0, "Total Transactions": 15.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.68, "MEDIAN_SPEND_PER_CUSTOMER": 54.85 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "LOCATION_NAME": "Cafe Square One", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950385, "LONGITUDE": -75.146118, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 222.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2723.0, "Total Transactions": 200.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.98, "MEDIAN_SPEND_PER_CUSTOMER": 16.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146118, 39.950385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "LOCATION_NAME": "Paradise Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 64.0, "POI_CBG": 421010190004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 651.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.98, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043491, "LONGITUDE": -75.159322, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4043.0, "Total Transactions": 585.0, "Total Customers": 266.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.68, "MEDIAN_SPEND_PER_CUSTOMER": 10.51 }, "geometry": { "type": "Point", "coordinates": [ -75.159322, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p9k-r8v", "LOCATION_NAME": "The Union Tap", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.10443, "LONGITUDE": -75.000432, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 239.0, "POI_CBG": 421010361002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 535.0, "Total Transactions": 14.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.96, "MEDIAN_SPEND_PER_CUSTOMER": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000432, 40.10443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8vz", "LOCATION_NAME": "Cosi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950388, "LONGITUDE": -75.158367, "DATE_RANGE_START": 2023, "Total Visits": 1286.0, "Total Visitors": 942.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1329.0, "Total Transactions": 75.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.95, "MEDIAN_SPEND_PER_CUSTOMER": 18.03 }, "geometry": { "type": "Point", "coordinates": [ -75.158367, 39.950388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "LOCATION_NAME": "Just To Serve You", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2023, "Total Visits": 61.0, "Total Visitors": 61.0, "POI_CBG": 421010102001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1015.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.48, "MEDIAN_SPEND_PER_CUSTOMER": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jgk", "LOCATION_NAME": "Dig Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951262, "LONGITUDE": -75.16796, "DATE_RANGE_START": 2023, "Total Visits": 396.0, "Total Visitors": 292.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 132.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16796, 39.951262 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-224@628-pm4-mc5", "LOCATION_NAME": "El Pueblo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935137, "LONGITUDE": -75.15898, "DATE_RANGE_START": 2023, "Total Visits": 703.0, "Total Visitors": 272.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 269.0, "Total Spend": 230.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.02, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15898, 39.935137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-6tv", "LOCATION_NAME": "Smoothie King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952108, "LONGITUDE": -75.167523, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 12171.0, "Total Transactions": 1052.0, "Total Customers": 619.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167523, 39.952108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "LOCATION_NAME": "Pickwick Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952771, "LONGITUDE": -75.169222, "DATE_RANGE_START": 2023, "Total Visits": 3999.0, "Total Visitors": 2387.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 97.0, "Total Spend": 2326.0, "Total Transactions": 66.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.22, "MEDIAN_SPEND_PER_CUSTOMER": 12.38 }, "geometry": { "type": "Point", "coordinates": [ -75.169222, 39.952771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 1023.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.92, "MEDIAN_SPEND_PER_CUSTOMER": 40.92 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5pv", "LOCATION_NAME": "Hard Rock Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952216, "LONGITUDE": -75.159642, "DATE_RANGE_START": 2023, "Total Visits": 939.0, "Total Visitors": 719.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 18447.0, "Total Transactions": 274.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.58, "MEDIAN_SPEND_PER_CUSTOMER": 54.83 }, "geometry": { "type": "Point", "coordinates": [ -75.159642, 39.952216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.973478, "LONGITUDE": -75.159321, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010140003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2275.0, "Total Transactions": 96.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.71, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159321, 39.973478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phn-9fz", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079281, "LONGITUDE": -75.174174, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 291.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.85, "MEDIAN_SPEND_PER_CUSTOMER": 18.85 }, "geometry": { "type": "Point", "coordinates": [ -75.174174, 40.079281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904392, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2023, "Total Visits": 2431.0, "Total Visitors": 2124.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 6619.0, "Total Transactions": 317.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.71, "MEDIAN_SPEND_PER_CUSTOMER": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.904392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-d7q", "LOCATION_NAME": "Alex's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034052, "LONGITUDE": -75.220933, "DATE_RANGE_START": 2023, "Total Visits": 98.0, "Total Visitors": 98.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": null, "Total Spend": 207.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.65, "MEDIAN_SPEND_PER_CUSTOMER": 36.58 }, "geometry": { "type": "Point", "coordinates": [ -75.220933, 40.034052 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-b8v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.934782, "LONGITUDE": -75.178915, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 157.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 940.0, "Total Transactions": 73.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.82, "MEDIAN_SPEND_PER_CUSTOMER": 9.33 }, "geometry": { "type": "Point", "coordinates": [ -75.178915, 39.934782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.964844, "LONGITUDE": -75.204389, "DATE_RANGE_START": 2023, "Total Visits": 589.0, "Total Visitors": 377.0, "POI_CBG": 421010107002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 948.0, "Total Transactions": 66.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.02, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.204389, 39.964844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-zmk", "LOCATION_NAME": "The Fresh Grocer", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.940294, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2023, "Total Visits": 1184.0, "Total Visitors": 661.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 492902.0, "Total Transactions": 13182.0, "Total Customers": 5322.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.92, "MEDIAN_SPEND_PER_CUSTOMER": 37.31 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 39.940294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.98171, "LONGITUDE": -75.18045, "DATE_RANGE_START": 2023, "Total Visits": 103.0, "Total Visitors": 64.0, "POI_CBG": 421010149004.0, "MEDIAN_DWELL": 61.0, "Total Spend": 1409.0, "Total Transactions": 128.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.06, "MEDIAN_SPEND_PER_CUSTOMER": 13.21 }, "geometry": { "type": "Point", "coordinates": [ -75.18045, 39.98171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "LOCATION_NAME": "Rittenhouse Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 31.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 847.0, "Total Spend": 470.0, "Total Transactions": 25.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.52, "MEDIAN_SPEND_PER_CUSTOMER": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-s3q", "LOCATION_NAME": "Pennmark Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.94458, "LONGITUDE": -75.171446, "DATE_RANGE_START": 2023, "Total Visits": 481.0, "Total Visitors": 341.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 8.0, "Total Spend": 522.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.88, "MEDIAN_SPEND_PER_CUSTOMER": 5.88 }, "geometry": { "type": "Point", "coordinates": [ -75.171446, 39.94458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7nq", "LOCATION_NAME": "Woody's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948953, "LONGITUDE": -75.162366, "DATE_RANGE_START": 2023, "Total Visits": 1278.0, "Total Visitors": 782.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 46.0, "Total Spend": 46934.0, "Total Transactions": 1607.0, "Total Customers": 904.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162366, 39.948953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "LOCATION_NAME": "Finn Mccools Ale House", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2023, "Total Visits": 296.0, "Total Visitors": 272.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5816.0, "Total Transactions": 193.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.68, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "LOCATION_NAME": "Local 44", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952917, "LONGITUDE": -75.210276, "DATE_RANGE_START": 2023, "Total Visits": 623.0, "Total Visitors": 368.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 18.0, "Total Spend": 14549.0, "Total Transactions": 317.0, "Total Customers": 252.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.6 }, "geometry": { "type": "Point", "coordinates": [ -75.210276, 39.952917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-2tv", "LOCATION_NAME": "Tacony Latin Flavor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020803, "LONGITUDE": -75.053805, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 184.0, "POI_CBG": 421010323002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 202.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.5, "MEDIAN_SPEND_PER_CUSTOMER": 80.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053805, 40.020803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phq-gff", "LOCATION_NAME": "Takka Grill & Shrimpie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067474, "LONGITUDE": -75.147141, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 54.0, "POI_CBG": 421010266003.0, "MEDIAN_DWELL": 703.0, "Total Spend": 734.0, "Total Transactions": 30.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147141, 40.067474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-gx5", "LOCATION_NAME": "Mccrossens Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963099, "LONGITUDE": -75.170927, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 119.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 99.0, "Total Spend": 15116.0, "Total Transactions": 254.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.05, "MEDIAN_SPEND_PER_CUSTOMER": 56.32 }, "geometry": { "type": "Point", "coordinates": [ -75.170927, 39.963099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-ks5", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952045, "LONGITUDE": -75.14516, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3518.0, "Total Transactions": 373.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.65, "MEDIAN_SPEND_PER_CUSTOMER": 10.82 }, "geometry": { "type": "Point", "coordinates": [ -75.14516, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "LOCATION_NAME": "Nam Phuong", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936528, "LONGITUDE": -75.161971, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 11.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5878.0, "Total Transactions": 101.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.93, "MEDIAN_SPEND_PER_CUSTOMER": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161971, 39.936528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "LOCATION_NAME": "Buddakan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949021, "LONGITUDE": -75.147193, "DATE_RANGE_START": 2023, "Total Visits": 2629.0, "Total Visitors": 2012.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 30252.0, "Total Transactions": 184.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 142.39, "MEDIAN_SPEND_PER_CUSTOMER": 142.39 }, "geometry": { "type": "Point", "coordinates": [ -75.147193, 39.949021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2023, "Total Visits": 585.0, "Total Visitors": 555.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3086.0, "Total Transactions": 415.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.78, "MEDIAN_SPEND_PER_CUSTOMER": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-228@628-p8t-w49", "LOCATION_NAME": "Street Corner", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.087342, "LONGITUDE": -74.961626, "DATE_RANGE_START": 2023, "Total Visits": 386.0, "Total Visitors": 322.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 57.0, "Total Spend": 462.0, "Total Transactions": 61.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.99, "MEDIAN_SPEND_PER_CUSTOMER": 5.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961626, 40.087342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2023, "Total Visits": 1474.0, "Total Visitors": 864.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3282.0, "Total Transactions": 207.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 20.21 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.11938, "LONGITUDE": -75.015073, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 169.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 47091.0, "Total Transactions": 398.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.69, "MEDIAN_SPEND_PER_CUSTOMER": 64.12 }, "geometry": { "type": "Point", "coordinates": [ -75.015073, 40.11938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.021239, "LONGITUDE": -75.149898, "DATE_RANGE_START": 2023, "Total Visits": 1130.0, "Total Visitors": 802.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1239.0, "Total Transactions": 58.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.78, "MEDIAN_SPEND_PER_CUSTOMER": 24.46 }, "geometry": { "type": "Point", "coordinates": [ -75.149898, 40.021239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p7v-vxq", "LOCATION_NAME": "Algon Auto Clinic", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055758, "LONGITUDE": -75.073258, "DATE_RANGE_START": 2023, "Total Visits": 843.0, "Total Visitors": 792.0, "POI_CBG": 421010338002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 216.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.2, "MEDIAN_SPEND_PER_CUSTOMER": 70.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073258, 40.055758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961449, "LONGITUDE": -75.144246, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 3246.0, "Total Transactions": 430.0, "Total Customers": 209.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.66, "MEDIAN_SPEND_PER_CUSTOMER": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144246, 39.961449 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pj4-t7q", "LOCATION_NAME": "Nexcare Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.996106, "LONGITUDE": -75.13916, "DATE_RANGE_START": 2023, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010176012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1172.0, "Total Transactions": 19.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.53, "MEDIAN_SPEND_PER_CUSTOMER": 37.07 }, "geometry": { "type": "Point", "coordinates": [ -75.13916, 39.996106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 175.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 8940.0, "Total Transactions": 158.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.03, "MEDIAN_SPEND_PER_CUSTOMER": 51.85 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8d-yn5", "LOCATION_NAME": "Joe's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.014187, "LONGITUDE": -75.071015, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 30.0, "POI_CBG": 421010299003.0, "MEDIAN_DWELL": 811.0, "Total Spend": 596.0, "Total Transactions": 55.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.99, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071015, 40.014187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-223@628-pmb-kzz", "LOCATION_NAME": "Perfumology", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.950987, "LONGITUDE": -75.145262, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 423.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 106.0, "Total Spend": 1541.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.16, "MEDIAN_SPEND_PER_CUSTOMER": 110.16 }, "geometry": { "type": "Point", "coordinates": [ -75.145262, 39.950987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-zmk", "LOCATION_NAME": "The Good King Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941737, "LONGITUDE": -75.15419, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 174.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9037.0, "Total Transactions": 127.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.43, "MEDIAN_SPEND_PER_CUSTOMER": 74.59 }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 39.941737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012417, "LONGITUDE": -75.118991, "DATE_RANGE_START": 2023, "Total Visits": 966.0, "Total Visitors": 595.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15463.0, "Total Transactions": 982.0, "Total Customers": 596.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 19.65 }, "geometry": { "type": "Point", "coordinates": [ -75.118991, 40.012417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmf-6x5", "LOCATION_NAME": "Gia Pronto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94766, "LONGITUDE": -75.192915, "DATE_RANGE_START": 2023, "Total Visits": 13803.0, "Total Visitors": 7404.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 99.0, "Total Spend": 6316.0, "Total Transactions": 671.0, "Total Customers": 443.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.192915, 39.94766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dvy-pn5", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.95442, "LONGITUDE": -75.202828, "DATE_RANGE_START": 2023, "Total Visits": 1450.0, "Total Visitors": 797.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 15.0, "Total Spend": 149262.0, "Total Transactions": 6252.0, "Total Customers": 2379.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 32.24 }, "geometry": { "type": "Point", "coordinates": [ -75.202828, 39.95442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-kj9", "LOCATION_NAME": "Sassafras Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953764, "LONGITUDE": -75.14458, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 172.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3330.0, "Total Transactions": 188.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.33, "MEDIAN_SPEND_PER_CUSTOMER": 19.55 }, "geometry": { "type": "Point", "coordinates": [ -75.14458, 39.953764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2023, "Total Visits": 958.0, "Total Visitors": 698.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 43277.0, "Total Transactions": 4546.0, "Total Customers": 2019.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.97, "MEDIAN_SPEND_PER_CUSTOMER": 12.26 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-ph6-cdv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979947, "LONGITUDE": -75.248732, "DATE_RANGE_START": 2023, "Total Visits": 499.0, "Total Visitors": 282.0, "POI_CBG": 421010114001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1154.0, "Total Transactions": 23.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.29, "MEDIAN_SPEND_PER_CUSTOMER": 8.02 }, "geometry": { "type": "Point", "coordinates": [ -75.248732, 39.979947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "LOCATION_NAME": "Athleta", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949792, "LONGITUDE": -75.170328, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 33.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6090.0, "Total Transactions": 73.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.5, "MEDIAN_SPEND_PER_CUSTOMER": 58.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170328, 39.949792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-v9f", "LOCATION_NAME": "Washington Square Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945913, "LONGITUDE": -75.151316, "DATE_RANGE_START": 2023, "Total Visits": 1121.0, "Total Visitors": 737.0, "POI_CBG": 421010010011.0, "MEDIAN_DWELL": 35.0, "Total Spend": 119.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.49, "MEDIAN_SPEND_PER_CUSTOMER": 20.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151316, 39.945913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "LOCATION_NAME": "Convenient Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.034583, "LONGITUDE": -75.044296, "DATE_RANGE_START": 2023, "Total Visits": 400.0, "Total Visitors": 257.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 4543.0, "Total Transactions": 348.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.044296, 40.034583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.986364, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010151021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 331.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.91, "MEDIAN_SPEND_PER_CUSTOMER": 9.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.986364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2023, "Total Visits": 2022.0, "Total Visitors": 1293.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 16274.0, "Total Transactions": 871.0, "Total Customers": 625.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.35, "MEDIAN_SPEND_PER_CUSTOMER": 14.37 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12008.0, "Total Transactions": 182.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.37, "MEDIAN_SPEND_PER_CUSTOMER": 54.95 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "LOCATION_NAME": "Bistrot La Minette", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 115.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 86.0, "Total Spend": 2694.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.76, "MEDIAN_SPEND_PER_CUSTOMER": 97.57 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.991624, "LONGITUDE": -75.134388, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 8.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 10323.0, "Total Transactions": 205.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.73, "MEDIAN_SPEND_PER_CUSTOMER": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.134388, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "LOCATION_NAME": "Charley's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2023, "Total Visits": 981.0, "Total Visitors": 834.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 38.0, "Total Spend": 1487.0, "Total Transactions": 104.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 14.56 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-22f@628-pgj-cqz", "LOCATION_NAME": "Touch Down Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978146, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 21.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 109.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.81, "MEDIAN_SPEND_PER_CUSTOMER": 13.81 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.978146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-yqf", "LOCATION_NAME": "Chubby Cattle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954989, "LONGITUDE": -75.156236, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2793.0, "Total Transactions": 24.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.87, "MEDIAN_SPEND_PER_CUSTOMER": 104.87 }, "geometry": { "type": "Point", "coordinates": [ -75.156236, 39.954989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-rzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94428, "LONGITUDE": -75.141509, "DATE_RANGE_START": 2023, "Total Visits": 385.0, "Total Visitors": 378.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1422.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.23, "MEDIAN_SPEND_PER_CUSTOMER": 36.28 }, "geometry": { "type": "Point", "coordinates": [ -75.141509, 39.94428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2023, "Total Visits": 430.0, "Total Visitors": 289.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1730.0, "Total Transactions": 224.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.44, "MEDIAN_SPEND_PER_CUSTOMER": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgy-k9f", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.063848, "LONGITUDE": -75.236526, "DATE_RANGE_START": 2023, "Total Visits": 649.0, "Total Visitors": 524.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 50425.0, "Total Transactions": 1482.0, "Total Customers": 822.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.49, "MEDIAN_SPEND_PER_CUSTOMER": 28.11 }, "geometry": { "type": "Point", "coordinates": [ -75.236526, 40.063848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pp2-47q", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982157, "LONGITUDE": -75.10349, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 178.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 73.0, "Total Spend": 282.0, "Total Transactions": 26.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.4, "MEDIAN_SPEND_PER_CUSTOMER": 20.12 }, "geometry": { "type": "Point", "coordinates": [ -75.10349, 39.982157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "LOCATION_NAME": "Vernick Food & Drink", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2023, "Total Visits": 1702.0, "Total Visitors": 1169.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 6595.0, "Total Transactions": 45.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.4, "MEDIAN_SPEND_PER_CUSTOMER": 120.83 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "LOCATION_NAME": "Little Fish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010018001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 346.0, "Total Transactions": 30.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.38 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-yjv", "LOCATION_NAME": "Amazing Crab House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940979, "LONGITUDE": -75.14584, "DATE_RANGE_START": 2023, "Total Visits": 489.0, "Total Visitors": 418.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 3371.0, "Total Transactions": 41.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.85, "MEDIAN_SPEND_PER_CUSTOMER": 88.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14584, 39.940979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-ygk", "LOCATION_NAME": "Shaxian Delicacies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953952, "LONGITUDE": -75.156335, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 198.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 266.0, "Total Transactions": 18.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.58, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156335, 39.953952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2023, "Total Visits": 1445.0, "Total Visitors": 774.0, "POI_CBG": 421010085001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 9023.0, "Total Transactions": 636.0, "Total Customers": 453.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.4, "MEDIAN_SPEND_PER_CUSTOMER": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-phq-rp9", "LOCATION_NAME": "Deli Delight", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066189, "LONGITUDE": -75.159352, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 205.0, "POI_CBG": 421010263023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 205.0, "Total Transactions": 24.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159352, 40.066189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-223@628-pm4-mc5", "LOCATION_NAME": "Casa Mexico", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935496, "LONGITUDE": -75.15875, "DATE_RANGE_START": 2023, "Total Visits": 1067.0, "Total Visitors": 785.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 431.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.33, "MEDIAN_SPEND_PER_CUSTOMER": 54.33 }, "geometry": { "type": "Point", "coordinates": [ -75.15875, 39.935496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-vcq", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.923936, "LONGITUDE": -75.13927, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1244.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.99, "MEDIAN_SPEND_PER_CUSTOMER": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.13927, 39.923936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-d9z", "LOCATION_NAME": "Garden Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960311, "LONGITUDE": -75.171912, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010125003.0, "MEDIAN_DWELL": 78.0, "Total Spend": 116.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.14, "MEDIAN_SPEND_PER_CUSTOMER": 20.14 }, "geometry": { "type": "Point", "coordinates": [ -75.171912, 39.960311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "LOCATION_NAME": "La Rosa Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 110.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 200.0, "Total Spend": 28.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.08 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-6x5", "LOCATION_NAME": "The North Face", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.949897, "LONGITUDE": -75.166716, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 195.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.86, "MEDIAN_SPEND_PER_CUSTOMER": 77.86 }, "geometry": { "type": "Point", "coordinates": [ -75.166716, 39.949897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-c89", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068395, "LONGITUDE": -75.068368, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 6.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5702.0, "Total Transactions": 720.0, "Total Customers": 259.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.44, "MEDIAN_SPEND_PER_CUSTOMER": 13.62 }, "geometry": { "type": "Point", "coordinates": [ -75.068368, 40.068395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958186, "LONGITUDE": -75.208259, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5617.0, "Total Transactions": 706.0, "Total Customers": 372.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.208259, 39.958186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "LOCATION_NAME": "Ruby Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2023, "Total Visits": 365.0, "Total Visitors": 324.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 14130.0, "Total Transactions": 281.0, "Total Customers": 219.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.93, "MEDIAN_SPEND_PER_CUSTOMER": 48.16 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-rkz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914665, "LONGITUDE": -75.22061, "DATE_RANGE_START": 2023, "Total Visits": 1175.0, "Total Visitors": 926.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 588.0, "Total Transactions": 73.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.64, "MEDIAN_SPEND_PER_CUSTOMER": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -75.22061, 39.914665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2023, "Total Visits": 416.0, "Total Visitors": 343.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 483.0, "Total Transactions": 38.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.24, "MEDIAN_SPEND_PER_CUSTOMER": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "LOCATION_NAME": "King of Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010037021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 172.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.98, "MEDIAN_SPEND_PER_CUSTOMER": 17.98 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "LOCATION_NAME": "Unit Su Vege", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2023, "Total Visits": 377.0, "Total Visitors": 209.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2747.0, "Total Transactions": 63.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.84, "MEDIAN_SPEND_PER_CUSTOMER": 47.85 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "LOCATION_NAME": "Dick's Sporting Goods", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.085722, "LONGITUDE": -74.967122, "DATE_RANGE_START": 2023, "Total Visits": 636.0, "Total Visitors": 525.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 26.0, "Total Spend": 744.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.66, "MEDIAN_SPEND_PER_CUSTOMER": 98.66 }, "geometry": { "type": "Point", "coordinates": [ -74.967122, 40.085722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp4-r49", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.975635, "LONGITUDE": -75.119843, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1107.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.99, "MEDIAN_SPEND_PER_CUSTOMER": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -75.119843, 39.975635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phz-z4v", "LOCATION_NAME": "BooksRun com", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 40.005848, "LONGITUDE": -75.117861, "DATE_RANGE_START": 2023, "Total Visits": 254.0, "Total Visitors": 144.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3899.0, "Total Transactions": 86.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.26, "MEDIAN_SPEND_PER_CUSTOMER": 41.09 }, "geometry": { "type": "Point", "coordinates": [ -75.117861, 40.005848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-j5f", "LOCATION_NAME": "Kitchen Kapers", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.949485, "LONGITUDE": -75.169064, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 123.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2480.0, "Total Transactions": 55.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.36, "MEDIAN_SPEND_PER_CUSTOMER": 35.08 }, "geometry": { "type": "Point", "coordinates": [ -75.169064, 39.949485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pg4-pvz", "LOCATION_NAME": "Torres Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.049468, "LONGITUDE": -75.160392, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 100.0, "POI_CBG": 421010249003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 75.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.39, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.160392, 40.049468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "LOCATION_NAME": "Race Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 43.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 29.0, "Total Spend": 730.0, "Total Transactions": 56.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.42, "MEDIAN_SPEND_PER_CUSTOMER": 12.22 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgb-47q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962385, "LONGITUDE": -75.163442, "DATE_RANGE_START": 2023, "Total Visits": 1379.0, "Total Visitors": 561.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 125.0, "Total Spend": 7741.0, "Total Transactions": 581.0, "Total Customers": 437.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.43, "MEDIAN_SPEND_PER_CUSTOMER": 13.92 }, "geometry": { "type": "Point", "coordinates": [ -75.163442, 39.962385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-y7q", "LOCATION_NAME": "The Post", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952733, "LONGITUDE": -75.18366, "DATE_RANGE_START": 2023, "Total Visits": 532.0, "Total Visitors": 357.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 36.0, "Total Spend": 368.0, "Total Transactions": 15.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.28, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18366, 39.952733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wc5", "LOCATION_NAME": "Abunai Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949658, "LONGITUDE": -75.147567, "DATE_RANGE_START": 2023, "Total Visits": 537.0, "Total Visitors": 492.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 610.0, "Total Transactions": 40.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.76, "MEDIAN_SPEND_PER_CUSTOMER": 14.94 }, "geometry": { "type": "Point", "coordinates": [ -75.147567, 39.949658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pmf-pvz", "LOCATION_NAME": "Bistro La Baia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945165, "LONGITUDE": -75.170267, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": null, "Total Spend": 140.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.71, "MEDIAN_SPEND_PER_CUSTOMER": 55.71 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.945165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2023, "Total Visits": 914.0, "Total Visitors": 669.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 798.0, "Total Transactions": 45.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.04, "MEDIAN_SPEND_PER_CUSTOMER": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-232@628-p8t-w49", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087656, "LONGITUDE": -74.961053, "DATE_RANGE_START": 2023, "Total Visits": 981.0, "Total Visitors": 834.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 38.0, "Total Spend": 3750.0, "Total Transactions": 50.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.87, "MEDIAN_SPEND_PER_CUSTOMER": 78.74 }, "geometry": { "type": "Point", "coordinates": [ -74.961053, 40.087656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.912525, "LONGITUDE": -75.154628, "DATE_RANGE_START": 2023, "Total Visits": 2042.0, "Total Visitors": 1844.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 62.0, "Total Spend": 1793.0, "Total Transactions": 50.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.95, "MEDIAN_SPEND_PER_CUSTOMER": 33.91 }, "geometry": { "type": "Point", "coordinates": [ -75.154628, 39.912525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pg8-kmk", "LOCATION_NAME": "Young's Sneaker City", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.974536, "LONGITUDE": -75.181586, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 123.0, "POI_CBG": 421010137002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1271.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.0, "MEDIAN_SPEND_PER_CUSTOMER": 145.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181586, 39.974536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-zcq", "LOCATION_NAME": "Savas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958273, "LONGITUDE": -75.192694, "DATE_RANGE_START": 2023, "Total Visits": 397.0, "Total Visitors": 363.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 87.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.192694, 39.958273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@63s-dvz-2p9", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957038, "LONGITUDE": -75.215038, "DATE_RANGE_START": 2023, "Total Visits": 485.0, "Total Visitors": 383.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 425.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.67, "MEDIAN_SPEND_PER_CUSTOMER": 23.01 }, "geometry": { "type": "Point", "coordinates": [ -75.215038, 39.957038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "LOCATION_NAME": "A& A Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2023, "Total Visits": 168.0, "Total Visitors": 124.0, "POI_CBG": 421010093001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 304.0, "Total Transactions": 53.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.25, "MEDIAN_SPEND_PER_CUSTOMER": 7.89 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgg-n3q", "LOCATION_NAME": "Wine & Spirits Stores", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.998975, "LONGITUDE": -75.166581, "DATE_RANGE_START": 2023, "Total Visits": 413.0, "Total Visitors": 316.0, "POI_CBG": 421010173001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 45650.0, "Total Transactions": 753.0, "Total Customers": 381.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166581, 39.998975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p8m-syv", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.02299, "LONGITUDE": -75.075925, "DATE_RANGE_START": 2023, "Total Visits": 1175.0, "Total Visitors": 944.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1756.0, "Total Transactions": 54.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 40.82 }, "geometry": { "type": "Point", "coordinates": [ -75.075925, 40.02299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "LOCATION_NAME": "US Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2023, "Total Visits": 301.0, "Total Visitors": 262.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2694.0, "Total Transactions": 111.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pm5-2ff", "LOCATION_NAME": "Pho Today", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936889, "LONGITUDE": -75.16188, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1702.0, "Total Transactions": 39.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.93, "MEDIAN_SPEND_PER_CUSTOMER": 58.49 }, "geometry": { "type": "Point", "coordinates": [ -75.16188, 39.936889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pm9-wkz", "LOCATION_NAME": "Viva Pizzas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948646, "LONGITUDE": -75.144734, "DATE_RANGE_START": 2023, "Total Visits": 2528.0, "Total Visitors": 1506.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 398.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.8, "MEDIAN_SPEND_PER_CUSTOMER": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144734, 39.948646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-6x5", "LOCATION_NAME": "Ocean Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950182, "LONGITUDE": -75.165953, "DATE_RANGE_START": 2023, "Total Visits": 456.0, "Total Visitors": 396.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1562.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 370.79, "MEDIAN_SPEND_PER_CUSTOMER": 370.79 }, "geometry": { "type": "Point", "coordinates": [ -75.165953, 39.950182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm9-tn5", "LOCATION_NAME": "Cafe Walnut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948274, "LONGITUDE": -75.152798, "DATE_RANGE_START": 2023, "Total Visits": 1068.0, "Total Visitors": 532.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 159.0, "Total Spend": 2641.0, "Total Transactions": 199.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.35, "MEDIAN_SPEND_PER_CUSTOMER": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.152798, 39.948274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "LOCATION_NAME": "Fuel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2023, "Total Visits": 150.0, "Total Visitors": 150.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1206.0, "Total Transactions": 49.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.31, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2023, "Total Visits": 254.0, "Total Visitors": 217.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 19.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.78, "MEDIAN_SPEND_PER_CUSTOMER": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-224@628-pnw-nqz", "LOCATION_NAME": "Bagels & Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970905, "LONGITUDE": -75.134233, "DATE_RANGE_START": 2023, "Total Visits": 625.0, "Total Visitors": 344.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 89.0, "Total Spend": 4023.0, "Total Transactions": 333.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 14.71 }, "geometry": { "type": "Point", "coordinates": [ -75.134233, 39.970905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pg4-j9z", "LOCATION_NAME": "DTR/VILLA", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.035849, "LONGITUDE": -75.174389, "DATE_RANGE_START": 2023, "Total Visits": 1306.0, "Total Visitors": 990.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2596.0, "Total Transactions": 34.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174389, 40.035849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2023, "Total Visits": 70.0, "Total Visitors": 58.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 25693.0, "Total Transactions": 2619.0, "Total Customers": 986.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 15.58 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfx-ks5", "LOCATION_NAME": "Artesano Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027087, "LONGITUDE": -75.226817, "DATE_RANGE_START": 2023, "Total Visits": 615.0, "Total Visitors": 405.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 32.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.21, "MEDIAN_SPEND_PER_CUSTOMER": 8.21 }, "geometry": { "type": "Point", "coordinates": [ -75.226817, 40.027087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-x89", "LOCATION_NAME": "Sherwin-Williams", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.03653, "LONGITUDE": -75.174358, "DATE_RANGE_START": 2023, "Total Visits": 69.0, "Total Visitors": 36.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 119.0, "Total Spend": 155.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.174358, 40.03653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2023, "Total Visits": 571.0, "Total Visitors": 299.0, "POI_CBG": 421010191003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 706.0, "Total Transactions": 21.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.84, "MEDIAN_SPEND_PER_CUSTOMER": 21.61 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2023, "Total Visits": 1194.0, "Total Visitors": 877.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 73372.0, "Total Transactions": 4191.0, "Total Customers": 1749.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.9, "MEDIAN_SPEND_PER_CUSTOMER": 24.77 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "LOCATION_NAME": "Somerton Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.110353, "LONGITUDE": -75.024095, "DATE_RANGE_START": 2023, "Total Visits": 69.0, "Total Visitors": 30.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 214.0, "Total Spend": 1800.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 137.5, "MEDIAN_SPEND_PER_CUSTOMER": 137.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024095, 40.110353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvy-pgk", "LOCATION_NAME": "New York Gyro Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954691, "LONGITUDE": -75.205207, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 127.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 43.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205207, 39.954691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgj-cbk", "LOCATION_NAME": "Pazzo Pazzo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979011, "LONGITUDE": -75.161757, "DATE_RANGE_START": 2023, "Total Visits": 1537.0, "Total Visitors": 1274.0, "POI_CBG": 421010147001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2104.0, "Total Transactions": 152.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.04, "MEDIAN_SPEND_PER_CUSTOMER": 12.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161757, 39.979011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.894613, "LONGITUDE": -75.229277, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3043.0, "Total Transactions": 267.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.229277, 39.894613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-skf", "LOCATION_NAME": "Good Dog Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948847, "LONGITUDE": -75.166287, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 230.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 101.0, "Total Spend": 590.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.6, "MEDIAN_SPEND_PER_CUSTOMER": 50.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166287, 39.948847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-228@628-pjf-jvz", "LOCATION_NAME": "Tokyo Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074121, "LONGITUDE": -75.202557, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 400.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2413.0, "Total Transactions": 89.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.99, "MEDIAN_SPEND_PER_CUSTOMER": 20.65 }, "geometry": { "type": "Point", "coordinates": [ -75.202557, 40.074121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-nkf", "LOCATION_NAME": "Ho May House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01822, "LONGITUDE": -75.134281, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 138.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 148.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.95, "MEDIAN_SPEND_PER_CUSTOMER": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.134281, 40.01822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-94v", "LOCATION_NAME": "Mood Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948631, "LONGITUDE": -75.215805, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 145.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1271.0, "Total Transactions": 49.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.58, "MEDIAN_SPEND_PER_CUSTOMER": 24.41 }, "geometry": { "type": "Point", "coordinates": [ -75.215805, 39.948631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnw-mzf", "LOCATION_NAME": "The Foodery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963842, "LONGITUDE": -75.140388, "DATE_RANGE_START": 2023, "Total Visits": 645.0, "Total Visitors": 519.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 22770.0, "Total Transactions": 1343.0, "Total Customers": 693.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 19.79 }, "geometry": { "type": "Point", "coordinates": [ -75.140388, 39.963842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-r6k", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97237, "LONGITUDE": -75.140976, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 81.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 141.0, "Total Transactions": 15.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.59, "MEDIAN_SPEND_PER_CUSTOMER": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.140976, 39.97237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-v75", "LOCATION_NAME": "Northeast Sandwich Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059019, "LONGITUDE": -75.075391, "DATE_RANGE_START": 2023, "Total Visits": 90.0, "Total Visitors": 60.0, "POI_CBG": 421010338003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1624.0, "Total Transactions": 80.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.69, "MEDIAN_SPEND_PER_CUSTOMER": 24.73 }, "geometry": { "type": "Point", "coordinates": [ -75.075391, 40.059019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-223@628-pnx-2hq", "LOCATION_NAME": "CARQUEST Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.97016, "LONGITUDE": -75.14329, "DATE_RANGE_START": 2023, "Total Visits": 271.0, "Total Visitors": 234.0, "POI_CBG": 421010144001.0, "MEDIAN_DWELL": 291.0, "Total Spend": 166.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.23, "MEDIAN_SPEND_PER_CUSTOMER": 66.23 }, "geometry": { "type": "Point", "coordinates": [ -75.14329, 39.97016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2023, "Total Visits": 486.0, "Total Visitors": 376.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 441.0, "Total Transactions": 38.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.87, "MEDIAN_SPEND_PER_CUSTOMER": 11.19 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-pvz", "LOCATION_NAME": "Red Lion Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.105639, "LONGITUDE": -75.033118, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 174.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 144.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.66, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.033118, 40.105639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-cyv", "LOCATION_NAME": "Holmesburg Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.041745, "LONGITUDE": -75.026513, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 163.0, "POI_CBG": 421010329001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 63.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.69, "MEDIAN_SPEND_PER_CUSTOMER": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -75.026513, 40.041745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.070278, "LONGITUDE": -75.030552, "DATE_RANGE_START": 2023, "Total Visits": 857.0, "Total Visitors": 565.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 15422.0, "Total Transactions": 685.0, "Total Customers": 356.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.49, "MEDIAN_SPEND_PER_CUSTOMER": 23.25 }, "geometry": { "type": "Point", "coordinates": [ -75.030552, 40.070278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "LOCATION_NAME": "Stenton Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 70.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2932.0, "Total Transactions": 129.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.11, "MEDIAN_SPEND_PER_CUSTOMER": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwf-t9z", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.903301, "LONGITUDE": -75.240669, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 210.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 30318.0, "Total Transactions": 894.0, "Total Customers": 735.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.97, "MEDIAN_SPEND_PER_CUSTOMER": 28.04 }, "geometry": { "type": "Point", "coordinates": [ -75.240669, 39.903301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pg8-z2k", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.982903, "LONGITUDE": -75.187839, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 135.0, "POI_CBG": 421010149006.0, "MEDIAN_DWELL": 12.0, "Total Spend": 783.0, "Total Transactions": 38.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.09, "MEDIAN_SPEND_PER_CUSTOMER": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187839, 39.982903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pm3-xqz", "LOCATION_NAME": "Green Eggs Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931348, "LONGITUDE": -75.166497, "DATE_RANGE_START": 2023, "Total Visits": 137.0, "Total Visitors": 36.0, "POI_CBG": 421010029002.0, "MEDIAN_DWELL": 265.0, "Total Spend": 180.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.75, "MEDIAN_SPEND_PER_CUSTOMER": 71.75 }, "geometry": { "type": "Point", "coordinates": [ -75.166497, 39.931348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "LOCATION_NAME": "lululemon athletica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2023, "Total Visits": 334.0, "Total Visitors": 314.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 26207.0, "Total Transactions": 233.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.77, "MEDIAN_SPEND_PER_CUSTOMER": 99.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmb-8n5", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951212, "LONGITUDE": -75.156618, "DATE_RANGE_START": 2023, "Total Visits": 1581.0, "Total Visitors": 1102.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6283.0, "Total Transactions": 477.0, "Total Customers": 349.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.73 }, "geometry": { "type": "Point", "coordinates": [ -75.156618, 39.951212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2023, "Total Visits": 452.0, "Total Visitors": 398.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 8858.0, "Total Transactions": 1088.0, "Total Customers": 453.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.89, "MEDIAN_SPEND_PER_CUSTOMER": 11.12 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2023, "Total Visits": 653.0, "Total Visitors": 411.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1057.0, "Total Transactions": 135.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.54 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-t5f", "LOCATION_NAME": "Perla", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930019, "LONGITUDE": -75.16283, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1014.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.0, "MEDIAN_SPEND_PER_CUSTOMER": 66.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16283, 39.930019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmd-w49", "LOCATION_NAME": "Twenty Manning", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948622, "LONGITUDE": -75.17407, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 178.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2755.0, "Total Transactions": 33.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.4, "MEDIAN_SPEND_PER_CUSTOMER": 84.64 }, "geometry": { "type": "Point", "coordinates": [ -75.17407, 39.948622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-f9f", "LOCATION_NAME": "Dimension Latin Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052617, "LONGITUDE": -75.0652, "DATE_RANGE_START": 2023, "Total Visits": 402.0, "Total Visitors": 297.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 96.0, "Total Spend": 1173.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.8, "MEDIAN_SPEND_PER_CUSTOMER": 50.59 }, "geometry": { "type": "Point", "coordinates": [ -75.0652, 40.052617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2023, "Total Visits": 537.0, "Total Visitors": 342.0, "POI_CBG": 421010268003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4447.0, "Total Transactions": 480.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.93, "MEDIAN_SPEND_PER_CUSTOMER": 11.91 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2023, "Total Visits": 431.0, "Total Visitors": 288.0, "POI_CBG": 421010389003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2879.0, "Total Transactions": 134.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.88, "MEDIAN_SPEND_PER_CUSTOMER": 23.23 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-qj9", "LOCATION_NAME": "Erietronics", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.007732, "LONGITUDE": -75.141252, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 103.0, "POI_CBG": 421010199002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2166.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.09, "MEDIAN_SPEND_PER_CUSTOMER": 110.69 }, "geometry": { "type": "Point", "coordinates": [ -75.141252, 40.007732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-bp9", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.064957, "LONGITUDE": -74.983604, "DATE_RANGE_START": 2023, "Total Visits": 2995.0, "Total Visitors": 1526.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 673.0, "Total Transactions": 23.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.85, "MEDIAN_SPEND_PER_CUSTOMER": 28.72 }, "geometry": { "type": "Point", "coordinates": [ -74.983604, 40.064957 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvr-d5f", "LOCATION_NAME": "Banamba Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.921774, "LONGITUDE": -75.231392, "DATE_RANGE_START": 2023, "Total Visits": 110.0, "Total Visitors": 90.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 298.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.5, "MEDIAN_SPEND_PER_CUSTOMER": 30.75 }, "geometry": { "type": "Point", "coordinates": [ -75.231392, 39.921774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2023, "Total Visits": 2860.0, "Total Visitors": 1231.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1344.0, "Total Transactions": 26.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.33, "MEDIAN_SPEND_PER_CUSTOMER": 58.11 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "LOCATION_NAME": "Luke's Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 142.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2813.0, "Total Transactions": 65.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 42.18 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "LOCATION_NAME": "Suit Corner", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2023, "Total Visits": 665.0, "Total Visitors": 517.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1200.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.0, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7x-dgk", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04172, "LONGITUDE": -75.064728, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 195.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.53, "MEDIAN_SPEND_PER_CUSTOMER": 10.53 }, "geometry": { "type": "Point", "coordinates": [ -75.064728, 40.04172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "LOCATION_NAME": "Munchie's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949283, "LONGITUDE": -75.153687, "DATE_RANGE_START": 2023, "Total Visits": 832.0, "Total Visitors": 606.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3624.0, "Total Transactions": 292.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.69, "MEDIAN_SPEND_PER_CUSTOMER": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.153687, 39.949283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-4sq", "LOCATION_NAME": "Blaze Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979406, "LONGITUDE": -75.153407, "DATE_RANGE_START": 2023, "Total Visits": 328.0, "Total Visitors": 147.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3707.0, "Total Transactions": 244.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.6, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.153407, 39.979406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8m-x5z", "LOCATION_NAME": "Goody's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027482, "LONGITUDE": -75.061166, "DATE_RANGE_START": 2023, "Total Visits": 139.0, "Total Visitors": 116.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1258.0, "Total Transactions": 43.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.63, "MEDIAN_SPEND_PER_CUSTOMER": 33.63 }, "geometry": { "type": "Point", "coordinates": [ -75.061166, 40.027482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "LOCATION_NAME": "Fishtown Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 833.0, "Total Transactions": 36.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.18, "MEDIAN_SPEND_PER_CUSTOMER": 19.28 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-yqf", "LOCATION_NAME": "Nine Ting", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955155, "LONGITUDE": -75.15525, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2350.0, "Total Transactions": 29.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.82, "MEDIAN_SPEND_PER_CUSTOMER": 61.82 }, "geometry": { "type": "Point", "coordinates": [ -75.15525, 39.955155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "LOCATION_NAME": "Kashmir Garden Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2023, "Total Visits": 204.0, "Total Visitors": 167.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6313.0, "Total Transactions": 139.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.82, "MEDIAN_SPEND_PER_CUSTOMER": 40.06 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-c89", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007079, "LONGITUDE": -75.128063, "DATE_RANGE_START": 2023, "Total Visits": 402.0, "Total Visitors": 302.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6511.0, "Total Transactions": 455.0, "Total Customers": 342.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.36, "MEDIAN_SPEND_PER_CUSTOMER": 14.73 }, "geometry": { "type": "Point", "coordinates": [ -75.128063, 40.007079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-zmk", "LOCATION_NAME": "Value Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.931942, "LONGITUDE": -75.2267, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 130.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 99.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.56, "MEDIAN_SPEND_PER_CUSTOMER": 18.56 }, "geometry": { "type": "Point", "coordinates": [ -75.2267, 39.931942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm6-w49", "LOCATION_NAME": "777 Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.9327, "LONGITUDE": -75.19274, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 106.0, "POI_CBG": 421010033005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1052.0, "Total Transactions": 59.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.96, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19274, 39.9327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-k9f", "LOCATION_NAME": "Choi's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.93128, "LONGITUDE": -75.182015, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 113.0, "POI_CBG": 421010032003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 228.0, "Total Transactions": 31.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.1, "MEDIAN_SPEND_PER_CUSTOMER": 91.04 }, "geometry": { "type": "Point", "coordinates": [ -75.182015, 39.93128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pg9-t9z", "LOCATION_NAME": "A&A Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.965589, "LONGITUDE": -75.165842, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 80.0, "POI_CBG": 421010134022.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1391.0, "Total Transactions": 160.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.79, "MEDIAN_SPEND_PER_CUSTOMER": 5.98 }, "geometry": { "type": "Point", "coordinates": [ -75.165842, 39.965589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2023, "Total Visits": 296.0, "Total Visitors": 128.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 180.0, "Total Spend": 1668.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.55, "MEDIAN_SPEND_PER_CUSTOMER": 37.55 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "LOCATION_NAME": "Royal Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 165.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 474.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.64, "MEDIAN_SPEND_PER_CUSTOMER": 25.94 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2023, "Total Visits": 442.0, "Total Visitors": 293.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 17586.0, "Total Transactions": 1248.0, "Total Customers": 820.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "LOCATION_NAME": "M & M Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2023, "Total Visits": 178.0, "Total Visitors": 106.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 27.0, "Total Spend": 911.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "LOCATION_NAME": "In Riva", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 239.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 26945.0, "Total Transactions": 214.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.0, "MEDIAN_SPEND_PER_CUSTOMER": 104.43 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "LOCATION_NAME": "Fiesta Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2023, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 408.0, "Total Spend": 2403.0, "Total Transactions": 100.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.28, "MEDIAN_SPEND_PER_CUSTOMER": 25.37 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2023, "Total Visits": 559.0, "Total Visitors": 199.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2845.0, "Total Transactions": 393.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.7, "MEDIAN_SPEND_PER_CUSTOMER": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.006322, "LONGITUDE": -75.0995, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 20.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5215.0, "Total Transactions": 286.0, "Total Customers": 170.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.67, "MEDIAN_SPEND_PER_CUSTOMER": 20.46 }, "geometry": { "type": "Point", "coordinates": [ -75.0995, 40.006322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pm3-xqz", "LOCATION_NAME": "The Victor Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931639, "LONGITUDE": -75.166324, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 133.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 79.0, "Total Spend": 7127.0, "Total Transactions": 58.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 115.88, "MEDIAN_SPEND_PER_CUSTOMER": 117.16 }, "geometry": { "type": "Point", "coordinates": [ -75.166324, 39.931639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-nwk", "LOCATION_NAME": "Louie Louie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953483, "LONGITUDE": -75.196032, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 159.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 4744.0, "Total Transactions": 56.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.29, "MEDIAN_SPEND_PER_CUSTOMER": 85.03 }, "geometry": { "type": "Point", "coordinates": [ -75.196032, 39.953483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@63s-dvy-8y9", "LOCATION_NAME": "48th Street Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953128, "LONGITUDE": -75.218509, "DATE_RANGE_START": 2023, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 134.0, "Total Spend": 824.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.4, "MEDIAN_SPEND_PER_CUSTOMER": 28.4 }, "geometry": { "type": "Point", "coordinates": [ -75.218509, 39.953128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.997186, "LONGITUDE": -75.153515, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010174002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5947.0, "Total Transactions": 286.0, "Total Customers": 154.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.153515, 39.997186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "LOCATION_NAME": "Ritz Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2023, "Total Visits": 540.0, "Total Visitors": 357.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 7889.0, "Total Transactions": 190.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.71, "MEDIAN_SPEND_PER_CUSTOMER": 43.79 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-v75", "LOCATION_NAME": "Rotten Ralph's Pub & Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94849, "LONGITUDE": -75.144173, "DATE_RANGE_START": 2023, "Total Visits": 200.0, "Total Visitors": 187.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4103.0, "Total Transactions": 93.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.62, "MEDIAN_SPEND_PER_CUSTOMER": 35.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144173, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "LOCATION_NAME": "Michaels Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.082361, "LONGITUDE": -75.023372, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 59.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 29706.0, "Total Transactions": 937.0, "Total Customers": 770.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.63, "MEDIAN_SPEND_PER_CUSTOMER": 25.45 }, "geometry": { "type": "Point", "coordinates": [ -75.023372, 40.082361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j5f", "LOCATION_NAME": "Paper Source", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.949774, "LONGITUDE": -75.168686, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 144.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7119.0, "Total Transactions": 239.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.01, "MEDIAN_SPEND_PER_CUSTOMER": 23.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168686, 39.949774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-6x5", "LOCATION_NAME": "Su Xing House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950249, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2023, "Total Visits": 247.0, "Total Visitors": 247.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1605.0, "Total Transactions": 41.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.62, "MEDIAN_SPEND_PER_CUSTOMER": 36.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 182.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.12, "MEDIAN_SPEND_PER_CUSTOMER": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "LOCATION_NAME": "Peddler Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 262.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2412.0, "Total Transactions": 331.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "LOCATION_NAME": "Mostly Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.941299, "LONGITUDE": -75.151874, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 993.0, "Total Transactions": 49.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.15, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151874, 39.941299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "LOCATION_NAME": "The Bayou Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 133.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 48.0, "Total Spend": 4038.0, "Total Transactions": 142.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "LOCATION_NAME": "Lucha Cartel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 198.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 4517.0, "Total Transactions": 183.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfx-p7q", "LOCATION_NAME": "China Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029274, "LONGITUDE": -75.223513, "DATE_RANGE_START": 2023, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010214003.0, "MEDIAN_DWELL": null, "Total Spend": 368.0, "Total Transactions": 8.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.5, "MEDIAN_SPEND_PER_CUSTOMER": 146.75 }, "geometry": { "type": "Point", "coordinates": [ -75.223513, 40.029274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "LOCATION_NAME": "SouthHouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2023, "Total Visits": 455.0, "Total Visitors": 298.0, "POI_CBG": 421010040023.0, "MEDIAN_DWELL": 28.0, "Total Spend": 7171.0, "Total Transactions": 160.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.78, "MEDIAN_SPEND_PER_CUSTOMER": 45.27 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pg2-n5z", "LOCATION_NAME": "Torres Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051691, "LONGITUDE": -75.181363, "DATE_RANGE_START": 2023, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010253002.0, "MEDIAN_DWELL": null, "Total Spend": 77.0, "Total Transactions": 9.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.88, "MEDIAN_SPEND_PER_CUSTOMER": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.051691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2023, "Total Visits": 552.0, "Total Visitors": 516.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6489.0, "Total Transactions": 408.0, "Total Customers": 302.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.22, "MEDIAN_SPEND_PER_CUSTOMER": 16.39 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-j5f", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.071816, "LONGITUDE": -75.193896, "DATE_RANGE_START": 2023, "Total Visits": 1952.0, "Total Visitors": 943.0, "POI_CBG": 421010257001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 104479.0, "Total Transactions": 2748.0, "Total Customers": 1125.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.99, "MEDIAN_SPEND_PER_CUSTOMER": 49.12 }, "geometry": { "type": "Point", "coordinates": [ -75.193896, 40.071816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2023, "Total Visits": 504.0, "Total Visitors": 391.0, "POI_CBG": 421010041013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 194.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.46, "MEDIAN_SPEND_PER_CUSTOMER": 11.32 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "LOCATION_NAME": "Higher Grounds", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 122.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 132.0, "Total Spend": 2078.0, "Total Transactions": 228.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.02, "MEDIAN_SPEND_PER_CUSTOMER": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2023, "Total Visits": 446.0, "Total Visitors": 371.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6104.0, "Total Transactions": 773.0, "Total Customers": 322.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.44, "MEDIAN_SPEND_PER_CUSTOMER": 11.41 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p83-xdv", "LOCATION_NAME": "Mayura Indian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086185, "LONGITUDE": -75.045124, "DATE_RANGE_START": 2023, "Total Visits": 1865.0, "Total Visitors": 1091.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 114.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.32, "MEDIAN_SPEND_PER_CUSTOMER": 45.32 }, "geometry": { "type": "Point", "coordinates": [ -75.045124, 40.086185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2023, "Total Visits": 2280.0, "Total Visitors": 1461.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 12192.0, "Total Transactions": 623.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 19.58 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2023, "Total Visits": 1324.0, "Total Visitors": 968.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4062.0, "Total Transactions": 168.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.72 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "LOCATION_NAME": "Finish Line", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 210.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 50.0, "Total Spend": 2524.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.0, "MEDIAN_SPEND_PER_CUSTOMER": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8n5", "LOCATION_NAME": "Columbia Sportswear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951969, "LONGITUDE": -75.157009, "DATE_RANGE_START": 2023, "Total Visits": 1414.0, "Total Visitors": 1040.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 4832.0, "Total Transactions": 64.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.95, "MEDIAN_SPEND_PER_CUSTOMER": 59.43 }, "geometry": { "type": "Point", "coordinates": [ -75.157009, 39.951969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8n-6kz", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.027244, "LONGITUDE": -75.059172, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 209.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 44.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.54, "MEDIAN_SPEND_PER_CUSTOMER": 17.54 }, "geometry": { "type": "Point", "coordinates": [ -75.059172, 40.027244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-6tv", "LOCATION_NAME": "Dollar Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951449, "LONGITUDE": -75.166353, "DATE_RANGE_START": 2023, "Total Visits": 70.0, "Total Visitors": 56.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 595.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.16, "MEDIAN_SPEND_PER_CUSTOMER": 18.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.951449 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-cnq", "LOCATION_NAME": "Vape O2", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.970583, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 145.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 210.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.86, "MEDIAN_SPEND_PER_CUSTOMER": 83.71 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.970583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "LOCATION_NAME": "OfficeMax", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.043406, "LONGITUDE": -75.054428, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8818.0, "Total Transactions": 269.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.93, "MEDIAN_SPEND_PER_CUSTOMER": 10.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054428, 40.043406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "LOCATION_NAME": "Thai Singha House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955293, "LONGITUDE": -75.200428, "DATE_RANGE_START": 2023, "Total Visits": 779.0, "Total Visitors": 601.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 392.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.81, "MEDIAN_SPEND_PER_CUSTOMER": 32.97 }, "geometry": { "type": "Point", "coordinates": [ -75.200428, 39.955293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-f75", "LOCATION_NAME": "Taqueria Dos Hermanos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946087, "LONGITUDE": -75.156048, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 223.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1239.0, "Total Transactions": 59.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.36, "MEDIAN_SPEND_PER_CUSTOMER": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.156048, 39.946087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-t5f", "LOCATION_NAME": "Cavanaugh's Riverdeck", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957739, "LONGITUDE": -75.137253, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 212.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 40002.0, "Total Transactions": 1663.0, "Total Customers": 794.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.89, "MEDIAN_SPEND_PER_CUSTOMER": 34.72 }, "geometry": { "type": "Point", "coordinates": [ -75.137253, 39.957739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-ph6-whq", "LOCATION_NAME": "Cedar Park Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986565, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2023, "Total Visits": 262.0, "Total Visitors": 15.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 312.0, "Total Spend": 1693.0, "Total Transactions": 55.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.84, "MEDIAN_SPEND_PER_CUSTOMER": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "LOCATION_NAME": "New Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2023, "Total Visits": 515.0, "Total Visitors": 382.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 22.0, "Total Spend": 627.0, "Total Transactions": 35.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.3, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-qzz", "LOCATION_NAME": "For Pete's Sake", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935493, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 184.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 42.0, "Total Spend": 2302.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.48, "MEDIAN_SPEND_PER_CUSTOMER": 99.56 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.935493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047016, "LONGITUDE": -74.99338, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2568.0, "Total Transactions": 308.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.62, "MEDIAN_SPEND_PER_CUSTOMER": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.99338, 40.047016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "LOCATION_NAME": "Cuba Libre Restaurant & Rum Bar Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 145.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 19018.0, "Total Transactions": 328.0, "Total Customers": 262.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.71, "MEDIAN_SPEND_PER_CUSTOMER": 51.43 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-btv", "LOCATION_NAME": "Tomorrow Gift", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.980373, "LONGITUDE": -75.17232, "DATE_RANGE_START": 2023, "Total Visits": 271.0, "Total Visitors": 144.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 158.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.23, "MEDIAN_SPEND_PER_CUSTOMER": 11.23 }, "geometry": { "type": "Point", "coordinates": [ -75.17232, 39.980373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "LOCATION_NAME": "Apple Retail Store", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2023, "Total Visits": 832.0, "Total Visitors": 733.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 123037.0, "Total Transactions": 517.0, "Total Customers": 428.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.36, "MEDIAN_SPEND_PER_CUSTOMER": 85.32 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-225@628-pjf-j7q", "LOCATION_NAME": "All The Way Live", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075632, "LONGITUDE": -75.205446, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 195.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 166.0, "Total Spend": 659.0, "Total Transactions": 20.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.48, "MEDIAN_SPEND_PER_CUSTOMER": 38.56 }, "geometry": { "type": "Point", "coordinates": [ -75.205446, 40.075632 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "LOCATION_NAME": "Pitchers Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.025101, "LONGITUDE": -75.223018, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10354.0, "Total Transactions": 376.0, "Total Customers": 259.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.95, "MEDIAN_SPEND_PER_CUSTOMER": 27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223018, 40.025101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "LOCATION_NAME": "Milkcrate Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2023, "Total Visits": 501.0, "Total Visitors": 432.0, "POI_CBG": 421010143002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 9704.0, "Total Transactions": 686.0, "Total Customers": 303.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.51, "MEDIAN_SPEND_PER_CUSTOMER": 19.06 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.952689, "LONGITUDE": -75.155856, "DATE_RANGE_START": 2023, "Total Visits": 2225.0, "Total Visitors": 1643.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 405.0, "Total Transactions": 23.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.44, "MEDIAN_SPEND_PER_CUSTOMER": 7.27 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 39.952689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-28v", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030559, "LONGITUDE": -75.104392, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2430.0, "Total Transactions": 95.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.02, "MEDIAN_SPEND_PER_CUSTOMER": 35.81 }, "geometry": { "type": "Point", "coordinates": [ -75.104392, 40.030559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974266, "LONGITUDE": -75.119833, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 463.0, "Total Transactions": 21.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.119833, 39.974266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.080372, "LONGITUDE": -75.171989, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3591.0, "Total Transactions": 128.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.43, "MEDIAN_SPEND_PER_CUSTOMER": 12.49 }, "geometry": { "type": "Point", "coordinates": [ -75.171989, 40.080372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "LOCATION_NAME": "Aura", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.961247, "LONGITUDE": -75.138825, "DATE_RANGE_START": 2023, "Total Visits": 425.0, "Total Visitors": 319.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 104154.0, "Total Transactions": 1171.0, "Total Customers": 931.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.11, "MEDIAN_SPEND_PER_CUSTOMER": 74.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138825, 39.961247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@63s-dw2-bkz", "LOCATION_NAME": "Betty & Bee", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.961573, "LONGITUDE": -75.24073, "DATE_RANGE_START": 2023, "Total Visits": 1447.0, "Total Visitors": 730.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 397.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.8, "MEDIAN_SPEND_PER_CUSTOMER": 39.8 }, "geometry": { "type": "Point", "coordinates": [ -75.24073, 39.961573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvw-wzf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.958441, "LONGITUDE": -75.236, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 159.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1316.0, "Total Transactions": 147.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.9, "MEDIAN_SPEND_PER_CUSTOMER": 9.47 }, "geometry": { "type": "Point", "coordinates": [ -75.236, 39.958441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgf-7kf", "LOCATION_NAME": "Lavish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967761, "LONGITUDE": -75.210086, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 135.0, "POI_CBG": 421010106001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 1603.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.0, "MEDIAN_SPEND_PER_CUSTOMER": 87.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210086, 39.967761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "LOCATION_NAME": "The Gold Standard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 160.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 799.0, "Total Transactions": 35.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.49, "MEDIAN_SPEND_PER_CUSTOMER": 28.25 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952554, "LONGITUDE": -75.166725, "DATE_RANGE_START": 2023, "Total Visits": 5390.0, "Total Visitors": 3301.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3327.0, "Total Transactions": 408.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.166725, 39.952554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgh-45f", "LOCATION_NAME": "City Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009428, "LONGITUDE": -75.164387, "DATE_RANGE_START": 2023, "Total Visits": 358.0, "Total Visitors": 148.0, "POI_CBG": 421010202004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1675.0, "Total Transactions": 122.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.46 }, "geometry": { "type": "Point", "coordinates": [ -75.164387, 40.009428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "LOCATION_NAME": "South Square Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2023, "Total Visits": 403.0, "Total Visitors": 204.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 30347.0, "Total Transactions": 1129.0, "Total Customers": 535.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.97, "MEDIAN_SPEND_PER_CUSTOMER": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "LOCATION_NAME": "Fairmart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 144.0, "POI_CBG": 421010131001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 2039.0, "Total Transactions": 187.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.78, "MEDIAN_SPEND_PER_CUSTOMER": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-xt9", "LOCATION_NAME": "Taproom", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.036887, "LONGITUDE": -75.031645, "DATE_RANGE_START": 2023, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010329004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 283.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.13, "MEDIAN_SPEND_PER_CUSTOMER": 54.13 }, "geometry": { "type": "Point", "coordinates": [ -75.031645, 40.036887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pp4-ks5", "LOCATION_NAME": "Caring Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.988275, "LONGITUDE": -75.128168, "DATE_RANGE_START": 2023, "Total Visits": 386.0, "Total Visitors": 366.0, "POI_CBG": 421010161003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 15.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.12, "MEDIAN_SPEND_PER_CUSTOMER": 6.12 }, "geometry": { "type": "Point", "coordinates": [ -75.128168, 39.988275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-brk", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.993994, "LONGITUDE": -75.0915, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 193.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1737.0, "Total Transactions": 40.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.92, "MEDIAN_SPEND_PER_CUSTOMER": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.0915, 39.993994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "LOCATION_NAME": "Comfort & Floyd", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2023, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1254.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.23, "MEDIAN_SPEND_PER_CUSTOMER": 42.77 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996405, "LONGITUDE": -75.166707, "DATE_RANGE_START": 2023, "Total Visits": 983.0, "Total Visitors": 705.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 681.0, "Total Transactions": 43.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.61, "MEDIAN_SPEND_PER_CUSTOMER": 19.76 }, "geometry": { "type": "Point", "coordinates": [ -75.166707, 39.996405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "LOCATION_NAME": "Four Seasons Hotels and Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.95506, "LONGITUDE": -75.170758, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 187.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 286.0, "Total Spend": 54366.0, "Total Transactions": 635.0, "Total Customers": 517.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170758, 39.95506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-wc5", "LOCATION_NAME": "Craft Hall", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962419, "LONGITUDE": -75.136038, "DATE_RANGE_START": 2023, "Total Visits": 676.0, "Total Visitors": 562.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 76.0, "Total Spend": 2112.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.55, "MEDIAN_SPEND_PER_CUSTOMER": 71.55 }, "geometry": { "type": "Point", "coordinates": [ -75.136038, 39.962419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "LOCATION_NAME": "Fountain Porter", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 212.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 19.0, "Total Spend": 429.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.4, "MEDIAN_SPEND_PER_CUSTOMER": 31.85 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2023, "Total Visits": 302.0, "Total Visitors": 268.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2642.0, "Total Transactions": 63.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.28, "MEDIAN_SPEND_PER_CUSTOMER": 34.16 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8n-cqz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.035677, "LONGITUDE": -75.070034, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010313002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 823.0, "Total Transactions": 23.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.67, "MEDIAN_SPEND_PER_CUSTOMER": 43.66 }, "geometry": { "type": "Point", "coordinates": [ -75.070034, 40.035677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "LOCATION_NAME": "The Flavor Spot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2023, "Total Visits": 185.0, "Total Visitors": 148.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2514.0, "Total Transactions": 95.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.6, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-224@628-pnx-835", "LOCATION_NAME": "Cafe An", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96323, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2023, "Total Visits": 645.0, "Total Visitors": 519.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 736.0, "Total Transactions": 58.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.36, "MEDIAN_SPEND_PER_CUSTOMER": 15.26 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.96323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "LOCATION_NAME": "Sang Kee Peking Duck House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 252.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10697.0, "Total Transactions": 254.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.75, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.945591, "LONGITUDE": -75.238096, "DATE_RANGE_START": 2023, "Total Visits": 728.0, "Total Visitors": 485.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 8.0, "Total Spend": 7726.0, "Total Transactions": 173.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.44, "MEDIAN_SPEND_PER_CUSTOMER": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.238096, 39.945591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p82-swk", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.050277, "LONGITUDE": -75.086994, "DATE_RANGE_START": 2023, "Total Visits": 1365.0, "Total Visitors": 534.0, "POI_CBG": 421010306001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 61231.0, "Total Transactions": 1726.0, "Total Customers": 800.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.98, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.086994, 40.050277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-mrk", "LOCATION_NAME": "Elixr Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952527, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2023, "Total Visits": 1635.0, "Total Visitors": 933.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 91.0, "Total Spend": 333.0, "Total Transactions": 39.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.05, "MEDIAN_SPEND_PER_CUSTOMER": 13.13 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.952527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-nwk", "LOCATION_NAME": "One Pound Cheesesteaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989593, "LONGITUDE": -75.125509, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 175.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 630.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.25, "MEDIAN_SPEND_PER_CUSTOMER": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.125509, 39.989593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "LOCATION_NAME": "Sunny Side Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 152.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1138.0, "Total Transactions": 69.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 16.06 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 437.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5306.0, "Total Transactions": 659.0, "Total Customers": 277.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.04, "MEDIAN_SPEND_PER_CUSTOMER": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm3-syv", "LOCATION_NAME": "Bing Bing Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928965, "LONGITUDE": -75.164747, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 127.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1272.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.1, "MEDIAN_SPEND_PER_CUSTOMER": 81.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164747, 39.928965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7v-hkf", "LOCATION_NAME": "Supreme Pizzeria & Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054943, "LONGITUDE": -75.063126, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 128.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.63, "MEDIAN_SPEND_PER_CUSTOMER": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.063126, 40.054943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "LOCATION_NAME": "Mission BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2023, "Total Visits": 450.0, "Total Visitors": 405.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5429.0, "Total Transactions": 149.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.12, "MEDIAN_SPEND_PER_CUSTOMER": 31.18 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999377, "LONGITUDE": -75.132935, "DATE_RANGE_START": 2023, "Total Visits": 406.0, "Total Visitors": 392.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3023.0, "Total Transactions": 184.0, "Total Customers": 123.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.04, "MEDIAN_SPEND_PER_CUSTOMER": 13.75 }, "geometry": { "type": "Point", "coordinates": [ -75.132935, 39.999377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2023, "Total Visits": 114.0, "Total Visitors": 105.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3356.0, "Total Transactions": 162.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.26, "MEDIAN_SPEND_PER_CUSTOMER": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-68v", "LOCATION_NAME": "J'aime French Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948054, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 197.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 85.0, "Total Spend": 314.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.91, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.948054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yqf", "LOCATION_NAME": "Dia Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.955502, "LONGITUDE": -75.155375, "DATE_RANGE_START": 2023, "Total Visits": 21368.0, "Total Visitors": 14769.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 186.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.56, "MEDIAN_SPEND_PER_CUSTOMER": 74.36 }, "geometry": { "type": "Point", "coordinates": [ -75.155375, 39.955502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2023, "Total Visits": 2142.0, "Total Visitors": 1749.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 62019.0, "Total Transactions": 2951.0, "Total Customers": 1506.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 22.99 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 304.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1714.0, "Total Transactions": 48.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.64, "MEDIAN_SPEND_PER_CUSTOMER": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-3yv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022096, "LONGITUDE": -75.125775, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 348.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 843.0, "Total Transactions": 31.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.57 }, "geometry": { "type": "Point", "coordinates": [ -75.125775, 40.022096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-wtv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054812, "LONGITUDE": -75.054903, "DATE_RANGE_START": 2023, "Total Visits": 669.0, "Total Visitors": 541.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1643.0, "Total Transactions": 140.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.29, "MEDIAN_SPEND_PER_CUSTOMER": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.054903, 40.054812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2023, "Total Visits": 980.0, "Total Visitors": 659.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 15978.0, "Total Transactions": 813.0, "Total Customers": 485.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.73, "MEDIAN_SPEND_PER_CUSTOMER": 18.82 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.962232, "LONGITUDE": -75.172217, "DATE_RANGE_START": 2023, "Total Visits": 3897.0, "Total Visitors": 2040.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 53.0, "Total Spend": 8313.0, "Total Transactions": 235.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.88, "MEDIAN_SPEND_PER_CUSTOMER": 27.21 }, "geometry": { "type": "Point", "coordinates": [ -75.172217, 39.962232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "LOCATION_NAME": "Yummy Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 158.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 918.0, "Total Transactions": 43.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pzn-zj9", "LOCATION_NAME": "Sweeney's Station Saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.131466, "LONGITUDE": -75.011396, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 101.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 34.0, "Total Spend": 228.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.39, "MEDIAN_SPEND_PER_CUSTOMER": 90.99 }, "geometry": { "type": "Point", "coordinates": [ -75.011396, 40.131466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-kpv", "LOCATION_NAME": "Foreign Bazaar", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.952051, "LONGITUDE": -75.172662, "DATE_RANGE_START": 2023, "Total Visits": 4324.0, "Total Visitors": 2851.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 569.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.84, "MEDIAN_SPEND_PER_CUSTOMER": 25.84 }, "geometry": { "type": "Point", "coordinates": [ -75.172662, 39.952051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.962319, "LONGITUDE": -75.162376, "DATE_RANGE_START": 2023, "Total Visits": 536.0, "Total Visitors": 353.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 11394.0, "Total Transactions": 709.0, "Total Customers": 457.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162376, 39.962319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.086019, "LONGITUDE": -75.046798, "DATE_RANGE_START": 2023, "Total Visits": 828.0, "Total Visitors": 381.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 9378.0, "Total Transactions": 451.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.39, "MEDIAN_SPEND_PER_CUSTOMER": 23.46 }, "geometry": { "type": "Point", "coordinates": [ -75.046798, 40.086019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-xt9", "LOCATION_NAME": "Four Points By Sheraton", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.955962, "LONGITUDE": -75.159171, "DATE_RANGE_START": 2023, "Total Visits": 43.0, "Total Visitors": 31.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1130.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 451.08, "MEDIAN_SPEND_PER_CUSTOMER": 451.08 }, "geometry": { "type": "Point", "coordinates": [ -75.159171, 39.955962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pp4-r49", "LOCATION_NAME": "Pet Supplies Plus", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.974037, "LONGITUDE": -75.12038, "DATE_RANGE_START": 2023, "Total Visits": 204.0, "Total Visitors": 197.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 17253.0, "Total Transactions": 378.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.96, "MEDIAN_SPEND_PER_CUSTOMER": 44.22 }, "geometry": { "type": "Point", "coordinates": [ -75.12038, 39.974037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phy-h3q", "LOCATION_NAME": "El Patron bar restaurant", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.022108, "LONGITUDE": -75.133422, "DATE_RANGE_START": 2023, "Total Visits": 478.0, "Total Visitors": 138.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 805.0, "Total Spend": 293.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 116.9, "MEDIAN_SPEND_PER_CUSTOMER": 116.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133422, 40.022108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2023, "Total Visits": 574.0, "Total Visitors": 445.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8341.0, "Total Transactions": 987.0, "Total Customers": 472.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.58, "MEDIAN_SPEND_PER_CUSTOMER": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.01122, "LONGITUDE": -75.113025, "DATE_RANGE_START": 2023, "Total Visits": 571.0, "Total Visitors": 441.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 243.0, "Total Transactions": 21.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.78, "MEDIAN_SPEND_PER_CUSTOMER": 15.03 }, "geometry": { "type": "Point", "coordinates": [ -75.113025, 40.01122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-w6k", "LOCATION_NAME": "Food & Friends", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948295, "LONGITUDE": -75.174192, "DATE_RANGE_START": 2023, "Total Visits": 344.0, "Total Visitors": 239.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8096.0, "Total Transactions": 412.0, "Total Customers": 259.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.51, "MEDIAN_SPEND_PER_CUSTOMER": 25.25 }, "geometry": { "type": "Point", "coordinates": [ -75.174192, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "LOCATION_NAME": "Primal Nutrition", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 232.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1387.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.75, "MEDIAN_SPEND_PER_CUSTOMER": 59.75 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031276, "LONGITUDE": -75.124753, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 178.0, "POI_CBG": 421010286005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 620.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.7, "MEDIAN_SPEND_PER_CUSTOMER": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.124753, 40.031276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-phy-rc5", "LOCATION_NAME": "King's Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020448, "LONGITUDE": -75.133697, "DATE_RANGE_START": 2023, "Total Visits": 473.0, "Total Visitors": 209.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 127.0, "Total Spend": 208.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.95, "MEDIAN_SPEND_PER_CUSTOMER": 82.93 }, "geometry": { "type": "Point", "coordinates": [ -75.133697, 40.020448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgj-n5z", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.993437, "LONGITUDE": -75.144074, "DATE_RANGE_START": 2023, "Total Visits": 341.0, "Total Visitors": 182.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1794.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.5, "MEDIAN_SPEND_PER_CUSTOMER": 118.26 }, "geometry": { "type": "Point", "coordinates": [ -75.144074, 39.993437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "LOCATION_NAME": "Produce Junction", "TOP_CATEGORY": "Florists", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2023, "Total Visits": 261.0, "Total Visitors": 93.0, "POI_CBG": 421010120001.0, "MEDIAN_DWELL": 574.0, "Total Spend": 1130.0, "Total Transactions": 30.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.65, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006464, "LONGITUDE": -75.100401, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 25.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 11.0, "Total Spend": 654.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.48, "MEDIAN_SPEND_PER_CUSTOMER": 22.8 }, "geometry": { "type": "Point", "coordinates": [ -75.100401, 40.006464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "LOCATION_NAME": "Penn Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2023, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 379.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.14, "MEDIAN_SPEND_PER_CUSTOMER": 18.52 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "LOCATION_NAME": "Green Farm", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 153.0, "POI_CBG": 421010357012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 195.0, "Total Transactions": 13.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.52, "MEDIAN_SPEND_PER_CUSTOMER": 25.08 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "LOCATION_NAME": "Cafe Lift", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2023, "Total Visits": 115.0, "Total Visitors": 115.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 43.0, "Total Spend": 1111.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.81, "MEDIAN_SPEND_PER_CUSTOMER": 32.81 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bzf", "LOCATION_NAME": "Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025762, "LONGITUDE": -75.22385, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 105.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 291.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.81, "MEDIAN_SPEND_PER_CUSTOMER": 47.86 }, "geometry": { "type": "Point", "coordinates": [ -75.22385, 40.025762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "LOCATION_NAME": "Locust Rendezvous", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948577, "LONGITUDE": -75.165905, "DATE_RANGE_START": 2023, "Total Visits": 782.0, "Total Visitors": 494.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 8.0, "Total Spend": 9378.0, "Total Transactions": 199.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.23, "MEDIAN_SPEND_PER_CUSTOMER": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165905, 39.948577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pm9-whq", "LOCATION_NAME": "Kurry Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950478, "LONGITUDE": -75.145895, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 185.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.58, "MEDIAN_SPEND_PER_CUSTOMER": 34.13 }, "geometry": { "type": "Point", "coordinates": [ -75.145895, 39.950478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7v-whq", "LOCATION_NAME": "NAPA Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.059386, "LONGITUDE": -75.079587, "DATE_RANGE_START": 2023, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010338004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 15930.0, "Total Transactions": 108.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.02, "MEDIAN_SPEND_PER_CUSTOMER": 61.02 }, "geometry": { "type": "Point", "coordinates": [ -75.079587, 40.059386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2023, "Total Visits": 254.0, "Total Visitors": 244.0, "POI_CBG": 421010149005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2120.0, "Total Transactions": 215.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "LOCATION_NAME": "David's Mai Lai Wah", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955619, "LONGITUDE": -75.156142, "DATE_RANGE_START": 2023, "Total Visits": 1959.0, "Total Visitors": 1383.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4693.0, "Total Transactions": 147.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 39.955619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3yv", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101772, "LONGITUDE": -75.007116, "DATE_RANGE_START": 2023, "Total Visits": 1571.0, "Total Visitors": 1135.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 1029.0, "Total Transactions": 26.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.38, "MEDIAN_SPEND_PER_CUSTOMER": 34.6 }, "geometry": { "type": "Point", "coordinates": [ -75.007116, 40.101772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-t9z", "LOCATION_NAME": "Last Drop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945156, "LONGITUDE": -75.163064, "DATE_RANGE_START": 2023, "Total Visits": 272.0, "Total Visitors": 225.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 39.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.12, "MEDIAN_SPEND_PER_CUSTOMER": 9.12 }, "geometry": { "type": "Point", "coordinates": [ -75.163064, 39.945156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-qs5", "LOCATION_NAME": "Jet Wine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944107, "LONGITUDE": -75.168005, "DATE_RANGE_START": 2023, "Total Visits": 813.0, "Total Visitors": 282.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 232.0, "Total Spend": 2783.0, "Total Transactions": 74.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.4, "MEDIAN_SPEND_PER_CUSTOMER": 43.09 }, "geometry": { "type": "Point", "coordinates": [ -75.168005, 39.944107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2023, "Total Visits": 758.0, "Total Visitors": 554.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 12.0, "Total Spend": 598.0, "Total Transactions": 26.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.3, "MEDIAN_SPEND_PER_CUSTOMER": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "LOCATION_NAME": "Rosario's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 99.0, "POI_CBG": 421010022002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2319.0, "Total Transactions": 75.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.77, "MEDIAN_SPEND_PER_CUSTOMER": 28.61 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pg9-ty9", "LOCATION_NAME": "Stockyard Sandwich", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96307, "LONGITUDE": -75.164329, "DATE_RANGE_START": 2023, "Total Visits": 100.0, "Total Visitors": 59.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 149.0, "Total Spend": 193.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.52, "MEDIAN_SPEND_PER_CUSTOMER": 39.14 }, "geometry": { "type": "Point", "coordinates": [ -75.164329, 39.96307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007466, "LONGITUDE": -75.212296, "DATE_RANGE_START": 2023, "Total Visits": 772.0, "Total Visitors": 644.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 7.0, "Total Spend": 12786.0, "Total Transactions": 858.0, "Total Customers": 650.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.69, "MEDIAN_SPEND_PER_CUSTOMER": 14.95 }, "geometry": { "type": "Point", "coordinates": [ -75.212296, 40.007466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-ph8-qmk", "LOCATION_NAME": "Blue Lagoon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978086, "LONGITUDE": -75.267183, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": null, "Total Spend": 153.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.267183, 39.978086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-7wk", "LOCATION_NAME": "Fuel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953486, "LONGITUDE": -75.187952, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 15.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 304.0, "Total Spend": 2610.0, "Total Transactions": 155.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.12, "MEDIAN_SPEND_PER_CUSTOMER": 15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.187952, 39.953486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-4jv", "LOCATION_NAME": "Del Rossi's Cheesesteak", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961482, "LONGITUDE": -75.14504, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 78.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 113.0, "Total Spend": 5086.0, "Total Transactions": 183.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.21, "MEDIAN_SPEND_PER_CUSTOMER": 30.17 }, "geometry": { "type": "Point", "coordinates": [ -75.14504, 39.961482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-hnq", "LOCATION_NAME": "TyeMeka's Soul Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038113, "LONGITUDE": -75.176919, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 179.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": 178.0, "Total Spend": 364.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.3, "MEDIAN_SPEND_PER_CUSTOMER": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176919, 40.038113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956509, "LONGITUDE": -75.195045, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1477.0, "Total Transactions": 188.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 6.94 }, "geometry": { "type": "Point", "coordinates": [ -75.195045, 39.956509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085645, "LONGITUDE": -74.96201, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 66.0, "Total Spend": 2592.0, "Total Transactions": 50.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.5, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96201, 40.085645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-p8m-v2k", "LOCATION_NAME": "Moon Flower House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029561, "LONGITUDE": -75.058358, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 64.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 66.0, "Total Spend": 259.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.058358, 40.029561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055835, "LONGITUDE": -75.157899, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 13.0, "POI_CBG": 421010265006.0, "MEDIAN_DWELL": 26.0, "Total Spend": 7025.0, "Total Transactions": 517.0, "Total Customers": 326.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.54, "MEDIAN_SPEND_PER_CUSTOMER": 13.95 }, "geometry": { "type": "Point", "coordinates": [ -75.157899, 40.055835 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-dsq", "LOCATION_NAME": "Mi Rancho Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030773, "LONGITUDE": -75.08543, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1182.0, "Total Transactions": 24.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.34, "MEDIAN_SPEND_PER_CUSTOMER": 50.29 }, "geometry": { "type": "Point", "coordinates": [ -75.08543, 40.030773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-t7q", "LOCATION_NAME": "Maria's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013401, "LONGITUDE": -75.135844, "DATE_RANGE_START": 2023, "Total Visits": 200.0, "Total Visitors": 91.0, "POI_CBG": 421010197002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1101.0, "Total Transactions": 58.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135844, 40.013401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-8vz", "LOCATION_NAME": "Old Madrid", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031738, "LONGITUDE": -75.131244, "DATE_RANGE_START": 2023, "Total Visits": 98.0, "Total Visitors": 65.0, "POI_CBG": 421010286004.0, "MEDIAN_DWELL": 44.0, "Total Spend": 703.0, "Total Transactions": 11.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.0, "MEDIAN_SPEND_PER_CUSTOMER": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131244, 40.031738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qcq", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.038908, "LONGITUDE": -75.119161, "DATE_RANGE_START": 2023, "Total Visits": 592.0, "Total Visitors": 565.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 974.0, "Total Transactions": 18.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.51, "MEDIAN_SPEND_PER_CUSTOMER": 80.75 }, "geometry": { "type": "Point", "coordinates": [ -75.119161, 40.038908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvp-bff", "LOCATION_NAME": "Beer Stop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.945295, "LONGITUDE": -75.238695, "DATE_RANGE_START": 2023, "Total Visits": 728.0, "Total Visitors": 485.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3516.0, "Total Transactions": 116.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.97, "MEDIAN_SPEND_PER_CUSTOMER": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.238695, 39.945295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2023, "Total Visits": 601.0, "Total Visitors": 450.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9375.0, "Total Transactions": 1136.0, "Total Customers": 559.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.51, "MEDIAN_SPEND_PER_CUSTOMER": 10.27 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2023, "Total Visits": 371.0, "Total Visitors": 256.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6309.0, "Total Transactions": 739.0, "Total Customers": 271.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.03, "MEDIAN_SPEND_PER_CUSTOMER": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zvf", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.997217, "LONGITUDE": -75.154386, "DATE_RANGE_START": 2023, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1262.0, "Total Transactions": 16.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.15, "MEDIAN_SPEND_PER_CUSTOMER": 57.31 }, "geometry": { "type": "Point", "coordinates": [ -75.154386, 39.997217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "LOCATION_NAME": "Fiesta Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075138, "LONGITUDE": -75.20454, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 184.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1224.0, "Total Transactions": 65.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.20454, 40.075138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052417, "LONGITUDE": -75.008753, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 11.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 111.0, "Total Spend": 8937.0, "Total Transactions": 224.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.008753, 40.052417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "266-222@628-pm4-sh5", "LOCATION_NAME": "Ramayana Store", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.924377, "LONGITUDE": -75.159369, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 172.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 2.0, "Total Spend": 108.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159369, 39.924377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-tsq", "LOCATION_NAME": "Chaes Food LLC", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.983616, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2023, "Total Visits": 426.0, "Total Visitors": 294.0, "POI_CBG": 421010162002.0, "MEDIAN_DWELL": 156.0, "Total Spend": 7747.0, "Total Transactions": 36.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 157.99, "MEDIAN_SPEND_PER_CUSTOMER": 277.44 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.983616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.979432, "LONGITUDE": -75.222966, "DATE_RANGE_START": 2023, "Total Visits": 522.0, "Total Visitors": 467.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 25776.0, "Total Transactions": 808.0, "Total Customers": 698.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 25.87 }, "geometry": { "type": "Point", "coordinates": [ -75.222966, 39.979432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "LOCATION_NAME": "1 Tippling Place", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2023, "Total Visits": 307.0, "Total Visitors": 286.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1949.0, "Total Transactions": 29.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2023, "Total Visits": 6605.0, "Total Visitors": 3966.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 3954.0, "Total Transactions": 89.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.7, "MEDIAN_SPEND_PER_CUSTOMER": 46.96 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvx-vcq", "LOCATION_NAME": "Gold Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943788, "LONGITUDE": -75.210959, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 173.0, "POI_CBG": 421010074001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1078.0, "Total Transactions": 76.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.9, "MEDIAN_SPEND_PER_CUSTOMER": 14.59 }, "geometry": { "type": "Point", "coordinates": [ -75.210959, 39.943788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "LOCATION_NAME": "The Sidecar Bar & Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 138.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 762.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.93, "MEDIAN_SPEND_PER_CUSTOMER": 58.93 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9p-z75", "LOCATION_NAME": "Prince Of Pizza & Falafel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101596, "LONGITUDE": -75.028395, "DATE_RANGE_START": 2023, "Total Visits": 1705.0, "Total Visitors": 1144.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1450.0, "Total Transactions": 41.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.7, "MEDIAN_SPEND_PER_CUSTOMER": 25.68 }, "geometry": { "type": "Point", "coordinates": [ -75.028395, 40.101596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-w8v", "LOCATION_NAME": "Friday Saturday Sunday", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948852, "LONGITUDE": -75.175934, "DATE_RANGE_START": 2023, "Total Visits": 1245.0, "Total Visitors": 884.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 29.0, "Total Spend": 5240.0, "Total Transactions": 49.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.2, "MEDIAN_SPEND_PER_CUSTOMER": 100.01 }, "geometry": { "type": "Point", "coordinates": [ -75.175934, 39.948852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "LOCATION_NAME": "Spice C", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2023, "Total Visits": 296.0, "Total Visitors": 272.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2295.0, "Total Transactions": 63.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.6, "MEDIAN_SPEND_PER_CUSTOMER": 33.68 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "LOCATION_NAME": "Paisas Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2023, "Total Visits": 764.0, "Total Visitors": 515.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 505.0, "Total Transactions": 31.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.62, "MEDIAN_SPEND_PER_CUSTOMER": 22.28 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034777, "LONGITUDE": -75.066117, "DATE_RANGE_START": 2023, "Total Visits": 851.0, "Total Visitors": 611.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 35.0, "Total Spend": 1418.0, "Total Transactions": 50.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.54, "MEDIAN_SPEND_PER_CUSTOMER": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.066117, 40.034777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-22g@628-pfy-h3q", "LOCATION_NAME": "Rally House Ivy Ridge", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.044151, "LONGITUDE": -75.232923, "DATE_RANGE_START": 2023, "Total Visits": 2385.0, "Total Visitors": 1164.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 96.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.232923, 40.044151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hdv", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.960789, "LONGITUDE": -75.170345, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 754.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 9765.0, "Total Transactions": 235.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.2, "MEDIAN_SPEND_PER_CUSTOMER": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.170345, 39.960789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvw-cdv", "LOCATION_NAME": "Monica Restaurat", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965596, "LONGITUDE": -75.230016, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 89.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 35.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230016, 39.965596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2023, "Total Visits": 724.0, "Total Visitors": 618.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6629.0, "Total Transactions": 400.0, "Total Customers": 314.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.53, "MEDIAN_SPEND_PER_CUSTOMER": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-rhq", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.03837, "LONGITUDE": -75.117191, "DATE_RANGE_START": 2023, "Total Visits": 338.0, "Total Visitors": 327.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 3828.0, "Total Transactions": 106.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.97, "MEDIAN_SPEND_PER_CUSTOMER": 32.14 }, "geometry": { "type": "Point", "coordinates": [ -75.117191, 40.03837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "LOCATION_NAME": "Bottle Bar East", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2023, "Total Visits": 164.0, "Total Visitors": 145.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16809.0, "Total Transactions": 595.0, "Total Customers": 372.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962248, "LONGITUDE": -75.172948, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 21.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 662.0, "Total Spend": 13099.0, "Total Transactions": 421.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.37, "MEDIAN_SPEND_PER_CUSTOMER": 33.35 }, "geometry": { "type": "Point", "coordinates": [ -75.172948, 39.962248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-hh5", "LOCATION_NAME": "Goodfella's Vape Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.921333, "LONGITUDE": -75.17706, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010038001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 142.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17706, 39.921333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-p75-9cq", "LOCATION_NAME": "Deals", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043742, "LONGITUDE": -75.019324, "DATE_RANGE_START": 2023, "Total Visits": 3458.0, "Total Visitors": 1551.0, "POI_CBG": 421019802001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.99, "MEDIAN_SPEND_PER_CUSTOMER": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.019324, 40.043742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-6x5", "LOCATION_NAME": "Harp & Crown", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950579, "LONGITUDE": -75.166788, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3242.0, "Total Transactions": 46.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.62, "MEDIAN_SPEND_PER_CUSTOMER": 54.68 }, "geometry": { "type": "Point", "coordinates": [ -75.166788, 39.950579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-d35", "LOCATION_NAME": "honeygrow", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978421, "LONGITUDE": -75.157332, "DATE_RANGE_START": 2023, "Total Visits": 517.0, "Total Visitors": 402.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 590.0, "Total Transactions": 29.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.59 }, "geometry": { "type": "Point", "coordinates": [ -75.157332, 39.978421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "LOCATION_NAME": "Good Day Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2023, "Total Visits": 309.0, "Total Visitors": 276.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1431.0, "Total Transactions": 91.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.51, "MEDIAN_SPEND_PER_CUSTOMER": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2023, "Total Visits": 486.0, "Total Visitors": 383.0, "POI_CBG": 421010101005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10582.0, "Total Transactions": 1036.0, "Total Customers": 328.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.6, "MEDIAN_SPEND_PER_CUSTOMER": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgh-vmk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982441, "LONGITUDE": -75.155993, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 1595.0, "Total Transactions": 120.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.17, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 39.982441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "LOCATION_NAME": "Stateside", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 157.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 6230.0, "Total Transactions": 134.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.32, "MEDIAN_SPEND_PER_CUSTOMER": 38.04 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "LOCATION_NAME": "The Twisted Tail", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941831, "LONGITUDE": -75.145229, "DATE_RANGE_START": 2023, "Total Visits": 301.0, "Total Visitors": 292.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 52.0, "Total Spend": 1824.0, "Total Transactions": 25.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.53, "MEDIAN_SPEND_PER_CUSTOMER": 68.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145229, 39.941831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.997309, "LONGITUDE": -75.092724, "DATE_RANGE_START": 2023, "Total Visits": 1811.0, "Total Visitors": 1483.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 32929.0, "Total Transactions": 1722.0, "Total Customers": 1157.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.1, "MEDIAN_SPEND_PER_CUSTOMER": 21.83 }, "geometry": { "type": "Point", "coordinates": [ -75.092724, 39.997309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "LOCATION_NAME": "Jamba", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.876746, "LONGITUDE": -75.247167, "DATE_RANGE_START": 2023, "Total Visits": 144.0, "Total Visitors": 132.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 492.0, "Total Transactions": 38.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.247167, 39.876746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2023, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010314022.0, "MEDIAN_DWELL": 26.0, "Total Spend": 2704.0, "Total Transactions": 53.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.19, "MEDIAN_SPEND_PER_CUSTOMER": 49.36 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2023, "Total Visits": 341.0, "Total Visitors": 212.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2157.0, "Total Transactions": 268.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.96, "MEDIAN_SPEND_PER_CUSTOMER": 9.89 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "LOCATION_NAME": "Somerset Splits", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2023, "Total Visits": 143.0, "Total Visitors": 125.0, "POI_CBG": 421010180013.0, "MEDIAN_DWELL": 93.0, "Total Spend": 1439.0, "Total Transactions": 71.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.93, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pm4-pjv", "LOCATION_NAME": "Di Bruno Bros", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938055, "LONGITUDE": -75.158145, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 406.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 813.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.35, "MEDIAN_SPEND_PER_CUSTOMER": 32.88 }, "geometry": { "type": "Point", "coordinates": [ -75.158145, 39.938055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2023, "Total Visits": 838.0, "Total Visitors": 577.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 7143.0, "Total Transactions": 897.0, "Total Customers": 319.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.3, "MEDIAN_SPEND_PER_CUSTOMER": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2023, "Total Visits": 383.0, "Total Visitors": 244.0, "POI_CBG": 421010314021.0, "MEDIAN_DWELL": 14.0, "Total Spend": 12698.0, "Total Transactions": 321.0, "Total Customers": 219.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.62, "MEDIAN_SPEND_PER_CUSTOMER": 38.31 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.954266, "LONGITUDE": -75.225768, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010085003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1398.0, "Total Transactions": 50.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.93, "MEDIAN_SPEND_PER_CUSTOMER": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225768, 39.954266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pj6-k4v", "LOCATION_NAME": "H Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.044993, "LONGITUDE": -75.117488, "DATE_RANGE_START": 2023, "Total Visits": 4739.0, "Total Visitors": 2381.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 124221.0, "Total Transactions": 3798.0, "Total Customers": 2984.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.65, "MEDIAN_SPEND_PER_CUSTOMER": 16.59 }, "geometry": { "type": "Point", "coordinates": [ -75.117488, 40.044993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p7w-v2k", "LOCATION_NAME": "Finish Line", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.046751, "LONGITUDE": -75.054635, "DATE_RANGE_START": 2023, "Total Visits": 2253.0, "Total Visitors": 1595.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 37.0, "Total Spend": 19944.0, "Total Transactions": 259.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 127.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054635, 40.046751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-p7q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.01382, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 441.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1729.0, "Total Transactions": 104.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 40.01382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "LOCATION_NAME": "Harbor Freight Tools", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2023, "Total Visits": 565.0, "Total Visitors": 478.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 38693.0, "Total Transactions": 601.0, "Total Customers": 441.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.35, "MEDIAN_SPEND_PER_CUSTOMER": 41.01 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2023, "Total Visits": 142.0, "Total Visitors": 127.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 845.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.3, "MEDIAN_SPEND_PER_CUSTOMER": 166.35 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "LOCATION_NAME": "East Falls Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010170001.0, "MEDIAN_DWELL": null, "Total Spend": 7670.0, "Total Transactions": 302.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.46, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2023, "Total Visits": 778.0, "Total Visitors": 590.0, "POI_CBG": 421010012021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 27195.0, "Total Transactions": 1898.0, "Total Customers": 726.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.03 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085956, "LONGITUDE": -74.963406, "DATE_RANGE_START": 2023, "Total Visits": 1301.0, "Total Visitors": 1051.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 25.0, "Total Spend": 6521.0, "Total Transactions": 124.0, "Total Customers": 116.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -74.963406, 40.085956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-wp9", "LOCATION_NAME": "Artist & Craftsman Supply", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.950372, "LONGITUDE": -75.146048, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 594.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.52, "MEDIAN_SPEND_PER_CUSTOMER": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.146048, 39.950372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "LOCATION_NAME": "Gallelli Formal Wear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 113.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 2280.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 140.0, "MEDIAN_SPEND_PER_CUSTOMER": 160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8m-v2k", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.029571, "LONGITUDE": -75.058564, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 144.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1668.0, "Total Transactions": 144.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.36, "MEDIAN_SPEND_PER_CUSTOMER": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.058564, 40.029571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-223@628-pmb-5mk", "LOCATION_NAME": "Paper On Pine", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.949779, "LONGITUDE": -75.162653, "DATE_RANGE_START": 2023, "Total Visits": 4502.0, "Total Visitors": 2743.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 87.0, "Total Spend": 1001.0, "Total Transactions": 51.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.162653, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954962, "LONGITUDE": -75.206929, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 18.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 197.0, "Total Spend": 487.0, "Total Transactions": 64.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.206929, 39.954962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.045136, "LONGITUDE": -75.088252, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3482.0, "Total Transactions": 167.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088252, 40.045136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "LOCATION_NAME": "ALDO", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951749, "LONGITUDE": -75.168187, "DATE_RANGE_START": 2023, "Total Visits": 876.0, "Total Visitors": 611.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 34.0, "Total Spend": 2930.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.97, "MEDIAN_SPEND_PER_CUSTOMER": 79.97 }, "geometry": { "type": "Point", "coordinates": [ -75.168187, 39.951749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.065634, "LONGITUDE": -75.071931, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 7.0, "Total Spend": 682.0, "Total Transactions": 28.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.72, "MEDIAN_SPEND_PER_CUSTOMER": 26.61 }, "geometry": { "type": "Point", "coordinates": [ -75.071931, 40.065634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pfz-ckf", "LOCATION_NAME": "Manayunk Farmers Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022685, "LONGITUDE": -75.219324, "DATE_RANGE_START": 2023, "Total Visits": 346.0, "Total Visitors": 298.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 59.0, "Total Spend": 115.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.62, "MEDIAN_SPEND_PER_CUSTOMER": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.219324, 40.022685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "LOCATION_NAME": "The Fresh Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2023, "Total Visits": 608.0, "Total Visitors": 357.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 27247.0, "Total Transactions": 570.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.28, "MEDIAN_SPEND_PER_CUSTOMER": 39.43 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9p-qj9", "LOCATION_NAME": "Green Farmers Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.102668, "LONGITUDE": -75.031061, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 48.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.11, "MEDIAN_SPEND_PER_CUSTOMER": 19.11 }, "geometry": { "type": "Point", "coordinates": [ -75.031061, 40.102668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "LOCATION_NAME": "Frankford Hall", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2023, "Total Visits": 633.0, "Total Visitors": 527.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 30732.0, "Total Transactions": 1180.0, "Total Customers": 829.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.83 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp5-djv", "LOCATION_NAME": "Rico Mexican Tacos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992042, "LONGITUDE": -75.10984, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 155.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 113.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.58, "MEDIAN_SPEND_PER_CUSTOMER": 45.05 }, "geometry": { "type": "Point", "coordinates": [ -75.10984, 39.992042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-whq", "LOCATION_NAME": "Ocean City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95631, "LONGITUDE": -75.15439, "DATE_RANGE_START": 2023, "Total Visits": 353.0, "Total Visitors": 342.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 2256.0, "Total Transactions": 38.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.7, "MEDIAN_SPEND_PER_CUSTOMER": 60.07 }, "geometry": { "type": "Point", "coordinates": [ -75.15439, 39.95631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-td9", "LOCATION_NAME": "Volver", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947333, "LONGITUDE": -75.16571, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 10.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2297.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.8, "MEDIAN_SPEND_PER_CUSTOMER": 77.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16571, 39.947333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 190.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3108.0, "Total Transactions": 187.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.21, "MEDIAN_SPEND_PER_CUSTOMER": 17.56 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-9s5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912003, "LONGITUDE": -75.149828, "DATE_RANGE_START": 2023, "Total Visits": 2296.0, "Total Visitors": 1851.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 357.0, "Total Transactions": 21.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.7, "MEDIAN_SPEND_PER_CUSTOMER": 16.76 }, "geometry": { "type": "Point", "coordinates": [ -75.149828, 39.912003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2023, "Total Visits": 401.0, "Total Visitors": 352.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 12648.0, "Total Transactions": 780.0, "Total Customers": 565.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.79, "MEDIAN_SPEND_PER_CUSTOMER": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@63s-dvy-xwk", "LOCATION_NAME": "Lil' Pop Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953164, "LONGITUDE": -75.210265, "DATE_RANGE_START": 2023, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": null, "Total Spend": 235.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.78, "MEDIAN_SPEND_PER_CUSTOMER": 5.78 }, "geometry": { "type": "Point", "coordinates": [ -75.210265, 39.953164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pn5", "LOCATION_NAME": "Tortilleria San Roman", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937643, "LONGITUDE": -75.157989, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 128.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.157989, 39.937643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "LOCATION_NAME": "Two Brothers", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.943876, "LONGITUDE": -75.228134, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 101.0, "POI_CBG": 421010071024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 168.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.228134, 39.943876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "263-222@628-pm3-y5f", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934047, "LONGITUDE": -75.166056, "DATE_RANGE_START": 2023, "Total Visits": 89.0, "Total Visitors": 83.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 125.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.17, "MEDIAN_SPEND_PER_CUSTOMER": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.166056, 39.934047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2023, "Total Visits": 951.0, "Total Visitors": 714.0, "POI_CBG": 421010337022.0, "MEDIAN_DWELL": 14.0, "Total Spend": 6763.0, "Total Transactions": 321.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.72, "MEDIAN_SPEND_PER_CUSTOMER": 21.14 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.06154, "LONGITUDE": -75.05684, "DATE_RANGE_START": 2023, "Total Visits": 980.0, "Total Visitors": 822.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5727.0, "Total Transactions": 228.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.2, "MEDIAN_SPEND_PER_CUSTOMER": 21.68 }, "geometry": { "type": "Point", "coordinates": [ -75.05684, 40.06154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-v75", "LOCATION_NAME": "Buffalo Billiards", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948002, "LONGITUDE": -75.143309, "DATE_RANGE_START": 2023, "Total Visits": 1002.0, "Total Visitors": 759.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 49.0, "Total Spend": 25082.0, "Total Transactions": 882.0, "Total Customers": 566.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.63, "MEDIAN_SPEND_PER_CUSTOMER": 33.52 }, "geometry": { "type": "Point", "coordinates": [ -75.143309, 39.948002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.995182, "LONGITUDE": -75.095704, "DATE_RANGE_START": 2023, "Total Visits": 413.0, "Total Visitors": 371.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 476.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.95, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.095704, 39.995182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-t5f", "LOCATION_NAME": "Sum Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965955, "LONGITUDE": -75.160323, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 209.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 379.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.7, "MEDIAN_SPEND_PER_CUSTOMER": 52.51 }, "geometry": { "type": "Point", "coordinates": [ -75.160323, 39.965955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p82-nqz", "LOCATION_NAME": "Matz Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.04141, "LONGITUDE": -75.075896, "DATE_RANGE_START": 2023, "Total Visits": 120.0, "Total Visitors": 109.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 85.0, "Total Spend": 295.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 117.8, "MEDIAN_SPEND_PER_CUSTOMER": 117.8 }, "geometry": { "type": "Point", "coordinates": [ -75.075896, 40.04141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-73q", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950321, "LONGITUDE": -75.163776, "DATE_RANGE_START": 2023, "Total Visits": 1052.0, "Total Visitors": 744.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1655.0, "Total Transactions": 83.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.6, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.163776, 39.950321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.099595, "LONGITUDE": -75.024526, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 133.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 954.0, "Total Transactions": 143.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.34, "MEDIAN_SPEND_PER_CUSTOMER": 7.21 }, "geometry": { "type": "Point", "coordinates": [ -75.024526, 40.099595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007696, "LONGITUDE": -75.174522, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4851.0, "Total Transactions": 514.0, "Total Customers": 283.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.74, "MEDIAN_SPEND_PER_CUSTOMER": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174522, 40.007696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 58.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 655.0, "Total Transactions": 76.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.87, "MEDIAN_SPEND_PER_CUSTOMER": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j9z", "LOCATION_NAME": "aka.", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.95037, "LONGITUDE": -75.17042, "DATE_RANGE_START": 2023, "Total Visits": 2147.0, "Total Visitors": 1645.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 60.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.17042, 39.95037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pm5-2ff", "LOCATION_NAME": "Wokano", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937034, "LONGITUDE": -75.161864, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1279.0, "Total Transactions": 21.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.5, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161864, 39.937034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-p89-nt9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012382, "LONGITUDE": -75.067917, "DATE_RANGE_START": 2023, "Total Visits": 297.0, "Total Visitors": 263.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 44.0, "Total Spend": 7093.0, "Total Transactions": 365.0, "Total Customers": 271.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 21.56 }, "geometry": { "type": "Point", "coordinates": [ -75.067917, 40.012382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032695, "LONGITUDE": -75.179789, "DATE_RANGE_START": 2023, "Total Visits": 351.0, "Total Visitors": 281.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10344.0, "Total Transactions": 1284.0, "Total Customers": 582.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.179789, 40.032695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pnw-nkf", "LOCATION_NAME": "Lost Bread Co", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.970863, "LONGITUDE": -75.13643, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 3.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 288.0, "Total Spend": 2521.0, "Total Transactions": 193.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.37, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13643, 39.970863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "LOCATION_NAME": "Academy Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 4.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 40.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.31, "MEDIAN_SPEND_PER_CUSTOMER": 4.63 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.913049, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 153.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.23, "MEDIAN_SPEND_PER_CUSTOMER": 15.15 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.913049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phz-6c5", "LOCATION_NAME": "L & M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.0235, "LONGITUDE": -75.115742, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010289023.0, "MEDIAN_DWELL": null, "Total Spend": 111.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.115742, 40.0235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp4-kxq", "LOCATION_NAME": "Quick Stop", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983855, "LONGITUDE": -75.125542, "DATE_RANGE_START": 2023, "Total Visits": 416.0, "Total Visitors": 248.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3763.0, "Total Transactions": 306.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.48, "MEDIAN_SPEND_PER_CUSTOMER": 16.56 }, "geometry": { "type": "Point", "coordinates": [ -75.125542, 39.983855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "LOCATION_NAME": "Northeast Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 142.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2087.0, "Total Transactions": 60.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.25, "MEDIAN_SPEND_PER_CUSTOMER": 33.75 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "LOCATION_NAME": "Angelo's Pizza House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 123.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 653.0, "Total Transactions": 35.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.72, "MEDIAN_SPEND_PER_CUSTOMER": 16.01 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "LOCATION_NAME": "Frank's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2045.0, "Total Transactions": 91.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.18, "MEDIAN_SPEND_PER_CUSTOMER": 33.58 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pmb-8y9", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951633, "LONGITUDE": -75.156013, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1658.0, "Total Transactions": 203.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.98, "MEDIAN_SPEND_PER_CUSTOMER": 7.93 }, "geometry": { "type": "Point", "coordinates": [ -75.156013, 39.951633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "LOCATION_NAME": "Green Leaf Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 215.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 62.0, "Total Spend": 1326.0, "Total Transactions": 60.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.1, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p86-gtv", "LOCATION_NAME": "All In Time", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.075731, "LONGITUDE": -75.085308, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 213.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 311.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085308, 40.075731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "LOCATION_NAME": "Street Side", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 101.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 782.0, "Total Transactions": 39.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.09, "MEDIAN_SPEND_PER_CUSTOMER": 20.55 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-ghq", "LOCATION_NAME": "Buccann", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051098, "LONGITUDE": -75.066611, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 155.0, "POI_CBG": 421010310001.0, "MEDIAN_DWELL": 140.0, "Total Spend": 938.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.8, "MEDIAN_SPEND_PER_CUSTOMER": 107.32 }, "geometry": { "type": "Point", "coordinates": [ -75.066611, 40.051098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-pm4-p5f", "LOCATION_NAME": "Sophie's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934749, "LONGITUDE": -75.153259, "DATE_RANGE_START": 2023, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1216.0, "Total Transactions": 21.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.1, "MEDIAN_SPEND_PER_CUSTOMER": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153259, 39.934749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dvy-mx5", "LOCATION_NAME": "Tea Do", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95462, "LONGITUDE": -75.199919, "DATE_RANGE_START": 2023, "Total Visits": 1701.0, "Total Visitors": 1199.0, "POI_CBG": 421010088012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 45.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.29, "MEDIAN_SPEND_PER_CUSTOMER": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.199919, 39.95462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-p35", "LOCATION_NAME": "Gold Coast Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.041915, "LONGITUDE": -75.075423, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 202.0, "POI_CBG": 421010311011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 645.0, "Total Transactions": 54.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.43, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.075423, 40.041915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-x89", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030003, "LONGITUDE": -75.14637, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 11.0, "POI_CBG": 421010282001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 616.0, "Total Transactions": 16.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.19, "MEDIAN_SPEND_PER_CUSTOMER": 38.16 }, "geometry": { "type": "Point", "coordinates": [ -75.14637, 40.030003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-zs5", "LOCATION_NAME": "Lady Love", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941785, "LONGITUDE": -75.151232, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 155.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1093.0, "Total Transactions": 24.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.5, "MEDIAN_SPEND_PER_CUSTOMER": 51.29 }, "geometry": { "type": "Point", "coordinates": [ -75.151232, 39.941785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22b@628-pmb-7h5", "LOCATION_NAME": "Bain's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949072, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2023, "Total Visits": 5351.0, "Total Visitors": 3774.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 9.0, "Total Spend": 77.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.67, "MEDIAN_SPEND_PER_CUSTOMER": 9.67 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.949072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pp4-kxq", "LOCATION_NAME": "Cloud 9 Clay", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.983701, "LONGITUDE": -75.125112, "DATE_RANGE_START": 2023, "Total Visits": 29.0, "Total Visitors": 9.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 543.0, "Total Spend": 338.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.72, "MEDIAN_SPEND_PER_CUSTOMER": 28.72 }, "geometry": { "type": "Point", "coordinates": [ -75.125112, 39.983701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm3-vzz", "LOCATION_NAME": "LaScala's Birra", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928592, "LONGITUDE": -75.165123, "DATE_RANGE_START": 2023, "Total Visits": 475.0, "Total Visitors": 312.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 5877.0, "Total Transactions": 93.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.71, "MEDIAN_SPEND_PER_CUSTOMER": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165123, 39.928592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "LOCATION_NAME": "Giovanni's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2023, "Total Visits": 125.0, "Total Visitors": 114.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 456.0, "Total Transactions": 25.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.45, "MEDIAN_SPEND_PER_CUSTOMER": 15.04 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "LOCATION_NAME": "Talk of the Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071898, "LONGITUDE": -75.161365, "DATE_RANGE_START": 2023, "Total Visits": 344.0, "Total Visitors": 283.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1339.0, "Total Transactions": 51.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 28.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161365, 40.071898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@63s-dvy-mx5", "LOCATION_NAME": "NAM Vietnamese Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95508, "LONGITUDE": -75.199446, "DATE_RANGE_START": 2023, "Total Visits": 1701.0, "Total Visitors": 1199.0, "POI_CBG": 421010088012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3446.0, "Total Transactions": 120.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.22, "MEDIAN_SPEND_PER_CUSTOMER": 27.59 }, "geometry": { "type": "Point", "coordinates": [ -75.199446, 39.95508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 76.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 82.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "LOCATION_NAME": "Pizzeria Stella", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 373.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5586.0, "Total Transactions": 78.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.03 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "LOCATION_NAME": "Cold Stone Creamery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978197, "LONGITUDE": -75.119468, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 15.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 354.0, "Total Spend": 3921.0, "Total Transactions": 204.0, "Total Customers": 180.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.09, "MEDIAN_SPEND_PER_CUSTOMER": 16.23 }, "geometry": { "type": "Point", "coordinates": [ -75.119468, 39.978197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "LOCATION_NAME": "J&J Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.925374, "LONGITUDE": -75.157469, "DATE_RANGE_START": 2023, "Total Visits": 323.0, "Total Visitors": 189.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 94.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.22 }, "geometry": { "type": "Point", "coordinates": [ -75.157469, 39.925374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2023, "Total Visits": 547.0, "Total Visitors": 402.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 151.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.17, "MEDIAN_SPEND_PER_CUSTOMER": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "LOCATION_NAME": "CLo", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2023, "Total Visits": 99.0, "Total Visitors": 16.0, "POI_CBG": 421010195022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1288.0, "Total Transactions": 48.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.76, "MEDIAN_SPEND_PER_CUSTOMER": 19.51 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pmf-kvf", "LOCATION_NAME": "Buena Onda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95152, "LONGITUDE": -75.173859, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 87.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.77, "MEDIAN_SPEND_PER_CUSTOMER": 24.63 }, "geometry": { "type": "Point", "coordinates": [ -75.173859, 39.95152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "LOCATION_NAME": "Yamitsuki Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2023, "Total Visits": 263.0, "Total Visitors": 184.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 3990.0, "Total Transactions": 93.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.34, "MEDIAN_SPEND_PER_CUSTOMER": 40.05 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pm9-s5z", "LOCATION_NAME": "PJ Clarkes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948105, "LONGITUDE": -75.151179, "DATE_RANGE_START": 2023, "Total Visits": 1630.0, "Total Visitors": 1025.0, "POI_CBG": 421010010011.0, "MEDIAN_DWELL": 91.0, "Total Spend": 86.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.42, "MEDIAN_SPEND_PER_CUSTOMER": 34.42 }, "geometry": { "type": "Point", "coordinates": [ -75.151179, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmf-y7q", "LOCATION_NAME": "Sunset Social", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952424, "LONGITUDE": -75.183701, "DATE_RANGE_START": 2023, "Total Visits": 2052.0, "Total Visitors": 1169.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 60.0, "Total Spend": 3195.0, "Total Transactions": 127.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.92, "MEDIAN_SPEND_PER_CUSTOMER": 31.02 }, "geometry": { "type": "Point", "coordinates": [ -75.183701, 39.952424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm9-yd9", "LOCATION_NAME": "Famous 4th Street Delicatessen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940489, "LONGITUDE": -75.149633, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 232.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8728.0, "Total Transactions": 227.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 36.99 }, "geometry": { "type": "Point", "coordinates": [ -75.149633, 39.940489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-73q", "LOCATION_NAME": "Dr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947797, "LONGITUDE": -75.193456, "DATE_RANGE_START": 2023, "Total Visits": 13803.0, "Total Visitors": 7404.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 99.0, "Total Spend": 4699.0, "Total Transactions": 851.0, "Total Customers": 347.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.65, "MEDIAN_SPEND_PER_CUSTOMER": 8.45 }, "geometry": { "type": "Point", "coordinates": [ -75.193456, 39.947797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "LOCATION_NAME": "Pub & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2023, "Total Visits": 154.0, "Total Visitors": 154.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2213.0, "Total Transactions": 40.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.25, "MEDIAN_SPEND_PER_CUSTOMER": 95.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-223@628-p7x-7dv", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05021, "LONGITUDE": -75.064783, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 128.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 116.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.61, "MEDIAN_SPEND_PER_CUSTOMER": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.064783, 40.05021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-9cq", "LOCATION_NAME": "Fu Wah Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948295, "LONGITUDE": -75.217025, "DATE_RANGE_START": 2023, "Total Visits": 160.0, "Total Visitors": 143.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6715.0, "Total Transactions": 395.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.79, "MEDIAN_SPEND_PER_CUSTOMER": 20.66 }, "geometry": { "type": "Point", "coordinates": [ -75.217025, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032694, "LONGITUDE": -75.063231, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5985.0, "Total Transactions": 296.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.17, "MEDIAN_SPEND_PER_CUSTOMER": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.063231, 40.032694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9r-4y9", "LOCATION_NAME": "Chuck E. Cheese's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076158, "LONGITUDE": -75.031371, "DATE_RANGE_START": 2023, "Total Visits": 375.0, "Total Visitors": 352.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 884.0, "Total Transactions": 29.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 26.36 }, "geometry": { "type": "Point", "coordinates": [ -75.031371, 40.076158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2023, "Total Visits": 1805.0, "Total Visitors": 1105.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 166.0, "Total Spend": 18347.0, "Total Transactions": 787.0, "Total Customers": 478.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.81, "MEDIAN_SPEND_PER_CUSTOMER": 20.29 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "LOCATION_NAME": "Seorabol Korean Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2023, "Total Visits": 351.0, "Total Visitors": 86.0, "POI_CBG": 421010274023.0, "MEDIAN_DWELL": 369.0, "Total Spend": 2253.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.85, "MEDIAN_SPEND_PER_CUSTOMER": 86.36 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phy-bhq", "LOCATION_NAME": "Old English Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.015571, "LONGITUDE": -75.140754, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 15.0, "POI_CBG": 421010197005.0, "MEDIAN_DWELL": 80.0, "Total Spend": 1877.0, "Total Transactions": 69.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.140754, 40.015571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "LOCATION_NAME": "Butcher Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9521, "LONGITUDE": -75.174892, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 6639.0, "Total Transactions": 99.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.43, "MEDIAN_SPEND_PER_CUSTOMER": 57.31 }, "geometry": { "type": "Point", "coordinates": [ -75.174892, 39.9521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-xwk", "LOCATION_NAME": "aka.", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952015, "LONGITUDE": -75.18362, "DATE_RANGE_START": 2023, "Total Visits": 9106.0, "Total Visitors": 6194.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 158.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.18362, 39.952015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "LOCATION_NAME": "Bleu Martini", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949361, "LONGITUDE": -75.144203, "DATE_RANGE_START": 2023, "Total Visits": 876.0, "Total Visitors": 655.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 16737.0, "Total Transactions": 240.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 53.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144203, 39.949361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "LOCATION_NAME": "So Korean Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2023, "Total Visits": 401.0, "Total Visitors": 283.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3231.0, "Total Transactions": 23.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 131.55, "MEDIAN_SPEND_PER_CUSTOMER": 137.33 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-j35", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950756, "LONGITUDE": -75.17035, "DATE_RANGE_START": 2023, "Total Visits": 271.0, "Total Visitors": 254.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1146.0, "Total Transactions": 51.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.38, "MEDIAN_SPEND_PER_CUSTOMER": 20.38 }, "geometry": { "type": "Point", "coordinates": [ -75.17035, 39.950756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2023, "Total Visits": 430.0, "Total Visitors": 368.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5971.0, "Total Transactions": 420.0, "Total Customers": 319.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.99, "MEDIAN_SPEND_PER_CUSTOMER": 13.18 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmd-zfz", "LOCATION_NAME": "Small Oven Pastry Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939225, "LONGITUDE": -75.180201, "DATE_RANGE_START": 2023, "Total Visits": 365.0, "Total Visitors": 324.0, "POI_CBG": 421010020001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 200.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.14, "MEDIAN_SPEND_PER_CUSTOMER": 21.28 }, "geometry": { "type": "Point", "coordinates": [ -75.180201, 39.939225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "LOCATION_NAME": "Secret Garden", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 40.051665, "LONGITUDE": -75.235851, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 4517.0, "Total Transactions": 65.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.59, "MEDIAN_SPEND_PER_CUSTOMER": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235851, 40.051665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvt-zzz", "LOCATION_NAME": "Island Food Market Corp", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.917119, "LONGITUDE": -75.246077, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 124.0, "POI_CBG": 421010063004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 44.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.0, "MEDIAN_SPEND_PER_CUSTOMER": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246077, 39.917119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2023, "Total Visits": 500.0, "Total Visitors": 359.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 7.0, "Total Spend": 71.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.58, "MEDIAN_SPEND_PER_CUSTOMER": 28.17 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-68v", "LOCATION_NAME": "Virgin Hair Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.050173, "LONGITUDE": -75.06287, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 34.0, "Total Spend": 570.0, "Total Transactions": 15.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.02, "MEDIAN_SPEND_PER_CUSTOMER": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.050173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.047172, "LONGITUDE": -75.142507, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 19.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 124.0, "Total Spend": 4891.0, "Total Transactions": 187.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.05, "MEDIAN_SPEND_PER_CUSTOMER": 20.11 }, "geometry": { "type": "Point", "coordinates": [ -75.142507, 40.047172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.931156, "LONGITUDE": -75.225634, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 19.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 592.0, "Total Transactions": 68.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.85, "MEDIAN_SPEND_PER_CUSTOMER": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -75.225634, 39.931156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-phy-kmk", "LOCATION_NAME": "Hong Kong", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025869, "LONGITUDE": -75.132575, "DATE_RANGE_START": 2023, "Total Visits": 1511.0, "Total Visitors": 1142.0, "POI_CBG": 421010286003.0, "MEDIAN_DWELL": 23.0, "Total Spend": 14367.0, "Total Transactions": 321.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.62, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.132575, 40.025869 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-224@628-pnx-ch5", "LOCATION_NAME": "Goldie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974539, "LONGITUDE": -75.134161, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 15.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 143.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.27, "MEDIAN_SPEND_PER_CUSTOMER": 12.27 }, "geometry": { "type": "Point", "coordinates": [ -75.134161, 39.974539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@63s-dw4-rzf", "LOCATION_NAME": "Gachi Sushi and Noodle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895158, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 579.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.87, "MEDIAN_SPEND_PER_CUSTOMER": 20.14 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.895158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "LOCATION_NAME": "Pizza & Steak Master", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2023, "Total Visits": 30.0, "Total Visitors": 23.0, "POI_CBG": 421010253001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 621.0, "Total Transactions": 31.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.68, "MEDIAN_SPEND_PER_CUSTOMER": 24.07 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-j7q", "LOCATION_NAME": "&pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951498, "LONGITUDE": -75.170529, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 223.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 228.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.86, "MEDIAN_SPEND_PER_CUSTOMER": 20.86 }, "geometry": { "type": "Point", "coordinates": [ -75.170529, 39.951498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgd-zfz", "LOCATION_NAME": "Ramen Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957167, "LONGITUDE": -75.192099, "DATE_RANGE_START": 2023, "Total Visits": 233.0, "Total Visitors": 179.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3560.0, "Total Transactions": 70.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.04, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192099, 39.957167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "LOCATION_NAME": "Fishtown Social", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4327.0, "Total Transactions": 85.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.92, "MEDIAN_SPEND_PER_CUSTOMER": 51.54 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pm9-tqf", "LOCATION_NAME": "Wetzel's Pretzels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952391, "LONGITUDE": -75.157424, "DATE_RANGE_START": 2023, "Total Visits": 686.0, "Total Visitors": 465.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2673.0, "Total Transactions": 281.0, "Total Customers": 257.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.87, "MEDIAN_SPEND_PER_CUSTOMER": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.157424, 39.952391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 140.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 828.0, "Total Transactions": 46.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 16.35 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-6rk", "LOCATION_NAME": "Magic Carpet Foods", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950491, "LONGITUDE": -75.195575, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 206.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.195575, 39.950491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918394, "LONGITUDE": -75.180382, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 473.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 9352.0, "Total Transactions": 450.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 17.34 }, "geometry": { "type": "Point", "coordinates": [ -75.180382, 39.918394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p86-hbk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.075681, "LONGITUDE": -75.084662, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4586.0, "Total Transactions": 228.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.084662, 40.075681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-qfz", "LOCATION_NAME": "Rex at the Royal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943832, "LONGITUDE": -75.168235, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 46.0, "Total Spend": 231.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 92.4, "MEDIAN_SPEND_PER_CUSTOMER": 92.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168235, 39.943832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgm-4vz", "LOCATION_NAME": "Franklin's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.01092, "LONGITUDE": -75.189423, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 212.0, "POI_CBG": 421010207003.0, "MEDIAN_DWELL": 70.0, "Total Spend": 1301.0, "Total Transactions": 35.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.68, "MEDIAN_SPEND_PER_CUSTOMER": 31.6 }, "geometry": { "type": "Point", "coordinates": [ -75.189423, 40.01092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-9vf", "LOCATION_NAME": "Soul Boat", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931707, "LONGITUDE": -75.169132, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 56.0, "POI_CBG": 421010030024.0, "MEDIAN_DWELL": 230.0, "Total Spend": 127.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.12, "MEDIAN_SPEND_PER_CUSTOMER": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.169132, 39.931707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-xyv", "LOCATION_NAME": "Little Saigon Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956146, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2023, "Total Visits": 866.0, "Total Visitors": 608.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1053.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.0, "MEDIAN_SPEND_PER_CUSTOMER": 47.65 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.956146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "LOCATION_NAME": "Kitchen Kapers", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2023, "Total Visits": 343.0, "Total Visitors": 269.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 3660.0, "Total Transactions": 59.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.62, "MEDIAN_SPEND_PER_CUSTOMER": 37.75 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.9557, "LONGITUDE": -75.192556, "DATE_RANGE_START": 2023, "Total Visits": 2543.0, "Total Visitors": 1613.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 878.0, "Total Transactions": 83.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.49, "MEDIAN_SPEND_PER_CUSTOMER": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.192556, 39.9557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "LOCATION_NAME": "O'Neals Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 165.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 4412.0, "Total Transactions": 120.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.62, "MEDIAN_SPEND_PER_CUSTOMER": 29.84 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pp2-2kz", "LOCATION_NAME": "Aramingo Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.992487, "LONGITUDE": -75.10127, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 18.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 6600.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 276.8, "MEDIAN_SPEND_PER_CUSTOMER": 302.8 }, "geometry": { "type": "Point", "coordinates": [ -75.10127, 39.992487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p82-8y9", "LOCATION_NAME": "Casa Del Mofongo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036175, "LONGITUDE": -75.088212, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010390002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 3035.0, "Total Transactions": 73.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 53.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088212, 40.036175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2023, "Total Visits": 497.0, "Total Visitors": 336.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2208.0, "Total Transactions": 64.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pfv-649", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043975, "LONGITUDE": -75.190733, "DATE_RANGE_START": 2023, "Total Visits": 292.0, "Total Visitors": 147.0, "POI_CBG": 421010237001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 1385.0, "Total Transactions": 134.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.32, "MEDIAN_SPEND_PER_CUSTOMER": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.190733, 40.043975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "LOCATION_NAME": "Accent On Animals", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2023, "Total Visits": 857.0, "Total Visitors": 678.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1831.0, "Total Transactions": 69.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.63, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-hbk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.996446, "LONGITUDE": -75.165985, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 142.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3401.0, "Total Transactions": 138.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.165985, 39.996446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pgm-68v", "LOCATION_NAME": "The Black Squirrel Pub and Haunt", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.009228, "LONGITUDE": -75.193913, "DATE_RANGE_START": 2023, "Total Visits": 486.0, "Total Visitors": 244.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 1000.0, "Total Spend": 4559.0, "Total Transactions": 60.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.62, "MEDIAN_SPEND_PER_CUSTOMER": 84.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193913, 40.009228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.081907, "LONGITUDE": -75.037884, "DATE_RANGE_START": 2023, "Total Visits": 351.0, "Total Visitors": 185.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 192.0, "Total Transactions": 20.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.06, "MEDIAN_SPEND_PER_CUSTOMER": 16.73 }, "geometry": { "type": "Point", "coordinates": [ -75.037884, 40.081907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg4-mx5", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.043579, "LONGITUDE": -75.159459, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1225.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.91, "MEDIAN_SPEND_PER_CUSTOMER": 56.91 }, "geometry": { "type": "Point", "coordinates": [ -75.159459, 40.043579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj3-wzf", "LOCATION_NAME": "Shop and Carry Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.030414, "LONGITUDE": -75.144615, "DATE_RANGE_START": 2023, "Total Visits": 235.0, "Total Visitors": 184.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 3.0, "Total Spend": 225.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144615, 40.030414 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2023, "Total Visits": 1650.0, "Total Visitors": 987.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 157482.0, "Total Transactions": 4660.0, "Total Customers": 2439.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.31, "MEDIAN_SPEND_PER_CUSTOMER": 37.27 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 137.0, "POI_CBG": 421010171003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2196.0, "Total Transactions": 101.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.12, "MEDIAN_SPEND_PER_CUSTOMER": 19.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-zs5", "LOCATION_NAME": "Golden Triangle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94154, "LONGITUDE": -75.15097, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 188.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 132.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.42, "MEDIAN_SPEND_PER_CUSTOMER": 39.42 }, "geometry": { "type": "Point", "coordinates": [ -75.15097, 39.94154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-sbk", "LOCATION_NAME": "King Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.018964, "LONGITUDE": -75.130503, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 170.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1160.0, "Total Transactions": 20.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.58, "MEDIAN_SPEND_PER_CUSTOMER": 91.58 }, "geometry": { "type": "Point", "coordinates": [ -75.130503, 40.018964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046836, "LONGITUDE": -75.055497, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 170.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 24.0, "Total Spend": 2945.0, "Total Transactions": 78.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 30.74 }, "geometry": { "type": "Point", "coordinates": [ -75.055497, 40.046836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921804, "LONGITUDE": -75.146278, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1434.0, "Total Transactions": 69.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.79, "MEDIAN_SPEND_PER_CUSTOMER": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146278, 39.921804 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050212, "LONGITUDE": -75.09463, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 929.0, "Total Transactions": 125.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.97, "MEDIAN_SPEND_PER_CUSTOMER": 7.02 }, "geometry": { "type": "Point", "coordinates": [ -75.09463, 40.050212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "LOCATION_NAME": "The Little Apple", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.025783, "LONGITUDE": -75.223965, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 103.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3732.0, "Total Transactions": 85.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.54, "MEDIAN_SPEND_PER_CUSTOMER": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.223965, 40.025783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.936536, "LONGITUDE": -75.160372, "DATE_RANGE_START": 2023, "Total Visits": 942.0, "Total Visitors": 896.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1972.0, "Total Transactions": 65.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.63, "MEDIAN_SPEND_PER_CUSTOMER": 31.97 }, "geometry": { "type": "Point", "coordinates": [ -75.160372, 39.936536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "LOCATION_NAME": "Tandy Leather Factory", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.102488, "LONGITUDE": -75.008893, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 204.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 820.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.28, "MEDIAN_SPEND_PER_CUSTOMER": 96.63 }, "geometry": { "type": "Point", "coordinates": [ -75.008893, 40.102488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7y-dn5", "LOCATION_NAME": "China Panda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04995, "LONGITUDE": -75.094913, "DATE_RANGE_START": 2023, "Total Visits": 76.0, "Total Visitors": 39.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 105.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.99, "MEDIAN_SPEND_PER_CUSTOMER": 41.99 }, "geometry": { "type": "Point", "coordinates": [ -75.094913, 40.04995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8h-789", "LOCATION_NAME": "Palm Tree Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029254, "LONGITUDE": -75.03641, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 168.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1188.0, "Total Transactions": 96.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.74, "MEDIAN_SPEND_PER_CUSTOMER": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.03641, 40.029254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm3-vpv", "LOCATION_NAME": "Mesh Vintage", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.927333, "LONGITUDE": -75.166704, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 145.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 675.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166704, 39.927333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "LOCATION_NAME": "Chubby's Fox Chase Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 39.0, "POI_CBG": 421010341006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1079.0, "Total Transactions": 49.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.84, "MEDIAN_SPEND_PER_CUSTOMER": 26.48 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95033, "LONGITUDE": -75.158429, "DATE_RANGE_START": 2023, "Total Visits": 1286.0, "Total Visitors": 942.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 8676.0, "Total Transactions": 676.0, "Total Customers": 491.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.48, "MEDIAN_SPEND_PER_CUSTOMER": 13.64 }, "geometry": { "type": "Point", "coordinates": [ -75.158429, 39.95033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-s89", "LOCATION_NAME": "Pen and Pencil", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948013, "LONGITUDE": -75.167208, "DATE_RANGE_START": 2023, "Total Visits": 257.0, "Total Visitors": 198.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1428.0, "Total Transactions": 50.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167208, 39.948013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "LOCATION_NAME": "Scrub Pro", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2023, "Total Visits": 2509.0, "Total Visitors": 1736.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 4519.0, "Total Transactions": 71.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.57, "MEDIAN_SPEND_PER_CUSTOMER": 48.79 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-5fz", "LOCATION_NAME": "Fergie's Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949621, "LONGITUDE": -75.161121, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 190.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 80.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.9, "MEDIAN_SPEND_PER_CUSTOMER": 31.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161121, 39.949621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7b-kpv", "LOCATION_NAME": "China City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055685, "LONGITUDE": -75.004529, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": null, "Total Spend": 68.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004529, 40.055685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "LOCATION_NAME": "Melograno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950954, "LONGITUDE": -75.17418, "DATE_RANGE_START": 2023, "Total Visits": 1702.0, "Total Visitors": 1169.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 687.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 116.12, "MEDIAN_SPEND_PER_CUSTOMER": 101.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17418, 39.950954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm3-vzz", "LOCATION_NAME": "A Novel Idea", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.928207, "LONGITUDE": -75.165695, "DATE_RANGE_START": 2023, "Total Visits": 475.0, "Total Visitors": 312.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 521.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.165695, 39.928207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2023, "Total Visits": 3222.0, "Total Visitors": 2336.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 43052.0, "Total Transactions": 509.0, "Total Customers": 334.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.54, "MEDIAN_SPEND_PER_CUSTOMER": 23.66 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2023, "Total Visits": 6695.0, "Total Visitors": 4557.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 26.0, "Total Spend": 156505.0, "Total Transactions": 2866.0, "Total Customers": 1772.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.99, "MEDIAN_SPEND_PER_CUSTOMER": 53.04 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2023, "Total Visits": 505.0, "Total Visitors": 347.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1195.0, "Total Transactions": 145.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.45 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-xbk", "LOCATION_NAME": "Yellow Front", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.970311, "LONGITUDE": -75.165314, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 128.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5868.0, "Total Transactions": 321.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.42, "MEDIAN_SPEND_PER_CUSTOMER": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.165314, 39.970311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9m-gtv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.080249, "LONGITUDE": -74.994665, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 6.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5719.0, "Total Transactions": 254.0, "Total Customers": 144.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.21, "MEDIAN_SPEND_PER_CUSTOMER": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -74.994665, 40.080249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050107, "LONGITUDE": -75.14187, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 194.0, "POI_CBG": 421010268004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 841.0, "Total Transactions": 56.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.64, "MEDIAN_SPEND_PER_CUSTOMER": 10.31 }, "geometry": { "type": "Point", "coordinates": [ -75.14187, 40.050107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm9-w6k", "LOCATION_NAME": "Old City Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.949403, "LONGITUDE": -75.145661, "DATE_RANGE_START": 2023, "Total Visits": 116.0, "Total Visitors": 83.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 244.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145661, 39.949403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-vcq", "LOCATION_NAME": "United Refrigeration", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.882256, "LONGITUDE": -75.227642, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8877.0, "Total Transactions": 25.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 118.81, "MEDIAN_SPEND_PER_CUSTOMER": 89.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.882256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p9q-yn5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.087259, "LONGITUDE": -75.039036, "DATE_RANGE_START": 2023, "Total Visits": 1007.0, "Total Visitors": 853.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 111.0, "Total Spend": 489.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.039036, 40.087259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@63s-dvx-jjv", "LOCATION_NAME": "Paulino Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.973271, "LONGITUDE": -75.222149, "DATE_RANGE_START": 2023, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": null, "Total Spend": 47.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.88, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222149, 39.973271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg4-bx5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.042838, "LONGITUDE": -75.179833, "DATE_RANGE_START": 2023, "Total Visits": 316.0, "Total Visitors": 243.0, "POI_CBG": 421010252002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 10170.0, "Total Transactions": 427.0, "Total Customers": 261.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.69, "MEDIAN_SPEND_PER_CUSTOMER": 24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179833, 40.042838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 39.932573, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 2459.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.54, "MEDIAN_SPEND_PER_CUSTOMER": 60.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-ygk", "LOCATION_NAME": "Straight From the Heart Bookstore", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 40.130243, "LONGITUDE": -75.016695, "DATE_RANGE_START": 2023, "Total Visits": 1041.0, "Total Visitors": 542.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 89.0, "Total Spend": 494.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.5, "MEDIAN_SPEND_PER_CUSTOMER": 44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.016695, 40.130243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-k75", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2023, "Total Visits": 742.0, "Total Visitors": 716.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 6171.0, "Total Transactions": 165.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.97, "MEDIAN_SPEND_PER_CUSTOMER": 32.48 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph6-rkz", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979911, "LONGITUDE": -75.227215, "DATE_RANGE_START": 2023, "Total Visits": 144.0, "Total Visitors": 78.0, "POI_CBG": 421010119003.0, "MEDIAN_DWELL": 93.0, "Total Spend": 358.0, "Total Transactions": 43.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.99, "MEDIAN_SPEND_PER_CUSTOMER": 7.39 }, "geometry": { "type": "Point", "coordinates": [ -75.227215, 39.979911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj9-54v", "LOCATION_NAME": "Smooth Like That", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.040013, "LONGITUDE": -75.144022, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 199.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 1102.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.99, "MEDIAN_SPEND_PER_CUSTOMER": 97.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144022, 40.040013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 215.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 3102.0, "Total Transactions": 51.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-ks5", "LOCATION_NAME": "Nine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97475, "LONGITUDE": -75.182819, "DATE_RANGE_START": 2023, "Total Visits": 567.0, "Total Visitors": 222.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 570.0, "Total Spend": 1004.0, "Total Transactions": 83.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.57, "MEDIAN_SPEND_PER_CUSTOMER": 14.38 }, "geometry": { "type": "Point", "coordinates": [ -75.182819, 39.97475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2023, "Total Visits": 440.0, "Total Visitors": 299.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3128.0, "Total Transactions": 66.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.59, "MEDIAN_SPEND_PER_CUSTOMER": 39.77 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@63s-dvy-pn5", "LOCATION_NAME": "Hatch & Coop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954712, "LONGITUDE": -75.202101, "DATE_RANGE_START": 2023, "Total Visits": 436.0, "Total Visitors": 249.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 37.0, "Total Spend": 9349.0, "Total Transactions": 455.0, "Total Customers": 347.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.64, "MEDIAN_SPEND_PER_CUSTOMER": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.202101, 39.954712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-wx5", "LOCATION_NAME": "Gap Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.09026, "LONGITUDE": -74.960858, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 36.0, "Total Spend": 844.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.47, "MEDIAN_SPEND_PER_CUSTOMER": 36.47 }, "geometry": { "type": "Point", "coordinates": [ -74.960858, 40.09026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-dvz", "LOCATION_NAME": "Pietro Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.912309, "LONGITUDE": -75.174217, "DATE_RANGE_START": 2023, "Total Visits": 83.0, "Total Visitors": 63.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 820.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 327.24, "MEDIAN_SPEND_PER_CUSTOMER": 327.24 }, "geometry": { "type": "Point", "coordinates": [ -75.174217, 39.912309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm9-yn5", "LOCATION_NAME": "Bluebond Guitars", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.942296, "LONGITUDE": -75.148871, "DATE_RANGE_START": 2023, "Total Visits": 380.0, "Total Visitors": 257.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 616.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148871, 39.942296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7z-tgk", "LOCATION_NAME": "Kitchen B & L", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044921, "LONGITUDE": -75.086402, "DATE_RANGE_START": 2023, "Total Visits": 200.0, "Total Visitors": 194.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4060.0, "Total Transactions": 194.0, "Total Customers": 114.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.086402, 40.044921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "LOCATION_NAME": "Jack's place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 23.0, "POI_CBG": 421010326007.0, "MEDIAN_DWELL": 268.0, "Total Spend": 217.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.26, "MEDIAN_SPEND_PER_CUSTOMER": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2023, "Total Visits": 365.0, "Total Visitors": 234.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 11724.0, "Total Transactions": 892.0, "Total Customers": 565.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.1, "MEDIAN_SPEND_PER_CUSTOMER": 14.31 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079145, "LONGITUDE": -75.026625, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 8814.0, "Total Transactions": 492.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.33, "MEDIAN_SPEND_PER_CUSTOMER": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026625, 40.079145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953382, "LONGITUDE": -75.2097, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 9.0, "Total Spend": 32328.0, "Total Transactions": 1890.0, "Total Customers": 775.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.8, "MEDIAN_SPEND_PER_CUSTOMER": 21.68 }, "geometry": { "type": "Point", "coordinates": [ -75.2097, 39.953382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950274, "LONGITUDE": -75.169549, "DATE_RANGE_START": 2023, "Total Visits": 2147.0, "Total Visitors": 1645.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 20748.0, "Total Transactions": 188.0, "Total Customers": 154.0, "MEDIAN_SPEND_PER_TRANSACTION": 127.5, "MEDIAN_SPEND_PER_CUSTOMER": 135.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169549, 39.950274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 190.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 377.0, "Total Transactions": 20.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.59, "MEDIAN_SPEND_PER_CUSTOMER": 10.54 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 189.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 8.0, "Total Spend": 271.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 48.94 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-435", "LOCATION_NAME": "Atlas Pizza & Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947544, "LONGITUDE": -75.227506, "DATE_RANGE_START": 2023, "Total Visits": 162.0, "Total Visitors": 162.0, "POI_CBG": 421010073004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 839.0, "Total Transactions": 36.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.68, "MEDIAN_SPEND_PER_CUSTOMER": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227506, 39.947544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030478, "LONGITUDE": -75.102624, "DATE_RANGE_START": 2023, "Total Visits": 3669.0, "Total Visitors": 2315.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 459.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.102624, 40.030478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-kvf", "LOCATION_NAME": "Quirk Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.95082, "LONGITUDE": -75.144651, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 423.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 106.0, "Total Spend": 31.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144651, 39.95082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "LOCATION_NAME": "Fette Sau", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 139.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 10312.0, "Total Transactions": 157.0, "Total Customers": 144.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.94, "MEDIAN_SPEND_PER_CUSTOMER": 58.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-5xq", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.049544, "LONGITUDE": -75.064177, "DATE_RANGE_START": 2023, "Total Visits": 714.0, "Total Visitors": 477.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.95, "MEDIAN_SPEND_PER_CUSTOMER": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.064177, 40.049544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-kzz", "LOCATION_NAME": "Slice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934663, "LONGITUDE": -75.160581, "DATE_RANGE_START": 2023, "Total Visits": 127.0, "Total Visitors": 127.0, "POI_CBG": 421010023001.0, "MEDIAN_DWELL": null, "Total Spend": 35.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.85, "MEDIAN_SPEND_PER_CUSTOMER": 13.85 }, "geometry": { "type": "Point", "coordinates": [ -75.160581, 39.934663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2023, "Total Visits": 405.0, "Total Visitors": 382.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7633.0, "Total Transactions": 1040.0, "Total Customers": 410.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.15, "MEDIAN_SPEND_PER_CUSTOMER": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2023, "Total Visits": 1325.0, "Total Visitors": 992.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 10.0, "Total Spend": 15921.0, "Total Transactions": 1283.0, "Total Customers": 874.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.04, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "LOCATION_NAME": "Fairmount Pizza and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 93.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 345.0, "Total Spend": 13128.0, "Total Transactions": 721.0, "Total Customers": 514.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.8, "MEDIAN_SPEND_PER_CUSTOMER": 18.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010731, "LONGITUDE": -75.175377, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 502.0, "Total Transactions": 23.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.15, "MEDIAN_SPEND_PER_CUSTOMER": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.175377, 40.010731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-tgk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045215, "LONGITUDE": -75.086673, "DATE_RANGE_START": 2023, "Total Visits": 1184.0, "Total Visitors": 799.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 26.0, "Total Spend": 7940.0, "Total Transactions": 468.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 21.46 }, "geometry": { "type": "Point", "coordinates": [ -75.086673, 40.045215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pm9-y5f", "LOCATION_NAME": "Brazas BBQ Chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941291, "LONGITUDE": -75.148482, "DATE_RANGE_START": 2023, "Total Visits": 904.0, "Total Visitors": 754.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 121.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.49, "MEDIAN_SPEND_PER_CUSTOMER": 27.02 }, "geometry": { "type": "Point", "coordinates": [ -75.148482, 39.941291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030377, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 407.0, "Total Transactions": 29.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.82, "MEDIAN_SPEND_PER_CUSTOMER": 13.92 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.06809, "LONGITUDE": -75.00688, "DATE_RANGE_START": 2023, "Total Visits": 1157.0, "Total Visitors": 723.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1365.0, "Total Transactions": 172.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.03, "MEDIAN_SPEND_PER_CUSTOMER": 9.63 }, "geometry": { "type": "Point", "coordinates": [ -75.00688, 40.06809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026867, "LONGITUDE": -75.208832, "DATE_RANGE_START": 2023, "Total Visits": 142.0, "Total Visitors": 142.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": null, "Total Spend": 5910.0, "Total Transactions": 813.0, "Total Customers": 361.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.74, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.208832, 40.026867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "LOCATION_NAME": "Wadsworth Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2023, "Total Visits": 140.0, "Total Visitors": 115.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2505.0, "Total Transactions": 122.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 23.01 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-75z", "LOCATION_NAME": "Pizza Brain", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980624, "LONGITUDE": -75.128029, "DATE_RANGE_START": 2023, "Total Visits": 370.0, "Total Visitors": 277.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6648.0, "Total Transactions": 154.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.98, "MEDIAN_SPEND_PER_CUSTOMER": 19.29 }, "geometry": { "type": "Point", "coordinates": [ -75.128029, 39.980624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "LOCATION_NAME": "Barclay Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948601, "LONGITUDE": -75.170643, "DATE_RANGE_START": 2023, "Total Visits": 440.0, "Total Visitors": 386.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14335.0, "Total Transactions": 51.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 279.1, "MEDIAN_SPEND_PER_CUSTOMER": 297.88 }, "geometry": { "type": "Point", "coordinates": [ -75.170643, 39.948601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "LOCATION_NAME": "Kiehl's", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 149.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4720.0, "Total Transactions": 53.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.56, "MEDIAN_SPEND_PER_CUSTOMER": 71.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.879213, "LONGITUDE": -75.24445, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 516.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1734.0, "Total Transactions": 145.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.24445, 39.879213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947842, "LONGITUDE": -75.159451, "DATE_RANGE_START": 2023, "Total Visits": 1796.0, "Total Visitors": 1179.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 25.0, "Total Spend": 4175.0, "Total Transactions": 223.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.99, "MEDIAN_SPEND_PER_CUSTOMER": 20.04 }, "geometry": { "type": "Point", "coordinates": [ -75.159451, 39.947842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.954191, "LONGITUDE": -75.201968, "DATE_RANGE_START": 2023, "Total Visits": 2588.0, "Total Visitors": 1727.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 17892.0, "Total Transactions": 1260.0, "Total Customers": 604.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.81, "MEDIAN_SPEND_PER_CUSTOMER": 15.2 }, "geometry": { "type": "Point", "coordinates": [ -75.201968, 39.954191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "LOCATION_NAME": "Curran's Irish Inn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 249.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1652.0, "Total Transactions": 35.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.23, "MEDIAN_SPEND_PER_CUSTOMER": 44.45 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2023, "Total Visits": 1157.0, "Total Visitors": 679.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17022.0, "Total Transactions": 1582.0, "Total Customers": 678.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.97, "MEDIAN_SPEND_PER_CUSTOMER": 13.97 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "LOCATION_NAME": "Deluxe Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048253, "LONGITUDE": -75.012509, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": null, "Total Spend": 109.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.48, "MEDIAN_SPEND_PER_CUSTOMER": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.012509, 40.048253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "LOCATION_NAME": "All The Way Live", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 118.0, "Total Spend": 139.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.33, "MEDIAN_SPEND_PER_CUSTOMER": 55.33 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.95191, "LONGITUDE": -75.161773, "DATE_RANGE_START": 2023, "Total Visits": 13731.0, "Total Visitors": 8695.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3637.0, "Total Transactions": 89.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.93, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161773, 39.95191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031542, "LONGITUDE": -75.083659, "DATE_RANGE_START": 2023, "Total Visits": 29.0, "Total Visitors": 13.0, "POI_CBG": 421010318004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1048.0, "Total Transactions": 44.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.47, "MEDIAN_SPEND_PER_CUSTOMER": 16.62 }, "geometry": { "type": "Point", "coordinates": [ -75.083659, 40.031542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "LOCATION_NAME": "JJ Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952114, "LONGITUDE": -75.174664, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 4574.0, "Total Transactions": 73.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.34, "MEDIAN_SPEND_PER_CUSTOMER": 52.98 }, "geometry": { "type": "Point", "coordinates": [ -75.174664, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "LOCATION_NAME": "Tandoori bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 164.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6021.0, "Total Transactions": 83.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.92, "MEDIAN_SPEND_PER_CUSTOMER": 61.97 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-b6k", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.060291, "LONGITUDE": -75.045502, "DATE_RANGE_START": 2023, "Total Visits": 998.0, "Total Visitors": 800.0, "POI_CBG": 421010337013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 60369.0, "Total Transactions": 1534.0, "Total Customers": 691.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.79, "MEDIAN_SPEND_PER_CUSTOMER": 37.86 }, "geometry": { "type": "Point", "coordinates": [ -75.045502, 40.060291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "LOCATION_NAME": "Pinoy Groseri", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2023, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 926.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.4, "MEDIAN_SPEND_PER_CUSTOMER": 55.83 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9n-cbk", "LOCATION_NAME": "Sahara Enterprise", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.092777, "LONGITUDE": -74.989688, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2304.0, "Total Transactions": 25.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.39, "MEDIAN_SPEND_PER_CUSTOMER": 67.63 }, "geometry": { "type": "Point", "coordinates": [ -74.989688, 40.092777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 108.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.1, "MEDIAN_SPEND_PER_CUSTOMER": 20.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "LOCATION_NAME": "Marcello's Pizza Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2023, "Total Visits": 3009.0, "Total Visitors": 1638.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 842.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.23, "MEDIAN_SPEND_PER_CUSTOMER": 19.74 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-vvf", "LOCATION_NAME": "Steve Madden", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.089544, "LONGITUDE": -74.961668, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 367.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 51.0, "Total Spend": 5262.0, "Total Transactions": 66.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.61, "MEDIAN_SPEND_PER_CUSTOMER": 51.6 }, "geometry": { "type": "Point", "coordinates": [ -74.961668, 40.089544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "LOCATION_NAME": "Front Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970177, "LONGITUDE": -75.135546, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 24479.0, "Total Transactions": 422.0, "Total Customers": 361.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.05, "MEDIAN_SPEND_PER_CUSTOMER": 50.92 }, "geometry": { "type": "Point", "coordinates": [ -75.135546, 39.970177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8t-vvf", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.089192, "LONGITUDE": -74.961438, "DATE_RANGE_START": 2023, "Total Visits": 446.0, "Total Visitors": 396.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 55.0, "Total Spend": 261.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.67, "MEDIAN_SPEND_PER_CUSTOMER": 35.67 }, "geometry": { "type": "Point", "coordinates": [ -74.961438, 40.089192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-yd9", "LOCATION_NAME": "Somerton Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.129213, "LONGITUDE": -75.014014, "DATE_RANGE_START": 2023, "Total Visits": 283.0, "Total Visitors": 148.0, "POI_CBG": 421010365013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2830.0, "Total Transactions": 89.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.21, "MEDIAN_SPEND_PER_CUSTOMER": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.014014, 40.129213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-zj9", "LOCATION_NAME": "Little Istanbul", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.119798, "LONGITUDE": -75.018085, "DATE_RANGE_START": 2023, "Total Visits": 2084.0, "Total Visitors": 1126.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2203.0, "Total Transactions": 60.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.91, "MEDIAN_SPEND_PER_CUSTOMER": 44.87 }, "geometry": { "type": "Point", "coordinates": [ -75.018085, 40.119798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8n5", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951999, "LONGITUDE": -75.157711, "DATE_RANGE_START": 2023, "Total Visits": 14076.0, "Total Visitors": 8436.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 37495.0, "Total Transactions": 863.0, "Total Customers": 763.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.18, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.157711, 39.951999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pnw-pjv", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969267, "LONGITUDE": -75.133945, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 224.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 27.0, "Total Spend": 242.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.7, "MEDIAN_SPEND_PER_CUSTOMER": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.133945, 39.969267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "LOCATION_NAME": "Sam's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 110.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 17.0, "Total Spend": 795.0, "Total Transactions": 26.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.74, "MEDIAN_SPEND_PER_CUSTOMER": 40.09 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pj9-q4v", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038791, "LONGITUDE": -75.149331, "DATE_RANGE_START": 2023, "Total Visits": 282.0, "Total Visitors": 197.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 63.0, "Total Spend": 523.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.3, "MEDIAN_SPEND_PER_CUSTOMER": 38.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149331, 40.038791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-k4v", "LOCATION_NAME": "Paradise Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968728, "LONGITUDE": -75.136484, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 420.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1405.0, "Total Transactions": 39.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.23, "MEDIAN_SPEND_PER_CUSTOMER": 51.91 }, "geometry": { "type": "Point", "coordinates": [ -75.136484, 39.968728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-xbk", "LOCATION_NAME": "Gear N Up", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.985537, "LONGITUDE": -75.132208, "DATE_RANGE_START": 2023, "Total Visits": 4470.0, "Total Visitors": 1969.0, "POI_CBG": 421010163004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 496.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132208, 39.985537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9w-sbk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.124548, "LONGITUDE": -75.015541, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010365013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 158.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015541, 40.124548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "LOCATION_NAME": "Spice 28", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 178.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5732.0, "Total Transactions": 127.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.72, "MEDIAN_SPEND_PER_CUSTOMER": 37.27 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.95433, "LONGITUDE": -75.167985, "DATE_RANGE_START": 2023, "Total Visits": 60.0, "Total Visitors": 39.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3057.0, "Total Transactions": 159.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.99, "MEDIAN_SPEND_PER_CUSTOMER": 17.74 }, "geometry": { "type": "Point", "coordinates": [ -75.167985, 39.95433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.94021, "LONGITUDE": -75.151622, "DATE_RANGE_START": 2023, "Total Visits": 1370.0, "Total Visitors": 1137.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 30067.0, "Total Transactions": 1477.0, "Total Customers": 620.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.45, "MEDIAN_SPEND_PER_CUSTOMER": 24.93 }, "geometry": { "type": "Point", "coordinates": [ -75.151622, 39.94021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-225@628-pm4-djv", "LOCATION_NAME": "Kiku sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923305, "LONGITUDE": -75.170389, "DATE_RANGE_START": 2023, "Total Visits": 956.0, "Total Visitors": 631.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1983.0, "Total Transactions": 56.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.35 }, "geometry": { "type": "Point", "coordinates": [ -75.170389, 39.923305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8n5", "LOCATION_NAME": "Primark", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951874, "LONGITUDE": -75.15803, "DATE_RANGE_START": 2023, "Total Visits": 14076.0, "Total Visitors": 8436.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 72410.0, "Total Transactions": 1995.0, "Total Customers": 1623.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.64, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15803, 39.951874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph8-q75", "LOCATION_NAME": "Bryn Mawr Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978684, "LONGITUDE": -75.268113, "DATE_RANGE_START": 2023, "Total Visits": 452.0, "Total Visitors": 342.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 889.0, "Total Transactions": 41.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.25, "MEDIAN_SPEND_PER_CUSTOMER": 20.88 }, "geometry": { "type": "Point", "coordinates": [ -75.268113, 39.978684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm9-whq", "LOCATION_NAME": "Old City Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949752, "LONGITUDE": -75.145531, "DATE_RANGE_START": 2023, "Total Visits": 582.0, "Total Visitors": 401.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 8129.0, "Total Transactions": 327.0, "Total Customers": 247.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.56, "MEDIAN_SPEND_PER_CUSTOMER": 23.84 }, "geometry": { "type": "Point", "coordinates": [ -75.145531, 39.949752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "LOCATION_NAME": "Dollar Mart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2023, "Total Visits": 757.0, "Total Visitors": 521.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1020.0, "Total Transactions": 58.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.41, "MEDIAN_SPEND_PER_CUSTOMER": 17.67 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "LOCATION_NAME": "Uncle Oogie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 115.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 422.0, "Total Spend": 155.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.52, "MEDIAN_SPEND_PER_CUSTOMER": 14.52 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-qmk", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.028704, "LONGITUDE": -75.099151, "DATE_RANGE_START": 2023, "Total Visits": 758.0, "Total Visitors": 669.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 3490.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 742.97, "MEDIAN_SPEND_PER_CUSTOMER": 742.97 }, "geometry": { "type": "Point", "coordinates": [ -75.099151, 40.028704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2023, "Total Visits": 1610.0, "Total Visitors": 892.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 7114.0, "Total Transactions": 334.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.09 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2023, "Total Visits": 764.0, "Total Visitors": 432.0, "POI_CBG": 421010268002.0, "MEDIAN_DWELL": 30.0, "Total Spend": 2498.0, "Total Transactions": 157.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.98, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087323, "LONGITUDE": -75.039984, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1654.0, "Total Transactions": 204.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039984, 40.087323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-t7q", "LOCATION_NAME": "Robert Lance Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.948987, "LONGITUDE": -75.154346, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1046.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 417.5, "MEDIAN_SPEND_PER_CUSTOMER": 417.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154346, 39.948987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@63s-dw4-rzf", "LOCATION_NAME": "Mezzogiorno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895195, "LONGITUDE": -75.227968, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13286.0, "Total Transactions": 1055.0, "Total Customers": 927.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.49, "MEDIAN_SPEND_PER_CUSTOMER": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.227968, 39.895195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "LOCATION_NAME": "Romeo Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924608, "LONGITUDE": -75.173116, "DATE_RANGE_START": 2023, "Total Visits": 435.0, "Total Visitors": 179.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 34.0, "Total Spend": 1029.0, "Total Transactions": 46.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.42, "MEDIAN_SPEND_PER_CUSTOMER": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.173116, 39.924608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmd-yjv", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937442, "LONGITUDE": -75.176792, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 157.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3024.0, "Total Transactions": 276.0, "Total Customers": 219.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.68, "MEDIAN_SPEND_PER_CUSTOMER": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.176792, 39.937442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "LOCATION_NAME": "Sam's Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093031, "LONGITUDE": -74.958589, "DATE_RANGE_START": 2023, "Total Visits": 5550.0, "Total Visitors": 3604.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 25.0, "Total Spend": 264496.0, "Total Transactions": 3640.0, "Total Customers": 1551.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.86, "MEDIAN_SPEND_PER_CUSTOMER": 99.97 }, "geometry": { "type": "Point", "coordinates": [ -74.958589, 40.093031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-zpv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957784, "LONGITUDE": -75.209056, "DATE_RANGE_START": 2023, "Total Visits": 316.0, "Total Visitors": 254.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8424.0, "Total Transactions": 546.0, "Total Customers": 362.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.209056, 39.957784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 45.0, "POI_CBG": 421010298002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 789.0, "Total Transactions": 39.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.33, "MEDIAN_SPEND_PER_CUSTOMER": 18.87 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "LOCATION_NAME": "Asia On the Parkway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955852, "LONGITUDE": -75.168299, "DATE_RANGE_START": 2023, "Total Visits": 876.0, "Total Visitors": 618.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 4049.0, "Total Transactions": 98.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.48, "MEDIAN_SPEND_PER_CUSTOMER": 42.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168299, 39.955852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.95129, "LONGITUDE": -75.177478, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 49.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2132.0, "Total Transactions": 78.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.25, "MEDIAN_SPEND_PER_CUSTOMER": 27.23 }, "geometry": { "type": "Point", "coordinates": [ -75.177478, 39.95129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "LOCATION_NAME": "Smokey Joe's Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 187.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 29.0, "Total Spend": 3849.0, "Total Transactions": 128.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.35, "MEDIAN_SPEND_PER_CUSTOMER": 24.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948784, "LONGITUDE": -75.160455, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4277.0, "Total Transactions": 566.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.43, "MEDIAN_SPEND_PER_CUSTOMER": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.160455, 39.948784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pj5-qs5", "LOCATION_NAME": "Craytaste", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010836, "LONGITUDE": -75.139631, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010198004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1093.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.4, "MEDIAN_SPEND_PER_CUSTOMER": 82.74 }, "geometry": { "type": "Point", "coordinates": [ -75.139631, 40.010836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7b-kj9", "LOCATION_NAME": "Villagio Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055388, "LONGITUDE": -75.003512, "DATE_RANGE_START": 2023, "Total Visits": 127.0, "Total Visitors": 127.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 626.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.37, "MEDIAN_SPEND_PER_CUSTOMER": 23.09 }, "geometry": { "type": "Point", "coordinates": [ -75.003512, 40.055388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "LOCATION_NAME": "Arby's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2023, "Total Visits": 339.0, "Total Visitors": 274.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4238.0, "Total Transactions": 267.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.39, "MEDIAN_SPEND_PER_CUSTOMER": 15.04 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002558, "LONGITUDE": -75.222575, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7490.0, "Total Transactions": 649.0, "Total Customers": 400.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.88, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.222575, 40.002558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pg8-ks5", "LOCATION_NAME": "Harper's Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974726, "LONGITUDE": -75.182771, "DATE_RANGE_START": 2023, "Total Visits": 567.0, "Total Visitors": 222.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 570.0, "Total Spend": 2220.0, "Total Transactions": 165.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.72, "MEDIAN_SPEND_PER_CUSTOMER": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182771, 39.974726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-224@628-pm4-h5z", "LOCATION_NAME": "Favors & Flavors", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926083, "LONGITUDE": -75.167651, "DATE_RANGE_START": 2023, "Total Visits": 551.0, "Total Visitors": 443.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 8.0, "Total Spend": 297.0, "Total Transactions": 34.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.93, "MEDIAN_SPEND_PER_CUSTOMER": 8.96 }, "geometry": { "type": "Point", "coordinates": [ -75.167651, 39.926083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.98332, "LONGITUDE": -75.101162, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1793.0, "Total Transactions": 70.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.1, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101162, 39.98332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7z-xnq", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032765, "LONGITUDE": -75.083361, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 408.0, "POI_CBG": 421010312003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4983.0, "Total Transactions": 354.0, "Total Customers": 266.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.36, "MEDIAN_SPEND_PER_CUSTOMER": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.083361, 40.032765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-jgk", "LOCATION_NAME": "The Foto Club", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.000866, "LONGITUDE": -75.097152, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 185.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 27.0, "Total Spend": 1249.0, "Total Transactions": 39.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.85, "MEDIAN_SPEND_PER_CUSTOMER": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.097152, 40.000866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.012964, "LONGITUDE": -75.15104, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 23.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 11748.0, "Total Transactions": 224.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 40.26 }, "geometry": { "type": "Point", "coordinates": [ -75.15104, 40.012964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-mc5", "LOCATION_NAME": "Mole Poblano Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935124, "LONGITUDE": -75.158821, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 133.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1808.0, "Total Transactions": 43.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.06, "MEDIAN_SPEND_PER_CUSTOMER": 44.68 }, "geometry": { "type": "Point", "coordinates": [ -75.158821, 39.935124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-k4v", "LOCATION_NAME": "Kingstone Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.990889, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 35.0, "POI_CBG": 421010169022.0, "MEDIAN_DWELL": 165.0, "Total Spend": 678.0, "Total Transactions": 41.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.98, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.990889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "LOCATION_NAME": "Axis Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955236, "LONGITUDE": -75.194658, "DATE_RANGE_START": 2023, "Total Visits": 433.0, "Total Visitors": 328.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2193.0, "Total Transactions": 155.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.194658, 39.955236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-pmf-qpv", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.94287, "LONGITUDE": -75.165374, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 167.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 250.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.07, "MEDIAN_SPEND_PER_CUSTOMER": 12.57 }, "geometry": { "type": "Point", "coordinates": [ -75.165374, 39.94287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj7-54v", "LOCATION_NAME": "New China Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04309, "LONGITUDE": -75.103706, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 893.0, "Total Transactions": 30.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.28, "MEDIAN_SPEND_PER_CUSTOMER": 31.06 }, "geometry": { "type": "Point", "coordinates": [ -75.103706, 40.04309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-jgk", "LOCATION_NAME": "John's Roast Pork", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.92105, "LONGITUDE": -75.145001, "DATE_RANGE_START": 2023, "Total Visits": 207.0, "Total Visitors": 188.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4496.0, "Total Transactions": 155.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.51, "MEDIAN_SPEND_PER_CUSTOMER": 32.84 }, "geometry": { "type": "Point", "coordinates": [ -75.145001, 39.92105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.105522, "LONGITUDE": -75.032843, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 463.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.98, "MEDIAN_SPEND_PER_CUSTOMER": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.032843, 40.105522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj3-9cq", "LOCATION_NAME": "Yummy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0124, "LONGITUDE": -75.15023, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 180.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 184.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15023, 40.0124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.062607, "LONGITUDE": -75.083816, "DATE_RANGE_START": 2023, "Total Visits": 951.0, "Total Visitors": 787.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10940.0, "Total Transactions": 252.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.96, "MEDIAN_SPEND_PER_CUSTOMER": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.083816, 40.062607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-4sq", "LOCATION_NAME": "Potbelly Sandwich Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979534, "LONGITUDE": -75.153522, "DATE_RANGE_START": 2023, "Total Visits": 1249.0, "Total Visitors": 446.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 3953.0, "Total Transactions": 247.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.62, "MEDIAN_SPEND_PER_CUSTOMER": 16.16 }, "geometry": { "type": "Point", "coordinates": [ -75.153522, 39.979534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979965, "LONGITUDE": -75.224332, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 18.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 11901.0, "Total Transactions": 990.0, "Total Customers": 701.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.03, "MEDIAN_SPEND_PER_CUSTOMER": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.224332, 39.979965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044629, "LONGITUDE": -75.142839, "DATE_RANGE_START": 2023, "Total Visits": 496.0, "Total Visitors": 427.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 21975.0, "Total Transactions": 1734.0, "Total Customers": 1349.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.42, "MEDIAN_SPEND_PER_CUSTOMER": 12.37 }, "geometry": { "type": "Point", "coordinates": [ -75.142839, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "LOCATION_NAME": "Beijing Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 194.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 510.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.2, "MEDIAN_SPEND_PER_CUSTOMER": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087684, "LONGITUDE": -74.961421, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 47.0, "Total Spend": 366.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.0, "MEDIAN_SPEND_PER_CUSTOMER": 69.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961421, 40.087684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979092, "LONGITUDE": -75.159657, "DATE_RANGE_START": 2023, "Total Visits": 1102.0, "Total Visitors": 853.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 568.0, "Total Transactions": 89.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159657, 39.979092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pnw-nnq", "LOCATION_NAME": "DAWA Sushi & Ramen Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969247, "LONGITUDE": -75.136377, "DATE_RANGE_START": 2023, "Total Visits": 635.0, "Total Visitors": 473.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2580.0, "Total Transactions": 35.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.81, "MEDIAN_SPEND_PER_CUSTOMER": 49.93 }, "geometry": { "type": "Point", "coordinates": [ -75.136377, 39.969247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-p9q-hqz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079547, "LONGITUDE": -75.027317, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 137.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1211.0, "Total Transactions": 65.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.88, "MEDIAN_SPEND_PER_CUSTOMER": 19.28 }, "geometry": { "type": "Point", "coordinates": [ -75.027317, 40.079547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2023, "Total Visits": 797.0, "Total Visitors": 615.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9603.0, "Total Transactions": 1125.0, "Total Customers": 526.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.32, "MEDIAN_SPEND_PER_CUSTOMER": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "LOCATION_NAME": "Thai Square Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010013005.0, "MEDIAN_DWELL": 46.0, "Total Spend": 1856.0, "Total Transactions": 38.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.16, "MEDIAN_SPEND_PER_CUSTOMER": 55.56 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pj8-j35", "LOCATION_NAME": "Lee Brothers Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019162, "LONGITUDE": -75.081821, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 174.0, "POI_CBG": 421010300007.0, "MEDIAN_DWELL": 4.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.07, "MEDIAN_SPEND_PER_CUSTOMER": 17.07 }, "geometry": { "type": "Point", "coordinates": [ -75.081821, 40.019162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-mrk", "LOCATION_NAME": "Auntie Anne's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952007, "LONGITUDE": -75.167497, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 79.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.22, "MEDIAN_SPEND_PER_CUSTOMER": 16.73 }, "geometry": { "type": "Point", "coordinates": [ -75.167497, 39.952007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pgd-zj9", "LOCATION_NAME": "Mr Wish Drexel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958848, "LONGITUDE": -75.194519, "DATE_RANGE_START": 2023, "Total Visits": 407.0, "Total Visitors": 242.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 454.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 181.15, "MEDIAN_SPEND_PER_CUSTOMER": 181.15 }, "geometry": { "type": "Point", "coordinates": [ -75.194519, 39.958848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pfy-f4v", "LOCATION_NAME": "WorldWide Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.034557, "LONGITUDE": -75.215587, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 200.0, "Total Spend": 56.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.38, "MEDIAN_SPEND_PER_CUSTOMER": 22.38 }, "geometry": { "type": "Point", "coordinates": [ -75.215587, 40.034557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phy-v9f", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030432, "LONGITUDE": -75.118462, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 127.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 149.0, "Total Spend": 155.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118462, 40.030432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-hwk", "LOCATION_NAME": "The Men's Wearhouse", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.079413, "LONGITUDE": -75.029146, "DATE_RANGE_START": 2023, "Total Visits": 311.0, "Total Visitors": 296.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1180.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.99, "MEDIAN_SPEND_PER_CUSTOMER": 119.98 }, "geometry": { "type": "Point", "coordinates": [ -75.029146, 40.079413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "LOCATION_NAME": "R.E. Michel", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 75.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 3776.0, "Total Transactions": 19.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 119.98, "MEDIAN_SPEND_PER_CUSTOMER": 239.96 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2023, "Total Visits": 932.0, "Total Visitors": 661.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 11376.0, "Total Transactions": 551.0, "Total Customers": 362.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.57, "MEDIAN_SPEND_PER_CUSTOMER": 17.78 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-22n@628-pnw-psq", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968442, "LONGITUDE": -75.13901, "DATE_RANGE_START": 2023, "Total Visits": 2836.0, "Total Visitors": 1501.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 30.0, "Total Spend": 9992.0, "Total Transactions": 165.0, "Total Customers": 144.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.52, "MEDIAN_SPEND_PER_CUSTOMER": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13901, 39.968442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-87q", "LOCATION_NAME": "Kabuki Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953616, "LONGITUDE": -75.160916, "DATE_RANGE_START": 2023, "Total Visits": 291.0, "Total Visitors": 162.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 956.0, "Total Transactions": 36.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.91, "MEDIAN_SPEND_PER_CUSTOMER": 27.41 }, "geometry": { "type": "Point", "coordinates": [ -75.160916, 39.953616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040643, "LONGITUDE": -75.143875, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3063.0, "Total Transactions": 111.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.39, "MEDIAN_SPEND_PER_CUSTOMER": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.143875, 40.040643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "LOCATION_NAME": "Amada", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2023, "Total Visits": 294.0, "Total Visitors": 240.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 17330.0, "Total Transactions": 125.0, "Total Customers": 114.0, "MEDIAN_SPEND_PER_TRANSACTION": 95.56, "MEDIAN_SPEND_PER_CUSTOMER": 101.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@63s-dvq-6ff", "LOCATION_NAME": "Citizens Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954856, "LONGITUDE": -75.229978, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010085004.0, "MEDIAN_DWELL": null, "Total Spend": 4858.0, "Total Transactions": 170.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.1, "MEDIAN_SPEND_PER_CUSTOMER": 36.69 }, "geometry": { "type": "Point", "coordinates": [ -75.229978, 39.954856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-223@628-pg8-k9f", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977261, "LONGITUDE": -75.183103, "DATE_RANGE_START": 2023, "Total Visits": 516.0, "Total Visitors": 244.0, "POI_CBG": 421010137001.0, "MEDIAN_DWELL": 122.0, "Total Spend": 476.0, "Total Transactions": 49.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.183103, 39.977261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-qj9", "LOCATION_NAME": "Mack Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.967928, "LONGITUDE": -75.243798, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 79.0, "POI_CBG": 421010096001.0, "MEDIAN_DWELL": 259.0, "Total Spend": 1405.0, "Total Transactions": 63.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.52, "MEDIAN_SPEND_PER_CUSTOMER": 18.72 }, "geometry": { "type": "Point", "coordinates": [ -75.243798, 39.967928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-kvf", "LOCATION_NAME": "Long In the Tooth", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.951536, "LONGITUDE": -75.174727, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 239.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.65, "MEDIAN_SPEND_PER_CUSTOMER": 76.65 }, "geometry": { "type": "Point", "coordinates": [ -75.174727, 39.951536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.993473, "LONGITUDE": -75.143851, "DATE_RANGE_START": 2023, "Total Visits": 341.0, "Total Visitors": 182.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1336.0, "Total Transactions": 91.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.143851, 39.993473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-224@628-pnw-k4v", "LOCATION_NAME": "Humpty's Dumplings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96876, "LONGITUDE": -75.136611, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 420.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 734.0, "Total Transactions": 43.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.08 }, "geometry": { "type": "Point", "coordinates": [ -75.136611, 39.96876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-xt9", "LOCATION_NAME": "Family Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.987227, "LONGITUDE": -75.138158, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010163004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1222.0, "Total Transactions": 140.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.79, "MEDIAN_SPEND_PER_CUSTOMER": 10.49 }, "geometry": { "type": "Point", "coordinates": [ -75.138158, 39.987227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.939347, "LONGITUDE": -75.157238, "DATE_RANGE_START": 2023, "Total Visits": 916.0, "Total Visitors": 775.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 25275.0, "Total Transactions": 1399.0, "Total Customers": 651.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.99, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.157238, 39.939347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-q9f", "LOCATION_NAME": "BEL Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.105145, "LONGITUDE": -75.032134, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 158.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 41.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.032134, 40.105145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "LOCATION_NAME": "Liberty Smokes", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.91245, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2023, "Total Visits": 678.0, "Total Visitors": 343.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 155.0, "Total Spend": 392.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.56, "MEDIAN_SPEND_PER_CUSTOMER": 29.24 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.91245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pg8-jgk", "LOCATION_NAME": "Over The Moon Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974318, "LONGITUDE": -75.179761, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 885.0, "Total Transactions": 95.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.78, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179761, 39.974318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgk-psq", "LOCATION_NAME": "West Village Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.003357, "LONGITUDE": -75.206899, "DATE_RANGE_START": 2023, "Total Visits": 539.0, "Total Visitors": 139.0, "POI_CBG": 421010122012.0, "MEDIAN_DWELL": 474.0, "Total Spend": 294.0, "Total Transactions": 50.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.5, "MEDIAN_SPEND_PER_CUSTOMER": 22.97 }, "geometry": { "type": "Point", "coordinates": [ -75.206899, 40.003357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "LOCATION_NAME": "Nova Star Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.969978, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2023, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 837.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.01 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "LOCATION_NAME": "Victoria's Secret", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087662, "LONGITUDE": -74.96104, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 144.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1373.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.68, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96104, 40.087662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "LOCATION_NAME": "Windsor", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085923, "LONGITUDE": -74.96247, "DATE_RANGE_START": 2023, "Total Visits": 475.0, "Total Visitors": 421.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 36.0, "Total Spend": 5942.0, "Total Transactions": 116.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.9, "MEDIAN_SPEND_PER_CUSTOMER": 41.85 }, "geometry": { "type": "Point", "coordinates": [ -74.96247, 40.085923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-djv", "LOCATION_NAME": "Quality Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050951, "LONGITUDE": -75.094665, "DATE_RANGE_START": 2023, "Total Visits": 1388.0, "Total Visitors": 1337.0, "POI_CBG": 421010306007.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1807.0, "Total Transactions": 73.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.99, "MEDIAN_SPEND_PER_CUSTOMER": 29.88 }, "geometry": { "type": "Point", "coordinates": [ -75.094665, 40.050951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "LOCATION_NAME": "Mammoth Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970172, "LONGITUDE": -75.146375, "DATE_RANGE_START": 2023, "Total Visits": 352.0, "Total Visitors": 168.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 985.0, "Total Spend": 2201.0, "Total Transactions": 237.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.56, "MEDIAN_SPEND_PER_CUSTOMER": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.146375, 39.970172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-phz-tjv", "LOCATION_NAME": "Pizza express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998436, "LONGITUDE": -75.110266, "DATE_RANGE_START": 2023, "Total Visits": 95.0, "Total Visitors": 78.0, "POI_CBG": 421010192004.0, "MEDIAN_DWELL": 23.0, "Total Spend": 306.0, "Total Transactions": 16.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.110266, 39.998436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "LOCATION_NAME": "Kei Sushi Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3928.0, "Total Transactions": 81.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.82, "MEDIAN_SPEND_PER_CUSTOMER": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvr-7bk", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.927395, "LONGITUDE": -75.232174, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010066004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1214.0, "Total Transactions": 31.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.232174, 39.927395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "LOCATION_NAME": "Main Street Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 157.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 34.0, "Total Spend": 2672.0, "Total Transactions": 55.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.66, "MEDIAN_SPEND_PER_CUSTOMER": 43.44 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-t9z", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051349, "LONGITUDE": -75.057526, "DATE_RANGE_START": 2023, "Total Visits": 694.0, "Total Visitors": 601.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 148.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.09, "MEDIAN_SPEND_PER_CUSTOMER": 30.76 }, "geometry": { "type": "Point", "coordinates": [ -75.057526, 40.051349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "LOCATION_NAME": "Pub On Passyunk East", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2023, "Total Visits": 278.0, "Total Visitors": 251.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 26.0, "Total Spend": 208.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.54, "MEDIAN_SPEND_PER_CUSTOMER": 75.54 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8j-bp9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.035834, "LONGITUDE": -75.039406, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010330006.0, "MEDIAN_DWELL": 19.0, "Total Spend": 5637.0, "Total Transactions": 292.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.039406, 40.035834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7z-6x5", "LOCATION_NAME": "Rising Sun Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056616, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2023, "Total Visits": 128.0, "Total Visitors": 96.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 298.0, "Total Spend": 1184.0, "Total Transactions": 51.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.02, "MEDIAN_SPEND_PER_CUSTOMER": 21.51 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.056616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "LOCATION_NAME": "Weavers Way Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2023, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2072.0, "Total Transactions": 43.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.18, "MEDIAN_SPEND_PER_CUSTOMER": 57.75 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pmf-s3q", "LOCATION_NAME": "South Deli and Grocery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944603, "LONGITUDE": -75.17157, "DATE_RANGE_START": 2023, "Total Visits": 481.0, "Total Visitors": 341.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 8.0, "Total Spend": 726.0, "Total Transactions": 50.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17157, 39.944603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-224@628-pmb-5fz", "LOCATION_NAME": "Bread & Butter Gourmet Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950062, "LONGITUDE": -75.161286, "DATE_RANGE_START": 2023, "Total Visits": 1228.0, "Total Visitors": 911.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 44.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161286, 39.950062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-d35", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922454, "LONGITUDE": -75.169871, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3783.0, "Total Transactions": 343.0, "Total Customers": 233.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.18, "MEDIAN_SPEND_PER_CUSTOMER": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.169871, 39.922454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "LOCATION_NAME": "Skyline Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2023, "Total Visits": 453.0, "Total Visitors": 338.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 693.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.24, "MEDIAN_SPEND_PER_CUSTOMER": 276.67 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055418, "LONGITUDE": -75.089672, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 159.0, "POI_CBG": 421010307002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1362.0, "Total Transactions": 44.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.07, "MEDIAN_SPEND_PER_CUSTOMER": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089672, 40.055418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.120321, "LONGITUDE": -75.016067, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 15.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 376.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.12, "MEDIAN_SPEND_PER_CUSTOMER": 20.96 }, "geometry": { "type": "Point", "coordinates": [ -75.016067, 40.120321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2023, "Total Visits": 442.0, "Total Visitors": 154.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 330.0, "Total Spend": 7796.0, "Total Transactions": 467.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.59, "MEDIAN_SPEND_PER_CUSTOMER": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "LOCATION_NAME": "Lombard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2023, "Total Visits": 98.0, "Total Visitors": 98.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1165.0, "Total Transactions": 159.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951058, "LONGITUDE": -75.168149, "DATE_RANGE_START": 2023, "Total Visits": 40.0, "Total Visitors": 33.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3013.0, "Total Transactions": 81.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.168149, 39.951058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pj4-tqf", "LOCATION_NAME": "China Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993654, "LONGITUDE": -75.140353, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": null, "Total Spend": 55.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140353, 39.993654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yjv", "LOCATION_NAME": "Prince Tea House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955371, "LONGITUDE": -75.154071, "DATE_RANGE_START": 2023, "Total Visits": 333.0, "Total Visitors": 296.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 58.0, "Total Spend": 2622.0, "Total Transactions": 53.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.97, "MEDIAN_SPEND_PER_CUSTOMER": 43.76 }, "geometry": { "type": "Point", "coordinates": [ -75.154071, 39.955371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2023, "Total Visits": 861.0, "Total Visitors": 618.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4752.0, "Total Transactions": 565.0, "Total Customers": 302.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.11, "MEDIAN_SPEND_PER_CUSTOMER": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2023, "Total Visits": 506.0, "Total Visitors": 385.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6533.0, "Total Transactions": 814.0, "Total Customers": 388.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.95, "MEDIAN_SPEND_PER_CUSTOMER": 9.85 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-226@628-pfz-bhq", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.025309, "LONGITUDE": -75.222661, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 128.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.26, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.222661, 40.025309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-vpv", "LOCATION_NAME": "P'unk Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927124, "LONGITUDE": -75.166327, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 405.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 46.0, "Total Spend": 256.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.99, "MEDIAN_SPEND_PER_CUSTOMER": 101.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.927124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 140.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 85.0, "Total Spend": 2287.0, "Total Transactions": 63.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.84, "MEDIAN_SPEND_PER_CUSTOMER": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2023, "Total Visits": 951.0, "Total Visitors": 703.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 14001.0, "Total Transactions": 933.0, "Total Customers": 689.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 15.45 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-ygk", "LOCATION_NAME": "Snow Show", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953739, "LONGITUDE": -75.15638, "DATE_RANGE_START": 2023, "Total Visits": 307.0, "Total Visitors": 302.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 454.0, "Total Transactions": 39.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.2, "MEDIAN_SPEND_PER_CUSTOMER": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.15638, 39.953739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "LOCATION_NAME": "Greene Street", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2023, "Total Visits": 343.0, "Total Visitors": 269.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 505.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.7, "MEDIAN_SPEND_PER_CUSTOMER": 26.45 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm4-dsq", "LOCATION_NAME": "Barrel's Fine Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922841, "LONGITUDE": -75.17594, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010039013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1083.0, "Total Transactions": 23.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.94, "MEDIAN_SPEND_PER_CUSTOMER": 37.82 }, "geometry": { "type": "Point", "coordinates": [ -75.17594, 39.922841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "LOCATION_NAME": "Domenic's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 118.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 24.0, "Total Spend": 285.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 32.56 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "LOCATION_NAME": "Thai Kuu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2023, "Total Visits": 278.0, "Total Visitors": 225.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1062.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.01, "MEDIAN_SPEND_PER_CUSTOMER": 50.82 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-p8j-94v", "LOCATION_NAME": "Tei Japanese Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034643, "LONGITUDE": -75.043989, "DATE_RANGE_START": 2023, "Total Visits": 400.0, "Total Visitors": 257.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 773.0, "Total Transactions": 30.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.4, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043989, 40.034643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "LOCATION_NAME": "Sprouts Farmers Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2023, "Total Visits": 893.0, "Total Visitors": 492.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 207980.0, "Total Transactions": 6015.0, "Total Customers": 2774.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.81, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-mzf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954224, "LONGITUDE": -75.167482, "DATE_RANGE_START": 2023, "Total Visits": 5142.0, "Total Visitors": 2887.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 717.0, "Total Transactions": 100.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.04, "MEDIAN_SPEND_PER_CUSTOMER": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.167482, 39.954224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj3-b8v", "LOCATION_NAME": "The Stand", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013776, "LONGITUDE": -75.15796, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010202005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 398.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.75, "MEDIAN_SPEND_PER_CUSTOMER": 30.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15796, 40.013776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "LOCATION_NAME": "Bassetts Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 198.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5017.0, "Total Transactions": 381.0, "Total Customers": 348.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.55, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-4sq", "LOCATION_NAME": "Best Western Plus Philadelphia Convention Center Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.957993, "LONGITUDE": -75.159443, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 8.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 388.0, "Total Spend": 23.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159443, 39.957993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-pn5", "LOCATION_NAME": "Yiro Yiro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954699, "LONGITUDE": -75.202157, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 164.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 18.0, "Total Spend": 2395.0, "Total Transactions": 119.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.15, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.202157, 39.954699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.974455, "LONGITUDE": -75.199174, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010110001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4680.0, "Total Transactions": 108.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.15 }, "geometry": { "type": "Point", "coordinates": [ -75.199174, 39.974455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pne-xt9", "LOCATION_NAME": "Capitol Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.971321, "LONGITUDE": -75.120197, "DATE_RANGE_START": 2023, "Total Visits": 312.0, "Total Visitors": 228.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 538.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.38, "MEDIAN_SPEND_PER_CUSTOMER": 158.76 }, "geometry": { "type": "Point", "coordinates": [ -75.120197, 39.971321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvx-3dv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.967246, "LONGITUDE": -75.215954, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010105001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 475.0, "Total Transactions": 28.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.66, "MEDIAN_SPEND_PER_CUSTOMER": 17.55 }, "geometry": { "type": "Point", "coordinates": [ -75.215954, 39.967246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2023, "Total Visits": 318.0, "Total Visitors": 230.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 376.0, "Total Transactions": 41.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.51, "MEDIAN_SPEND_PER_CUSTOMER": 10.91 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-gkz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043254, "LONGITUDE": -75.158799, "DATE_RANGE_START": 2023, "Total Visits": 393.0, "Total Visitors": 261.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4852.0, "Total Transactions": 352.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 18.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158799, 40.043254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2023, "Total Visits": 219.0, "Total Visitors": 118.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 98.0, "Total Spend": 1035.0, "Total Transactions": 49.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.71, "MEDIAN_SPEND_PER_CUSTOMER": 19.92 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmb-7h5", "LOCATION_NAME": "Tuscany Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948378, "LONGITUDE": -75.165027, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 224.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 2.0, "Total Spend": 315.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.46, "MEDIAN_SPEND_PER_CUSTOMER": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 39.948378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-59f", "LOCATION_NAME": "Bellissima Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058663, "LONGITUDE": -75.059466, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 128.0, "POI_CBG": 421010336002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 251.0, "Total Transactions": 13.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.35, "MEDIAN_SPEND_PER_CUSTOMER": 100.22 }, "geometry": { "type": "Point", "coordinates": [ -75.059466, 40.058663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-sdv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915109, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 152.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1988.0, "Total Transactions": 114.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.28, "MEDIAN_SPEND_PER_CUSTOMER": 14.78 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.915109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@63s-dvy-mx5", "LOCATION_NAME": "Surreal Creamery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955025, "LONGITUDE": -75.199293, "DATE_RANGE_START": 2023, "Total Visits": 1701.0, "Total Visitors": 1199.0, "POI_CBG": 421010088012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2234.0, "Total Transactions": 155.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.199293, 39.955025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2023, "Total Visits": 646.0, "Total Visitors": 147.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1100.0, "Total Spend": 9254.0, "Total Transactions": 29.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 146.59, "MEDIAN_SPEND_PER_CUSTOMER": 321.22 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "LOCATION_NAME": "Sawatdee Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2023, "Total Visits": 169.0, "Total Visitors": 134.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 173.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.72, "MEDIAN_SPEND_PER_CUSTOMER": 18.72 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.035406, "LONGITUDE": -75.064931, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 194.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.66, "MEDIAN_SPEND_PER_CUSTOMER": 24.45 }, "geometry": { "type": "Point", "coordinates": [ -75.064931, 40.035406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.055982, "LONGITUDE": -75.005099, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 10.0, "Total Spend": 861.0, "Total Transactions": 38.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 28.94 }, "geometry": { "type": "Point", "coordinates": [ -75.005099, 40.055982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-tvz", "LOCATION_NAME": "Via Locusta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949069, "LONGITUDE": -75.170305, "DATE_RANGE_START": 2023, "Total Visits": 832.0, "Total Visitors": 497.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 209.0, "Total Spend": 2452.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.13, "MEDIAN_SPEND_PER_CUSTOMER": 67.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170305, 39.949069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "LOCATION_NAME": "Morgan's Pier", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954787, "LONGITUDE": -75.138888, "DATE_RANGE_START": 2023, "Total Visits": 343.0, "Total Visitors": 259.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 15199.0, "Total Transactions": 470.0, "Total Customers": 233.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 46.61 }, "geometry": { "type": "Point", "coordinates": [ -75.138888, 39.954787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-ffz", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.92086, "LONGITUDE": -75.173341, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 124.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 167.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.21, "MEDIAN_SPEND_PER_CUSTOMER": 15.21 }, "geometry": { "type": "Point", "coordinates": [ -75.173341, 39.92086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2023, "Total Visits": 964.0, "Total Visitors": 780.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 13263.0, "Total Transactions": 1080.0, "Total Customers": 721.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.54, "MEDIAN_SPEND_PER_CUSTOMER": 13.04 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "LOCATION_NAME": "Reggae Reggae Vibes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2023, "Total Visits": 39.0, "Total Visitors": 39.0, "POI_CBG": 421010144003.0, "MEDIAN_DWELL": null, "Total Spend": 122.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.92, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978016, "LONGITUDE": -75.119436, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 15.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 354.0, "Total Spend": 8224.0, "Total Transactions": 996.0, "Total Customers": 500.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.54, "MEDIAN_SPEND_PER_CUSTOMER": 10.04 }, "geometry": { "type": "Point", "coordinates": [ -75.119436, 39.978016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 199.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4109.0, "Total Transactions": 219.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.44, "MEDIAN_SPEND_PER_CUSTOMER": 15.78 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "LOCATION_NAME": "Bok Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.925319, "LONGITUDE": -75.160317, "DATE_RANGE_START": 2023, "Total Visits": 1053.0, "Total Visitors": 780.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 77.0, "Total Spend": 3173.0, "Total Transactions": 120.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.44, "MEDIAN_SPEND_PER_CUSTOMER": 28.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160317, 39.925319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952549, "LONGITUDE": -75.162244, "DATE_RANGE_START": 2023, "Total Visits": 1782.0, "Total Visitors": 1251.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 6291.0, "Total Transactions": 913.0, "Total Customers": 447.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.73, "MEDIAN_SPEND_PER_CUSTOMER": 8.19 }, "geometry": { "type": "Point", "coordinates": [ -75.162244, 39.952549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "LOCATION_NAME": "The Love", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2023, "Total Visits": 2842.0, "Total Visitors": 1860.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 34654.0, "Total Transactions": 311.0, "Total Customers": 272.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.74, "MEDIAN_SPEND_PER_CUSTOMER": 93.56 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "LOCATION_NAME": "The Cheesecake Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949197, "LONGITUDE": -75.165815, "DATE_RANGE_START": 2023, "Total Visits": 713.0, "Total Visitors": 441.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 21.0, "Total Spend": 25479.0, "Total Transactions": 425.0, "Total Customers": 377.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.48, "MEDIAN_SPEND_PER_CUSTOMER": 57.42 }, "geometry": { "type": "Point", "coordinates": [ -75.165815, 39.949197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "LOCATION_NAME": "The Plough & the Stars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 209.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 2398.0, "Total Transactions": 49.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.62, "MEDIAN_SPEND_PER_CUSTOMER": 40.36 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-pqf", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05323, "LONGITUDE": -75.185876, "DATE_RANGE_START": 2023, "Total Visits": 66.0, "Total Visitors": 53.0, "POI_CBG": 421010253003.0, "MEDIAN_DWELL": null, "Total Spend": 1374.0, "Total Transactions": 43.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.1, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185876, 40.05323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "LOCATION_NAME": "Girard Meat Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.972919, "LONGITUDE": -75.217579, "DATE_RANGE_START": 2023, "Total Visits": 294.0, "Total Visitors": 223.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2320.0, "Total Transactions": 56.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.59, "MEDIAN_SPEND_PER_CUSTOMER": 30.26 }, "geometry": { "type": "Point", "coordinates": [ -75.217579, 39.972919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927199, "LONGITUDE": -75.144501, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 174.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 13899.0, "Total Transactions": 1172.0, "Total Customers": 828.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.46, "MEDIAN_SPEND_PER_CUSTOMER": 11.96 }, "geometry": { "type": "Point", "coordinates": [ -75.144501, 39.927199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "LOCATION_NAME": "Capriccio Cafe and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955441, "LONGITUDE": -75.166519, "DATE_RANGE_START": 2023, "Total Visits": 349.0, "Total Visitors": 292.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 176.0, "Total Transactions": 16.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.21, "MEDIAN_SPEND_PER_CUSTOMER": 13.84 }, "geometry": { "type": "Point", "coordinates": [ -75.166519, 39.955441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.92153, "LONGITUDE": -75.193325, "DATE_RANGE_START": 2023, "Total Visits": 772.0, "Total Visitors": 649.0, "POI_CBG": 421010036003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1460.0, "Total Transactions": 40.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.26, "MEDIAN_SPEND_PER_CUSTOMER": 37.67 }, "geometry": { "type": "Point", "coordinates": [ -75.193325, 39.92153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "LOCATION_NAME": "Main Street Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.026401, "LONGITUDE": -75.226197, "DATE_RANGE_START": 2023, "Total Visits": 597.0, "Total Visitors": 436.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 467.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.55, "MEDIAN_SPEND_PER_CUSTOMER": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.226197, 40.026401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7nq", "LOCATION_NAME": "Mitchell & Ness", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.948835, "LONGITUDE": -75.162377, "DATE_RANGE_START": 2023, "Total Visits": 1278.0, "Total Visitors": 782.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 46.0, "Total Spend": 3932.0, "Total Transactions": 31.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 123.92, "MEDIAN_SPEND_PER_CUSTOMER": 125.87 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.948835 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2023, "Total Visits": 262.0, "Total Visitors": 262.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1829.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.18, "MEDIAN_SPEND_PER_CUSTOMER": 81.18 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w49", "LOCATION_NAME": "Sam Ash Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.087105, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2023, "Total Visits": 385.0, "Total Visitors": 309.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 90.0, "Total Spend": 12073.0, "Total Transactions": 59.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.51, "MEDIAN_SPEND_PER_CUSTOMER": 118.11 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "LOCATION_NAME": "HKS pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2023, "Total Visits": 140.0, "Total Visitors": 51.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5352.0, "Total Transactions": 248.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-phz-xbk", "LOCATION_NAME": "Premium Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001089, "LONGITUDE": -75.110473, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1750.0, "Total Transactions": 70.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.73, "MEDIAN_SPEND_PER_CUSTOMER": 30.72 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.001089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pmb-yqf", "LOCATION_NAME": "Vivi Bubble Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954838, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 213.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2791.0, "Total Transactions": 286.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.07, "MEDIAN_SPEND_PER_CUSTOMER": 7.65 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.954838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "LOCATION_NAME": "Philly's Famous Italian Ices", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 114.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1705.0, "Total Transactions": 54.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "LOCATION_NAME": "San Lucas Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 38.0, "Total Spend": 368.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.36, "MEDIAN_SPEND_PER_CUSTOMER": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvw-bhq", "LOCATION_NAME": "Top Taste", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961231, "LONGITUDE": -75.224868, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 142.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 391.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224868, 39.961231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "LOCATION_NAME": "Chew Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2023, "Total Visits": 164.0, "Total Visitors": 56.0, "POI_CBG": 421010252007.0, "MEDIAN_DWELL": 162.0, "Total Spend": 1360.0, "Total Transactions": 143.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.62, "MEDIAN_SPEND_PER_CUSTOMER": 17.24 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "LOCATION_NAME": "Chuck E. Cheese's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921668, "LONGITUDE": -75.14493, "DATE_RANGE_START": 2023, "Total Visits": 511.0, "Total Visitors": 480.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 890.0, "Total Transactions": 30.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 46.66 }, "geometry": { "type": "Point", "coordinates": [ -75.14493, 39.921668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-nkf", "LOCATION_NAME": "Alexander Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991846, "LONGITUDE": -75.140337, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 167.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.140337, 39.991846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914428, "LONGITUDE": -75.156268, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6946.0, "Total Transactions": 909.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.31, "MEDIAN_SPEND_PER_CUSTOMER": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.156268, 39.914428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 220.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 113.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 7.68 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "LOCATION_NAME": "Cafe La Maude", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 104.0, "POI_CBG": 421010367002.0, "MEDIAN_DWELL": 67.0, "Total Spend": 1663.0, "Total Transactions": 25.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.61, "MEDIAN_SPEND_PER_CUSTOMER": 63.61 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-7yv", "LOCATION_NAME": "Home2 Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.953662, "LONGITUDE": -75.15975, "DATE_RANGE_START": 2023, "Total Visits": 3189.0, "Total Visitors": 2384.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5607.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 239.9, "MEDIAN_SPEND_PER_CUSTOMER": 239.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15975, 39.953662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-whq", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949985, "LONGITUDE": -75.146017, "DATE_RANGE_START": 2023, "Total Visits": 128.0, "Total Visitors": 111.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 198.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.21, "MEDIAN_SPEND_PER_CUSTOMER": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.146017, 39.949985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "LOCATION_NAME": "Total Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 81.0, "Total Spend": 3134.0, "Total Transactions": 118.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-2hq", "LOCATION_NAME": "O Sole Mio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937827, "LONGITUDE": -75.148269, "DATE_RANGE_START": 2023, "Total Visits": 114.0, "Total Visitors": 114.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1141.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.46, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 39.937827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm6-jn5", "LOCATION_NAME": "Kyoto Japan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921763, "LONGITUDE": -75.14657, "DATE_RANGE_START": 2023, "Total Visits": 276.0, "Total Visitors": 247.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1625.0, "Total Transactions": 83.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.92, "MEDIAN_SPEND_PER_CUSTOMER": 18.65 }, "geometry": { "type": "Point", "coordinates": [ -75.14657, 39.921763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "LOCATION_NAME": "CB2", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2023, "Total Visits": 1025.0, "Total Visitors": 678.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 18.0, "Total Spend": 2156.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.35, "MEDIAN_SPEND_PER_CUSTOMER": 73.35 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pj4-y35", "LOCATION_NAME": "Checo Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.007608, "LONGITUDE": -75.14884, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 244.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 102.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14884, 40.007608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phy-gzf", "LOCATION_NAME": "Pharmacy of America VII", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.022544, "LONGITUDE": -75.133834, "DATE_RANGE_START": 2023, "Total Visits": 725.0, "Total Visitors": 566.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 750.0, "Total Transactions": 41.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.8, "MEDIAN_SPEND_PER_CUSTOMER": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133834, 40.022544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2023, "Total Visits": 1020.0, "Total Visitors": 737.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12300.0, "Total Transactions": 490.0, "Total Customers": 332.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "LOCATION_NAME": "Atomic City Comics", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.94191, "LONGITUDE": -75.153432, "DATE_RANGE_START": 2023, "Total Visits": 849.0, "Total Visitors": 698.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1317.0, "Total Transactions": 25.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.08, "MEDIAN_SPEND_PER_CUSTOMER": 56.11 }, "geometry": { "type": "Point", "coordinates": [ -75.153432, 39.94191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "LOCATION_NAME": "Bloomingdale's Outlet Philadelphia", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 3656.0, "Total Transactions": 49.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bzf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.035403, "LONGITUDE": -75.107326, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 688.0, "Total Transactions": 55.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.85, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107326, 40.035403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-rkz", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.977315, "LONGITUDE": -75.273101, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 483.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 130.0, "MEDIAN_SPEND_PER_CUSTOMER": 130.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273101, 39.977315 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-22t@628-pgb-k75", "LOCATION_NAME": "Rock N' Rolls", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 39.970765, "LONGITUDE": -75.15777, "DATE_RANGE_START": 2023, "Total Visits": 440.0, "Total Visitors": 312.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 757.0, "Total Transactions": 33.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.24, "MEDIAN_SPEND_PER_CUSTOMER": 26.45 }, "geometry": { "type": "Point", "coordinates": [ -75.15777, 39.970765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026951, "LONGITUDE": -75.1112, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010292001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1136.0, "Total Transactions": 38.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.55, "MEDIAN_SPEND_PER_CUSTOMER": 25.03 }, "geometry": { "type": "Point", "coordinates": [ -75.1112, 40.026951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.043941, "LONGITUDE": -75.054036, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 28.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 806.0, "Total Transactions": 26.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054036, 40.043941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "LOCATION_NAME": "Schmear It", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956711, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 992.0, "Total Transactions": 95.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948755, "LONGITUDE": -75.160687, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 12566.0, "Total Transactions": 907.0, "Total Customers": 601.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.81, "MEDIAN_SPEND_PER_CUSTOMER": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.160687, 39.948755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.000821, "LONGITUDE": -75.226777, "DATE_RANGE_START": 2023, "Total Visits": 1205.0, "Total Visitors": 848.0, "POI_CBG": 421010121002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3311.0, "Total Transactions": 89.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.62, "MEDIAN_SPEND_PER_CUSTOMER": 41.62 }, "geometry": { "type": "Point", "coordinates": [ -75.226777, 40.000821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "LOCATION_NAME": "Gap Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.049988, "LONGITUDE": -75.062581, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 6.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1117.0, "Total Transactions": 23.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.74, "MEDIAN_SPEND_PER_CUSTOMER": 51.98 }, "geometry": { "type": "Point", "coordinates": [ -75.062581, 40.049988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp4-kfz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.987233, "LONGITUDE": -75.129676, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 138.0, "POI_CBG": 421010161004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 347.0, "Total Transactions": 31.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.69, "MEDIAN_SPEND_PER_CUSTOMER": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129676, 39.987233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnz-zj9", "LOCATION_NAME": "Flower Shop", "TOP_CATEGORY": "Florists", "LATITUDE": 39.991576, "LONGITUDE": -75.102383, "DATE_RANGE_START": 2023, "Total Visits": 258.0, "Total Visitors": 185.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 221.0, "Total Transactions": 23.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.9, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102383, 39.991576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "LOCATION_NAME": "Buffalo Exchange", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.950921, "LONGITUDE": -75.166594, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 9562.0, "Total Transactions": 230.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.57, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166594, 39.950921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pmb-7qz", "LOCATION_NAME": "Voyeur Nightclub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948333, "LONGITUDE": -75.16191, "DATE_RANGE_START": 2023, "Total Visits": 615.0, "Total Visitors": 306.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 60.0, "Total Spend": 2849.0, "Total Transactions": 76.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.05, "MEDIAN_SPEND_PER_CUSTOMER": 35.01 }, "geometry": { "type": "Point", "coordinates": [ -75.16191, 39.948333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "LOCATION_NAME": "Broad Street Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 168.0, "POI_CBG": 421010023001.0, "MEDIAN_DWELL": 70.0, "Total Spend": 4913.0, "Total Transactions": 139.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.44, "MEDIAN_SPEND_PER_CUSTOMER": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "LOCATION_NAME": "New Wave Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 149.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 77.0, "Total Spend": 6150.0, "Total Transactions": 132.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.86 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "LOCATION_NAME": "Philly Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.010175, "LONGITUDE": -75.080992, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010294003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 23239.0, "Total Transactions": 26.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.28, "MEDIAN_SPEND_PER_CUSTOMER": 49.24 }, "geometry": { "type": "Point", "coordinates": [ -75.080992, 40.010175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pgb-st9", "LOCATION_NAME": "South", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.964359, "LONGITUDE": -75.161465, "DATE_RANGE_START": 2023, "Total Visits": 500.0, "Total Visitors": 381.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1127.0, "Total Transactions": 34.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.48, "MEDIAN_SPEND_PER_CUSTOMER": 29.76 }, "geometry": { "type": "Point", "coordinates": [ -75.161465, 39.964359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-ph5-py9", "LOCATION_NAME": "Papp's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982659, "LONGITUDE": -75.241682, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 138.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 377.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.57, "MEDIAN_SPEND_PER_CUSTOMER": 37.76 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.982659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-6p9", "LOCATION_NAME": "W Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951198, "LONGITUDE": -75.165103, "DATE_RANGE_START": 2023, "Total Visits": 48.0, "Total Visitors": 40.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 23736.0, "Total Transactions": 56.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 397.46, "MEDIAN_SPEND_PER_CUSTOMER": 394.48 }, "geometry": { "type": "Point", "coordinates": [ -75.165103, 39.951198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pfx-kmk", "LOCATION_NAME": "Blondie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.026272, "LONGITUDE": -75.225359, "DATE_RANGE_START": 2023, "Total Visits": 1616.0, "Total Visitors": 1477.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3061.0, "Total Transactions": 26.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.6, "MEDIAN_SPEND_PER_CUSTOMER": 97.13 }, "geometry": { "type": "Point", "coordinates": [ -75.225359, 40.026272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "LOCATION_NAME": "Crazy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2023, "Total Visits": 253.0, "Total Visitors": 244.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1295.0, "Total Transactions": 54.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.12, "MEDIAN_SPEND_PER_CUSTOMER": 21.98 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-kcq", "LOCATION_NAME": "Sushi Ya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97144, "LONGITUDE": -75.160502, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 34.0, "POI_CBG": 421010140001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 764.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.79, "MEDIAN_SPEND_PER_CUSTOMER": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.160502, 39.97144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm8-9fz", "LOCATION_NAME": "Philadium", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91258, "LONGITUDE": -75.17636, "DATE_RANGE_START": 2023, "Total Visits": 127.0, "Total Visitors": 101.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 106.0, "Total Spend": 563.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17636, 39.91258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 194.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1286.0, "Total Transactions": 68.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.72, "MEDIAN_SPEND_PER_CUSTOMER": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "LOCATION_NAME": "Chill On the Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2023, "Total Visits": 204.0, "Total Visitors": 116.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 77.0, "Total Spend": 5264.0, "Total Transactions": 489.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.3, "MEDIAN_SPEND_PER_CUSTOMER": 11.54 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 228.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 273.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.17, "MEDIAN_SPEND_PER_CUSTOMER": 54.17 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-n3q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95343, "LONGITUDE": -75.165858, "DATE_RANGE_START": 2023, "Total Visits": 2563.0, "Total Visitors": 1698.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 58.0, "Total Spend": 1254.0, "Total Transactions": 224.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.1, "MEDIAN_SPEND_PER_CUSTOMER": 6.98 }, "geometry": { "type": "Point", "coordinates": [ -75.165858, 39.95343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050992, "LONGITUDE": -75.010133, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4752.0, "Total Transactions": 566.0, "Total Customers": 261.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.09, "MEDIAN_SPEND_PER_CUSTOMER": 10.85 }, "geometry": { "type": "Point", "coordinates": [ -75.010133, 40.050992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23h@63s-dw9-7nq", "LOCATION_NAME": "Sky Asian Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.894615, "LONGITUDE": -75.229133, "DATE_RANGE_START": 2023, "Total Visits": 1045.0, "Total Visitors": 817.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2428.0, "Total Transactions": 93.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.55, "MEDIAN_SPEND_PER_CUSTOMER": 25.04 }, "geometry": { "type": "Point", "coordinates": [ -75.229133, 39.894615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pg9-vpv", "LOCATION_NAME": "OCF Coffee House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967164, "LONGITUDE": -75.172278, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 339.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 38.0, "Total Spend": 9265.0, "Total Transactions": 844.0, "Total Customers": 525.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.29, "MEDIAN_SPEND_PER_CUSTOMER": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.172278, 39.967164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-5vf", "LOCATION_NAME": "Mario Brothers Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048464, "LONGITUDE": -75.061807, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 147.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2566.0, "Total Transactions": 113.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.75, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061807, 40.048464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "LOCATION_NAME": "Banana Leaf", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95374, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 214.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3184.0, "Total Transactions": 69.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.02, "MEDIAN_SPEND_PER_CUSTOMER": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.95374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-xyv", "LOCATION_NAME": "Pho 20", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956547, "LONGITUDE": -75.15583, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 210.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1619.0, "Total Transactions": 59.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.09, "MEDIAN_SPEND_PER_CUSTOMER": 22.94 }, "geometry": { "type": "Point", "coordinates": [ -75.15583, 39.956547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "LOCATION_NAME": "Yiro Yiro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032317, "LONGITUDE": -75.214274, "DATE_RANGE_START": 2023, "Total Visits": 903.0, "Total Visitors": 499.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 627.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.214274, 40.032317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm4-ckf", "LOCATION_NAME": "Sherwin-Williams", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.925078, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 25.0, "Total Spend": 220.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.86, "MEDIAN_SPEND_PER_CUSTOMER": 88.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.925078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.068132, "LONGITUDE": -75.157028, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1783.0, "Total Transactions": 56.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.01, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157028, 40.068132 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 187.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3340.0, "Total Transactions": 50.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.36, "MEDIAN_SPEND_PER_CUSTOMER": 45.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-z75", "LOCATION_NAME": "Pierogi Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101174, "LONGITUDE": -75.028995, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 154.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 46.0, "Total Spend": 1222.0, "Total Transactions": 36.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.22, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028995, 40.101174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2023, "Total Visits": 13135.0, "Total Visitors": 7881.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 4310.0, "Total Transactions": 119.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.52, "MEDIAN_SPEND_PER_CUSTOMER": 31.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.030246, "LONGITUDE": -75.101356, "DATE_RANGE_START": 2023, "Total Visits": 914.0, "Total Visitors": 719.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 37879.0, "Total Transactions": 814.0, "Total Customers": 738.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.23, "MEDIAN_SPEND_PER_CUSTOMER": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.101356, 40.030246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.044605, "LONGITUDE": -75.101135, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 379.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.12, "MEDIAN_SPEND_PER_CUSTOMER": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.101135, 40.044605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2023, "Total Visits": 1112.0, "Total Visitors": 834.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 18549.0, "Total Transactions": 1335.0, "Total Customers": 748.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.96, "MEDIAN_SPEND_PER_CUSTOMER": 16.79 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "LOCATION_NAME": "Academy Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2845.0, "Total Transactions": 96.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.49, "MEDIAN_SPEND_PER_CUSTOMER": 38.22 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj4-zzz", "LOCATION_NAME": "Wok Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005445, "LONGITUDE": -75.150737, "DATE_RANGE_START": 2023, "Total Visits": 7869.0, "Total Visitors": 3352.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 202.0, "Total Spend": 160.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.150737, 40.005445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2023, "Total Visits": 373.0, "Total Visitors": 373.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6868.0, "Total Transactions": 395.0, "Total Customers": 311.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.81, "MEDIAN_SPEND_PER_CUSTOMER": 15.26 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-73q", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947698, "LONGITUDE": -75.193491, "DATE_RANGE_START": 2023, "Total Visits": 1005.0, "Total Visitors": 660.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5653.0, "Total Transactions": 654.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.193491, 39.947698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942566, "LONGITUDE": -75.179038, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 109.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 2829.0, "Total Transactions": 297.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.32, "MEDIAN_SPEND_PER_CUSTOMER": 9.56 }, "geometry": { "type": "Point", "coordinates": [ -75.179038, 39.942566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5s5", "LOCATION_NAME": "Loews Philadelphia Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951621, "LONGITUDE": -75.160379, "DATE_RANGE_START": 2023, "Total Visits": 14228.0, "Total Visitors": 8935.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 39894.0, "Total Transactions": 401.0, "Total Customers": 264.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.97, "MEDIAN_SPEND_PER_CUSTOMER": 49.82 }, "geometry": { "type": "Point", "coordinates": [ -75.160379, 39.951621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "LOCATION_NAME": "Bardot Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2023, "Total Visits": 660.0, "Total Visitors": 451.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 5875.0, "Total Transactions": 165.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.1, "MEDIAN_SPEND_PER_CUSTOMER": 30.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm4-pvz", "LOCATION_NAME": "George's Sandwich Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938842, "LONGITUDE": -75.157973, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 248.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 343.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157973, 39.938842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "LOCATION_NAME": "King Food Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038461, "LONGITUDE": -75.036728, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 133.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 252.0, "Total Spend": 775.0, "Total Transactions": 31.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.17, "MEDIAN_SPEND_PER_CUSTOMER": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036728, 40.038461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-789", "LOCATION_NAME": "The Wine Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948079, "LONGITUDE": -75.224265, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 177.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 50.0, "Total Spend": 173.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224265, 39.948079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-9s5", "LOCATION_NAME": "Parkside Beef & Ale", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954703, "LONGITUDE": -75.164618, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 15.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 4403.0, "Total Transactions": 134.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.64, "MEDIAN_SPEND_PER_CUSTOMER": 47.84 }, "geometry": { "type": "Point", "coordinates": [ -75.164618, 39.954703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "LOCATION_NAME": "General Tso", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 90.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1567.0, "Total Transactions": 45.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.13, "MEDIAN_SPEND_PER_CUSTOMER": 43.58 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-7bk", "LOCATION_NAME": "Franky Bradley's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948507, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2023, "Total Visits": 297.0, "Total Visitors": 237.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 32.0, "Total Spend": 448.0, "Total Transactions": 39.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.18 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.948507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "LOCATION_NAME": "Kostas Bar Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968854, "LONGITUDE": -75.13498, "DATE_RANGE_START": 2023, "Total Visits": 829.0, "Total Visitors": 648.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 10048.0, "Total Transactions": 366.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.75 }, "geometry": { "type": "Point", "coordinates": [ -75.13498, 39.968854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 157.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 145.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.13, "MEDIAN_SPEND_PER_CUSTOMER": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@63s-dvw-j5f", "LOCATION_NAME": "Montego Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956818, "LONGITUDE": -75.226326, "DATE_RANGE_START": 2023, "Total Visits": 44.0, "Total Visitors": 44.0, "POI_CBG": 421010085006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 103.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.226326, 39.956818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2023, "Total Visits": 476.0, "Total Visitors": 380.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5767.0, "Total Transactions": 421.0, "Total Customers": 288.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.23, "MEDIAN_SPEND_PER_CUSTOMER": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pmb-6hq", "LOCATION_NAME": "Top Tomato Bar & Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949587, "LONGITUDE": -75.158979, "DATE_RANGE_START": 2023, "Total Visits": 4640.0, "Total Visitors": 2981.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 129.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.49, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.158979, 39.949587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "LOCATION_NAME": "Asia Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 195.0, "POI_CBG": 421010310001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 935.0, "Total Transactions": 35.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.05, "MEDIAN_SPEND_PER_CUSTOMER": 26.22 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-p9z", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953635, "LONGITUDE": -75.203154, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 98.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 65.0, "Total Spend": 534.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.55, "MEDIAN_SPEND_PER_CUSTOMER": 14.55 }, "geometry": { "type": "Point", "coordinates": [ -75.203154, 39.953635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952035, "LONGITUDE": -75.1683, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 4604.0, "Total Transactions": 116.0, "Total Customers": 116.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.45, "MEDIAN_SPEND_PER_CUSTOMER": 29.45 }, "geometry": { "type": "Point", "coordinates": [ -75.1683, 39.952035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj2-94v", "LOCATION_NAME": "Classic Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001175, "LONGITUDE": -75.114716, "DATE_RANGE_START": 2023, "Total Visits": 154.0, "Total Visitors": 132.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": null, "Total Spend": 491.0, "Total Transactions": 23.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.74, "MEDIAN_SPEND_PER_CUSTOMER": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.114716, 40.001175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953728, "LONGITUDE": -75.16849, "DATE_RANGE_START": 2023, "Total Visits": 908.0, "Total Visitors": 670.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5506.0, "Total Transactions": 1080.0, "Total Customers": 475.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.1, "MEDIAN_SPEND_PER_CUSTOMER": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.16849, 39.953728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "LOCATION_NAME": "Head House Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.940559, "LONGITUDE": -75.145469, "DATE_RANGE_START": 2023, "Total Visits": 663.0, "Total Visitors": 596.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2583.0, "Total Transactions": 71.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.145469, 39.940559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.936256, "LONGITUDE": -75.186116, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 133.0, "POI_CBG": 421010032004.0, "MEDIAN_DWELL": 19.0, "Total Spend": 583.0, "Total Transactions": 31.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.1, "MEDIAN_SPEND_PER_CUSTOMER": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.186116, 39.936256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "LOCATION_NAME": "El Fuego", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 349.0, "Total Transactions": 21.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 14.69 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.91264, "LONGITUDE": -75.155856, "DATE_RANGE_START": 2023, "Total Visits": 1828.0, "Total Visitors": 1571.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 23.0, "Total Spend": 5925.0, "Total Transactions": 162.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 29.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 39.91264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.916142, "LONGITUDE": -75.188352, "DATE_RANGE_START": 2023, "Total Visits": 2154.0, "Total Visitors": 1688.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 32017.0, "Total Transactions": 286.0, "Total Customers": 194.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.84, "MEDIAN_SPEND_PER_CUSTOMER": 73.03 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.916142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-4y9", "LOCATION_NAME": "Ez Dollar Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.923795, "LONGITUDE": -75.163036, "DATE_RANGE_START": 2023, "Total Visits": 154.0, "Total Visitors": 127.0, "POI_CBG": 421010040011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 87.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.17, "MEDIAN_SPEND_PER_CUSTOMER": 11.17 }, "geometry": { "type": "Point", "coordinates": [ -75.163036, 39.923795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24p-222@628-pmf-kcq", "LOCATION_NAME": "Liberty Art & Framing", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950849, "LONGITUDE": -75.173904, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 158.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 806.0, "Total Transactions": 11.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.04, "MEDIAN_SPEND_PER_CUSTOMER": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173904, 39.950849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "LOCATION_NAME": "Tavares Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 130.0, "POI_CBG": 421010247005.0, "MEDIAN_DWELL": 7.0, "Total Spend": 67.0, "Total Transactions": 8.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.63 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "LOCATION_NAME": "University City Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": null, "Total Spend": 358.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.88, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "LOCATION_NAME": "Tiffany & Co.", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950221, "LONGITUDE": -75.169775, "DATE_RANGE_START": 2023, "Total Visits": 36.0, "Total Visitors": 28.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4382.0, "Total Transactions": 15.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 310.5, "MEDIAN_SPEND_PER_CUSTOMER": 324.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169775, 39.950221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2023, "Total Visits": 7024.0, "Total Visitors": 4781.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4198.0, "Total Transactions": 147.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.18, "MEDIAN_SPEND_PER_CUSTOMER": 13.51 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.978386, "LONGITUDE": -75.27109, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 15.0, "Total Spend": 36660.0, "Total Transactions": 749.0, "Total Customers": 555.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.33, "MEDIAN_SPEND_PER_CUSTOMER": 42.54 }, "geometry": { "type": "Point", "coordinates": [ -75.27109, 39.978386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j7q", "LOCATION_NAME": "Boyds Philadelphia", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951667, "LONGITUDE": -75.171279, "DATE_RANGE_START": 2023, "Total Visits": 365.0, "Total Visitors": 257.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 29800.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 298.42, "MEDIAN_SPEND_PER_CUSTOMER": 346.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171279, 39.951667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm3-wc5", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.932286, "LONGITUDE": -75.162307, "DATE_RANGE_START": 2023, "Total Visits": 2339.0, "Total Visitors": 1215.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 183809.0, "Total Transactions": 5266.0, "Total Customers": 1918.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.99, "MEDIAN_SPEND_PER_CUSTOMER": 51.83 }, "geometry": { "type": "Point", "coordinates": [ -75.162307, 39.932286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.031543, "LONGITUDE": -75.100254, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 1849.0, "Total Transactions": 40.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.99, "MEDIAN_SPEND_PER_CUSTOMER": 46.59 }, "geometry": { "type": "Point", "coordinates": [ -75.100254, 40.031543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dwf-bhq", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.912346, "LONGITUDE": -75.233779, "DATE_RANGE_START": 2023, "Total Visits": 422.0, "Total Visitors": 217.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 609.0, "Total Transactions": 34.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.81, "MEDIAN_SPEND_PER_CUSTOMER": 17.35 }, "geometry": { "type": "Point", "coordinates": [ -75.233779, 39.912346 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8m-st9", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.022444, "LONGITUDE": -75.07849, "DATE_RANGE_START": 2023, "Total Visits": 61.0, "Total Visitors": 28.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3403.0, "Total Transactions": 417.0, "Total Customers": 368.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.12, "MEDIAN_SPEND_PER_CUSTOMER": 7.57 }, "geometry": { "type": "Point", "coordinates": [ -75.07849, 40.022444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "LOCATION_NAME": "Moy Fong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2023, "Total Visits": 268.0, "Total Visitors": 237.0, "POI_CBG": 421010264005.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2955.0, "Total Transactions": 129.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.84, "MEDIAN_SPEND_PER_CUSTOMER": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-yqf", "LOCATION_NAME": "New Cira", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957232, "LONGITUDE": -75.182193, "DATE_RANGE_START": 2023, "Total Visits": 9630.0, "Total Visitors": 6969.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 170.0, "Total Transactions": 36.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 4.48 }, "geometry": { "type": "Point", "coordinates": [ -75.182193, 39.957232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjb-6ff", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.048119, "LONGITUDE": -75.143076, "DATE_RANGE_START": 2023, "Total Visits": 44.0, "Total Visitors": 21.0, "POI_CBG": 421010277001.0, "MEDIAN_DWELL": 81.0, "Total Spend": 72.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.78, "MEDIAN_SPEND_PER_CUSTOMER": 28.78 }, "geometry": { "type": "Point", "coordinates": [ -75.143076, 40.048119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-5pv", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982882, "LONGITUDE": -75.10466, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 150.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.93, "MEDIAN_SPEND_PER_CUSTOMER": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.10466, 39.982882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-5j9", "LOCATION_NAME": "Dollar Up & Gifts", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.110031, "LONGITUDE": -75.024308, "DATE_RANGE_START": 2023, "Total Visits": 327.0, "Total Visitors": 244.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 828.0, "Total Transactions": 38.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.53, "MEDIAN_SPEND_PER_CUSTOMER": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.024308, 40.110031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "LOCATION_NAME": "Windfall Gallery", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 111.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 165.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.74, "MEDIAN_SPEND_PER_CUSTOMER": 43.74 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-47q", "LOCATION_NAME": "Halal Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95835, "LONGITUDE": -75.174953, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 451.0, "Total Transactions": 54.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.7, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174953, 39.95835 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "LOCATION_NAME": "South Street Souvlaki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 412.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 18.0, "Total Spend": 2829.0, "Total Transactions": 65.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.92, "MEDIAN_SPEND_PER_CUSTOMER": 43.03 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-zmk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959909, "LONGITUDE": -75.233482, "DATE_RANGE_START": 2023, "Total Visits": 1938.0, "Total Visitors": 1122.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 529.0, "Total Transactions": 35.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.24, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233482, 39.959909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.062998, "LONGITUDE": -75.237715, "DATE_RANGE_START": 2023, "Total Visits": 48.0, "Total Visitors": 40.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 22117.0, "Total Transactions": 441.0, "Total Customers": 337.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.95, "MEDIAN_SPEND_PER_CUSTOMER": 50.82 }, "geometry": { "type": "Point", "coordinates": [ -75.237715, 40.062998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "LOCATION_NAME": "Mr. Tire", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010316006.0, "MEDIAN_DWELL": 91.0, "Total Spend": 2276.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 225.41, "MEDIAN_SPEND_PER_CUSTOMER": 218.6 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "LOCATION_NAME": "Capital Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 154.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5548.0, "Total Transactions": 209.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.3, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "LOCATION_NAME": "Real Food Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949411, "LONGITUDE": -75.16733, "DATE_RANGE_START": 2023, "Total Visits": 317.0, "Total Visitors": 145.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 387.0, "Total Spend": 225.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.39, "MEDIAN_SPEND_PER_CUSTOMER": 15.29 }, "geometry": { "type": "Point", "coordinates": [ -75.16733, 39.949411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfy-zfz", "LOCATION_NAME": "The Rook Manayunk", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021721, "LONGITUDE": -75.215726, "DATE_RANGE_START": 2023, "Total Visits": 401.0, "Total Visitors": 349.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11295.0, "Total Transactions": 202.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.72, "MEDIAN_SPEND_PER_CUSTOMER": 50.06 }, "geometry": { "type": "Point", "coordinates": [ -75.215726, 40.021721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-6p9", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951312, "LONGITUDE": -75.166086, "DATE_RANGE_START": 2023, "Total Visits": 481.0, "Total Visitors": 365.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 14.0, "Total Spend": 183.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.4, "MEDIAN_SPEND_PER_CUSTOMER": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.166086, 39.951312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955722, "LONGITUDE": -75.201818, "DATE_RANGE_START": 2023, "Total Visits": 2148.0, "Total Visitors": 1095.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 363.0, "Total Spend": 401.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.8, "MEDIAN_SPEND_PER_CUSTOMER": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.201818, 39.955722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg2-2zf", "LOCATION_NAME": "The Goat's Beard", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023836, "LONGITUDE": -75.220118, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 152.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5319.0, "Total Transactions": 124.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.16, "MEDIAN_SPEND_PER_CUSTOMER": 42.2 }, "geometry": { "type": "Point", "coordinates": [ -75.220118, 40.023836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7w-psq", "LOCATION_NAME": "Rayaki Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043746, "LONGITUDE": -75.053495, "DATE_RANGE_START": 2023, "Total Visits": 462.0, "Total Visitors": 344.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 30.0, "Total Spend": 481.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.14, "MEDIAN_SPEND_PER_CUSTOMER": 49.68 }, "geometry": { "type": "Point", "coordinates": [ -75.053495, 40.043746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 154.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3567.0, "Total Transactions": 179.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.28, "MEDIAN_SPEND_PER_CUSTOMER": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-n5z", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954209, "LONGITUDE": -75.200978, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 93.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.45, "MEDIAN_SPEND_PER_CUSTOMER": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.200978, 39.954209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-223@628-pmb-yd9", "LOCATION_NAME": "Happy Lamb Hot Pot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953782, "LONGITUDE": -75.157183, "DATE_RANGE_START": 2023, "Total Visits": 1556.0, "Total Visitors": 1121.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 5492.0, "Total Transactions": 103.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.71, "MEDIAN_SPEND_PER_CUSTOMER": 53.33 }, "geometry": { "type": "Point", "coordinates": [ -75.157183, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "LOCATION_NAME": "Nom Nom Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2023, "Total Visits": 276.0, "Total Visitors": 222.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1647.0, "Total Transactions": 41.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.96, "MEDIAN_SPEND_PER_CUSTOMER": 49.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "LOCATION_NAME": "DJ Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2023, "Total Visits": 353.0, "Total Visitors": 282.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1430.0, "Total Transactions": 31.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.38, "MEDIAN_SPEND_PER_CUSTOMER": 52.42 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918938, "LONGITUDE": -75.140855, "DATE_RANGE_START": 2023, "Total Visits": 554.0, "Total Visitors": 435.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 181.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.71, "MEDIAN_SPEND_PER_CUSTOMER": 11.46 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 39.918938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 110.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10782.0, "Total Transactions": 822.0, "Total Customers": 442.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.56, "MEDIAN_SPEND_PER_CUSTOMER": 15.97 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-224@628-pmb-66k", "LOCATION_NAME": "Cosmic Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949349, "LONGITUDE": -75.160742, "DATE_RANGE_START": 2023, "Total Visits": 3282.0, "Total Visitors": 2360.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 572.0, "Total Transactions": 38.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160742, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2023, "Total Visits": 1925.0, "Total Visitors": 1010.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 104899.0, "Total Transactions": 5035.0, "Total Customers": 2454.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.15, "MEDIAN_SPEND_PER_CUSTOMER": 26.41 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "LOCATION_NAME": "The Ranchito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 162.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2662.0, "Total Transactions": 119.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-r49", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044234, "LONGITUDE": -75.087246, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 4778.0, "Total Transactions": 175.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.95, "MEDIAN_SPEND_PER_CUSTOMER": 33.35 }, "geometry": { "type": "Point", "coordinates": [ -75.087246, 40.044234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p7w-6zf", "LOCATION_NAME": "Broncos Brazilian Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057369, "LONGITUDE": -75.060783, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 163.0, "POI_CBG": 421010336003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 92.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.060783, 40.057369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pnx-cbk", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97443, "LONGITUDE": -75.13265, "DATE_RANGE_START": 2023, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 56.0, "Total Spend": 67.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.9, "MEDIAN_SPEND_PER_CUSTOMER": 20.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13265, 39.97443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-9cq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95317, "LONGITUDE": -75.193541, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 8047.0, "Total Transactions": 1429.0, "Total Customers": 506.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 8.79 }, "geometry": { "type": "Point", "coordinates": [ -75.193541, 39.95317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-t7q", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.901479, "LONGITUDE": -75.241623, "DATE_RANGE_START": 2023, "Total Visits": 1955.0, "Total Visitors": 1182.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 928.0, "Total Transactions": 6.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 152.91, "MEDIAN_SPEND_PER_CUSTOMER": 370.38 }, "geometry": { "type": "Point", "coordinates": [ -75.241623, 39.901479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pjb-8qf", "LOCATION_NAME": "Kim's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.050403, "LONGITUDE": -75.141786, "DATE_RANGE_START": 2023, "Total Visits": 441.0, "Total Visitors": 341.0, "POI_CBG": 421010268004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1100.0, "Total Transactions": 36.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.28, "MEDIAN_SPEND_PER_CUSTOMER": 20.47 }, "geometry": { "type": "Point", "coordinates": [ -75.141786, 40.050403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pjf-zvf", "LOCATION_NAME": "Chestnut Hill Sports", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.077007, "LONGITUDE": -75.208666, "DATE_RANGE_START": 2023, "Total Visits": 489.0, "Total Visitors": 368.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 1685.0, "Total Transactions": 25.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.25, "MEDIAN_SPEND_PER_CUSTOMER": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208666, 40.077007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-pqf", "LOCATION_NAME": "Tico's Tacos Tex Mex", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944355, "LONGITUDE": -75.169738, "DATE_RANGE_START": 2023, "Total Visits": 148.0, "Total Visitors": 80.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 18.0, "Total Spend": 65.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.72, "MEDIAN_SPEND_PER_CUSTOMER": 26.14 }, "geometry": { "type": "Point", "coordinates": [ -75.169738, 39.944355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "LOCATION_NAME": "SquareBurger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 133.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 116.0, "Total Spend": 2165.0, "Total Transactions": 120.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-zs5", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.941661, "LONGITUDE": -75.151237, "DATE_RANGE_START": 2023, "Total Visits": 605.0, "Total Visitors": 524.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 60.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151237, 39.941661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "LOCATION_NAME": "Dragon Phoenix House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 130.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 595.0, "Total Transactions": 19.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.17, "MEDIAN_SPEND_PER_CUSTOMER": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pmb-v75", "LOCATION_NAME": "Mei Mei Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948931, "LONGITUDE": -75.143532, "DATE_RANGE_START": 2023, "Total Visits": 326.0, "Total Visitors": 262.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 179.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.6, "MEDIAN_SPEND_PER_CUSTOMER": 71.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143532, 39.948931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "LOCATION_NAME": "IKEA", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.917103, "LONGITUDE": -75.141625, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 180.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 373514.0, "Total Transactions": 3943.0, "Total Customers": 2593.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.08, "MEDIAN_SPEND_PER_CUSTOMER": 57.81 }, "geometry": { "type": "Point", "coordinates": [ -75.141625, 39.917103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2023, "Total Visits": 413.0, "Total Visitors": 311.0, "POI_CBG": 421010311013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1368.0, "Total Transactions": 44.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.98, "MEDIAN_SPEND_PER_CUSTOMER": 18.73 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "LOCATION_NAME": "Ocean Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955678, "LONGITUDE": -75.156826, "DATE_RANGE_START": 2023, "Total Visits": 1959.0, "Total Visitors": 1383.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 9881.0, "Total Transactions": 76.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 168.92, "MEDIAN_SPEND_PER_CUSTOMER": 88.32 }, "geometry": { "type": "Point", "coordinates": [ -75.156826, 39.955678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-6x5", "LOCATION_NAME": "Giuseppe & Sons", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950507, "LONGITUDE": -75.166681, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1296.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.03, "MEDIAN_SPEND_PER_CUSTOMER": 70.03 }, "geometry": { "type": "Point", "coordinates": [ -75.166681, 39.950507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947381, "LONGITUDE": -75.164227, "DATE_RANGE_START": 2023, "Total Visits": 3146.0, "Total Visitors": 1786.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 211.0, "Total Spend": 2437.0, "Total Transactions": 203.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.27, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.164227, 39.947381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "LOCATION_NAME": "Italian Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 180.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2373.0, "Total Transactions": 130.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.16, "MEDIAN_SPEND_PER_CUSTOMER": 18.12 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-8vz", "LOCATION_NAME": "Dizengoff", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953032, "LONGITUDE": -75.192553, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 131.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.192553, 39.953032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfx-kxq", "LOCATION_NAME": "Funny Monk Emporium", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.026687, "LONGITUDE": -75.224098, "DATE_RANGE_START": 2023, "Total Visits": 114.0, "Total Visitors": 108.0, "POI_CBG": 421010214003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6805.0, "Total Transactions": 209.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224098, 40.026687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-w8v", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955767, "LONGITUDE": -75.181994, "DATE_RANGE_START": 2023, "Total Visits": 11074.0, "Total Visitors": 6611.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 12436.0, "Total Transactions": 1126.0, "Total Customers": 951.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.72, "MEDIAN_SPEND_PER_CUSTOMER": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.181994, 39.955767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-gff", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011096, "LONGITUDE": -75.176576, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1805.0, "Total Transactions": 127.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.23, "MEDIAN_SPEND_PER_CUSTOMER": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.176576, 40.011096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4n5", "LOCATION_NAME": "Julian's Soul Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038548, "LONGITUDE": -75.143351, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 104.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": null, "Total Spend": 139.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.47, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143351, 40.038548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm4-b8v", "LOCATION_NAME": "Hyon's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935029, "LONGITUDE": -75.179358, "DATE_RANGE_START": 2023, "Total Visits": 135.0, "Total Visitors": 135.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1445.0, "Total Transactions": 80.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179358, 39.935029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.92325, "LONGITUDE": -75.144846, "DATE_RANGE_START": 2023, "Total Visits": 2550.0, "Total Visitors": 1487.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3924.0, "Total Transactions": 393.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.54, "MEDIAN_SPEND_PER_CUSTOMER": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.144846, 39.92325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "LOCATION_NAME": "Shot Tower Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2023, "Total Visits": 351.0, "Total Visitors": 252.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3449.0, "Total Transactions": 410.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.82 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-75z", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.964575, "LONGITUDE": -75.205355, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 324.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.98, "MEDIAN_SPEND_PER_CUSTOMER": 28.98 }, "geometry": { "type": "Point", "coordinates": [ -75.205355, 39.964575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2023, "Total Visits": 338.0, "Total Visitors": 130.0, "POI_CBG": 421010242001.0, "MEDIAN_DWELL": 110.0, "Total Spend": 1300.0, "Total Transactions": 101.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.85, "MEDIAN_SPEND_PER_CUSTOMER": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "LOCATION_NAME": "Brewer's Outlet", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.953065, "LONGITUDE": -75.217898, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 284.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 24162.0, "Total Transactions": 651.0, "Total Customers": 423.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.07, "MEDIAN_SPEND_PER_CUSTOMER": 39.11 }, "geometry": { "type": "Point", "coordinates": [ -75.217898, 39.953065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-9mk", "LOCATION_NAME": "Bravo Pizza & Halal Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010647, "LONGITUDE": -75.151533, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010201021.0, "MEDIAN_DWELL": 15.0, "Total Spend": 119.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.51, "MEDIAN_SPEND_PER_CUSTOMER": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151533, 40.010647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 150.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 62.0, "Total Spend": 2448.0, "Total Transactions": 93.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.65, "MEDIAN_SPEND_PER_CUSTOMER": 29.59 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dwf-wkz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902609, "LONGITUDE": -75.240437, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 309.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 395.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.06, "MEDIAN_SPEND_PER_CUSTOMER": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.240437, 39.902609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "LOCATION_NAME": "Royal Farms", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2023, "Total Visits": 1076.0, "Total Visitors": 961.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 23107.0, "Total Transactions": 1202.0, "Total Customers": 684.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.42, "MEDIAN_SPEND_PER_CUSTOMER": 21.11 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pfx-kzz", "LOCATION_NAME": "Haggerty Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029194, "LONGITUDE": -75.225585, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010214004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 993.0, "Total Transactions": 59.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.38, "MEDIAN_SPEND_PER_CUSTOMER": 20.46 }, "geometry": { "type": "Point", "coordinates": [ -75.225585, 40.029194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "LOCATION_NAME": "Javies Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.034351, "LONGITUDE": -75.234113, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 180.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9707.0, "Total Transactions": 371.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.13, "MEDIAN_SPEND_PER_CUSTOMER": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.234113, 40.034351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-3kf", "LOCATION_NAME": "Sheraton Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.957083, "LONGITUDE": -75.167351, "DATE_RANGE_START": 2023, "Total Visits": 1978.0, "Total Visitors": 1214.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 217.0, "Total Spend": 2847.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 526.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167351, 39.957083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm6-6tv", "LOCATION_NAME": "Hook & Reel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921762, "LONGITUDE": -75.142528, "DATE_RANGE_START": 2023, "Total Visits": 465.0, "Total Visitors": 442.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 283.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.5, "MEDIAN_SPEND_PER_CUSTOMER": 57.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142528, 39.921762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-3kf", "LOCATION_NAME": "South Side Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925364, "LONGITUDE": -75.159106, "DATE_RANGE_START": 2023, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 58.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 23.01 }, "geometry": { "type": "Point", "coordinates": [ -75.159106, 39.925364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "LOCATION_NAME": "Scoop Deville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949587, "LONGITUDE": -75.16288, "DATE_RANGE_START": 2023, "Total Visits": 4502.0, "Total Visitors": 2743.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 87.0, "Total Spend": 3192.0, "Total Transactions": 220.0, "Total Customers": 199.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16288, 39.949587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg4-47q", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030004, "LONGITUDE": -75.170345, "DATE_RANGE_START": 2023, "Total Visits": 148.0, "Total Visitors": 148.0, "POI_CBG": 421010242001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 880.0, "Total Transactions": 28.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.83, "MEDIAN_SPEND_PER_CUSTOMER": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -75.170345, 40.030004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-j5f", "LOCATION_NAME": "Free People", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949714, "LONGITUDE": -75.168891, "DATE_RANGE_START": 2023, "Total Visits": 526.0, "Total Visitors": 499.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 435534.0, "Total Transactions": 3708.0, "Total Customers": 2654.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.24, "MEDIAN_SPEND_PER_CUSTOMER": 103.88 }, "geometry": { "type": "Point", "coordinates": [ -75.168891, 39.949714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "LOCATION_NAME": "Lets Grub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 104.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 318.0, "Total Transactions": 30.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.37, "MEDIAN_SPEND_PER_CUSTOMER": 14.31 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-h3q", "LOCATION_NAME": "Gennaro's Famous Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031242, "LONGITUDE": -75.179104, "DATE_RANGE_START": 2023, "Total Visits": 329.0, "Total Visitors": 299.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 3049.0, "Total Transactions": 118.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.25, "MEDIAN_SPEND_PER_CUSTOMER": 25.22 }, "geometry": { "type": "Point", "coordinates": [ -75.179104, 40.031242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "LOCATION_NAME": "New Zem Zem Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 78.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 177.0, "Total Spend": 1632.0, "Total Transactions": 78.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.4, "MEDIAN_SPEND_PER_CUSTOMER": 23.15 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-y5f", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.085283, "LONGITUDE": -75.045679, "DATE_RANGE_START": 2023, "Total Visits": 803.0, "Total Visitors": 666.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 393.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.03, "MEDIAN_SPEND_PER_CUSTOMER": 107.42 }, "geometry": { "type": "Point", "coordinates": [ -75.045679, 40.085283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-52k", "LOCATION_NAME": "Indian Sizzler", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959458, "LONGITUDE": -75.194962, "DATE_RANGE_START": 2023, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": null, "Total Spend": 670.0, "Total Transactions": 28.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.42, "MEDIAN_SPEND_PER_CUSTOMER": 24.66 }, "geometry": { "type": "Point", "coordinates": [ -75.194962, 39.959458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p7x-q4v", "LOCATION_NAME": "Tom's Corner Grill & Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04063, "LONGITUDE": -75.043816, "DATE_RANGE_START": 2023, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010332002.0, "MEDIAN_DWELL": null, "Total Spend": 183.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.13, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.043816, 40.04063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmc-qcq", "LOCATION_NAME": "2 Street Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930224, "LONGITUDE": -75.148223, "DATE_RANGE_START": 2023, "Total Visits": 69.0, "Total Visitors": 69.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 95.0, "Total Spend": 156.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.6, "MEDIAN_SPEND_PER_CUSTOMER": 25.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148223, 39.930224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-jgk", "LOCATION_NAME": "DanDan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950261, "LONGITUDE": -75.167616, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6290.0, "Total Transactions": 125.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.62, "MEDIAN_SPEND_PER_CUSTOMER": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167616, 39.950261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-y5f", "LOCATION_NAME": "Mineralistic", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 39.941629, "LONGITUDE": -75.148231, "DATE_RANGE_START": 2023, "Total Visits": 91.0, "Total Visitors": 91.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1136.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.12, "MEDIAN_SPEND_PER_CUSTOMER": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.148231, 39.941629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "LOCATION_NAME": "Davis Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 855.0, "Total Transactions": 49.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.19, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22h@628-pmf-n3q", "LOCATION_NAME": "Genji", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953358, "LONGITUDE": -75.165439, "DATE_RANGE_START": 2023, "Total Visits": 298.0, "Total Visitors": 227.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 19.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.61, "MEDIAN_SPEND_PER_CUSTOMER": 11.61 }, "geometry": { "type": "Point", "coordinates": [ -75.165439, 39.953358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgy-kj9", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.062838, "LONGITUDE": -75.23752, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 182.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1081.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.23752, 40.062838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pnw-v4v", "LOCATION_NAME": "Jack's Bar Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963822, "LONGITUDE": -75.13244, "DATE_RANGE_START": 2023, "Total Visits": 4042.0, "Total Visitors": 1739.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 150.0, "Total Spend": 2203.0, "Total Transactions": 70.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.84, "MEDIAN_SPEND_PER_CUSTOMER": 30.12 }, "geometry": { "type": "Point", "coordinates": [ -75.13244, 39.963822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pm4-ckf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.924823, "LONGITUDE": -75.174196, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 613.0, "Total Transactions": 24.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174196, 39.924823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2023, "Total Visits": 819.0, "Total Visitors": 605.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 9787.0, "Total Transactions": 753.0, "Total Customers": 526.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.31, "MEDIAN_SPEND_PER_CUSTOMER": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "LOCATION_NAME": "Evo Brickoven Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2023, "Total Visits": 103.0, "Total Visitors": 103.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 671.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.35, "MEDIAN_SPEND_PER_CUSTOMER": 34.2 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "LOCATION_NAME": "La Calaca Feliz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 103.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 147.0, "Total Spend": 1631.0, "Total Transactions": 21.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.91, "MEDIAN_SPEND_PER_CUSTOMER": 59.05 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "LOCATION_NAME": "Nori Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 116.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 981.0, "Total Transactions": 23.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "LOCATION_NAME": "European Republic", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2023, "Total Visits": 2528.0, "Total Visitors": 1506.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 1232.0, "Total Transactions": 89.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.16, "MEDIAN_SPEND_PER_CUSTOMER": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2023, "Total Visits": 847.0, "Total Visitors": 729.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4893.0, "Total Transactions": 162.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "LOCATION_NAME": "Zumiez", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2023, "Total Visits": 537.0, "Total Visitors": 456.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 51.0, "Total Spend": 5746.0, "Total Transactions": 93.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.27, "MEDIAN_SPEND_PER_CUSTOMER": 53.79 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.960101, "LONGITUDE": -75.147636, "DATE_RANGE_START": 2023, "Total Visits": 1994.0, "Total Visitors": 1761.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 180243.0, "Total Transactions": 4559.0, "Total Customers": 2546.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.99, "MEDIAN_SPEND_PER_CUSTOMER": 44.33 }, "geometry": { "type": "Point", "coordinates": [ -75.147636, 39.960101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-h89", "LOCATION_NAME": "King of Tandoor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960321, "LONGITUDE": -75.169299, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 109.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 909.0, "Total Transactions": 24.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.03, "MEDIAN_SPEND_PER_CUSTOMER": 36.31 }, "geometry": { "type": "Point", "coordinates": [ -75.169299, 39.960321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgk-z9f", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999874, "LONGITUDE": -75.209033, "DATE_RANGE_START": 2023, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010122041.0, "MEDIAN_DWELL": 19.0, "Total Spend": 620.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.7, "MEDIAN_SPEND_PER_CUSTOMER": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209033, 39.999874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "LOCATION_NAME": "Desi Chaat House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2023, "Total Visits": 110.0, "Total Visitors": 78.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 327.0, "Total Transactions": 19.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.54, "MEDIAN_SPEND_PER_CUSTOMER": 14.09 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp4-tsq", "LOCATION_NAME": "Green Rock Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979669, "LONGITUDE": -75.116167, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 122.0, "POI_CBG": 421010378003.0, "MEDIAN_DWELL": 29.0, "Total Spend": 2774.0, "Total Transactions": 76.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.5, "MEDIAN_SPEND_PER_CUSTOMER": 41.63 }, "geometry": { "type": "Point", "coordinates": [ -75.116167, 39.979669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p8h-vvf", "LOCATION_NAME": "Lee's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032772, "LONGITUDE": -75.029499, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 101.0, "POI_CBG": 421010330004.0, "MEDIAN_DWELL": 76.0, "Total Spend": 1568.0, "Total Transactions": 68.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.12, "MEDIAN_SPEND_PER_CUSTOMER": 19.12 }, "geometry": { "type": "Point", "coordinates": [ -75.029499, 40.032772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 143.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 614.0, "Total Spend": 4167.0, "Total Transactions": 212.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.91, "MEDIAN_SPEND_PER_CUSTOMER": 19.03 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2023, "Total Visits": 522.0, "Total Visitors": 478.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2557.0, "Total Transactions": 163.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01469, "LONGITUDE": -75.13035, "DATE_RANGE_START": 2023, "Total Visits": 502.0, "Total Visitors": 390.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6755.0, "Total Transactions": 556.0, "Total Customers": 262.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.58, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.13035, 40.01469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-x89", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970205, "LONGITUDE": -75.147863, "DATE_RANGE_START": 2023, "Total Visits": 695.0, "Total Visitors": 318.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 211.0, "Total Spend": 775.0, "Total Transactions": 66.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.13 }, "geometry": { "type": "Point", "coordinates": [ -75.147863, 39.970205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm9-5zz", "LOCATION_NAME": "Caffe Chicco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918638, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2023, "Total Visits": 125.0, "Total Visitors": 63.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": null, "Total Spend": 78.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.25, "MEDIAN_SPEND_PER_CUSTOMER": 31.25 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.918638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2023, "Total Visits": 545.0, "Total Visitors": 496.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2743.0, "Total Transactions": 279.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.62, "MEDIAN_SPEND_PER_CUSTOMER": 13.46 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961452, "LONGITUDE": -75.14456, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3898.0, "Total Transactions": 115.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.28, "MEDIAN_SPEND_PER_CUSTOMER": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.14456, 39.961452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "LOCATION_NAME": "Southgate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2023, "Total Visits": 590.0, "Total Visitors": 411.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 55.0, "Total Spend": 1036.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.22, "MEDIAN_SPEND_PER_CUSTOMER": 79.22 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-435", "LOCATION_NAME": "America's Best Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040358, "LONGITUDE": -75.109129, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 13.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 466.0, "Total Transactions": 21.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109129, 40.040358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "LOCATION_NAME": "Saigon Noodle Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074116, "LONGITUDE": -75.202579, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 400.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 885.0, "Total Transactions": 48.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.57, "MEDIAN_SPEND_PER_CUSTOMER": 15.71 }, "geometry": { "type": "Point", "coordinates": [ -75.202579, 40.074116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-xt9", "LOCATION_NAME": "La Colombe Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.878148, "LONGITUDE": -75.237782, "DATE_RANGE_START": 2023, "Total Visits": 1828.0, "Total Visitors": 1450.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6579.0, "Total Transactions": 381.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.82, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.237782, 39.878148 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2023, "Total Visits": 1739.0, "Total Visitors": 1223.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 39916.0, "Total Transactions": 1999.0, "Total Customers": 1201.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.63, "MEDIAN_SPEND_PER_CUSTOMER": 22.03 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22b@628-phd-q75", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002688, "LONGITUDE": -75.214249, "DATE_RANGE_START": 2023, "Total Visits": 2146.0, "Total Visitors": 1136.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5563.0, "Total Transactions": 361.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.93, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.214249, 40.002688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.05135, "LONGITUDE": -75.065288, "DATE_RANGE_START": 2023, "Total Visits": 1686.0, "Total Visitors": 1357.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 162555.0, "Total Transactions": 3269.0, "Total Customers": 2433.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.49, "MEDIAN_SPEND_PER_CUSTOMER": 44.54 }, "geometry": { "type": "Point", "coordinates": [ -75.065288, 40.05135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm9-zs5", "LOCATION_NAME": "The Philly Game Shop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.942073, "LONGITUDE": -75.150513, "DATE_RANGE_START": 2023, "Total Visits": 1554.0, "Total Visitors": 1443.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 15.0, "Total Spend": 4156.0, "Total Transactions": 139.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 35.61 }, "geometry": { "type": "Point", "coordinates": [ -75.150513, 39.942073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "LOCATION_NAME": "Bourbon & Branch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 124.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 166.0, "Total Spend": 719.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.33, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-php-ygk", "LOCATION_NAME": "Stop One Food Market & Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.053727, "LONGITUDE": -75.155505, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 184.0, "POI_CBG": 421010277006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1198.0, "Total Transactions": 105.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.83 }, "geometry": { "type": "Point", "coordinates": [ -75.155505, 40.053727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvp-bff", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946253, "LONGITUDE": -75.239448, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010081012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4171.0, "Total Transactions": 154.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.03, "MEDIAN_SPEND_PER_CUSTOMER": 31.29 }, "geometry": { "type": "Point", "coordinates": [ -75.239448, 39.946253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-g8v", "LOCATION_NAME": "Khaamar Baari Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046046, "LONGITUDE": -75.070809, "DATE_RANGE_START": 2023, "Total Visits": 235.0, "Total Visitors": 170.0, "POI_CBG": 421010314015.0, "MEDIAN_DWELL": 4.0, "Total Spend": 392.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 156.49, "MEDIAN_SPEND_PER_CUSTOMER": 156.49 }, "geometry": { "type": "Point", "coordinates": [ -75.070809, 40.046046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.997394, "LONGITUDE": -75.074105, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 93.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 7169.0, "Total Transactions": 351.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.14, "MEDIAN_SPEND_PER_CUSTOMER": 24.6 }, "geometry": { "type": "Point", "coordinates": [ -75.074105, 39.997394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2023, "Total Visits": 415.0, "Total Visitors": 327.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 8875.0, "Total Transactions": 574.0, "Total Customers": 397.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.28, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pgh-h3q", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00873, "LONGITUDE": -75.176539, "DATE_RANGE_START": 2023, "Total Visits": 894.0, "Total Visitors": 556.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 7237.0, "Total Transactions": 436.0, "Total Customers": 342.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.89, "MEDIAN_SPEND_PER_CUSTOMER": 15.61 }, "geometry": { "type": "Point", "coordinates": [ -75.176539, 40.00873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.047953, "LONGITUDE": -75.055758, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 40.0, "Total Spend": 4467.0, "Total Transactions": 59.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 72.5 }, "geometry": { "type": "Point", "coordinates": [ -75.055758, 40.047953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "LOCATION_NAME": "Grossman Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.951807, "LONGITUDE": -75.143634, "DATE_RANGE_START": 2023, "Total Visits": 272.0, "Total Visitors": 96.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 276.0, "Total Spend": 3285.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1311.46, "MEDIAN_SPEND_PER_CUSTOMER": 1311.46 }, "geometry": { "type": "Point", "coordinates": [ -75.143634, 39.951807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-p85-6kz", "LOCATION_NAME": "IGA", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.068401, "LONGITUDE": -75.051737, "DATE_RANGE_START": 2023, "Total Visits": 2028.0, "Total Visitors": 1189.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 10.0, "Total Spend": 297.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.21, "MEDIAN_SPEND_PER_CUSTOMER": 118.43 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.068401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "LOCATION_NAME": "Medical Tower Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.948135, "LONGITUDE": -75.169286, "DATE_RANGE_START": 2023, "Total Visits": 983.0, "Total Visitors": 857.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1139.0, "Total Transactions": 44.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169286, 39.948135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg9-x89", "LOCATION_NAME": "Spicy Masala Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969531, "LONGITUDE": -75.163321, "DATE_RANGE_START": 2023, "Total Visits": 407.0, "Total Visitors": 370.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3133.0, "Total Transactions": 189.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.98, "MEDIAN_SPEND_PER_CUSTOMER": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163321, 39.969531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2023, "Total Visits": 1602.0, "Total Visitors": 1251.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7515.0, "Total Transactions": 298.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.85, "MEDIAN_SPEND_PER_CUSTOMER": 20.77 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-p7x-6ff", "LOCATION_NAME": "Goubaa Grub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047077, "LONGITUDE": -75.05972, "DATE_RANGE_START": 2023, "Total Visits": 328.0, "Total Visitors": 303.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 16.0, "Total Spend": 261.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.65, "MEDIAN_SPEND_PER_CUSTOMER": 16.65 }, "geometry": { "type": "Point", "coordinates": [ -75.05972, 40.047077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "LOCATION_NAME": "Lee's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1189.0, "Total Transactions": 73.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.85, "MEDIAN_SPEND_PER_CUSTOMER": 19.48 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2023, "Total Visits": 525.0, "Total Visitors": 324.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7058.0, "Total Transactions": 893.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2023, "Total Visits": 1348.0, "Total Visitors": 1154.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 39372.0, "Total Transactions": 1667.0, "Total Customers": 1114.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 227.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7646.0, "Total Transactions": 160.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 24.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-qmk", "LOCATION_NAME": "Sheraton Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.890384, "LONGITUDE": -75.23155, "DATE_RANGE_START": 2023, "Total Visits": 1997.0, "Total Visitors": 1338.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 267.0, "Total Spend": 110.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.32, "MEDIAN_SPEND_PER_CUSTOMER": 38.32 }, "geometry": { "type": "Point", "coordinates": [ -75.23155, 39.890384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pmc-q75", "LOCATION_NAME": "Brulee Catering", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 39.929931, "LONGITUDE": -75.146822, "DATE_RANGE_START": 2023, "Total Visits": 284.0, "Total Visitors": 233.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 39.0, "Total Spend": 51.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146822, 39.929931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "LOCATION_NAME": "King Wok's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2023, "Total Visits": 132.0, "Total Visitors": 120.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1706.0, "Total Transactions": 60.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.9, "MEDIAN_SPEND_PER_CUSTOMER": 23.13 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6rk", "LOCATION_NAME": "Le Pain Quotidien", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949701, "LONGITUDE": -75.165264, "DATE_RANGE_START": 2023, "Total Visits": 803.0, "Total Visitors": 654.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 10237.0, "Total Transactions": 514.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.35, "MEDIAN_SPEND_PER_CUSTOMER": 18.93 }, "geometry": { "type": "Point", "coordinates": [ -75.165264, 39.949701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pmb-gtv", "LOCATION_NAME": "Middle Child", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947198, "LONGITUDE": -75.159468, "DATE_RANGE_START": 2023, "Total Visits": 468.0, "Total Visitors": 312.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1794.0, "Total Transactions": 43.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.32, "MEDIAN_SPEND_PER_CUSTOMER": 42.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159468, 39.947198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "LOCATION_NAME": "Golden Crust Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2023, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": null, "Total Spend": 881.0, "Total Transactions": 50.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.66, "MEDIAN_SPEND_PER_CUSTOMER": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "LOCATION_NAME": "J&P Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953499, "LONGITUDE": -75.218972, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2713.0, "Total Transactions": 75.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.09, "MEDIAN_SPEND_PER_CUSTOMER": 35.27 }, "geometry": { "type": "Point", "coordinates": [ -75.218972, 39.953499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvq-649", "LOCATION_NAME": "Three Sister Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954366, "LONGITUDE": -75.229741, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 9.0, "POI_CBG": 421010085004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 412.0, "Total Transactions": 31.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.24, "MEDIAN_SPEND_PER_CUSTOMER": 21.54 }, "geometry": { "type": "Point", "coordinates": [ -75.229741, 39.954366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2023, "Total Visits": 1350.0, "Total Visitors": 1211.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2703.0, "Total Transactions": 39.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.1, "MEDIAN_SPEND_PER_CUSTOMER": 58.06 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-94v", "LOCATION_NAME": "Journeys", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2023, "Total Visits": 14076.0, "Total Visitors": 8436.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3921.0, "Total Transactions": 51.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.99, "MEDIAN_SPEND_PER_CUSTOMER": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.02544, "LONGITUDE": -75.22391, "DATE_RANGE_START": 2023, "Total Visits": 512.0, "Total Visitors": 376.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3880.0, "Total Transactions": 35.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 115.0, "MEDIAN_SPEND_PER_CUSTOMER": 115.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22391, 40.02544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "LOCATION_NAME": "1 Stop Smoke Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 132.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 563.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.61, "MEDIAN_SPEND_PER_CUSTOMER": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pmf-hnq", "LOCATION_NAME": "Accent on Animals", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.952176, "LONGITUDE": -75.173168, "DATE_RANGE_START": 2023, "Total Visits": 4324.0, "Total Visitors": 2851.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 619.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.9, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173168, 39.952176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "LOCATION_NAME": "Repo Records", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2023, "Total Visits": 605.0, "Total Visitors": 524.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13444.0, "Total Transactions": 307.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.55, "MEDIAN_SPEND_PER_CUSTOMER": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mff", "LOCATION_NAME": "Family Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006057, "LONGITUDE": -75.096664, "DATE_RANGE_START": 2023, "Total Visits": 363.0, "Total Visitors": 238.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 141.0, "Total Transactions": 26.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.64, "MEDIAN_SPEND_PER_CUSTOMER": 6.24 }, "geometry": { "type": "Point", "coordinates": [ -75.096664, 40.006057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-835", "LOCATION_NAME": "3J's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963054, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": null, "Total Spend": 2108.0, "Total Transactions": 158.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.96, "MEDIAN_SPEND_PER_CUSTOMER": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj6-bx5", "LOCATION_NAME": "Nam Vang Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037327, "LONGITUDE": -75.108009, "DATE_RANGE_START": 2023, "Total Visits": 421.0, "Total Visitors": 329.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 75.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 25.82 }, "geometry": { "type": "Point", "coordinates": [ -75.108009, 40.037327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmf-jjv", "LOCATION_NAME": "Green Eggs Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952196, "LONGITUDE": -75.169546, "DATE_RANGE_START": 2023, "Total Visits": 3999.0, "Total Visitors": 2387.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 97.0, "Total Spend": 562.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.75, "MEDIAN_SPEND_PER_CUSTOMER": 61.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169546, 39.952196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2023, "Total Visits": 1106.0, "Total Visitors": 833.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 14172.0, "Total Transactions": 1207.0, "Total Customers": 835.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.9, "MEDIAN_SPEND_PER_CUSTOMER": 12.58 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "LOCATION_NAME": "Colonial Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": null, "Total Spend": 1033.0, "Total Transactions": 56.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.1, "MEDIAN_SPEND_PER_CUSTOMER": 19.62 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-ph6-gkz", "LOCATION_NAME": "How Choy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983761, "LONGITUDE": -75.230935, "DATE_RANGE_START": 2023, "Total Visits": 98.0, "Total Visitors": 98.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 160.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.99, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230935, 39.983761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2023, "Total Visits": 348.0, "Total Visitors": 278.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 4328.0, "Total Transactions": 103.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.24, "MEDIAN_SPEND_PER_CUSTOMER": 38.64 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-5mk", "LOCATION_NAME": "West Elm", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950577, "LONGITUDE": -75.163155, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 18.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1718.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.19, "MEDIAN_SPEND_PER_CUSTOMER": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.163155, 39.950577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-s89", "LOCATION_NAME": "SuitSupply", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.948761, "LONGITUDE": -75.167888, "DATE_RANGE_START": 2023, "Total Visits": 595.0, "Total Visitors": 373.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 13.0, "Total Spend": 12322.0, "Total Transactions": 31.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 171.72, "MEDIAN_SPEND_PER_CUSTOMER": 208.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167888, 39.948761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "LOCATION_NAME": "Vince.", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2023, "Total Visits": 2147.0, "Total Visitors": 1645.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4257.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 228.5, "MEDIAN_SPEND_PER_CUSTOMER": 232.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22p@628-pmb-8y9", "LOCATION_NAME": "Carter's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952104, "LONGITUDE": -75.155399, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1192.0, "Total Transactions": 35.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155399, 39.952104 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.041865, "LONGITUDE": -75.026033, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010329001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 358.0, "Total Transactions": 29.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.96, "MEDIAN_SPEND_PER_CUSTOMER": 15.94 }, "geometry": { "type": "Point", "coordinates": [ -75.026033, 40.041865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "LOCATION_NAME": "Le Meridien", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2023, "Total Visits": 1025.0, "Total Visitors": 643.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 173.0, "Total Spend": 16355.0, "Total Transactions": 90.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.12, "MEDIAN_SPEND_PER_CUSTOMER": 71.19 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-sbk", "LOCATION_NAME": "Howl at the Moon Philadelphia", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947671, "LONGITUDE": -75.16657, "DATE_RANGE_START": 2023, "Total Visits": 1492.0, "Total Visitors": 916.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 18.0, "Total Spend": 19507.0, "Total Transactions": 958.0, "Total Customers": 407.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16657, 39.947671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "LOCATION_NAME": "Canto House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955547, "LONGITUDE": -75.15551, "DATE_RANGE_START": 2023, "Total Visits": 21368.0, "Total Visitors": 14769.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 955.0, "Total Transactions": 28.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.01, "MEDIAN_SPEND_PER_CUSTOMER": 29.21 }, "geometry": { "type": "Point", "coordinates": [ -75.15551, 39.955547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-pmd-skf", "LOCATION_NAME": "Social House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944966, "LONGITUDE": -75.177113, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1613.0, "Total Transactions": 177.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.35, "MEDIAN_SPEND_PER_CUSTOMER": 10.94 }, "geometry": { "type": "Point", "coordinates": [ -75.177113, 39.944966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2023, "Total Visits": 209.0, "Total Visitors": 173.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10401.0, "Total Transactions": 273.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.87, "MEDIAN_SPEND_PER_CUSTOMER": 34.97 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044504, "LONGITUDE": -75.086891, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 42477.0, "Total Transactions": 20.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.25, "MEDIAN_SPEND_PER_CUSTOMER": 21.09 }, "geometry": { "type": "Point", "coordinates": [ -75.086891, 40.044504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.027118, "LONGITUDE": -75.063023, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 15.0, "POI_CBG": 421010319001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 17332.0, "Total Transactions": 309.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.98, "MEDIAN_SPEND_PER_CUSTOMER": 39.2 }, "geometry": { "type": "Point", "coordinates": [ -75.063023, 40.027118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008577, "LONGITUDE": -75.175611, "DATE_RANGE_START": 2023, "Total Visits": 903.0, "Total Visitors": 708.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 797.0, "Total Transactions": 54.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.98, "MEDIAN_SPEND_PER_CUSTOMER": 10.94 }, "geometry": { "type": "Point", "coordinates": [ -75.175611, 40.008577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-ph8-rtv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.976875, "LONGITUDE": -75.274713, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 131.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.17, "MEDIAN_SPEND_PER_CUSTOMER": 47.17 }, "geometry": { "type": "Point", "coordinates": [ -75.274713, 39.976875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "LOCATION_NAME": "Nike Factory Store", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2023, "Total Visits": 542.0, "Total Visitors": 339.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 30948.0, "Total Transactions": 461.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.98, "MEDIAN_SPEND_PER_CUSTOMER": 54.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm5-9pv", "LOCATION_NAME": "Edible Arrangements", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.913418, "LONGITUDE": -75.149482, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 757.0, "Total Transactions": 15.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.8, "MEDIAN_SPEND_PER_CUSTOMER": 41.98 }, "geometry": { "type": "Point", "coordinates": [ -75.149482, 39.913418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2023, "Total Visits": 462.0, "Total Visitors": 349.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 10037.0, "Total Transactions": 560.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-7h5", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.991295, "LONGITUDE": -75.177941, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 198.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 981.0, "Total Transactions": 24.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.01, "MEDIAN_SPEND_PER_CUSTOMER": 24.24 }, "geometry": { "type": "Point", "coordinates": [ -75.177941, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-tvz", "LOCATION_NAME": "Material Culture", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.015276, "LONGITUDE": -75.173527, "DATE_RANGE_START": 2023, "Total Visits": 688.0, "Total Visitors": 592.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 849.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.79, "MEDIAN_SPEND_PER_CUSTOMER": 213.57 }, "geometry": { "type": "Point", "coordinates": [ -75.173527, 40.015276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pmf-j35", "LOCATION_NAME": "Head Start Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950646, "LONGITUDE": -75.169071, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 239.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 702.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 280.3, "MEDIAN_SPEND_PER_CUSTOMER": 280.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 39.950646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-b49", "LOCATION_NAME": "E Cigs International", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.03586, "LONGITUDE": -75.217916, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 80.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": 119.0, "Total Spend": 2420.0, "Total Transactions": 59.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.217916, 40.03586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg9-ty9", "LOCATION_NAME": "Milano Di Rouge", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.962944, "LONGITUDE": -75.163384, "DATE_RANGE_START": 2023, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 1797.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.87, "MEDIAN_SPEND_PER_CUSTOMER": 85.87 }, "geometry": { "type": "Point", "coordinates": [ -75.163384, 39.962944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pp5-2p9", "LOCATION_NAME": "Izlas Latin Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992275, "LONGITUDE": -75.135578, "DATE_RANGE_START": 2023, "Total Visits": 982.0, "Total Visitors": 664.0, "POI_CBG": 421010176015.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5227.0, "Total Transactions": 71.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.0, "MEDIAN_SPEND_PER_CUSTOMER": 101.54 }, "geometry": { "type": "Point", "coordinates": [ -75.135578, 39.992275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "LOCATION_NAME": "Walnut Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.95707, "LONGITUDE": -75.224522, "DATE_RANGE_START": 2023, "Total Visits": 1343.0, "Total Visitors": 1075.0, "POI_CBG": 421010085002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4040.0, "Total Transactions": 89.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.14, "MEDIAN_SPEND_PER_CUSTOMER": 25.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224522, 39.95707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pg3-789", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067023, "LONGITUDE": -75.178027, "DATE_RANGE_START": 2023, "Total Visits": 150.0, "Total Visitors": 113.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 491.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.63, "MEDIAN_SPEND_PER_CUSTOMER": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178027, 40.067023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "LOCATION_NAME": "Cleavers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951401, "LONGITUDE": -75.170622, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 11714.0, "Total Transactions": 362.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.2, "MEDIAN_SPEND_PER_CUSTOMER": 26.69 }, "geometry": { "type": "Point", "coordinates": [ -75.170622, 39.951401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "LOCATION_NAME": "La Tienda MiniMarket", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2023, "Total Visits": 44.0, "Total Visitors": 44.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": null, "Total Spend": 87.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.06, "MEDIAN_SPEND_PER_CUSTOMER": 15.06 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-66k", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949053, "LONGITUDE": -75.160719, "DATE_RANGE_START": 2023, "Total Visits": 3282.0, "Total Visitors": 2360.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3502.0, "Total Transactions": 163.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.42, "MEDIAN_SPEND_PER_CUSTOMER": 20.29 }, "geometry": { "type": "Point", "coordinates": [ -75.160719, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "LOCATION_NAME": "Hair Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2023, "Total Visits": 2146.0, "Total Visitors": 1136.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 4652.0, "Total Transactions": 173.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 24.81 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.953117, "LONGITUDE": -75.167361, "DATE_RANGE_START": 2023, "Total Visits": 5142.0, "Total Visitors": 2887.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 386.0, "Total Transactions": 26.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.167361, 39.953117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "LOCATION_NAME": "John's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2023, "Total Visits": 185.0, "Total Visitors": 81.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 188.0, "Total Spend": 389.0, "Total Transactions": 21.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 17.63 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "LOCATION_NAME": "Castor Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2023, "Total Visits": 169.0, "Total Visitors": 104.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1659.0, "Total Transactions": 80.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.47, "MEDIAN_SPEND_PER_CUSTOMER": 20.96 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "LOCATION_NAME": "Solly Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2023, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": null, "Total Spend": 1170.0, "Total Transactions": 34.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.63, "MEDIAN_SPEND_PER_CUSTOMER": 23.35 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-5xq", "LOCATION_NAME": "Throwbaxx Bar & Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042336, "LONGITUDE": -75.226518, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 143.0, "POI_CBG": 421010216001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 75.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.9, "MEDIAN_SPEND_PER_CUSTOMER": 29.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226518, 40.042336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p74-cyv", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041879, "LONGITUDE": -75.027519, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 119.0, "POI_CBG": 421010331022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 33.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.027519, 40.041879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "LOCATION_NAME": "Hatville Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2023, "Total Visits": 301.0, "Total Visitors": 287.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1029.0, "Total Transactions": 63.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.98, "MEDIAN_SPEND_PER_CUSTOMER": 14.48 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951018, "LONGITUDE": -75.166333, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7664.0, "Total Transactions": 604.0, "Total Customers": 326.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.41, "MEDIAN_SPEND_PER_CUSTOMER": 12.65 }, "geometry": { "type": "Point", "coordinates": [ -75.166333, 39.951018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089384, "LONGITUDE": -74.964343, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5180.0, "Total Transactions": 433.0, "Total Customers": 262.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -74.964343, 40.089384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvx-xkf", "LOCATION_NAME": "Dottie's Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948402, "LONGITUDE": -75.213616, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 69.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.07, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213616, 39.948402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-33q", "LOCATION_NAME": "Urban Outfitters", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.953788, "LONGITUDE": -75.194952, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 505.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6400.0, "Total Transactions": 157.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.4, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.194952, 39.953788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040675, "LONGITUDE": -75.076814, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 11.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1257.0, "Total Transactions": 96.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.98, "MEDIAN_SPEND_PER_CUSTOMER": 10.68 }, "geometry": { "type": "Point", "coordinates": [ -75.076814, 40.040675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2023, "Total Visits": 906.0, "Total Visitors": 614.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 16826.0, "Total Transactions": 1243.0, "Total Customers": 772.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.14, "MEDIAN_SPEND_PER_CUSTOMER": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-4jv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96223, "LONGITUDE": -75.161973, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3572.0, "Total Transactions": 400.0, "Total Customers": 235.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.66 }, "geometry": { "type": "Point", "coordinates": [ -75.161973, 39.96223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-223@628-phy-rc5", "LOCATION_NAME": "Tierra Colombiana Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020572, "LONGITUDE": -75.133736, "DATE_RANGE_START": 2023, "Total Visits": 293.0, "Total Visitors": 164.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 81.0, "Total Spend": 668.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 134.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133736, 40.020572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-49z", "LOCATION_NAME": "Greek From Greece", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957875, "LONGITUDE": -75.188864, "DATE_RANGE_START": 2023, "Total Visits": 680.0, "Total Visitors": 276.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 68.0, "Total Spend": 100.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.12, "MEDIAN_SPEND_PER_CUSTOMER": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.188864, 39.957875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-r8v", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037689, "LONGITUDE": -75.152867, "DATE_RANGE_START": 2023, "Total Visits": 1593.0, "Total Visitors": 456.0, "POI_CBG": 421010279022.0, "MEDIAN_DWELL": 72.0, "Total Spend": 32.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152867, 40.037689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2023, "Total Visits": 3034.0, "Total Visitors": 2032.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3547.0, "Total Transactions": 197.0, "Total Customers": 116.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.62, "MEDIAN_SPEND_PER_CUSTOMER": 16.81 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-tsq", "LOCATION_NAME": "J's Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.017868, "LONGITUDE": -75.091027, "DATE_RANGE_START": 2023, "Total Visits": 336.0, "Total Visitors": 284.0, "POI_CBG": 421010301003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 39.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091027, 40.017868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8m-st9", "LOCATION_NAME": "E Z Brunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022624, "LONGITUDE": -75.078903, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 43.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 518.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.078903, 40.022624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pm4-3kf", "LOCATION_NAME": "Miles Table", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925054, "LONGITUDE": -75.160226, "DATE_RANGE_START": 2023, "Total Visits": 1053.0, "Total Visitors": 780.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 77.0, "Total Spend": 1872.0, "Total Transactions": 91.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.17, "MEDIAN_SPEND_PER_CUSTOMER": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.160226, 39.925054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9q-jsq", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.084384, "LONGITUDE": -75.022786, "DATE_RANGE_START": 2023, "Total Visits": 473.0, "Total Visitors": 440.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 213.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.99, "MEDIAN_SPEND_PER_CUSTOMER": 84.99 }, "geometry": { "type": "Point", "coordinates": [ -75.022786, 40.084384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5mk", "LOCATION_NAME": "Fogo de Chão", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950936, "LONGITUDE": -75.162912, "DATE_RANGE_START": 2023, "Total Visits": 13731.0, "Total Visitors": 8695.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 33096.0, "Total Transactions": 195.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 157.14, "MEDIAN_SPEND_PER_CUSTOMER": 163.41 }, "geometry": { "type": "Point", "coordinates": [ -75.162912, 39.950936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "LOCATION_NAME": "The Bottle Shop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 105.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 12964.0, "Total Transactions": 511.0, "Total Customers": 302.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.29, "MEDIAN_SPEND_PER_CUSTOMER": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.992468, "LONGITUDE": -75.101245, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 18.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 10127.0, "Total Transactions": 204.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.83, "MEDIAN_SPEND_PER_CUSTOMER": 39.93 }, "geometry": { "type": "Point", "coordinates": [ -75.101245, 39.992468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgf-33q", "LOCATION_NAME": "Dig Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953642, "LONGITUDE": -75.195173, "DATE_RANGE_START": 2023, "Total Visits": 4222.0, "Total Visitors": 2643.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 114.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.03 }, "geometry": { "type": "Point", "coordinates": [ -75.195173, 39.953642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "LOCATION_NAME": "Sampan", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.94953, "LONGITUDE": -75.162238, "DATE_RANGE_START": 2023, "Total Visits": 4502.0, "Total Visitors": 2743.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 87.0, "Total Spend": 6745.0, "Total Transactions": 81.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.84, "MEDIAN_SPEND_PER_CUSTOMER": 82.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162238, 39.94953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgg-p5f", "LOCATION_NAME": "Mimmo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004649, "LONGITUDE": -75.17882, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010171004.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1901.0, "Total Transactions": 90.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.83, "MEDIAN_SPEND_PER_CUSTOMER": 20.46 }, "geometry": { "type": "Point", "coordinates": [ -75.17882, 40.004649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@63s-dvr-9zz", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929568, "LONGITUDE": -75.229061, "DATE_RANGE_START": 2023, "Total Visits": 322.0, "Total Visitors": 133.0, "POI_CBG": 421010066002.0, "MEDIAN_DWELL": 583.0, "Total Spend": 4013.0, "Total Transactions": 190.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.18, "MEDIAN_SPEND_PER_CUSTOMER": 23.12 }, "geometry": { "type": "Point", "coordinates": [ -75.229061, 39.929568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2023, "Total Visits": 840.0, "Total Visitors": 526.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8248.0, "Total Transactions": 550.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.994586, "LONGITUDE": -75.091606, "DATE_RANGE_START": 2023, "Total Visits": 2833.0, "Total Visitors": 1696.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1358458.0, "Total Transactions": 30112.0, "Total Customers": 11963.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.5, "MEDIAN_SPEND_PER_CUSTOMER": 50.02 }, "geometry": { "type": "Point", "coordinates": [ -75.091606, 39.994586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 433.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2205.0, "Total Transactions": 109.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.81, "MEDIAN_SPEND_PER_CUSTOMER": 19.81 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnz-zj9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991151, "LONGITUDE": -75.102101, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 271.0, "Total Transactions": 13.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.15, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102101, 39.991151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-68v", "LOCATION_NAME": "Alpha Jeweler", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.049666, "LONGITUDE": -75.062081, "DATE_RANGE_START": 2023, "Total Visits": 148.0, "Total Visitors": 148.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 514.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 151.2, "MEDIAN_SPEND_PER_CUSTOMER": 151.2 }, "geometry": { "type": "Point", "coordinates": [ -75.062081, 40.049666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm3-vzz", "LOCATION_NAME": "Sermania Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.928072, "LONGITUDE": -75.165393, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 85.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 129.0, "Total Spend": 154.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165393, 39.928072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.068105, "LONGITUDE": -75.198516, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 10735.0, "Total Transactions": 281.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.24, "MEDIAN_SPEND_PER_CUSTOMER": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.198516, 40.068105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-sbk", "LOCATION_NAME": "Woven Treasures", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.945195, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2023, "Total Visits": 129.0, "Total Visitors": 75.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 69.0, "Total Spend": 603.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.6, "MEDIAN_SPEND_PER_CUSTOMER": 64.26 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.945195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pg2-zs5", "LOCATION_NAME": "South Philly Italian Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054139, "LONGITUDE": -75.194452, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010388004.0, "MEDIAN_DWELL": null, "Total Spend": 338.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.79, "MEDIAN_SPEND_PER_CUSTOMER": 66.81 }, "geometry": { "type": "Point", "coordinates": [ -75.194452, 40.054139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-gtv", "LOCATION_NAME": "Bruno's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067212, "LONGITUDE": -75.146516, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 64.0, "Total Spend": 194.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.146516, 40.067212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "LOCATION_NAME": "El Camino Real", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 208.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2407.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.48, "MEDIAN_SPEND_PER_CUSTOMER": 74.48 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-qzz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993902, "LONGITUDE": -75.096793, "DATE_RANGE_START": 2023, "Total Visits": 564.0, "Total Visitors": 522.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 450.0, "Total Transactions": 29.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.64, "MEDIAN_SPEND_PER_CUSTOMER": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.096793, 39.993902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "LOCATION_NAME": "Cambria Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2023, "Total Visits": 8192.0, "Total Visitors": 5756.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 10.0, "Total Spend": 22358.0, "Total Transactions": 120.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.68, "MEDIAN_SPEND_PER_CUSTOMER": 95.96 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-33q", "LOCATION_NAME": "Hello World", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.953734, "LONGITUDE": -75.19539, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4322.0, "Total Transactions": 118.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.05, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.19539, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.058173, "LONGITUDE": -75.052406, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3110.0, "Total Transactions": 91.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.36, "MEDIAN_SPEND_PER_CUSTOMER": 41.68 }, "geometry": { "type": "Point", "coordinates": [ -75.052406, 40.058173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-p8d-kxq", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012695, "LONGITUDE": -75.088391, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 46.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.71, "MEDIAN_SPEND_PER_CUSTOMER": 5.84 }, "geometry": { "type": "Point", "coordinates": [ -75.088391, 40.012695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-87q", "LOCATION_NAME": "Marriott Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.95272, "LONGITUDE": -75.160544, "DATE_RANGE_START": 2023, "Total Visits": 738.0, "Total Visitors": 460.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 149.0, "Total Spend": 312.0, "Total Transactions": 9.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 31.44 }, "geometry": { "type": "Point", "coordinates": [ -75.160544, 39.95272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "LOCATION_NAME": "Vientiane Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2023, "Total Visits": 127.0, "Total Visitors": 127.0, "POI_CBG": 421010161003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1149.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.44, "MEDIAN_SPEND_PER_CUSTOMER": 61.44 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 100.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 977.0, "Total Transactions": 51.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 18.78 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2023, "Total Visits": 139.0, "Total Visitors": 139.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 5776.0, "Total Transactions": 371.0, "Total Customers": 262.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.98, "MEDIAN_SPEND_PER_CUSTOMER": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949727, "LONGITUDE": -75.145549, "DATE_RANGE_START": 2023, "Total Visits": 582.0, "Total Visitors": 401.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 553.0, "Total Transactions": 49.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.145549, 39.949727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 244.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2140.0, "Total Transactions": 238.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.13, "MEDIAN_SPEND_PER_CUSTOMER": 9.94 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p85-2tv", "LOCATION_NAME": "S S Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.066075, "LONGITUDE": -75.050826, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 198.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 307.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.14, "MEDIAN_SPEND_PER_CUSTOMER": 58.29 }, "geometry": { "type": "Point", "coordinates": [ -75.050826, 40.066075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-jd9", "LOCATION_NAME": "The Body Shop", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952033, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 140.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 432.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.78, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "LOCATION_NAME": "Parkway Corner Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 210.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4806.0, "Total Transactions": 326.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.41, "MEDIAN_SPEND_PER_CUSTOMER": 20.03 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.029718, "LONGITUDE": -75.035335, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 144.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 13.0, "Total Spend": 491.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.08, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035335, 40.029718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-225@628-pmf-j7q", "LOCATION_NAME": "Van Leeuwen Artisan Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951193, "LONGITUDE": -75.170331, "DATE_RANGE_START": 2023, "Total Visits": 1325.0, "Total Visitors": 847.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1860.0, "Total Transactions": 132.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.1, "MEDIAN_SPEND_PER_CUSTOMER": 13.09 }, "geometry": { "type": "Point", "coordinates": [ -75.170331, 39.951193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2023, "Total Visits": 1290.0, "Total Visitors": 645.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 40.0, "Total Spend": 11581.0, "Total Transactions": 359.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.09, "MEDIAN_SPEND_PER_CUSTOMER": 27.18 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "LOCATION_NAME": "Morimoto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2023, "Total Visits": 328.0, "Total Visitors": 278.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 82.0, "Total Spend": 26169.0, "Total Transactions": 110.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 185.07, "MEDIAN_SPEND_PER_CUSTOMER": 187.91 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgj-pgk", "LOCATION_NAME": "Arthurs Dog House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992776, "LONGITUDE": -75.148159, "DATE_RANGE_START": 2023, "Total Visits": 562.0, "Total Visitors": 421.0, "POI_CBG": 421010165003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 77.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.148159, 39.992776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2023, "Total Visits": 562.0, "Total Visitors": 380.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 199.0, "Total Spend": 7051.0, "Total Transactions": 29.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 134.97, "MEDIAN_SPEND_PER_CUSTOMER": 178.86 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm9-5xq", "LOCATION_NAME": "The Pizza Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919497, "LONGITUDE": -75.172624, "DATE_RANGE_START": 2023, "Total Visits": 164.0, "Total Visitors": 148.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": 55.0, "Total Spend": 314.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.73, "MEDIAN_SPEND_PER_CUSTOMER": 53.73 }, "geometry": { "type": "Point", "coordinates": [ -75.172624, 39.919497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-nkf", "LOCATION_NAME": "Dave & Buster's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.956224, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2023, "Total Visits": 3307.0, "Total Visitors": 1724.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 186.0, "Total Spend": 3311.0, "Total Transactions": 73.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.68, "MEDIAN_SPEND_PER_CUSTOMER": 53.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.956224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kcq", "LOCATION_NAME": "Almaz Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950642, "LONGITUDE": -75.173954, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 158.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1038.0, "Total Transactions": 34.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.53 }, "geometry": { "type": "Point", "coordinates": [ -75.173954, 39.950642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-php-y5f", "LOCATION_NAME": "Clark's Tires", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052584, "LONGITUDE": -75.157104, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010277006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 572.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157104, 40.052584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2023, "Total Visits": 1271.0, "Total Visitors": 852.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 8925.0, "Total Transactions": 571.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.97, "MEDIAN_SPEND_PER_CUSTOMER": 16.42 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg9-7h5", "LOCATION_NAME": "Hair Town", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991296, "LONGITUDE": -75.180135, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 198.0, "POI_CBG": 421010169022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1801.0, "Total Transactions": 64.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.55, "MEDIAN_SPEND_PER_CUSTOMER": 26.24 }, "geometry": { "type": "Point", "coordinates": [ -75.180135, 39.991296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-224@628-pmb-xkf", "LOCATION_NAME": "Moon Flower House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956389, "LONGITUDE": -75.157042, "DATE_RANGE_START": 2023, "Total Visits": 403.0, "Total Visitors": 361.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 27.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.157042, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@63s-dvr-qj9", "LOCATION_NAME": "Trendsetters Bar & Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.937385, "LONGITUDE": -75.217901, "DATE_RANGE_START": 2023, "Total Visits": 185.0, "Total Visitors": 127.0, "POI_CBG": 421010070001.0, "MEDIAN_DWELL": 109.0, "Total Spend": 631.0, "Total Transactions": 16.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.76, "MEDIAN_SPEND_PER_CUSTOMER": 28.76 }, "geometry": { "type": "Point", "coordinates": [ -75.217901, 39.937385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "LOCATION_NAME": "Menchie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2023, "Total Visits": 303.0, "Total Visitors": 287.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 3952.0, "Total Transactions": 264.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.41, "MEDIAN_SPEND_PER_CUSTOMER": 14.72 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.064377, "LONGITUDE": -75.23812, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 459.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.6, "MEDIAN_SPEND_PER_CUSTOMER": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.23812, 40.064377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-pn5", "LOCATION_NAME": "&pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954318, "LONGITUDE": -75.201459, "DATE_RANGE_START": 2023, "Total Visits": 2588.0, "Total Visitors": 1727.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 331.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.44, "MEDIAN_SPEND_PER_CUSTOMER": 35.44 }, "geometry": { "type": "Point", "coordinates": [ -75.201459, 39.954318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pg4-2p9", "LOCATION_NAME": "Bargain Thrift Center", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.031821, "LONGITUDE": -75.167835, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 120.0, "POI_CBG": 421010245004.0, "MEDIAN_DWELL": 27.0, "Total Spend": 395.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.78, "MEDIAN_SPEND_PER_CUSTOMER": 34.53 }, "geometry": { "type": "Point", "coordinates": [ -75.167835, 40.031821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjk-rff", "LOCATION_NAME": "The Cedars House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.083013, "LONGITUDE": -75.232411, "DATE_RANGE_START": 2023, "Total Visits": 95.0, "Total Visitors": 85.0, "POI_CBG": 421010384001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2862.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1142.5, "MEDIAN_SPEND_PER_CUSTOMER": 1142.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232411, 40.083013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7z-qs5", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.044023, "LONGITUDE": -75.088364, "DATE_RANGE_START": 2023, "Total Visits": 2913.0, "Total Visitors": 1561.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 415.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 86.87 }, "geometry": { "type": "Point", "coordinates": [ -75.088364, 40.044023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952204, "LONGITUDE": -75.166429, "DATE_RANGE_START": 2023, "Total Visits": 5390.0, "Total Visitors": 3301.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2131.0, "Total Transactions": 354.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.27, "MEDIAN_SPEND_PER_CUSTOMER": 7.12 }, "geometry": { "type": "Point", "coordinates": [ -75.166429, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-227@628-pm4-mff", "LOCATION_NAME": "APlus", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.936496, "LONGITUDE": -75.160414, "DATE_RANGE_START": 2023, "Total Visits": 942.0, "Total Visitors": 896.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 233.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.75, "MEDIAN_SPEND_PER_CUSTOMER": 13.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160414, 39.936496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040927, "LONGITUDE": -75.065636, "DATE_RANGE_START": 2023, "Total Visits": 403.0, "Total Visitors": 239.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 817.0, "Total Transactions": 48.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.86, "MEDIAN_SPEND_PER_CUSTOMER": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.065636, 40.040927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-skf", "LOCATION_NAME": "Hunnies Crispy Chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948974, "LONGITUDE": -75.166579, "DATE_RANGE_START": 2023, "Total Visits": 2172.0, "Total Visitors": 1549.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 3.0, "Total Spend": 503.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.06, "MEDIAN_SPEND_PER_CUSTOMER": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.166579, 39.948974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-zzz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.058549, "LONGITUDE": -75.166373, "DATE_RANGE_START": 2023, "Total Visits": 385.0, "Total Visitors": 214.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 3707.0, "Total Transactions": 173.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.94, "MEDIAN_SPEND_PER_CUSTOMER": 20.34 }, "geometry": { "type": "Point", "coordinates": [ -75.166373, 40.058549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "LOCATION_NAME": "Bellini", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 148.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4446.0, "Total Transactions": 35.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 107.32, "MEDIAN_SPEND_PER_CUSTOMER": 118.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "LOCATION_NAME": "A Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950401, "LONGITUDE": -75.170434, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 11.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 75.0, "Total Spend": 5843.0, "Total Transactions": 349.0, "Total Customers": 276.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 15.72 }, "geometry": { "type": "Point", "coordinates": [ -75.170434, 39.950401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2023, "Total Visits": 342.0, "Total Visitors": 143.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 6475.0, "Total Transactions": 754.0, "Total Customers": 314.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.94, "MEDIAN_SPEND_PER_CUSTOMER": 10.22 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pmb-fpv", "LOCATION_NAME": "Shaking Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946982, "LONGITUDE": -75.157365, "DATE_RANGE_START": 2023, "Total Visits": 342.0, "Total Visitors": 214.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2258.0, "Total Transactions": 54.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.98, "MEDIAN_SPEND_PER_CUSTOMER": 45.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157365, 39.946982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@63s-dvr-hyv", "LOCATION_NAME": "African Small Pot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925607, "LONGITUDE": -75.234713, "DATE_RANGE_START": 2023, "Total Visits": 451.0, "Total Visitors": 381.0, "POI_CBG": 421010063001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 92.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.75, "MEDIAN_SPEND_PER_CUSTOMER": 26.75 }, "geometry": { "type": "Point", "coordinates": [ -75.234713, 39.925607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 373.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 842.0, "Total Transactions": 38.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.65, "MEDIAN_SPEND_PER_CUSTOMER": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-3wk", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.920421, "LONGITUDE": -75.186389, "DATE_RANGE_START": 2023, "Total Visits": 1151.0, "Total Visitors": 829.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1613.0, "Total Transactions": 59.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.99, "MEDIAN_SPEND_PER_CUSTOMER": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -75.186389, 39.920421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "LOCATION_NAME": "Ruby Tuesday", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.887825, "LONGITUDE": -75.24699, "DATE_RANGE_START": 2023, "Total Visits": 529.0, "Total Visitors": 438.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 11512.0, "Total Transactions": 235.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.33, "MEDIAN_SPEND_PER_CUSTOMER": 50.81 }, "geometry": { "type": "Point", "coordinates": [ -75.24699, 39.887825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm4-k2k", "LOCATION_NAME": "Four Seasons", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934372, "LONGITUDE": -75.154357, "DATE_RANGE_START": 2023, "Total Visits": 1826.0, "Total Visitors": 1516.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 175.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.43, "MEDIAN_SPEND_PER_CUSTOMER": 35.26 }, "geometry": { "type": "Point", "coordinates": [ -75.154357, 39.934372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080996, "LONGITUDE": -75.170897, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 15.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7699.0, "Total Transactions": 448.0, "Total Customers": 351.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.83, "MEDIAN_SPEND_PER_CUSTOMER": 17.05 }, "geometry": { "type": "Point", "coordinates": [ -75.170897, 40.080996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "LOCATION_NAME": "Asian Bamboo House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2023, "Total Visits": 304.0, "Total Visitors": 267.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2235.0, "Total Transactions": 65.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.43, "MEDIAN_SPEND_PER_CUSTOMER": 38.29 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-tjv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949522, "LONGITUDE": -75.154256, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1525.0, "Total Transactions": 267.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154256, 39.949522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.99191, "LONGITUDE": -75.090695, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 124.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 63013.0, "Total Transactions": 500.0, "Total Customers": 219.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 90.49 }, "geometry": { "type": "Point", "coordinates": [ -75.090695, 39.99191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2023, "Total Visits": 998.0, "Total Visitors": 847.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 23.0, "Total Spend": 16172.0, "Total Transactions": 972.0, "Total Customers": 699.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.74, "MEDIAN_SPEND_PER_CUSTOMER": 17.71 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969384, "LONGITUDE": -75.159456, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 155.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 5083.0, "Total Transactions": 618.0, "Total Customers": 318.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159456, 39.969384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-jjv", "LOCATION_NAME": "Hakim's Bookstore", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.95665, "LONGITUDE": -75.225827, "DATE_RANGE_START": 2023, "Total Visits": 39.0, "Total Visitors": 39.0, "POI_CBG": 421010085006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1241.0, "Total Transactions": 110.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.64, "MEDIAN_SPEND_PER_CUSTOMER": 6.53 }, "geometry": { "type": "Point", "coordinates": [ -75.225827, 39.95665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "LOCATION_NAME": "Miller's Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.07979, "LONGITUDE": -75.028617, "DATE_RANGE_START": 2023, "Total Visits": 909.0, "Total Visitors": 734.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 77.0, "Total Spend": 28655.0, "Total Transactions": 453.0, "Total Customers": 383.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.86, "MEDIAN_SPEND_PER_CUSTOMER": 59.63 }, "geometry": { "type": "Point", "coordinates": [ -75.028617, 40.07979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23g@63s-dw9-7nq", "LOCATION_NAME": "Gachi Sushi and Noodle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.894656, "LONGITUDE": -75.229135, "DATE_RANGE_START": 2023, "Total Visits": 1045.0, "Total Visitors": 817.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 697.0, "Total Transactions": 44.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.78, "MEDIAN_SPEND_PER_CUSTOMER": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.229135, 39.894656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pm3-t5f", "LOCATION_NAME": "River Twice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929748, "LONGITUDE": -75.163402, "DATE_RANGE_START": 2023, "Total Visits": 103.0, "Total Visitors": 86.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 11.0, "Total Spend": 877.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 256.58, "MEDIAN_SPEND_PER_CUSTOMER": 256.58 }, "geometry": { "type": "Point", "coordinates": [ -75.163402, 39.929748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044953, "LONGITUDE": -75.143968, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 352.0, "Total Spend": 2566.0, "Total Transactions": 101.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.2, "MEDIAN_SPEND_PER_CUSTOMER": 25.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143968, 40.044953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "LOCATION_NAME": "The Tasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 150.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2873.0, "Total Transactions": 93.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.41, "MEDIAN_SPEND_PER_CUSTOMER": 38.34 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "LOCATION_NAME": "Union Tap House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 132.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 73.0, "Total Spend": 724.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.34, "MEDIAN_SPEND_PER_CUSTOMER": 75.96 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-y35", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.119166, "LONGITUDE": -75.017086, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 169.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5665.0, "Total Transactions": 752.0, "Total Customers": 269.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.017086, 40.119166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-4vz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077481, "LONGITUDE": -75.031225, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 198.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1210.0, "Total Transactions": 83.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.031225, 40.077481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8f-djv", "LOCATION_NAME": "Neighborhood Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.016721, "LONGITUDE": -75.084303, "DATE_RANGE_START": 2023, "Total Visits": 140.0, "Total Visitors": 110.0, "POI_CBG": 421010300006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 863.0, "Total Transactions": 114.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.98, "MEDIAN_SPEND_PER_CUSTOMER": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084303, 40.016721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 261.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 56.0, "Total Spend": 717.0, "Total Transactions": 59.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.67, "MEDIAN_SPEND_PER_CUSTOMER": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030546, "LONGITUDE": -75.181382, "DATE_RANGE_START": 2023, "Total Visits": 66.0, "Total Visitors": 39.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 849.0, "Total Transactions": 53.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.13, "MEDIAN_SPEND_PER_CUSTOMER": 19.55 }, "geometry": { "type": "Point", "coordinates": [ -75.181382, 40.030546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgy-mzf", "LOCATION_NAME": "Doc's World of Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.063477, "LONGITUDE": -75.238345, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 88.0, "Total Spend": 7353.0, "Total Transactions": 278.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.54, "MEDIAN_SPEND_PER_CUSTOMER": 27.84 }, "geometry": { "type": "Point", "coordinates": [ -75.238345, 40.063477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.061147, "LONGITUDE": -75.237239, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 20.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5935.0, "Total Transactions": 276.0, "Total Customers": 180.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.67, "MEDIAN_SPEND_PER_CUSTOMER": 17.93 }, "geometry": { "type": "Point", "coordinates": [ -75.237239, 40.061147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "LOCATION_NAME": "Dollar Value", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 197.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2157.0, "Total Transactions": 132.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.94, "MEDIAN_SPEND_PER_CUSTOMER": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-psq", "LOCATION_NAME": "Magic Noodles", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043529, "LONGITUDE": -75.052298, "DATE_RANGE_START": 2023, "Total Visits": 105.0, "Total Visitors": 105.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": null, "Total Spend": 520.0, "Total Transactions": 16.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.81, "MEDIAN_SPEND_PER_CUSTOMER": 32.09 }, "geometry": { "type": "Point", "coordinates": [ -75.052298, 40.043529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "LOCATION_NAME": "YOLO Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2023, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010167024.0, "MEDIAN_DWELL": 2.0, "Total Spend": 582.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-226@628-pgb-grk", "LOCATION_NAME": "Goldie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962781, "LONGITUDE": -75.173743, "DATE_RANGE_START": 2023, "Total Visits": 2049.0, "Total Visitors": 1144.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 716.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.19 }, "geometry": { "type": "Point", "coordinates": [ -75.173743, 39.962781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2023, "Total Visits": 949.0, "Total Visitors": 753.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2952.0, "Total Transactions": 328.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.98, "MEDIAN_SPEND_PER_CUSTOMER": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.020901, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5462.0, "Total Transactions": 337.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 40.020901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-226@628-pg4-m6k", "LOCATION_NAME": "HubSpot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045146, "LONGITUDE": -75.164878, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 110.0, "POI_CBG": 421010247001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 142.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.66, "MEDIAN_SPEND_PER_CUSTOMER": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.164878, 40.045146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2023, "Total Visits": 596.0, "Total Visitors": 279.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1059.0, "Total Transactions": 38.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.13, "MEDIAN_SPEND_PER_CUSTOMER": 22.81 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@63s-dvp-bff", "LOCATION_NAME": "Total Beauty Supplies", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945299, "LONGITUDE": -75.238685, "DATE_RANGE_START": 2023, "Total Visits": 728.0, "Total Visitors": 485.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3672.0, "Total Transactions": 147.0, "Total Customers": 116.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.19, "MEDIAN_SPEND_PER_CUSTOMER": 23.51 }, "geometry": { "type": "Point", "coordinates": [ -75.238685, 39.945299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-bhq", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.960805, "LONGITUDE": -75.22438, "DATE_RANGE_START": 2023, "Total Visits": 264.0, "Total Visitors": 183.0, "POI_CBG": 421010093003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 615.0, "Total Transactions": 50.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.66, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.22438, 39.960805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "LOCATION_NAME": "DFTI Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951956, "LONGITUDE": -75.174859, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 6533.0, "Total Transactions": 58.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.0, "MEDIAN_SPEND_PER_CUSTOMER": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174859, 39.951956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-227@628-p9k-2zf", "LOCATION_NAME": "Beer Center", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.103141, "LONGITUDE": -75.010331, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 485.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1773.0, "Total Transactions": 78.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010331, 40.103141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kpv", "LOCATION_NAME": "Citi Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.006375, "LONGITUDE": -75.09134, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 31.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13198.0, "Total Transactions": 575.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.09134, 40.006375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "LOCATION_NAME": "Loco Dollar", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998812, "LONGITUDE": -75.12698, "DATE_RANGE_START": 2023, "Total Visits": 653.0, "Total Visitors": 381.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1834.0, "Total Transactions": 79.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.81, "MEDIAN_SPEND_PER_CUSTOMER": 20.56 }, "geometry": { "type": "Point", "coordinates": [ -75.12698, 39.998812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2023, "Total Visits": 540.0, "Total Visitors": 363.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1944.0, "Total Transactions": 130.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.24, "MEDIAN_SPEND_PER_CUSTOMER": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "LOCATION_NAME": "1 Stop Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 157.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 14351.0, "Total Transactions": 783.0, "Total Customers": 324.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.01, "MEDIAN_SPEND_PER_CUSTOMER": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "LOCATION_NAME": "The Ritz-Carlton", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2023, "Total Visits": 3468.0, "Total Visitors": 2486.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4581.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 335.14, "MEDIAN_SPEND_PER_CUSTOMER": 153.53 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-brk", "LOCATION_NAME": "East Coast Wings + Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99402, "LONGITUDE": -75.091507, "DATE_RANGE_START": 2023, "Total Visits": 502.0, "Total Visitors": 386.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 5657.0, "Total Transactions": 86.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.58, "MEDIAN_SPEND_PER_CUSTOMER": 70.57 }, "geometry": { "type": "Point", "coordinates": [ -75.091507, 39.99402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pnx-bhq", "LOCATION_NAME": "Tommy's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971034, "LONGITUDE": -75.128711, "DATE_RANGE_START": 2023, "Total Visits": 460.0, "Total Visitors": 259.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 55.0, "Total Spend": 1903.0, "Total Transactions": 90.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.81, "MEDIAN_SPEND_PER_CUSTOMER": 23.19 }, "geometry": { "type": "Point", "coordinates": [ -75.128711, 39.971034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-jgk", "LOCATION_NAME": "Saxbys Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952783, "LONGITUDE": -75.203063, "DATE_RANGE_START": 2023, "Total Visits": 557.0, "Total Visitors": 351.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 15.0, "Total Spend": 94.0, "Total Transactions": 19.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.23, "MEDIAN_SPEND_PER_CUSTOMER": 30.88 }, "geometry": { "type": "Point", "coordinates": [ -75.203063, 39.952783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p7b-qfz", "LOCATION_NAME": "Salvito's Pizza Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062458, "LONGITUDE": -75.022048, "DATE_RANGE_START": 2023, "Total Visits": 437.0, "Total Visitors": 259.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 17.0, "Total Spend": 672.0, "Total Transactions": 39.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.74, "MEDIAN_SPEND_PER_CUSTOMER": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.022048, 40.062458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.095741, "LONGITUDE": -74.976103, "DATE_RANGE_START": 2023, "Total Visits": 2211.0, "Total Visitors": 1410.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 89304.0, "Total Transactions": 4895.0, "Total Customers": 1417.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.69, "MEDIAN_SPEND_PER_CUSTOMER": 28.09 }, "geometry": { "type": "Point", "coordinates": [ -74.976103, 40.095741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7x-vzz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051233, "LONGITUDE": -75.059566, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 37.0, "Total Spend": 9900.0, "Total Transactions": 840.0, "Total Customers": 412.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.18, "MEDIAN_SPEND_PER_CUSTOMER": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.059566, 40.051233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-wx5", "LOCATION_NAME": "Rita's Water Ice", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.092807, "LONGITUDE": -74.961929, "DATE_RANGE_START": 2023, "Total Visits": 52933.0, "Total Visitors": 27304.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 57.0, "Total Spend": 64.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.29, "MEDIAN_SPEND_PER_CUSTOMER": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -74.961929, 40.092807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pj9-4d9", "LOCATION_NAME": "Ron's Caribbean Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040726, "LONGITUDE": -75.144789, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 149.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 70.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.75, "MEDIAN_SPEND_PER_CUSTOMER": 27.75 }, "geometry": { "type": "Point", "coordinates": [ -75.144789, 40.040726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-hdv", "LOCATION_NAME": "The Juice Room", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0592, "LONGITUDE": -75.189995, "DATE_RANGE_START": 2023, "Total Visits": 128.0, "Total Visitors": 96.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 92.0, "Total Spend": 68.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.95, "MEDIAN_SPEND_PER_CUSTOMER": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.189995, 40.0592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-ty9", "LOCATION_NAME": "Shane Confectionery", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.949497, "LONGITUDE": -75.14262, "DATE_RANGE_START": 2023, "Total Visits": 1420.0, "Total Visitors": 947.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 212.0, "Total Spend": 2170.0, "Total Transactions": 83.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.25, "MEDIAN_SPEND_PER_CUSTOMER": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14262, 39.949497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "LOCATION_NAME": "Rieker's Prime Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 203.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1241.0, "Total Transactions": 29.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.48, "MEDIAN_SPEND_PER_CUSTOMER": 60.55 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 219.0, "POI_CBG": 421010320003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 7185.0, "Total Transactions": 314.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.66, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.907731, "LONGITUDE": -75.189099, "DATE_RANGE_START": 2023, "Total Visits": 567.0, "Total Visitors": 440.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2032.0, "Total Transactions": 83.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.03, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189099, 39.907731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039108, "LONGITUDE": -75.110396, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2230.0, "Total Transactions": 75.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.05, "MEDIAN_SPEND_PER_CUSTOMER": 41.02 }, "geometry": { "type": "Point", "coordinates": [ -75.110396, 40.039108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-2kz", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.074571, "LONGITUDE": -75.032796, "DATE_RANGE_START": 2023, "Total Visits": 362.0, "Total Visitors": 313.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 536.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.23, "MEDIAN_SPEND_PER_CUSTOMER": 83.23 }, "geometry": { "type": "Point", "coordinates": [ -75.032796, 40.074571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "LOCATION_NAME": "Jack B Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.939139, "LONGITUDE": -75.149852, "DATE_RANGE_START": 2023, "Total Visits": 550.0, "Total Visitors": 297.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 119.0, "Total Spend": 2458.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 103.1, "MEDIAN_SPEND_PER_CUSTOMER": 86.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149852, 39.939139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "LOCATION_NAME": "Tommy Hilfiger", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089955, "LONGITUDE": -74.96205, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 6.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 24.0, "Total Spend": 2118.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.98, "MEDIAN_SPEND_PER_CUSTOMER": 53.98 }, "geometry": { "type": "Point", "coordinates": [ -74.96205, 40.089955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "LOCATION_NAME": "Golden Nugget Jewelers III", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 68010.0, "Total Transactions": 23.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 400.0, "MEDIAN_SPEND_PER_CUSTOMER": 400.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-jjv", "LOCATION_NAME": "Pastrami & Things", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952406, "LONGITUDE": -75.170418, "DATE_RANGE_START": 2023, "Total Visits": 258.0, "Total Visitors": 228.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1292.0, "Total Transactions": 188.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.88, "MEDIAN_SPEND_PER_CUSTOMER": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.170418, 39.952406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmd-vj9", "LOCATION_NAME": "Nature's Gallery Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.950794, "LONGITUDE": -75.177008, "DATE_RANGE_START": 2023, "Total Visits": 1017.0, "Total Visitors": 623.0, "POI_CBG": 421010008031.0, "MEDIAN_DWELL": 79.0, "Total Spend": 624.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 38.34 }, "geometry": { "type": "Point", "coordinates": [ -75.177008, 39.950794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 257.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 752.0, "Total Transactions": 49.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p85-2hq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066275, "LONGITUDE": -75.051537, "DATE_RANGE_START": 2023, "Total Visits": 575.0, "Total Visitors": 370.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 14.0, "Total Spend": 677.0, "Total Transactions": 91.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 8.19 }, "geometry": { "type": "Point", "coordinates": [ -75.051537, 40.066275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phn-qmk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068844, "LONGITUDE": -75.18088, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 122.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4537.0, "Total Transactions": 219.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 20.28 }, "geometry": { "type": "Point", "coordinates": [ -75.18088, 40.068844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7x-5zz", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048987, "LONGITUDE": -75.063458, "DATE_RANGE_START": 2023, "Total Visits": 387.0, "Total Visitors": 352.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 780.0, "Total Transactions": 34.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.82, "MEDIAN_SPEND_PER_CUSTOMER": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.063458, 40.048987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p7w-gc5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.072432, "LONGITUDE": -75.075727, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 826.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.84, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075727, 40.072432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-zfz", "LOCATION_NAME": "Ontario Street Comics", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.993208, "LONGITUDE": -75.103007, "DATE_RANGE_START": 2023, "Total Visits": 426.0, "Total Visitors": 395.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 164.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103007, 39.993208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019938, "LONGITUDE": -75.174444, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1838.0, "Total Transactions": 205.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.51, "MEDIAN_SPEND_PER_CUSTOMER": 10.32 }, "geometry": { "type": "Point", "coordinates": [ -75.174444, 40.019938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-td9", "LOCATION_NAME": "Jamaica Way", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.90332, "LONGITUDE": -75.240643, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 210.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1049.0, "Total Transactions": 55.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.19, "MEDIAN_SPEND_PER_CUSTOMER": 20.31 }, "geometry": { "type": "Point", "coordinates": [ -75.240643, 39.90332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.989246, "LONGITUDE": -75.090206, "DATE_RANGE_START": 2023, "Total Visits": 68.0, "Total Visitors": 39.0, "POI_CBG": 421010379006.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1836.0, "Total Transactions": 85.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.93, "MEDIAN_SPEND_PER_CUSTOMER": 30.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090206, 39.989246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032452, "LONGITUDE": -75.085235, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2351.0, "Total Transactions": 75.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.38, "MEDIAN_SPEND_PER_CUSTOMER": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085235, 40.032452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914496, "LONGITUDE": -75.156757, "DATE_RANGE_START": 2023, "Total Visits": 185.0, "Total Visitors": 185.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 27.0, "Total Spend": 959.0, "Total Transactions": 51.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.94, "MEDIAN_SPEND_PER_CUSTOMER": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156757, 39.914496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980218, "LONGITUDE": -75.235063, "DATE_RANGE_START": 2023, "Total Visits": 40.0, "Total Visitors": 34.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3464.0, "Total Transactions": 203.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.34, "MEDIAN_SPEND_PER_CUSTOMER": 16.34 }, "geometry": { "type": "Point", "coordinates": [ -75.235063, 39.980218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "LOCATION_NAME": "Blue Corn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 406.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1224.0, "Total Transactions": 19.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.52, "MEDIAN_SPEND_PER_CUSTOMER": 58.54 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pm6-hbk", "LOCATION_NAME": "La Canasta Mexican Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91868, "LONGITUDE": -75.15377, "DATE_RANGE_START": 2023, "Total Visits": 372.0, "Total Visitors": 372.0, "POI_CBG": 421010042024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 623.0, "Total Transactions": 15.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.01, "MEDIAN_SPEND_PER_CUSTOMER": 43.01 }, "geometry": { "type": "Point", "coordinates": [ -75.15377, 39.91868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgd-z9f", "LOCATION_NAME": "Bombay Dhabba Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956756, "LONGITUDE": -75.194135, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 707.0, "Total Transactions": 35.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.92, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.194135, 39.956756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "LOCATION_NAME": "Spring Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 137.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 78.0, "Total Spend": 2047.0, "Total Transactions": 101.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 24.87 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2023, "Total Visits": 495.0, "Total Visitors": 318.0, "POI_CBG": 421010188007.0, "MEDIAN_DWELL": 7.0, "Total Spend": 183.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-229@628-pmb-xnq", "LOCATION_NAME": "Surreal Creamery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955246, "LONGITUDE": -75.156456, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 5338.0, "Total Transactions": 343.0, "Total Customers": 276.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.3, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.156456, 39.955246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p85-p7q", "LOCATION_NAME": "Kim's General Store", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.057219, "LONGITUDE": -75.030765, "DATE_RANGE_START": 2023, "Total Visits": 990.0, "Total Visitors": 750.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 28.0, "Total Spend": 459.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.030765, 40.057219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "LOCATION_NAME": "Jo-Ann Fabric and Craft Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2023, "Total Visits": 591.0, "Total Visitors": 545.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 10011.0, "Total Transactions": 268.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.05, "MEDIAN_SPEND_PER_CUSTOMER": 29.06 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033212, "LONGITUDE": -75.084726, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 111.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 34.0, "Total Spend": 1561.0, "Total Transactions": 148.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 10.24 }, "geometry": { "type": "Point", "coordinates": [ -75.084726, 40.033212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.03106, "LONGITUDE": -75.09906, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 36.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 7701.0, "Total Transactions": 262.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 20.09 }, "geometry": { "type": "Point", "coordinates": [ -75.09906, 40.03106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2023, "Total Visits": 297.0, "Total Visitors": 165.0, "POI_CBG": 421010012013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 36245.0, "Total Transactions": 3334.0, "Total Customers": 1479.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "LOCATION_NAME": "Monde Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.952036, "LONGITUDE": -75.175759, "DATE_RANGE_START": 2023, "Total Visits": 616.0, "Total Visitors": 382.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 13304.0, "Total Transactions": 957.0, "Total Customers": 378.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.81, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.175759, 39.952036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pfx-s89", "LOCATION_NAME": "Eagle Mart", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.038436, "LONGITUDE": -75.239356, "DATE_RANGE_START": 2023, "Total Visits": 263.0, "Total Visitors": 263.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 291.0, "Total Spend": 1620.0, "Total Transactions": 89.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.6, "MEDIAN_SPEND_PER_CUSTOMER": 17.25 }, "geometry": { "type": "Point", "coordinates": [ -75.239356, 40.038436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmd-tvz", "LOCATION_NAME": "The Indie Shelf", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944748, "LONGITUDE": -75.180225, "DATE_RANGE_START": 2023, "Total Visits": 478.0, "Total Visitors": 370.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 184.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.180225, 39.944748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "LOCATION_NAME": "Express Fuel", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026572, "LONGITUDE": -75.084707, "DATE_RANGE_START": 2023, "Total Visits": 287.0, "Total Visitors": 215.0, "POI_CBG": 421010302004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 14932.0, "Total Transactions": 744.0, "Total Customers": 332.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 29.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084707, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "LOCATION_NAME": "Shoe Carnival", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.049912, "LONGITUDE": -75.06237, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 8732.0, "Total Transactions": 142.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.98, "MEDIAN_SPEND_PER_CUSTOMER": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06237, 40.049912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2023, "Total Visits": 319.0, "Total Visitors": 274.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1457.0, "Total Transactions": 133.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.14, "MEDIAN_SPEND_PER_CUSTOMER": 10.85 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951517, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2023, "Total Visits": 8987.0, "Total Visitors": 5624.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 13.0, "Total Spend": 12623.0, "Total Transactions": 939.0, "Total Customers": 753.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.34, "MEDIAN_SPEND_PER_CUSTOMER": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.951517 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "LOCATION_NAME": "El Balconcito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 184.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 146.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.16, "MEDIAN_SPEND_PER_CUSTOMER": 58.16 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "LOCATION_NAME": "Vapordelphia", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2023, "Total Visits": 857.0, "Total Visitors": 678.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 726.0, "Total Transactions": 29.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076442, "LONGITUDE": -75.206646, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 30325.0, "Total Transactions": 343.0, "Total Customers": 233.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.13, "MEDIAN_SPEND_PER_CUSTOMER": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.206646, 40.076442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2023, "Total Visits": 426.0, "Total Visitors": 299.0, "POI_CBG": 421010215001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 7126.0, "Total Transactions": 175.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 23.9 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032189, "LONGITUDE": -75.063077, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3910.0, "Total Transactions": 223.0, "Total Customers": 114.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.32, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063077, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-6rk", "LOCATION_NAME": "The Bishop's Collar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967569, "LONGITUDE": -75.176669, "DATE_RANGE_START": 2023, "Total Visits": 549.0, "Total Visitors": 293.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 95.0, "Total Spend": 9930.0, "Total Transactions": 227.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176669, 39.967569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "LOCATION_NAME": "Penang", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954054, "LONGITUDE": -75.155967, "DATE_RANGE_START": 2023, "Total Visits": 4224.0, "Total Visitors": 2510.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 9482.0, "Total Transactions": 138.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.58, "MEDIAN_SPEND_PER_CUSTOMER": 61.88 }, "geometry": { "type": "Point", "coordinates": [ -75.155967, 39.954054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "LOCATION_NAME": "Tampopo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953019, "LONGITUDE": -75.210337, "DATE_RANGE_START": 2023, "Total Visits": 623.0, "Total Visitors": 368.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 18.0, "Total Spend": 429.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.210337, 39.953019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-qmk", "LOCATION_NAME": "Yeeroh", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943614, "LONGITUDE": -75.166117, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 890.0, "Total Transactions": 54.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.12, "MEDIAN_SPEND_PER_CUSTOMER": 16.84 }, "geometry": { "type": "Point", "coordinates": [ -75.166117, 39.943614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j7q", "LOCATION_NAME": "The Dandelion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951011, "LONGITUDE": -75.170702, "DATE_RANGE_START": 2023, "Total Visits": 293.0, "Total Visitors": 277.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1244.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.9, "MEDIAN_SPEND_PER_CUSTOMER": 53.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170702, 39.951011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955168, "LONGITUDE": -75.155663, "DATE_RANGE_START": 2023, "Total Visits": 845.0, "Total Visitors": 686.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 820.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.57, "MEDIAN_SPEND_PER_CUSTOMER": 51.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155663, 39.955168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@63s-dvy-k9f", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951004, "LONGITUDE": -75.198123, "DATE_RANGE_START": 2023, "Total Visits": 1095.0, "Total Visitors": 485.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 5735.0, "Total Transactions": 278.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.63, "MEDIAN_SPEND_PER_CUSTOMER": 21.04 }, "geometry": { "type": "Point", "coordinates": [ -75.198123, 39.951004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-3nq", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084019, "LONGITUDE": -74.96509, "DATE_RANGE_START": 2023, "Total Visits": 689.0, "Total Visitors": 530.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 23.0, "Total Spend": 118.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.43, "MEDIAN_SPEND_PER_CUSTOMER": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -74.96509, 40.084019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pgf-73q", "LOCATION_NAME": "Great Taste", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965419, "LONGITUDE": -75.205676, "DATE_RANGE_START": 2023, "Total Visits": 475.0, "Total Visitors": 289.0, "POI_CBG": 421010107002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 549.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.5, "MEDIAN_SPEND_PER_CUSTOMER": 83.5 }, "geometry": { "type": "Point", "coordinates": [ -75.205676, 39.965419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2023, "Total Visits": 665.0, "Total Visitors": 461.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1813.0, "Total Transactions": 53.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.48, "MEDIAN_SPEND_PER_CUSTOMER": 31.26 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "LOCATION_NAME": "Fairfield Inn & Suites by Marriott", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2023, "Total Visits": 1015.0, "Total Visitors": 601.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 229.0, "Total Spend": 5689.0, "Total Transactions": 43.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 148.23, "MEDIAN_SPEND_PER_CUSTOMER": 164.37 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "LOCATION_NAME": "Big Ben Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 130.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5110.0, "Total Transactions": 177.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.15 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "LOCATION_NAME": "Tuna Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954039, "LONGITUDE": -75.143175, "DATE_RANGE_START": 2023, "Total Visits": 292.0, "Total Visitors": 251.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 18650.0, "Total Transactions": 204.0, "Total Customers": 170.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.24, "MEDIAN_SPEND_PER_CUSTOMER": 89.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143175, 39.954039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2023, "Total Visits": 505.0, "Total Visitors": 471.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 242.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.7, "MEDIAN_SPEND_PER_CUSTOMER": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-ks5", "LOCATION_NAME": "Sharetea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934458, "LONGITUDE": -75.154631, "DATE_RANGE_START": 2023, "Total Visits": 1826.0, "Total Visitors": 1516.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 452.0, "Total Transactions": 41.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.29, "MEDIAN_SPEND_PER_CUSTOMER": 7.47 }, "geometry": { "type": "Point", "coordinates": [ -75.154631, 39.934458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "LOCATION_NAME": "Time Out Sports Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 91.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 1579.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.28 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.075107, "LONGITUDE": -75.034947, "DATE_RANGE_START": 2023, "Total Visits": 495.0, "Total Visitors": 400.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2038.0, "Total Transactions": 76.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.94, "MEDIAN_SPEND_PER_CUSTOMER": 37.91 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.075107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pjf-kvf", "LOCATION_NAME": "Hideaway Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.076825, "LONGITUDE": -75.208128, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 132.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1497.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.89, "MEDIAN_SPEND_PER_CUSTOMER": 25.89 }, "geometry": { "type": "Point", "coordinates": [ -75.208128, 40.076825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7b-qpv", "LOCATION_NAME": "Alfreds Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.06438, "LONGITUDE": -75.021323, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 183.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1085.0, "Total Transactions": 39.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.01, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021323, 40.06438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-phq-rp9", "LOCATION_NAME": "Liberty Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.066348, "LONGITUDE": -75.158578, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 86.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 132.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158578, 40.066348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgf-d5f", "LOCATION_NAME": "Dollar Warehouse", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.957461, "LONGITUDE": -75.202195, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 154.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 34.0, "Total Transactions": 6.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.79, "MEDIAN_SPEND_PER_CUSTOMER": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.202195, 39.957461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "LOCATION_NAME": "Charlie Was a Sinner", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 237.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 12035.0, "Total Transactions": 160.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.8, "MEDIAN_SPEND_PER_CUSTOMER": 70.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "LOCATION_NAME": "Wah Gi Wah", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956891, "LONGITUDE": -75.211198, "DATE_RANGE_START": 2023, "Total Visits": 529.0, "Total Visitors": 406.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 48.0, "Total Spend": 1608.0, "Total Transactions": 19.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.14, "MEDIAN_SPEND_PER_CUSTOMER": 56.14 }, "geometry": { "type": "Point", "coordinates": [ -75.211198, 39.956891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "LOCATION_NAME": "Mariposa Food Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947985, "LONGITUDE": -75.220614, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 83.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 24280.0, "Total Transactions": 807.0, "Total Customers": 375.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.87, "MEDIAN_SPEND_PER_CUSTOMER": 35.49 }, "geometry": { "type": "Point", "coordinates": [ -75.220614, 39.947985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp5-qxq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.997243, "LONGITUDE": -75.123704, "DATE_RANGE_START": 2023, "Total Visits": 832.0, "Total Visitors": 665.0, "POI_CBG": 421010177025.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1282.0, "Total Transactions": 75.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.28, "MEDIAN_SPEND_PER_CUSTOMER": 14.34 }, "geometry": { "type": "Point", "coordinates": [ -75.123704, 39.997243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "LOCATION_NAME": "Chestnut Hill Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2023, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": null, "Total Spend": 5523.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 288.3, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043786, "LONGITUDE": -75.017617, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 4.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 313.0, "Total Transactions": 25.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.34, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.017617, 40.043786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9s-j9z", "LOCATION_NAME": "Room Service 360", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.111386, "LONGITUDE": -75.002818, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 130.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 143.0, "Total Spend": 3301.0, "Total Transactions": 26.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.8, "MEDIAN_SPEND_PER_CUSTOMER": 27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002818, 40.111386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "LOCATION_NAME": "Ibis Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010113002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1082.0, "Total Transactions": 51.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.48, "MEDIAN_SPEND_PER_CUSTOMER": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-t7q", "LOCATION_NAME": "Vetri Cucina", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946687, "LONGITUDE": -75.163203, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 189.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1461.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 356.4, "MEDIAN_SPEND_PER_CUSTOMER": 356.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163203, 39.946687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2023, "Total Visits": 416.0, "Total Visitors": 230.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 594.0, "Total Transactions": 46.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23p@63s-dw9-7nq", "LOCATION_NAME": "InMotion", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.87912, "LONGITUDE": -75.239453, "DATE_RANGE_START": 2023, "Total Visits": 29.0, "Total Visitors": 28.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7273.0, "Total Transactions": 100.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.99, "MEDIAN_SPEND_PER_CUSTOMER": 53.99 }, "geometry": { "type": "Point", "coordinates": [ -75.239453, 39.87912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p8v-8y9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.088382, "LONGITUDE": -74.969584, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 111.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.78, "MEDIAN_SPEND_PER_CUSTOMER": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -74.969584, 40.088382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "LOCATION_NAME": "Ruckus Gallery", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2023, "Total Visits": 535.0, "Total Visitors": 455.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5718.0, "Total Transactions": 142.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 35.72 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2023, "Total Visits": 362.0, "Total Visitors": 328.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8232.0, "Total Transactions": 661.0, "Total Customers": 395.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.13, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-7wk", "LOCATION_NAME": "Boba King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95355, "LONGITUDE": -75.18835, "DATE_RANGE_START": 2023, "Total Visits": 927.0, "Total Visitors": 446.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 57.0, "Total Spend": 5101.0, "Total Transactions": 525.0, "Total Customers": 417.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.61, "MEDIAN_SPEND_PER_CUSTOMER": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.18835, 39.95355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948526, "LONGITUDE": -75.166042, "DATE_RANGE_START": 2023, "Total Visits": 782.0, "Total Visitors": 494.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 8.0, "Total Spend": 9659.0, "Total Transactions": 1569.0, "Total Customers": 440.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.16, "MEDIAN_SPEND_PER_CUSTOMER": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166042, 39.948526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pgc-hh5", "LOCATION_NAME": "Leidy's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974749, "LONGITUDE": -75.209918, "DATE_RANGE_START": 2023, "Total Visits": 65.0, "Total Visitors": 38.0, "POI_CBG": 421010110002.0, "MEDIAN_DWELL": 420.0, "Total Spend": 464.0, "Total Transactions": 49.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.209918, 39.974749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996691, "LONGITUDE": -75.089542, "DATE_RANGE_START": 2023, "Total Visits": 349.0, "Total Visitors": 302.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 672.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.68, "MEDIAN_SPEND_PER_CUSTOMER": 84.04 }, "geometry": { "type": "Point", "coordinates": [ -75.089542, 39.996691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993418, "LONGITUDE": -75.144072, "DATE_RANGE_START": 2023, "Total Visits": 341.0, "Total Visitors": 182.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 699.0, "Total Transactions": 28.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.49, "MEDIAN_SPEND_PER_CUSTOMER": 15.87 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.993418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-jjv", "LOCATION_NAME": "Copabanana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951555, "LONGITUDE": -75.203266, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 205.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 36.0, "Total Spend": 125.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.91, "MEDIAN_SPEND_PER_CUSTOMER": 49.91 }, "geometry": { "type": "Point", "coordinates": [ -75.203266, 39.951555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.992372, "LONGITUDE": -75.140437, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1580.0, "Total Transactions": 70.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.140437, 39.992372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "LOCATION_NAME": "George's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2023, "Total Visits": 169.0, "Total Visitors": 148.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1803.0, "Total Transactions": 96.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.3, "MEDIAN_SPEND_PER_CUSTOMER": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "LOCATION_NAME": "China Gate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 331.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1568.0, "Total Transactions": 69.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.09, "MEDIAN_SPEND_PER_CUSTOMER": 32.05 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-b8v", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.059227, "LONGITUDE": -75.045575, "DATE_RANGE_START": 2023, "Total Visits": 353.0, "Total Visitors": 298.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5333.0, "Total Transactions": 214.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.39, "MEDIAN_SPEND_PER_CUSTOMER": 20.95 }, "geometry": { "type": "Point", "coordinates": [ -75.045575, 40.059227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "LOCATION_NAME": "China Royal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 84.0, "POI_CBG": 421010333003.0, "MEDIAN_DWELL": null, "Total Spend": 796.0, "Total Transactions": 28.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.2, "MEDIAN_SPEND_PER_CUSTOMER": 26.85 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26j-222@628-pgb-6x5", "LOCATION_NAME": "The Black Taxi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968738, "LONGITUDE": -75.178186, "DATE_RANGE_START": 2023, "Total Visits": 79.0, "Total Visitors": 53.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 73.0, "Total Spend": 14908.0, "Total Transactions": 344.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.32, "MEDIAN_SPEND_PER_CUSTOMER": 46.76 }, "geometry": { "type": "Point", "coordinates": [ -75.178186, 39.968738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "LOCATION_NAME": "Journeys", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2023, "Total Visits": 393.0, "Total Visitors": 351.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1468.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.99, "MEDIAN_SPEND_PER_CUSTOMER": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-kj9", "LOCATION_NAME": "The Pleasure Chest", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950864, "LONGITUDE": -75.175215, "DATE_RANGE_START": 2023, "Total Visits": 105.0, "Total Visitors": 98.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 109.0, "Total Spend": 918.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.93, "MEDIAN_SPEND_PER_CUSTOMER": 40.93 }, "geometry": { "type": "Point", "coordinates": [ -75.175215, 39.950864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmb-kj9", "LOCATION_NAME": "Oui", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953818, "LONGITUDE": -75.144977, "DATE_RANGE_START": 2023, "Total Visits": 576.0, "Total Visitors": 349.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 640.0, "Total Transactions": 23.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.84, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144977, 39.953818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.917009, "LONGITUDE": -75.236625, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 32.0, "Total Spend": 11659.0, "Total Transactions": 258.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.33, "MEDIAN_SPEND_PER_CUSTOMER": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.236625, 39.917009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2023, "Total Visits": 1139.0, "Total Visitors": 762.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 898.0, "Total Transactions": 36.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.85, "MEDIAN_SPEND_PER_CUSTOMER": 22.83 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "LOCATION_NAME": "CAVA", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95176, "LONGITUDE": -75.169268, "DATE_RANGE_START": 2023, "Total Visits": 29.0, "Total Visitors": 24.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 17060.0, "Total Transactions": 988.0, "Total Customers": 803.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.96, "MEDIAN_SPEND_PER_CUSTOMER": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.169268, 39.95176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-n5z", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954029, "LONGITUDE": -75.200316, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6210.0, "Total Transactions": 666.0, "Total Customers": 388.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.21, "MEDIAN_SPEND_PER_CUSTOMER": 10.29 }, "geometry": { "type": "Point", "coordinates": [ -75.200316, 39.954029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "LOCATION_NAME": "Petrovsky Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2023, "Total Visits": 571.0, "Total Visitors": 377.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 28407.0, "Total Transactions": 706.0, "Total Customers": 353.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.06, "MEDIAN_SPEND_PER_CUSTOMER": 47.87 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "LOCATION_NAME": "Philadelphia Bikesmith", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.962887, "LONGITUDE": -75.169323, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 6745.0, "Total Transactions": 53.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.43, "MEDIAN_SPEND_PER_CUSTOMER": 76.04 }, "geometry": { "type": "Point", "coordinates": [ -75.169323, 39.962887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-4n5", "LOCATION_NAME": "Shoe Factory", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.047111, "LONGITUDE": -75.070347, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 179.0, "POI_CBG": 421010310003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6402.0, "Total Transactions": 49.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.97, "MEDIAN_SPEND_PER_CUSTOMER": 34.97 }, "geometry": { "type": "Point", "coordinates": [ -75.070347, 40.047111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "LOCATION_NAME": "Joe's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950331, "LONGITUDE": -75.167579, "DATE_RANGE_START": 2023, "Total Visits": 251.0, "Total Visitors": 197.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 923.0, "Total Transactions": 31.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.76, "MEDIAN_SPEND_PER_CUSTOMER": 34.64 }, "geometry": { "type": "Point", "coordinates": [ -75.167579, 39.950331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmd-yvz", "LOCATION_NAME": "Billows Electric Supply Company", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.938764, "LONGITUDE": -75.183945, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 137.0, "POI_CBG": 421010020001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 39.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183945, 39.938764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "LOCATION_NAME": "Reyes Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.961191, "LONGITUDE": -75.244841, "DATE_RANGE_START": 2023, "Total Visits": 148.0, "Total Visitors": 64.0, "POI_CBG": 421010083011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 757.0, "Total Transactions": 90.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 13.24 }, "geometry": { "type": "Point", "coordinates": [ -75.244841, 39.961191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2023, "Total Visits": 550.0, "Total Visitors": 456.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 92.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.18, "MEDIAN_SPEND_PER_CUSTOMER": 10.16 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-psq", "LOCATION_NAME": "Sherwin-Williams", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.93725, "LONGITUDE": -75.160107, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 129.0, "Total Spend": 72294.0, "Total Transactions": 608.0, "Total Customers": 278.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.74, "MEDIAN_SPEND_PER_CUSTOMER": 74.72 }, "geometry": { "type": "Point", "coordinates": [ -75.160107, 39.93725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010110003.0, "MEDIAN_DWELL": 41.0, "Total Spend": 203.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.0, "MEDIAN_SPEND_PER_CUSTOMER": 81.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm8-2kz", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.939239, "LONGITUDE": -75.197843, "DATE_RANGE_START": 2023, "Total Visits": 408.0, "Total Visitors": 336.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 530.0, "Total Transactions": 16.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.93, "MEDIAN_SPEND_PER_CUSTOMER": 27.87 }, "geometry": { "type": "Point", "coordinates": [ -75.197843, 39.939239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "LOCATION_NAME": "Mega Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2023, "Total Visits": 450.0, "Total Visitors": 391.0, "POI_CBG": 421010277003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1602.0, "Total Transactions": 111.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.2, "MEDIAN_SPEND_PER_CUSTOMER": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2023, "Total Visits": 453.0, "Total Visitors": 336.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14686.0, "Total Transactions": 986.0, "Total Customers": 535.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.76, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvy-89z", "LOCATION_NAME": "Common Beat Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.947856, "LONGITUDE": -75.222011, "DATE_RANGE_START": 2023, "Total Visits": 116.0, "Total Visitors": 95.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 58.0, "Total Spend": 1912.0, "Total Transactions": 40.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.3, "MEDIAN_SPEND_PER_CUSTOMER": 59.4 }, "geometry": { "type": "Point", "coordinates": [ -75.222011, 39.947856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2023, "Total Visits": 680.0, "Total Visitors": 371.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 352.0, "Total Spend": 12625.0, "Total Transactions": 396.0, "Total Customers": 344.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj4-zvf", "LOCATION_NAME": "Tony Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004503, "LONGITUDE": -75.152785, "DATE_RANGE_START": 2023, "Total Visits": 392.0, "Total Visitors": 168.0, "POI_CBG": 421010201011.0, "MEDIAN_DWELL": 33.0, "Total Spend": 311.0, "Total Transactions": 33.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.152785, 40.004503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 127.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": null, "Total Spend": 1892.0, "Total Transactions": 61.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 22.94 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 159.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2730.0, "Total Transactions": 197.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.54, "MEDIAN_SPEND_PER_CUSTOMER": 14.22 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "LOCATION_NAME": "Hadramout", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 177.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1713.0, "Total Transactions": 50.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.84, "MEDIAN_SPEND_PER_CUSTOMER": 30.63 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-7yv", "LOCATION_NAME": "7 Brothers Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.027871, "LONGITUDE": -75.125835, "DATE_RANGE_START": 2023, "Total Visits": 522.0, "Total Visitors": 324.0, "POI_CBG": 421010286001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 16.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.53, "MEDIAN_SPEND_PER_CUSTOMER": 6.53 }, "geometry": { "type": "Point", "coordinates": [ -75.125835, 40.027871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043958, "LONGITUDE": -75.231219, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 434.0, "Total Transactions": 36.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.45, "MEDIAN_SPEND_PER_CUSTOMER": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.231219, 40.043958 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2023, "Total Visits": 279.0, "Total Visitors": 152.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1080.0, "Total Transactions": 65.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "LOCATION_NAME": "Spice Finch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2023, "Total Visits": 1680.0, "Total Visitors": 1080.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 154.0, "Total Spend": 9255.0, "Total Transactions": 78.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.7, "MEDIAN_SPEND_PER_CUSTOMER": 85.51 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "LOCATION_NAME": "LKQ", "TOP_CATEGORY": "Miscellaneous Durable Goods Merchant Wholesalers", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 66.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 472.0, "Total Spend": 3493.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.0, "MEDIAN_SPEND_PER_CUSTOMER": 118.8 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951375, "LONGITUDE": -75.158237, "DATE_RANGE_START": 2023, "Total Visits": 1859.0, "Total Visitors": 1338.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15983.0, "Total Transactions": 1073.0, "Total Customers": 769.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.02, "MEDIAN_SPEND_PER_CUSTOMER": 12.39 }, "geometry": { "type": "Point", "coordinates": [ -75.158237, 39.951375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-3wk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.100046, "LONGITUDE": -75.009277, "DATE_RANGE_START": 2023, "Total Visits": 465.0, "Total Visitors": 406.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 542.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.29, "MEDIAN_SPEND_PER_CUSTOMER": 32.85 }, "geometry": { "type": "Point", "coordinates": [ -75.009277, 40.100046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "LOCATION_NAME": "Boss Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2023, "Total Visits": 671.0, "Total Visitors": 571.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 35.0, "Total Spend": 11008.0, "Total Transactions": 170.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.52, "MEDIAN_SPEND_PER_CUSTOMER": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.917148, "LONGITUDE": -75.139881, "DATE_RANGE_START": 2023, "Total Visits": 665.0, "Total Visitors": 561.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 15922.0, "Total Transactions": 774.0, "Total Customers": 660.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.68, "MEDIAN_SPEND_PER_CUSTOMER": 17.32 }, "geometry": { "type": "Point", "coordinates": [ -75.139881, 39.917148 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029731, "LONGITUDE": -75.099365, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 10.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 1922.0, "Total Transactions": 70.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.74, "MEDIAN_SPEND_PER_CUSTOMER": 31.25 }, "geometry": { "type": "Point", "coordinates": [ -75.099365, 40.029731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1735.0, "Total Transactions": 80.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.79, "MEDIAN_SPEND_PER_CUSTOMER": 18.51 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962523, "LONGITUDE": -75.163702, "DATE_RANGE_START": 2023, "Total Visits": 1379.0, "Total Visitors": 561.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 125.0, "Total Spend": 6655.0, "Total Transactions": 943.0, "Total Customers": 407.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.14, "MEDIAN_SPEND_PER_CUSTOMER": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.163702, 39.962523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "LOCATION_NAME": "Triangle Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 162.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 23952.0, "Total Transactions": 486.0, "Total Customers": 377.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.59, "MEDIAN_SPEND_PER_CUSTOMER": 46.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-2zf", "LOCATION_NAME": "Vapor Funky Monkey", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.024206, "LONGITUDE": -75.220514, "DATE_RANGE_START": 2023, "Total Visits": 715.0, "Total Visitors": 619.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 250.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.63, "MEDIAN_SPEND_PER_CUSTOMER": 33.63 }, "geometry": { "type": "Point", "coordinates": [ -75.220514, 40.024206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgj-dsq", "LOCATION_NAME": "Strictly Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979543, "LONGITUDE": -75.162959, "DATE_RANGE_START": 2023, "Total Visits": 403.0, "Total Visitors": 297.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 174.0, "Total Transactions": 9.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162959, 39.979543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pgj-grk", "LOCATION_NAME": "Mexican Grill Stand", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979536, "LONGITUDE": -75.155265, "DATE_RANGE_START": 2023, "Total Visits": 2519.0, "Total Visitors": 1479.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 62.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.62, "MEDIAN_SPEND_PER_CUSTOMER": 24.62 }, "geometry": { "type": "Point", "coordinates": [ -75.155265, 39.979536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "LOCATION_NAME": "Aldo Lamberti Trattoria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.874826, "LONGITUDE": -75.241153, "DATE_RANGE_START": 2023, "Total Visits": 5609.0, "Total Visitors": 4720.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 50.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.241153, 39.874826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3qz", "LOCATION_NAME": "Grand China Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085175, "LONGITUDE": -74.967524, "DATE_RANGE_START": 2023, "Total Visits": 1210.0, "Total Visitors": 1075.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 41.0, "Total Spend": 11841.0, "Total Transactions": 223.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.04, "MEDIAN_SPEND_PER_CUSTOMER": 47.14 }, "geometry": { "type": "Point", "coordinates": [ -74.967524, 40.085175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931643, "LONGITUDE": -75.160584, "DATE_RANGE_START": 2023, "Total Visits": 971.0, "Total Visitors": 618.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3359.0, "Total Transactions": 423.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 10.65 }, "geometry": { "type": "Point", "coordinates": [ -75.160584, 39.931643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5fz", "LOCATION_NAME": "Pressed Juicery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950032, "LONGITUDE": -75.161637, "DATE_RANGE_START": 2023, "Total Visits": 683.0, "Total Visitors": 426.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 73.0, "Total Spend": 1462.0, "Total Transactions": 113.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.99, "MEDIAN_SPEND_PER_CUSTOMER": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.161637, 39.950032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.915427, "LONGITUDE": -75.185895, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 9.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 60929.0, "Total Transactions": 547.0, "Total Customers": 278.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.1, "MEDIAN_SPEND_PER_CUSTOMER": 76.38 }, "geometry": { "type": "Point", "coordinates": [ -75.185895, 39.915427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2023, "Total Visits": 485.0, "Total Visitors": 281.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6295.0, "Total Transactions": 883.0, "Total Customers": 293.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.09, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-229@628-p85-hkf", "LOCATION_NAME": "Bluegrass Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.07142, "LONGITUDE": -75.030648, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 337.0, "Total Transactions": 11.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 72.93 }, "geometry": { "type": "Point", "coordinates": [ -75.030648, 40.07142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.103472, "LONGITUDE": -75.007161, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 15.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 461.0, "Total Spend": 11316.0, "Total Transactions": 24.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 275.4, "MEDIAN_SPEND_PER_CUSTOMER": 571.69 }, "geometry": { "type": "Point", "coordinates": [ -75.007161, 40.103472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-ysq", "LOCATION_NAME": "C & R Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.93947, "LONGITUDE": -75.209529, "DATE_RANGE_START": 2023, "Total Visits": 209.0, "Total Visitors": 149.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 650.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.75, "MEDIAN_SPEND_PER_CUSTOMER": 259.64 }, "geometry": { "type": "Point", "coordinates": [ -75.209529, 39.93947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-qvf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.03237, "LONGITUDE": -75.101559, "DATE_RANGE_START": 2023, "Total Visits": 287.0, "Total Visitors": 269.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 2905.0, "Total Transactions": 30.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.19, "MEDIAN_SPEND_PER_CUSTOMER": 59.59 }, "geometry": { "type": "Point", "coordinates": [ -75.101559, 40.03237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.067756, "LONGITUDE": -75.198044, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5143.0, "Total Transactions": 238.0, "Total Customers": 177.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.41, "MEDIAN_SPEND_PER_CUSTOMER": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.198044, 40.067756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "LOCATION_NAME": "Xi'an Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2023, "Total Visits": 253.0, "Total Visitors": 203.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 527.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.1, "MEDIAN_SPEND_PER_CUSTOMER": 32.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pgb-nkf", "LOCATION_NAME": "Cameron Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.970695, "LONGITUDE": -75.160162, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 157.0, "POI_CBG": 421010140001.0, "MEDIAN_DWELL": 140.0, "Total Spend": 826.0, "Total Transactions": 31.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160162, 39.970695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pmf-jd9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.9512, "LONGITUDE": -75.168379, "DATE_RANGE_START": 2023, "Total Visits": 73.0, "Total Visitors": 49.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 25765.0, "Total Transactions": 1720.0, "Total Customers": 1032.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.12, "MEDIAN_SPEND_PER_CUSTOMER": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.168379, 39.9512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.036425, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 5333.0, "Total Transactions": 133.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.95, "MEDIAN_SPEND_PER_CUSTOMER": 27.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-g8v", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.011165, "LONGITUDE": -75.176365, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 199.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5114.0, "Total Transactions": 148.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.76, "MEDIAN_SPEND_PER_CUSTOMER": 29.91 }, "geometry": { "type": "Point", "coordinates": [ -75.176365, 40.011165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7w-v4v", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.048227, "LONGITUDE": -75.056011, "DATE_RANGE_START": 2023, "Total Visits": 319.0, "Total Visitors": 287.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 27.0, "Total Spend": 1302.0, "Total Transactions": 13.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 118.81, "MEDIAN_SPEND_PER_CUSTOMER": 118.81 }, "geometry": { "type": "Point", "coordinates": [ -75.056011, 40.048227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@63s-dvv-rx5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923209, "LONGITUDE": -75.238375, "DATE_RANGE_START": 2023, "Total Visits": 426.0, "Total Visitors": 287.0, "POI_CBG": 421010063003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 6574.0, "Total Transactions": 284.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.238375, 39.923209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pgy-ks5", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.064304, "LONGITUDE": -75.236768, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 271.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 8351.0, "Total Transactions": 222.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.66, "MEDIAN_SPEND_PER_CUSTOMER": 28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.236768, 40.064304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pgb-tsq", "LOCATION_NAME": "Spring Garden Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.962555, "LONGITUDE": -75.157889, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 154.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 184.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157889, 39.962555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "LOCATION_NAME": "Soy Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2023, "Total Visits": 408.0, "Total Visitors": 373.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1062.0, "Total Transactions": 68.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.34, "MEDIAN_SPEND_PER_CUSTOMER": 17.76 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-kj9", "LOCATION_NAME": "Olc", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.953669, "LONGITUDE": -75.145037, "DATE_RANGE_START": 2023, "Total Visits": 576.0, "Total Visitors": 349.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2029.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.67, "MEDIAN_SPEND_PER_CUSTOMER": 65.67 }, "geometry": { "type": "Point", "coordinates": [ -75.145037, 39.953669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "LOCATION_NAME": "Mulberry Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951954, "LONGITUDE": -75.144617, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9761.0, "Total Transactions": 497.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.94, "MEDIAN_SPEND_PER_CUSTOMER": 18.67 }, "geometry": { "type": "Point", "coordinates": [ -75.144617, 39.951954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgd-w49", "LOCATION_NAME": "Chris'pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963715, "LONGITUDE": -75.196155, "DATE_RANGE_START": 2023, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010108003.0, "MEDIAN_DWELL": null, "Total Spend": 119.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.98, "MEDIAN_SPEND_PER_CUSTOMER": 18.98 }, "geometry": { "type": "Point", "coordinates": [ -75.196155, 39.963715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-p82-rkz", "LOCATION_NAME": "C1 Bakery Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042432, "LONGITUDE": -75.07497, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010311011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 84.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.53, "MEDIAN_SPEND_PER_CUSTOMER": 33.53 }, "geometry": { "type": "Point", "coordinates": [ -75.07497, 40.042432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pg9-ty9", "LOCATION_NAME": "Veganish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963011, "LONGITUDE": -75.163722, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": null, "Total Spend": 254.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.4, "MEDIAN_SPEND_PER_CUSTOMER": 47.68 }, "geometry": { "type": "Point", "coordinates": [ -75.163722, 39.963011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2023, "Total Visits": 3254.0, "Total Visitors": 1860.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 55766.0, "Total Transactions": 956.0, "Total Customers": 585.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.52, "MEDIAN_SPEND_PER_CUSTOMER": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-kfz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991851, "LONGITUDE": -75.178913, "DATE_RANGE_START": 2023, "Total Visits": 814.0, "Total Visitors": 481.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 25.0, "Total Spend": 4053.0, "Total Transactions": 212.0, "Total Customers": 116.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 22.98 }, "geometry": { "type": "Point", "coordinates": [ -75.178913, 39.991851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg8-kmk", "LOCATION_NAME": "Brewerytown Beats", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.979092, "LONGITUDE": -75.178265, "DATE_RANGE_START": 2023, "Total Visits": 575.0, "Total Visitors": 91.0, "POI_CBG": 421010138001.0, "MEDIAN_DWELL": 473.0, "Total Spend": 91.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.51, "MEDIAN_SPEND_PER_CUSTOMER": 36.51 }, "geometry": { "type": "Point", "coordinates": [ -75.178265, 39.979092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-p7q", "LOCATION_NAME": "Garage Fishtown", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.968647, "LONGITUDE": -75.134215, "DATE_RANGE_START": 2023, "Total Visits": 272.0, "Total Visitors": 170.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 33853.0, "Total Transactions": 1037.0, "Total Customers": 716.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.05, "MEDIAN_SPEND_PER_CUSTOMER": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.134215, 39.968647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8n-92k", "LOCATION_NAME": "Bamboo Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.034106, "LONGITUDE": -75.071773, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 118.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 73.0, "Total Spend": 290.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.85, "MEDIAN_SPEND_PER_CUSTOMER": 115.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071773, 40.034106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "LOCATION_NAME": "Aya Asian Fusion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 175.0, "POI_CBG": 421010330006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1833.0, "Total Transactions": 66.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.41, "MEDIAN_SPEND_PER_CUSTOMER": 26.06 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-9j9", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953077, "LONGITUDE": -75.170262, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 34.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 91.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.66, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.170262, 39.953077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pj5-3nq", "LOCATION_NAME": "New York Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009138, "LONGITUDE": -75.152203, "DATE_RANGE_START": 2023, "Total Visits": 663.0, "Total Visitors": 299.0, "POI_CBG": 421010201022.0, "MEDIAN_DWELL": 50.0, "Total Spend": 1022.0, "Total Transactions": 78.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.66, "MEDIAN_SPEND_PER_CUSTOMER": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.152203, 40.009138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "LOCATION_NAME": "Beauty Point", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.980056, "LONGITUDE": -75.235035, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 484.0, "Total Spend": 2200.0, "Total Transactions": 69.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.25, "MEDIAN_SPEND_PER_CUSTOMER": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235035, 39.980056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021267, "LONGITUDE": -75.148854, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4021.0, "Total Transactions": 247.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 15.84 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 40.021267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5mk", "LOCATION_NAME": "The Halal Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950807, "LONGITUDE": -75.161908, "DATE_RANGE_START": 2023, "Total Visits": 13731.0, "Total Visitors": 8695.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2278.0, "Total Transactions": 99.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.85, "MEDIAN_SPEND_PER_CUSTOMER": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.161908, 39.950807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8j-ct9", "LOCATION_NAME": "Hunan Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035881, "LONGITUDE": -75.042073, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 230.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 708.0, "Total Transactions": 19.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.93, "MEDIAN_SPEND_PER_CUSTOMER": 36.39 }, "geometry": { "type": "Point", "coordinates": [ -75.042073, 40.035881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-6p9", "LOCATION_NAME": "Pret A Manger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951392, "LONGITUDE": -75.16582, "DATE_RANGE_START": 2023, "Total Visits": 8987.0, "Total Visitors": 5624.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 13.0, "Total Spend": 13333.0, "Total Transactions": 1112.0, "Total Customers": 876.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16582, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-dqf", "LOCATION_NAME": "Asian Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918335, "LONGITUDE": -75.181058, "DATE_RANGE_START": 2023, "Total Visits": 279.0, "Total Visitors": 229.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 271.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.41, "MEDIAN_SPEND_PER_CUSTOMER": 27.41 }, "geometry": { "type": "Point", "coordinates": [ -75.181058, 39.918335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "LOCATION_NAME": "Weavers Way Co Op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 70.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1145.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.41, "MEDIAN_SPEND_PER_CUSTOMER": 46.93 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-hqz", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954526, "LONGITUDE": -75.17109, "DATE_RANGE_START": 2023, "Total Visits": 312.0, "Total Visitors": 203.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 51963.0, "Total Transactions": 3599.0, "Total Customers": 1726.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.72, "MEDIAN_SPEND_PER_CUSTOMER": 18.96 }, "geometry": { "type": "Point", "coordinates": [ -75.17109, 39.954526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "LOCATION_NAME": "Khyber Pass Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 168.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2444.0, "Total Transactions": 53.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.35, "MEDIAN_SPEND_PER_CUSTOMER": 44.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.014636, "LONGITUDE": -75.157128, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 21.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3543.0, "Total Transactions": 133.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.52, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157128, 40.014636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2023, "Total Visits": 1408.0, "Total Visitors": 1095.0, "POI_CBG": 421010380002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15198.0, "Total Transactions": 581.0, "Total Customers": 373.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.44, "MEDIAN_SPEND_PER_CUSTOMER": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-jjv", "LOCATION_NAME": "Allen Edmonds", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951392, "LONGITUDE": -75.170139, "DATE_RANGE_START": 2023, "Total Visits": 1325.0, "Total Visitors": 847.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1732.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.8, "MEDIAN_SPEND_PER_CUSTOMER": 236.06 }, "geometry": { "type": "Point", "coordinates": [ -75.170139, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-3wk", "LOCATION_NAME": "Cavanaughs Headhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942297, "LONGITUDE": -75.144978, "DATE_RANGE_START": 2023, "Total Visits": 2162.0, "Total Visitors": 1442.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 43.0, "Total Spend": 399.0, "Total Transactions": 20.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 35.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144978, 39.942297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.921743, "LONGITUDE": -75.170535, "DATE_RANGE_START": 2023, "Total Visits": 669.0, "Total Visitors": 324.0, "POI_CBG": 421010039012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1206.0, "Total Transactions": 36.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.9, "MEDIAN_SPEND_PER_CUSTOMER": 12.28 }, "geometry": { "type": "Point", "coordinates": [ -75.170535, 39.921743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-j35", "LOCATION_NAME": "18th Street Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951252, "LONGITUDE": -75.170272, "DATE_RANGE_START": 2023, "Total Visits": 304.0, "Total Visitors": 215.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 217.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.81, "MEDIAN_SPEND_PER_CUSTOMER": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170272, 39.951252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "LOCATION_NAME": "Muslim Fashion", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2023, "Total Visits": 815.0, "Total Visitors": 549.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 18.0, "Total Spend": 753.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040306, "LONGITUDE": -75.143929, "DATE_RANGE_START": 2023, "Total Visits": 577.0, "Total Visitors": 344.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 215.0, "Total Transactions": 16.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.08, "MEDIAN_SPEND_PER_CUSTOMER": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.143929, 40.040306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2023, "Total Visits": 1812.0, "Total Visitors": 1308.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 90278.0, "Total Transactions": 4831.0, "Total Customers": 1790.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.75, "MEDIAN_SPEND_PER_CUSTOMER": 24.25 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2023, "Total Visits": 373.0, "Total Visitors": 279.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 11832.0, "Total Transactions": 544.0, "Total Customers": 367.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.08, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5mk", "LOCATION_NAME": "U Bahn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950467, "LONGITUDE": -75.162591, "DATE_RANGE_START": 2023, "Total Visits": 13731.0, "Total Visitors": 8695.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 59.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.59, "MEDIAN_SPEND_PER_CUSTOMER": 23.59 }, "geometry": { "type": "Point", "coordinates": [ -75.162591, 39.950467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ygk", "LOCATION_NAME": "QT Vietnamese Sandwich", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953408, "LONGITUDE": -75.156559, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 222.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 441.0, "Total Transactions": 31.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.99, "MEDIAN_SPEND_PER_CUSTOMER": 12.73 }, "geometry": { "type": "Point", "coordinates": [ -75.156559, 39.953408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-n3q", "LOCATION_NAME": "Pete's Clown House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003738, "LONGITUDE": -75.094646, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 34.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 28.0, "Total Spend": 688.0, "Total Transactions": 31.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.13, "MEDIAN_SPEND_PER_CUSTOMER": 25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094646, 40.003738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9q-ht9", "LOCATION_NAME": "Vince's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078713, "LONGITUDE": -75.027145, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 158.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 304.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.67, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027145, 40.078713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "LOCATION_NAME": "Saks Off Fifth", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.08814, "LONGITUDE": -74.961754, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 31.0, "Total Spend": 11643.0, "Total Transactions": 98.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.99, "MEDIAN_SPEND_PER_CUSTOMER": 62.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961754, 40.08814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-p7w-wtv", "LOCATION_NAME": "Twistee Treat", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033208, "LONGITUDE": -75.048855, "DATE_RANGE_START": 2023, "Total Visits": 135.0, "Total Visitors": 101.0, "POI_CBG": 421010315013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 808.0, "Total Transactions": 58.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.53, "MEDIAN_SPEND_PER_CUSTOMER": 13.39 }, "geometry": { "type": "Point", "coordinates": [ -75.048855, 40.033208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm6-jn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921877, "LONGITUDE": -75.147214, "DATE_RANGE_START": 2023, "Total Visits": 347.0, "Total Visitors": 307.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 565.0, "Total Transactions": 70.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.32, "MEDIAN_SPEND_PER_CUSTOMER": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.147214, 39.921877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "LOCATION_NAME": "VaporFi", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2023, "Total Visits": 699.0, "Total Visitors": 471.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 522.0, "Total Transactions": 13.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm4-d35", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922448, "LONGITUDE": -75.1698, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 855.0, "Total Transactions": 53.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.83, "MEDIAN_SPEND_PER_CUSTOMER": 17.78 }, "geometry": { "type": "Point", "coordinates": [ -75.1698, 39.922448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2023, "Total Visits": 313.0, "Total Visitors": 113.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 79.0, "Total Spend": 10973.0, "Total Transactions": 1243.0, "Total Customers": 757.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.94, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2023, "Total Visits": 425.0, "Total Visitors": 425.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3196.0, "Total Transactions": 392.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.68, "MEDIAN_SPEND_PER_CUSTOMER": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-sdv", "LOCATION_NAME": "Independence Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950358, "LONGITUDE": -75.150993, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 450.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4685.0, "Total Transactions": 26.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150993, 39.950358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "LOCATION_NAME": "New Delhi Indian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2023, "Total Visits": 227.0, "Total Visitors": 215.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 10.0, "Total Spend": 7061.0, "Total Transactions": 174.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.25, "MEDIAN_SPEND_PER_CUSTOMER": 38.78 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.999135, "LONGITUDE": -75.093295, "DATE_RANGE_START": 2023, "Total Visits": 4863.0, "Total Visitors": 3448.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1391.0, "Total Transactions": 54.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.87, "MEDIAN_SPEND_PER_CUSTOMER": 25.67 }, "geometry": { "type": "Point", "coordinates": [ -75.093295, 39.999135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "LOCATION_NAME": "Dragon City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2023, "Total Visits": 203.0, "Total Visitors": 189.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 3146.0, "Total Transactions": 139.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.2, "MEDIAN_SPEND_PER_CUSTOMER": 32.65 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p82-4jv", "LOCATION_NAME": "Jc Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.04695, "LONGITUDE": -75.097959, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 163.0, "POI_CBG": 421010305011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 274.0, "Total Transactions": 31.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 6.73 }, "geometry": { "type": "Point", "coordinates": [ -75.097959, 40.04695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@63s-dw9-7dv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895178, "LONGITUDE": -75.227973, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 730.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10192.0, "Total Transactions": 983.0, "Total Customers": 799.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.41, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227973, 39.895178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-rzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895169, "LONGITUDE": -75.227984, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 424.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.43, "MEDIAN_SPEND_PER_CUSTOMER": 21.43 }, "geometry": { "type": "Point", "coordinates": [ -75.227984, 39.895169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "LOCATION_NAME": "Keller Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072468, "LONGITUDE": -75.076652, "DATE_RANGE_START": 2023, "Total Visits": 392.0, "Total Visitors": 167.0, "POI_CBG": 421010341002.0, "MEDIAN_DWELL": 35.0, "Total Spend": 430.0, "Total Transactions": 15.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.1, "MEDIAN_SPEND_PER_CUSTOMER": 51.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076652, 40.072468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-rx5", "LOCATION_NAME": "Choice Beer Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944126, "LONGITUDE": -75.170213, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 157.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 267.0, "Total Transactions": 19.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170213, 39.944126 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "LOCATION_NAME": "Park Manor Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2023, "Total Visits": 314.0, "Total Visitors": 238.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3829.0, "Total Transactions": 279.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.83, "MEDIAN_SPEND_PER_CUSTOMER": 14.71 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "LOCATION_NAME": "Lazos Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2023, "Total Visits": 96.0, "Total Visitors": 96.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2125.0, "Total Transactions": 111.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.53, "MEDIAN_SPEND_PER_CUSTOMER": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pp4-m6k", "LOCATION_NAME": "OG Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983648, "LONGITUDE": -75.125756, "DATE_RANGE_START": 2023, "Total Visits": 344.0, "Total Visitors": 296.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4608.0, "Total Transactions": 277.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 15.81 }, "geometry": { "type": "Point", "coordinates": [ -75.125756, 39.983648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y9z", "LOCATION_NAME": "Delightful Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953218, "LONGITUDE": -75.155064, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 207.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 201.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.36, "MEDIAN_SPEND_PER_CUSTOMER": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.155064, 39.953218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2023, "Total Visits": 2256.0, "Total Visitors": 1166.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 370.0, "Total Spend": 6464.0, "Total Transactions": 968.0, "Total Customers": 495.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.17, "MEDIAN_SPEND_PER_CUSTOMER": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-228@628-pj9-73q", "LOCATION_NAME": "Crab Du Jour", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044904, "LONGITUDE": -75.144393, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 150.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 876.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.46, "MEDIAN_SPEND_PER_CUSTOMER": 43.46 }, "geometry": { "type": "Point", "coordinates": [ -75.144393, 40.044904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "LOCATION_NAME": "Little Pete's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2023, "Total Visits": 1329.0, "Total Visitors": 695.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 154.0, "Total Spend": 130.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.11, "MEDIAN_SPEND_PER_CUSTOMER": 23.11 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "LOCATION_NAME": "Royal Boucherie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948704, "LONGITUDE": -75.144309, "DATE_RANGE_START": 2023, "Total Visits": 606.0, "Total Visitors": 470.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 709.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 162.76, "MEDIAN_SPEND_PER_CUSTOMER": 160.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144309, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "LOCATION_NAME": "New Deck Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953465, "LONGITUDE": -75.192584, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 14140.0, "Total Transactions": 257.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.02, "MEDIAN_SPEND_PER_CUSTOMER": 51.32 }, "geometry": { "type": "Point", "coordinates": [ -75.192584, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979849, "LONGITUDE": -75.269307, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 13050.0, "Total Transactions": 732.0, "Total Customers": 587.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.81, "MEDIAN_SPEND_PER_CUSTOMER": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.269307, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-4d9", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.944335, "LONGITUDE": -75.150023, "DATE_RANGE_START": 2023, "Total Visits": 512.0, "Total Visitors": 321.0, "POI_CBG": 421010010022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 78816.0, "Total Transactions": 2749.0, "Total Customers": 1021.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.76, "MEDIAN_SPEND_PER_CUSTOMER": 33.81 }, "geometry": { "type": "Point", "coordinates": [ -75.150023, 39.944335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.052503, "LONGITUDE": -75.058497, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5264.0, "Total Transactions": 177.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.058497, 40.052503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "LOCATION_NAME": "Revolution House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 172.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9647.0, "Total Transactions": 173.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.91, "MEDIAN_SPEND_PER_CUSTOMER": 53.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-28v", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.074524, "LONGITUDE": -75.032955, "DATE_RANGE_START": 2023, "Total Visits": 219.0, "Total Visitors": 116.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 704.0, "Total Transactions": 24.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.78, "MEDIAN_SPEND_PER_CUSTOMER": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -75.032955, 40.074524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-q4v", "LOCATION_NAME": "Los Potrillos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012389, "LONGITUDE": -75.11245, "DATE_RANGE_START": 2023, "Total Visits": 199.0, "Total Visitors": 115.0, "POI_CBG": 421010289012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 160.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.11245, 40.012389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p9k-dy9", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.100611, "LONGITUDE": -75.026503, "DATE_RANGE_START": 2023, "Total Visits": 2856.0, "Total Visitors": 1776.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 13.0, "Total Spend": 61139.0, "Total Transactions": 1646.0, "Total Customers": 799.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.96, "MEDIAN_SPEND_PER_CUSTOMER": 37.83 }, "geometry": { "type": "Point", "coordinates": [ -75.026503, 40.100611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.087573, "LONGITUDE": -74.970531, "DATE_RANGE_START": 2023, "Total Visits": 40.0, "Total Visitors": 20.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1100.0, "Total Transactions": 48.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.12, "MEDIAN_SPEND_PER_CUSTOMER": 21.46 }, "geometry": { "type": "Point", "coordinates": [ -74.970531, 40.087573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "LOCATION_NAME": "Kennedy Food Garden", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2023, "Total Visits": 326.0, "Total Visitors": 199.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3525.0, "Total Transactions": 180.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.88, "MEDIAN_SPEND_PER_CUSTOMER": 15.06 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvr-d5f", "LOCATION_NAME": "Y & B Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.921556, "LONGITUDE": -75.231623, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 100.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 193.0, "Total Spend": 18962.0, "Total Transactions": 1185.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 93.63 }, "geometry": { "type": "Point", "coordinates": [ -75.231623, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "LOCATION_NAME": "Brick House Bar & Grille", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 207.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 52.0, "Total Spend": 322.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.76, "MEDIAN_SPEND_PER_CUSTOMER": 21.17 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "LOCATION_NAME": "Mustard Greens Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 192.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1499.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.08, "MEDIAN_SPEND_PER_CUSTOMER": 90.08 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.016245, "LONGITUDE": -75.09649, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 880.0, "Total Transactions": 93.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.45, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09649, 40.016245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.9125, "LONGITUDE": -75.156968, "DATE_RANGE_START": 2023, "Total Visits": 66.0, "Total Visitors": 54.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1983.0, "Total Transactions": 43.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.21, "MEDIAN_SPEND_PER_CUSTOMER": 34.25 }, "geometry": { "type": "Point", "coordinates": [ -75.156968, 39.9125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-zmk", "LOCATION_NAME": "Touch of Gold", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941928, "LONGITUDE": -75.15354, "DATE_RANGE_START": 2023, "Total Visits": 849.0, "Total Visitors": 698.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2280.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 910.0, "MEDIAN_SPEND_PER_CUSTOMER": 910.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15354, 39.941928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2023, "Total Visits": 654.0, "Total Visitors": 502.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 446.0, "Total Transactions": 28.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.99, "MEDIAN_SPEND_PER_CUSTOMER": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pr4-d35", "LOCATION_NAME": "Rush Order Tees", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.112433, "LONGITUDE": -74.979188, "DATE_RANGE_START": 2023, "Total Visits": 143.0, "Total Visitors": 56.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 89.0, "Total Spend": 129.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979188, 40.112433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "LOCATION_NAME": "American Sardine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 178.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 2600.0, "Total Transactions": 33.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.5, "MEDIAN_SPEND_PER_CUSTOMER": 60.28 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.918026, "LONGITUDE": -75.188933, "DATE_RANGE_START": 2023, "Total Visits": 774.0, "Total Visitors": 590.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 11912.0, "Total Transactions": 269.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.38, "MEDIAN_SPEND_PER_CUSTOMER": 35.39 }, "geometry": { "type": "Point", "coordinates": [ -75.188933, 39.918026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-vj9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.018604, "LONGITUDE": -75.214313, "DATE_RANGE_START": 2023, "Total Visits": 591.0, "Total Visitors": 471.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8816.0, "Total Transactions": 499.0, "Total Customers": 302.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.54, "MEDIAN_SPEND_PER_CUSTOMER": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.214313, 40.018604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034618, "LONGITUDE": -75.175433, "DATE_RANGE_START": 2023, "Total Visits": 1132.0, "Total Visitors": 570.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 720.0, "Total Transactions": 95.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.41, "MEDIAN_SPEND_PER_CUSTOMER": 8.39 }, "geometry": { "type": "Point", "coordinates": [ -75.175433, 40.034618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzp-2zf", "LOCATION_NAME": "Illadelph by All in One Smoke Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.132389, "LONGITUDE": -75.012029, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 91.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 141.0, "Total Spend": 883.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.2, "MEDIAN_SPEND_PER_CUSTOMER": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012029, 40.132389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.960086, "LONGITUDE": -75.167468, "DATE_RANGE_START": 2023, "Total Visits": 789.0, "Total Visitors": 323.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 1299.0, "Total Spend": 933.0, "Total Transactions": 86.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.58, "MEDIAN_SPEND_PER_CUSTOMER": 9.98 }, "geometry": { "type": "Point", "coordinates": [ -75.167468, 39.960086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-grk", "LOCATION_NAME": "Federal Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963245, "LONGITUDE": -75.174323, "DATE_RANGE_START": 2023, "Total Visits": 2049.0, "Total Visitors": 1144.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 1044.0, "Total Transactions": 71.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.04, "MEDIAN_SPEND_PER_CUSTOMER": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.174323, 39.963245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093159, "LONGITUDE": -75.032892, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 30.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 540.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.95, "MEDIAN_SPEND_PER_CUSTOMER": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.032892, 40.093159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "LOCATION_NAME": "Bar Bombon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2023, "Total Visits": 314.0, "Total Visitors": 306.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1731.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.66, "MEDIAN_SPEND_PER_CUSTOMER": 57.66 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-t7q", "LOCATION_NAME": "Paprica Modern Mediterranean Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949133, "LONGITUDE": -75.154633, "DATE_RANGE_START": 2023, "Total Visits": 415.0, "Total Visitors": 393.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1974.0, "Total Transactions": 48.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.95, "MEDIAN_SPEND_PER_CUSTOMER": 49.15 }, "geometry": { "type": "Point", "coordinates": [ -75.154633, 39.949133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-75z", "LOCATION_NAME": "Ninja Bao", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953417, "LONGITUDE": -75.165928, "DATE_RANGE_START": 2023, "Total Visits": 2563.0, "Total Visitors": 1698.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 58.0, "Total Spend": 410.0, "Total Transactions": 23.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.56, "MEDIAN_SPEND_PER_CUSTOMER": 17.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165928, 39.953417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "LOCATION_NAME": "Station Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 230.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1832.0, "Total Transactions": 69.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.53, "MEDIAN_SPEND_PER_CUSTOMER": 27.92 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-435", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.918945, "LONGITUDE": -75.143088, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 209.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 923.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 190.0, "MEDIAN_SPEND_PER_CUSTOMER": 190.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143088, 39.918945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.030294, "LONGITUDE": -75.097997, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 73.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 72034.0, "Total Transactions": 525.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.28, "MEDIAN_SPEND_PER_CUSTOMER": 88.41 }, "geometry": { "type": "Point", "coordinates": [ -75.097997, 40.030294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg9-cyv", "LOCATION_NAME": "Mercado Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983185, "LONGITUDE": -75.169254, "DATE_RANGE_START": 2023, "Total Visits": 110.0, "Total Visitors": 85.0, "POI_CBG": 421010152004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 679.0, "Total Transactions": 90.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169254, 39.983185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg2-jgk", "LOCATION_NAME": "Grocery Outlet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.05001, "LONGITUDE": -75.1853, "DATE_RANGE_START": 2023, "Total Visits": 545.0, "Total Visitors": 545.0, "POI_CBG": 421010237004.0, "MEDIAN_DWELL": 83.0, "Total Spend": 102861.0, "Total Transactions": 3029.0, "Total Customers": 1464.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.52, "MEDIAN_SPEND_PER_CUSTOMER": 42.28 }, "geometry": { "type": "Point", "coordinates": [ -75.1853, 40.05001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-t9z", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947883, "LONGITUDE": -75.154475, "DATE_RANGE_START": 2023, "Total Visits": 1218.0, "Total Visitors": 651.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 167.0, "Total Spend": 408.0, "Total Transactions": 38.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.41, "MEDIAN_SPEND_PER_CUSTOMER": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.154475, 39.947883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "LOCATION_NAME": "Destination XL", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 165.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 8441.0, "Total Transactions": 123.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.0, "MEDIAN_SPEND_PER_CUSTOMER": 96.6 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pm4-gtv", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.925222, "LONGITUDE": -75.169039, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 119.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 28.0, "Total Spend": 610.0, "Total Transactions": 25.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.49, "MEDIAN_SPEND_PER_CUSTOMER": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169039, 39.925222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.913457, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 453.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@63s-dw9-8n5", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.877273, "LONGITUDE": -75.245918, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7657.0, "Total Transactions": 478.0, "Total Customers": 408.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.13, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.245918, 39.877273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7yv", "LOCATION_NAME": "Hunger Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953665, "LONGITUDE": -75.159753, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 213.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 469.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.77, "MEDIAN_SPEND_PER_CUSTOMER": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.159753, 39.953665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948587, "LONGITUDE": -75.159205, "DATE_RANGE_START": 2023, "Total Visits": 546.0, "Total Visitors": 283.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 54.0, "Total Spend": 7806.0, "Total Transactions": 954.0, "Total Customers": 343.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -75.159205, 39.948587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2023, "Total Visits": 331.0, "Total Visitors": 302.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4714.0, "Total Transactions": 829.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.49, "MEDIAN_SPEND_PER_CUSTOMER": 8.33 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94965, "LONGITUDE": -75.167379, "DATE_RANGE_START": 2023, "Total Visits": 63.0, "Total Visitors": 49.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6359.0, "Total Transactions": 754.0, "Total Customers": 534.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.97, "MEDIAN_SPEND_PER_CUSTOMER": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.167379, 39.94965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-389", "LOCATION_NAME": "Raymour & Flanigan Showroom", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.084522, "LONGITUDE": -74.967251, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 218.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 51.0, "Total Spend": 4326.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 126.9, "MEDIAN_SPEND_PER_CUSTOMER": 126.9 }, "geometry": { "type": "Point", "coordinates": [ -74.967251, 40.084522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dwb-rkz", "LOCATION_NAME": "Debo Brothers Auto Sales", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.914212, "LONGITUDE": -75.220931, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": null, "Total Spend": 195.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.0, "MEDIAN_SPEND_PER_CUSTOMER": 78.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220931, 39.914212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "LOCATION_NAME": "Blick Art Materials", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 100.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 17718.0, "Total Transactions": 442.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.38, "MEDIAN_SPEND_PER_CUSTOMER": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03231, "LONGITUDE": -75.106561, "DATE_RANGE_START": 2023, "Total Visits": 1145.0, "Total Visitors": 631.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 16159.0, "Total Transactions": 1092.0, "Total Customers": 693.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.09, "MEDIAN_SPEND_PER_CUSTOMER": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.106561, 40.03231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-qs5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03173, "LONGITUDE": -75.104308, "DATE_RANGE_START": 2023, "Total Visits": 2509.0, "Total Visitors": 1736.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 70.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.97, "MEDIAN_SPEND_PER_CUSTOMER": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.104308, 40.03173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "LOCATION_NAME": "Marine Layer", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949598, "LONGITUDE": -75.167845, "DATE_RANGE_START": 2023, "Total Visits": 969.0, "Total Visitors": 596.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 73.0, "Total Spend": 4727.0, "Total Transactions": 41.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.0, "MEDIAN_SPEND_PER_CUSTOMER": 113.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167845, 39.949598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pfy-b6k", "LOCATION_NAME": "Barry's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035119, "LONGITUDE": -75.217909, "DATE_RANGE_START": 2023, "Total Visits": 263.0, "Total Visitors": 203.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1770.0, "Total Transactions": 66.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.18, "MEDIAN_SPEND_PER_CUSTOMER": 24.61 }, "geometry": { "type": "Point", "coordinates": [ -75.217909, 40.035119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "LOCATION_NAME": "DiNapoli Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2023, "Total Visits": 261.0, "Total Visitors": 220.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1071.0, "Total Transactions": 43.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.74, "MEDIAN_SPEND_PER_CUSTOMER": 25.19 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "LOCATION_NAME": "The Quick Fixx", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 175.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2641.0, "Total Transactions": 130.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 20.47 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2023, "Total Visits": 125.0, "Total Visitors": 113.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 3516.0, "Total Transactions": 142.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.3, "MEDIAN_SPEND_PER_CUSTOMER": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-tn5", "LOCATION_NAME": "Koto Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948858, "LONGITUDE": -75.153256, "DATE_RANGE_START": 2023, "Total Visits": 584.0, "Total Visitors": 458.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2039.0, "Total Transactions": 60.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.68, "MEDIAN_SPEND_PER_CUSTOMER": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -75.153256, 39.948858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvx-59f", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.972923, "LONGITUDE": -75.217413, "DATE_RANGE_START": 2023, "Total Visits": 294.0, "Total Visitors": 223.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1028.0, "Total Transactions": 90.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.26, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.217413, 39.972923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2023, "Total Visits": 653.0, "Total Visitors": 451.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": 11.0, "Total Spend": 997.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.35, "MEDIAN_SPEND_PER_CUSTOMER": 40.35 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pm8-d35", "LOCATION_NAME": "King Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.914766, "LONGITUDE": -75.174988, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 173.0, "POI_CBG": 421010039022.0, "MEDIAN_DWELL": 261.0, "Total Spend": 155.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.89, "MEDIAN_SPEND_PER_CUSTOMER": 61.89 }, "geometry": { "type": "Point", "coordinates": [ -75.174988, 39.914766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "LOCATION_NAME": "Sue's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946196, "LONGITUDE": -75.145508, "DATE_RANGE_START": 2023, "Total Visits": 450.0, "Total Visitors": 402.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 41.0, "Total Spend": 2902.0, "Total Transactions": 225.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.85, "MEDIAN_SPEND_PER_CUSTOMER": 19.45 }, "geometry": { "type": "Point", "coordinates": [ -75.145508, 39.946196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-brk", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035928, "LONGITUDE": -75.062301, "DATE_RANGE_START": 2023, "Total Visits": 1060.0, "Total Visitors": 655.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 15.0, "Total Spend": 51216.0, "Total Transactions": 1544.0, "Total Customers": 813.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.4, "MEDIAN_SPEND_PER_CUSTOMER": 34.35 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.035928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "LOCATION_NAME": "Cottman Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 219.0, "POI_CBG": 421010331013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3319.0, "Total Transactions": 142.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.51, "MEDIAN_SPEND_PER_CUSTOMER": 39.67 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jy9", "LOCATION_NAME": "The Dive Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.936867, "LONGITUDE": -75.154753, "DATE_RANGE_START": 2023, "Total Visits": 402.0, "Total Visitors": 367.0, "POI_CBG": 421010024001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1702.0, "Total Transactions": 28.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.5, "MEDIAN_SPEND_PER_CUSTOMER": 63.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154753, 39.936867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-dy9", "LOCATION_NAME": "Little Italy Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942767, "LONGITUDE": -75.175334, "DATE_RANGE_START": 2023, "Total Visits": 73.0, "Total Visitors": 73.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": null, "Total Spend": 435.0, "Total Transactions": 35.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.81, "MEDIAN_SPEND_PER_CUSTOMER": 10.84 }, "geometry": { "type": "Point", "coordinates": [ -75.175334, 39.942767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm9-wp9", "LOCATION_NAME": "3j's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950423, "LONGITUDE": -75.146258, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 133.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146258, 39.950423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-v2k", "LOCATION_NAME": "Original Village Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.107293, "LONGITUDE": -75.037623, "DATE_RANGE_START": 2023, "Total Visits": 225.0, "Total Visitors": 198.0, "POI_CBG": 421010357021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2820.0, "Total Transactions": 86.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.49, "MEDIAN_SPEND_PER_CUSTOMER": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.037623, 40.107293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "LOCATION_NAME": "RIM Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 192.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 687.0, "Total Transactions": 40.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.08, "MEDIAN_SPEND_PER_CUSTOMER": 15.08 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-rzf", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.995312, "LONGITUDE": -75.092003, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 240.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 483.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.31, "MEDIAN_SPEND_PER_CUSTOMER": 85.84 }, "geometry": { "type": "Point", "coordinates": [ -75.092003, 39.995312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-nnq", "LOCATION_NAME": "M & M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.02486, "LONGITUDE": -75.210261, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": null, "Total Spend": 795.0, "Total Transactions": 68.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.68, "MEDIAN_SPEND_PER_CUSTOMER": 17.87 }, "geometry": { "type": "Point", "coordinates": [ -75.210261, 40.02486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9q-hqz", "LOCATION_NAME": "Pearle Vision", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.079188, "LONGITUDE": -75.028586, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 153.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 75.0, "Total Spend": 666.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 153.15, "MEDIAN_SPEND_PER_CUSTOMER": 153.15 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.079188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "LOCATION_NAME": "S and J Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948562, "LONGITUDE": -75.227098, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 251.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4687.0, "Total Transactions": 165.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.15 }, "geometry": { "type": "Point", "coordinates": [ -75.227098, 39.948562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8h-mzf", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.031622, "LONGITUDE": -75.051232, "DATE_RANGE_START": 2023, "Total Visits": 2992.0, "Total Visitors": 1578.0, "POI_CBG": 421010320001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 246.0, "Total Transactions": 6.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.96, "MEDIAN_SPEND_PER_CUSTOMER": 98.14 }, "geometry": { "type": "Point", "coordinates": [ -75.051232, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg2-zs5", "LOCATION_NAME": "Mount Airy Tap Room", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.053904, "LONGITUDE": -75.194197, "DATE_RANGE_START": 2023, "Total Visits": 132.0, "Total Visitors": 104.0, "POI_CBG": 421010388004.0, "MEDIAN_DWELL": 119.0, "Total Spend": 307.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.77, "MEDIAN_SPEND_PER_CUSTOMER": 35.91 }, "geometry": { "type": "Point", "coordinates": [ -75.194197, 40.053904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2023, "Total Visits": 81.0, "Total Visitors": 71.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1569.0, "Total Transactions": 48.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.12, "MEDIAN_SPEND_PER_CUSTOMER": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-223@628-pj4-t7q", "LOCATION_NAME": "Reyes Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996491, "LONGITUDE": -75.138647, "DATE_RANGE_START": 2023, "Total Visits": 76.0, "Total Visitors": 55.0, "POI_CBG": 421010176012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 575.0, "Total Transactions": 55.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.138647, 39.996491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "LOCATION_NAME": "Dim Sum & Noodle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962306, "LONGITUDE": -75.172679, "DATE_RANGE_START": 2023, "Total Visits": 3897.0, "Total Visitors": 2040.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 53.0, "Total Spend": 2926.0, "Total Transactions": 84.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.05, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172679, 39.962306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "LOCATION_NAME": "Tradesman's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950491, "LONGITUDE": -75.162734, "DATE_RANGE_START": 2023, "Total Visits": 361.0, "Total Visitors": 283.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 21617.0, "Total Transactions": 579.0, "Total Customers": 422.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.8, "MEDIAN_SPEND_PER_CUSTOMER": 35.36 }, "geometry": { "type": "Point", "coordinates": [ -75.162734, 39.950491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "LOCATION_NAME": "Quetzally", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941599, "LONGITUDE": -75.163088, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": null, "Total Spend": 114.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.34, "MEDIAN_SPEND_PER_CUSTOMER": 45.34 }, "geometry": { "type": "Point", "coordinates": [ -75.163088, 39.941599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-y35", "LOCATION_NAME": "Dave & Buster's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.091725, "LONGITUDE": -74.960996, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 51.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 87.0, "Total Spend": 40516.0, "Total Transactions": 813.0, "Total Customers": 517.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.94, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960996, 40.091725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011588, "LONGITUDE": -75.1128, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 20.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 165.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.1128, 40.011588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "LOCATION_NAME": "Tavern On Camac", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947273, "LONGITUDE": -75.161626, "DATE_RANGE_START": 2023, "Total Visits": 261.0, "Total Visitors": 205.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 14079.0, "Total Transactions": 602.0, "Total Customers": 331.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.4, "MEDIAN_SPEND_PER_CUSTOMER": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.161626, 39.947273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dvw-bhq", "LOCATION_NAME": "Yummy Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961114, "LONGITUDE": -75.224901, "DATE_RANGE_START": 2023, "Total Visits": 154.0, "Total Visitors": 135.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 391.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.08, "MEDIAN_SPEND_PER_CUSTOMER": 19.64 }, "geometry": { "type": "Point", "coordinates": [ -75.224901, 39.961114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "LOCATION_NAME": "Cook and Shaker", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 193.0, "POI_CBG": 421010160001.0, "MEDIAN_DWELL": 577.0, "Total Spend": 5910.0, "Total Transactions": 80.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.97, "MEDIAN_SPEND_PER_CUSTOMER": 72.81 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7v-w49", "LOCATION_NAME": "China Ruby", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055952, "LONGITUDE": -75.07383, "DATE_RANGE_START": 2023, "Total Visits": 150.0, "Total Visitors": 150.0, "POI_CBG": 421010338002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 107.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.1, "MEDIAN_SPEND_PER_CUSTOMER": 27.86 }, "geometry": { "type": "Point", "coordinates": [ -75.07383, 40.055952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-5mk", "LOCATION_NAME": "McGillin's Olde Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95021, "LONGITUDE": -75.162564, "DATE_RANGE_START": 2023, "Total Visits": 333.0, "Total Visitors": 264.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 43005.0, "Total Transactions": 1585.0, "Total Customers": 1046.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162564, 39.95021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hh5", "LOCATION_NAME": "Square on Square", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94849, "LONGITUDE": -75.174456, "DATE_RANGE_START": 2023, "Total Visits": 1245.0, "Total Visitors": 884.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 29.0, "Total Spend": 939.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.83, "MEDIAN_SPEND_PER_CUSTOMER": 25.83 }, "geometry": { "type": "Point", "coordinates": [ -75.174456, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9p-z75", "LOCATION_NAME": "Ahi Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101907, "LONGITUDE": -75.02821, "DATE_RANGE_START": 2023, "Total Visits": 8804.0, "Total Visitors": 3175.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 92.0, "Total Spend": 3773.0, "Total Transactions": 93.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.52, "MEDIAN_SPEND_PER_CUSTOMER": 39.96 }, "geometry": { "type": "Point", "coordinates": [ -75.02821, 40.101907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-wkz", "LOCATION_NAME": "Garces Events", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 39.951558, "LONGITUDE": -75.180009, "DATE_RANGE_START": 2023, "Total Visits": 745.0, "Total Visitors": 639.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5925.0, "Total Transactions": 286.0, "Total Customers": 223.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.14 }, "geometry": { "type": "Point", "coordinates": [ -75.180009, 39.951558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2023, "Total Visits": 848.0, "Total Visitors": 684.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 16948.0, "Total Transactions": 788.0, "Total Customers": 494.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.82, "MEDIAN_SPEND_PER_CUSTOMER": 24.18 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-pn5", "LOCATION_NAME": "U Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954979, "LONGITUDE": -75.202634, "DATE_RANGE_START": 2023, "Total Visits": 150.0, "Total Visitors": 118.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 43.0, "Total Spend": 3423.0, "Total Transactions": 90.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.26, "MEDIAN_SPEND_PER_CUSTOMER": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202634, 39.954979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02987, "LONGITUDE": -75.099395, "DATE_RANGE_START": 2023, "Total Visits": 555.0, "Total Visitors": 368.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 7497.0, "Total Transactions": 435.0, "Total Customers": 264.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.39, "MEDIAN_SPEND_PER_CUSTOMER": 22.09 }, "geometry": { "type": "Point", "coordinates": [ -75.099395, 40.02987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.925926, "LONGITUDE": -75.143002, "DATE_RANGE_START": 2023, "Total Visits": 3193.0, "Total Visitors": 1984.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 92571.0, "Total Transactions": 673.0, "Total Customers": 358.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.26, "MEDIAN_SPEND_PER_CUSTOMER": 82.48 }, "geometry": { "type": "Point", "coordinates": [ -75.143002, 39.925926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phj-rp9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.072698, "LONGITUDE": -75.158433, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 11.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 8.0, "Total Spend": 256.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.0, "MEDIAN_SPEND_PER_CUSTOMER": 46.28 }, "geometry": { "type": "Point", "coordinates": [ -75.158433, 40.072698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 143.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2747.0, "Total Transactions": 39.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.24, "MEDIAN_SPEND_PER_CUSTOMER": 58.32 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2023, "Total Visits": 456.0, "Total Visitors": 276.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 9034.0, "Total Transactions": 576.0, "Total Customers": 417.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.17, "MEDIAN_SPEND_PER_CUSTOMER": 15.31 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-rp9", "LOCATION_NAME": "Sunrise Breakfast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066142, "LONGITUDE": -75.158748, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 797.0, "Total Transactions": 43.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.88, "MEDIAN_SPEND_PER_CUSTOMER": 30.84 }, "geometry": { "type": "Point", "coordinates": [ -75.158748, 40.066142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2023, "Total Visits": 103.0, "Total Visitors": 91.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 871.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.71, "MEDIAN_SPEND_PER_CUSTOMER": 49.97 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p85-7nq", "LOCATION_NAME": "Tuscany Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056919, "LONGITUDE": -75.047895, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 108.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 595.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.89, "MEDIAN_SPEND_PER_CUSTOMER": 122.09 }, "geometry": { "type": "Point", "coordinates": [ -75.047895, 40.056919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2023, "Total Visits": 956.0, "Total Visitors": 803.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4748.0, "Total Transactions": 271.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 12.34 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025407, "LONGITUDE": -75.223856, "DATE_RANGE_START": 2023, "Total Visits": 512.0, "Total Visitors": 376.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1219.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.56, "MEDIAN_SPEND_PER_CUSTOMER": 42.07 }, "geometry": { "type": "Point", "coordinates": [ -75.223856, 40.025407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-p5f", "LOCATION_NAME": "Beaty American", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.978754, "LONGITUDE": -75.139823, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 159.0, "POI_CBG": 421010156001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 654.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.3, "MEDIAN_SPEND_PER_CUSTOMER": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139823, 39.978754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003522, "LONGITUDE": -75.165598, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 403.0, "POI_CBG": 421010202001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1241.0, "Total Transactions": 153.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.66, "MEDIAN_SPEND_PER_CUSTOMER": 9.14 }, "geometry": { "type": "Point", "coordinates": [ -75.165598, 40.003522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009412, "LONGITUDE": -75.196512, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5901.0, "Total Transactions": 732.0, "Total Customers": 383.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.15, "MEDIAN_SPEND_PER_CUSTOMER": 8.93 }, "geometry": { "type": "Point", "coordinates": [ -75.196512, 40.009412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "LOCATION_NAME": "Beck's Cajun Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2023, "Total Visits": 11074.0, "Total Visitors": 6611.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5588.0, "Total Transactions": 259.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.62, "MEDIAN_SPEND_PER_CUSTOMER": 17.79 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pmf-skf", "LOCATION_NAME": "Butcher and Singer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949462, "LONGITUDE": -75.166241, "DATE_RANGE_START": 2023, "Total Visits": 2172.0, "Total Visitors": 1549.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 3.0, "Total Spend": 25305.0, "Total Transactions": 99.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 218.8, "MEDIAN_SPEND_PER_CUSTOMER": 253.08 }, "geometry": { "type": "Point", "coordinates": [ -75.166241, 39.949462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-w49", "LOCATION_NAME": "The Bakeshop on 20th", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948428, "LONGITUDE": -75.174139, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 149.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 2.0, "Total Spend": 106.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.11 }, "geometry": { "type": "Point", "coordinates": [ -75.174139, 39.948428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmc-s3q", "LOCATION_NAME": "Philadelphia Java Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93617, "LONGITUDE": -75.146983, "DATE_RANGE_START": 2023, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": null, "Total Spend": 35.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -75.146983, 39.93617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "LOCATION_NAME": "Anastasi Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2023, "Total Visits": 282.0, "Total Visitors": 266.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5687.0, "Total Transactions": 98.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.93, "MEDIAN_SPEND_PER_CUSTOMER": 50.58 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-zvf", "LOCATION_NAME": "Tavern On the Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077151, "LONGITUDE": -75.208916, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 152.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 1695.0, "Total Transactions": 36.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.64, "MEDIAN_SPEND_PER_CUSTOMER": 45.64 }, "geometry": { "type": "Point", "coordinates": [ -75.208916, 40.077151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6hq", "LOCATION_NAME": "Nurses Uniform Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950135, "LONGITUDE": -75.158882, "DATE_RANGE_START": 2023, "Total Visits": 4640.0, "Total Visitors": 2981.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 88.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158882, 39.950135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.991919, "LONGITUDE": -75.178907, "DATE_RANGE_START": 2023, "Total Visits": 814.0, "Total Visitors": 481.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1201.0, "Total Transactions": 38.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.08, "MEDIAN_SPEND_PER_CUSTOMER": 13.57 }, "geometry": { "type": "Point", "coordinates": [ -75.178907, 39.991919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.93815, "LONGITUDE": -75.172716, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 135.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 9754.0, "Total Transactions": 219.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 23.62 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.93815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pnw-py9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.969281, "LONGITUDE": -75.140143, "DATE_RANGE_START": 2023, "Total Visits": 852.0, "Total Visitors": 802.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1511.0, "Total Transactions": 79.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.58, "MEDIAN_SPEND_PER_CUSTOMER": 22.74 }, "geometry": { "type": "Point", "coordinates": [ -75.140143, 39.969281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.959641, "LONGITUDE": -75.218508, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010104004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 4044.0, "Total Transactions": 185.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.64, "MEDIAN_SPEND_PER_CUSTOMER": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.218508, 39.959641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2023, "Total Visits": 1126.0, "Total Visitors": 815.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7836.0, "Total Transactions": 367.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.918089, "LONGITUDE": -75.178743, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1396.0, "Total Transactions": 46.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.26, "MEDIAN_SPEND_PER_CUSTOMER": 35.36 }, "geometry": { "type": "Point", "coordinates": [ -75.178743, 39.918089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "LOCATION_NAME": "Xi'an Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953264, "LONGITUDE": -75.154923, "DATE_RANGE_START": 2023, "Total Visits": 2225.0, "Total Visitors": 1643.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1371.0, "Total Transactions": 48.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.78, "MEDIAN_SPEND_PER_CUSTOMER": 24.78 }, "geometry": { "type": "Point", "coordinates": [ -75.154923, 39.953264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "LOCATION_NAME": "Brauhaus Schmitz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942071, "LONGITUDE": -75.154606, "DATE_RANGE_START": 2023, "Total Visits": 822.0, "Total Visitors": 693.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4158.0, "Total Transactions": 19.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.02, "MEDIAN_SPEND_PER_CUSTOMER": 43.85 }, "geometry": { "type": "Point", "coordinates": [ -75.154606, 39.942071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.914321, "LONGITUDE": -75.149506, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2248.0, "Total Transactions": 88.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149506, 39.914321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23g@628-pmf-sqz", "LOCATION_NAME": "New Balance Philadelphia", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950046, "LONGITUDE": -75.168022, "DATE_RANGE_START": 2023, "Total Visits": 2314.0, "Total Visitors": 1744.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5058.0, "Total Transactions": 39.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 119.99, "MEDIAN_SPEND_PER_CUSTOMER": 124.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168022, 39.950046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "LOCATION_NAME": "Champ's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 168.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2883.0, "Total Transactions": 178.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 17.47 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-p8v-7h5", "LOCATION_NAME": "Nine Ting", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088807, "LONGITUDE": -74.967966, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 410.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 744.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.88, "MEDIAN_SPEND_PER_CUSTOMER": 89.88 }, "geometry": { "type": "Point", "coordinates": [ -74.967966, 40.088807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99276, "LONGITUDE": -75.097642, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6568.0, "Total Transactions": 346.0, "Total Customers": 283.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.34, "MEDIAN_SPEND_PER_CUSTOMER": 16.57 }, "geometry": { "type": "Point", "coordinates": [ -75.097642, 39.99276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "LOCATION_NAME": "Engimono Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2023, "Total Visits": 406.0, "Total Visitors": 284.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3177.0, "Total Transactions": 78.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.8, "MEDIAN_SPEND_PER_CUSTOMER": 26.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-68v", "LOCATION_NAME": "The Bike Stop", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948357, "LONGITUDE": -75.159979, "DATE_RANGE_START": 2023, "Total Visits": 254.0, "Total Visitors": 110.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 138.0, "Total Spend": 11235.0, "Total Transactions": 623.0, "Total Customers": 254.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159979, 39.948357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgb-c3q", "LOCATION_NAME": "Lucky Goat Coffeehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972559, "LONGITUDE": -75.179343, "DATE_RANGE_START": 2023, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 9.0, "Total Spend": 37.0, "Total Transactions": 6.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.32, "MEDIAN_SPEND_PER_CUSTOMER": 14.92 }, "geometry": { "type": "Point", "coordinates": [ -75.179343, 39.972559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgm-28v", "LOCATION_NAME": "East Falls Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.007838, "LONGITUDE": -75.191777, "DATE_RANGE_START": 2023, "Total Visits": 4060.0, "Total Visitors": 2435.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 46.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.191777, 40.007838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pp4-x3q", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.985935, "LONGITUDE": -75.132315, "DATE_RANGE_START": 2023, "Total Visits": 4470.0, "Total Visitors": 1969.0, "POI_CBG": 421010163004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 870.0, "Total Transactions": 33.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.132315, 39.985935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "LOCATION_NAME": "Off Broadway Shoe Warehouse", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2023, "Total Visits": 472.0, "Total Visitors": 408.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 40.0, "Total Spend": 5725.0, "Total Transactions": 73.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.28, "MEDIAN_SPEND_PER_CUSTOMER": 71.47 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "LOCATION_NAME": "Dolce Carini", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2023, "Total Visits": 317.0, "Total Visitors": 253.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1784.0, "Total Transactions": 122.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.48, "MEDIAN_SPEND_PER_CUSTOMER": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj8-qs5", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031843, "LONGITUDE": -75.10443, "DATE_RANGE_START": 2023, "Total Visits": 2509.0, "Total Visitors": 1736.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 83290.0, "Total Transactions": 5023.0, "Total Customers": 3460.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.38, "MEDIAN_SPEND_PER_CUSTOMER": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.10443, 40.031843 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-bff", "LOCATION_NAME": "Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.016286, "LONGITUDE": -75.061606, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 465.0, "Total Transactions": 24.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.3, "MEDIAN_SPEND_PER_CUSTOMER": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061606, 40.016286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pg8-kmk", "LOCATION_NAME": "Green Eggs Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974211, "LONGITUDE": -75.182048, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 177.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 27.0, "Total Spend": 232.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.75, "MEDIAN_SPEND_PER_CUSTOMER": 41.75 }, "geometry": { "type": "Point", "coordinates": [ -75.182048, 39.974211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "LOCATION_NAME": "New Quality Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 29.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 387.0, "Total Spend": 342.0, "Total Transactions": 19.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.94, "MEDIAN_SPEND_PER_CUSTOMER": 28.68 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pmd-rtv", "LOCATION_NAME": "Sally", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948932, "LONGITUDE": -75.178843, "DATE_RANGE_START": 2023, "Total Visits": 447.0, "Total Visitors": 405.0, "POI_CBG": 421010008011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4177.0, "Total Transactions": 58.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.84, "MEDIAN_SPEND_PER_CUSTOMER": 81.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178843, 39.948932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgg-b8v", "LOCATION_NAME": "Fingers & Wings Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001078, "LONGITUDE": -75.166601, "DATE_RANGE_START": 2023, "Total Visits": 78.0, "Total Visitors": 78.0, "POI_CBG": 421010172013.0, "MEDIAN_DWELL": 17.0, "Total Spend": 656.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.9, "MEDIAN_SPEND_PER_CUSTOMER": 36.07 }, "geometry": { "type": "Point", "coordinates": [ -75.166601, 40.001078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfy-wkz", "LOCATION_NAME": "Dawson Street Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.018548, "LONGITUDE": -75.21277, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 60.0, "POI_CBG": 421010209004.0, "MEDIAN_DWELL": 93.0, "Total Spend": 4707.0, "Total Transactions": 188.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.79, "MEDIAN_SPEND_PER_CUSTOMER": 42.13 }, "geometry": { "type": "Point", "coordinates": [ -75.21277, 40.018548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pj8-pgk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031719, "LONGITUDE": -75.099544, "DATE_RANGE_START": 2023, "Total Visits": 3669.0, "Total Visitors": 2315.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2461.0, "Total Transactions": 189.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.6, "MEDIAN_SPEND_PER_CUSTOMER": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099544, 40.031719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pm3-vpv", "LOCATION_NAME": "Flannel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927131, "LONGITUDE": -75.166347, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 104.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8743.0, "Total Transactions": 152.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.55, "MEDIAN_SPEND_PER_CUSTOMER": 54.08 }, "geometry": { "type": "Point", "coordinates": [ -75.166347, 39.927131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "LOCATION_NAME": "Rice & Mix", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 195.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1565.0, "Total Transactions": 70.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.41, "MEDIAN_SPEND_PER_CUSTOMER": 21.49 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "LOCATION_NAME": "South", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2023, "Total Visits": 291.0, "Total Visitors": 279.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 517.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.17, "MEDIAN_SPEND_PER_CUSTOMER": 29.17 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-224@628-pmf-kj9", "LOCATION_NAME": "Alchemy Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951158, "LONGITUDE": -75.175492, "DATE_RANGE_START": 2023, "Total Visits": 1702.0, "Total Visitors": 1169.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 4018.0, "Total Transactions": 476.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 10.53 }, "geometry": { "type": "Point", "coordinates": [ -75.175492, 39.951158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2023, "Total Visits": 274.0, "Total Visitors": 243.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5905.0, "Total Transactions": 327.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.66, "MEDIAN_SPEND_PER_CUSTOMER": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-jjv", "LOCATION_NAME": "MAC Cosmetics", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951489, "LONGITUDE": -75.170193, "DATE_RANGE_START": 2023, "Total Visits": 1325.0, "Total Visitors": 847.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 89.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.64, "MEDIAN_SPEND_PER_CUSTOMER": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.170193, 39.951489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6hq", "LOCATION_NAME": "MilkBoy", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950114, "LONGITUDE": -75.15876, "DATE_RANGE_START": 2023, "Total Visits": 4640.0, "Total Visitors": 2981.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2729.0, "Total Transactions": 51.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.32, "MEDIAN_SPEND_PER_CUSTOMER": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15876, 39.950114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95261, "LONGITUDE": -75.174958, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1979.0, "Total Transactions": 79.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.89, "MEDIAN_SPEND_PER_CUSTOMER": 18.95 }, "geometry": { "type": "Point", "coordinates": [ -75.174958, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.052252, "LONGITUDE": -75.010446, "DATE_RANGE_START": 2023, "Total Visits": 799.0, "Total Visitors": 501.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1532.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.38, "MEDIAN_SPEND_PER_CUSTOMER": 76.38 }, "geometry": { "type": "Point", "coordinates": [ -75.010446, 40.052252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-v4v", "LOCATION_NAME": "Nick's Bar and Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949498, "LONGITUDE": -75.144137, "DATE_RANGE_START": 2023, "Total Visits": 876.0, "Total Visitors": 655.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 3868.0, "Total Transactions": 85.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.8, "MEDIAN_SPEND_PER_CUSTOMER": 52.07 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 39.949498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmd-vfz", "LOCATION_NAME": "Tsuki Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951096, "LONGITUDE": -75.177135, "DATE_RANGE_START": 2023, "Total Visits": 271.0, "Total Visitors": 251.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 828.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.31, "MEDIAN_SPEND_PER_CUSTOMER": 24.25 }, "geometry": { "type": "Point", "coordinates": [ -75.177135, 39.951096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2023, "Total Visits": 1207.0, "Total Visitors": 943.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 12338.0, "Total Transactions": 1012.0, "Total Customers": 608.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.43, "MEDIAN_SPEND_PER_CUSTOMER": 13.51 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-vzz", "LOCATION_NAME": "Jollibee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048717, "LONGITUDE": -75.0598, "DATE_RANGE_START": 2023, "Total Visits": 31491.0, "Total Visitors": 13974.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 11166.0, "Total Transactions": 446.0, "Total Customers": 357.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.77, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.0598, 40.048717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2023, "Total Visits": 1924.0, "Total Visitors": 1150.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2792.0, "Total Transactions": 470.0, "Total Customers": 194.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.85, "MEDIAN_SPEND_PER_CUSTOMER": 8.12 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933044, "LONGITUDE": -75.144605, "DATE_RANGE_START": 2023, "Total Visits": 356.0, "Total Visitors": 302.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 10598.0, "Total Transactions": 1335.0, "Total Customers": 629.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.49, "MEDIAN_SPEND_PER_CUSTOMER": 10.07 }, "geometry": { "type": "Point", "coordinates": [ -75.144605, 39.933044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-6p9", "LOCATION_NAME": "Samsun Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.95084, "LONGITUDE": -75.166508, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 125.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166508, 39.95084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "LOCATION_NAME": "Spring Garden Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2023, "Total Visits": 476.0, "Total Visitors": 367.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1780.0, "Total Transactions": 90.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.13, "MEDIAN_SPEND_PER_CUSTOMER": 23.24 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-d5f", "LOCATION_NAME": "Best Deal Discount Store", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.957506, "LONGITUDE": -75.202207, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 154.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 322.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.44, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.202207, 39.957506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-p82-nqz", "LOCATION_NAME": "On Charcoal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041319, "LONGITUDE": -75.075986, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 155.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.16, "MEDIAN_SPEND_PER_CUSTOMER": 43.16 }, "geometry": { "type": "Point", "coordinates": [ -75.075986, 40.041319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-5fz", "LOCATION_NAME": "Madison K", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.961127, "LONGITUDE": -75.141646, "DATE_RANGE_START": 2023, "Total Visits": 312.0, "Total Visitors": 289.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 101.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.25, "MEDIAN_SPEND_PER_CUSTOMER": 40.25 }, "geometry": { "type": "Point", "coordinates": [ -75.141646, 39.961127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2023, "Total Visits": 1310.0, "Total Visitors": 758.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 15088.0, "Total Transactions": 592.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.23, "MEDIAN_SPEND_PER_CUSTOMER": 34.41 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99978, "LONGITUDE": -75.15379, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3535.0, "Total Transactions": 238.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.19, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.15379, 39.99978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-qxq", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.991686, "LONGITUDE": -75.099246, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 896.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.5, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099246, 39.991686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "LOCATION_NAME": "Hilltown Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 162.0, "POI_CBG": 421010213004.0, "MEDIAN_DWELL": 68.0, "Total Spend": 25392.0, "Total Transactions": 462.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.9, "MEDIAN_SPEND_PER_CUSTOMER": 59.01 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-cbk", "LOCATION_NAME": "Oregon Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913868, "LONGITUDE": -75.152939, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 422.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 35.0, "Total Spend": 259.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.36, "MEDIAN_SPEND_PER_CUSTOMER": 30.36 }, "geometry": { "type": "Point", "coordinates": [ -75.152939, 39.913868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "LOCATION_NAME": "Vietnam Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2023, "Total Visits": 359.0, "Total Visitors": 341.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 37.0, "Total Spend": 397.0, "Total Transactions": 9.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.3, "MEDIAN_SPEND_PER_CUSTOMER": 26.79 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9q-ht9", "LOCATION_NAME": "Bubbakoo's Burritos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078769, "LONGITUDE": -75.027229, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 133.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1603.0, "Total Transactions": 68.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.46, "MEDIAN_SPEND_PER_CUSTOMER": 19.72 }, "geometry": { "type": "Point", "coordinates": [ -75.027229, 40.078769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-575", "LOCATION_NAME": "Aldo's Pizzarama", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.108537, "LONGITUDE": -75.025505, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 94.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 192.0, "Total Spend": 739.0, "Total Transactions": 54.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 19.21 }, "geometry": { "type": "Point", "coordinates": [ -75.025505, 40.108537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2023, "Total Visits": 565.0, "Total Visitors": 352.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7934.0, "Total Transactions": 978.0, "Total Customers": 426.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.08, "MEDIAN_SPEND_PER_CUSTOMER": 10.77 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7b-vmk", "LOCATION_NAME": "Out of Wack Jacks Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057001, "LONGITUDE": -75.014587, "DATE_RANGE_START": 2023, "Total Visits": 456.0, "Total Visitors": 370.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 27.0, "Total Spend": 1035.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.28, "MEDIAN_SPEND_PER_CUSTOMER": 46.54 }, "geometry": { "type": "Point", "coordinates": [ -75.014587, 40.057001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "LOCATION_NAME": "Xiandu Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2023, "Total Visits": 2347.0, "Total Visitors": 1807.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4726.0, "Total Transactions": 104.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.08, "MEDIAN_SPEND_PER_CUSTOMER": 37.13 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032496, "LONGITUDE": -75.21442, "DATE_RANGE_START": 2023, "Total Visits": 903.0, "Total Visitors": 499.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 638.0, "Total Transactions": 41.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.21442, 40.032496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "LOCATION_NAME": "Popi's Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2023, "Total Visits": 81.0, "Total Visitors": 70.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 660.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 171.22, "MEDIAN_SPEND_PER_CUSTOMER": 171.22 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 65.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 114.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22m@63s-dw4-rzf", "LOCATION_NAME": "Currito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895176, "LONGITUDE": -75.227955, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 645.0, "Total Transactions": 34.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.92, "MEDIAN_SPEND_PER_CUSTOMER": 19.41 }, "geometry": { "type": "Point", "coordinates": [ -75.227955, 39.895176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2023, "Total Visits": 1727.0, "Total Visitors": 840.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 9303.0, "Total Transactions": 685.0, "Total Customers": 436.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.88, "MEDIAN_SPEND_PER_CUSTOMER": 14.37 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953319, "LONGITUDE": -75.17307, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3507.0, "Total Transactions": 435.0, "Total Customers": 261.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.43, "MEDIAN_SPEND_PER_CUSTOMER": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.17307, 39.953319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2023, "Total Visits": 934.0, "Total Visitors": 879.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4771.0, "Total Transactions": 476.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.43, "MEDIAN_SPEND_PER_CUSTOMER": 10.94 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-p7q", "LOCATION_NAME": "The Wardrobe Philadelphia", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.958203, "LONGITUDE": -75.145206, "DATE_RANGE_START": 2023, "Total Visits": 931.0, "Total Visitors": 718.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 122.0, "Total Spend": 575.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.96 }, "geometry": { "type": "Point", "coordinates": [ -75.145206, 39.958203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-ch5", "LOCATION_NAME": "La Roca", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023561, "LONGITUDE": -75.219763, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 220.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 27.0, "Total Spend": 1038.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.2, "MEDIAN_SPEND_PER_CUSTOMER": 42.97 }, "geometry": { "type": "Point", "coordinates": [ -75.219763, 40.023561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-5pv", "LOCATION_NAME": "Bank & Bourbon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951655, "LONGITUDE": -75.160201, "DATE_RANGE_START": 2023, "Total Visits": 1474.0, "Total Visitors": 1026.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 120.0, "Total Spend": 163.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.14, "MEDIAN_SPEND_PER_CUSTOMER": 65.14 }, "geometry": { "type": "Point", "coordinates": [ -75.160201, 39.951655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-yvz", "LOCATION_NAME": "Panda Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037582, "LONGITUDE": -75.130053, "DATE_RANGE_START": 2023, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010274012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 418.0, "Total Transactions": 23.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.34, "MEDIAN_SPEND_PER_CUSTOMER": 16.27 }, "geometry": { "type": "Point", "coordinates": [ -75.130053, 40.037582 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5zz", "LOCATION_NAME": "Moriarty's Restaurant and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948634, "LONGITUDE": -75.159865, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 13.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 33.0, "Total Spend": 9027.0, "Total Transactions": 187.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.3, "MEDIAN_SPEND_PER_CUSTOMER": 47.06 }, "geometry": { "type": "Point", "coordinates": [ -75.159865, 39.948634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dwf-q9f", "LOCATION_NAME": "Shotz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911065, "LONGITUDE": -75.243379, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 84.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 83.0, "Total Spend": 41.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.55, "MEDIAN_SPEND_PER_CUSTOMER": 16.55 }, "geometry": { "type": "Point", "coordinates": [ -75.243379, 39.911065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pnx-dsq", "LOCATION_NAME": "Loco Pez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976842, "LONGITUDE": -75.127118, "DATE_RANGE_START": 2023, "Total Visits": 39.0, "Total Visitors": 31.0, "POI_CBG": 421010160002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 3946.0, "Total Transactions": 86.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.81, "MEDIAN_SPEND_PER_CUSTOMER": 54.68 }, "geometry": { "type": "Point", "coordinates": [ -75.127118, 39.976842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2023, "Total Visits": 371.0, "Total Visitors": 337.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 13261.0, "Total Transactions": 269.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.18, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgf-dvz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958298, "LONGITUDE": -75.208207, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3159.0, "Total Transactions": 139.0, "Total Customers": 116.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.208207, 39.958298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9w-575", "LOCATION_NAME": "Taste King Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.108989, "LONGITUDE": -75.025021, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 207.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1288.0, "Total Transactions": 25.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.98, "MEDIAN_SPEND_PER_CUSTOMER": 56.39 }, "geometry": { "type": "Point", "coordinates": [ -75.025021, 40.108989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmb-dd9", "LOCATION_NAME": "Town Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.944522, "LONGITUDE": -75.163234, "DATE_RANGE_START": 2023, "Total Visits": 392.0, "Total Visitors": 392.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2276.0, "Total Transactions": 114.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.3, "MEDIAN_SPEND_PER_CUSTOMER": 18.39 }, "geometry": { "type": "Point", "coordinates": [ -75.163234, 39.944522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "LOCATION_NAME": "Claudio's Specialty Foods", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 58.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7749.0, "Total Transactions": 153.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.96, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "LOCATION_NAME": "Beer Express", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 148.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7380.0, "Total Transactions": 240.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.69, "MEDIAN_SPEND_PER_CUSTOMER": 34.73 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pfz-bhq", "LOCATION_NAME": "Pizza Jawn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025115, "LONGITUDE": -75.223217, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 765.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 21.11 }, "geometry": { "type": "Point", "coordinates": [ -75.223217, 40.025115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj5-fs5", "LOCATION_NAME": "Billows Electric Supply Company", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.011251, "LONGITUDE": -75.125532, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 253.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1134.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.94, "MEDIAN_SPEND_PER_CUSTOMER": 106.94 }, "geometry": { "type": "Point", "coordinates": [ -75.125532, 40.011251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p8n-btv", "LOCATION_NAME": "El New Sunrise Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.033488, "LONGITUDE": -75.066195, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": null, "Total Spend": 55.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066195, 40.033488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952106, "LONGITUDE": -75.16843, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 27.0, "Total Spend": 5730.0, "Total Transactions": 437.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.64, "MEDIAN_SPEND_PER_CUSTOMER": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.16843, 39.952106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 178.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1005.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.51, "MEDIAN_SPEND_PER_CUSTOMER": 101.51 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvr-z75", "LOCATION_NAME": "Kim A Grocery & Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.935748, "LONGITUDE": -75.228814, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 108.0, "POI_CBG": 421010065003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 82.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.228814, 39.935748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7z-6tv", "LOCATION_NAME": "Dollar Discount", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.055124, "LONGITUDE": -75.090736, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 120.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.87, "MEDIAN_SPEND_PER_CUSTOMER": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.090736, 40.055124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p7w-gc5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072472, "LONGITUDE": -75.075745, "DATE_RANGE_START": 2023, "Total Visits": 686.0, "Total Visitors": 531.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 361.0, "Total Transactions": 28.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.93, "MEDIAN_SPEND_PER_CUSTOMER": 23.86 }, "geometry": { "type": "Point", "coordinates": [ -75.075745, 40.072472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944247, "LONGITUDE": -75.172187, "DATE_RANGE_START": 2023, "Total Visits": 770.0, "Total Visitors": 534.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5907.0, "Total Transactions": 302.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.58, "MEDIAN_SPEND_PER_CUSTOMER": 23.66 }, "geometry": { "type": "Point", "coordinates": [ -75.172187, 39.944247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-qfz", "LOCATION_NAME": "Workshop Underground", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.943884, "LONGITUDE": -75.16864, "DATE_RANGE_START": 2023, "Total Visits": 288.0, "Total Visitors": 154.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 38.0, "Total Spend": 552.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 220.32, "MEDIAN_SPEND_PER_CUSTOMER": 220.32 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 39.943884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-y7q", "LOCATION_NAME": "Brothers Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.007976, "LONGITUDE": -75.150257, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": null, "Total Spend": 244.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.99, "MEDIAN_SPEND_PER_CUSTOMER": 74.99 }, "geometry": { "type": "Point", "coordinates": [ -75.150257, 40.007976 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.977115, "LONGITUDE": -75.274328, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 10.0, "Total Spend": 12541.0, "Total Transactions": 243.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.274328, 39.977115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgy-ks5", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.06356, "LONGITUDE": -75.238235, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 271.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 11372.0, "Total Transactions": 684.0, "Total Customers": 462.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.39, "MEDIAN_SPEND_PER_CUSTOMER": 17.98 }, "geometry": { "type": "Point", "coordinates": [ -75.238235, 40.06356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-6p9", "LOCATION_NAME": "Element by Westin", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951602, "LONGITUDE": -75.164908, "DATE_RANGE_START": 2023, "Total Visits": 268.0, "Total Visitors": 200.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2544.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1015.32, "MEDIAN_SPEND_PER_CUSTOMER": 1015.32 }, "geometry": { "type": "Point", "coordinates": [ -75.164908, 39.951602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "LOCATION_NAME": "Taco Loco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2023, "Total Visits": 78.0, "Total Visitors": 59.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": null, "Total Spend": 554.0, "Total Transactions": 30.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-226@628-pmb-z9f", "LOCATION_NAME": "School of Rock", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.95914, "LONGITUDE": -75.150047, "DATE_RANGE_START": 2023, "Total Visits": 643.0, "Total Visitors": 535.0, "POI_CBG": 421010376001.0, "MEDIAN_DWELL": 138.0, "Total Spend": 590.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.07, "MEDIAN_SPEND_PER_CUSTOMER": 64.29 }, "geometry": { "type": "Point", "coordinates": [ -75.150047, 39.95914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "LOCATION_NAME": "Royal's Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2537.0, "Total Transactions": 61.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.66, "MEDIAN_SPEND_PER_CUSTOMER": 42.58 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2023, "Total Visits": 521.0, "Total Visitors": 377.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9107.0, "Total Transactions": 1124.0, "Total Customers": 562.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.98, "MEDIAN_SPEND_PER_CUSTOMER": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "LOCATION_NAME": "Mac Mart Food Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951439, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 223.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1544.0, "Total Transactions": 99.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.48, "MEDIAN_SPEND_PER_CUSTOMER": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgm-249", "LOCATION_NAME": "Alice Alexander", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.007621, "LONGITUDE": -75.190832, "DATE_RANGE_START": 2023, "Total Visits": 401.0, "Total Visitors": 383.0, "POI_CBG": 421010170001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 76.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.24, "MEDIAN_SPEND_PER_CUSTOMER": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.190832, 40.007621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-223@628-pm3-vpv", "LOCATION_NAME": "Asian Fusion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927745, "LONGITUDE": -75.16578, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 99.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 499.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.95, "MEDIAN_SPEND_PER_CUSTOMER": 29.29 }, "geometry": { "type": "Point", "coordinates": [ -75.16578, 39.927745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "LOCATION_NAME": "Giorgio On Pine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2023, "Total Visits": 153.0, "Total Visitors": 153.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 65.0, "Total Spend": 12334.0, "Total Transactions": 142.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.16, "MEDIAN_SPEND_PER_CUSTOMER": 80.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2023, "Total Visits": 278.0, "Total Visitors": 271.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 5492.0, "Total Transactions": 138.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.08, "MEDIAN_SPEND_PER_CUSTOMER": 33.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "LOCATION_NAME": "Gallo's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057623, "LONGITUDE": -75.044487, "DATE_RANGE_START": 2023, "Total Visits": 710.0, "Total Visitors": 402.0, "POI_CBG": 421010333001.0, "MEDIAN_DWELL": 129.0, "Total Spend": 5375.0, "Total Transactions": 81.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.76, "MEDIAN_SPEND_PER_CUSTOMER": 65.14 }, "geometry": { "type": "Point", "coordinates": [ -75.044487, 40.057623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "LOCATION_NAME": "Linden Italian Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05451, "LONGITUDE": -75.004313, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 234.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 709.0, "Total Transactions": 46.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.29, "MEDIAN_SPEND_PER_CUSTOMER": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004313, 40.05451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dw9-835", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.878274, "LONGITUDE": -75.238945, "DATE_RANGE_START": 2023, "Total Visits": 427.0, "Total Visitors": 347.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7564.0, "Total Transactions": 476.0, "Total Customers": 445.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.38, "MEDIAN_SPEND_PER_CUSTOMER": 15.28 }, "geometry": { "type": "Point", "coordinates": [ -75.238945, 39.878274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2023, "Total Visits": 716.0, "Total Visitors": 489.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4577.0, "Total Transactions": 587.0, "Total Customers": 276.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.28, "MEDIAN_SPEND_PER_CUSTOMER": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-228@628-pm8-rx5", "LOCATION_NAME": "The Perfect Scoop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91198, "LONGITUDE": -75.183207, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 98.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 25.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.85, "MEDIAN_SPEND_PER_CUSTOMER": 9.85 }, "geometry": { "type": "Point", "coordinates": [ -75.183207, 39.91198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnw-nnq", "LOCATION_NAME": "Kung Fu Necktie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.970274, "LONGITUDE": -75.135922, "DATE_RANGE_START": 2023, "Total Visits": 492.0, "Total Visitors": 447.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 30.0, "Total Spend": 209.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 73.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 39.970274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2023, "Total Visits": 485.0, "Total Visitors": 318.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 314.0, "Total Transactions": 21.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 9.41 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmd-vmk", "LOCATION_NAME": "Erawan Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951764, "LONGITUDE": -75.178105, "DATE_RANGE_START": 2023, "Total Visits": 272.0, "Total Visitors": 90.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 242.0, "Total Spend": 280.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.64, "MEDIAN_SPEND_PER_CUSTOMER": 39.64 }, "geometry": { "type": "Point", "coordinates": [ -75.178105, 39.951764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "LOCATION_NAME": "L'anima", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2023, "Total Visits": 820.0, "Total Visitors": 526.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 236.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 94.11, "MEDIAN_SPEND_PER_CUSTOMER": 94.11 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-vs5", "LOCATION_NAME": "New S & D Coffee Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930165, "LONGITUDE": -75.155106, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 215.0, "POI_CBG": 421010028013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 77.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 19.49 }, "geometry": { "type": "Point", "coordinates": [ -75.155106, 39.930165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-w49", "LOCATION_NAME": "Seafood Unlimited", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948416, "LONGITUDE": -75.174494, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 189.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 6.0, "Total Spend": 504.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.48, "MEDIAN_SPEND_PER_CUSTOMER": 98.76 }, "geometry": { "type": "Point", "coordinates": [ -75.174494, 39.948416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.102146, "LONGITUDE": -75.010909, "DATE_RANGE_START": 2023, "Total Visits": 1144.0, "Total Visitors": 942.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 387392.0, "Total Transactions": 9996.0, "Total Customers": 5643.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.99, "MEDIAN_SPEND_PER_CUSTOMER": 41.09 }, "geometry": { "type": "Point", "coordinates": [ -75.010909, 40.102146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-224@628-phq-rp9", "LOCATION_NAME": "Dollar Plus Outlet", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.066543, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2023, "Total Visits": 496.0, "Total Visitors": 425.0, "POI_CBG": 421010263023.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1355.0, "Total Transactions": 71.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.08, "MEDIAN_SPEND_PER_CUSTOMER": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 40.066543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "LOCATION_NAME": "Fishtown Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2023, "Total Visits": 65.0, "Total Visitors": 54.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 856.0, "Total Transactions": 39.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.47, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pj8-f2k", "LOCATION_NAME": "Yee Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029872, "LONGITUDE": -75.084693, "DATE_RANGE_START": 2023, "Total Visits": 114.0, "Total Visitors": 114.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 81.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084693, 40.029872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@63s-dvx-xh5", "LOCATION_NAME": "Joe's Food Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.949235, "LONGITUDE": -75.21368, "DATE_RANGE_START": 2023, "Total Visits": 405.0, "Total Visitors": 268.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 28.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21368, 39.949235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "LOCATION_NAME": "Beer Love", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2023, "Total Visits": 380.0, "Total Visitors": 324.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3015.0, "Total Transactions": 99.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.26, "MEDIAN_SPEND_PER_CUSTOMER": 24.19 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p82-92k", "LOCATION_NAME": "Pharmacy of America II", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034587, "LONGITUDE": -75.087194, "DATE_RANGE_START": 2023, "Total Visits": 914.0, "Total Visitors": 589.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 74.0, "Total Spend": 101.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.034587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "LOCATION_NAME": "T cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947994, "LONGITUDE": -75.142941, "DATE_RANGE_START": 2023, "Total Visits": 397.0, "Total Visitors": 356.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4098.0, "Total Transactions": 228.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.45, "MEDIAN_SPEND_PER_CUSTOMER": 13.53 }, "geometry": { "type": "Point", "coordinates": [ -75.142941, 39.947994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vfz", "LOCATION_NAME": "Four Worlds Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943416, "LONGITUDE": -75.210531, "DATE_RANGE_START": 2023, "Total Visits": 289.0, "Total Visitors": 125.0, "POI_CBG": 421010074001.0, "MEDIAN_DWELL": 140.0, "Total Spend": 765.0, "Total Transactions": 61.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.2, "MEDIAN_SPEND_PER_CUSTOMER": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.210531, 39.943416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "LOCATION_NAME": "Sumo Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 500.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.61, "MEDIAN_SPEND_PER_CUSTOMER": 15.61 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039487, "LONGITUDE": -75.109924, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 80.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9818.0, "Total Transactions": 341.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 32.11 }, "geometry": { "type": "Point", "coordinates": [ -75.109924, 40.039487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "LOCATION_NAME": "Castle Roxx", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 175.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2528.0, "Total Transactions": 115.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-p9k-2zf", "LOCATION_NAME": "Dollar Surplus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.103109, "LONGITUDE": -75.010252, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 485.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 243.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.54, "MEDIAN_SPEND_PER_CUSTOMER": 12.54 }, "geometry": { "type": "Point", "coordinates": [ -75.010252, 40.103109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgj-cqz", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977801, "LONGITUDE": -75.158494, "DATE_RANGE_START": 2023, "Total Visits": 2743.0, "Total Visitors": 1938.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 898.0, "Total Transactions": 49.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.9, "MEDIAN_SPEND_PER_CUSTOMER": 16.47 }, "geometry": { "type": "Point", "coordinates": [ -75.158494, 39.977801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "LOCATION_NAME": "Circle Thrift", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.980275, "LONGITUDE": -75.128604, "DATE_RANGE_START": 2023, "Total Visits": 405.0, "Total Visitors": 152.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 45.0, "Total Spend": 4109.0, "Total Transactions": 247.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.2, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128604, 39.980275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-w49", "LOCATION_NAME": "The Royal Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948373, "LONGITUDE": -75.174503, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 163.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 19.0, "Total Spend": 298.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.42, "MEDIAN_SPEND_PER_CUSTOMER": 25.42 }, "geometry": { "type": "Point", "coordinates": [ -75.174503, 39.948373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "LOCATION_NAME": "H&M (Hennes & Mauritz)", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08882, "LONGITUDE": -74.961808, "DATE_RANGE_START": 2023, "Total Visits": 981.0, "Total Visitors": 834.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 38.0, "Total Spend": 11272.0, "Total Transactions": 356.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.99, "MEDIAN_SPEND_PER_CUSTOMER": 38.07 }, "geometry": { "type": "Point", "coordinates": [ -74.961808, 40.08882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnw-nt9", "LOCATION_NAME": "Fishtown Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.970532, "LONGITUDE": -75.134266, "DATE_RANGE_START": 2023, "Total Visits": 272.0, "Total Visitors": 262.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 13008.0, "Total Transactions": 489.0, "Total Customers": 328.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.8, "MEDIAN_SPEND_PER_CUSTOMER": 28.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134266, 39.970532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phz-q4v", "LOCATION_NAME": "Jj's Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.005715, "LONGITUDE": -75.107525, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 204.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1456.0, "Total Transactions": 35.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.5, "MEDIAN_SPEND_PER_CUSTOMER": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107525, 40.005715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 129.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 28.0, "Total Spend": 3703.0, "Total Transactions": 143.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.71, "MEDIAN_SPEND_PER_CUSTOMER": 26.42 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-8y9", "LOCATION_NAME": "Accu Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953369, "LONGITUDE": -75.218457, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 195.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2867.0, "Total Transactions": 127.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.63, "MEDIAN_SPEND_PER_CUSTOMER": 26.24 }, "geometry": { "type": "Point", "coordinates": [ -75.218457, 39.953369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2023, "Total Visits": 1090.0, "Total Visitors": 665.0, "POI_CBG": 421010098011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 9997.0, "Total Transactions": 832.0, "Total Customers": 566.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.16, "MEDIAN_SPEND_PER_CUSTOMER": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-224@628-pm9-tjv", "LOCATION_NAME": "Destiny Jewelery and Perfume", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949441, "LONGITUDE": -75.154313, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 113.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154313, 39.949441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "LOCATION_NAME": "Alexa Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 38.0, "POI_CBG": 421010308003.0, "MEDIAN_DWELL": 370.0, "Total Spend": 1975.0, "Total Transactions": 38.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.5, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "LOCATION_NAME": "A Plus", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2023, "Total Visits": 609.0, "Total Visitors": 569.0, "POI_CBG": 421010298005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1175.0, "Total Transactions": 81.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.51, "MEDIAN_SPEND_PER_CUSTOMER": 13.62 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-fvf", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.0328, "LONGITUDE": -75.177311, "DATE_RANGE_START": 2023, "Total Visits": 322.0, "Total Visitors": 292.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1698.0, "Total Transactions": 63.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.16 }, "geometry": { "type": "Point", "coordinates": [ -75.177311, 40.0328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pgf-3bk", "LOCATION_NAME": "Promed Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.956577, "LONGITUDE": -75.193707, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 893.0, "Total Transactions": 19.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.43, "MEDIAN_SPEND_PER_CUSTOMER": 56.92 }, "geometry": { "type": "Point", "coordinates": [ -75.193707, 39.956577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.008832, "LONGITUDE": -75.176518, "DATE_RANGE_START": 2023, "Total Visits": 894.0, "Total Visitors": 556.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 23772.0, "Total Transactions": 685.0, "Total Customers": 596.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.78, "MEDIAN_SPEND_PER_CUSTOMER": 28.13 }, "geometry": { "type": "Point", "coordinates": [ -75.176518, 40.008832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-snq", "LOCATION_NAME": "Motel 6", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 40.103327, "LONGITUDE": -75.005156, "DATE_RANGE_START": 2023, "Total Visits": 288.0, "Total Visitors": 194.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 122.0, "Total Spend": 2925.0, "Total Transactions": 19.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 139.49, "MEDIAN_SPEND_PER_CUSTOMER": 136.58 }, "geometry": { "type": "Point", "coordinates": [ -75.005156, 40.103327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmf-jgk", "LOCATION_NAME": "Dizengoff", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950806, "LONGITUDE": -75.168522, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 6.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 242.0, "Total Spend": 258.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168522, 39.950806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-ht9", "LOCATION_NAME": "Sonesta Philadelphia Rittenhouse Square", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952877, "LONGITUDE": -75.170604, "DATE_RANGE_START": 2023, "Total Visits": 1015.0, "Total Visitors": 695.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 126.0, "Total Spend": 139.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170604, 39.952877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgh-vs5", "LOCATION_NAME": "Honey Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982937, "LONGITUDE": -75.15332, "DATE_RANGE_START": 2023, "Total Visits": 621.0, "Total Visitors": 297.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 145.0, "Total Spend": 18.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.29, "MEDIAN_SPEND_PER_CUSTOMER": 7.29 }, "geometry": { "type": "Point", "coordinates": [ -75.15332, 39.982937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "LOCATION_NAME": "Garden Court Eatery & Beer", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952634, "LONGITUDE": -75.216952, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 284.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1273.0, "Total Transactions": 81.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216952, 39.952634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm4-b6k", "LOCATION_NAME": "Two Eagles Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934031, "LONGITUDE": -75.177208, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2577.0, "Total Transactions": 106.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.22, "MEDIAN_SPEND_PER_CUSTOMER": 24.68 }, "geometry": { "type": "Point", "coordinates": [ -75.177208, 39.934031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "LOCATION_NAME": "Bubblefish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2023, "Total Visits": 4224.0, "Total Visitors": 2510.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 4223.0, "Total Transactions": 95.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.98, "MEDIAN_SPEND_PER_CUSTOMER": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgj-6hq", "LOCATION_NAME": "Diamond Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985195, "LONGITUDE": -75.161525, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 188.0, "POI_CBG": 421010153002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1294.0, "Total Transactions": 93.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.09, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161525, 39.985195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmb-xnq", "LOCATION_NAME": "Sakura Mandarin", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955481, "LONGITUDE": -75.157295, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1380.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.39, "MEDIAN_SPEND_PER_CUSTOMER": 59.64 }, "geometry": { "type": "Point", "coordinates": [ -75.157295, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2023, "Total Visits": 284.0, "Total Visitors": 253.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6817.0, "Total Transactions": 190.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.38, "MEDIAN_SPEND_PER_CUSTOMER": 38.81 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pjb-6c5", "LOCATION_NAME": "Broadview Kitchen & Bath", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.050005, "LONGITUDE": -75.142784, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 94.0, "POI_CBG": 421010277001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1153.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 460.08, "MEDIAN_SPEND_PER_CUSTOMER": 460.08 }, "geometry": { "type": "Point", "coordinates": [ -75.142784, 40.050005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-975", "LOCATION_NAME": "DK Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952998, "LONGITUDE": -75.192279, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 338.0, "Total Transactions": 15.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.65, "MEDIAN_SPEND_PER_CUSTOMER": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192279, 39.952998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-nqz", "LOCATION_NAME": "Thanal Indian Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955758, "LONGITUDE": -75.172555, "DATE_RANGE_START": 2023, "Total Visits": 276.0, "Total Visitors": 48.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 669.0, "Total Spend": 669.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.76, "MEDIAN_SPEND_PER_CUSTOMER": 71.76 }, "geometry": { "type": "Point", "coordinates": [ -75.172555, 39.955758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "LOCATION_NAME": "Crab Shack", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2023, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3801.0, "Total Transactions": 100.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.49, "MEDIAN_SPEND_PER_CUSTOMER": 38.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "LOCATION_NAME": "Pizzeria Cappelli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948424, "LONGITUDE": -75.162117, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 5.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11581.0, "Total Transactions": 477.0, "Total Customers": 395.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.86, "MEDIAN_SPEND_PER_CUSTOMER": 23.61 }, "geometry": { "type": "Point", "coordinates": [ -75.162117, 39.948424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 170.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 441.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-wkz", "LOCATION_NAME": "Sassafras Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948812, "LONGITUDE": -75.144182, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 184.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 301.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.84, "MEDIAN_SPEND_PER_CUSTOMER": 78.84 }, "geometry": { "type": "Point", "coordinates": [ -75.144182, 39.948812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 106.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 3261.0, "Total Transactions": 197.0, "Total Customers": 144.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.73, "MEDIAN_SPEND_PER_CUSTOMER": 16.61 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm8-rp9", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.918195, "LONGITUDE": -75.185015, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 21.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 85.0, "Total Spend": 2429.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.95, "MEDIAN_SPEND_PER_CUSTOMER": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185015, 39.918195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phd-h89", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002664, "LONGITUDE": -75.222755, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 144.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1445.0, "Total Transactions": 79.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.06, "MEDIAN_SPEND_PER_CUSTOMER": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.222755, 40.002664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "LOCATION_NAME": "Malelani Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05292, "LONGITUDE": -75.18611, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 109.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1467.0, "Total Transactions": 53.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.46, "MEDIAN_SPEND_PER_CUSTOMER": 24.01 }, "geometry": { "type": "Point", "coordinates": [ -75.18611, 40.05292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp2-8d9", "LOCATION_NAME": "Bee Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.984969, "LONGITUDE": -75.102796, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 410.0, "Total Spend": 56.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.5, "MEDIAN_SPEND_PER_CUSTOMER": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102796, 39.984969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p7x-6tv", "LOCATION_NAME": "Artifax", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.046392, "LONGITUDE": -75.058077, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": null, "Total Spend": 4116.0, "Total Transactions": 100.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.35, "MEDIAN_SPEND_PER_CUSTOMER": 36.54 }, "geometry": { "type": "Point", "coordinates": [ -75.058077, 40.046392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p75-3nq", "LOCATION_NAME": "Torresdale Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.048663, "LONGITUDE": -75.011484, "DATE_RANGE_START": 2023, "Total Visits": 200.0, "Total Visitors": 111.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 386.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.011484, 40.048663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-ty9", "LOCATION_NAME": "La Famiglia Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949369, "LONGITUDE": -75.142406, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 182.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 7738.0, "Total Transactions": 73.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.77, "MEDIAN_SPEND_PER_CUSTOMER": 102.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142406, 39.949369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-td9", "LOCATION_NAME": "NY Bagel & Deli Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96081, "LONGITUDE": -75.157392, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 101.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 2378.0, "Total Transactions": 128.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.02, "MEDIAN_SPEND_PER_CUSTOMER": 16.62 }, "geometry": { "type": "Point", "coordinates": [ -75.157392, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm6-gx5", "LOCATION_NAME": "King Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915882, "LONGITUDE": -75.152424, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 48.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.152424, 39.915882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.966684, "LONGITUDE": -75.232973, "DATE_RANGE_START": 2023, "Total Visits": 2742.0, "Total Visitors": 1328.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1954.0, "Total Transactions": 83.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.76, "MEDIAN_SPEND_PER_CUSTOMER": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.232973, 39.966684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "LOCATION_NAME": "CHAPMAN NISSAN", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.910462, "LONGITUDE": -75.223311, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 14084.0, "Total Transactions": 36.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 150.0, "MEDIAN_SPEND_PER_CUSTOMER": 198.78 }, "geometry": { "type": "Point", "coordinates": [ -75.223311, 39.910462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-wc5", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.086553, "LONGITUDE": -74.962297, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 483.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 26.0, "Total Spend": 63.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962297, 40.086553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "LOCATION_NAME": "Riverwards Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2023, "Total Visits": 284.0, "Total Visitors": 172.0, "POI_CBG": 421010158001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 16882.0, "Total Transactions": 602.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.95, "MEDIAN_SPEND_PER_CUSTOMER": 51.89 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 247.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 6.0, "Total Spend": 201.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.1, "MEDIAN_SPEND_PER_CUSTOMER": 26.1 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22v@628-pmb-8sq", "LOCATION_NAME": "American Eagle & Aerie Outlet Fashion District Phila", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951824, "LONGITUDE": -75.155936, "DATE_RANGE_START": 2023, "Total Visits": 458.0, "Total Visitors": 426.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 26068.0, "Total Transactions": 556.0, "Total Customers": 472.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.97, "MEDIAN_SPEND_PER_CUSTOMER": 39.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155936, 39.951824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.92355, "LONGITUDE": -75.13918, "DATE_RANGE_START": 2023, "Total Visits": 913.0, "Total Visitors": 729.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4064.0, "Total Transactions": 79.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.34, "MEDIAN_SPEND_PER_CUSTOMER": 43.64 }, "geometry": { "type": "Point", "coordinates": [ -75.13918, 39.92355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "LOCATION_NAME": "Suraya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2023, "Total Visits": 366.0, "Total Visitors": 366.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 6496.0, "Total Transactions": 46.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 117.55, "MEDIAN_SPEND_PER_CUSTOMER": 121.84 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045779, "LONGITUDE": -75.118702, "DATE_RANGE_START": 2023, "Total Visits": 4739.0, "Total Visitors": 2381.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 855.0, "Total Transactions": 74.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.81, "MEDIAN_SPEND_PER_CUSTOMER": 9.24 }, "geometry": { "type": "Point", "coordinates": [ -75.118702, 40.045779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmb-xyv", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955925, "LONGITUDE": -75.155901, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 189.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 294.0, "Total Transactions": 29.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.155901, 39.955925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvr-fzz", "LOCATION_NAME": "Lucky Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920023, "LONGITUDE": -75.233805, "DATE_RANGE_START": 2023, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 522.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.0, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233805, 39.920023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm8-ffz", "LOCATION_NAME": "Phil's Battery Service", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.924742, "LONGITUDE": -75.152309, "DATE_RANGE_START": 2023, "Total Visits": 420.0, "Total Visitors": 341.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 16.0, "Total Spend": 319.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.0, "MEDIAN_SPEND_PER_CUSTOMER": 127.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152309, 39.924742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2023, "Total Visits": 1781.0, "Total Visitors": 799.0, "POI_CBG": 421010183001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 19445.0, "Total Transactions": 1541.0, "Total Customers": 426.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.07, "MEDIAN_SPEND_PER_CUSTOMER": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22g@628-phd-q75", "LOCATION_NAME": "Monument Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.002596, "LONGITUDE": -75.214314, "DATE_RANGE_START": 2023, "Total Visits": 2146.0, "Total Visitors": 1136.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 22.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.59, "MEDIAN_SPEND_PER_CUSTOMER": 8.59 }, "geometry": { "type": "Point", "coordinates": [ -75.214314, 40.002596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "LOCATION_NAME": "Microtel Inn and Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2023, "Total Visits": 496.0, "Total Visitors": 307.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 154.0, "Total Spend": 5559.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 159.29, "MEDIAN_SPEND_PER_CUSTOMER": 172.63 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sbk", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.913274, "LONGITUDE": -75.154575, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2101.0, "Total Transactions": 46.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.62, "MEDIAN_SPEND_PER_CUSTOMER": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.154575, 39.913274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "LOCATION_NAME": "House of Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2023, "Total Visits": 778.0, "Total Visitors": 535.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 618.0, "Total Transactions": 16.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.32, "MEDIAN_SPEND_PER_CUSTOMER": 32.81 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-8jv", "LOCATION_NAME": "Newmans Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038927, "LONGITUDE": -75.177558, "DATE_RANGE_START": 2023, "Total Visits": 178.0, "Total Visitors": 178.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 420.0, "Total Transactions": 24.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.177558, 40.038927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "LOCATION_NAME": "Kaffa Crossing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956913, "LONGITUDE": -75.210358, "DATE_RANGE_START": 2023, "Total Visits": 529.0, "Total Visitors": 406.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 48.0, "Total Spend": 1060.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.02, "MEDIAN_SPEND_PER_CUSTOMER": 34.02 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 39.956913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-ph8-qmk", "LOCATION_NAME": "Main Line Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.979583, "LONGITUDE": -75.26816, "DATE_RANGE_START": 2023, "Total Visits": 178.0, "Total Visitors": 162.0, "POI_CBG": 421010098011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 165.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26816, 39.979583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2023, "Total Visits": 317.0, "Total Visitors": 253.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6124.0, "Total Transactions": 323.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.25, "MEDIAN_SPEND_PER_CUSTOMER": 19.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-mrk", "LOCATION_NAME": "Dollar Plus Discount", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.95912, "LONGITUDE": -75.224819, "DATE_RANGE_START": 2023, "Total Visits": 396.0, "Total Visitors": 328.0, "POI_CBG": 421010085001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 21.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224819, 39.95912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.008547, "LONGITUDE": -75.193814, "DATE_RANGE_START": 2023, "Total Visits": 89.0, "Total Visitors": 69.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3589.0, "Total Transactions": 94.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.91, "MEDIAN_SPEND_PER_CUSTOMER": 46.27 }, "geometry": { "type": "Point", "coordinates": [ -75.193814, 40.008547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-5mk", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961206, "LONGITUDE": -75.1437, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 412.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 565.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 225.45, "MEDIAN_SPEND_PER_CUSTOMER": 225.45 }, "geometry": { "type": "Point", "coordinates": [ -75.1437, 39.961206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-v2k", "LOCATION_NAME": "Lane Bryant", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.923469, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 916.0, "Total Transactions": 21.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.42, "MEDIAN_SPEND_PER_CUSTOMER": 43.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-pmb-8qf", "LOCATION_NAME": "Jefferson Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950512, "LONGITUDE": -75.156532, "DATE_RANGE_START": 2023, "Total Visits": 1754.0, "Total Visitors": 1192.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 83.0, "Total Spend": 28.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.22, "MEDIAN_SPEND_PER_CUSTOMER": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.156532, 39.950512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.04525, "LONGITUDE": -75.086615, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 460.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.76, "MEDIAN_SPEND_PER_CUSTOMER": 25.25 }, "geometry": { "type": "Point", "coordinates": [ -75.086615, 40.04525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953725, "LONGITUDE": -75.172706, "DATE_RANGE_START": 2023, "Total Visits": 1400.0, "Total Visitors": 869.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 15.0, "Total Spend": 11222.0, "Total Transactions": 758.0, "Total Customers": 529.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.172706, 39.953725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "LOCATION_NAME": "Arch Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953744, "LONGITUDE": -75.156057, "DATE_RANGE_START": 2023, "Total Visits": 4224.0, "Total Visitors": 2510.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 167.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.8, "MEDIAN_SPEND_PER_CUSTOMER": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156057, 39.953744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph6-pqf", "LOCATION_NAME": "Ace Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980407, "LONGITUDE": -75.233631, "DATE_RANGE_START": 2023, "Total Visits": 169.0, "Total Visitors": 158.0, "POI_CBG": 421010118003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 73.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.233631, 39.980407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029055, "LONGITUDE": -75.125258, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 6.0, "POI_CBG": 421010286001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 16280.0, "Total Transactions": 338.0, "Total Customers": 234.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.125258, 40.029055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-6ff", "LOCATION_NAME": "Barra Rossa Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948581, "LONGITUDE": -75.157229, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 46.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 252.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.52, "MEDIAN_SPEND_PER_CUSTOMER": 100.72 }, "geometry": { "type": "Point", "coordinates": [ -75.157229, 39.948581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-ndv", "LOCATION_NAME": "Kensington Quarters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97058, "LONGITUDE": -75.134713, "DATE_RANGE_START": 2023, "Total Visits": 219.0, "Total Visitors": 213.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9752.0, "Total Transactions": 60.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 163.29, "MEDIAN_SPEND_PER_CUSTOMER": 163.29 }, "geometry": { "type": "Point", "coordinates": [ -75.134713, 39.97058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "LOCATION_NAME": "Rustica", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964223, "LONGITUDE": -75.140493, "DATE_RANGE_START": 2023, "Total Visits": 646.0, "Total Visitors": 575.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 2452.0, "Total Transactions": 170.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.13, "MEDIAN_SPEND_PER_CUSTOMER": 12.63 }, "geometry": { "type": "Point", "coordinates": [ -75.140493, 39.964223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmf-dd9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939546, "LONGITUDE": -75.191189, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 34.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 21915.0, "Total Transactions": 1615.0, "Total Customers": 892.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 16.37 }, "geometry": { "type": "Point", "coordinates": [ -75.191189, 39.939546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "LOCATION_NAME": "Danny's Wok 3", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 273.0, "POI_CBG": 421010204002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 37.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wc5", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923237, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2023, "Total Visits": 378.0, "Total Visitors": 240.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 94124.0, "Total Transactions": 2315.0, "Total Customers": 1150.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.24, "MEDIAN_SPEND_PER_CUSTOMER": 34.95 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.923237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-jgk", "LOCATION_NAME": "The Happy Rooster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950357, "LONGITUDE": -75.167508, "DATE_RANGE_START": 2023, "Total Visits": 251.0, "Total Visitors": 197.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6942.0, "Total Transactions": 133.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.55, "MEDIAN_SPEND_PER_CUSTOMER": 44.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167508, 39.950357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-zmk", "LOCATION_NAME": "Colney Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036792, "LONGITUDE": -75.130653, "DATE_RANGE_START": 2023, "Total Visits": 787.0, "Total Visitors": 412.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1407.0, "Total Transactions": 80.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.9, "MEDIAN_SPEND_PER_CUSTOMER": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.130653, 40.036792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25d-222@628-pm3-vpv", "LOCATION_NAME": "Favors & Flavors", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.92705, "LONGITUDE": -75.166412, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 405.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 46.0, "Total Spend": 264.0, "Total Transactions": 28.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.7, "MEDIAN_SPEND_PER_CUSTOMER": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.166412, 39.92705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.042919, "LONGITUDE": -75.181039, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2689.0, "Total Transactions": 123.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.16, "MEDIAN_SPEND_PER_CUSTOMER": 30.19 }, "geometry": { "type": "Point", "coordinates": [ -75.181039, 40.042919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006866, "LONGITUDE": -75.123098, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2955.0, "Total Transactions": 286.0, "Total Customers": 189.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.45, "MEDIAN_SPEND_PER_CUSTOMER": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.123098, 40.006866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9k-t9z", "LOCATION_NAME": "Millevoi Brothers", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.108397, "LONGITUDE": -75.000602, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 150.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 2345.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 276.71, "MEDIAN_SPEND_PER_CUSTOMER": 276.71 }, "geometry": { "type": "Point", "coordinates": [ -75.000602, 40.108397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-p5f", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.97706, "LONGITUDE": -75.225666, "DATE_RANGE_START": 2023, "Total Visits": 608.0, "Total Visitors": 463.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 187.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.74, "MEDIAN_SPEND_PER_CUSTOMER": 22.46 }, "geometry": { "type": "Point", "coordinates": [ -75.225666, 39.97706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8n5", "LOCATION_NAME": "Kai Japanese Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950968, "LONGITUDE": -75.157061, "DATE_RANGE_START": 2023, "Total Visits": 298.0, "Total Visitors": 234.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1504.0, "Total Transactions": 34.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 33.13 }, "geometry": { "type": "Point", "coordinates": [ -75.157061, 39.950968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmf-hwk", "LOCATION_NAME": "Chima Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95482, "LONGITUDE": -75.172571, "DATE_RANGE_START": 2023, "Total Visits": 2283.0, "Total Visitors": 1732.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2044.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 117.01, "MEDIAN_SPEND_PER_CUSTOMER": 117.01 }, "geometry": { "type": "Point", "coordinates": [ -75.172571, 39.95482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.069651, "LONGITUDE": -75.051721, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 496.0, "Total Transactions": 48.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.4, "MEDIAN_SPEND_PER_CUSTOMER": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.051721, 40.069651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "LOCATION_NAME": "Ruth's Chris Steak House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952828, "LONGITUDE": -75.170297, "DATE_RANGE_START": 2023, "Total Visits": 1747.0, "Total Visitors": 953.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 321.0, "Total Spend": 13796.0, "Total Transactions": 98.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 134.24, "MEDIAN_SPEND_PER_CUSTOMER": 137.92 }, "geometry": { "type": "Point", "coordinates": [ -75.170297, 39.952828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "LOCATION_NAME": "Desi Village", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2023, "Total Visits": 108.0, "Total Visitors": 108.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 178.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.23, "MEDIAN_SPEND_PER_CUSTOMER": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "LOCATION_NAME": "China City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 106.0, "POI_CBG": 421010311011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1346.0, "Total Transactions": 59.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.59 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-t7q", "LOCATION_NAME": "Craftsman Row Saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949105, "LONGITUDE": -75.154365, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3548.0, "Total Transactions": 66.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.7, "MEDIAN_SPEND_PER_CUSTOMER": 44.39 }, "geometry": { "type": "Point", "coordinates": [ -75.154365, 39.949105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "LOCATION_NAME": "Trattoria Carina", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2023, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010008011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1380.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.92, "MEDIAN_SPEND_PER_CUSTOMER": 99.92 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p8t-w8v", "LOCATION_NAME": "Cinnabon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087404, "LONGITUDE": -74.961902, "DATE_RANGE_START": 2023, "Total Visits": 542.0, "Total Visitors": 514.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 57.0, "Total Spend": 2085.0, "Total Transactions": 193.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.16, "MEDIAN_SPEND_PER_CUSTOMER": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.087404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087567, "LONGITUDE": -74.965278, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 10792.0, "Total Transactions": 628.0, "Total Customers": 457.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.72, "MEDIAN_SPEND_PER_CUSTOMER": 18.11 }, "geometry": { "type": "Point", "coordinates": [ -74.965278, 40.087567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2023, "Total Visits": 579.0, "Total Visitors": 495.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4323.0, "Total Transactions": 447.0, "Total Customers": 219.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.17, "MEDIAN_SPEND_PER_CUSTOMER": 12.59 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954762, "LONGITUDE": -75.202298, "DATE_RANGE_START": 2023, "Total Visits": 436.0, "Total Visitors": 249.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 37.0, "Total Spend": 5995.0, "Total Transactions": 919.0, "Total Customers": 387.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.73, "MEDIAN_SPEND_PER_CUSTOMER": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.202298, 39.954762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "LOCATION_NAME": "Apricot Stone", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 124.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3806.0, "Total Transactions": 53.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.7, "MEDIAN_SPEND_PER_CUSTOMER": 77.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2023, "Total Visits": 500.0, "Total Visitors": 390.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 5121.0, "Total Transactions": 405.0, "Total Customers": 318.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.48, "MEDIAN_SPEND_PER_CUSTOMER": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2023, "Total Visits": 319.0, "Total Visitors": 223.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5267.0, "Total Transactions": 240.0, "Total Customers": 189.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.61, "MEDIAN_SPEND_PER_CUSTOMER": 21.04 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-2ff", "LOCATION_NAME": "Corner Bakery Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95695, "LONGITUDE": -75.19698, "DATE_RANGE_START": 2023, "Total Visits": 6605.0, "Total Visitors": 3966.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 61.0, "Total Spend": 3441.0, "Total Transactions": 259.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.03, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.19698, 39.95695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2023, "Total Visits": 555.0, "Total Visitors": 512.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6781.0, "Total Transactions": 767.0, "Total Customers": 412.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945484, "LONGITUDE": -75.178667, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 6.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3216.0, "Total Transactions": 336.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.24, "MEDIAN_SPEND_PER_CUSTOMER": 10.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178667, 39.945484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8j-bx5", "LOCATION_NAME": "Moe's Deli Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037856, "LONGITUDE": -75.038561, "DATE_RANGE_START": 2023, "Total Visits": 110.0, "Total Visitors": 110.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 291.0, "Total Transactions": 20.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038561, 40.037856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-yd9", "LOCATION_NAME": "Kungfu Hotpot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954413, "LONGITUDE": -75.156594, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4033.0, "Total Transactions": 40.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.78, "MEDIAN_SPEND_PER_CUSTOMER": 98.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156594, 39.954413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmb-gzf", "LOCATION_NAME": "Cloud Factory Hookah Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946774, "LONGITUDE": -75.161129, "DATE_RANGE_START": 2023, "Total Visits": 261.0, "Total Visitors": 244.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 282.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.92, "MEDIAN_SPEND_PER_CUSTOMER": 54.87 }, "geometry": { "type": "Point", "coordinates": [ -75.161129, 39.946774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-6p9", "LOCATION_NAME": "Dolce Italian Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951188, "LONGITUDE": -75.165178, "DATE_RANGE_START": 2023, "Total Visits": 1794.0, "Total Visitors": 1192.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 66.0, "Total Spend": 3417.0, "Total Transactions": 44.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.76, "MEDIAN_SPEND_PER_CUSTOMER": 65.76 }, "geometry": { "type": "Point", "coordinates": [ -75.165178, 39.951188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "LOCATION_NAME": "Overbrook Pizza Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1800.0, "Total Transactions": 81.0, "Total Customers": 60.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.66, "MEDIAN_SPEND_PER_CUSTOMER": 19.49 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "LOCATION_NAME": "Guzman Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 83.0, "POI_CBG": 421010177023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 645.0, "Total Transactions": 50.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-w49", "LOCATION_NAME": "Sweet Lucy's Smokehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028508, "LONGITUDE": -75.027023, "DATE_RANGE_START": 2023, "Total Visits": 451.0, "Total Visitors": 443.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2652.0, "Total Transactions": 16.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.83, "MEDIAN_SPEND_PER_CUSTOMER": 60.69 }, "geometry": { "type": "Point", "coordinates": [ -75.027023, 40.028508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "LOCATION_NAME": "Oyster House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2023, "Total Visits": 334.0, "Total Visitors": 286.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 35.0, "Total Spend": 25222.0, "Total Transactions": 209.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.92, "MEDIAN_SPEND_PER_CUSTOMER": 106.44 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "LOCATION_NAME": "Tio Flores", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943911, "LONGITUDE": -75.168936, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1002.0, "Total Transactions": 15.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.6, "MEDIAN_SPEND_PER_CUSTOMER": 68.35 }, "geometry": { "type": "Point", "coordinates": [ -75.168936, 39.943911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "LOCATION_NAME": "Tony Luke's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.906965, "LONGITUDE": -75.166723, "DATE_RANGE_START": 2023, "Total Visits": 1886.0, "Total Visitors": 1716.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 291.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.17, "MEDIAN_SPEND_PER_CUSTOMER": 21.17 }, "geometry": { "type": "Point", "coordinates": [ -75.166723, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pfx-s89", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.038452, "LONGITUDE": -75.239365, "DATE_RANGE_START": 2023, "Total Visits": 263.0, "Total Visitors": 263.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 291.0, "Total Spend": 13856.0, "Total Transactions": 560.0, "Total Customers": 297.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.25, "MEDIAN_SPEND_PER_CUSTOMER": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239365, 40.038452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "LOCATION_NAME": "Neighborhood Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2023, "Total Visits": 339.0, "Total Visitors": 251.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 73.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.01, "MEDIAN_SPEND_PER_CUSTOMER": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-9cq", "LOCATION_NAME": "White Dog Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953546, "LONGITUDE": -75.192949, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 7698.0, "Total Transactions": 76.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.15, "MEDIAN_SPEND_PER_CUSTOMER": 72.15 }, "geometry": { "type": "Point", "coordinates": [ -75.192949, 39.953546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-phn-qj9", "LOCATION_NAME": "Uptown Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.067574, "LONGITUDE": -75.179009, "DATE_RANGE_START": 2023, "Total Visits": 91.0, "Total Visitors": 54.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 166.0, "Total Spend": 660.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179009, 40.067574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "LOCATION_NAME": "Tacodelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 159.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 347.0, "Total Transactions": 26.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "LOCATION_NAME": "Giovani's Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951522, "LONGITUDE": -75.166747, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 312.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 21.0, "Total Spend": 11975.0, "Total Transactions": 539.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166747, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-225@628-pmf-kcq", "LOCATION_NAME": "Bluestone Lane", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95042, "LONGITUDE": -75.174061, "DATE_RANGE_START": 2023, "Total Visits": 495.0, "Total Visitors": 357.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 5.0, "Total Spend": 76.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.77, "MEDIAN_SPEND_PER_CUSTOMER": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.174061, 39.95042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-94v", "LOCATION_NAME": "La tapenade", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.87309, "LONGITUDE": -75.252083, "DATE_RANGE_START": 2023, "Total Visits": 9591.0, "Total Visitors": 7569.0, "POI_CBG": 420459800001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1280.0, "Total Transactions": 58.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.52, "MEDIAN_SPEND_PER_CUSTOMER": 18.75 }, "geometry": { "type": "Point", "coordinates": [ -75.252083, 39.87309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2023, "Total Visits": 344.0, "Total Visitors": 202.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3076.0, "Total Transactions": 542.0, "Total Customers": 198.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.62, "MEDIAN_SPEND_PER_CUSTOMER": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-rzf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.996137, "LONGITUDE": -75.092818, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1680.0, "Total Transactions": 228.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 7.01 }, "geometry": { "type": "Point", "coordinates": [ -75.092818, 39.996137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029204, "LONGITUDE": -75.118815, "DATE_RANGE_START": 2023, "Total Visits": 509.0, "Total Visitors": 326.0, "POI_CBG": 421010290004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1197.0, "Total Transactions": 43.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.77, "MEDIAN_SPEND_PER_CUSTOMER": 20.01 }, "geometry": { "type": "Point", "coordinates": [ -75.118815, 40.029204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2023, "Total Visits": 777.0, "Total Visitors": 514.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2776.0, "Total Transactions": 44.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.55, "MEDIAN_SPEND_PER_CUSTOMER": 52.86 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgf-3bk", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.955764, "LONGITUDE": -75.194013, "DATE_RANGE_START": 2023, "Total Visits": 2543.0, "Total Visitors": 1613.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 342.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.05, "MEDIAN_SPEND_PER_CUSTOMER": 55.47 }, "geometry": { "type": "Point", "coordinates": [ -75.194013, 39.955764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph5-v4v", "LOCATION_NAME": "United Auto Repair", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.984323, "LONGITUDE": -75.245013, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 159.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 10.0, "Total Spend": 176.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.15, "MEDIAN_SPEND_PER_CUSTOMER": 70.15 }, "geometry": { "type": "Point", "coordinates": [ -75.245013, 39.984323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23h@628-pmf-sqz", "LOCATION_NAME": "LUSH", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949934, "LONGITUDE": -75.167007, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 454.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.69, "MEDIAN_SPEND_PER_CUSTOMER": 29.69 }, "geometry": { "type": "Point", "coordinates": [ -75.167007, 39.949934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "LOCATION_NAME": "Barcade", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967458, "LONGITUDE": -75.134606, "DATE_RANGE_START": 2023, "Total Visits": 556.0, "Total Visitors": 422.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 54.0, "Total Spend": 13089.0, "Total Transactions": 499.0, "Total Customers": 402.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 27.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134606, 39.967458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033486, "LONGITUDE": -75.130876, "DATE_RANGE_START": 2023, "Total Visits": 405.0, "Total Visitors": 252.0, "POI_CBG": 421010274013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5447.0, "Total Transactions": 718.0, "Total Customers": 307.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.26, "MEDIAN_SPEND_PER_CUSTOMER": 11.14 }, "geometry": { "type": "Point", "coordinates": [ -75.130876, 40.033486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.93143, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2023, "Total Visits": 971.0, "Total Visitors": 618.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 11.0, "Total Spend": 17365.0, "Total Transactions": 981.0, "Total Customers": 567.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.4, "MEDIAN_SPEND_PER_CUSTOMER": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.93143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "LOCATION_NAME": "Jomici Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2023, "Total Visits": 289.0, "Total Visitors": 199.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 1.0, "Total Spend": 108.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.79, "MEDIAN_SPEND_PER_CUSTOMER": 43.21 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "LOCATION_NAME": "Madrag", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.917769, "LONGITUDE": -75.18518, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 11125.0, "Total Transactions": 279.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.23, "MEDIAN_SPEND_PER_CUSTOMER": 33.22 }, "geometry": { "type": "Point", "coordinates": [ -75.18518, 39.917769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-6p9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046037, "LONGITUDE": -75.142328, "DATE_RANGE_START": 2023, "Total Visits": 55.0, "Total Visitors": 34.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 10061.0, "Total Transactions": 532.0, "Total Customers": 309.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.13, "MEDIAN_SPEND_PER_CUSTOMER": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.142328, 40.046037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.002303, "LONGITUDE": -75.079252, "DATE_RANGE_START": 2023, "Total Visits": 349.0, "Total Visitors": 313.0, "POI_CBG": 421010183003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 11923.0, "Total Transactions": 18.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 481.31, "MEDIAN_SPEND_PER_CUSTOMER": 873.25 }, "geometry": { "type": "Point", "coordinates": [ -75.079252, 40.002303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25g-222@63s-dw2-9zz", "LOCATION_NAME": "Market Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962365, "LONGITUDE": -75.242054, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 71.0, "POI_CBG": 421010096002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 26.0, "Total Transactions": 10.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.6, "MEDIAN_SPEND_PER_CUSTOMER": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.242054, 39.962365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7v-f2k", "LOCATION_NAME": "Bob's Discount Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.051401, "LONGITUDE": -75.065206, "DATE_RANGE_START": 2023, "Total Visits": 1686.0, "Total Visitors": 1357.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 2834.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 226.79, "MEDIAN_SPEND_PER_CUSTOMER": 226.79 }, "geometry": { "type": "Point", "coordinates": [ -75.065206, 40.051401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-zxq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.002859, "LONGITUDE": -75.152972, "DATE_RANGE_START": 2023, "Total Visits": 2027.0, "Total Visitors": 1136.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 47.0, "Total Spend": 5306.0, "Total Transactions": 333.0, "Total Customers": 209.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.18, "MEDIAN_SPEND_PER_CUSTOMER": 14.14 }, "geometry": { "type": "Point", "coordinates": [ -75.152972, 40.002859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@63s-dvy-kfz", "LOCATION_NAME": "University Gyro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95092, "LONGITUDE": -75.198948, "DATE_RANGE_START": 2023, "Total Visits": 1095.0, "Total Visitors": 485.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 593.0, "Total Transactions": 69.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.99, "MEDIAN_SPEND_PER_CUSTOMER": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.198948, 39.95092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "LOCATION_NAME": "Talula's Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2023, "Total Visits": 501.0, "Total Visitors": 311.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 108.0, "Total Spend": 42965.0, "Total Transactions": 839.0, "Total Customers": 540.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "LOCATION_NAME": "Lucky 13 Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927169, "LONGITUDE": -75.167129, "DATE_RANGE_START": 2023, "Total Visits": 105.0, "Total Visitors": 88.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 150.0, "Total Spend": 3479.0, "Total Transactions": 95.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.88, "MEDIAN_SPEND_PER_CUSTOMER": 37.44 }, "geometry": { "type": "Point", "coordinates": [ -75.167129, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2023, "Total Visits": 422.0, "Total Visitors": 403.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 29.0, "Total Spend": 2758.0, "Total Transactions": 54.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.19, "MEDIAN_SPEND_PER_CUSTOMER": 39.41 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj2-sh5", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.012155, "LONGITUDE": -75.114952, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 159.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 3244.0, "Total Transactions": 80.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.48, "MEDIAN_SPEND_PER_CUSTOMER": 36.97 }, "geometry": { "type": "Point", "coordinates": [ -75.114952, 40.012155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-q2k", "LOCATION_NAME": "On & Sons Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035163, "LONGITUDE": -75.121651, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 165.0, "POI_CBG": 421010273002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 190.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.66, "MEDIAN_SPEND_PER_CUSTOMER": 57.74 }, "geometry": { "type": "Point", "coordinates": [ -75.121651, 40.035163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "LOCATION_NAME": "Four Seasons Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 183.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1365.0, "Total Transactions": 60.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.29, "MEDIAN_SPEND_PER_CUSTOMER": 24.43 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-pgk", "LOCATION_NAME": "Best Sunny Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992784, "LONGITUDE": -75.148123, "DATE_RANGE_START": 2023, "Total Visits": 96.0, "Total Visitors": 96.0, "POI_CBG": 421010165003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 82.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.8, "MEDIAN_SPEND_PER_CUSTOMER": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148123, 39.992784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pj9-4d9", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04031, "LONGITUDE": -75.143956, "DATE_RANGE_START": 2023, "Total Visits": 645.0, "Total Visitors": 382.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 231.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.82, "MEDIAN_SPEND_PER_CUSTOMER": 20.91 }, "geometry": { "type": "Point", "coordinates": [ -75.143956, 40.04031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 215.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 9.0, "Total Spend": 732.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-hbk", "LOCATION_NAME": "Jyoti Indian Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060418, "LONGITUDE": -75.191506, "DATE_RANGE_START": 2023, "Total Visits": 125.0, "Total Visitors": 115.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 125.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.59, "MEDIAN_SPEND_PER_CUSTOMER": 31.59 }, "geometry": { "type": "Point", "coordinates": [ -75.191506, 40.060418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040894, "LONGITUDE": -75.075357, "DATE_RANGE_START": 2023, "Total Visits": 937.0, "Total Visitors": 504.0, "POI_CBG": 421010313004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6625.0, "Total Transactions": 302.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.92, "MEDIAN_SPEND_PER_CUSTOMER": 19.03 }, "geometry": { "type": "Point", "coordinates": [ -75.075357, 40.040894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj8-mp9", "LOCATION_NAME": "Crown Chicken & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021661, "LONGITUDE": -75.079451, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2214.0, "Total Transactions": 162.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 13.19 }, "geometry": { "type": "Point", "coordinates": [ -75.079451, 40.021661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "LOCATION_NAME": "Wyndham", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952205, "LONGITUDE": -75.147298, "DATE_RANGE_START": 2023, "Total Visits": 2386.0, "Total Visitors": 1476.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 118.0, "Total Spend": 25344.0, "Total Transactions": 115.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.64, "MEDIAN_SPEND_PER_CUSTOMER": 128.63 }, "geometry": { "type": "Point", "coordinates": [ -75.147298, 39.952205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-225@628-pmf-jgk", "LOCATION_NAME": "Rec & Royal", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.951042, "LONGITUDE": -75.168615, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 500.0, "Total Transactions": 23.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 55.98 }, "geometry": { "type": "Point", "coordinates": [ -75.168615, 39.951042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg9-vs5", "LOCATION_NAME": "The Fairview", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965379, "LONGITUDE": -75.172387, "DATE_RANGE_START": 2023, "Total Visits": 626.0, "Total Visitors": 319.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 58.0, "Total Spend": 912.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.52, "MEDIAN_SPEND_PER_CUSTOMER": 52.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172387, 39.965379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-m8v", "LOCATION_NAME": "Sugarcube", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.9529, "LONGITUDE": -75.145191, "DATE_RANGE_START": 2023, "Total Visits": 504.0, "Total Visitors": 321.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 97.0, "Total Spend": 246.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.0, "MEDIAN_SPEND_PER_CUSTOMER": 98.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145191, 39.9529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-jjv", "LOCATION_NAME": "Just Salad", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951891, "LONGITUDE": -75.169803, "DATE_RANGE_START": 2023, "Total Visits": 327.0, "Total Visitors": 317.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5242.0, "Total Transactions": 323.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.63, "MEDIAN_SPEND_PER_CUSTOMER": 16.91 }, "geometry": { "type": "Point", "coordinates": [ -75.169803, 39.951891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923603, "LONGITUDE": -75.245299, "DATE_RANGE_START": 2023, "Total Visits": 554.0, "Total Visitors": 440.0, "POI_CBG": 421010064003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1966.0, "Total Transactions": 267.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.245299, 39.923603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pm6-jsq", "LOCATION_NAME": "Taste of Punjab", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922877, "LONGITUDE": -75.15251, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010042014.0, "MEDIAN_DWELL": 2.0, "Total Spend": 997.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.52, "MEDIAN_SPEND_PER_CUSTOMER": 35.52 }, "geometry": { "type": "Point", "coordinates": [ -75.15251, 39.922877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "LOCATION_NAME": "King Wok Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2023, "Total Visits": 162.0, "Total Visitors": 154.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 514.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.7, "MEDIAN_SPEND_PER_CUSTOMER": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "LOCATION_NAME": "TGI Fridays", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2023, "Total Visits": 739.0, "Total Visitors": 602.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 48.0, "Total Spend": 18943.0, "Total Transactions": 308.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.12, "MEDIAN_SPEND_PER_CUSTOMER": 57.75 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "LOCATION_NAME": "Buffalo Wild Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.082789, "LONGITUDE": -75.025889, "DATE_RANGE_START": 2023, "Total Visits": 992.0, "Total Visitors": 753.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 7967.0, "Total Transactions": 145.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.41, "MEDIAN_SPEND_PER_CUSTOMER": 51.42 }, "geometry": { "type": "Point", "coordinates": [ -75.025889, 40.082789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg2-hdv", "LOCATION_NAME": "Golden Crust Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059871, "LONGITUDE": -75.190661, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 74.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3738.0, "Total Transactions": 147.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.41, "MEDIAN_SPEND_PER_CUSTOMER": 23.88 }, "geometry": { "type": "Point", "coordinates": [ -75.190661, 40.059871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2023, "Total Visits": 911.0, "Total Visitors": 785.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 28621.0, "Total Transactions": 520.0, "Total Customers": 477.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.56, "MEDIAN_SPEND_PER_CUSTOMER": 46.44 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-td9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902273, "LONGITUDE": -75.241987, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1200.0, "Total Transactions": 65.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.26, "MEDIAN_SPEND_PER_CUSTOMER": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.241987, 39.902273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-d35", "LOCATION_NAME": "Dipinto Guitars", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.970499, "LONGITUDE": -75.13019, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 193.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": null, "Total Spend": 687.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.54, "MEDIAN_SPEND_PER_CUSTOMER": 32.54 }, "geometry": { "type": "Point", "coordinates": [ -75.13019, 39.970499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-zpv", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.979361, "LONGITUDE": -75.222567, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 200.0, "Total Spend": 2738.0, "Total Transactions": 40.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.9, "MEDIAN_SPEND_PER_CUSTOMER": 44.78 }, "geometry": { "type": "Point", "coordinates": [ -75.222567, 39.979361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "LOCATION_NAME": "Quails", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2023, "Total Visits": 314.0, "Total Visitors": 288.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 44.0, "Total Spend": 3010.0, "Total Transactions": 19.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.0, "MEDIAN_SPEND_PER_CUSTOMER": 85.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938273, "LONGITUDE": -75.166962, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4824.0, "Total Transactions": 551.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.1, "MEDIAN_SPEND_PER_CUSTOMER": 9.82 }, "geometry": { "type": "Point", "coordinates": [ -75.166962, 39.938273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pgb-nh5", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.969208, "LONGITUDE": -75.159358, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 155.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1154.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 117.7, "MEDIAN_SPEND_PER_CUSTOMER": 117.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159358, 39.969208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kj9", "LOCATION_NAME": "Fleur De Lis Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950921, "LONGITUDE": -75.176153, "DATE_RANGE_START": 2023, "Total Visits": 3259.0, "Total Visitors": 1964.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 370.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.0, "MEDIAN_SPEND_PER_CUSTOMER": 49.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176153, 39.950921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "LOCATION_NAME": "Dairy Queen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087367, "LONGITUDE": -75.039942, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2115.0, "Total Transactions": 159.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 12.27 }, "geometry": { "type": "Point", "coordinates": [ -75.039942, 40.087367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "LOCATION_NAME": "Triple Joy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 177.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1931.0, "Total Transactions": 120.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.67, "MEDIAN_SPEND_PER_CUSTOMER": 35.37 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm3-wrk", "LOCATION_NAME": "El Paisano Supermarket 1", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.932161, "LONGITUDE": -75.160824, "DATE_RANGE_START": 2023, "Total Visits": 485.0, "Total Visitors": 393.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 992.0, "Total Transactions": 55.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.42, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.160824, 39.932161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-v75", "LOCATION_NAME": "Margherita Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948535, "LONGITUDE": -75.144159, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 174.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2310.0, "Total Transactions": 179.0, "Total Customers": 144.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.47, "MEDIAN_SPEND_PER_CUSTOMER": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.036501, "LONGITUDE": -75.108093, "DATE_RANGE_START": 2023, "Total Visits": 287.0, "Total Visitors": 203.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 5990.0, "Total Transactions": 135.0, "Total Customers": 114.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.31, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.108093, 40.036501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079219, "LONGITUDE": -75.026617, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 5507.0, "Total Transactions": 227.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.55, "MEDIAN_SPEND_PER_CUSTOMER": 22.34 }, "geometry": { "type": "Point", "coordinates": [ -75.026617, 40.079219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-v4v", "LOCATION_NAME": "Food Point Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.928702, "LONGITUDE": -75.168281, "DATE_RANGE_START": 2023, "Total Visits": 339.0, "Total Visitors": 238.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 328.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.4, "MEDIAN_SPEND_PER_CUSTOMER": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.168281, 39.928702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-ks5", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951831, "LONGITUDE": -75.144233, "DATE_RANGE_START": 2023, "Total Visits": 830.0, "Total Visitors": 316.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 256.0, "Total Spend": 66.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.48, "MEDIAN_SPEND_PER_CUSTOMER": 26.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 39.951831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgh-xh5", "LOCATION_NAME": "Cure Discount Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.988199, "LONGITUDE": -75.156168, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 45.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 31.0, "Total Spend": 58.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.31, "MEDIAN_SPEND_PER_CUSTOMER": 23.31 }, "geometry": { "type": "Point", "coordinates": [ -75.156168, 39.988199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2023, "Total Visits": 703.0, "Total Visitors": 604.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7057.0, "Total Transactions": 313.0, "Total Customers": 214.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.55 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2023, "Total Visits": 1005.0, "Total Visitors": 726.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 12.0, "Total Spend": 554.0, "Total Transactions": 34.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.45, "MEDIAN_SPEND_PER_CUSTOMER": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph8-q75", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978744, "LONGITUDE": -75.268394, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 244.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 614.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.79, "MEDIAN_SPEND_PER_CUSTOMER": 19.79 }, "geometry": { "type": "Point", "coordinates": [ -75.268394, 39.978744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-2p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.956864, "LONGITUDE": -75.214028, "DATE_RANGE_START": 2023, "Total Visits": 458.0, "Total Visitors": 358.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1390.0, "Total Transactions": 50.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.15, "MEDIAN_SPEND_PER_CUSTOMER": 31.06 }, "geometry": { "type": "Point", "coordinates": [ -75.214028, 39.956864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj8-2ff", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030244, "LONGITUDE": -75.104955, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 45.0, "Total Spend": 65.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.95, "MEDIAN_SPEND_PER_CUSTOMER": 13.95 }, "geometry": { "type": "Point", "coordinates": [ -75.104955, 40.030244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061829, "LONGITUDE": -75.084028, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2529.0, "Total Transactions": 346.0, "Total Customers": 170.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.92, "MEDIAN_SPEND_PER_CUSTOMER": 9.23 }, "geometry": { "type": "Point", "coordinates": [ -75.084028, 40.061829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phm-8sq", "LOCATION_NAME": "Oak Lane Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.055908, "LONGITUDE": -75.140617, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010268003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 207.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.27, "MEDIAN_SPEND_PER_CUSTOMER": 53.27 }, "geometry": { "type": "Point", "coordinates": [ -75.140617, 40.055908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.909192, "LONGITUDE": -75.174029, "DATE_RANGE_START": 2023, "Total Visits": 1734.0, "Total Visitors": 1539.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4514.0, "Total Transactions": 229.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.1, "MEDIAN_SPEND_PER_CUSTOMER": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174029, 39.909192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2023, "Total Visits": 1117.0, "Total Visitors": 934.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1448.0, "Total Transactions": 64.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.39, "MEDIAN_SPEND_PER_CUSTOMER": 18.39 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-yn5", "LOCATION_NAME": "Encore", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973824, "LONGITUDE": -75.204593, "DATE_RANGE_START": 2023, "Total Visits": 89.0, "Total Visitors": 89.0, "POI_CBG": 421010110003.0, "MEDIAN_DWELL": 93.0, "Total Spend": 327.0, "Total Transactions": 9.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204593, 39.973824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-3bk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.916145, "LONGITUDE": -75.173459, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 154.0, "POI_CBG": 421010039022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11083.0, "Total Transactions": 443.0, "Total Customers": 276.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.76, "MEDIAN_SPEND_PER_CUSTOMER": 20.08 }, "geometry": { "type": "Point", "coordinates": [ -75.173459, 39.916145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "LOCATION_NAME": "The Capital Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950687, "LONGITUDE": -75.163728, "DATE_RANGE_START": 2023, "Total Visits": 1572.0, "Total Visitors": 1091.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 17962.0, "Total Transactions": 101.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 160.68, "MEDIAN_SPEND_PER_CUSTOMER": 204.32 }, "geometry": { "type": "Point", "coordinates": [ -75.163728, 39.950687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026568, "LONGITUDE": -75.209601, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 152.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 44.0, "Total Spend": 1095.0, "Total Transactions": 31.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 37.03 }, "geometry": { "type": "Point", "coordinates": [ -75.209601, 40.026568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "LOCATION_NAME": "Carter's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.07594, "LONGITUDE": -75.031523, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 15.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2338.0, "Total Transactions": 51.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.99, "MEDIAN_SPEND_PER_CUSTOMER": 38.72 }, "geometry": { "type": "Point", "coordinates": [ -75.031523, 40.07594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "LOCATION_NAME": "Sahara Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2023, "Total Visits": 5620.0, "Total Visitors": 3899.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1342.0, "Total Transactions": 28.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.14, "MEDIAN_SPEND_PER_CUSTOMER": 59.04 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-94v", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.95224, "LONGITUDE": -75.15683, "DATE_RANGE_START": 2023, "Total Visits": 14076.0, "Total Visitors": 8436.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 216.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.99, "MEDIAN_SPEND_PER_CUSTOMER": 52.18 }, "geometry": { "type": "Point", "coordinates": [ -75.15683, 39.95224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pp5-jgk", "LOCATION_NAME": "Tin Can Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.981701, "LONGITUDE": -75.113705, "DATE_RANGE_START": 2023, "Total Visits": 481.0, "Total Visitors": 272.0, "POI_CBG": 421010180013.0, "MEDIAN_DWELL": 26.0, "Total Spend": 5087.0, "Total Transactions": 125.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.4, "MEDIAN_SPEND_PER_CUSTOMER": 40.1 }, "geometry": { "type": "Point", "coordinates": [ -75.113705, 39.981701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2023, "Total Visits": 362.0, "Total Visitors": 291.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6962.0, "Total Transactions": 743.0, "Total Customers": 344.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2023, "Total Visits": 946.0, "Total Visitors": 847.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 12210.0, "Total Transactions": 576.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.83, "MEDIAN_SPEND_PER_CUSTOMER": 18.46 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "LOCATION_NAME": "Monk's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2023, "Total Visits": 288.0, "Total Visitors": 254.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 80.0, "Total Spend": 17196.0, "Total Transactions": 272.0, "Total Customers": 234.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.11, "MEDIAN_SPEND_PER_CUSTOMER": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmf-rx5", "LOCATION_NAME": "Viet Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944017, "LONGITUDE": -75.170118, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 504.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 662.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.52, "MEDIAN_SPEND_PER_CUSTOMER": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.170118, 39.944017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmf-qfz", "LOCATION_NAME": "Entree Byob", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943935, "LONGITUDE": -75.169156, "DATE_RANGE_START": 2023, "Total Visits": 60.0, "Total Visitors": 60.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": null, "Total Spend": 1280.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 146.52, "MEDIAN_SPEND_PER_CUSTOMER": 146.52 }, "geometry": { "type": "Point", "coordinates": [ -75.169156, 39.943935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "LOCATION_NAME": "Lebel Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 162.0, "POI_CBG": 421010112003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1658.0, "Total Transactions": 79.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.9, "MEDIAN_SPEND_PER_CUSTOMER": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "LOCATION_NAME": "Moonlight Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 256.0, "POI_CBG": 421010265004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3115.0, "Total Transactions": 76.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.56 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "LOCATION_NAME": "Asian Chopsticks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 195.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1558.0, "Total Transactions": 100.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 23.49 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pj5-j9z", "LOCATION_NAME": "Pizza Power", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998737, "LONGITUDE": -75.128356, "DATE_RANGE_START": 2023, "Total Visits": 105.0, "Total Visitors": 105.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 973.0, "Total Transactions": 60.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.7, "MEDIAN_SPEND_PER_CUSTOMER": 45.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128356, 39.998737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pgj-zcq", "LOCATION_NAME": "Vito's Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.996183, "LONGITUDE": -75.153714, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 154.0, "POI_CBG": 421010174002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 248.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.15, "MEDIAN_SPEND_PER_CUSTOMER": 54.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153714, 39.996183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025465, "LONGITUDE": -75.149639, "DATE_RANGE_START": 2023, "Total Visits": 283.0, "Total Visitors": 111.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 76.0, "Total Spend": 241.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149639, 40.025465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983076, "LONGITUDE": -75.241701, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4481.0, "Total Transactions": 187.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.09, "MEDIAN_SPEND_PER_CUSTOMER": 28.03 }, "geometry": { "type": "Point", "coordinates": [ -75.241701, 39.983076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.917828, "LONGITUDE": -75.186813, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 3275.0, "Total Transactions": 60.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.5, "MEDIAN_SPEND_PER_CUSTOMER": 48.59 }, "geometry": { "type": "Point", "coordinates": [ -75.186813, 39.917828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-mp9", "LOCATION_NAME": "Concourse Dance Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953195, "LONGITUDE": -75.167899, "DATE_RANGE_START": 2023, "Total Visits": 815.0, "Total Visitors": 556.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 64.0, "Total Spend": 30725.0, "Total Transactions": 1301.0, "Total Customers": 611.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.56, "MEDIAN_SPEND_PER_CUSTOMER": 34.29 }, "geometry": { "type": "Point", "coordinates": [ -75.167899, 39.953195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfx-ks5", "LOCATION_NAME": "Greg's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026455, "LONGITUDE": -75.226382, "DATE_RANGE_START": 2023, "Total Visits": 597.0, "Total Visitors": 436.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2170.0, "Total Transactions": 105.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.2, "MEDIAN_SPEND_PER_CUSTOMER": 21.25 }, "geometry": { "type": "Point", "coordinates": [ -75.226382, 40.026455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-6c5", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052141, "LONGITUDE": -75.010272, "DATE_RANGE_START": 2023, "Total Visits": 799.0, "Total Visitors": 501.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3228.0, "Total Transactions": 192.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.52, "MEDIAN_SPEND_PER_CUSTOMER": 19.94 }, "geometry": { "type": "Point", "coordinates": [ -75.010272, 40.052141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfy-zj9", "LOCATION_NAME": "Mike's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022539, "LONGITUDE": -75.218415, "DATE_RANGE_START": 2023, "Total Visits": 725.0, "Total Visitors": 564.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2103.0, "Total Transactions": 163.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218415, 40.022539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "LOCATION_NAME": "Crown Chicken and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 180.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2790.0, "Total Transactions": 222.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.62, "MEDIAN_SPEND_PER_CUSTOMER": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044965, "LONGITUDE": -75.087836, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 8391.0, "Total Transactions": 1077.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 10.41 }, "geometry": { "type": "Point", "coordinates": [ -75.087836, 40.044965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9w-q4v", "LOCATION_NAME": "Cafe Michelangelo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.12143, "LONGITUDE": -75.016007, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 243.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 4593.0, "Total Transactions": 79.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.71, "MEDIAN_SPEND_PER_CUSTOMER": 74.58 }, "geometry": { "type": "Point", "coordinates": [ -75.016007, 40.12143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-whq", "LOCATION_NAME": "Pho Xe Lua Viet Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955481, "LONGITUDE": -75.154675, "DATE_RANGE_START": 2023, "Total Visits": 264.0, "Total Visitors": 264.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 2104.0, "Total Transactions": 58.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.96, "MEDIAN_SPEND_PER_CUSTOMER": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 40.079127, "LONGITUDE": -75.027686, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4059.0, "Total Transactions": 25.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.06, "MEDIAN_SPEND_PER_CUSTOMER": 105.81 }, "geometry": { "type": "Point", "coordinates": [ -75.027686, 40.079127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.936107, "LONGITUDE": -75.194561, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010033006.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5293.0, "Total Transactions": 297.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.48, "MEDIAN_SPEND_PER_CUSTOMER": 20.95 }, "geometry": { "type": "Point", "coordinates": [ -75.194561, 39.936107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7v-skf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055285, "LONGITUDE": -75.073863, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1143.0, "Total Transactions": 43.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073863, 40.055285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2023, "Total Visits": 354.0, "Total Visitors": 312.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 5472.0, "Total Transactions": 387.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.33, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.063818, "LONGITUDE": -75.23885, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 17534.0, "Total Transactions": 1323.0, "Total Customers": 818.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.52, "MEDIAN_SPEND_PER_CUSTOMER": 14.55 }, "geometry": { "type": "Point", "coordinates": [ -75.23885, 40.063818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977332, "LONGITUDE": -75.226013, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2926.0, "Total Transactions": 372.0, "Total Customers": 193.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.04, "MEDIAN_SPEND_PER_CUSTOMER": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.226013, 39.977332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.899912, "LONGITUDE": -75.241449, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 309.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4907.0, "Total Transactions": 147.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.02, "MEDIAN_SPEND_PER_CUSTOMER": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.241449, 39.899912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-yd9", "LOCATION_NAME": "Ciocca Subaru of Philadelphia", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.936465, "LONGITUDE": -75.198692, "DATE_RANGE_START": 2023, "Total Visits": 382.0, "Total Visitors": 246.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 450.0, "Total Spend": 67128.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 299.93, "MEDIAN_SPEND_PER_CUSTOMER": 599.86 }, "geometry": { "type": "Point", "coordinates": [ -75.198692, 39.936465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-wzf", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.978022, "LONGITUDE": -75.223843, "DATE_RANGE_START": 2023, "Total Visits": 2455.0, "Total Visitors": 1448.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 160.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.13, "MEDIAN_SPEND_PER_CUSTOMER": 63.72 }, "geometry": { "type": "Point", "coordinates": [ -75.223843, 39.978022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "LOCATION_NAME": "East Coast Tropicals", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2023, "Total Visits": 482.0, "Total Visitors": 185.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 47.0, "Total Spend": 3724.0, "Total Transactions": 29.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 95.59, "MEDIAN_SPEND_PER_CUSTOMER": 289.52 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2023, "Total Visits": 462.0, "Total Visitors": 407.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 395.0, "Total Transactions": 20.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.67, "MEDIAN_SPEND_PER_CUSTOMER": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-5zz", "LOCATION_NAME": "The Dining Car & Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050127, "LONGITUDE": -75.01115, "DATE_RANGE_START": 2023, "Total Visits": 526.0, "Total Visitors": 182.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 450.0, "Total Spend": 180.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.13, "MEDIAN_SPEND_PER_CUSTOMER": 35.13 }, "geometry": { "type": "Point", "coordinates": [ -75.01115, 40.050127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj5-jqf", "LOCATION_NAME": "Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002083, "LONGITUDE": -75.132811, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 101.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": null, "Total Spend": 663.0, "Total Transactions": 51.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.132811, 40.002083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "LOCATION_NAME": "Frieda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 138.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 42.0, "Total Spend": 3241.0, "Total Transactions": 101.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.72, "MEDIAN_SPEND_PER_CUSTOMER": 36.96 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2023, "Total Visits": 400.0, "Total Visitors": 375.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 763.0, "Total Transactions": 65.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.53 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2023, "Total Visits": 769.0, "Total Visitors": 477.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7006.0, "Total Transactions": 321.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.21 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vvf", "LOCATION_NAME": "Zales Philadelphia", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.089623, "LONGITUDE": -74.961878, "DATE_RANGE_START": 2023, "Total Visits": 314.0, "Total Visitors": 283.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 57.0, "Total Spend": 1983.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 129.58, "MEDIAN_SPEND_PER_CUSTOMER": 129.58 }, "geometry": { "type": "Point", "coordinates": [ -74.961878, 40.089623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "LOCATION_NAME": "Nifty Fifty's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 46.0, "POI_CBG": 421010372003.0, "MEDIAN_DWELL": 237.0, "Total Spend": 271.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.8, "MEDIAN_SPEND_PER_CUSTOMER": 19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-229@628-pj2-mrk", "LOCATION_NAME": "Universal Dollar", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.006684, "LONGITUDE": -75.096267, "DATE_RANGE_START": 2023, "Total Visits": 997.0, "Total Visitors": 714.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 7.0, "Total Spend": 254.0, "Total Transactions": 14.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.36, "MEDIAN_SPEND_PER_CUSTOMER": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.096267, 40.006684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "LOCATION_NAME": "Warwick Hotel Rittenhouse Square", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.94925, "LONGITUDE": -75.16935, "DATE_RANGE_START": 2023, "Total Visits": 1680.0, "Total Visitors": 1080.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 154.0, "Total Spend": 5921.0, "Total Transactions": 55.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.7, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16935, 39.94925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pgb-gx5", "LOCATION_NAME": "Made With Love Juicery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963871, "LONGITUDE": -75.170728, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 132.0, "POI_CBG": 421010134023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 147.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.58, "MEDIAN_SPEND_PER_CUSTOMER": 50.37 }, "geometry": { "type": "Point", "coordinates": [ -75.170728, 39.963871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23b@63s-dw4-rzf", "LOCATION_NAME": "Bar Symon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.89519, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 91.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.26, "MEDIAN_SPEND_PER_CUSTOMER": 36.26 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.060811, "LONGITUDE": -75.191937, "DATE_RANGE_START": 2023, "Total Visits": 963.0, "Total Visitors": 812.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 36300.0, "Total Transactions": 3146.0, "Total Customers": 1410.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.06, "MEDIAN_SPEND_PER_CUSTOMER": 13.97 }, "geometry": { "type": "Point", "coordinates": [ -75.191937, 40.060811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "LOCATION_NAME": "Papa Joe's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 94.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 73.0, "Total Spend": 140.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.26, "MEDIAN_SPEND_PER_CUSTOMER": 11.26 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pmb-cwk", "LOCATION_NAME": "Sushi Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943263, "LONGITUDE": -75.163741, "DATE_RANGE_START": 2023, "Total Visits": 465.0, "Total Visitors": 432.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 349.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.38, "MEDIAN_SPEND_PER_CUSTOMER": 39.38 }, "geometry": { "type": "Point", "coordinates": [ -75.163741, 39.943263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-fvf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033401, "LONGITUDE": -75.176995, "DATE_RANGE_START": 2023, "Total Visits": 1630.0, "Total Visitors": 978.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3028.0, "Total Transactions": 188.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.37, "MEDIAN_SPEND_PER_CUSTOMER": 16.03 }, "geometry": { "type": "Point", "coordinates": [ -75.176995, 40.033401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095304, "LONGITUDE": -75.015597, "DATE_RANGE_START": 2023, "Total Visits": 28.0, "Total Visitors": 18.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4006.0, "Total Transactions": 349.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.015597, 40.095304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgb-389", "LOCATION_NAME": "Callowhill Greens", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960219, "LONGITUDE": -75.168614, "DATE_RANGE_START": 2023, "Total Visits": 291.0, "Total Visitors": 261.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 329.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.64, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168614, 39.960219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942512, "LONGITUDE": -75.157213, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 20.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3381.0, "Total Transactions": 411.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.43, "MEDIAN_SPEND_PER_CUSTOMER": 7.89 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.942512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgj-xkf", "LOCATION_NAME": "Sunny's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.990908, "LONGITUDE": -75.154807, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 133.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 293.0, "Total Transactions": 9.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.31, "MEDIAN_SPEND_PER_CUSTOMER": 20.66 }, "geometry": { "type": "Point", "coordinates": [ -75.154807, 39.990908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-89z", "LOCATION_NAME": "Dasiwa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969169, "LONGITUDE": -75.179702, "DATE_RANGE_START": 2023, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 782.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.62, "MEDIAN_SPEND_PER_CUSTOMER": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.969169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-6kz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085677, "LONGITUDE": -74.967871, "DATE_RANGE_START": 2023, "Total Visits": 1751.0, "Total Visitors": 1221.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 27.0, "Total Spend": 1890.0, "Total Transactions": 148.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.86, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -74.967871, 40.085677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5mk", "LOCATION_NAME": "Boba King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950488, "LONGITUDE": -75.161675, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 25.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 423.0, "Total Transactions": 39.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.58, "MEDIAN_SPEND_PER_CUSTOMER": 9.43 }, "geometry": { "type": "Point", "coordinates": [ -75.161675, 39.950488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23v@63s-dw9-7nq", "LOCATION_NAME": "InMotion", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.894631, "LONGITUDE": -75.2293, "DATE_RANGE_START": 2023, "Total Visits": 5484.0, "Total Visitors": 3809.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5591.0, "Total Transactions": 90.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.47, "MEDIAN_SPEND_PER_CUSTOMER": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.2293, 39.894631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.03825, "LONGITUDE": -75.106651, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 169.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 44.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.37, "MEDIAN_SPEND_PER_CUSTOMER": 17.37 }, "geometry": { "type": "Point", "coordinates": [ -75.106651, 40.03825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-223@628-p8d-yd9", "LOCATION_NAME": "Tavares Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.015015, "LONGITUDE": -75.070972, "DATE_RANGE_START": 2023, "Total Visits": 94.0, "Total Visitors": 74.0, "POI_CBG": 421010298005.0, "MEDIAN_DWELL": 400.0, "Total Spend": 52.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.25, "MEDIAN_SPEND_PER_CUSTOMER": 3.88 }, "geometry": { "type": "Point", "coordinates": [ -75.070972, 40.015015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.00463, "LONGITUDE": -75.104417, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 7.0, "Total Spend": 148.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.41, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.104417, 40.00463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22r@628-p7x-5s5", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.04942, "LONGITUDE": -75.061163, "DATE_RANGE_START": 2023, "Total Visits": 3988.0, "Total Visitors": 2148.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 536.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.64, "MEDIAN_SPEND_PER_CUSTOMER": 15.64 }, "geometry": { "type": "Point", "coordinates": [ -75.061163, 40.04942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.021237, "LONGITUDE": -75.149867, "DATE_RANGE_START": 2023, "Total Visits": 1130.0, "Total Visitors": 802.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 310.0, "Total Transactions": 26.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.8, "MEDIAN_SPEND_PER_CUSTOMER": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.149867, 40.021237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmc-v2k", "LOCATION_NAME": "Bath & Body Works", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923559, "LONGITUDE": -75.14048, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 446.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 36670.0, "Total Transactions": 932.0, "Total Customers": 832.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.5, "MEDIAN_SPEND_PER_CUSTOMER": 33.37 }, "geometry": { "type": "Point", "coordinates": [ -75.14048, 39.923559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "LOCATION_NAME": "Eye Encounters", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2023, "Total Visits": 4324.0, "Total Visitors": 2851.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1705.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 191.4, "MEDIAN_SPEND_PER_CUSTOMER": 102.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.036034, "LONGITUDE": -75.217348, "DATE_RANGE_START": 2023, "Total Visits": 683.0, "Total Visitors": 472.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2294.0, "Total Transactions": 76.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.44, "MEDIAN_SPEND_PER_CUSTOMER": 47.16 }, "geometry": { "type": "Point", "coordinates": [ -75.217348, 40.036034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953744, "LONGITUDE": -75.167214, "DATE_RANGE_START": 2023, "Total Visits": 3027.0, "Total Visitors": 1916.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 16.0, "Total Spend": 9984.0, "Total Transactions": 1691.0, "Total Customers": 777.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.96, "MEDIAN_SPEND_PER_CUSTOMER": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.167214, 39.953744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8m-v2k", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.029454, "LONGITUDE": -75.058288, "DATE_RANGE_START": 2023, "Total Visits": 277.0, "Total Visitors": 213.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1944.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.47, "MEDIAN_SPEND_PER_CUSTOMER": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.058288, 40.029454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.930199, "LONGITUDE": -75.144817, "DATE_RANGE_START": 2023, "Total Visits": 581.0, "Total Visitors": 500.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 17569.0, "Total Transactions": 338.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.48, "MEDIAN_SPEND_PER_CUSTOMER": 34.97 }, "geometry": { "type": "Point", "coordinates": [ -75.144817, 39.930199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "LOCATION_NAME": "Shing Kee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 188.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1147.0, "Total Transactions": 19.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.88, "MEDIAN_SPEND_PER_CUSTOMER": 46.01 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.990675, "LONGITUDE": -75.102947, "DATE_RANGE_START": 2023, "Total Visits": 530.0, "Total Visitors": 309.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 17864.0, "Total Transactions": 383.0, "Total Customers": 309.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.55, "MEDIAN_SPEND_PER_CUSTOMER": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.102947, 39.990675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-fcq", "LOCATION_NAME": "Litterpaw Pet Supply", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.946481, "LONGITUDE": -75.157646, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 119.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 190.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.9, "MEDIAN_SPEND_PER_CUSTOMER": 75.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157646, 39.946481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-rhq", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.079335, "LONGITUDE": -74.993338, "DATE_RANGE_START": 2023, "Total Visits": 2071.0, "Total Visitors": 887.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 47122.0, "Total Transactions": 1380.0, "Total Customers": 532.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.43, "MEDIAN_SPEND_PER_CUSTOMER": 36.81 }, "geometry": { "type": "Point", "coordinates": [ -74.993338, 40.079335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-mrk", "LOCATION_NAME": "Pat's King Of Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933211, "LONGITUDE": -75.159243, "DATE_RANGE_START": 2023, "Total Visits": 306.0, "Total Visitors": 293.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 341.0, "Total Transactions": 19.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.49, "MEDIAN_SPEND_PER_CUSTOMER": 30.97 }, "geometry": { "type": "Point", "coordinates": [ -75.159243, 39.933211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-j7q", "LOCATION_NAME": "Frecon Farms", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.950808, "LONGITUDE": -75.171348, "DATE_RANGE_START": 2023, "Total Visits": 2842.0, "Total Visitors": 1860.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1905.0, "Total Transactions": 108.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171348, 39.950808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvz-26k", "LOCATION_NAME": "New York Gyro Halal Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955023, "LONGITUDE": -75.20893, "DATE_RANGE_START": 2023, "Total Visits": 571.0, "Total Visitors": 339.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 79.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20893, 39.955023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.094173, "LONGITUDE": -75.016684, "DATE_RANGE_START": 2023, "Total Visits": 470.0, "Total Visitors": 356.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6791.0, "Total Transactions": 500.0, "Total Customers": 344.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 12.51 }, "geometry": { "type": "Point", "coordinates": [ -75.016684, 40.094173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-td9", "LOCATION_NAME": "NY Bagel Cafe & Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96081, "LONGITUDE": -75.157391, "DATE_RANGE_START": 2023, "Total Visits": 282.0, "Total Visitors": 150.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 252.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.15, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.157391, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.029929, "LONGITUDE": -75.186202, "DATE_RANGE_START": 2023, "Total Visits": 412.0, "Total Visitors": 294.0, "POI_CBG": 421010239002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2862.0, "Total Transactions": 103.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.11, "MEDIAN_SPEND_PER_CUSTOMER": 27.43 }, "geometry": { "type": "Point", "coordinates": [ -75.186202, 40.029929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm9-zs5", "LOCATION_NAME": "Ishkabibble's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942066, "LONGITUDE": -75.151372, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 209.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 116.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151372, 39.942066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-phj-rrk", "LOCATION_NAME": "BBQ Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071208, "LONGITUDE": -75.157221, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 104.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 12.0, "Total Spend": 252.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.86, "MEDIAN_SPEND_PER_CUSTOMER": 30.06 }, "geometry": { "type": "Point", "coordinates": [ -75.157221, 40.071208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "LOCATION_NAME": "Macaroni's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 183.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 55.0, "Total Spend": 10290.0, "Total Transactions": 81.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 111.76, "MEDIAN_SPEND_PER_CUSTOMER": 137.24 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj6-99f", "LOCATION_NAME": "Red Wine Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033146, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 187.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1203.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.2, "MEDIAN_SPEND_PER_CUSTOMER": 119.48 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.033146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.05985, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2023, "Total Visits": 685.0, "Total Visitors": 407.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1998.0, "Total Transactions": 140.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.98, "MEDIAN_SPEND_PER_CUSTOMER": 11.94 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 40.05985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-223@628-pmf-j35", "LOCATION_NAME": "Premium Steap", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951336, "LONGITUDE": -75.170234, "DATE_RANGE_START": 2023, "Total Visits": 1325.0, "Total Visitors": 847.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170234, 39.951336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-4vz", "LOCATION_NAME": "Cafe Tinto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02156, "LONGITUDE": -75.122622, "DATE_RANGE_START": 2023, "Total Visits": 199.0, "Total Visitors": 76.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2559.0, "Total Transactions": 218.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.13, "MEDIAN_SPEND_PER_CUSTOMER": 20.12 }, "geometry": { "type": "Point", "coordinates": [ -75.122622, 40.02156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065234, "LONGITUDE": -74.981906, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010362033.0, "MEDIAN_DWELL": 3.0, "Total Spend": 429.0, "Total Transactions": 25.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.08, "MEDIAN_SPEND_PER_CUSTOMER": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -74.981906, 40.065234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "LOCATION_NAME": "Fleishman Fabrics & Supplies", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.939359, "LONGITUDE": -75.149441, "DATE_RANGE_START": 2023, "Total Visits": 468.0, "Total Visitors": 173.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 361.0, "Total Spend": 3148.0, "Total Transactions": 76.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 38.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149441, 39.939359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj7-sqz", "LOCATION_NAME": "Pizza Hut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017079, "LONGITUDE": -75.096442, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7610.0, "Total Transactions": 301.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.47, "MEDIAN_SPEND_PER_CUSTOMER": 24.38 }, "geometry": { "type": "Point", "coordinates": [ -75.096442, 40.017079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 242.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 9.0, "Total Spend": 116.0, "Total Transactions": 15.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.45, "MEDIAN_SPEND_PER_CUSTOMER": 15.28 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "LOCATION_NAME": "Varga Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 147.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 39.0, "Total Spend": 4302.0, "Total Transactions": 81.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.9, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p9j-zj9", "LOCATION_NAME": "Kabobi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0995, "LONGITUDE": -75.010461, "DATE_RANGE_START": 2023, "Total Visits": 274.0, "Total Visitors": 158.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1433.0, "Total Transactions": 30.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.39, "MEDIAN_SPEND_PER_CUSTOMER": 39.16 }, "geometry": { "type": "Point", "coordinates": [ -75.010461, 40.0995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "LOCATION_NAME": "Henry James Saloon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 137.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 101.0, "Total Spend": 1447.0, "Total Transactions": 34.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.52, "MEDIAN_SPEND_PER_CUSTOMER": 51.59 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj4-rrk", "LOCATION_NAME": "La Villa", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.996458, "LONGITUDE": -75.138434, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 152.0, "POI_CBG": 421010176012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1161.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 107.5, "MEDIAN_SPEND_PER_CUSTOMER": 123.15 }, "geometry": { "type": "Point", "coordinates": [ -75.138434, 39.996458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.930298, "LONGITUDE": -75.155924, "DATE_RANGE_START": 2023, "Total Visits": 1304.0, "Total Visitors": 897.0, "POI_CBG": 421010028013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9574.0, "Total Transactions": 546.0, "Total Customers": 278.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.17, "MEDIAN_SPEND_PER_CUSTOMER": 18.82 }, "geometry": { "type": "Point", "coordinates": [ -75.155924, 39.930298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8m-snq", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.022739, "LONGITUDE": -75.07728, "DATE_RANGE_START": 2023, "Total Visits": 247.0, "Total Visitors": 174.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 579.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 200.0, "MEDIAN_SPEND_PER_CUSTOMER": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07728, 40.022739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmd-xt9", "LOCATION_NAME": "Cava Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.939271, "LONGITUDE": -75.176627, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 210.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 35276.0, "Total Transactions": 34.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 216.27, "MEDIAN_SPEND_PER_CUSTOMER": 162.54 }, "geometry": { "type": "Point", "coordinates": [ -75.176627, 39.939271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pnw-psq", "LOCATION_NAME": "Lodge", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.96959, "LONGITUDE": -75.138853, "DATE_RANGE_START": 2023, "Total Visits": 649.0, "Total Visitors": 362.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 936.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.88, "MEDIAN_SPEND_PER_CUSTOMER": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138853, 39.96959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8f-djv", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017133, "LONGITUDE": -75.084023, "DATE_RANGE_START": 2023, "Total Visits": 489.0, "Total Visitors": 368.0, "POI_CBG": 421010300006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1012.0, "Total Transactions": 33.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.3, "MEDIAN_SPEND_PER_CUSTOMER": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084023, 40.017133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "LOCATION_NAME": "Bad Brother", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2023, "Total Visits": 65.0, "Total Visitors": 65.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 115.0, "Total Spend": 1064.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.99, "MEDIAN_SPEND_PER_CUSTOMER": 78.99 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-sdv", "LOCATION_NAME": "P S & Co", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.94866, "LONGITUDE": -75.16974, "DATE_RANGE_START": 2023, "Total Visits": 507.0, "Total Visitors": 448.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 109.0, "Total Spend": 2014.0, "Total Transactions": 45.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.15, "MEDIAN_SPEND_PER_CUSTOMER": 40.29 }, "geometry": { "type": "Point", "coordinates": [ -75.16974, 39.94866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnt-435", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.974273, "LONGITUDE": -75.120323, "DATE_RANGE_START": 2023, "Total Visits": 1749.0, "Total Visitors": 889.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 7946.0, "Total Transactions": 68.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.15, "MEDIAN_SPEND_PER_CUSTOMER": 42.57 }, "geometry": { "type": "Point", "coordinates": [ -75.120323, 39.974273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pm6-f2k", "LOCATION_NAME": "Bobs Food Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.920704, "LONGITUDE": -75.15184, "DATE_RANGE_START": 2023, "Total Visits": 78.0, "Total Visitors": 41.0, "POI_CBG": 421010042012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 97.0, "Total Transactions": 11.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15184, 39.920704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pfy-h3q", "LOCATION_NAME": "Accent on Animals", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.044128, "LONGITUDE": -75.232181, "DATE_RANGE_START": 2023, "Total Visits": 332.0, "Total Visitors": 262.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1881.0, "Total Transactions": 76.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 16.76 }, "geometry": { "type": "Point", "coordinates": [ -75.232181, 40.044128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.924423, "LONGITUDE": -75.145957, "DATE_RANGE_START": 2023, "Total Visits": 6662.0, "Total Visitors": 4472.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 290105.0, "Total Transactions": 5197.0, "Total Customers": 3143.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.86, "MEDIAN_SPEND_PER_CUSTOMER": 55.68 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.924423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2023, "Total Visits": 303.0, "Total Visitors": 108.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 1033.0, "Total Spend": 2243.0, "Total Transactions": 78.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.56, "MEDIAN_SPEND_PER_CUSTOMER": 29.72 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "LOCATION_NAME": "Bindlestiff Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": null, "Total Spend": 347.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.9, "MEDIAN_SPEND_PER_CUSTOMER": 45.9 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pnw-x89", "LOCATION_NAME": "Pretty Girls Cook", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97001, "LONGITUDE": -75.147605, "DATE_RANGE_START": 2023, "Total Visits": 110.0, "Total Visitors": 110.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 184.0, "Total Spend": 267.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.56, "MEDIAN_SPEND_PER_CUSTOMER": 106.56 }, "geometry": { "type": "Point", "coordinates": [ -75.147605, 39.97001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "LOCATION_NAME": "Roses Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2023, "Total Visits": 410.0, "Total Visitors": 312.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 535.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.61, "MEDIAN_SPEND_PER_CUSTOMER": 28.61 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pp2-sdv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.996078, "LONGITUDE": -75.090398, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 524.0, "Total Transactions": 26.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090398, 39.996078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-xyv", "LOCATION_NAME": "M S Mart", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.956183, "LONGITUDE": -75.155912, "DATE_RANGE_START": 2023, "Total Visits": 866.0, "Total Visitors": 608.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4537.0, "Total Transactions": 137.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.63, "MEDIAN_SPEND_PER_CUSTOMER": 40.33 }, "geometry": { "type": "Point", "coordinates": [ -75.155912, 39.956183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2023, "Total Visits": 854.0, "Total Visitors": 507.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 19174.0, "Total Transactions": 887.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.18, "MEDIAN_SPEND_PER_CUSTOMER": 26.01 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm5-fj9", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.913658, "LONGITUDE": -75.149869, "DATE_RANGE_START": 2023, "Total Visits": 294.0, "Total Visitors": 271.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 94.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149869, 39.913658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-w6k", "LOCATION_NAME": "National Mechanics", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.94956, "LONGITUDE": -75.146014, "DATE_RANGE_START": 2023, "Total Visits": 251.0, "Total Visitors": 230.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1244.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.41, "MEDIAN_SPEND_PER_CUSTOMER": 55.46 }, "geometry": { "type": "Point", "coordinates": [ -75.146014, 39.94956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "LOCATION_NAME": "Bookhaven", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 222.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1474.0, "Total Transactions": 53.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.92, "MEDIAN_SPEND_PER_CUSTOMER": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nnq", "LOCATION_NAME": "Liberty Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970136, "LONGITUDE": -75.136058, "DATE_RANGE_START": 2023, "Total Visits": 492.0, "Total Visitors": 447.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 30.0, "Total Spend": 6190.0, "Total Transactions": 183.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.03, "MEDIAN_SPEND_PER_CUSTOMER": 27.06 }, "geometry": { "type": "Point", "coordinates": [ -75.136058, 39.970136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-7t9", "LOCATION_NAME": "Rybread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967471, "LONGITUDE": -75.165645, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 5.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 13.0, "Total Spend": 8045.0, "Total Transactions": 560.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 17.78 }, "geometry": { "type": "Point", "coordinates": [ -75.165645, 39.967471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039119, "LONGITUDE": -75.144123, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 29.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2604.0, "Total Transactions": 446.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.144123, 40.039119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2023, "Total Visits": 2215.0, "Total Visitors": 1200.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 52127.0, "Total Transactions": 1083.0, "Total Customers": 596.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.57, "MEDIAN_SPEND_PER_CUSTOMER": 49.98 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-7h5", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.96478, "LONGITUDE": -75.14241, "DATE_RANGE_START": 2023, "Total Visits": 361.0, "Total Visitors": 254.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 1869.0, "Total Transactions": 61.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.14241, 39.96478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-m6k", "LOCATION_NAME": "Arch Street Lighting", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.951738, "LONGITUDE": -75.142429, "DATE_RANGE_START": 2023, "Total Visits": 1104.0, "Total Visitors": 556.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 339.0, "Total Spend": 3906.0, "Total Transactions": 14.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 174.32, "MEDIAN_SPEND_PER_CUSTOMER": 708.85 }, "geometry": { "type": "Point", "coordinates": [ -75.142429, 39.951738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "LOCATION_NAME": "Fairdale Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084505, "LONGITUDE": -74.972665, "DATE_RANGE_START": 2023, "Total Visits": 96.0, "Total Visitors": 53.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 127.0, "Total Spend": 194.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.42 }, "geometry": { "type": "Point", "coordinates": [ -74.972665, 40.084505 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-mzf", "LOCATION_NAME": "Tir na nOg Irish Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.954415, "LONGITUDE": -75.16676, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 170.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 82.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16676, 39.954415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-cqz", "LOCATION_NAME": "Little Morocco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925459, "LONGITUDE": -75.170748, "DATE_RANGE_START": 2023, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 72.0, "Total Spend": 231.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.170748, 39.925459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pnx-bp9", "LOCATION_NAME": "Girard Food & Gas Mart", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.971679, "LONGITUDE": -75.124958, "DATE_RANGE_START": 2023, "Total Visits": 843.0, "Total Visitors": 634.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7353.0, "Total Transactions": 407.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.98, "MEDIAN_SPEND_PER_CUSTOMER": 21.87 }, "geometry": { "type": "Point", "coordinates": [ -75.124958, 39.971679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.028738, "LONGITUDE": -75.099166, "DATE_RANGE_START": 2023, "Total Visits": 1410.0, "Total Visitors": 1233.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 7704.0, "Total Transactions": 178.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.47, "MEDIAN_SPEND_PER_CUSTOMER": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.099166, 40.028738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "LOCATION_NAME": "Pizza Boli's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010190001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 282.0, "Total Transactions": 15.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.94, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2023, "Total Visits": 679.0, "Total Visitors": 654.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1572.0, "Total Transactions": 40.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.18, "MEDIAN_SPEND_PER_CUSTOMER": 40.07 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@628-pmf-mrk", "LOCATION_NAME": "Bain's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952352, "LONGITUDE": -75.168112, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 206.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.168112, 39.952352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "LOCATION_NAME": "New Panda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 159.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1558.0, "Total Transactions": 63.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.19, "MEDIAN_SPEND_PER_CUSTOMER": 26.14 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp4-x3q", "LOCATION_NAME": "Ska", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986824, "LONGITUDE": -75.131408, "DATE_RANGE_START": 2023, "Total Visits": 695.0, "Total Visitors": 284.0, "POI_CBG": 421010163004.0, "MEDIAN_DWELL": 1191.0, "Total Spend": 392.0, "Total Transactions": 13.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.84, "MEDIAN_SPEND_PER_CUSTOMER": 34.45 }, "geometry": { "type": "Point", "coordinates": [ -75.131408, 39.986824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pnw-nh5", "LOCATION_NAME": "Johnny Brenda's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969072, "LONGITUDE": -75.134263, "DATE_RANGE_START": 2023, "Total Visits": 253.0, "Total Visitors": 175.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 43.0, "Total Spend": 1680.0, "Total Transactions": 35.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.36, "MEDIAN_SPEND_PER_CUSTOMER": 50.24 }, "geometry": { "type": "Point", "coordinates": [ -75.134263, 39.969072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7x-b6k", "LOCATION_NAME": "New England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040059, "LONGITUDE": -75.066331, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 133.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2069.0, "Total Transactions": 105.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.74 }, "geometry": { "type": "Point", "coordinates": [ -75.066331, 40.040059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvx-w49", "LOCATION_NAME": "Grindcore House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948198, "LONGITUDE": -75.206865, "DATE_RANGE_START": 2023, "Total Visits": 457.0, "Total Visitors": 289.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4189.0, "Total Transactions": 326.0, "Total Customers": 227.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.97, "MEDIAN_SPEND_PER_CUSTOMER": 15.23 }, "geometry": { "type": "Point", "coordinates": [ -75.206865, 39.948198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-vs5", "LOCATION_NAME": "Ys Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.000195, "LONGITUDE": -75.106917, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 174.0, "POI_CBG": 421010192004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 155.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.22, "MEDIAN_SPEND_PER_CUSTOMER": 32.22 }, "geometry": { "type": "Point", "coordinates": [ -75.106917, 40.000195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.046221, "LONGITUDE": -75.056536, "DATE_RANGE_START": 2023, "Total Visits": 780.0, "Total Visitors": 545.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 19.0, "Total Spend": 9623.0, "Total Transactions": 1226.0, "Total Customers": 559.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.02, "MEDIAN_SPEND_PER_CUSTOMER": 9.21 }, "geometry": { "type": "Point", "coordinates": [ -75.056536, 40.046221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "LOCATION_NAME": "Barbuzzo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950022, "LONGITUDE": -75.162129, "DATE_RANGE_START": 2023, "Total Visits": 3089.0, "Total Visitors": 1864.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 1988.0, "Total Transactions": 21.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.41, "MEDIAN_SPEND_PER_CUSTOMER": 84.03 }, "geometry": { "type": "Point", "coordinates": [ -75.162129, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 198.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 486.0, "Total Transactions": 30.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pm8-pgk", "LOCATION_NAME": "Kasumi Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.910232, "LONGITUDE": -75.186866, "DATE_RANGE_START": 2023, "Total Visits": 407.0, "Total Visitors": 293.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2358.0, "Total Transactions": 78.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.93, "MEDIAN_SPEND_PER_CUSTOMER": 29.73 }, "geometry": { "type": "Point", "coordinates": [ -75.186866, 39.910232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "LOCATION_NAME": "Honey Bee Gourmet Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945983, "LONGITUDE": -75.159401, "DATE_RANGE_START": 2023, "Total Visits": 453.0, "Total Visitors": 225.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 195.0, "Total Spend": 64.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.159401, 39.945983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-cqz", "LOCATION_NAME": "Tropical Smoothie Café", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977828, "LONGITUDE": -75.158485, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 20.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 41.0, "Total Spend": 5655.0, "Total Transactions": 511.0, "Total Customers": 353.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.51, "MEDIAN_SPEND_PER_CUSTOMER": 13.26 }, "geometry": { "type": "Point", "coordinates": [ -75.158485, 39.977828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "LOCATION_NAME": "Tomo Sushi & Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 103.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1004.0, "Total Spend": 597.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.81, "MEDIAN_SPEND_PER_CUSTOMER": 75.81 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-xnq", "LOCATION_NAME": "Bai Wei", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95547, "LONGITUDE": -75.157324, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 430.0, "Total Transactions": 10.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.65, "MEDIAN_SPEND_PER_CUSTOMER": 80.36 }, "geometry": { "type": "Point", "coordinates": [ -75.157324, 39.95547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvs-2ff", "LOCATION_NAME": "Kim's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.938046, "LONGITUDE": -75.225575, "DATE_RANGE_START": 2023, "Total Visits": 476.0, "Total Visitors": 199.0, "POI_CBG": 421010071012.0, "MEDIAN_DWELL": 34.0, "Total Spend": 61.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.47, "MEDIAN_SPEND_PER_CUSTOMER": 15.47 }, "geometry": { "type": "Point", "coordinates": [ -75.225575, 39.938046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj7-5fz", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.043618, "LONGITUDE": -75.102863, "DATE_RANGE_START": 2023, "Total Visits": 288.0, "Total Visitors": 200.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1653.0, "Total Transactions": 116.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.84, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.102863, 40.043618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.034029, "LONGITUDE": -75.072579, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2127.0, "Total Transactions": 74.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.12, "MEDIAN_SPEND_PER_CUSTOMER": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -75.072579, 40.034029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "LOCATION_NAME": "Harbison Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 157.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4667.0, "Total Transactions": 220.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.78, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030072, "LONGITUDE": -75.101462, "DATE_RANGE_START": 2023, "Total Visits": 758.0, "Total Visitors": 669.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 49967.0, "Total Transactions": 2108.0, "Total Customers": 1826.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.45, "MEDIAN_SPEND_PER_CUSTOMER": 19.76 }, "geometry": { "type": "Point", "coordinates": [ -75.101462, 40.030072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012036, "LONGITUDE": -75.088981, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 5.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 480.0, "Total Transactions": 78.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.72, "MEDIAN_SPEND_PER_CUSTOMER": 8.89 }, "geometry": { "type": "Point", "coordinates": [ -75.088981, 40.012036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7yv", "LOCATION_NAME": "BurgerFi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953658, "LONGITUDE": -75.159719, "DATE_RANGE_START": 2023, "Total Visits": 5172.0, "Total Visitors": 3775.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.55, "MEDIAN_SPEND_PER_CUSTOMER": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.159719, 39.953658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "LOCATION_NAME": "Prohibition Taproom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2023, "Total Visits": 233.0, "Total Visitors": 213.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 43.0, "Total Spend": 9058.0, "Total Transactions": 185.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.74, "MEDIAN_SPEND_PER_CUSTOMER": 48.49 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "LOCATION_NAME": "Sweet Creations Unlimited", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.017729, "LONGITUDE": -75.059726, "DATE_RANGE_START": 2023, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": null, "Total Spend": 310.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.98, "MEDIAN_SPEND_PER_CUSTOMER": 78.98 }, "geometry": { "type": "Point", "coordinates": [ -75.059726, 40.017729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "LOCATION_NAME": "Friendship Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.039276, "LONGITUDE": -75.045861, "DATE_RANGE_START": 2023, "Total Visits": 277.0, "Total Visitors": 277.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": null, "Total Spend": 781.0, "Total Transactions": 18.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.11, "MEDIAN_SPEND_PER_CUSTOMER": 168.01 }, "geometry": { "type": "Point", "coordinates": [ -75.045861, 40.039276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.966, "LONGITUDE": -75.233618, "DATE_RANGE_START": 2023, "Total Visits": 224.0, "Total Visitors": 167.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 9102.0, "Total Transactions": 212.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.12, "MEDIAN_SPEND_PER_CUSTOMER": 35.73 }, "geometry": { "type": "Point", "coordinates": [ -75.233618, 39.966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgj-3qz", "LOCATION_NAME": "Pharmacy of America IV", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.981474, "LONGITUDE": -75.148733, "DATE_RANGE_START": 2023, "Total Visits": 966.0, "Total Visitors": 611.0, "POI_CBG": 421010377002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 290.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.62, "MEDIAN_SPEND_PER_CUSTOMER": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148733, 39.981474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2023, "Total Visits": 1413.0, "Total Visitors": 1236.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 24211.0, "Total Transactions": 467.0, "Total Customers": 387.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.17, "MEDIAN_SPEND_PER_CUSTOMER": 46.42 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-5fz", "LOCATION_NAME": "Beyond Hello Center City", "TOP_CATEGORY": "Drugs and Druggists' Sundries Merchant Wholesalers", "LATITUDE": 39.94959, "LONGITUDE": -75.160732, "DATE_RANGE_START": 2023, "Total Visits": 3282.0, "Total Visitors": 2360.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 60419.0, "Total Transactions": 636.0, "Total Customers": 346.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.5, "MEDIAN_SPEND_PER_CUSTOMER": 134.23 }, "geometry": { "type": "Point", "coordinates": [ -75.160732, 39.94959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgm-3qz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.008324, "LONGITUDE": -75.193602, "DATE_RANGE_START": 2023, "Total Visits": 580.0, "Total Visitors": 511.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1505.0, "Total Transactions": 109.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.83, "MEDIAN_SPEND_PER_CUSTOMER": 11.76 }, "geometry": { "type": "Point", "coordinates": [ -75.193602, 40.008324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pp5-ht9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.983661, "LONGITUDE": -75.115943, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010179005.0, "MEDIAN_DWELL": 7.0, "Total Spend": 490.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.76, "MEDIAN_SPEND_PER_CUSTOMER": 21.76 }, "geometry": { "type": "Point", "coordinates": [ -75.115943, 39.983661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "LOCATION_NAME": "Theory", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949758, "LONGITUDE": -75.168428, "DATE_RANGE_START": 2023, "Total Visits": 893.0, "Total Visitors": 690.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 14.0, "Total Spend": 7626.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 475.0, "MEDIAN_SPEND_PER_CUSTOMER": 475.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168428, 39.949758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951658, "LONGITUDE": -75.172295, "DATE_RANGE_START": 2023, "Total Visits": 2870.0, "Total Visitors": 2053.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 77406.0, "Total Transactions": 2974.0, "Total Customers": 1682.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.13, "MEDIAN_SPEND_PER_CUSTOMER": 27.55 }, "geometry": { "type": "Point", "coordinates": [ -75.172295, 39.951658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-t5f", "LOCATION_NAME": "Pho Viet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035248, "LONGITUDE": -75.100976, "DATE_RANGE_START": 2023, "Total Visits": 338.0, "Total Visitors": 327.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 4950.0, "Total Transactions": 104.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.48, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100976, 40.035248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-btv", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98043, "LONGITUDE": -75.172676, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 3.0, "POI_CBG": 421010149001.0, "MEDIAN_DWELL": 150.0, "Total Spend": 133.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.09, "MEDIAN_SPEND_PER_CUSTOMER": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.172676, 39.98043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-wkz", "LOCATION_NAME": "Perakis Frames", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.949359, "LONGITUDE": -75.145196, "DATE_RANGE_START": 2023, "Total Visits": 2528.0, "Total Visitors": 1506.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 148.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.93, "MEDIAN_SPEND_PER_CUSTOMER": 58.93 }, "geometry": { "type": "Point", "coordinates": [ -75.145196, 39.949359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-2p9", "LOCATION_NAME": "Amazing Beauty Supply", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956811, "LONGITUDE": -75.214634, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 79.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.38, "MEDIAN_SPEND_PER_CUSTOMER": 31.38 }, "geometry": { "type": "Point", "coordinates": [ -75.214634, 39.956811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951605, "LONGITUDE": -75.168872, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 15.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 113.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.99, "MEDIAN_SPEND_PER_CUSTOMER": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168872, 39.951605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-6tv", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.015035, "LONGITUDE": -75.178463, "DATE_RANGE_START": 2023, "Total Visits": 723.0, "Total Visitors": 557.0, "POI_CBG": 421010206001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 200.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.73, "MEDIAN_SPEND_PER_CUSTOMER": 36.17 }, "geometry": { "type": "Point", "coordinates": [ -75.178463, 40.015035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.993628, "LONGITUDE": -75.15501, "DATE_RANGE_START": 2023, "Total Visits": 358.0, "Total Visitors": 220.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 737.0, "Total Transactions": 30.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.45, "MEDIAN_SPEND_PER_CUSTOMER": 20.12 }, "geometry": { "type": "Point", "coordinates": [ -75.15501, 39.993628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2023, "Total Visits": 2151.0, "Total Visitors": 1534.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 79245.0, "Total Transactions": 4354.0, "Total Customers": 1760.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.45, "MEDIAN_SPEND_PER_CUSTOMER": 20.06 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2023, "Total Visits": 467.0, "Total Visitors": 294.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 201.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.33, "MEDIAN_SPEND_PER_CUSTOMER": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@63s-dvx-hkf", "LOCATION_NAME": "Plant and People", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.975294, "LONGITUDE": -75.226351, "DATE_RANGE_START": 2023, "Total Visits": 418.0, "Total Visitors": 418.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 91.0, "Total Spend": 126.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.31, "MEDIAN_SPEND_PER_CUSTOMER": 50.31 }, "geometry": { "type": "Point", "coordinates": [ -75.226351, 39.975294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-28v", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978491, "LONGITUDE": -75.153508, "DATE_RANGE_START": 2023, "Total Visits": 928.0, "Total Visitors": 324.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 103.0, "Total Spend": 19759.0, "Total Transactions": 1481.0, "Total Customers": 698.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.58, "MEDIAN_SPEND_PER_CUSTOMER": 15.41 }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.978491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-tgk", "LOCATION_NAME": "Angelina's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987407, "LONGITUDE": -75.139218, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010163004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 165.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.07, "MEDIAN_SPEND_PER_CUSTOMER": 11.07 }, "geometry": { "type": "Point", "coordinates": [ -75.139218, 39.987407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2023, "Total Visits": 401.0, "Total Visitors": 343.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5317.0, "Total Transactions": 681.0, "Total Customers": 366.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.62, "MEDIAN_SPEND_PER_CUSTOMER": 9.42 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-y9z", "LOCATION_NAME": "The Pet Snobs Boutique", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.942339, "LONGITUDE": -75.157237, "DATE_RANGE_START": 2023, "Total Visits": 2361.0, "Total Visitors": 1576.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 191.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 46.43 }, "geometry": { "type": "Point", "coordinates": [ -75.157237, 39.942339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "LOCATION_NAME": "Gennaro's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 238.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 345.0, "Total Transactions": 19.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.53, "MEDIAN_SPEND_PER_CUSTOMER": 18.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032068, "LONGITUDE": -75.213943, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 10.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4243.0, "Total Transactions": 411.0, "Total Customers": 289.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.97, "MEDIAN_SPEND_PER_CUSTOMER": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.213943, 40.032068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pgh-vs5", "LOCATION_NAME": "Temple Teppanyaki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982244, "LONGITUDE": -75.153601, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 168.0, "Total Spend": 1763.0, "Total Transactions": 38.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 43.26 }, "geometry": { "type": "Point", "coordinates": [ -75.153601, 39.982244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "LOCATION_NAME": "Hair Fashion & Beyond", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978105, "LONGITUDE": -75.158429, "DATE_RANGE_START": 2023, "Total Visits": 2743.0, "Total Visitors": 1938.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 5538.0, "Total Transactions": 208.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.22, "MEDIAN_SPEND_PER_CUSTOMER": 19.41 }, "geometry": { "type": "Point", "coordinates": [ -75.158429, 39.978105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yd9", "LOCATION_NAME": "Tai Lake Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954672, "LONGITUDE": -75.156344, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 239.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3351.0, "Total Transactions": 35.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.33, "MEDIAN_SPEND_PER_CUSTOMER": 97.13 }, "geometry": { "type": "Point", "coordinates": [ -75.156344, 39.954672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "LOCATION_NAME": "Dollar Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2023, "Total Visits": 452.0, "Total Visitors": 342.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4599.0, "Total Transactions": 192.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.89, "MEDIAN_SPEND_PER_CUSTOMER": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2023, "Total Visits": 715.0, "Total Visitors": 402.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 11.0, "Total Spend": 276.0, "Total Transactions": 15.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.62, "MEDIAN_SPEND_PER_CUSTOMER": 20.47 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.060452, "LONGITUDE": -75.08143, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 959.0, "Total Transactions": 33.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.67, "MEDIAN_SPEND_PER_CUSTOMER": 49.58 }, "geometry": { "type": "Point", "coordinates": [ -75.08143, 40.060452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-225@628-pmf-j35", "LOCATION_NAME": "Sofitel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.950868, "LONGITUDE": -75.169235, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 110.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 35.0, "Total Spend": 5983.0, "Total Transactions": 16.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 312.88, "MEDIAN_SPEND_PER_CUSTOMER": 350.66 }, "geometry": { "type": "Point", "coordinates": [ -75.169235, 39.950868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2023, "Total Visits": 957.0, "Total Visitors": 729.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1738.0, "Total Transactions": 83.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.15, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "LOCATION_NAME": "Evan's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2023, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2011.0, "Total Transactions": 91.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.73, "MEDIAN_SPEND_PER_CUSTOMER": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgg-jsq", "LOCATION_NAME": "BBQ Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995114, "LONGITUDE": -75.167387, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010168006.0, "MEDIAN_DWELL": 80.0, "Total Spend": 329.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.56, "MEDIAN_SPEND_PER_CUSTOMER": 21.84 }, "geometry": { "type": "Point", "coordinates": [ -75.167387, 39.995114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "LOCATION_NAME": "Pizzeria Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 134.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1066.0, "Total Transactions": 46.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.9, "MEDIAN_SPEND_PER_CUSTOMER": 29.73 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998136, "LONGITUDE": -75.1245, "DATE_RANGE_START": 2023, "Total Visits": 34.0, "Total Visitors": 21.0, "POI_CBG": 421010177025.0, "MEDIAN_DWELL": 10.0, "Total Spend": 649.0, "Total Transactions": 70.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.33, "MEDIAN_SPEND_PER_CUSTOMER": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1245, 39.998136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952358, "LONGITUDE": -75.17353, "DATE_RANGE_START": 2023, "Total Visits": 2334.0, "Total Visitors": 1566.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5718.0, "Total Transactions": 908.0, "Total Customers": 378.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.99, "MEDIAN_SPEND_PER_CUSTOMER": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17353, 39.952358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7v-sqz", "LOCATION_NAME": "Sloane Toyota of Philadelphia", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.054964, "LONGITUDE": -75.075228, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 43.0, "Total Spend": 40808.0, "Total Transactions": 68.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 126.4, "MEDIAN_SPEND_PER_CUSTOMER": 126.26 }, "geometry": { "type": "Point", "coordinates": [ -75.075228, 40.054964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-k4v", "LOCATION_NAME": "Kisso Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954281, "LONGITUDE": -75.146239, "DATE_RANGE_START": 2023, "Total Visits": 1144.0, "Total Visitors": 787.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 224.0, "Total Spend": 1280.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.13, "MEDIAN_SPEND_PER_CUSTOMER": 73.18 }, "geometry": { "type": "Point", "coordinates": [ -75.146239, 39.954281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pgb-tn5", "LOCATION_NAME": "JC Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962905, "LONGITUDE": -75.15611, "DATE_RANGE_START": 2023, "Total Visits": 471.0, "Total Visitors": 357.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1274.0, "Total Transactions": 106.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.24, "MEDIAN_SPEND_PER_CUSTOMER": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15611, 39.962905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7z-7kf", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062355, "LONGITUDE": -75.08469, "DATE_RANGE_START": 2023, "Total Visits": 445.0, "Total Visitors": 273.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 64.0, "Total Spend": 165.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.08469, 40.062355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992707, "LONGITUDE": -75.100219, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7422.0, "Total Transactions": 223.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.5, "MEDIAN_SPEND_PER_CUSTOMER": 34.67 }, "geometry": { "type": "Point", "coordinates": [ -75.100219, 39.992707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phq-rp9", "LOCATION_NAME": "Hesaias Wigs", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.066299, "LONGITUDE": -75.159298, "DATE_RANGE_START": 2023, "Total Visits": 108.0, "Total Visitors": 108.0, "POI_CBG": 421010263023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 202.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.12, "MEDIAN_SPEND_PER_CUSTOMER": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.159298, 40.066299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pgj-cqz", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.978249, "LONGITUDE": -75.157576, "DATE_RANGE_START": 2023, "Total Visits": 517.0, "Total Visitors": 402.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 860.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.98, "MEDIAN_SPEND_PER_CUSTOMER": 79.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157576, 39.978249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946498, "LONGITUDE": -75.180667, "DATE_RANGE_START": 2023, "Total Visits": 311.0, "Total Visitors": 220.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6846.0, "Total Transactions": 759.0, "Total Customers": 437.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.57 }, "geometry": { "type": "Point", "coordinates": [ -75.180667, 39.946498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phc-xbk", "LOCATION_NAME": "Wynnecare Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991185, "LONGITUDE": -75.226906, "DATE_RANGE_START": 2023, "Total Visits": 800.0, "Total Visitors": 375.0, "POI_CBG": 421010119004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 495.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.28, "MEDIAN_SPEND_PER_CUSTOMER": 29.56 }, "geometry": { "type": "Point", "coordinates": [ -75.226906, 39.991185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.95576, "LONGITUDE": -75.214101, "DATE_RANGE_START": 2023, "Total Visits": 515.0, "Total Visitors": 392.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1079.0, "Total Transactions": 50.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.21, "MEDIAN_SPEND_PER_CUSTOMER": 26.32 }, "geometry": { "type": "Point", "coordinates": [ -75.214101, 39.95576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "LOCATION_NAME": "Trader Joe's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954198, "LONGITUDE": -75.176074, "DATE_RANGE_START": 2023, "Total Visits": 7237.0, "Total Visitors": 4348.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 522271.0, "Total Transactions": 10921.0, "Total Customers": 5716.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.73, "MEDIAN_SPEND_PER_CUSTOMER": 64.81 }, "geometry": { "type": "Point", "coordinates": [ -75.176074, 39.954198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p74-vs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.040823, "LONGITUDE": -75.030397, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 178.0, "POI_CBG": 421010331023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 610.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.39, "MEDIAN_SPEND_PER_CUSTOMER": 56.77 }, "geometry": { "type": "Point", "coordinates": [ -75.030397, 40.040823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp5-5fz", "LOCATION_NAME": "El Sabor Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981887, "LONGITUDE": -75.135939, "DATE_RANGE_START": 2023, "Total Visits": 81.0, "Total Visitors": 81.0, "POI_CBG": 421010157001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 162.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.09, "MEDIAN_SPEND_PER_CUSTOMER": 46.09 }, "geometry": { "type": "Point", "coordinates": [ -75.135939, 39.981887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2023, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 24.0, "Total Spend": 10374.0, "Total Transactions": 403.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.56, "MEDIAN_SPEND_PER_CUSTOMER": 26.93 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045462, "LONGITUDE": -75.087593, "DATE_RANGE_START": 2023, "Total Visits": 882.0, "Total Visitors": 580.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 11359.0, "Total Transactions": 516.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.14, "MEDIAN_SPEND_PER_CUSTOMER": 21.66 }, "geometry": { "type": "Point", "coordinates": [ -75.087593, 40.045462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2023, "Total Visits": 909.0, "Total Visitors": 571.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 21137.0, "Total Transactions": 1045.0, "Total Customers": 562.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.1, "MEDIAN_SPEND_PER_CUSTOMER": 21.19 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "LOCATION_NAME": "Thunderbird Salvage", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 128.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 399.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "LOCATION_NAME": "Drury Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2023, "Total Visits": 256.0, "Total Visitors": 190.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 25127.0, "Total Transactions": 696.0, "Total Customers": 471.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.32, "MEDIAN_SPEND_PER_CUSTOMER": 33.85 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1139.0, "Total Transactions": 61.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-5zz", "LOCATION_NAME": "Crunchik'n", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948207, "LONGITUDE": -75.159314, "DATE_RANGE_START": 2023, "Total Visits": 287.0, "Total Visitors": 224.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 119.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.83, "MEDIAN_SPEND_PER_CUSTOMER": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.159314, 39.948207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pjf-kpv", "LOCATION_NAME": "El Quetzal", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075688, "LONGITUDE": -75.206238, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 61.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.69, "MEDIAN_SPEND_PER_CUSTOMER": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.206238, 40.075688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pm9-tjv", "LOCATION_NAME": "Watches Etc", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949318, "LONGITUDE": -75.153835, "DATE_RANGE_START": 2023, "Total Visits": 832.0, "Total Visitors": 606.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 99.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153835, 39.949318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035587, "LONGITUDE": -75.217074, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 149.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 4335.0, "Total Transactions": 540.0, "Total Customers": 271.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.07, "MEDIAN_SPEND_PER_CUSTOMER": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -75.217074, 40.035587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.028767, "LONGITUDE": -75.206205, "DATE_RANGE_START": 2023, "Total Visits": 34.0, "Total Visitors": 26.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2423.0, "Total Transactions": 110.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.49, "MEDIAN_SPEND_PER_CUSTOMER": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.206205, 40.028767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.081559, "LONGITUDE": -75.024279, "DATE_RANGE_START": 2023, "Total Visits": 4351.0, "Total Visitors": 3039.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 37177.0, "Total Transactions": 575.0, "Total Customers": 402.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.46, "MEDIAN_SPEND_PER_CUSTOMER": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.024279, 40.081559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvw-hwk", "LOCATION_NAME": "Keren Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953492, "LONGITUDE": -75.218599, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.64, "MEDIAN_SPEND_PER_CUSTOMER": 5.59 }, "geometry": { "type": "Point", "coordinates": [ -75.218599, 39.953492 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2023, "Total Visits": 421.0, "Total Visitors": 329.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7543.0, "Total Transactions": 334.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.75, "MEDIAN_SPEND_PER_CUSTOMER": 24.17 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pmf-jgk", "LOCATION_NAME": "Square 1682", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950843, "LONGITUDE": -75.168591, "DATE_RANGE_START": 2023, "Total Visits": 571.0, "Total Visitors": 382.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 81.0, "Total Spend": 2834.0, "Total Transactions": 51.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.22, "MEDIAN_SPEND_PER_CUSTOMER": 49.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168591, 39.950843 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "LOCATION_NAME": "Cafe Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2023, "Total Visits": 258.0, "Total Visitors": 215.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1307.0, "Total Transactions": 44.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dw9-wtv", "LOCATION_NAME": "Revive 21", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.88045, "LONGITUDE": -75.241472, "DATE_RANGE_START": 2023, "Total Visits": 89.0, "Total Visitors": 63.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 44.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.42, "MEDIAN_SPEND_PER_CUSTOMER": 17.42 }, "geometry": { "type": "Point", "coordinates": [ -75.241472, 39.88045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-sbk", "LOCATION_NAME": "Izzy's 33", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927844, "LONGITUDE": -75.159073, "DATE_RANGE_START": 2023, "Total Visits": 582.0, "Total Visitors": 382.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1216.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.34, "MEDIAN_SPEND_PER_CUSTOMER": 56.34 }, "geometry": { "type": "Point", "coordinates": [ -75.159073, 39.927844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pnw-ndv", "LOCATION_NAME": "Cake Life Bake Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970456, "LONGITUDE": -75.134588, "DATE_RANGE_START": 2023, "Total Visits": 909.0, "Total Visitors": 711.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 681.0, "Total Transactions": 34.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.35, "MEDIAN_SPEND_PER_CUSTOMER": 18.87 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 39.970456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2023, "Total Visits": 462.0, "Total Visitors": 346.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 12412.0, "Total Transactions": 1529.0, "Total Customers": 635.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.23, "MEDIAN_SPEND_PER_CUSTOMER": 11.81 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2023, "Total Visits": 569.0, "Total Visitors": 490.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1272.0, "Total Transactions": 28.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.59, "MEDIAN_SPEND_PER_CUSTOMER": 17.14 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "LOCATION_NAME": "Evergreen Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949157, "LONGITUDE": -75.147635, "DATE_RANGE_START": 2023, "Total Visits": 700.0, "Total Visitors": 609.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2333.0, "Total Transactions": 215.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.22, "MEDIAN_SPEND_PER_CUSTOMER": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.147635, 39.949157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.037163, "LONGITUDE": -75.173091, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 6.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 114059.0, "Total Transactions": 3889.0, "Total Customers": 2221.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173091, 40.037163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgb-h89", "LOCATION_NAME": "Franklin Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.960316, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 93.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 152.0, "Total Spend": 4723.0, "Total Transactions": 182.0, "Total Customers": 144.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.960316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "LOCATION_NAME": "Mid Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 79.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 48.0, "Total Spend": 220.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.71, "MEDIAN_SPEND_PER_CUSTOMER": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pm4-pn5", "LOCATION_NAME": "Charlie's Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.93743, "LONGITUDE": -75.158033, "DATE_RANGE_START": 2023, "Total Visits": 499.0, "Total Visitors": 445.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 80.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158033, 39.93743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2023, "Total Visits": 375.0, "Total Visitors": 348.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2496.0, "Total Transactions": 162.0, "Total Customers": 144.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.19, "MEDIAN_SPEND_PER_CUSTOMER": 14.63 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-qxq", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.992469, "LONGITUDE": -75.100197, "DATE_RANGE_START": 2023, "Total Visits": 372.0, "Total Visitors": 319.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 7348.0, "Total Transactions": 159.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.19, "MEDIAN_SPEND_PER_CUSTOMER": 42.62 }, "geometry": { "type": "Point", "coordinates": [ -75.100197, 39.992469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-2kz", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075387, "LONGITUDE": -75.032059, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 44.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 6907.0, "Total Transactions": 149.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.5, "MEDIAN_SPEND_PER_CUSTOMER": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032059, 40.075387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "LOCATION_NAME": "Kohl's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.063862, "LONGITUDE": -75.238823, "DATE_RANGE_START": 2023, "Total Visits": 292.0, "Total Visitors": 257.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 26890.0, "Total Transactions": 525.0, "Total Customers": 428.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.97, "MEDIAN_SPEND_PER_CUSTOMER": 36.97 }, "geometry": { "type": "Point", "coordinates": [ -75.238823, 40.063862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pmb-kzz", "LOCATION_NAME": "Philadelphia Independents", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.951299, "LONGITUDE": -75.145296, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 423.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 106.0, "Total Spend": 214.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.28, "MEDIAN_SPEND_PER_CUSTOMER": 37.28 }, "geometry": { "type": "Point", "coordinates": [ -75.145296, 39.951299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "LOCATION_NAME": "Cantinho Brasileiro Restaurante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 71.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 966.0, "Total Transactions": 44.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.51, "MEDIAN_SPEND_PER_CUSTOMER": 33.75 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "LOCATION_NAME": "Cafe Soho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 220.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7453.0, "Total Transactions": 137.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.34, "MEDIAN_SPEND_PER_CUSTOMER": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "LOCATION_NAME": "Drinker's Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952102, "LONGITUDE": -75.172078, "DATE_RANGE_START": 2023, "Total Visits": 4324.0, "Total Visitors": 2851.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 20366.0, "Total Transactions": 745.0, "Total Customers": 465.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.01 }, "geometry": { "type": "Point", "coordinates": [ -75.172078, 39.952102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "LOCATION_NAME": "Ox Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2023, "Total Visits": 904.0, "Total Visitors": 754.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1947.0, "Total Transactions": 199.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.2, "MEDIAN_SPEND_PER_CUSTOMER": 12.12 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "LOCATION_NAME": "S & S Foods", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924761, "LONGITUDE": -75.144764, "DATE_RANGE_START": 2023, "Total Visits": 327.0, "Total Visitors": 256.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13330.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 276.43, "MEDIAN_SPEND_PER_CUSTOMER": 350.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144764, 39.924761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.037101, "LONGITUDE": -75.174649, "DATE_RANGE_START": 2023, "Total Visits": 605.0, "Total Visitors": 443.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5979.0, "Total Transactions": 138.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.86, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.174649, 40.037101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "LOCATION_NAME": "Wilson's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 132.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 476.0, "Total Transactions": 34.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.57, "MEDIAN_SPEND_PER_CUSTOMER": 16.23 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-p35", "LOCATION_NAME": "Fiore Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989223, "LONGITUDE": -75.127044, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 227.0, "POI_CBG": 421010163001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1667.0, "Total Transactions": 53.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.61, "MEDIAN_SPEND_PER_CUSTOMER": 31.35 }, "geometry": { "type": "Point", "coordinates": [ -75.127044, 39.989223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "LOCATION_NAME": "Venu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911206, "LONGITUDE": -75.170107, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 179.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 3446.0, "Total Transactions": 61.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170107, 39.911206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "LOCATION_NAME": "Bruno's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 269.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 279.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.96, "MEDIAN_SPEND_PER_CUSTOMER": 15.71 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-pvz", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994647, "LONGITUDE": -75.095265, "DATE_RANGE_START": 2023, "Total Visits": 142.0, "Total Visitors": 122.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1576.0, "Total Transactions": 75.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.77, "MEDIAN_SPEND_PER_CUSTOMER": 23.72 }, "geometry": { "type": "Point", "coordinates": [ -75.095265, 39.994647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "LOCATION_NAME": "Volo Coffeehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 104.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 11016.0, "Total Transactions": 861.0, "Total Customers": 495.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-5s5", "LOCATION_NAME": "Schmear It", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94245, "LONGITUDE": -75.161634, "DATE_RANGE_START": 2023, "Total Visits": 297.0, "Total Visitors": 190.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 657.0, "Total Spend": 1032.0, "Total Transactions": 105.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161634, 39.94245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.940574, "LONGITUDE": -75.165859, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2043.0, "Total Transactions": 65.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.69, "MEDIAN_SPEND_PER_CUSTOMER": 43.96 }, "geometry": { "type": "Point", "coordinates": [ -75.165859, 39.940574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp2-p5f", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.995054, "LONGITUDE": -75.095664, "DATE_RANGE_START": 2023, "Total Visits": 413.0, "Total Visitors": 371.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 167.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.25, "MEDIAN_SPEND_PER_CUSTOMER": 44.25 }, "geometry": { "type": "Point", "coordinates": [ -75.095664, 39.995054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@63s-dvw-f2k", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964788, "LONGITUDE": -75.22346, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 118.0, "POI_CBG": 421010103002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 371.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.95, "MEDIAN_SPEND_PER_CUSTOMER": 15.85 }, "geometry": { "type": "Point", "coordinates": [ -75.22346, 39.964788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7v-gkz", "LOCATION_NAME": "Villagio Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.053089, "LONGITUDE": -75.068847, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 106.0, "POI_CBG": 421010335003.0, "MEDIAN_DWELL": 76.0, "Total Spend": 1548.0, "Total Transactions": 55.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.95, "MEDIAN_SPEND_PER_CUSTOMER": 39.26 }, "geometry": { "type": "Point", "coordinates": [ -75.068847, 40.053089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "LOCATION_NAME": "Alaska King Crab House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2023, "Total Visits": 207.0, "Total Visitors": 183.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1530.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.95, "MEDIAN_SPEND_PER_CUSTOMER": 42.56 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "LOCATION_NAME": "Crown Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 331.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2027.0, "Total Transactions": 88.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.53, "MEDIAN_SPEND_PER_CUSTOMER": 24.39 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050173, "LONGITUDE": -75.066675, "DATE_RANGE_START": 2023, "Total Visits": 645.0, "Total Visitors": 480.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 751.0, "Total Transactions": 65.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.066675, 40.050173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pjf-kvf", "LOCATION_NAME": "Tailored Home", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.076272, "LONGITUDE": -75.207332, "DATE_RANGE_START": 2023, "Total Visits": 343.0, "Total Visitors": 269.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1117.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 445.77, "MEDIAN_SPEND_PER_CUSTOMER": 445.77 }, "geometry": { "type": "Point", "coordinates": [ -75.207332, 40.076272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-q9f", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.096122, "LONGITUDE": -74.9773, "DATE_RANGE_START": 2023, "Total Visits": 601.0, "Total Visitors": 427.0, "POI_CBG": 421010363021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.75, "MEDIAN_SPEND_PER_CUSTOMER": 26.75 }, "geometry": { "type": "Point", "coordinates": [ -74.9773, 40.096122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2023, "Total Visits": 1471.0, "Total Visitors": 1021.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 10.0, "Total Spend": 16063.0, "Total Transactions": 799.0, "Total Customers": 505.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.41, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2023, "Total Visits": 415.0, "Total Visitors": 415.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5544.0, "Total Transactions": 158.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 27.99 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "LOCATION_NAME": "Fiorino", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2464.0, "Total Transactions": 24.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.54, "MEDIAN_SPEND_PER_CUSTOMER": 109.64 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-yqf", "LOCATION_NAME": "Cily Chicken Rice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955428, "LONGITUDE": -75.155481, "DATE_RANGE_START": 2023, "Total Visits": 21368.0, "Total Visitors": 14769.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1980.0, "Total Transactions": 58.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.29, "MEDIAN_SPEND_PER_CUSTOMER": 31.29 }, "geometry": { "type": "Point", "coordinates": [ -75.155481, 39.955428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-9j9", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953355, "LONGITUDE": -75.165457, "DATE_RANGE_START": 2023, "Total Visits": 2563.0, "Total Visitors": 1698.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 58.0, "Total Spend": 38.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165457, 39.953355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "LOCATION_NAME": "Sorrento's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 134.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 340.0, "Total Spend": 2024.0, "Total Transactions": 89.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.81, "MEDIAN_SPEND_PER_CUSTOMER": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "LOCATION_NAME": "Vintage Wine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 5758.0, "Total Transactions": 96.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 59.79 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-vcq", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.99836, "LONGITUDE": -75.136275, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 163.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 137.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.31, "MEDIAN_SPEND_PER_CUSTOMER": 54.61 }, "geometry": { "type": "Point", "coordinates": [ -75.136275, 39.99836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pp5-7wk", "LOCATION_NAME": "La Esquina del Bronco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984841, "LONGITUDE": -75.133065, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 90.0, "POI_CBG": 421010162001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 217.0, "Total Transactions": 14.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133065, 39.984841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfx-kmk", "LOCATION_NAME": "Tsaocaa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02624, "LONGITUDE": -75.225272, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 180.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 268.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.11, "MEDIAN_SPEND_PER_CUSTOMER": 12.11 }, "geometry": { "type": "Point", "coordinates": [ -75.225272, 40.02624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "LOCATION_NAME": "BP", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032529, "LONGITUDE": -75.084542, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 129.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 23.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.08, "MEDIAN_SPEND_PER_CUSTOMER": 9.08 }, "geometry": { "type": "Point", "coordinates": [ -75.084542, 40.032529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "LOCATION_NAME": "A Z Budget", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2023, "Total Visits": 420.0, "Total Visitors": 388.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1007.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.92, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-yqf", "LOCATION_NAME": "Matcha Cafe Maiko", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95548, "LONGITUDE": -75.155132, "DATE_RANGE_START": 2023, "Total Visits": 21368.0, "Total Visitors": 14769.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2112.0, "Total Transactions": 207.0, "Total Customers": 173.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.155132, 39.95548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "LOCATION_NAME": "Ristorante Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 133.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3380.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 136.55, "MEDIAN_SPEND_PER_CUSTOMER": 136.55 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-223@628-pm4-n3q", "LOCATION_NAME": "Los Taquitos de Puebla", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93412, "LONGITUDE": -75.158732, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 192.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 132.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.06, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.158732, 39.93412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2023, "Total Visits": 224.0, "Total Visitors": 199.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3626.0, "Total Transactions": 198.0, "Total Customers": 154.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.3, "MEDIAN_SPEND_PER_CUSTOMER": 18.13 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "LOCATION_NAME": "John's Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.033242, "LONGITUDE": -75.177084, "DATE_RANGE_START": 2023, "Total Visits": 1630.0, "Total Visitors": 978.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3805.0, "Total Transactions": 155.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.35, "MEDIAN_SPEND_PER_CUSTOMER": 20.32 }, "geometry": { "type": "Point", "coordinates": [ -75.177084, 40.033242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "LOCATION_NAME": "Suburban Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 208.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 242.0, "Total Transactions": 9.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.63, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@63s-dw9-7kf", "LOCATION_NAME": "InMotion", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.877238, "LONGITUDE": -75.244112, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 730.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2082.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.11, "MEDIAN_SPEND_PER_CUSTOMER": 49.11 }, "geometry": { "type": "Point", "coordinates": [ -75.244112, 39.877238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "LOCATION_NAME": "Galaxy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010338004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3064.0, "Total Transactions": 106.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.09, "MEDIAN_SPEND_PER_CUSTOMER": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-whq", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.966425, "LONGITUDE": -75.160013, "DATE_RANGE_START": 2023, "Total Visits": 2344.0, "Total Visitors": 1363.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 44.0, "Total Spend": 247.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.55, "MEDIAN_SPEND_PER_CUSTOMER": 98.55 }, "geometry": { "type": "Point", "coordinates": [ -75.160013, 39.966425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2023, "Total Visits": 1434.0, "Total Visitors": 1015.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 45829.0, "Total Transactions": 2371.0, "Total Customers": 1261.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.28, "MEDIAN_SPEND_PER_CUSTOMER": 20.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-35z", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957828, "LONGITUDE": -75.204349, "DATE_RANGE_START": 2023, "Total Visits": 867.0, "Total Visitors": 577.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 15090.0, "Total Transactions": 742.0, "Total Customers": 435.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.38, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.204349, 39.957828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.01646, "LONGITUDE": -75.150569, "DATE_RANGE_START": 2023, "Total Visits": 351.0, "Total Visitors": 187.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 402.0, "Total Spend": 936.0, "Total Transactions": 33.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.2, "MEDIAN_SPEND_PER_CUSTOMER": 21.42 }, "geometry": { "type": "Point", "coordinates": [ -75.150569, 40.01646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2023, "Total Visits": 509.0, "Total Visitors": 482.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 27433.0, "Total Transactions": 453.0, "Total Customers": 390.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.38, "MEDIAN_SPEND_PER_CUSTOMER": 42.64 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-j35", "LOCATION_NAME": "Barnes and Noble", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.951378, "LONGITUDE": -75.169175, "DATE_RANGE_START": 2023, "Total Visits": 713.0, "Total Visitors": 490.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 312.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.1, "MEDIAN_SPEND_PER_CUSTOMER": 25.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169175, 39.951378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9w-sdv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.123431, "LONGITUDE": -75.01617, "DATE_RANGE_START": 2023, "Total Visits": 730.0, "Total Visitors": 602.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 24.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.08, "MEDIAN_SPEND_PER_CUSTOMER": 5.08 }, "geometry": { "type": "Point", "coordinates": [ -75.01617, 40.123431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pm3-vpv", "LOCATION_NAME": "Philadelphia Scooters", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.936705, "LONGITUDE": -75.186573, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 224.0, "POI_CBG": 421010020002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1677.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 172.79, "MEDIAN_SPEND_PER_CUSTOMER": 259.19 }, "geometry": { "type": "Point", "coordinates": [ -75.186573, 39.936705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pgb-47q", "LOCATION_NAME": "Curbside gyro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962373, "LONGITUDE": -75.162918, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 15.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 120.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 14.84 }, "geometry": { "type": "Point", "coordinates": [ -75.162918, 39.962373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2023, "Total Visits": 1043.0, "Total Visitors": 660.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 8994.0, "Total Transactions": 524.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.27, "MEDIAN_SPEND_PER_CUSTOMER": 17.54 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg4-grk", "LOCATION_NAME": "1beautysupplypa", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.030388, "LONGITUDE": -75.181136, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 132.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 4520.0, "Total Transactions": 155.0, "Total Customers": 114.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 19.15 }, "geometry": { "type": "Point", "coordinates": [ -75.181136, 40.030388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.917209, "LONGITUDE": -75.185417, "DATE_RANGE_START": 2023, "Total Visits": 539.0, "Total Visitors": 448.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 10016.0, "Total Transactions": 500.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.185417, 39.917209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pj9-6kz", "LOCATION_NAME": "Imperial Palace Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043524, "LONGITUDE": -75.14338, "DATE_RANGE_START": 2023, "Total Visits": 199.0, "Total Visitors": 199.0, "POI_CBG": 421010276003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 23796.0, "Total Transactions": 74.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 220.0, "MEDIAN_SPEND_PER_CUSTOMER": 695.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14338, 40.043524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2023, "Total Visits": 53.0, "Total Visitors": 36.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 26783.0, "Total Transactions": 354.0, "Total Customers": 291.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.71, "MEDIAN_SPEND_PER_CUSTOMER": 50.65 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2023, "Total Visits": 11074.0, "Total Visitors": 6611.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 7539.0, "Total Transactions": 536.0, "Total Customers": 418.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.83, "MEDIAN_SPEND_PER_CUSTOMER": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmb-9mk", "LOCATION_NAME": "Trader Joe's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954113, "LONGITUDE": -75.16243, "DATE_RANGE_START": 2023, "Total Visits": 1919.0, "Total Visitors": 1353.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1719.0, "Total Transactions": 26.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.21, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16243, 39.954113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2023, "Total Visits": 328.0, "Total Visitors": 328.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7733.0, "Total Transactions": 842.0, "Total Customers": 478.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.32, "MEDIAN_SPEND_PER_CUSTOMER": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dtn-hqz", "LOCATION_NAME": "Bruegger's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.89519, "LONGITUDE": -75.227949, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4186.0, "Total Transactions": 276.0, "Total Customers": 252.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.89, "MEDIAN_SPEND_PER_CUSTOMER": 13.97 }, "geometry": { "type": "Point", "coordinates": [ -75.227949, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2023, "Total Visits": 705.0, "Total Visitors": 482.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4746.0, "Total Transactions": 597.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.99, "MEDIAN_SPEND_PER_CUSTOMER": 9.23 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2023, "Total Visits": 442.0, "Total Visitors": 205.0, "POI_CBG": 421010347013.0, "MEDIAN_DWELL": 86.0, "Total Spend": 4544.0, "Total Transactions": 318.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.55, "MEDIAN_SPEND_PER_CUSTOMER": 14.86 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "LOCATION_NAME": "The Book Trader", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 157.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1403.0, "Total Transactions": 58.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.69, "MEDIAN_SPEND_PER_CUSTOMER": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2023, "Total Visits": 7435.0, "Total Visitors": 4989.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 22.0, "Total Spend": 394336.0, "Total Transactions": 7784.0, "Total Customers": 4328.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.77, "MEDIAN_SPEND_PER_CUSTOMER": 54.28 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-mx5", "LOCATION_NAME": "Real Food Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952801, "LONGITUDE": -75.169226, "DATE_RANGE_START": 2023, "Total Visits": 3999.0, "Total Visitors": 2387.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 97.0, "Total Spend": 1938.0, "Total Transactions": 110.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.29, "MEDIAN_SPEND_PER_CUSTOMER": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.169226, 39.952801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p8j-94v", "LOCATION_NAME": "Panda Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034643, "LONGITUDE": -75.044103, "DATE_RANGE_START": 2023, "Total Visits": 400.0, "Total Visitors": 257.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 310.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.85, "MEDIAN_SPEND_PER_CUSTOMER": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.044103, 40.034643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2023, "Total Visits": 783.0, "Total Visitors": 609.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 12259.0, "Total Transactions": 787.0, "Total Customers": 509.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.77, "MEDIAN_SPEND_PER_CUSTOMER": 17.47 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-phy-kmk", "LOCATION_NAME": "El Sabor De Maria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025858, "LONGITUDE": -75.132587, "DATE_RANGE_START": 2023, "Total Visits": 1511.0, "Total Visitors": 1142.0, "POI_CBG": 421010286003.0, "MEDIAN_DWELL": 23.0, "Total Spend": 760.0, "Total Transactions": 21.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.68, "MEDIAN_SPEND_PER_CUSTOMER": 44.79 }, "geometry": { "type": "Point", "coordinates": [ -75.132587, 40.025858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.046178, "LONGITUDE": -75.195832, "DATE_RANGE_START": 2023, "Total Visits": 282.0, "Total Visitors": 187.0, "POI_CBG": 421010236003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 732.0, "Total Transactions": 53.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.06, "MEDIAN_SPEND_PER_CUSTOMER": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.195832, 40.046178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pp2-85f", "LOCATION_NAME": "Tony's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985499, "LONGITUDE": -75.106228, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010180021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1645.0, "Total Transactions": 63.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.12, "MEDIAN_SPEND_PER_CUSTOMER": 32.21 }, "geometry": { "type": "Point", "coordinates": [ -75.106228, 39.985499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2023, "Total Visits": 1438.0, "Total Visitors": 987.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 95062.0, "Total Transactions": 5956.0, "Total Customers": 2628.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.57, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "LOCATION_NAME": "Pat's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 138.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 46.0, "Total Spend": 2226.0, "Total Transactions": 153.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.24, "MEDIAN_SPEND_PER_CUSTOMER": 15.59 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029054, "LONGITUDE": -75.099607, "DATE_RANGE_START": 2023, "Total Visits": 2440.0, "Total Visitors": 1968.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 41043.0, "Total Transactions": 2217.0, "Total Customers": 1383.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.3, "MEDIAN_SPEND_PER_CUSTOMER": 21.69 }, "geometry": { "type": "Point", "coordinates": [ -75.099607, 40.029054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2023, "Total Visits": 392.0, "Total Visitors": 329.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3295.0, "Total Transactions": 207.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 15.43 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "LOCATION_NAME": "Red Poke Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2023, "Total Visits": 94.0, "Total Visitors": 94.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 19.0, "Total Spend": 894.0, "Total Transactions": 53.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.91, "MEDIAN_SPEND_PER_CUSTOMER": 16.11 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-pgk", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.992681, "LONGITUDE": -75.14772, "DATE_RANGE_START": 2023, "Total Visits": 169.0, "Total Visitors": 169.0, "POI_CBG": 421010164003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 724.0, "Total Transactions": 23.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.08, "MEDIAN_SPEND_PER_CUSTOMER": 27.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14772, 39.992681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "LOCATION_NAME": "Tony Luke's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2023, "Total Visits": 262.0, "Total Visitors": 147.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 185.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.91, "MEDIAN_SPEND_PER_CUSTOMER": 20.91 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "LOCATION_NAME": "Old English Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 167.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.68, "MEDIAN_SPEND_PER_CUSTOMER": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.915658, "LONGITUDE": -75.139581, "DATE_RANGE_START": 2023, "Total Visits": 41.0, "Total Visitors": 28.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1442.0, "Total Transactions": 75.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.98, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139581, 39.915658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "LOCATION_NAME": "Cafe Old Nelson", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954821, "LONGITUDE": -75.164693, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 18.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2218.0, "Total Transactions": 188.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.75, "MEDIAN_SPEND_PER_CUSTOMER": 13.84 }, "geometry": { "type": "Point", "coordinates": [ -75.164693, 39.954821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-224@628-pmf-tvz", "LOCATION_NAME": "Rittenhouse Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948989, "LONGITUDE": -75.169546, "DATE_RANGE_START": 2023, "Total Visits": 1680.0, "Total Visitors": 1080.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 154.0, "Total Spend": 6153.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 114.62, "MEDIAN_SPEND_PER_CUSTOMER": 114.62 }, "geometry": { "type": "Point", "coordinates": [ -75.169546, 39.948989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.060398, "LONGITUDE": -75.164249, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 19850.0, "Total Transactions": 328.0, "Total Customers": 264.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.93, "MEDIAN_SPEND_PER_CUSTOMER": 36.15 }, "geometry": { "type": "Point", "coordinates": [ -75.164249, 40.060398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-qpv", "LOCATION_NAME": "Shalom Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979511, "LONGITUDE": -75.26908, "DATE_RANGE_START": 2023, "Total Visits": 482.0, "Total Visitors": 421.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 33.0, "Total Spend": 126.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.18, "MEDIAN_SPEND_PER_CUSTOMER": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.26908, 39.979511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-xbk", "LOCATION_NAME": "Ricky Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951154, "LONGITUDE": -75.14673, "DATE_RANGE_START": 2023, "Total Visits": 436.0, "Total Visitors": 393.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 295.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14673, 39.951154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-dd9", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991806, "LONGITUDE": -75.113116, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010178003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 624.0, "Total Transactions": 35.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113116, 39.991806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmd-vj9", "LOCATION_NAME": "4 Seasons Food Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.949894, "LONGITUDE": -75.176084, "DATE_RANGE_START": 2023, "Total Visits": 1017.0, "Total Visitors": 623.0, "POI_CBG": 421010008031.0, "MEDIAN_DWELL": 79.0, "Total Spend": 36.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.23, "MEDIAN_SPEND_PER_CUSTOMER": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -75.176084, 39.949894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwg-f4v", "LOCATION_NAME": "Lucky Star Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913533, "LONGITUDE": -75.242365, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 174.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 56.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.94, "MEDIAN_SPEND_PER_CUSTOMER": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.242365, 39.913533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2023, "Total Visits": 502.0, "Total Visitors": 327.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 9103.0, "Total Transactions": 497.0, "Total Customers": 359.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.56, "MEDIAN_SPEND_PER_CUSTOMER": 20.31 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "LOCATION_NAME": "The Last Word Bookshop", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 16.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2361.0, "Total Transactions": 106.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.28, "MEDIAN_SPEND_PER_CUSTOMER": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-49z", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921875, "LONGITUDE": -75.18741, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 24821.0, "Total Transactions": 1701.0, "Total Customers": 1172.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.73, "MEDIAN_SPEND_PER_CUSTOMER": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18741, 39.921875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pp4-snq", "LOCATION_NAME": "Good Time Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.97726, "LONGITUDE": -75.123641, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 84.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 36.0, "Total Spend": 1672.0, "Total Transactions": 25.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.42, "MEDIAN_SPEND_PER_CUSTOMER": 36.78 }, "geometry": { "type": "Point", "coordinates": [ -75.123641, 39.97726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2023, "Total Visits": 704.0, "Total Visitors": 645.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 12580.0, "Total Transactions": 740.0, "Total Customers": 552.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.91, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pj8-rp9", "LOCATION_NAME": "Kid City", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.032633, "LONGITUDE": -75.101129, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 5052.0, "Total Transactions": 106.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.17, "MEDIAN_SPEND_PER_CUSTOMER": 26.76 }, "geometry": { "type": "Point", "coordinates": [ -75.101129, 40.032633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949481, "LONGITUDE": -75.166658, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10978.0, "Total Transactions": 859.0, "Total Customers": 571.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.1, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166658, 39.949481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phz-8n5", "LOCATION_NAME": "Main Garden Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029984, "LONGITUDE": -75.132152, "DATE_RANGE_START": 2023, "Total Visits": 417.0, "Total Visitors": 160.0, "POI_CBG": 421010285001.0, "MEDIAN_DWELL": 718.0, "Total Spend": 251.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.0, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132152, 40.029984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2023, "Total Visits": 507.0, "Total Visitors": 418.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 253.0, "Total Transactions": 19.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.09, "MEDIAN_SPEND_PER_CUSTOMER": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-wrk", "LOCATION_NAME": "Lulu Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955024, "LONGITUDE": -75.212218, "DATE_RANGE_START": 2023, "Total Visits": 178.0, "Total Visitors": 178.0, "POI_CBG": 421010086012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 576.0, "Total Transactions": 48.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.85, "MEDIAN_SPEND_PER_CUSTOMER": 8.89 }, "geometry": { "type": "Point", "coordinates": [ -75.212218, 39.955024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-gc5", "LOCATION_NAME": "Vault Vine", "TOP_CATEGORY": "Florists", "LATITUDE": 40.013647, "LONGITUDE": -75.192647, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 79.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 307.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.76, "MEDIAN_SPEND_PER_CUSTOMER": 31.27 }, "geometry": { "type": "Point", "coordinates": [ -75.192647, 40.013647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22c@628-pj6-jsq", "LOCATION_NAME": "Jopok Topokki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044523, "LONGITUDE": -75.117651, "DATE_RANGE_START": 2023, "Total Visits": 4739.0, "Total Visitors": 2381.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1362.0, "Total Transactions": 63.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.21, "MEDIAN_SPEND_PER_CUSTOMER": 18.44 }, "geometry": { "type": "Point", "coordinates": [ -75.117651, 40.044523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065978, "LONGITUDE": -75.144349, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010266001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1067.0, "Total Transactions": 36.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.3, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144349, 40.065978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "LOCATION_NAME": "Grace Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 152.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 64.0, "Total Spend": 447.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.28, "MEDIAN_SPEND_PER_CUSTOMER": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "LOCATION_NAME": "Philly Tacos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2023, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 7392.0, "Total Transactions": 413.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "LOCATION_NAME": "City View Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 144.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 3476.0, "Total Transactions": 235.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.07, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "LOCATION_NAME": "Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950043, "LONGITUDE": -75.162325, "DATE_RANGE_START": 2023, "Total Visits": 61.0, "Total Visitors": 39.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 88481.0, "Total Transactions": 1920.0, "Total Customers": 1511.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.16, "MEDIAN_SPEND_PER_CUSTOMER": 41.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162325, 39.950043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "LOCATION_NAME": "Brickbat Books", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": null, "Total Spend": 1125.0, "Total Transactions": 46.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 20.95 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pgh-v2k", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.98581, "LONGITUDE": -75.155604, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 18.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 8396.0, "Total Transactions": 478.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 16.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155604, 39.98581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7yv", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953671, "LONGITUDE": -75.159795, "DATE_RANGE_START": 2023, "Total Visits": 5172.0, "Total Visitors": 3775.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 6800.0, "Total Transactions": 458.0, "Total Customers": 336.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.43, "MEDIAN_SPEND_PER_CUSTOMER": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.159795, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmd-rx5", "LOCATION_NAME": "Cotoletta Fitler Square", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947447, "LONGITUDE": -75.179191, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 122.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 531.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 158.27, "MEDIAN_SPEND_PER_CUSTOMER": 211.81 }, "geometry": { "type": "Point", "coordinates": [ -75.179191, 39.947447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pfz-bhq", "LOCATION_NAME": "Valerio Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025342, "LONGITUDE": -75.222719, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 159.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1322.0, "Total Transactions": 140.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.58, "MEDIAN_SPEND_PER_CUSTOMER": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -75.222719, 40.025342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "LOCATION_NAME": "Chicko Tako", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 145.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1606.0, "Total Transactions": 89.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 18.16 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-9cq", "LOCATION_NAME": "Lee's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948415, "LONGITUDE": -75.217146, "DATE_RANGE_START": 2023, "Total Visits": 130.0, "Total Visitors": 130.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1622.0, "Total Transactions": 66.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.96, "MEDIAN_SPEND_PER_CUSTOMER": 15.88 }, "geometry": { "type": "Point", "coordinates": [ -75.217146, 39.948415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22j@628-pmf-8vz", "LOCATION_NAME": "University Of Penn Food Court", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95305, "LONGITUDE": -75.192581, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 357.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 142.45, "MEDIAN_SPEND_PER_CUSTOMER": 142.45 }, "geometry": { "type": "Point", "coordinates": [ -75.192581, 39.95305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-pj4-xwk", "LOCATION_NAME": "Tribeca Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007053, "LONGITUDE": -75.151464, "DATE_RANGE_START": 2023, "Total Visits": 7869.0, "Total Visitors": 3352.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 202.0, "Total Spend": 888.0, "Total Transactions": 125.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.22, "MEDIAN_SPEND_PER_CUSTOMER": 11.42 }, "geometry": { "type": "Point", "coordinates": [ -75.151464, 40.007053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvw-hwk", "LOCATION_NAME": "Quick Stop Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953566, "LONGITUDE": -75.219295, "DATE_RANGE_START": 2023, "Total Visits": 164.0, "Total Visitors": 120.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 21.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219295, 39.953566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.9511, "LONGITUDE": -75.199, "DATE_RANGE_START": 2023, "Total Visits": 1095.0, "Total Visitors": 485.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 37874.0, "Total Transactions": 4270.0, "Total Customers": 1610.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.01, "MEDIAN_SPEND_PER_CUSTOMER": 13.33 }, "geometry": { "type": "Point", "coordinates": [ -75.199, 39.9511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947361, "LONGITUDE": -75.228904, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010073004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9994.0, "Total Transactions": 514.0, "Total Customers": 306.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.228904, 39.947361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2023, "Total Visits": 631.0, "Total Visitors": 504.0, "POI_CBG": 421010096001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1813.0, "Total Transactions": 108.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.52, "MEDIAN_SPEND_PER_CUSTOMER": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2023, "Total Visits": 268.0, "Total Visitors": 227.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 422.0, "Total Transactions": 16.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.6, "MEDIAN_SPEND_PER_CUSTOMER": 29.78 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-73q", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950611, "LONGITUDE": -75.163568, "DATE_RANGE_START": 2023, "Total Visits": 1572.0, "Total Visitors": 1091.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6270.0, "Total Transactions": 218.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.98, "MEDIAN_SPEND_PER_CUSTOMER": 24.97 }, "geometry": { "type": "Point", "coordinates": [ -75.163568, 39.950611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnw-yvz", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.971141, "LONGITUDE": -75.151064, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 11.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 638.0, "Total Transactions": 28.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.48, "MEDIAN_SPEND_PER_CUSTOMER": 24.93 }, "geometry": { "type": "Point", "coordinates": [ -75.151064, 39.971141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8f-djv", "LOCATION_NAME": "Kim's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.01711, "LONGITUDE": -75.084033, "DATE_RANGE_START": 2023, "Total Visits": 489.0, "Total Visitors": 368.0, "POI_CBG": 421010300006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 297.0, "Total Transactions": 25.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.84, "MEDIAN_SPEND_PER_CUSTOMER": 11.79 }, "geometry": { "type": "Point", "coordinates": [ -75.084033, 40.01711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-p8n-cnq", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.036246, "LONGITUDE": -75.070259, "DATE_RANGE_START": 2023, "Total Visits": 1399.0, "Total Visitors": 953.0, "POI_CBG": 421010313003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 50068.0, "Total Transactions": 2687.0, "Total Customers": 1171.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.62, "MEDIAN_SPEND_PER_CUSTOMER": 23.02 }, "geometry": { "type": "Point", "coordinates": [ -75.070259, 40.036246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-mzf", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.958752, "LONGITUDE": -75.225344, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 9.0, "Total Spend": 652.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.0, "MEDIAN_SPEND_PER_CUSTOMER": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225344, 39.958752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "LOCATION_NAME": "Spasso Italian Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2023, "Total Visits": 316.0, "Total Visitors": 213.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 93.0, "Total Spend": 10461.0, "Total Transactions": 98.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.84, "MEDIAN_SPEND_PER_CUSTOMER": 118.98 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-gtv", "LOCATION_NAME": "Cosi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980925, "LONGITUDE": -75.157606, "DATE_RANGE_START": 2023, "Total Visits": 3701.0, "Total Visitors": 2096.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 1716.0, "Total Transactions": 90.0, "Total Customers": 73.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.9, "MEDIAN_SPEND_PER_CUSTOMER": 17.45 }, "geometry": { "type": "Point", "coordinates": [ -75.157606, 39.980925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-yd9", "LOCATION_NAME": "The Merrygold Shop", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.940234, "LONGITUDE": -75.149251, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 232.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 92.5, "MEDIAN_SPEND_PER_CUSTOMER": 92.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149251, 39.940234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2023, "Total Visits": 11074.0, "Total Visitors": 6611.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2599.0, "Total Transactions": 529.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.2, "MEDIAN_SPEND_PER_CUSTOMER": 5.63 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-pn5", "LOCATION_NAME": "Sam's Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993874, "LONGITUDE": -75.130398, "DATE_RANGE_START": 2023, "Total Visits": 478.0, "Total Visitors": 339.0, "POI_CBG": 421010176014.0, "MEDIAN_DWELL": 2.0, "Total Spend": 706.0, "Total Transactions": 81.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.2, "MEDIAN_SPEND_PER_CUSTOMER": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130398, 39.993874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-wkz", "LOCATION_NAME": "rue21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088728, "LONGITUDE": -74.961198, "DATE_RANGE_START": 2023, "Total Visits": 592.0, "Total Visitors": 496.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 59.0, "Total Spend": 2006.0, "Total Transactions": 58.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.99, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961198, 40.088728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-649", "LOCATION_NAME": "The Barn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948417, "LONGITUDE": -75.22137, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 94.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 3549.0, "Total Transactions": 101.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.35 }, "geometry": { "type": "Point", "coordinates": [ -75.22137, 39.948417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-pvz", "LOCATION_NAME": "12 Steps Down", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.939056, "LONGITUDE": -75.157629, "DATE_RANGE_START": 2023, "Total Visits": 276.0, "Total Visitors": 242.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 57.0, "Total Spend": 96.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.5, "MEDIAN_SPEND_PER_CUSTOMER": 38.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157629, 39.939056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phd-h89", "LOCATION_NAME": "El Limon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002817, "LONGITUDE": -75.22227, "DATE_RANGE_START": 2023, "Total Visits": 485.0, "Total Visitors": 426.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 305.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.82, "MEDIAN_SPEND_PER_CUSTOMER": 30.82 }, "geometry": { "type": "Point", "coordinates": [ -75.22227, 40.002817 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pnx-7yv", "LOCATION_NAME": "Creep Records", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.961361, "LONGITUDE": -75.141595, "DATE_RANGE_START": 2023, "Total Visits": 312.0, "Total Visitors": 289.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3284.0, "Total Transactions": 120.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.141595, 39.961361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dwf-td9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902302, "LONGITUDE": -75.242047, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5029.0, "Total Transactions": 296.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.27, "MEDIAN_SPEND_PER_CUSTOMER": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.242047, 39.902302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "LOCATION_NAME": "Clarkville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949709, "LONGITUDE": -75.209372, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 10511.0, "Total Transactions": 257.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.45, "MEDIAN_SPEND_PER_CUSTOMER": 37.14 }, "geometry": { "type": "Point", "coordinates": [ -75.209372, 39.949709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2023, "Total Visits": 13803.0, "Total Visitors": 7404.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 99.0, "Total Spend": 8955.0, "Total Transactions": 640.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 14.77 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "LOCATION_NAME": "Trio Delight Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037712, "LONGITUDE": -75.118145, "DATE_RANGE_START": 2023, "Total Visits": 381.0, "Total Visitors": 341.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 1304.0, "Total Transactions": 69.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118145, 40.037712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pfz-ch5", "LOCATION_NAME": "Pilgrim Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022764, "LONGITUDE": -75.219439, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 291.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3704.0, "Total Transactions": 358.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219439, 40.022764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5fz", "LOCATION_NAME": "Zio's Brick Oven Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950079, "LONGITUDE": -75.161743, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 213.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4766.0, "Total Transactions": 353.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.96, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.161743, 39.950079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2023, "Total Visits": 445.0, "Total Visitors": 349.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5202.0, "Total Transactions": 651.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.85, "MEDIAN_SPEND_PER_CUSTOMER": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-phy-hdv", "LOCATION_NAME": "Kim's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022409, "LONGITUDE": -75.133408, "DATE_RANGE_START": 2023, "Total Visits": 478.0, "Total Visitors": 138.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 805.0, "Total Spend": 75.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.69, "MEDIAN_SPEND_PER_CUSTOMER": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.133408, 40.022409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2023, "Total Visits": 1741.0, "Total Visitors": 770.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 802.0, "Total Spend": 14351.0, "Total Transactions": 271.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.7, "MEDIAN_SPEND_PER_CUSTOMER": 53.82 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-5fz", "LOCATION_NAME": "Express Weed Mart", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949594, "LONGITUDE": -75.16074, "DATE_RANGE_START": 2023, "Total Visits": 3282.0, "Total Visitors": 2360.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 800.0, "Total Transactions": 28.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.17, "MEDIAN_SPEND_PER_CUSTOMER": 26.84 }, "geometry": { "type": "Point", "coordinates": [ -75.16074, 39.949594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-225@628-pgb-8y9", "LOCATION_NAME": "Parkway Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.966726, "LONGITUDE": -75.177662, "DATE_RANGE_START": 2023, "Total Visits": 1329.0, "Total Visitors": 695.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 154.0, "Total Spend": 1611.0, "Total Transactions": 38.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.23, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177662, 39.966726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-3h5", "LOCATION_NAME": "19 Degrees", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941163, "LONGITUDE": -75.17414, "DATE_RANGE_START": 2023, "Total Visits": 74.0, "Total Visitors": 74.0, "POI_CBG": 421010019001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 187.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.7, "MEDIAN_SPEND_PER_CUSTOMER": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17414, 39.941163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-pg2-2zf", "LOCATION_NAME": "Mi 'N Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024353, "LONGITUDE": -75.220723, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 114.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 58.0, "Total Spend": 2524.0, "Total Transactions": 108.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.66, "MEDIAN_SPEND_PER_CUSTOMER": 24.37 }, "geometry": { "type": "Point", "coordinates": [ -75.220723, 40.024353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "LOCATION_NAME": "Gaffney Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2023, "Total Visits": 115.0, "Total Visitors": 90.0, "POI_CBG": 421010246001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 2580.0, "Total Transactions": 65.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.18, "MEDIAN_SPEND_PER_CUSTOMER": 20.95 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-xh5", "LOCATION_NAME": "C & R Building Supplies", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.937501, "LONGITUDE": -75.165521, "DATE_RANGE_START": 2023, "Total Visits": 802.0, "Total Visitors": 624.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1759.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 565.9, "MEDIAN_SPEND_PER_CUSTOMER": 701.96 }, "geometry": { "type": "Point", "coordinates": [ -75.165521, 39.937501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-649", "LOCATION_NAME": "Cedar Park Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947827, "LONGITUDE": -75.221935, "DATE_RANGE_START": 2023, "Total Visits": 757.0, "Total Visitors": 521.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1428.0, "Total Transactions": 46.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.221935, 39.947827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "LOCATION_NAME": "Pho Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 229.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3942.0, "Total Transactions": 110.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.46, "MEDIAN_SPEND_PER_CUSTOMER": 41.74 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-syv", "LOCATION_NAME": "China Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.981642, "LONGITUDE": -75.144056, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 109.0, "POI_CBG": 421010156002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 321.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144056, 39.981642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4700.0, "Total Transactions": 187.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.66, "MEDIAN_SPEND_PER_CUSTOMER": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pm9-hyv", "LOCATION_NAME": "Grove Supply", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.918444, "LONGITUDE": -75.177883, "DATE_RANGE_START": 2023, "Total Visits": 100.0, "Total Visitors": 84.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 697.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 213.37, "MEDIAN_SPEND_PER_CUSTOMER": 278.21 }, "geometry": { "type": "Point", "coordinates": [ -75.177883, 39.918444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "LOCATION_NAME": "Girard Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 149.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1048.0, "Total Transactions": 104.0, "Total Customers": 56.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.88, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2023, "Total Visits": 883.0, "Total Visitors": 462.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 13.0, "Total Spend": 15161.0, "Total Transactions": 730.0, "Total Customers": 507.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.8, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@63s-dw2-4gk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96557, "LONGITUDE": -75.24667, "DATE_RANGE_START": 2023, "Total Visits": 218.0, "Total Visitors": 140.0, "POI_CBG": 421010096004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2563.0, "Total Transactions": 134.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.44, "MEDIAN_SPEND_PER_CUSTOMER": 14.81 }, "geometry": { "type": "Point", "coordinates": [ -75.24667, 39.96557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "LOCATION_NAME": "Easy Pickins", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950717, "LONGITUDE": -75.160517, "DATE_RANGE_START": 2023, "Total Visits": 4506.0, "Total Visitors": 3150.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 659.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160517, 39.950717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.928144, "LONGITUDE": -75.230166, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 103.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.99, "MEDIAN_SPEND_PER_CUSTOMER": 40.99 }, "geometry": { "type": "Point", "coordinates": [ -75.230166, 39.928144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 450.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 43719.0, "Total Transactions": 953.0, "Total Customers": 641.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.46, "MEDIAN_SPEND_PER_CUSTOMER": 46.27 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj3-brk", "LOCATION_NAME": "Brothers Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.011083, "LONGITUDE": -75.154035, "DATE_RANGE_START": 2023, "Total Visits": 91.0, "Total Visitors": 84.0, "POI_CBG": 421010201021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 80.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154035, 40.011083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "LOCATION_NAME": "Wooden Shoe Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.94201, "LONGITUDE": -75.154214, "DATE_RANGE_START": 2023, "Total Visits": 822.0, "Total Visitors": 693.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2456.0, "Total Transactions": 81.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.79 }, "geometry": { "type": "Point", "coordinates": [ -75.154214, 39.94201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-snq", "LOCATION_NAME": "Atlanta Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922758, "LONGITUDE": -75.186158, "DATE_RANGE_START": 2023, "Total Visits": 199.0, "Total Visitors": 177.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 13.0, "Total Spend": 801.0, "Total Transactions": 36.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.43, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.186158, 39.922758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 148.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3850.0, "Total Transactions": 152.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.19, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924715, "LONGITUDE": -75.169142, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2726.0, "Total Transactions": 185.0, "Total Customers": 135.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.63, "MEDIAN_SPEND_PER_CUSTOMER": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169142, 39.924715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "LOCATION_NAME": "City Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010042013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2933.0, "Total Transactions": 115.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.25, "MEDIAN_SPEND_PER_CUSTOMER": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "LOCATION_NAME": "Hong Kong Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2023, "Total Visits": 827.0, "Total Visitors": 576.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1155.0, "Total Transactions": 23.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.27, "MEDIAN_SPEND_PER_CUSTOMER": 46.23 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvr-7bk", "LOCATION_NAME": "Woodland Village Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927376, "LONGITUDE": -75.23139, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 105.0, "POI_CBG": 421010066004.0, "MEDIAN_DWELL": 18.0, "Total Spend": 193.0, "Total Transactions": 26.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 7.02 }, "geometry": { "type": "Point", "coordinates": [ -75.23139, 39.927376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2023, "Total Visits": 2147.0, "Total Visitors": 1291.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 17.0, "Total Spend": 57396.0, "Total Transactions": 1483.0, "Total Customers": 659.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.88, "MEDIAN_SPEND_PER_CUSTOMER": 34.23 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002735, "LONGITUDE": -75.214447, "DATE_RANGE_START": 2023, "Total Visits": 2146.0, "Total Visitors": 1136.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 8086.0, "Total Transactions": 1088.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.67, "MEDIAN_SPEND_PER_CUSTOMER": 9.42 }, "geometry": { "type": "Point", "coordinates": [ -75.214447, 40.002735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 184.0, "POI_CBG": 421010278002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3951.0, "Total Transactions": 264.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.16, "MEDIAN_SPEND_PER_CUSTOMER": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-7wk", "LOCATION_NAME": "The Board & Brew", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953697, "LONGITUDE": -75.189364, "DATE_RANGE_START": 2023, "Total Visits": 580.0, "Total Visitors": 367.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 676.0, "Total Transactions": 25.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.95, "MEDIAN_SPEND_PER_CUSTOMER": 21.98 }, "geometry": { "type": "Point", "coordinates": [ -75.189364, 39.953697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "LOCATION_NAME": "New England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2023, "Total Visits": 332.0, "Total Visitors": 278.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1671.0, "Total Transactions": 55.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.5, "MEDIAN_SPEND_PER_CUSTOMER": 26.55 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7v-ghq", "LOCATION_NAME": "New Olympia House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050865, "LONGITUDE": -75.06694, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010310001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 89.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.4, "MEDIAN_SPEND_PER_CUSTOMER": 35.4 }, "geometry": { "type": "Point", "coordinates": [ -75.06694, 40.050865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-jd9", "LOCATION_NAME": "LongHorn Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084409, "LONGITUDE": -75.024098, "DATE_RANGE_START": 2023, "Total Visits": 1080.0, "Total Visitors": 1020.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 27037.0, "Total Transactions": 353.0, "Total Customers": 306.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.08, "MEDIAN_SPEND_PER_CUSTOMER": 77.08 }, "geometry": { "type": "Point", "coordinates": [ -75.024098, 40.084409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "LOCATION_NAME": "Uniqlo", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951166, "LONGITUDE": -75.167764, "DATE_RANGE_START": 2023, "Total Visits": 1353.0, "Total Visitors": 936.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 26677.0, "Total Transactions": 458.0, "Total Customers": 406.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.01, "MEDIAN_SPEND_PER_CUSTOMER": 44.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167764, 39.951166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-dvz", "LOCATION_NAME": "Quick Stop", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993791, "LONGITUDE": -75.117865, "DATE_RANGE_START": 2023, "Total Visits": 447.0, "Total Visitors": 309.0, "POI_CBG": 421010178005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2591.0, "Total Transactions": 219.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.22, "MEDIAN_SPEND_PER_CUSTOMER": 15.16 }, "geometry": { "type": "Point", "coordinates": [ -75.117865, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pmb-c3q", "LOCATION_NAME": "Kin Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.944553, "LONGITUDE": -75.158728, "DATE_RANGE_START": 2023, "Total Visits": 680.0, "Total Visitors": 371.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 352.0, "Total Spend": 1446.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 128.0, "MEDIAN_SPEND_PER_CUSTOMER": 128.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158728, 39.944553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "LOCATION_NAME": "Steak 'Em Up", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 114.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1803.0, "Total Transactions": 63.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.7, "MEDIAN_SPEND_PER_CUSTOMER": 34.05 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmb-fpv", "LOCATION_NAME": "Locust Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947237, "LONGITUDE": -75.157431, "DATE_RANGE_START": 2023, "Total Visits": 153.0, "Total Visitors": 30.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 423.0, "Total Spend": 149.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.96, "MEDIAN_SPEND_PER_CUSTOMER": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157431, 39.947237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pg4-52k", "LOCATION_NAME": "Duran Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.034871, "LONGITUDE": -75.168706, "DATE_RANGE_START": 2023, "Total Visits": 108.0, "Total Visitors": 63.0, "POI_CBG": 421010246001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1759.0, "Total Transactions": 115.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.9, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168706, 40.034871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-qs5", "LOCATION_NAME": "Panasian Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030993, "LONGITUDE": -75.10376, "DATE_RANGE_START": 2023, "Total Visits": 410.0, "Total Visitors": 323.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 33.0, "Total Spend": 6103.0, "Total Transactions": 137.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.45 }, "geometry": { "type": "Point", "coordinates": [ -75.10376, 40.030993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm4-kfz", "LOCATION_NAME": "Tamalex Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933915, "LONGITUDE": -75.155605, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 137.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1980.0, "Total Transactions": 44.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155605, 39.933915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2023, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3505.0, "Total Transactions": 163.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.26, "MEDIAN_SPEND_PER_CUSTOMER": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2023, "Total Visits": 1231.0, "Total Visitors": 887.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 12.0, "Total Spend": 32806.0, "Total Transactions": 2008.0, "Total Customers": 1152.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.94, "MEDIAN_SPEND_PER_CUSTOMER": 16.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2023, "Total Visits": 1878.0, "Total Visitors": 1140.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2452.0, "Total Transactions": 118.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.3, "MEDIAN_SPEND_PER_CUSTOMER": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@63s-dwc-cbk", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.918414, "LONGITUDE": -75.209648, "DATE_RANGE_START": 2023, "Total Visits": 882.0, "Total Visitors": 755.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 918.0, "Total Transactions": 41.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.02, "MEDIAN_SPEND_PER_CUSTOMER": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.209648, 39.918414 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-hkf", "LOCATION_NAME": "The Coventry Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953273, "LONGITUDE": -75.173676, "DATE_RANGE_START": 2023, "Total Visits": 886.0, "Total Visitors": 537.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 137.0, "Total Spend": 475.0, "Total Transactions": 65.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.56, "MEDIAN_SPEND_PER_CUSTOMER": 9.08 }, "geometry": { "type": "Point", "coordinates": [ -75.173676, 39.953273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-68v", "LOCATION_NAME": "Strangelove's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947987, "LONGITUDE": -75.159475, "DATE_RANGE_START": 2023, "Total Visits": 1796.0, "Total Visitors": 1179.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 25.0, "Total Spend": 345.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159475, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": null, "Total Spend": 4788.0, "Total Transactions": 549.0, "Total Customers": 362.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.05, "MEDIAN_SPEND_PER_CUSTOMER": 9.43 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rx5", "LOCATION_NAME": "Hair Hair", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978116, "LONGITUDE": -75.271408, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2658.0, "Total Transactions": 88.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 25.89 }, "geometry": { "type": "Point", "coordinates": [ -75.271408, 39.978116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2023, "Total Visits": 1509.0, "Total Visitors": 1060.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 69873.0, "Total Transactions": 3931.0, "Total Customers": 1543.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.47, "MEDIAN_SPEND_PER_CUSTOMER": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-66k", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.049004, "LONGITUDE": -75.060431, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 3348.0, "Total Transactions": 59.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.66, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060431, 40.049004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 347.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 867.0, "Total Transactions": 50.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.83, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2023, "Total Visits": 2855.0, "Total Visitors": 2176.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 49742.0, "Total Transactions": 760.0, "Total Customers": 524.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.72, "MEDIAN_SPEND_PER_CUSTOMER": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2023, "Total Visits": 1017.0, "Total Visitors": 728.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4012.0, "Total Transactions": 169.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 15.51 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "LOCATION_NAME": "Eyes Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941812, "LONGITUDE": -75.14844, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 190.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1375.0, "Total Transactions": 31.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.94, "MEDIAN_SPEND_PER_CUSTOMER": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.14844, 39.941812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034272, "LONGITUDE": -75.216378, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 123.0, "POI_CBG": 421010213002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1003.0, "Total Transactions": 122.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.34, "MEDIAN_SPEND_PER_CUSTOMER": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.216378, 40.034272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "LOCATION_NAME": "Sonny's Famous Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949809, "LONGITUDE": -75.144793, "DATE_RANGE_START": 2023, "Total Visits": 2528.0, "Total Visitors": 1506.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 10346.0, "Total Transactions": 357.0, "Total Customers": 307.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.76, "MEDIAN_SPEND_PER_CUSTOMER": 23.64 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.949809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.084661, "LONGITUDE": -74.961824, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1708.0, "Total Transactions": 38.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961824, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2023, "Total Visits": 1318.0, "Total Visitors": 1139.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 15895.0, "Total Transactions": 1249.0, "Total Customers": 916.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.04, "MEDIAN_SPEND_PER_CUSTOMER": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-226@628-pmb-6x5", "LOCATION_NAME": "Goldie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950344, "LONGITUDE": -75.166847, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 179.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 748.0, "Total Transactions": 33.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.89, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166847, 39.950344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pnw-m6k", "LOCATION_NAME": "GIANT Heirloom Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.966473, "LONGITUDE": -75.140367, "DATE_RANGE_START": 2023, "Total Visits": 544.0, "Total Visitors": 412.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6204.0, "Total Transactions": 225.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.7, "MEDIAN_SPEND_PER_CUSTOMER": 23.51 }, "geometry": { "type": "Point", "coordinates": [ -75.140367, 39.966473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 158.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6545.0, "Total Transactions": 693.0, "Total Customers": 432.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pm9-tjv", "LOCATION_NAME": "Eden Jewelry", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949361, "LONGITUDE": -75.154322, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2045.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 220.0, "MEDIAN_SPEND_PER_CUSTOMER": 351.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154322, 39.949361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2023, "Total Visits": 164.0, "Total Visitors": 150.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2848.0, "Total Transactions": 132.0, "Total Customers": 110.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.47, "MEDIAN_SPEND_PER_CUSTOMER": 17.93 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg9-xh5", "LOCATION_NAME": "Coffee Cream & Dreams", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966924, "LONGITUDE": -75.162284, "DATE_RANGE_START": 2023, "Total Visits": 116.0, "Total Visitors": 116.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 675.0, "Total Transactions": 66.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 15.33 }, "geometry": { "type": "Point", "coordinates": [ -75.162284, 39.966924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "LOCATION_NAME": "Knead Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948382, "LONGITUDE": -75.153598, "DATE_RANGE_START": 2023, "Total Visits": 1068.0, "Total Visitors": 532.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 159.0, "Total Spend": 3118.0, "Total Transactions": 203.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 15.36 }, "geometry": { "type": "Point", "coordinates": [ -75.153598, 39.948382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "LOCATION_NAME": "Not Just Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 163.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 986.0, "Total Transactions": 44.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.41, "MEDIAN_SPEND_PER_CUSTOMER": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj6-8y9", "LOCATION_NAME": "El Rinconcito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031821, "LONGITUDE": -75.1072, "DATE_RANGE_START": 2023, "Total Visits": 344.0, "Total Visitors": 234.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 211.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.15, "MEDIAN_SPEND_PER_CUSTOMER": 24.15 }, "geometry": { "type": "Point", "coordinates": [ -75.1072, 40.031821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2023, "Total Visits": 386.0, "Total Visitors": 254.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3211.0, "Total Transactions": 400.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-hh5", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951989, "LONGITUDE": -75.171131, "DATE_RANGE_START": 2023, "Total Visits": 373.0, "Total Visitors": 331.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 27.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.171131, 39.951989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-kpv", "LOCATION_NAME": "Sophy Curson", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951064, "LONGITUDE": -75.172395, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3240.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 606.6, "MEDIAN_SPEND_PER_CUSTOMER": 853.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172395, 39.951064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.021349, "LONGITUDE": -75.133421, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 6.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 134.0, "Total Spend": 716.0, "Total Transactions": 48.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.24, "MEDIAN_SPEND_PER_CUSTOMER": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.133421, 40.021349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-2p9", "LOCATION_NAME": "Pharmacy of America III", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.992042, "LONGITUDE": -75.135673, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 25.0, "POI_CBG": 421010176015.0, "MEDIAN_DWELL": 11.0, "Total Spend": 574.0, "Total Transactions": 43.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.63, "MEDIAN_SPEND_PER_CUSTOMER": 4.52 }, "geometry": { "type": "Point", "coordinates": [ -75.135673, 39.992042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2023, "Total Visits": 301.0, "Total Visitors": 169.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 16.0, "Total Spend": 11111.0, "Total Transactions": 298.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.59, "MEDIAN_SPEND_PER_CUSTOMER": 18.73 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2023, "Total Visits": 339.0, "Total Visitors": 162.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 80.0, "Total Spend": 16922.0, "Total Transactions": 1357.0, "Total Customers": 936.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.7, "MEDIAN_SPEND_PER_CUSTOMER": 13.17 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-4qf", "LOCATION_NAME": "Burrito Feliz Philly", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924044, "LONGITUDE": -75.158163, "DATE_RANGE_START": 2023, "Total Visits": 524.0, "Total Visitors": 415.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2818.0, "Total Transactions": 123.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158163, 39.924044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm8-gzf", "LOCATION_NAME": "Shake Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.901198, "LONGITUDE": -75.171974, "DATE_RANGE_START": 2023, "Total Visits": 1955.0, "Total Visitors": 1499.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 169.0, "Total Spend": 421.0, "Total Transactions": 46.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.45, "MEDIAN_SPEND_PER_CUSTOMER": 9.78 }, "geometry": { "type": "Point", "coordinates": [ -75.171974, 39.901198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mx5", "LOCATION_NAME": "Jos. A. Bank Clothiers", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952575, "LONGITUDE": -75.168323, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 5370.0, "Total Transactions": 48.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 62.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168323, 39.952575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-2c5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073464, "LONGITUDE": -75.033702, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3795.0, "Total Transactions": 473.0, "Total Customers": 261.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.9, "MEDIAN_SPEND_PER_CUSTOMER": 9.78 }, "geometry": { "type": "Point", "coordinates": [ -75.033702, 40.073464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.009087, "LONGITUDE": -75.175142, "DATE_RANGE_START": 2023, "Total Visits": 894.0, "Total Visitors": 556.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 48.0, "Total Spend": 11872.0, "Total Transactions": 309.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.58, "MEDIAN_SPEND_PER_CUSTOMER": 34.39 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 40.009087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.046858, "LONGITUDE": -75.054712, "DATE_RANGE_START": 2023, "Total Visits": 2253.0, "Total Visitors": 1595.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 37.0, "Total Spend": 7492.0, "Total Transactions": 79.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 94.55 }, "geometry": { "type": "Point", "coordinates": [ -75.054712, 40.046858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "LOCATION_NAME": "Roses", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.039275, "LONGITUDE": -75.108052, "DATE_RANGE_START": 2023, "Total Visits": 630.0, "Total Visitors": 301.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 18411.0, "Total Transactions": 472.0, "Total Customers": 352.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.06, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.108052, 40.039275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "LOCATION_NAME": "Fat Tuesday", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2023, "Total Visits": 2202.0, "Total Visitors": 2202.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 17.0, "Total Spend": 7670.0, "Total Transactions": 326.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.8, "MEDIAN_SPEND_PER_CUSTOMER": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "LOCATION_NAME": "C Town Supermarkets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995922, "LONGITUDE": -75.172212, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 34.0, "POI_CBG": 421010169011.0, "MEDIAN_DWELL": 201.0, "Total Spend": 2034.0, "Total Transactions": 203.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.172212, 39.995922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "LOCATION_NAME": "Jini Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.085911, "LONGITUDE": -74.962082, "DATE_RANGE_START": 2023, "Total Visits": 321.0, "Total Visitors": 294.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2112.0, "Total Transactions": 73.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.7, "MEDIAN_SPEND_PER_CUSTOMER": 26.41 }, "geometry": { "type": "Point", "coordinates": [ -74.962082, 40.085911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "LOCATION_NAME": "Sunglass Hut", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952006, "LONGITUDE": -75.16828, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 1715.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 215.46, "MEDIAN_SPEND_PER_CUSTOMER": 247.85 }, "geometry": { "type": "Point", "coordinates": [ -75.16828, 39.952006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "LOCATION_NAME": "Anthropologie", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950348, "LONGITUDE": -75.170813, "DATE_RANGE_START": 2023, "Total Visits": 2842.0, "Total Visitors": 1860.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 525435.0, "Total Transactions": 3783.0, "Total Customers": 2508.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.14, "MEDIAN_SPEND_PER_CUSTOMER": 120.34 }, "geometry": { "type": "Point", "coordinates": [ -75.170813, 39.950348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22f@628-p9r-28v", "LOCATION_NAME": "Lane Bryant", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.074277, "LONGITUDE": -75.033112, "DATE_RANGE_START": 2023, "Total Visits": 94.0, "Total Visitors": 94.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 774.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.7, "MEDIAN_SPEND_PER_CUSTOMER": 45.49 }, "geometry": { "type": "Point", "coordinates": [ -75.033112, 40.074277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2023, "Total Visits": 502.0, "Total Visitors": 462.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 13715.0, "Total Transactions": 403.0, "Total Customers": 356.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.3, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-cdv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.033281, "LONGITUDE": -75.131582, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 10.0, "POI_CBG": 421010275003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 576.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 142.75, "MEDIAN_SPEND_PER_CUSTOMER": 142.75 }, "geometry": { "type": "Point", "coordinates": [ -75.131582, 40.033281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgh-cwk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.003103, "LONGITUDE": -75.162138, "DATE_RANGE_START": 2023, "Total Visits": 203.0, "Total Visitors": 128.0, "POI_CBG": 421010202001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 641.0, "Total Transactions": 56.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.162138, 40.003103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yd9", "LOCATION_NAME": "Sleep Inn", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954446, "LONGITUDE": -75.157043, "DATE_RANGE_START": 2023, "Total Visits": 383.0, "Total Visitors": 319.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 1954.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 149.0, "MEDIAN_SPEND_PER_CUSTOMER": 174.41 }, "geometry": { "type": "Point", "coordinates": [ -75.157043, 39.954446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pp2-2kz", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.992485, "LONGITUDE": -75.101233, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 18.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 2453.0, "Total Transactions": 80.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.69, "MEDIAN_SPEND_PER_CUSTOMER": 23.66 }, "geometry": { "type": "Point", "coordinates": [ -75.101233, 39.992485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-k75", "LOCATION_NAME": "Lendy's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.988027, "LONGITUDE": -75.143801, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 44.0, "POI_CBG": 421010164004.0, "MEDIAN_DWELL": 164.0, "Total Spend": 415.0, "Total Transactions": 43.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 10.91 }, "geometry": { "type": "Point", "coordinates": [ -75.143801, 39.988027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084831, "LONGITUDE": -74.972304, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8154.0, "Total Transactions": 362.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.13 }, "geometry": { "type": "Point", "coordinates": [ -74.972304, 40.084831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "LOCATION_NAME": "Taproom On 19th", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2023, "Total Visits": 116.0, "Total Visitors": 88.0, "POI_CBG": 421010038001.0, "MEDIAN_DWELL": 101.0, "Total Spend": 4528.0, "Total Transactions": 86.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.54 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035421, "LONGITUDE": -75.049037, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 11.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2994.0, "Total Transactions": 94.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.19 }, "geometry": { "type": "Point", "coordinates": [ -75.049037, 40.035421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-223@628-p8n-389", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.020851, "LONGITUDE": -75.052211, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010323001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4088.0, "Total Transactions": 215.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.52, "MEDIAN_SPEND_PER_CUSTOMER": 18.37 }, "geometry": { "type": "Point", "coordinates": [ -75.052211, 40.020851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.912684, "LONGITUDE": -75.156333, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3707.0, "Total Transactions": 83.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.84, "MEDIAN_SPEND_PER_CUSTOMER": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.156333, 39.912684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "LOCATION_NAME": "My Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945125, "LONGITUDE": -75.178759, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 223.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178759, 39.945125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 208.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 485.0, "Total Transactions": 30.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.13, "MEDIAN_SPEND_PER_CUSTOMER": 22.89 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947184, "LONGITUDE": -75.157462, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 8.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 34.0, "Total Spend": 1087.0, "Total Transactions": 48.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.46, "MEDIAN_SPEND_PER_CUSTOMER": 25.06 }, "geometry": { "type": "Point", "coordinates": [ -75.157462, 39.947184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.912999, "LONGITUDE": -75.154783, "DATE_RANGE_START": 2023, "Total Visits": 2042.0, "Total Visitors": 1844.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 62.0, "Total Spend": 3986.0, "Total Transactions": 50.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.29, "MEDIAN_SPEND_PER_CUSTOMER": 51.29 }, "geometry": { "type": "Point", "coordinates": [ -75.154783, 39.912999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2023, "Total Visits": 1496.0, "Total Visitors": 894.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 49137.0, "Total Transactions": 2658.0, "Total Customers": 1829.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.09, "MEDIAN_SPEND_PER_CUSTOMER": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94827, "LONGITUDE": -75.206321, "DATE_RANGE_START": 2023, "Total Visits": 457.0, "Total Visitors": 289.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3494.0, "Total Transactions": 467.0, "Total Customers": 243.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.206321, 39.94827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-2hq", "LOCATION_NAME": "Venus Video", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.917037, "LONGITUDE": -75.216799, "DATE_RANGE_START": 2023, "Total Visits": 128.0, "Total Visitors": 94.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 2490.0, "Total Transactions": 56.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.5, "MEDIAN_SPEND_PER_CUSTOMER": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.216799, 39.917037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-bp9", "LOCATION_NAME": "Sang Kee Noodle House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.909183, "LONGITUDE": -75.16467, "DATE_RANGE_START": 2023, "Total Visits": 4147.0, "Total Visitors": 2127.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 104.0, "Total Spend": 6338.0, "Total Transactions": 235.0, "Total Customers": 209.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16467, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-jd9", "LOCATION_NAME": "The Children's Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950539, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2023, "Total Visits": 601.0, "Total Visitors": 486.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1800.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 114.04, "MEDIAN_SPEND_PER_CUSTOMER": 116.41 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5s5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950726, "LONGITUDE": -75.160316, "DATE_RANGE_START": 2023, "Total Visits": 4506.0, "Total Visitors": 3150.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1255.0, "Total Transactions": 93.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.96, "MEDIAN_SPEND_PER_CUSTOMER": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.160316, 39.950726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2023, "Total Visits": 293.0, "Total Visitors": 273.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 965.0, "Total Transactions": 34.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.21 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-rc5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97775, "LONGITUDE": -75.118406, "DATE_RANGE_START": 2023, "Total Visits": 582.0, "Total Visitors": 303.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 12987.0, "Total Transactions": 566.0, "Total Customers": 342.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.58, "MEDIAN_SPEND_PER_CUSTOMER": 24.77 }, "geometry": { "type": "Point", "coordinates": [ -75.118406, 39.97775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8m-snq", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.022472, "LONGITUDE": -75.077322, "DATE_RANGE_START": 2023, "Total Visits": 370.0, "Total Visitors": 282.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1102.0, "Total Transactions": 43.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.99, "MEDIAN_SPEND_PER_CUSTOMER": 36.21 }, "geometry": { "type": "Point", "coordinates": [ -75.077322, 40.022472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.966795, "LONGITUDE": -75.233387, "DATE_RANGE_START": 2023, "Total Visits": 2742.0, "Total Visitors": 1328.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1937.0, "Total Transactions": 172.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.233387, 39.966795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-mff", "LOCATION_NAME": "Con Murphy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955696, "LONGITUDE": -75.167996, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 142.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 577.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.52, "MEDIAN_SPEND_PER_CUSTOMER": 63.52 }, "geometry": { "type": "Point", "coordinates": [ -75.167996, 39.955696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2023, "Total Visits": 456.0, "Total Visitors": 337.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 125854.0, "Total Transactions": 4635.0, "Total Customers": 2524.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.75, "MEDIAN_SPEND_PER_CUSTOMER": 25.76 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "LOCATION_NAME": "Forever 21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2023, "Total Visits": 2342.0, "Total Visitors": 1871.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 32.0, "Total Spend": 1880.0, "Total Transactions": 39.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.24, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2023, "Total Visits": 3103.0, "Total Visitors": 2329.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 110056.0, "Total Transactions": 6278.0, "Total Customers": 3155.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.17, "MEDIAN_SPEND_PER_CUSTOMER": 21.47 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-s3q", "LOCATION_NAME": "Lore's Chocolates", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.949838, "LONGITUDE": -75.152455, "DATE_RANGE_START": 2023, "Total Visits": 476.0, "Total Visitors": 388.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 331.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.8, "MEDIAN_SPEND_PER_CUSTOMER": 56.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152455, 39.949838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087322, "LONGITUDE": -74.960366, "DATE_RANGE_START": 2023, "Total Visits": 78.0, "Total Visitors": 56.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 44.0, "Total Spend": 1686.0, "Total Transactions": 69.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.22, "MEDIAN_SPEND_PER_CUSTOMER": 31.96 }, "geometry": { "type": "Point", "coordinates": [ -74.960366, 40.087322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "LOCATION_NAME": "Martinez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997209, "LONGITUDE": -75.175291, "DATE_RANGE_START": 2023, "Total Visits": 127.0, "Total Visitors": 106.0, "POI_CBG": 421010172022.0, "MEDIAN_DWELL": 170.0, "Total Spend": 531.0, "Total Transactions": 54.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175291, 39.997209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-kpv", "LOCATION_NAME": "The Goat Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951177, "LONGITUDE": -75.172386, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 244.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 10716.0, "Total Transactions": 113.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.92, "MEDIAN_SPEND_PER_CUSTOMER": 38.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172386, 39.951177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2023, "Total Visits": 1155.0, "Total Visitors": 787.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 26877.0, "Total Transactions": 1111.0, "Total Customers": 602.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 32.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.134399, "LONGITUDE": -75.01003, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4094.0, "Total Transactions": 199.0, "Total Customers": 127.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.61, "MEDIAN_SPEND_PER_CUSTOMER": 19.08 }, "geometry": { "type": "Point", "coordinates": [ -75.01003, 40.134399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-zvf", "LOCATION_NAME": "Philly AIDS Thrift", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.940653, "LONGITUDE": -75.151169, "DATE_RANGE_START": 2023, "Total Visits": 1370.0, "Total Visitors": 1137.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 12878.0, "Total Transactions": 735.0, "Total Customers": 592.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 14.02 }, "geometry": { "type": "Point", "coordinates": [ -75.151169, 39.940653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj9-zmk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.036808, "LONGITUDE": -75.130605, "DATE_RANGE_START": 2023, "Total Visits": 787.0, "Total Visitors": 412.0, "POI_CBG": 421010275002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1990.0, "Total Transactions": 101.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.99, "MEDIAN_SPEND_PER_CUSTOMER": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130605, 40.036808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pnw-py9", "LOCATION_NAME": "Pharmacy of America V", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.969421, "LONGITUDE": -75.140859, "DATE_RANGE_START": 2023, "Total Visits": 695.0, "Total Visitors": 499.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 122.0, "Total Transactions": 15.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.19 }, "geometry": { "type": "Point", "coordinates": [ -75.140859, 39.969421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2023, "Total Visits": 251.0, "Total Visitors": 207.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 908.0, "Total Transactions": 85.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.8, "MEDIAN_SPEND_PER_CUSTOMER": 9.76 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-wtv", "LOCATION_NAME": "Captain's Choice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033393, "LONGITUDE": -75.048839, "DATE_RANGE_START": 2023, "Total Visits": 309.0, "Total Visitors": 162.0, "POI_CBG": 421010315013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048839, 40.033393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2023, "Total Visits": 589.0, "Total Visitors": 411.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 512.0, "Total Transactions": 30.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.85, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22d@628-pmf-7yv", "LOCATION_NAME": "Lemon Grass Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952768, "LONGITUDE": -75.186879, "DATE_RANGE_START": 2023, "Total Visits": 41.0, "Total Visitors": 21.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 182.0, "Total Spend": 2176.0, "Total Transactions": 88.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.49, "MEDIAN_SPEND_PER_CUSTOMER": 23.85 }, "geometry": { "type": "Point", "coordinates": [ -75.186879, 39.952768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "LOCATION_NAME": "Penrose Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2023, "Total Visits": 380.0, "Total Visitors": 324.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 1101.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.78, "MEDIAN_SPEND_PER_CUSTOMER": 72.27 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "LOCATION_NAME": "El Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 109.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 41.0, "Total Spend": 306.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.32, "MEDIAN_SPEND_PER_CUSTOMER": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmd-tvz", "LOCATION_NAME": "GIANT Heirloom Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.944771, "LONGITUDE": -75.180795, "DATE_RANGE_START": 2023, "Total Visits": 889.0, "Total Visitors": 376.0, "POI_CBG": 421010013005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 15725.0, "Total Transactions": 701.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.65, "MEDIAN_SPEND_PER_CUSTOMER": 26.82 }, "geometry": { "type": "Point", "coordinates": [ -75.180795, 39.944771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj3-tqf", "LOCATION_NAME": "Lucky Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027775, "LONGITUDE": -75.14691, "DATE_RANGE_START": 2023, "Total Visits": 91.0, "Total Visitors": 91.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 8.0, "Total Spend": 58.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.22, "MEDIAN_SPEND_PER_CUSTOMER": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.14691, 40.027775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "LOCATION_NAME": "Boostin' Bowls", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2023, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4953.0, "Total Transactions": 277.0, "Total Customers": 194.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.36, "MEDIAN_SPEND_PER_CUSTOMER": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-47q", "LOCATION_NAME": "Beauty Time", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040657, "LONGITUDE": -75.109627, "DATE_RANGE_START": 2023, "Total Visits": 353.0, "Total Visitors": 282.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 3776.0, "Total Transactions": 133.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.07, "MEDIAN_SPEND_PER_CUSTOMER": 22.48 }, "geometry": { "type": "Point", "coordinates": [ -75.109627, 40.040657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955163, "LONGITUDE": -75.168339, "DATE_RANGE_START": 2023, "Total Visits": 934.0, "Total Visitors": 552.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 33525.0, "Total Transactions": 3720.0, "Total Customers": 1437.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.168339, 39.955163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 28415.0, "Total Transactions": 1705.0, "Total Customers": 982.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.48, "MEDIAN_SPEND_PER_CUSTOMER": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2023, "Total Visits": 867.0, "Total Visitors": 730.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 8830.0, "Total Transactions": 524.0, "Total Customers": 412.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.83, "MEDIAN_SPEND_PER_CUSTOMER": 15.22 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-5xq", "LOCATION_NAME": "Liberty Choice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979685, "LONGITUDE": -75.132953, "DATE_RANGE_START": 2023, "Total Visits": 333.0, "Total Visitors": 264.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5748.0, "Total Transactions": 402.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.97, "MEDIAN_SPEND_PER_CUSTOMER": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.132953, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj4-vj9", "LOCATION_NAME": "Freddy & Tony's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999255, "LONGITUDE": -75.133375, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 155.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 57.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.69, "MEDIAN_SPEND_PER_CUSTOMER": 22.69 }, "geometry": { "type": "Point", "coordinates": [ -75.133375, 39.999255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "LOCATION_NAME": "Dancewear On Broad LLC", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": null, "Total Spend": 714.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 95.04, "MEDIAN_SPEND_PER_CUSTOMER": 95.04 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5fz", "LOCATION_NAME": "Shake Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950262, "LONGITUDE": -75.160108, "DATE_RANGE_START": 2023, "Total Visits": 654.0, "Total Visitors": 635.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 60.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.91, "MEDIAN_SPEND_PER_CUSTOMER": 23.91 }, "geometry": { "type": "Point", "coordinates": [ -75.160108, 39.950262 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.094952, "LONGITUDE": -75.017962, "DATE_RANGE_START": 2023, "Total Visits": 1334.0, "Total Visitors": 1187.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3653.0, "Total Transactions": 64.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.01, "MEDIAN_SPEND_PER_CUSTOMER": 44.01 }, "geometry": { "type": "Point", "coordinates": [ -75.017962, 40.094952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.044147, "LONGITUDE": -75.233047, "DATE_RANGE_START": 2023, "Total Visits": 2385.0, "Total Visitors": 1164.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 117034.0, "Total Transactions": 3080.0, "Total Customers": 1643.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.75, "MEDIAN_SPEND_PER_CUSTOMER": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233047, 40.044147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.005445, "LONGITUDE": -75.098152, "DATE_RANGE_START": 2023, "Total Visits": 366.0, "Total Visitors": 334.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 67.0, "Total Spend": 392.0, "Total Transactions": 44.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.84, "MEDIAN_SPEND_PER_CUSTOMER": 9.61 }, "geometry": { "type": "Point", "coordinates": [ -75.098152, 40.005445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgk-28v", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.993135, "LONGITUDE": -75.152859, "DATE_RANGE_START": 2023, "Total Visits": 336.0, "Total Visitors": 197.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 226.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.08, "MEDIAN_SPEND_PER_CUSTOMER": 11.63 }, "geometry": { "type": "Point", "coordinates": [ -75.152859, 39.993135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.898772, "LONGITUDE": -75.240567, "DATE_RANGE_START": 2023, "Total Visits": 54.0, "Total Visitors": 28.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 358.0, "Total Transactions": 23.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.13, "MEDIAN_SPEND_PER_CUSTOMER": 16.89 }, "geometry": { "type": "Point", "coordinates": [ -75.240567, 39.898772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-dqf", "LOCATION_NAME": "Pulaski Hall", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.015833, "LONGITUDE": -75.154849, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 116.0, "Total Spend": 371.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154849, 40.015833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-789", "LOCATION_NAME": "Bayou", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948002, "LONGITUDE": -75.22436, "DATE_RANGE_START": 2023, "Total Visits": 89.0, "Total Visitors": 89.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 77.0, "Total Spend": 830.0, "Total Transactions": 16.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.76, "MEDIAN_SPEND_PER_CUSTOMER": 58.88 }, "geometry": { "type": "Point", "coordinates": [ -75.22436, 39.948002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-rx5", "LOCATION_NAME": "Miles Table", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943903, "LONGITUDE": -75.169551, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 504.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2549.0, "Total Transactions": 118.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.18, "MEDIAN_SPEND_PER_CUSTOMER": 19.76 }, "geometry": { "type": "Point", "coordinates": [ -75.169551, 39.943903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "LOCATION_NAME": "Four Seasons Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2023, "Total Visits": 412.0, "Total Visitors": 361.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 10389.0, "Total Transactions": 225.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.4, "MEDIAN_SPEND_PER_CUSTOMER": 45.33 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "LOCATION_NAME": "El Coqui Panaderia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 122.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4045.0, "Total Transactions": 222.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004813, "LONGITUDE": -75.179813, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 10.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 258.0, "Total Spend": 8738.0, "Total Transactions": 658.0, "Total Customers": 440.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.64, "MEDIAN_SPEND_PER_CUSTOMER": 13.65 }, "geometry": { "type": "Point", "coordinates": [ -75.179813, 40.004813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01658, "LONGITUDE": -75.096378, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3410.0, "Total Transactions": 147.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.09, "MEDIAN_SPEND_PER_CUSTOMER": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.096378, 40.01658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-skf", "LOCATION_NAME": "Elixr Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949308, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2023, "Total Visits": 2172.0, "Total Visitors": 1549.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.86, "MEDIAN_SPEND_PER_CUSTOMER": 5.86 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm9-y9z", "LOCATION_NAME": "Lil' Pop Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94178, "LONGITUDE": -75.149245, "DATE_RANGE_START": 2023, "Total Visits": 468.0, "Total Visitors": 421.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 22.0, "Total Spend": 976.0, "Total Transactions": 90.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.74, "MEDIAN_SPEND_PER_CUSTOMER": 7.73 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.94178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009461, "LONGITUDE": -75.150664, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 4.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2440.0, "Total Transactions": 318.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.61, "MEDIAN_SPEND_PER_CUSTOMER": 7.92 }, "geometry": { "type": "Point", "coordinates": [ -75.150664, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "LOCATION_NAME": "Villavillekula", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075643, "LONGITUDE": -75.205445, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 195.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 166.0, "Total Spend": 341.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 77.94, "MEDIAN_SPEND_PER_CUSTOMER": 77.94 }, "geometry": { "type": "Point", "coordinates": [ -75.205445, 40.075643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051616, "LONGITUDE": -75.008393, "DATE_RANGE_START": 2023, "Total Visits": 623.0, "Total Visitors": 507.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 260.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008393, 40.051616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p89-nt9", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.012441, "LONGITUDE": -75.065497, "DATE_RANGE_START": 2023, "Total Visits": 1710.0, "Total Visitors": 1156.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 759.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 201.99, "MEDIAN_SPEND_PER_CUSTOMER": 302.99 }, "geometry": { "type": "Point", "coordinates": [ -75.065497, 40.012441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "LOCATION_NAME": "Prince Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 160.0, "POI_CBG": 421010288002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2368.0, "Total Transactions": 99.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.54, "MEDIAN_SPEND_PER_CUSTOMER": 25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm9-y5f", "LOCATION_NAME": "Sushi Planet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940725, "LONGITUDE": -75.14792, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 162.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 496.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.36, "MEDIAN_SPEND_PER_CUSTOMER": 39.36 }, "geometry": { "type": "Point", "coordinates": [ -75.14792, 39.940725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 51.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 236.0, "Total Spend": 3143.0, "Total Transactions": 207.0, "Total Customers": 168.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.66, "MEDIAN_SPEND_PER_CUSTOMER": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-rkz", "LOCATION_NAME": "Hunting Park Tire Shop", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.012562, "LONGITUDE": -75.118169, "DATE_RANGE_START": 2023, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 729.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.79, "MEDIAN_SPEND_PER_CUSTOMER": 61.79 }, "geometry": { "type": "Point", "coordinates": [ -75.118169, 40.012562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2023, "Total Visits": 382.0, "Total Visitors": 262.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4904.0, "Total Transactions": 760.0, "Total Customers": 339.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.07, "MEDIAN_SPEND_PER_CUSTOMER": 9.69 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-5vf", "LOCATION_NAME": "Kung Fu Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048498, "LONGITUDE": -75.061863, "DATE_RANGE_START": 2023, "Total Visits": 219.0, "Total Visitors": 203.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 506.0, "Total Transactions": 35.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.57, "MEDIAN_SPEND_PER_CUSTOMER": 13.57 }, "geometry": { "type": "Point", "coordinates": [ -75.061863, 40.048498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-yvz", "LOCATION_NAME": "Girard Beer Distributors", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.970277, "LONGITUDE": -75.150793, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 154.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6896.0, "Total Transactions": 308.0, "Total Customers": 158.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.25 }, "geometry": { "type": "Point", "coordinates": [ -75.150793, 39.970277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-227@628-phd-btv", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.998022, "LONGITUDE": -75.232795, "DATE_RANGE_START": 2023, "Total Visits": 586.0, "Total Visitors": 526.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 235.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.28, "MEDIAN_SPEND_PER_CUSTOMER": 38.28 }, "geometry": { "type": "Point", "coordinates": [ -75.232795, 39.998022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "LOCATION_NAME": "Smiley's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 164.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 258.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.32, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg9-x5z", "LOCATION_NAME": "Vineyards Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96989, "LONGITUDE": -75.162961, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 94.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 117.0, "Total Spend": 3732.0, "Total Transactions": 362.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.162961, 39.96989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg9-ty9", "LOCATION_NAME": "Brandywine Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962927, "LONGITUDE": -75.163263, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 155.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 72.0, "Total Spend": 93.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.962927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg2-hdv", "LOCATION_NAME": "Mi Puebla Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059999, "LONGITUDE": -75.19073, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1905.0, "Total Transactions": 56.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.08, "MEDIAN_SPEND_PER_CUSTOMER": 31.58 }, "geometry": { "type": "Point", "coordinates": [ -75.19073, 40.059999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-f2k", "LOCATION_NAME": "New Eli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993812, "LONGITUDE": -75.118652, "DATE_RANGE_START": 2023, "Total Visits": 410.0, "Total Visitors": 299.0, "POI_CBG": 421010177011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 104.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.98, "MEDIAN_SPEND_PER_CUSTOMER": 41.64 }, "geometry": { "type": "Point", "coordinates": [ -75.118652, 39.993812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919408, "LONGITUDE": -75.187278, "DATE_RANGE_START": 2023, "Total Visits": 323.0, "Total Visitors": 219.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 33699.0, "Total Transactions": 2066.0, "Total Customers": 1432.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.76, "MEDIAN_SPEND_PER_CUSTOMER": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.187278, 39.919408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-vxq", "LOCATION_NAME": "Jersey Mike's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955112, "LONGITUDE": -75.18233, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 219.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6436.0, "Total Transactions": 432.0, "Total Customers": 386.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.45, "MEDIAN_SPEND_PER_CUSTOMER": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18233, 39.955112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940155, "LONGITUDE": -75.165823, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4388.0, "Total Transactions": 534.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.64, "MEDIAN_SPEND_PER_CUSTOMER": 9.59 }, "geometry": { "type": "Point", "coordinates": [ -75.165823, 39.940155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962159, "LONGITUDE": -75.201119, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 182.0, "POI_CBG": 421010108004.0, "MEDIAN_DWELL": null, "Total Spend": 273.0, "Total Transactions": 28.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.98, "MEDIAN_SPEND_PER_CUSTOMER": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.201119, 39.962159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2023, "Total Visits": 2260.0, "Total Visitors": 1497.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 23327.0, "Total Transactions": 1978.0, "Total Customers": 733.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.95, "MEDIAN_SPEND_PER_CUSTOMER": 13.64 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.099682, "LONGITUDE": -75.01017, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 4878.0, "Total Transactions": 118.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -75.01017, 40.099682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "LOCATION_NAME": "Pac A Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948686, "LONGITUDE": -75.160743, "DATE_RANGE_START": 2023, "Total Visits": 61.0, "Total Visitors": 51.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7941.0, "Total Transactions": 421.0, "Total Customers": 185.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.92, "MEDIAN_SPEND_PER_CUSTOMER": 21.87 }, "geometry": { "type": "Point", "coordinates": [ -75.160743, 39.948686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.072377, "LONGITUDE": -75.194639, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010257001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 8183.0, "Total Transactions": 367.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.92, "MEDIAN_SPEND_PER_CUSTOMER": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.194639, 40.072377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pgb-54v", "LOCATION_NAME": "Night Market Callowhill", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.959051, "LONGITUDE": -75.158731, "DATE_RANGE_START": 2023, "Total Visits": 921.0, "Total Visitors": 346.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 181.0, "Total Spend": 21.0, "Total Transactions": 18.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.0, "MEDIAN_SPEND_PER_CUSTOMER": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158731, 39.959051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-v4v", "LOCATION_NAME": "Easy Pickins", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048272, "LONGITUDE": -75.05631, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 184.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 19.0, "Total Spend": 5440.0, "Total Transactions": 157.0, "Total Customers": 148.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.45, "MEDIAN_SPEND_PER_CUSTOMER": 28.24 }, "geometry": { "type": "Point", "coordinates": [ -75.05631, 40.048272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-249", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991221, "LONGITUDE": -75.100297, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 186.0, "Total Spend": 193.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.29, "MEDIAN_SPEND_PER_CUSTOMER": 14.89 }, "geometry": { "type": "Point", "coordinates": [ -75.100297, 39.991221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.02615, "LONGITUDE": -75.04234, "DATE_RANGE_START": 2023, "Total Visits": 587.0, "Total Visitors": 385.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 75.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.63, "MEDIAN_SPEND_PER_CUSTOMER": 6.63 }, "geometry": { "type": "Point", "coordinates": [ -75.04234, 40.02615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "LOCATION_NAME": "Moore Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.926601, "LONGITUDE": -75.156133, "DATE_RANGE_START": 2023, "Total Visits": 348.0, "Total Visitors": 246.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7879.0, "Total Transactions": 297.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.156133, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2023, "Total Visits": 1404.0, "Total Visitors": 1065.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 61323.0, "Total Transactions": 2722.0, "Total Customers": 1538.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.15, "MEDIAN_SPEND_PER_CUSTOMER": 25.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-w6k", "LOCATION_NAME": "Pizza Roma", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049594, "LONGITUDE": -75.059819, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 125.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 3485.0, "Total Transactions": 225.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.059819, 40.049594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pp5-nqz", "LOCATION_NAME": "Edgar Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.994664, "LONGITUDE": -75.124771, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 48.0, "POI_CBG": 421010177024.0, "MEDIAN_DWELL": 126.0, "Total Spend": 166.0, "Total Transactions": 15.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.37, "MEDIAN_SPEND_PER_CUSTOMER": 10.39 }, "geometry": { "type": "Point", "coordinates": [ -75.124771, 39.994664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995106, "LONGITUDE": -75.126203, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 54.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 239.0, "Total Spend": 643.0, "Total Transactions": 69.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.63 }, "geometry": { "type": "Point", "coordinates": [ -75.126203, 39.995106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950694, "LONGITUDE": -75.151921, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 694.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4178.0, "Total Transactions": 629.0, "Total Customers": 411.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 6.77 }, "geometry": { "type": "Point", "coordinates": [ -75.151921, 39.950694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj4-v4v", "LOCATION_NAME": "Taqueria La Raza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999423, "LONGITUDE": -75.134255, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 155.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 272.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.31, "MEDIAN_SPEND_PER_CUSTOMER": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134255, 39.999423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-jjv", "LOCATION_NAME": "Blue Sole Shoes", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951895, "LONGITUDE": -75.17055, "DATE_RANGE_START": 2023, "Total Visits": 1427.0, "Total Visitors": 1094.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1438.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 574.0, "MEDIAN_SPEND_PER_CUSTOMER": 574.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17055, 39.951895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-235@628-pmf-jd9", "LOCATION_NAME": "The Men's Wearhouse", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951245, "LONGITUDE": -75.168347, "DATE_RANGE_START": 2023, "Total Visits": 696.0, "Total Visitors": 485.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2941.0, "Total Transactions": 29.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.49, "MEDIAN_SPEND_PER_CUSTOMER": 87.49 }, "geometry": { "type": "Point", "coordinates": [ -75.168347, 39.951245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-94v", "LOCATION_NAME": "Torrid", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952294, "LONGITUDE": -75.15687, "DATE_RANGE_START": 2023, "Total Visits": 14076.0, "Total Visitors": 8436.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2199.0, "Total Transactions": 29.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.5, "MEDIAN_SPEND_PER_CUSTOMER": 59.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15687, 39.952294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8m-b8v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.016197, "LONGITUDE": -75.061352, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 184.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 731.0, "Total Transactions": 103.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.36, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.061352, 40.016197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-ks5", "LOCATION_NAME": "Born Yesterday", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950495, "LONGITUDE": -75.17265, "DATE_RANGE_START": 2023, "Total Visits": 408.0, "Total Visitors": 332.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 121.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.33, "MEDIAN_SPEND_PER_CUSTOMER": 48.33 }, "geometry": { "type": "Point", "coordinates": [ -75.17265, 39.950495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054056, "LONGITUDE": -75.193224, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5511.0, "Total Transactions": 284.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.93, "MEDIAN_SPEND_PER_CUSTOMER": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.193224, 40.054056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027513, "LONGITUDE": -75.209445, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 285.0, "Total Spend": 8510.0, "Total Transactions": 289.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.33, "MEDIAN_SPEND_PER_CUSTOMER": 30.22 }, "geometry": { "type": "Point", "coordinates": [ -75.209445, 40.027513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2023, "Total Visits": 1042.0, "Total Visitors": 914.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 171.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.97, "MEDIAN_SPEND_PER_CUSTOMER": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959117, "LONGITUDE": -75.162552, "DATE_RANGE_START": 2023, "Total Visits": 737.0, "Total Visitors": 425.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 10317.0, "Total Transactions": 769.0, "Total Customers": 417.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.49, "MEDIAN_SPEND_PER_CUSTOMER": 16.87 }, "geometry": { "type": "Point", "coordinates": [ -75.162552, 39.959117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "LOCATION_NAME": "Chillin Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2023, "Total Visits": 235.0, "Total Visitors": 149.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 129.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.86, "MEDIAN_SPEND_PER_CUSTOMER": 26.86 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032146, "LONGITUDE": -75.21395, "DATE_RANGE_START": 2023, "Total Visits": 903.0, "Total Visitors": 499.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1862.0, "Total Transactions": 106.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.28, "MEDIAN_SPEND_PER_CUSTOMER": 18.66 }, "geometry": { "type": "Point", "coordinates": [ -75.21395, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-sqz", "LOCATION_NAME": "Ashton Cigar Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949464, "LONGITUDE": -75.167106, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 229.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1473.0, "Total Transactions": 28.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.45, "MEDIAN_SPEND_PER_CUSTOMER": 64.86 }, "geometry": { "type": "Point", "coordinates": [ -75.167106, 39.949464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "LOCATION_NAME": "Independence Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 162.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.33, "MEDIAN_SPEND_PER_CUSTOMER": 40.22 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-ty9", "LOCATION_NAME": "La Fontana Della Citta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947768, "LONGITUDE": -75.169697, "DATE_RANGE_START": 2023, "Total Visits": 292.0, "Total Visitors": 204.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 30.0, "Total Spend": 259.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 103.51, "MEDIAN_SPEND_PER_CUSTOMER": 103.51 }, "geometry": { "type": "Point", "coordinates": [ -75.169697, 39.947768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm4-hnq", "LOCATION_NAME": "Los Cuatro Soles", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928485, "LONGITUDE": -75.173061, "DATE_RANGE_START": 2023, "Total Visits": 132.0, "Total Visitors": 113.0, "POI_CBG": 421010030013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1198.0, "Total Transactions": 41.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.84, "MEDIAN_SPEND_PER_CUSTOMER": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.173061, 39.928485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm4-h5z", "LOCATION_NAME": "Pistola's Del Sur", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925885, "LONGITUDE": -75.168342, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 230.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 10465.0, "Total Transactions": 199.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.52, "MEDIAN_SPEND_PER_CUSTOMER": 55.79 }, "geometry": { "type": "Point", "coordinates": [ -75.168342, 39.925885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-s89", "LOCATION_NAME": "Best Buy Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.077822, "LONGITUDE": -75.024585, "DATE_RANGE_START": 2023, "Total Visits": 774.0, "Total Visitors": 487.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 57.0, "Total Spend": 3056.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 1155.0, "MEDIAN_SPEND_PER_CUSTOMER": 1155.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024585, 40.077822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "LOCATION_NAME": "Hoagie Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 180.0, "POI_CBG": 421010266007.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3053.0, "Total Transactions": 168.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.91, "MEDIAN_SPEND_PER_CUSTOMER": 26.66 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "LOCATION_NAME": "Platinum", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 224.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2187.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-qpv", "LOCATION_NAME": "Sherwin-Williams", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.942648, "LONGITUDE": -75.166062, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 404.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.87, "MEDIAN_SPEND_PER_CUSTOMER": 161.11 }, "geometry": { "type": "Point", "coordinates": [ -75.166062, 39.942648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9479, "LONGITUDE": -75.154009, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 8.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 27.0, "Total Spend": 4108.0, "Total Transactions": 468.0, "Total Customers": 294.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.89, "MEDIAN_SPEND_PER_CUSTOMER": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.154009, 39.9479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "LOCATION_NAME": "Liberty Time", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2023, "Total Visits": 1440.0, "Total Visitors": 1101.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 827.0, "Total Transactions": 20.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.7, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.942537, "LONGITUDE": -75.164845, "DATE_RANGE_START": 2023, "Total Visits": 888.0, "Total Visitors": 792.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 479.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.16 }, "geometry": { "type": "Point", "coordinates": [ -75.164845, 39.942537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "LOCATION_NAME": "Sang Kee Noodle House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955027, "LONGITUDE": -75.194015, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 33.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 176.0, "Total Spend": 10189.0, "Total Transactions": 407.0, "Total Customers": 359.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.99, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194015, 39.955027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "LOCATION_NAME": "El Rey", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2023, "Total Visits": 235.0, "Total Visitors": 219.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15858.0, "Total Transactions": 246.0, "Total Customers": 233.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.5, "MEDIAN_SPEND_PER_CUSTOMER": 55.68 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@63s-dwg-f9f", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913707, "LONGITUDE": -75.240275, "DATE_RANGE_START": 2023, "Total Visits": 74.0, "Total Visitors": 74.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 104.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.71, "MEDIAN_SPEND_PER_CUSTOMER": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.240275, 39.913707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "LOCATION_NAME": "Mr Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 76.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1903.0, "Total Transactions": 69.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.91, "MEDIAN_SPEND_PER_CUSTOMER": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "LOCATION_NAME": "Oregon Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2023, "Total Visits": 94.0, "Total Visitors": 94.0, "POI_CBG": 421010372001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 139.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.17, "MEDIAN_SPEND_PER_CUSTOMER": 14.17 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "LOCATION_NAME": "New Pizza Villa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2023, "Total Visits": 81.0, "Total Visitors": 81.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 320.0, "Total Transactions": 15.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.51, "MEDIAN_SPEND_PER_CUSTOMER": 17.41 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "LOCATION_NAME": "No 1 Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 130.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 73.0, "Total Spend": 416.0, "Total Transactions": 16.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.55, "MEDIAN_SPEND_PER_CUSTOMER": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-hdv", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.008701, "LONGITUDE": -75.176514, "DATE_RANGE_START": 2023, "Total Visits": 1569.0, "Total Visitors": 823.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 227.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.98, "MEDIAN_SPEND_PER_CUSTOMER": 20.31 }, "geometry": { "type": "Point", "coordinates": [ -75.176514, 40.008701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-p35", "LOCATION_NAME": "Jhoandra Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007461, "LONGITUDE": -75.138722, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 65.0, "POI_CBG": 421010199001.0, "MEDIAN_DWELL": 503.0, "Total Spend": 265.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.138722, 40.007461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-8y9", "LOCATION_NAME": "The Pharmacy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934901, "LONGITUDE": -75.174223, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 93.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 163.0, "Total Spend": 2995.0, "Total Transactions": 75.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.66, "MEDIAN_SPEND_PER_CUSTOMER": 20.27 }, "geometry": { "type": "Point", "coordinates": [ -75.174223, 39.934901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p83-zcq", "LOCATION_NAME": "Dim Sum Factory Krewstown", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.083328, "LONGITUDE": -75.048212, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 1097.0, "Total Transactions": 24.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.98, "MEDIAN_SPEND_PER_CUSTOMER": 57.08 }, "geometry": { "type": "Point", "coordinates": [ -75.048212, 40.083328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "LOCATION_NAME": "Ryan's Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2023, "Total Visits": 274.0, "Total Visitors": 240.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 15724.0, "Total Transactions": 597.0, "Total Customers": 421.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.56 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04161, "LONGITUDE": -75.06478, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 147.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2043.0, "Total Transactions": 58.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.11, "MEDIAN_SPEND_PER_CUSTOMER": 35.86 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.04161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "LOCATION_NAME": "Garden's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2023, "Total Visits": 162.0, "Total Visitors": 155.0, "POI_CBG": 421010139003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 804.0, "Total Transactions": 51.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.66, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 124.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 619.0, "Total Transactions": 18.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.02, "MEDIAN_SPEND_PER_CUSTOMER": 32.77 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938273, "LONGITUDE": -75.215585, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 8.0, "POI_CBG": 421010074005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5598.0, "Total Transactions": 293.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.94, "MEDIAN_SPEND_PER_CUSTOMER": 19.61 }, "geometry": { "type": "Point", "coordinates": [ -75.215585, 39.938273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5fz", "LOCATION_NAME": "Van Leeuwen Artisan Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950007, "LONGITUDE": -75.161725, "DATE_RANGE_START": 2023, "Total Visits": 683.0, "Total Visitors": 426.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 73.0, "Total Spend": 4421.0, "Total Transactions": 306.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.16, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161725, 39.950007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "LOCATION_NAME": "Georgian Bread Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2023, "Total Visits": 284.0, "Total Visitors": 228.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1641.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.13, "MEDIAN_SPEND_PER_CUSTOMER": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "LOCATION_NAME": "Yummy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954445, "LONGITUDE": -75.170031, "DATE_RANGE_START": 2023, "Total Visits": 2466.0, "Total Visitors": 1347.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 34.0, "Total Spend": 1408.0, "Total Transactions": 58.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.19, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.170031, 39.954445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xkf", "LOCATION_NAME": "Lee How Fook", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956243, "LONGITUDE": -75.157042, "DATE_RANGE_START": 2023, "Total Visits": 403.0, "Total Visitors": 361.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 127.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.91, "MEDIAN_SPEND_PER_CUSTOMER": 34.91 }, "geometry": { "type": "Point", "coordinates": [ -75.157042, 39.956243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 25.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 866.0, "Total Spend": 6799.0, "Total Transactions": 219.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.96, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnt-435", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974852, "LONGITUDE": -75.120942, "DATE_RANGE_START": 2023, "Total Visits": 873.0, "Total Visitors": 309.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 177.0, "Total Spend": 9844.0, "Total Transactions": 851.0, "Total Customers": 515.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.37, "MEDIAN_SPEND_PER_CUSTOMER": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.120942, 39.974852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.112282, "LONGITUDE": -75.022903, "DATE_RANGE_START": 2023, "Total Visits": 768.0, "Total Visitors": 641.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4458.0, "Total Transactions": 247.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.93, "MEDIAN_SPEND_PER_CUSTOMER": 10.04 }, "geometry": { "type": "Point", "coordinates": [ -75.022903, 40.112282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgc-x5z", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.978303, "LONGITUDE": -75.224165, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 177.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 6841.0, "Total Transactions": 179.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.98 }, "geometry": { "type": "Point", "coordinates": [ -75.224165, 39.978303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2023, "Total Visits": 1061.0, "Total Visitors": 757.0, "POI_CBG": 421010200001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 5786.0, "Total Transactions": 515.0, "Total Customers": 383.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.36, "MEDIAN_SPEND_PER_CUSTOMER": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.044989, "LONGITUDE": -75.144293, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 15.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 973.0, "Total Transactions": 54.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.24, "MEDIAN_SPEND_PER_CUSTOMER": 16.69 }, "geometry": { "type": "Point", "coordinates": [ -75.144293, 40.044989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p83-y5f", "LOCATION_NAME": "Pennypack Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 40.08536, "LONGITUDE": -75.045648, "DATE_RANGE_START": 2023, "Total Visits": 690.0, "Total Visitors": 576.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 190.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045648, 40.08536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949016, "LONGITUDE": -75.163281, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1726.0, "Total Transactions": 279.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.94, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163281, 39.949016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "LOCATION_NAME": "Trio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968736, "LONGITUDE": -75.180755, "DATE_RANGE_START": 2023, "Total Visits": 293.0, "Total Visitors": 137.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 230.0, "Total Spend": 2547.0, "Total Transactions": 148.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.6, "MEDIAN_SPEND_PER_CUSTOMER": 22.17 }, "geometry": { "type": "Point", "coordinates": [ -75.180755, 39.968736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2023, "Total Visits": 740.0, "Total Visitors": 560.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10094.0, "Total Transactions": 499.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.21, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-75z", "LOCATION_NAME": "Cosi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947096, "LONGITUDE": -75.193946, "DATE_RANGE_START": 2023, "Total Visits": 13803.0, "Total Visitors": 7404.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 99.0, "Total Spend": 1234.0, "Total Transactions": 78.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.193946, 39.947096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.924902, "LONGITUDE": -75.1691, "DATE_RANGE_START": 2023, "Total Visits": 1924.0, "Total Visitors": 1150.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 12.0, "Total Spend": 13326.0, "Total Transactions": 685.0, "Total Customers": 372.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.39, "MEDIAN_SPEND_PER_CUSTOMER": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.1691, 39.924902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2023, "Total Visits": 475.0, "Total Visitors": 341.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 10537.0, "Total Transactions": 719.0, "Total Customers": 388.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.76, "MEDIAN_SPEND_PER_CUSTOMER": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-r6k", "LOCATION_NAME": "Grindcore House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929019, "LONGITUDE": -75.151738, "DATE_RANGE_START": 2023, "Total Visits": 74.0, "Total Visitors": 74.0, "POI_CBG": 421010027023.0, "MEDIAN_DWELL": null, "Total Spend": 3313.0, "Total Transactions": 240.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.151738, 39.929019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "LOCATION_NAME": "Banana Republic Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952114, "LONGITUDE": -75.172439, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2248.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.83, "MEDIAN_SPEND_PER_CUSTOMER": 50.83 }, "geometry": { "type": "Point", "coordinates": [ -75.172439, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055386, "LONGITUDE": -75.049698, "DATE_RANGE_START": 2023, "Total Visits": 961.0, "Total Visitors": 511.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 67910.0, "Total Transactions": 3570.0, "Total Customers": 1596.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.06, "MEDIAN_SPEND_PER_CUSTOMER": 23.21 }, "geometry": { "type": "Point", "coordinates": [ -75.049698, 40.055386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.921556, "LONGITUDE": -75.186008, "DATE_RANGE_START": 2023, "Total Visits": 1151.0, "Total Visitors": 829.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 12161.0, "Total Transactions": 239.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.58, "MEDIAN_SPEND_PER_CUSTOMER": 42.56 }, "geometry": { "type": "Point", "coordinates": [ -75.186008, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.032001, "LONGITUDE": -75.050379, "DATE_RANGE_START": 2023, "Total Visits": 554.0, "Total Visitors": 366.0, "POI_CBG": 421010325001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2714.0, "Total Transactions": 101.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.07, "MEDIAN_SPEND_PER_CUSTOMER": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.050379, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2023, "Total Visits": 591.0, "Total Visitors": 514.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 16.0, "Total Spend": 13849.0, "Total Transactions": 304.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.01, "MEDIAN_SPEND_PER_CUSTOMER": 37.46 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "LOCATION_NAME": "iMunch Cafe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": null, "Total Spend": 3468.0, "Total Transactions": 194.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.9, "MEDIAN_SPEND_PER_CUSTOMER": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-wkz", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.922494, "LONGITUDE": -75.146453, "DATE_RANGE_START": 2023, "Total Visits": 311.0, "Total Visitors": 251.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 11032.0, "Total Transactions": 228.0, "Total Customers": 199.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.13, "MEDIAN_SPEND_PER_CUSTOMER": 35.61 }, "geometry": { "type": "Point", "coordinates": [ -75.146453, 39.922494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7z-r49", "LOCATION_NAME": "Halal food King Gyro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04461, "LONGITUDE": -75.087074, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 667.0, "Total Transactions": 30.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.34, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087074, 40.04461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pm9-wp9", "LOCATION_NAME": "Charlie's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950465, "LONGITUDE": -75.146104, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 667.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 15.84 }, "geometry": { "type": "Point", "coordinates": [ -75.146104, 39.950465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.990664, "LONGITUDE": -75.154878, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 9.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 225.0, "Total Spend": 11233.0, "Total Transactions": 253.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.9, "MEDIAN_SPEND_PER_CUSTOMER": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.154878, 39.990664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-mx5", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006782, "LONGITUDE": -75.097589, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 15.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 10.0, "Total Spend": 343.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.46, "MEDIAN_SPEND_PER_CUSTOMER": 8.46 }, "geometry": { "type": "Point", "coordinates": [ -75.097589, 40.006782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-grk", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.916944, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 25.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 133390.0, "Total Transactions": 3209.0, "Total Customers": 1275.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.29, "MEDIAN_SPEND_PER_CUSTOMER": 49.28 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.916944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040999, "LONGITUDE": -75.223815, "DATE_RANGE_START": 2023, "Total Visits": 625.0, "Total Visitors": 412.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 12974.0, "Total Transactions": 620.0, "Total Customers": 436.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.99, "MEDIAN_SPEND_PER_CUSTOMER": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.223815, 40.040999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-92k", "LOCATION_NAME": "Kate Spade", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952238, "LONGITUDE": -75.155945, "DATE_RANGE_START": 2023, "Total Visits": 427.0, "Total Visitors": 302.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5827.0, "Total Transactions": 59.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.32, "MEDIAN_SPEND_PER_CUSTOMER": 103.39 }, "geometry": { "type": "Point", "coordinates": [ -75.155945, 39.952238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2023, "Total Visits": 959.0, "Total Visitors": 835.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 76400.0, "Total Transactions": 2592.0, "Total Customers": 1244.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 37.39 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926449, "LONGITUDE": -75.14542, "DATE_RANGE_START": 2023, "Total Visits": 1152.0, "Total Visitors": 851.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 51692.0, "Total Transactions": 4234.0, "Total Customers": 2156.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.14542, 39.926449 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.101415, "LONGITUDE": -75.03027, "DATE_RANGE_START": 2023, "Total Visits": 978.0, "Total Visitors": 757.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 9.0, "Total Spend": 224.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.4, "MEDIAN_SPEND_PER_CUSTOMER": 89.4 }, "geometry": { "type": "Point", "coordinates": [ -75.03027, 40.101415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-p7b-qs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.063765, "LONGITUDE": -75.021897, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 362.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 811.0, "Total Transactions": 35.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 21.44 }, "geometry": { "type": "Point", "coordinates": [ -75.021897, 40.063765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2023, "Total Visits": 752.0, "Total Visitors": 604.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6355.0, "Total Transactions": 734.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.27, "MEDIAN_SPEND_PER_CUSTOMER": 14.36 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-rff", "LOCATION_NAME": "Montana Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042892, "LONGITUDE": -75.073677, "DATE_RANGE_START": 2023, "Total Visits": 203.0, "Total Visitors": 187.0, "POI_CBG": 421010313004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 257.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.38, "MEDIAN_SPEND_PER_CUSTOMER": 24.19 }, "geometry": { "type": "Point", "coordinates": [ -75.073677, 40.042892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm4-h5z", "LOCATION_NAME": "Le Virtu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925948, "LONGITUDE": -75.16776, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 208.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 38.0, "Total Spend": 5295.0, "Total Transactions": 49.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.52, "MEDIAN_SPEND_PER_CUSTOMER": 99.96 }, "geometry": { "type": "Point", "coordinates": [ -75.16776, 39.925948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wzf", "LOCATION_NAME": "Bravo Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030409, "LONGITUDE": -75.145574, "DATE_RANGE_START": 2023, "Total Visits": 168.0, "Total Visitors": 80.0, "POI_CBG": 421010282001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 411.0, "Total Transactions": 23.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.93, "MEDIAN_SPEND_PER_CUSTOMER": 19.47 }, "geometry": { "type": "Point", "coordinates": [ -75.145574, 40.030409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp4-r49", "LOCATION_NAME": "Port Richmond Thriftway Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.975523, "LONGITUDE": -75.119684, "DATE_RANGE_START": 2023, "Total Visits": 995.0, "Total Visitors": 570.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 90.0, "Total Transactions": 8.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.58, "MEDIAN_SPEND_PER_CUSTOMER": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.119684, 39.975523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8f-9cq", "LOCATION_NAME": "D & R Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.012762, "LONGITUDE": -75.081478, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 36.0, "POI_CBG": 421010300005.0, "MEDIAN_DWELL": 246.0, "Total Spend": 808.0, "Total Transactions": 84.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.03, "MEDIAN_SPEND_PER_CUSTOMER": 10.53 }, "geometry": { "type": "Point", "coordinates": [ -75.081478, 40.012762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmb-gkz", "LOCATION_NAME": "Effie's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945113, "LONGITUDE": -75.160611, "DATE_RANGE_START": 2023, "Total Visits": 103.0, "Total Visitors": 103.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1117.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.78, "MEDIAN_SPEND_PER_CUSTOMER": 49.78 }, "geometry": { "type": "Point", "coordinates": [ -75.160611, 39.945113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "LOCATION_NAME": "Le Viet Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2023, "Total Visits": 605.0, "Total Visitors": 341.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 72.0, "Total Spend": 308.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.5, "MEDIAN_SPEND_PER_CUSTOMER": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-54v", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991295, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 163.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1950.0, "Total Transactions": 124.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.44, "MEDIAN_SPEND_PER_CUSTOMER": 15.43 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-y5f", "LOCATION_NAME": "Neighborhood Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940906, "LONGITUDE": -75.147499, "DATE_RANGE_START": 2023, "Total Visits": 754.0, "Total Visitors": 635.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3964.0, "Total Transactions": 85.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.84, "MEDIAN_SPEND_PER_CUSTOMER": 53.73 }, "geometry": { "type": "Point", "coordinates": [ -75.147499, 39.940906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmf-ht9", "LOCATION_NAME": "Devon & Blakely", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953611, "LONGITUDE": -75.170322, "DATE_RANGE_START": 2023, "Total Visits": 2235.0, "Total Visitors": 1449.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2307.0, "Total Transactions": 192.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.64, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 39.953611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "LOCATION_NAME": "Stock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 979.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 149.95, "MEDIAN_SPEND_PER_CUSTOMER": 149.95 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-djv", "LOCATION_NAME": "Pastificio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911518, "LONGITUDE": -75.174701, "DATE_RANGE_START": 2023, "Total Visits": 853.0, "Total Visitors": 688.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 6281.0, "Total Transactions": 214.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.85, "MEDIAN_SPEND_PER_CUSTOMER": 30.13 }, "geometry": { "type": "Point", "coordinates": [ -75.174701, 39.911518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7bk", "LOCATION_NAME": "Attico Rooftop Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948632, "LONGITUDE": -75.164198, "DATE_RANGE_START": 2023, "Total Visits": 5620.0, "Total Visitors": 3899.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 23.0, "Total Spend": 3751.0, "Total Transactions": 50.0, "Total Customers": 44.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.75, "MEDIAN_SPEND_PER_CUSTOMER": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164198, 39.948632 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-v75", "LOCATION_NAME": "Buk Chon Korean Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948233, "LONGITUDE": -75.143798, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 25.0, "Total Spend": 411.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.72, "MEDIAN_SPEND_PER_CUSTOMER": 47.91 }, "geometry": { "type": "Point", "coordinates": [ -75.143798, 39.948233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm8-djv", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911588, "LONGITUDE": -75.17455, "DATE_RANGE_START": 2023, "Total Visits": 2697.0, "Total Visitors": 2192.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 819.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.56, "MEDIAN_SPEND_PER_CUSTOMER": 49.56 }, "geometry": { "type": "Point", "coordinates": [ -75.17455, 39.911588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2023, "Total Visits": 405.0, "Total Visitors": 359.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4750.0, "Total Transactions": 311.0, "Total Customers": 219.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 15.74 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2023, "Total Visits": 489.0, "Total Visitors": 397.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6462.0, "Total Transactions": 506.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.71, "MEDIAN_SPEND_PER_CUSTOMER": 13.58 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pj3-fxq", "LOCATION_NAME": "T & N Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.024855, "LONGITUDE": -75.166215, "DATE_RANGE_START": 2023, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010244003.0, "MEDIAN_DWELL": 101.0, "Total Spend": 727.0, "Total Transactions": 70.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.11 }, "geometry": { "type": "Point", "coordinates": [ -75.166215, 40.024855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj9-grk", "LOCATION_NAME": "Nedro Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.043815, "LONGITUDE": -75.156105, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 113.0, "POI_CBG": 421010279014.0, "MEDIAN_DWELL": 3.0, "Total Spend": 39.0, "Total Transactions": 6.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.63 }, "geometry": { "type": "Point", "coordinates": [ -75.156105, 40.043815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "LOCATION_NAME": "Open House", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950281, "LONGITUDE": -75.161742, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9235.0, "Total Transactions": 228.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.161742, 39.950281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992302, "LONGITUDE": -75.09981, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 6373.0, "Total Transactions": 99.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.09981, 39.992302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "LOCATION_NAME": "3 Brothers Pizza & Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010379002.0, "MEDIAN_DWELL": null, "Total Spend": 455.0, "Total Transactions": 19.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.27, "MEDIAN_SPEND_PER_CUSTOMER": 26.27 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 108.0, "POI_CBG": 421010093005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 94.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.61, "MEDIAN_SPEND_PER_CUSTOMER": 16.61 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "LOCATION_NAME": "Old Nelson Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951898, "LONGITUDE": -75.173697, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 38009.0, "Total Transactions": 3650.0, "Total Customers": 1678.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.27, "MEDIAN_SPEND_PER_CUSTOMER": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.173697, 39.951898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-3dv", "LOCATION_NAME": "Sheraton Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.95502, "LONGITUDE": -75.193986, "DATE_RANGE_START": 2023, "Total Visits": 2349.0, "Total Visitors": 1442.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 267.0, "Total Spend": 155.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193986, 39.95502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pgg-qs5", "LOCATION_NAME": "32nd Street Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.005082, "LONGITUDE": -75.181898, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 61.0, "Total Spend": 484.0, "Total Transactions": 14.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.0, "MEDIAN_SPEND_PER_CUSTOMER": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181898, 40.005082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "LOCATION_NAME": "DaMo Pasta Lab", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2023, "Total Visits": 233.0, "Total Visitors": 218.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1785.0, "Total Transactions": 85.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.68, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pj3-gx5", "LOCATION_NAME": "Beijing Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022567, "LONGITUDE": -75.162046, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 119.0, "POI_CBG": 421010244002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 356.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.85, "MEDIAN_SPEND_PER_CUSTOMER": 31.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162046, 40.022567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "LOCATION_NAME": "Pasqually's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 118.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5730.0, "Total Transactions": 277.0, "Total Customers": 160.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.95, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-rhq", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978964, "LONGITUDE": -75.271417, "DATE_RANGE_START": 2023, "Total Visits": 975.0, "Total Visitors": 926.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1585.0, "Total Transactions": 104.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.85, "MEDIAN_SPEND_PER_CUSTOMER": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.271417, 39.978964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047834, "LONGITUDE": -75.059433, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 407.0, "Total Transactions": 23.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.98, "MEDIAN_SPEND_PER_CUSTOMER": 20.85 }, "geometry": { "type": "Point", "coordinates": [ -75.059433, 40.047834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-224@628-pm9-whq", "LOCATION_NAME": "Istanbul Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950481, "LONGITUDE": -75.145893, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1559.0, "Total Transactions": 133.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.4, "MEDIAN_SPEND_PER_CUSTOMER": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.145893, 39.950481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 41.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5908.0, "Total Transactions": 664.0, "Total Customers": 376.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 9.85 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-3nq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917267, "LONGITUDE": -75.172584, "DATE_RANGE_START": 2023, "Total Visits": 1263.0, "Total Visitors": 561.0, "POI_CBG": 421010039022.0, "MEDIAN_DWELL": 42.0, "Total Spend": 417.0, "Total Transactions": 46.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.81, "MEDIAN_SPEND_PER_CUSTOMER": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.172584, 39.917267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-fcq", "LOCATION_NAME": "Rustic Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.946665, "LONGITUDE": -75.157591, "DATE_RANGE_START": 2023, "Total Visits": 168.0, "Total Visitors": 128.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 55.0, "Total Spend": 245.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.15, "MEDIAN_SPEND_PER_CUSTOMER": 16.66 }, "geometry": { "type": "Point", "coordinates": [ -75.157591, 39.946665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm8-2c5", "LOCATION_NAME": "Mr Jerk", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93693, "LONGITUDE": -75.190362, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010033003.0, "MEDIAN_DWELL": null, "Total Spend": 289.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.71, "MEDIAN_SPEND_PER_CUSTOMER": 16.89 }, "geometry": { "type": "Point", "coordinates": [ -75.190362, 39.93693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p8h-td9", "LOCATION_NAME": "Bravo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024518, "LONGITUDE": -75.046521, "DATE_RANGE_START": 2023, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010325002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 637.0, "Total Transactions": 31.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.85, "MEDIAN_SPEND_PER_CUSTOMER": 27.88 }, "geometry": { "type": "Point", "coordinates": [ -75.046521, 40.024518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038445, "LONGITUDE": -75.10676, "DATE_RANGE_START": 2023, "Total Visits": 630.0, "Total Visitors": 301.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 5381.0, "Total Transactions": 278.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.34, "MEDIAN_SPEND_PER_CUSTOMER": 20.03 }, "geometry": { "type": "Point", "coordinates": [ -75.10676, 40.038445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph6-whq", "LOCATION_NAME": "Italian Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986561, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2023, "Total Visits": 262.0, "Total Visitors": 14.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 322.0, "Total Spend": 830.0, "Total Transactions": 34.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.55, "MEDIAN_SPEND_PER_CUSTOMER": 27.26 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "LOCATION_NAME": "The Pizza Store", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 99.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 40.0, "Total Spend": 2077.0, "Total Transactions": 83.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.8, "MEDIAN_SPEND_PER_CUSTOMER": 32.91 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967006, "LONGITUDE": -75.169701, "DATE_RANGE_START": 2023, "Total Visits": 1080.0, "Total Visitors": 802.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 31411.0, "Total Transactions": 1816.0, "Total Customers": 975.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.06 }, "geometry": { "type": "Point", "coordinates": [ -75.169701, 39.967006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "LOCATION_NAME": "Cafe Thanh Truc", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2023, "Total Visits": 65.0, "Total Visitors": 65.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 18.0, "Total Spend": 147.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w8v", "LOCATION_NAME": "Pro Image Sports", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087124, "LONGITUDE": -74.961763, "DATE_RANGE_START": 2023, "Total Visits": 402.0, "Total Visitors": 372.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 43.0, "Total Spend": 1578.0, "Total Transactions": 31.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.99, "MEDIAN_SPEND_PER_CUSTOMER": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961763, 40.087124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2023, "Total Visits": 4414.0, "Total Visitors": 2722.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 22.0, "Total Spend": 28609.0, "Total Transactions": 308.0, "Total Customers": 194.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.85, "MEDIAN_SPEND_PER_CUSTOMER": 84.88 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2023, "Total Visits": 1008.0, "Total Visitors": 461.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 27.0, "Total Spend": 9420.0, "Total Transactions": 580.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.06, "MEDIAN_SPEND_PER_CUSTOMER": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2023, "Total Visits": 1740.0, "Total Visitors": 1450.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 14604.0, "Total Transactions": 239.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.04, "MEDIAN_SPEND_PER_CUSTOMER": 74.44 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2ff", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99066, "LONGITUDE": -75.135816, "DATE_RANGE_START": 2023, "Total Visits": 510.0, "Total Visitors": 397.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 318.0, "Total Transactions": 19.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.29, "MEDIAN_SPEND_PER_CUSTOMER": 20.73 }, "geometry": { "type": "Point", "coordinates": [ -75.135816, 39.99066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956717, "LONGITUDE": -75.194268, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 8907.0, "Total Transactions": 1345.0, "Total Customers": 594.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194268, 39.956717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-fmk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054375, "LONGITUDE": -75.072167, "DATE_RANGE_START": 2023, "Total Visits": 348.0, "Total Visitors": 311.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5237.0, "Total Transactions": 358.0, "Total Customers": 278.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.73, "MEDIAN_SPEND_PER_CUSTOMER": 13.89 }, "geometry": { "type": "Point", "coordinates": [ -75.072167, 40.054375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j5f", "LOCATION_NAME": "Vans", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.949842, "LONGITUDE": -75.169276, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 9.0, "Total Spend": 12776.0, "Total Transactions": 122.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.95, "MEDIAN_SPEND_PER_CUSTOMER": 72.42 }, "geometry": { "type": "Point", "coordinates": [ -75.169276, 39.949842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "LOCATION_NAME": "Standard Tap", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96415, "LONGITUDE": -75.140513, "DATE_RANGE_START": 2023, "Total Visits": 646.0, "Total Visitors": 575.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 58.0, "Total Spend": 2060.0, "Total Transactions": 30.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.48, "MEDIAN_SPEND_PER_CUSTOMER": 93.88 }, "geometry": { "type": "Point", "coordinates": [ -75.140513, 39.96415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2023, "Total Visits": 349.0, "Total Visitors": 326.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5462.0, "Total Transactions": 367.0, "Total Customers": 299.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "LOCATION_NAME": "Museum Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 128.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 3266.0, "Total Transactions": 217.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.22, "MEDIAN_SPEND_PER_CUSTOMER": 18.61 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "LOCATION_NAME": "Rapoport Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2023, "Total Visits": 132.0, "Total Visitors": 132.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 107.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.19, "MEDIAN_SPEND_PER_CUSTOMER": 16.37 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-6tv", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951362, "LONGITUDE": -75.166293, "DATE_RANGE_START": 2023, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3435.0, "Total Transactions": 53.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.5, "MEDIAN_SPEND_PER_CUSTOMER": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166293, 39.951362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947898, "LONGITUDE": -75.171322, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3458.0, "Total Transactions": 447.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.56, "MEDIAN_SPEND_PER_CUSTOMER": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.171322, 39.947898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4jv", "LOCATION_NAME": "Embroidery King", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.047142, "LONGITUDE": -75.098509, "DATE_RANGE_START": 2023, "Total Visits": 370.0, "Total Visitors": 308.0, "POI_CBG": 421010305021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 852.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 200.0, "MEDIAN_SPEND_PER_CUSTOMER": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098509, 40.047142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.051189, "LONGITUDE": -75.059475, "DATE_RANGE_START": 2023, "Total Visits": 4646.0, "Total Visitors": 3286.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 154188.0, "Total Transactions": 3461.0, "Total Customers": 2003.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 49.71 }, "geometry": { "type": "Point", "coordinates": [ -75.059475, 40.051189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008138, "LONGITUDE": -75.173207, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1611.0, "Total Transactions": 134.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.45, "MEDIAN_SPEND_PER_CUSTOMER": 7.72 }, "geometry": { "type": "Point", "coordinates": [ -75.173207, 40.008138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-qzz", "LOCATION_NAME": "Randazzo's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944329, "LONGITUDE": -75.172844, "DATE_RANGE_START": 2023, "Total Visits": 1254.0, "Total Visitors": 441.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 325.0, "Total Spend": 2623.0, "Total Transactions": 122.0, "Total Customers": 94.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.42, "MEDIAN_SPEND_PER_CUSTOMER": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.172844, 39.944329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jvz", "LOCATION_NAME": "Thin & Crispy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98312, "LONGITUDE": -75.123059, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010160004.0, "MEDIAN_DWELL": null, "Total Spend": 238.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.42, "MEDIAN_SPEND_PER_CUSTOMER": 69.82 }, "geometry": { "type": "Point", "coordinates": [ -75.123059, 39.98312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-nwk", "LOCATION_NAME": "The El Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.971812, "LONGITUDE": -75.135557, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 111.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 126.0, "Total Spend": 373.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135557, 39.971812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "LOCATION_NAME": "China Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2023, "Total Visits": 570.0, "Total Visitors": 408.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 46.0, "Total Spend": 1121.0, "Total Transactions": 19.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.63, "MEDIAN_SPEND_PER_CUSTOMER": 67.81 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "LOCATION_NAME": "Jetro Cash & Carry", "TOP_CATEGORY": "Grocery and Related Product Merchant Wholesalers", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2023, "Total Visits": 2458.0, "Total Visitors": 1766.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 357565.0, "Total Transactions": 507.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 534.44, "MEDIAN_SPEND_PER_CUSTOMER": 524.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2023, "Total Visits": 909.0, "Total Visitors": 775.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 13628.0, "Total Transactions": 995.0, "Total Customers": 542.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.7, "MEDIAN_SPEND_PER_CUSTOMER": 17.01 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-k75", "LOCATION_NAME": "Best Buy", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.082306, "LONGITUDE": -75.023635, "DATE_RANGE_START": 2023, "Total Visits": 1532.0, "Total Visitors": 1407.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 122099.0, "Total Transactions": 785.0, "Total Customers": 569.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.92, "MEDIAN_SPEND_PER_CUSTOMER": 86.37 }, "geometry": { "type": "Point", "coordinates": [ -75.023635, 40.082306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-p9z", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.014261, "LONGITUDE": -75.13161, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 4.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 37.0, "Total Spend": 570.0, "Total Transactions": 23.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.24, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.13161, 40.014261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pgf-fj9", "LOCATION_NAME": "Cleopatra Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.956516, "LONGITUDE": -75.206034, "DATE_RANGE_START": 2023, "Total Visits": 413.0, "Total Visitors": 338.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1006.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.0, "MEDIAN_SPEND_PER_CUSTOMER": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206034, 39.956516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99585, "LONGITUDE": -75.166133, "DATE_RANGE_START": 2023, "Total Visits": 942.0, "Total Visitors": 744.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4208.0, "Total Transactions": 343.0, "Total Customers": 278.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.13, "MEDIAN_SPEND_PER_CUSTOMER": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.166133, 39.99585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pg8-bp9", "LOCATION_NAME": "WokWorks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983989, "LONGITUDE": -75.183024, "DATE_RANGE_START": 2023, "Total Visits": 633.0, "Total Visitors": 529.0, "POI_CBG": 421010151022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 25.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.183024, 39.983989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8h-5xq", "LOCATION_NAME": "New Station Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026249, "LONGITUDE": -75.043153, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 94.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2126.0, "Total Transactions": 111.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.88, "MEDIAN_SPEND_PER_CUSTOMER": 24.26 }, "geometry": { "type": "Point", "coordinates": [ -75.043153, 40.026249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dvy-k9f", "LOCATION_NAME": "El Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951008, "LONGITUDE": -75.198241, "DATE_RANGE_START": 2023, "Total Visits": 1095.0, "Total Visitors": 485.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 113.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.2, "MEDIAN_SPEND_PER_CUSTOMER": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.198241, 39.951008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-v75", "LOCATION_NAME": "JJ Bootleggers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94896, "LONGITUDE": -75.143844, "DATE_RANGE_START": 2023, "Total Visits": 61.0, "Total Visitors": 45.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 10982.0, "Total Transactions": 421.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.84, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.143844, 39.94896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2023, "Total Visits": 906.0, "Total Visitors": 711.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 13859.0, "Total Transactions": 1294.0, "Total Customers": 823.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.33, "MEDIAN_SPEND_PER_CUSTOMER": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfy-2ff", "LOCATION_NAME": "Tasty Twisters Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035673, "LONGITUDE": -75.236122, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 36.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 343.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.66 }, "geometry": { "type": "Point", "coordinates": [ -75.236122, 40.035673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2023, "Total Visits": 660.0, "Total Visitors": 514.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5197.0, "Total Transactions": 624.0, "Total Customers": 258.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.8, "MEDIAN_SPEND_PER_CUSTOMER": 11.19 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "LOCATION_NAME": "Frame Fatale", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 405.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 46.0, "Total Spend": 580.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 173.01, "MEDIAN_SPEND_PER_CUSTOMER": 173.01 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-jd9", "LOCATION_NAME": "Westin Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952114, "LONGITUDE": -75.168477, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 38.0, "Total Spend": 19076.0, "Total Transactions": 66.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 94.37 }, "geometry": { "type": "Point", "coordinates": [ -75.168477, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmc-vzz", "LOCATION_NAME": "Chopstick House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926547, "LONGITUDE": -75.14612, "DATE_RANGE_START": 2023, "Total Visits": 225.0, "Total Visitors": 106.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 83.0, "Total Spend": 620.0, "Total Transactions": 31.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.55, "MEDIAN_SPEND_PER_CUSTOMER": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.14612, 39.926547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "LOCATION_NAME": "John's Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 144.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 842.0, "Total Transactions": 84.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2023, "Total Visits": 386.0, "Total Visitors": 319.0, "POI_CBG": 421010317003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8833.0, "Total Transactions": 651.0, "Total Customers": 382.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.38, "MEDIAN_SPEND_PER_CUSTOMER": 18.38 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-234@628-pmf-jd9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95232, "LONGITUDE": -75.167812, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2928.0, "Total Transactions": 248.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.78, "MEDIAN_SPEND_PER_CUSTOMER": 13.65 }, "geometry": { "type": "Point", "coordinates": [ -75.167812, 39.95232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "LOCATION_NAME": "Christie's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2023, "Total Visits": 108.0, "Total Visitors": 68.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4063.0, "Total Transactions": 292.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.61, "MEDIAN_SPEND_PER_CUSTOMER": 18.33 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-224@628-pmb-fcq", "LOCATION_NAME": "Poke Burri Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946753, "LONGITUDE": -75.15758, "DATE_RANGE_START": 2023, "Total Visits": 343.0, "Total Visitors": 159.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 629.0, "Total Transactions": 33.0, "Total Customers": 23.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.88, "MEDIAN_SPEND_PER_CUSTOMER": 24.41 }, "geometry": { "type": "Point", "coordinates": [ -75.15758, 39.946753 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-223@628-pfz-bzf", "LOCATION_NAME": "Yanako", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025622, "LONGITUDE": -75.223563, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 59.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 174.0, "Total Spend": 4362.0, "Total Transactions": 65.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.96, "MEDIAN_SPEND_PER_CUSTOMER": 61.16 }, "geometry": { "type": "Point", "coordinates": [ -75.223563, 40.025622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "LOCATION_NAME": "Falafel Time", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 124.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 423.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.41, "MEDIAN_SPEND_PER_CUSTOMER": 13.87 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2023, "Total Visits": 144.0, "Total Visitors": 115.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5163.0, "Total Transactions": 344.0, "Total Customers": 273.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.46, "MEDIAN_SPEND_PER_CUSTOMER": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-bp9", "LOCATION_NAME": "Brown Street Coffee & Banhery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970469, "LONGITUDE": -75.179503, "DATE_RANGE_START": 2023, "Total Visits": 247.0, "Total Visitors": 214.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 886.0, "Total Transactions": 74.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.26, "MEDIAN_SPEND_PER_CUSTOMER": 21.35 }, "geometry": { "type": "Point", "coordinates": [ -75.179503, 39.970469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-n89", "LOCATION_NAME": "Southside Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960341, "LONGITUDE": -75.225407, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 13.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 230.0, "Total Spend": 462.0, "Total Transactions": 33.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.12, "MEDIAN_SPEND_PER_CUSTOMER": 12.27 }, "geometry": { "type": "Point", "coordinates": [ -75.225407, 39.960341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "LOCATION_NAME": "Quaker Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060575, "LONGITUDE": -75.084417, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 3071.0, "Total Transactions": 109.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.76, "MEDIAN_SPEND_PER_CUSTOMER": 34.29 }, "geometry": { "type": "Point", "coordinates": [ -75.084417, 40.060575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "LOCATION_NAME": "Ganaan Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": null, "Total Spend": 2765.0, "Total Transactions": 85.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.75 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-td9", "LOCATION_NAME": "Campus Pizza Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983716, "LONGITUDE": -75.149807, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 114.0, "POI_CBG": 421010377002.0, "MEDIAN_DWELL": 69.0, "Total Spend": 41.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.45, "MEDIAN_SPEND_PER_CUSTOMER": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.149807, 39.983716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "LOCATION_NAME": "Tattooed Mom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941715, "LONGITUDE": -75.151895, "DATE_RANGE_START": 2023, "Total Visits": 461.0, "Total Visitors": 461.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 22767.0, "Total Transactions": 664.0, "Total Customers": 539.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.05, "MEDIAN_SPEND_PER_CUSTOMER": 31.87 }, "geometry": { "type": "Point", "coordinates": [ -75.151895, 39.941715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "LOCATION_NAME": "New Star Express Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 188.0, "POI_CBG": 421010111004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2507.0, "Total Transactions": 78.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.27, "MEDIAN_SPEND_PER_CUSTOMER": 31.71 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 185.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2015.0, "Total Transactions": 119.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.43, "MEDIAN_SPEND_PER_CUSTOMER": 15.44 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5fz", "LOCATION_NAME": "Cogito Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949868, "LONGITUDE": -75.160219, "DATE_RANGE_START": 2023, "Total Visits": 4640.0, "Total Visitors": 2981.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 92.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.63, "MEDIAN_SPEND_PER_CUSTOMER": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160219, 39.949868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-st9", "LOCATION_NAME": "Osteria", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.965024, "LONGITUDE": -75.161082, "DATE_RANGE_START": 2023, "Total Visits": 738.0, "Total Visitors": 524.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 85.0, "Total Spend": 2492.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.0, "MEDIAN_SPEND_PER_CUSTOMER": 96.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161082, 39.965024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954427, "LONGITUDE": -75.169903, "DATE_RANGE_START": 2023, "Total Visits": 209.0, "Total Visitors": 147.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 15695.0, "Total Transactions": 306.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.9, "MEDIAN_SPEND_PER_CUSTOMER": 40.95 }, "geometry": { "type": "Point", "coordinates": [ -75.169903, 39.954427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "LOCATION_NAME": "Red Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2023, "Total Visits": 669.0, "Total Visitors": 536.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 70.0, "Total Spend": 14439.0, "Total Transactions": 169.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.22, "MEDIAN_SPEND_PER_CUSTOMER": 81.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm4-ct9", "LOCATION_NAME": "Hibachi 2 Go", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924257, "LONGITUDE": -75.170377, "DATE_RANGE_START": 2023, "Total Visits": 60.0, "Total Visitors": 60.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 324.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.82, "MEDIAN_SPEND_PER_CUSTOMER": 22.67 }, "geometry": { "type": "Point", "coordinates": [ -75.170377, 39.924257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "LOCATION_NAME": "Little Italy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 167.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 51.0, "Total Spend": 2988.0, "Total Transactions": 164.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.42, "MEDIAN_SPEND_PER_CUSTOMER": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01513, "LONGITUDE": -75.178205, "DATE_RANGE_START": 2023, "Total Visits": 44.0, "Total Visitors": 35.0, "POI_CBG": 421010206001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3309.0, "Total Transactions": 457.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.69, "MEDIAN_SPEND_PER_CUSTOMER": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.178205, 40.01513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024675, "LONGITUDE": -75.147531, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010283003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3536.0, "Total Transactions": 431.0, "Total Customers": 182.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.83 }, "geometry": { "type": "Point", "coordinates": [ -75.147531, 40.024675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "LOCATION_NAME": "Olive Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2023, "Total Visits": 1264.0, "Total Visitors": 1230.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 44.0, "Total Spend": 17586.0, "Total Transactions": 257.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.05, "MEDIAN_SPEND_PER_CUSTOMER": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-xnq", "LOCATION_NAME": "The Halal Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955232, "LONGITUDE": -75.156428, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 284.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 18.07 }, "geometry": { "type": "Point", "coordinates": [ -75.156428, 39.955232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvr-5pv", "LOCATION_NAME": "Jim's Food Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923383, "LONGITUDE": -75.221531, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 110.0, "POI_CBG": 421010067001.0, "MEDIAN_DWELL": 196.0, "Total Spend": 174.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.15, "MEDIAN_SPEND_PER_CUSTOMER": 20.15 }, "geometry": { "type": "Point", "coordinates": [ -75.221531, 39.923383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "LOCATION_NAME": "Ray's Cafe & Teahouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2023, "Total Visits": 185.0, "Total Visitors": 185.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 142.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.6, "MEDIAN_SPEND_PER_CUSTOMER": 56.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-ty9", "LOCATION_NAME": "Sakura Japanese Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962988, "LONGITUDE": -75.163765, "DATE_RANGE_START": 2023, "Total Visits": 70.0, "Total Visitors": 70.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": null, "Total Spend": 404.0, "Total Transactions": 19.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.71, "MEDIAN_SPEND_PER_CUSTOMER": 17.14 }, "geometry": { "type": "Point", "coordinates": [ -75.163765, 39.962988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962997, "LONGITUDE": -75.174044, "DATE_RANGE_START": 2023, "Total Visits": 2444.0, "Total Visitors": 1404.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 118155.0, "Total Transactions": 2856.0, "Total Customers": 1165.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.38, "MEDIAN_SPEND_PER_CUSTOMER": 48.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174044, 39.962997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgd-zxq", "LOCATION_NAME": "GIANT Heirloom Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.954753, "LONGITUDE": -75.191926, "DATE_RANGE_START": 2023, "Total Visits": 1368.0, "Total Visitors": 770.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 74.0, "Total Spend": 18998.0, "Total Transactions": 833.0, "Total Customers": 460.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.191926, 39.954753 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2023, "Total Visits": 391.0, "Total Visitors": 246.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5623.0, "Total Transactions": 274.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmb-5cq", "LOCATION_NAME": "AHF Pharmacy Philadelphia", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.950759, "LONGITUDE": -75.160674, "DATE_RANGE_START": 2023, "Total Visits": 4506.0, "Total Visitors": 3150.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 133.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.03, "MEDIAN_SPEND_PER_CUSTOMER": 53.03 }, "geometry": { "type": "Point", "coordinates": [ -75.160674, 39.950759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992771, "LONGITUDE": -75.09764, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 15.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7740.0, "Total Transactions": 441.0, "Total Customers": 318.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.3, "MEDIAN_SPEND_PER_CUSTOMER": 17.77 }, "geometry": { "type": "Point", "coordinates": [ -75.09764, 39.992771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 180.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 274.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.46, "MEDIAN_SPEND_PER_CUSTOMER": 30.46 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-psq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.120488, "LONGITUDE": -75.01815, "DATE_RANGE_START": 2023, "Total Visits": 679.0, "Total Visitors": 526.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 7195.0, "Total Transactions": 373.0, "Total Customers": 202.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.17, "MEDIAN_SPEND_PER_CUSTOMER": 27.23 }, "geometry": { "type": "Point", "coordinates": [ -75.01815, 40.120488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "LOCATION_NAME": "Moshulu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942327, "LONGITUDE": -75.141319, "DATE_RANGE_START": 2023, "Total Visits": 1685.0, "Total Visitors": 1207.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 8792.0, "Total Transactions": 94.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.04, "MEDIAN_SPEND_PER_CUSTOMER": 57.33 }, "geometry": { "type": "Point", "coordinates": [ -75.141319, 39.942327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2023, "Total Visits": 1036.0, "Total Visitors": 757.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4226.0, "Total Transactions": 184.0, "Total Customers": 144.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.91 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "LOCATION_NAME": "Crunchik'n", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2023, "Total Visits": 2256.0, "Total Visitors": 1166.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 370.0, "Total Spend": 161.0, "Total Transactions": 10.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.18, "MEDIAN_SPEND_PER_CUSTOMER": 13.91 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "LOCATION_NAME": "Race Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 139.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 495.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.58, "MEDIAN_SPEND_PER_CUSTOMER": 46.58 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.015674, "LONGITUDE": -75.137715, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 10.0, "POI_CBG": 421010197004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 15080.0, "Total Transactions": 249.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.17, "MEDIAN_SPEND_PER_CUSTOMER": 37.35 }, "geometry": { "type": "Point", "coordinates": [ -75.137715, 40.015674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-p7x-b6k", "LOCATION_NAME": "Amana Food Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040393, "LONGITUDE": -75.065848, "DATE_RANGE_START": 2023, "Total Visits": 888.0, "Total Visitors": 572.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 859.0, "Total Transactions": 43.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.42, "MEDIAN_SPEND_PER_CUSTOMER": 25.31 }, "geometry": { "type": "Point", "coordinates": [ -75.065848, 40.040393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "LOCATION_NAME": "Philadelphia Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.99116, "LONGITUDE": -75.130662, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 327.0, "Total Transactions": 20.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.22, "MEDIAN_SPEND_PER_CUSTOMER": 22.63 }, "geometry": { "type": "Point", "coordinates": [ -75.130662, 39.99116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.914004, "LONGITUDE": -75.154448, "DATE_RANGE_START": 2023, "Total Visits": 2042.0, "Total Visitors": 1844.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 62.0, "Total Spend": 733.0, "Total Transactions": 9.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.23, "MEDIAN_SPEND_PER_CUSTOMER": 234.97 }, "geometry": { "type": "Point", "coordinates": [ -75.154448, 39.914004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-s5z", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.011063, "LONGITUDE": -75.115609, "DATE_RANGE_START": 2023, "Total Visits": 43.0, "Total Visitors": 26.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 2221.0, "Total Transactions": 33.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.56, "MEDIAN_SPEND_PER_CUSTOMER": 19.98 }, "geometry": { "type": "Point", "coordinates": [ -75.115609, 40.011063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.047627, "LONGITUDE": -75.055186, "DATE_RANGE_START": 2023, "Total Visits": 411.0, "Total Visitors": 386.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 28.0, "Total Spend": 11145.0, "Total Transactions": 269.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.98, "MEDIAN_SPEND_PER_CUSTOMER": 38.75 }, "geometry": { "type": "Point", "coordinates": [ -75.055186, 40.047627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-v4v", "LOCATION_NAME": "Olde City Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949742, "LONGITUDE": -75.144049, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 198.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 82.0, "Total Transactions": 8.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 32.61 }, "geometry": { "type": "Point", "coordinates": [ -75.144049, 39.949742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm3-wff", "LOCATION_NAME": "Passyunk Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.931431, "LONGITUDE": -75.161312, "DATE_RANGE_START": 2023, "Total Visits": 390.0, "Total Visitors": 233.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 92.0, "Total Spend": 572.0, "Total Transactions": 29.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.35, "MEDIAN_SPEND_PER_CUSTOMER": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.161312, 39.931431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kpv", "LOCATION_NAME": "Pearl", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951744, "LONGITUDE": -75.172393, "DATE_RANGE_START": 2023, "Total Visits": 2870.0, "Total Visitors": 2053.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 154.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.24, "MEDIAN_SPEND_PER_CUSTOMER": 41.24 }, "geometry": { "type": "Point", "coordinates": [ -75.172393, 39.951744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928884, "LONGITUDE": -75.229306, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2854.0, "Total Transactions": 302.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.83, "MEDIAN_SPEND_PER_CUSTOMER": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -75.229306, 39.928884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972302, "LONGITUDE": -75.125646, "DATE_RANGE_START": 2023, "Total Visits": 675.0, "Total Visitors": 306.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 59.0, "Total Spend": 2771.0, "Total Transactions": 410.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.67, "MEDIAN_SPEND_PER_CUSTOMER": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -75.125646, 39.972302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2023, "Total Visits": 354.0, "Total Visitors": 333.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 7178.0, "Total Transactions": 512.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.07, "MEDIAN_SPEND_PER_CUSTOMER": 15.58 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "LOCATION_NAME": "Monster Pets", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2023, "Total Visits": 296.0, "Total Visitors": 258.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 524.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.68, "MEDIAN_SPEND_PER_CUSTOMER": 63.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pzp-2zf", "LOCATION_NAME": "Station Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.131988, "LONGITUDE": -75.012285, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 222.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3250.0, "Total Transactions": 96.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.53, "MEDIAN_SPEND_PER_CUSTOMER": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012285, 40.131988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "LOCATION_NAME": "Luigi's Pizza Fresca", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2023, "Total Visits": 532.0, "Total Visitors": 279.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 32.0, "Total Spend": 443.0, "Total Transactions": 20.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.85, "MEDIAN_SPEND_PER_CUSTOMER": 18.52 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pm9-wc5", "LOCATION_NAME": "Rustica Rosticceria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949727, "LONGITUDE": -75.148072, "DATE_RANGE_START": 2023, "Total Visits": 2253.0, "Total Visitors": 1931.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 96.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.55, "MEDIAN_SPEND_PER_CUSTOMER": 15.55 }, "geometry": { "type": "Point", "coordinates": [ -75.148072, 39.949727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pm4-pvz", "LOCATION_NAME": "Lorenzo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938858, "LONGITUDE": -75.157989, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 248.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 190.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.74, "MEDIAN_SPEND_PER_CUSTOMER": 35.74 }, "geometry": { "type": "Point", "coordinates": [ -75.157989, 39.938858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-6tv", "LOCATION_NAME": "Allen Tire & Service", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.048405, "LONGITUDE": -75.096529, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 44.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": null, "Total Spend": 1900.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 388.36, "MEDIAN_SPEND_PER_CUSTOMER": 388.36 }, "geometry": { "type": "Point", "coordinates": [ -75.096529, 40.048405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-py9", "LOCATION_NAME": "Colomy Paint & Decorating Llc", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.969376, "LONGITUDE": -75.140197, "DATE_RANGE_START": 2023, "Total Visits": 852.0, "Total Visitors": 802.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 116.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.4, "MEDIAN_SPEND_PER_CUSTOMER": 46.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140197, 39.969376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnw-psq", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.969094, "LONGITUDE": -75.139046, "DATE_RANGE_START": 2023, "Total Visits": 2058.0, "Total Visitors": 1046.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 176472.0, "Total Transactions": 4569.0, "Total Customers": 2086.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.19, "MEDIAN_SPEND_PER_CUSTOMER": 41.46 }, "geometry": { "type": "Point", "coordinates": [ -75.139046, 39.969094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031983, "LONGITUDE": -75.213303, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 94.0, "Total Spend": 2006.0, "Total Transactions": 73.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.17, "MEDIAN_SPEND_PER_CUSTOMER": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.213303, 40.031983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044002, "LONGITUDE": -75.10221, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6262.0, "Total Transactions": 695.0, "Total Customers": 209.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.12, "MEDIAN_SPEND_PER_CUSTOMER": 10.52 }, "geometry": { "type": "Point", "coordinates": [ -75.10221, 40.044002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-ph5-wc5", "LOCATION_NAME": "Four Seasons", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.97425, "LONGITUDE": -75.240201, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 44.0, "POI_CBG": 421010101001.0, "MEDIAN_DWELL": 363.0, "Total Spend": 461.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.9, "MEDIAN_SPEND_PER_CUSTOMER": 33.95 }, "geometry": { "type": "Point", "coordinates": [ -75.240201, 39.97425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj9-6p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.042511, "LONGITUDE": -75.144222, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010278002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2461.0, "Total Transactions": 56.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.59 }, "geometry": { "type": "Point", "coordinates": [ -75.144222, 40.042511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-qs5", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.912638, "LONGITUDE": -75.243535, "DATE_RANGE_START": 2023, "Total Visits": 218.0, "Total Visitors": 138.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1547.0, "Total Transactions": 51.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.02, "MEDIAN_SPEND_PER_CUSTOMER": 41.86 }, "geometry": { "type": "Point", "coordinates": [ -75.243535, 39.912638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "LOCATION_NAME": "NO 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 485.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 539.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.48, "MEDIAN_SPEND_PER_CUSTOMER": 30.19 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgf-g49", "LOCATION_NAME": "Texas Wiener", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963218, "LONGITUDE": -75.20203, "DATE_RANGE_START": 2023, "Total Visits": 331.0, "Total Visitors": 195.0, "POI_CBG": 421010108004.0, "MEDIAN_DWELL": 42.0, "Total Spend": 784.0, "Total Transactions": 59.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.33, "MEDIAN_SPEND_PER_CUSTOMER": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.20203, 39.963218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvy-p9z", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953836, "LONGITUDE": -75.203059, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 48.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5058.0, "Total Transactions": 347.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.25, "MEDIAN_SPEND_PER_CUSTOMER": 16.31 }, "geometry": { "type": "Point", "coordinates": [ -75.203059, 39.953836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2023, "Total Visits": 630.0, "Total Visitors": 531.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5304.0, "Total Transactions": 658.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2023, "Total Visits": 758.0, "Total Visitors": 669.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 55381.0, "Total Transactions": 1471.0, "Total Customers": 1185.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.81, "MEDIAN_SPEND_PER_CUSTOMER": 28.56 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-phy-4vz", "LOCATION_NAME": "Paulino Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.021133, "LONGITUDE": -75.122686, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 109.0, "POI_CBG": 421010288001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 181.0, "Total Transactions": 19.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.49, "MEDIAN_SPEND_PER_CUSTOMER": 21.24 }, "geometry": { "type": "Point", "coordinates": [ -75.122686, 40.021133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-ks5", "LOCATION_NAME": "Ribs R' Us", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026224, "LONGITUDE": -75.133, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010285001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 335.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.57, "MEDIAN_SPEND_PER_CUSTOMER": 41.57 }, "geometry": { "type": "Point", "coordinates": [ -75.133, 40.026224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "LOCATION_NAME": "Best Buy Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.07668, "LONGITUDE": -75.026214, "DATE_RANGE_START": 2023, "Total Visits": 774.0, "Total Visitors": 487.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 57.0, "Total Spend": 8293.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 592.0, "MEDIAN_SPEND_PER_CUSTOMER": 592.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026214, 40.07668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-pjv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.993233, "LONGITUDE": -75.096202, "DATE_RANGE_START": 2023, "Total Visits": 536.0, "Total Visitors": 457.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6259.0, "Total Transactions": 292.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.42, "MEDIAN_SPEND_PER_CUSTOMER": 19.95 }, "geometry": { "type": "Point", "coordinates": [ -75.096202, 39.993233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7z-tgk", "LOCATION_NAME": "Pharmacy of America VI", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045178, "LONGITUDE": -75.086639, "DATE_RANGE_START": 2023, "Total Visits": 1184.0, "Total Visitors": 799.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1181.0, "Total Transactions": 61.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.33, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086639, 40.045178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2023, "Total Visits": 7794.0, "Total Visitors": 5033.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 4028.0, "Total Transactions": 539.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.92, "MEDIAN_SPEND_PER_CUSTOMER": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm3-t5f", "LOCATION_NAME": "Black & Brew", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93027, "LONGITUDE": -75.162757, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 7.0, "Total Spend": 285.0, "Total Transactions": 10.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.85, "MEDIAN_SPEND_PER_CUSTOMER": 47.44 }, "geometry": { "type": "Point", "coordinates": [ -75.162757, 39.93027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2023, "Total Visits": 319.0, "Total Visitors": 229.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 197.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 14.63 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2023, "Total Visits": 581.0, "Total Visitors": 456.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 10092.0, "Total Transactions": 601.0, "Total Customers": 446.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.18, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9p-z75", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.101327, "LONGITUDE": -75.030153, "DATE_RANGE_START": 2023, "Total Visits": 978.0, "Total Visitors": 757.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 9.0, "Total Spend": 12391.0, "Total Transactions": 494.0, "Total Customers": 348.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.53, "MEDIAN_SPEND_PER_CUSTOMER": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030153, 40.101327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "LOCATION_NAME": "Calvin Klein", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2023, "Total Visits": 302.0, "Total Visitors": 302.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 53.0, "Total Spend": 3114.0, "Total Transactions": 53.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.96, "MEDIAN_SPEND_PER_CUSTOMER": 29.12 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950573, "LONGITUDE": -75.167127, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5593.0, "Total Transactions": 893.0, "Total Customers": 357.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 6.14 }, "geometry": { "type": "Point", "coordinates": [ -75.167127, 39.950573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dwg-cbk", "LOCATION_NAME": "Hot Spot Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.916984, "LONGITUDE": -75.237394, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 187.0, "POI_CBG": 421010060005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 83.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.77, "MEDIAN_SPEND_PER_CUSTOMER": 14.28 }, "geometry": { "type": "Point", "coordinates": [ -75.237394, 39.916984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "LOCATION_NAME": "Yakitori Boy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2023, "Total Visits": 276.0, "Total Visitors": 263.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 14116.0, "Total Transactions": 132.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.49 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-yqf", "LOCATION_NAME": "Shiao Lan Kung", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955118, "LONGITUDE": -75.15524, "DATE_RANGE_START": 2023, "Total Visits": 21368.0, "Total Visitors": 14769.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 484.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.82, "MEDIAN_SPEND_PER_CUSTOMER": 74.82 }, "geometry": { "type": "Point", "coordinates": [ -75.15524, 39.955118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zxq", "LOCATION_NAME": "Sky Store", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.941905, "LONGITUDE": -75.153237, "DATE_RANGE_START": 2023, "Total Visits": 849.0, "Total Visitors": 698.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2848.0, "Total Transactions": 154.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.16, "MEDIAN_SPEND_PER_CUSTOMER": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.153237, 39.941905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "LOCATION_NAME": "Cry Baby Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2023, "Total Visits": 754.0, "Total Visitors": 635.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1538.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.77, "MEDIAN_SPEND_PER_CUSTOMER": 95.18 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2023, "Total Visits": 679.0, "Total Visitors": 532.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2641.0, "Total Transactions": 106.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "LOCATION_NAME": "Bloomsday Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2023, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": null, "Total Spend": 1581.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.74, "MEDIAN_SPEND_PER_CUSTOMER": 49.96 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-h5z", "LOCATION_NAME": "Ground Up Coffee Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926043, "LONGITUDE": -75.168183, "DATE_RANGE_START": 2023, "Total Visits": 501.0, "Total Visitors": 365.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 111.0, "Total Transactions": 14.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.99, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.168183, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@63s-dvr-cyv", "LOCATION_NAME": "A&j Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.921213, "LONGITUDE": -75.231221, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 212.0, "POI_CBG": 421010062001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 123.0, "Total Transactions": 13.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.39, "MEDIAN_SPEND_PER_CUSTOMER": 14.79 }, "geometry": { "type": "Point", "coordinates": [ -75.231221, 39.921213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pnw-n89", "LOCATION_NAME": "Bagels & Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966819, "LONGITUDE": -75.139896, "DATE_RANGE_START": 2023, "Total Visits": 317.0, "Total Visitors": 228.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3029.0, "Total Transactions": 264.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.97, "MEDIAN_SPEND_PER_CUSTOMER": 13.04 }, "geometry": { "type": "Point", "coordinates": [ -75.139896, 39.966819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2023, "Total Visits": 825.0, "Total Visitors": 664.0, "POI_CBG": 421010061001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2416.0, "Total Transactions": 153.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp5-7wk", "LOCATION_NAME": "Friendly Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.984702, "LONGITUDE": -75.132436, "DATE_RANGE_START": 2023, "Total Visits": 4470.0, "Total Visitors": 1969.0, "POI_CBG": 421010162001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 44.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.69, "MEDIAN_SPEND_PER_CUSTOMER": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132436, 39.984702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pmf-kpv", "LOCATION_NAME": "Je Suis Jolie", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951335, "LONGITUDE": -75.172169, "DATE_RANGE_START": 2023, "Total Visits": 2870.0, "Total Visitors": 2053.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 426.0, "Total Transactions": 6.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172169, 39.951335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-xqz", "LOCATION_NAME": "The Original Turkey", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956427, "LONGITUDE": -75.158805, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 198.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4317.0, "Total Transactions": 276.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.44, "MEDIAN_SPEND_PER_CUSTOMER": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.158805, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2023, "Total Visits": 292.0, "Total Visitors": 169.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 30.0, "Total Spend": 1308.0, "Total Transactions": 115.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.36, "MEDIAN_SPEND_PER_CUSTOMER": 8.15 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "LOCATION_NAME": "Menagerie Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 100.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6608.0, "Total Transactions": 728.0, "Total Customers": 416.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.59, "MEDIAN_SPEND_PER_CUSTOMER": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2023, "Total Visits": 490.0, "Total Visitors": 441.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 15.0, "Total Spend": 6029.0, "Total Transactions": 525.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.29, "MEDIAN_SPEND_PER_CUSTOMER": 11.63 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "LOCATION_NAME": "New London Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 74.0, "POI_CBG": 421010289013.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5241.0, "Total Transactions": 180.0, "Total Customers": 114.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.25, "MEDIAN_SPEND_PER_CUSTOMER": 32.85 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-vpv", "LOCATION_NAME": "Urban Saloon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967182, "LONGITUDE": -75.172904, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 339.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 38.0, "Total Spend": 26658.0, "Total Transactions": 478.0, "Total Customers": 347.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.11, "MEDIAN_SPEND_PER_CUSTOMER": 54.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172904, 39.967182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pj3-k9f", "LOCATION_NAME": "Deke's BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023086, "LONGITUDE": -75.161807, "DATE_RANGE_START": 2023, "Total Visits": 440.0, "Total Visitors": 352.0, "POI_CBG": 421010244002.0, "MEDIAN_DWELL": 76.0, "Total Spend": 8051.0, "Total Transactions": 148.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.12, "MEDIAN_SPEND_PER_CUSTOMER": 38.34 }, "geometry": { "type": "Point", "coordinates": [ -75.161807, 40.023086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-kvf", "LOCATION_NAME": "Bolo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951589, "LONGITUDE": -75.174566, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1179.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 146.49, "MEDIAN_SPEND_PER_CUSTOMER": 146.49 }, "geometry": { "type": "Point", "coordinates": [ -75.174566, 39.951589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-224@628-pg2-cdv", "LOCATION_NAME": "Cherish Philly", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058226, "LONGITUDE": -75.189354, "DATE_RANGE_START": 2023, "Total Visits": 289.0, "Total Visitors": 230.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 236.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.76, "MEDIAN_SPEND_PER_CUSTOMER": 17.76 }, "geometry": { "type": "Point", "coordinates": [ -75.189354, 40.058226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp4-syv", "LOCATION_NAME": "Memphis Market & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98172, "LONGITUDE": -75.120871, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 94.0, "POI_CBG": 421010160001.0, "MEDIAN_DWELL": 134.0, "Total Spend": 2811.0, "Total Transactions": 187.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.9, "MEDIAN_SPEND_PER_CUSTOMER": 17.91 }, "geometry": { "type": "Point", "coordinates": [ -75.120871, 39.98172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-zvf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940644, "LONGITUDE": -75.166616, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 14.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8223.0, "Total Transactions": 550.0, "Total Customers": 416.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.52, "MEDIAN_SPEND_PER_CUSTOMER": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166616, 39.940644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "LOCATION_NAME": "Gia Pronto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 115.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 46.0, "Total Spend": 1412.0, "Total Transactions": 173.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.31, "MEDIAN_SPEND_PER_CUSTOMER": 8.81 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 178.0, "POI_CBG": 421010140001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1511.0, "Total Transactions": 103.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.07, "MEDIAN_SPEND_PER_CUSTOMER": 12.07 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "LOCATION_NAME": "Hibiscus Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2023, "Total Visits": 178.0, "Total Visitors": 165.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2193.0, "Total Transactions": 106.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "LOCATION_NAME": "El Poquito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2023, "Total Visits": 378.0, "Total Visitors": 338.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1700.0, "Total Transactions": 19.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.66, "MEDIAN_SPEND_PER_CUSTOMER": 93.77 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "LOCATION_NAME": "El Merkury", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 192.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 100.0, "Total Spend": 3751.0, "Total Transactions": 224.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-92k", "LOCATION_NAME": "Francesca's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952109, "LONGITUDE": -75.155803, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 162.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4647.0, "Total Transactions": 88.0, "Total Customers": 81.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.93, "MEDIAN_SPEND_PER_CUSTOMER": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155803, 39.952109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-z9f", "LOCATION_NAME": "Rosarios Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934489, "LONGITUDE": -75.169442, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 119.0, "POI_CBG": 421010022002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 765.0, "Total Transactions": 39.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.58, "MEDIAN_SPEND_PER_CUSTOMER": 26.31 }, "geometry": { "type": "Point", "coordinates": [ -75.169442, 39.934489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm4-s5z", "LOCATION_NAME": "The Pizza Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927861, "LONGITUDE": -75.157274, "DATE_RANGE_START": 2023, "Total Visits": 81.0, "Total Visitors": 81.0, "POI_CBG": 421010028011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 457.0, "Total Transactions": 25.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157274, 39.927861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pnt-3wk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974925, "LONGITUDE": -75.119418, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 944.0, "Total Transactions": 51.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.69, "MEDIAN_SPEND_PER_CUSTOMER": 14.18 }, "geometry": { "type": "Point", "coordinates": [ -75.119418, 39.974925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p9p-z2k", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101429, "LONGITUDE": -75.028579, "DATE_RANGE_START": 2023, "Total Visits": 1705.0, "Total Visitors": 1144.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 31.0, "Total Spend": 849.0, "Total Transactions": 49.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 15.76 }, "geometry": { "type": "Point", "coordinates": [ -75.028579, 40.101429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "LOCATION_NAME": "Bistro SouthEast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2023, "Total Visits": 1254.0, "Total Visitors": 441.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 325.0, "Total Spend": 2414.0, "Total Transactions": 90.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.63, "MEDIAN_SPEND_PER_CUSTOMER": 27.41 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-xwk", "LOCATION_NAME": "Hive Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931826, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010030021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3146.0, "Total Transactions": 299.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.78, "MEDIAN_SPEND_PER_CUSTOMER": 16.68 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.931826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "LOCATION_NAME": "Vic Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2023, "Total Visits": 368.0, "Total Visitors": 354.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 69.0, "Total Spend": 5599.0, "Total Transactions": 137.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.35, "MEDIAN_SPEND_PER_CUSTOMER": 37.46 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "255-222@628-pm9-y9z", "LOCATION_NAME": "Milkboy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941731, "LONGITUDE": -75.1493, "DATE_RANGE_START": 2023, "Total Visits": 468.0, "Total Visitors": 421.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1811.0, "Total Transactions": 48.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.15, "MEDIAN_SPEND_PER_CUSTOMER": 41.65 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.941731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.901275, "LONGITUDE": -75.241497, "DATE_RANGE_START": 2023, "Total Visits": 1097.0, "Total Visitors": 742.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 8697.0, "Total Transactions": 507.0, "Total Customers": 380.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.241497, 39.901275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 762.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 40344.0, "Total Transactions": 917.0, "Total Customers": 496.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.69, "MEDIAN_SPEND_PER_CUSTOMER": 48.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-v75", "LOCATION_NAME": "Oishii", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948308, "LONGITUDE": -75.143991, "DATE_RANGE_START": 2023, "Total Visits": 1002.0, "Total Visitors": 759.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 49.0, "Total Spend": 8886.0, "Total Transactions": 359.0, "Total Customers": 319.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143991, 39.948308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.068966, "LONGITUDE": -75.005145, "DATE_RANGE_START": 2023, "Total Visits": 53.0, "Total Visitors": 34.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 30957.0, "Total Transactions": 1903.0, "Total Customers": 757.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.39, "MEDIAN_SPEND_PER_CUSTOMER": 23.62 }, "geometry": { "type": "Point", "coordinates": [ -75.005145, 40.068966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.011535, "LONGITUDE": -75.111696, "DATE_RANGE_START": 2023, "Total Visits": 857.0, "Total Visitors": 634.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6244.0, "Total Transactions": 407.0, "Total Customers": 281.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.58, "MEDIAN_SPEND_PER_CUSTOMER": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.111696, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p7w-wzf", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.034002, "LONGITUDE": -75.046571, "DATE_RANGE_START": 2023, "Total Visits": 615.0, "Total Visitors": 428.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 329.0, "Total Transactions": 10.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.04, "MEDIAN_SPEND_PER_CUSTOMER": 25.04 }, "geometry": { "type": "Point", "coordinates": [ -75.046571, 40.034002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-r49", "LOCATION_NAME": "IGA", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.975344, "LONGITUDE": -75.119619, "DATE_RANGE_START": 2023, "Total Visits": 79.0, "Total Visitors": 46.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 168.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.57, "MEDIAN_SPEND_PER_CUSTOMER": 22.57 }, "geometry": { "type": "Point", "coordinates": [ -75.119619, 39.975344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvq-5cq", "LOCATION_NAME": "Sanchez Tire Shop", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.947772, "LONGITUDE": -75.232416, "DATE_RANGE_START": 2023, "Total Visits": 430.0, "Total Visitors": 393.0, "POI_CBG": 421010081011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 560.0, "Total Transactions": 8.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.4, "MEDIAN_SPEND_PER_CUSTOMER": 83.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232416, 39.947772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-9s5", "LOCATION_NAME": "Bell Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.912004, "LONGITUDE": -75.149871, "DATE_RANGE_START": 2023, "Total Visits": 2296.0, "Total Visitors": 1851.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5613.0, "Total Transactions": 173.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.22, "MEDIAN_SPEND_PER_CUSTOMER": 33.92 }, "geometry": { "type": "Point", "coordinates": [ -75.149871, 39.912004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.028753, "LONGITUDE": -75.099174, "DATE_RANGE_START": 2023, "Total Visits": 1410.0, "Total Visitors": 1233.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 20381.0, "Total Transactions": 386.0, "Total Customers": 268.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.63, "MEDIAN_SPEND_PER_CUSTOMER": 42.67 }, "geometry": { "type": "Point", "coordinates": [ -75.099174, 40.028753 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-gkz", "LOCATION_NAME": "Wynnefield Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984663, "LONGITUDE": -75.231132, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 88.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 2729.0, "Total Transactions": 100.0, "Total Customers": 69.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.1, "MEDIAN_SPEND_PER_CUSTOMER": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.231132, 39.984663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032656, "LONGITUDE": -75.084461, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 21.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1819.0, "Total Transactions": 233.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 9.14 }, "geometry": { "type": "Point", "coordinates": [ -75.084461, 40.032656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.081792, "LONGITUDE": -75.172107, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1769.0, "Total Transactions": 63.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.38, "MEDIAN_SPEND_PER_CUSTOMER": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.172107, 40.081792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvv-249", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.916025, "LONGITUDE": -75.24632, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 197.0, "Total Transactions": 9.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.24632, 39.916025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-223@628-pmb-fxq", "LOCATION_NAME": "Greene Street", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941983, "LONGITUDE": -75.154087, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 70.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.63, "MEDIAN_SPEND_PER_CUSTOMER": 22.63 }, "geometry": { "type": "Point", "coordinates": [ -75.154087, 39.941983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm9-y5f", "LOCATION_NAME": "SJ Cigar Co", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.941758, "LONGITUDE": -75.147715, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 30.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 241.0, "Total Spend": 720.0, "Total Transactions": 13.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.78, "MEDIAN_SPEND_PER_CUSTOMER": 26.06 }, "geometry": { "type": "Point", "coordinates": [ -75.147715, 39.941758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-hh5", "LOCATION_NAME": "Mandarin Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952035, "LONGITUDE": -75.171616, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 230.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1619.0, "Total Transactions": 61.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.93, "MEDIAN_SPEND_PER_CUSTOMER": 25.78 }, "geometry": { "type": "Point", "coordinates": [ -75.171616, 39.952035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "LOCATION_NAME": "Super Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 797.0, "Total Transactions": 33.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.64, "MEDIAN_SPEND_PER_CUSTOMER": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-226@628-pmb-xnq", "LOCATION_NAME": "Access Karaoke", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.955238, "LONGITUDE": -75.156452, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2711.0, "Total Transactions": 43.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.7, "MEDIAN_SPEND_PER_CUSTOMER": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156452, 39.955238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-xdv", "LOCATION_NAME": "Tiffin", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970144, "LONGITUDE": -75.148679, "DATE_RANGE_START": 2023, "Total Visits": 451.0, "Total Visitors": 441.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 852.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.68, "MEDIAN_SPEND_PER_CUSTOMER": 49.68 }, "geometry": { "type": "Point", "coordinates": [ -75.148679, 39.970144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pm9-wc5", "LOCATION_NAME": "Scoop DeVille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949779, "LONGITUDE": -75.148514, "DATE_RANGE_START": 2023, "Total Visits": 70.0, "Total Visitors": 63.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3515.0, "Total Transactions": 235.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.78, "MEDIAN_SPEND_PER_CUSTOMER": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.148514, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095709, "LONGITUDE": -75.015088, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1289.0, "Total Transactions": 164.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.44, "MEDIAN_SPEND_PER_CUSTOMER": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.015088, 40.095709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "LOCATION_NAME": "Bleu Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 158.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 227.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.14, "MEDIAN_SPEND_PER_CUSTOMER": 59.33 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "LOCATION_NAME": "Polo Ralph Lauren Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 105.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 71.0, "Total Spend": 9516.0, "Total Transactions": 119.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.82, "MEDIAN_SPEND_PER_CUSTOMER": 67.42 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwd-pjv", "LOCATION_NAME": "Urban Shop 543", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.887709, "LONGITUDE": -75.176019, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 11.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 76.0, "Total Spend": 398.0, "Total Transactions": 40.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.54, "MEDIAN_SPEND_PER_CUSTOMER": 50.09 }, "geometry": { "type": "Point", "coordinates": [ -75.176019, 39.887709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "LOCATION_NAME": "2nd Street Brew House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 31.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 163.0, "Total Spend": 3152.0, "Total Transactions": 90.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.13, "MEDIAN_SPEND_PER_CUSTOMER": 33.13 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "LOCATION_NAME": "Einstein Brothers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994394, "LONGITUDE": -75.238422, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010117001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 248.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.09, "MEDIAN_SPEND_PER_CUSTOMER": 20.94 }, "geometry": { "type": "Point", "coordinates": [ -75.238422, 39.994394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2023, "Total Visits": 328.0, "Total Visitors": 273.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1899.0, "Total Transactions": 177.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.45, "MEDIAN_SPEND_PER_CUSTOMER": 11.11 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951478, "LONGITUDE": -75.166517, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 39.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6567.0, "Total Transactions": 303.0, "Total Customers": 257.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.76, "MEDIAN_SPEND_PER_CUSTOMER": 20.46 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 39.951478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pp5-5vf", "LOCATION_NAME": "Buzz Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977401, "LONGITUDE": -75.135043, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 58.0, "POI_CBG": 421010157002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 138.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.34, "MEDIAN_SPEND_PER_CUSTOMER": 20.34 }, "geometry": { "type": "Point", "coordinates": [ -75.135043, 39.977401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgf-52k", "LOCATION_NAME": "Woosa Bubble Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959251, "LONGITUDE": -75.194643, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 6.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 884.0, "Total Spend": 413.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.05, "MEDIAN_SPEND_PER_CUSTOMER": 13.14 }, "geometry": { "type": "Point", "coordinates": [ -75.194643, 39.959251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-fcq", "LOCATION_NAME": "Ace Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.946716, "LONGITUDE": -75.157593, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 149.0, "Total Spend": 2970.0, "Total Transactions": 130.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.24, "MEDIAN_SPEND_PER_CUSTOMER": 25.67 }, "geometry": { "type": "Point", "coordinates": [ -75.157593, 39.946716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-229@628-pmf-mff", "LOCATION_NAME": "Federal Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956193, "LONGITUDE": -75.1692, "DATE_RANGE_START": 2023, "Total Visits": 2329.0, "Total Visitors": 1725.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 129.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.94, "MEDIAN_SPEND_PER_CUSTOMER": 6.94 }, "geometry": { "type": "Point", "coordinates": [ -75.1692, 39.956193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "LOCATION_NAME": "Mr Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1798.0, "Total Transactions": 45.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.59, "MEDIAN_SPEND_PER_CUSTOMER": 39.37 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2023, "Total Visits": 907.0, "Total Visitors": 762.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 10072.0, "Total Transactions": 759.0, "Total Customers": 511.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "LOCATION_NAME": "Heng Fa Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2023, "Total Visits": 338.0, "Total Visitors": 263.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13930.0, "Total Transactions": 511.0, "Total Customers": 385.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.24, "MEDIAN_SPEND_PER_CUSTOMER": 18.12 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "LOCATION_NAME": "Function Coffee Labs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2023, "Total Visits": 749.0, "Total Visitors": 432.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1034.0, "Total Transactions": 83.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.970551, "LONGITUDE": -75.155052, "DATE_RANGE_START": 2023, "Total Visits": 502.0, "Total Visitors": 417.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 223.0, "Total Transactions": 24.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.155052, 39.970551 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2023, "Total Visits": 903.0, "Total Visitors": 695.0, "POI_CBG": 421010348022.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3793.0, "Total Transactions": 334.0, "Total Customers": 215.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.4, "MEDIAN_SPEND_PER_CUSTOMER": 11.97 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-y5f", "LOCATION_NAME": "Southside Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940448, "LONGITUDE": -75.17585, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 88.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 328.0, "Total Spend": 81.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.89, "MEDIAN_SPEND_PER_CUSTOMER": 14.36 }, "geometry": { "type": "Point", "coordinates": [ -75.17585, 39.940448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pmf-j35", "LOCATION_NAME": "Sephora", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951248, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 91132.0, "Total Transactions": 1392.0, "Total Customers": 1206.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.6, "MEDIAN_SPEND_PER_CUSTOMER": 52.92 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.951248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-wrk", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99344, "LONGITUDE": -75.155189, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 24.0, "Total Spend": 8650.0, "Total Transactions": 266.0, "Total Customers": 209.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.15, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.155189, 39.99344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2023, "Total Visits": 1870.0, "Total Visitors": 1468.0, "POI_CBG": 421010361002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7976.0, "Total Transactions": 321.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.87, "MEDIAN_SPEND_PER_CUSTOMER": 29.42 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "LOCATION_NAME": "Revolution Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 227.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1345.0, "Total Transactions": 59.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.16 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgh-h5z", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007766, "LONGITUDE": -75.174356, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6791.0, "Total Transactions": 380.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 19.96 }, "geometry": { "type": "Point", "coordinates": [ -75.174356, 40.007766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2023, "Total Visits": 1358.0, "Total Visitors": 676.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 39.0, "Total Spend": 12565.0, "Total Transactions": 762.0, "Total Customers": 521.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.34, "MEDIAN_SPEND_PER_CUSTOMER": 17.37 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pj4-y7q", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.007948, "LONGITUDE": -75.150636, "DATE_RANGE_START": 2023, "Total Visits": 1109.0, "Total Visitors": 671.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1419.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.48, "MEDIAN_SPEND_PER_CUSTOMER": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.150636, 40.007948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfv-26k", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.031707, "LONGITUDE": -75.211248, "DATE_RANGE_START": 2023, "Total Visits": 1353.0, "Total Visitors": 665.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 229454.0, "Total Transactions": 5685.0, "Total Customers": 2142.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.13, "MEDIAN_SPEND_PER_CUSTOMER": 57.66 }, "geometry": { "type": "Point", "coordinates": [ -75.211248, 40.031707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.045972, "LONGITUDE": -75.070633, "DATE_RANGE_START": 2023, "Total Visits": 737.0, "Total Visitors": 521.0, "POI_CBG": 421010314015.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15432.0, "Total Transactions": 1284.0, "Total Customers": 704.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.38, "MEDIAN_SPEND_PER_CUSTOMER": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.070633, 40.045972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2023, "Total Visits": 466.0, "Total Visitors": 377.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3122.0, "Total Transactions": 368.0, "Total Customers": 227.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.06, "MEDIAN_SPEND_PER_CUSTOMER": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2023, "Total Visits": 636.0, "Total Visitors": 475.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5233.0, "Total Transactions": 292.0, "Total Customers": 219.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.99, "MEDIAN_SPEND_PER_CUSTOMER": 14.47 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081209, "LONGITUDE": -74.994945, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 123.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2956.0, "Total Transactions": 390.0, "Total Customers": 152.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 9.99 }, "geometry": { "type": "Point", "coordinates": [ -74.994945, 40.081209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.074724, "LONGITUDE": -75.032595, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 18.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 715.0, "Total Transactions": 49.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.3, "MEDIAN_SPEND_PER_CUSTOMER": 13.04 }, "geometry": { "type": "Point", "coordinates": [ -75.032595, 40.074724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953287, "LONGITUDE": -75.160529, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 86.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1459.0, "Total Transactions": 118.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.65, "MEDIAN_SPEND_PER_CUSTOMER": 12.59 }, "geometry": { "type": "Point", "coordinates": [ -75.160529, 39.953287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-fcq", "LOCATION_NAME": "Beer Harbor II", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.030534, "LONGITUDE": -75.082846, "DATE_RANGE_START": 2023, "Total Visits": 130.0, "Total Visitors": 95.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 70.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082846, 40.030534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2023, "Total Visits": 1680.0, "Total Visitors": 1248.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 20832.0, "Total Transactions": 1834.0, "Total Customers": 757.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.96, "MEDIAN_SPEND_PER_CUSTOMER": 13.42 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@63s-dvr-q75", "LOCATION_NAME": "Fastbreak", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936276, "LONGITUDE": -75.219483, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010070001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 428.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219483, 39.936276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgk-nwk", "LOCATION_NAME": "Sharon Reed Book Store", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 40.003494, "LONGITUDE": -75.210472, "DATE_RANGE_START": 2023, "Total Visits": 385.0, "Total Visitors": 291.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 69.0, "Total Spend": 282.0, "Total Transactions": 29.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.99, "MEDIAN_SPEND_PER_CUSTOMER": 5.99 }, "geometry": { "type": "Point", "coordinates": [ -75.210472, 40.003494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-k9f", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.063373, "LONGITUDE": -75.236259, "DATE_RANGE_START": 2023, "Total Visits": 691.0, "Total Visitors": 691.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 2192.0, "Total Transactions": 113.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.9, "MEDIAN_SPEND_PER_CUSTOMER": 16.52 }, "geometry": { "type": "Point", "coordinates": [ -75.236259, 40.063373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dwg-g6k", "LOCATION_NAME": "United", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.917055, "LONGITUDE": -75.235223, "DATE_RANGE_START": 2023, "Total Visits": 312.0, "Total Visitors": 229.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6272.0, "Total Transactions": 286.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.06 }, "geometry": { "type": "Point", "coordinates": [ -75.235223, 39.917055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgm-hwk", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.009599, "LONGITUDE": -75.196284, "DATE_RANGE_START": 2023, "Total Visits": 839.0, "Total Visitors": 690.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 338.0, "Total Transactions": 21.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.74, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.196284, 40.009599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgj-c5z", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979109, "LONGITUDE": -75.160028, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1819.0, "Total Transactions": 115.0, "Total Customers": 98.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.23, "MEDIAN_SPEND_PER_CUSTOMER": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160028, 39.979109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvw-zj9", "LOCATION_NAME": "Lucky Seven Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962742, "LONGITUDE": -75.234853, "DATE_RANGE_START": 2023, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010094004.0, "MEDIAN_DWELL": 473.0, "Total Spend": 116.0, "Total Transactions": 13.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.05, "MEDIAN_SPEND_PER_CUSTOMER": 13.78 }, "geometry": { "type": "Point", "coordinates": [ -75.234853, 39.962742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.005152, "LONGITUDE": -75.109029, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 4.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6209.0, "Total Transactions": 202.0, "Total Customers": 89.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.109029, 40.005152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2023, "Total Visits": 1053.0, "Total Visitors": 777.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1246.0, "Total Transactions": 49.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.38, "MEDIAN_SPEND_PER_CUSTOMER": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "LOCATION_NAME": "Crash Bang Boom", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2023, "Total Visits": 468.0, "Total Visitors": 421.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 22.0, "Total Spend": 341.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 136.0, "MEDIAN_SPEND_PER_CUSTOMER": 136.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "LOCATION_NAME": "Walmart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.082982, "LONGITUDE": -75.022614, "DATE_RANGE_START": 2023, "Total Visits": 9988.0, "Total Visitors": 6511.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 311646.0, "Total Transactions": 5104.0, "Total Customers": 2843.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.7, "MEDIAN_SPEND_PER_CUSTOMER": 53.48 }, "geometry": { "type": "Point", "coordinates": [ -75.022614, 40.082982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "LOCATION_NAME": "Beer Stop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.015845, "LONGITUDE": -75.130258, "DATE_RANGE_START": 2023, "Total Visits": 308.0, "Total Visitors": 175.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 35.0, "Total Spend": 683.0, "Total Transactions": 15.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.82, "MEDIAN_SPEND_PER_CUSTOMER": 22.82 }, "geometry": { "type": "Point", "coordinates": [ -75.130258, 40.015845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "LOCATION_NAME": "El Vez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2023, "Total Visits": 321.0, "Total Visitors": 232.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 57203.0, "Total Transactions": 740.0, "Total Customers": 659.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.92, "MEDIAN_SPEND_PER_CUSTOMER": 66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "LOCATION_NAME": "Abyssinia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 163.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5114.0, "Total Transactions": 144.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.64 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "LOCATION_NAME": "Allegro Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2023, "Total Visits": 297.0, "Total Visitors": 152.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7734.0, "Total Transactions": 483.0, "Total Customers": 322.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.39, "MEDIAN_SPEND_PER_CUSTOMER": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7bk", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948985, "LONGITUDE": -75.163065, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 11.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 41.0, "Total Spend": 150.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.98, "MEDIAN_SPEND_PER_CUSTOMER": 40.98 }, "geometry": { "type": "Point", "coordinates": [ -75.163065, 39.948985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-wzf", "LOCATION_NAME": "Mayfair Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038525, "LONGITUDE": -75.036899, "DATE_RANGE_START": 2023, "Total Visits": 85.0, "Total Visitors": 85.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 667.0, "Total Transactions": 21.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.35, "MEDIAN_SPEND_PER_CUSTOMER": 34.33 }, "geometry": { "type": "Point", "coordinates": [ -75.036899, 40.038525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-85f", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.028399, "LONGITUDE": -75.127425, "DATE_RANGE_START": 2023, "Total Visits": 274.0, "Total Visitors": 116.0, "POI_CBG": 421010286006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 396.0, "Total Transactions": 44.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127425, 40.028399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "LOCATION_NAME": "Makkah Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 123.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 11177.0, "Total Transactions": 541.0, "Total Customers": 256.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.81, "MEDIAN_SPEND_PER_CUSTOMER": 21.46 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.980938, "LONGITUDE": -75.144183, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 50.0, "POI_CBG": 421010156002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 2811.0, "Total Transactions": 71.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.8, "MEDIAN_SPEND_PER_CUSTOMER": 27.43 }, "geometry": { "type": "Point", "coordinates": [ -75.144183, 39.980938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "LOCATION_NAME": "Pho Don", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2023, "Total Visits": 98.0, "Total Visitors": 98.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": null, "Total Spend": 1311.0, "Total Transactions": 63.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.9, "MEDIAN_SPEND_PER_CUSTOMER": 21.66 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.967205, "LONGITUDE": -75.175753, "DATE_RANGE_START": 2023, "Total Visits": 456.0, "Total Visitors": 401.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1894.0, "Total Transactions": 60.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.67, "MEDIAN_SPEND_PER_CUSTOMER": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.175753, 39.967205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "LOCATION_NAME": "The Bagel Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937484, "LONGITUDE": -75.150444, "DATE_RANGE_START": 2023, "Total Visits": 254.0, "Total Visitors": 172.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 4230.0, "Total Transactions": 308.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.8, "MEDIAN_SPEND_PER_CUSTOMER": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.150444, 39.937484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2023, "Total Visits": 719.0, "Total Visitors": 561.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 844.0, "Total Transactions": 24.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.62, "MEDIAN_SPEND_PER_CUSTOMER": 17.76 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "LOCATION_NAME": "Checkers Drive-In Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 132.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6388.0, "Total Transactions": 390.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.15, "MEDIAN_SPEND_PER_CUSTOMER": 16.82 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "LOCATION_NAME": "Cappuccio's Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 165.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1565.0, "Total Transactions": 33.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.35, "MEDIAN_SPEND_PER_CUSTOMER": 20.94 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "LOCATION_NAME": "Arctic Scoop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 184.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2702.0, "Total Transactions": 215.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2023, "Total Visits": 530.0, "Total Visitors": 463.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4473.0, "Total Transactions": 306.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.97, "MEDIAN_SPEND_PER_CUSTOMER": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011202, "LONGITUDE": -75.113033, "DATE_RANGE_START": 2023, "Total Visits": 473.0, "Total Visitors": 227.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7879.0, "Total Transactions": 818.0, "Total Customers": 381.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.48, "MEDIAN_SPEND_PER_CUSTOMER": 13.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113033, 40.011202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979435, "LONGITUDE": -75.153173, "DATE_RANGE_START": 2023, "Total Visits": 1249.0, "Total Visitors": 446.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 2517.0, "Total Transactions": 204.0, "Total Customers": 189.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.99, "MEDIAN_SPEND_PER_CUSTOMER": 11.83 }, "geometry": { "type": "Point", "coordinates": [ -75.153173, 39.979435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "LOCATION_NAME": "Pho Cyclo Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2023, "Total Visits": 956.0, "Total Visitors": 631.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1013.0, "Total Transactions": 28.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.8, "MEDIAN_SPEND_PER_CUSTOMER": 23.36 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.080371, "LONGITUDE": -75.171982, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2071.0, "Total Transactions": 153.0, "Total Customers": 119.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.83, "MEDIAN_SPEND_PER_CUSTOMER": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171982, 40.080371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phk-yvz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.054784, "LONGITUDE": -75.126802, "DATE_RANGE_START": 2023, "Total Visits": 395.0, "Total Visitors": 286.0, "POI_CBG": 421010269001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5265.0, "Total Transactions": 251.0, "Total Customers": 168.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.92, "MEDIAN_SPEND_PER_CUSTOMER": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.126802, 40.054784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-gp9", "LOCATION_NAME": "Umai Umai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964683, "LONGITUDE": -75.174102, "DATE_RANGE_START": 2023, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 14.0, "Total Spend": 160.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174102, 39.964683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "LOCATION_NAME": "Tokyo Sushi & Catering", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2023, "Total Visits": 6693.0, "Total Visitors": 3705.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 79.0, "Total Spend": 3791.0, "Total Transactions": 262.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm8-djv", "LOCATION_NAME": "Celebre Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911364, "LONGITUDE": -75.175337, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1810.0, "Total Transactions": 59.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175337, 39.911364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "LOCATION_NAME": "Stargazy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1257.0, "Total Transactions": 39.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.84, "MEDIAN_SPEND_PER_CUSTOMER": 24.09 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-225@628-p85-p35", "LOCATION_NAME": "Cafe Carmela", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05717, "LONGITUDE": -75.030373, "DATE_RANGE_START": 2023, "Total Visits": 256.0, "Total Visitors": 240.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 415.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.99, "MEDIAN_SPEND_PER_CUSTOMER": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -75.030373, 40.05717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-9cq", "LOCATION_NAME": "Chili Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948488, "LONGITUDE": -75.216299, "DATE_RANGE_START": 2023, "Total Visits": 695.0, "Total Visitors": 638.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1354.0, "Total Transactions": 36.0, "Total Customers": 31.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.54, "MEDIAN_SPEND_PER_CUSTOMER": 36.22 }, "geometry": { "type": "Point", "coordinates": [ -75.216299, 39.948488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "LOCATION_NAME": "Sky Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 187.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 24.0, "Total Spend": 1547.0, "Total Transactions": 35.0, "Total Customers": 35.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.69, "MEDIAN_SPEND_PER_CUSTOMER": 35.69 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-r6k", "LOCATION_NAME": "United Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029584, "LONGITUDE": -75.100403, "DATE_RANGE_START": 2023, "Total Visits": 1410.0, "Total Visitors": 1233.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 14312.0, "Total Transactions": 314.0, "Total Customers": 257.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.64, "MEDIAN_SPEND_PER_CUSTOMER": 41.64 }, "geometry": { "type": "Point", "coordinates": [ -75.100403, 40.029584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "LOCATION_NAME": "Best In Town Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2023, "Total Visits": 142.0, "Total Visitors": 56.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 738.0, "Total Spend": 1629.0, "Total Transactions": 59.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.32, "MEDIAN_SPEND_PER_CUSTOMER": 28.43 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-zs5", "LOCATION_NAME": "Samsun Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.941852, "LONGITUDE": -75.15198, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 242.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 75.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15198, 39.941852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 134.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 290.0, "Total Spend": 35451.0, "Total Transactions": 3094.0, "Total Customers": 1509.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.67, "MEDIAN_SPEND_PER_CUSTOMER": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-224@628-pm9-whq", "LOCATION_NAME": "Penzeys Spices", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.95039, "LONGITUDE": -75.144816, "DATE_RANGE_START": 2023, "Total Visits": 929.0, "Total Visitors": 689.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 343.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.79, "MEDIAN_SPEND_PER_CUSTOMER": 63.79 }, "geometry": { "type": "Point", "coordinates": [ -75.144816, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2023, "Total Visits": 743.0, "Total Visitors": 507.0, "POI_CBG": 421010275001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6678.0, "Total Transactions": 322.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.79, "MEDIAN_SPEND_PER_CUSTOMER": 19.08 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 164.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8400.0, "Total Transactions": 179.0, "Total Customers": 139.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.52, "MEDIAN_SPEND_PER_CUSTOMER": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "LOCATION_NAME": "Walmart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.031541, "LONGITUDE": -75.099668, "DATE_RANGE_START": 2023, "Total Visits": 3669.0, "Total Visitors": 2315.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 239322.0, "Total Transactions": 4167.0, "Total Customers": 2526.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.56, "MEDIAN_SPEND_PER_CUSTOMER": 52.72 }, "geometry": { "type": "Point", "coordinates": [ -75.099668, 40.031541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7w-c89", "LOCATION_NAME": "Philly's Finest Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.068215, "LONGITUDE": -75.06872, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1158.0, "Total Transactions": 31.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.76, "MEDIAN_SPEND_PER_CUSTOMER": 29.43 }, "geometry": { "type": "Point", "coordinates": [ -75.06872, 40.068215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086351, "LONGITUDE": -74.971824, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8886.0, "Total Transactions": 1253.0, "Total Customers": 392.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -74.971824, 40.086351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.081433, "LONGITUDE": -75.026481, "DATE_RANGE_START": 2023, "Total Visits": 565.0, "Total Visitors": 437.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 9093.0, "Total Transactions": 200.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.59, "MEDIAN_SPEND_PER_CUSTOMER": 35.55 }, "geometry": { "type": "Point", "coordinates": [ -75.026481, 40.081433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "LOCATION_NAME": "Papa Nick's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 89.0, "POI_CBG": 421010272003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2933.0, "Total Transactions": 114.0, "Total Customers": 85.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.46, "MEDIAN_SPEND_PER_CUSTOMER": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgb-2tv", "LOCATION_NAME": "Local", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957095, "LONGITUDE": -75.167019, "DATE_RANGE_START": 2023, "Total Visits": 4621.0, "Total Visitors": 2540.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 255.0, "Total Spend": 331.0, "Total Transactions": 23.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.97, "MEDIAN_SPEND_PER_CUSTOMER": 12.93 }, "geometry": { "type": "Point", "coordinates": [ -75.167019, 39.957095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgd-zvf", "LOCATION_NAME": "Nafi Food Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955563, "LONGITUDE": -75.193294, "DATE_RANGE_START": 2023, "Total Visits": 2543.0, "Total Visitors": 1613.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 47.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.193294, 39.955563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-qfz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.976582, "LONGITUDE": -75.231079, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 477.0, "POI_CBG": 421010112001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2385.0, "Total Transactions": 124.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.58, "MEDIAN_SPEND_PER_CUSTOMER": 20.99 }, "geometry": { "type": "Point", "coordinates": [ -75.231079, 39.976582 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "LOCATION_NAME": "Baltimore Pet Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2023, "Total Visits": 150.0, "Total Visitors": 130.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 389.0, "Total Transactions": 10.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.07, "MEDIAN_SPEND_PER_CUSTOMER": 36.14 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj7-tjv", "LOCATION_NAME": "Romano's Catering", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 40.014747, "LONGITUDE": -75.095868, "DATE_RANGE_START": 2023, "Total Visits": 262.0, "Total Visitors": 256.0, "POI_CBG": 421010190003.0, "MEDIAN_DWELL": 145.0, "Total Spend": 91.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095868, 40.014747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnt-3qz", "LOCATION_NAME": "JR's saloon", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.97411, "LONGITUDE": -75.12273, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 65.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 168.0, "Total Spend": 679.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.56, "MEDIAN_SPEND_PER_CUSTOMER": 43.56 }, "geometry": { "type": "Point", "coordinates": [ -75.12273, 39.97411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw4-rzf", "LOCATION_NAME": "La Tapenade Mediterranean Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895188, "LONGITUDE": -75.227951, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3492.0, "Total Transactions": 152.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227951, 39.895188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "LOCATION_NAME": "House of Kosher", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2023, "Total Visits": 496.0, "Total Visitors": 465.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 11937.0, "Total Transactions": 147.0, "Total Customers": 64.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.89, "MEDIAN_SPEND_PER_CUSTOMER": 80.28 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmf-j5f", "LOCATION_NAME": "Lagos", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950375, "LONGITUDE": -75.170461, "DATE_RANGE_START": 2023, "Total Visits": 2147.0, "Total Visitors": 1645.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 480.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 191.7, "MEDIAN_SPEND_PER_CUSTOMER": 191.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170461, 39.950375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pm9-y9z", "LOCATION_NAME": "Shyne Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941833, "LONGITUDE": -75.148783, "DATE_RANGE_START": 2023, "Total Visits": 1337.0, "Total Visitors": 907.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 24.0, "Total Spend": 6599.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 768.0, "MEDIAN_SPEND_PER_CUSTOMER": 768.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148783, 39.941833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-nwk", "LOCATION_NAME": "Pod", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953664, "LONGITUDE": -75.19557, "DATE_RANGE_START": 2023, "Total Visits": 4222.0, "Total Visitors": 2643.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 292.0, "Total Transactions": 6.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.36, "MEDIAN_SPEND_PER_CUSTOMER": 93.96 }, "geometry": { "type": "Point", "coordinates": [ -75.19557, 39.953664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "LOCATION_NAME": "Tires Plus", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2023, "Total Visits": 130.0, "Total Visitors": 118.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 27.0, "Total Spend": 431.0, "Total Transactions": 6.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.49, "MEDIAN_SPEND_PER_CUSTOMER": 91.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgg-yvz", "LOCATION_NAME": "Favors", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9991, "LONGITUDE": -75.171017, "DATE_RANGE_START": 2023, "Total Visits": 207.0, "Total Visitors": 189.0, "POI_CBG": 421010172024.0, "MEDIAN_DWELL": 5.0, "Total Spend": 77.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.8, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171017, 39.9991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026203, "LONGITUDE": -75.223957, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 194.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8839.0, "Total Transactions": 580.0, "Total Customers": 322.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.223957, 40.026203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-cdv", "LOCATION_NAME": "Holiday Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.042928, "LONGITUDE": -75.010389, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 6.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 100.0, "Total Spend": 2009.0, "Total Transactions": 83.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.26, "MEDIAN_SPEND_PER_CUSTOMER": 59.45 }, "geometry": { "type": "Point", "coordinates": [ -75.010389, 40.042928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-3dv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.940442, "LONGITUDE": -75.166876, "DATE_RANGE_START": 2023, "Total Visits": 282.0, "Total Visitors": 274.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 9663.0, "Total Transactions": 510.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166876, 39.940442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.088158, "LONGITUDE": -74.961561, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 48.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 26.0, "Total Spend": 12771.0, "Total Transactions": 830.0, "Total Customers": 605.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 14.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961561, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99223, "LONGITUDE": -75.099719, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 18.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 5148.0, "Total Transactions": 124.0, "Total Customers": 114.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.92, "MEDIAN_SPEND_PER_CUSTOMER": 42.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099719, 39.99223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-hnq", "LOCATION_NAME": "The Ranstead Room", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952444, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2023, "Total Visits": 2334.0, "Total Visitors": 1566.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2613.0, "Total Transactions": 41.0, "Total Customers": 40.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.68, "MEDIAN_SPEND_PER_CUSTOMER": 52.22 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.952444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p7w-6zf", "LOCATION_NAME": "Sweets & Curry House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057241, "LONGITUDE": -75.060927, "DATE_RANGE_START": 2023, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010336003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 423.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.79, "MEDIAN_SPEND_PER_CUSTOMER": 41.79 }, "geometry": { "type": "Point", "coordinates": [ -75.060927, 40.057241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "LOCATION_NAME": "In & Out Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 48.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 430.0, "Total Spend": 6086.0, "Total Transactions": 249.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.93, "MEDIAN_SPEND_PER_CUSTOMER": 25.34 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-n5z", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954715, "LONGITUDE": -75.168495, "DATE_RANGE_START": 2023, "Total Visits": 6693.0, "Total Visitors": 3705.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 79.0, "Total Spend": 1962.0, "Total Transactions": 162.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.77, "MEDIAN_SPEND_PER_CUSTOMER": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.168495, 39.954715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "LOCATION_NAME": "Ginza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 190.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 109.0, "Total Spend": 2399.0, "Total Transactions": 49.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.13, "MEDIAN_SPEND_PER_CUSTOMER": 55.94 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "LOCATION_NAME": "Nordstrom Rack", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951362, "LONGITUDE": -75.169014, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 41542.0, "Total Transactions": 752.0, "Total Customers": 660.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.97, "MEDIAN_SPEND_PER_CUSTOMER": 44.83 }, "geometry": { "type": "Point", "coordinates": [ -75.169014, 39.951362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p9r-mrk", "LOCATION_NAME": "Jewelry Art", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.090567, "LONGITUDE": -75.032389, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": null, "Total Spend": 501.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 200.0, "MEDIAN_SPEND_PER_CUSTOMER": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032389, 40.090567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.100656, "LONGITUDE": -75.010623, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4022.0, "Total Transactions": 118.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 28.92 }, "geometry": { "type": "Point", "coordinates": [ -75.010623, 40.100656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-x5z", "LOCATION_NAME": "Broad And Lehigh Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.993056, "LONGITUDE": -75.153626, "DATE_RANGE_START": 2023, "Total Visits": 358.0, "Total Visitors": 169.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 448.0, "Total Spend": 64.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153626, 39.993056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942192, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14176.0, "Total Transactions": 442.0, "Total Customers": 356.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.98, "MEDIAN_SPEND_PER_CUSTOMER": 33.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.942192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phy-m49", "LOCATION_NAME": "4 U Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.026652, "LONGITUDE": -75.132326, "DATE_RANGE_START": 2023, "Total Visits": 1511.0, "Total Visitors": 1142.0, "POI_CBG": 421010286003.0, "MEDIAN_DWELL": 23.0, "Total Spend": 108.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.7, "MEDIAN_SPEND_PER_CUSTOMER": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.132326, 40.026652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.029611, "LONGITUDE": -75.145496, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 11.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6249.0, "Total Transactions": 367.0, "Total Customers": 218.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.89, "MEDIAN_SPEND_PER_CUSTOMER": 21.34 }, "geometry": { "type": "Point", "coordinates": [ -75.145496, 40.029611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22n@63s-dw9-7nq", "LOCATION_NAME": "Sunglass Hut", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.87352, "LONGITUDE": -75.247344, "DATE_RANGE_START": 2023, "Total Visits": 3933.0, "Total Visitors": 3532.0, "POI_CBG": 420459800001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 743.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 296.46, "MEDIAN_SPEND_PER_CUSTOMER": 296.46 }, "geometry": { "type": "Point", "coordinates": [ -75.247344, 39.87352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "LOCATION_NAME": "Nautica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088001, "LONGITUDE": -74.961007, "DATE_RANGE_START": 2023, "Total Visits": 981.0, "Total Visitors": 834.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 38.0, "Total Spend": 699.0, "Total Transactions": 21.0, "Total Customers": 19.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.98, "MEDIAN_SPEND_PER_CUSTOMER": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961007, 40.088001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "LOCATION_NAME": "Rittenhouse Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2023, "Total Visits": 840.0, "Total Visitors": 614.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 2.0, "Total Spend": 17488.0, "Total Transactions": 666.0, "Total Customers": 301.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.06, "MEDIAN_SPEND_PER_CUSTOMER": 27.28 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-p8m-b49", "LOCATION_NAME": "Chin's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.015049, "LONGITUDE": -75.063889, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010298002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2378.0, "Total Transactions": 105.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.89, "MEDIAN_SPEND_PER_CUSTOMER": 20.54 }, "geometry": { "type": "Point", "coordinates": [ -75.063889, 40.015049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "LOCATION_NAME": "Beer Baron", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2023, "Total Visits": 2071.0, "Total Visitors": 887.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6485.0, "Total Transactions": 199.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.53, "MEDIAN_SPEND_PER_CUSTOMER": 46.61 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-q2k", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.912266, "LONGITUDE": -75.155082, "DATE_RANGE_START": 2023, "Total Visits": 271.0, "Total Visitors": 238.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 685.0, "Total Transactions": 16.0, "Total Customers": 15.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.61, "MEDIAN_SPEND_PER_CUSTOMER": 44.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155082, 39.912266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950635, "LONGITUDE": -75.146046, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5171.0, "Total Transactions": 165.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.06, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.146046, 39.950635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm4-k9f", "LOCATION_NAME": "AnaOno Intimates", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.932899, "LONGITUDE": -75.154204, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010025003.0, "MEDIAN_DWELL": null, "Total Spend": 212.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.82, "MEDIAN_SPEND_PER_CUSTOMER": 84.82 }, "geometry": { "type": "Point", "coordinates": [ -75.154204, 39.932899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-pvz", "LOCATION_NAME": "Furniture Mecca", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.980517, "LONGITUDE": -75.235459, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 177.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1582.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 631.68, "MEDIAN_SPEND_PER_CUSTOMER": 631.68 }, "geometry": { "type": "Point", "coordinates": [ -75.235459, 39.980517 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-bkz", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.943074, "LONGITUDE": -75.158893, "DATE_RANGE_START": 2023, "Total Visits": 944.0, "Total Visitors": 630.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 7.0, "Total Spend": 116398.0, "Total Transactions": 4176.0, "Total Customers": 1616.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.91, "MEDIAN_SPEND_PER_CUSTOMER": 33.55 }, "geometry": { "type": "Point", "coordinates": [ -75.158893, 39.943074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-yd9", "LOCATION_NAME": "C & R Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.938175, "LONGITUDE": -75.170566, "DATE_RANGE_START": 2023, "Total Visits": 604.0, "Total Visitors": 371.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 93.0, "Total Spend": 2687.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 401.55, "MEDIAN_SPEND_PER_CUSTOMER": 511.53 }, "geometry": { "type": "Point", "coordinates": [ -75.170566, 39.938175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040588, "LONGITUDE": -75.223539, "DATE_RANGE_START": 2023, "Total Visits": 2530.0, "Total Visitors": 1794.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 122448.0, "Total Transactions": 6527.0, "Total Customers": 2729.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.01, "MEDIAN_SPEND_PER_CUSTOMER": 25.64 }, "geometry": { "type": "Point", "coordinates": [ -75.223539, 40.040588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "LOCATION_NAME": "Urban Outfitters", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950062, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 19907.0, "Total Transactions": 391.0, "Total Customers": 366.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.59, "MEDIAN_SPEND_PER_CUSTOMER": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-t7q", "LOCATION_NAME": "Pamma Tools", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.948955, "LONGITUDE": -75.154372, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1646.0, "Total Transactions": 14.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.0, "MEDIAN_SPEND_PER_CUSTOMER": 159.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154372, 39.948955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "LOCATION_NAME": "Navy Exchange", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2023, "Total Visits": 289.0, "Total Visitors": 170.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 2317.0, "Total Transactions": 104.0, "Total Customers": 48.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.17, "MEDIAN_SPEND_PER_CUSTOMER": 12.18 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.076054, "LONGITUDE": -75.031621, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 46.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 11110.0, "Total Transactions": 649.0, "Total Customers": 497.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.43, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.031621, 40.076054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "LOCATION_NAME": "Adobe Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2023, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": null, "Total Spend": 2180.0, "Total Transactions": 56.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 38.02 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2023, "Total Visits": 798.0, "Total Visitors": 661.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 808.0, "Total Transactions": 11.0, "Total Customers": 10.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.15, "MEDIAN_SPEND_PER_CUSTOMER": 39.33 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "LOCATION_NAME": "Greek Lady", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2023, "Total Visits": 266.0, "Total Visitors": 193.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 12.0, "Total Spend": 10554.0, "Total Transactions": 461.0, "Total Customers": 302.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.85, "MEDIAN_SPEND_PER_CUSTOMER": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-45f", "LOCATION_NAME": "Las Maraca Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045072, "LONGITUDE": -75.060626, "DATE_RANGE_START": 2023, "Total Visits": 247.0, "Total Visitors": 220.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 9.0, "Total Spend": 393.0, "Total Transactions": 29.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.060626, 40.045072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984484, "LONGITUDE": -75.121386, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1778.0, "Total Transactions": 66.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.36, "MEDIAN_SPEND_PER_CUSTOMER": 41.01 }, "geometry": { "type": "Point", "coordinates": [ -75.121386, 39.984484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "LOCATION_NAME": "Annies Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 13.0, "POI_CBG": 421010100004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 286.0, "Total Transactions": 9.0, "Total Customers": 6.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.14, "MEDIAN_SPEND_PER_CUSTOMER": 49.45 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "LOCATION_NAME": "Fair Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.96876, "LONGITUDE": -75.180744, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 187.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 697.0, "Total Spend": 2549.0, "Total Transactions": 222.0, "Total Customers": 106.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.6, "MEDIAN_SPEND_PER_CUSTOMER": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.180744, 39.96876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "LOCATION_NAME": "Hunan Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 124.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": null, "Total Spend": 2986.0, "Total Transactions": 178.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.82, "MEDIAN_SPEND_PER_CUSTOMER": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-c3q", "LOCATION_NAME": "Foodery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944856, "LONGITUDE": -75.158469, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 187.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 650.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.06, "MEDIAN_SPEND_PER_CUSTOMER": 15.37 }, "geometry": { "type": "Point", "coordinates": [ -75.158469, 39.944856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-gzf", "LOCATION_NAME": "Tria Cafe Wash West", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.946658, "LONGITUDE": -75.160853, "DATE_RANGE_START": 2023, "Total Visits": 111.0, "Total Visitors": 111.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 120.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.86, "MEDIAN_SPEND_PER_CUSTOMER": 47.86 }, "geometry": { "type": "Point", "coordinates": [ -75.160853, 39.946658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pj6-6hq", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042494, "LONGITUDE": -75.1091, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 180.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 5531.0, "Total Transactions": 104.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.81, "MEDIAN_SPEND_PER_CUSTOMER": 56.87 }, "geometry": { "type": "Point", "coordinates": [ -75.1091, 40.042494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "LOCATION_NAME": "Maggiano's Little Italy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953257, "LONGITUDE": -75.160271, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 84.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 20722.0, "Total Transactions": 235.0, "Total Customers": 210.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.53, "MEDIAN_SPEND_PER_CUSTOMER": 66.06 }, "geometry": { "type": "Point", "coordinates": [ -75.160271, 39.953257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 287.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8158.0, "Total Transactions": 204.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-w6k", "LOCATION_NAME": "Pizza Roma", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049594, "LONGITUDE": -75.059819, "DATE_RANGE_START": 2024, "Total Visits": 204.0, "Total Visitors": 167.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4602.0, "Total Transactions": 269.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.72, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.059819, 40.049594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pmb-fpv", "LOCATION_NAME": "Shaking Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946982, "LONGITUDE": -75.157365, "DATE_RANGE_START": 2024, "Total Visits": 330.0, "Total Visitors": 178.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3600.0, "Total Transactions": 97.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.17, "MEDIAN_SPEND_PER_CUSTOMER": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157365, 39.946982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "LOCATION_NAME": "DaMo Pasta Lab", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2024, "Total Visits": 234.0, "Total Visitors": 234.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1509.0, "Total Transactions": 57.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.63, "MEDIAN_SPEND_PER_CUSTOMER": 20.63 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp5-k2k", "LOCATION_NAME": "Momentos Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988005, "LONGITUDE": -75.109231, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 71.0, "POI_CBG": 421010179002.0, "MEDIAN_DWELL": 66.0, "Total Spend": 55.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.8, "MEDIAN_SPEND_PER_CUSTOMER": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.109231, 39.988005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-zj9", "LOCATION_NAME": "Little Istanbul", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.119755, "LONGITUDE": -75.018108, "DATE_RANGE_START": 2024, "Total Visits": 1058.0, "Total Visitors": 689.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4219.0, "Total Transactions": 67.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.83, "MEDIAN_SPEND_PER_CUSTOMER": 69.18 }, "geometry": { "type": "Point", "coordinates": [ -75.018108, 40.119755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030377, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 345.0, "Total Transactions": 29.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.72, "MEDIAN_SPEND_PER_CUSTOMER": 12.68 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "LOCATION_NAME": "Petrovsky Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2024, "Total Visits": 407.0, "Total Visitors": 288.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 24399.0, "Total Transactions": 696.0, "Total Customers": 345.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.33 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "LOCATION_NAME": "Kei Sushi Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 106.0, "Total Spend": 2259.0, "Total Transactions": 46.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.4, "MEDIAN_SPEND_PER_CUSTOMER": 44.64 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-9j9", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953077, "LONGITUDE": -75.170262, "DATE_RANGE_START": 2024, "Total Visits": 70.0, "Total Visitors": 50.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 12.0, "Total Spend": 135.0, "Total Transactions": 9.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.170262, 39.953077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-ygk", "LOCATION_NAME": "Shaxian Delicacies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953861, "LONGITUDE": -75.156353, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 190.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 300.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156353, 39.953861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2024, "Total Visits": 6012.0, "Total Visitors": 2975.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3585.0, "Total Transactions": 211.0, "Total Customers": 159.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.59, "MEDIAN_SPEND_PER_CUSTOMER": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "LOCATION_NAME": "Mission BBQ", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2024, "Total Visits": 465.0, "Total Visitors": 387.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 4061.0, "Total Transactions": 124.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.91, "MEDIAN_SPEND_PER_CUSTOMER": 36.48 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "LOCATION_NAME": "Sunny Side Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2024, "Total Visits": 174.0, "Total Visitors": 141.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 337.0, "Total Spend": 1013.0, "Total Transactions": 67.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.45, "MEDIAN_SPEND_PER_CUSTOMER": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043491, "LONGITUDE": -75.159322, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 7.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 345.0, "Total Spend": 5338.0, "Total Transactions": 802.0, "Total Customers": 299.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 12.39 }, "geometry": { "type": "Point", "coordinates": [ -75.159322, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tjv", "LOCATION_NAME": "Michael Jay Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949451, "LONGITUDE": -75.154286, "DATE_RANGE_START": 2024, "Total Visits": 828.0, "Total Visitors": 604.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 78.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154286, 39.949451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2024, "Total Visits": 529.0, "Total Visitors": 432.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5262.0, "Total Transactions": 212.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.32, "MEDIAN_SPEND_PER_CUSTOMER": 19.89 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.918019, "LONGITUDE": -75.17898, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 161.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.5, "MEDIAN_SPEND_PER_CUSTOMER": 23.62 }, "geometry": { "type": "Point", "coordinates": [ -75.17898, 39.918019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2024, "Total Visits": 660.0, "Total Visitors": 612.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 992.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.78, "MEDIAN_SPEND_PER_CUSTOMER": 33.05 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.960047, "LONGITUDE": -75.167488, "DATE_RANGE_START": 2024, "Total Visits": 585.0, "Total Visitors": 212.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 1298.0, "Total Spend": 3480.0, "Total Transactions": 254.0, "Total Customers": 129.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.8, "MEDIAN_SPEND_PER_CUSTOMER": 14.19 }, "geometry": { "type": "Point", "coordinates": [ -75.167488, 39.960047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8d-z2k", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.01218, "LONGITUDE": -75.068378, "DATE_RANGE_START": 2024, "Total Visits": 1048.0, "Total Visitors": 699.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 52901.0, "Total Transactions": 2981.0, "Total Customers": 1353.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.84, "MEDIAN_SPEND_PER_CUSTOMER": 20.57 }, "geometry": { "type": "Point", "coordinates": [ -75.068378, 40.01218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "LOCATION_NAME": "Reyes Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.961179, "LONGITUDE": -75.244847, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 53.0, "POI_CBG": 421010083011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 707.0, "Total Transactions": 104.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.68, "MEDIAN_SPEND_PER_CUSTOMER": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.244847, 39.961179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmb-5cq", "LOCATION_NAME": "AHF Pharmacy Philadelphia", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.950759, "LONGITUDE": -75.160674, "DATE_RANGE_START": 2024, "Total Visits": 2597.0, "Total Visitors": 2089.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 459.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.34 }, "geometry": { "type": "Point", "coordinates": [ -75.160674, 39.950759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-6tv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951521, "LONGITUDE": -75.166834, "DATE_RANGE_START": 2024, "Total Visits": 8743.0, "Total Visitors": 5302.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 22013.0, "Total Transactions": 2992.0, "Total Customers": 1515.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.33, "MEDIAN_SPEND_PER_CUSTOMER": 8.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166834, 39.951521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-cyv", "LOCATION_NAME": "Holmesburg Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.041745, "LONGITUDE": -75.026513, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 157.0, "POI_CBG": 421010329001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 92.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026513, 40.041745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.993628, "LONGITUDE": -75.15501, "DATE_RANGE_START": 2024, "Total Visits": 287.0, "Total Visitors": 226.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 97.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.07, "MEDIAN_SPEND_PER_CUSTOMER": 5.07 }, "geometry": { "type": "Point", "coordinates": [ -75.15501, 39.993628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj4-zxq", "LOCATION_NAME": "Mediterranean Lunch Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003342, "LONGITUDE": -75.152885, "DATE_RANGE_START": 2024, "Total Visits": 1370.0, "Total Visitors": 954.0, "POI_CBG": 421010201011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 171.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.52, "MEDIAN_SPEND_PER_CUSTOMER": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152885, 40.003342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-224@628-pmb-66k", "LOCATION_NAME": "Cosmic Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949349, "LONGITUDE": -75.160742, "DATE_RANGE_START": 2024, "Total Visits": 2667.0, "Total Visitors": 1723.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 316.0, "Total Transactions": 30.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160742, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9p-qj9", "LOCATION_NAME": "Green Farmers Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.102668, "LONGITUDE": -75.031061, "DATE_RANGE_START": 2024, "Total Visits": 57.0, "Total Visitors": 41.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 78.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.1, "MEDIAN_SPEND_PER_CUSTOMER": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.031061, 40.102668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm9-zs5", "LOCATION_NAME": "The Philly Game Shop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.942073, "LONGITUDE": -75.150513, "DATE_RANGE_START": 2024, "Total Visits": 1428.0, "Total Visitors": 1252.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8596.0, "Total Transactions": 312.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150513, 39.942073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmd-vj9", "LOCATION_NAME": "Nature's Gallery Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.950794, "LONGITUDE": -75.177008, "DATE_RANGE_START": 2024, "Total Visits": 945.0, "Total Visitors": 706.0, "POI_CBG": 421010008031.0, "MEDIAN_DWELL": 10.0, "Total Spend": 575.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 178.2, "MEDIAN_SPEND_PER_CUSTOMER": 178.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177008, 39.950794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2024, "Total Visits": 398.0, "Total Visitors": 308.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 10629.0, "Total Transactions": 881.0, "Total Customers": 446.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.13, "MEDIAN_SPEND_PER_CUSTOMER": 14.55 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "LOCATION_NAME": "Fairdale Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084505, "LONGITUDE": -74.972665, "DATE_RANGE_START": 2024, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 11.0, "Total Spend": 348.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 132.27, "MEDIAN_SPEND_PER_CUSTOMER": 132.27 }, "geometry": { "type": "Point", "coordinates": [ -74.972665, 40.084505 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "LOCATION_NAME": "Pizzeria Stella", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2024, "Total Visits": 412.0, "Total Visitors": 390.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 39.0, "Total Spend": 14076.0, "Total Transactions": 174.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.79, "MEDIAN_SPEND_PER_CUSTOMER": 69.24 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978252, "LONGITUDE": -75.224493, "DATE_RANGE_START": 2024, "Total Visits": 528.0, "Total Visitors": 494.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 26785.0, "Total Transactions": 766.0, "Total Customers": 694.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.34, "MEDIAN_SPEND_PER_CUSTOMER": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.224493, 39.978252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "LOCATION_NAME": "Cafe Old Nelson", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954821, "LONGITUDE": -75.164693, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 21.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 3528.0, "Total Transactions": 303.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.63, "MEDIAN_SPEND_PER_CUSTOMER": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.164693, 39.954821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pjf-kpv", "LOCATION_NAME": "El Quetzal", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075646, "LONGITUDE": -75.20631, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1332.0, "Total Transactions": 32.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.45, "MEDIAN_SPEND_PER_CUSTOMER": 19.39 }, "geometry": { "type": "Point", "coordinates": [ -75.20631, 40.075646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "LOCATION_NAME": "The Capital Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950603, "LONGITUDE": -75.163569, "DATE_RANGE_START": 2024, "Total Visits": 1676.0, "Total Visitors": 1424.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10732.0, "Total Transactions": 66.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 137.38, "MEDIAN_SPEND_PER_CUSTOMER": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163569, 39.950603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-8vz", "LOCATION_NAME": "Old Madrid", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031738, "LONGITUDE": -75.131244, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 39.0, "POI_CBG": 421010286004.0, "MEDIAN_DWELL": null, "Total Spend": 87.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.0, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131244, 40.031738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "LOCATION_NAME": "Scrub Pro", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2024, "Total Visits": 2079.0, "Total Visitors": 1523.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 388.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.17, "MEDIAN_SPEND_PER_CUSTOMER": 44.17 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.913457, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 79.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dwf-td9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902283, "LONGITUDE": -75.241987, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5730.0, "Total Transactions": 336.0, "Total Customers": 251.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.241987, 39.902283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-224@628-phq-rp9", "LOCATION_NAME": "Dollar Plus Outlet", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.066543, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 265.0, "POI_CBG": 421010263023.0, "MEDIAN_DWELL": 32.0, "Total Spend": 2372.0, "Total Transactions": 109.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.01, "MEDIAN_SPEND_PER_CUSTOMER": 20.67 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 40.066543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-649", "LOCATION_NAME": "Cedar Park Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947827, "LONGITUDE": -75.221935, "DATE_RANGE_START": 2024, "Total Visits": 629.0, "Total Visitors": 420.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1296.0, "Total Transactions": 62.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.82, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.221935, 39.947827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "LOCATION_NAME": "Cuba Libre Restaurant & Rum Bar Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 176.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 18308.0, "Total Transactions": 313.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.78, "MEDIAN_SPEND_PER_CUSTOMER": 53.95 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "LOCATION_NAME": "El Merkury", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 299.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3637.0, "Total Transactions": 220.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.76, "MEDIAN_SPEND_PER_CUSTOMER": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "LOCATION_NAME": "Brauhaus Schmitz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942071, "LONGITUDE": -75.154606, "DATE_RANGE_START": 2024, "Total Visits": 752.0, "Total Visitors": 664.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1689.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.3, "MEDIAN_SPEND_PER_CUSTOMER": 32.75 }, "geometry": { "type": "Point", "coordinates": [ -75.154606, 39.942071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "LOCATION_NAME": "Giovanni's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 150.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1043.0, "Total Transactions": 51.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.69, "MEDIAN_SPEND_PER_CUSTOMER": 20.33 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pg2-zs5", "LOCATION_NAME": "South Philly Italian Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054139, "LONGITUDE": -75.194452, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010388004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1211.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.12, "MEDIAN_SPEND_PER_CUSTOMER": 75.99 }, "geometry": { "type": "Point", "coordinates": [ -75.194452, 40.054139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.936536, "LONGITUDE": -75.160372, "DATE_RANGE_START": 2024, "Total Visits": 923.0, "Total Visitors": 824.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 273.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.52, "MEDIAN_SPEND_PER_CUSTOMER": 19.52 }, "geometry": { "type": "Point", "coordinates": [ -75.160372, 39.936536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvy-kfz", "LOCATION_NAME": "Ahmad Gyro King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951086, "LONGITUDE": -75.19875, "DATE_RANGE_START": 2024, "Total Visits": 1051.0, "Total Visitors": 503.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 140.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19875, 39.951086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-v2k", "LOCATION_NAME": "Rainbow Apparel", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.029689, "LONGITUDE": -75.058779, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 163.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 155.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 22.91 }, "geometry": { "type": "Point", "coordinates": [ -75.058779, 40.029689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "LOCATION_NAME": "Joe's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950331, "LONGITUDE": -75.167579, "DATE_RANGE_START": 2024, "Total Visits": 400.0, "Total Visitors": 259.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2629.0, "Total Transactions": 83.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.78, "MEDIAN_SPEND_PER_CUSTOMER": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167579, 39.950331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "LOCATION_NAME": "Curran's Irish Inn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2024, "Total Visits": 274.0, "Total Visitors": 251.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 43.0, "Total Spend": 1452.0, "Total Transactions": 34.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.5, "MEDIAN_SPEND_PER_CUSTOMER": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "LOCATION_NAME": "Talk of the Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071921, "LONGITUDE": -75.161395, "DATE_RANGE_START": 2024, "Total Visits": 284.0, "Total Visitors": 200.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1196.0, "Total Transactions": 45.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.14, "MEDIAN_SPEND_PER_CUSTOMER": 21.77 }, "geometry": { "type": "Point", "coordinates": [ -75.161395, 40.071921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pjf-zvf", "LOCATION_NAME": "Cosimos Pizza Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076999, "LONGITUDE": -75.208567, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 3.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 582.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.63, "MEDIAN_SPEND_PER_CUSTOMER": 27.87 }, "geometry": { "type": "Point", "coordinates": [ -75.208567, 40.076999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "LOCATION_NAME": "Spice C", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 304.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4271.0, "Total Transactions": 101.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.1, "MEDIAN_SPEND_PER_CUSTOMER": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-73q", "LOCATION_NAME": "Dr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947797, "LONGITUDE": -75.193456, "DATE_RANGE_START": 2024, "Total Visits": 14692.0, "Total Visitors": 7742.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 63.0, "Total Spend": 48.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.2, "MEDIAN_SPEND_PER_CUSTOMER": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193456, 39.947797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2024, "Total Visits": 904.0, "Total Visitors": 858.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8526.0, "Total Transactions": 506.0, "Total Customers": 396.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.49, "MEDIAN_SPEND_PER_CUSTOMER": 15.59 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@63s-dw9-7kf", "LOCATION_NAME": "InMotion", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.877238, "LONGITUDE": -75.244112, "DATE_RANGE_START": 2024, "Total Visits": 823.0, "Total Visitors": 808.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3347.0, "Total Transactions": 50.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.43, "MEDIAN_SPEND_PER_CUSTOMER": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.244112, 39.877238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-sqz", "LOCATION_NAME": "Ashton Cigar Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949464, "LONGITUDE": -75.167106, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 187.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9121.0, "Total Transactions": 122.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.22, "MEDIAN_SPEND_PER_CUSTOMER": 70.16 }, "geometry": { "type": "Point", "coordinates": [ -75.167106, 39.949464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.921556, "LONGITUDE": -75.186008, "DATE_RANGE_START": 2024, "Total Visits": 1035.0, "Total Visitors": 642.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 18570.0, "Total Transactions": 404.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.5, "MEDIAN_SPEND_PER_CUSTOMER": 40.73 }, "geometry": { "type": "Point", "coordinates": [ -75.186008, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm4-k9f", "LOCATION_NAME": "AnaOno Intimates", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.932899, "LONGITUDE": -75.154204, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 79.0, "POI_CBG": 421010025003.0, "MEDIAN_DWELL": 1038.0, "Total Spend": 518.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.47, "MEDIAN_SPEND_PER_CUSTOMER": 81.47 }, "geometry": { "type": "Point", "coordinates": [ -75.154204, 39.932899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-wrk", "LOCATION_NAME": "Lulu Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955024, "LONGITUDE": -75.212218, "DATE_RANGE_START": 2024, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010086012.0, "MEDIAN_DWELL": null, "Total Spend": 330.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.64, "MEDIAN_SPEND_PER_CUSTOMER": 12.97 }, "geometry": { "type": "Point", "coordinates": [ -75.212218, 39.955024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "LOCATION_NAME": "CHAPMAN NISSAN", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.910484, "LONGITUDE": -75.223905, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 65.0, "Total Spend": 48363.0, "Total Transactions": 207.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 194.25, "MEDIAN_SPEND_PER_CUSTOMER": 254.14 }, "geometry": { "type": "Point", "coordinates": [ -75.223905, 39.910484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.043941, "LONGITUDE": -75.054036, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 178.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.91, "MEDIAN_SPEND_PER_CUSTOMER": 33.91 }, "geometry": { "type": "Point", "coordinates": [ -75.054036, 40.043941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2024, "Total Visits": 4218.0, "Total Visitors": 2170.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 3682.0, "Total Transactions": 47.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.0, "MEDIAN_SPEND_PER_CUSTOMER": 64.82 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-8y9", "LOCATION_NAME": "Klein's Supermarket", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.966995, "LONGITUDE": -75.177428, "DATE_RANGE_START": 2024, "Total Visits": 1342.0, "Total Visitors": 710.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 154.0, "Total Spend": 261.0, "Total Transactions": 32.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.24, "MEDIAN_SPEND_PER_CUSTOMER": 7.41 }, "geometry": { "type": "Point", "coordinates": [ -75.177428, 39.966995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "LOCATION_NAME": "Fairmount Pizza and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2024, "Total Visits": 162.0, "Total Visitors": 162.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 14475.0, "Total Transactions": 895.0, "Total Customers": 570.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2024, "Total Visits": 1389.0, "Total Visitors": 1003.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 780.0, "Total Transactions": 36.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.38 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953286, "LONGITUDE": -75.160518, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 93.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1372.0, "Total Transactions": 145.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.05, "MEDIAN_SPEND_PER_CUSTOMER": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.160518, 39.953286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj3-wzf", "LOCATION_NAME": "Shop and Carry Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.030414, "LONGITUDE": -75.144615, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 166.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 7.0, "Total Spend": 681.0, "Total Transactions": 87.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.99, "MEDIAN_SPEND_PER_CUSTOMER": 11.54 }, "geometry": { "type": "Point", "coordinates": [ -75.144615, 40.030414 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "LOCATION_NAME": "Primal Nutrition", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 134.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1499.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.75, "MEDIAN_SPEND_PER_CUSTOMER": 91.75 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2024, "Total Visits": 269.0, "Total Visitors": 207.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 120.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.94, "MEDIAN_SPEND_PER_CUSTOMER": 5.94 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "LOCATION_NAME": "Lazos Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 13262.0, "Total Transactions": 758.0, "Total Customers": 430.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.16, "MEDIAN_SPEND_PER_CUSTOMER": 20.77 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "LOCATION_NAME": "Muslim Fashion", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2024, "Total Visits": 595.0, "Total Visitors": 471.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 10.0, "Total Spend": 989.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.5, "MEDIAN_SPEND_PER_CUSTOMER": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-j35", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950756, "LONGITUDE": -75.17035, "DATE_RANGE_START": 2024, "Total Visits": 255.0, "Total Visitors": 255.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 967.0, "Total Transactions": 58.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.68, "MEDIAN_SPEND_PER_CUSTOMER": 14.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17035, 39.950756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-v9f", "LOCATION_NAME": "Washington Square Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945902, "LONGITUDE": -75.151317, "DATE_RANGE_START": 2024, "Total Visits": 1018.0, "Total Visitors": 625.0, "POI_CBG": 421010010011.0, "MEDIAN_DWELL": 77.0, "Total Spend": 11.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 2.62, "MEDIAN_SPEND_PER_CUSTOMER": 4.24 }, "geometry": { "type": "Point", "coordinates": [ -75.151317, 39.945902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-phd-btv", "LOCATION_NAME": "Exxon Mobil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.997914, "LONGITUDE": -75.232695, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 36.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 244.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.05, "MEDIAN_SPEND_PER_CUSTOMER": 46.38 }, "geometry": { "type": "Point", "coordinates": [ -75.232695, 39.997914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006866, "LONGITUDE": -75.123098, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4110.0, "Total Transactions": 440.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.11, "MEDIAN_SPEND_PER_CUSTOMER": 12.04 }, "geometry": { "type": "Point", "coordinates": [ -75.123098, 40.006866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-mx5", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006782, "LONGITUDE": -75.097589, "DATE_RANGE_START": 2024, "Total Visits": 45.0, "Total Visitors": 21.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 12.0, "Total Spend": 900.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.3, "MEDIAN_SPEND_PER_CUSTOMER": 69.3 }, "geometry": { "type": "Point", "coordinates": [ -75.097589, 40.006782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-jjv", "LOCATION_NAME": "Pelicana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95156, "LONGITUDE": -75.203327, "DATE_RANGE_START": 2024, "Total Visits": 128.0, "Total Visitors": 128.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 19.0, "Total Spend": 48.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.36, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.203327, 39.95156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "LOCATION_NAME": "Chew Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 61.0, "POI_CBG": 421010252007.0, "MEDIAN_DWELL": 120.0, "Total Spend": 3057.0, "Total Transactions": 452.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.35, "MEDIAN_SPEND_PER_CUSTOMER": 13.51 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055835, "LONGITUDE": -75.157899, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010265006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8738.0, "Total Transactions": 664.0, "Total Customers": 449.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.97, "MEDIAN_SPEND_PER_CUSTOMER": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.157899, 40.055835 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgj-3qz", "LOCATION_NAME": "Pharmacy of America IV", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.981476, "LONGITUDE": -75.148722, "DATE_RANGE_START": 2024, "Total Visits": 983.0, "Total Visitors": 542.0, "POI_CBG": 421010377002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 944.0, "Total Transactions": 75.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.88, "MEDIAN_SPEND_PER_CUSTOMER": 7.46 }, "geometry": { "type": "Point", "coordinates": [ -75.148722, 39.981476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "LOCATION_NAME": "H&M (Hennes & Mauritz)", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087652, "LONGITUDE": -74.961051, "DATE_RANGE_START": 2024, "Total Visits": 958.0, "Total Visitors": 893.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2098.0, "Total Transactions": 57.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.89, "MEDIAN_SPEND_PER_CUSTOMER": 31.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961051, 40.087652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 117.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 380.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 151.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3695.0, "Total Transactions": 65.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.16, "MEDIAN_SPEND_PER_CUSTOMER": 42.16 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011588, "LONGITUDE": -75.1128, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 16.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 47.0, "Total Spend": 166.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.37, "MEDIAN_SPEND_PER_CUSTOMER": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.1128, 40.011588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967044, "LONGITUDE": -75.16965, "DATE_RANGE_START": 2024, "Total Visits": 1014.0, "Total Visitors": 778.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2855.0, "Total Transactions": 230.0, "Total Customers": 194.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.76, "MEDIAN_SPEND_PER_CUSTOMER": 11.02 }, "geometry": { "type": "Point", "coordinates": [ -75.16965, 39.967044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.913305, "LONGITUDE": -75.157295, "DATE_RANGE_START": 2024, "Total Visits": 1697.0, "Total Visitors": 1697.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 948.0, "Total Transactions": 28.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.56, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157295, 39.913305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "LOCATION_NAME": "Alaska King Crab House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2024, "Total Visits": 220.0, "Total Visitors": 216.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8314.0, "Total Transactions": 175.0, "Total Customers": 154.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.94, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-p8m-b49", "LOCATION_NAME": "Chin's Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.015049, "LONGITUDE": -75.063889, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010298002.0, "MEDIAN_DWELL": 202.0, "Total Spend": 2267.0, "Total Transactions": 100.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.69, "MEDIAN_SPEND_PER_CUSTOMER": 23.58 }, "geometry": { "type": "Point", "coordinates": [ -75.063889, 40.015049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgm-28v", "LOCATION_NAME": "East Falls Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.007838, "LONGITUDE": -75.191777, "DATE_RANGE_START": 2024, "Total Visits": 4019.0, "Total Visitors": 2357.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 68.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.35, "MEDIAN_SPEND_PER_CUSTOMER": 10.35 }, "geometry": { "type": "Point", "coordinates": [ -75.191777, 40.007838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgd-z9f", "LOCATION_NAME": "Bombay Dhabba Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956756, "LONGITUDE": -75.194135, "DATE_RANGE_START": 2024, "Total Visits": 6012.0, "Total Visitors": 2975.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 640.0, "Total Transactions": 39.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.38, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.194135, 39.956756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "LOCATION_NAME": "The Beer Peddlers", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 147.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 16204.0, "Total Transactions": 567.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "LOCATION_NAME": "Morimoto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2024, "Total Visits": 349.0, "Total Visitors": 183.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 106.0, "Total Spend": 26478.0, "Total Transactions": 129.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 157.64, "MEDIAN_SPEND_PER_CUSTOMER": 159.07 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2024, "Total Visits": 1101.0, "Total Visitors": 550.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 9.0, "Total Spend": 25997.0, "Total Transactions": 1784.0, "Total Customers": 1082.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.17, "MEDIAN_SPEND_PER_CUSTOMER": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-75z", "LOCATION_NAME": "Ninja Bao", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953417, "LONGITUDE": -75.165928, "DATE_RANGE_START": 2024, "Total Visits": 1817.0, "Total Visitors": 1289.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 19.0, "Total Spend": 529.0, "Total Transactions": 32.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.38, "MEDIAN_SPEND_PER_CUSTOMER": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.165928, 39.953417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2024, "Total Visits": 100.0, "Total Visitors": 90.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4197.0, "Total Transactions": 257.0, "Total Customers": 180.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.36, "MEDIAN_SPEND_PER_CUSTOMER": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2024, "Total Visits": 798.0, "Total Visitors": 721.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13528.0, "Total Transactions": 752.0, "Total Customers": 554.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.66, "MEDIAN_SPEND_PER_CUSTOMER": 19.06 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xkf", "LOCATION_NAME": "Lee How Fook", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956243, "LONGITUDE": -75.157042, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 334.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 479.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.31, "MEDIAN_SPEND_PER_CUSTOMER": 57.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157042, 39.956243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026867, "LONGITUDE": -75.208832, "DATE_RANGE_START": 2024, "Total Visits": 320.0, "Total Visitors": 224.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6942.0, "Total Transactions": 916.0, "Total Customers": 378.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.208832, 40.026867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "LOCATION_NAME": "T cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947994, "LONGITUDE": -75.142941, "DATE_RANGE_START": 2024, "Total Visits": 407.0, "Total Visitors": 332.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 10.0, "Total Spend": 10796.0, "Total Transactions": 652.0, "Total Customers": 309.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.72, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.142941, 39.947994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-kcq", "LOCATION_NAME": "Sushi Ya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971439, "LONGITUDE": -75.160429, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 14.0, "POI_CBG": 421010140001.0, "MEDIAN_DWELL": 265.0, "Total Spend": 1138.0, "Total Transactions": 41.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.85 }, "geometry": { "type": "Point", "coordinates": [ -75.160429, 39.971439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-3h5", "LOCATION_NAME": "19 Degrees", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941163, "LONGITUDE": -75.17414, "DATE_RANGE_START": 2024, "Total Visits": 158.0, "Total Visitors": 158.0, "POI_CBG": 421010019001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1734.0, "Total Transactions": 79.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.6, "MEDIAN_SPEND_PER_CUSTOMER": 35.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17414, 39.941163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-223@628-pg9-xnq", "LOCATION_NAME": "Cameron's Seafood Philly", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966964, "LONGITUDE": -75.163941, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 179.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2962.0, "Total Transactions": 80.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.163941, 39.966964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919417, "LONGITUDE": -75.187291, "DATE_RANGE_START": 2024, "Total Visits": 291.0, "Total Visitors": 171.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 34325.0, "Total Transactions": 2043.0, "Total Customers": 1405.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.98, "MEDIAN_SPEND_PER_CUSTOMER": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.187291, 39.919417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2024, "Total Visits": 138.0, "Total Visitors": 130.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 939.0, "Total Transactions": 74.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.79, "MEDIAN_SPEND_PER_CUSTOMER": 12.43 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pm5-2ff", "LOCATION_NAME": "Pho Today", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936889, "LONGITUDE": -75.16188, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3172.0, "Total Transactions": 53.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.72, "MEDIAN_SPEND_PER_CUSTOMER": 39.26 }, "geometry": { "type": "Point", "coordinates": [ -75.16188, 39.936889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p82-nqz", "LOCATION_NAME": "Matz Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.04141, "LONGITUDE": -75.075896, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 124.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1047.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 358.2, "MEDIAN_SPEND_PER_CUSTOMER": 358.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075896, 40.04141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2024, "Total Visits": 337.0, "Total Visitors": 316.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1419.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.77, "MEDIAN_SPEND_PER_CUSTOMER": 30.77 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm9-yn5", "LOCATION_NAME": "Bluebond Guitars", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.94235, "LONGITUDE": -75.148924, "DATE_RANGE_START": 2024, "Total Visits": 399.0, "Total Visitors": 354.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 773.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.53, "MEDIAN_SPEND_PER_CUSTOMER": 28.53 }, "geometry": { "type": "Point", "coordinates": [ -75.148924, 39.94235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "LOCATION_NAME": "Trader Joe's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954204, "LONGITUDE": -75.175956, "DATE_RANGE_START": 2024, "Total Visits": 6310.0, "Total Visitors": 4027.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 534304.0, "Total Transactions": 12512.0, "Total Customers": 6160.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.7, "MEDIAN_SPEND_PER_CUSTOMER": 54.59 }, "geometry": { "type": "Point", "coordinates": [ -75.175956, 39.954204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2024, "Total Visits": 474.0, "Total Visitors": 336.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 971.0, "Total Transactions": 68.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.43, "MEDIAN_SPEND_PER_CUSTOMER": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j7q", "LOCATION_NAME": "J Mclaughlin", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075451, "LONGITUDE": -75.204853, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": null, "Total Spend": 1677.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 321.0, "MEDIAN_SPEND_PER_CUSTOMER": 321.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204853, 40.075451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-p5f", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.977232, "LONGITUDE": -75.226077, "DATE_RANGE_START": 2024, "Total Visits": 558.0, "Total Visitors": 432.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 678.0, "Total Transactions": 39.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 16.37 }, "geometry": { "type": "Point", "coordinates": [ -75.226077, 39.977232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj3-brk", "LOCATION_NAME": "Brothers Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.011083, "LONGITUDE": -75.154035, "DATE_RANGE_START": 2024, "Total Visits": 111.0, "Total Visitors": 62.0, "POI_CBG": 421010201021.0, "MEDIAN_DWELL": 21.0, "Total Spend": 213.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 4.25 }, "geometry": { "type": "Point", "coordinates": [ -75.154035, 40.011083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938273, "LONGITUDE": -75.215585, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010074005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5182.0, "Total Transactions": 280.0, "Total Customers": 215.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.215585, 39.938273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-rhq", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.038152, "LONGITUDE": -75.116908, "DATE_RANGE_START": 2024, "Total Visits": 317.0, "Total Visitors": 296.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3988.0, "Total Transactions": 115.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.52, "MEDIAN_SPEND_PER_CUSTOMER": 31.94 }, "geometry": { "type": "Point", "coordinates": [ -75.116908, 40.038152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-6tv", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951362, "LONGITUDE": -75.166293, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 32.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2310.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.0, "MEDIAN_SPEND_PER_CUSTOMER": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166293, 39.951362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-t7q", "LOCATION_NAME": "H& T Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949022, "LONGITUDE": -75.154349, "DATE_RANGE_START": 2024, "Total Visits": 828.0, "Total Visitors": 604.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1027.0, "Total Transactions": 8.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 390.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154349, 39.949022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "LOCATION_NAME": "Mid Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2024, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 228.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.82, "MEDIAN_SPEND_PER_CUSTOMER": 25.37 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmd-xt9", "LOCATION_NAME": "Cava Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.939271, "LONGITUDE": -75.176627, "DATE_RANGE_START": 2024, "Total Visits": 236.0, "Total Visitors": 219.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 15243.0, "Total Transactions": 61.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.55, "MEDIAN_SPEND_PER_CUSTOMER": 355.11 }, "geometry": { "type": "Point", "coordinates": [ -75.176627, 39.939271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-ks5", "LOCATION_NAME": "Sharetea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934458, "LONGITUDE": -75.154631, "DATE_RANGE_START": 2024, "Total Visits": 1983.0, "Total Visitors": 1393.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1238.0, "Total Transactions": 97.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.21, "MEDIAN_SPEND_PER_CUSTOMER": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.154631, 39.934458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "LOCATION_NAME": "Fiesta Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.075222, "LONGITUDE": -75.204582, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 195.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 636.0, "Total Transactions": 29.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 20.3 }, "geometry": { "type": "Point", "coordinates": [ -75.204582, 40.075222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.997186, "LONGITUDE": -75.153515, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010174002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6837.0, "Total Transactions": 276.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.12, "MEDIAN_SPEND_PER_CUSTOMER": 25.03 }, "geometry": { "type": "Point", "coordinates": [ -75.153515, 39.997186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-g8v", "LOCATION_NAME": "Khaamar Baari Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046044, "LONGITUDE": -75.070773, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 182.0, "POI_CBG": 421010314015.0, "MEDIAN_DWELL": 10.0, "Total Spend": 180.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.28, "MEDIAN_SPEND_PER_CUSTOMER": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -75.070773, 40.046044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pg8-nwk", "LOCATION_NAME": "Oxford Food Shop", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.980357, "LONGITUDE": -75.18068, "DATE_RANGE_START": 2024, "Total Visits": 724.0, "Total Visitors": 234.0, "POI_CBG": 421010149004.0, "MEDIAN_DWELL": 193.0, "Total Spend": 184.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.4, "MEDIAN_SPEND_PER_CUSTOMER": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.18068, 39.980357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-9s5", "LOCATION_NAME": "Parkside Beef & Ale", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954826, "LONGITUDE": -75.164594, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 17.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3780.0, "Total Transactions": 72.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.96, "MEDIAN_SPEND_PER_CUSTOMER": 59.64 }, "geometry": { "type": "Point", "coordinates": [ -75.164594, 39.954826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pnw-m6k", "LOCATION_NAME": "GIANT Heirloom Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.966473, "LONGITUDE": -75.140367, "DATE_RANGE_START": 2024, "Total Visits": 500.0, "Total Visitors": 312.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3958.0, "Total Transactions": 137.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.27, "MEDIAN_SPEND_PER_CUSTOMER": 22.16 }, "geometry": { "type": "Point", "coordinates": [ -75.140367, 39.966473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 195.0, "POI_CBG": 421010278002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4896.0, "Total Transactions": 308.0, "Total Customers": 245.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.25, "MEDIAN_SPEND_PER_CUSTOMER": 15.24 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "LOCATION_NAME": "Secret Garden", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 40.051859, "LONGITUDE": -75.235556, "DATE_RANGE_START": 2024, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": null, "Total Spend": 1924.0, "Total Transactions": 45.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.47, "MEDIAN_SPEND_PER_CUSTOMER": 49.65 }, "geometry": { "type": "Point", "coordinates": [ -75.235556, 40.051859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-6x5", "LOCATION_NAME": "Ocean Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950182, "LONGITUDE": -75.165953, "DATE_RANGE_START": 2024, "Total Visits": 496.0, "Total Visitors": 412.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 894.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 339.52, "MEDIAN_SPEND_PER_CUSTOMER": 339.52 }, "geometry": { "type": "Point", "coordinates": [ -75.165953, 39.950182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@63s-dvr-9zz", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929568, "LONGITUDE": -75.229061, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 126.0, "POI_CBG": 421010066002.0, "MEDIAN_DWELL": 537.0, "Total Spend": 1059.0, "Total Transactions": 54.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 17.22 }, "geometry": { "type": "Point", "coordinates": [ -75.229061, 39.929568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p8t-w8v", "LOCATION_NAME": "Cinnabon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087404, "LONGITUDE": -74.961902, "DATE_RANGE_START": 2024, "Total Visits": 581.0, "Total Visitors": 561.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3518.0, "Total Transactions": 355.0, "Total Customers": 295.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.23, "MEDIAN_SPEND_PER_CUSTOMER": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.087404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 195.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 345.0, "Total Transactions": 22.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.54, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-n3q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95343, "LONGITUDE": -75.165858, "DATE_RANGE_START": 2024, "Total Visits": 1817.0, "Total Visitors": 1289.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 19.0, "Total Spend": 1294.0, "Total Transactions": 234.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.73, "MEDIAN_SPEND_PER_CUSTOMER": 6.26 }, "geometry": { "type": "Point", "coordinates": [ -75.165858, 39.95343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-8y9", "LOCATION_NAME": "Accu Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953369, "LONGITUDE": -75.218457, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 211.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3006.0, "Total Transactions": 120.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.01, "MEDIAN_SPEND_PER_CUSTOMER": 25.18 }, "geometry": { "type": "Point", "coordinates": [ -75.218457, 39.953369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.05144, "LONGITUDE": -75.065063, "DATE_RANGE_START": 2024, "Total Visits": 1374.0, "Total Visitors": 1081.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 182931.0, "Total Transactions": 3702.0, "Total Customers": 2850.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.31, "MEDIAN_SPEND_PER_CUSTOMER": 40.58 }, "geometry": { "type": "Point", "coordinates": [ -75.065063, 40.05144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2024, "Total Visits": 488.0, "Total Visitors": 405.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4658.0, "Total Transactions": 324.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.32, "MEDIAN_SPEND_PER_CUSTOMER": 14.95 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "LOCATION_NAME": "Weavers Way Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2024, "Total Visits": 92.0, "Total Visitors": 76.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7328.0, "Total Transactions": 182.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.36, "MEDIAN_SPEND_PER_CUSTOMER": 47.88 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-p7q", "LOCATION_NAME": "Garage Fishtown", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.968647, "LONGITUDE": -75.134215, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 258.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 31285.0, "Total Transactions": 1068.0, "Total Customers": 729.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.134215, 39.968647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-28v", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978491, "LONGITUDE": -75.153508, "DATE_RANGE_START": 2024, "Total Visits": 929.0, "Total Visitors": 491.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 8472.0, "Total Transactions": 567.0, "Total Customers": 295.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.978491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phc-r8v", "LOCATION_NAME": "Sherwin-Williams", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.998271, "LONGITUDE": -75.23164, "DATE_RANGE_START": 2024, "Total Visits": 199.0, "Total Visitors": 174.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 59.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.27, "MEDIAN_SPEND_PER_CUSTOMER": 22.54 }, "geometry": { "type": "Point", "coordinates": [ -75.23164, 39.998271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-hbk", "LOCATION_NAME": "Jyoti Indian Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060418, "LONGITUDE": -75.191506, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 88.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 63.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.9, "MEDIAN_SPEND_PER_CUSTOMER": 23.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191506, 40.060418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-rkz", "LOCATION_NAME": "Hunting Park Tire Shop", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.012562, "LONGITUDE": -75.118169, "DATE_RANGE_START": 2024, "Total Visits": 65.0, "Total Visitors": 65.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1932.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.79, "MEDIAN_SPEND_PER_CUSTOMER": 255.42 }, "geometry": { "type": "Point", "coordinates": [ -75.118169, 40.012562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.11938, "LONGITUDE": -75.015073, "DATE_RANGE_START": 2024, "Total Visits": 249.0, "Total Visitors": 171.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 54948.0, "Total Transactions": 470.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.3, "MEDIAN_SPEND_PER_CUSTOMER": 77.34 }, "geometry": { "type": "Point", "coordinates": [ -75.015073, 40.11938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pne-xt9", "LOCATION_NAME": "Capitol Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.971321, "LONGITUDE": -75.120197, "DATE_RANGE_START": 2024, "Total Visits": 301.0, "Total Visitors": 241.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1149.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 132.6, "MEDIAN_SPEND_PER_CUSTOMER": 436.33 }, "geometry": { "type": "Point", "coordinates": [ -75.120197, 39.971321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@63s-dwc-cbk", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.918372, "LONGITUDE": -75.209677, "DATE_RANGE_START": 2024, "Total Visits": 893.0, "Total Visitors": 627.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 661.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.13, "MEDIAN_SPEND_PER_CUSTOMER": 33.13 }, "geometry": { "type": "Point", "coordinates": [ -75.209677, 39.918372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@63s-dwg-f9f", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913707, "LONGITUDE": -75.240275, "DATE_RANGE_START": 2024, "Total Visits": 87.0, "Total Visitors": 87.0, "POI_CBG": 421010060004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1269.0, "Total Transactions": 67.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.62, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240275, 39.913707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "LOCATION_NAME": "New Wave Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 145.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 114.0, "Total Spend": 8540.0, "Total Transactions": 183.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.2, "MEDIAN_SPEND_PER_CUSTOMER": 49.48 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-94v", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951985, "LONGITUDE": -75.157156, "DATE_RANGE_START": 2024, "Total Visits": 13727.0, "Total Visitors": 7998.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 609.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.98, "MEDIAN_SPEND_PER_CUSTOMER": 99.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157156, 39.951985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "LOCATION_NAME": "Super Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2024, "Total Visits": 115.0, "Total Visitors": 82.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1378.0, "Total Transactions": 53.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.99, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-68v", "LOCATION_NAME": "Picanha Brazilian Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947781, "LONGITUDE": -75.159791, "DATE_RANGE_START": 2024, "Total Visits": 1402.0, "Total Visitors": 931.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 18.0, "Total Spend": 93.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.29, "MEDIAN_SPEND_PER_CUSTOMER": 35.29 }, "geometry": { "type": "Point", "coordinates": [ -75.159791, 39.947781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2024, "Total Visits": 459.0, "Total Visitors": 400.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7987.0, "Total Transactions": 562.0, "Total Customers": 398.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.3, "MEDIAN_SPEND_PER_CUSTOMER": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-nwk", "LOCATION_NAME": "La Casa Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005788, "LONGITUDE": -75.102968, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 151.0, "POI_CBG": 421010190001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2879.0, "Total Transactions": 120.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.55, "MEDIAN_SPEND_PER_CUSTOMER": 23.56 }, "geometry": { "type": "Point", "coordinates": [ -75.102968, 40.005788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2024, "Total Visits": 894.0, "Total Visitors": 724.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 9.0, "Total Spend": 322.0, "Total Transactions": 30.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "LOCATION_NAME": "Grace Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2024, "Total Visits": 143.0, "Total Visitors": 143.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 69.0, "Total Spend": 918.0, "Total Transactions": 28.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.9, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-td9", "LOCATION_NAME": "NY Bagel & Deli Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96081, "LONGITUDE": -75.157392, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 121.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1820.0, "Total Transactions": 124.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.81, "MEDIAN_SPEND_PER_CUSTOMER": 16.55 }, "geometry": { "type": "Point", "coordinates": [ -75.157392, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmf-k2k", "LOCATION_NAME": "Kook Burger & Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953634, "LONGITUDE": -75.175294, "DATE_RANGE_START": 2024, "Total Visits": 623.0, "Total Visitors": 500.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.12, "MEDIAN_SPEND_PER_CUSTOMER": 11.12 }, "geometry": { "type": "Point", "coordinates": [ -75.175294, 39.953634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2024, "Total Visits": 912.0, "Total Visitors": 799.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2444.0, "Total Transactions": 132.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.08, "MEDIAN_SPEND_PER_CUSTOMER": 19.53 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "LOCATION_NAME": "Best Buy Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.078042, "LONGITUDE": -75.024894, "DATE_RANGE_START": 2024, "Total Visits": 952.0, "Total Visitors": 642.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 167.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.5, "MEDIAN_SPEND_PER_CUSTOMER": 63.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024894, 40.078042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "LOCATION_NAME": "Jamba", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.876746, "LONGITUDE": -75.247167, "DATE_RANGE_START": 2024, "Total Visits": 199.0, "Total Visitors": 178.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1295.0, "Total Transactions": 72.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.29, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247167, 39.876746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7bk", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949071, "LONGITUDE": -75.163035, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 31.0, "Total Spend": 5324.0, "Total Transactions": 142.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.27, "MEDIAN_SPEND_PER_CUSTOMER": 42.72 }, "geometry": { "type": "Point", "coordinates": [ -75.163035, 39.949071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.936264, "LONGITUDE": -75.186107, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 183.0, "POI_CBG": 421010032004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 157.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 12.18 }, "geometry": { "type": "Point", "coordinates": [ -75.186107, 39.936264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmc-v2k", "LOCATION_NAME": "Bath & Body Works", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923559, "LONGITUDE": -75.14048, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 391.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 37080.0, "Total Transactions": 1032.0, "Total Customers": 919.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.97, "MEDIAN_SPEND_PER_CUSTOMER": 29.94 }, "geometry": { "type": "Point", "coordinates": [ -75.14048, 39.923559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 157.0, "POI_CBG": 421010149005.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5208.0, "Total Transactions": 492.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.31, "MEDIAN_SPEND_PER_CUSTOMER": 15.44 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-229@628-pmb-xnq", "LOCATION_NAME": "Surreal Creamery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955246, "LONGITUDE": -75.156456, "DATE_RANGE_START": 2024, "Total Visits": 3782.0, "Total Visitors": 2650.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1472.0, "Total Transactions": 97.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.85, "MEDIAN_SPEND_PER_CUSTOMER": 11.85 }, "geometry": { "type": "Point", "coordinates": [ -75.156456, 39.955246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2024, "Total Visits": 475.0, "Total Visitors": 258.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 753.0, "Total Transactions": 50.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.51, "MEDIAN_SPEND_PER_CUSTOMER": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-mc5", "LOCATION_NAME": "Wings & More", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.936211, "LONGITUDE": -75.158643, "DATE_RANGE_START": 2024, "Total Visits": 974.0, "Total Visitors": 717.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 171.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.5, "MEDIAN_SPEND_PER_CUSTOMER": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158643, 39.936211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "LOCATION_NAME": "Parkway Corner Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2024, "Total Visits": 229.0, "Total Visitors": 145.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 12523.0, "Total Transactions": 995.0, "Total Customers": 359.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 16.34 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pg9-t9z", "LOCATION_NAME": "A&A Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.965619, "LONGITUDE": -75.165824, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 122.0, "POI_CBG": 421010134022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 971.0, "Total Transactions": 91.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.64 }, "geometry": { "type": "Point", "coordinates": [ -75.165824, 39.965619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vvf", "LOCATION_NAME": "Champion", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089655, "LONGITUDE": -74.961736, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 163.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 43.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.84, "MEDIAN_SPEND_PER_CUSTOMER": 5.84 }, "geometry": { "type": "Point", "coordinates": [ -74.961736, 40.089655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vfz", "LOCATION_NAME": "Four Worlds Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94341, "LONGITUDE": -75.210507, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 136.0, "POI_CBG": 421010074001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 921.0, "Total Transactions": 93.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.05, "MEDIAN_SPEND_PER_CUSTOMER": 11.52 }, "geometry": { "type": "Point", "coordinates": [ -75.210507, 39.94341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-j35", "LOCATION_NAME": "Gran Caffe L'Aquila", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951186, "LONGITUDE": -75.169528, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 12.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 24.0, "Total Spend": 28538.0, "Total Transactions": 831.0, "Total Customers": 565.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.52, "MEDIAN_SPEND_PER_CUSTOMER": 22.18 }, "geometry": { "type": "Point", "coordinates": [ -75.169528, 39.951186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm6-jn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921871, "LONGITUDE": -75.14714, "DATE_RANGE_START": 2024, "Total Visits": 299.0, "Total Visitors": 299.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 442.0, "Total Transactions": 57.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.14714, 39.921871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "LOCATION_NAME": "Lombard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": null, "Total Spend": 1352.0, "Total Transactions": 124.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pgj-cqz", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.978457, "LONGITUDE": -75.157473, "DATE_RANGE_START": 2024, "Total Visits": 645.0, "Total Visitors": 344.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 494.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.99, "MEDIAN_SPEND_PER_CUSTOMER": 79.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157473, 39.978457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095304, "LONGITUDE": -75.015597, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4410.0, "Total Transactions": 440.0, "Total Customers": 241.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.21, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.015597, 40.095304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-r6k", "LOCATION_NAME": "Grindcore House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929019, "LONGITUDE": -75.151738, "DATE_RANGE_START": 2024, "Total Visits": 121.0, "Total Visitors": 121.0, "POI_CBG": 421010027023.0, "MEDIAN_DWELL": 42.0, "Total Spend": 1797.0, "Total Transactions": 146.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.99, "MEDIAN_SPEND_PER_CUSTOMER": 12.73 }, "geometry": { "type": "Point", "coordinates": [ -75.151738, 39.929019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-6tv", "LOCATION_NAME": "Smoothie King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951843, "LONGITUDE": -75.167554, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 12430.0, "Total Transactions": 1023.0, "Total Customers": 642.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 12.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167554, 39.951843 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-ks5", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952045, "LONGITUDE": -75.14516, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3551.0, "Total Transactions": 358.0, "Total Customers": 234.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.12, "MEDIAN_SPEND_PER_CUSTOMER": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.14516, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-kj9", "LOCATION_NAME": "The Pleasure Chest", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950848, "LONGITUDE": -75.175157, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 96.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1386.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.71, "MEDIAN_SPEND_PER_CUSTOMER": 70.68 }, "geometry": { "type": "Point", "coordinates": [ -75.175157, 39.950848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952031, "LONGITUDE": -75.168299, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2943.0, "Total Transactions": 75.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.28, "MEDIAN_SPEND_PER_CUSTOMER": 27.28 }, "geometry": { "type": "Point", "coordinates": [ -75.168299, 39.952031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "LOCATION_NAME": "Comfort & Floyd", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 44.0, "Total Spend": 2212.0, "Total Transactions": 47.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.26, "MEDIAN_SPEND_PER_CUSTOMER": 48.26 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-pn5", "LOCATION_NAME": "Terakawa Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954646, "LONGITUDE": -75.202289, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 162.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1485.0, "Total Transactions": 38.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.9, "MEDIAN_SPEND_PER_CUSTOMER": 38.56 }, "geometry": { "type": "Point", "coordinates": [ -75.202289, 39.954646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-d9z", "LOCATION_NAME": "Garden Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960516, "LONGITUDE": -75.172536, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010125003.0, "MEDIAN_DWELL": 33.0, "Total Spend": 463.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.66, "MEDIAN_SPEND_PER_CUSTOMER": 33.66 }, "geometry": { "type": "Point", "coordinates": [ -75.172536, 39.960516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "LOCATION_NAME": "Moshulu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941589, "LONGITUDE": -75.141261, "DATE_RANGE_START": 2024, "Total Visits": 1468.0, "Total Visitors": 1268.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8250.0, "Total Transactions": 115.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.41, "MEDIAN_SPEND_PER_CUSTOMER": 76.48 }, "geometry": { "type": "Point", "coordinates": [ -75.141261, 39.941589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "LOCATION_NAME": "Champ's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2870.0, "Total Transactions": 163.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "LOCATION_NAME": "Trio", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968734, "LONGITUDE": -75.180757, "DATE_RANGE_START": 2024, "Total Visits": 253.0, "Total Visitors": 233.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2699.0, "Total Transactions": 183.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180757, 39.968734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.033212, "LONGITUDE": -75.084726, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 126.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 799.0, "Total Transactions": 41.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.084726, 40.033212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-jjv", "LOCATION_NAME": "MAC Cosmetics", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951489, "LONGITUDE": -75.170193, "DATE_RANGE_START": 2024, "Total Visits": 1203.0, "Total Visitors": 831.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 216.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.52, "MEDIAN_SPEND_PER_CUSTOMER": 52.52 }, "geometry": { "type": "Point", "coordinates": [ -75.170193, 39.951489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055418, "LONGITUDE": -75.089672, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 175.0, "POI_CBG": 421010307002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 44.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.55, "MEDIAN_SPEND_PER_CUSTOMER": 16.55 }, "geometry": { "type": "Point", "coordinates": [ -75.089672, 40.055418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065017, "LONGITUDE": -74.981943, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010362033.0, "MEDIAN_DWELL": 2.0, "Total Spend": 148.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.48, "MEDIAN_SPEND_PER_CUSTOMER": 30.48 }, "geometry": { "type": "Point", "coordinates": [ -74.981943, 40.065017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "LOCATION_NAME": "Windsor", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08613, "LONGITUDE": -74.962864, "DATE_RANGE_START": 2024, "Total Visits": 513.0, "Total Visitors": 417.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15218.0, "Total Transactions": 134.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.4, "MEDIAN_SPEND_PER_CUSTOMER": 64.69 }, "geometry": { "type": "Point", "coordinates": [ -74.962864, 40.08613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.100669, "LONGITUDE": -75.010644, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3984.0, "Total Transactions": 101.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.22, "MEDIAN_SPEND_PER_CUSTOMER": 41.87 }, "geometry": { "type": "Point", "coordinates": [ -75.010644, 40.100669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-cbk", "LOCATION_NAME": "Oregon Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913868, "LONGITUDE": -75.152939, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 330.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 32.0, "Total Spend": 589.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.27, "MEDIAN_SPEND_PER_CUSTOMER": 45.58 }, "geometry": { "type": "Point", "coordinates": [ -75.152939, 39.913868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmc-qcq", "LOCATION_NAME": "2 Street Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930224, "LONGITUDE": -75.148223, "DATE_RANGE_START": 2024, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010027021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 260.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.5, "MEDIAN_SPEND_PER_CUSTOMER": 33.32 }, "geometry": { "type": "Point", "coordinates": [ -75.148223, 39.930224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-r6k", "LOCATION_NAME": "United Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029584, "LONGITUDE": -75.100403, "DATE_RANGE_START": 2024, "Total Visits": 1363.0, "Total Visitors": 679.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 251.0, "Total Spend": 28124.0, "Total Transactions": 575.0, "Total Customers": 432.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.16, "MEDIAN_SPEND_PER_CUSTOMER": 43.16 }, "geometry": { "type": "Point", "coordinates": [ -75.100403, 40.029584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2024, "Total Visits": 1319.0, "Total Visitors": 972.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13698.0, "Total Transactions": 1035.0, "Total Customers": 666.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.11, "MEDIAN_SPEND_PER_CUSTOMER": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "LOCATION_NAME": "Philly's Famous Italian Ices", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2024, "Total Visits": 124.0, "Total Visitors": 101.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 987.0, "Total Transactions": 51.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-s3q", "LOCATION_NAME": "SS Franklin Fountain", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945259, "LONGITUDE": -75.141583, "DATE_RANGE_START": 2024, "Total Visits": 4576.0, "Total Visitors": 2903.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 140.0, "Total Spend": 14858.0, "Total Transactions": 662.0, "Total Customers": 602.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.07, "MEDIAN_SPEND_PER_CUSTOMER": 19.84 }, "geometry": { "type": "Point", "coordinates": [ -75.141583, 39.945259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-p9z", "LOCATION_NAME": "Fabrika Fishtown", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967294, "LONGITUDE": -75.134683, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 374.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 138.0, "Total Spend": 1116.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.47, "MEDIAN_SPEND_PER_CUSTOMER": 95.53 }, "geometry": { "type": "Point", "coordinates": [ -75.134683, 39.967294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.046836, "LONGITUDE": -75.055497, "DATE_RANGE_START": 2024, "Total Visits": 228.0, "Total Visitors": 145.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2732.0, "Total Transactions": 93.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.39, "MEDIAN_SPEND_PER_CUSTOMER": 40.57 }, "geometry": { "type": "Point", "coordinates": [ -75.055497, 40.046836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "LOCATION_NAME": "Theory", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949604, "LONGITUDE": -75.168129, "DATE_RANGE_START": 2024, "Total Visits": 897.0, "Total Visitors": 631.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 4.0, "Total Spend": 961.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 237.5, "MEDIAN_SPEND_PER_CUSTOMER": 237.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168129, 39.949604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-92k", "LOCATION_NAME": "Kate Spade", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952238, "LONGITUDE": -75.155945, "DATE_RANGE_START": 2024, "Total Visits": 423.0, "Total Visitors": 396.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4967.0, "Total Transactions": 58.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.02, "MEDIAN_SPEND_PER_CUSTOMER": 82.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155945, 39.952238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-dd9", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.102537, "LONGITUDE": -75.02791, "DATE_RANGE_START": 2024, "Total Visits": 743.0, "Total Visitors": 557.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 87.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.4, "MEDIAN_SPEND_PER_CUSTOMER": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02791, 40.102537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2024, "Total Visits": 4030.0, "Total Visitors": 1660.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 58.0, "Total Spend": 1140.0, "Total Transactions": 22.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.04, "MEDIAN_SPEND_PER_CUSTOMER": 53.21 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgj-ct9", "LOCATION_NAME": "Wingstop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976245, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 76.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.79, "MEDIAN_SPEND_PER_CUSTOMER": 28.79 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.976245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-qcq", "LOCATION_NAME": "Wayne Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029009, "LONGITUDE": -75.17466, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 141.0, "POI_CBG": 421010240003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 69.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.1, "MEDIAN_SPEND_PER_CUSTOMER": 26.23 }, "geometry": { "type": "Point", "coordinates": [ -75.17466, 40.029009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 11.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 754.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.05, "MEDIAN_SPEND_PER_CUSTOMER": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "LOCATION_NAME": "Steak 'Em Up", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 109.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2911.0, "Total Transactions": 112.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.23, "MEDIAN_SPEND_PER_CUSTOMER": 30.13 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9s-ct9", "LOCATION_NAME": "City Cigars", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.123362, "LONGITUDE": -75.014645, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 80.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 115.0, "Total Spend": 1733.0, "Total Transactions": 43.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.34, "MEDIAN_SPEND_PER_CUSTOMER": 71.14 }, "geometry": { "type": "Point", "coordinates": [ -75.014645, 40.123362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "LOCATION_NAME": "Christie's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2024, "Total Visits": 121.0, "Total Visitors": 121.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4644.0, "Total Transactions": 344.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040643, "LONGITUDE": -75.143875, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 20.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 3423.0, "Total Transactions": 118.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.88, "MEDIAN_SPEND_PER_CUSTOMER": 27.38 }, "geometry": { "type": "Point", "coordinates": [ -75.143875, 40.040643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2024, "Total Visits": 2393.0, "Total Visitors": 1569.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6160.0, "Total Transactions": 273.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "LOCATION_NAME": "Madrag", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.917769, "LONGITUDE": -75.18518, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 10932.0, "Total Transactions": 263.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.97, "MEDIAN_SPEND_PER_CUSTOMER": 27.43 }, "geometry": { "type": "Point", "coordinates": [ -75.18518, 39.917769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-v4v", "LOCATION_NAME": "Vista Peru", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949458, "LONGITUDE": -75.144144, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 103.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 132.0, "Total Spend": 228.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 86.68, "MEDIAN_SPEND_PER_CUSTOMER": 86.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144144, 39.949458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "LOCATION_NAME": "Tomo Sushi & Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2024, "Total Visits": 174.0, "Total Visitors": 33.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 227.0, "Total Spend": 1091.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.36, "MEDIAN_SPEND_PER_CUSTOMER": 53.42 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm9-y5f", "LOCATION_NAME": "SJ Cigar Co", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.941758, "LONGITUDE": -75.147715, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 107.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 323.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.96, "MEDIAN_SPEND_PER_CUSTOMER": 37.96 }, "geometry": { "type": "Point", "coordinates": [ -75.147715, 39.941758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "LOCATION_NAME": "Maggiano's Little Italy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953256, "LONGITUDE": -75.160263, "DATE_RANGE_START": 2024, "Total Visits": 104.0, "Total Visitors": 79.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 25118.0, "Total Transactions": 258.0, "Total Customers": 236.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.24, "MEDIAN_SPEND_PER_CUSTOMER": 76.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160263, 39.953256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8h-5xq", "LOCATION_NAME": "New Station Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026249, "LONGITUDE": -75.043153, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 80.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2769.0, "Total Transactions": 120.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.52, "MEDIAN_SPEND_PER_CUSTOMER": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043153, 40.026249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "LOCATION_NAME": "Schmear It", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956711, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2024, "Total Visits": 6012.0, "Total Visitors": 2975.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 397.0, "Total Transactions": 39.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-23m@63s-dw4-rzf", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895159, "LONGITUDE": -75.227965, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 42.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.1, "MEDIAN_SPEND_PER_CUSTOMER": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227965, 39.895159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9p-z75", "LOCATION_NAME": "Ahi Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102378, "LONGITUDE": -75.028785, "DATE_RANGE_START": 2024, "Total Visits": 9341.0, "Total Visitors": 3437.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 71.0, "Total Spend": 3661.0, "Total Transactions": 95.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.53, "MEDIAN_SPEND_PER_CUSTOMER": 47.85 }, "geometry": { "type": "Point", "coordinates": [ -75.028785, 40.102378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044965, "LONGITUDE": -75.087836, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12205.0, "Total Transactions": 1423.0, "Total Customers": 542.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.08, "MEDIAN_SPEND_PER_CUSTOMER": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087836, 40.044965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.940574, "LONGITUDE": -75.165859, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 202.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.05, "MEDIAN_SPEND_PER_CUSTOMER": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.165859, 39.940574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "LOCATION_NAME": "Alexa Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 33.0, "POI_CBG": 421010308003.0, "MEDIAN_DWELL": 244.0, "Total Spend": 2633.0, "Total Transactions": 78.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.59, "MEDIAN_SPEND_PER_CUSTOMER": 47.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgy-r6k", "LOCATION_NAME": "Hopkins Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.051828, "LONGITUDE": -75.236578, "DATE_RANGE_START": 2024, "Total Visits": 259.0, "Total Visitors": 229.0, "POI_CBG": 421010219001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 681.0, "Total Transactions": 11.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.22, "MEDIAN_SPEND_PER_CUSTOMER": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.236578, 40.051828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.037163, "LONGITUDE": -75.173091, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 11.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 115818.0, "Total Transactions": 4110.0, "Total Customers": 2251.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173091, 40.037163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pnx-bp9", "LOCATION_NAME": "Girard Food & Gas Mart", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.971685, "LONGITUDE": -75.124961, "DATE_RANGE_START": 2024, "Total Visits": 820.0, "Total Visitors": 641.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 22524.0, "Total Transactions": 774.0, "Total Customers": 457.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.07, "MEDIAN_SPEND_PER_CUSTOMER": 35.67 }, "geometry": { "type": "Point", "coordinates": [ -75.124961, 39.971685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pgb-tsq", "LOCATION_NAME": "Spring Garden Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.962555, "LONGITUDE": -75.157889, "DATE_RANGE_START": 2024, "Total Visits": 157.0, "Total Visitors": 143.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 268.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.3, "MEDIAN_SPEND_PER_CUSTOMER": 48.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157889, 39.962555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2024, "Total Visits": 3119.0, "Total Visitors": 1780.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 125931.0, "Total Transactions": 7447.0, "Total Customers": 3647.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.8, "MEDIAN_SPEND_PER_CUSTOMER": 20.32 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "LOCATION_NAME": "Academy Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2024, "Total Visits": 108.0, "Total Visitors": 87.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3288.0, "Total Transactions": 97.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pfx-s89", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.038452, "LONGITUDE": -75.239365, "DATE_RANGE_START": 2024, "Total Visits": 276.0, "Total Visitors": 276.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3348.0, "Total Transactions": 65.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239365, 40.038452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-226@628-pmb-z9f", "LOCATION_NAME": "School of Rock", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.95914, "LONGITUDE": -75.150047, "DATE_RANGE_START": 2024, "Total Visits": 520.0, "Total Visitors": 411.0, "POI_CBG": 421010376001.0, "MEDIAN_DWELL": 199.0, "Total Spend": 186.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.75, "MEDIAN_SPEND_PER_CUSTOMER": 51.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150047, 39.95914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "LOCATION_NAME": "Finn Mccools Ale House", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 257.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7475.0, "Total Transactions": 219.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.62, "MEDIAN_SPEND_PER_CUSTOMER": 30.91 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "LOCATION_NAME": "Main Street Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2024, "Total Visits": 108.0, "Total Visitors": 108.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2145.0, "Total Transactions": 51.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.82, "MEDIAN_SPEND_PER_CUSTOMER": 37.82 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-nqz", "LOCATION_NAME": "Thanal Indian Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955758, "LONGITUDE": -75.172555, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 54.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 141.0, "Total Spend": 376.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.85, "MEDIAN_SPEND_PER_CUSTOMER": 64.85 }, "geometry": { "type": "Point", "coordinates": [ -75.172555, 39.955758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "LOCATION_NAME": "Walnut Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.95707, "LONGITUDE": -75.224522, "DATE_RANGE_START": 2024, "Total Visits": 1318.0, "Total Visitors": 873.0, "POI_CBG": 421010085002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 4756.0, "Total Transactions": 128.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.73, "MEDIAN_SPEND_PER_CUSTOMER": 28.54 }, "geometry": { "type": "Point", "coordinates": [ -75.224522, 39.95707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "LOCATION_NAME": "Papa Joe's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 117.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4040.0, "Total Transactions": 150.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.02, "MEDIAN_SPEND_PER_CUSTOMER": 30.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.966684, "LONGITUDE": -75.232973, "DATE_RANGE_START": 2024, "Total Visits": 1887.0, "Total Visitors": 856.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 40.0, "Total Spend": 1837.0, "Total Transactions": 80.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.17, "MEDIAN_SPEND_PER_CUSTOMER": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232973, 39.966684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-nwk", "LOCATION_NAME": "One Pound Cheesesteaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989593, "LONGITUDE": -75.125509, "DATE_RANGE_START": 2024, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 607.0, "Total Transactions": 28.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.75, "MEDIAN_SPEND_PER_CUSTOMER": 26.25 }, "geometry": { "type": "Point", "coordinates": [ -75.125509, 39.989593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "LOCATION_NAME": "Bok Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.925358, "LONGITUDE": -75.160304, "DATE_RANGE_START": 2024, "Total Visits": 843.0, "Total Visitors": 656.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 73.0, "Total Spend": 4278.0, "Total Transactions": 126.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.72, "MEDIAN_SPEND_PER_CUSTOMER": 34.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160304, 39.925358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pjf-kvf", "LOCATION_NAME": "Serendipity Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.07605, "LONGITUDE": -75.206841, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 340.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 60.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.78, "MEDIAN_SPEND_PER_CUSTOMER": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.206841, 40.07605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgd-zxq", "LOCATION_NAME": "GIANT Heirloom Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.954746, "LONGITUDE": -75.191875, "DATE_RANGE_START": 2024, "Total Visits": 1294.0, "Total Visitors": 727.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 62.0, "Total Spend": 13205.0, "Total Transactions": 641.0, "Total Customers": 386.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.88, "MEDIAN_SPEND_PER_CUSTOMER": 22.85 }, "geometry": { "type": "Point", "coordinates": [ -75.191875, 39.954746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "LOCATION_NAME": "Vientiane Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 134.0, "POI_CBG": 421010161003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1088.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.74, "MEDIAN_SPEND_PER_CUSTOMER": 53.33 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012072, "LONGITUDE": -75.115243, "DATE_RANGE_START": 2024, "Total Visits": 508.0, "Total Visitors": 395.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 437.0, "Total Transactions": 21.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.32, "MEDIAN_SPEND_PER_CUSTOMER": 21.14 }, "geometry": { "type": "Point", "coordinates": [ -75.115243, 40.012072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmd-s5z", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.945275, "LONGITUDE": -75.177239, "DATE_RANGE_START": 2024, "Total Visits": 86.0, "Total Visitors": 53.0, "POI_CBG": 421010012013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5904.0, "Total Transactions": 142.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.12, "MEDIAN_SPEND_PER_CUSTOMER": 30.21 }, "geometry": { "type": "Point", "coordinates": [ -75.177239, 39.945275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-t5f", "LOCATION_NAME": "Perla", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930019, "LONGITUDE": -75.16283, "DATE_RANGE_START": 2024, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1500.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 130.3, "MEDIAN_SPEND_PER_CUSTOMER": 129.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16283, 39.930019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5fz", "LOCATION_NAME": "Zio's Brick Oven Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950079, "LONGITUDE": -75.161743, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 200.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 9877.0, "Total Transactions": 377.0, "Total Customers": 253.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.22, "MEDIAN_SPEND_PER_CUSTOMER": 14.82 }, "geometry": { "type": "Point", "coordinates": [ -75.161743, 39.950079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993418, "LONGITUDE": -75.144072, "DATE_RANGE_START": 2024, "Total Visits": 324.0, "Total Visitors": 241.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 829.0, "Total Transactions": 33.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.72, "MEDIAN_SPEND_PER_CUSTOMER": 18.64 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.993418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-p35", "LOCATION_NAME": "Gold Coast Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.041915, "LONGITUDE": -75.075423, "DATE_RANGE_START": 2024, "Total Visits": 244.0, "Total Visitors": 182.0, "POI_CBG": 421010311011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1147.0, "Total Transactions": 84.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 12.44 }, "geometry": { "type": "Point", "coordinates": [ -75.075423, 40.041915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047019, "LONGITUDE": -74.993384, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3529.0, "Total Transactions": 434.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.06, "MEDIAN_SPEND_PER_CUSTOMER": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -74.993384, 40.047019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@63s-dvr-cyv", "LOCATION_NAME": "A&j Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.921263, "LONGITUDE": -75.231281, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 99.0, "POI_CBG": 421010062001.0, "MEDIAN_DWELL": null, "Total Spend": 2340.0, "Total Transactions": 187.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231281, 39.921263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "LOCATION_NAME": "Barclay Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948498, "LONGITUDE": -75.170757, "DATE_RANGE_START": 2024, "Total Visits": 487.0, "Total Visitors": 423.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 9.0, "Total Spend": 26343.0, "Total Transactions": 80.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 311.22, "MEDIAN_SPEND_PER_CUSTOMER": 311.22 }, "geometry": { "type": "Point", "coordinates": [ -75.170757, 39.948498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-v4v", "LOCATION_NAME": "Nick's Bar and Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949498, "LONGITUDE": -75.144137, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 853.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2590.0, "Total Transactions": 66.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.75, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 39.949498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2024, "Total Visits": 1418.0, "Total Visitors": 1087.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12182.0, "Total Transactions": 598.0, "Total Customers": 445.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 20.19 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm8-d7q", "LOCATION_NAME": "A & S Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914908, "LONGITUDE": -75.176184, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 82.0, "POI_CBG": 421010039023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 308.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.3, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.176184, 39.914908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p83-y5f", "LOCATION_NAME": "Pennypack Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 40.085429, "LONGITUDE": -75.045472, "DATE_RANGE_START": 2024, "Total Visits": 704.0, "Total Visitors": 462.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 171.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045472, 40.085429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pmf-j35", "LOCATION_NAME": "Sephora", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951248, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 41.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 118956.0, "Total Transactions": 1843.0, "Total Customers": 1550.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.33, "MEDIAN_SPEND_PER_CUSTOMER": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.951248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "LOCATION_NAME": "Park Manor Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2024, "Total Visits": 328.0, "Total Visitors": 242.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 4580.0, "Total Transactions": 333.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.31 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-hkf", "LOCATION_NAME": "The Coventry Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953273, "LONGITUDE": -75.173676, "DATE_RANGE_START": 2024, "Total Visits": 829.0, "Total Visitors": 465.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 40.0, "Total Spend": 825.0, "Total Transactions": 100.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.13, "MEDIAN_SPEND_PER_CUSTOMER": 16.03 }, "geometry": { "type": "Point", "coordinates": [ -75.173676, 39.953273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "LOCATION_NAME": "Saks Off Fifth", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.08814, "LONGITUDE": -74.961754, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5686.0, "Total Transactions": 61.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.99, "MEDIAN_SPEND_PER_CUSTOMER": 61.78 }, "geometry": { "type": "Point", "coordinates": [ -74.961754, 40.08814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pm5-bzf", "LOCATION_NAME": "Mr Wish USA", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912953, "LONGITUDE": -75.153917, "DATE_RANGE_START": 2024, "Total Visits": 298.0, "Total Visitors": 226.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 23.0, "Total Spend": 40.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.23, "MEDIAN_SPEND_PER_CUSTOMER": 15.23 }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.912953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-phq-rp9", "LOCATION_NAME": "Deli Delight", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066189, "LONGITUDE": -75.159352, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 222.0, "POI_CBG": 421010263023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 142.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.68, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159352, 40.066189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2024, "Total Visits": 6242.0, "Total Visitors": 4587.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 10.0, "Total Spend": 81044.0, "Total Transactions": 1507.0, "Total Customers": 1220.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.95, "MEDIAN_SPEND_PER_CUSTOMER": 45.45 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2024, "Total Visits": 323.0, "Total Visitors": 221.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 15491.0, "Total Transactions": 1168.0, "Total Customers": 654.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.21, "MEDIAN_SPEND_PER_CUSTOMER": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-tgk", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035436, "LONGITUDE": -75.099754, "DATE_RANGE_START": 2024, "Total Visits": 169.0, "Total Visitors": 153.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 235.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.02, "MEDIAN_SPEND_PER_CUSTOMER": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.099754, 40.035436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "LOCATION_NAME": "Platinum", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2024, "Total Visits": 208.0, "Total Visitors": 166.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 2302.0, "Total Transactions": 66.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg9-x5z", "LOCATION_NAME": "Vineyards Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96989, "LONGITUDE": -75.162961, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 74.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2942.0, "Total Transactions": 291.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.162961, 39.96989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "LOCATION_NAME": "John's Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.033242, "LONGITUDE": -75.177084, "DATE_RANGE_START": 2024, "Total Visits": 1220.0, "Total Visitors": 671.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 5689.0, "Total Transactions": 219.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 22.48 }, "geometry": { "type": "Point", "coordinates": [ -75.177084, 40.033242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj8-qs5", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031843, "LONGITUDE": -75.10443, "DATE_RANGE_START": 2024, "Total Visits": 2079.0, "Total Visitors": 1523.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 109113.0, "Total Transactions": 6248.0, "Total Customers": 4213.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.37, "MEDIAN_SPEND_PER_CUSTOMER": 20.35 }, "geometry": { "type": "Point", "coordinates": [ -75.10443, 40.031843 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p77-c3q", "LOCATION_NAME": "Wingstop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064934, "LONGITUDE": -74.983754, "DATE_RANGE_START": 2024, "Total Visits": 300.0, "Total Visitors": 200.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 45040.0, "Total Transactions": 2021.0, "Total Customers": 1588.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -74.983754, 40.064934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-st9", "LOCATION_NAME": "Osteria", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.965053, "LONGITUDE": -75.161077, "DATE_RANGE_START": 2024, "Total Visits": 711.0, "Total Visitors": 429.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 153.0, "Total Spend": 3825.0, "Total Transactions": 25.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 152.61, "MEDIAN_SPEND_PER_CUSTOMER": 166.56 }, "geometry": { "type": "Point", "coordinates": [ -75.161077, 39.965053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "LOCATION_NAME": "Chestnut Hill Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": null, "Total Spend": 338.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgm-3qz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.008377, "LONGITUDE": -75.193545, "DATE_RANGE_START": 2024, "Total Visits": 560.0, "Total Visitors": 453.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1600.0, "Total Transactions": 157.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.09, "MEDIAN_SPEND_PER_CUSTOMER": 9.87 }, "geometry": { "type": "Point", "coordinates": [ -75.193545, 40.008377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "LOCATION_NAME": "Arch Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953655, "LONGITUDE": -75.156082, "DATE_RANGE_START": 2024, "Total Visits": 4262.0, "Total Visitors": 2963.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 131.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.36, "MEDIAN_SPEND_PER_CUSTOMER": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156082, 39.953655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-224@628-p8t-wc5", "LOCATION_NAME": "American Eagle Outlet Franklin Mills", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.086569, "LONGITUDE": -74.962587, "DATE_RANGE_START": 2024, "Total Visits": 954.0, "Total Visitors": 924.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 965.0, "Total Transactions": 29.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962587, 40.086569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phd-h89", "LOCATION_NAME": "El Limon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002787, "LONGITUDE": -75.222273, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 320.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 185.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.6, "MEDIAN_SPEND_PER_CUSTOMER": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222273, 40.002787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-b49", "LOCATION_NAME": "E Cigs International", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.03586, "LONGITUDE": -75.217916, "DATE_RANGE_START": 2024, "Total Visits": 111.0, "Total Visitors": 28.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": 255.0, "Total Spend": 216.0, "Total Transactions": 7.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.78, "MEDIAN_SPEND_PER_CUSTOMER": 69.64 }, "geometry": { "type": "Point", "coordinates": [ -75.217916, 40.03586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2024, "Total Visits": 1061.0, "Total Visitors": 729.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12698.0, "Total Transactions": 1095.0, "Total Customers": 723.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.06 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039487, "LONGITUDE": -75.109924, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 46.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2913.0, "Total Transactions": 93.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.06 }, "geometry": { "type": "Point", "coordinates": [ -75.109924, 40.039487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvq-jjv", "LOCATION_NAME": "The Breakfast Joint", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956756, "LONGITUDE": -75.241627, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 92.0, "POI_CBG": 421010083023.0, "MEDIAN_DWELL": 49.0, "Total Spend": 91.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.94, "MEDIAN_SPEND_PER_CUSTOMER": 22.94 }, "geometry": { "type": "Point", "coordinates": [ -75.241627, 39.956756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.924535, "LONGITUDE": -75.145912, "DATE_RANGE_START": 2024, "Total Visits": 5997.0, "Total Visitors": 3853.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 76700.0, "Total Transactions": 1347.0, "Total Customers": 1115.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.2, "MEDIAN_SPEND_PER_CUSTOMER": 44.07 }, "geometry": { "type": "Point", "coordinates": [ -75.145912, 39.924535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.069651, "LONGITUDE": -75.051721, "DATE_RANGE_START": 2024, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 285.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.4, "MEDIAN_SPEND_PER_CUSTOMER": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.051721, 40.069651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm8-rp9", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.918195, "LONGITUDE": -75.185015, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 949.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185015, 39.918195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pp2-47q", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982157, "LONGITUDE": -75.10349, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 186.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.86, "MEDIAN_SPEND_PER_CUSTOMER": 10.86 }, "geometry": { "type": "Point", "coordinates": [ -75.10349, 39.982157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2024, "Total Visits": 279.0, "Total Visitors": 250.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1937.0, "Total Transactions": 54.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.39, "MEDIAN_SPEND_PER_CUSTOMER": 31.54 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "LOCATION_NAME": "All The Way Live", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2024, "Total Visits": 74.0, "Total Visitors": 74.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 50.0, "Total Spend": 490.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.77, "MEDIAN_SPEND_PER_CUSTOMER": 73.18 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phk-yvz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.054562, "LONGITUDE": -75.125607, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 355.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.56, "MEDIAN_SPEND_PER_CUSTOMER": 27.56 }, "geometry": { "type": "Point", "coordinates": [ -75.125607, 40.054562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044002, "LONGITUDE": -75.10221, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2483.0, "Total Transactions": 345.0, "Total Customers": 166.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.98, "MEDIAN_SPEND_PER_CUSTOMER": 10.91 }, "geometry": { "type": "Point", "coordinates": [ -75.10221, 40.044002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "LOCATION_NAME": "Garden Court Eatery & Beer", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952665, "LONGITUDE": -75.217701, "DATE_RANGE_START": 2024, "Total Visits": 465.0, "Total Visitors": 307.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 762.0, "Total Transactions": 39.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217701, 39.952665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "LOCATION_NAME": "The Love", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2024, "Total Visits": 2509.0, "Total Visitors": 2009.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 30524.0, "Total Transactions": 255.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 114.0, "MEDIAN_SPEND_PER_CUSTOMER": 124.79 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "LOCATION_NAME": "Trio Delight Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037587, "LONGITUDE": -75.118044, "DATE_RANGE_START": 2024, "Total Visits": 388.0, "Total Visitors": 295.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1424.0, "Total Transactions": 88.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.118044, 40.037587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "LOCATION_NAME": "Brick House Bar & Grille", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2024, "Total Visits": 234.0, "Total Visitors": 201.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 60.0, "Total Spend": 3839.0, "Total Transactions": 91.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.75, "MEDIAN_SPEND_PER_CUSTOMER": 46.42 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "LOCATION_NAME": "Nautica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087648, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2024, "Total Visits": 958.0, "Total Visitors": 893.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1733.0, "Total Transactions": 34.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.68, "MEDIAN_SPEND_PER_CUSTOMER": 48.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-mrk", "LOCATION_NAME": "Dollar Plus Discount", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.959217, "LONGITUDE": -75.224578, "DATE_RANGE_START": 2024, "Total Visits": 373.0, "Total Visitors": 308.0, "POI_CBG": 421010085001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 51.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.224578, 39.959217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-gkz", "LOCATION_NAME": "Wynnefield Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984663, "LONGITUDE": -75.231132, "DATE_RANGE_START": 2024, "Total Visits": 78.0, "Total Visitors": 78.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2598.0, "Total Transactions": 118.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.4, "MEDIAN_SPEND_PER_CUSTOMER": 23.12 }, "geometry": { "type": "Point", "coordinates": [ -75.231132, 39.984663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p75-9pv", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044008, "LONGITUDE": -75.017305, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 121.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 688.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 248.36, "MEDIAN_SPEND_PER_CUSTOMER": 248.36 }, "geometry": { "type": "Point", "coordinates": [ -75.017305, 40.044008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-qpv", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007797, "LONGITUDE": -75.141965, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 61.0, "POI_CBG": 421010199002.0, "MEDIAN_DWELL": null, "Total Spend": 446.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.2, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141965, 40.007797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-9s5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911861, "LONGITUDE": -75.150069, "DATE_RANGE_START": 2024, "Total Visits": 2389.0, "Total Visitors": 1804.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 541.0, "Total Transactions": 39.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.150069, 39.911861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-rff", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.105266, "LONGITUDE": -75.002553, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 128.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 22412.0, "Total Transactions": 1377.0, "Total Customers": 850.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.17, "MEDIAN_SPEND_PER_CUSTOMER": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.002553, 40.105266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2024, "Total Visits": 1588.0, "Total Visitors": 754.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2989.0, "Total Transactions": 433.0, "Total Customers": 176.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.9, "MEDIAN_SPEND_PER_CUSTOMER": 9.76 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj4-7wk", "LOCATION_NAME": "Vernie's Soul Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027362, "LONGITUDE": -75.153997, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010280003.0, "MEDIAN_DWELL": null, "Total Spend": 585.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.71, "MEDIAN_SPEND_PER_CUSTOMER": 30.92 }, "geometry": { "type": "Point", "coordinates": [ -75.153997, 40.027362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@63s-dw4-rzf", "LOCATION_NAME": "Mezzogiorno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895195, "LONGITUDE": -75.227968, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 920.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.58, "MEDIAN_SPEND_PER_CUSTOMER": 25.85 }, "geometry": { "type": "Point", "coordinates": [ -75.227968, 39.895195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "LOCATION_NAME": "Academy Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 24.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.39, "MEDIAN_SPEND_PER_CUSTOMER": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-yd9", "LOCATION_NAME": "Somerton Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.129213, "LONGITUDE": -75.014014, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 166.0, "POI_CBG": 421010365013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1533.0, "Total Transactions": 62.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 25.29 }, "geometry": { "type": "Point", "coordinates": [ -75.014014, 40.129213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.029016, "LONGITUDE": -75.125267, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010286001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4753.0, "Total Transactions": 78.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.77, "MEDIAN_SPEND_PER_CUSTOMER": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.125267, 40.029016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5zz", "LOCATION_NAME": "Moriarty's Restaurant and Irish Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948634, "LONGITUDE": -75.159865, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 8.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 95.0, "Total Spend": 8373.0, "Total Transactions": 178.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.14, "MEDIAN_SPEND_PER_CUSTOMER": 46.81 }, "geometry": { "type": "Point", "coordinates": [ -75.159865, 39.948634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 340.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3994.0, "Total Transactions": 242.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.82, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pp5-dvz", "LOCATION_NAME": "The Medicine Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.99404, "LONGITUDE": -75.117468, "DATE_RANGE_START": 2024, "Total Visits": 80.0, "Total Visitors": 80.0, "POI_CBG": 421010178005.0, "MEDIAN_DWELL": 46.0, "Total Spend": 53.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117468, 39.99404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2024, "Total Visits": 213.0, "Total Visitors": 113.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2875.0, "Total Transactions": 187.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.43, "MEDIAN_SPEND_PER_CUSTOMER": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.064377, "LONGITUDE": -75.23812, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 616.0, "Total Transactions": 43.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.09, "MEDIAN_SPEND_PER_CUSTOMER": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23812, 40.064377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22v@628-pmb-8sq", "LOCATION_NAME": "American Eagle & Aerie Outlet Fashion District Phila", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951824, "LONGITUDE": -75.155936, "DATE_RANGE_START": 2024, "Total Visits": 470.0, "Total Visitors": 470.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 21344.0, "Total Transactions": 421.0, "Total Customers": 388.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.22, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155936, 39.951824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-qpv", "LOCATION_NAME": "Shalom Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979511, "LONGITUDE": -75.26908, "DATE_RANGE_START": 2024, "Total Visits": 456.0, "Total Visitors": 366.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 22.0, "Total Spend": 1583.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 126.18, "MEDIAN_SPEND_PER_CUSTOMER": 102.45 }, "geometry": { "type": "Point", "coordinates": [ -75.26908, 39.979511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-6ff", "LOCATION_NAME": "Barra Rossa Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948634, "LONGITUDE": -75.157218, "DATE_RANGE_START": 2024, "Total Visits": 68.0, "Total Visitors": 55.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 248.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.46, "MEDIAN_SPEND_PER_CUSTOMER": 37.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157218, 39.948634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "LOCATION_NAME": "Little Italy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 195.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2004.0, "Total Transactions": 130.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.78, "MEDIAN_SPEND_PER_CUSTOMER": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmf-rx5", "LOCATION_NAME": "Viet Bistro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944017, "LONGITUDE": -75.170118, "DATE_RANGE_START": 2024, "Total Visits": 604.0, "Total Visitors": 473.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 419.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170118, 39.944017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2024, "Total Visits": 858.0, "Total Visitors": 332.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 368.0, "Total Spend": 20659.0, "Total Transactions": 1336.0, "Total Customers": 707.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.99, "MEDIAN_SPEND_PER_CUSTOMER": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044629, "LONGITUDE": -75.142895, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 462.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 533.0, "Total Transactions": 28.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.95, "MEDIAN_SPEND_PER_CUSTOMER": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.142895, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "LOCATION_NAME": "Chill On the Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 165.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 8705.0, "Total Transactions": 790.0, "Total Customers": 545.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.52, "MEDIAN_SPEND_PER_CUSTOMER": 11.73 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086442, "LONGITUDE": -74.971753, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7260.0, "Total Transactions": 1027.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.97, "MEDIAN_SPEND_PER_CUSTOMER": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -74.971753, 40.086442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jgk", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921407, "LONGITUDE": -75.144983, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 171.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 8315.0, "Total Transactions": 158.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.89, "MEDIAN_SPEND_PER_CUSTOMER": 46.59 }, "geometry": { "type": "Point", "coordinates": [ -75.144983, 39.921407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvz-2x5", "LOCATION_NAME": "Daleng Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955999, "LONGITUDE": -75.215415, "DATE_RANGE_START": 2024, "Total Visits": 108.0, "Total Visitors": 82.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1035.0, "Total Transactions": 53.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.92, "MEDIAN_SPEND_PER_CUSTOMER": 24.55 }, "geometry": { "type": "Point", "coordinates": [ -75.215415, 39.955999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017798, "LONGITUDE": -75.148781, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 11.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3981.0, "Total Transactions": 222.0, "Total Customers": 166.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.148781, 40.017798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 141.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2553.0, "Total Transactions": 93.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.56, "MEDIAN_SPEND_PER_CUSTOMER": 23.82 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg9-59f", "LOCATION_NAME": "Charlies Country Ribs", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.98708, "LONGITUDE": -75.175955, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010151021.0, "MEDIAN_DWELL": null, "Total Spend": 201.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 33.21 }, "geometry": { "type": "Point", "coordinates": [ -75.175955, 39.98708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-k9f", "LOCATION_NAME": "Choi's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.9313, "LONGITUDE": -75.182024, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 150.0, "POI_CBG": 421010032003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.57, "MEDIAN_SPEND_PER_CUSTOMER": 4.57 }, "geometry": { "type": "Point", "coordinates": [ -75.182024, 39.9313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-k75", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.094473, "LONGITUDE": -75.018339, "DATE_RANGE_START": 2024, "Total Visits": 163.0, "Total Visitors": 163.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 664.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.35, "MEDIAN_SPEND_PER_CUSTOMER": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.018339, 40.094473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "LOCATION_NAME": "Cafe Thanh Truc", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 57.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 34.0, "Total Spend": 93.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.32, "MEDIAN_SPEND_PER_CUSTOMER": 35.32 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "LOCATION_NAME": "Mostly Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.941299, "LONGITUDE": -75.151874, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1106.0, "Total Transactions": 68.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.74, "MEDIAN_SPEND_PER_CUSTOMER": 11.77 }, "geometry": { "type": "Point", "coordinates": [ -75.151874, 39.941299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dwf-wkz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902609, "LONGITUDE": -75.240437, "DATE_RANGE_START": 2024, "Total Visits": 405.0, "Total Visitors": 305.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 242.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.41, "MEDIAN_SPEND_PER_CUSTOMER": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -75.240437, 39.902609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953728, "LONGITUDE": -75.16849, "DATE_RANGE_START": 2024, "Total Visits": 756.0, "Total Visitors": 639.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7628.0, "Total Transactions": 1397.0, "Total Customers": 499.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.42, "MEDIAN_SPEND_PER_CUSTOMER": 7.45 }, "geometry": { "type": "Point", "coordinates": [ -75.16849, 39.953728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-p9z", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953596, "LONGITUDE": -75.203164, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 61.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1506.0, "Total Transactions": 79.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.88, "MEDIAN_SPEND_PER_CUSTOMER": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.203164, 39.953596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "LOCATION_NAME": "Wah Gi Wah", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956875, "LONGITUDE": -75.211177, "DATE_RANGE_START": 2024, "Total Visits": 440.0, "Total Visitors": 240.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 150.0, "Total Spend": 1603.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.55, "MEDIAN_SPEND_PER_CUSTOMER": 65.93 }, "geometry": { "type": "Point", "coordinates": [ -75.211177, 39.956875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2024, "Total Visits": 1918.0, "Total Visitors": 1210.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 219.0, "Total Spend": 11009.0, "Total Transactions": 683.0, "Total Customers": 388.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.23, "MEDIAN_SPEND_PER_CUSTOMER": 18.98 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm8-9fz", "LOCATION_NAME": "Philadium", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91258, "LONGITUDE": -75.17636, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 117.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 357.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.5, "MEDIAN_SPEND_PER_CUSTOMER": 72.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17636, 39.91258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5mk", "LOCATION_NAME": "Boba King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950488, "LONGITUDE": -75.161675, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 34.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2316.0, "Total Transactions": 201.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.91, "MEDIAN_SPEND_PER_CUSTOMER": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.161675, 39.950488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "LOCATION_NAME": "Fishtown Social", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 167.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5754.0, "Total Transactions": 115.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.2, "MEDIAN_SPEND_PER_CUSTOMER": 56.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-fcq", "LOCATION_NAME": "Beer Harbor II", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.030534, "LONGITUDE": -75.082846, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 45.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 12.0, "Total Spend": 103.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082846, 40.030534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-9s5", "LOCATION_NAME": "Bell Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.912004, "LONGITUDE": -75.149871, "DATE_RANGE_START": 2024, "Total Visits": 2389.0, "Total Visitors": 1804.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6299.0, "Total Transactions": 201.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.6, "MEDIAN_SPEND_PER_CUSTOMER": 35.93 }, "geometry": { "type": "Point", "coordinates": [ -75.149871, 39.912004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmb-dd9", "LOCATION_NAME": "Town Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.944522, "LONGITUDE": -75.163234, "DATE_RANGE_START": 2024, "Total Visits": 345.0, "Total Visitors": 345.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1377.0, "Total Transactions": 72.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.35, "MEDIAN_SPEND_PER_CUSTOMER": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.163234, 39.944522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2024, "Total Visits": 1264.0, "Total Visitors": 1037.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1047.0, "Total Transactions": 55.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.98, "MEDIAN_SPEND_PER_CUSTOMER": 28.58 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "LOCATION_NAME": "Seorabol Korean Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2024, "Total Visits": 345.0, "Total Visitors": 326.0, "POI_CBG": 421010274023.0, "MEDIAN_DWELL": 66.0, "Total Spend": 1761.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.75, "MEDIAN_SPEND_PER_CUSTOMER": 79.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "LOCATION_NAME": "Cafe Soho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2024, "Total Visits": 230.0, "Total Visitors": 230.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 7423.0, "Total Transactions": 138.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.1, "MEDIAN_SPEND_PER_CUSTOMER": 43.71 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8m-x5z", "LOCATION_NAME": "Goody's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027482, "LONGITUDE": -75.061166, "DATE_RANGE_START": 2024, "Total Visits": 111.0, "Total Visitors": 92.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": null, "Total Spend": 933.0, "Total Transactions": 32.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.03, "MEDIAN_SPEND_PER_CUSTOMER": 33.58 }, "geometry": { "type": "Point", "coordinates": [ -75.061166, 40.027482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039119, "LONGITUDE": -75.144123, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 9.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3216.0, "Total Transactions": 502.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.09 }, "geometry": { "type": "Point", "coordinates": [ -75.144123, 40.039119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-68v", "LOCATION_NAME": "The Bike Stop", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948357, "LONGITUDE": -75.159979, "DATE_RANGE_START": 2024, "Total Visits": 257.0, "Total Visitors": 171.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 136.0, "Total Spend": 11930.0, "Total Transactions": 664.0, "Total Customers": 194.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159979, 39.948357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "LOCATION_NAME": "Mr Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 159.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2076.0, "Total Transactions": 68.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.93, "MEDIAN_SPEND_PER_CUSTOMER": 32.29 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-vj9", "LOCATION_NAME": "Fairmount Pet Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.967037, "LONGITUDE": -75.171149, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010134021.0, "MEDIAN_DWELL": 16.0, "Total Spend": 715.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.23, "MEDIAN_SPEND_PER_CUSTOMER": 25.89 }, "geometry": { "type": "Point", "coordinates": [ -75.171149, 39.967037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p7v-vxq", "LOCATION_NAME": "Algon Auto Clinic", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.055758, "LONGITUDE": -75.073258, "DATE_RANGE_START": 2024, "Total Visits": 720.0, "Total Visitors": 592.0, "POI_CBG": 421010338002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 230.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.5, "MEDIAN_SPEND_PER_CUSTOMER": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073258, 40.055758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-ch5", "LOCATION_NAME": "Fishtown Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.974407, "LONGITUDE": -75.132997, "DATE_RANGE_START": 2024, "Total Visits": 65.0, "Total Visitors": 65.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 270.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.63, "MEDIAN_SPEND_PER_CUSTOMER": 41.63 }, "geometry": { "type": "Point", "coordinates": [ -75.132997, 39.974407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "LOCATION_NAME": "Le Meridien", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2024, "Total Visits": 1047.0, "Total Visitors": 585.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 112.0, "Total Spend": 2468.0, "Total Transactions": 50.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.43, "MEDIAN_SPEND_PER_CUSTOMER": 60.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2024, "Total Visits": 1240.0, "Total Visitors": 840.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1221.0, "Total Transactions": 38.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 24.12 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj5-ht9", "LOCATION_NAME": "New Shanghai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001677, "LONGITUDE": -75.127847, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010195022.0, "MEDIAN_DWELL": null, "Total Spend": 58.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127847, 40.001677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "LOCATION_NAME": "Georgian Bread Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2024, "Total Visits": 284.0, "Total Visitors": 200.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1250.0, "Total Transactions": 43.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 26.52 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pp5-sqz", "LOCATION_NAME": "Pizza Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998117, "LONGITUDE": -75.129195, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 151.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 95.0, "Total Spend": 192.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.13, "MEDIAN_SPEND_PER_CUSTOMER": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.129195, 39.998117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2024, "Total Visits": 7027.0, "Total Visitors": 4946.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8149.0, "Total Transactions": 283.0, "Total Customers": 251.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "LOCATION_NAME": "Buffalo Wild Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.082615, "LONGITUDE": -75.025718, "DATE_RANGE_START": 2024, "Total Visits": 870.0, "Total Visitors": 723.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 7571.0, "Total Transactions": 190.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.81, "MEDIAN_SPEND_PER_CUSTOMER": 32.78 }, "geometry": { "type": "Point", "coordinates": [ -75.025718, 40.082615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-226@628-pgb-grk", "LOCATION_NAME": "Goldie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96289, "LONGITUDE": -75.173697, "DATE_RANGE_START": 2024, "Total Visits": 1951.0, "Total Visitors": 1024.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 251.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173697, 39.96289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2024, "Total Visits": 415.0, "Total Visitors": 326.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6899.0, "Total Transactions": 429.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.6, "MEDIAN_SPEND_PER_CUSTOMER": 15.37 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jgk", "LOCATION_NAME": "Dig Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951075, "LONGITUDE": -75.167966, "DATE_RANGE_START": 2024, "Total Visits": 407.0, "Total Visitors": 321.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 131.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167966, 39.951075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2024, "Total Visits": 340.0, "Total Visitors": 325.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5942.0, "Total Transactions": 101.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-x89", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970205, "LONGITUDE": -75.147863, "DATE_RANGE_START": 2024, "Total Visits": 619.0, "Total Visitors": 483.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1203.0, "Total Transactions": 112.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.147863, 39.970205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2024, "Total Visits": 857.0, "Total Visitors": 541.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 11.0, "Total Spend": 368.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.15, "MEDIAN_SPEND_PER_CUSTOMER": 10.35 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7x-vzz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051233, "LONGITUDE": -75.059566, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6945.0, "Total Transactions": 569.0, "Total Customers": 320.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.7, "MEDIAN_SPEND_PER_CUSTOMER": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.059566, 40.051233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pj3-975", "LOCATION_NAME": "Phillips 66", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.015817, "LONGITUDE": -75.153359, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 255.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 53.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153359, 40.015817 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2024, "Total Visits": 620.0, "Total Visitors": 492.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 15.0, "Total Spend": 18295.0, "Total Transactions": 408.0, "Total Customers": 326.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.65, "MEDIAN_SPEND_PER_CUSTOMER": 40.81 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pfy-f75", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.036043, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2024, "Total Visits": 611.0, "Total Visitors": 377.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 99.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.036043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wc5", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923237, "LONGITUDE": -75.144605, "DATE_RANGE_START": 2024, "Total Visits": 461.0, "Total Visitors": 341.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 90649.0, "Total Transactions": 2549.0, "Total Customers": 1153.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.43, "MEDIAN_SPEND_PER_CUSTOMER": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144605, 39.923237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "LOCATION_NAME": "Moy Fong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 117.0, "POI_CBG": 421010264005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4515.0, "Total Transactions": 180.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.41, "MEDIAN_SPEND_PER_CUSTOMER": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "LOCATION_NAME": "Navy Exchange", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2024, "Total Visits": 241.0, "Total Visitors": 68.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 42.0, "Total Spend": 2293.0, "Total Transactions": 175.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 15.29 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 109.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 442.0, "Total Transactions": 49.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.84, "MEDIAN_SPEND_PER_CUSTOMER": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmb-gkz", "LOCATION_NAME": "Effie's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945113, "LONGITUDE": -75.160611, "DATE_RANGE_START": 2024, "Total Visits": 219.0, "Total Visitors": 219.0, "POI_CBG": 421010011013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1018.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.0, "MEDIAN_SPEND_PER_CUSTOMER": 63.34 }, "geometry": { "type": "Point", "coordinates": [ -75.160611, 39.945113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2024, "Total Visits": 1010.0, "Total Visitors": 660.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 460.0, "Total Transactions": 33.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.34 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pmf-hnq", "LOCATION_NAME": "Accent on Animals", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.952176, "LONGITUDE": -75.173168, "DATE_RANGE_START": 2024, "Total Visits": 4467.0, "Total Visitors": 2948.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 398.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.56, "MEDIAN_SPEND_PER_CUSTOMER": 24.56 }, "geometry": { "type": "Point", "coordinates": [ -75.173168, 39.952176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-hwk", "LOCATION_NAME": "The Men's Wearhouse", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.079413, "LONGITUDE": -75.029146, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 261.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 761.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 289.03, "MEDIAN_SPEND_PER_CUSTOMER": 289.03 }, "geometry": { "type": "Point", "coordinates": [ -75.029146, 40.079413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-pgk", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.992681, "LONGITUDE": -75.14772, "DATE_RANGE_START": 2024, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010164003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1015.0, "Total Transactions": 33.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.98, "MEDIAN_SPEND_PER_CUSTOMER": 28.98 }, "geometry": { "type": "Point", "coordinates": [ -75.14772, 39.992681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "LOCATION_NAME": "Michaels Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.082361, "LONGITUDE": -75.023372, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 49.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 28113.0, "Total Transactions": 1026.0, "Total Customers": 841.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.26, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.023372, 40.082361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.014636, "LONGITUDE": -75.157128, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3378.0, "Total Transactions": 137.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.1, "MEDIAN_SPEND_PER_CUSTOMER": 23.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157128, 40.014636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-y9z", "LOCATION_NAME": "Bella Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941863, "LONGITUDE": -75.148989, "DATE_RANGE_START": 2024, "Total Visits": 1340.0, "Total Visitors": 1206.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 601.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148989, 39.941863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "LOCATION_NAME": "Taproom On 19th", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010038001.0, "MEDIAN_DWELL": null, "Total Spend": 5645.0, "Total Transactions": 115.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.0, "MEDIAN_SPEND_PER_CUSTOMER": 48.73 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "LOCATION_NAME": "The Cheesecake Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949046, "LONGITUDE": -75.165867, "DATE_RANGE_START": 2024, "Total Visits": 741.0, "Total Visitors": 421.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 20.0, "Total Spend": 28579.0, "Total Transactions": 384.0, "Total Customers": 359.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.28, "MEDIAN_SPEND_PER_CUSTOMER": 62.49 }, "geometry": { "type": "Point", "coordinates": [ -75.165867, 39.949046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-xnq", "LOCATION_NAME": "The Halal Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955232, "LONGITUDE": -75.156428, "DATE_RANGE_START": 2024, "Total Visits": 3782.0, "Total Visitors": 2650.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1706.0, "Total Transactions": 100.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.19, "MEDIAN_SPEND_PER_CUSTOMER": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.156428, 39.955232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dtn-hqz", "LOCATION_NAME": "Bruegger's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.89519, "LONGITUDE": -75.227949, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 6639.0, "Total Transactions": 379.0, "Total Customers": 349.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.03, "MEDIAN_SPEND_PER_CUSTOMER": 15.14 }, "geometry": { "type": "Point", "coordinates": [ -75.227949, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095811, "LONGITUDE": -75.015254, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 24.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1458.0, "Total Transactions": 176.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.47, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.015254, 40.095811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-vzz", "LOCATION_NAME": "Jollibee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048717, "LONGITUDE": -75.0598, "DATE_RANGE_START": 2024, "Total Visits": 30775.0, "Total Visitors": 13207.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 23.0, "Total Spend": 13245.0, "Total Transactions": 529.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.89, "MEDIAN_SPEND_PER_CUSTOMER": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.0598, 40.048717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 319.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5617.0, "Total Transactions": 375.0, "Total Customers": 291.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.63, "MEDIAN_SPEND_PER_CUSTOMER": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-7wk", "LOCATION_NAME": "Boba King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953548, "LONGITUDE": -75.188324, "DATE_RANGE_START": 2024, "Total Visits": 615.0, "Total Visitors": 325.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 37.0, "Total Spend": 2725.0, "Total Transactions": 262.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.81, "MEDIAN_SPEND_PER_CUSTOMER": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.188324, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "LOCATION_NAME": "King Wok Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 159.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 280.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.6, "MEDIAN_SPEND_PER_CUSTOMER": 22.6 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "LOCATION_NAME": "Ocean Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95567, "LONGITUDE": -75.156821, "DATE_RANGE_START": 2024, "Total Visits": 1923.0, "Total Visitors": 1384.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3090.0, "Total Transactions": 42.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.98, "MEDIAN_SPEND_PER_CUSTOMER": 70.59 }, "geometry": { "type": "Point", "coordinates": [ -75.156821, 39.95567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph8-q75", "LOCATION_NAME": "Bryn Mawr Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978684, "LONGITUDE": -75.268113, "DATE_RANGE_START": 2024, "Total Visits": 449.0, "Total Visitors": 316.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1926.0, "Total Transactions": 58.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.31, "MEDIAN_SPEND_PER_CUSTOMER": 25.51 }, "geometry": { "type": "Point", "coordinates": [ -75.268113, 39.978684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfx-kmk", "LOCATION_NAME": "Tsaocaa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02624, "LONGITUDE": -75.225272, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 128.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 227.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.67, "MEDIAN_SPEND_PER_CUSTOMER": 13.78 }, "geometry": { "type": "Point", "coordinates": [ -75.225272, 40.02624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952554, "LONGITUDE": -75.166725, "DATE_RANGE_START": 2024, "Total Visits": 4047.0, "Total Visitors": 2230.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 25.0, "Total Spend": 2086.0, "Total Transactions": 250.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.97, "MEDIAN_SPEND_PER_CUSTOMER": 7.73 }, "geometry": { "type": "Point", "coordinates": [ -75.166725, 39.952554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-224@628-pmf-kj9", "LOCATION_NAME": "Alchemy Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951158, "LONGITUDE": -75.175492, "DATE_RANGE_START": 2024, "Total Visits": 1210.0, "Total Visitors": 899.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3226.0, "Total Transactions": 388.0, "Total Customers": 233.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.175492, 39.951158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-yvz", "LOCATION_NAME": "Panda Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037582, "LONGITUDE": -75.130053, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 41.0, "POI_CBG": 421010274012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 40.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.29, "MEDIAN_SPEND_PER_CUSTOMER": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.130053, 40.037582 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm9-y5f", "LOCATION_NAME": "Sushi Planet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940725, "LONGITUDE": -75.14792, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 159.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 567.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.68, "MEDIAN_SPEND_PER_CUSTOMER": 39.65 }, "geometry": { "type": "Point", "coordinates": [ -75.14792, 39.940725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-y35", "LOCATION_NAME": "Dave & Buster's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.091986, "LONGITUDE": -74.961247, "DATE_RANGE_START": 2024, "Total Visits": 43.0, "Total Visitors": 39.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 59.0, "Total Spend": 31194.0, "Total Transactions": 657.0, "Total Customers": 446.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.41 }, "geometry": { "type": "Point", "coordinates": [ -74.961247, 40.091986 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-zj9", "LOCATION_NAME": "Gray Ferry Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938862, "LONGITUDE": -75.195136, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 134.0, "POI_CBG": 421010033004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1139.0, "Total Transactions": 121.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.76, "MEDIAN_SPEND_PER_CUSTOMER": 26.23 }, "geometry": { "type": "Point", "coordinates": [ -75.195136, 39.938862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "LOCATION_NAME": "Standard Tap", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96415, "LONGITUDE": -75.140513, "DATE_RANGE_START": 2024, "Total Visits": 768.0, "Total Visitors": 357.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 197.0, "Total Spend": 1799.0, "Total Transactions": 28.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.99, "MEDIAN_SPEND_PER_CUSTOMER": 48.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140513, 39.96415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-tvz", "LOCATION_NAME": "Devon Seafood Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949365, "LONGITUDE": -75.170568, "DATE_RANGE_START": 2024, "Total Visits": 765.0, "Total Visitors": 415.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 106.0, "Total Spend": 2302.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 92.76, "MEDIAN_SPEND_PER_CUSTOMER": 122.89 }, "geometry": { "type": "Point", "coordinates": [ -75.170568, 39.949365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-54v", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991295, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2024, "Total Visits": 215.0, "Total Visitors": 191.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2105.0, "Total Transactions": 132.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.27, "MEDIAN_SPEND_PER_CUSTOMER": 17.02 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2024, "Total Visits": 3782.0, "Total Visitors": 2650.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3036.0, "Total Transactions": 140.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.74, "MEDIAN_SPEND_PER_CUSTOMER": 18.95 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2024, "Total Visits": 230.0, "Total Visitors": 230.0, "POI_CBG": 421010017001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 371.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.48, "MEDIAN_SPEND_PER_CUSTOMER": 43.48 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2024, "Total Visits": 1205.0, "Total Visitors": 695.0, "POI_CBG": 421010329005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3782.0, "Total Transactions": 359.0, "Total Customers": 245.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.72, "MEDIAN_SPEND_PER_CUSTOMER": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgb-6x5", "LOCATION_NAME": "Figs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968509, "LONGITUDE": -75.178527, "DATE_RANGE_START": 2024, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 374.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 121.65, "MEDIAN_SPEND_PER_CUSTOMER": 121.65 }, "geometry": { "type": "Point", "coordinates": [ -75.178527, 39.968509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "LOCATION_NAME": "Function Coffee Labs", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2024, "Total Visits": 595.0, "Total Visitors": 462.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 747.0, "Total Transactions": 74.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.88, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-v75", "LOCATION_NAME": "Rotten Ralph's Pub & Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94849, "LONGITUDE": -75.144173, "DATE_RANGE_START": 2024, "Total Visits": 162.0, "Total Visitors": 158.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5748.0, "Total Transactions": 161.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.09, "MEDIAN_SPEND_PER_CUSTOMER": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144173, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "LOCATION_NAME": "Prohibition Taproom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 127.0, "Total Spend": 8539.0, "Total Transactions": 145.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.63, "MEDIAN_SPEND_PER_CUSTOMER": 47.04 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.875925, "LONGITUDE": -75.241184, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 54.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3949.0, "Total Transactions": 292.0, "Total Customers": 276.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.61, "MEDIAN_SPEND_PER_CUSTOMER": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241184, 39.875925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 15441.0, "Total Transactions": 870.0, "Total Customers": 458.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.58, "MEDIAN_SPEND_PER_CUSTOMER": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9r-4y9", "LOCATION_NAME": "Chuck E. Cheese's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076158, "LONGITUDE": -75.031371, "DATE_RANGE_START": 2024, "Total Visits": 353.0, "Total Visitors": 328.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 959.0, "Total Transactions": 34.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.41, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031371, 40.076158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p7x-dgk", "LOCATION_NAME": "La Famiglia Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041424, "LONGITUDE": -75.064995, "DATE_RANGE_START": 2024, "Total Visits": 133.0, "Total Visitors": 133.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 18.0, "Total Spend": 39.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.11, "MEDIAN_SPEND_PER_CUSTOMER": 10.11 }, "geometry": { "type": "Point", "coordinates": [ -75.064995, 40.041424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "LOCATION_NAME": "John's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2024, "Total Visits": 111.0, "Total Visitors": 111.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 482.0, "Total Transactions": 24.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.52, "MEDIAN_SPEND_PER_CUSTOMER": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph6-p5f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.977661, "LONGITUDE": -75.227185, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010118003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 146.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.95, "MEDIAN_SPEND_PER_CUSTOMER": 13.95 }, "geometry": { "type": "Point", "coordinates": [ -75.227185, 39.977661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-227@628-pp2-pvz", "LOCATION_NAME": "News Plus Newsstand", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.993738, "LONGITUDE": -75.094512, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 150.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 551.0, "Total Transactions": 39.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.75, "MEDIAN_SPEND_PER_CUSTOMER": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.094512, 39.993738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pnw-n89", "LOCATION_NAME": "Bagels & Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966846, "LONGITUDE": -75.139879, "DATE_RANGE_START": 2024, "Total Visits": 334.0, "Total Visitors": 323.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 60.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.95, "MEDIAN_SPEND_PER_CUSTOMER": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.139879, 39.966846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-22g@628-pfy-h3q", "LOCATION_NAME": "Rally House Ivy Ridge", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.044151, "LONGITUDE": -75.232923, "DATE_RANGE_START": 2024, "Total Visits": 2565.0, "Total Visitors": 1602.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5474.0, "Total Transactions": 101.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232923, 40.044151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032663, "LONGITUDE": -75.179788, "DATE_RANGE_START": 2024, "Total Visits": 352.0, "Total Visitors": 303.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 11076.0, "Total Transactions": 1392.0, "Total Customers": 575.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.78, "MEDIAN_SPEND_PER_CUSTOMER": 11.04 }, "geometry": { "type": "Point", "coordinates": [ -75.179788, 40.032663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp4-tsq", "LOCATION_NAME": "Green Rock Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979669, "LONGITUDE": -75.116167, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 108.0, "POI_CBG": 421010378003.0, "MEDIAN_DWELL": 78.0, "Total Spend": 4452.0, "Total Transactions": 118.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 47.33 }, "geometry": { "type": "Point", "coordinates": [ -75.116167, 39.979669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-pj4-xwk", "LOCATION_NAME": "Tribeca Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007053, "LONGITUDE": -75.151464, "DATE_RANGE_START": 2024, "Total Visits": 3137.0, "Total Visitors": 1393.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 167.0, "Total Spend": 1194.0, "Total Transactions": 155.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.39, "MEDIAN_SPEND_PER_CUSTOMER": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.151464, 40.007053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pnw-pjv", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969267, "LONGITUDE": -75.133945, "DATE_RANGE_START": 2024, "Total Visits": 346.0, "Total Visitors": 300.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 544.0, "Total Transactions": 32.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.43, "MEDIAN_SPEND_PER_CUSTOMER": 23.11 }, "geometry": { "type": "Point", "coordinates": [ -75.133945, 39.969267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.945591, "LONGITUDE": -75.238096, "DATE_RANGE_START": 2024, "Total Visits": 619.0, "Total Visitors": 359.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1052.0, "Total Transactions": 30.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.54, "MEDIAN_SPEND_PER_CUSTOMER": 28.61 }, "geometry": { "type": "Point", "coordinates": [ -75.238096, 39.945591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-j5f", "LOCATION_NAME": "Free People", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949714, "LONGITUDE": -75.168891, "DATE_RANGE_START": 2024, "Total Visits": 531.0, "Total Visitors": 484.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 564125.0, "Total Transactions": 5482.0, "Total Customers": 3584.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.0, "MEDIAN_SPEND_PER_CUSTOMER": 103.18 }, "geometry": { "type": "Point", "coordinates": [ -75.168891, 39.949714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnz-zj9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991151, "LONGITUDE": -75.102101, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 46.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.46, "MEDIAN_SPEND_PER_CUSTOMER": 17.46 }, "geometry": { "type": "Point", "coordinates": [ -75.102101, 39.991151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-kvf", "LOCATION_NAME": "Caleb Meyer Studio", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.076277, "LONGITUDE": -75.207225, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 340.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 329.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.01, "MEDIAN_SPEND_PER_CUSTOMER": 125.01 }, "geometry": { "type": "Point", "coordinates": [ -75.207225, 40.076277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "LOCATION_NAME": "Clarkville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949709, "LONGITUDE": -75.209372, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": 24.0, "Total Spend": 7929.0, "Total Transactions": 186.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.28, "MEDIAN_SPEND_PER_CUSTOMER": 39.39 }, "geometry": { "type": "Point", "coordinates": [ -75.209372, 39.949709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-ph8-rhq", "LOCATION_NAME": "Smoothie King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977878, "LONGITUDE": -75.27194, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 190.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 18325.0, "Total Transactions": 1318.0, "Total Customers": 711.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 15.14 }, "geometry": { "type": "Point", "coordinates": [ -75.27194, 39.977878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-fcq", "LOCATION_NAME": "Ace Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.946716, "LONGITUDE": -75.157593, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 925.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.29, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157593, 39.946716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-whq", "LOCATION_NAME": "Ocean City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95631, "LONGITUDE": -75.15439, "DATE_RANGE_START": 2024, "Total Visits": 334.0, "Total Visitors": 287.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 46.0, "Total Spend": 598.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.64, "MEDIAN_SPEND_PER_CUSTOMER": 48.64 }, "geometry": { "type": "Point", "coordinates": [ -75.15439, 39.95631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pmf-skf", "LOCATION_NAME": "Butcher and Singer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948984, "LONGITUDE": -75.166282, "DATE_RANGE_START": 2024, "Total Visits": 2043.0, "Total Visitors": 1291.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 5.0, "Total Spend": 20209.0, "Total Transactions": 74.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 208.59, "MEDIAN_SPEND_PER_CUSTOMER": 208.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166282, 39.948984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "LOCATION_NAME": "Revolution Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 701.0, "Total Transactions": 38.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.3, "MEDIAN_SPEND_PER_CUSTOMER": 15.31 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "LOCATION_NAME": "Red Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2024, "Total Visits": 590.0, "Total Visitors": 554.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 41.0, "Total Spend": 10038.0, "Total Transactions": 104.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.1, "MEDIAN_SPEND_PER_CUSTOMER": 91.48 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "LOCATION_NAME": "Giovani's Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951522, "LONGITUDE": -75.166746, "DATE_RANGE_START": 2024, "Total Visits": 346.0, "Total Visitors": 265.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12538.0, "Total Transactions": 606.0, "Total Customers": 357.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.1, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.166746, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "LOCATION_NAME": "Tokyo Sushi & Catering", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2024, "Total Visits": 3294.0, "Total Visitors": 1700.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 60.0, "Total Spend": 5399.0, "Total Transactions": 333.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.42, "MEDIAN_SPEND_PER_CUSTOMER": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-4qf", "LOCATION_NAME": "Tai's Vietnamese Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980895, "LONGITUDE": -75.153323, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 919.0, "Total Transactions": 83.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153323, 39.980895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "LOCATION_NAME": "Desi Chaat House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": null, "Total Spend": 513.0, "Total Transactions": 38.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 16.73 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-xkf", "LOCATION_NAME": "Vietnam Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956332, "LONGITUDE": -75.157056, "DATE_RANGE_START": 2024, "Total Visits": 253.0, "Total Visitors": 221.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 191.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.46, "MEDIAN_SPEND_PER_CUSTOMER": 48.46 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.956332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5fz", "LOCATION_NAME": "Pressed Juicery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950032, "LONGITUDE": -75.161637, "DATE_RANGE_START": 2024, "Total Visits": 588.0, "Total Visitors": 467.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2290.0, "Total Transactions": 124.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.82, "MEDIAN_SPEND_PER_CUSTOMER": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161637, 39.950032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pm9-s5z", "LOCATION_NAME": "PJ Clarkes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948105, "LONGITUDE": -75.151179, "DATE_RANGE_START": 2024, "Total Visits": 1789.0, "Total Visitors": 1032.0, "POI_CBG": 421010010011.0, "MEDIAN_DWELL": 69.0, "Total Spend": 7817.0, "Total Transactions": 108.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.61, "MEDIAN_SPEND_PER_CUSTOMER": 71.41 }, "geometry": { "type": "Point", "coordinates": [ -75.151179, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-4jv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.962319, "LONGITUDE": -75.162376, "DATE_RANGE_START": 2024, "Total Visits": 569.0, "Total Visitors": 450.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3916.0, "Total Transactions": 234.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.74, "MEDIAN_SPEND_PER_CUSTOMER": 17.87 }, "geometry": { "type": "Point", "coordinates": [ -75.162376, 39.962319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "LOCATION_NAME": "Chuck E. Cheese's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921668, "LONGITUDE": -75.14493, "DATE_RANGE_START": 2024, "Total Visits": 429.0, "Total Visitors": 367.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 355.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.63, "MEDIAN_SPEND_PER_CUSTOMER": 19.96 }, "geometry": { "type": "Point", "coordinates": [ -75.14493, 39.921668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.00463, "LONGITUDE": -75.104417, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 13.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 247.0, "Total Transactions": 17.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.72, "MEDIAN_SPEND_PER_CUSTOMER": 19.29 }, "geometry": { "type": "Point", "coordinates": [ -75.104417, 40.00463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p83-zcq", "LOCATION_NAME": "Dim Sum Factory Krewstown", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.083311, "LONGITUDE": -75.048238, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 129.0, "Total Spend": 1387.0, "Total Transactions": 29.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.5, "MEDIAN_SPEND_PER_CUSTOMER": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.048238, 40.083311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.06279, "LONGITUDE": -75.235256, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 38.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 29122.0, "Total Transactions": 590.0, "Total Customers": 429.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.88, "MEDIAN_SPEND_PER_CUSTOMER": 44.79 }, "geometry": { "type": "Point", "coordinates": [ -75.235256, 40.06279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "LOCATION_NAME": "Vapordelphia", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2024, "Total Visits": 853.0, "Total Visitors": 735.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 933.0, "Total Transactions": 29.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2024, "Total Visits": 502.0, "Total Visitors": 424.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 11804.0, "Total Transactions": 675.0, "Total Customers": 482.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.4, "MEDIAN_SPEND_PER_CUSTOMER": 18.12 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 200.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 7.0, "Total Spend": 989.0, "Total Transactions": 30.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.75, "MEDIAN_SPEND_PER_CUSTOMER": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "LOCATION_NAME": "Somerton Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.110348, "LONGITUDE": -75.024076, "DATE_RANGE_START": 2024, "Total Visits": 43.0, "Total Visitors": 18.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 141.0, "Total Spend": 6097.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 226.0, "MEDIAN_SPEND_PER_CUSTOMER": 226.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024076, 40.110348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "LOCATION_NAME": "Dollar Value", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 145.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2019.0, "Total Transactions": 103.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.44, "MEDIAN_SPEND_PER_CUSTOMER": 17.79 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2024, "Total Visits": 779.0, "Total Visitors": 637.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10748.0, "Total Transactions": 1281.0, "Total Customers": 557.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.21, "MEDIAN_SPEND_PER_CUSTOMER": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "LOCATION_NAME": "Oregon Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 167.0, "POI_CBG": 421010040022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6281.0, "Total Transactions": 391.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.25, "MEDIAN_SPEND_PER_CUSTOMER": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-y7q", "LOCATION_NAME": "Shang Hai 1", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95416, "LONGITUDE": -75.155891, "DATE_RANGE_START": 2024, "Total Visits": 4262.0, "Total Visitors": 2963.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 203.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.37, "MEDIAN_SPEND_PER_CUSTOMER": 34.11 }, "geometry": { "type": "Point", "coordinates": [ -75.155891, 39.95416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2024, "Total Visits": 174.0, "Total Visitors": 133.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 183.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.38, "MEDIAN_SPEND_PER_CUSTOMER": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2024, "Total Visits": 692.0, "Total Visitors": 382.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": 7.0, "Total Spend": 640.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.8, "MEDIAN_SPEND_PER_CUSTOMER": 36.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "LOCATION_NAME": "South Square Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 309.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 3.0, "Total Spend": 30208.0, "Total Transactions": 1327.0, "Total Customers": 587.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.32, "MEDIAN_SPEND_PER_CUSTOMER": 29.52 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "LOCATION_NAME": "Destination XL", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 161.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3081.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.0, "MEDIAN_SPEND_PER_CUSTOMER": 80.99 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgc-x5z", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.9785, "LONGITUDE": -75.225466, "DATE_RANGE_START": 2024, "Total Visits": 248.0, "Total Visitors": 138.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 5345.0, "Total Transactions": 151.0, "Total Customers": 116.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.11, "MEDIAN_SPEND_PER_CUSTOMER": 32.35 }, "geometry": { "type": "Point", "coordinates": [ -75.225466, 39.9785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.048258, "LONGITUDE": -75.056175, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 378.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 21011.0, "Total Transactions": 413.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.97, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056175, 40.048258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.065634, "LONGITUDE": -75.071931, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 10.0, "Total Spend": 752.0, "Total Transactions": 45.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.61, "MEDIAN_SPEND_PER_CUSTOMER": 24.86 }, "geometry": { "type": "Point", "coordinates": [ -75.071931, 40.065634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.99242, "LONGITUDE": -75.110931, "DATE_RANGE_START": 2024, "Total Visits": 433.0, "Total Visitors": 288.0, "POI_CBG": 421010178002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.78, "MEDIAN_SPEND_PER_CUSTOMER": 9.78 }, "geometry": { "type": "Point", "coordinates": [ -75.110931, 39.99242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-tvz", "LOCATION_NAME": "Material Culture", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.015276, "LONGITUDE": -75.173527, "DATE_RANGE_START": 2024, "Total Visits": 606.0, "Total Visitors": 477.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 35.0, "Total Spend": 1265.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 167.4, "MEDIAN_SPEND_PER_CUSTOMER": 167.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173527, 40.015276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7v-gkz", "LOCATION_NAME": "Villagio Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.053089, "LONGITUDE": -75.068847, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 163.0, "POI_CBG": 421010335003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1532.0, "Total Transactions": 45.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.91, "MEDIAN_SPEND_PER_CUSTOMER": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.068847, 40.053089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.917148, "LONGITUDE": -75.139881, "DATE_RANGE_START": 2024, "Total Visits": 671.0, "Total Visitors": 513.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 17156.0, "Total Transactions": 864.0, "Total Customers": 686.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.86, "MEDIAN_SPEND_PER_CUSTOMER": 17.06 }, "geometry": { "type": "Point", "coordinates": [ -75.139881, 39.917148 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.088158, "LONGITUDE": -74.961561, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 55.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 10786.0, "Total Transactions": 700.0, "Total Customers": 515.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.53, "MEDIAN_SPEND_PER_CUSTOMER": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -74.961561, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 116.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1041.0, "Total Transactions": 62.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-zvf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940644, "LONGITUDE": -75.166616, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 8.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7841.0, "Total Transactions": 513.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.73, "MEDIAN_SPEND_PER_CUSTOMER": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.166616, 39.940644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j9z", "LOCATION_NAME": "Lovesac", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.949786, "LONGITUDE": -75.170367, "DATE_RANGE_START": 2024, "Total Visits": 3738.0, "Total Visitors": 2712.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 19.0, "Total Spend": 10423.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 3958.49, "MEDIAN_SPEND_PER_CUSTOMER": 3958.49 }, "geometry": { "type": "Point", "coordinates": [ -75.170367, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8n-92k", "LOCATION_NAME": "Bamboo Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.034106, "LONGITUDE": -75.071773, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 169.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 1114.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.2, "MEDIAN_SPEND_PER_CUSTOMER": 36.84 }, "geometry": { "type": "Point", "coordinates": [ -75.071773, 40.034106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "LOCATION_NAME": "John's Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2024, "Total Visits": 105.0, "Total Visitors": 96.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 1094.0, "Total Transactions": 93.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.52, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "LOCATION_NAME": "New Panda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 117.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2446.0, "Total Transactions": 88.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.35, "MEDIAN_SPEND_PER_CUSTOMER": 25.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm9-wp9", "LOCATION_NAME": "3j's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950423, "LONGITUDE": -75.146258, "DATE_RANGE_START": 2024, "Total Visits": 1195.0, "Total Visitors": 972.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 563.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.88, "MEDIAN_SPEND_PER_CUSTOMER": 48.88 }, "geometry": { "type": "Point", "coordinates": [ -75.146258, 39.950423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2024, "Total Visits": 531.0, "Total Visitors": 209.0, "POI_CBG": 421010188007.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1635.0, "Total Transactions": 47.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 14.33 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079145, "LONGITUDE": -75.026625, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9066.0, "Total Transactions": 491.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 20.61 }, "geometry": { "type": "Point", "coordinates": [ -75.026625, 40.079145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22m@63s-dw4-rzf", "LOCATION_NAME": "Currito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895176, "LONGITUDE": -75.227955, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 634.0, "Total Transactions": 25.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.07, "MEDIAN_SPEND_PER_CUSTOMER": 23.72 }, "geometry": { "type": "Point", "coordinates": [ -75.227955, 39.895176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.95191, "LONGITUDE": -75.161773, "DATE_RANGE_START": 2024, "Total Visits": 10572.0, "Total Visitors": 6846.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9078.0, "Total Transactions": 456.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.16, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161773, 39.95191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pm9-hyv", "LOCATION_NAME": "Grove Supply", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.918444, "LONGITUDE": -75.177883, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2231.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.31, "MEDIAN_SPEND_PER_CUSTOMER": 73.31 }, "geometry": { "type": "Point", "coordinates": [ -75.177883, 39.918444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99585, "LONGITUDE": -75.166133, "DATE_RANGE_START": 2024, "Total Visits": 902.0, "Total Visitors": 754.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4631.0, "Total Transactions": 384.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166133, 39.99585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "LOCATION_NAME": "Checkers Drive-In Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1226.0, "Total Transactions": 72.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.71, "MEDIAN_SPEND_PER_CUSTOMER": 18.26 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.917009, "LONGITUDE": -75.236625, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 17.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2679.0, "Total Transactions": 58.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.3, "MEDIAN_SPEND_PER_CUSTOMER": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.236625, 39.917009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "LOCATION_NAME": "Munchie's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949283, "LONGITUDE": -75.153687, "DATE_RANGE_START": 2024, "Total Visits": 840.0, "Total Visitors": 585.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3975.0, "Total Transactions": 332.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.12, "MEDIAN_SPEND_PER_CUSTOMER": 14.05 }, "geometry": { "type": "Point", "coordinates": [ -75.153687, 39.949283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2024, "Total Visits": 563.0, "Total Visitors": 427.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7474.0, "Total Transactions": 945.0, "Total Customers": 479.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.69, "MEDIAN_SPEND_PER_CUSTOMER": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-pgk", "LOCATION_NAME": "Beacon Building Products", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.990643, "LONGITUDE": -75.098575, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 74.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 50616.0, "Total Transactions": 849.0, "Total Customers": 735.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098575, 39.990643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwd-pjv", "LOCATION_NAME": "Urban Shop 543", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.889671, "LONGITUDE": -75.175464, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 16.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 484.0, "Total Spend": 251.0, "Total Transactions": 33.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.33, "MEDIAN_SPEND_PER_CUSTOMER": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.175464, 39.889671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "LOCATION_NAME": "Mac Mart", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951438, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 230.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2224.0, "Total Transactions": 120.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.42, "MEDIAN_SPEND_PER_CUSTOMER": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vvf", "LOCATION_NAME": "Zales Philadelphia", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.089623, "LONGITUDE": -74.961878, "DATE_RANGE_START": 2024, "Total Visits": 305.0, "Total Visitors": 229.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 375.0, "Total Spend": 3517.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 167.4, "MEDIAN_SPEND_PER_CUSTOMER": 167.4 }, "geometry": { "type": "Point", "coordinates": [ -74.961878, 40.089623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "LOCATION_NAME": "In Riva", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 222.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 18660.0, "Total Transactions": 203.0, "Total Customers": 170.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.48, "MEDIAN_SPEND_PER_CUSTOMER": 89.42 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnw-psq", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.969094, "LONGITUDE": -75.139046, "DATE_RANGE_START": 2024, "Total Visits": 1935.0, "Total Visitors": 1231.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 203386.0, "Total Transactions": 5029.0, "Total Customers": 2204.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.13, "MEDIAN_SPEND_PER_CUSTOMER": 45.13 }, "geometry": { "type": "Point", "coordinates": [ -75.139046, 39.969094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-223@63s-dvs-26k", "LOCATION_NAME": "Drexel Line Food", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.939005, "LONGITUDE": -75.223043, "DATE_RANGE_START": 2024, "Total Visits": 466.0, "Total Visitors": 287.0, "POI_CBG": 421010071013.0, "MEDIAN_DWELL": 13.0, "Total Spend": 213.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.95, "MEDIAN_SPEND_PER_CUSTOMER": 80.95 }, "geometry": { "type": "Point", "coordinates": [ -75.223043, 39.939005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-y7q", "LOCATION_NAME": "K & A Gift Shop", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.953734, "LONGITUDE": -75.155203, "DATE_RANGE_START": 2024, "Total Visits": 4262.0, "Total Visitors": 2963.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.38, "MEDIAN_SPEND_PER_CUSTOMER": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.155203, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025407, "LONGITUDE": -75.223856, "DATE_RANGE_START": 2024, "Total Visits": 531.0, "Total Visitors": 452.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2787.0, "Total Transactions": 63.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.38, "MEDIAN_SPEND_PER_CUSTOMER": 38.38 }, "geometry": { "type": "Point", "coordinates": [ -75.223856, 40.025407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "LOCATION_NAME": "Southgate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2024, "Total Visits": 591.0, "Total Visitors": 353.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 175.0, "Total Spend": 181.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.66, "MEDIAN_SPEND_PER_CUSTOMER": 68.66 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvw-hwk", "LOCATION_NAME": "Quick & Quality", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953576, "LONGITUDE": -75.219432, "DATE_RANGE_START": 2024, "Total Visits": 163.0, "Total Visitors": 99.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4011.0, "Total Transactions": 276.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.49, "MEDIAN_SPEND_PER_CUSTOMER": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.219432, 39.953576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@63s-dvy-8y9", "LOCATION_NAME": "48th Street Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953128, "LONGITUDE": -75.218509, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 51.0, "Total Spend": 1400.0, "Total Transactions": 17.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.68, "MEDIAN_SPEND_PER_CUSTOMER": 76.68 }, "geometry": { "type": "Point", "coordinates": [ -75.218509, 39.953128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "LOCATION_NAME": "Papa Nick's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 178.0, "POI_CBG": 421010272003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2053.0, "Total Transactions": 87.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.26, "MEDIAN_SPEND_PER_CUSTOMER": 21.69 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "LOCATION_NAME": "Little Fish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2024, "Total Visits": 105.0, "Total Visitors": 105.0, "POI_CBG": 421010018001.0, "MEDIAN_DWELL": 69.0, "Total Spend": 101.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.55, "MEDIAN_SPEND_PER_CUSTOMER": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pp2-2kz", "LOCATION_NAME": "Aramingo Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.992487, "LONGITUDE": -75.10127, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 684.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.10127, 39.992487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pm7-nkf", "LOCATION_NAME": "Culture Exchange", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.933425, "LONGITUDE": -75.1808, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 115.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.49, "MEDIAN_SPEND_PER_CUSTOMER": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.1808, 39.933425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "LOCATION_NAME": "Paradise Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010190004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1580.0, "Total Transactions": 43.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.49, "MEDIAN_SPEND_PER_CUSTOMER": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "LOCATION_NAME": "Pasqually's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 104.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 46.0, "Total Spend": 9092.0, "Total Transactions": 449.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-wkz", "LOCATION_NAME": "Sassafras Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948812, "LONGITUDE": -75.144182, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 187.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 602.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.18, "MEDIAN_SPEND_PER_CUSTOMER": 41.52 }, "geometry": { "type": "Point", "coordinates": [ -75.144182, 39.948812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "LOCATION_NAME": "Cambria Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2024, "Total Visits": 8563.0, "Total Visitors": 5657.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9384.0, "Total Transactions": 55.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.7, "MEDIAN_SPEND_PER_CUSTOMER": 69.24 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-whq", "LOCATION_NAME": "Pho Xe Lua Viet Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955481, "LONGITUDE": -75.154675, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 245.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1827.0, "Total Transactions": 43.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.81, "MEDIAN_SPEND_PER_CUSTOMER": 41.81 }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pfz-bhq", "LOCATION_NAME": "Pizza Jawn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025115, "LONGITUDE": -75.223217, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 795.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.02, "MEDIAN_SPEND_PER_CUSTOMER": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223217, 40.025115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-435", "LOCATION_NAME": "Clock Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.008873, "LONGITUDE": -75.15059, "DATE_RANGE_START": 2024, "Total Visits": 462.0, "Total Visitors": 244.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 412.0, "Total Spend": 2433.0, "Total Transactions": 84.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.15059, 40.008873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj7-2p9", "LOCATION_NAME": "Jerusalem Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.040423, "LONGITUDE": -75.107572, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 161.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 4279.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 1625.0, "MEDIAN_SPEND_PER_CUSTOMER": 1625.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107572, 40.040423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 146.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1167.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.3, "MEDIAN_SPEND_PER_CUSTOMER": 74.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-5j9", "LOCATION_NAME": "Dollar Up & Gifts", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.10998, "LONGITUDE": -75.024237, "DATE_RANGE_START": 2024, "Total Visits": 366.0, "Total Visitors": 250.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 140.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.6, "MEDIAN_SPEND_PER_CUSTOMER": 32.58 }, "geometry": { "type": "Point", "coordinates": [ -75.024237, 40.10998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8d-bzf", "LOCATION_NAME": "Bridesburg Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.995896, "LONGITUDE": -75.076662, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 95.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 193.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.72, "MEDIAN_SPEND_PER_CUSTOMER": 27.76 }, "geometry": { "type": "Point", "coordinates": [ -75.076662, 39.995896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "LOCATION_NAME": "Bottle Bar East", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 132.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 17331.0, "Total Transactions": 681.0, "Total Customers": 412.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904365, "LONGITUDE": -75.169382, "DATE_RANGE_START": 2024, "Total Visits": 2307.0, "Total Visitors": 1904.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 6908.0, "Total Transactions": 294.0, "Total Customers": 271.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.64, "MEDIAN_SPEND_PER_CUSTOMER": 21.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169382, 39.904365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927199, "LONGITUDE": -75.144501, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 141.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 210.0, "Total Spend": 13061.0, "Total Transactions": 1137.0, "Total Customers": 861.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.24, "MEDIAN_SPEND_PER_CUSTOMER": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.144501, 39.927199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992343, "LONGITUDE": -75.098014, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7807.0, "Total Transactions": 429.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.89, "MEDIAN_SPEND_PER_CUSTOMER": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098014, 39.992343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-224@628-pnx-ch5", "LOCATION_NAME": "Goldie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974539, "LONGITUDE": -75.134161, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 24.0, "Total Spend": 211.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.61, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134161, 39.974539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pm5-bzf", "LOCATION_NAME": "Oregon Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.912961, "LONGITUDE": -75.153523, "DATE_RANGE_START": 2024, "Total Visits": 326.0, "Total Visitors": 221.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 16209.0, "Total Transactions": 301.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.6, "MEDIAN_SPEND_PER_CUSTOMER": 42.03 }, "geometry": { "type": "Point", "coordinates": [ -75.153523, 39.912961 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2024, "Total Visits": 1301.0, "Total Visitors": 995.0, "POI_CBG": 421010380002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2387.0, "Total Transactions": 100.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-224@628-pmf-tvz", "LOCATION_NAME": "Rittenhouse Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948989, "LONGITUDE": -75.169546, "DATE_RANGE_START": 2024, "Total Visits": 1274.0, "Total Visitors": 898.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 173.0, "Total Spend": 3462.0, "Total Transactions": 21.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.36, "MEDIAN_SPEND_PER_CUSTOMER": 100.12 }, "geometry": { "type": "Point", "coordinates": [ -75.169546, 39.948989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "LOCATION_NAME": "New London Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 107.0, "POI_CBG": 421010289013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6168.0, "Total Transactions": 211.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.04, "MEDIAN_SPEND_PER_CUSTOMER": 38.46 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2024, "Total Visits": 1126.0, "Total Visitors": 560.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 18484.0, "Total Transactions": 1344.0, "Total Customers": 795.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.22, "MEDIAN_SPEND_PER_CUSTOMER": 16.28 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@63s-dvy-mx5", "LOCATION_NAME": "Surreal Creamery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955025, "LONGITUDE": -75.199293, "DATE_RANGE_START": 2024, "Total Visits": 1736.0, "Total Visitors": 1081.0, "POI_CBG": 421010088012.0, "MEDIAN_DWELL": 22.0, "Total Spend": 4722.0, "Total Transactions": 290.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.52, "MEDIAN_SPEND_PER_CUSTOMER": 12.71 }, "geometry": { "type": "Point", "coordinates": [ -75.199293, 39.955025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.037046, "LONGITUDE": -75.119043, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6168.0, "Total Transactions": 225.0, "Total Customers": 199.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.26, "MEDIAN_SPEND_PER_CUSTOMER": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 40.037046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-73q", "LOCATION_NAME": "HipCityVeg", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950321, "LONGITUDE": -75.163776, "DATE_RANGE_START": 2024, "Total Visits": 1024.0, "Total Visitors": 729.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1629.0, "Total Transactions": 86.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.25, "MEDIAN_SPEND_PER_CUSTOMER": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.163776, 39.950321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgb-389", "LOCATION_NAME": "Callowhill Greens", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960302, "LONGITUDE": -75.168617, "DATE_RANGE_START": 2024, "Total Visits": 316.0, "Total Visitors": 271.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 64.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.08, "MEDIAN_SPEND_PER_CUSTOMER": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.168617, 39.960302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-h5z", "LOCATION_NAME": "Ground Up Coffee Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926043, "LONGITUDE": -75.168183, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 354.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 389.0, "Total Transactions": 30.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.86, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168183, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7b-kj9", "LOCATION_NAME": "Villagio Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055388, "LONGITUDE": -75.003512, "DATE_RANGE_START": 2024, "Total Visits": 67.0, "Total Visitors": 67.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 477.0, "Total Transactions": 17.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.03, "MEDIAN_SPEND_PER_CUSTOMER": 25.03 }, "geometry": { "type": "Point", "coordinates": [ -75.003512, 40.055388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-tvz", "LOCATION_NAME": "Via Locusta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949069, "LONGITUDE": -75.170305, "DATE_RANGE_START": 2024, "Total Visits": 765.0, "Total Visitors": 415.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 106.0, "Total Spend": 6369.0, "Total Transactions": 57.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.9, "MEDIAN_SPEND_PER_CUSTOMER": 138.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170305, 39.949069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-789", "LOCATION_NAME": "Bayou", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948002, "LONGITUDE": -75.22436, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 66.0, "Total Spend": 78.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.06, "MEDIAN_SPEND_PER_CUSTOMER": 29.77 }, "geometry": { "type": "Point", "coordinates": [ -75.22436, 39.948002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "LOCATION_NAME": "Tandoori bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 155.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3276.0, "Total Transactions": 109.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.87, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgd-zvf", "LOCATION_NAME": "Nafi Food Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955563, "LONGITUDE": -75.193294, "DATE_RANGE_START": 2024, "Total Visits": 1958.0, "Total Visitors": 1251.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 58.0, "Total Spend": 51.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.193294, 39.955563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "LOCATION_NAME": "Sang Kee Noodle House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954847, "LONGITUDE": -75.19368, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 28.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 393.0, "Total Spend": 8928.0, "Total Transactions": 377.0, "Total Customers": 299.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.99, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19368, 39.954847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-6c5", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052141, "LONGITUDE": -75.010272, "DATE_RANGE_START": 2024, "Total Visits": 675.0, "Total Visitors": 290.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4213.0, "Total Transactions": 225.0, "Total Customers": 166.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.92, "MEDIAN_SPEND_PER_CUSTOMER": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.010272, 40.052141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026206, "LONGITUDE": -75.22393, "DATE_RANGE_START": 2024, "Total Visits": 230.0, "Total Visitors": 215.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3937.0, "Total Transactions": 319.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.22393, 40.026206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "LOCATION_NAME": "Double Knot", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 208.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 7291.0, "Total Transactions": 61.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.18, "MEDIAN_SPEND_PER_CUSTOMER": 95.07 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8m-snq", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.022472, "LONGITUDE": -75.077322, "DATE_RANGE_START": 2024, "Total Visits": 345.0, "Total Visitors": 246.0, "POI_CBG": 421010300004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1541.0, "Total Transactions": 55.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.95, "MEDIAN_SPEND_PER_CUSTOMER": 35.98 }, "geometry": { "type": "Point", "coordinates": [ -75.077322, 40.022472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.978386, "LONGITUDE": -75.27109, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 8.0, "Total Spend": 35554.0, "Total Transactions": 789.0, "Total Customers": 628.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.3, "MEDIAN_SPEND_PER_CUSTOMER": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.27109, 39.978386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.95576, "LONGITUDE": -75.214101, "DATE_RANGE_START": 2024, "Total Visits": 502.0, "Total Visitors": 416.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 306.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214101, 39.95576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pg4-52k", "LOCATION_NAME": "Duran Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.034878, "LONGITUDE": -75.168712, "DATE_RANGE_START": 2024, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010246001.0, "MEDIAN_DWELL": 276.0, "Total Spend": 820.0, "Total Transactions": 74.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.61, "MEDIAN_SPEND_PER_CUSTOMER": 15.94 }, "geometry": { "type": "Point", "coordinates": [ -75.168712, 40.034878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2024, "Total Visits": 2640.0, "Total Visitors": 1780.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 93311.0, "Total Transactions": 519.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.49, "MEDIAN_SPEND_PER_CUSTOMER": 46.48 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-6x5", "LOCATION_NAME": "Su Xing House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950249, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 172.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1827.0, "Total Transactions": 49.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.92, "MEDIAN_SPEND_PER_CUSTOMER": 40.82 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p7b-gx5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.052222, "LONGITUDE": -75.006581, "DATE_RANGE_START": 2024, "Total Visits": 1022.0, "Total Visitors": 866.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6699.0, "Total Transactions": 233.0, "Total Customers": 133.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.76, "MEDIAN_SPEND_PER_CUSTOMER": 40.53 }, "geometry": { "type": "Point", "coordinates": [ -75.006581, 40.052222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "LOCATION_NAME": "Jack's place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 14.0, "POI_CBG": 421010326007.0, "MEDIAN_DWELL": 286.0, "Total Spend": 242.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.32, "MEDIAN_SPEND_PER_CUSTOMER": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 230.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 448.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.49, "MEDIAN_SPEND_PER_CUSTOMER": 47.49 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "LOCATION_NAME": "Nifty Fifty's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2024, "Total Visits": 174.0, "Total Visitors": 125.0, "POI_CBG": 421010372003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 252.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.92, "MEDIAN_SPEND_PER_CUSTOMER": 40.92 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-hdv", "LOCATION_NAME": "Naf Naf Middle Eastern Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953667, "LONGITUDE": -75.172426, "DATE_RANGE_START": 2024, "Total Visits": 326.0, "Total Visitors": 273.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1421.0, "Total Transactions": 97.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.76, "MEDIAN_SPEND_PER_CUSTOMER": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.172426, 39.953667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "LOCATION_NAME": "Somerset Splits", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2024, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010180013.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1076.0, "Total Transactions": 54.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.4, "MEDIAN_SPEND_PER_CUSTOMER": 22.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2024, "Total Visits": 1661.0, "Total Visitors": 550.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 1006.0, "Total Spend": 14202.0, "Total Transactions": 215.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.32, "MEDIAN_SPEND_PER_CUSTOMER": 52.42 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dvy-k9f", "LOCATION_NAME": "El Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951008, "LONGITUDE": -75.198241, "DATE_RANGE_START": 2024, "Total Visits": 1051.0, "Total Visitors": 503.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 159.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.2, "MEDIAN_SPEND_PER_CUSTOMER": 25.73 }, "geometry": { "type": "Point", "coordinates": [ -75.198241, 39.951008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918938, "LONGITUDE": -75.140855, "DATE_RANGE_START": 2024, "Total Visits": 540.0, "Total Visitors": 450.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 149.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.3, "MEDIAN_SPEND_PER_CUSTOMER": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 39.918938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 395.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7830.0, "Total Transactions": 939.0, "Total Customers": 482.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.84, "MEDIAN_SPEND_PER_CUSTOMER": 10.08 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-ph6-q4v", "LOCATION_NAME": "Lucky Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976559, "LONGITUDE": -75.232622, "DATE_RANGE_START": 2024, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010112007.0, "MEDIAN_DWELL": 6.0, "Total Spend": 96.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.96, "MEDIAN_SPEND_PER_CUSTOMER": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.232622, 39.976559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "LOCATION_NAME": "Makkah Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2024, "Total Visits": 215.0, "Total Visitors": 83.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 47.0, "Total Spend": 19362.0, "Total Transactions": 845.0, "Total Customers": 345.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.46, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-7h5", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.964803, "LONGITUDE": -75.14238, "DATE_RANGE_START": 2024, "Total Visits": 344.0, "Total Visitors": 271.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2741.0, "Total Transactions": 84.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.34, "MEDIAN_SPEND_PER_CUSTOMER": 24.57 }, "geometry": { "type": "Point", "coordinates": [ -75.14238, 39.964803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.052503, "LONGITUDE": -75.058497, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4832.0, "Total Transactions": 128.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 33.46 }, "geometry": { "type": "Point", "coordinates": [ -75.058497, 40.052503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-vcq", "LOCATION_NAME": "United Refrigeration", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 39.882256, "LONGITUDE": -75.227642, "DATE_RANGE_START": 2024, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 10470.0, "Total Transactions": 57.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.45, "MEDIAN_SPEND_PER_CUSTOMER": 70.74 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.882256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.037101, "LONGITUDE": -75.174649, "DATE_RANGE_START": 2024, "Total Visits": 646.0, "Total Visitors": 430.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2729.0, "Total Transactions": 46.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174649, 40.037101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22f@628-p9r-28v", "LOCATION_NAME": "Lane Bryant", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.074277, "LONGITUDE": -75.033112, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 785.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.41, "MEDIAN_SPEND_PER_CUSTOMER": 53.41 }, "geometry": { "type": "Point", "coordinates": [ -75.033112, 40.074277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-wc5", "LOCATION_NAME": "Craft Hall", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962391, "LONGITUDE": -75.135889, "DATE_RANGE_START": 2024, "Total Visits": 652.0, "Total Visitors": 307.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 56.0, "Total Spend": 2064.0, "Total Transactions": 30.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.04, "MEDIAN_SPEND_PER_CUSTOMER": 70.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135889, 39.962391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-d35", "LOCATION_NAME": "honeygrow", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978435, "LONGITUDE": -75.157453, "DATE_RANGE_START": 2024, "Total Visits": 645.0, "Total Visitors": 344.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 558.0, "Total Transactions": 25.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.17, "MEDIAN_SPEND_PER_CUSTOMER": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.157453, 39.978435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-2ff", "LOCATION_NAME": "Corner Bakery Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95695, "LONGITUDE": -75.19698, "DATE_RANGE_START": 2024, "Total Visits": 4675.0, "Total Visitors": 2994.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 3909.0, "Total Transactions": 257.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.15, "MEDIAN_SPEND_PER_CUSTOMER": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.19698, 39.95695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfv-26k", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.031707, "LONGITUDE": -75.211248, "DATE_RANGE_START": 2024, "Total Visits": 1386.0, "Total Visitors": 591.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 275881.0, "Total Transactions": 6681.0, "Total Customers": 2387.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.7, "MEDIAN_SPEND_PER_CUSTOMER": 58.72 }, "geometry": { "type": "Point", "coordinates": [ -75.211248, 40.031707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjb-6ff", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.048119, "LONGITUDE": -75.143076, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010277001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 534.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.53, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143076, 40.048119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "LOCATION_NAME": "Balducci's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.879193, "LONGITUDE": -75.244513, "DATE_RANGE_START": 2024, "Total Visits": 498.0, "Total Visitors": 448.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5675.0, "Total Transactions": 481.0, "Total Customers": 450.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.1, "MEDIAN_SPEND_PER_CUSTOMER": 10.38 }, "geometry": { "type": "Point", "coordinates": [ -75.244513, 39.879193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "LOCATION_NAME": "Uniqlo", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951166, "LONGITUDE": -75.167764, "DATE_RANGE_START": 2024, "Total Visits": 1369.0, "Total Visitors": 1055.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 35337.0, "Total Transactions": 648.0, "Total Customers": 578.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.9, "MEDIAN_SPEND_PER_CUSTOMER": 39.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167764, 39.951166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-234@628-pmf-jd9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95232, "LONGITUDE": -75.167812, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 869.0, "Total Transactions": 72.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.97, "MEDIAN_SPEND_PER_CUSTOMER": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.167812, 39.95232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010731, "LONGITUDE": -75.175377, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 4.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 594.0, "Total Transactions": 37.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.07 }, "geometry": { "type": "Point", "coordinates": [ -75.175377, 40.010731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2024, "Total Visits": 72.0, "Total Visitors": 72.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 97.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "LOCATION_NAME": "Quails", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2024, "Total Visits": 286.0, "Total Visitors": 270.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2929.0, "Total Transactions": 29.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.97, "MEDIAN_SPEND_PER_CUSTOMER": 67.98 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kcq", "LOCATION_NAME": "Silver Legends", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950384, "LONGITUDE": -75.174268, "DATE_RANGE_START": 2024, "Total Visits": 337.0, "Total Visitors": 319.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 1.0, "Total Spend": 165.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174268, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "2gn-222@628-pgb-k9f", "LOCATION_NAME": "Dollar Discount", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.972959, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2024, "Total Visits": 799.0, "Total Visitors": 557.0, "POI_CBG": 421010140003.0, "MEDIAN_DWELL": 607.0, "Total Spend": 156.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.92, "MEDIAN_SPEND_PER_CUSTOMER": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.972959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2024, "Total Visits": 398.0, "Total Visitors": 311.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 4530.0, "Total Transactions": 280.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.63, "MEDIAN_SPEND_PER_CUSTOMER": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951058, "LONGITUDE": -75.168149, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 45.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4720.0, "Total Transactions": 118.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.74, "MEDIAN_SPEND_PER_CUSTOMER": 28.18 }, "geometry": { "type": "Point", "coordinates": [ -75.168149, 39.951058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22b@628-phd-q75", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002688, "LONGITUDE": -75.214249, "DATE_RANGE_START": 2024, "Total Visits": 1657.0, "Total Visitors": 993.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 5021.0, "Total Transactions": 325.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.26, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.214249, 40.002688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-jd9", "LOCATION_NAME": "Westin Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952114, "LONGITUDE": -75.168477, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 11078.0, "Total Transactions": 46.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.04, "MEDIAN_SPEND_PER_CUSTOMER": 151.93 }, "geometry": { "type": "Point", "coordinates": [ -75.168477, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-dd9", "LOCATION_NAME": "Diamond Tool", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.938657, "LONGITUDE": -75.19104, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 75.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2477.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.06, "MEDIAN_SPEND_PER_CUSTOMER": 54.71 }, "geometry": { "type": "Point", "coordinates": [ -75.19104, 39.938657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2024, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1949.0, "Total Transactions": 99.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.49, "MEDIAN_SPEND_PER_CUSTOMER": 17.76 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm9-rx5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948879, "LONGITUDE": -75.151128, "DATE_RANGE_START": 2024, "Total Visits": 2195.0, "Total Visitors": 1621.0, "POI_CBG": 421010010011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 32857.0, "Total Transactions": 3682.0, "Total Customers": 1667.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.43, "MEDIAN_SPEND_PER_CUSTOMER": 10.73 }, "geometry": { "type": "Point", "coordinates": [ -75.151128, 39.948879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-ffz", "LOCATION_NAME": "P&S Ravioli Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917069, "LONGITUDE": -75.177313, "DATE_RANGE_START": 2024, "Total Visits": 363.0, "Total Visitors": 273.0, "POI_CBG": 421010039024.0, "MEDIAN_DWELL": 3.0, "Total Spend": 84.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.76, "MEDIAN_SPEND_PER_CUSTOMER": 31.76 }, "geometry": { "type": "Point", "coordinates": [ -75.177313, 39.917069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068131, "LONGITUDE": -75.198479, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5548.0, "Total Transactions": 261.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.67, "MEDIAN_SPEND_PER_CUSTOMER": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.198479, 40.068131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "LOCATION_NAME": "Aya Asian Fusion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 113.0, "POI_CBG": 421010330006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1355.0, "Total Transactions": 45.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.92, "MEDIAN_SPEND_PER_CUSTOMER": 40.45 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvr-7bk", "LOCATION_NAME": "Woodland Village Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927328, "LONGITUDE": -75.231404, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 70.0, "POI_CBG": 421010066004.0, "MEDIAN_DWELL": 49.0, "Total Spend": 626.0, "Total Transactions": 57.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.231404, 39.927328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "LOCATION_NAME": "Kostas Bar Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968854, "LONGITUDE": -75.13498, "DATE_RANGE_START": 2024, "Total Visits": 783.0, "Total Visitors": 553.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 6729.0, "Total Transactions": 241.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13498, 39.968854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pp4-vfz", "LOCATION_NAME": "Franco's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982045, "LONGITUDE": -75.121584, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010160004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2060.0, "Total Transactions": 66.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.5, "MEDIAN_SPEND_PER_CUSTOMER": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.121584, 39.982045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-p82-nqz", "LOCATION_NAME": "On Charcoal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041319, "LONGITUDE": -75.075986, "DATE_RANGE_START": 2024, "Total Visits": 137.0, "Total Visitors": 121.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 46.0, "Total Spend": 1758.0, "Total Transactions": 36.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 57.16 }, "geometry": { "type": "Point", "coordinates": [ -75.075986, 40.041319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p8v-8y9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.088382, "LONGITUDE": -74.969584, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 306.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.5, "MEDIAN_SPEND_PER_CUSTOMER": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969584, 40.088382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "LOCATION_NAME": "Einstein Brothers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995332, "LONGITUDE": -75.240201, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 420912045002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240201, 39.995332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025459, "LONGITUDE": -75.149625, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 187.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 486.0, "Total Transactions": 45.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.38 }, "geometry": { "type": "Point", "coordinates": [ -75.149625, 40.025459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pzp-2zf", "LOCATION_NAME": "Station Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.132001, "LONGITUDE": -75.01221, "DATE_RANGE_START": 2024, "Total Visits": 196.0, "Total Visitors": 138.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 52.0, "Total Spend": 2203.0, "Total Transactions": 93.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.67, "MEDIAN_SPEND_PER_CUSTOMER": 27.9 }, "geometry": { "type": "Point", "coordinates": [ -75.01221, 40.132001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-dqf", "LOCATION_NAME": "Asian Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918335, "LONGITUDE": -75.181058, "DATE_RANGE_START": 2024, "Total Visits": 257.0, "Total Visitors": 245.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 1108.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 413.34, "MEDIAN_SPEND_PER_CUSTOMER": 420.84 }, "geometry": { "type": "Point", "coordinates": [ -75.181058, 39.918335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923331, "LONGITUDE": -75.144837, "DATE_RANGE_START": 2024, "Total Visits": 1865.0, "Total Visitors": 1047.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2878.0, "Total Transactions": 299.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.13, "MEDIAN_SPEND_PER_CUSTOMER": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.144837, 39.923331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.913049, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 658.0, "Total Transactions": 36.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.77, "MEDIAN_SPEND_PER_CUSTOMER": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.913049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2024, "Total Visits": 244.0, "Total Visitors": 161.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 208.0, "Total Transactions": 11.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.58, "MEDIAN_SPEND_PER_CUSTOMER": 25.66 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.03106, "LONGITUDE": -75.09906, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 33.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1272.0, "Total Transactions": 26.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.03, "MEDIAN_SPEND_PER_CUSTOMER": 31.03 }, "geometry": { "type": "Point", "coordinates": [ -75.09906, 40.03106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-49z", "LOCATION_NAME": "Greek From Greece", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957875, "LONGITUDE": -75.188864, "DATE_RANGE_START": 2024, "Total Visits": 625.0, "Total Visitors": 325.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 39.0, "Total Spend": 187.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.188864, 39.957875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p82-92k", "LOCATION_NAME": "Pharmacy of America II", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034445, "LONGITUDE": -75.08703, "DATE_RANGE_START": 2024, "Total Visits": 900.0, "Total Visitors": 769.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 842.0, "Total Transactions": 38.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.08703, 40.034445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph6-pqf", "LOCATION_NAME": "Ace Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980407, "LONGITUDE": -75.233631, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010118003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1177.0, "Total Transactions": 67.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.31, "MEDIAN_SPEND_PER_CUSTOMER": 19.95 }, "geometry": { "type": "Point", "coordinates": [ -75.233631, 39.980407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "LOCATION_NAME": "Abyssinia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 146.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5791.0, "Total Transactions": 150.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.28, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-h89", "LOCATION_NAME": "Gyu-Kaku", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960778, "LONGITUDE": -75.170103, "DATE_RANGE_START": 2024, "Total Visits": 1062.0, "Total Visitors": 490.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 706.0, "Total Spend": 211.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.11, "MEDIAN_SPEND_PER_CUSTOMER": 80.11 }, "geometry": { "type": "Point", "coordinates": [ -75.170103, 39.960778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-223@628-pm3-vpv", "LOCATION_NAME": "Asian Fusion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927745, "LONGITUDE": -75.16578, "DATE_RANGE_START": 2024, "Total Visits": 115.0, "Total Visitors": 115.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 38.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.6, "MEDIAN_SPEND_PER_CUSTOMER": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16578, 39.927745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm4-hnq", "LOCATION_NAME": "Los Cuatro Soles", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928485, "LONGITUDE": -75.173061, "DATE_RANGE_START": 2024, "Total Visits": 92.0, "Total Visitors": 92.0, "POI_CBG": 421010030013.0, "MEDIAN_DWELL": 50.0, "Total Spend": 1153.0, "Total Transactions": 34.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.86, "MEDIAN_SPEND_PER_CUSTOMER": 37.03 }, "geometry": { "type": "Point", "coordinates": [ -75.173061, 39.928485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962248, "LONGITUDE": -75.172948, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 17.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 13528.0, "Total Transactions": 458.0, "Total Customers": 334.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.13, "MEDIAN_SPEND_PER_CUSTOMER": 30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172948, 39.962248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgf-dvz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958298, "LONGITUDE": -75.208207, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 601.0, "Total Transactions": 33.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.49, "MEDIAN_SPEND_PER_CUSTOMER": 15.82 }, "geometry": { "type": "Point", "coordinates": [ -75.208207, 39.958298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2024, "Total Visits": 427.0, "Total Visitors": 199.0, "POI_CBG": 421010101005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6857.0, "Total Transactions": 849.0, "Total Customers": 404.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.016697, "LONGITUDE": -75.096363, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 77.0, "Total Spend": 222.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.7, "MEDIAN_SPEND_PER_CUSTOMER": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.096363, 40.016697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2024, "Total Visits": 477.0, "Total Visitors": 183.0, "POI_CBG": 421010041013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 785.0, "Total Transactions": 61.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.54, "MEDIAN_SPEND_PER_CUSTOMER": 16.66 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmc-psq", "LOCATION_NAME": "BJ Kitchen Floor", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.934285, "LONGITUDE": -75.148882, "DATE_RANGE_START": 2024, "Total Visits": 283.0, "Total Visitors": 248.0, "POI_CBG": 421010025001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11422.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 200.0, "MEDIAN_SPEND_PER_CUSTOMER": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148882, 39.934285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "LOCATION_NAME": "Tommy Hilfiger", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089955, "LONGITUDE": -74.96205, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 786.0, "Total Transactions": 17.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.54, "MEDIAN_SPEND_PER_CUSTOMER": 35.18 }, "geometry": { "type": "Point", "coordinates": [ -74.96205, 40.089955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-22n@628-pnw-psq", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968442, "LONGITUDE": -75.13901, "DATE_RANGE_START": 2024, "Total Visits": 2222.0, "Total Visitors": 1319.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 17625.0, "Total Transactions": 261.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.6, "MEDIAN_SPEND_PER_CUSTOMER": 49.68 }, "geometry": { "type": "Point", "coordinates": [ -75.13901, 39.968442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "27s-222@628-pgj-28v", "LOCATION_NAME": "Raising Cane's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978822, "LONGITUDE": -75.153265, "DATE_RANGE_START": 2024, "Total Visits": 2767.0, "Total Visitors": 1513.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 17735.0, "Total Transactions": 1156.0, "Total Customers": 883.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.73, "MEDIAN_SPEND_PER_CUSTOMER": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.153265, 39.978822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-phy-qcq", "LOCATION_NAME": "Lucky Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.018677, "LONGITUDE": -75.139721, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 125.0, "POI_CBG": 421010197006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 168.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.43, "MEDIAN_SPEND_PER_CUSTOMER": 27.81 }, "geometry": { "type": "Point", "coordinates": [ -75.139721, 40.018677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgj-xkf", "LOCATION_NAME": "Sunny's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.990908, "LONGITUDE": -75.154807, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 200.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 413.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.52, "MEDIAN_SPEND_PER_CUSTOMER": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.154807, 39.990908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-grk", "LOCATION_NAME": "Nick's Charcoal Pit", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923906, "LONGITUDE": -75.167451, "DATE_RANGE_START": 2024, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010040013.0, "MEDIAN_DWELL": null, "Total Spend": 615.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.65, "MEDIAN_SPEND_PER_CUSTOMER": 29.37 }, "geometry": { "type": "Point", "coordinates": [ -75.167451, 39.923906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "LOCATION_NAME": "Ekta Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 129.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2391.0, "Total Transactions": 58.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.12, "MEDIAN_SPEND_PER_CUSTOMER": 48.07 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "LOCATION_NAME": "Love Vape", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 93.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5270.0, "Total Transactions": 182.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.24, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pjf-jvz", "LOCATION_NAME": "Laurel Hill Gardens", "TOP_CATEGORY": "Lawn and Garden Equipment and Supplies Stores", "LATITUDE": 40.073009, "LONGITUDE": -75.201894, "DATE_RANGE_START": 2024, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010257003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1194.0, "Total Transactions": 29.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.201894, 40.073009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "LOCATION_NAME": "Spice 28", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2024, "Total Visits": 259.0, "Total Visitors": 246.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8687.0, "Total Transactions": 178.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.83, "MEDIAN_SPEND_PER_CUSTOMER": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962523, "LONGITUDE": -75.163702, "DATE_RANGE_START": 2024, "Total Visits": 1592.0, "Total Visitors": 843.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 6592.0, "Total Transactions": 979.0, "Total Customers": 425.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.79, "MEDIAN_SPEND_PER_CUSTOMER": 10.02 }, "geometry": { "type": "Point", "coordinates": [ -75.163702, 39.962523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955168, "LONGITUDE": -75.155663, "DATE_RANGE_START": 2024, "Total Visits": 795.0, "Total Visitors": 629.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1559.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.64, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155663, 39.955168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-228@628-pjf-jvz", "LOCATION_NAME": "Tokyo Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074121, "LONGITUDE": -75.202557, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 296.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 12067.0, "Total Transactions": 204.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.8, "MEDIAN_SPEND_PER_CUSTOMER": 40.15 }, "geometry": { "type": "Point", "coordinates": [ -75.202557, 40.074121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2024, "Total Visits": 57.0, "Total Visitors": 57.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3529.0, "Total Transactions": 336.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.58, "MEDIAN_SPEND_PER_CUSTOMER": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923566, "LONGITUDE": -75.245262, "DATE_RANGE_START": 2024, "Total Visits": 491.0, "Total Visitors": 336.0, "POI_CBG": 421010064003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4302.0, "Total Transactions": 487.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.71, "MEDIAN_SPEND_PER_CUSTOMER": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.245262, 39.923566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2024, "Total Visits": 405.0, "Total Visitors": 316.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6332.0, "Total Transactions": 794.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.64, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm3-vzz", "LOCATION_NAME": "Boys Town Girls Town", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.92858, "LONGITUDE": -75.165355, "DATE_RANGE_START": 2024, "Total Visits": 512.0, "Total Visitors": 349.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 691.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 163.7, "MEDIAN_SPEND_PER_CUSTOMER": 163.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165355, 39.92858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-mc5", "LOCATION_NAME": "Mole Poblano Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935124, "LONGITUDE": -75.158821, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 147.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 1627.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.8, "MEDIAN_SPEND_PER_CUSTOMER": 45.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158821, 39.935124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "LOCATION_NAME": "Danny's Wok 3", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 204.0, "POI_CBG": 421010204002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1664.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "LOCATION_NAME": "Ryan's Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2024, "Total Visits": 275.0, "Total Visitors": 263.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 18.0, "Total Spend": 15932.0, "Total Transactions": 612.0, "Total Customers": 384.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.05, "MEDIAN_SPEND_PER_CUSTOMER": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "LOCATION_NAME": "Philadelphia Bikesmith", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.962887, "LONGITUDE": -75.169323, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2474.0, "Total Transactions": 45.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.9, "MEDIAN_SPEND_PER_CUSTOMER": 53.97 }, "geometry": { "type": "Point", "coordinates": [ -75.169323, 39.962887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2ff", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99066, "LONGITUDE": -75.135816, "DATE_RANGE_START": 2024, "Total Visits": 502.0, "Total Visitors": 449.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 38.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.2, "MEDIAN_SPEND_PER_CUSTOMER": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135816, 39.99066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-ks5", "LOCATION_NAME": "Elwood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96637, "LONGITUDE": -75.134125, "DATE_RANGE_START": 2024, "Total Visits": 270.0, "Total Visitors": 270.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 131.0, "Total Spend": 372.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 141.3, "MEDIAN_SPEND_PER_CUSTOMER": 141.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 39.96637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-v75", "LOCATION_NAME": "Linsky Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.926603, "LONGITUDE": -75.14901, "DATE_RANGE_START": 2024, "Total Visits": 1114.0, "Total Visitors": 978.0, "POI_CBG": 421010027022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 780.0, "Total Transactions": 34.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.89, "MEDIAN_SPEND_PER_CUSTOMER": 27.36 }, "geometry": { "type": "Point", "coordinates": [ -75.14901, 39.926603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p7w-wzf", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.034002, "LONGITUDE": -75.046571, "DATE_RANGE_START": 2024, "Total Visits": 612.0, "Total Visitors": 388.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 51.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046571, 40.034002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-bff", "LOCATION_NAME": "Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.016286, "LONGITUDE": -75.061606, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 29.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 205.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.08, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061606, 40.016286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-22f@628-pgj-cqz", "LOCATION_NAME": "Touch Down Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978146, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 72.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.978146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "LOCATION_NAME": "Macaroni's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2024, "Total Visits": 232.0, "Total Visitors": 180.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 74.0, "Total Spend": 10649.0, "Total Transactions": 84.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 116.68, "MEDIAN_SPEND_PER_CUSTOMER": 119.83 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pp5-7wk", "LOCATION_NAME": "La Esquina del Bronco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.984824, "LONGITUDE": -75.133049, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 117.0, "POI_CBG": 421010162001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 566.0, "Total Transactions": 29.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.9, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.133049, 39.984824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "LOCATION_NAME": "Dragon City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2024, "Total Visits": 178.0, "Total Visitors": 155.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3792.0, "Total Transactions": 159.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.8, "MEDIAN_SPEND_PER_CUSTOMER": 30.05 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-xt9", "LOCATION_NAME": "La Colombe Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.878148, "LONGITUDE": -75.237782, "DATE_RANGE_START": 2024, "Total Visits": 2118.0, "Total Visitors": 1871.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7566.0, "Total Transactions": 446.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.87, "MEDIAN_SPEND_PER_CUSTOMER": 13.89 }, "geometry": { "type": "Point", "coordinates": [ -75.237782, 39.878148 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.977115, "LONGITUDE": -75.274328, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010098022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2405.0, "Total Transactions": 50.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 38.33 }, "geometry": { "type": "Point", "coordinates": [ -75.274328, 39.977115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951478, "LONGITUDE": -75.166517, "DATE_RANGE_START": 2024, "Total Visits": 37.0, "Total Visitors": 29.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10358.0, "Total Transactions": 563.0, "Total Customers": 440.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.68, "MEDIAN_SPEND_PER_CUSTOMER": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 39.951478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.068105, "LONGITUDE": -75.198516, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2102.0, "Total Transactions": 68.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.15, "MEDIAN_SPEND_PER_CUSTOMER": 30.02 }, "geometry": { "type": "Point", "coordinates": [ -75.198516, 40.068105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p8h-td9", "LOCATION_NAME": "Bravo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024518, "LONGITUDE": -75.046521, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 137.0, "POI_CBG": 421010325002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1163.0, "Total Transactions": 50.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.23, "MEDIAN_SPEND_PER_CUSTOMER": 26.38 }, "geometry": { "type": "Point", "coordinates": [ -75.046521, 40.024518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946479, "LONGITUDE": -75.180675, "DATE_RANGE_START": 2024, "Total Visits": 373.0, "Total Visitors": 344.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5965.0, "Total Transactions": 661.0, "Total Customers": 421.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.180675, 39.946479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-d35", "LOCATION_NAME": "Dipinto Guitars", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.970499, "LONGITUDE": -75.13019, "DATE_RANGE_START": 2024, "Total Visits": 96.0, "Total Visitors": 83.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 733.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.13019, 39.970499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.053982, "LONGITUDE": -75.193188, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 4.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3811.0, "Total Transactions": 219.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.16, "MEDIAN_SPEND_PER_CUSTOMER": 20.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193188, 40.053982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-229@628-pj2-mrk", "LOCATION_NAME": "Universal Dollar", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.006684, "LONGITUDE": -75.096267, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 762.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 577.0, "Total Transactions": 39.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.58, "MEDIAN_SPEND_PER_CUSTOMER": 11.58 }, "geometry": { "type": "Point", "coordinates": [ -75.096267, 40.006684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "LOCATION_NAME": "Thunderbird Salvage", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 141.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 563.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgm-hwk", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.009599, "LONGITUDE": -75.196284, "DATE_RANGE_START": 2024, "Total Visits": 821.0, "Total Visitors": 665.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1145.0, "Total Transactions": 87.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.98, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196284, 40.009599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "LOCATION_NAME": "Express Fuel", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026572, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 199.0, "POI_CBG": 421010302004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 34114.0, "Total Transactions": 1739.0, "Total Customers": 640.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.08, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035421, "LONGITUDE": -75.049037, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 5.0, "POI_CBG": 421010315012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3591.0, "Total Transactions": 130.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.46 }, "geometry": { "type": "Point", "coordinates": [ -75.049037, 40.035421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-227@628-p9k-2zf", "LOCATION_NAME": "Beer Center", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.103141, "LONGITUDE": -75.010331, "DATE_RANGE_START": 2024, "Total Visits": 617.0, "Total Visitors": 494.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 874.0, "Total Transactions": 46.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.25 }, "geometry": { "type": "Point", "coordinates": [ -75.010331, 40.103141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-fvf", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.0328, "LONGITUDE": -75.177311, "DATE_RANGE_START": 2024, "Total Visits": 333.0, "Total Visitors": 295.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5509.0, "Total Transactions": 126.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.99, "MEDIAN_SPEND_PER_CUSTOMER": 29.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177311, 40.0328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pj4-swk", "LOCATION_NAME": "Rodriguez Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995495, "LONGITUDE": -75.140993, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 63.0, "POI_CBG": 421010175002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 20.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.140993, 39.995495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2024, "Total Visits": 473.0, "Total Visitors": 298.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2210.0, "Total Transactions": 117.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.89, "MEDIAN_SPEND_PER_CUSTOMER": 11.91 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955163, "LONGITUDE": -75.168339, "DATE_RANGE_START": 2024, "Total Visits": 854.0, "Total Visitors": 512.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6702.0, "Total Transactions": 746.0, "Total Customers": 524.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.92, "MEDIAN_SPEND_PER_CUSTOMER": 9.57 }, "geometry": { "type": "Point", "coordinates": [ -75.168339, 39.955163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@63s-dvy-wrk", "LOCATION_NAME": "Philly Halal Food Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.954527, "LONGITUDE": -75.211575, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 91.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 251.0, "Total Spend": 111.0, "Total Transactions": 12.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.211575, 39.954527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.95427, "LONGITUDE": -75.201494, "DATE_RANGE_START": 2024, "Total Visits": 2150.0, "Total Visitors": 1315.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6461.0, "Total Transactions": 394.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.49, "MEDIAN_SPEND_PER_CUSTOMER": 19.61 }, "geometry": { "type": "Point", "coordinates": [ -75.201494, 39.95427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.006322, "LONGITUDE": -75.0995, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 14.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1405.0, "Total Transactions": 32.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.24, "MEDIAN_SPEND_PER_CUSTOMER": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.0995, 40.006322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-v2k", "LOCATION_NAME": "Original Village Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.107293, "LONGITUDE": -75.037623, "DATE_RANGE_START": 2024, "Total Visits": 233.0, "Total Visitors": 209.0, "POI_CBG": 421010357021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1113.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.16, "MEDIAN_SPEND_PER_CUSTOMER": 40.47 }, "geometry": { "type": "Point", "coordinates": [ -75.037623, 40.107293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "LOCATION_NAME": "Evo Brickoven Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 95.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 25.0, "Total Spend": 884.0, "Total Transactions": 33.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.38, "MEDIAN_SPEND_PER_CUSTOMER": 39.49 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p85-hkf", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071847, "LONGITUDE": -75.030442, "DATE_RANGE_START": 2024, "Total Visits": 1593.0, "Total Visitors": 923.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.97, "MEDIAN_SPEND_PER_CUSTOMER": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.030442, 40.071847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgg-b8v", "LOCATION_NAME": "Fingers & Wings Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001078, "LONGITUDE": -75.166601, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 72.0, "POI_CBG": 421010172013.0, "MEDIAN_DWELL": 37.0, "Total Spend": 1063.0, "Total Transactions": 36.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.4, "MEDIAN_SPEND_PER_CUSTOMER": 49.26 }, "geometry": { "type": "Point", "coordinates": [ -75.166601, 40.001078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.995094, "LONGITUDE": -75.095646, "DATE_RANGE_START": 2024, "Total Visits": 411.0, "Total Visitors": 291.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 248.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.38, "MEDIAN_SPEND_PER_CUSTOMER": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 39.995094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "LOCATION_NAME": "Buffalo Exchange", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.951062, "LONGITUDE": -75.166599, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2291.0, "Total Transactions": 72.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166599, 39.951062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "LOCATION_NAME": "Jomici Apothecary", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2024, "Total Visits": 326.0, "Total Visitors": 99.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 335.0, "Total Spend": 95.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.78, "MEDIAN_SPEND_PER_CUSTOMER": 36.14 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p72-hqz", "LOCATION_NAME": "Dagwood's Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05063, "LONGITUDE": -74.999822, "DATE_RANGE_START": 2024, "Total Visits": 225.0, "Total Visitors": 201.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 34.0, "Total Spend": 226.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.86, "MEDIAN_SPEND_PER_CUSTOMER": 85.86 }, "geometry": { "type": "Point", "coordinates": [ -74.999822, 40.05063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pgh-vcq", "LOCATION_NAME": "The Creperie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983041, "LONGITUDE": -75.154389, "DATE_RANGE_START": 2024, "Total Visits": 669.0, "Total Visitors": 288.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 52.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.3, "MEDIAN_SPEND_PER_CUSTOMER": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154389, 39.983041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9973, "LONGITUDE": -75.092737, "DATE_RANGE_START": 2024, "Total Visits": 1919.0, "Total Visitors": 1319.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7913.0, "Total Transactions": 407.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 18.86 }, "geometry": { "type": "Point", "coordinates": [ -75.092737, 39.9973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pmb-yqf", "LOCATION_NAME": "Vivi Bubble Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954838, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 180.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2369.0, "Total Transactions": 246.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.954838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "LOCATION_NAME": "No 1 Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 18.0, "Total Spend": 494.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.06, "MEDIAN_SPEND_PER_CUSTOMER": 19.16 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm3-zpv", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919286, "LONGITUDE": -75.159152, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 121.0, "POI_CBG": 421010041021.0, "MEDIAN_DWELL": 10.0, "Total Spend": 105.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.159152, 39.919286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "LOCATION_NAME": "Cafe La Maude", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2024, "Total Visits": 125.0, "Total Visitors": 125.0, "POI_CBG": 421010367002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 3260.0, "Total Transactions": 46.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.08, "MEDIAN_SPEND_PER_CUSTOMER": 60.96 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-fpv", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.056636, "LONGITUDE": -75.189574, "DATE_RANGE_START": 2024, "Total Visits": 1731.0, "Total Visitors": 1010.0, "POI_CBG": 421010388003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 110627.0, "Total Transactions": 3289.0, "Total Customers": 1384.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.24, "MEDIAN_SPEND_PER_CUSTOMER": 36.1 }, "geometry": { "type": "Point", "coordinates": [ -75.189574, 40.056636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-php-ygk", "LOCATION_NAME": "Stop One Food Market & Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.053727, "LONGITUDE": -75.155505, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 155.0, "POI_CBG": 421010277006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3615.0, "Total Transactions": 320.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.08, "MEDIAN_SPEND_PER_CUSTOMER": 13.39 }, "geometry": { "type": "Point", "coordinates": [ -75.155505, 40.053727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-p7q", "LOCATION_NAME": "Rsc", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.958926, "LONGITUDE": -75.143623, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 352.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 119.0, "Total Spend": 176.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143623, 39.958926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "LOCATION_NAME": "Sue's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946236, "LONGITUDE": -75.145477, "DATE_RANGE_START": 2024, "Total Visits": 502.0, "Total Visitors": 184.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 462.0, "Total Spend": 4777.0, "Total Transactions": 342.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.95, "MEDIAN_SPEND_PER_CUSTOMER": 28.09 }, "geometry": { "type": "Point", "coordinates": [ -75.145477, 39.946236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-223@628-pp5-cnq", "LOCATION_NAME": "Amancio Dollar Outlet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995089, "LONGITUDE": -75.115558, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 92.0, "POI_CBG": 421010178001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 63.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.75, "MEDIAN_SPEND_PER_CUSTOMER": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115558, 39.995089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj6-tvz", "LOCATION_NAME": "C & J Produce Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.044549, "LONGITUDE": -75.102417, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 154.0, "POI_CBG": 421010305021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.5, "MEDIAN_SPEND_PER_CUSTOMER": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102417, 40.044549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950972, "LONGITUDE": -75.198395, "DATE_RANGE_START": 2024, "Total Visits": 1051.0, "Total Visitors": 503.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8262.0, "Total Transactions": 916.0, "Total Customers": 573.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.198395, 39.950972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "LOCATION_NAME": "Charlie Was a Sinner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 174.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 9498.0, "Total Transactions": 125.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.1, "MEDIAN_SPEND_PER_CUSTOMER": 69.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@63s-dvp-bff", "LOCATION_NAME": "Total Beauty Supplies", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945299, "LONGITUDE": -75.238685, "DATE_RANGE_START": 2024, "Total Visits": 619.0, "Total Visitors": 359.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4810.0, "Total Transactions": 161.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.67, "MEDIAN_SPEND_PER_CUSTOMER": 25.04 }, "geometry": { "type": "Point", "coordinates": [ -75.238685, 39.945299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.008547, "LONGITUDE": -75.193814, "DATE_RANGE_START": 2024, "Total Visits": 111.0, "Total Visitors": 79.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 176.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.03, "MEDIAN_SPEND_PER_CUSTOMER": 34.03 }, "geometry": { "type": "Point", "coordinates": [ -75.193814, 40.008547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "LOCATION_NAME": "Eyes Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.94148, "LONGITUDE": -75.149374, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 237.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3090.0, "Total Transactions": 65.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.14, "MEDIAN_SPEND_PER_CUSTOMER": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.149374, 39.94148 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "LOCATION_NAME": "Liberty Time", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2024, "Total Visits": 1611.0, "Total Visitors": 1219.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 334.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.36, "MEDIAN_SPEND_PER_CUSTOMER": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2024, "Total Visits": 627.0, "Total Visitors": 445.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 296.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.45, "MEDIAN_SPEND_PER_CUSTOMER": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgj-cbk", "LOCATION_NAME": "Pazzo Pazzo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979011, "LONGITUDE": -75.161757, "DATE_RANGE_START": 2024, "Total Visits": 1407.0, "Total Visitors": 850.0, "POI_CBG": 421010147001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 1405.0, "Total Transactions": 63.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.07, "MEDIAN_SPEND_PER_CUSTOMER": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.161757, 39.979011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-mzf", "LOCATION_NAME": "Tir na nOg Irish Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.954415, "LONGITUDE": -75.16676, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 262.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 35.0, "Total Spend": 741.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.03, "MEDIAN_SPEND_PER_CUSTOMER": 30.03 }, "geometry": { "type": "Point", "coordinates": [ -75.16676, 39.954415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-225@628-p85-p35", "LOCATION_NAME": "Cafe Carmela", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05717, "LONGITUDE": -75.030373, "DATE_RANGE_START": 2024, "Total Visits": 251.0, "Total Visitors": 240.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 43.0, "Total Spend": 938.0, "Total Transactions": 20.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030373, 40.05717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.959622, "LONGITUDE": -75.218403, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010104004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2041.0, "Total Transactions": 92.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.04, "MEDIAN_SPEND_PER_CUSTOMER": 17.37 }, "geometry": { "type": "Point", "coordinates": [ -75.218403, 39.959622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "LOCATION_NAME": "P.C. Richard & Son", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.046246, "LONGITUDE": -75.059899, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 178.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 9.0, "Total Spend": 10589.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 150.0, "MEDIAN_SPEND_PER_CUSTOMER": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059899, 40.046246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2024, "Total Visits": 504.0, "Total Visitors": 303.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1778.0, "Total Transactions": 79.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.39, "MEDIAN_SPEND_PER_CUSTOMER": 23.28 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-xbk", "LOCATION_NAME": "Gear N Up", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.985537, "LONGITUDE": -75.132208, "DATE_RANGE_START": 2024, "Total Visits": 3736.0, "Total Visitors": 1398.0, "POI_CBG": 421010163004.0, "MEDIAN_DWELL": 40.0, "Total Spend": 825.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.0, "MEDIAN_SPEND_PER_CUSTOMER": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132208, 39.985537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "LOCATION_NAME": "Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950042, "LONGITUDE": -75.162364, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 29.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 113726.0, "Total Transactions": 3017.0, "Total Customers": 1909.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.29, "MEDIAN_SPEND_PER_CUSTOMER": 39.38 }, "geometry": { "type": "Point", "coordinates": [ -75.162364, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pm9-wkz", "LOCATION_NAME": "Viva Pizzas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948646, "LONGITUDE": -75.144734, "DATE_RANGE_START": 2024, "Total Visits": 2309.0, "Total Visitors": 1785.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 326.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 21.41 }, "geometry": { "type": "Point", "coordinates": [ -75.144734, 39.948646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "LOCATION_NAME": "Lebel Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 118.0, "POI_CBG": 421010112003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2313.0, "Total Transactions": 90.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.14, "MEDIAN_SPEND_PER_CUSTOMER": 28.55 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "LOCATION_NAME": "Pho Don", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 128.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 102.0, "Total Spend": 1158.0, "Total Transactions": 58.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.08, "MEDIAN_SPEND_PER_CUSTOMER": 24.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-yd9", "LOCATION_NAME": "Kungfu Hotpot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954413, "LONGITUDE": -75.156594, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6629.0, "Total Transactions": 65.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.38, "MEDIAN_SPEND_PER_CUSTOMER": 100.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156594, 39.954413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2024, "Total Visits": 644.0, "Total Visitors": 413.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1608.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.19, "MEDIAN_SPEND_PER_CUSTOMER": 22.35 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-3wk", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.920309, "LONGITUDE": -75.186404, "DATE_RANGE_START": 2024, "Total Visits": 1035.0, "Total Visitors": 642.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2376.0, "Total Transactions": 70.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.96, "MEDIAN_SPEND_PER_CUSTOMER": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.186404, 39.920309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-qxq", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.992514, "LONGITUDE": -75.100052, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 321.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6399.0, "Total Transactions": 140.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.25, "MEDIAN_SPEND_PER_CUSTOMER": 37.73 }, "geometry": { "type": "Point", "coordinates": [ -75.100052, 39.992514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-dvz", "LOCATION_NAME": "Pietro Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.912309, "LONGITUDE": -75.174217, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 556.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.6, "MEDIAN_SPEND_PER_CUSTOMER": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174217, 39.912309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p9q-yn5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.088065, "LONGITUDE": -75.037683, "DATE_RANGE_START": 2024, "Total Visits": 1058.0, "Total Visitors": 865.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 70.0, "Total Spend": 257.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.33, "MEDIAN_SPEND_PER_CUSTOMER": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.037683, 40.088065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-nkf", "LOCATION_NAME": "Dave & Buster's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.956234, "LONGITUDE": -75.138549, "DATE_RANGE_START": 2024, "Total Visits": 2865.0, "Total Visitors": 2089.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 118.0, "Total Spend": 5402.0, "Total Transactions": 79.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.0, "MEDIAN_SPEND_PER_CUSTOMER": 37.19 }, "geometry": { "type": "Point", "coordinates": [ -75.138549, 39.956234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "LOCATION_NAME": "Anastasi Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 259.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7323.0, "Total Transactions": 157.0, "Total Customers": 121.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.29, "MEDIAN_SPEND_PER_CUSTOMER": 36.86 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-td9", "LOCATION_NAME": "Jamaica Way", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.90332, "LONGITUDE": -75.240643, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 170.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 879.0, "Total Transactions": 38.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.240643, 39.90332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "LOCATION_NAME": "Adobe Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": null, "Total Spend": 1164.0, "Total Transactions": 33.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.8, "MEDIAN_SPEND_PER_CUSTOMER": 40.84 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.923624, "LONGITUDE": -75.139475, "DATE_RANGE_START": 2024, "Total Visits": 814.0, "Total Visitors": 579.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4989.0, "Total Transactions": 109.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.99, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.139475, 39.923624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "LOCATION_NAME": "Shing Kee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2024, "Total Visits": 196.0, "Total Visitors": 133.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1155.0, "Total Transactions": 21.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.07, "MEDIAN_SPEND_PER_CUSTOMER": 52.47 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "LOCATION_NAME": "China City Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 153.0, "POI_CBG": 421010311011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1145.0, "Total Transactions": 46.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.75, "MEDIAN_SPEND_PER_CUSTOMER": 24.75 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-52k", "LOCATION_NAME": "Indian Sizzler", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959458, "LONGITUDE": -75.194962, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 125.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 515.0, "Total Transactions": 25.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 24.58 }, "geometry": { "type": "Point", "coordinates": [ -75.194962, 39.959458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "LOCATION_NAME": "The Shake Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 241.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8448.0, "Total Transactions": 129.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.22, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2024, "Total Visits": 789.0, "Total Visitors": 660.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7020.0, "Total Transactions": 561.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.08, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pj8-rp9", "LOCATION_NAME": "Kid City", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.032633, "LONGITUDE": -75.101129, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4506.0, "Total Transactions": 107.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.76, "MEDIAN_SPEND_PER_CUSTOMER": 33.71 }, "geometry": { "type": "Point", "coordinates": [ -75.101129, 40.032633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm9-zmk", "LOCATION_NAME": "Dudes Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941935, "LONGITUDE": -75.153683, "DATE_RANGE_START": 2024, "Total Visits": 774.0, "Total Visitors": 669.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2509.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 595.0, "MEDIAN_SPEND_PER_CUSTOMER": 595.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 39.941935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "LOCATION_NAME": "Not Just Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 87.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 433.0, "Total Spend": 315.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.91, "MEDIAN_SPEND_PER_CUSTOMER": 19.37 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2024, "Total Visits": 1577.0, "Total Visitors": 1285.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10974.0, "Total Transactions": 852.0, "Total Customers": 496.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.88, "MEDIAN_SPEND_PER_CUSTOMER": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-5mk", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961206, "LONGITUDE": -75.1437, "DATE_RANGE_START": 2024, "Total Visits": 448.0, "Total Visitors": 378.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1755.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.64, "MEDIAN_SPEND_PER_CUSTOMER": 72.07 }, "geometry": { "type": "Point", "coordinates": [ -75.1437, 39.961206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "LOCATION_NAME": "New Pizza Villa", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 55.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 11.0, "Total Spend": 785.0, "Total Transactions": 33.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.98, "MEDIAN_SPEND_PER_CUSTOMER": 22.63 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-skf", "LOCATION_NAME": "Elixr Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949308, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2024, "Total Visits": 2043.0, "Total Visitors": 1291.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 5.0, "Total Spend": 126.0, "Total Transactions": 17.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.32, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-zxq", "LOCATION_NAME": "Scoop Deville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941848, "LONGITUDE": -75.152208, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 576.0, "Total Transactions": 50.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.88, "MEDIAN_SPEND_PER_CUSTOMER": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.152208, 39.941848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2024, "Total Visits": 320.0, "Total Visitors": 237.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 465.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.04, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j7q", "LOCATION_NAME": "Boyds Philadelphia", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951667, "LONGITUDE": -75.171279, "DATE_RANGE_START": 2024, "Total Visits": 370.0, "Total Visitors": 175.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 307.0, "Total Spend": 6091.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 143.0, "MEDIAN_SPEND_PER_CUSTOMER": 256.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171279, 39.951667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "266-222@628-pm4-sh5", "LOCATION_NAME": "Ramayana Store", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.924377, "LONGITUDE": -75.159369, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 225.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 137.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159369, 39.924377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "LOCATION_NAME": "Nom Nom Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2024, "Total Visits": 282.0, "Total Visitors": 224.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2098.0, "Total Transactions": 54.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.61, "MEDIAN_SPEND_PER_CUSTOMER": 31.63 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-gp9", "LOCATION_NAME": "Jay's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94661, "LONGITUDE": -75.16252, "DATE_RANGE_START": 2024, "Total Visits": 412.0, "Total Visitors": 300.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 114.0, "Total Transactions": 13.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.9, "MEDIAN_SPEND_PER_CUSTOMER": 43.32 }, "geometry": { "type": "Point", "coordinates": [ -75.16252, 39.94661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.902552, "LONGITUDE": -75.240445, "DATE_RANGE_START": 2024, "Total Visits": 405.0, "Total Visitors": 305.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8854.0, "Total Transactions": 226.0, "Total Customers": 174.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.2, "MEDIAN_SPEND_PER_CUSTOMER": 31.22 }, "geometry": { "type": "Point", "coordinates": [ -75.240445, 39.902552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-224@628-pm9-whq", "LOCATION_NAME": "Hangry Joe's Hot Chicken", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949932, "LONGITUDE": -75.145867, "DATE_RANGE_START": 2024, "Total Visits": 748.0, "Total Visitors": 673.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4313.0, "Total Transactions": 245.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.07, "MEDIAN_SPEND_PER_CUSTOMER": 16.42 }, "geometry": { "type": "Point", "coordinates": [ -75.145867, 39.949932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "LOCATION_NAME": "Wadsworth Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3930.0, "Total Transactions": 165.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.54, "MEDIAN_SPEND_PER_CUSTOMER": 20.73 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg2-2zf", "LOCATION_NAME": "The Goat's Beard", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023836, "LONGITUDE": -75.220118, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 183.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 25.0, "Total Spend": 6189.0, "Total Transactions": 118.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.38, "MEDIAN_SPEND_PER_CUSTOMER": 44.64 }, "geometry": { "type": "Point", "coordinates": [ -75.220118, 40.023836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "LOCATION_NAME": "Vietnam Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2024, "Total Visits": 317.0, "Total Visitors": 282.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 52.0, "Total Spend": 739.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.54, "MEDIAN_SPEND_PER_CUSTOMER": 40.54 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pm4-pn5", "LOCATION_NAME": "Charlie's Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.93743, "LONGITUDE": -75.158033, "DATE_RANGE_START": 2024, "Total Visits": 491.0, "Total Visitors": 408.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 228.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158033, 39.93743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "LOCATION_NAME": "Liberty Smokes", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.912433, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2024, "Total Visits": 524.0, "Total Visitors": 217.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 179.0, "Total Spend": 774.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.67, "MEDIAN_SPEND_PER_CUSTOMER": 34.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.912433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "255-222@628-pm9-y9z", "LOCATION_NAME": "Milkboy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941731, "LONGITUDE": -75.1493, "DATE_RANGE_START": 2024, "Total Visits": 482.0, "Total Visitors": 453.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2348.0, "Total Transactions": 57.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.4, "MEDIAN_SPEND_PER_CUSTOMER": 43.69 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.941731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 308.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 11617.0, "Total Transactions": 843.0, "Total Customers": 475.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.47 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "LOCATION_NAME": "The Tasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2024, "Total Visits": 79.0, "Total Visitors": 71.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2901.0, "Total Transactions": 111.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.21, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "LOCATION_NAME": "Frieda", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 158.0, "POI_CBG": 421010010023.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2865.0, "Total Transactions": 92.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.6, "MEDIAN_SPEND_PER_CUSTOMER": 32.95 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phz-z4v", "LOCATION_NAME": "BooksRun com", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 40.005848, "LONGITUDE": -75.117861, "DATE_RANGE_START": 2024, "Total Visits": 269.0, "Total Visitors": 107.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 495.0, "Total Spend": 6309.0, "Total Transactions": 146.0, "Total Customers": 121.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.47, "MEDIAN_SPEND_PER_CUSTOMER": 39.35 }, "geometry": { "type": "Point", "coordinates": [ -75.117861, 40.005848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmc-2ff", "LOCATION_NAME": "Vox Populi", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.958325, "LONGITUDE": -75.156612, "DATE_RANGE_START": 2024, "Total Visits": 219.0, "Total Visitors": 176.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 95.0, "Total Spend": 163.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156612, 39.958325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj9-54v", "LOCATION_NAME": "Smooth Like That", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.040013, "LONGITUDE": -75.144022, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 219.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2406.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 134.99, "MEDIAN_SPEND_PER_CUSTOMER": 134.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144022, 40.040013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 180.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1363.0, "Total Transactions": 95.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.44, "MEDIAN_SPEND_PER_CUSTOMER": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pm9-wp9", "LOCATION_NAME": "Charlie's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950465, "LONGITUDE": -75.146104, "DATE_RANGE_START": 2024, "Total Visits": 1195.0, "Total Visitors": 972.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3575.0, "Total Transactions": 312.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.146104, 39.950465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "LOCATION_NAME": "Hair Gallery", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2024, "Total Visits": 1657.0, "Total Visitors": 993.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 5474.0, "Total Transactions": 196.0, "Total Customers": 170.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "LOCATION_NAME": "Produce Junction", "TOP_CATEGORY": "Florists", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2024, "Total Visits": 220.0, "Total Visitors": 133.0, "POI_CBG": 421010120001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 464.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgf-33q", "LOCATION_NAME": "Dig Inn", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953554, "LONGITUDE": -75.195062, "DATE_RANGE_START": 2024, "Total Visits": 3740.0, "Total Visitors": 1981.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 117.0, "Total Spend": 232.0, "Total Transactions": 14.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.06, "MEDIAN_SPEND_PER_CUSTOMER": 15.61 }, "geometry": { "type": "Point", "coordinates": [ -75.195062, 39.953554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "LOCATION_NAME": "Smiley's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 176.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 922.0, "Total Transactions": 41.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.4, "MEDIAN_SPEND_PER_CUSTOMER": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pp4-qmk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978751, "LONGITUDE": -75.119167, "DATE_RANGE_START": 2024, "Total Visits": 527.0, "Total Visitors": 482.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 160.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.83, "MEDIAN_SPEND_PER_CUSTOMER": 16.41 }, "geometry": { "type": "Point", "coordinates": [ -75.119167, 39.978751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pg4-2p9", "LOCATION_NAME": "Bargain Thrift Center", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.031821, "LONGITUDE": -75.167835, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 162.0, "POI_CBG": 421010245004.0, "MEDIAN_DWELL": 44.0, "Total Spend": 221.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.167835, 40.031821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.015674, "LONGITUDE": -75.137715, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010197004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2363.0, "Total Transactions": 45.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.86, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.137715, 40.015674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-233@628-pmf-jd9", "LOCATION_NAME": "Victoria Secret", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951702, "LONGITUDE": -75.168166, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 211.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.16, "MEDIAN_SPEND_PER_CUSTOMER": 80.16 }, "geometry": { "type": "Point", "coordinates": [ -75.168166, 39.951702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "LOCATION_NAME": "Medical Tower Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.948045, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2024, "Total Visits": 1089.0, "Total Visitors": 712.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2972.0, "Total Transactions": 92.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.03 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.948045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-68v", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.050558, "LONGITUDE": -75.061669, "DATE_RANGE_START": 2024, "Total Visits": 1893.0, "Total Visitors": 1085.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 89288.0, "Total Transactions": 2172.0, "Total Customers": 1040.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.45, "MEDIAN_SPEND_PER_CUSTOMER": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.061669, 40.050558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093159, "LONGITUDE": -75.032892, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 904.0, "Total Transactions": 28.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.6, "MEDIAN_SPEND_PER_CUSTOMER": 21.54 }, "geometry": { "type": "Point", "coordinates": [ -75.032892, 40.093159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-223@628-pmb-5mk", "LOCATION_NAME": "Paper On Pine", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.949779, "LONGITUDE": -75.162653, "DATE_RANGE_START": 2024, "Total Visits": 4462.0, "Total Visitors": 2680.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 565.0, "Total Transactions": 33.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.58, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.162653, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pj4-y35", "LOCATION_NAME": "Checo Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.007608, "LONGITUDE": -75.14884, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 138.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 105.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14884, 40.007608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "LOCATION_NAME": "A Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950401, "LONGITUDE": -75.170434, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5060.0, "Total Transactions": 315.0, "Total Customers": 259.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.93, "MEDIAN_SPEND_PER_CUSTOMER": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.170434, 39.950401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-224@628-pg3-x89", "LOCATION_NAME": "Dynamic Dollar", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.036919, "LONGITUDE": -75.174629, "DATE_RANGE_START": 2024, "Total Visits": 646.0, "Total Visitors": 430.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 479.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.5, "MEDIAN_SPEND_PER_CUSTOMER": 181.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174629, 40.036919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-yqf", "LOCATION_NAME": "Cily Chicken Rice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955428, "LONGITUDE": -75.155481, "DATE_RANGE_START": 2024, "Total Visits": 19620.0, "Total Visitors": 13494.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 260.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.87, "MEDIAN_SPEND_PER_CUSTOMER": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -75.155481, 39.955428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2024, "Total Visits": 1525.0, "Total Visitors": 1205.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 9961.0, "Total Transactions": 567.0, "Total Customers": 477.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.93, "MEDIAN_SPEND_PER_CUSTOMER": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954785, "LONGITUDE": -75.20229, "DATE_RANGE_START": 2024, "Total Visits": 375.0, "Total Visitors": 258.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6991.0, "Total Transactions": 1035.0, "Total Customers": 400.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.71, "MEDIAN_SPEND_PER_CUSTOMER": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.20229, 39.954785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnw-nnq", "LOCATION_NAME": "Kung Fu Necktie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.970272, "LONGITUDE": -75.135925, "DATE_RANGE_START": 2024, "Total Visits": 516.0, "Total Visitors": 440.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 731.0, "Total Transactions": 29.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.5, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 39.970272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 209.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 537.0, "Total Transactions": 37.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.83, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-68v", "LOCATION_NAME": "Winkel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947806, "LONGITUDE": -75.160351, "DATE_RANGE_START": 2024, "Total Visits": 495.0, "Total Visitors": 388.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4735.0, "Total Transactions": 88.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.22, "MEDIAN_SPEND_PER_CUSTOMER": 57.26 }, "geometry": { "type": "Point", "coordinates": [ -75.160351, 39.947806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-php-y5f", "LOCATION_NAME": "Clark's Tires", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052584, "LONGITUDE": -75.157104, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 20.0, "POI_CBG": 421010277006.0, "MEDIAN_DWELL": null, "Total Spend": 99.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157104, 40.052584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "LOCATION_NAME": "RIM Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 171.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 689.0, "Total Transactions": 38.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089384, "LONGITUDE": -74.964343, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7377.0, "Total Transactions": 611.0, "Total Customers": 311.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.15, "MEDIAN_SPEND_PER_CUSTOMER": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -74.964343, 40.089384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2024, "Total Visits": 571.0, "Total Visitors": 392.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3680.0, "Total Transactions": 442.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.58, "MEDIAN_SPEND_PER_CUSTOMER": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-dgk", "LOCATION_NAME": "AL JANA Halal Food Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.041135, "LONGITUDE": -75.06532, "DATE_RANGE_START": 2024, "Total Visits": 344.0, "Total Visitors": 197.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 154.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06532, 40.041135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.059864, "LONGITUDE": -75.166534, "DATE_RANGE_START": 2024, "Total Visits": 721.0, "Total Visitors": 600.0, "POI_CBG": 421010389002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2753.0, "Total Transactions": 84.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.39, "MEDIAN_SPEND_PER_CUSTOMER": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166534, 40.059864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pmf-sh5", "LOCATION_NAME": "The Print Center", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.948081, "LONGITUDE": -75.168567, "DATE_RANGE_START": 2024, "Total Visits": 411.0, "Total Visitors": 352.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 5.0, "Total Spend": 31.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.6, "MEDIAN_SPEND_PER_CUSTOMER": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168567, 39.948081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "LOCATION_NAME": "Frankford Hall", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2024, "Total Visits": 662.0, "Total Visitors": 482.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 30930.0, "Total Transactions": 1110.0, "Total Customers": 768.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.49 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-pn5", "LOCATION_NAME": "U Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954979, "LONGITUDE": -75.202634, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 165.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2178.0, "Total Transactions": 59.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 33.56 }, "geometry": { "type": "Point", "coordinates": [ -75.202634, 39.954979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-9cq", "LOCATION_NAME": "Fu Wah Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948295, "LONGITUDE": -75.217025, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 7751.0, "Total Transactions": 384.0, "Total Customers": 259.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.56, "MEDIAN_SPEND_PER_CUSTOMER": 24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.217025, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-vcq", "LOCATION_NAME": "The Dolphin Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.930579, "LONGITUDE": -75.167937, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 197.0, "POI_CBG": 421010029002.0, "MEDIAN_DWELL": 300.0, "Total Spend": 116.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.7, "MEDIAN_SPEND_PER_CUSTOMER": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167937, 39.930579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "LOCATION_NAME": "Royal Boucherie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948704, "LONGITUDE": -75.144309, "DATE_RANGE_START": 2024, "Total Visits": 673.0, "Total Visitors": 579.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 1403.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.72, "MEDIAN_SPEND_PER_CUSTOMER": 71.72 }, "geometry": { "type": "Point", "coordinates": [ -75.144309, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "LOCATION_NAME": "Axis Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95523, "LONGITUDE": -75.194652, "DATE_RANGE_START": 2024, "Total Visits": 373.0, "Total Visitors": 300.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1988.0, "Total Transactions": 153.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.92, "MEDIAN_SPEND_PER_CUSTOMER": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.194652, 39.95523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "LOCATION_NAME": "Pitchers Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.025101, "LONGITUDE": -75.223018, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 7204.0, "Total Transactions": 292.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.45, "MEDIAN_SPEND_PER_CUSTOMER": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223018, 40.025101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992471, "LONGITUDE": -75.101239, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6414.0, "Total Transactions": 133.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.11, "MEDIAN_SPEND_PER_CUSTOMER": 53.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101239, 39.992471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm9-649", "LOCATION_NAME": "HomeGrown Coffee and Creations", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919907, "LONGITUDE": -75.173383, "DATE_RANGE_START": 2024, "Total Visits": 74.0, "Total Visitors": 74.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": null, "Total Spend": 46.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.17, "MEDIAN_SPEND_PER_CUSTOMER": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.173383, 39.919907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-6x5", "LOCATION_NAME": "Harp & Crown", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950579, "LONGITUDE": -75.166788, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5799.0, "Total Transactions": 57.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.88, "MEDIAN_SPEND_PER_CUSTOMER": 88.38 }, "geometry": { "type": "Point", "coordinates": [ -75.166788, 39.950579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "LOCATION_NAME": "Hadramout", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2024, "Total Visits": 147.0, "Total Visitors": 45.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 1129.0, "Total Spend": 1453.0, "Total Transactions": 45.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.78, "MEDIAN_SPEND_PER_CUSTOMER": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-vpv", "LOCATION_NAME": "Urban Saloon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967182, "LONGITUDE": -75.172904, "DATE_RANGE_START": 2024, "Total Visits": 558.0, "Total Visitors": 269.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 29.0, "Total Spend": 29433.0, "Total Transactions": 513.0, "Total Customers": 366.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.78, "MEDIAN_SPEND_PER_CUSTOMER": 52.85 }, "geometry": { "type": "Point", "coordinates": [ -75.172904, 39.967182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pp4-r49", "LOCATION_NAME": "Pet Supplies Plus", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.974037, "LONGITUDE": -75.12038, "DATE_RANGE_START": 2024, "Total Visits": 241.0, "Total Visitors": 187.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 25359.0, "Total Transactions": 591.0, "Total Customers": 399.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.13, "MEDIAN_SPEND_PER_CUSTOMER": 50.03 }, "geometry": { "type": "Point", "coordinates": [ -75.12038, 39.974037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgh-vs5", "LOCATION_NAME": "Honey Truck", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982937, "LONGITUDE": -75.15332, "DATE_RANGE_START": 2024, "Total Visits": 669.0, "Total Visitors": 288.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 53.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.15332, 39.982937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg8-d5f", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983854, "LONGITUDE": -75.184956, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 96.0, "POI_CBG": 421010151011.0, "MEDIAN_DWELL": 39.0, "Total Spend": 73.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.58, "MEDIAN_SPEND_PER_CUSTOMER": 8.58 }, "geometry": { "type": "Point", "coordinates": [ -75.184956, 39.983854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "LOCATION_NAME": "Evergreen Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949185, "LONGITUDE": -75.147628, "DATE_RANGE_START": 2024, "Total Visits": 714.0, "Total Visitors": 382.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 2906.0, "Total Transactions": 298.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.98, "MEDIAN_SPEND_PER_CUSTOMER": 13.84 }, "geometry": { "type": "Point", "coordinates": [ -75.147628, 39.949185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2024, "Total Visits": 937.0, "Total Visitors": 482.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8506.0, "Total Transactions": 307.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 22.42 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.030253, "LONGITUDE": -75.101415, "DATE_RANGE_START": 2024, "Total Visits": 806.0, "Total Visitors": 635.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 43340.0, "Total Transactions": 1003.0, "Total Customers": 827.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.95, "MEDIAN_SPEND_PER_CUSTOMER": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.101415, 40.030253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2024, "Total Visits": 4363.0, "Total Visitors": 2877.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4820.0, "Total Transactions": 63.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.77, "MEDIAN_SPEND_PER_CUSTOMER": 61.32 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2024, "Total Visits": 2279.0, "Total Visitors": 1474.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 70754.0, "Total Transactions": 731.0, "Total Customers": 411.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.66, "MEDIAN_SPEND_PER_CUSTOMER": 50.72 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8f-djv", "LOCATION_NAME": "Neighborhood Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.016721, "LONGITUDE": -75.084303, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 82.0, "POI_CBG": 421010300006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 765.0, "Total Transactions": 107.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.25, "MEDIAN_SPEND_PER_CUSTOMER": 5.75 }, "geometry": { "type": "Point", "coordinates": [ -75.084303, 40.016721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-y9z", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954522, "LONGITUDE": -75.184483, "DATE_RANGE_START": 2024, "Total Visits": 1037.0, "Total Visitors": 578.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 90.0, "Total Spend": 12732.0, "Total Transactions": 1014.0, "Total Customers": 660.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.98, "MEDIAN_SPEND_PER_CUSTOMER": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.184483, 39.954522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954573, "LONGITUDE": -75.19487, "DATE_RANGE_START": 2024, "Total Visits": 573.0, "Total Visitors": 292.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 257.0, "Total Spend": 5975.0, "Total Transactions": 596.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.65, "MEDIAN_SPEND_PER_CUSTOMER": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.19487, 39.954573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "LOCATION_NAME": "Girard Meat Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.972904, "LONGITUDE": -75.217558, "DATE_RANGE_START": 2024, "Total Visits": 208.0, "Total Visitors": 184.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4488.0, "Total Transactions": 107.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.98, "MEDIAN_SPEND_PER_CUSTOMER": 24.51 }, "geometry": { "type": "Point", "coordinates": [ -75.217558, 39.972904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvt-zzz", "LOCATION_NAME": "Island Food Market Corp", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.917141, "LONGITUDE": -75.246113, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 88.0, "POI_CBG": 421010063004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.0, "MEDIAN_SPEND_PER_CUSTOMER": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246113, 39.917141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pmb-6hq", "LOCATION_NAME": "Top Tomato Bar & Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949587, "LONGITUDE": -75.158979, "DATE_RANGE_START": 2024, "Total Visits": 5134.0, "Total Visitors": 2192.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 411.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.6, "MEDIAN_SPEND_PER_CUSTOMER": 42.96 }, "geometry": { "type": "Point", "coordinates": [ -75.158979, 39.949587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-t35", "LOCATION_NAME": "Brexel Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960745, "LONGITUDE": -75.189369, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 361.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 91.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.73, "MEDIAN_SPEND_PER_CUSTOMER": 34.73 }, "geometry": { "type": "Point", "coordinates": [ -75.189369, 39.960745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2024, "Total Visits": 989.0, "Total Visitors": 733.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10343.0, "Total Transactions": 507.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.9125, "LONGITUDE": -75.156968, "DATE_RANGE_START": 2024, "Total Visits": 74.0, "Total Visitors": 58.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2282.0, "Total Transactions": 62.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156968, 39.9125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030388, "LONGITUDE": -75.181136, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 33.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 961.0, "Total Transactions": 53.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.1, "MEDIAN_SPEND_PER_CUSTOMER": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181136, 40.030388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "LOCATION_NAME": "Just To Serve You", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010102001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 796.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.61, "MEDIAN_SPEND_PER_CUSTOMER": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2024, "Total Visits": 1153.0, "Total Visitors": 949.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15095.0, "Total Transactions": 1257.0, "Total Customers": 720.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.14, "MEDIAN_SPEND_PER_CUSTOMER": 13.89 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067938, "LONGITUDE": -75.006861, "DATE_RANGE_START": 2024, "Total Visits": 1143.0, "Total Visitors": 736.0, "POI_CBG": 421010348032.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1429.0, "Total Transactions": 178.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 8.06 }, "geometry": { "type": "Point", "coordinates": [ -75.006861, 40.067938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-223@628-pfz-bzf", "LOCATION_NAME": "Yanako", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025622, "LONGITUDE": -75.223563, "DATE_RANGE_START": 2024, "Total Visits": 161.0, "Total Visitors": 161.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2924.0, "Total Transactions": 37.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.1, "MEDIAN_SPEND_PER_CUSTOMER": 78.41 }, "geometry": { "type": "Point", "coordinates": [ -75.223563, 40.025622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 90.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 770.0, "Total Transactions": 42.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.68, "MEDIAN_SPEND_PER_CUSTOMER": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgf-ty9", "LOCATION_NAME": "Rocky Steps", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964917, "LONGITUDE": -75.180035, "DATE_RANGE_START": 2024, "Total Visits": 147.0, "Total Visitors": 146.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1063.0, "Total Transactions": 37.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180035, 39.964917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2024, "Total Visits": 902.0, "Total Visitors": 724.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13380.0, "Total Transactions": 1058.0, "Total Customers": 610.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.11, "MEDIAN_SPEND_PER_CUSTOMER": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "LOCATION_NAME": "Bassetts Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2024, "Total Visits": 294.0, "Total Visitors": 265.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7260.0, "Total Transactions": 534.0, "Total Customers": 475.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.93, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phn-9fz", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079281, "LONGITUDE": -75.174174, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 219.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.75, "MEDIAN_SPEND_PER_CUSTOMER": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174174, 40.079281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnx-575", "LOCATION_NAME": "Fuzion Grill and Social Club", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.959174, "LONGITUDE": -75.142246, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 197.0, "Total Spend": 42442.0, "Total Transactions": 887.0, "Total Customers": 548.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.95, "MEDIAN_SPEND_PER_CUSTOMER": 36.69 }, "geometry": { "type": "Point", "coordinates": [ -75.142246, 39.959174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "LOCATION_NAME": "New Star Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 359.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 12.0, "Total Spend": 642.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.59, "MEDIAN_SPEND_PER_CUSTOMER": 17.73 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm6-jn5", "LOCATION_NAME": "Kyoto Japan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921763, "LONGITUDE": -75.14657, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 233.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1297.0, "Total Transactions": 74.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.6, "MEDIAN_SPEND_PER_CUSTOMER": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.14657, 39.921763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pmb-7t9", "LOCATION_NAME": "Jeans Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949048, "LONGITUDE": -75.163664, "DATE_RANGE_START": 2024, "Total Visits": 5537.0, "Total Visitors": 3636.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3367.0, "Total Transactions": 237.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 16.87 }, "geometry": { "type": "Point", "coordinates": [ -75.163664, 39.949048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010119001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 627.0, "Total Transactions": 24.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.01, "MEDIAN_SPEND_PER_CUSTOMER": 28.67 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "LOCATION_NAME": "Cafe Square One", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948818, "LONGITUDE": -75.146097, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 217.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2810.0, "Total Transactions": 179.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 16.52 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 39.948818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969384, "LONGITUDE": -75.159456, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 157.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4105.0, "Total Transactions": 495.0, "Total Customers": 287.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 8.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159456, 39.969384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2024, "Total Visits": 1725.0, "Total Visitors": 1045.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1032.0, "Total Transactions": 61.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.68, "MEDIAN_SPEND_PER_CUSTOMER": 11.38 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026951, "LONGITUDE": -75.1112, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010292001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 223.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.63, "MEDIAN_SPEND_PER_CUSTOMER": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.1112, 40.026951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "LOCATION_NAME": "Anthropologie", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950352, "LONGITUDE": -75.170778, "DATE_RANGE_START": 2024, "Total Visits": 2509.0, "Total Visitors": 2009.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 833037.0, "Total Transactions": 6218.0, "Total Customers": 3955.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.8, "MEDIAN_SPEND_PER_CUSTOMER": 111.22 }, "geometry": { "type": "Point", "coordinates": [ -75.170778, 39.950352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.918084, "LONGITUDE": -75.188913, "DATE_RANGE_START": 2024, "Total Visits": 678.0, "Total Visitors": 415.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 9993.0, "Total Transactions": 209.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.63, "MEDIAN_SPEND_PER_CUSTOMER": 50.2 }, "geometry": { "type": "Point", "coordinates": [ -75.188913, 39.918084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-22t@628-pgb-k75", "LOCATION_NAME": "Rock N' Rolls", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 39.970765, "LONGITUDE": -75.15777, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 304.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 609.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.96, "MEDIAN_SPEND_PER_CUSTOMER": 28.38 }, "geometry": { "type": "Point", "coordinates": [ -75.15777, 39.970765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-pvz", "LOCATION_NAME": "Midnight Iris", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.945191, "LONGITUDE": -75.170462, "DATE_RANGE_START": 2024, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": null, "Total Spend": 590.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.74, "MEDIAN_SPEND_PER_CUSTOMER": 50.26 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2024, "Total Visits": 358.0, "Total Visitors": 304.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7898.0, "Total Transactions": 496.0, "Total Customers": 374.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.22, "MEDIAN_SPEND_PER_CUSTOMER": 15.29 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pmf-mrk", "LOCATION_NAME": "Gateway Newstand", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.952541, "LONGITUDE": -75.167892, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 513.0, "Total Transactions": 75.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.25, "MEDIAN_SPEND_PER_CUSTOMER": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.167892, 39.952541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "LOCATION_NAME": "Yummy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954445, "LONGITUDE": -75.170031, "DATE_RANGE_START": 2024, "Total Visits": 2503.0, "Total Visitors": 1519.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 939.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.79, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170031, 39.954445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "LOCATION_NAME": "Dollar Mart", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2024, "Total Visits": 629.0, "Total Visitors": 420.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1920.0, "Total Transactions": 113.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.81, "MEDIAN_SPEND_PER_CUSTOMER": 12.67 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2024, "Total Visits": 427.0, "Total Visitors": 359.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5023.0, "Total Transactions": 349.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.07, "MEDIAN_SPEND_PER_CUSTOMER": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "LOCATION_NAME": "Charley's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2024, "Total Visits": 958.0, "Total Visitors": 893.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1932.0, "Total Transactions": 120.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.84, "MEDIAN_SPEND_PER_CUSTOMER": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-6p9", "LOCATION_NAME": "W Hotels", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951547, "LONGITUDE": -75.165268, "DATE_RANGE_START": 2024, "Total Visits": 80.0, "Total Visitors": 55.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 30005.0, "Total Transactions": 101.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 146.97, "MEDIAN_SPEND_PER_CUSTOMER": 161.74 }, "geometry": { "type": "Point", "coordinates": [ -75.165268, 39.951547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "LOCATION_NAME": "Hunan Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": null, "Total Spend": 2426.0, "Total Transactions": 146.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-rp9", "LOCATION_NAME": "Sunrise Breakfast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.066142, "LONGITUDE": -75.158748, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2611.0, "Total Transactions": 141.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.9, "MEDIAN_SPEND_PER_CUSTOMER": 26.76 }, "geometry": { "type": "Point", "coordinates": [ -75.158748, 40.066142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7v-f2k", "LOCATION_NAME": "Bob's Discount Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.051401, "LONGITUDE": -75.065206, "DATE_RANGE_START": 2024, "Total Visits": 1374.0, "Total Visitors": 1081.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 10138.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 950.46, "MEDIAN_SPEND_PER_CUSTOMER": 950.46 }, "geometry": { "type": "Point", "coordinates": [ -75.065206, 40.051401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-225@628-pgb-8y9", "LOCATION_NAME": "Parkway Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967017, "LONGITUDE": -75.177953, "DATE_RANGE_START": 2024, "Total Visits": 1342.0, "Total Visitors": 710.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 154.0, "Total Spend": 1563.0, "Total Transactions": 57.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.19 }, "geometry": { "type": "Point", "coordinates": [ -75.177953, 39.967017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "LOCATION_NAME": "Villavillekula", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075643, "LONGITUDE": -75.205445, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 186.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 107.0, "Total Spend": 94.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.205445, 40.075643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-php-pgk", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.058721, "LONGITUDE": -75.162779, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 4.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 72.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.5, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162779, 40.058721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-brk", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.993994, "LONGITUDE": -75.0915, "DATE_RANGE_START": 2024, "Total Visits": 226.0, "Total Visitors": 175.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2828.0, "Total Transactions": 43.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.35, "MEDIAN_SPEND_PER_CUSTOMER": 50.97 }, "geometry": { "type": "Point", "coordinates": [ -75.0915, 39.993994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "LOCATION_NAME": "C Town Supermarkets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.99594, "LONGITUDE": -75.172136, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 51.0, "POI_CBG": 421010169011.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2212.0, "Total Transactions": 186.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.08, "MEDIAN_SPEND_PER_CUSTOMER": 13.88 }, "geometry": { "type": "Point", "coordinates": [ -75.172136, 39.99594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950274, "LONGITUDE": -75.169549, "DATE_RANGE_START": 2024, "Total Visits": 1997.0, "Total Visitors": 1618.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 9609.0, "Total Transactions": 90.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 119.24, "MEDIAN_SPEND_PER_CUSTOMER": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169549, 39.950274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "LOCATION_NAME": "Ruckus Gallery", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2024, "Total Visits": 556.0, "Total Visitors": 292.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5385.0, "Total Transactions": 149.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.44, "MEDIAN_SPEND_PER_CUSTOMER": 36.68 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "LOCATION_NAME": "Girard Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 125.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2495.0, "Total Transactions": 232.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.71, "MEDIAN_SPEND_PER_CUSTOMER": 11.57 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvr-99f", "LOCATION_NAME": "Thirty Eight", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.933442, "LONGITUDE": -75.231478, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 138.0, "POI_CBG": 421010065001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 159.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.4, "MEDIAN_SPEND_PER_CUSTOMER": 60.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231478, 39.933442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2024, "Total Visits": 544.0, "Total Visitors": 341.0, "POI_CBG": 421010218002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1273.0, "Total Transactions": 42.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.09, "MEDIAN_SPEND_PER_CUSTOMER": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pj6-k4v", "LOCATION_NAME": "H Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.044993, "LONGITUDE": -75.117488, "DATE_RANGE_START": 2024, "Total Visits": 4471.0, "Total Visitors": 2998.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 97549.0, "Total Transactions": 2118.0, "Total Customers": 1338.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.95, "MEDIAN_SPEND_PER_CUSTOMER": 46.55 }, "geometry": { "type": "Point", "coordinates": [ -75.117488, 40.044993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2024, "Total Visits": 1128.0, "Total Visitors": 739.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5119.0, "Total Transactions": 212.0, "Total Customers": 178.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.04, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040841, "LONGITUDE": -75.075123, "DATE_RANGE_START": 2024, "Total Visits": 1049.0, "Total Visitors": 577.0, "POI_CBG": 421010313004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4617.0, "Total Transactions": 182.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.26, "MEDIAN_SPEND_PER_CUSTOMER": 19.67 }, "geometry": { "type": "Point", "coordinates": [ -75.075123, 40.040841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "LOCATION_NAME": "Zumiez", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2024, "Total Visits": 585.0, "Total Visitors": 570.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8541.0, "Total Transactions": 120.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.95, "MEDIAN_SPEND_PER_CUSTOMER": 55.9 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "LOCATION_NAME": "Vince.", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2024, "Total Visits": 1997.0, "Total Visitors": 1618.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4810.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 395.0, "MEDIAN_SPEND_PER_CUSTOMER": 395.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2024, "Total Visits": 417.0, "Total Visitors": 90.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1373.0, "Total Spend": 5070.0, "Total Transactions": 32.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 113.99, "MEDIAN_SPEND_PER_CUSTOMER": 254.46 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "LOCATION_NAME": "China Gate", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 315.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 21.0, "Total Spend": 2150.0, "Total Transactions": 87.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.42, "MEDIAN_SPEND_PER_CUSTOMER": 27.66 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "LOCATION_NAME": "Ginza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2024, "Total Visits": 197.0, "Total Visitors": 197.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 2455.0, "Total Transactions": 49.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.1, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "LOCATION_NAME": "Melograno", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950954, "LONGITUDE": -75.17418, "DATE_RANGE_START": 2024, "Total Visits": 1210.0, "Total Visitors": 899.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 805.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 109.64, "MEDIAN_SPEND_PER_CUSTOMER": 109.64 }, "geometry": { "type": "Point", "coordinates": [ -75.17418, 39.950954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-zvf", "LOCATION_NAME": "Tavern On the Hill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077151, "LONGITUDE": -75.208916, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 56.0, "Total Spend": 1591.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.47, "MEDIAN_SPEND_PER_CUSTOMER": 47.41 }, "geometry": { "type": "Point", "coordinates": [ -75.208916, 40.077151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962997, "LONGITUDE": -75.174044, "DATE_RANGE_START": 2024, "Total Visits": 2329.0, "Total Visitors": 1156.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 132933.0, "Total Transactions": 3306.0, "Total Customers": 1228.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.12, "MEDIAN_SPEND_PER_CUSTOMER": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.174044, 39.962997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-g6k", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.91863, "LONGITUDE": -75.182515, "DATE_RANGE_START": 2024, "Total Visits": 1010.0, "Total Visitors": 660.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 15970.0, "Total Transactions": 257.0, "Total Customers": 145.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.54, "MEDIAN_SPEND_PER_CUSTOMER": 39.06 }, "geometry": { "type": "Point", "coordinates": [ -75.182515, 39.91863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.04935, "LONGITUDE": -74.989527, "DATE_RANGE_START": 2024, "Total Visits": 1536.0, "Total Visitors": 1139.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5002.0, "Total Transactions": 450.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.7, "MEDIAN_SPEND_PER_CUSTOMER": 12.03 }, "geometry": { "type": "Point", "coordinates": [ -74.989527, 40.04935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2024, "Total Visits": 6439.0, "Total Visitors": 4202.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 19.0, "Total Spend": 33102.0, "Total Transactions": 694.0, "Total Customers": 552.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.84, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-phy-4vz", "LOCATION_NAME": "Paulino Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.021133, "LONGITUDE": -75.122686, "DATE_RANGE_START": 2024, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010288001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 68.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.25, "MEDIAN_SPEND_PER_CUSTOMER": 3.75 }, "geometry": { "type": "Point", "coordinates": [ -75.122686, 40.021133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "LOCATION_NAME": "Martinez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997199, "LONGITUDE": -75.175295, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 41.0, "POI_CBG": 421010172022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1324.0, "Total Transactions": 132.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.7, "MEDIAN_SPEND_PER_CUSTOMER": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175295, 39.997199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "LOCATION_NAME": "Convenient Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.034583, "LONGITUDE": -75.044296, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 273.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4013.0, "Total Transactions": 329.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.044296, 40.034583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2024, "Total Visits": 689.0, "Total Visitors": 645.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2366.0, "Total Transactions": 138.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.27 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918299, "LONGITUDE": -75.180698, "DATE_RANGE_START": 2024, "Total Visits": 312.0, "Total Visitors": 312.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6556.0, "Total Transactions": 355.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.79, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180698, 39.918299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.075107, "LONGITUDE": -75.034947, "DATE_RANGE_START": 2024, "Total Visits": 556.0, "Total Visitors": 436.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 128.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.1, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.075107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2024, "Total Visits": 362.0, "Total Visitors": 342.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1453.0, "Total Transactions": 113.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.77, "MEDIAN_SPEND_PER_CUSTOMER": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "LOCATION_NAME": "Circle Thrift", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.980269, "LONGITUDE": -75.128616, "DATE_RANGE_START": 2024, "Total Visits": 380.0, "Total Visitors": 147.0, "POI_CBG": 421010160005.0, "MEDIAN_DWELL": 92.0, "Total Spend": 3822.0, "Total Transactions": 241.0, "Total Customers": 176.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.35 }, "geometry": { "type": "Point", "coordinates": [ -75.128616, 39.980269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7yv", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953661, "LONGITUDE": -75.159716, "DATE_RANGE_START": 2024, "Total Visits": 5649.0, "Total Visitors": 4040.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 8066.0, "Total Transactions": 528.0, "Total Customers": 337.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.64, "MEDIAN_SPEND_PER_CUSTOMER": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.159716, 39.953661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.029566, "LONGITUDE": -75.100398, "DATE_RANGE_START": 2024, "Total Visits": 1363.0, "Total Visitors": 679.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 251.0, "Total Spend": 16840.0, "Total Transactions": 307.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.46, "MEDIAN_SPEND_PER_CUSTOMER": 39.64 }, "geometry": { "type": "Point", "coordinates": [ -75.100398, 40.029566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-zmk", "LOCATION_NAME": "The Fresh Grocer", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.940294, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2024, "Total Visits": 1127.0, "Total Visitors": 637.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 515727.0, "Total Transactions": 14854.0, "Total Customers": 6138.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 38.17 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 39.940294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-wx5", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.903623, "LONGITUDE": -75.239124, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 197.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.91, "MEDIAN_SPEND_PER_CUSTOMER": 74.91 }, "geometry": { "type": "Point", "coordinates": [ -75.239124, 39.903623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 270.0, "POI_CBG": 421010311013.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1536.0, "Total Transactions": 51.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.3, "MEDIAN_SPEND_PER_CUSTOMER": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "LOCATION_NAME": "Riverwards Produce", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2024, "Total Visits": 287.0, "Total Visitors": 146.0, "POI_CBG": 421010158001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 17423.0, "Total Transactions": 610.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.93, "MEDIAN_SPEND_PER_CUSTOMER": 39.75 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.898772, "LONGITUDE": -75.240567, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 398.0, "Total Transactions": 25.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240567, 39.898772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj9-grk", "LOCATION_NAME": "Nedro Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.043815, "LONGITUDE": -75.156105, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 59.0, "POI_CBG": 421010279014.0, "MEDIAN_DWELL": 1347.0, "Total Spend": 85.0, "Total Transactions": 11.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.99, "MEDIAN_SPEND_PER_CUSTOMER": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.156105, 40.043815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040921, "LONGITUDE": -75.065658, "DATE_RANGE_START": 2024, "Total Visits": 378.0, "Total Visitors": 230.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1145.0, "Total Transactions": 65.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 10.33 }, "geometry": { "type": "Point", "coordinates": [ -75.065658, 40.040921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.962004, "LONGITUDE": -75.172229, "DATE_RANGE_START": 2024, "Total Visits": 2757.0, "Total Visitors": 1488.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1124.0, "Total Transactions": 38.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.172229, 39.962004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.005321, "LONGITUDE": -75.098875, "DATE_RANGE_START": 2024, "Total Visits": 386.0, "Total Visitors": 359.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 36.0, "Total Spend": 38.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.26, "MEDIAN_SPEND_PER_CUSTOMER": 14.26 }, "geometry": { "type": "Point", "coordinates": [ -75.098875, 40.005321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "LOCATION_NAME": "So Korean Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2024, "Total Visits": 375.0, "Total Visitors": 294.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2307.0, "Total Transactions": 21.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 89.3, "MEDIAN_SPEND_PER_CUSTOMER": 123.67 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pg8-jjv", "LOCATION_NAME": "Deborah's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97383, "LONGITUDE": -75.179259, "DATE_RANGE_START": 2024, "Total Visits": 93.0, "Total Visitors": 67.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 51.0, "Total Spend": 201.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.85, "MEDIAN_SPEND_PER_CUSTOMER": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.179259, 39.97383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-v75", "LOCATION_NAME": "Buk Chon Korean Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948233, "LONGITUDE": -75.143798, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 170.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 260.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.14, "MEDIAN_SPEND_PER_CUSTOMER": 30.14 }, "geometry": { "type": "Point", "coordinates": [ -75.143798, 39.948233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948616, "LONGITUDE": -75.165899, "DATE_RANGE_START": 2024, "Total Visits": 775.0, "Total Visitors": 481.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9407.0, "Total Transactions": 1490.0, "Total Customers": 440.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -75.165899, 39.948616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@63s-dvy-pn5", "LOCATION_NAME": "Raising Cane's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954166, "LONGITUDE": -75.200784, "DATE_RANGE_START": 2024, "Total Visits": 1318.0, "Total Visitors": 997.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 23609.0, "Total Transactions": 1505.0, "Total Customers": 1060.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.73, "MEDIAN_SPEND_PER_CUSTOMER": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.200784, 39.954166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.952694, "LONGITUDE": -75.156218, "DATE_RANGE_START": 2024, "Total Visits": 2235.0, "Total Visitors": 1503.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 98.0, "Total Spend": 771.0, "Total Transactions": 67.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.98, "MEDIAN_SPEND_PER_CUSTOMER": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.156218, 39.952694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-nwk", "LOCATION_NAME": "The El Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.971812, "LONGITUDE": -75.135557, "DATE_RANGE_START": 2024, "Total Visits": 250.0, "Total Visitors": 201.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 93.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135557, 39.971812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-nwk", "LOCATION_NAME": "Louie Louie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953483, "LONGITUDE": -75.196032, "DATE_RANGE_START": 2024, "Total Visits": 270.0, "Total Visitors": 241.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 2002.0, "Total Transactions": 28.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.79, "MEDIAN_SPEND_PER_CUSTOMER": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.196032, 39.953483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "LOCATION_NAME": "The Pizza Store", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2024, "Total Visits": 158.0, "Total Visitors": 158.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 996.0, "Total Transactions": 87.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.3, "MEDIAN_SPEND_PER_CUSTOMER": 27.15 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949481, "LONGITUDE": -75.166658, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 1.0, "Total Spend": 16014.0, "Total Transactions": 1184.0, "Total Customers": 737.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.75, "MEDIAN_SPEND_PER_CUSTOMER": 14.91 }, "geometry": { "type": "Point", "coordinates": [ -75.166658, 39.949481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj2-mp9", "LOCATION_NAME": "The Apple Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.005914, "LONGITUDE": -75.127003, "DATE_RANGE_START": 2024, "Total Visits": 714.0, "Total Visitors": 509.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 184.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127003, 40.005914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-dy9", "LOCATION_NAME": "Little Italy Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942767, "LONGITUDE": -75.175334, "DATE_RANGE_START": 2024, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1243.0, "Total Transactions": 76.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.51, "MEDIAN_SPEND_PER_CUSTOMER": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175334, 39.942767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2024, "Total Visits": 1671.0, "Total Visitors": 985.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 35586.0, "Total Transactions": 1060.0, "Total Customers": 879.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.17 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2024, "Total Visits": 336.0, "Total Visitors": 267.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5171.0, "Total Transactions": 291.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.89, "MEDIAN_SPEND_PER_CUSTOMER": 16.41 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2024, "Total Visits": 434.0, "Total Visitors": 147.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11955.0, "Total Transactions": 1471.0, "Total Customers": 619.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-94v", "LOCATION_NAME": "La tapenade", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.87309, "LONGITUDE": -75.252083, "DATE_RANGE_START": 2024, "Total Visits": 10044.0, "Total Visitors": 7538.0, "POI_CBG": 420459800001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 3584.0, "Total Transactions": 149.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.252083, 39.87309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2024, "Total Visits": 207.0, "Total Visitors": 158.0, "POI_CBG": 421010140001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1195.0, "Total Transactions": 112.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.04, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.981705, "LONGITUDE": -75.180442, "DATE_RANGE_START": 2024, "Total Visits": 138.0, "Total Visitors": 105.0, "POI_CBG": 421010149004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1329.0, "Total Transactions": 118.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.96, "MEDIAN_SPEND_PER_CUSTOMER": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.180442, 39.981705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.099682, "LONGITUDE": -75.01017, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7804.0, "Total Transactions": 171.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.7, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01017, 40.099682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmd-zcq", "LOCATION_NAME": "Los Camaradas", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940827, "LONGITUDE": -75.179812, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010013003.0, "MEDIAN_DWELL": 95.0, "Total Spend": 2664.0, "Total Transactions": 55.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.36, "MEDIAN_SPEND_PER_CUSTOMER": 57.23 }, "geometry": { "type": "Point", "coordinates": [ -75.179812, 39.940827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "LOCATION_NAME": "Gap Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.049988, "LONGITUDE": -75.062581, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1368.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.47, "MEDIAN_SPEND_PER_CUSTOMER": 49.46 }, "geometry": { "type": "Point", "coordinates": [ -75.062581, 40.049988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pm6-jsq", "LOCATION_NAME": "Taste of Punjab", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922877, "LONGITUDE": -75.15251, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010042014.0, "MEDIAN_DWELL": 43.0, "Total Spend": 1054.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.77, "MEDIAN_SPEND_PER_CUSTOMER": 49.77 }, "geometry": { "type": "Point", "coordinates": [ -75.15251, 39.922877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "LOCATION_NAME": "J&P Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953499, "LONGITUDE": -75.218972, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2410.0, "Total Transactions": 72.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.65, "MEDIAN_SPEND_PER_CUSTOMER": 32.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218972, 39.953499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "LOCATION_NAME": "Deluxe Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.048259, "LONGITUDE": -75.01249, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 909.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.73, "MEDIAN_SPEND_PER_CUSTOMER": 68.73 }, "geometry": { "type": "Point", "coordinates": [ -75.01249, 40.048259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-sh5", "LOCATION_NAME": "La Viola", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948024, "LONGITUDE": -75.168108, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 169.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1154.0, "Total Transactions": 13.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 93.76, "MEDIAN_SPEND_PER_CUSTOMER": 93.76 }, "geometry": { "type": "Point", "coordinates": [ -75.168108, 39.948024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-psq", "LOCATION_NAME": "Applebee's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993196, "LONGITUDE": -75.092591, "DATE_RANGE_START": 2024, "Total Visits": 673.0, "Total Visitors": 519.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 42.0, "Total Spend": 2718.0, "Total Transactions": 42.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.53, "MEDIAN_SPEND_PER_CUSTOMER": 59.34 }, "geometry": { "type": "Point", "coordinates": [ -75.092591, 39.993196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.990664, "LONGITUDE": -75.154878, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1773.0, "Total Transactions": 54.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.51, "MEDIAN_SPEND_PER_CUSTOMER": 25.36 }, "geometry": { "type": "Point", "coordinates": [ -75.154878, 39.990664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmd-vfz", "LOCATION_NAME": "Tsuki Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951096, "LONGITUDE": -75.177135, "DATE_RANGE_START": 2024, "Total Visits": 269.0, "Total Visitors": 269.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2673.0, "Total Transactions": 47.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.58, "MEDIAN_SPEND_PER_CUSTOMER": 35.58 }, "geometry": { "type": "Point", "coordinates": [ -75.177135, 39.951096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-qzz", "LOCATION_NAME": "Randazzo's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944329, "LONGITUDE": -75.172844, "DATE_RANGE_START": 2024, "Total Visits": 1098.0, "Total Visitors": 292.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 272.0, "Total Spend": 2945.0, "Total Transactions": 179.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.23, "MEDIAN_SPEND_PER_CUSTOMER": 18.58 }, "geometry": { "type": "Point", "coordinates": [ -75.172844, 39.944329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "LOCATION_NAME": "Unit Su Vege", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2024, "Total Visits": 354.0, "Total Visitors": 267.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3749.0, "Total Transactions": 88.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.1, "MEDIAN_SPEND_PER_CUSTOMER": 46.26 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@63s-dvy-pn5", "LOCATION_NAME": "Hatch & Coop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954641, "LONGITUDE": -75.202308, "DATE_RANGE_START": 2024, "Total Visits": 375.0, "Total Visitors": 258.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8605.0, "Total Transactions": 440.0, "Total Customers": 304.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.202308, 39.954641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-68v", "LOCATION_NAME": "Strangelove's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947987, "LONGITUDE": -75.159475, "DATE_RANGE_START": 2024, "Total Visits": 1402.0, "Total Visitors": 931.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 18.0, "Total Spend": 864.0, "Total Transactions": 21.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.8, "MEDIAN_SPEND_PER_CUSTOMER": 44.16 }, "geometry": { "type": "Point", "coordinates": [ -75.159475, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "LOCATION_NAME": "House of Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2024, "Total Visits": 588.0, "Total Visitors": 421.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 892.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.81, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-85f", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.028399, "LONGITUDE": -75.127425, "DATE_RANGE_START": 2024, "Total Visits": 287.0, "Total Visitors": 159.0, "POI_CBG": 421010286006.0, "MEDIAN_DWELL": 530.0, "Total Spend": 561.0, "Total Transactions": 59.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.24, "MEDIAN_SPEND_PER_CUSTOMER": 9.93 }, "geometry": { "type": "Point", "coordinates": [ -75.127425, 40.028399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 99.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 869.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.68, "MEDIAN_SPEND_PER_CUSTOMER": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2024, "Total Visits": 10761.0, "Total Visitors": 7021.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1158.0, "Total Transactions": 108.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.16, "MEDIAN_SPEND_PER_CUSTOMER": 11.32 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "LOCATION_NAME": "Dragon Phoenix House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 140.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1140.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.97, "MEDIAN_SPEND_PER_CUSTOMER": 38.24 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "LOCATION_NAME": "Jimmy John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2024, "Total Visits": 14692.0, "Total Visitors": 7742.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 63.0, "Total Spend": 7148.0, "Total Transactions": 531.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.51, "MEDIAN_SPEND_PER_CUSTOMER": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "LOCATION_NAME": "South Street Souvlaki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2024, "Total Visits": 520.0, "Total Visitors": 469.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2271.0, "Total Transactions": 62.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.96, "MEDIAN_SPEND_PER_CUSTOMER": 35.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "LOCATION_NAME": "Stenton Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2024, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1536.0, "Total Transactions": 72.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.18, "MEDIAN_SPEND_PER_CUSTOMER": 24.23 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "LOCATION_NAME": "Capriccio Cafe and Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955441, "LONGITUDE": -75.166519, "DATE_RANGE_START": 2024, "Total Visits": 276.0, "Total Visitors": 241.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2989.0, "Total Transactions": 261.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.08, "MEDIAN_SPEND_PER_CUSTOMER": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.166519, 39.955441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "LOCATION_NAME": "The Bottle Shop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2024, "Total Visits": 80.0, "Total Visitors": 80.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1045.0, "Total Transactions": 47.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.87 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032189, "LONGITUDE": -75.063077, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2866.0, "Total Transactions": 142.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.54, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063077, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "LOCATION_NAME": "S and J Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948539, "LONGITUDE": -75.227093, "DATE_RANGE_START": 2024, "Total Visits": 257.0, "Total Visitors": 116.0, "POI_CBG": 421010080002.0, "MEDIAN_DWELL": 56.0, "Total Spend": 2243.0, "Total Transactions": 78.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.73, "MEDIAN_SPEND_PER_CUSTOMER": 29.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227093, 39.948539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm4-hdv", "LOCATION_NAME": "Brunics", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926158, "LONGITUDE": -75.174485, "DATE_RANGE_START": 2024, "Total Visits": 466.0, "Total Visitors": 395.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 100.0, "Total Spend": 63.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.66, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.174485, 39.926158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2024, "Total Visits": 537.0, "Total Visitors": 425.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1750.0, "Total Transactions": 187.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.19, "MEDIAN_SPEND_PER_CUSTOMER": 12.23 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-zmk", "LOCATION_NAME": "Value Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.931943, "LONGITUDE": -75.226697, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 149.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 129.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.08, "MEDIAN_SPEND_PER_CUSTOMER": 49.08 }, "geometry": { "type": "Point", "coordinates": [ -75.226697, 39.931943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.909192, "LONGITUDE": -75.174029, "DATE_RANGE_START": 2024, "Total Visits": 1320.0, "Total Visitors": 1230.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5249.0, "Total Transactions": 244.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.174029, 39.909192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2024, "Total Visits": 810.0, "Total Visitors": 492.0, "POI_CBG": 421010012021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9733.0, "Total Transactions": 602.0, "Total Customers": 319.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.97, "MEDIAN_SPEND_PER_CUSTOMER": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-66k", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949053, "LONGITUDE": -75.160719, "DATE_RANGE_START": 2024, "Total Visits": 2667.0, "Total Visitors": 1723.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3448.0, "Total Transactions": 203.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.25, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160719, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.921823, "LONGITUDE": -75.170522, "DATE_RANGE_START": 2024, "Total Visits": 928.0, "Total Visitors": 557.0, "POI_CBG": 421010039012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 291.0, "Total Transactions": 37.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 7.28 }, "geometry": { "type": "Point", "coordinates": [ -75.170522, 39.921823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-94v", "LOCATION_NAME": "Torrid", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952294, "LONGITUDE": -75.15687, "DATE_RANGE_START": 2024, "Total Visits": 13727.0, "Total Visitors": 7998.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 1129.0, "Total Transactions": 29.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.45, "MEDIAN_SPEND_PER_CUSTOMER": 30.45 }, "geometry": { "type": "Point", "coordinates": [ -75.15687, 39.952294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-k9f", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.063427, "LONGITUDE": -75.236432, "DATE_RANGE_START": 2024, "Total Visits": 116.0, "Total Visitors": 116.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1233.0, "Total Transactions": 76.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.236432, 40.063427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2024, "Total Visits": 694.0, "Total Visitors": 545.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3068.0, "Total Transactions": 124.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.32, "MEDIAN_SPEND_PER_CUSTOMER": 16.67 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2024, "Total Visits": 1245.0, "Total Visitors": 945.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11113.0, "Total Transactions": 639.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.52, "MEDIAN_SPEND_PER_CUSTOMER": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-tjv", "LOCATION_NAME": "Children's Hospital Of Philadelphia", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.94747, "LONGITUDE": -75.195382, "DATE_RANGE_START": 2024, "Total Visits": 1253.0, "Total Visitors": 441.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 99.0, "Total Spend": 20.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.46, "MEDIAN_SPEND_PER_CUSTOMER": 7.46 }, "geometry": { "type": "Point", "coordinates": [ -75.195382, 39.94747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 282.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 256.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.913287, "LONGITUDE": -75.157286, "DATE_RANGE_START": 2024, "Total Visits": 1697.0, "Total Visitors": 1697.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 443.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.79, "MEDIAN_SPEND_PER_CUSTOMER": 85.84 }, "geometry": { "type": "Point", "coordinates": [ -75.157286, 39.913287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.042919, "LONGITUDE": -75.181039, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010238002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 193.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.92, "MEDIAN_SPEND_PER_CUSTOMER": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.181039, 40.042919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983076, "LONGITUDE": -75.241701, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6259.0, "Total Transactions": 222.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.72, "MEDIAN_SPEND_PER_CUSTOMER": 29.72 }, "geometry": { "type": "Point", "coordinates": [ -75.241701, 39.983076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034612, "LONGITUDE": -75.175438, "DATE_RANGE_START": 2024, "Total Visits": 1173.0, "Total Visitors": 616.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 105.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.39, "MEDIAN_SPEND_PER_CUSTOMER": 32.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175438, 40.034612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.021226, "LONGITUDE": -75.14987, "DATE_RANGE_START": 2024, "Total Visits": 889.0, "Total Visitors": 711.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 333.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.33, "MEDIAN_SPEND_PER_CUSTOMER": 12.33 }, "geometry": { "type": "Point", "coordinates": [ -75.14987, 40.021226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8d-j5f", "LOCATION_NAME": "Boulevard Tire Shop", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.00655, "LONGITUDE": -75.08972, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 137.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3120.0, "Total Transactions": 28.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.0, "MEDIAN_SPEND_PER_CUSTOMER": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08972, 40.00655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "LOCATION_NAME": "J&J Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.925365, "LONGITUDE": -75.157449, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 224.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 34.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.157449, 39.925365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@63s-dvx-xh5", "LOCATION_NAME": "Joe's Food Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.949235, "LONGITUDE": -75.21368, "DATE_RANGE_START": 2024, "Total Visits": 386.0, "Total Visitors": 274.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 49.0, "Total Spend": 898.0, "Total Transactions": 50.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.26, "MEDIAN_SPEND_PER_CUSTOMER": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21368, 39.949235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085956, "LONGITUDE": -74.963406, "DATE_RANGE_START": 2024, "Total Visits": 1298.0, "Total Visitors": 993.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 15.0, "Total Spend": 10481.0, "Total Transactions": 294.0, "Total Customers": 234.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963406, 40.085956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "LOCATION_NAME": "New Delhi Indian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2024, "Total Visits": 245.0, "Total Visitors": 216.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5102.0, "Total Transactions": 130.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.71, "MEDIAN_SPEND_PER_CUSTOMER": 43.37 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-sbk", "LOCATION_NAME": "Izzy's 33", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927844, "LONGITUDE": -75.159073, "DATE_RANGE_START": 2024, "Total Visits": 556.0, "Total Visitors": 353.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2041.0, "Total Transactions": 50.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.13, "MEDIAN_SPEND_PER_CUSTOMER": 47.18 }, "geometry": { "type": "Point", "coordinates": [ -75.159073, 39.927844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "LOCATION_NAME": "El Punto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2024, "Total Visits": 158.0, "Total Visitors": 158.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3980.0, "Total Transactions": 166.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.13, "MEDIAN_SPEND_PER_CUSTOMER": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "LOCATION_NAME": "Apricot Stone", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 150.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3228.0, "Total Transactions": 39.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.06, "MEDIAN_SPEND_PER_CUSTOMER": 90.82 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "LOCATION_NAME": "A La Mousse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2024, "Total Visits": 103.0, "Total Visitors": 103.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4668.0, "Total Transactions": 236.0, "Total Customers": 194.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.31, "MEDIAN_SPEND_PER_CUSTOMER": 16.91 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7z-xnq", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032765, "LONGITUDE": -75.083361, "DATE_RANGE_START": 2024, "Total Visits": 462.0, "Total Visitors": 415.0, "POI_CBG": 421010312003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 6298.0, "Total Transactions": 438.0, "Total Customers": 316.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.57, "MEDIAN_SPEND_PER_CUSTOMER": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.083361, 40.032765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "LOCATION_NAME": "Peddler Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2024, "Total Visits": 309.0, "Total Visitors": 295.0, "POI_CBG": 421010003002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2624.0, "Total Transactions": 348.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "LOCATION_NAME": "DFTI Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951956, "LONGITUDE": -75.174859, "DATE_RANGE_START": 2024, "Total Visits": 1330.0, "Total Visitors": 1065.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 5777.0, "Total Transactions": 51.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.0, "MEDIAN_SPEND_PER_CUSTOMER": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174859, 39.951956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22p@628-pmb-8y9", "LOCATION_NAME": "Carter's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952104, "LONGITUDE": -75.155399, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1518.0, "Total Transactions": 49.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.8, "MEDIAN_SPEND_PER_CUSTOMER": 30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155399, 39.952104 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pmb-v4v", "LOCATION_NAME": "Charlie's", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949803, "LONGITUDE": -75.144118, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 853.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2844.0, "Total Transactions": 240.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.36, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144118, 39.949803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.930298, "LONGITUDE": -75.155924, "DATE_RANGE_START": 2024, "Total Visits": 613.0, "Total Visitors": 65.0, "POI_CBG": 421010028013.0, "MEDIAN_DWELL": 909.0, "Total Spend": 1651.0, "Total Transactions": 90.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 17.29 }, "geometry": { "type": "Point", "coordinates": [ -75.155924, 39.930298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8n5", "LOCATION_NAME": "Columbia Sportswear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951969, "LONGITUDE": -75.157009, "DATE_RANGE_START": 2024, "Total Visits": 1194.0, "Total Visitors": 928.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 2885.0, "Total Transactions": 75.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.74, "MEDIAN_SPEND_PER_CUSTOMER": 32.34 }, "geometry": { "type": "Point", "coordinates": [ -75.157009, 39.951969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfx-kxq", "LOCATION_NAME": "Funny Monk Emporium", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.026687, "LONGITUDE": -75.224098, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010214003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4505.0, "Total Transactions": 132.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224098, 40.026687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pn5", "LOCATION_NAME": "Tortilleria San Roman", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937643, "LONGITUDE": -75.157989, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 126.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 113.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.88 }, "geometry": { "type": "Point", "coordinates": [ -75.157989, 39.937643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pj9-q4v", "LOCATION_NAME": "New China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038791, "LONGITUDE": -75.149331, "DATE_RANGE_START": 2024, "Total Visits": 304.0, "Total Visitors": 278.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": 55.0, "Total Spend": 118.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.05, "MEDIAN_SPEND_PER_CUSTOMER": 18.05 }, "geometry": { "type": "Point", "coordinates": [ -75.149331, 40.038791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-mzf", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.958779, "LONGITUDE": -75.225571, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": 16.0, "Total Spend": 384.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.0, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.958779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnx-8n5", "LOCATION_NAME": "7th & Fairmont Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.964034, "LONGITUDE": -75.148837, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 180.0, "POI_CBG": 421010131001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 4990.0, "Total Transactions": 453.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.36, "MEDIAN_SPEND_PER_CUSTOMER": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.148837, 39.964034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-223@628-pmb-fxq", "LOCATION_NAME": "Greene Street", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.942054, "LONGITUDE": -75.154104, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 437.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.95, "MEDIAN_SPEND_PER_CUSTOMER": 28.95 }, "geometry": { "type": "Point", "coordinates": [ -75.154104, 39.942054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm3-wff", "LOCATION_NAME": "Passyunk Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.931424, "LONGITUDE": -75.161293, "DATE_RANGE_START": 2024, "Total Visits": 367.0, "Total Visitors": 313.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1301.0, "Total Transactions": 70.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.8, "MEDIAN_SPEND_PER_CUSTOMER": 17.97 }, "geometry": { "type": "Point", "coordinates": [ -75.161293, 39.931424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2024, "Total Visits": 438.0, "Total Visitors": 361.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 486.0, "Total Transactions": 33.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.72, "MEDIAN_SPEND_PER_CUSTOMER": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6hq", "LOCATION_NAME": "MilkBoy", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950114, "LONGITUDE": -75.15876, "DATE_RANGE_START": 2024, "Total Visits": 5134.0, "Total Visitors": 2192.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 1488.0, "Total Transactions": 41.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 29.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15876, 39.950114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7qz", "LOCATION_NAME": "Green Eggs Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9483, "LONGITUDE": -75.162434, "DATE_RANGE_START": 2024, "Total Visits": 288.0, "Total Visitors": 261.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 457.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.75, "MEDIAN_SPEND_PER_CUSTOMER": 91.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162434, 39.9483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 204.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 613.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.99, "MEDIAN_SPEND_PER_CUSTOMER": 99.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj3-cbk", "LOCATION_NAME": "Furniture Mecca", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.016867, "LONGITUDE": -75.151062, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 186.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8206.0, "Total Transactions": 7.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 1321.92, "MEDIAN_SPEND_PER_CUSTOMER": 1321.92 }, "geometry": { "type": "Point", "coordinates": [ -75.151062, 40.016867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phq-rp9", "LOCATION_NAME": "Hesaias Wigs", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.066299, "LONGITUDE": -75.159298, "DATE_RANGE_START": 2024, "Total Visits": 72.0, "Total Visitors": 72.0, "POI_CBG": 421010263023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 48.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.15, "MEDIAN_SPEND_PER_CUSTOMER": 18.15 }, "geometry": { "type": "Point", "coordinates": [ -75.159298, 40.066299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.998875, "LONGITUDE": -75.091897, "DATE_RANGE_START": 2024, "Total Visits": 5358.0, "Total Visitors": 2950.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 23.0, "Total Spend": 2653.0, "Total Transactions": 86.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.08, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.091897, 39.998875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "LOCATION_NAME": "Fishtown Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": null, "Total Spend": 2347.0, "Total Transactions": 66.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.15, "MEDIAN_SPEND_PER_CUSTOMER": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953725, "LONGITUDE": -75.172706, "DATE_RANGE_START": 2024, "Total Visits": 1357.0, "Total Visitors": 981.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7373.0, "Total Transactions": 294.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.96, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172706, 39.953725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "LOCATION_NAME": "Jack B Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.939011, "LONGITUDE": -75.150012, "DATE_RANGE_START": 2024, "Total Visits": 450.0, "Total Visitors": 355.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 697.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.96, "MEDIAN_SPEND_PER_CUSTOMER": 75.05 }, "geometry": { "type": "Point", "coordinates": [ -75.150012, 39.939011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-phy-hdv", "LOCATION_NAME": "Kim's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.022409, "LONGITUDE": -75.133408, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 205.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 30.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.82, "MEDIAN_SPEND_PER_CUSTOMER": 6.82 }, "geometry": { "type": "Point", "coordinates": [ -75.133408, 40.022409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-2kz", "LOCATION_NAME": "Marshalls", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075387, "LONGITUDE": -75.032059, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 39.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 13402.0, "Total Transactions": 262.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.3, "MEDIAN_SPEND_PER_CUSTOMER": 31.29 }, "geometry": { "type": "Point", "coordinates": [ -75.032059, 40.075387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-jgk", "LOCATION_NAME": "The Foto Club", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.000866, "LONGITUDE": -75.097152, "DATE_RANGE_START": 2024, "Total Visits": 236.0, "Total Visitors": 179.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 47.0, "Total Spend": 2059.0, "Total Transactions": 63.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.42, "MEDIAN_SPEND_PER_CUSTOMER": 31.73 }, "geometry": { "type": "Point", "coordinates": [ -75.097152, 40.000866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.029611, "LONGITUDE": -75.145496, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 16.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5919.0, "Total Transactions": 319.0, "Total Customers": 204.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.71, "MEDIAN_SPEND_PER_CUSTOMER": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.145496, 40.029611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "LOCATION_NAME": "YOLO Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010167024.0, "MEDIAN_DWELL": 4.0, "Total Spend": 59.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "LOCATION_NAME": "Big Ben Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2024, "Total Visits": 157.0, "Total Visitors": 157.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4124.0, "Total Transactions": 150.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.43, "MEDIAN_SPEND_PER_CUSTOMER": 43.68 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-phy-kmk", "LOCATION_NAME": "El Sabor De Maria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025858, "LONGITUDE": -75.132587, "DATE_RANGE_START": 2024, "Total Visits": 2670.0, "Total Visitors": 2150.0, "POI_CBG": 421010286003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1346.0, "Total Transactions": 32.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.28, "MEDIAN_SPEND_PER_CUSTOMER": 44.81 }, "geometry": { "type": "Point", "coordinates": [ -75.132587, 40.025858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2024, "Total Visits": 469.0, "Total Visitors": 429.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 579.0, "Total Transactions": 38.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.77, "MEDIAN_SPEND_PER_CUSTOMER": 16.33 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-575", "LOCATION_NAME": "Aldo's Pizzarama", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.108537, "LONGITUDE": -75.025505, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 187.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2307.0, "Total Transactions": 76.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.18, "MEDIAN_SPEND_PER_CUSTOMER": 32.75 }, "geometry": { "type": "Point", "coordinates": [ -75.025505, 40.108537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2024, "Total Visits": 386.0, "Total Visitors": 328.0, "POI_CBG": 421010317003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7821.0, "Total Transactions": 567.0, "Total Customers": 383.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.92, "MEDIAN_SPEND_PER_CUSTOMER": 15.57 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "LOCATION_NAME": "Bindlestiff Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2024, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 13.0, "Total Spend": 68.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.87, "MEDIAN_SPEND_PER_CUSTOMER": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.993434, "LONGITUDE": -75.144057, "DATE_RANGE_START": 2024, "Total Visits": 324.0, "Total Visitors": 241.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 283.0, "Total Transactions": 11.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.87, "MEDIAN_SPEND_PER_CUSTOMER": 39.38 }, "geometry": { "type": "Point", "coordinates": [ -75.144057, 39.993434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pp5-5vf", "LOCATION_NAME": "Buzz Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977401, "LONGITUDE": -75.135043, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010157002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 113.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.92, "MEDIAN_SPEND_PER_CUSTOMER": 34.92 }, "geometry": { "type": "Point", "coordinates": [ -75.135043, 39.977401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph6-rkz", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979897, "LONGITUDE": -75.227236, "DATE_RANGE_START": 2024, "Total Visits": 74.0, "Total Visitors": 55.0, "POI_CBG": 421010119003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 276.0, "Total Transactions": 29.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.88, "MEDIAN_SPEND_PER_CUSTOMER": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.227236, 39.979897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032068, "LONGITUDE": -75.213943, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5291.0, "Total Transactions": 494.0, "Total Customers": 304.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.86, "MEDIAN_SPEND_PER_CUSTOMER": 12.86 }, "geometry": { "type": "Point", "coordinates": [ -75.213943, 40.032068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-phy-qs5", "LOCATION_NAME": "Torres Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013759, "LONGITUDE": -75.137021, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010197001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 147.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.36, "MEDIAN_SPEND_PER_CUSTOMER": 11.36 }, "geometry": { "type": "Point", "coordinates": [ -75.137021, 40.013759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp4-kxq", "LOCATION_NAME": "Quick Stop", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983855, "LONGITUDE": -75.125542, "DATE_RANGE_START": 2024, "Total Visits": 463.0, "Total Visitors": 228.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7993.0, "Total Transactions": 591.0, "Total Customers": 362.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.27, "MEDIAN_SPEND_PER_CUSTOMER": 16.66 }, "geometry": { "type": "Point", "coordinates": [ -75.125542, 39.983855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "LOCATION_NAME": "Dolce Carini", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 303.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2409.0, "Total Transactions": 186.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.38, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm9-zs5", "LOCATION_NAME": "Ishkabibble's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942066, "LONGITUDE": -75.151372, "DATE_RANGE_START": 2024, "Total Visits": 241.0, "Total Visitors": 172.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 28.0, "Total Spend": 184.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.7, "MEDIAN_SPEND_PER_CUSTOMER": 69.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151372, 39.942066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "LOCATION_NAME": "Union Tap House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 122.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 975.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.08, "MEDIAN_SPEND_PER_CUSTOMER": 58.93 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "LOCATION_NAME": "Bad Brother", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2024, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": null, "Total Spend": 171.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.93, "MEDIAN_SPEND_PER_CUSTOMER": 42.68 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-5vf", "LOCATION_NAME": "Mario Brothers Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048464, "LONGITUDE": -75.061807, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 154.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3673.0, "Total Transactions": 124.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.04, "MEDIAN_SPEND_PER_CUSTOMER": 29.63 }, "geometry": { "type": "Point", "coordinates": [ -75.061807, 40.048464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-zpv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957784, "LONGITUDE": -75.209056, "DATE_RANGE_START": 2024, "Total Visits": 308.0, "Total Visitors": 255.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16526.0, "Total Transactions": 845.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.05, "MEDIAN_SPEND_PER_CUSTOMER": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.209056, 39.957784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2024, "Total Visits": 1003.0, "Total Visitors": 814.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1663.0, "Total Transactions": 84.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kcq", "LOCATION_NAME": "Almaz Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950811, "LONGITUDE": -75.173919, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 145.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 54.0, "Total Spend": 794.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.91, "MEDIAN_SPEND_PER_CUSTOMER": 31.51 }, "geometry": { "type": "Point", "coordinates": [ -75.173919, 39.950811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.112307, "LONGITUDE": -75.022895, "DATE_RANGE_START": 2024, "Total Visits": 854.0, "Total Visitors": 621.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3847.0, "Total Transactions": 184.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.69, "MEDIAN_SPEND_PER_CUSTOMER": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.022895, 40.112307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "LOCATION_NAME": "Jo-Ann Fabric and Craft Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2024, "Total Visits": 578.0, "Total Visitors": 545.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 6250.0, "Total Transactions": 245.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.86, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "LOCATION_NAME": "Wooden Shoe Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.94201, "LONGITUDE": -75.154214, "DATE_RANGE_START": 2024, "Total Visits": 752.0, "Total Visitors": 664.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 523.0, "Total Transactions": 17.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.51, "MEDIAN_SPEND_PER_CUSTOMER": 22.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154214, 39.94201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "LOCATION_NAME": "Saladworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.899825, "LONGITUDE": -75.241379, "DATE_RANGE_START": 2024, "Total Visits": 1189.0, "Total Visitors": 903.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 9339.0, "Total Transactions": 557.0, "Total Customers": 402.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.241379, 39.899825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-pmd-skf", "LOCATION_NAME": "Social House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944966, "LONGITUDE": -75.177113, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 445.0, "Total Transactions": 65.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.16, "MEDIAN_SPEND_PER_CUSTOMER": 7.41 }, "geometry": { "type": "Point", "coordinates": [ -75.177113, 39.944966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-zmk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960742, "LONGITUDE": -75.234226, "DATE_RANGE_START": 2024, "Total Visits": 1635.0, "Total Visitors": 918.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 654.0, "Total Transactions": 43.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.68, "MEDIAN_SPEND_PER_CUSTOMER": 15.62 }, "geometry": { "type": "Point", "coordinates": [ -75.234226, 39.960742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "LOCATION_NAME": "R.E. Michel", "TOP_CATEGORY": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 100.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 11765.0, "Total Transactions": 26.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.59, "MEDIAN_SPEND_PER_CUSTOMER": 422.26 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.96127, "LONGITUDE": -75.199357, "DATE_RANGE_START": 2024, "Total Visits": 259.0, "Total Visitors": 128.0, "POI_CBG": 421010091003.0, "MEDIAN_DWELL": 121.0, "Total Spend": 3175.0, "Total Transactions": 87.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.199357, 39.96127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj7-54v", "LOCATION_NAME": "New China Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04309, "LONGITUDE": -75.103706, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": null, "Total Spend": 1456.0, "Total Transactions": 53.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.72, "MEDIAN_SPEND_PER_CUSTOMER": 36.91 }, "geometry": { "type": "Point", "coordinates": [ -75.103706, 40.04309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvw-cdv", "LOCATION_NAME": "Monica Restaurat", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965596, "LONGITUDE": -75.230016, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 121.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 733.0, "Total Transactions": 36.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.66, "MEDIAN_SPEND_PER_CUSTOMER": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.230016, 39.965596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj3-tqf", "LOCATION_NAME": "Lucky Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027775, "LONGITUDE": -75.14691, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 107.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 1.0, "Total Spend": 383.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.78, "MEDIAN_SPEND_PER_CUSTOMER": 28.78 }, "geometry": { "type": "Point", "coordinates": [ -75.14691, 40.027775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2024, "Total Visits": 250.0, "Total Visitors": 205.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3676.0, "Total Transactions": 76.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.78, "MEDIAN_SPEND_PER_CUSTOMER": 39.81 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "LOCATION_NAME": "Milkcrate Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2024, "Total Visits": 1629.0, "Total Visitors": 991.0, "POI_CBG": 421010143002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 5045.0, "Total Transactions": 350.0, "Total Customers": 228.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.37, "MEDIAN_SPEND_PER_CUSTOMER": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.063818, "LONGITUDE": -75.23885, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 7.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 372.0, "Total Spend": 19270.0, "Total Transactions": 1488.0, "Total Customers": 915.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.43, "MEDIAN_SPEND_PER_CUSTOMER": 14.73 }, "geometry": { "type": "Point", "coordinates": [ -75.23885, 40.063818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p8n-btv", "LOCATION_NAME": "El New Sunrise Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.03352, "LONGITUDE": -75.066168, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": null, "Total Spend": 168.0, "Total Transactions": 14.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.066168, 40.03352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj8-hwk", "LOCATION_NAME": "Oxford Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.019429, "LONGITUDE": -75.084382, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010301002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 246.0, "Total Transactions": 37.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.09, "MEDIAN_SPEND_PER_CUSTOMER": 12.78 }, "geometry": { "type": "Point", "coordinates": [ -75.084382, 40.019429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "LOCATION_NAME": "Gia Pronto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2024, "Total Visits": 229.0, "Total Visitors": 158.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2930.0, "Total Transactions": 338.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.51, "MEDIAN_SPEND_PER_CUSTOMER": 10.08 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-fvf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033401, "LONGITUDE": -75.176995, "DATE_RANGE_START": 2024, "Total Visits": 1220.0, "Total Visitors": 671.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 5233.0, "Total Transactions": 305.0, "Total Customers": 212.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.7, "MEDIAN_SPEND_PER_CUSTOMER": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.176995, 40.033401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "LOCATION_NAME": "Walmart Philadelphia Store", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.031503, "LONGITUDE": -75.099418, "DATE_RANGE_START": 2024, "Total Visits": 3423.0, "Total Visitors": 2139.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 318148.0, "Total Transactions": 5149.0, "Total Customers": 2906.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.28, "MEDIAN_SPEND_PER_CUSTOMER": 51.38 }, "geometry": { "type": "Point", "coordinates": [ -75.099418, 40.031503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021267, "LONGITUDE": -75.148854, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4788.0, "Total Transactions": 320.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.14, "MEDIAN_SPEND_PER_CUSTOMER": 14.49 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 40.021267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-m6k", "LOCATION_NAME": "Arch Street Lighting", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.951738, "LONGITUDE": -75.142429, "DATE_RANGE_START": 2024, "Total Visits": 906.0, "Total Visitors": 635.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 762.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.88, "MEDIAN_SPEND_PER_CUSTOMER": 289.43 }, "geometry": { "type": "Point", "coordinates": [ -75.142429, 39.951738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "LOCATION_NAME": "Kashmir Garden Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2024, "Total Visits": 240.0, "Total Visitors": 211.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3491.0, "Total Transactions": 91.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.74, "MEDIAN_SPEND_PER_CUSTOMER": 46.03 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2024, "Total Visits": 556.0, "Total Visitors": 430.0, "POI_CBG": 421010271001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 244.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.08, "MEDIAN_SPEND_PER_CUSTOMER": 7.89 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-phq-rp9", "LOCATION_NAME": "Liberty Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.066348, "LONGITUDE": -75.158578, "DATE_RANGE_START": 2024, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": null, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158578, 40.066348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "LOCATION_NAME": "China Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2024, "Total Visits": 635.0, "Total Visitors": 544.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2341.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.1, "MEDIAN_SPEND_PER_CUSTOMER": 76.46 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2024, "Total Visits": 495.0, "Total Visitors": 402.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 226.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.72, "MEDIAN_SPEND_PER_CUSTOMER": 12.72 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931588, "LONGITUDE": -75.160638, "DATE_RANGE_START": 2024, "Total Visits": 1007.0, "Total Visitors": 762.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4059.0, "Total Transactions": 512.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160638, 39.931588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942566, "LONGITUDE": -75.179038, "DATE_RANGE_START": 2024, "Total Visits": 196.0, "Total Visitors": 111.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8526.0, "Total Transactions": 868.0, "Total Customers": 556.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.04, "MEDIAN_SPEND_PER_CUSTOMER": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.179038, 39.942566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 216.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 71.0, "Total Spend": 1015.0, "Total Transactions": 32.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.5, "MEDIAN_SPEND_PER_CUSTOMER": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-yd9", "LOCATION_NAME": "C & R Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.938173, "LONGITUDE": -75.170563, "DATE_RANGE_START": 2024, "Total Visits": 625.0, "Total Visitors": 353.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 17.0, "Total Spend": 1000.0, "Total Transactions": 9.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.31, "MEDIAN_SPEND_PER_CUSTOMER": 379.86 }, "geometry": { "type": "Point", "coordinates": [ -75.170563, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.061147, "LONGITUDE": -75.237239, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 24.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3999.0, "Total Transactions": 184.0, "Total Customers": 122.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.48, "MEDIAN_SPEND_PER_CUSTOMER": 22.45 }, "geometry": { "type": "Point", "coordinates": [ -75.237239, 40.061147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-t7q", "LOCATION_NAME": "Pamma Tools", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.948955, "LONGITUDE": -75.154372, "DATE_RANGE_START": 2024, "Total Visits": 828.0, "Total Visitors": 604.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3421.0, "Total Transactions": 28.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.0, "MEDIAN_SPEND_PER_CUSTOMER": 130.25 }, "geometry": { "type": "Point", "coordinates": [ -75.154372, 39.948955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dwf-t9z", "LOCATION_NAME": "Citi Trends", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.9033, "LONGITUDE": -75.240677, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 170.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3609.0, "Total Transactions": 97.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.04, "MEDIAN_SPEND_PER_CUSTOMER": 21.02 }, "geometry": { "type": "Point", "coordinates": [ -75.240677, 39.9033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-tgk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045215, "LONGITUDE": -75.086673, "DATE_RANGE_START": 2024, "Total Visits": 1161.0, "Total Visitors": 720.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 21.0, "Total Spend": 9886.0, "Total Transactions": 534.0, "Total Customers": 334.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.05, "MEDIAN_SPEND_PER_CUSTOMER": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.086673, 40.045215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "LOCATION_NAME": "Linden Italian Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054575, "LONGITUDE": -75.004237, "DATE_RANGE_START": 2024, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010352003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 958.0, "Total Transactions": 41.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.54, "MEDIAN_SPEND_PER_CUSTOMER": 22.67 }, "geometry": { "type": "Point", "coordinates": [ -75.004237, 40.054575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.081792, "LONGITUDE": -75.172107, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1413.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.18 }, "geometry": { "type": "Point", "coordinates": [ -75.172107, 40.081792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "LOCATION_NAME": "Suraya", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2024, "Total Visits": 400.0, "Total Visitors": 338.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 54.0, "Total Spend": 11758.0, "Total Transactions": 71.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 171.6, "MEDIAN_SPEND_PER_CUSTOMER": 195.86 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj2-94v", "LOCATION_NAME": "Classic Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001175, "LONGITUDE": -75.114716, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": null, "Total Spend": 714.0, "Total Transactions": 59.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.69, "MEDIAN_SPEND_PER_CUSTOMER": 23.14 }, "geometry": { "type": "Point", "coordinates": [ -75.114716, 40.001175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044504, "LONGITUDE": -75.086891, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 49136.0, "Total Transactions": 17.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 3855.38, "MEDIAN_SPEND_PER_CUSTOMER": 131.24 }, "geometry": { "type": "Point", "coordinates": [ -75.086891, 40.044504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050839, "LONGITUDE": -75.066157, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 110.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.84, "MEDIAN_SPEND_PER_CUSTOMER": 41.84 }, "geometry": { "type": "Point", "coordinates": [ -75.066157, 40.050839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961452, "LONGITUDE": -75.14456, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1932.0, "Total Transactions": 74.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.33, "MEDIAN_SPEND_PER_CUSTOMER": 24.63 }, "geometry": { "type": "Point", "coordinates": [ -75.14456, 39.961452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.021239, "LONGITUDE": -75.149898, "DATE_RANGE_START": 2024, "Total Visits": 889.0, "Total Visitors": 711.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1402.0, "Total Transactions": 79.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.61, "MEDIAN_SPEND_PER_CUSTOMER": 15.43 }, "geometry": { "type": "Point", "coordinates": [ -75.149898, 40.021239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.94021, "LONGITUDE": -75.151622, "DATE_RANGE_START": 2024, "Total Visits": 1655.0, "Total Visitors": 965.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 4392.0, "Total Transactions": 208.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.48, "MEDIAN_SPEND_PER_CUSTOMER": 10.49 }, "geometry": { "type": "Point", "coordinates": [ -75.151622, 39.94021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 319.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 420.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.29, "MEDIAN_SPEND_PER_CUSTOMER": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-y9z", "LOCATION_NAME": "Jim's South St", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941492, "LONGITUDE": -75.149322, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 165.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 595.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.72, "MEDIAN_SPEND_PER_CUSTOMER": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.149322, 39.941492 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-ks5", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951718, "LONGITUDE": -75.144312, "DATE_RANGE_START": 2024, "Total Visits": 894.0, "Total Visitors": 365.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 326.0, "Total Spend": 213.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.93, "MEDIAN_SPEND_PER_CUSTOMER": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 39.951718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25g-222@63s-dw2-9zz", "LOCATION_NAME": "Market Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962365, "LONGITUDE": -75.242054, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 115.0, "POI_CBG": 421010096002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 62.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.4, "MEDIAN_SPEND_PER_CUSTOMER": 11.43 }, "geometry": { "type": "Point", "coordinates": [ -75.242054, 39.962365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2024, "Total Visits": 536.0, "Total Visitors": 350.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1200.0, "Total Transactions": 92.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.0, "MEDIAN_SPEND_PER_CUSTOMER": 7.76 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "LOCATION_NAME": "Old Navy", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.084661, "LONGITUDE": -74.961824, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2537.0, "Total Transactions": 36.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.84, "MEDIAN_SPEND_PER_CUSTOMER": 30.84 }, "geometry": { "type": "Point", "coordinates": [ -74.961824, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "LOCATION_NAME": "The Last Word Bookshop", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2613.0, "Total Transactions": 125.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.09, "MEDIAN_SPEND_PER_CUSTOMER": 19.57 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.101494, "LONGITUDE": -75.030237, "DATE_RANGE_START": 2024, "Total Visits": 951.0, "Total Visitors": 723.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 141.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.38, "MEDIAN_SPEND_PER_CUSTOMER": 53.48 }, "geometry": { "type": "Point", "coordinates": [ -75.030237, 40.101494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-kj9", "LOCATION_NAME": "Olc", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.953669, "LONGITUDE": -75.145037, "DATE_RANGE_START": 2024, "Total Visits": 509.0, "Total Visitors": 390.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2327.0, "Total Transactions": 34.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.0, "MEDIAN_SPEND_PER_CUSTOMER": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145037, 39.953669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dvy-pn5", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954368, "LONGITUDE": -75.202799, "DATE_RANGE_START": 2024, "Total Visits": 1102.0, "Total Visitors": 562.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 14.0, "Total Spend": 146522.0, "Total Transactions": 6407.0, "Total Customers": 2230.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.65, "MEDIAN_SPEND_PER_CUSTOMER": 30.72 }, "geometry": { "type": "Point", "coordinates": [ -75.202799, 39.954368 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "LOCATION_NAME": "Rapoport Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 126.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 105.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.46, "MEDIAN_SPEND_PER_CUSTOMER": 11.46 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947798, "LONGITUDE": -75.1598, "DATE_RANGE_START": 2024, "Total Visits": 1402.0, "Total Visitors": 931.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 18.0, "Total Spend": 4434.0, "Total Transactions": 172.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.94, "MEDIAN_SPEND_PER_CUSTOMER": 22.24 }, "geometry": { "type": "Point", "coordinates": [ -75.1598, 39.947798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8n5", "LOCATION_NAME": "Primark", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951745, "LONGITUDE": -75.15699, "DATE_RANGE_START": 2024, "Total Visits": 13727.0, "Total Visitors": 7998.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 59954.0, "Total Transactions": 1733.0, "Total Customers": 1505.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.24, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15699, 39.951745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgj-cbk", "LOCATION_NAME": "Columbia Fish", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.9795, "LONGITUDE": -75.162782, "DATE_RANGE_START": 2024, "Total Visits": 101.0, "Total Visitors": 78.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1100.0, "Total Transactions": 130.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162782, 39.9795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wzf", "LOCATION_NAME": "Bravo Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030409, "LONGITUDE": -75.145574, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 104.0, "POI_CBG": 421010282001.0, "MEDIAN_DWELL": 310.0, "Total Spend": 2880.0, "Total Transactions": 129.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.25, "MEDIAN_SPEND_PER_CUSTOMER": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145574, 40.030409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "LOCATION_NAME": "Baltimore Pet Shoppe", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 397.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.42, "MEDIAN_SPEND_PER_CUSTOMER": 31.04 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-qxq", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.991686, "LONGITUDE": -75.099246, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 551.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.0, "MEDIAN_SPEND_PER_CUSTOMER": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.099246, 39.991686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pj3-fxq", "LOCATION_NAME": "T & N Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.024855, "LONGITUDE": -75.166215, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010244003.0, "MEDIAN_DWELL": null, "Total Spend": 904.0, "Total Transactions": 76.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.87 }, "geometry": { "type": "Point", "coordinates": [ -75.166215, 40.024855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-vcq", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.998344, "LONGITUDE": -75.136151, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 146.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 12.0, "Total Spend": 138.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.47, "MEDIAN_SPEND_PER_CUSTOMER": 52.47 }, "geometry": { "type": "Point", "coordinates": [ -75.136151, 39.998344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-qs5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.991433, "LONGITUDE": -75.097815, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 625.0, "Total Transactions": 24.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 26.53 }, "geometry": { "type": "Point", "coordinates": [ -75.097815, 39.991433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pp5-gtv", "LOCATION_NAME": "Olde Philly Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.981059, "LONGITUDE": -75.10981, "DATE_RANGE_START": 2024, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010180024.0, "MEDIAN_DWELL": 2.0, "Total Spend": 558.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.06, "MEDIAN_SPEND_PER_CUSTOMER": 13.57 }, "geometry": { "type": "Point", "coordinates": [ -75.10981, 39.981059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008138, "LONGITUDE": -75.173207, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 543.0, "Total Transactions": 29.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.67, "MEDIAN_SPEND_PER_CUSTOMER": 24.63 }, "geometry": { "type": "Point", "coordinates": [ -75.173207, 40.008138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948784, "LONGITUDE": -75.160455, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3417.0, "Total Transactions": 407.0, "Total Customers": 273.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.64, "MEDIAN_SPEND_PER_CUSTOMER": 8.21 }, "geometry": { "type": "Point", "coordinates": [ -75.160455, 39.948784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.012964, "LONGITUDE": -75.15104, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2462.0, "Total Transactions": 47.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.64, "MEDIAN_SPEND_PER_CUSTOMER": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.15104, 40.012964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-nkf", "LOCATION_NAME": "Ho May House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01822, "LONGITUDE": -75.134281, "DATE_RANGE_START": 2024, "Total Visits": 169.0, "Total Visitors": 150.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 47.0, "Total Spend": 387.0, "Total Transactions": 11.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134281, 40.01822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.912498, "LONGITUDE": -75.15633, "DATE_RANGE_START": 2024, "Total Visits": 1679.0, "Total Visitors": 1482.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 17.0, "Total Spend": 13307.0, "Total Transactions": 305.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.1, "MEDIAN_SPEND_PER_CUSTOMER": 36.53 }, "geometry": { "type": "Point", "coordinates": [ -75.15633, 39.912498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgk-28v", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.993135, "LONGITUDE": -75.152859, "DATE_RANGE_START": 2024, "Total Visits": 329.0, "Total Visitors": 197.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 364.0, "Total Transactions": 22.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.152859, 39.993135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg4-mx5", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.043579, "LONGITUDE": -75.159459, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010247002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1212.0, "Total Transactions": 26.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.21, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.159459, 40.043579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg2-hdv", "LOCATION_NAME": "Mi Puebla Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059999, "LONGITUDE": -75.19073, "DATE_RANGE_START": 2024, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1912.0, "Total Transactions": 50.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.16, "MEDIAN_SPEND_PER_CUSTOMER": 41.84 }, "geometry": { "type": "Point", "coordinates": [ -75.19073, 40.059999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-6c5", "LOCATION_NAME": "Szechuan Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003122, "LONGITUDE": -75.065788, "DATE_RANGE_START": 2024, "Total Visits": 378.0, "Total Visitors": 278.0, "POI_CBG": 421010184002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 451.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.58, "MEDIAN_SPEND_PER_CUSTOMER": 27.58 }, "geometry": { "type": "Point", "coordinates": [ -75.065788, 40.003122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-975", "LOCATION_NAME": "Goldie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952988, "LONGITUDE": -75.192295, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 212.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.08, "MEDIAN_SPEND_PER_CUSTOMER": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192295, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "LOCATION_NAME": "Foot Locker", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.047953, "LONGITUDE": -75.055758, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2904.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.0, "MEDIAN_SPEND_PER_CUSTOMER": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055758, 40.047953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "LOCATION_NAME": "Honey Bee Gourmet Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945912, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2024, "Total Visits": 316.0, "Total Visitors": 280.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 67.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.75, "MEDIAN_SPEND_PER_CUSTOMER": 4.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 39.945912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pg8-ks5", "LOCATION_NAME": "Rybrew", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974204, "LONGITUDE": -75.182529, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 5456.0, "Total Transactions": 316.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.8, "MEDIAN_SPEND_PER_CUSTOMER": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.182529, 39.974204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "LOCATION_NAME": "Mammoth Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970161, "LONGITUDE": -75.146356, "DATE_RANGE_START": 2024, "Total Visits": 333.0, "Total Visitors": 311.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1498.0, "Total Transactions": 155.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.56, "MEDIAN_SPEND_PER_CUSTOMER": 12.73 }, "geometry": { "type": "Point", "coordinates": [ -75.146356, 39.970161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2024, "Total Visits": 402.0, "Total Visitors": 263.0, "POI_CBG": 421010389003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3684.0, "Total Transactions": 179.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.06, "MEDIAN_SPEND_PER_CUSTOMER": 15.48 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-pmf-qpv", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.94287, "LONGITUDE": -75.165374, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 163.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 735.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.44, "MEDIAN_SPEND_PER_CUSTOMER": 28.72 }, "geometry": { "type": "Point", "coordinates": [ -75.165374, 39.94287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-phy-dqf", "LOCATION_NAME": "A and B Beer Distributor", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.016766, "LONGITUDE": -75.117111, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5923.0, "Total Transactions": 178.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.117111, 40.016766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "LOCATION_NAME": "Party City", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2024, "Total Visits": 475.0, "Total Visitors": 425.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 13058.0, "Total Transactions": 382.0, "Total Customers": 311.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.9, "MEDIAN_SPEND_PER_CUSTOMER": 31.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "LOCATION_NAME": "Cafe Lift", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 99.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 5870.0, "Total Transactions": 104.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.39, "MEDIAN_SPEND_PER_CUSTOMER": 53.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2024, "Total Visits": 305.0, "Total Visitors": 115.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 125.0, "Total Spend": 5441.0, "Total Transactions": 62.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.79, "MEDIAN_SPEND_PER_CUSTOMER": 90.45 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.020882, "LONGITUDE": -75.134715, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 967.0, "Total Transactions": 51.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.134715, 40.020882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgd-w49", "LOCATION_NAME": "Chris'pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963715, "LONGITUDE": -75.196155, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010108003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 71.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.196155, 39.963715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "LOCATION_NAME": "Tony Luke's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 153.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 95.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.66, "MEDIAN_SPEND_PER_CUSTOMER": 17.66 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9m-gtv", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.08083, "LONGITUDE": -74.993713, "DATE_RANGE_START": 2024, "Total Visits": 591.0, "Total Visitors": 411.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 67.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.79, "MEDIAN_SPEND_PER_CUSTOMER": 18.79 }, "geometry": { "type": "Point", "coordinates": [ -74.993713, 40.08083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8d-yn5", "LOCATION_NAME": "Joe's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.014176, "LONGITUDE": -75.07103, "DATE_RANGE_START": 2024, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010299003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 984.0, "Total Transactions": 72.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.07103, 40.014176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2024, "Total Visits": 1107.0, "Total Visitors": 777.0, "POI_CBG": 421010085001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 10784.0, "Total Transactions": 819.0, "Total Customers": 566.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.6, "MEDIAN_SPEND_PER_CUSTOMER": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "LOCATION_NAME": "New Zem Zem Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010246003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1711.0, "Total Transactions": 67.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.13, "MEDIAN_SPEND_PER_CUSTOMER": 30.57 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7v-f9f", "LOCATION_NAME": "Sherwin-Williams", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.05264, "LONGITUDE": -75.064246, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 87.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 260.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.59, "MEDIAN_SPEND_PER_CUSTOMER": 98.59 }, "geometry": { "type": "Point", "coordinates": [ -75.064246, 40.05264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "LOCATION_NAME": "Crash Bang Boom", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2024, "Total Visits": 482.0, "Total Visitors": 453.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 153.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.036515, "LONGITUDE": -75.108096, "DATE_RANGE_START": 2024, "Total Visits": 299.0, "Total Visitors": 230.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1792.0, "Total Transactions": 51.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.108096, 40.036515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-snq", "LOCATION_NAME": "Atlanta Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922758, "LONGITUDE": -75.186158, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 151.0, "POI_CBG": 421010037023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 81.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.186158, 39.922758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-5pv", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982882, "LONGITUDE": -75.10466, "DATE_RANGE_START": 2024, "Total Visits": 67.0, "Total Visitors": 25.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 431.0, "Total Spend": 2959.0, "Total Transactions": 179.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 18.13 }, "geometry": { "type": "Point", "coordinates": [ -75.10466, 39.982882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2024, "Total Visits": 941.0, "Total Visitors": 664.0, "POI_CBG": 421010337022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7183.0, "Total Transactions": 358.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.25, "MEDIAN_SPEND_PER_CUSTOMER": 15.58 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7z-7kf", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062355, "LONGITUDE": -75.08469, "DATE_RANGE_START": 2024, "Total Visits": 413.0, "Total Visitors": 330.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 299.0, "Total Transactions": 16.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.22, "MEDIAN_SPEND_PER_CUSTOMER": 25.13 }, "geometry": { "type": "Point", "coordinates": [ -75.08469, 40.062355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pm6-6hq", "LOCATION_NAME": "Greene Street", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.921679, "LONGITUDE": -75.144266, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 169.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 206.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.86, "MEDIAN_SPEND_PER_CUSTOMER": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.144266, 39.921679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg9-xh5", "LOCATION_NAME": "Coffee Cream & Dreams", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966924, "LONGITUDE": -75.162284, "DATE_RANGE_START": 2024, "Total Visits": 107.0, "Total Visitors": 107.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 161.0, "Total Transactions": 18.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.13, "MEDIAN_SPEND_PER_CUSTOMER": 8.88 }, "geometry": { "type": "Point", "coordinates": [ -75.162284, 39.966924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.02134, "LONGITUDE": -75.133414, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 420.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.25, "MEDIAN_SPEND_PER_CUSTOMER": 54.17 }, "geometry": { "type": "Point", "coordinates": [ -75.133414, 40.02134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.034029, "LONGITUDE": -75.072579, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 4.0, "POI_CBG": 421010318001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 928.0, "Total Transactions": 43.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.09, "MEDIAN_SPEND_PER_CUSTOMER": 25.55 }, "geometry": { "type": "Point", "coordinates": [ -75.072579, 40.034029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "LOCATION_NAME": "1 Stop Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2024, "Total Visits": 233.0, "Total Visitors": 187.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 18829.0, "Total Transactions": 986.0, "Total Customers": 341.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.97, "MEDIAN_SPEND_PER_CUSTOMER": 22.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951327, "LONGITUDE": -75.158193, "DATE_RANGE_START": 2024, "Total Visits": 1534.0, "Total Visitors": 1118.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7423.0, "Total Transactions": 446.0, "Total Customers": 366.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.62, "MEDIAN_SPEND_PER_CUSTOMER": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.158193, 39.951327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9w-sdv", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.123431, "LONGITUDE": -75.01617, "DATE_RANGE_START": 2024, "Total Visits": 735.0, "Total Visitors": 516.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 257.0, "Total Transactions": 9.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.95, "MEDIAN_SPEND_PER_CUSTOMER": 49.1 }, "geometry": { "type": "Point", "coordinates": [ -75.01617, 40.123431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2024, "Total Visits": 667.0, "Total Visitors": 532.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 84.0, "Total Transactions": 13.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.8, "MEDIAN_SPEND_PER_CUSTOMER": 6.55 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "LOCATION_NAME": "Beer Express", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2024, "Total Visits": 162.0, "Total Visitors": 145.0, "POI_CBG": 421010358001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5749.0, "Total Transactions": 187.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.52, "MEDIAN_SPEND_PER_CUSTOMER": 31.63 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "LOCATION_NAME": "South", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2024, "Total Visits": 270.0, "Total Visitors": 251.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 847.0, "Total Transactions": 21.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.35, "MEDIAN_SPEND_PER_CUSTOMER": 58.24 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pp4-snq", "LOCATION_NAME": "Good Time Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.97726, "LONGITUDE": -75.123641, "DATE_RANGE_START": 2024, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1003.0, "Total Transactions": 29.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.77, "MEDIAN_SPEND_PER_CUSTOMER": 31.64 }, "geometry": { "type": "Point", "coordinates": [ -75.123641, 39.97726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-y7q", "LOCATION_NAME": "Paris Baguette", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953873, "LONGITUDE": -75.155694, "DATE_RANGE_START": 2024, "Total Visits": 417.0, "Total Visitors": 242.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 31625.0, "Total Transactions": 2330.0, "Total Customers": 1557.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.62, "MEDIAN_SPEND_PER_CUSTOMER": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -75.155694, 39.953873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pm9-wc5", "LOCATION_NAME": "Rustica Rosticceria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949727, "LONGITUDE": -75.148072, "DATE_RANGE_START": 2024, "Total Visits": 1988.0, "Total Visitors": 1381.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 90.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148072, 39.949727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2024, "Total Visits": 1310.0, "Total Visitors": 844.0, "POI_CBG": 421010040012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2480.0, "Total Transactions": 116.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.38 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp2-qzz", "LOCATION_NAME": "Cambridge Beauty Supplies", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.994277, "LONGITUDE": -75.097332, "DATE_RANGE_START": 2024, "Total Visits": 549.0, "Total Visitors": 204.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 391.0, "Total Spend": 124.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.23, "MEDIAN_SPEND_PER_CUSTOMER": 47.23 }, "geometry": { "type": "Point", "coordinates": [ -75.097332, 39.994277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.914321, "LONGITUDE": -75.149506, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 361.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.5, "MEDIAN_SPEND_PER_CUSTOMER": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149506, 39.914321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "LOCATION_NAME": "Nori Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2024, "Total Visits": 96.0, "Total Visitors": 96.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 371.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.4, "MEDIAN_SPEND_PER_CUSTOMER": 34.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pnx-bzf", "LOCATION_NAME": "Wokworks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97337, "LONGITUDE": -75.133561, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 222.0, "Total Spend": 110.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.74, "MEDIAN_SPEND_PER_CUSTOMER": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.133561, 39.97337 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950673, "LONGITUDE": -75.167022, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6937.0, "Total Transactions": 1027.0, "Total Customers": 361.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.61, "MEDIAN_SPEND_PER_CUSTOMER": 8.24 }, "geometry": { "type": "Point", "coordinates": [ -75.167022, 39.950673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 182.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 873.0, "Total Transactions": 47.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.26, "MEDIAN_SPEND_PER_CUSTOMER": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgf-g49", "LOCATION_NAME": "Texas Wiener", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963218, "LONGITUDE": -75.20203, "DATE_RANGE_START": 2024, "Total Visits": 341.0, "Total Visitors": 178.0, "POI_CBG": 421010108004.0, "MEDIAN_DWELL": 48.0, "Total Spend": 1259.0, "Total Transactions": 91.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.81 }, "geometry": { "type": "Point", "coordinates": [ -75.20203, 39.963218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7z-tgk", "LOCATION_NAME": "Kitchen B & L", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044921, "LONGITUDE": -75.086402, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 165.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2761.0, "Total Transactions": 133.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.86, "MEDIAN_SPEND_PER_CUSTOMER": 21.22 }, "geometry": { "type": "Point", "coordinates": [ -75.086402, 40.044921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "LOCATION_NAME": "Lucky's Last Chance", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 186.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 790.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.22, "MEDIAN_SPEND_PER_CUSTOMER": 47.22 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvp-bff", "LOCATION_NAME": "Beer Stop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.945295, "LONGITUDE": -75.238695, "DATE_RANGE_START": 2024, "Total Visits": 619.0, "Total Visitors": 359.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3095.0, "Total Transactions": 104.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.57, "MEDIAN_SPEND_PER_CUSTOMER": 31.88 }, "geometry": { "type": "Point", "coordinates": [ -75.238695, 39.945295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "LOCATION_NAME": "Local 44", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952832, "LONGITUDE": -75.210325, "DATE_RANGE_START": 2024, "Total Visits": 692.0, "Total Visitors": 209.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 334.0, "Total Spend": 14921.0, "Total Transactions": 334.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.77, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210325, 39.952832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-w49", "LOCATION_NAME": "The Bakeshop on 20th", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948428, "LONGITUDE": -75.174139, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 187.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 1.0, "Total Spend": 57.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.47, "MEDIAN_SPEND_PER_CUSTOMER": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.174139, 39.948428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 97.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 29.0, "Total Spend": 10245.0, "Total Transactions": 380.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.36, "MEDIAN_SPEND_PER_CUSTOMER": 31.73 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051659, "LONGITUDE": -75.008179, "DATE_RANGE_START": 2024, "Total Visits": 617.0, "Total Visitors": 487.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 932.0, "Total Transactions": 46.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.18, "MEDIAN_SPEND_PER_CUSTOMER": 36.48 }, "geometry": { "type": "Point", "coordinates": [ -75.008179, 40.051659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnw-k4v", "LOCATION_NAME": "Sherwin-Williams", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.968404, "LONGITUDE": -75.135304, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 116.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 249.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.63, "MEDIAN_SPEND_PER_CUSTOMER": 94.66 }, "geometry": { "type": "Point", "coordinates": [ -75.135304, 39.968404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "LOCATION_NAME": "Fair Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.968518, "LONGITUDE": -75.180495, "DATE_RANGE_START": 2024, "Total Visits": 345.0, "Total Visitors": 211.0, "POI_CBG": 421010136012.0, "MEDIAN_DWELL": 84.0, "Total Spend": 3536.0, "Total Transactions": 325.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 12.04 }, "geometry": { "type": "Point", "coordinates": [ -75.180495, 39.968518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "LOCATION_NAME": "Four Seasons Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 207.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 395.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.75, "MEDIAN_SPEND_PER_CUSTOMER": 22.75 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-ty9", "LOCATION_NAME": "Shane Confectionery", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.949497, "LONGITUDE": -75.14262, "DATE_RANGE_START": 2024, "Total Visits": 1380.0, "Total Visitors": 843.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 709.0, "Total Spend": 3599.0, "Total Transactions": 108.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.78, "MEDIAN_SPEND_PER_CUSTOMER": 28.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14262, 39.949497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "LOCATION_NAME": "Monde Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.952049, "LONGITUDE": -75.175756, "DATE_RANGE_START": 2024, "Total Visits": 516.0, "Total Visitors": 316.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 13783.0, "Total Transactions": 1103.0, "Total Customers": 429.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.03, "MEDIAN_SPEND_PER_CUSTOMER": 17.11 }, "geometry": { "type": "Point", "coordinates": [ -75.175756, 39.952049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "LOCATION_NAME": "Nova Star Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.969977, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 41.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 346.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mx5", "LOCATION_NAME": "Jos. A. Bank Clothiers", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952606, "LONGITUDE": -75.168302, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 5571.0, "Total Transactions": 38.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 91.76, "MEDIAN_SPEND_PER_CUSTOMER": 91.76 }, "geometry": { "type": "Point", "coordinates": [ -75.168302, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.907731, "LONGITUDE": -75.189099, "DATE_RANGE_START": 2024, "Total Visits": 612.0, "Total Visitors": 561.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1010.0, "Total Transactions": 59.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.84, "MEDIAN_SPEND_PER_CUSTOMER": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.189099, 39.907731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "LOCATION_NAME": "Journeys", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2024, "Total Visits": 334.0, "Total Visitors": 328.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3598.0, "Total Transactions": 32.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.47, "MEDIAN_SPEND_PER_CUSTOMER": 97.49 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "LOCATION_NAME": "Mariposa Food Co op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947933, "LONGITUDE": -75.220657, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 115.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 174.0, "Total Spend": 24323.0, "Total Transactions": 881.0, "Total Customers": 394.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.71, "MEDIAN_SPEND_PER_CUSTOMER": 36.12 }, "geometry": { "type": "Point", "coordinates": [ -75.220657, 39.947933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2024, "Total Visits": 1006.0, "Total Visitors": 706.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 10660.0, "Total Transactions": 457.0, "Total Customers": 282.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 21.42 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "LOCATION_NAME": "Yamitsuki Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 254.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5861.0, "Total Transactions": 122.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.37, "MEDIAN_SPEND_PER_CUSTOMER": 42.64 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-22r@628-pmb-6tv", "LOCATION_NAME": "Brooklyn Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952448, "LONGITUDE": -75.167954, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 422.0, "Total Transactions": 32.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.41, "MEDIAN_SPEND_PER_CUSTOMER": 12.41 }, "geometry": { "type": "Point", "coordinates": [ -75.167954, 39.952448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22c@628-pj6-jsq", "LOCATION_NAME": "Jopok Topokki", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044523, "LONGITUDE": -75.117651, "DATE_RANGE_START": 2024, "Total Visits": 4471.0, "Total Visitors": 2998.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 980.0, "Total Transactions": 67.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.117651, 40.044523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-ch5", "LOCATION_NAME": "La Roca", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023561, "LONGITUDE": -75.219763, "DATE_RANGE_START": 2024, "Total Visits": 234.0, "Total Visitors": 203.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 63.0, "Total Spend": 1335.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.31, "MEDIAN_SPEND_PER_CUSTOMER": 41.48 }, "geometry": { "type": "Point", "coordinates": [ -75.219763, 40.023561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-5mk", "LOCATION_NAME": "McGillin's Olde Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95021, "LONGITUDE": -75.162564, "DATE_RANGE_START": 2024, "Total Visits": 350.0, "Total Visitors": 262.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 49.0, "Total Spend": 48616.0, "Total Transactions": 1710.0, "Total Customers": 1186.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162564, 39.95021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "LOCATION_NAME": "Microtel Inn and Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2024, "Total Visits": 483.0, "Total Visitors": 305.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 175.0, "Total Spend": 5377.0, "Total Transactions": 34.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 127.88, "MEDIAN_SPEND_PER_CUSTOMER": 135.73 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-3kf", "LOCATION_NAME": "South Side Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925364, "LONGITUDE": -75.159106, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 128.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.4, "MEDIAN_SPEND_PER_CUSTOMER": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159106, 39.925364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pgf-73q", "LOCATION_NAME": "Great Taste", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965401, "LONGITUDE": -75.205637, "DATE_RANGE_START": 2024, "Total Visits": 516.0, "Total Visitors": 445.0, "POI_CBG": 421010107002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 275.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.5, "MEDIAN_SPEND_PER_CUSTOMER": 43.75 }, "geometry": { "type": "Point", "coordinates": [ -75.205637, 39.965401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-pjv", "LOCATION_NAME": "Murph's Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968904, "LONGITUDE": -75.133385, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 165.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 882.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 202.5, "MEDIAN_SPEND_PER_CUSTOMER": 202.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133385, 39.968904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8f-9cq", "LOCATION_NAME": "D & R Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.012762, "LONGITUDE": -75.081478, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 12.0, "POI_CBG": 421010300005.0, "MEDIAN_DWELL": 16.0, "Total Spend": 559.0, "Total Transactions": 62.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.74, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.081478, 40.012762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009461, "LONGITUDE": -75.150664, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010203001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2837.0, "Total Transactions": 378.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 10.83 }, "geometry": { "type": "Point", "coordinates": [ -75.150664, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "LOCATION_NAME": "Warwick Hotel Rittenhouse Square", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949172, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2024, "Total Visits": 1274.0, "Total Visitors": 898.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 173.0, "Total Spend": 6880.0, "Total Transactions": 49.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.66, "MEDIAN_SPEND_PER_CUSTOMER": 36.54 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.949172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-w6k", "LOCATION_NAME": "National Mechanics", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.94956, "LONGITUDE": -75.146014, "DATE_RANGE_START": 2024, "Total Visits": 230.0, "Total Visitors": 226.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 35.0, "Total Spend": 1046.0, "Total Transactions": 25.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.96, "MEDIAN_SPEND_PER_CUSTOMER": 33.61 }, "geometry": { "type": "Point", "coordinates": [ -75.146014, 39.94956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-xt9", "LOCATION_NAME": "Family Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.987227, "LONGITUDE": -75.138158, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 25.0, "POI_CBG": 421010163004.0, "MEDIAN_DWELL": 46.0, "Total Spend": 521.0, "Total Transactions": 70.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.27, "MEDIAN_SPEND_PER_CUSTOMER": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.138158, 39.987227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2024, "Total Visits": 527.0, "Total Visitors": 348.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1208.0, "Total Transactions": 97.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.05, "MEDIAN_SPEND_PER_CUSTOMER": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-rkz", "LOCATION_NAME": "Cafe Lutecia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946587, "LONGITUDE": -75.179627, "DATE_RANGE_START": 2024, "Total Visits": 121.0, "Total Visitors": 121.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 39.0, "Total Spend": 479.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.75, "MEDIAN_SPEND_PER_CUSTOMER": 59.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179627, 39.946587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "LOCATION_NAME": "Bruno's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 93.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 246.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.44, "MEDIAN_SPEND_PER_CUSTOMER": 24.44 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@63s-dw9-8n5", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.877273, "LONGITUDE": -75.245918, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 11.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2647.0, "Total Transactions": 140.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.19, "MEDIAN_SPEND_PER_CUSTOMER": 17.55 }, "geometry": { "type": "Point", "coordinates": [ -75.245918, 39.877273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2024, "Total Visits": 384.0, "Total Visitors": 344.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3996.0, "Total Transactions": 295.0, "Total Customers": 222.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.3, "MEDIAN_SPEND_PER_CUSTOMER": 14.64 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "LOCATION_NAME": "Beer Baron", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2024, "Total Visits": 1875.0, "Total Visitors": 943.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6080.0, "Total Transactions": 233.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.67, "MEDIAN_SPEND_PER_CUSTOMER": 35.59 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "LOCATION_NAME": "Macy's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.046805, "LONGITUDE": -75.05474, "DATE_RANGE_START": 2024, "Total Visits": 2145.0, "Total Visitors": 1576.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 7697.0, "Total Transactions": 65.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.6, "MEDIAN_SPEND_PER_CUSTOMER": 87.38 }, "geometry": { "type": "Point", "coordinates": [ -75.05474, 40.046805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "LOCATION_NAME": "Mr. Tire", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 61.0, "POI_CBG": 421010316006.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4475.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 682.94, "MEDIAN_SPEND_PER_CUSTOMER": 682.94 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kj9", "LOCATION_NAME": "Fleur De Lis Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950913, "LONGITUDE": -75.176137, "DATE_RANGE_START": 2024, "Total Visits": 2941.0, "Total Visitors": 2221.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 585.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176137, 39.950913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "LOCATION_NAME": "Repo Records", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2024, "Total Visits": 610.0, "Total Visitors": 515.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 12765.0, "Total Transactions": 309.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.23, "MEDIAN_SPEND_PER_CUSTOMER": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "LOCATION_NAME": "Total Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 53.0, "Total Spend": 4558.0, "Total Transactions": 158.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.98, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-pqf", "LOCATION_NAME": "Senoj Clothing", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.944292, "LONGITUDE": -75.169204, "DATE_RANGE_START": 2024, "Total Visits": 499.0, "Total Visitors": 391.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 205.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.0, "MEDIAN_SPEND_PER_CUSTOMER": 78.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169204, 39.944292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6hq", "LOCATION_NAME": "Nurses Uniform Place", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950135, "LONGITUDE": -75.158882, "DATE_RANGE_START": 2024, "Total Visits": 5134.0, "Total Visitors": 2192.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 96.0, "Total Spend": 99.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.5, "MEDIAN_SPEND_PER_CUSTOMER": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158882, 39.950135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2024, "Total Visits": 951.0, "Total Visitors": 637.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 7.0, "Total Spend": 11352.0, "Total Transactions": 487.0, "Total Customers": 352.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.99, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029034, "LONGITUDE": -75.099595, "DATE_RANGE_START": 2024, "Total Visits": 2468.0, "Total Visitors": 1871.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8423.0, "Total Transactions": 459.0, "Total Customers": 407.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.56, "MEDIAN_SPEND_PER_CUSTOMER": 18.13 }, "geometry": { "type": "Point", "coordinates": [ -75.099595, 40.029034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-yd9", "LOCATION_NAME": "Queen Village Food Market & Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940822, "LONGITUDE": -75.149126, "DATE_RANGE_START": 2024, "Total Visits": 78.0, "Total Visitors": 22.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 528.0, "Total Spend": 84.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.149126, 39.940822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948451, "LONGITUDE": -75.159308, "DATE_RANGE_START": 2024, "Total Visits": 440.0, "Total Visitors": 396.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 8.0, "Total Spend": 6332.0, "Total Transactions": 1030.0, "Total Customers": 411.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.159308, 39.948451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-w49", "LOCATION_NAME": "Seafood Unlimited", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948416, "LONGITUDE": -75.174494, "DATE_RANGE_START": 2024, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 6.0, "Total Spend": 481.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.24, "MEDIAN_SPEND_PER_CUSTOMER": 48.58 }, "geometry": { "type": "Point", "coordinates": [ -75.174494, 39.948416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pmb-v75", "LOCATION_NAME": "Mei Mei Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948931, "LONGITUDE": -75.143532, "DATE_RANGE_START": 2024, "Total Visits": 286.0, "Total Visitors": 262.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 541.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.34, "MEDIAN_SPEND_PER_CUSTOMER": 97.34 }, "geometry": { "type": "Point", "coordinates": [ -75.143532, 39.948931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-6ff", "LOCATION_NAME": "sweetgreen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9484, "LONGITUDE": -75.157078, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 16401.0, "Total Transactions": 868.0, "Total Customers": 607.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.96, "MEDIAN_SPEND_PER_CUSTOMER": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.157078, 39.9484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "LOCATION_NAME": "Easy Pickins", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950726, "LONGITUDE": -75.160596, "DATE_RANGE_START": 2024, "Total Visits": 2597.0, "Total Visitors": 2089.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3354.0, "Total Transactions": 124.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.99, "MEDIAN_SPEND_PER_CUSTOMER": 20.19 }, "geometry": { "type": "Point", "coordinates": [ -75.160596, 39.950726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pfy-brk", "LOCATION_NAME": "Morrison Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.033993, "LONGITUDE": -75.215651, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 279.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.77, "MEDIAN_SPEND_PER_CUSTOMER": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.215651, 40.033993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "LOCATION_NAME": "Moonlight Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2024, "Total Visits": 270.0, "Total Visitors": 219.0, "POI_CBG": 421010265004.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3064.0, "Total Transactions": 93.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.16, "MEDIAN_SPEND_PER_CUSTOMER": 37.44 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "LOCATION_NAME": "El Camino Real", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 116.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 3461.0, "Total Transactions": 45.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.56, "MEDIAN_SPEND_PER_CUSTOMER": 71.93 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "LOCATION_NAME": "Lee's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2024, "Total Visits": 103.0, "Total Visitors": 93.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 903.0, "Total Transactions": 68.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.85, "MEDIAN_SPEND_PER_CUSTOMER": 15.98 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950694, "LONGITUDE": -75.151921, "DATE_RANGE_START": 2024, "Total Visits": 582.0, "Total Visitors": 467.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4672.0, "Total Transactions": 599.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.53, "MEDIAN_SPEND_PER_CUSTOMER": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.151921, 39.950694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "LOCATION_NAME": "Pinoy Groseri", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": null, "Total Spend": 544.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.49, "MEDIAN_SPEND_PER_CUSTOMER": 72.49 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "LOCATION_NAME": "Reggae Reggae Vibes", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 51.0, "POI_CBG": 421010144003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 745.0, "Total Transactions": 45.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.41, "MEDIAN_SPEND_PER_CUSTOMER": 17.19 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-xyv", "LOCATION_NAME": "Pho 20", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956547, "LONGITUDE": -75.15583, "DATE_RANGE_START": 2024, "Total Visits": 201.0, "Total Visitors": 183.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2410.0, "Total Transactions": 82.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.94, "MEDIAN_SPEND_PER_CUSTOMER": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.15583, 39.956547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2024, "Total Visits": 741.0, "Total Visitors": 537.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5068.0, "Total Transactions": 570.0, "Total Customers": 199.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.16, "MEDIAN_SPEND_PER_CUSTOMER": 9.59 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "LOCATION_NAME": "Soy Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2024, "Total Visits": 423.0, "Total Visitors": 305.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1262.0, "Total Transactions": 86.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 10.96 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040675, "LONGITUDE": -75.076814, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010311012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 231.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.35, "MEDIAN_SPEND_PER_CUSTOMER": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.076814, 40.040675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006464, "LONGITUDE": -75.100401, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 25.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 11.0, "Total Spend": 376.0, "Total Transactions": 25.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.93, "MEDIAN_SPEND_PER_CUSTOMER": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.100401, 40.006464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "LOCATION_NAME": "HKS pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 41.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7524.0, "Total Transactions": 288.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.22, "MEDIAN_SPEND_PER_CUSTOMER": 17.91 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2024, "Total Visits": 850.0, "Total Visitors": 557.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 31463.0, "Total Transactions": 556.0, "Total Customers": 492.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.34, "MEDIAN_SPEND_PER_CUSTOMER": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.973478, "LONGITUDE": -75.159321, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010140003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 80.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.67, "MEDIAN_SPEND_PER_CUSTOMER": 12.67 }, "geometry": { "type": "Point", "coordinates": [ -75.159321, 39.973478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "LOCATION_NAME": "Barbuzzo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950022, "LONGITUDE": -75.162126, "DATE_RANGE_START": 2024, "Total Visits": 2534.0, "Total Visitors": 1894.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 3025.0, "Total Transactions": 36.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 98.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162126, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgy-ks5", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064334, "LONGITUDE": -75.23681, "DATE_RANGE_START": 2024, "Total Visits": 571.0, "Total Visitors": 241.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 13866.0, "Total Transactions": 837.0, "Total Customers": 541.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.77, "MEDIAN_SPEND_PER_CUSTOMER": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.23681, 40.064334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "LOCATION_NAME": "Rittenhouse Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 47.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 724.0, "Total Spend": 1052.0, "Total Transactions": 29.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.24, "MEDIAN_SPEND_PER_CUSTOMER": 25.24 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "LOCATION_NAME": "LIDS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.085645, "LONGITUDE": -74.96201, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1688.0, "Total Transactions": 33.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.59 }, "geometry": { "type": "Point", "coordinates": [ -74.96201, 40.085645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "LOCATION_NAME": "Race Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2024, "Total Visits": 125.0, "Total Visitors": 72.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 827.0, "Total Transactions": 72.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.84, "MEDIAN_SPEND_PER_CUSTOMER": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004813, "LONGITUDE": -75.179813, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8828.0, "Total Transactions": 749.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.22, "MEDIAN_SPEND_PER_CUSTOMER": 12.85 }, "geometry": { "type": "Point", "coordinates": [ -75.179813, 40.004813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "LOCATION_NAME": "Yiro Yiro", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032317, "LONGITUDE": -75.214274, "DATE_RANGE_START": 2024, "Total Visits": 986.0, "Total Visitors": 582.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1687.0, "Total Transactions": 65.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.71, "MEDIAN_SPEND_PER_CUSTOMER": 24.01 }, "geometry": { "type": "Point", "coordinates": [ -75.214274, 40.032317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2024, "Total Visits": 358.0, "Total Visitors": 182.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4737.0, "Total Transactions": 736.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "LOCATION_NAME": "Ibis Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010113002.0, "MEDIAN_DWELL": null, "Total Spend": 783.0, "Total Transactions": 34.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.42, "MEDIAN_SPEND_PER_CUSTOMER": 17.43 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5zz", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949084, "LONGITUDE": -75.159155, "DATE_RANGE_START": 2024, "Total Visits": 2542.0, "Total Visitors": 1748.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1785.0, "Total Transactions": 88.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.07, "MEDIAN_SPEND_PER_CUSTOMER": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.159155, 39.949084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmd-vmk", "LOCATION_NAME": "Erawan Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951764, "LONGITUDE": -75.178105, "DATE_RANGE_START": 2024, "Total Visits": 215.0, "Total Visitors": 166.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 739.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.2, "MEDIAN_SPEND_PER_CUSTOMER": 53.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178105, 39.951764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-975", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953116, "LONGITUDE": -75.19225, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5305.0, "Total Transactions": 570.0, "Total Customers": 369.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.51, "MEDIAN_SPEND_PER_CUSTOMER": 10.43 }, "geometry": { "type": "Point", "coordinates": [ -75.19225, 39.953116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-bc5", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963748, "LONGITUDE": -75.241226, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010096002.0, "MEDIAN_DWELL": null, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.241226, 39.963748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pm6-hbk", "LOCATION_NAME": "La Canasta Mexican Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91868, "LONGITUDE": -75.15377, "DATE_RANGE_START": 2024, "Total Visits": 483.0, "Total Visitors": 432.0, "POI_CBG": 421010042024.0, "MEDIAN_DWELL": 37.0, "Total Spend": 154.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.36, "MEDIAN_SPEND_PER_CUSTOMER": 17.36 }, "geometry": { "type": "Point", "coordinates": [ -75.15377, 39.91868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.954271, "LONGITUDE": -75.167991, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 37.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4600.0, "Total Transactions": 224.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.167991, 39.954271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.944247, "LONGITUDE": -75.172187, "DATE_RANGE_START": 2024, "Total Visits": 769.0, "Total Visitors": 579.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7154.0, "Total Transactions": 342.0, "Total Customers": 163.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.53, "MEDIAN_SPEND_PER_CUSTOMER": 25.08 }, "geometry": { "type": "Point", "coordinates": [ -75.172187, 39.944247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "258-222@628-pm3-t7q", "LOCATION_NAME": "Bertolinos Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.931136, "LONGITUDE": -75.164562, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 407.0, "Total Transactions": 38.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.94, "MEDIAN_SPEND_PER_CUSTOMER": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164562, 39.931136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "LOCATION_NAME": "Arctic Scoop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2024, "Total Visits": 105.0, "Total Visitors": 105.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": null, "Total Spend": 2480.0, "Total Transactions": 225.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.72, "MEDIAN_SPEND_PER_CUSTOMER": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950469, "LONGITUDE": -75.146233, "DATE_RANGE_START": 2024, "Total Visits": 1195.0, "Total Visitors": 972.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4567.0, "Total Transactions": 137.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.17, "MEDIAN_SPEND_PER_CUSTOMER": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.146233, 39.950469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pfy-h3q", "LOCATION_NAME": "Accent on Animals", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.044128, "LONGITUDE": -75.232181, "DATE_RANGE_START": 2024, "Total Visits": 294.0, "Total Visitors": 201.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1393.0, "Total Transactions": 58.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.97, "MEDIAN_SPEND_PER_CUSTOMER": 19.97 }, "geometry": { "type": "Point", "coordinates": [ -75.232181, 40.044128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2024, "Total Visits": 542.0, "Total Visitors": 390.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4069.0, "Total Transactions": 536.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 11.63 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "LOCATION_NAME": "Locust Rendezvous", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948574, "LONGITUDE": -75.165905, "DATE_RANGE_START": 2024, "Total Visits": 775.0, "Total Visitors": 481.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12844.0, "Total Transactions": 253.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.46, "MEDIAN_SPEND_PER_CUSTOMER": 51.73 }, "geometry": { "type": "Point", "coordinates": [ -75.165905, 39.948574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "LOCATION_NAME": "Sonny's Famous Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949809, "LONGITUDE": -75.144793, "DATE_RANGE_START": 2024, "Total Visits": 2309.0, "Total Visitors": 1785.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 9352.0, "Total Transactions": 329.0, "Total Customers": 292.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.88, "MEDIAN_SPEND_PER_CUSTOMER": 25.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.949809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-mrk", "LOCATION_NAME": "Elixr Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952527, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2024, "Total Visits": 1827.0, "Total Visitors": 868.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 140.0, "Total Spend": 125.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.952527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "LOCATION_NAME": "George's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2024, "Total Visits": 162.0, "Total Visitors": 136.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1880.0, "Total Transactions": 113.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.95 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-phz-xbk", "LOCATION_NAME": "Premium Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001089, "LONGITUDE": -75.110473, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 5.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 356.0, "Total Spend": 1638.0, "Total Transactions": 78.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.04, "MEDIAN_SPEND_PER_CUSTOMER": 22.79 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.001089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2024, "Total Visits": 527.0, "Total Visitors": 475.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4309.0, "Total Transactions": 481.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.43, "MEDIAN_SPEND_PER_CUSTOMER": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924715, "LONGITUDE": -75.169142, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 13.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 47.0, "Total Spend": 3734.0, "Total Transactions": 236.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.06, "MEDIAN_SPEND_PER_CUSTOMER": 16.35 }, "geometry": { "type": "Point", "coordinates": [ -75.169142, 39.924715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2024, "Total Visits": 465.0, "Total Visitors": 133.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 335.0, "Total Spend": 6339.0, "Total Transactions": 690.0, "Total Customers": 269.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.86, "MEDIAN_SPEND_PER_CUSTOMER": 12.27 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.928884, "LONGITUDE": -75.229306, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 222.0, "Total Spend": 3300.0, "Total Transactions": 395.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.81, "MEDIAN_SPEND_PER_CUSTOMER": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.229306, 39.928884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 320.0, "POI_CBG": 421010170003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1714.0, "Total Transactions": 39.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.9, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8n-6kz", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.027244, "LONGITUDE": -75.059172, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 217.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 7.0, "Total Spend": 101.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.059172, 40.027244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031374, "LONGITUDE": -75.083487, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 4.0, "POI_CBG": 421010318004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 461.0, "Total Transactions": 13.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.45, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083487, 40.031374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm4-ct9", "LOCATION_NAME": "Hibachi 2 Go", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924257, "LONGITUDE": -75.170377, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 134.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 243.0, "Total Spend": 219.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.33, "MEDIAN_SPEND_PER_CUSTOMER": 25.42 }, "geometry": { "type": "Point", "coordinates": [ -75.170377, 39.924257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmb-3nq", "LOCATION_NAME": "Headhouse Farmers' Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.940978, "LONGITUDE": -75.145396, "DATE_RANGE_START": 2024, "Total Visits": 536.0, "Total Visitors": 509.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.145396, 39.940978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-2p9", "LOCATION_NAME": "Pharmacy of America III", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.992041, "LONGITUDE": -75.135673, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 22.0, "POI_CBG": 421010176015.0, "MEDIAN_DWELL": 7.0, "Total Spend": 44.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.0, "MEDIAN_SPEND_PER_CUSTOMER": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135673, 39.992041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pmb-cwk", "LOCATION_NAME": "Sushi Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943263, "LONGITUDE": -75.163741, "DATE_RANGE_START": 2024, "Total Visits": 444.0, "Total Visitors": 394.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1357.0, "Total Transactions": 45.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.38, "MEDIAN_SPEND_PER_CUSTOMER": 33.57 }, "geometry": { "type": "Point", "coordinates": [ -75.163741, 39.943263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.959702, "LONGITUDE": -75.147615, "DATE_RANGE_START": 2024, "Total Visits": 1080.0, "Total Visitors": 854.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 34305.0, "Total Transactions": 910.0, "Total Customers": 702.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.28 }, "geometry": { "type": "Point", "coordinates": [ -75.147615, 39.959702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-k75", "LOCATION_NAME": "Best Buy", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 40.082306, "LONGITUDE": -75.023635, "DATE_RANGE_START": 2024, "Total Visits": 1510.0, "Total Visitors": 1368.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 146072.0, "Total Transactions": 719.0, "Total Customers": 639.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.17, "MEDIAN_SPEND_PER_CUSTOMER": 78.81 }, "geometry": { "type": "Point", "coordinates": [ -75.023635, 40.082306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-v4v", "LOCATION_NAME": "Food Point Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.928702, "LONGITUDE": -75.168281, "DATE_RANGE_START": 2024, "Total Visits": 336.0, "Total Visitors": 275.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 150.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.87, "MEDIAN_SPEND_PER_CUSTOMER": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.168281, 39.928702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.99218, "LONGITUDE": -75.091122, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 80.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 78908.0, "Total Transactions": 465.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.67, "MEDIAN_SPEND_PER_CUSTOMER": 87.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091122, 39.99218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-xyv", "LOCATION_NAME": "Little Saigon Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956146, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2024, "Total Visits": 987.0, "Total Visitors": 778.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1144.0, "Total Transactions": 26.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 44.13 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.956146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-h3q", "LOCATION_NAME": "Gennaro's Famous Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031242, "LONGITUDE": -75.179104, "DATE_RANGE_START": 2024, "Total Visits": 333.0, "Total Visitors": 212.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 33.0, "Total Spend": 3650.0, "Total Transactions": 146.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.51, "MEDIAN_SPEND_PER_CUSTOMER": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179104, 40.031242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pj8-tgk", "LOCATION_NAME": "New Ben City Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035691, "LONGITUDE": -75.100546, "DATE_RANGE_START": 2024, "Total Visits": 673.0, "Total Visitors": 429.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 39.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.72 }, "geometry": { "type": "Point", "coordinates": [ -75.100546, 40.035691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "LOCATION_NAME": "Fairmart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2024, "Total Visits": 251.0, "Total Visitors": 182.0, "POI_CBG": 421010131001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2582.0, "Total Transactions": 242.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-p8d-8y9", "LOCATION_NAME": "T & J Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009294, "LONGITUDE": -75.084921, "DATE_RANGE_START": 2024, "Total Visits": 78.0, "Total Visitors": 78.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 40.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.57, "MEDIAN_SPEND_PER_CUSTOMER": 6.57 }, "geometry": { "type": "Point", "coordinates": [ -75.084921, 40.009294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p8j-6hq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026795, "LONGITUDE": -75.028895, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": null, "Total Spend": 95.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.16, "MEDIAN_SPEND_PER_CUSTOMER": 36.16 }, "geometry": { "type": "Point", "coordinates": [ -75.028895, 40.026795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pj4-3qz", "LOCATION_NAME": "Crazy Wave", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.017645, "LONGITUDE": -75.148812, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 136.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2666.0, "Total Transactions": 111.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.16, "MEDIAN_SPEND_PER_CUSTOMER": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 40.017645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.046202, "LONGITUDE": -75.056569, "DATE_RANGE_START": 2024, "Total Visits": 795.0, "Total Visitors": 532.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 12051.0, "Total Transactions": 1519.0, "Total Customers": 642.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.78, "MEDIAN_SPEND_PER_CUSTOMER": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.056569, 40.046202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-f75", "LOCATION_NAME": "Cloud 9 One Stop Shop", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.994594, "LONGITUDE": -75.116007, "DATE_RANGE_START": 2024, "Total Visits": 469.0, "Total Visitors": 308.0, "POI_CBG": 421010178005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 111.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.55, "MEDIAN_SPEND_PER_CUSTOMER": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.116007, 39.994594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "LOCATION_NAME": "Brandy Melville", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2024, "Total Visits": 669.0, "Total Visitors": 565.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 48108.0, "Total Transactions": 771.0, "Total Customers": 657.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076442, "LONGITUDE": -75.206646, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 59558.0, "Total Transactions": 345.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.72, "MEDIAN_SPEND_PER_CUSTOMER": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.206646, 40.076442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "LOCATION_NAME": "Street Side", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2024, "Total Visits": 87.0, "Total Visitors": 87.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 55.0, "Total Spend": 1085.0, "Total Transactions": 42.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.63, "MEDIAN_SPEND_PER_CUSTOMER": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-p7x-6ff", "LOCATION_NAME": "Goubaa Grub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047077, "LONGITUDE": -75.05972, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 373.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 8.0, "Total Spend": 209.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.32, "MEDIAN_SPEND_PER_CUSTOMER": 13.32 }, "geometry": { "type": "Point", "coordinates": [ -75.05972, 40.047077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "LOCATION_NAME": "East Coast Tropicals", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2024, "Total Visits": 295.0, "Total Visitors": 295.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1950.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 167.83, "MEDIAN_SPEND_PER_CUSTOMER": 167.83 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwd-zj9", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.903872, "LONGITUDE": -75.196507, "DATE_RANGE_START": 2024, "Total Visits": 962.0, "Total Visitors": 847.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 136019.0, "Total Transactions": 7566.0, "Total Customers": 3965.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.63, "MEDIAN_SPEND_PER_CUSTOMER": 20.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196507, 39.903872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.012393, "LONGITUDE": -75.112599, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 20.0, "POI_CBG": 421010289012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3593.0, "Total Transactions": 165.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112599, 40.012393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "LOCATION_NAME": "Friendship Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.039276, "LONGITUDE": -75.045861, "DATE_RANGE_START": 2024, "Total Visits": 283.0, "Total Visitors": 283.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": null, "Total Spend": 646.0, "Total Transactions": 21.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.59, "MEDIAN_SPEND_PER_CUSTOMER": 44.12 }, "geometry": { "type": "Point", "coordinates": [ -75.045861, 40.039276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "LOCATION_NAME": "Finish Line", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 258.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 138.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.5, "MEDIAN_SPEND_PER_CUSTOMER": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-9j9", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055307, "LONGITUDE": -75.049818, "DATE_RANGE_START": 2024, "Total Visits": 894.0, "Total Visitors": 588.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 732.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.41, "MEDIAN_SPEND_PER_CUSTOMER": 62.3 }, "geometry": { "type": "Point", "coordinates": [ -75.049818, 40.055307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "LOCATION_NAME": "Moore Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.926601, "LONGITUDE": -75.156132, "DATE_RANGE_START": 2024, "Total Visits": 278.0, "Total Visitors": 66.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 292.0, "Total Spend": 5262.0, "Total Transactions": 234.0, "Total Customers": 107.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 28.36 }, "geometry": { "type": "Point", "coordinates": [ -75.156132, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2024, "Total Visits": 1443.0, "Total Visitors": 1168.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 22512.0, "Total Transactions": 494.0, "Total Customers": 395.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.28, "MEDIAN_SPEND_PER_CUSTOMER": 40.71 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-223@628-pm9-whq", "LOCATION_NAME": "Las Bugambilias", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949706, "LONGITUDE": -75.145565, "DATE_RANGE_START": 2024, "Total Visits": 632.0, "Total Visitors": 554.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4016.0, "Total Transactions": 51.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.08, "MEDIAN_SPEND_PER_CUSTOMER": 66.16 }, "geometry": { "type": "Point", "coordinates": [ -75.145565, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "LOCATION_NAME": "DJ Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 212.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1881.0, "Total Transactions": 42.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.21, "MEDIAN_SPEND_PER_CUSTOMER": 31.13 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "LOCATION_NAME": "La Calaca Feliz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 175.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1819.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.98, "MEDIAN_SPEND_PER_CUSTOMER": 64.69 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "LOCATION_NAME": "Old English Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 158.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2192.0, "Total Transactions": 76.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.27, "MEDIAN_SPEND_PER_CUSTOMER": 31.58 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 279.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5606.0, "Total Transactions": 1016.0, "Total Customers": 266.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.59, "MEDIAN_SPEND_PER_CUSTOMER": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7z-6x5", "LOCATION_NAME": "Rising Sun Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056616, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2024, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": null, "Total Spend": 1241.0, "Total Transactions": 50.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.87, "MEDIAN_SPEND_PER_CUSTOMER": 28.97 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.056616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "LOCATION_NAME": "The Bayou Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2024, "Total Visits": 157.0, "Total Visitors": 100.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 25.0, "Total Spend": 9545.0, "Total Transactions": 390.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061829, "LONGITUDE": -75.084028, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 5.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2852.0, "Total Transactions": 357.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 8.55 }, "geometry": { "type": "Point", "coordinates": [ -75.084028, 40.061829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pnw-nh5", "LOCATION_NAME": "Johnny Brenda's", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.969072, "LONGITUDE": -75.134263, "DATE_RANGE_START": 2024, "Total Visits": 255.0, "Total Visitors": 253.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 32.0, "Total Spend": 1907.0, "Total Transactions": 45.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.45, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134263, 39.969072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "LOCATION_NAME": "Smokey Joe's Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2024, "Total Visits": 232.0, "Total Visitors": 207.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5230.0, "Total Transactions": 140.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.4, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "LOCATION_NAME": "Pizzeria Vetri", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 134.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 4622.0, "Total Transactions": 82.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.58, "MEDIAN_SPEND_PER_CUSTOMER": 41.58 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-yqf", "LOCATION_NAME": "Matcha Cafe Maiko", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95548, "LONGITUDE": -75.155132, "DATE_RANGE_START": 2024, "Total Visits": 19620.0, "Total Visitors": 13494.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2242.0, "Total Transactions": 208.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.48, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.155132, 39.95548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.974455, "LONGITUDE": -75.199174, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010110001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 347.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.98, "MEDIAN_SPEND_PER_CUSTOMER": 23.04 }, "geometry": { "type": "Point", "coordinates": [ -75.199174, 39.974455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-yqf", "LOCATION_NAME": "New Cira", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957407, "LONGITUDE": -75.181491, "DATE_RANGE_START": 2024, "Total Visits": 10296.0, "Total Visitors": 7634.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 540.0, "Total Transactions": 95.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.13, "MEDIAN_SPEND_PER_CUSTOMER": 8.69 }, "geometry": { "type": "Point", "coordinates": [ -75.181491, 39.957407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvw-mx5", "LOCATION_NAME": "Steve's Sports Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.960011, "LONGITUDE": -75.227074, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 176.0, "POI_CBG": 421010085007.0, "MEDIAN_DWELL": null, "Total Spend": 268.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 38.68 }, "geometry": { "type": "Point", "coordinates": [ -75.227074, 39.960011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940137, "LONGITUDE": -75.165799, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5790.0, "Total Transactions": 764.0, "Total Customers": 317.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.35, "MEDIAN_SPEND_PER_CUSTOMER": 10.67 }, "geometry": { "type": "Point", "coordinates": [ -75.165799, 39.940137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "LOCATION_NAME": "Quetzally", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941598, "LONGITUDE": -75.163087, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 263.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.88, "MEDIAN_SPEND_PER_CUSTOMER": 48.89 }, "geometry": { "type": "Point", "coordinates": [ -75.163087, 39.941598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-t7q", "LOCATION_NAME": "Vetri Cucina", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946687, "LONGITUDE": -75.163203, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 200.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4573.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 620.7, "MEDIAN_SPEND_PER_CUSTOMER": 620.7 }, "geometry": { "type": "Point", "coordinates": [ -75.163203, 39.946687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "LOCATION_NAME": "The Gold Standard Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 162.0, "POI_CBG": 421010078004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 658.0, "Total Transactions": 25.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 32.92 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-qs5", "LOCATION_NAME": "Jet Wine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944107, "LONGITUDE": -75.168005, "DATE_RANGE_START": 2024, "Total Visits": 613.0, "Total Visitors": 383.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1561.0, "Total Transactions": 38.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.4, "MEDIAN_SPEND_PER_CUSTOMER": 30.25 }, "geometry": { "type": "Point", "coordinates": [ -75.168005, 39.944107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8m-st9", "LOCATION_NAME": "E Z Brunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022624, "LONGITUDE": -75.078903, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 41.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 574.0, "Total Spend": 73.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.75, "MEDIAN_SPEND_PER_CUSTOMER": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.078903, 40.022624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yd9", "LOCATION_NAME": "Sleep Inn", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.954446, "LONGITUDE": -75.157043, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 240.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 66.0, "Total Spend": 2513.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 253.65, "MEDIAN_SPEND_PER_CUSTOMER": 238.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157043, 39.954446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94965, "LONGITUDE": -75.167379, "DATE_RANGE_START": 2024, "Total Visits": 53.0, "Total Visitors": 43.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5616.0, "Total Transactions": 662.0, "Total Customers": 436.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.96, "MEDIAN_SPEND_PER_CUSTOMER": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.167379, 39.94965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "LOCATION_NAME": "Four Seasons Hotels and Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.95506, "LONGITUDE": -75.170758, "DATE_RANGE_START": 2024, "Total Visits": 457.0, "Total Visitors": 184.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 215.0, "Total Spend": 44794.0, "Total Transactions": 829.0, "Total Customers": 649.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.64, "MEDIAN_SPEND_PER_CUSTOMER": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.170758, 39.95506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "LOCATION_NAME": "Colonial Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010087011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1225.0, "Total Transactions": 59.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.27, "MEDIAN_SPEND_PER_CUSTOMER": 27.38 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm4-h5z", "LOCATION_NAME": "Pistola's Del Sur", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925885, "LONGITUDE": -75.168342, "DATE_RANGE_START": 2024, "Total Visits": 257.0, "Total Visitors": 228.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 8623.0, "Total Transactions": 155.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.36, "MEDIAN_SPEND_PER_CUSTOMER": 63.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168342, 39.925885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "LOCATION_NAME": "Stock", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1152.0, "Total Transactions": 7.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 135.79, "MEDIAN_SPEND_PER_CUSTOMER": 289.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 109.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3389.0, "Total Transactions": 155.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.37, "MEDIAN_SPEND_PER_CUSTOMER": 26.32 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999763, "LONGITUDE": -75.153659, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010201012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3846.0, "Total Transactions": 244.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.85, "MEDIAN_SPEND_PER_CUSTOMER": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.153659, 39.999763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956509, "LONGITUDE": -75.195045, "DATE_RANGE_START": 2024, "Total Visits": 6012.0, "Total Visitors": 2975.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3615.0, "Total Transactions": 444.0, "Total Customers": 334.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.86, "MEDIAN_SPEND_PER_CUSTOMER": 8.06 }, "geometry": { "type": "Point", "coordinates": [ -75.195045, 39.956509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "LOCATION_NAME": "CB2", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2024, "Total Visits": 995.0, "Total Visitors": 675.0, "POI_CBG": 421010008042.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1315.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.15, "MEDIAN_SPEND_PER_CUSTOMER": 43.15 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "LOCATION_NAME": "Hair Fashion & Beyond", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.978105, "LONGITUDE": -75.158429, "DATE_RANGE_START": 2024, "Total Visits": 2316.0, "Total Visitors": 1748.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 8053.0, "Total Transactions": 298.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.34, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.158429, 39.978105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2024, "Total Visits": 844.0, "Total Visitors": 550.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3639.0, "Total Transactions": 158.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.72, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2024, "Total Visits": 1796.0, "Total Visitors": 1575.0, "POI_CBG": 421010361002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1173.0, "Total Transactions": 46.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 28.92 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-jjv", "LOCATION_NAME": "Allen Edmonds", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951392, "LONGITUDE": -75.170139, "DATE_RANGE_START": 2024, "Total Visits": 1203.0, "Total Visitors": 831.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 28.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170139, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-sbk", "LOCATION_NAME": "Woven Treasures", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.945195, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 79.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 350.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.945195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.030294, "LONGITUDE": -75.097997, "DATE_RANGE_START": 2024, "Total Visits": 101.0, "Total Visitors": 63.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 98119.0, "Total Transactions": 532.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.62, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097997, 40.030294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm9-w6k", "LOCATION_NAME": "Old City Flowers", "TOP_CATEGORY": "Florists", "LATITUDE": 39.949403, "LONGITUDE": -75.145661, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 62.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1170.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 100.27, "MEDIAN_SPEND_PER_CUSTOMER": 100.27 }, "geometry": { "type": "Point", "coordinates": [ -75.145661, 39.949403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "LOCATION_NAME": "Lucha Cartel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 205.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 4747.0, "Total Transactions": 171.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01658, "LONGITUDE": -75.096378, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010293001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 4541.0, "Total Transactions": 215.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.096378, 40.01658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-3nq", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084019, "LONGITUDE": -74.96509, "DATE_RANGE_START": 2024, "Total Visits": 519.0, "Total Visitors": 491.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 24.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.98, "MEDIAN_SPEND_PER_CUSTOMER": 8.98 }, "geometry": { "type": "Point", "coordinates": [ -74.96509, 40.084019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-qs5", "LOCATION_NAME": "Panasian Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030993, "LONGITUDE": -75.10376, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 326.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 34.0, "Total Spend": 6656.0, "Total Transactions": 151.0, "Total Customers": 116.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.15, "MEDIAN_SPEND_PER_CUSTOMER": 46.81 }, "geometry": { "type": "Point", "coordinates": [ -75.10376, 40.030993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947184, "LONGITUDE": -75.157462, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1754.0, "Total Transactions": 61.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.22, "MEDIAN_SPEND_PER_CUSTOMER": 29.46 }, "geometry": { "type": "Point", "coordinates": [ -75.157462, 39.947184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.080435, "LONGITUDE": -75.172037, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1658.0, "Total Transactions": 68.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.95, "MEDIAN_SPEND_PER_CUSTOMER": 18.65 }, "geometry": { "type": "Point", "coordinates": [ -75.172037, 40.080435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6p9", "LOCATION_NAME": "DelFrisco's Double Eagle Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950867, "LONGITUDE": -75.165431, "DATE_RANGE_START": 2024, "Total Visits": 45.0, "Total Visitors": 39.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 22711.0, "Total Transactions": 130.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 124.16, "MEDIAN_SPEND_PER_CUSTOMER": 140.35 }, "geometry": { "type": "Point", "coordinates": [ -75.165431, 39.950867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-qzz", "LOCATION_NAME": "For Pete's Sake", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935493, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 147.0, "POI_CBG": 421010025002.0, "MEDIAN_DWELL": 133.0, "Total Spend": 1283.0, "Total Transactions": 13.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.1, "MEDIAN_SPEND_PER_CUSTOMER": 86.66 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.935493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-gkz", "LOCATION_NAME": "Nifty Fifty's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079457, "LONGITUDE": -75.025402, "DATE_RANGE_START": 2024, "Total Visits": 278.0, "Total Visitors": 251.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 479.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.43, "MEDIAN_SPEND_PER_CUSTOMER": 54.43 }, "geometry": { "type": "Point", "coordinates": [ -75.025402, 40.079457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-rx5", "LOCATION_NAME": "Choice Beer Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944126, "LONGITUDE": -75.170213, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 243.0, "Total Transactions": 26.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.88, "MEDIAN_SPEND_PER_CUSTOMER": 11.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170213, 39.944126 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p9p-z2k", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101374, "LONGITUDE": -75.028594, "DATE_RANGE_START": 2024, "Total Visits": 1149.0, "Total Visitors": 835.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 12.0, "Total Spend": 173.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.028594, 40.101374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmf-jjv", "LOCATION_NAME": "Green Eggs Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952196, "LONGITUDE": -75.169546, "DATE_RANGE_START": 2024, "Total Visits": 2231.0, "Total Visitors": 1162.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 227.0, "Total Spend": 167.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.75, "MEDIAN_SPEND_PER_CUSTOMER": 41.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169546, 39.952196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2024, "Total Visits": 10761.0, "Total Visitors": 7021.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 4262.0, "Total Transactions": 746.0, "Total Customers": 412.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.61, "MEDIAN_SPEND_PER_CUSTOMER": 7.28 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031983, "LONGITUDE": -75.213303, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 142.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.213303, 40.031983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.094236, "LONGITUDE": -75.016653, "DATE_RANGE_START": 2024, "Total Visits": 484.0, "Total Visitors": 409.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1592.0, "Total Transactions": 97.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.45, "MEDIAN_SPEND_PER_CUSTOMER": 14.54 }, "geometry": { "type": "Point", "coordinates": [ -75.016653, 40.094236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-225@628-pmf-j7q", "LOCATION_NAME": "Van Leeuwen Artisan Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951193, "LONGITUDE": -75.170331, "DATE_RANGE_START": 2024, "Total Visits": 1203.0, "Total Visitors": 831.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4646.0, "Total Transactions": 320.0, "Total Customers": 284.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.15, "MEDIAN_SPEND_PER_CUSTOMER": 11.83 }, "geometry": { "type": "Point", "coordinates": [ -75.170331, 39.951193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmb-49z", "LOCATION_NAME": "Dottie's Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942717, "LONGITUDE": -75.151702, "DATE_RANGE_START": 2024, "Total Visits": 624.0, "Total Visitors": 240.0, "POI_CBG": 421010010012.0, "MEDIAN_DWELL": 774.0, "Total Spend": 28.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.74, "MEDIAN_SPEND_PER_CUSTOMER": 10.74 }, "geometry": { "type": "Point", "coordinates": [ -75.151702, 39.942717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-pvz", "LOCATION_NAME": "Red Lion Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.105639, "LONGITUDE": -75.033118, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1755.0, "Total Transactions": 46.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.71, "MEDIAN_SPEND_PER_CUSTOMER": 46.52 }, "geometry": { "type": "Point", "coordinates": [ -75.033118, 40.105639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "LOCATION_NAME": "Trattoria Carina", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2024, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010008011.0, "MEDIAN_DWELL": null, "Total Spend": 2545.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 141.38, "MEDIAN_SPEND_PER_CUSTOMER": 141.38 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-djv", "LOCATION_NAME": "Quality Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050951, "LONGITUDE": -75.094665, "DATE_RANGE_START": 2024, "Total Visits": 1273.0, "Total Visitors": 731.0, "POI_CBG": 421010306007.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1358.0, "Total Transactions": 65.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.01, "MEDIAN_SPEND_PER_CUSTOMER": 27.88 }, "geometry": { "type": "Point", "coordinates": [ -75.094665, 40.050951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "LOCATION_NAME": "Knead Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948382, "LONGITUDE": -75.153598, "DATE_RANGE_START": 2024, "Total Visits": 1069.0, "Total Visitors": 473.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 192.0, "Total Spend": 3752.0, "Total Transactions": 225.0, "Total Customers": 165.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.1, "MEDIAN_SPEND_PER_CUSTOMER": 17.54 }, "geometry": { "type": "Point", "coordinates": [ -75.153598, 39.948382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "LOCATION_NAME": "Ray's Cafe & Teahouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 195.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 340.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.17, "MEDIAN_SPEND_PER_CUSTOMER": 11.17 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03351, "LONGITUDE": -75.130893, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 353.0, "POI_CBG": 421010274013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6499.0, "Total Transactions": 836.0, "Total Customers": 369.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.04, "MEDIAN_SPEND_PER_CUSTOMER": 10.92 }, "geometry": { "type": "Point", "coordinates": [ -75.130893, 40.03351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnt-435", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974852, "LONGITUDE": -75.120942, "DATE_RANGE_START": 2024, "Total Visits": 736.0, "Total Visitors": 486.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 10075.0, "Total Transactions": 893.0, "Total Customers": 507.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.86, "MEDIAN_SPEND_PER_CUSTOMER": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.120942, 39.974852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002735, "LONGITUDE": -75.214447, "DATE_RANGE_START": 2024, "Total Visits": 1657.0, "Total Visitors": 993.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 10295.0, "Total Transactions": 1356.0, "Total Customers": 500.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214447, 40.002735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979965, "LONGITUDE": -75.224332, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 9.0, "POI_CBG": 421010111001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 13723.0, "Total Transactions": 1203.0, "Total Customers": 800.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.8, "MEDIAN_SPEND_PER_CUSTOMER": 11.64 }, "geometry": { "type": "Point", "coordinates": [ -75.224332, 39.979965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "LOCATION_NAME": "Kitchen Kapers", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 340.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 609.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.98, "MEDIAN_SPEND_PER_CUSTOMER": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-v75", "LOCATION_NAME": "Northeast Sandwich Co", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059019, "LONGITUDE": -75.075391, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010338003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 988.0, "Total Transactions": 46.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.31, "MEDIAN_SPEND_PER_CUSTOMER": 20.31 }, "geometry": { "type": "Point", "coordinates": [ -75.075391, 40.059019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwf-t9z", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.903301, "LONGITUDE": -75.240669, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 170.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 20410.0, "Total Transactions": 599.0, "Total Customers": 516.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.79, "MEDIAN_SPEND_PER_CUSTOMER": 26.41 }, "geometry": { "type": "Point", "coordinates": [ -75.240669, 39.903301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-rhq", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.038338, "LONGITUDE": -75.116711, "DATE_RANGE_START": 2024, "Total Visits": 844.0, "Total Visitors": 571.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 493.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.116711, 40.038338 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "LOCATION_NAME": "Extended Stay America", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2024, "Total Visits": 491.0, "Total Visitors": 380.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 123.0, "Total Spend": 8442.0, "Total Transactions": 34.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 165.17, "MEDIAN_SPEND_PER_CUSTOMER": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "LOCATION_NAME": "Broad Street Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2024, "Total Visits": 220.0, "Total Visitors": 161.0, "POI_CBG": 421010023001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4861.0, "Total Transactions": 142.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.32, "MEDIAN_SPEND_PER_CUSTOMER": 35.02 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "LOCATION_NAME": "Vernick Food & Drink", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2024, "Total Visits": 1210.0, "Total Visitors": 899.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7754.0, "Total Transactions": 39.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 157.6, "MEDIAN_SPEND_PER_CUSTOMER": 241.85 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "LOCATION_NAME": "Dancewear On Broad LLC", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": null, "Total Spend": 545.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.4, "MEDIAN_SPEND_PER_CUSTOMER": 113.72 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2024, "Total Visits": 1403.0, "Total Visitors": 1215.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5535.0, "Total Transactions": 103.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.26, "MEDIAN_SPEND_PER_CUSTOMER": 35.45 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "LOCATION_NAME": "Dick's Sporting Goods", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.085722, "LONGITUDE": -74.967122, "DATE_RANGE_START": 2024, "Total Visits": 608.0, "Total Visitors": 483.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 17722.0, "Total Transactions": 328.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.91, "MEDIAN_SPEND_PER_CUSTOMER": 45.74 }, "geometry": { "type": "Point", "coordinates": [ -74.967122, 40.085722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-9cq", "LOCATION_NAME": "Lee Korman Discount", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.979685, "LONGITUDE": -75.170878, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 133.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 119.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.53, "MEDIAN_SPEND_PER_CUSTOMER": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.170878, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "LOCATION_NAME": "VaporFi", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2024, "Total Visits": 719.0, "Total Visitors": 571.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 210.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-7t9", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.11156, "LONGITUDE": -75.023472, "DATE_RANGE_START": 2024, "Total Visits": 3057.0, "Total Visitors": 1817.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 58834.0, "Total Transactions": 3580.0, "Total Customers": 1323.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.4, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023472, 40.11156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-223@628-pg8-k9f", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977506, "LONGITUDE": -75.1831, "DATE_RANGE_START": 2024, "Total Visits": 456.0, "Total Visitors": 90.0, "POI_CBG": 421010137001.0, "MEDIAN_DWELL": 523.0, "Total Spend": 371.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.75, "MEDIAN_SPEND_PER_CUSTOMER": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1831, 39.977506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg9-xt9", "LOCATION_NAME": "Francisville Farmers Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.966715, "LONGITUDE": -75.160748, "DATE_RANGE_START": 2024, "Total Visits": 269.0, "Total Visitors": 249.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 81.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 30.77 }, "geometry": { "type": "Point", "coordinates": [ -75.160748, 39.966715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgh-h5z", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007766, "LONGITUDE": -75.174356, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7731.0, "Total Transactions": 408.0, "Total Customers": 311.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.34, "MEDIAN_SPEND_PER_CUSTOMER": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.174356, 40.007766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "LOCATION_NAME": "High Point Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04622, "LONGITUDE": -75.195937, "DATE_RANGE_START": 2024, "Total Visits": 279.0, "Total Visitors": 230.0, "POI_CBG": 421010236003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1136.0, "Total Transactions": 74.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.195937, 40.04622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-4d9", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.944406, "LONGITUDE": -75.149898, "DATE_RANGE_START": 2024, "Total Visits": 534.0, "Total Visitors": 367.0, "POI_CBG": 421010010022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 84808.0, "Total Transactions": 2869.0, "Total Customers": 1114.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.56, "MEDIAN_SPEND_PER_CUSTOMER": 32.56 }, "geometry": { "type": "Point", "coordinates": [ -75.149898, 39.944406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "LOCATION_NAME": "Victoria's Secret", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087771, "LONGITUDE": -74.961418, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 141.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 985.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.23, "MEDIAN_SPEND_PER_CUSTOMER": 41.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961418, 40.087771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2024, "Total Visits": 515.0, "Total Visitors": 495.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1370.0, "Total Transactions": 104.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.67, "MEDIAN_SPEND_PER_CUSTOMER": 12.46 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgh-45f", "LOCATION_NAME": "City Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.009428, "LONGITUDE": -75.164387, "DATE_RANGE_START": 2024, "Total Visits": 371.0, "Total Visitors": 143.0, "POI_CBG": 421010202004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1438.0, "Total Transactions": 126.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -75.164387, 40.009428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p85-p7q", "LOCATION_NAME": "Kim's General Store", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.057219, "LONGITUDE": -75.030765, "DATE_RANGE_START": 2024, "Total Visits": 839.0, "Total Visitors": 658.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 925.0, "Total Transactions": 42.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.19, "MEDIAN_SPEND_PER_CUSTOMER": 14.89 }, "geometry": { "type": "Point", "coordinates": [ -75.030765, 40.057219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2024, "Total Visits": 354.0, "Total Visitors": 325.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5912.0, "Total Transactions": 442.0, "Total Customers": 312.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.06, "MEDIAN_SPEND_PER_CUSTOMER": 13.74 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pnx-ch5", "LOCATION_NAME": "Van Leeuwen Artisan Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974071, "LONGITUDE": -75.133134, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 50.0, "Total Spend": 15311.0, "Total Transactions": 1060.0, "Total Customers": 915.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.64, "MEDIAN_SPEND_PER_CUSTOMER": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.133134, 39.974071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "LOCATION_NAME": "Menchie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2024, "Total Visits": 294.0, "Total Visitors": 271.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4752.0, "Total Transactions": 371.0, "Total Customers": 317.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.35, "MEDIAN_SPEND_PER_CUSTOMER": 11.65 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-2ff", "LOCATION_NAME": "Service Station", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.058045, "LONGITUDE": -75.165189, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": null, "Total Spend": 940.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 90.0, "MEDIAN_SPEND_PER_CUSTOMER": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165189, 40.058045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvv-249", "LOCATION_NAME": "Advance Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.916025, "LONGITUDE": -75.24632, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 295.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.6, "MEDIAN_SPEND_PER_CUSTOMER": 28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.24632, 39.916025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2024, "Total Visits": 765.0, "Total Visitors": 696.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 2.0, "Total Spend": 711.0, "Total Transactions": 30.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.53, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "LOCATION_NAME": "Ganaan Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2024, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010274011.0, "MEDIAN_DWELL": 25.0, "Total Spend": 4804.0, "Total Transactions": 128.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2024, "Total Visits": 494.0, "Total Visitors": 307.0, "POI_CBG": 421010090004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6318.0, "Total Transactions": 560.0, "Total Customers": 232.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6x5", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047818, "LONGITUDE": -75.059422, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 192.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.86, "MEDIAN_SPEND_PER_CUSTOMER": 18.86 }, "geometry": { "type": "Point", "coordinates": [ -75.059422, 40.047818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-235@628-pmf-jd9", "LOCATION_NAME": "The Men's Wearhouse", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951245, "LONGITUDE": -75.168347, "DATE_RANGE_START": 2024, "Total Visits": 594.0, "Total Visitors": 398.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 50.0, "Total Spend": 1164.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 144.99, "MEDIAN_SPEND_PER_CUSTOMER": 61.56 }, "geometry": { "type": "Point", "coordinates": [ -75.168347, 39.951245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2024, "Total Visits": 769.0, "Total Visitors": 508.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1476.0, "Total Transactions": 70.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.02 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "LOCATION_NAME": "Walmart Philadelphia Store", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.082982, "LONGITUDE": -75.022614, "DATE_RANGE_START": 2024, "Total Visits": 8316.0, "Total Visitors": 5444.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 284923.0, "Total Transactions": 4971.0, "Total Customers": 3004.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.89, "MEDIAN_SPEND_PER_CUSTOMER": 54.47 }, "geometry": { "type": "Point", "coordinates": [ -75.022614, 40.082982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "LOCATION_NAME": "Blick Art Materials", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 18780.0, "Total Transactions": 500.0, "Total Customers": 436.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.77, "MEDIAN_SPEND_PER_CUSTOMER": 26.23 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wkz", "LOCATION_NAME": "Xenos Candy 'N' Gifts", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.948713, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2024, "Total Visits": 2309.0, "Total Visitors": 1785.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 170.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.49, "MEDIAN_SPEND_PER_CUSTOMER": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.948713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.953382, "LONGITUDE": -75.2097, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 15083.0, "Total Transactions": 836.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.73, "MEDIAN_SPEND_PER_CUSTOMER": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.2097, 39.953382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgh-xh5", "LOCATION_NAME": "Cure Discount Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.988199, "LONGITUDE": -75.156168, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 23.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156168, 39.988199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.095209, "LONGITUDE": -74.975929, "DATE_RANGE_START": 2024, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1395.0, "Total Transactions": 80.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.06, "MEDIAN_SPEND_PER_CUSTOMER": 16.36 }, "geometry": { "type": "Point", "coordinates": [ -74.975929, 40.095209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "LOCATION_NAME": "Claire's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2024, "Total Visits": 442.0, "Total Visitors": 420.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2968.0, "Total Transactions": 86.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.08, "MEDIAN_SPEND_PER_CUSTOMER": 27.86 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2024, "Total Visits": 317.0, "Total Visitors": 273.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 322.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.58, "MEDIAN_SPEND_PER_CUSTOMER": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfx-rtv", "LOCATION_NAME": "Manayunk Timber", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.03675, "LONGITUDE": -75.238495, "DATE_RANGE_START": 2024, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 213.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.03, "MEDIAN_SPEND_PER_CUSTOMER": 81.03 }, "geometry": { "type": "Point", "coordinates": [ -75.238495, 40.03675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94836, "LONGITUDE": -75.206362, "DATE_RANGE_START": 2024, "Total Visits": 378.0, "Total Visitors": 237.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 4614.0, "Total Transactions": 520.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.58, "MEDIAN_SPEND_PER_CUSTOMER": 11.06 }, "geometry": { "type": "Point", "coordinates": [ -75.206362, 39.94836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952311, "LONGITUDE": -75.166474, "DATE_RANGE_START": 2024, "Total Visits": 4047.0, "Total Visitors": 2230.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 25.0, "Total Spend": 2584.0, "Total Transactions": 432.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.47, "MEDIAN_SPEND_PER_CUSTOMER": 7.27 }, "geometry": { "type": "Point", "coordinates": [ -75.166474, 39.952311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnz-zpv", "LOCATION_NAME": "Wickwire Warehouse", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.99115, "LONGITUDE": -75.104759, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 90.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 75.0, "Total Spend": 152.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.9, "MEDIAN_SPEND_PER_CUSTOMER": 38.9 }, "geometry": { "type": "Point", "coordinates": [ -75.104759, 39.99115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "LOCATION_NAME": "Ruby Tuesday", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.887825, "LONGITUDE": -75.24699, "DATE_RANGE_START": 2024, "Total Visits": 500.0, "Total Visitors": 412.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 8310.0, "Total Transactions": 171.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.96, "MEDIAN_SPEND_PER_CUSTOMER": 50.29 }, "geometry": { "type": "Point", "coordinates": [ -75.24699, 39.887825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "LOCATION_NAME": "Beck's Cajun Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2024, "Total Visits": 10761.0, "Total Visitors": 7021.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 6110.0, "Total Transactions": 245.0, "Total Customers": 229.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.12, "MEDIAN_SPEND_PER_CUSTOMER": 20.66 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "LOCATION_NAME": "Tony Luke's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.906965, "LONGITUDE": -75.166723, "DATE_RANGE_START": 2024, "Total Visits": 2224.0, "Total Visitors": 1975.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 543.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.36, "MEDIAN_SPEND_PER_CUSTOMER": 22.03 }, "geometry": { "type": "Point", "coordinates": [ -75.166723, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmb-8n5", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951212, "LONGITUDE": -75.156618, "DATE_RANGE_START": 2024, "Total Visits": 1344.0, "Total Visitors": 976.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5593.0, "Total Transactions": 416.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.93, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.156618, 39.951212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "LOCATION_NAME": "Crown Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 315.0, "POI_CBG": 421010353013.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1383.0, "Total Transactions": 58.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.19, "MEDIAN_SPEND_PER_CUSTOMER": 29.03 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 326.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9494.0, "Total Transactions": 641.0, "Total Customers": 466.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.77, "MEDIAN_SPEND_PER_CUSTOMER": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "LOCATION_NAME": "Old Nelson Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951938, "LONGITUDE": -75.173689, "DATE_RANGE_START": 2024, "Total Visits": 37.0, "Total Visitors": 26.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 40397.0, "Total Transactions": 2963.0, "Total Customers": 1123.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.94, "MEDIAN_SPEND_PER_CUSTOMER": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.173689, 39.951938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "LOCATION_NAME": "Windfall Gallery", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 105.0, "POI_CBG": 421010231001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 686.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.48, "MEDIAN_SPEND_PER_CUSTOMER": 55.08 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pmd-rtv", "LOCATION_NAME": "Sally", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948932, "LONGITUDE": -75.178843, "DATE_RANGE_START": 2024, "Total Visits": 440.0, "Total Visitors": 267.0, "POI_CBG": 421010008011.0, "MEDIAN_DWELL": 65.0, "Total Spend": 668.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.84, "MEDIAN_SPEND_PER_CUSTOMER": 67.84 }, "geometry": { "type": "Point", "coordinates": [ -75.178843, 39.948932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032391, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2024, "Total Visits": 1041.0, "Total Visitors": 816.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 16988.0, "Total Transactions": 1032.0, "Total Customers": 700.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.62, "MEDIAN_SPEND_PER_CUSTOMER": 17.56 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.032391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "LOCATION_NAME": "Falafel Time", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 68.0, "Total Spend": 644.0, "Total Transactions": 37.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.41, "MEDIAN_SPEND_PER_CUSTOMER": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "LOCATION_NAME": "Blue Corn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2024, "Total Visits": 481.0, "Total Visitors": 407.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 447.0, "Total Transactions": 14.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.1, "MEDIAN_SPEND_PER_CUSTOMER": 36.83 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-6rk", "LOCATION_NAME": "The Bishop's Collar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967569, "LONGITUDE": -75.176669, "DATE_RANGE_START": 2024, "Total Visits": 511.0, "Total Visitors": 283.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 97.0, "Total Spend": 10799.0, "Total Transactions": 251.0, "Total Customers": 166.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.4, "MEDIAN_SPEND_PER_CUSTOMER": 42.86 }, "geometry": { "type": "Point", "coordinates": [ -75.176669, 39.967569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dwg-cbk", "LOCATION_NAME": "Hot Spot Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.916984, "LONGITUDE": -75.237394, "DATE_RANGE_START": 2024, "Total Visits": 78.0, "Total Visitors": 57.0, "POI_CBG": 421010060005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 72.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.28, "MEDIAN_SPEND_PER_CUSTOMER": 27.28 }, "geometry": { "type": "Point", "coordinates": [ -75.237394, 39.916984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "LOCATION_NAME": "Desi Village", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2024, "Total Visits": 116.0, "Total Visitors": 116.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 169.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.25, "MEDIAN_SPEND_PER_CUSTOMER": 26.25 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "LOCATION_NAME": "Pizza Boli's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010190001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 514.0, "Total Transactions": 25.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 19.67 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "LOCATION_NAME": "Panda Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029727, "LONGITUDE": -75.09938, "DATE_RANGE_START": 2024, "Total Visits": 549.0, "Total Visitors": 428.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5159.0, "Total Transactions": 284.0, "Total Customers": 236.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.49, "MEDIAN_SPEND_PER_CUSTOMER": 15.44 }, "geometry": { "type": "Point", "coordinates": [ -75.09938, 40.029727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-68v", "LOCATION_NAME": "Virgin Hair Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.050173, "LONGITUDE": -75.06287, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 721.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.050173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pg8-grk", "LOCATION_NAME": "Norris Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.986859, "LONGITUDE": -75.183863, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 153.0, "POI_CBG": 421010151023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 771.0, "Total Transactions": 67.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.8, "MEDIAN_SPEND_PER_CUSTOMER": 23.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183863, 39.986859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "LOCATION_NAME": "New Deck Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953506, "LONGITUDE": -75.192591, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 14054.0, "Total Transactions": 299.0, "Total Customers": 251.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.62, "MEDIAN_SPEND_PER_CUSTOMER": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192591, 39.953506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "LOCATION_NAME": "Bourbon & Branch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 134.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 78.0, "Total Spend": 1127.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.1, "MEDIAN_SPEND_PER_CUSTOMER": 68.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm9-whq", "LOCATION_NAME": "Old City Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949752, "LONGITUDE": -75.145531, "DATE_RANGE_START": 2024, "Total Visits": 632.0, "Total Visitors": 554.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6600.0, "Total Transactions": 291.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.64 }, "geometry": { "type": "Point", "coordinates": [ -75.145531, 39.949752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-jsq", "LOCATION_NAME": "Danny's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045112, "LONGITUDE": -75.117134, "DATE_RANGE_START": 2024, "Total Visits": 4471.0, "Total Visitors": 2998.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 298.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.117134, 40.045112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-435", "LOCATION_NAME": "Atlas Pizza & Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947544, "LONGITUDE": -75.227506, "DATE_RANGE_START": 2024, "Total Visits": 96.0, "Total Visitors": 75.0, "POI_CBG": 421010073004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 446.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.96, "MEDIAN_SPEND_PER_CUSTOMER": 26.03 }, "geometry": { "type": "Point", "coordinates": [ -75.227506, 39.947544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "LOCATION_NAME": "Two Brothers", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.943904, "LONGITUDE": -75.228136, "DATE_RANGE_START": 2024, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010071024.0, "MEDIAN_DWELL": 2.0, "Total Spend": 150.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.228136, 39.943904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010298002.0, "MEDIAN_DWELL": null, "Total Spend": 424.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "LOCATION_NAME": "Sahara Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2024, "Total Visits": 5537.0, "Total Visitors": 3636.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 2276.0, "Total Transactions": 45.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.54, "MEDIAN_SPEND_PER_CUSTOMER": 38.54 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "LOCATION_NAME": "Claudio's Specialty Foods", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2024, "Total Visits": 104.0, "Total Visitors": 104.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6617.0, "Total Transactions": 175.0, "Total Customers": 142.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.78, "MEDIAN_SPEND_PER_CUSTOMER": 24.48 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2024, "Total Visits": 594.0, "Total Visitors": 454.0, "POI_CBG": 421010353011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5766.0, "Total Transactions": 746.0, "Total Customers": 307.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.38, "MEDIAN_SPEND_PER_CUSTOMER": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jy9", "LOCATION_NAME": "The Dive Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.936867, "LONGITUDE": -75.154753, "DATE_RANGE_START": 2024, "Total Visits": 358.0, "Total Visitors": 103.0, "POI_CBG": 421010024001.0, "MEDIAN_DWELL": 99.0, "Total Spend": 757.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.5, "MEDIAN_SPEND_PER_CUSTOMER": 83.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154753, 39.936867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "LOCATION_NAME": "Uncle Oogie's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 141.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 295.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.88, "MEDIAN_SPEND_PER_CUSTOMER": 26.29 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pnw-nnq", "LOCATION_NAME": "DAWA Sushi & Ramen Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969247, "LONGITUDE": -75.136377, "DATE_RANGE_START": 2024, "Total Visits": 637.0, "Total Visitors": 446.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1976.0, "Total Transactions": 34.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.2, "MEDIAN_SPEND_PER_CUSTOMER": 49.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136377, 39.969247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "LOCATION_NAME": "Venu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911206, "LONGITUDE": -75.170107, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 186.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 3466.0, "Total Transactions": 109.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170107, 39.911206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-h89", "LOCATION_NAME": "King of Tandoor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960321, "LONGITUDE": -75.169299, "DATE_RANGE_START": 2024, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 560.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.36, "MEDIAN_SPEND_PER_CUSTOMER": 47.03 }, "geometry": { "type": "Point", "coordinates": [ -75.169299, 39.960321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "LOCATION_NAME": "Cry Baby Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2024, "Total Visits": 760.0, "Total Visitors": 610.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2858.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 129.14, "MEDIAN_SPEND_PER_CUSTOMER": 129.14 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvr-5pv", "LOCATION_NAME": "Jim's Food Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923383, "LONGITUDE": -75.221531, "DATE_RANGE_START": 2024, "Total Visits": 71.0, "Total Visitors": 62.0, "POI_CBG": 421010067001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 1103.0, "Total Transactions": 63.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.221531, 39.923383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7v-whq", "LOCATION_NAME": "NAPA Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.059386, "LONGITUDE": -75.079587, "DATE_RANGE_START": 2024, "Total Visits": 80.0, "Total Visitors": 75.0, "POI_CBG": 421010338004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 19900.0, "Total Transactions": 162.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.44, "MEDIAN_SPEND_PER_CUSTOMER": 113.12 }, "geometry": { "type": "Point", "coordinates": [ -75.079587, 40.059386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-bkz", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.943074, "LONGITUDE": -75.158893, "DATE_RANGE_START": 2024, "Total Visits": 933.0, "Total Visitors": 573.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 112378.0, "Total Transactions": 4341.0, "Total Customers": 1639.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.02, "MEDIAN_SPEND_PER_CUSTOMER": 32.81 }, "geometry": { "type": "Point", "coordinates": [ -75.158893, 39.943074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2024, "Total Visits": 1718.0, "Total Visitors": 632.0, "POI_CBG": 421010183001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4112.0, "Total Transactions": 373.0, "Total Customers": 203.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.39, "MEDIAN_SPEND_PER_CUSTOMER": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2024, "Total Visits": 1914.0, "Total Visitors": 1260.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 20477.0, "Total Transactions": 2392.0, "Total Customers": 1216.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.01, "MEDIAN_SPEND_PER_CUSTOMER": 10.15 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "LOCATION_NAME": "Whole Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2024, "Total Visits": 2101.0, "Total Visitors": 1365.0, "POI_CBG": 421010011021.0, "MEDIAN_DWELL": 11.0, "Total Spend": 58982.0, "Total Transactions": 1702.0, "Total Customers": 706.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.13, "MEDIAN_SPEND_PER_CUSTOMER": 39.19 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "LOCATION_NAME": "Ox Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2024, "Total Visits": 937.0, "Total Visitors": 681.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 45.0, "Total Spend": 2403.0, "Total Transactions": 259.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.2, "MEDIAN_SPEND_PER_CUSTOMER": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "LOCATION_NAME": "Banana Republic Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952114, "LONGITUDE": -75.172439, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 18.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2184.0, "Total Transactions": 39.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.25, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172439, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-q2k", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.912266, "LONGITUDE": -75.155082, "DATE_RANGE_START": 2024, "Total Visits": 315.0, "Total Visitors": 284.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 55.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155082, 39.912266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-224@628-pm9-zj9", "LOCATION_NAME": "Ham Bone", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.939791, "LONGITUDE": -75.151446, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 262.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 631.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.5, "MEDIAN_SPEND_PER_CUSTOMER": 56.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151446, 39.939791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972302, "LONGITUDE": -75.125646, "DATE_RANGE_START": 2024, "Total Visits": 687.0, "Total Visitors": 296.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 119.0, "Total Spend": 2225.0, "Total Transactions": 317.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.65, "MEDIAN_SPEND_PER_CUSTOMER": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -75.125646, 39.972302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-td9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.902277, "LONGITUDE": -75.241975, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010056001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 231.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.73, "MEDIAN_SPEND_PER_CUSTOMER": 16.73 }, "geometry": { "type": "Point", "coordinates": [ -75.241975, 39.902277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "LOCATION_NAME": "Tio Flores", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943809, "LONGITUDE": -75.168965, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 572.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.99, "MEDIAN_SPEND_PER_CUSTOMER": 57.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168965, 39.943809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg4-fvf", "LOCATION_NAME": "Az Budget", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.033309, "LONGITUDE": -75.176923, "DATE_RANGE_START": 2024, "Total Visits": 1220.0, "Total Visitors": 671.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 293.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.18, "MEDIAN_SPEND_PER_CUSTOMER": 23.18 }, "geometry": { "type": "Point", "coordinates": [ -75.176923, 40.033309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "LOCATION_NAME": "Annies Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2024, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010100004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 765.0, "Total Transactions": 25.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.48, "MEDIAN_SPEND_PER_CUSTOMER": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.942529, "LONGITUDE": -75.164834, "DATE_RANGE_START": 2024, "Total Visits": 862.0, "Total Visitors": 587.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 100.0, "Total Spend": 462.0, "Total Transactions": 25.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.11, "MEDIAN_SPEND_PER_CUSTOMER": 24.25 }, "geometry": { "type": "Point", "coordinates": [ -75.164834, 39.942529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "LOCATION_NAME": "Marine Layer", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949562, "LONGITUDE": -75.167784, "DATE_RANGE_START": 2024, "Total Visits": 929.0, "Total Visitors": 592.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1643.0, "Total Transactions": 25.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.0, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 39.949562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "LOCATION_NAME": "Cappuccio's Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2024, "Total Visits": 128.0, "Total Visitors": 128.0, "POI_CBG": 421010024004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1936.0, "Total Transactions": 45.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.37, "MEDIAN_SPEND_PER_CUSTOMER": 32.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgd-xdv", "LOCATION_NAME": "Wingstop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966157, "LONGITUDE": -75.191069, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 14.0, "POI_CBG": 421010109001.0, "MEDIAN_DWELL": 370.0, "Total Spend": 102.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.42, "MEDIAN_SPEND_PER_CUSTOMER": 26.42 }, "geometry": { "type": "Point", "coordinates": [ -75.191069, 39.966157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "LOCATION_NAME": "Mr Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 237.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 665.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.67, "MEDIAN_SPEND_PER_CUSTOMER": 41.23 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-dvz", "LOCATION_NAME": "Quick Stop", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993791, "LONGITUDE": -75.117865, "DATE_RANGE_START": 2024, "Total Visits": 382.0, "Total Visitors": 238.0, "POI_CBG": 421010178005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6055.0, "Total Transactions": 413.0, "Total Customers": 271.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.71, "MEDIAN_SPEND_PER_CUSTOMER": 14.12 }, "geometry": { "type": "Point", "coordinates": [ -75.117865, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-vj9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.018604, "LONGITUDE": -75.214313, "DATE_RANGE_START": 2024, "Total Visits": 575.0, "Total Visitors": 430.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4808.0, "Total Transactions": 269.0, "Total Customers": 187.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.2, "MEDIAN_SPEND_PER_CUSTOMER": 18.37 }, "geometry": { "type": "Point", "coordinates": [ -75.214313, 40.018604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "LOCATION_NAME": "Neighborhood Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2024, "Total Visits": 304.0, "Total Visitors": 121.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 610.0, "Total Spend": 106.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.34, "MEDIAN_SPEND_PER_CUSTOMER": 40.34 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "LOCATION_NAME": "Kohl's", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.063862, "LONGITUDE": -75.238823, "DATE_RANGE_START": 2024, "Total Visits": 233.0, "Total Visitors": 137.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 316.0, "Total Spend": 22974.0, "Total Transactions": 456.0, "Total Customers": 388.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.88, "MEDIAN_SPEND_PER_CUSTOMER": 41.58 }, "geometry": { "type": "Point", "coordinates": [ -75.238823, 40.063862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032694, "LONGITUDE": -75.063231, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5726.0, "Total Transactions": 284.0, "Total Customers": 254.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.5, "MEDIAN_SPEND_PER_CUSTOMER": 18.12 }, "geometry": { "type": "Point", "coordinates": [ -75.063231, 40.032694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pjf-zvf", "LOCATION_NAME": "Chestnut Hill Sports", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.077007, "LONGITUDE": -75.208666, "DATE_RANGE_START": 2024, "Total Visits": 434.0, "Total Visitors": 254.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 43.0, "Total Spend": 364.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.0, "MEDIAN_SPEND_PER_CUSTOMER": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.208666, 40.077007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-d5f", "LOCATION_NAME": "Allen Tire & Service", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.019598, "LONGITUDE": -75.06328, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010319003.0, "MEDIAN_DWELL": null, "Total Spend": 1761.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.27, "MEDIAN_SPEND_PER_CUSTOMER": 108.27 }, "geometry": { "type": "Point", "coordinates": [ -75.06328, 40.019598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "LOCATION_NAME": "The Ritz-Carlton", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2024, "Total Visits": 3274.0, "Total Visitors": 2441.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9271.0, "Total Transactions": 32.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 218.14, "MEDIAN_SPEND_PER_CUSTOMER": 371.38 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "LOCATION_NAME": "Bardot Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2024, "Total Visits": 642.0, "Total Visitors": 499.0, "POI_CBG": 421010142001.0, "MEDIAN_DWELL": 60.0, "Total Spend": 3602.0, "Total Transactions": 101.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.75, "MEDIAN_SPEND_PER_CUSTOMER": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2024, "Total Visits": 1239.0, "Total Visitors": 918.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 615.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.77, "MEDIAN_SPEND_PER_CUSTOMER": 20.77 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "LOCATION_NAME": "Italian Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 143.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3026.0, "Total Transactions": 149.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.53, "MEDIAN_SPEND_PER_CUSTOMER": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm8-djv", "LOCATION_NAME": "Celebre Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911364, "LONGITUDE": -75.175337, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 153.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1485.0, "Total Transactions": 51.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.75 }, "geometry": { "type": "Point", "coordinates": [ -75.175337, 39.911364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "LOCATION_NAME": "Triple Joy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 191.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1447.0, "Total Transactions": 80.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.23, "MEDIAN_SPEND_PER_CUSTOMER": 22.33 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "LOCATION_NAME": "Hibiscus Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2024, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010079003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1755.0, "Total Transactions": 72.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.51, "MEDIAN_SPEND_PER_CUSTOMER": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-mrk", "LOCATION_NAME": "Auntie Anne's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952011, "LONGITUDE": -75.167506, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 53.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.05, "MEDIAN_SPEND_PER_CUSTOMER": 14.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167506, 39.952011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-3nq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917267, "LONGITUDE": -75.172584, "DATE_RANGE_START": 2024, "Total Visits": 1178.0, "Total Visitors": 400.0, "POI_CBG": 421010039022.0, "MEDIAN_DWELL": 207.0, "Total Spend": 238.0, "Total Transactions": 20.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.12, "MEDIAN_SPEND_PER_CUSTOMER": 21.64 }, "geometry": { "type": "Point", "coordinates": [ -75.172584, 39.917267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "LOCATION_NAME": "Drury Beer Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 255.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 24569.0, "Total Transactions": 787.0, "Total Customers": 536.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.3, "MEDIAN_SPEND_PER_CUSTOMER": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "LOCATION_NAME": "Golden Crust Pizza III", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 47.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1176.0, "Total Transactions": 59.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.01, "MEDIAN_SPEND_PER_CUSTOMER": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dw9-wtv", "LOCATION_NAME": "Revive 21", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.88045, "LONGITUDE": -75.241472, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 121.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 759.0, "Total Transactions": 24.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.16, "MEDIAN_SPEND_PER_CUSTOMER": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.241472, 39.88045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "LOCATION_NAME": "Aldo Lamberti Trattoria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.874826, "LONGITUDE": -75.241153, "DATE_RANGE_START": 2024, "Total Visits": 5801.0, "Total Visitors": 5038.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 191.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.241153, 39.874826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-p75-3dv", "LOCATION_NAME": "RB's Chocolate Revenge", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.047943, "LONGITUDE": -75.012861, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 99.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 293.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.72, "MEDIAN_SPEND_PER_CUSTOMER": 63.72 }, "geometry": { "type": "Point", "coordinates": [ -75.012861, 40.047943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2024, "Total Visits": 976.0, "Total Visitors": 739.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4748.0, "Total Transactions": 238.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "LOCATION_NAME": "Castle Roxx", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 140.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4832.0, "Total Transactions": 262.0, "Total Customers": 136.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "LOCATION_NAME": "Romeo Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924602, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2024, "Total Visits": 440.0, "Total Visitors": 334.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1604.0, "Total Transactions": 83.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.73, "MEDIAN_SPEND_PER_CUSTOMER": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.924602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "LOCATION_NAME": "Dim Sum & Noodle", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962299, "LONGITUDE": -75.17267, "DATE_RANGE_START": 2024, "Total Visits": 2757.0, "Total Visitors": 1488.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2419.0, "Total Transactions": 66.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.05, "MEDIAN_SPEND_PER_CUSTOMER": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.17267, 39.962299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8j-ct9", "LOCATION_NAME": "Dress Up Time", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.036339, "LONGITUDE": -75.042117, "DATE_RANGE_START": 2024, "Total Visits": 278.0, "Total Visitors": 176.0, "POI_CBG": 421010315011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 930.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 353.3, "MEDIAN_SPEND_PER_CUSTOMER": 353.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042117, 40.036339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "LOCATION_NAME": "Canto House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955547, "LONGITUDE": -75.15551, "DATE_RANGE_START": 2024, "Total Visits": 19620.0, "Total Visitors": 13494.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2214.0, "Total Transactions": 66.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.66, "MEDIAN_SPEND_PER_CUSTOMER": 20.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15551, 39.955547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-b6k", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.060291, "LONGITUDE": -75.045502, "DATE_RANGE_START": 2024, "Total Visits": 986.0, "Total Visitors": 785.0, "POI_CBG": 421010337013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 75219.0, "Total Transactions": 2008.0, "Total Customers": 868.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.99, "MEDIAN_SPEND_PER_CUSTOMER": 38.17 }, "geometry": { "type": "Point", "coordinates": [ -75.045502, 40.060291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmd-tvz", "LOCATION_NAME": "GIANT Heirloom Market", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.944771, "LONGITUDE": -75.180795, "DATE_RANGE_START": 2024, "Total Visits": 910.0, "Total Visitors": 319.0, "POI_CBG": 421010013005.0, "MEDIAN_DWELL": 6.0, "Total Spend": 14048.0, "Total Transactions": 594.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.17, "MEDIAN_SPEND_PER_CUSTOMER": 26.38 }, "geometry": { "type": "Point", "coordinates": [ -75.180795, 39.944771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-j35", "LOCATION_NAME": "Yo Mamas Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976498, "LONGITUDE": -75.226564, "DATE_RANGE_START": 2024, "Total Visits": 138.0, "Total Visitors": 138.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 84.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.226564, 39.976498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "LOCATION_NAME": "A Z Budget", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 307.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 745.0, "Total Transactions": 25.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.04, "MEDIAN_SPEND_PER_CUSTOMER": 28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pgk-sqz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007434, "LONGITUDE": -75.212469, "DATE_RANGE_START": 2024, "Total Visits": 1131.0, "Total Visitors": 870.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 5.0, "Total Spend": 38173.0, "Total Transactions": 2097.0, "Total Customers": 1586.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.86, "MEDIAN_SPEND_PER_CUSTOMER": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.212469, 40.007434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2024, "Total Visits": 311.0, "Total Visitors": 259.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5360.0, "Total Transactions": 266.0, "Total Customers": 211.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.13, "MEDIAN_SPEND_PER_CUSTOMER": 21.89 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-73q", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947698, "LONGITUDE": -75.193491, "DATE_RANGE_START": 2024, "Total Visits": 908.0, "Total Visitors": 653.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5094.0, "Total Transactions": 528.0, "Total Customers": 379.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.97, "MEDIAN_SPEND_PER_CUSTOMER": 10.85 }, "geometry": { "type": "Point", "coordinates": [ -75.193491, 39.947698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2024, "Total Visits": 413.0, "Total Visitors": 352.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1973.0, "Total Transactions": 126.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.49, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2024, "Total Visits": 567.0, "Total Visitors": 492.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 9254.0, "Total Transactions": 1040.0, "Total Customers": 509.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.08, "MEDIAN_SPEND_PER_CUSTOMER": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "LOCATION_NAME": "Cousin's Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.980929, "LONGITUDE": -75.144184, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 37.0, "POI_CBG": 421010156002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 4336.0, "Total Transactions": 116.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.15, "MEDIAN_SPEND_PER_CUSTOMER": 28.03 }, "geometry": { "type": "Point", "coordinates": [ -75.144184, 39.980929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992773, "LONGITUDE": -75.097642, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 8723.0, "Total Transactions": 421.0, "Total Customers": 338.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.47, "MEDIAN_SPEND_PER_CUSTOMER": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.097642, 39.992773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026137, "LONGITUDE": -75.042321, "DATE_RANGE_START": 2024, "Total Visits": 542.0, "Total Visitors": 132.0, "POI_CBG": 421010325003.0, "MEDIAN_DWELL": 37.0, "Total Spend": 454.0, "Total Transactions": 38.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.39, "MEDIAN_SPEND_PER_CUSTOMER": 25.19 }, "geometry": { "type": "Point", "coordinates": [ -75.042321, 40.026137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-mzf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954224, "LONGITUDE": -75.167482, "DATE_RANGE_START": 2024, "Total Visits": 2364.0, "Total Visitors": 1328.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2657.0, "Total Transactions": 316.0, "Total Customers": 126.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.52, "MEDIAN_SPEND_PER_CUSTOMER": 8.81 }, "geometry": { "type": "Point", "coordinates": [ -75.167482, 39.954224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "LOCATION_NAME": "Brewer's Outlet", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.953064, "LONGITUDE": -75.217898, "DATE_RANGE_START": 2024, "Total Visits": 465.0, "Total Visitors": 307.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 21.0, "Total Spend": 22985.0, "Total Transactions": 678.0, "Total Customers": 444.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.217898, 39.953064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992707, "LONGITUDE": -75.100219, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6272.0, "Total Transactions": 178.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100219, 39.992707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.93143, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2024, "Total Visits": 1007.0, "Total Visitors": 762.0, "POI_CBG": 421010028025.0, "MEDIAN_DWELL": 6.0, "Total Spend": 7868.0, "Total Transactions": 483.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.11, "MEDIAN_SPEND_PER_CUSTOMER": 21.34 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.93143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "LOCATION_NAME": "Drinker's Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952102, "LONGITUDE": -75.172078, "DATE_RANGE_START": 2024, "Total Visits": 4467.0, "Total Visitors": 2948.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 22021.0, "Total Transactions": 789.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.01, "MEDIAN_SPEND_PER_CUSTOMER": 31.02 }, "geometry": { "type": "Point", "coordinates": [ -75.172078, 39.952102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.102248, "LONGITUDE": -75.01103, "DATE_RANGE_START": 2024, "Total Visits": 1327.0, "Total Visitors": 1016.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1589128.0, "Total Transactions": 40210.0, "Total Customers": 21231.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.99, "MEDIAN_SPEND_PER_CUSTOMER": 43.75 }, "geometry": { "type": "Point", "coordinates": [ -75.01103, 40.102248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnz-zj9", "LOCATION_NAME": "Flower Shop", "TOP_CATEGORY": "Florists", "LATITUDE": 39.991576, "LONGITUDE": -75.102383, "DATE_RANGE_START": 2024, "Total Visits": 207.0, "Total Visitors": 155.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 1117.0, "Total Transactions": 132.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.83, "MEDIAN_SPEND_PER_CUSTOMER": 15.51 }, "geometry": { "type": "Point", "coordinates": [ -75.102383, 39.991576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p72-9vf", "LOCATION_NAME": "Maggie's Waterfront Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.043662, "LONGITUDE": -74.989639, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 377.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 1144.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.56, "MEDIAN_SPEND_PER_CUSTOMER": 52.89 }, "geometry": { "type": "Point", "coordinates": [ -74.989639, 40.043662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2024, "Total Visits": 977.0, "Total Visitors": 825.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17326.0, "Total Transactions": 1114.0, "Total Customers": 732.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.59, "MEDIAN_SPEND_PER_CUSTOMER": 15.14 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.032001, "LONGITUDE": -75.050379, "DATE_RANGE_START": 2024, "Total Visits": 454.0, "Total Visitors": 295.0, "POI_CBG": 421010325001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2212.0, "Total Transactions": 57.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.89, "MEDIAN_SPEND_PER_CUSTOMER": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050379, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "LOCATION_NAME": "Calvin Klein", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 273.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 950.0, "Total Transactions": 14.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.36, "MEDIAN_SPEND_PER_CUSTOMER": 59.36 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.039108, "LONGITUDE": -75.110396, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 497.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110396, 40.039108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg9-x89", "LOCATION_NAME": "Spicy Masala Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969531, "LONGITUDE": -75.163321, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 353.0, "POI_CBG": 421010133002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2606.0, "Total Transactions": 147.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.17, "MEDIAN_SPEND_PER_CUSTOMER": 16.02 }, "geometry": { "type": "Point", "coordinates": [ -75.163321, 39.969531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "LOCATION_NAME": "Misconduct Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95437, "LONGITUDE": -75.16983, "DATE_RANGE_START": 2024, "Total Visits": 244.0, "Total Visitors": 159.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7243.0, "Total Transactions": 140.0, "Total Customers": 104.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.82, "MEDIAN_SPEND_PER_CUSTOMER": 48.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16983, 39.95437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "LOCATION_NAME": "Station Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 221.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2407.0, "Total Transactions": 92.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "LOCATION_NAME": "Asian Bamboo House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2024, "Total Visits": 259.0, "Total Visitors": 232.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3769.0, "Total Transactions": 100.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.29, "MEDIAN_SPEND_PER_CUSTOMER": 46.11 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980157, "LONGITUDE": -75.235047, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 13.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 4237.0, "Total Transactions": 232.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.49, "MEDIAN_SPEND_PER_CUSTOMER": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.235047, 39.980157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2024, "Total Visits": 350.0, "Total Visitors": 270.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2117.0, "Total Transactions": 283.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-yd9", "LOCATION_NAME": "Ciocca Subaru of Philadelphia", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.936465, "LONGITUDE": -75.198692, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 266.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 962.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198692, 39.936465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-7qz", "LOCATION_NAME": "Sdc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.948004, "LONGITUDE": -75.161861, "DATE_RANGE_START": 2024, "Total Visits": 844.0, "Total Visitors": 531.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 221.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.24, "MEDIAN_SPEND_PER_CUSTOMER": 19.24 }, "geometry": { "type": "Point", "coordinates": [ -75.161861, 39.948004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-y7q", "LOCATION_NAME": "The Post", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952733, "LONGITUDE": -75.18366, "DATE_RANGE_START": 2024, "Total Visits": 367.0, "Total Visitors": 188.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 37.0, "Total Spend": 660.0, "Total Transactions": 25.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.32, "MEDIAN_SPEND_PER_CUSTOMER": 32.96 }, "geometry": { "type": "Point", "coordinates": [ -75.18366, 39.952733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.076014, "LONGITUDE": -75.031366, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 34.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 13396.0, "Total Transactions": 640.0, "Total Customers": 481.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.26, "MEDIAN_SPEND_PER_CUSTOMER": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031366, 40.076014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pmb-y9z", "LOCATION_NAME": "Vape O2 Chinatown", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.953112, "LONGITUDE": -75.154901, "DATE_RANGE_START": 2024, "Total Visits": 2235.0, "Total Visitors": 1503.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 98.0, "Total Spend": 422.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.19, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154901, 39.953112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95261, "LONGITUDE": -75.174958, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 114.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.6, "MEDIAN_SPEND_PER_CUSTOMER": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174958, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj2-btv", "LOCATION_NAME": "Bentoulis Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01065, "LONGITUDE": -75.102956, "DATE_RANGE_START": 2024, "Total Visits": 199.0, "Total Visitors": 188.0, "POI_CBG": 421010191002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 87.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.07, "MEDIAN_SPEND_PER_CUSTOMER": 33.07 }, "geometry": { "type": "Point", "coordinates": [ -75.102956, 40.01065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 317.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8937.0, "Total Transactions": 962.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.19, "MEDIAN_SPEND_PER_CUSTOMER": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-td9", "LOCATION_NAME": "Watkins Drinkery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927952, "LONGITUDE": -75.162075, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 76.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 66.0, "Total Spend": 37.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.9, "MEDIAN_SPEND_PER_CUSTOMER": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162075, 39.927952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-rzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94428, "LONGITUDE": -75.141509, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 334.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 651.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.04, "MEDIAN_SPEND_PER_CUSTOMER": 49.04 }, "geometry": { "type": "Point", "coordinates": [ -75.141509, 39.94428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2024, "Total Visits": 910.0, "Total Visitors": 785.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 14179.0, "Total Transactions": 1066.0, "Total Customers": 669.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.86, "MEDIAN_SPEND_PER_CUSTOMER": 13.53 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.008742, "LONGITUDE": -75.17653, "DATE_RANGE_START": 2024, "Total Visits": 762.0, "Total Visitors": 353.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 71.0, "Total Spend": 17021.0, "Total Transactions": 429.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.85, "MEDIAN_SPEND_PER_CUSTOMER": 30.46 }, "geometry": { "type": "Point", "coordinates": [ -75.17653, 40.008742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-g49", "LOCATION_NAME": "Ham Bone", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.977503, "LONGITUDE": -75.13156, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 200.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 364.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 138.22, "MEDIAN_SPEND_PER_CUSTOMER": 138.22 }, "geometry": { "type": "Point", "coordinates": [ -75.13156, 39.977503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "LOCATION_NAME": "Oyster House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2024, "Total Visits": 290.0, "Total Visitors": 265.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 26806.0, "Total Transactions": 180.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 118.96, "MEDIAN_SPEND_PER_CUSTOMER": 124.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-7yv", "LOCATION_NAME": "Home2 Suites", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.953662, "LONGITUDE": -75.15975, "DATE_RANGE_START": 2024, "Total Visits": 3755.0, "Total Visitors": 2779.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 3924.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 442.57, "MEDIAN_SPEND_PER_CUSTOMER": 442.57 }, "geometry": { "type": "Point", "coordinates": [ -75.15975, 39.953662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "LOCATION_NAME": "Tuna Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954039, "LONGITUDE": -75.143175, "DATE_RANGE_START": 2024, "Total Visits": 291.0, "Total Visitors": 233.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 59.0, "Total Spend": 2776.0, "Total Transactions": 25.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 96.84, "MEDIAN_SPEND_PER_CUSTOMER": 112.28 }, "geometry": { "type": "Point", "coordinates": [ -75.143175, 39.954039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pjk-3nq", "LOCATION_NAME": "Pina's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.06943, "LONGITUDE": -75.239988, "DATE_RANGE_START": 2024, "Total Visits": 446.0, "Total Visitors": 391.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2464.0, "Total Transactions": 80.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.64, "MEDIAN_SPEND_PER_CUSTOMER": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -75.239988, 40.06943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "LOCATION_NAME": "No 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 162.0, "POI_CBG": 421010349002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 887.0, "Total Transactions": 32.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.85, "MEDIAN_SPEND_PER_CUSTOMER": 22.57 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2024, "Total Visits": 2339.0, "Total Visitors": 1417.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 62980.0, "Total Transactions": 1193.0, "Total Customers": 633.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.77, "MEDIAN_SPEND_PER_CUSTOMER": 49.85 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.008773, "LONGITUDE": -75.176588, "DATE_RANGE_START": 2024, "Total Visits": 762.0, "Total Visitors": 353.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 71.0, "Total Spend": 124.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.73, "MEDIAN_SPEND_PER_CUSTOMER": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.176588, 40.008773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2024, "Total Visits": 2220.0, "Total Visitors": 1538.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3491.0, "Total Transactions": 259.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.03, "MEDIAN_SPEND_PER_CUSTOMER": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-33q", "LOCATION_NAME": "Hello World", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.953734, "LONGITUDE": -75.19539, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010369001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1287.0, "Total Transactions": 54.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.19539, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-d7q", "LOCATION_NAME": "Owl Breakfast & Lunch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978638, "LONGITUDE": -75.159162, "DATE_RANGE_START": 2024, "Total Visits": 2270.0, "Total Visitors": 832.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 349.0, "Total Spend": 4049.0, "Total Transactions": 238.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.41, "MEDIAN_SPEND_PER_CUSTOMER": 18.46 }, "geometry": { "type": "Point", "coordinates": [ -75.159162, 39.978638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "LOCATION_NAME": "Chillin Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 109.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 116.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.65, "MEDIAN_SPEND_PER_CUSTOMER": 13.65 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "LOCATION_NAME": "Bellini", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 166.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5145.0, "Total Transactions": 49.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 84.86, "MEDIAN_SPEND_PER_CUSTOMER": 88.84 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj6-3qz", "LOCATION_NAME": "Forman Mills", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.040096, "LONGITUDE": -75.109829, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14636.0, "Total Transactions": 276.0, "Total Customers": 225.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.86, "MEDIAN_SPEND_PER_CUSTOMER": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.109829, 40.040096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-hnq", "LOCATION_NAME": "TyeMeka's Soul Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038113, "LONGITUDE": -75.176919, "DATE_RANGE_START": 2024, "Total Visits": 228.0, "Total Visitors": 55.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": 30.0, "Total Spend": 352.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.06, "MEDIAN_SPEND_PER_CUSTOMER": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.176919, 40.038113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2024, "Total Visits": 265.0, "Total Visitors": 213.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6455.0, "Total Transactions": 392.0, "Total Customers": 279.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-227@628-phd-btv", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.998022, "LONGITUDE": -75.232795, "DATE_RANGE_START": 2024, "Total Visits": 544.0, "Total Visitors": 477.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 165.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.01, "MEDIAN_SPEND_PER_CUSTOMER": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.232795, 39.998022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "LOCATION_NAME": "Pac A Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948688, "LONGITUDE": -75.160761, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 99.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7496.0, "Total Transactions": 411.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.75, "MEDIAN_SPEND_PER_CUSTOMER": 18.09 }, "geometry": { "type": "Point", "coordinates": [ -75.160761, 39.948688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.955622, "LONGITUDE": -75.192214, "DATE_RANGE_START": 2024, "Total Visits": 1958.0, "Total Visitors": 1251.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 58.0, "Total Spend": 1798.0, "Total Transactions": 209.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.49, "MEDIAN_SPEND_PER_CUSTOMER": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.192214, 39.955622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "LOCATION_NAME": "Sweet Creations Unlimited", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.017723, "LONGITUDE": -75.059702, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": null, "Total Spend": 626.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.35, "MEDIAN_SPEND_PER_CUSTOMER": 20.82 }, "geometry": { "type": "Point", "coordinates": [ -75.059702, 40.017723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "LOCATION_NAME": "Northeast Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 158.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3330.0, "Total Transactions": 128.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.5, "MEDIAN_SPEND_PER_CUSTOMER": 35.75 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "LOCATION_NAME": "iMunch Cafe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 187.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": null, "Total Spend": 3399.0, "Total Transactions": 170.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.9, "MEDIAN_SPEND_PER_CUSTOMER": 17.39 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pfx-s89", "LOCATION_NAME": "Eagle Mart", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.038436, "LONGITUDE": -75.239356, "DATE_RANGE_START": 2024, "Total Visits": 276.0, "Total Visitors": 276.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1712.0, "Total Transactions": 105.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.4, "MEDIAN_SPEND_PER_CUSTOMER": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.239356, 40.038436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2024, "Total Visits": 667.0, "Total Visitors": 531.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 16384.0, "Total Transactions": 844.0, "Total Customers": 646.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-w49", "LOCATION_NAME": "The Royal Indian Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948373, "LONGITUDE": -75.174503, "DATE_RANGE_START": 2024, "Total Visits": 115.0, "Total Visitors": 115.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 144.0, "Total Spend": 302.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.59, "MEDIAN_SPEND_PER_CUSTOMER": 42.22 }, "geometry": { "type": "Point", "coordinates": [ -75.174503, 39.948373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "LOCATION_NAME": "Allegro Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2024, "Total Visits": 330.0, "Total Visitors": 146.0, "POI_CBG": 421010088024.0, "MEDIAN_DWELL": 40.0, "Total Spend": 9328.0, "Total Transactions": 611.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.98 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pmb-gtv", "LOCATION_NAME": "Middle Child", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947198, "LONGITUDE": -75.159468, "DATE_RANGE_START": 2024, "Total Visits": 461.0, "Total Visitors": 353.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2102.0, "Total Transactions": 46.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.28, "MEDIAN_SPEND_PER_CUSTOMER": 39.65 }, "geometry": { "type": "Point", "coordinates": [ -75.159468, 39.947198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-p89-nt9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012382, "LONGITUDE": -75.067917, "DATE_RANGE_START": 2024, "Total Visits": 298.0, "Total Visitors": 241.0, "POI_CBG": 421010298004.0, "MEDIAN_DWELL": 74.0, "Total Spend": 7399.0, "Total Transactions": 383.0, "Total Customers": 273.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.33, "MEDIAN_SPEND_PER_CUSTOMER": 22.55 }, "geometry": { "type": "Point", "coordinates": [ -75.067917, 40.012382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "LOCATION_NAME": "Galaxy Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2024, "Total Visits": 63.0, "Total Visitors": 54.0, "POI_CBG": 421010338004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2214.0, "Total Transactions": 97.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.72 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-6p9", "LOCATION_NAME": "Pret A Manger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951392, "LONGITUDE": -75.16582, "DATE_RANGE_START": 2024, "Total Visits": 8743.0, "Total Visitors": 5302.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 19291.0, "Total Transactions": 1521.0, "Total Customers": 1159.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.16582, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "LOCATION_NAME": "El Rey", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2024, "Total Visits": 226.0, "Total Visitors": 222.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 13675.0, "Total Transactions": 208.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.9, "MEDIAN_SPEND_PER_CUSTOMER": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "LOCATION_NAME": "Asia On the Parkway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95574, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 640.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 57.0, "Total Spend": 2022.0, "Total Transactions": 43.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.4, "MEDIAN_SPEND_PER_CUSTOMER": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.95574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "LOCATION_NAME": "Paisas Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2024, "Total Visits": 806.0, "Total Visitors": 474.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 959.0, "Total Transactions": 50.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.14, "MEDIAN_SPEND_PER_CUSTOMER": 25.75 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2024, "Total Visits": 627.0, "Total Visitors": 521.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6580.0, "Total Transactions": 835.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 11.82 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2024, "Total Visits": 462.0, "Total Visitors": 317.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1830.0, "Total Transactions": 238.0, "Total Customers": 112.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.79, "MEDIAN_SPEND_PER_CUSTOMER": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-rrk", "LOCATION_NAME": "Provenance", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.978215, "LONGITUDE": -75.138171, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010157003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 711.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 270.0, "MEDIAN_SPEND_PER_CUSTOMER": 270.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138171, 39.978215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-brk", "LOCATION_NAME": "East Coast Wings + Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993916, "LONGITUDE": -75.091363, "DATE_RANGE_START": 2024, "Total Visits": 498.0, "Total Visitors": 388.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 38.0, "Total Spend": 3237.0, "Total Transactions": 62.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.49, "MEDIAN_SPEND_PER_CUSTOMER": 53.04 }, "geometry": { "type": "Point", "coordinates": [ -75.091363, 39.993916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-223@628-pnx-7qz", "LOCATION_NAME": "Dolce & Caffe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962218, "LONGITUDE": -75.141391, "DATE_RANGE_START": 2024, "Total Visits": 137.0, "Total Visitors": 137.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 3874.0, "Total Transactions": 290.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.46, "MEDIAN_SPEND_PER_CUSTOMER": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.141391, 39.962218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "LOCATION_NAME": "Mustard Greens Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 153.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1098.0, "Total Transactions": 14.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.52, "MEDIAN_SPEND_PER_CUSTOMER": 69.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvs-2ff", "LOCATION_NAME": "Kim's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.93806, "LONGITUDE": -75.22561, "DATE_RANGE_START": 2024, "Total Visits": 408.0, "Total Visitors": 203.0, "POI_CBG": 421010071012.0, "MEDIAN_DWELL": 52.0, "Total Spend": 80.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.65, "MEDIAN_SPEND_PER_CUSTOMER": 8.65 }, "geometry": { "type": "Point", "coordinates": [ -75.22561, 39.93806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-66k", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.048965, "LONGITUDE": -75.060361, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 608.0, "Total Transactions": 12.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.99, "MEDIAN_SPEND_PER_CUSTOMER": 55.45 }, "geometry": { "type": "Point", "coordinates": [ -75.060361, 40.048965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "LOCATION_NAME": "Suit Corner", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2024, "Total Visits": 748.0, "Total Visitors": 673.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1834.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.0, "MEDIAN_SPEND_PER_CUSTOMER": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9s-j9z", "LOCATION_NAME": "Room Service 360", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 40.11123, "LONGITUDE": -75.003126, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 151.0, "POI_CBG": 421010364001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2722.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.9, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003126, 40.11123 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfx-tsq", "LOCATION_NAME": "Riverside Cycles", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 40.041642, "LONGITUDE": -75.237869, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 67.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2235.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 175.83, "MEDIAN_SPEND_PER_CUSTOMER": 175.83 }, "geometry": { "type": "Point", "coordinates": [ -75.237869, 40.041642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23v@63s-dw9-7nq", "LOCATION_NAME": "InMotion", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.894631, "LONGITUDE": -75.2293, "DATE_RANGE_START": 2024, "Total Visits": 5521.0, "Total Visitors": 3994.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4404.0, "Total Transactions": 79.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.79, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.2293, 39.894631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2024, "Total Visits": 806.0, "Total Visitors": 669.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 14983.0, "Total Transactions": 437.0, "Total Customers": 379.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.05, "MEDIAN_SPEND_PER_CUSTOMER": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2024, "Total Visits": 671.0, "Total Visitors": 532.0, "POI_CBG": 421010204003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2064.0, "Total Transactions": 107.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2024, "Total Visits": 11779.0, "Total Visitors": 6947.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 3977.0, "Total Transactions": 124.0, "Total Customers": 100.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.79, "MEDIAN_SPEND_PER_CUSTOMER": 24.51 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-92k", "LOCATION_NAME": "Francesca's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952109, "LONGITUDE": -75.155803, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 195.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2216.0, "Total Transactions": 53.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.81, "MEDIAN_SPEND_PER_CUSTOMER": 31.81 }, "geometry": { "type": "Point", "coordinates": [ -75.155803, 39.952109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pgj-grk", "LOCATION_NAME": "Mexican Grill Stand", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979536, "LONGITUDE": -75.155265, "DATE_RANGE_START": 2024, "Total Visits": 2364.0, "Total Visitors": 1045.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 375.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155265, 39.979536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-jd9", "LOCATION_NAME": "LongHorn Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084409, "LONGITUDE": -75.024098, "DATE_RANGE_START": 2024, "Total Visits": 1036.0, "Total Visitors": 976.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 31473.0, "Total Transactions": 424.0, "Total Customers": 345.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.46, "MEDIAN_SPEND_PER_CUSTOMER": 78.98 }, "geometry": { "type": "Point", "coordinates": [ -75.024098, 40.084409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "LOCATION_NAME": "Han Dynasty", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2024, "Total Visits": 4675.0, "Total Visitors": 2994.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 4485.0, "Total Transactions": 75.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.16, "MEDIAN_SPEND_PER_CUSTOMER": 47.7 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "LOCATION_NAME": "Quaker Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.060575, "LONGITUDE": -75.084417, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 5.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 37.0, "Total Spend": 4840.0, "Total Transactions": 140.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.4, "MEDIAN_SPEND_PER_CUSTOMER": 43.14 }, "geometry": { "type": "Point", "coordinates": [ -75.084417, 40.060575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079219, "LONGITUDE": -75.026617, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5167.0, "Total Transactions": 205.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.92, "MEDIAN_SPEND_PER_CUSTOMER": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.026617, 40.079219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zpv", "LOCATION_NAME": "Reef", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.917091, "LONGITUDE": -75.187282, "DATE_RANGE_START": 2024, "Total Visits": 24854.0, "Total Visitors": 12271.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 747.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.1, "MEDIAN_SPEND_PER_CUSTOMER": 101.1 }, "geometry": { "type": "Point", "coordinates": [ -75.187282, 39.917091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942192, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 14399.0, "Total Transactions": 437.0, "Total Customers": 317.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.59, "MEDIAN_SPEND_PER_CUSTOMER": 36.88 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.942192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027513, "LONGITUDE": -75.209445, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 128.0, "Total Spend": 7625.0, "Total Transactions": 296.0, "Total Customers": 224.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.88, "MEDIAN_SPEND_PER_CUSTOMER": 27.76 }, "geometry": { "type": "Point", "coordinates": [ -75.209445, 40.027513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pmb-8y9", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951633, "LONGITUDE": -75.156013, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1860.0, "Total Transactions": 204.0, "Total Customers": 166.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.29, "MEDIAN_SPEND_PER_CUSTOMER": 10.05 }, "geometry": { "type": "Point", "coordinates": [ -75.156013, 39.951633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2024, "Total Visits": 487.0, "Total Visitors": 413.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1214.0, "Total Transactions": 84.0, "Total Customers": 61.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.06, "MEDIAN_SPEND_PER_CUSTOMER": 10.05 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.060844, "LONGITUDE": -75.192031, "DATE_RANGE_START": 2024, "Total Visits": 948.0, "Total Visitors": 677.0, "POI_CBG": 421010388002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6827.0, "Total Transactions": 632.0, "Total Customers": 453.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.46, "MEDIAN_SPEND_PER_CUSTOMER": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.192031, 40.060844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.034172, "LONGITUDE": -75.216364, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 163.0, "POI_CBG": 421010213002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 35.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.216364, 40.034172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2024, "Total Visits": 271.0, "Total Visitors": 188.0, "POI_CBG": 421010266002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 546.0, "Total Transactions": 21.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.84, "MEDIAN_SPEND_PER_CUSTOMER": 18.67 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-v75", "LOCATION_NAME": "Buffalo Billiards", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948005, "LONGITUDE": -75.143329, "DATE_RANGE_START": 2024, "Total Visits": 920.0, "Total Visitors": 703.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 26.0, "Total Spend": 27189.0, "Total Transactions": 939.0, "Total Customers": 619.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.41 }, "geometry": { "type": "Point", "coordinates": [ -75.143329, 39.948005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 72.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2131.0, "Total Transactions": 86.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.12, "MEDIAN_SPEND_PER_CUSTOMER": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "LOCATION_NAME": "Hoagie Factory", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 96.0, "POI_CBG": 421010266007.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3362.0, "Total Transactions": 184.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.91, "MEDIAN_SPEND_PER_CUSTOMER": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952106, "LONGITUDE": -75.16843, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7947.0, "Total Transactions": 600.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.53, "MEDIAN_SPEND_PER_CUSTOMER": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.16843, 39.952106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2024, "Total Visits": 881.0, "Total Visitors": 799.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2382.0, "Total Transactions": 225.0, "Total Customers": 166.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.54, "MEDIAN_SPEND_PER_CUSTOMER": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "LOCATION_NAME": "Triangle Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 146.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 51.0, "Total Spend": 22955.0, "Total Transactions": 487.0, "Total Customers": 354.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.42, "MEDIAN_SPEND_PER_CUSTOMER": 51.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.047172, "LONGITUDE": -75.142507, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 8.0, "POI_CBG": 421010276004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5472.0, "Total Transactions": 199.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142507, 40.047172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.991919, "LONGITUDE": -75.178907, "DATE_RANGE_START": 2024, "Total Visits": 972.0, "Total Visitors": 567.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 31.0, "Total Spend": 703.0, "Total Transactions": 37.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.45, "MEDIAN_SPEND_PER_CUSTOMER": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.178907, 39.991919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8f-djv", "LOCATION_NAME": "Kim's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.01711, "LONGITUDE": -75.084033, "DATE_RANGE_START": 2024, "Total Visits": 445.0, "Total Visitors": 244.0, "POI_CBG": 421010300006.0, "MEDIAN_DWELL": 200.0, "Total Spend": 230.0, "Total Transactions": 13.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.04, "MEDIAN_SPEND_PER_CUSTOMER": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.084033, 40.01711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "LOCATION_NAME": "Rieker's Prime Meats", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 155.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 6.0, "Total Spend": 986.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.42, "MEDIAN_SPEND_PER_CUSTOMER": 38.42 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.105522, "LONGITUDE": -75.032843, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 146.0, "Total Transactions": 16.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.31, "MEDIAN_SPEND_PER_CUSTOMER": 41.62 }, "geometry": { "type": "Point", "coordinates": [ -75.032843, 40.105522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.92153, "LONGITUDE": -75.193325, "DATE_RANGE_START": 2024, "Total Visits": 774.0, "Total Visitors": 625.0, "POI_CBG": 421010036003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 543.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.19, "MEDIAN_SPEND_PER_CUSTOMER": 29.38 }, "geometry": { "type": "Point", "coordinates": [ -75.193325, 39.92153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-6tv", "LOCATION_NAME": "Shell Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.015035, "LONGITUDE": -75.178463, "DATE_RANGE_START": 2024, "Total Visits": 803.0, "Total Visitors": 681.0, "POI_CBG": 421010206001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 626.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.41, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178463, 40.015035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "LOCATION_NAME": "Main Street Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.026401, "LONGITUDE": -75.226197, "DATE_RANGE_START": 2024, "Total Visits": 533.0, "Total Visitors": 420.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1792.0, "Total Transactions": 45.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.85, "MEDIAN_SPEND_PER_CUSTOMER": 32.43 }, "geometry": { "type": "Point", "coordinates": [ -75.226197, 40.026401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951681, "LONGITUDE": -75.17226, "DATE_RANGE_START": 2024, "Total Visits": 2412.0, "Total Visitors": 1765.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 16345.0, "Total Transactions": 768.0, "Total Customers": 595.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.22, "MEDIAN_SPEND_PER_CUSTOMER": 21.13 }, "geometry": { "type": "Point", "coordinates": [ -75.17226, 39.951681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "LOCATION_NAME": "Accent On Animals", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2024, "Total Visits": 853.0, "Total Visitors": 735.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3861.0, "Total Transactions": 134.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "LOCATION_NAME": "Golden Nugget Jewelers III", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2024, "Total Visits": 828.0, "Total Visitors": 604.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 27597.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 593.5, "MEDIAN_SPEND_PER_CUSTOMER": 843.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-xh5", "LOCATION_NAME": "C & R Building Supplies", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.937501, "LONGITUDE": -75.165521, "DATE_RANGE_START": 2024, "Total Visits": 835.0, "Total Visitors": 670.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 15.0, "Total Spend": 508.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.8, "MEDIAN_SPEND_PER_CUSTOMER": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165521, 39.937501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pg8-z2k", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.982903, "LONGITUDE": -75.187839, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 172.0, "POI_CBG": 421010149006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 91.0, "Total Transactions": 11.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.84, "MEDIAN_SPEND_PER_CUSTOMER": 26.49 }, "geometry": { "type": "Point", "coordinates": [ -75.187839, 39.982903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "LOCATION_NAME": "Redcap's Corner", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 221.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 397.0, "Total Spend": 920.0, "Total Transactions": 49.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-t5f", "LOCATION_NAME": "Cavanaugh's Riverdeck", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957727, "LONGITUDE": -75.137243, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 179.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 32229.0, "Total Transactions": 1309.0, "Total Customers": 714.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.92, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137243, 39.957727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-223@628-phy-rc5", "LOCATION_NAME": "Tierra Colombiana Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.020572, "LONGITUDE": -75.133736, "DATE_RANGE_START": 2024, "Total Visits": 300.0, "Total Visitors": 197.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 851.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.67, "MEDIAN_SPEND_PER_CUSTOMER": 81.53 }, "geometry": { "type": "Point", "coordinates": [ -75.133736, 40.020572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "LOCATION_NAME": "Saigon Noodle Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074096, "LONGITUDE": -75.202561, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 296.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 1053.0, "Total Transactions": 63.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.26, "MEDIAN_SPEND_PER_CUSTOMER": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.202561, 40.074096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "LOCATION_NAME": "El Poquito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2024, "Total Visits": 249.0, "Total Visitors": 234.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1795.0, "Total Transactions": 25.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.8, "MEDIAN_SPEND_PER_CUSTOMER": 68.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pfx-kmk", "LOCATION_NAME": "Blondie", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.026272, "LONGITUDE": -75.225359, "DATE_RANGE_START": 2024, "Total Visits": 1607.0, "Total Visitors": 1027.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 316.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.1, "MEDIAN_SPEND_PER_CUSTOMER": 71.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225359, 40.026272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "LOCATION_NAME": "Castor Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2024, "Total Visits": 67.0, "Total Visitors": 67.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 39.0, "Total Spend": 3460.0, "Total Transactions": 145.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.46, "MEDIAN_SPEND_PER_CUSTOMER": 25.63 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-vpv", "LOCATION_NAME": "P'unk Burger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927124, "LONGITUDE": -75.166327, "DATE_RANGE_START": 2024, "Total Visits": 658.0, "Total Visitors": 508.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 184.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.74, "MEDIAN_SPEND_PER_CUSTOMER": 69.74 }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.927124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "LOCATION_NAME": "Ruby Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2024, "Total Visits": 348.0, "Total Visitors": 315.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 12223.0, "Total Transactions": 283.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.93, "MEDIAN_SPEND_PER_CUSTOMER": 43.16 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954962, "LONGITUDE": -75.206929, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 14.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1844.0, "Total Transactions": 169.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.78, "MEDIAN_SPEND_PER_CUSTOMER": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206929, 39.954962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.134542, "LONGITUDE": -75.009973, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3442.0, "Total Transactions": 147.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.87 }, "geometry": { "type": "Point", "coordinates": [ -75.009973, 40.134542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "LOCATION_NAME": "BP", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032529, "LONGITUDE": -75.084542, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 162.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 684.0, "Total Transactions": 65.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.084542, 40.032529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "LOCATION_NAME": "David's Mai Lai Wah", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955614, "LONGITUDE": -75.156138, "DATE_RANGE_START": 2024, "Total Visits": 1923.0, "Total Visitors": 1384.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8717.0, "Total Transactions": 249.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.1, "MEDIAN_SPEND_PER_CUSTOMER": 30.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156138, 39.955614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2024, "Total Visits": 446.0, "Total Visitors": 377.0, "POI_CBG": 421010356012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5784.0, "Total Transactions": 686.0, "Total Customers": 267.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.78, "MEDIAN_SPEND_PER_CUSTOMER": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "LOCATION_NAME": "American Sardine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2024, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010021002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1746.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.46, "MEDIAN_SPEND_PER_CUSTOMER": 88.44 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921804, "LONGITUDE": -75.146278, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 30.0, "Total Spend": 275.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.146278, 39.921804 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-vs5", "LOCATION_NAME": "Ys Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.000195, "LONGITUDE": -75.106917, "DATE_RANGE_START": 2024, "Total Visits": 220.0, "Total Visitors": 204.0, "POI_CBG": 421010192004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 147.0, "Total Transactions": 16.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.25, "MEDIAN_SPEND_PER_CUSTOMER": 11.78 }, "geometry": { "type": "Point", "coordinates": [ -75.106917, 40.000195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "LOCATION_NAME": "Fishtown Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 115.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1460.0, "Total Transactions": 54.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.35, "MEDIAN_SPEND_PER_CUSTOMER": 28.11 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2024, "Total Visits": 2156.0, "Total Visitors": 1330.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 66438.0, "Total Transactions": 3111.0, "Total Customers": 1681.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.89, "MEDIAN_SPEND_PER_CUSTOMER": 23.68 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-c3q", "LOCATION_NAME": "Foodery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944856, "LONGITUDE": -75.158469, "DATE_RANGE_START": 2024, "Total Visits": 230.0, "Total Visitors": 186.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6751.0, "Total Transactions": 384.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.09, "MEDIAN_SPEND_PER_CUSTOMER": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.158469, 39.944856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-t9z", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051367, "LONGITUDE": -75.05751, "DATE_RANGE_START": 2024, "Total Visits": 666.0, "Total Visitors": 548.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 265.0, "Total Transactions": 22.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.04, "MEDIAN_SPEND_PER_CUSTOMER": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.05751, 40.051367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pmb-5zz", "LOCATION_NAME": "HiLo Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949027, "LONGITUDE": -75.159503, "DATE_RANGE_START": 2024, "Total Visits": 2542.0, "Total Visitors": 1748.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4464.0, "Total Transactions": 116.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.19, "MEDIAN_SPEND_PER_CUSTOMER": 33.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159503, 39.949027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-jjv", "LOCATION_NAME": "Just Salad", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951824, "LONGITUDE": -75.169805, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 257.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6305.0, "Total Transactions": 378.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.03, "MEDIAN_SPEND_PER_CUSTOMER": 17.39 }, "geometry": { "type": "Point", "coordinates": [ -75.169805, 39.951824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvx-2kz", "LOCATION_NAME": "Rising Sun", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968785, "LONGITUDE": -75.217282, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 166.0, "POI_CBG": 421010104003.0, "MEDIAN_DWELL": null, "Total Spend": 317.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217282, 39.968785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-p7w-wtv", "LOCATION_NAME": "Twistee Treat", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.033208, "LONGITUDE": -75.048855, "DATE_RANGE_START": 2024, "Total Visits": 124.0, "Total Visitors": 107.0, "POI_CBG": 421010315013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 981.0, "Total Transactions": 74.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.18, "MEDIAN_SPEND_PER_CUSTOMER": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.048855, 40.033208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9n-cbk", "LOCATION_NAME": "Sahara Enterprise", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.092708, "LONGITUDE": -74.990003, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5011.0, "Total Transactions": 55.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.58, "MEDIAN_SPEND_PER_CUSTOMER": 39.39 }, "geometry": { "type": "Point", "coordinates": [ -74.990003, 40.092708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2024, "Total Visits": 495.0, "Total Visitors": 174.0, "POI_CBG": 421010347011.0, "MEDIAN_DWELL": 332.0, "Total Spend": 5360.0, "Total Transactions": 687.0, "Total Customers": 240.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-p7q", "LOCATION_NAME": "Turning Heads", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.993848, "LONGITUDE": -75.147504, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 39.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": null, "Total Spend": 176.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.0, "MEDIAN_SPEND_PER_CUSTOMER": 67.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147504, 39.993848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914428, "LONGITUDE": -75.156268, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9089.0, "Total Transactions": 1101.0, "Total Customers": 473.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.09, "MEDIAN_SPEND_PER_CUSTOMER": 10.21 }, "geometry": { "type": "Point", "coordinates": [ -75.156268, 39.914428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.027118, "LONGITUDE": -75.063023, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010319001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3153.0, "Total Transactions": 63.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.1, "MEDIAN_SPEND_PER_CUSTOMER": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.063023, 40.027118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgg-n3q", "LOCATION_NAME": "Wine & Spirits Stores", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.998975, "LONGITUDE": -75.166581, "DATE_RANGE_START": 2024, "Total Visits": 403.0, "Total Visitors": 330.0, "POI_CBG": 421010173001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4396.0, "Total Transactions": 125.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.26, "MEDIAN_SPEND_PER_CUSTOMER": 42.97 }, "geometry": { "type": "Point", "coordinates": [ -75.166581, 39.998975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-p8n-cnq", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.036246, "LONGITUDE": -75.070259, "DATE_RANGE_START": 2024, "Total Visits": 1359.0, "Total Visitors": 983.0, "POI_CBG": 421010313003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13590.0, "Total Transactions": 736.0, "Total Customers": 421.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.56, "MEDIAN_SPEND_PER_CUSTOMER": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.070259, 40.036246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-8jv", "LOCATION_NAME": "Newmans Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038927, "LONGITUDE": -75.177558, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010238003.0, "MEDIAN_DWELL": null, "Total Spend": 477.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.12, "MEDIAN_SPEND_PER_CUSTOMER": 28.58 }, "geometry": { "type": "Point", "coordinates": [ -75.177558, 40.038927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "LOCATION_NAME": "Fountain Porter", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 246.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1070.0, "Total Transactions": 28.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.6, "MEDIAN_SPEND_PER_CUSTOMER": 28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2024, "Total Visits": 1722.0, "Total Visitors": 875.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 178.0, "Total Spend": 1457.0, "Total Transactions": 83.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.26 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2024, "Total Visits": 915.0, "Total Visitors": 700.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2276.0, "Total Transactions": 145.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.74, "MEDIAN_SPEND_PER_CUSTOMER": 18.56 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "LOCATION_NAME": "New England Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2024, "Total Visits": 321.0, "Total Visitors": 292.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 114.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.06, "MEDIAN_SPEND_PER_CUSTOMER": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "LOCATION_NAME": "Yummy Pho", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 179.0, "POI_CBG": 421010153001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 972.0, "Total Transactions": 57.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.32, "MEDIAN_SPEND_PER_CUSTOMER": 14.76 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "LOCATION_NAME": "Buddakan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949021, "LONGITUDE": -75.147193, "DATE_RANGE_START": 2024, "Total Visits": 3170.0, "Total Visitors": 2184.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 29381.0, "Total Transactions": 170.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 141.58, "MEDIAN_SPEND_PER_CUSTOMER": 158.67 }, "geometry": { "type": "Point", "coordinates": [ -75.147193, 39.949021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "LOCATION_NAME": "Ristorante Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 2665.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 130.45, "MEDIAN_SPEND_PER_CUSTOMER": 130.45 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.120321, "LONGITUDE": -75.016067, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 928.0, "Total Transactions": 80.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.85, "MEDIAN_SPEND_PER_CUSTOMER": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.016067, 40.120321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2024, "Total Visits": 691.0, "Total Visitors": 525.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7307.0, "Total Transactions": 891.0, "Total Customers": 282.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962152, "LONGITUDE": -75.2011, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010108004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 383.0, "Total Transactions": 38.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2011, 39.962152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "LOCATION_NAME": "Forever 21", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2024, "Total Visits": 1930.0, "Total Visitors": 1640.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 8160.0, "Total Transactions": 219.0, "Total Customers": 200.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.8, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 40.079127, "LONGITUDE": -75.027686, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 222.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.31, "MEDIAN_SPEND_PER_CUSTOMER": 64.31 }, "geometry": { "type": "Point", "coordinates": [ -75.027686, 40.079127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj8-mp9", "LOCATION_NAME": "Crown Chicken & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021661, "LONGITUDE": -75.079451, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3019.0, "Total Transactions": 234.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.1, "MEDIAN_SPEND_PER_CUSTOMER": 14.18 }, "geometry": { "type": "Point", "coordinates": [ -75.079451, 40.021661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-223@628-pmb-kzz", "LOCATION_NAME": "Perfumology", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.950987, "LONGITUDE": -75.145262, "DATE_RANGE_START": 2024, "Total Visits": 798.0, "Total Visitors": 377.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 143.0, "Total Spend": 5295.0, "Total Transactions": 33.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.8, "MEDIAN_SPEND_PER_CUSTOMER": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145262, 39.950987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-wtv", "LOCATION_NAME": "Legacy Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.999295, "LONGITUDE": -75.13741, "DATE_RANGE_START": 2024, "Total Visits": 103.0, "Total Visitors": 88.0, "POI_CBG": 421010176023.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5266.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 2000.0, "MEDIAN_SPEND_PER_CUSTOMER": 2000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13741, 39.999295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "LOCATION_NAME": "A& A Grocery Store", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2024, "Total Visits": 103.0, "Total Visitors": 80.0, "POI_CBG": 421010093001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1141.0, "Total Transactions": 132.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.91, "MEDIAN_SPEND_PER_CUSTOMER": 12.72 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "LOCATION_NAME": "The Fresh Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2024, "Total Visits": 594.0, "Total Visitors": 449.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 31414.0, "Total Transactions": 637.0, "Total Customers": 392.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.93, "MEDIAN_SPEND_PER_CUSTOMER": 39.77 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-wp9", "LOCATION_NAME": "Artist & Craftsman Supply", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.950359, "LONGITUDE": -75.146021, "DATE_RANGE_START": 2024, "Total Visits": 1195.0, "Total Visitors": 972.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 568.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.81, "MEDIAN_SPEND_PER_CUSTOMER": 33.81 }, "geometry": { "type": "Point", "coordinates": [ -75.146021, 39.950359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p8m-v2k", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.029845, "LONGITUDE": -75.058936, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 13.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 209.0, "Total Transactions": 16.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.2, "MEDIAN_SPEND_PER_CUSTOMER": 14.12 }, "geometry": { "type": "Point", "coordinates": [ -75.058936, 40.029845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "LOCATION_NAME": "Cottman Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 151.0, "POI_CBG": 421010331013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2728.0, "Total Transactions": 197.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.72, "MEDIAN_SPEND_PER_CUSTOMER": 27.53 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "LOCATION_NAME": "Suburban Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2024, "Total Visits": 249.0, "Total Visitors": 221.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1276.0, "Total Transactions": 43.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.81, "MEDIAN_SPEND_PER_CUSTOMER": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "LOCATION_NAME": "Al Sham Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 136.0, "POI_CBG": 421010313001.0, "MEDIAN_DWELL": 55.0, "Total Spend": 10673.0, "Total Transactions": 312.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.93, "MEDIAN_SPEND_PER_CUSTOMER": 22.17 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2024, "Total Visits": 2270.0, "Total Visitors": 832.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 349.0, "Total Spend": 5383.0, "Total Transactions": 796.0, "Total Customers": 394.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 9.47 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm9-tn5", "LOCATION_NAME": "Cafe Walnut", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948274, "LONGITUDE": -75.152798, "DATE_RANGE_START": 2024, "Total Visits": 1069.0, "Total Visitors": 473.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 192.0, "Total Spend": 1942.0, "Total Transactions": 170.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.43, "MEDIAN_SPEND_PER_CUSTOMER": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.152798, 39.948274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kj9", "LOCATION_NAME": "Mr Wish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950618, "LONGITUDE": -75.175914, "DATE_RANGE_START": 2024, "Total Visits": 945.0, "Total Visitors": 706.0, "POI_CBG": 421010008031.0, "MEDIAN_DWELL": 10.0, "Total Spend": 17.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.54, "MEDIAN_SPEND_PER_CUSTOMER": 6.54 }, "geometry": { "type": "Point", "coordinates": [ -75.175914, 39.950618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "LOCATION_NAME": "Perkins Restaurant & Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2024, "Total Visits": 571.0, "Total Visitors": 440.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1339.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.73, "MEDIAN_SPEND_PER_CUSTOMER": 52.39 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-phy-kmk", "LOCATION_NAME": "Hong Kong", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02599, "LONGITUDE": -75.132553, "DATE_RANGE_START": 2024, "Total Visits": 2670.0, "Total Visitors": 2150.0, "POI_CBG": 421010286003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 12760.0, "Total Transactions": 374.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.85, "MEDIAN_SPEND_PER_CUSTOMER": 27.92 }, "geometry": { "type": "Point", "coordinates": [ -75.132553, 40.02599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9m-gtv", "LOCATION_NAME": "Bi Rite Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080432, "LONGITUDE": -74.994729, "DATE_RANGE_START": 2024, "Total Visits": 365.0, "Total Visitors": 276.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 94.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 35.68 }, "geometry": { "type": "Point", "coordinates": [ -74.994729, 40.080432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.011206, "LONGITUDE": -75.113008, "DATE_RANGE_START": 2024, "Total Visits": 487.0, "Total Visitors": 298.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 10416.0, "Total Transactions": 1130.0, "Total Customers": 477.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.77, "MEDIAN_SPEND_PER_CUSTOMER": 12.36 }, "geometry": { "type": "Point", "coordinates": [ -75.113008, 40.011206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.966, "LONGITUDE": -75.233618, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 150.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 4481.0, "Total Transactions": 70.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.87, "MEDIAN_SPEND_PER_CUSTOMER": 42.75 }, "geometry": { "type": "Point", "coordinates": [ -75.233618, 39.966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "LOCATION_NAME": "Four Seasons Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2024, "Total Visits": 399.0, "Total Visitors": 255.0, "POI_CBG": 421010332001.0, "MEDIAN_DWELL": 50.0, "Total Spend": 11710.0, "Total Transactions": 254.0, "Total Customers": 211.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.1, "MEDIAN_SPEND_PER_CUSTOMER": 47.39 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "LOCATION_NAME": "Golden Dragon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2024, "Total Visits": 143.0, "Total Visitors": 108.0, "POI_CBG": 421010110003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 338.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.25, "MEDIAN_SPEND_PER_CUSTOMER": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.055982, "LONGITUDE": -75.005099, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 4.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 4.0, "Total Spend": 782.0, "Total Transactions": 33.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.14, "MEDIAN_SPEND_PER_CUSTOMER": 21.93 }, "geometry": { "type": "Point", "coordinates": [ -75.005099, 40.055982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952358, "LONGITUDE": -75.17353, "DATE_RANGE_START": 2024, "Total Visits": 2130.0, "Total Visitors": 1413.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5675.0, "Total Transactions": 958.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.74, "MEDIAN_SPEND_PER_CUSTOMER": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.17353, 39.952358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.989246, "LONGITUDE": -75.090206, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 29.0, "POI_CBG": 421010379006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 308.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090206, 39.989246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "LOCATION_NAME": "Beijing Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 150.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 220.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.38, "MEDIAN_SPEND_PER_CUSTOMER": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7bk", "LOCATION_NAME": "Attico Rooftop Lounge", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948632, "LONGITUDE": -75.164198, "DATE_RANGE_START": 2024, "Total Visits": 5537.0, "Total Visitors": 3636.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 4429.0, "Total Transactions": 66.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.5, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164198, 39.948632 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rkz", "LOCATION_NAME": "Applebee's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977513, "LONGITUDE": -75.272635, "DATE_RANGE_START": 2024, "Total Visits": 233.0, "Total Visitors": 171.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 43.0, "Total Spend": 1817.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.99, "MEDIAN_SPEND_PER_CUSTOMER": 41.24 }, "geometry": { "type": "Point", "coordinates": [ -75.272635, 39.977513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2024, "Total Visits": 417.0, "Total Visitors": 228.0, "POI_CBG": 421010314021.0, "MEDIAN_DWELL": 18.0, "Total Spend": 2768.0, "Total Transactions": 84.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "LOCATION_NAME": "Harbor Freight Tools", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2024, "Total Visits": 537.0, "Total Visitors": 474.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 34412.0, "Total Transactions": 583.0, "Total Customers": 465.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.2, "MEDIAN_SPEND_PER_CUSTOMER": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "LOCATION_NAME": "Boostin' Bowls", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 99.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4632.0, "Total Transactions": 275.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.91, "MEDIAN_SPEND_PER_CUSTOMER": 18.05 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2024, "Total Visits": 719.0, "Total Visitors": 427.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1204.0, "Total Transactions": 186.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.49, "MEDIAN_SPEND_PER_CUSTOMER": 7.69 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-223@628-p8d-yd9", "LOCATION_NAME": "Tavares Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.015008, "LONGITUDE": -75.070982, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010298005.0, "MEDIAN_DWELL": null, "Total Spend": 201.0, "Total Transactions": 22.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.94, "MEDIAN_SPEND_PER_CUSTOMER": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.070982, 40.015008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "LOCATION_NAME": "Giorgio On Pine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 23.0, "Total Spend": 7466.0, "Total Transactions": 88.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.68, "MEDIAN_SPEND_PER_CUSTOMER": 75.53 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgj-8qf", "LOCATION_NAME": "Delgado Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.990198, "LONGITUDE": -75.162651, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010167013.0, "MEDIAN_DWELL": 52.0, "Total Spend": 50.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.162651, 39.990198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgb-h89", "LOCATION_NAME": "Franklin Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.960337, "LONGITUDE": -75.169538, "DATE_RANGE_START": 2024, "Total Visits": 225.0, "Total Visitors": 195.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4722.0, "Total Transactions": 186.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.169538, 39.960337 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm6-w49", "LOCATION_NAME": "777 Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.9327, "LONGITUDE": -75.19274, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 84.0, "POI_CBG": 421010033005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1167.0, "Total Transactions": 59.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.92, "MEDIAN_SPEND_PER_CUSTOMER": 18.33 }, "geometry": { "type": "Point", "coordinates": [ -75.19274, 39.9327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-p35", "LOCATION_NAME": "Jhoandra Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007461, "LONGITUDE": -75.138722, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 84.0, "POI_CBG": 421010199001.0, "MEDIAN_DWELL": 296.0, "Total Spend": 408.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.64, "MEDIAN_SPEND_PER_CUSTOMER": 27.04 }, "geometry": { "type": "Point", "coordinates": [ -75.138722, 40.007461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.95129, "LONGITUDE": -75.177478, "DATE_RANGE_START": 2024, "Total Visits": 50.0, "Total Visitors": 41.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 629.0, "Total Transactions": 26.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.52, "MEDIAN_SPEND_PER_CUSTOMER": 22.26 }, "geometry": { "type": "Point", "coordinates": [ -75.177478, 39.95129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.98332, "LONGITUDE": -75.101162, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 583.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.15, "MEDIAN_SPEND_PER_CUSTOMER": 23.71 }, "geometry": { "type": "Point", "coordinates": [ -75.101162, 39.98332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "LOCATION_NAME": "Wilson's Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2024, "Total Visits": 208.0, "Total Visitors": 159.0, "POI_CBG": 421010282003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 850.0, "Total Transactions": 57.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.64, "MEDIAN_SPEND_PER_CUSTOMER": 13.07 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z4v", "LOCATION_NAME": "Beer Hut", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.100508, "LONGITUDE": -75.028029, "DATE_RANGE_START": 2024, "Total Visits": 207.0, "Total Visitors": 191.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 92.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.95, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.028029, 40.100508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "LOCATION_NAME": "Chubby's Fox Chase Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2024, "Total Visits": 130.0, "Total Visitors": 59.0, "POI_CBG": 421010341006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1546.0, "Total Transactions": 61.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.61, "MEDIAN_SPEND_PER_CUSTOMER": 25.11 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg9-ty9", "LOCATION_NAME": "Milano Di Rouge", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.962944, "LONGITUDE": -75.163384, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 170.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4821.0, "Total Transactions": 53.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.48, "MEDIAN_SPEND_PER_CUSTOMER": 83.36 }, "geometry": { "type": "Point", "coordinates": [ -75.163384, 39.962944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "LOCATION_NAME": "Eye Encounters", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2024, "Total Visits": 4467.0, "Total Visitors": 2948.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2549.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 164.5, "MEDIAN_SPEND_PER_CUSTOMER": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zvf", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.997217, "LONGITUDE": -75.154386, "DATE_RANGE_START": 2024, "Total Visits": 92.0, "Total Visitors": 71.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 1205.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.46, "MEDIAN_SPEND_PER_CUSTOMER": 65.55 }, "geometry": { "type": "Point", "coordinates": [ -75.154386, 39.997217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-qzz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.993907, "LONGITUDE": -75.096856, "DATE_RANGE_START": 2024, "Total Visits": 540.0, "Total Visitors": 413.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 439.0, "Total Transactions": 21.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.9, "MEDIAN_SPEND_PER_CUSTOMER": 16.37 }, "geometry": { "type": "Point", "coordinates": [ -75.096856, 39.993907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-cnq", "LOCATION_NAME": "Vape O2", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.970583, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 134.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1812.0, "Total Transactions": 41.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.67, "MEDIAN_SPEND_PER_CUSTOMER": 56.99 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.970583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8m-v2k", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.029454, "LONGITUDE": -75.058288, "DATE_RANGE_START": 2024, "Total Visits": 315.0, "Total Visitors": 226.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1318.0, "Total Transactions": 22.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.59, "MEDIAN_SPEND_PER_CUSTOMER": 39.41 }, "geometry": { "type": "Point", "coordinates": [ -75.058288, 40.029454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj2-sh5", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.012182, "LONGITUDE": -75.115173, "DATE_RANGE_START": 2024, "Total Visits": 159.0, "Total Visitors": 153.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4661.0, "Total Transactions": 101.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.96, "MEDIAN_SPEND_PER_CUSTOMER": 35.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115173, 40.012182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p74-z75", "LOCATION_NAME": "Seafood Bay Inc", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041659, "LONGITUDE": -75.028001, "DATE_RANGE_START": 2024, "Total Visits": 204.0, "Total Visitors": 133.0, "POI_CBG": 421010331022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 148.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028001, 40.041659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-226@628-pmb-6x5", "LOCATION_NAME": "Goldie", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950344, "LONGITUDE": -75.166847, "DATE_RANGE_START": 2024, "Total Visits": 255.0, "Total Visitors": 221.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 20.0, "Total Spend": 386.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.45, "MEDIAN_SPEND_PER_CUSTOMER": 22.52 }, "geometry": { "type": "Point", "coordinates": [ -75.166847, 39.950344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "LOCATION_NAME": "CAVA", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951854, "LONGITUDE": -75.169241, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 21495.0, "Total Transactions": 1257.0, "Total Customers": 985.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.39, "MEDIAN_SPEND_PER_CUSTOMER": 16.36 }, "geometry": { "type": "Point", "coordinates": [ -75.169241, 39.951854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "LOCATION_NAME": "Domenic's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 112.0, "POI_CBG": 421010365012.0, "MEDIAN_DWELL": 18.0, "Total Spend": 181.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.45, "MEDIAN_SPEND_PER_CUSTOMER": 47.53 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-gp9", "LOCATION_NAME": "Umai Umai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964683, "LONGITUDE": -75.174102, "DATE_RANGE_START": 2024, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 262.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.89, "MEDIAN_SPEND_PER_CUSTOMER": 48.89 }, "geometry": { "type": "Point", "coordinates": [ -75.174102, 39.964683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-pqf", "LOCATION_NAME": "Hong Kong Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05323, "LONGITUDE": -75.185876, "DATE_RANGE_START": 2024, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010253003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 128.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.3, "MEDIAN_SPEND_PER_CUSTOMER": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185876, 40.05323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-q4v", "LOCATION_NAME": "Los Potrillos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012389, "LONGITUDE": -75.11245, "DATE_RANGE_START": 2024, "Total Visits": 226.0, "Total Visitors": 184.0, "POI_CBG": 421010289012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 72.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.36, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.11245, 40.012389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-v4v", "LOCATION_NAME": "CrayTaste", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949612, "LONGITUDE": -75.143186, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 3.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 394.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.16, "MEDIAN_SPEND_PER_CUSTOMER": 56.16 }, "geometry": { "type": "Point", "coordinates": [ -75.143186, 39.949612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "LOCATION_NAME": "OfficeMax", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.043406, "LONGITUDE": -75.054428, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010315022.0, "MEDIAN_DWELL": 9.0, "Total Spend": 6119.0, "Total Transactions": 321.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.52, "MEDIAN_SPEND_PER_CUSTOMER": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.054428, 40.043406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "LOCATION_NAME": "Pizza City", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 82.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": null, "Total Spend": 3571.0, "Total Transactions": 130.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.9, "MEDIAN_SPEND_PER_CUSTOMER": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg4-f4v", "LOCATION_NAME": "Quality Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034201, "LONGITUDE": -75.176939, "DATE_RANGE_START": 2024, "Total Visits": 205.0, "Total Visitors": 172.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 40.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.06, "MEDIAN_SPEND_PER_CUSTOMER": 7.06 }, "geometry": { "type": "Point", "coordinates": [ -75.176939, 40.034201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "LOCATION_NAME": "Pizzeria Pesto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1458.0, "Total Transactions": 61.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.47, "MEDIAN_SPEND_PER_CUSTOMER": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfy-2ff", "LOCATION_NAME": "Tasty Twisters Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035673, "LONGITUDE": -75.236122, "DATE_RANGE_START": 2024, "Total Visits": 124.0, "Total Visitors": 124.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 313.0, "Total Transactions": 39.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.76, "MEDIAN_SPEND_PER_CUSTOMER": 7.93 }, "geometry": { "type": "Point", "coordinates": [ -75.236122, 40.035673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.040308, "LONGITUDE": -75.143944, "DATE_RANGE_START": 2024, "Total Visits": 479.0, "Total Visitors": 336.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 193.0, "Total Transactions": 16.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.63, "MEDIAN_SPEND_PER_CUSTOMER": 9.12 }, "geometry": { "type": "Point", "coordinates": [ -75.143944, 40.040308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.06269, "LONGITUDE": -75.083714, "DATE_RANGE_START": 2024, "Total Visits": 951.0, "Total Visitors": 741.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1457.0, "Total Transactions": 45.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 22.13 }, "geometry": { "type": "Point", "coordinates": [ -75.083714, 40.06269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-sdv", "LOCATION_NAME": "P S & Co", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.94866, "LONGITUDE": -75.16974, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 420.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 27.0, "Total Spend": 625.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.58, "MEDIAN_SPEND_PER_CUSTOMER": 23.58 }, "geometry": { "type": "Point", "coordinates": [ -75.16974, 39.94866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phc-xbk", "LOCATION_NAME": "Wynnecare Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991173, "LONGITUDE": -75.226907, "DATE_RANGE_START": 2024, "Total Visits": 1244.0, "Total Visitors": 1028.0, "POI_CBG": 421010119004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 264.0, "Total Transactions": 13.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226907, 39.991173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2024, "Total Visits": 292.0, "Total Visitors": 162.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9235.0, "Total Transactions": 764.0, "Total Customers": 548.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.3, "MEDIAN_SPEND_PER_CUSTOMER": 11.38 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.008821, "LONGITUDE": -75.175673, "DATE_RANGE_START": 2024, "Total Visits": 945.0, "Total Visitors": 681.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1383.0, "Total Transactions": 103.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.94, "MEDIAN_SPEND_PER_CUSTOMER": 11.79 }, "geometry": { "type": "Point", "coordinates": [ -75.175673, 40.008821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "LOCATION_NAME": "Brickbat Books", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1553.0, "Total Transactions": 51.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.55, "MEDIAN_SPEND_PER_CUSTOMER": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-rhq", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978964, "LONGITUDE": -75.271417, "DATE_RANGE_START": 2024, "Total Visits": 886.0, "Total Visitors": 799.0, "POI_CBG": 421010098023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2249.0, "Total Transactions": 122.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.98 }, "geometry": { "type": "Point", "coordinates": [ -75.271417, 39.978964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "LOCATION_NAME": "The Little Apple", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 40.025728, "LONGITUDE": -75.223969, "DATE_RANGE_START": 2024, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 1762.0, "Total Transactions": 57.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.223969, 40.025728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-bzf", "LOCATION_NAME": "Jake's & Cooper's Wine Bar & Wine Shop", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.02595, "LONGITUDE": -75.224164, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 170.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7321.0, "Total Transactions": 115.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.36, "MEDIAN_SPEND_PER_CUSTOMER": 57.42 }, "geometry": { "type": "Point", "coordinates": [ -75.224164, 40.02595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-rhq", "LOCATION_NAME": "Moonshine Philly", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.925012, "LONGITUDE": -75.151601, "DATE_RANGE_START": 2024, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": null, "Total Spend": 4728.0, "Total Transactions": 84.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.24, "MEDIAN_SPEND_PER_CUSTOMER": 50.73 }, "geometry": { "type": "Point", "coordinates": [ -75.151601, 39.925012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.072443, "LONGITUDE": -75.194946, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010257001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 9029.0, "Total Transactions": 437.0, "Total Customers": 241.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.53, "MEDIAN_SPEND_PER_CUSTOMER": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194946, 40.072443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "LOCATION_NAME": "Stateside", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2024, "Total Visits": 96.0, "Total Visitors": 96.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5829.0, "Total Transactions": 111.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.16, "MEDIAN_SPEND_PER_CUSTOMER": 44.04 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-n3q", "LOCATION_NAME": "Pete's Clown House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003738, "LONGITUDE": -75.094646, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 122.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1415.0, "Total Transactions": 46.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.53, "MEDIAN_SPEND_PER_CUSTOMER": 28.34 }, "geometry": { "type": "Point", "coordinates": [ -75.094646, 40.003738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "LOCATION_NAME": "Bud & Marilyn's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 13914.0, "Total Transactions": 232.0, "Total Customers": 221.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.34, "MEDIAN_SPEND_PER_CUSTOMER": 46.34 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pfw-6p9", "LOCATION_NAME": "Exxon Mobil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.01419, "LONGITUDE": -75.177685, "DATE_RANGE_START": 2024, "Total Visits": 316.0, "Total Visitors": 295.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3522.0, "Total Transactions": 121.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 31.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177685, 40.01419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-k75", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.094474, "LONGITUDE": -75.018213, "DATE_RANGE_START": 2024, "Total Visits": 745.0, "Total Visitors": 745.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 8621.0, "Total Transactions": 176.0, "Total Customers": 154.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.87, "MEDIAN_SPEND_PER_CUSTOMER": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.018213, 40.094474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.028739, "LONGITUDE": -75.099173, "DATE_RANGE_START": 2024, "Total Visits": 806.0, "Total Visitors": 669.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 48.0, "Total Spend": 53499.0, "Total Transactions": 2160.0, "Total Customers": 1833.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.54, "MEDIAN_SPEND_PER_CUSTOMER": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.099173, 40.028739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvx-3dv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.967246, "LONGITUDE": -75.215954, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 11.0, "POI_CBG": 421010105001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 896.0, "Total Transactions": 51.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.215954, 39.967246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9q-zfz", "LOCATION_NAME": "Applebee's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.076701, "LONGITUDE": -75.033636, "DATE_RANGE_START": 2024, "Total Visits": 685.0, "Total Visitors": 661.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 56.0, "Total Spend": 3628.0, "Total Transactions": 53.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.0, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033636, 40.076701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "LOCATION_NAME": "PrimoHoagies", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032496, "LONGITUDE": -75.21442, "DATE_RANGE_START": 2024, "Total Visits": 986.0, "Total Visitors": 582.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2043.0, "Total Transactions": 83.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.85, "MEDIAN_SPEND_PER_CUSTOMER": 17.65 }, "geometry": { "type": "Point", "coordinates": [ -75.21442, 40.032496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-ph5-py9", "LOCATION_NAME": "Papp's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982659, "LONGITUDE": -75.241682, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 117.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.68, "MEDIAN_SPEND_PER_CUSTOMER": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.982659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998161, "LONGITUDE": -75.124518, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421010177025.0, "MEDIAN_DWELL": 9.0, "Total Spend": 84.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.04, "MEDIAN_SPEND_PER_CUSTOMER": 32.04 }, "geometry": { "type": "Point", "coordinates": [ -75.124518, 39.998161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pgb-2hq", "LOCATION_NAME": "Premium Steap", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956535, "LONGITUDE": -75.160142, "DATE_RANGE_START": 2024, "Total Visits": 1074.0, "Total Visitors": 808.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 288.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.6, "MEDIAN_SPEND_PER_CUSTOMER": 56.76 }, "geometry": { "type": "Point", "coordinates": [ -75.160142, 39.956535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-ty9", "LOCATION_NAME": "Franklin Ice Cream Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949566, "LONGITUDE": -75.142866, "DATE_RANGE_START": 2024, "Total Visits": 225.0, "Total Visitors": 178.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 686.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142866, 39.949566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.992372, "LONGITUDE": -75.140437, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1316.0, "Total Transactions": 61.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140437, 39.992372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "LOCATION_NAME": "Tavares Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 183.0, "POI_CBG": 421010247005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 52.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.98, "MEDIAN_SPEND_PER_CUSTOMER": 5.98 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pjf-kvf", "LOCATION_NAME": "Tailored Home", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 40.076272, "LONGITUDE": -75.207332, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 340.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 100.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 38.07 }, "geometry": { "type": "Point", "coordinates": [ -75.207332, 40.076272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043786, "LONGITUDE": -75.017617, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010349004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 468.0, "Total Transactions": 24.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.08, "MEDIAN_SPEND_PER_CUSTOMER": 21.55 }, "geometry": { "type": "Point", "coordinates": [ -75.017617, 40.043786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-7wk", "LOCATION_NAME": "The Board & Brew", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953697, "LONGITUDE": -75.189364, "DATE_RANGE_START": 2024, "Total Visits": 687.0, "Total Visitors": 452.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 669.0, "Total Transactions": 18.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 29.6 }, "geometry": { "type": "Point", "coordinates": [ -75.189364, 39.953697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-vcq", "LOCATION_NAME": "Talula's Daily", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947344, "LONGITUDE": -75.153493, "DATE_RANGE_START": 2024, "Total Visits": 764.0, "Total Visitors": 558.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2900.0, "Total Transactions": 167.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 39.947344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-cqz", "LOCATION_NAME": "Tropical Smoothie Café", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977828, "LONGITUDE": -75.158485, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 12704.0, "Total Transactions": 986.0, "Total Customers": 586.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.67, "MEDIAN_SPEND_PER_CUSTOMER": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158485, 39.977828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "LOCATION_NAME": "In & Out Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 82.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 26.0, "Total Spend": 7382.0, "Total Transactions": 295.0, "Total Customers": 219.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.45, "MEDIAN_SPEND_PER_CUSTOMER": 28.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "LOCATION_NAME": "El Coqui Panaderia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2024, "Total Visits": 204.0, "Total Visitors": 178.0, "POI_CBG": 421010192002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6406.0, "Total Transactions": 300.0, "Total Customers": 211.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvw-hwk", "LOCATION_NAME": "Quick Stop Deli", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.953566, "LONGITUDE": -75.219295, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 125.0, "POI_CBG": 421010086011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 47.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219295, 39.953566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2024, "Total Visits": 903.0, "Total Visitors": 756.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 18194.0, "Total Transactions": 1522.0, "Total Customers": 1030.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.03, "MEDIAN_SPEND_PER_CUSTOMER": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-9j9", "LOCATION_NAME": "Omega Optical", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.081963, "LONGITUDE": -75.17243, "DATE_RANGE_START": 2024, "Total Visits": 220.0, "Total Visitors": 162.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 79.0, "Total Spend": 1205.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 457.5, "MEDIAN_SPEND_PER_CUSTOMER": 457.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17243, 40.081963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050261, "LONGITUDE": -75.094573, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 5.0, "POI_CBG": 421010306003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 510.0, "Total Transactions": 24.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.5, "MEDIAN_SPEND_PER_CUSTOMER": 37.91 }, "geometry": { "type": "Point", "coordinates": [ -75.094573, 40.050261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "LOCATION_NAME": "Loco Dollar", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.998868, "LONGITUDE": -75.126992, "DATE_RANGE_START": 2024, "Total Visits": 635.0, "Total Visitors": 348.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1242.0, "Total Transactions": 58.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.65, "MEDIAN_SPEND_PER_CUSTOMER": 23.97 }, "geometry": { "type": "Point", "coordinates": [ -75.126992, 39.998868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "LOCATION_NAME": "Penn Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2024, "Total Visits": 96.0, "Total Visitors": 92.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 888.0, "Total Transactions": 38.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 20.67 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "LOCATION_NAME": "Greene Street", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 340.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 321.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 121.93, "MEDIAN_SPEND_PER_CUSTOMER": 121.93 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pp5-2p9", "LOCATION_NAME": "Izlas Latin Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992269, "LONGITUDE": -75.135579, "DATE_RANGE_START": 2024, "Total Visits": 699.0, "Total Visitors": 441.0, "POI_CBG": 421010176015.0, "MEDIAN_DWELL": 8.0, "Total Spend": 4140.0, "Total Transactions": 62.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.58, "MEDIAN_SPEND_PER_CUSTOMER": 79.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135579, 39.992269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pnx-bhq", "LOCATION_NAME": "Tommy's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971034, "LONGITUDE": -75.128711, "DATE_RANGE_START": 2024, "Total Visits": 438.0, "Total Visitors": 246.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": 56.0, "Total Spend": 722.0, "Total Transactions": 39.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.08, "MEDIAN_SPEND_PER_CUSTOMER": 18.68 }, "geometry": { "type": "Point", "coordinates": [ -75.128711, 39.971034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2024, "Total Visits": 749.0, "Total Visitors": 525.0, "POI_CBG": 421010268002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1573.0, "Total Transactions": 112.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.23, "MEDIAN_SPEND_PER_CUSTOMER": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "LOCATION_NAME": "Lucky 13 Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927169, "LONGITUDE": -75.167128, "DATE_RANGE_START": 2024, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 5122.0, "Total Transactions": 126.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.02, "MEDIAN_SPEND_PER_CUSTOMER": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.167128, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "LOCATION_NAME": "Jade Harbor", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010314022.0, "MEDIAN_DWELL": null, "Total Spend": 5825.0, "Total Transactions": 78.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.13, "MEDIAN_SPEND_PER_CUSTOMER": 47.27 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034777, "LONGITUDE": -75.066117, "DATE_RANGE_START": 2024, "Total Visits": 704.0, "Total Visitors": 417.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 311.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.53, "MEDIAN_SPEND_PER_CUSTOMER": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066117, 40.034777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-225@628-pmf-sqz", "LOCATION_NAME": "Rag & Bone", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950021, "LONGITUDE": -75.167636, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 93.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2316.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 231.25, "MEDIAN_SPEND_PER_CUSTOMER": 252.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167636, 39.950021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "LOCATION_NAME": "New Quality Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 17.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 503.0, "Total Spend": 517.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.88, "MEDIAN_SPEND_PER_CUSTOMER": 27.82 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "LOCATION_NAME": "Bistrot La Minette", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 157.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 62.0, "Total Spend": 4596.0, "Total Transactions": 30.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.26, "MEDIAN_SPEND_PER_CUSTOMER": 122.99 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-pg2-2zf", "LOCATION_NAME": "Mi 'N Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024353, "LONGITUDE": -75.220723, "DATE_RANGE_START": 2024, "Total Visits": 121.0, "Total Visitors": 101.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2398.0, "Total Transactions": 76.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.06, "MEDIAN_SPEND_PER_CUSTOMER": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.220723, 40.024353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm4-b6k", "LOCATION_NAME": "Two Eagles Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934031, "LONGITUDE": -75.177208, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 132.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 777.0, "Total Transactions": 36.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 23.63 }, "geometry": { "type": "Point", "coordinates": [ -75.177208, 39.934031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.031655, "LONGITUDE": -75.099529, "DATE_RANGE_START": 2024, "Total Visits": 3423.0, "Total Visitors": 2139.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 713.0, "Total Transactions": 36.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.04, "MEDIAN_SPEND_PER_CUSTOMER": 15.45 }, "geometry": { "type": "Point", "coordinates": [ -75.099529, 40.031655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-zvf", "LOCATION_NAME": "Philly AIDS Thrift", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 39.940647, "LONGITUDE": -75.151165, "DATE_RANGE_START": 2024, "Total Visits": 1655.0, "Total Visitors": 965.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 15451.0, "Total Transactions": 748.0, "Total Customers": 625.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.96, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151165, 39.940647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p75-3nq", "LOCATION_NAME": "Torresdale Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.048663, "LONGITUDE": -75.011484, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 151.0, "POI_CBG": 421010349001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 518.0, "Total Transactions": 26.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.76, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.011484, 40.048663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-75z", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.964719, "LONGITUDE": -75.205291, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 416.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.27, "MEDIAN_SPEND_PER_CUSTOMER": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.205291, 39.964719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2024, "Total Visits": 1676.0, "Total Visitors": 1176.0, "POI_CBG": 421010379004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3891.0, "Total Transactions": 349.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.72, "MEDIAN_SPEND_PER_CUSTOMER": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8m-y9z", "LOCATION_NAME": "Roll's Auto Sales", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.030621, "LONGITUDE": -75.055332, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 29.0, "Total Spend": 4147.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 475.0, "MEDIAN_SPEND_PER_CUSTOMER": 475.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055332, 40.030621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.028767, "LONGITUDE": -75.206205, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 29.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 620.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.13, "MEDIAN_SPEND_PER_CUSTOMER": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.206205, 40.028767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97806, "LONGITUDE": -75.119535, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4192.0, "Total Transactions": 487.0, "Total Customers": 325.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.38, "MEDIAN_SPEND_PER_CUSTOMER": 9.26 }, "geometry": { "type": "Point", "coordinates": [ -75.119535, 39.97806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "LOCATION_NAME": "lululemon athletica", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2024, "Total Visits": 349.0, "Total Visitors": 338.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 20286.0, "Total Transactions": 207.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.0, "MEDIAN_SPEND_PER_CUSTOMER": 88.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.945319, "LONGITUDE": -75.238386, "DATE_RANGE_START": 2024, "Total Visits": 619.0, "Total Visitors": 359.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 14.0, "Total Spend": 328.0, "Total Transactions": 21.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.51, "MEDIAN_SPEND_PER_CUSTOMER": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.945319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7z-6tv", "LOCATION_NAME": "Dollar Discount", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.055124, "LONGITUDE": -75.090736, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 63.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.25, "MEDIAN_SPEND_PER_CUSTOMER": 17.25 }, "geometry": { "type": "Point", "coordinates": [ -75.090736, 40.055124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2024, "Total Visits": 685.0, "Total Visitors": 461.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 15.0, "Total Spend": 3521.0, "Total Transactions": 120.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.84, "MEDIAN_SPEND_PER_CUSTOMER": 29.84 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "LOCATION_NAME": "Amada", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2024, "Total Visits": 315.0, "Total Visitors": 307.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 95.0, "Total Spend": 12721.0, "Total Transactions": 104.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.06, "MEDIAN_SPEND_PER_CUSTOMER": 108.84 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pnx-cwk", "LOCATION_NAME": "Sunrise 2 Authentic Thai Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969357, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2024, "Total Visits": 307.0, "Total Visitors": 307.0, "POI_CBG": 421010143001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 446.0, "Total Transactions": 49.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.25, "MEDIAN_SPEND_PER_CUSTOMER": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "LOCATION_NAME": "The Sidecar Bar & Grille", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 138.0, "POI_CBG": 421010013002.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1541.0, "Total Transactions": 26.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.84, "MEDIAN_SPEND_PER_CUSTOMER": 63.46 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "LOCATION_NAME": "Penrose Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2024, "Total Visits": 384.0, "Total Visitors": 303.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 680.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.3, "MEDIAN_SPEND_PER_CUSTOMER": 45.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@63s-dvw-f2k", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964788, "LONGITUDE": -75.22346, "DATE_RANGE_START": 2024, "Total Visits": 140.0, "Total Visitors": 112.0, "POI_CBG": 421010103002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 125.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.8, "MEDIAN_SPEND_PER_CUSTOMER": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22346, 39.964788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "LOCATION_NAME": "O'Neals Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 141.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 52.0, "Total Spend": 6889.0, "Total Transactions": 194.0, "Total Customers": 115.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.92, "MEDIAN_SPEND_PER_CUSTOMER": 38.27 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-hnq", "LOCATION_NAME": "The Ranstead Room", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952421, "LONGITUDE": -75.17382, "DATE_RANGE_START": 2024, "Total Visits": 2130.0, "Total Visitors": 1413.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1839.0, "Total Transactions": 34.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.95, "MEDIAN_SPEND_PER_CUSTOMER": 52.45 }, "geometry": { "type": "Point", "coordinates": [ -75.17382, 39.952421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "LOCATION_NAME": "Sang Kee Peking Duck House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 236.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 10748.0, "Total Transactions": 283.0, "Total Customers": 241.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.44, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.086019, "LONGITUDE": -75.046799, "DATE_RANGE_START": 2024, "Total Visits": 1043.0, "Total Visitors": 850.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1785.0, "Total Transactions": 107.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.32, "MEDIAN_SPEND_PER_CUSTOMER": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.046799, 40.086019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-yqf", "LOCATION_NAME": "Lau Kee Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955193, "LONGITUDE": -75.155565, "DATE_RANGE_START": 2024, "Total Visits": 301.0, "Total Visitors": 282.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 78.0, "Total Spend": 52.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.79, "MEDIAN_SPEND_PER_CUSTOMER": 19.79 }, "geometry": { "type": "Point", "coordinates": [ -75.155565, 39.955193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.050139, "LONGITUDE": -75.066802, "DATE_RANGE_START": 2024, "Total Visits": 591.0, "Total Visitors": 509.0, "POI_CBG": 421010314011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1321.0, "Total Transactions": 116.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.63, "MEDIAN_SPEND_PER_CUSTOMER": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066802, 40.050139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-php-y9z", "LOCATION_NAME": "Jamaican D's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.052429, "LONGITUDE": -75.157999, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 21.0, "POI_CBG": 421010249002.0, "MEDIAN_DWELL": 660.0, "Total Spend": 222.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.75, "MEDIAN_SPEND_PER_CUSTOMER": 62.75 }, "geometry": { "type": "Point", "coordinates": [ -75.157999, 40.052429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "LOCATION_NAME": "Open House", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.950281, "LONGITUDE": -75.161742, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11102.0, "Total Transactions": 305.0, "Total Customers": 275.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.24, "MEDIAN_SPEND_PER_CUSTOMER": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161742, 39.950281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmf-6x5", "LOCATION_NAME": "Gia Pronto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94766, "LONGITUDE": -75.192915, "DATE_RANGE_START": 2024, "Total Visits": 14692.0, "Total Visitors": 7742.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 63.0, "Total Spend": 5702.0, "Total Transactions": 636.0, "Total Customers": 427.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.2, "MEDIAN_SPEND_PER_CUSTOMER": 9.69 }, "geometry": { "type": "Point", "coordinates": [ -75.192915, 39.94766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-232@628-p8t-w49", "LOCATION_NAME": "SNIPES", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087656, "LONGITUDE": -74.961053, "DATE_RANGE_START": 2024, "Total Visits": 958.0, "Total Visitors": 893.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3743.0, "Total Transactions": 28.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.0, "MEDIAN_SPEND_PER_CUSTOMER": 119.37 }, "geometry": { "type": "Point", "coordinates": [ -74.961053, 40.087656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "LOCATION_NAME": "Ultimo Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 263.0, "POI_CBG": 421010008032.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4028.0, "Total Transactions": 413.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.97, "MEDIAN_SPEND_PER_CUSTOMER": 9.74 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfw-tgk", "LOCATION_NAME": "Far East Chinese Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019736, "LONGITUDE": -75.174288, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 184.0, "Total Transactions": 7.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.24, "MEDIAN_SPEND_PER_CUSTOMER": 69.99 }, "geometry": { "type": "Point", "coordinates": [ -75.174288, 40.019736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.080948, "LONGITUDE": -75.025099, "DATE_RANGE_START": 2024, "Total Visits": 4106.0, "Total Visitors": 2738.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 35452.0, "Total Transactions": 354.0, "Total Customers": 255.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.52, "MEDIAN_SPEND_PER_CUSTOMER": 43.14 }, "geometry": { "type": "Point", "coordinates": [ -75.025099, 40.080948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2024, "Total Visits": 783.0, "Total Visitors": 635.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7295.0, "Total Transactions": 875.0, "Total Customers": 324.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.69, "MEDIAN_SPEND_PER_CUSTOMER": 11.93 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmf-y7q", "LOCATION_NAME": "Sunset Social", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952424, "LONGITUDE": -75.183701, "DATE_RANGE_START": 2024, "Total Visits": 1505.0, "Total Visitors": 810.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 56.0, "Total Spend": 1298.0, "Total Transactions": 66.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.64, "MEDIAN_SPEND_PER_CUSTOMER": 19.68 }, "geometry": { "type": "Point", "coordinates": [ -75.183701, 39.952424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-kpv", "LOCATION_NAME": "The Goat Rittenhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951177, "LONGITUDE": -75.172386, "DATE_RANGE_START": 2024, "Total Visits": 241.0, "Total Visitors": 215.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 14.0, "Total Spend": 768.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.9, "MEDIAN_SPEND_PER_CUSTOMER": 30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172386, 39.951177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2024, "Total Visits": 1775.0, "Total Visitors": 1231.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 93954.0, "Total Transactions": 5088.0, "Total Customers": 2401.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.86, "MEDIAN_SPEND_PER_CUSTOMER": 21.47 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.040588, "LONGITUDE": -75.223534, "DATE_RANGE_START": 2024, "Total Visits": 2517.0, "Total Visitors": 1908.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 139073.0, "Total Transactions": 7986.0, "Total Customers": 3064.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.08, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223534, 40.040588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.949855, "LONGITUDE": -75.145525, "DATE_RANGE_START": 2024, "Total Visits": 632.0, "Total Visitors": 554.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1508.0, "Total Transactions": 162.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.23, "MEDIAN_SPEND_PER_CUSTOMER": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.145525, 39.949855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-t9z", "LOCATION_NAME": "Last Drop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945156, "LONGITUDE": -75.163064, "DATE_RANGE_START": 2024, "Total Visits": 288.0, "Total Visitors": 215.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 71.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.15, "MEDIAN_SPEND_PER_CUSTOMER": 6.42 }, "geometry": { "type": "Point", "coordinates": [ -75.163064, 39.945156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvy-kfz", "LOCATION_NAME": "Gigi and Big R", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95108, "LONGITUDE": -75.198957, "DATE_RANGE_START": 2024, "Total Visits": 1051.0, "Total Visitors": 503.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 680.0, "Total Transactions": 29.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.56, "MEDIAN_SPEND_PER_CUSTOMER": 19.56 }, "geometry": { "type": "Point", "coordinates": [ -75.198957, 39.95108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "LOCATION_NAME": "Jini Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.085911, "LONGITUDE": -74.962082, "DATE_RANGE_START": 2024, "Total Visits": 333.0, "Total Visitors": 315.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3842.0, "Total Transactions": 97.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.57, "MEDIAN_SPEND_PER_CUSTOMER": 21.56 }, "geometry": { "type": "Point", "coordinates": [ -74.962082, 40.085911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2024, "Total Visits": 957.0, "Total Visitors": 739.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 14302.0, "Total Transactions": 1036.0, "Total Customers": 704.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.98, "MEDIAN_SPEND_PER_CUSTOMER": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "LOCATION_NAME": "Shot Tower Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2024, "Total Visits": 303.0, "Total Visitors": 169.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 40.0, "Total Spend": 3025.0, "Total Transactions": 396.0, "Total Customers": 226.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.21, "MEDIAN_SPEND_PER_CUSTOMER": 9.82 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956702, "LONGITUDE": -75.194283, "DATE_RANGE_START": 2024, "Total Visits": 6012.0, "Total Visitors": 2975.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 9292.0, "Total Transactions": 1393.0, "Total Customers": 565.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.61, "MEDIAN_SPEND_PER_CUSTOMER": 10.04 }, "geometry": { "type": "Point", "coordinates": [ -75.194283, 39.956702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2024, "Total Visits": 429.0, "Total Visitors": 315.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8979.0, "Total Transactions": 1118.0, "Total Customers": 525.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.42, "MEDIAN_SPEND_PER_CUSTOMER": 10.23 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.974266, "LONGITUDE": -75.119833, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 661.0, "Total Transactions": 38.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.68, "MEDIAN_SPEND_PER_CUSTOMER": 13.71 }, "geometry": { "type": "Point", "coordinates": [ -75.119833, 39.974266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945484, "LONGITUDE": -75.178667, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010012014.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2909.0, "Total Transactions": 326.0, "Total Customers": 201.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.178667, 39.945484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "LOCATION_NAME": "1 Tippling Place", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2024, "Total Visits": 303.0, "Total Visitors": 275.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1502.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.83, "MEDIAN_SPEND_PER_CUSTOMER": 51.83 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "LOCATION_NAME": "Keller Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.072464, "LONGITUDE": -75.076664, "DATE_RANGE_START": 2024, "Total Visits": 405.0, "Total Visitors": 129.0, "POI_CBG": 421010341002.0, "MEDIAN_DWELL": 114.0, "Total Spend": 1891.0, "Total Transactions": 91.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.84, "MEDIAN_SPEND_PER_CUSTOMER": 20.61 }, "geometry": { "type": "Point", "coordinates": [ -75.076664, 40.072464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "LOCATION_NAME": "1 Stop Smoke Shop", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 120.0, "POI_CBG": 421010357011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1066.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 28.32 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pgg-sdv", "LOCATION_NAME": "Neighbors Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.004231, "LONGITUDE": -75.174942, "DATE_RANGE_START": 2024, "Total Visits": 146.0, "Total Visitors": 125.0, "POI_CBG": 421010171001.0, "MEDIAN_DWELL": 25.0, "Total Spend": 361.0, "Total Transactions": 37.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 14.56 }, "geometry": { "type": "Point", "coordinates": [ -75.174942, 40.004231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmd-vmk", "LOCATION_NAME": "Bonner's Irish Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.952025, "LONGITUDE": -75.1785, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 254.0, "POI_CBG": 421010007003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 5162.0, "Total Transactions": 207.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.8, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1785, 39.952025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-dqf", "LOCATION_NAME": "Pulaski Hall", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.015833, "LONGITUDE": -75.154849, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 120.0, "Total Spend": 641.0, "Total Transactions": 16.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.2, "MEDIAN_SPEND_PER_CUSTOMER": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154849, 40.015833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "LOCATION_NAME": "King Food Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038528, "LONGITUDE": -75.036845, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 128.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 13.0, "Total Spend": 802.0, "Total Transactions": 34.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.49, "MEDIAN_SPEND_PER_CUSTOMER": 28.88 }, "geometry": { "type": "Point", "coordinates": [ -75.036845, 40.038528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-tsq", "LOCATION_NAME": "J's Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.017868, "LONGITUDE": -75.091027, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 170.0, "POI_CBG": 421010301003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 9.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.38, "MEDIAN_SPEND_PER_CUSTOMER": 3.38 }, "geometry": { "type": "Point", "coordinates": [ -75.091027, 40.017868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.997394, "LONGITUDE": -75.074105, "DATE_RANGE_START": 2024, "Total Visits": 219.0, "Total Visitors": 132.0, "POI_CBG": 421010183004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 708.0, "Total Transactions": 34.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.04, "MEDIAN_SPEND_PER_CUSTOMER": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074105, 39.997394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8j-ct9", "LOCATION_NAME": "Hunan Star", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035881, "LONGITUDE": -75.042073, "DATE_RANGE_START": 2024, "Total Visits": 103.0, "Total Visitors": 103.0, "POI_CBG": 421010326001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 816.0, "Total Transactions": 29.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.27, "MEDIAN_SPEND_PER_CUSTOMER": 36.54 }, "geometry": { "type": "Point", "coordinates": [ -75.042073, 40.035881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-ty9", "LOCATION_NAME": "Sakura Japanese Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962988, "LONGITUDE": -75.163765, "DATE_RANGE_START": 2024, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 189.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.5, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163765, 39.962988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7v-w49", "LOCATION_NAME": "China Ruby", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055952, "LONGITUDE": -75.07383, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 50.0, "POI_CBG": 421010338002.0, "MEDIAN_DWELL": null, "Total Spend": 83.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.64, "MEDIAN_SPEND_PER_CUSTOMER": 13.64 }, "geometry": { "type": "Point", "coordinates": [ -75.07383, 40.055952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 203.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 2492.0, "Total Transactions": 130.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 18.83 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "LOCATION_NAME": "Olive Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2024, "Total Visits": 1269.0, "Total Visitors": 1212.0, "POI_CBG": 421010345022.0, "MEDIAN_DWELL": 26.0, "Total Spend": 19374.0, "Total Transactions": 313.0, "Total Customers": 266.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.84, "MEDIAN_SPEND_PER_CUSTOMER": 67.32 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg2-jgk", "LOCATION_NAME": "Grocery Outlet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.05001, "LONGITUDE": -75.1853, "DATE_RANGE_START": 2024, "Total Visits": 556.0, "Total Visitors": 556.0, "POI_CBG": 421010237004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 105599.0, "Total Transactions": 3487.0, "Total Customers": 1638.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.37, "MEDIAN_SPEND_PER_CUSTOMER": 37.73 }, "geometry": { "type": "Point", "coordinates": [ -75.1853, 40.05001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "LOCATION_NAME": "Le Viet Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2024, "Total Visits": 640.0, "Total Visitors": 494.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 33.0, "Total Spend": 665.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.05, "MEDIAN_SPEND_PER_CUSTOMER": 60.46 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pnw-ndv", "LOCATION_NAME": "Cake Life Bake Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970543, "LONGITUDE": -75.134645, "DATE_RANGE_START": 2024, "Total Visits": 478.0, "Total Visitors": 349.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 5154.0, "Total Transactions": 278.0, "Total Customers": 190.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.85, "MEDIAN_SPEND_PER_CUSTOMER": 20.43 }, "geometry": { "type": "Point", "coordinates": [ -75.134645, 39.970543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm3-x5z", "LOCATION_NAME": "Produce Truck", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.93094, "LONGITUDE": -75.161476, "DATE_RANGE_START": 2024, "Total Visits": 367.0, "Total Visitors": 313.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 2.0, "Total Spend": 28.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.74, "MEDIAN_SPEND_PER_CUSTOMER": 10.74 }, "geometry": { "type": "Point", "coordinates": [ -75.161476, 39.93094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-vxq", "LOCATION_NAME": "Big Catch Poke", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926743, "LONGITUDE": -75.16739, "DATE_RANGE_START": 2024, "Total Visits": 419.0, "Total Visitors": 155.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 367.0, "Total Spend": 729.0, "Total Transactions": 29.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.16739, 39.926743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg4-hyv", "LOCATION_NAME": "City Blue", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.034851, "LONGITUDE": -75.17549, "DATE_RANGE_START": 2024, "Total Visits": 1173.0, "Total Visitors": 616.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 2787.0, "Total Transactions": 43.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.24, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17549, 40.034851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-b8v", "LOCATION_NAME": "Pennypack Beer Distributor", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.058813, "LONGITUDE": -75.045527, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 178.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 303.0, "Total Transactions": 13.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.0, "MEDIAN_SPEND_PER_CUSTOMER": 115.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045527, 40.058813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.92494, "LONGITUDE": -75.169059, "DATE_RANGE_START": 2024, "Total Visits": 1588.0, "Total Visitors": 754.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 21.0, "Total Spend": 1748.0, "Total Transactions": 103.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.169059, 39.92494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2024, "Total Visits": 666.0, "Total Visitors": 490.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7436.0, "Total Transactions": 902.0, "Total Customers": 379.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.55, "MEDIAN_SPEND_PER_CUSTOMER": 11.85 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pmb-f75", "LOCATION_NAME": "Franklin Drug Center", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.945968, "LONGITUDE": -75.155895, "DATE_RANGE_START": 2024, "Total Visits": 291.0, "Total Visitors": 192.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 632.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 165.0, "MEDIAN_SPEND_PER_CUSTOMER": 240.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155895, 39.945968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.917209, "LONGITUDE": -75.185417, "DATE_RANGE_START": 2024, "Total Visits": 552.0, "Total Visitors": 428.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 5734.0, "Total Transactions": 187.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 20.37 }, "geometry": { "type": "Point", "coordinates": [ -75.185417, 39.917209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "LOCATION_NAME": "ALDO", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951749, "LONGITUDE": -75.168187, "DATE_RANGE_START": 2024, "Total Visits": 642.0, "Total Visitors": 407.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 27.0, "Total Spend": 1064.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.17, "MEDIAN_SPEND_PER_CUSTOMER": 74.57 }, "geometry": { "type": "Point", "coordinates": [ -75.168187, 39.951749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "LOCATION_NAME": "Beer Love", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2024, "Total Visits": 380.0, "Total Visitors": 350.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2172.0, "Total Transactions": 95.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.49, "MEDIAN_SPEND_PER_CUSTOMER": 25.45 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-jd9", "LOCATION_NAME": "Watch Co", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.952218, "LONGITUDE": -75.168358, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 334.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168358, 39.952218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pm9-y9z", "LOCATION_NAME": "Shyne Jewelers", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941833, "LONGITUDE": -75.148783, "DATE_RANGE_START": 2024, "Total Visits": 1340.0, "Total Visitors": 1206.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 774.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 108.0, "MEDIAN_SPEND_PER_CUSTOMER": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148783, 39.941833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.104996, "LONGITUDE": -75.007889, "DATE_RANGE_START": 2024, "Total Visits": 76.0, "Total Visitors": 65.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 52.0, "Total Spend": 17595.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 149.25, "MEDIAN_SPEND_PER_CUSTOMER": 864.81 }, "geometry": { "type": "Point", "coordinates": [ -75.007889, 40.104996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.915658, "LONGITUDE": -75.139581, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 22.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 716.0, "Total Transactions": 49.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.26, "MEDIAN_SPEND_PER_CUSTOMER": 12.31 }, "geometry": { "type": "Point", "coordinates": [ -75.139581, 39.915658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj3-9cq", "LOCATION_NAME": "Yummy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0124, "LONGITUDE": -75.15023, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 104.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 216.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 82.0, "MEDIAN_SPEND_PER_CUSTOMER": 82.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15023, 40.0124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2024, "Total Visits": 445.0, "Total Visitors": 390.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 26178.0, "Total Transactions": 471.0, "Total Customers": 420.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.99, "MEDIAN_SPEND_PER_CUSTOMER": 45.35 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2024, "Total Visits": 321.0, "Total Visitors": 184.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 345.0, "Total Transactions": 33.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.83, "MEDIAN_SPEND_PER_CUSTOMER": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfy-wkz", "LOCATION_NAME": "Dawson Street Pub", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.018548, "LONGITUDE": -75.21277, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 149.0, "POI_CBG": 421010209004.0, "MEDIAN_DWELL": 41.0, "Total Spend": 8270.0, "Total Transactions": 299.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.11, "MEDIAN_SPEND_PER_CUSTOMER": 42.87 }, "geometry": { "type": "Point", "coordinates": [ -75.21277, 40.018548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-45f", "LOCATION_NAME": "Las Maraca Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.045072, "LONGITUDE": -75.060626, "DATE_RANGE_START": 2024, "Total Visits": 234.0, "Total Visitors": 138.0, "POI_CBG": 421010314023.0, "MEDIAN_DWELL": 187.0, "Total Spend": 380.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.060626, 40.045072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2024, "Total Visits": 169.0, "Total Visitors": 147.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 5273.0, "Total Transactions": 336.0, "Total Customers": 257.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 16.33 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "LOCATION_NAME": "Pizza & Steak Master", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 17.0, "POI_CBG": 421010253001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 602.0, "Total Transactions": 29.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.73, "MEDIAN_SPEND_PER_CUSTOMER": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm3-wc5", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.932286, "LONGITUDE": -75.162307, "DATE_RANGE_START": 2024, "Total Visits": 2102.0, "Total Visitors": 969.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 12.0, "Total Spend": 199763.0, "Total Transactions": 6211.0, "Total Customers": 2043.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.98, "MEDIAN_SPEND_PER_CUSTOMER": 49.65 }, "geometry": { "type": "Point", "coordinates": [ -75.162307, 39.932286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pnw-py9", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.969281, "LONGITUDE": -75.140143, "DATE_RANGE_START": 2024, "Total Visits": 866.0, "Total Visitors": 837.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2483.0, "Total Transactions": 116.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.8, "MEDIAN_SPEND_PER_CUSTOMER": 27.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140143, 39.969281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@63s-dvz-2p9", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.957038, "LONGITUDE": -75.215038, "DATE_RANGE_START": 2024, "Total Visits": 473.0, "Total Visitors": 430.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1098.0, "Total Transactions": 39.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.62, "MEDIAN_SPEND_PER_CUSTOMER": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215038, 39.957038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgj-4qf", "LOCATION_NAME": "Eddie's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980774, "LONGITUDE": -75.153402, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 105.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 50.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.1, "MEDIAN_SPEND_PER_CUSTOMER": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153402, 39.980774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2024, "Total Visits": 1819.0, "Total Visitors": 1078.0, "POI_CBG": 421010316002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 23210.0, "Total Transactions": 2027.0, "Total Customers": 840.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.61, "MEDIAN_SPEND_PER_CUSTOMER": 14.33 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.095744, "LONGITUDE": -74.976099, "DATE_RANGE_START": 2024, "Total Visits": 2359.0, "Total Visitors": 1360.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 90596.0, "Total Transactions": 4822.0, "Total Customers": 1551.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.05, "MEDIAN_SPEND_PER_CUSTOMER": 27.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976099, 40.095744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.070241, "LONGITUDE": -75.030693, "DATE_RANGE_START": 2024, "Total Visits": 1006.0, "Total Visitors": 716.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1668.0, "Total Transactions": 126.0, "Total Customers": 87.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.03, "MEDIAN_SPEND_PER_CUSTOMER": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.030693, 40.070241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-68v", "LOCATION_NAME": "J'aime French Bakery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948054, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2024, "Total Visits": 291.0, "Total Visitors": 250.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 445.0, "Total Transactions": 30.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.45, "MEDIAN_SPEND_PER_CUSTOMER": 14.11 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.948054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnt-435", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.974417, "LONGITUDE": -75.121241, "DATE_RANGE_START": 2024, "Total Visits": 1677.0, "Total Visitors": 1161.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 295.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.94, "MEDIAN_SPEND_PER_CUSTOMER": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.121241, 39.974417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.964844, "LONGITUDE": -75.204389, "DATE_RANGE_START": 2024, "Total Visits": 519.0, "Total Visitors": 279.0, "POI_CBG": 421010107002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 281.0, "Total Transactions": 13.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 12.55 }, "geometry": { "type": "Point", "coordinates": [ -75.204389, 39.964844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgb-2tv", "LOCATION_NAME": "Local", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.957095, "LONGITUDE": -75.167019, "DATE_RANGE_START": 2024, "Total Visits": 4813.0, "Total Visitors": 2753.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 288.0, "Total Spend": 262.0, "Total Transactions": 32.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.08, "MEDIAN_SPEND_PER_CUSTOMER": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167019, 39.957095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "LOCATION_NAME": "Banana Leaf", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953737, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2024, "Total Visits": 271.0, "Total Visitors": 246.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 34.0, "Total Spend": 4069.0, "Total Transactions": 83.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.81, "MEDIAN_SPEND_PER_CUSTOMER": 46.81 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.953737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-249", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991221, "LONGITUDE": -75.100297, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 287.0, "Total Transactions": 12.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.100297, 39.991221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "LOCATION_NAME": "The Twisted Tail", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941828, "LONGITUDE": -75.145203, "DATE_RANGE_START": 2024, "Total Visits": 290.0, "Total Visitors": 240.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 126.0, "Total Spend": 1383.0, "Total Transactions": 25.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.82 }, "geometry": { "type": "Point", "coordinates": [ -75.145203, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvp-bff", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946253, "LONGITUDE": -75.239448, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010081012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3859.0, "Total Transactions": 128.0, "Total Customers": 92.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.48, "MEDIAN_SPEND_PER_CUSTOMER": 34.22 }, "geometry": { "type": "Point", "coordinates": [ -75.239448, 39.946253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.080332, "LONGITUDE": -75.171849, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 271.0, "Total Transactions": 18.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.03, "MEDIAN_SPEND_PER_CUSTOMER": 12.23 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.080332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "LOCATION_NAME": "Hatville Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2024, "Total Visits": 320.0, "Total Visitors": 296.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 4153.0, "Total Transactions": 244.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.25, "MEDIAN_SPEND_PER_CUSTOMER": 15.62 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "LOCATION_NAME": "ABC Supply", "TOP_CATEGORY": "Lumber and Other Construction Materials Merchant Wholesalers", "LATITUDE": 40.002303, "LONGITUDE": -75.079252, "DATE_RANGE_START": 2024, "Total Visits": 333.0, "Total Visitors": 329.0, "POI_CBG": 421010183003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 118843.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 558.9, "MEDIAN_SPEND_PER_CUSTOMER": 1031.45 }, "geometry": { "type": "Point", "coordinates": [ -75.079252, 40.002303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2024, "Total Visits": 1340.0, "Total Visitors": 1089.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 21685.0, "Total Transactions": 1759.0, "Total Customers": 1001.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.36, "MEDIAN_SPEND_PER_CUSTOMER": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "LOCATION_NAME": "Fresh Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 142.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": null, "Total Spend": 167.0, "Total Transactions": 16.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.13, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-phn-qj9", "LOCATION_NAME": "Uptown Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.067574, "LONGITUDE": -75.179009, "DATE_RANGE_START": 2024, "Total Visits": 146.0, "Total Visitors": 103.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 28.0, "Total Spend": 319.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179009, 40.067574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvy-p9z", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953836, "LONGITUDE": -75.203059, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 30.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4603.0, "Total Transactions": 325.0, "Total Customers": 216.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.84, "MEDIAN_SPEND_PER_CUSTOMER": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.203059, 39.953836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pm6-f2k", "LOCATION_NAME": "Bobs Food Market", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.920704, "LONGITUDE": -75.15184, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010042012.0, "MEDIAN_DWELL": null, "Total Spend": 55.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.75, "MEDIAN_SPEND_PER_CUSTOMER": 19.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15184, 39.920704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-tsq", "LOCATION_NAME": "Chaes Food LLC", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.983616, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2024, "Total Visits": 433.0, "Total Visitors": 342.0, "POI_CBG": 421010162002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6071.0, "Total Transactions": 21.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 128.01, "MEDIAN_SPEND_PER_CUSTOMER": 259.46 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.983616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-tgk", "LOCATION_NAME": "Southside Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019691, "LONGITUDE": -75.174271, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": null, "Total Spend": 458.0, "Total Transactions": 20.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.67, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174271, 40.019691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pj5-3nq", "LOCATION_NAME": "New York Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009138, "LONGITUDE": -75.152203, "DATE_RANGE_START": 2024, "Total Visits": 442.0, "Total Visitors": 217.0, "POI_CBG": 421010201022.0, "MEDIAN_DWELL": 96.0, "Total Spend": 4530.0, "Total Transactions": 265.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.48, "MEDIAN_SPEND_PER_CUSTOMER": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.152203, 40.009138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "LOCATION_NAME": "Xi'an Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953264, "LONGITUDE": -75.154923, "DATE_RANGE_START": 2024, "Total Visits": 2235.0, "Total Visitors": 1503.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 98.0, "Total Spend": 814.0, "Total Transactions": 21.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.01, "MEDIAN_SPEND_PER_CUSTOMER": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.154923, 39.953264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "LOCATION_NAME": "La Rosa Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 88.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 167.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947381, "LONGITUDE": -75.164227, "DATE_RANGE_START": 2024, "Total Visits": 2853.0, "Total Visitors": 1556.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 232.0, "Total Spend": 3031.0, "Total Transactions": 271.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.41, "MEDIAN_SPEND_PER_CUSTOMER": 10.93 }, "geometry": { "type": "Point", "coordinates": [ -75.164227, 39.947381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dw9-835", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.878273, "LONGITUDE": -75.238948, "DATE_RANGE_START": 2024, "Total Visits": 532.0, "Total Visitors": 459.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2794.0, "Total Transactions": 154.0, "Total Customers": 146.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.25, "MEDIAN_SPEND_PER_CUSTOMER": 16.98 }, "geometry": { "type": "Point", "coordinates": [ -75.238948, 39.878273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg2-hdv", "LOCATION_NAME": "Golden Crust Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.059871, "LONGITUDE": -75.190661, "DATE_RANGE_START": 2024, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010255003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3703.0, "Total Transactions": 171.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.82, "MEDIAN_SPEND_PER_CUSTOMER": 18.72 }, "geometry": { "type": "Point", "coordinates": [ -75.190661, 40.059871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 171.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2592.0, "Total Transactions": 53.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.87, "MEDIAN_SPEND_PER_CUSTOMER": 29.66 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvw-zj9", "LOCATION_NAME": "Lucky Seven Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962742, "LONGITUDE": -75.234853, "DATE_RANGE_START": 2024, "Total Visits": 137.0, "Total Visitors": 90.0, "POI_CBG": 421010094004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 139.0, "Total Transactions": 11.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.41, "MEDIAN_SPEND_PER_CUSTOMER": 18.59 }, "geometry": { "type": "Point", "coordinates": [ -75.234853, 39.962742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.068966, "LONGITUDE": -75.005145, "DATE_RANGE_START": 2024, "Total Visits": 57.0, "Total Visitors": 34.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 52341.0, "Total Transactions": 3161.0, "Total Customers": 1424.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.21, "MEDIAN_SPEND_PER_CUSTOMER": 20.24 }, "geometry": { "type": "Point", "coordinates": [ -75.005145, 40.068966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "LOCATION_NAME": "East Falls Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2024, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010170001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7374.0, "Total Transactions": 258.0, "Total Customers": 169.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.0, "MEDIAN_SPEND_PER_CUSTOMER": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "LOCATION_NAME": "Gaffney Fabrics", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2024, "Total Visits": 116.0, "Total Visitors": 82.0, "POI_CBG": 421010246001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3510.0, "Total Transactions": 107.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.55, "MEDIAN_SPEND_PER_CUSTOMER": 26.78 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6hq", "LOCATION_NAME": "Auntie Anne's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084404, "LONGITUDE": -74.962397, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 278.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.7, "MEDIAN_SPEND_PER_CUSTOMER": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -74.962397, 40.084404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-6p9", "LOCATION_NAME": "Dolce Italian Philadelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951188, "LONGITUDE": -75.165178, "DATE_RANGE_START": 2024, "Total Visits": 2339.0, "Total Visitors": 1455.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 125.0, "Total Spend": 487.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.84, "MEDIAN_SPEND_PER_CUSTOMER": 59.84 }, "geometry": { "type": "Point", "coordinates": [ -75.165178, 39.951188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pj9-4d9", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04031, "LONGITUDE": -75.143956, "DATE_RANGE_START": 2024, "Total Visits": 370.0, "Total Visitors": 254.0, "POI_CBG": 421010276002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 186.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.31, "MEDIAN_SPEND_PER_CUSTOMER": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.143956, 40.04031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.00722, "LONGITUDE": -75.137234, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010199001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 242.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.5, "MEDIAN_SPEND_PER_CUSTOMER": 39.25 }, "geometry": { "type": "Point", "coordinates": [ -75.137234, 40.00722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "LOCATION_NAME": "Gallelli Formal Wear", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2024, "Total Visits": 143.0, "Total Visitors": 140.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 843.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.0, "MEDIAN_SPEND_PER_CUSTOMER": 145.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm4-dsq", "LOCATION_NAME": "Barrel's Fine Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.922841, "LONGITUDE": -75.17594, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 61.0, "POI_CBG": 421010039013.0, "MEDIAN_DWELL": 176.0, "Total Spend": 673.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.1, "MEDIAN_SPEND_PER_CUSTOMER": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.17594, 39.922841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-p7q", "LOCATION_NAME": "The Wardrobe Philadelphia", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.958203, "LONGITUDE": -75.145206, "DATE_RANGE_START": 2024, "Total Visits": 461.0, "Total Visitors": 292.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1315.0, "Total Spend": 645.0, "Total Transactions": 34.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.28, "MEDIAN_SPEND_PER_CUSTOMER": 21.96 }, "geometry": { "type": "Point", "coordinates": [ -75.145206, 39.958203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "LOCATION_NAME": "Lowe's", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2024, "Total Visits": 2561.0, "Total Visitors": 1752.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 13.0, "Total Spend": 42211.0, "Total Transactions": 416.0, "Total Customers": 234.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.64, "MEDIAN_SPEND_PER_CUSTOMER": 62.74 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "LOCATION_NAME": "A Plus", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2024, "Total Visits": 617.0, "Total Visitors": 516.0, "POI_CBG": 421010298005.0, "MEDIAN_DWELL": 2.0, "Total Spend": 462.0, "Total Transactions": 45.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.81, "MEDIAN_SPEND_PER_CUSTOMER": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "LOCATION_NAME": "Skyline Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2024, "Total Visits": 496.0, "Total Visitors": 473.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 665.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 252.6, "MEDIAN_SPEND_PER_CUSTOMER": 252.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "LOCATION_NAME": "Green Leaf Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2024, "Total Visits": 308.0, "Total Visitors": 228.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 21.0, "Total Spend": 665.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.11, "MEDIAN_SPEND_PER_CUSTOMER": 23.96 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.979391, "LONGITUDE": -75.152636, "DATE_RANGE_START": 2024, "Total Visits": 706.0, "Total Visitors": 336.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11833.0, "Total Transactions": 856.0, "Total Customers": 583.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.04, "MEDIAN_SPEND_PER_CUSTOMER": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152636, 39.979391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-yvz", "LOCATION_NAME": "Girard Beer Distributors", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.970277, "LONGITUDE": -75.150793, "DATE_RANGE_START": 2024, "Total Visits": 199.0, "Total Visitors": 192.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 4848.0, "Total Transactions": 232.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.99, "MEDIAN_SPEND_PER_CUSTOMER": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150793, 39.970277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwc-6x5", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.903294, "LONGITUDE": -75.198054, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 20.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 41161.0, "Total Transactions": 2462.0, "Total Customers": 1694.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.48, "MEDIAN_SPEND_PER_CUSTOMER": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.198054, 39.903294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2024, "Total Visits": 1255.0, "Total Visitors": 789.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 16461.0, "Total Transactions": 1148.0, "Total Customers": 681.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.77, "MEDIAN_SPEND_PER_CUSTOMER": 17.61 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.051188, "LONGITUDE": -75.059494, "DATE_RANGE_START": 2024, "Total Visits": 3470.0, "Total Visitors": 2384.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 13.0, "Total Spend": 37514.0, "Total Transactions": 907.0, "Total Customers": 739.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.06, "MEDIAN_SPEND_PER_CUSTOMER": 33.46 }, "geometry": { "type": "Point", "coordinates": [ -75.059494, 40.051188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-2zf", "LOCATION_NAME": "Helm", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971556, "LONGITUDE": -75.144508, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010144001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 550.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 209.04, "MEDIAN_SPEND_PER_CUSTOMER": 209.04 }, "geometry": { "type": "Point", "coordinates": [ -75.144508, 39.971556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "LOCATION_NAME": "Nunez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995073, "LONGITUDE": -75.126158, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 70.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1066.0, "Total Transactions": 112.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.83, "MEDIAN_SPEND_PER_CUSTOMER": 10.62 }, "geometry": { "type": "Point", "coordinates": [ -75.126158, 39.995073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm5-q4v", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.913849, "LONGITUDE": -75.154434, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 489.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.86, "MEDIAN_SPEND_PER_CUSTOMER": 99.86 }, "geometry": { "type": "Point", "coordinates": [ -75.154434, 39.913849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-2x5", "LOCATION_NAME": "LongHorn Steakhouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919428, "LONGITUDE": -75.14118, "DATE_RANGE_START": 2024, "Total Visits": 1232.0, "Total Visitors": 953.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 326.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.03, "MEDIAN_SPEND_PER_CUSTOMER": 85.03 }, "geometry": { "type": "Point", "coordinates": [ -75.14118, 39.919428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw4-rzf", "LOCATION_NAME": "La Tapenade Mediterranean Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895188, "LONGITUDE": -75.227951, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 5839.0, "Total Transactions": 248.0, "Total Customers": 215.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.75, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227951, 39.895188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "LOCATION_NAME": "The Quick Fixx", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 165.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1797.0, "Total Transactions": 90.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.31, "MEDIAN_SPEND_PER_CUSTOMER": 20.43 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm4-b8v", "LOCATION_NAME": "Hyon's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935029, "LONGITUDE": -75.179358, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2384.0, "Total Transactions": 126.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.16, "MEDIAN_SPEND_PER_CUSTOMER": 20.19 }, "geometry": { "type": "Point", "coordinates": [ -75.179358, 39.935029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.93815, "LONGITUDE": -75.172716, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 50.0, "POI_CBG": 421010022003.0, "MEDIAN_DWELL": 118.0, "Total Spend": 1396.0, "Total Transactions": 30.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.93815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "LOCATION_NAME": "SquareBurger", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2024, "Total Visits": 300.0, "Total Visitors": 157.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 345.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.2, "MEDIAN_SPEND_PER_CUSTOMER": 14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2024, "Total Visits": 804.0, "Total Visitors": 470.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 15704.0, "Total Transactions": 918.0, "Total Customers": 620.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.97, "MEDIAN_SPEND_PER_CUSTOMER": 18.04 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "LOCATION_NAME": "Cantinho Brasileiro Restaurante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 104.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1149.0, "Total Transactions": 45.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.66, "MEDIAN_SPEND_PER_CUSTOMER": 28.19 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "LOCATION_NAME": "Fiorino", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": null, "Total Spend": 2397.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.28, "MEDIAN_SPEND_PER_CUSTOMER": 97.28 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj5-swk", "LOCATION_NAME": "John's Pizza Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01218, "LONGITUDE": -75.138578, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 413.0, "POI_CBG": 421010198004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 73.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.71, "MEDIAN_SPEND_PER_CUSTOMER": 17.71 }, "geometry": { "type": "Point", "coordinates": [ -75.138578, 40.01218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 190.0, "POI_CBG": 421010383003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3096.0, "Total Transactions": 166.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.9, "MEDIAN_SPEND_PER_CUSTOMER": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "LOCATION_NAME": "Crab Shack", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2024, "Total Visits": 58.0, "Total Visitors": 58.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4998.0, "Total Transactions": 143.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.0, "MEDIAN_SPEND_PER_CUSTOMER": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8m-st9", "LOCATION_NAME": "Philly Pretzel Factory", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.022444, "LONGITUDE": -75.07849, "DATE_RANGE_START": 2024, "Total Visits": 97.0, "Total Visitors": 49.0, "POI_CBG": 421010302001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5195.0, "Total Transactions": 627.0, "Total Customers": 456.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.31, "MEDIAN_SPEND_PER_CUSTOMER": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.07849, 40.022444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2024, "Total Visits": 482.0, "Total Visitors": 445.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1809.0, "Total Transactions": 126.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.62, "MEDIAN_SPEND_PER_CUSTOMER": 15.49 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007466, "LONGITUDE": -75.212296, "DATE_RANGE_START": 2024, "Total Visits": 764.0, "Total Visitors": 599.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 7.0, "Total Spend": 14220.0, "Total Transactions": 894.0, "Total Customers": 689.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.26, "MEDIAN_SPEND_PER_CUSTOMER": 15.45 }, "geometry": { "type": "Point", "coordinates": [ -75.212296, 40.007466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-xwk", "LOCATION_NAME": "Hive Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931825, "LONGITUDE": -75.168368, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010030021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 3175.0, "Total Transactions": 286.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.18, "MEDIAN_SPEND_PER_CUSTOMER": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.168368, 39.931825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "LOCATION_NAME": "Cafe Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2024, "Total Visits": 279.0, "Total Visitors": 186.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1264.0, "Total Transactions": 38.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-c89", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007079, "LONGITUDE": -75.128063, "DATE_RANGE_START": 2024, "Total Visits": 383.0, "Total Visitors": 357.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10392.0, "Total Transactions": 687.0, "Total Customers": 440.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.05, "MEDIAN_SPEND_PER_CUSTOMER": 16.88 }, "geometry": { "type": "Point", "coordinates": [ -75.128063, 40.007079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pg8-ks5", "LOCATION_NAME": "Harper's Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974726, "LONGITUDE": -75.182771, "DATE_RANGE_START": 2024, "Total Visits": 515.0, "Total Visitors": 308.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 47.0, "Total Spend": 2256.0, "Total Transactions": 186.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.72, "MEDIAN_SPEND_PER_CUSTOMER": 12.63 }, "geometry": { "type": "Point", "coordinates": [ -75.182771, 39.974726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-d7q", "LOCATION_NAME": "Alex's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034052, "LONGITUDE": -75.220933, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010213001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1113.0, "Total Transactions": 59.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.45, "MEDIAN_SPEND_PER_CUSTOMER": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.220933, 40.034052 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8f-djv", "LOCATION_NAME": "Happy Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.017133, "LONGITUDE": -75.084023, "DATE_RANGE_START": 2024, "Total Visits": 445.0, "Total Visitors": 244.0, "POI_CBG": 421010300006.0, "MEDIAN_DWELL": 200.0, "Total Spend": 427.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.04, "MEDIAN_SPEND_PER_CUSTOMER": 16.04 }, "geometry": { "type": "Point", "coordinates": [ -75.084023, 40.017133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp2-q75", "LOCATION_NAME": "Kensington Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995547, "LONGITUDE": -75.102511, "DATE_RANGE_START": 2024, "Total Visits": 125.0, "Total Visitors": 125.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 539.0, "Total Transactions": 21.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.62, "MEDIAN_SPEND_PER_CUSTOMER": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102511, 39.995547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvw-tgk", "LOCATION_NAME": "Gigi & Big R", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969832, "LONGITUDE": -75.238723, "DATE_RANGE_START": 2024, "Total Visits": 232.0, "Total Visitors": 201.0, "POI_CBG": 421010095004.0, "MEDIAN_DWELL": 1.0, "Total Spend": 649.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.68, "MEDIAN_SPEND_PER_CUSTOMER": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.238723, 39.969832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "LOCATION_NAME": "Real Food Eatery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949411, "LONGITUDE": -75.16733, "DATE_RANGE_START": 2024, "Total Visits": 295.0, "Total Visitors": 253.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 6.0, "Total Spend": 782.0, "Total Transactions": 42.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.58, "MEDIAN_SPEND_PER_CUSTOMER": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.16733, 39.949411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm9-5xq", "LOCATION_NAME": "The Pizza Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.919497, "LONGITUDE": -75.172624, "DATE_RANGE_START": 2024, "Total Visits": 157.0, "Total Visitors": 124.0, "POI_CBG": 421010039021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 314.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172624, 39.919497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "LOCATION_NAME": "Asian Chopsticks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3993.0, "Total Transactions": 205.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.66, "MEDIAN_SPEND_PER_CUSTOMER": 30.75 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5pv", "LOCATION_NAME": "Hard Rock Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952216, "LONGITUDE": -75.159642, "DATE_RANGE_START": 2024, "Total Visits": 983.0, "Total Visitors": 694.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 43.0, "Total Spend": 18810.0, "Total Transactions": 308.0, "Total Customers": 274.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.34, "MEDIAN_SPEND_PER_CUSTOMER": 52.19 }, "geometry": { "type": "Point", "coordinates": [ -75.159642, 39.952216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-223@628-pnw-pjv", "LOCATION_NAME": "Pizza Shackamaxon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969232, "LONGITUDE": -75.13394, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 165.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 512.0, "Total Transactions": 24.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.21, "MEDIAN_SPEND_PER_CUSTOMER": 25.84 }, "geometry": { "type": "Point", "coordinates": [ -75.13394, 39.969232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-pm4-p5f", "LOCATION_NAME": "Sophie's Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934749, "LONGITUDE": -75.153259, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1036.0, "Total Transactions": 26.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.71, "MEDIAN_SPEND_PER_CUSTOMER": 40.24 }, "geometry": { "type": "Point", "coordinates": [ -75.153259, 39.934749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "LOCATION_NAME": "Tampopo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953009, "LONGITUDE": -75.210311, "DATE_RANGE_START": 2024, "Total Visits": 692.0, "Total Visitors": 209.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 334.0, "Total Spend": 1432.0, "Total Transactions": 59.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.17, "MEDIAN_SPEND_PER_CUSTOMER": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.210311, 39.953009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "LOCATION_NAME": "Bubblefish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2024, "Total Visits": 4262.0, "Total Visitors": 2963.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 9709.0, "Total Transactions": 149.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.47, "MEDIAN_SPEND_PER_CUSTOMER": 51.88 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5s5", "LOCATION_NAME": "Loews Philadelphia Hotel", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.951431, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2024, "Total Visits": 13022.0, "Total Visitors": 8378.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 55473.0, "Total Transactions": 656.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.19, "MEDIAN_SPEND_PER_CUSTOMER": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 39.951431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "LOCATION_NAME": "Thai Kuu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 150.0, "POI_CBG": 421010387002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1279.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.08, "MEDIAN_SPEND_PER_CUSTOMER": 55.08 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "LOCATION_NAME": "Geno's Steaks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2024, "Total Visits": 421.0, "Total Visitors": 396.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3969.0, "Total Transactions": 161.0, "Total Customers": 155.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.7, "MEDIAN_SPEND_PER_CUSTOMER": 22.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977332, "LONGITUDE": -75.226013, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010111005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2842.0, "Total Transactions": 399.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.8, "MEDIAN_SPEND_PER_CUSTOMER": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.226013, 39.977332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-5vf", "LOCATION_NAME": "Kung Fu Tea", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.048498, "LONGITUDE": -75.061863, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 163.0, "POI_CBG": 421010314012.0, "MEDIAN_DWELL": 3.0, "Total Spend": 174.0, "Total Transactions": 16.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.56, "MEDIAN_SPEND_PER_CUSTOMER": 10.11 }, "geometry": { "type": "Point", "coordinates": [ -75.061863, 40.048498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.032452, "LONGITUDE": -75.085235, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010390004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 168.0, "Total Transactions": 11.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.54, "MEDIAN_SPEND_PER_CUSTOMER": 11.29 }, "geometry": { "type": "Point", "coordinates": [ -75.085235, 40.032452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p82-8y9", "LOCATION_NAME": "Casa Del Mofongo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.036175, "LONGITUDE": -75.088212, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010390002.0, "MEDIAN_DWELL": 81.0, "Total Spend": 2023.0, "Total Transactions": 54.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088212, 40.036175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "LOCATION_NAME": "Crazy Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2024, "Total Visits": 283.0, "Total Visitors": 270.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2135.0, "Total Transactions": 66.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.44, "MEDIAN_SPEND_PER_CUSTOMER": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p8h-vvf", "LOCATION_NAME": "Lee's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032772, "LONGITUDE": -75.029499, "DATE_RANGE_START": 2024, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010330004.0, "MEDIAN_DWELL": null, "Total Spend": 780.0, "Total Transactions": 43.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.55, "MEDIAN_SPEND_PER_CUSTOMER": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.029499, 40.032772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-6p9", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951312, "LONGITUDE": -75.166086, "DATE_RANGE_START": 2024, "Total Visits": 503.0, "Total Visitors": 353.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 101.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.31, "MEDIAN_SPEND_PER_CUSTOMER": 17.31 }, "geometry": { "type": "Point", "coordinates": [ -75.166086, 39.951312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pgb-st9", "LOCATION_NAME": "South", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.964359, "LONGITUDE": -75.161465, "DATE_RANGE_START": 2024, "Total Visits": 567.0, "Total Visitors": 355.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 171.0, "Total Spend": 239.0, "Total Transactions": 11.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.06, "MEDIAN_SPEND_PER_CUSTOMER": 29.92 }, "geometry": { "type": "Point", "coordinates": [ -75.161465, 39.964359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2024, "Total Visits": 345.0, "Total Visitors": 309.0, "POI_CBG": 421010175003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3484.0, "Total Transactions": 242.0, "Total Customers": 197.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.55, "MEDIAN_SPEND_PER_CUSTOMER": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "LOCATION_NAME": "Arby's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2024, "Total Visits": 323.0, "Total Visitors": 295.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 10.0, "Total Spend": 3772.0, "Total Transactions": 234.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 15.97 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-6kz", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085677, "LONGITUDE": -74.967871, "DATE_RANGE_START": 2024, "Total Visits": 1363.0, "Total Visitors": 882.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 22.0, "Total Spend": 549.0, "Total Transactions": 46.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.27, "MEDIAN_SPEND_PER_CUSTOMER": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.967871, 40.085677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2024, "Total Visits": 402.0, "Total Visitors": 273.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7557.0, "Total Transactions": 944.0, "Total Customers": 358.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.79, "MEDIAN_SPEND_PER_CUSTOMER": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvx-w49", "LOCATION_NAME": "Grindcore House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948198, "LONGITUDE": -75.206865, "DATE_RANGE_START": 2024, "Total Visits": 378.0, "Total Visitors": 237.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 67.0, "Total Spend": 4701.0, "Total Transactions": 353.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.72, "MEDIAN_SPEND_PER_CUSTOMER": 14.28 }, "geometry": { "type": "Point", "coordinates": [ -75.206865, 39.948198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pfz-bhq", "LOCATION_NAME": "Valerio Coffee Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025342, "LONGITUDE": -75.222719, "DATE_RANGE_START": 2024, "Total Visits": 233.0, "Total Visitors": 187.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 41.0, "Total Spend": 569.0, "Total Transactions": 68.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.222719, 40.025342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "LOCATION_NAME": "City Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010042013.0, "MEDIAN_DWELL": 241.0, "Total Spend": 1916.0, "Total Transactions": 68.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.05, "MEDIAN_SPEND_PER_CUSTOMER": 28.79 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-kzz", "LOCATION_NAME": "Slice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934663, "LONGITUDE": -75.160581, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 142.0, "POI_CBG": 421010023001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5332.0, "Total Transactions": 180.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.68, "MEDIAN_SPEND_PER_CUSTOMER": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.160581, 39.934663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-cyv", "LOCATION_NAME": "El Provocon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039466, "LONGITUDE": -75.056309, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 113.0, "POI_CBG": 421010315021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1932.0, "Total Transactions": 66.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.37, "MEDIAN_SPEND_PER_CUSTOMER": 28.54 }, "geometry": { "type": "Point", "coordinates": [ -75.056309, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "LOCATION_NAME": "Reanimator Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010158002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 91.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.1, "MEDIAN_SPEND_PER_CUSTOMER": 13.59 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "LOCATION_NAME": "Staples", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.93016, "LONGITUDE": -75.144771, "DATE_RANGE_START": 2024, "Total Visits": 660.0, "Total Visitors": 524.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1908.0, "Total Transactions": 47.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.84, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144771, 39.93016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 111.0, "POI_CBG": 421010171003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 614.0, "Total Transactions": 41.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p7w-gc5", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072472, "LONGITUDE": -75.075745, "DATE_RANGE_START": 2024, "Total Visits": 681.0, "Total Visitors": 512.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 403.0, "Total Transactions": 37.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 18.87 }, "geometry": { "type": "Point", "coordinates": [ -75.075745, 40.072472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.036034, "LONGITUDE": -75.217348, "DATE_RANGE_START": 2024, "Total Visits": 611.0, "Total Visitors": 377.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 547.0, "Total Transactions": 18.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.43, "MEDIAN_SPEND_PER_CUSTOMER": 40.94 }, "geometry": { "type": "Point", "coordinates": [ -75.217348, 40.036034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22r@628-p7x-5s5", "LOCATION_NAME": "Hair Buzz", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.04942, "LONGITUDE": -75.061163, "DATE_RANGE_START": 2024, "Total Visits": 3520.0, "Total Visitors": 1902.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 81317.0, "Total Transactions": 2413.0, "Total Customers": 1938.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.31, "MEDIAN_SPEND_PER_CUSTOMER": 28.95 }, "geometry": { "type": "Point", "coordinates": [ -75.061163, 40.04942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "LOCATION_NAME": "Sunglass Hut", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952006, "LONGITUDE": -75.16828, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1446.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 272.16, "MEDIAN_SPEND_PER_CUSTOMER": 272.16 }, "geometry": { "type": "Point", "coordinates": [ -75.16828, 39.952006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-229@628-pmf-mff", "LOCATION_NAME": "Federal Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956193, "LONGITUDE": -75.1692, "DATE_RANGE_START": 2024, "Total Visits": 2138.0, "Total Visitors": 1428.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 1971.0, "Total Transactions": 120.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.1692, 39.956193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2024, "Total Visits": 438.0, "Total Visitors": 300.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2845.0, "Total Transactions": 333.0, "Total Customers": 183.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.49, "MEDIAN_SPEND_PER_CUSTOMER": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942512, "LONGITUDE": -75.157213, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2900.0, "Total Transactions": 311.0, "Total Customers": 192.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.15, "MEDIAN_SPEND_PER_CUSTOMER": 8.23 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.942512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p7c-fcq", "LOCATION_NAME": "Don Panchito Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069387, "LONGITUDE": -75.008547, "DATE_RANGE_START": 2024, "Total Visits": 342.0, "Total Visitors": 207.0, "POI_CBG": 421010348022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 54.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.008547, 40.069387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-47q", "LOCATION_NAME": "Beauty Time", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.040779, "LONGITUDE": -75.109561, "DATE_RANGE_START": 2024, "Total Visits": 326.0, "Total Visitors": 276.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 5127.0, "Total Transactions": 174.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.66, "MEDIAN_SPEND_PER_CUSTOMER": 23.97 }, "geometry": { "type": "Point", "coordinates": [ -75.109561, 40.040779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938273, "LONGITUDE": -75.166962, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2901.0, "Total Transactions": 307.0, "Total Customers": 195.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 11.37 }, "geometry": { "type": "Point", "coordinates": [ -75.166962, 39.938273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "LOCATION_NAME": "Angelo's Pizza House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": null, "Total Spend": 584.0, "Total Transactions": 32.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.63, "MEDIAN_SPEND_PER_CUSTOMER": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "LOCATION_NAME": "El Fuego", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 307.0, "Total Transactions": 18.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.72, "MEDIAN_SPEND_PER_CUSTOMER": 24.59 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "LOCATION_NAME": "Tattooed Mom", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941873, "LONGITUDE": -75.151859, "DATE_RANGE_START": 2024, "Total Visits": 361.0, "Total Visitors": 328.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 17661.0, "Total Transactions": 516.0, "Total Customers": 423.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.94, "MEDIAN_SPEND_PER_CUSTOMER": 33.76 }, "geometry": { "type": "Point", "coordinates": [ -75.151859, 39.941873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952459, "LONGITUDE": -75.162267, "DATE_RANGE_START": 2024, "Total Visits": 1519.0, "Total Visitors": 1112.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6119.0, "Total Transactions": 853.0, "Total Customers": 457.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.48, "MEDIAN_SPEND_PER_CUSTOMER": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.162267, 39.952459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-4qf", "LOCATION_NAME": "Burrito Feliz Philly", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924044, "LONGITUDE": -75.158163, "DATE_RANGE_START": 2024, "Total Visits": 383.0, "Total Visitors": 147.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 329.0, "Total Spend": 2146.0, "Total Transactions": 96.0, "Total Customers": 88.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.158163, 39.924044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2024, "Total Visits": 232.0, "Total Visitors": 212.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 990.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "LOCATION_NAME": "Dollar Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2024, "Total Visits": 449.0, "Total Visitors": 316.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 16.0, "Total Spend": 2770.0, "Total Transactions": 134.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.59, "MEDIAN_SPEND_PER_CUSTOMER": 14.62 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2024, "Total Visits": 919.0, "Total Visitors": 889.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2171.0, "Total Transactions": 254.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.1, "MEDIAN_SPEND_PER_CUSTOMER": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "LOCATION_NAME": "Roses Florist", "TOP_CATEGORY": "Florists", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2024, "Total Visits": 421.0, "Total Visitors": 290.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 87.0, "Total Spend": 826.0, "Total Transactions": 13.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.94, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p8v-9xq", "LOCATION_NAME": "2nd Ave Thrift Superstore", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.09062, "LONGITUDE": -74.965338, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 287.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.87, "MEDIAN_SPEND_PER_CUSTOMER": 43.87 }, "geometry": { "type": "Point", "coordinates": [ -74.965338, 40.09062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@63s-dvx-jjv", "LOCATION_NAME": "Paulino Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.973271, "LONGITUDE": -75.222149, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 25.0, "POI_CBG": 421010111002.0, "MEDIAN_DWELL": null, "Total Spend": 317.0, "Total Transactions": 50.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.38, "MEDIAN_SPEND_PER_CUSTOMER": 11.73 }, "geometry": { "type": "Point", "coordinates": [ -75.222149, 39.973271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phz-3qz", "LOCATION_NAME": "Pizza Point", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02059, "LONGITUDE": -75.118155, "DATE_RANGE_START": 2024, "Total Visits": 78.0, "Total Visitors": 78.0, "POI_CBG": 421010289011.0, "MEDIAN_DWELL": 112.0, "Total Spend": 383.0, "Total Transactions": 22.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.44, "MEDIAN_SPEND_PER_CUSTOMER": 19.32 }, "geometry": { "type": "Point", "coordinates": [ -75.118155, 40.02059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-kj9", "LOCATION_NAME": "First Foods Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.950929, "LONGITUDE": -75.17586, "DATE_RANGE_START": 2024, "Total Visits": 2941.0, "Total Visitors": 2221.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 34.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.49, "MEDIAN_SPEND_PER_CUSTOMER": 12.74 }, "geometry": { "type": "Point", "coordinates": [ -75.17586, 39.950929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "LOCATION_NAME": "Pho Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 195.0, "POI_CBG": 421010365011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2598.0, "Total Transactions": 58.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.64, "MEDIAN_SPEND_PER_CUSTOMER": 45.86 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "LOCATION_NAME": "Prince Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2024, "Total Visits": 199.0, "Total Visitors": 151.0, "POI_CBG": 421010288002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2159.0, "Total Transactions": 90.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.01, "MEDIAN_SPEND_PER_CUSTOMER": 22.22 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "LOCATION_NAME": "El Taco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 124.0, "POI_CBG": 421010090003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 398.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.12, "MEDIAN_SPEND_PER_CUSTOMER": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "LOCATION_NAME": "3 Brothers Pizza & Pasta", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010379002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 583.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.27, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.074724, "LONGITUDE": -75.032595, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 490.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.032595, 40.074724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mff", "LOCATION_NAME": "Family Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.006057, "LONGITUDE": -75.096664, "DATE_RANGE_START": 2024, "Total Visits": 417.0, "Total Visitors": 254.0, "POI_CBG": 421010190005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 859.0, "Total Transactions": 88.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.4, "MEDIAN_SPEND_PER_CUSTOMER": 7.53 }, "geometry": { "type": "Point", "coordinates": [ -75.096664, 40.006057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pp4-sbk", "LOCATION_NAME": "Green Eggs Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977, "LONGITUDE": -75.124082, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 194.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 41.0, "Total Spend": 356.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.75, "MEDIAN_SPEND_PER_CUSTOMER": 41.75 }, "geometry": { "type": "Point", "coordinates": [ -75.124082, 39.977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2024, "Total Visits": 536.0, "Total Visitors": 203.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 8880.0, "Total Transactions": 1157.0, "Total Customers": 456.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.33, "MEDIAN_SPEND_PER_CUSTOMER": 11.15 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-k2k", "LOCATION_NAME": "Panera Bread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.093766, "LONGITUDE": -75.017142, "DATE_RANGE_START": 2024, "Total Visits": 995.0, "Total Visitors": 754.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 3789.0, "Total Transactions": 312.0, "Total Customers": 233.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 12.78 }, "geometry": { "type": "Point", "coordinates": [ -75.017142, 40.093766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947898, "LONGITUDE": -75.171322, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3648.0, "Total Transactions": 430.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.89, "MEDIAN_SPEND_PER_CUSTOMER": 8.36 }, "geometry": { "type": "Point", "coordinates": [ -75.171322, 39.947898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "LOCATION_NAME": "My Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945125, "LONGITUDE": -75.178759, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010013001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 531.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.37, "MEDIAN_SPEND_PER_CUSTOMER": 38.37 }, "geometry": { "type": "Point", "coordinates": [ -75.178759, 39.945125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-k4v", "LOCATION_NAME": "Kingstone Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.990889, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010169022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 209.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.19, "MEDIAN_SPEND_PER_CUSTOMER": 27.19 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.990889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "LOCATION_NAME": "Bleu Martini", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949349, "LONGITUDE": -75.144205, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 853.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 11194.0, "Total Transactions": 175.0, "Total Customers": 132.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.04, "MEDIAN_SPEND_PER_CUSTOMER": 56.28 }, "geometry": { "type": "Point", "coordinates": [ -75.144205, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "LOCATION_NAME": "Miller's Ale House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.079795, "LONGITUDE": -75.028682, "DATE_RANGE_START": 2024, "Total Visits": 903.0, "Total Visitors": 810.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 4412.0, "Total Transactions": 79.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.85, "MEDIAN_SPEND_PER_CUSTOMER": 59.51 }, "geometry": { "type": "Point", "coordinates": [ -75.028682, 40.079795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-n3q", "LOCATION_NAME": "NAYA Market St", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953238, "LONGITUDE": -75.167055, "DATE_RANGE_START": 2024, "Total Visits": 248.0, "Total Visitors": 183.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 547.0, "Total Transactions": 228.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.5, "MEDIAN_SPEND_PER_CUSTOMER": 3.38 }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.953238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dwf-q9f", "LOCATION_NAME": "Shotz", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911065, "LONGITUDE": -75.243379, "DATE_RANGE_START": 2024, "Total Visits": 65.0, "Total Visitors": 65.0, "POI_CBG": 421010055001.0, "MEDIAN_DWELL": null, "Total Spend": 208.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.5, "MEDIAN_SPEND_PER_CUSTOMER": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243379, 39.911065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "LOCATION_NAME": "Fleishman Fabrics & Supplies", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.93943, "LONGITUDE": -75.149516, "DATE_RANGE_START": 2024, "Total Visits": 442.0, "Total Visitors": 348.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 2924.0, "Total Transactions": 84.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.5, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149516, 39.93943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "LOCATION_NAME": "Crown Chicken and Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2024, "Total Visits": 213.0, "Total Visitors": 157.0, "POI_CBG": 421010307001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2283.0, "Total Transactions": 208.0, "Total Customers": 140.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.41, "MEDIAN_SPEND_PER_CUSTOMER": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm8-zzz", "LOCATION_NAME": "Asian Fusion & Steak", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.916708, "LONGITUDE": -75.169015, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 163.0, "POI_CBG": 421010040023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 678.0, "Total Transactions": 20.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.78, "MEDIAN_SPEND_PER_CUSTOMER": 43.74 }, "geometry": { "type": "Point", "coordinates": [ -75.169015, 39.916708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 893.0, "POI_CBG": 421010200001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7894.0, "Total Transactions": 683.0, "Total Customers": 416.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.03, "MEDIAN_SPEND_PER_CUSTOMER": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "LOCATION_NAME": "Harbison Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2024, "Total Visits": 124.0, "Total Visitors": 103.0, "POI_CBG": 421010321003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6404.0, "Total Transactions": 232.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.9, "MEDIAN_SPEND_PER_CUSTOMER": 29.87 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23p@63s-dw9-7nq", "LOCATION_NAME": "InMotion", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.87912, "LONGITUDE": -75.239453, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2723.0, "Total Transactions": 46.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.79, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.239453, 39.87912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-227@628-pm4-mff", "LOCATION_NAME": "APlus", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.936496, "LONGITUDE": -75.160414, "DATE_RANGE_START": 2024, "Total Visits": 923.0, "Total Visitors": 824.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 240.0, "Total Transactions": 22.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.63, "MEDIAN_SPEND_PER_CUSTOMER": 8.16 }, "geometry": { "type": "Point", "coordinates": [ -75.160414, 39.936496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pg8-kmk", "LOCATION_NAME": "Young's Sneaker City", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.974536, "LONGITUDE": -75.181586, "DATE_RANGE_START": 2024, "Total Visits": 163.0, "Total Visitors": 163.0, "POI_CBG": 421010137002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 849.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.0, "MEDIAN_SPEND_PER_CUSTOMER": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181586, 39.974536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2024, "Total Visits": 307.0, "Total Visitors": 265.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 81.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.14, "MEDIAN_SPEND_PER_CUSTOMER": 30.65 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph8-q75", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.978744, "LONGITUDE": -75.268394, "DATE_RANGE_START": 2024, "Total Visits": 238.0, "Total Visitors": 204.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 60.0, "Total Spend": 639.0, "Total Transactions": 32.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.13, "MEDIAN_SPEND_PER_CUSTOMER": 18.62 }, "geometry": { "type": "Point", "coordinates": [ -75.268394, 39.978744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "LOCATION_NAME": "General Tso", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2024, "Total Visits": 72.0, "Total Visitors": 51.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 600.0, "Total Spend": 2104.0, "Total Transactions": 70.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 29.97 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2024, "Total Visits": 704.0, "Total Visitors": 520.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4524.0, "Total Transactions": 558.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 10.09 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2024, "Total Visits": 481.0, "Total Visitors": 296.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 6859.0, "Total Transactions": 802.0, "Total Customers": 384.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.65, "MEDIAN_SPEND_PER_CUSTOMER": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.913286, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2024, "Total Visits": 1697.0, "Total Visitors": 1697.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 20.0, "Total Spend": 295.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 111.89, "MEDIAN_SPEND_PER_CUSTOMER": 111.89 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.913286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22g@628-phd-q75", "LOCATION_NAME": "Monument Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.002596, "LONGITUDE": -75.214314, "DATE_RANGE_START": 2024, "Total Visits": 1657.0, "Total Visitors": 993.0, "POI_CBG": 421010122011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 128.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 26.15 }, "geometry": { "type": "Point", "coordinates": [ -75.214314, 40.002596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "LOCATION_NAME": "Scoop Deville", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949587, "LONGITUDE": -75.16288, "DATE_RANGE_START": 2024, "Total Visits": 4462.0, "Total Visitors": 2680.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 2840.0, "Total Transactions": 197.0, "Total Customers": 186.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.5, "MEDIAN_SPEND_PER_CUSTOMER": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16288, 39.949587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvr-d5f", "LOCATION_NAME": "Y & B Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.921556, "LONGITUDE": -75.231623, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 46.0, "POI_CBG": 421010062004.0, "MEDIAN_DWELL": 72.0, "Total Spend": 45292.0, "Total Transactions": 1395.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231623, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pg4-hyv", "LOCATION_NAME": "Al Arafat Store", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.035544, "LONGITUDE": -75.174799, "DATE_RANGE_START": 2024, "Total Visits": 1173.0, "Total Visitors": 616.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 109.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.8, "MEDIAN_SPEND_PER_CUSTOMER": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174799, 40.035544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050992, "LONGITUDE": -75.010133, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5137.0, "Total Transactions": 582.0, "Total Customers": 255.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.86, "MEDIAN_SPEND_PER_CUSTOMER": 11.42 }, "geometry": { "type": "Point", "coordinates": [ -75.010133, 40.050992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "LOCATION_NAME": "Penang", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954054, "LONGITUDE": -75.155967, "DATE_RANGE_START": 2024, "Total Visits": 4262.0, "Total Visitors": 2963.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 7892.0, "Total Transactions": 121.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.46, "MEDIAN_SPEND_PER_CUSTOMER": 51.44 }, "geometry": { "type": "Point", "coordinates": [ -75.155967, 39.954054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "LOCATION_NAME": "Bar Bombon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2024, "Total Visits": 251.0, "Total Visitors": 251.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2475.0, "Total Transactions": 30.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 58.76 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "LOCATION_NAME": "Pho Ha Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2024, "Total Visits": 332.0, "Total Visitors": 294.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 7250.0, "Total Transactions": 204.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.64, "MEDIAN_SPEND_PER_CUSTOMER": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-gx5", "LOCATION_NAME": "Mccrossens Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963099, "LONGITUDE": -75.170927, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 130.0, "POI_CBG": 421010125002.0, "MEDIAN_DWELL": 36.0, "Total Spend": 13539.0, "Total Transactions": 240.0, "Total Customers": 170.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.44, "MEDIAN_SPEND_PER_CUSTOMER": 55.65 }, "geometry": { "type": "Point", "coordinates": [ -75.170927, 39.963099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-228@628-pg8-zfz", "LOCATION_NAME": "Bagel & Co Brewerytown", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977531, "LONGITUDE": -75.18557, "DATE_RANGE_START": 2024, "Total Visits": 727.0, "Total Visitors": 490.0, "POI_CBG": 421010137005.0, "MEDIAN_DWELL": 45.0, "Total Spend": 70.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.08, "MEDIAN_SPEND_PER_CUSTOMER": 12.08 }, "geometry": { "type": "Point", "coordinates": [ -75.18557, 39.977531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2024, "Total Visits": 735.0, "Total Visitors": 509.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13037.0, "Total Transactions": 1539.0, "Total Customers": 691.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.44, "MEDIAN_SPEND_PER_CUSTOMER": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "LOCATION_NAME": "Marcello's Pizza Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2024, "Total Visits": 2278.0, "Total Visitors": 1286.0, "POI_CBG": 421010359002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 775.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.44, "MEDIAN_SPEND_PER_CUSTOMER": 24.44 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2024, "Total Visits": 552.0, "Total Visitors": 465.0, "POI_CBG": 421010382001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 9442.0, "Total Transactions": 1057.0, "Total Customers": 531.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.49, "MEDIAN_SPEND_PER_CUSTOMER": 11.05 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "LOCATION_NAME": "Philly Auto", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.010175, "LONGITUDE": -75.080992, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010294003.0, "MEDIAN_DWELL": 20.0, "Total Spend": 10167.0, "Total Transactions": 61.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.55, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.080992, 40.010175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-j35", "LOCATION_NAME": "Barnes and Noble", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.951378, "LONGITUDE": -75.169175, "DATE_RANGE_START": 2024, "Total Visits": 723.0, "Total Visitors": 544.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 475.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 60.21, "MEDIAN_SPEND_PER_CUSTOMER": 60.21 }, "geometry": { "type": "Point", "coordinates": [ -75.169175, 39.951378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2024, "Total Visits": 515.0, "Total Visitors": 240.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 218.0, "Total Spend": 357.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.88, "MEDIAN_SPEND_PER_CUSTOMER": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "LOCATION_NAME": "Wyndham", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.952204, "LONGITUDE": -75.146959, "DATE_RANGE_START": 2024, "Total Visits": 2256.0, "Total Visitors": 1415.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 224.0, "Total Spend": 32296.0, "Total Transactions": 129.0, "Total Customers": 105.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.88, "MEDIAN_SPEND_PER_CUSTOMER": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.146959, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pj3-gx5", "LOCATION_NAME": "Beijing Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022567, "LONGITUDE": -75.162046, "DATE_RANGE_START": 2024, "Total Visits": 130.0, "Total Visitors": 130.0, "POI_CBG": 421010244002.0, "MEDIAN_DWELL": null, "Total Spend": 533.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.2, "MEDIAN_SPEND_PER_CUSTOMER": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.162046, 40.022567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "LOCATION_NAME": "Bleu Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 192.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 309.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.95, "MEDIAN_SPEND_PER_CUSTOMER": 79.95 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgh-vmk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982441, "LONGITUDE": -75.155993, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 290.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.09, "MEDIAN_SPEND_PER_CUSTOMER": 14.09 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 39.982441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pp4-m6k", "LOCATION_NAME": "OG Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983648, "LONGITUDE": -75.125756, "DATE_RANGE_START": 2024, "Total Visits": 346.0, "Total Visitors": 254.0, "POI_CBG": 421010161001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6455.0, "Total Transactions": 379.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.9, "MEDIAN_SPEND_PER_CUSTOMER": 16.65 }, "geometry": { "type": "Point", "coordinates": [ -75.125756, 39.983648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "LOCATION_NAME": "Khyber Pass Pub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 158.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2833.0, "Total Transactions": 59.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.06, "MEDIAN_SPEND_PER_CUSTOMER": 44.33 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "LOCATION_NAME": "Volo Coffeehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 95.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 12905.0, "Total Transactions": 929.0, "Total Customers": 496.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.13, "MEDIAN_SPEND_PER_CUSTOMER": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979849, "LONGITUDE": -75.269307, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010098012.0, "MEDIAN_DWELL": 4.0, "Total Spend": 21707.0, "Total Transactions": 1180.0, "Total Customers": 791.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.64, "MEDIAN_SPEND_PER_CUSTOMER": 19.89 }, "geometry": { "type": "Point", "coordinates": [ -75.269307, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "LOCATION_NAME": "China Royal", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 109.0, "POI_CBG": 421010333003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 544.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.6, "MEDIAN_SPEND_PER_CUSTOMER": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-jd9", "LOCATION_NAME": "The Children's Boutique", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950539, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2024, "Total Visits": 478.0, "Total Visitors": 408.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1118.0, "Total Transactions": 16.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.56, "MEDIAN_SPEND_PER_CUSTOMER": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.04511, "LONGITUDE": -75.088239, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3162.0, "Total Transactions": 126.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.86, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088239, 40.04511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pg2-n5z", "LOCATION_NAME": "Torres Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051691, "LONGITUDE": -75.181363, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 9.0, "POI_CBG": 421010253002.0, "MEDIAN_DWELL": null, "Total Spend": 123.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.36, "MEDIAN_SPEND_PER_CUSTOMER": 12.13 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.051691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2024, "Total Visits": 737.0, "Total Visitors": 499.0, "POI_CBG": 421010275001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 5520.0, "Total Transactions": 222.0, "Total Customers": 130.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.66, "MEDIAN_SPEND_PER_CUSTOMER": 22.64 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-wx5", "LOCATION_NAME": "Gap Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.09026, "LONGITUDE": -74.960858, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 6.0, "Total Spend": 916.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 78.96, "MEDIAN_SPEND_PER_CUSTOMER": 78.96 }, "geometry": { "type": "Point", "coordinates": [ -74.960858, 40.09026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmb-xnq", "LOCATION_NAME": "Sakura Mandarin", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955481, "LONGITUDE": -75.157295, "DATE_RANGE_START": 2024, "Total Visits": 3782.0, "Total Visitors": 2650.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3242.0, "Total Transactions": 51.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.74, "MEDIAN_SPEND_PER_CUSTOMER": 47.73 }, "geometry": { "type": "Point", "coordinates": [ -75.157295, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-pjv", "LOCATION_NAME": "Mizu", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955254, "LONGITUDE": -75.202132, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 394.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.27, "MEDIAN_SPEND_PER_CUSTOMER": 50.27 }, "geometry": { "type": "Point", "coordinates": [ -75.202132, 39.955254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "LOCATION_NAME": "Higher Grounds", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 59.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 56.0, "Total Spend": 2422.0, "Total Transactions": 250.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.66, "MEDIAN_SPEND_PER_CUSTOMER": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "LOCATION_NAME": "Mulberry Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.951954, "LONGITUDE": -75.144617, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 12526.0, "Total Transactions": 686.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.6, "MEDIAN_SPEND_PER_CUSTOMER": 25.84 }, "geometry": { "type": "Point", "coordinates": [ -75.144617, 39.951954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm4-mc5", "LOCATION_NAME": "Meat Market El Pueblo", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.935181, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 113.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 262.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.3, "MEDIAN_SPEND_PER_CUSTOMER": 76.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.935181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pj4-t7q", "LOCATION_NAME": "Nexcare Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.996106, "LONGITUDE": -75.13916, "DATE_RANGE_START": 2024, "Total Visits": 70.0, "Total Visitors": 70.0, "POI_CBG": 421010176012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 488.0, "Total Transactions": 20.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.9, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13916, 39.996106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2024, "Total Visits": 552.0, "Total Visitors": 209.0, "POI_CBG": 421010191003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 1058.0, "Total Transactions": 65.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.66, "MEDIAN_SPEND_PER_CUSTOMER": 19.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-2p9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.956854, "LONGITUDE": -75.213954, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 320.0, "POI_CBG": 421010086021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 205.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.6, "MEDIAN_SPEND_PER_CUSTOMER": 15.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213954, 39.956854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pj4-y7q", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.007869, "LONGITUDE": -75.15062, "DATE_RANGE_START": 2024, "Total Visits": 1165.0, "Total Visitors": 903.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 1322.0, "Total Transactions": 39.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.77, "MEDIAN_SPEND_PER_CUSTOMER": 28.77 }, "geometry": { "type": "Point", "coordinates": [ -75.15062, 40.007869 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "LOCATION_NAME": "Sam's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 29.0, "POI_CBG": 421010302005.0, "MEDIAN_DWELL": 421.0, "Total Spend": 250.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.28, "MEDIAN_SPEND_PER_CUSTOMER": 37.23 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "LOCATION_NAME": "Tradesman's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950487, "LONGITUDE": -75.162708, "DATE_RANGE_START": 2024, "Total Visits": 350.0, "Total Visitors": 325.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 16801.0, "Total Transactions": 486.0, "Total Customers": 371.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.08, "MEDIAN_SPEND_PER_CUSTOMER": 32.64 }, "geometry": { "type": "Point", "coordinates": [ -75.162708, 39.950487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2024, "Total Visits": 336.0, "Total Visitors": 197.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 19.0, "Total Spend": 9693.0, "Total Transactions": 565.0, "Total Customers": 419.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 16.77 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "LOCATION_NAME": "Henry James Saloon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2024, "Total Visits": 163.0, "Total Visitors": 147.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 99.0, "Total Spend": 3347.0, "Total Transactions": 72.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.88, "MEDIAN_SPEND_PER_CUSTOMER": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.060398, "LONGITUDE": -75.164249, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010264003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 363.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.164249, 40.060398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.925926, "LONGITUDE": -75.143002, "DATE_RANGE_START": 2024, "Total Visits": 2790.0, "Total Visitors": 1760.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 91274.0, "Total Transactions": 652.0, "Total Customers": 374.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.02, "MEDIAN_SPEND_PER_CUSTOMER": 81.21 }, "geometry": { "type": "Point", "coordinates": [ -75.143002, 39.925926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "LOCATION_NAME": "Net Cost Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2024, "Total Visits": 1078.0, "Total Visitors": 711.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 54905.0, "Total Transactions": 1132.0, "Total Customers": 574.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.19, "MEDIAN_SPEND_PER_CUSTOMER": 55.08 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2024, "Total Visits": 365.0, "Total Visitors": 249.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 2314.0, "Total Transactions": 87.0, "Total Customers": 68.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.62 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2024, "Total Visits": 991.0, "Total Visitors": 620.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1457.0, "Total Transactions": 103.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.25, "MEDIAN_SPEND_PER_CUSTOMER": 14.79 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "LOCATION_NAME": "Burlington", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.08701, "LONGITUDE": -74.96055, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 55.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2176.0, "Total Transactions": 50.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.02, "MEDIAN_SPEND_PER_CUSTOMER": 29.95 }, "geometry": { "type": "Point", "coordinates": [ -74.96055, 40.08701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zxq", "LOCATION_NAME": "Sky Store", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.941905, "LONGITUDE": -75.153237, "DATE_RANGE_START": 2024, "Total Visits": 774.0, "Total Visitors": 669.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1976.0, "Total Transactions": 96.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.153237, 39.941905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "LOCATION_NAME": "Spring Chinese Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 134.0, "POI_CBG": 421010091002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2230.0, "Total Transactions": 113.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.74, "MEDIAN_SPEND_PER_CUSTOMER": 21.74 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009412, "LONGITUDE": -75.196512, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 12.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 6526.0, "Total Transactions": 868.0, "Total Customers": 471.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.47, "MEDIAN_SPEND_PER_CUSTOMER": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.196512, 40.009412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029731, "LONGITUDE": -75.099365, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2291.0, "Total Transactions": 72.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.58, "MEDIAN_SPEND_PER_CUSTOMER": 34.49 }, "geometry": { "type": "Point", "coordinates": [ -75.099365, 40.029731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955756, "LONGITUDE": -75.201691, "DATE_RANGE_START": 2024, "Total Visits": 1995.0, "Total Visitors": 847.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 299.0, "Total Spend": 3771.0, "Total Transactions": 67.0, "Total Customers": 63.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.28, "MEDIAN_SPEND_PER_CUSTOMER": 54.68 }, "geometry": { "type": "Point", "coordinates": [ -75.201691, 39.955756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yd9", "LOCATION_NAME": "Tai Lake Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954672, "LONGITUDE": -75.156344, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 197.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 22.0, "Total Spend": 3532.0, "Total Transactions": 33.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 72.45, "MEDIAN_SPEND_PER_CUSTOMER": 76.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156344, 39.954672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "LOCATION_NAME": "Front Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970177, "LONGITUDE": -75.135546, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 30983.0, "Total Transactions": 519.0, "Total Customers": 423.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.57, "MEDIAN_SPEND_PER_CUSTOMER": 60.18 }, "geometry": { "type": "Point", "coordinates": [ -75.135546, 39.970177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-223@628-pm4-mc5", "LOCATION_NAME": "Casa Mexico", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.935496, "LONGITUDE": -75.15875, "DATE_RANGE_START": 2024, "Total Visits": 974.0, "Total Visitors": 717.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 238.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.56, "MEDIAN_SPEND_PER_CUSTOMER": 65.56 }, "geometry": { "type": "Point", "coordinates": [ -75.15875, 39.935496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvx-xkf", "LOCATION_NAME": "Dottie's Donuts", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948402, "LONGITUDE": -75.213616, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010078005.0, "MEDIAN_DWELL": null, "Total Spend": 42.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.1, "MEDIAN_SPEND_PER_CUSTOMER": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213616, 39.948402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phy-gzf", "LOCATION_NAME": "Pharmacy of America VII", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.022541, "LONGITUDE": -75.13383, "DATE_RANGE_START": 2024, "Total Visits": 762.0, "Total Visitors": 612.0, "POI_CBG": 421010287001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 251.0, "Total Transactions": 33.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.28, "MEDIAN_SPEND_PER_CUSTOMER": 6.74 }, "geometry": { "type": "Point", "coordinates": [ -75.13383, 40.022541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-m6k", "LOCATION_NAME": "Brave New Worlds", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.951384, "LONGITUDE": -75.143026, "DATE_RANGE_START": 2024, "Total Visits": 906.0, "Total Visitors": 635.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 712.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.81, "MEDIAN_SPEND_PER_CUSTOMER": 47.49 }, "geometry": { "type": "Point", "coordinates": [ -75.143026, 39.951384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "LOCATION_NAME": "Monster Pets", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2024, "Total Visits": 315.0, "Total Visitors": 242.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1354.0, "Total Transactions": 22.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.12, "MEDIAN_SPEND_PER_CUSTOMER": 62.22 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 131.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 6.13 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "LOCATION_NAME": "Oregon Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2024, "Total Visits": 57.0, "Total Visitors": 47.0, "POI_CBG": 421010372001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 124.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.23, "MEDIAN_SPEND_PER_CUSTOMER": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "LOCATION_NAME": "JJ Thai Cuisine", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952114, "LONGITUDE": -75.174664, "DATE_RANGE_START": 2024, "Total Visits": 1330.0, "Total Visitors": 1065.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 2591.0, "Total Transactions": 61.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.78, "MEDIAN_SPEND_PER_CUSTOMER": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.174664, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "LOCATION_NAME": "Gallo's Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057752, "LONGITUDE": -75.04466, "DATE_RANGE_START": 2024, "Total Visits": 565.0, "Total Visitors": 398.0, "POI_CBG": 421010333001.0, "MEDIAN_DWELL": 72.0, "Total Spend": 5859.0, "Total Transactions": 74.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.32, "MEDIAN_SPEND_PER_CUSTOMER": 74.91 }, "geometry": { "type": "Point", "coordinates": [ -75.04466, 40.057752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "LOCATION_NAME": "Pizzeria Cappelli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948424, "LONGITUDE": -75.162117, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8358.0, "Total Transactions": 391.0, "Total Customers": 332.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.07, "MEDIAN_SPEND_PER_CUSTOMER": 19.86 }, "geometry": { "type": "Point", "coordinates": [ -75.162117, 39.948424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.014677, "LONGITUDE": -75.130343, "DATE_RANGE_START": 2024, "Total Visits": 496.0, "Total Visitors": 421.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1546.0, "Total Transactions": 166.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.76, "MEDIAN_SPEND_PER_CUSTOMER": 10.84 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.014677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "LOCATION_NAME": "Sampan", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.949535, "LONGITUDE": -75.16221, "DATE_RANGE_START": 2024, "Total Visits": 4462.0, "Total Visitors": 2680.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 6256.0, "Total Transactions": 88.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.3, "MEDIAN_SPEND_PER_CUSTOMER": 50.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16221, 39.949535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y9z", "LOCATION_NAME": "Delightful Garden", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.953218, "LONGITUDE": -75.155064, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 195.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 442.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.81, "MEDIAN_SPEND_PER_CUSTOMER": 28.81 }, "geometry": { "type": "Point", "coordinates": [ -75.155064, 39.953218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phc-pd9", "LOCATION_NAME": "Bala Inn", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.000059, "LONGITUDE": -75.228471, "DATE_RANGE_START": 2024, "Total Visits": 474.0, "Total Visitors": 454.0, "POI_CBG": 421010120002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 432.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 102.5, "MEDIAN_SPEND_PER_CUSTOMER": 164.25 }, "geometry": { "type": "Point", "coordinates": [ -75.228471, 40.000059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pgm-68v", "LOCATION_NAME": "The Black Squirrel Pub and Haunt", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.009228, "LONGITUDE": -75.193913, "DATE_RANGE_START": 2024, "Total Visits": 481.0, "Total Visitors": 224.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 1033.0, "Total Spend": 4240.0, "Total Transactions": 50.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 83.64, "MEDIAN_SPEND_PER_CUSTOMER": 91.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193913, 40.009228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phz-q4v", "LOCATION_NAME": "Jj's Cafe", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.005715, "LONGITUDE": -75.107525, "DATE_RANGE_START": 2024, "Total Visits": 249.0, "Total Visitors": 240.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 20.0, "Total Spend": 2865.0, "Total Transactions": 75.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.0, "MEDIAN_SPEND_PER_CUSTOMER": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.107525, 40.005715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-223@628-pm4-n3q", "LOCATION_NAME": "Los Taquitos de Puebla", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.93412, "LONGITUDE": -75.158732, "DATE_RANGE_START": 2024, "Total Visits": 228.0, "Total Visitors": 183.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 142.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.95, "MEDIAN_SPEND_PER_CUSTOMER": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.158732, 39.93412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-mzf", "LOCATION_NAME": "Applebee's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.063399, "LONGITUDE": -75.23819, "DATE_RANGE_START": 2024, "Total Visits": 748.0, "Total Visitors": 635.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 47.0, "Total Spend": 1286.0, "Total Transactions": 36.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.83, "MEDIAN_SPEND_PER_CUSTOMER": 29.83 }, "geometry": { "type": "Point", "coordinates": [ -75.23819, 40.063399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "LOCATION_NAME": "Spasso Italian Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2024, "Total Visits": 308.0, "Total Visitors": 303.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 10917.0, "Total Transactions": 63.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.86, "MEDIAN_SPEND_PER_CUSTOMER": 103.68 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "LOCATION_NAME": "Danny's Wok", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 79.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 56.0, "Total Spend": 2629.0, "Total Transactions": 76.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.38, "MEDIAN_SPEND_PER_CUSTOMER": 32.19 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2024, "Total Visits": 75.0, "Total Visitors": 67.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6526.0, "Total Transactions": 779.0, "Total Customers": 369.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.79, "MEDIAN_SPEND_PER_CUSTOMER": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2024, "Total Visits": 1147.0, "Total Visitors": 1039.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2036.0, "Total Transactions": 65.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 32.28 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-p86-ghq", "LOCATION_NAME": "Exxon Mobil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.072821, "LONGITUDE": -75.076468, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 12.0, "POI_CBG": 421010341002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3595.0, "Total Transactions": 133.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.61 }, "geometry": { "type": "Point", "coordinates": [ -75.076468, 40.072821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pnx-dsq", "LOCATION_NAME": "Loco Pez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976842, "LONGITUDE": -75.127118, "DATE_RANGE_START": 2024, "Total Visits": 33.0, "Total Visitors": 12.0, "POI_CBG": 421010160002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 7067.0, "Total Transactions": 126.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.11, "MEDIAN_SPEND_PER_CUSTOMER": 47.03 }, "geometry": { "type": "Point", "coordinates": [ -75.127118, 39.976842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.065978, "LONGITUDE": -75.144349, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010266001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 262.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.03, "MEDIAN_SPEND_PER_CUSTOMER": 25.22 }, "geometry": { "type": "Point", "coordinates": [ -75.144349, 40.065978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.9479, "LONGITUDE": -75.154009, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 8.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 12.0, "Total Spend": 3110.0, "Total Transactions": 355.0, "Total Customers": 263.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.89, "MEDIAN_SPEND_PER_CUSTOMER": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.154009, 39.9479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phz-yn5", "LOCATION_NAME": "Beacon Building Products", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.009409, "LONGITUDE": -75.121452, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 75.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 16972.0, "Total Transactions": 382.0, "Total Customers": 309.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121452, 40.009409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "LOCATION_NAME": "Philly Tacos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010031001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 7554.0, "Total Transactions": 405.0, "Total Customers": 329.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7nq", "LOCATION_NAME": "Mitchell & Ness", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.948835, "LONGITUDE": -75.162377, "DATE_RANGE_START": 2024, "Total Visits": 1721.0, "Total Visitors": 957.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 54.0, "Total Spend": 2260.0, "Total Transactions": 14.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.8, "MEDIAN_SPEND_PER_CUSTOMER": 125.55 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.948835 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-w6k", "LOCATION_NAME": "Food & Friends", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948295, "LONGITUDE": -75.174192, "DATE_RANGE_START": 2024, "Total Visits": 409.0, "Total Visitors": 352.0, "POI_CBG": 421010008033.0, "MEDIAN_DWELL": 1.0, "Total Spend": 6966.0, "Total Transactions": 388.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.44, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174192, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmb-9mk", "LOCATION_NAME": "Trader Joe's", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954113, "LONGITUDE": -75.16243, "DATE_RANGE_START": 2024, "Total Visits": 1963.0, "Total Visitors": 1392.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 497.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.83, "MEDIAN_SPEND_PER_CUSTOMER": 23.04 }, "geometry": { "type": "Point", "coordinates": [ -75.16243, 39.954113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.058173, "LONGITUDE": -75.052406, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010334003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 130.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.99, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.052406, 40.058173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "LOCATION_NAME": "Butcher Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95199, "LONGITUDE": -75.174938, "DATE_RANGE_START": 2024, "Total Visits": 1330.0, "Total Visitors": 1065.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 12572.0, "Total Transactions": 154.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.34, "MEDIAN_SPEND_PER_CUSTOMER": 63.48 }, "geometry": { "type": "Point", "coordinates": [ -75.174938, 39.95199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pft-z9f", "LOCATION_NAME": "Bob's Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032848, "LONGITUDE": -75.21422, "DATE_RANGE_START": 2024, "Total Visits": 244.0, "Total Visitors": 179.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 92.0, "Total Spend": 163.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 62.0, "MEDIAN_SPEND_PER_CUSTOMER": 62.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21422, 40.032848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.003544, "LONGITUDE": -75.165622, "DATE_RANGE_START": 2024, "Total Visits": 500.0, "Total Visitors": 448.0, "POI_CBG": 421010202001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3004.0, "Total Transactions": 345.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.54, "MEDIAN_SPEND_PER_CUSTOMER": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -75.165622, 40.003544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-pn5", "LOCATION_NAME": "Sam's Super Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993874, "LONGITUDE": -75.130398, "DATE_RANGE_START": 2024, "Total Visits": 504.0, "Total Visitors": 324.0, "POI_CBG": 421010176014.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3554.0, "Total Transactions": 257.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.45, "MEDIAN_SPEND_PER_CUSTOMER": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130398, 39.993874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pp2-2kz", "LOCATION_NAME": "dd's DISCOUNTS", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.992485, "LONGITUDE": -75.101233, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 4303.0, "Total Transactions": 129.0, "Total Customers": 111.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.94, "MEDIAN_SPEND_PER_CUSTOMER": 30.02 }, "geometry": { "type": "Point", "coordinates": [ -75.101233, 39.992485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "LOCATION_NAME": "IKEA", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.917103, "LONGITUDE": -75.141625, "DATE_RANGE_START": 2024, "Total Visits": 251.0, "Total Visitors": 178.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 61.0, "Total Spend": 344233.0, "Total Transactions": 4347.0, "Total Customers": 2827.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.5, "MEDIAN_SPEND_PER_CUSTOMER": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.141625, 39.917103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.928144, "LONGITUDE": -75.230166, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 14.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 143.0, "Total Transactions": 14.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.64, "MEDIAN_SPEND_PER_CUSTOMER": 13.74 }, "geometry": { "type": "Point", "coordinates": [ -75.230166, 39.928144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.029718, "LONGITUDE": -75.035335, "DATE_RANGE_START": 2024, "Total Visits": 207.0, "Total Visitors": 157.0, "POI_CBG": 421010326005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 71.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.54, "MEDIAN_SPEND_PER_CUSTOMER": 10.07 }, "geometry": { "type": "Point", "coordinates": [ -75.035335, 40.029718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "LOCATION_NAME": "Philadelphia Runner", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.02544, "LONGITUDE": -75.22391, "DATE_RANGE_START": 2024, "Total Visits": 531.0, "Total Visitors": 452.0, "POI_CBG": 421010214001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 12340.0, "Total Transactions": 105.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 125.99, "MEDIAN_SPEND_PER_CUSTOMER": 130.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22391, 40.02544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.951515, "LONGITUDE": -75.166659, "DATE_RANGE_START": 2024, "Total Visits": 8743.0, "Total Visitors": 5302.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 15791.0, "Total Transactions": 1147.0, "Total Customers": 883.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.166659, 39.951515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-bp9", "LOCATION_NAME": "Brown Street Coffee & Banhery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970469, "LONGITUDE": -75.179503, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 195.0, "POI_CBG": 421010136023.0, "MEDIAN_DWELL": 14.0, "Total Spend": 757.0, "Total Transactions": 62.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.01, "MEDIAN_SPEND_PER_CUSTOMER": 18.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179503, 39.970469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3yv", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101772, "LONGITUDE": -75.007116, "DATE_RANGE_START": 2024, "Total Visits": 1455.0, "Total Visitors": 1162.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1732.0, "Total Transactions": 29.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.36, "MEDIAN_SPEND_PER_CUSTOMER": 63.59 }, "geometry": { "type": "Point", "coordinates": [ -75.007116, 40.101772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-p75-6c5", "LOCATION_NAME": "Smoothie King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051341, "LONGITUDE": -75.009746, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 182.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": null, "Total Spend": 74.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.16, "MEDIAN_SPEND_PER_CUSTOMER": 28.16 }, "geometry": { "type": "Point", "coordinates": [ -75.009746, 40.051341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2024, "Total Visits": 408.0, "Total Visitors": 276.0, "POI_CBG": 421010167023.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5380.0, "Total Transactions": 691.0, "Total Customers": 395.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.45, "MEDIAN_SPEND_PER_CUSTOMER": 9.28 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-49z", "LOCATION_NAME": "Little Caesars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.921993, "LONGITUDE": -75.187376, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 32191.0, "Total Transactions": 2109.0, "Total Customers": 1535.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.19, "MEDIAN_SPEND_PER_CUSTOMER": 15.76 }, "geometry": { "type": "Point", "coordinates": [ -75.187376, 39.921993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "LOCATION_NAME": "Beer Stop", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.015837, "LONGITUDE": -75.130275, "DATE_RANGE_START": 2024, "Total Visits": 307.0, "Total Visitors": 138.0, "POI_CBG": 421010383002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 2525.0, "Total Transactions": 90.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.28, "MEDIAN_SPEND_PER_CUSTOMER": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.130275, 40.015837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "LOCATION_NAME": "Pickwick Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.952867, "LONGITUDE": -75.169475, "DATE_RANGE_START": 2024, "Total Visits": 2231.0, "Total Visitors": 1162.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 227.0, "Total Spend": 2988.0, "Total Transactions": 63.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.98, "MEDIAN_SPEND_PER_CUSTOMER": 18.54 }, "geometry": { "type": "Point", "coordinates": [ -75.169475, 39.952867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2024, "Total Visits": 1293.0, "Total Visitors": 1012.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6620.0, "Total Transactions": 298.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.78 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pm4-gtv", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.925222, "LONGITUDE": -75.169039, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 120.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 23.0, "Total Spend": 531.0, "Total Transactions": 20.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.96, "MEDIAN_SPEND_PER_CUSTOMER": 24.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169039, 39.925222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "LOCATION_NAME": "The Book Trader", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 159.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1949.0, "Total Transactions": 97.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.25, "MEDIAN_SPEND_PER_CUSTOMER": 17.71 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2024, "Total Visits": 292.0, "Total Visitors": 209.0, "POI_CBG": 421010242001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2058.0, "Total Transactions": 76.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.47, "MEDIAN_SPEND_PER_CUSTOMER": 22.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2024, "Total Visits": 856.0, "Total Visitors": 637.0, "POI_CBG": 421010212002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1911.0, "Total Transactions": 90.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.51 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.041865, "LONGITUDE": -75.026033, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010329001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 471.0, "Total Transactions": 17.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.97, "MEDIAN_SPEND_PER_CUSTOMER": 40.93 }, "geometry": { "type": "Point", "coordinates": [ -75.026033, 40.041865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2024, "Total Visits": 482.0, "Total Visitors": 452.0, "POI_CBG": 421010268003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4295.0, "Total Transactions": 491.0, "Total Customers": 213.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.52, "MEDIAN_SPEND_PER_CUSTOMER": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "LOCATION_NAME": "The Home Depot", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.918002, "LONGITUDE": -75.185107, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 4.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 75458.0, "Total Transactions": 521.0, "Total Customers": 265.0, "MEDIAN_SPEND_PER_TRANSACTION": 63.25, "MEDIAN_SPEND_PER_CUSTOMER": 67.98 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 39.918002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj8-2ff", "LOCATION_NAME": "IHOP", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030252, "LONGITUDE": -75.104943, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010291003.0, "MEDIAN_DWELL": 23.0, "Total Spend": 5576.0, "Total Transactions": 116.0, "Total Customers": 109.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.58, "MEDIAN_SPEND_PER_CUSTOMER": 44.58 }, "geometry": { "type": "Point", "coordinates": [ -75.104943, 40.030252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "LOCATION_NAME": "Tavern On Camac", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947272, "LONGITUDE": -75.161618, "DATE_RANGE_START": 2024, "Total Visits": 236.0, "Total Visitors": 118.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 43.0, "Total Spend": 995.0, "Total Transactions": 45.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.18, "MEDIAN_SPEND_PER_CUSTOMER": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161618, 39.947272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22d@628-pmf-7yv", "LOCATION_NAME": "Lemon Grass Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952691, "LONGITUDE": -75.186998, "DATE_RANGE_START": 2024, "Total Visits": 66.0, "Total Visitors": 39.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 45.0, "Total Spend": 1878.0, "Total Transactions": 65.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.2, "MEDIAN_SPEND_PER_CUSTOMER": 37.56 }, "geometry": { "type": "Point", "coordinates": [ -75.186998, 39.952691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-phj-rrk", "LOCATION_NAME": "BBQ Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071208, "LONGITUDE": -75.157221, "DATE_RANGE_START": 2024, "Total Visits": 65.0, "Total Visitors": 59.0, "POI_CBG": 421010263024.0, "MEDIAN_DWELL": 236.0, "Total Spend": 324.0, "Total Transactions": 12.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.2, "MEDIAN_SPEND_PER_CUSTOMER": 25.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157221, 40.071208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951018, "LONGITUDE": -75.166333, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 7194.0, "Total Transactions": 528.0, "Total Customers": 394.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.52, "MEDIAN_SPEND_PER_CUSTOMER": 13.26 }, "geometry": { "type": "Point", "coordinates": [ -75.166333, 39.951018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "LOCATION_NAME": "Good Karma Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 183.0, "POI_CBG": 421010012012.0, "MEDIAN_DWELL": 13.0, "Total Spend": 535.0, "Total Transactions": 51.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.78, "MEDIAN_SPEND_PER_CUSTOMER": 9.86 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01513, "LONGITUDE": -75.178205, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 25.0, "POI_CBG": 421010206001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2875.0, "Total Transactions": 409.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.79, "MEDIAN_SPEND_PER_CUSTOMER": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.178205, 40.01513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-5fz", "LOCATION_NAME": "Bark Social Philadelphia", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.015531, "LONGITUDE": -75.211164, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 13.0, "POI_CBG": 421010209003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 97.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.66, "MEDIAN_SPEND_PER_CUSTOMER": 36.66 }, "geometry": { "type": "Point", "coordinates": [ -75.211164, 40.015531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pnw-v4v", "LOCATION_NAME": "Jack's Bar Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963822, "LONGITUDE": -75.13244, "DATE_RANGE_START": 2024, "Total Visits": 3081.0, "Total Visitors": 1301.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 121.0, "Total Spend": 3422.0, "Total Transactions": 109.0, "Total Customers": 84.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.3, "MEDIAN_SPEND_PER_CUSTOMER": 30.79 }, "geometry": { "type": "Point", "coordinates": [ -75.13244, 39.963822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "LOCATION_NAME": "Dairy Queen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087367, "LONGITUDE": -75.039942, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1598.0, "Total Transactions": 145.0, "Total Customers": 124.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.73, "MEDIAN_SPEND_PER_CUSTOMER": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -75.039942, 40.087367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-v2k", "LOCATION_NAME": "Lane Bryant", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.923469, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 919.0, "Total Transactions": 26.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.07, "MEDIAN_SPEND_PER_CUSTOMER": 27.74 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.043958, "LONGITUDE": -75.231219, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 547.0, "Total Transactions": 34.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.35, "MEDIAN_SPEND_PER_CUSTOMER": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.231219, 40.043958 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2024, "Total Visits": 162.0, "Total Visitors": 141.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10670.0, "Total Transactions": 808.0, "Total Customers": 433.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.99, "MEDIAN_SPEND_PER_CUSTOMER": 16.82 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.050125, "LONGITUDE": -75.141867, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 175.0, "POI_CBG": 421010268004.0, "MEDIAN_DWELL": 10.0, "Total Spend": 398.0, "Total Transactions": 16.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.45, "MEDIAN_SPEND_PER_CUSTOMER": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -75.141867, 40.050125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p9k-dy9", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.10065, "LONGITUDE": -75.026815, "DATE_RANGE_START": 2024, "Total Visits": 2516.0, "Total Visitors": 1449.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 7.0, "Total Spend": 77793.0, "Total Transactions": 1890.0, "Total Customers": 868.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.74, "MEDIAN_SPEND_PER_CUSTOMER": 38.99 }, "geometry": { "type": "Point", "coordinates": [ -75.026815, 40.10065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-z9f", "LOCATION_NAME": "Neighborhood Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.959949, "LONGITUDE": -75.235332, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 93.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 330.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.25, "MEDIAN_SPEND_PER_CUSTOMER": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.235332, 39.959949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.045462, "LONGITUDE": -75.087593, "DATE_RANGE_START": 2024, "Total Visits": 966.0, "Total Visitors": 591.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1894.0, "Total Transactions": 101.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.78, "MEDIAN_SPEND_PER_CUSTOMER": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.087593, 40.045462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.954249, "LONGITUDE": -75.167916, "DATE_RANGE_START": 2024, "Total Visits": 2364.0, "Total Visitors": 1328.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 380.0, "Total Transactions": 37.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.65, "MEDIAN_SPEND_PER_CUSTOMER": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.167916, 39.954249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-2kz", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.074571, "LONGITUDE": -75.032796, "DATE_RANGE_START": 2024, "Total Visits": 383.0, "Total Visitors": 358.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 953.0, "Total Transactions": 12.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.99, "MEDIAN_SPEND_PER_CUSTOMER": 69.99 }, "geometry": { "type": "Point", "coordinates": [ -75.032796, 40.074571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm3-vpv", "LOCATION_NAME": "Nice Things Handmade", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.927868, "LONGITUDE": -75.165592, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 176.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 13.0, "Total Spend": 146.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.62, "MEDIAN_SPEND_PER_CUSTOMER": 55.62 }, "geometry": { "type": "Point", "coordinates": [ -75.165592, 39.927868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "LOCATION_NAME": "Spring Garden Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2024, "Total Visits": 474.0, "Total Visitors": 312.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 33.0, "Total Spend": 3420.0, "Total Transactions": 161.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.96, "MEDIAN_SPEND_PER_CUSTOMER": 19.72 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "LOCATION_NAME": "Nam Phuong", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.936528, "LONGITUDE": -75.161971, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 11.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6208.0, "Total Transactions": 101.0, "Total Customers": 93.0, "MEDIAN_SPEND_PER_TRANSACTION": 55.2, "MEDIAN_SPEND_PER_CUSTOMER": 57.36 }, "geometry": { "type": "Point", "coordinates": [ -75.161971, 39.936528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032656, "LONGITUDE": -75.084461, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 28.0, "POI_CBG": 421010311023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2780.0, "Total Transactions": 311.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.8, "MEDIAN_SPEND_PER_CUSTOMER": 9.15 }, "geometry": { "type": "Point", "coordinates": [ -75.084461, 40.032656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-p35", "LOCATION_NAME": "Fiore Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989223, "LONGITUDE": -75.127044, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 170.0, "POI_CBG": 421010163001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 840.0, "Total Transactions": 36.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.51, "MEDIAN_SPEND_PER_CUSTOMER": 21.76 }, "geometry": { "type": "Point", "coordinates": [ -75.127044, 39.989223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-224@628-pgj-cwk", "LOCATION_NAME": "Fast Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977849, "LONGITUDE": -75.159344, "DATE_RANGE_START": 2024, "Total Visits": 2270.0, "Total Visitors": 832.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 349.0, "Total Spend": 210.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.94, "MEDIAN_SPEND_PER_CUSTOMER": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -75.159344, 39.977849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-233@628-pm9-y9z", "LOCATION_NAME": "Ishkabibble's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941689, "LONGITUDE": -75.148774, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 4.0, "Total Spend": 136.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.5, "MEDIAN_SPEND_PER_CUSTOMER": 37.95 }, "geometry": { "type": "Point", "coordinates": [ -75.148774, 39.941689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6rk", "LOCATION_NAME": "Le Pain Quotidien", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949701, "LONGITUDE": -75.165264, "DATE_RANGE_START": 2024, "Total Visits": 752.0, "Total Visitors": 409.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 10376.0, "Total Transactions": 498.0, "Total Customers": 386.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.93, "MEDIAN_SPEND_PER_CUSTOMER": 20.57 }, "geometry": { "type": "Point", "coordinates": [ -75.165264, 39.949701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.044989, "LONGITUDE": -75.144293, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1568.0, "Total Transactions": 115.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.65, "MEDIAN_SPEND_PER_CUSTOMER": 20.02 }, "geometry": { "type": "Point", "coordinates": [ -75.144293, 40.044989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j9z", "LOCATION_NAME": "aka.", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.95037, "LONGITUDE": -75.17042, "DATE_RANGE_START": 2024, "Total Visits": 1997.0, "Total Visitors": 1618.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 7690.0, "Total Transactions": 63.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.88, "MEDIAN_SPEND_PER_CUSTOMER": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17042, 39.95037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "LOCATION_NAME": "Morgan's Pier", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955033, "LONGITUDE": -75.13891, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 220.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 24.0, "Total Spend": 14825.0, "Total Transactions": 474.0, "Total Customers": 248.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.7, "MEDIAN_SPEND_PER_CUSTOMER": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13891, 39.955033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-t5f", "LOCATION_NAME": "Sum Dim Sum", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965955, "LONGITUDE": -75.160323, "DATE_RANGE_START": 2024, "Total Visits": 229.0, "Total Visitors": 213.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 589.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 85.2, "MEDIAN_SPEND_PER_CUSTOMER": 97.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160323, 39.965955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-zs5", "LOCATION_NAME": "Kumo Hibachi Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.957205, "LONGITUDE": -75.208061, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 45.0, "POI_CBG": 421010087021.0, "MEDIAN_DWELL": 2.0, "Total Spend": 495.0, "Total Transactions": 17.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.13, "MEDIAN_SPEND_PER_CUSTOMER": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.208061, 39.957205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2024, "Total Visits": 524.0, "Total Visitors": 279.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3241.0, "Total Transactions": 216.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.11, "MEDIAN_SPEND_PER_CUSTOMER": 13.17 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp2-75z", "LOCATION_NAME": "A And W Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.986409, "LONGITUDE": -75.100667, "DATE_RANGE_START": 2024, "Total Visits": 46.0, "Total Visitors": 42.0, "POI_CBG": 421010379002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 280.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.9, "MEDIAN_SPEND_PER_CUSTOMER": 46.84 }, "geometry": { "type": "Point", "coordinates": [ -75.100667, 39.986409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "LOCATION_NAME": "Vintage Wine Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 8.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 5292.0, "Total Transactions": 100.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.89, "MEDIAN_SPEND_PER_CUSTOMER": 49.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "LOCATION_NAME": "Pub On Passyunk East", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2024, "Total Visits": 257.0, "Total Visitors": 220.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 44.0, "Total Spend": 356.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.75, "MEDIAN_SPEND_PER_CUSTOMER": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "LOCATION_NAME": "Monk's Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2024, "Total Visits": 269.0, "Total Visitors": 234.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 63.0, "Total Spend": 19529.0, "Total Transactions": 288.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.23, "MEDIAN_SPEND_PER_CUSTOMER": 60.38 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm6-gx5", "LOCATION_NAME": "King Food", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.915882, "LONGITUDE": -75.152424, "DATE_RANGE_START": 2024, "Total Visits": 90.0, "Total Visitors": 75.0, "POI_CBG": 421010042022.0, "MEDIAN_DWELL": 13.0, "Total Spend": 195.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.33 }, "geometry": { "type": "Point", "coordinates": [ -75.152424, 39.915882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "LOCATION_NAME": "El Balconcito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 116.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 455.0, "Total Transactions": 7.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 75.88, "MEDIAN_SPEND_PER_CUSTOMER": 139.32 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "LOCATION_NAME": "Pat's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 163.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 56.0, "Total Spend": 1960.0, "Total Transactions": 141.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.38, "MEDIAN_SPEND_PER_CUSTOMER": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pg8-jgk", "LOCATION_NAME": "Over The Moon Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974318, "LONGITUDE": -75.179761, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010138002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 927.0, "Total Transactions": 92.0, "Total Customers": 79.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.15, "MEDIAN_SPEND_PER_CUSTOMER": 10.83 }, "geometry": { "type": "Point", "coordinates": [ -75.179761, 39.974318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "LOCATION_NAME": "Taco Loco", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010025004.0, "MEDIAN_DWELL": null, "Total Spend": 331.0, "Total Transactions": 16.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.75, "MEDIAN_SPEND_PER_CUSTOMER": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-brk", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.035926, "LONGITUDE": -75.062302, "DATE_RANGE_START": 2024, "Total Visits": 1012.0, "Total Visitors": 637.0, "POI_CBG": 421010316007.0, "MEDIAN_DWELL": 9.0, "Total Spend": 60218.0, "Total Transactions": 1701.0, "Total Customers": 904.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.91, "MEDIAN_SPEND_PER_CUSTOMER": 31.09 }, "geometry": { "type": "Point", "coordinates": [ -75.062302, 40.035926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "LOCATION_NAME": "Rittenhouse Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2024, "Total Visits": 828.0, "Total Visitors": 604.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 18157.0, "Total Transactions": 951.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.32, "MEDIAN_SPEND_PER_CUSTOMER": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-yd9", "LOCATION_NAME": "Xun Yu Si Kao", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954791, "LONGITUDE": -75.156153, "DATE_RANGE_START": 2024, "Total Visits": 3782.0, "Total Visitors": 2650.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 2117.0, "Total Transactions": 32.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.11, "MEDIAN_SPEND_PER_CUSTOMER": 67.04 }, "geometry": { "type": "Point", "coordinates": [ -75.156153, 39.954791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-xqz", "LOCATION_NAME": "The Original Turkey", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956427, "LONGITUDE": -75.158805, "DATE_RANGE_START": 2024, "Total Visits": 294.0, "Total Visitors": 265.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2622.0, "Total Transactions": 155.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.95, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158805, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "LOCATION_NAME": "Sky Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 200.0, "POI_CBG": 421010024005.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1962.0, "Total Transactions": 39.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.19, "MEDIAN_SPEND_PER_CUSTOMER": 39.15 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-fmk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.054375, "LONGITUDE": -75.072167, "DATE_RANGE_START": 2024, "Total Visits": 344.0, "Total Visitors": 278.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 7825.0, "Total Transactions": 557.0, "Total Customers": 333.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.57, "MEDIAN_SPEND_PER_CUSTOMER": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.072167, 40.054375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "LOCATION_NAME": "European Republic", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2024, "Total Visits": 2309.0, "Total Visitors": 1785.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 613.0, "Total Transactions": 34.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.27, "MEDIAN_SPEND_PER_CUSTOMER": 23.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "LOCATION_NAME": "Rice & Mix", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2024, "Total Visits": 226.0, "Total Visitors": 176.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2072.0, "Total Transactions": 80.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.67, "MEDIAN_SPEND_PER_CUSTOMER": 26.51 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-5s5", "LOCATION_NAME": "Schmear It", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94245, "LONGITUDE": -75.161634, "DATE_RANGE_START": 2024, "Total Visits": 249.0, "Total Visitors": 249.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 373.0, "Total Transactions": 37.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.02, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.161634, 39.94245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-ty9", "LOCATION_NAME": "Kelliann's Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963093, "LONGITUDE": -75.164491, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 182.0, "POI_CBG": 421010133001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 188.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 71.34, "MEDIAN_SPEND_PER_CUSTOMER": 71.34 }, "geometry": { "type": "Point", "coordinates": [ -75.164491, 39.963093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2024, "Total Visits": 353.0, "Total Visitors": 276.0, "POI_CBG": 421010004011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 7224.0, "Total Transactions": 1089.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.93, "MEDIAN_SPEND_PER_CUSTOMER": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9p-z75", "LOCATION_NAME": "Prince Of Pizza & Falafel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.101596, "LONGITUDE": -75.028395, "DATE_RANGE_START": 2024, "Total Visits": 1149.0, "Total Visitors": 835.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 12.0, "Total Spend": 444.0, "Total Transactions": 21.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.89, "MEDIAN_SPEND_PER_CUSTOMER": 23.47 }, "geometry": { "type": "Point", "coordinates": [ -75.028395, 40.101596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "LOCATION_NAME": "Yakitori Boy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 179.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 17907.0, "Total Transactions": 225.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.0, "MEDIAN_SPEND_PER_CUSTOMER": 55.12 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-v4v", "LOCATION_NAME": "Easy Pickins", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.048272, "LONGITUDE": -75.05631, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 236.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2810.0, "Total Transactions": 79.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.05631, 40.048272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p8t-w8v", "LOCATION_NAME": "Levi's Outlet Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087253, "LONGITUDE": -74.962095, "DATE_RANGE_START": 2024, "Total Visits": 323.0, "Total Visitors": 317.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1164.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.39, "MEDIAN_SPEND_PER_CUSTOMER": 44.94 }, "geometry": { "type": "Point", "coordinates": [ -74.962095, 40.087253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "LOCATION_NAME": "SouthHouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 267.0, "POI_CBG": 421010040023.0, "MEDIAN_DWELL": 45.0, "Total Spend": 5359.0, "Total Transactions": 138.0, "Total Customers": 113.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.36, "MEDIAN_SPEND_PER_CUSTOMER": 38.45 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "LOCATION_NAME": "Pho Street", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2024, "Total Visits": 290.0, "Total Visitors": 254.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 538.0, "Total Transactions": 39.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.75, "MEDIAN_SPEND_PER_CUSTOMER": 13.75 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.991624, "LONGITUDE": -75.134388, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1647.0, "Total Transactions": 36.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.04, "MEDIAN_SPEND_PER_CUSTOMER": 20.24 }, "geometry": { "type": "Point", "coordinates": [ -75.134388, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-c5z", "LOCATION_NAME": "A One Auto Sales & Repair", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 39.940358, "LONGITUDE": -75.184467, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010013005.0, "MEDIAN_DWELL": 20.0, "Total Spend": 620.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 235.44, "MEDIAN_SPEND_PER_CUSTOMER": 235.44 }, "geometry": { "type": "Point", "coordinates": [ -75.184467, 39.940358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-n89", "LOCATION_NAME": "Southside Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.960357, "LONGITUDE": -75.225351, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": 8.0, "Total Spend": 364.0, "Total Transactions": 18.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.03, "MEDIAN_SPEND_PER_CUSTOMER": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225351, 39.960357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2024, "Total Visits": 883.0, "Total Visitors": 621.0, "POI_CBG": 421010353022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3826.0, "Total Transactions": 151.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.98, "MEDIAN_SPEND_PER_CUSTOMER": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "LOCATION_NAME": "Polo Ralph Lauren Factory Store", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 109.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 13657.0, "Total Transactions": 150.0, "Total Customers": 120.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.75, "MEDIAN_SPEND_PER_CUSTOMER": 73.11 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8m-v2k", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.029571, "LONGITUDE": -75.058564, "DATE_RANGE_START": 2024, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010316003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 264.0, "Total Transactions": 13.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.71, "MEDIAN_SPEND_PER_CUSTOMER": 48.47 }, "geometry": { "type": "Point", "coordinates": [ -75.058564, 40.029571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm8-2kz", "LOCATION_NAME": "Joe's Kwik Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.939239, "LONGITUDE": -75.197843, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 353.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 715.0, "Total Transactions": 30.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.46, "MEDIAN_SPEND_PER_CUSTOMER": 33.25 }, "geometry": { "type": "Point", "coordinates": [ -75.197843, 39.939239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.087573, "LONGITUDE": -74.970531, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 20.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 163.0, "Total Transactions": 11.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.34, "MEDIAN_SPEND_PER_CUSTOMER": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -74.970531, 40.087573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.04525, "LONGITUDE": -75.086615, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 16.0, "POI_CBG": 421010309003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1033.0, "Total Transactions": 51.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.17, "MEDIAN_SPEND_PER_CUSTOMER": 21.44 }, "geometry": { "type": "Point", "coordinates": [ -75.086615, 40.04525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "LOCATION_NAME": "PetSmart", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2024, "Total Visits": 552.0, "Total Visitors": 411.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 45671.0, "Total Transactions": 1051.0, "Total Customers": 660.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.38, "MEDIAN_SPEND_PER_CUSTOMER": 40.85 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.011535, "LONGITUDE": -75.111696, "DATE_RANGE_START": 2024, "Total Visits": 829.0, "Total Visitors": 581.0, "POI_CBG": 421010191001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3793.0, "Total Transactions": 196.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 17.89 }, "geometry": { "type": "Point", "coordinates": [ -75.111696, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.031189, "LONGITUDE": -75.124489, "DATE_RANGE_START": 2024, "Total Visits": 229.0, "Total Visitors": 211.0, "POI_CBG": 421010286005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 192.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.77, "MEDIAN_SPEND_PER_CUSTOMER": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.124489, 40.031189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "LOCATION_NAME": "Roses", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.039098, "LONGITUDE": -75.107749, "DATE_RANGE_START": 2024, "Total Visits": 515.0, "Total Visitors": 258.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 228.0, "Total Spend": 6905.0, "Total Transactions": 186.0, "Total Customers": 154.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.26, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.107749, 40.039098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-228@628-pj9-73q", "LOCATION_NAME": "Crab Du Jour", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044904, "LONGITUDE": -75.144393, "DATE_RANGE_START": 2024, "Total Visits": 225.0, "Total Visitors": 192.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2337.0, "Total Transactions": 57.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.15, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.144393, 40.044904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnw-mzf", "LOCATION_NAME": "The Foodery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963844, "LONGITUDE": -75.140384, "DATE_RANGE_START": 2024, "Total Visits": 649.0, "Total Visitors": 508.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9880.0, "Total Transactions": 567.0, "Total Customers": 275.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.34, "MEDIAN_SPEND_PER_CUSTOMER": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.140384, 39.963844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953634, "LONGITUDE": -75.166885, "DATE_RANGE_START": 2024, "Total Visits": 2713.0, "Total Visitors": 1823.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5477.0, "Total Transactions": 977.0, "Total Customers": 481.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.05, "MEDIAN_SPEND_PER_CUSTOMER": 6.51 }, "geometry": { "type": "Point", "coordinates": [ -75.166885, 39.953634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgf-ty9", "LOCATION_NAME": "Rocky Water Ice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.965106, "LONGITUDE": -75.1793, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 186.0, "POI_CBG": 421019800001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 373.0, "Total Transactions": 21.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.04, "MEDIAN_SPEND_PER_CUSTOMER": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.1793, 39.965106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-9cq", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95317, "LONGITUDE": -75.193541, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 8217.0, "Total Transactions": 1348.0, "Total Customers": 475.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.26, "MEDIAN_SPEND_PER_CUSTOMER": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.193541, 39.95317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-q2k", "LOCATION_NAME": "On & Sons Seafood", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035163, "LONGITUDE": -75.121651, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 157.0, "POI_CBG": 421010273002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 92.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.03, "MEDIAN_SPEND_PER_CUSTOMER": 34.98 }, "geometry": { "type": "Point", "coordinates": [ -75.121651, 40.035163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "LOCATION_NAME": "Bloomsday Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 121.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 79.0, "Total Spend": 1534.0, "Total Transactions": 33.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.97, "MEDIAN_SPEND_PER_CUSTOMER": 60.12 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg2-zs5", "LOCATION_NAME": "Mount Airy Tap Room", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.053904, "LONGITUDE": -75.194197, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 113.0, "POI_CBG": 421010388004.0, "MEDIAN_DWELL": 66.0, "Total Spend": 786.0, "Total Transactions": 12.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.08, "MEDIAN_SPEND_PER_CUSTOMER": 83.13 }, "geometry": { "type": "Point", "coordinates": [ -75.194197, 40.053904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "LOCATION_NAME": "Kennedy Food Garden", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2024, "Total Visits": 336.0, "Total Visitors": 145.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 38.0, "Total Spend": 3411.0, "Total Transactions": 225.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.9, "MEDIAN_SPEND_PER_CUSTOMER": 16.04 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 369.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 27.0, "Total Spend": 7196.0, "Total Transactions": 428.0, "Total Customers": 313.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.56, "MEDIAN_SPEND_PER_CUSTOMER": 18.29 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pj8-pgk", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031694, "LONGITUDE": -75.099517, "DATE_RANGE_START": 2024, "Total Visits": 3423.0, "Total Visitors": 2139.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 435.0, "Total Transactions": 34.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.62, "MEDIAN_SPEND_PER_CUSTOMER": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.099517, 40.031694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2024, "Total Visits": 282.0, "Total Visitors": 186.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1716.0, "Total Transactions": 86.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.32, "MEDIAN_SPEND_PER_CUSTOMER": 16.59 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081209, "LONGITUDE": -74.994945, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 133.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3440.0, "Total Transactions": 461.0, "Total Customers": 149.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.57, "MEDIAN_SPEND_PER_CUSTOMER": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -74.994945, 40.081209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949016, "LONGITUDE": -75.163281, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010009012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1650.0, "Total Transactions": 295.0, "Total Customers": 161.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.84, "MEDIAN_SPEND_PER_CUSTOMER": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.163281, 39.949016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 197.0, "POI_CBG": 421010084004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8738.0, "Total Transactions": 1065.0, "Total Customers": 363.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.56, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "LOCATION_NAME": "The Ranchito", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 112.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3462.0, "Total Transactions": 171.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.25, "MEDIAN_SPEND_PER_CUSTOMER": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2024, "Total Visits": 429.0, "Total Visitors": 344.0, "POI_CBG": 421010215001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 393.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.12, "MEDIAN_SPEND_PER_CUSTOMER": 22.12 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.984484, "LONGITUDE": -75.121386, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 17.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1157.0, "Total Transactions": 68.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121386, 39.984484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.045974, "LONGITUDE": -75.070637, "DATE_RANGE_START": 2024, "Total Visits": 819.0, "Total Visitors": 641.0, "POI_CBG": 421010314015.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4167.0, "Total Transactions": 304.0, "Total Customers": 242.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.6, "MEDIAN_SPEND_PER_CUSTOMER": 11.43 }, "geometry": { "type": "Point", "coordinates": [ -75.070637, 40.045974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfv-94v", "LOCATION_NAME": "Wild Hand", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.046119, "LONGITUDE": -75.195912, "DATE_RANGE_START": 2024, "Total Visits": 279.0, "Total Visitors": 230.0, "POI_CBG": 421010236003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 279.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 68.52, "MEDIAN_SPEND_PER_CUSTOMER": 68.52 }, "geometry": { "type": "Point", "coordinates": [ -75.195912, 40.046119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "LOCATION_NAME": "Capital Beer", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2024, "Total Visits": 178.0, "Total Visitors": 128.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8066.0, "Total Transactions": 311.0, "Total Customers": 153.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.38, "MEDIAN_SPEND_PER_CUSTOMER": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgg-p5f", "LOCATION_NAME": "Mimmo's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.004649, "LONGITUDE": -75.17882, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010171004.0, "MEDIAN_DWELL": null, "Total Spend": 1506.0, "Total Transactions": 67.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.25, "MEDIAN_SPEND_PER_CUSTOMER": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17882, 40.004649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2024, "Total Visits": 428.0, "Total Visitors": 298.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 155761.0, "Total Transactions": 5623.0, "Total Customers": 2959.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.3, "MEDIAN_SPEND_PER_CUSTOMER": 25.72 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.044352, "LONGITUDE": -75.232829, "DATE_RANGE_START": 2024, "Total Visits": 2565.0, "Total Visitors": 1602.0, "POI_CBG": 421010216002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 25876.0, "Total Transactions": 744.0, "Total Customers": 560.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.75, "MEDIAN_SPEND_PER_CUSTOMER": 31.49 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 40.044352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2024, "Total Visits": 482.0, "Total Visitors": 340.0, "POI_CBG": 421010241001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 8676.0, "Total Transactions": 633.0, "Total Customers": 409.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.03, "MEDIAN_SPEND_PER_CUSTOMER": 15.06 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-q4v", "LOCATION_NAME": "Jean's Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.040436, "LONGITUDE": -75.043681, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010332002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 52.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.61, "MEDIAN_SPEND_PER_CUSTOMER": 19.77 }, "geometry": { "type": "Point", "coordinates": [ -75.043681, 40.040436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "LOCATION_NAME": "Mega Mart", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2024, "Total Visits": 346.0, "Total Visitors": 312.0, "POI_CBG": 421010277003.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1255.0, "Total Transactions": 87.0, "Total Customers": 53.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.43, "MEDIAN_SPEND_PER_CUSTOMER": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-4y9", "LOCATION_NAME": "Ez Dollar Plus", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.923795, "LONGITUDE": -75.163033, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 130.0, "POI_CBG": 421010040011.0, "MEDIAN_DWELL": 12.0, "Total Spend": 83.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.27, "MEDIAN_SPEND_PER_CUSTOMER": 8.07 }, "geometry": { "type": "Point", "coordinates": [ -75.163033, 39.923795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-gc5", "LOCATION_NAME": "Vault Vine", "TOP_CATEGORY": "Florists", "LATITUDE": 40.013647, "LONGITUDE": -75.192647, "DATE_RANGE_START": 2024, "Total Visits": 124.0, "Total Visitors": 95.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 522.0, "Total Transactions": 29.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.33, "MEDIAN_SPEND_PER_CUSTOMER": 15.21 }, "geometry": { "type": "Point", "coordinates": [ -75.192647, 40.013647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9p-z75", "LOCATION_NAME": "Goodwill Industries", "TOP_CATEGORY": "Used Merchandise Stores", "LATITUDE": 40.101328, "LONGITUDE": -75.030148, "DATE_RANGE_START": 2024, "Total Visits": 951.0, "Total Visitors": 723.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3970.0, "Total Transactions": 112.0, "Total Customers": 99.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.8, "MEDIAN_SPEND_PER_CUSTOMER": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.030148, 40.101328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "LOCATION_NAME": "Tiffany & Co.", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.950221, "LONGITUDE": -75.169775, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 6164.0, "Total Transactions": 20.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 237.6, "MEDIAN_SPEND_PER_CUSTOMER": 267.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169775, 39.950221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "LOCATION_NAME": "Kiehl's", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 155.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2781.0, "Total Transactions": 53.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.44, "MEDIAN_SPEND_PER_CUSTOMER": 44.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-94v", "LOCATION_NAME": "Journeys", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2024, "Total Visits": 13727.0, "Total Visitors": 7998.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 5838.0, "Total Transactions": 75.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.2, "MEDIAN_SPEND_PER_CUSTOMER": 70.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.029581, "LONGITUDE": -75.100406, "DATE_RANGE_START": 2024, "Total Visits": 1363.0, "Total Visitors": 679.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 251.0, "Total Spend": 18491.0, "Total Transactions": 415.0, "Total Customers": 333.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.45, "MEDIAN_SPEND_PER_CUSTOMER": 37.11 }, "geometry": { "type": "Point", "coordinates": [ -75.100406, 40.029581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030016, "LONGITUDE": -75.186071, "DATE_RANGE_START": 2024, "Total Visits": 550.0, "Total Visitors": 453.0, "POI_CBG": 421010239002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 554.0, "Total Transactions": 32.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.62, "MEDIAN_SPEND_PER_CUSTOMER": 24.13 }, "geometry": { "type": "Point", "coordinates": [ -75.186071, 40.030016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.931159, "LONGITUDE": -75.225635, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010066001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 101.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.74, "MEDIAN_SPEND_PER_CUSTOMER": 10.42 }, "geometry": { "type": "Point", "coordinates": [ -75.225635, 39.931159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "LOCATION_NAME": "Bookhaven", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2024, "Total Visits": 108.0, "Total Visitors": 108.0, "POI_CBG": 421010134012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1900.0, "Total Transactions": 63.0, "Total Customers": 58.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.76, "MEDIAN_SPEND_PER_CUSTOMER": 29.43 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.044605, "LONGITUDE": -75.101135, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421010305024.0, "MEDIAN_DWELL": 6.0, "Total Spend": 439.0, "Total Transactions": 53.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.41, "MEDIAN_SPEND_PER_CUSTOMER": 7.04 }, "geometry": { "type": "Point", "coordinates": [ -75.101135, 40.044605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p7b-qfz", "LOCATION_NAME": "Salvito's Pizza Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062458, "LONGITUDE": -75.022048, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 245.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1262.0, "Total Transactions": 47.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.66, "MEDIAN_SPEND_PER_CUSTOMER": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.022048, 40.062458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "LOCATION_NAME": "House of Kosher", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2024, "Total Visits": 466.0, "Total Visitors": 390.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 10807.0, "Total Transactions": 154.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.71, "MEDIAN_SPEND_PER_CUSTOMER": 41.68 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-qxq", "LOCATION_NAME": "Aramingo Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.991517, "LONGITUDE": -75.099487, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 254.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2148.0, "Total Transactions": 97.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.13, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099487, 39.991517 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgk-psq", "LOCATION_NAME": "West Village Pharmacy Inc", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.003357, "LONGITUDE": -75.206899, "DATE_RANGE_START": 2024, "Total Visits": 508.0, "Total Visitors": 184.0, "POI_CBG": 421010122012.0, "MEDIAN_DWELL": 232.0, "Total Spend": 96.0, "Total Transactions": 11.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.38, "MEDIAN_SPEND_PER_CUSTOMER": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.206899, 40.003357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "LOCATION_NAME": "Thai Singha House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95527, "LONGITUDE": -75.20037, "DATE_RANGE_START": 2024, "Total Visits": 714.0, "Total Visitors": 470.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 164.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.23, "MEDIAN_SPEND_PER_CUSTOMER": 23.23 }, "geometry": { "type": "Point", "coordinates": [ -75.20037, 39.95527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "LOCATION_NAME": "Boss Outlet", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2024, "Total Visits": 781.0, "Total Visitors": 758.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15839.0, "Total Transactions": 184.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.99, "MEDIAN_SPEND_PER_CUSTOMER": 58.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-w49", "LOCATION_NAME": "Sweet Lucy's Smokehouse", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028508, "LONGITUDE": -75.027023, "DATE_RANGE_START": 2024, "Total Visits": 434.0, "Total Visitors": 405.0, "POI_CBG": 421010381002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 312.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.53, "MEDIAN_SPEND_PER_CUSTOMER": 33.68 }, "geometry": { "type": "Point", "coordinates": [ -75.027023, 40.028508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgj-6hq", "LOCATION_NAME": "Diamond Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.985195, "LONGITUDE": -75.161525, "DATE_RANGE_START": 2024, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010153002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 199.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.54 }, "geometry": { "type": "Point", "coordinates": [ -75.161525, 39.985195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "LOCATION_NAME": "The Plough & the Stars", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 248.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1483.0, "Total Transactions": 34.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.13, "MEDIAN_SPEND_PER_CUSTOMER": 38.74 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "LOCATION_NAME": "Green Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2024, "Total Visits": 116.0, "Total Visitors": 116.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 688.0, "Total Transactions": 26.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.45, "MEDIAN_SPEND_PER_CUSTOMER": 16.52 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pgb-tn5", "LOCATION_NAME": "JC Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.962905, "LONGITUDE": -75.15611, "DATE_RANGE_START": 2024, "Total Visits": 536.0, "Total Visitors": 387.0, "POI_CBG": 421010132002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3040.0, "Total Transactions": 263.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15611, 39.962905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.93927, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2024, "Total Visits": 960.0, "Total Visitors": 735.0, "POI_CBG": 421010018002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 3640.0, "Total Transactions": 212.0, "Total Customers": 150.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.79, "MEDIAN_SPEND_PER_CUSTOMER": 16.46 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.93927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2024, "Total Visits": 137.0, "Total Visitors": 130.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7851.0, "Total Transactions": 440.0, "Total Customers": 319.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.63, "MEDIAN_SPEND_PER_CUSTOMER": 19.15 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "LOCATION_NAME": "Malelani Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.05294, "LONGITUDE": -75.186129, "DATE_RANGE_START": 2024, "Total Visits": 125.0, "Total Visitors": 125.0, "POI_CBG": 421010237002.0, "MEDIAN_DWELL": 109.0, "Total Spend": 2407.0, "Total Transactions": 90.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.85, "MEDIAN_SPEND_PER_CUSTOMER": 27.78 }, "geometry": { "type": "Point", "coordinates": [ -75.186129, 40.05294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "LOCATION_NAME": "Crunchik'n", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2024, "Total Visits": 2270.0, "Total Visitors": 832.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 349.0, "Total Spend": 160.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.67, "MEDIAN_SPEND_PER_CUSTOMER": 16.67 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2024, "Total Visits": 607.0, "Total Visitors": 402.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 63.0, "Total Spend": 10511.0, "Total Transactions": 760.0, "Total Customers": 531.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.82, "MEDIAN_SPEND_PER_CUSTOMER": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-5s5", "LOCATION_NAME": "Halal Gyro King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951726, "LONGITUDE": -75.159671, "DATE_RANGE_START": 2024, "Total Visits": 6955.0, "Total Visitors": 4739.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 36.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.0, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159671, 39.951726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-225@628-pm4-djv", "LOCATION_NAME": "Kiku sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923305, "LONGITUDE": -75.170389, "DATE_RANGE_START": 2024, "Total Visits": 878.0, "Total Visitors": 467.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 91.0, "Total Spend": 4110.0, "Total Transactions": 87.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.08, "MEDIAN_SPEND_PER_CUSTOMER": 45.31 }, "geometry": { "type": "Point", "coordinates": [ -75.170389, 39.923305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "LOCATION_NAME": "NO 1 China", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2024, "Total Visits": 617.0, "Total Visitors": 494.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 929.0, "Total Transactions": 41.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.14, "MEDIAN_SPEND_PER_CUSTOMER": 29.78 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "LOCATION_NAME": "Chicko Tako", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 112.0, "POI_CBG": 421010387001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 1652.0, "Total Transactions": 78.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.19, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@63s-dvx-fcq", "LOCATION_NAME": "Veganish", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971859, "LONGITUDE": -75.226167, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010111003.0, "MEDIAN_DWELL": null, "Total Spend": 81.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.84, "MEDIAN_SPEND_PER_CUSTOMER": 30.84 }, "geometry": { "type": "Point", "coordinates": [ -75.226167, 39.971859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.012417, "LONGITUDE": -75.118991, "DATE_RANGE_START": 2024, "Total Visits": 952.0, "Total Visitors": 812.0, "POI_CBG": 421010383001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 17146.0, "Total Transactions": 1145.0, "Total Customers": 691.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.16, "MEDIAN_SPEND_PER_CUSTOMER": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118991, 40.012417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "LOCATION_NAME": "Frank's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010207001.0, "MEDIAN_DWELL": null, "Total Spend": 1216.0, "Total Transactions": 59.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.18, "MEDIAN_SPEND_PER_CUSTOMER": 31.48 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "LOCATION_NAME": "Cook and Shaker", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010160001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4524.0, "Total Transactions": 86.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.76, "MEDIAN_SPEND_PER_CUSTOMER": 46.41 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm4-pvz", "LOCATION_NAME": "George's Sandwich Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938819, "LONGITUDE": -75.157978, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 226.0, "POI_CBG": 421010024003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 265.0, "Total Transactions": 17.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157978, 39.938819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "LOCATION_NAME": "Sawatdee Thai Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 165.0, "POI_CBG": 421010012024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 305.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.25, "MEDIAN_SPEND_PER_CUSTOMER": 17.25 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmf-ht9", "LOCATION_NAME": "Devon & Blakely", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953611, "LONGITUDE": -75.170322, "DATE_RANGE_START": 2024, "Total Visits": 1248.0, "Total Visitors": 862.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3707.0, "Total Transactions": 286.0, "Total Customers": 184.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.64, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 39.953611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "LOCATION_NAME": "City View Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 128.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 10.0, "Total Spend": 8263.0, "Total Transactions": 391.0, "Total Customers": 298.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.74, "MEDIAN_SPEND_PER_CUSTOMER": 19.27 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "LOCATION_NAME": "Xi'an Sizzling Woks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 126.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 15.0, "Total Spend": 1096.0, "Total Transactions": 26.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.97, "MEDIAN_SPEND_PER_CUSTOMER": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "LOCATION_NAME": "La Tienda MiniMarket", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2024, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": null, "Total Spend": 283.0, "Total Transactions": 13.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.31, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.970561, "LONGITUDE": -75.155313, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 342.0, "POI_CBG": 421010141002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 333.0, "Total Transactions": 24.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.7, "MEDIAN_SPEND_PER_CUSTOMER": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155313, 39.970561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2024, "Total Visits": 57.0, "Total Visitors": 49.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": null, "Total Spend": 1339.0, "Total Transactions": 42.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.21, "MEDIAN_SPEND_PER_CUSTOMER": 36.57 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p74-wtv", "LOCATION_NAME": "Oteri's Italian Bakery Frankford Ave", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038952, "LONGITUDE": -75.035677, "DATE_RANGE_START": 2024, "Total Visits": 234.0, "Total Visitors": 191.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 9.0, "Total Spend": 182.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.95, "MEDIAN_SPEND_PER_CUSTOMER": 25.95 }, "geometry": { "type": "Point", "coordinates": [ -75.035677, 40.038952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22f@628-p9q-hqz", "LOCATION_NAME": "Domino's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.07905, "LONGITUDE": -75.028048, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": null, "Total Spend": 2015.0, "Total Transactions": 92.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.06, "MEDIAN_SPEND_PER_CUSTOMER": 34.06 }, "geometry": { "type": "Point", "coordinates": [ -75.028048, 40.07905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "LOCATION_NAME": "Royal Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010077001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 580.0, "Total Transactions": 34.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.65, "MEDIAN_SPEND_PER_CUSTOMER": 17.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmd-zfz", "LOCATION_NAME": "Small Oven Pastry Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939225, "LONGITUDE": -75.180201, "DATE_RANGE_START": 2024, "Total Visits": 382.0, "Total Visitors": 230.0, "POI_CBG": 421010020001.0, "MEDIAN_DWELL": 14.0, "Total Spend": 73.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.3, "MEDIAN_SPEND_PER_CUSTOMER": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180201, 39.939225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "LOCATION_NAME": "Fuel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 93.0, "POI_CBG": 421010040014.0, "MEDIAN_DWELL": 97.0, "Total Spend": 2386.0, "Total Transactions": 150.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.68, "MEDIAN_SPEND_PER_CUSTOMER": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "LOCATION_NAME": "Red Poke Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2024, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": null, "Total Spend": 850.0, "Total Transactions": 49.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.15, "MEDIAN_SPEND_PER_CUSTOMER": 17.57 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pm9-hkf", "LOCATION_NAME": "Enzos Pizzata", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923017, "LONGITUDE": -75.17798, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010038003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 76.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.66, "MEDIAN_SPEND_PER_CUSTOMER": 20.66 }, "geometry": { "type": "Point", "coordinates": [ -75.17798, 39.923017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-kpv", "LOCATION_NAME": "Artisans On the Avenue", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.075656, "LONGITUDE": -75.206288, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010385001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 835.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.16, "MEDIAN_SPEND_PER_CUSTOMER": 56.16 }, "geometry": { "type": "Point", "coordinates": [ -75.206288, 40.075656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-btv", "LOCATION_NAME": "Kraftwork", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.971499, "LONGITUDE": -75.127358, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010158003.0, "MEDIAN_DWELL": null, "Total Spend": 411.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.98, "MEDIAN_SPEND_PER_CUSTOMER": 37.98 }, "geometry": { "type": "Point", "coordinates": [ -75.127358, 39.971499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 22.0, "POI_CBG": 421010093005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 465.0, "Total Transactions": 32.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pm3-xqz", "LOCATION_NAME": "Green Eggs Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.931348, "LONGITUDE": -75.166497, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 137.0, "POI_CBG": 421010029002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 481.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.75, "MEDIAN_SPEND_PER_CUSTOMER": 101.75 }, "geometry": { "type": "Point", "coordinates": [ -75.166497, 39.931348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p83-y5f", "LOCATION_NAME": "Judah Mediterranean Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085623, "LONGITUDE": -75.045445, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 167.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 74.0, "Total Spend": 1203.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.3, "MEDIAN_SPEND_PER_CUSTOMER": 124.32 }, "geometry": { "type": "Point", "coordinates": [ -75.045445, 40.085623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm4-k2k", "LOCATION_NAME": "Four Seasons", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934372, "LONGITUDE": -75.154357, "DATE_RANGE_START": 2024, "Total Visits": 1983.0, "Total Visitors": 1393.0, "POI_CBG": 421010024002.0, "MEDIAN_DWELL": 15.0, "Total Spend": 27.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.2, "MEDIAN_SPEND_PER_CUSTOMER": 10.42 }, "geometry": { "type": "Point", "coordinates": [ -75.154357, 39.934372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3qz", "LOCATION_NAME": "Grand China Buffet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.085175, "LONGITUDE": -74.967524, "DATE_RANGE_START": 2024, "Total Visits": 945.0, "Total Visitors": 868.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 28.0, "Total Spend": 11831.0, "Total Transactions": 208.0, "Total Customers": 191.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.48, "MEDIAN_SPEND_PER_CUSTOMER": 50.32 }, "geometry": { "type": "Point", "coordinates": [ -74.967524, 40.085175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "LOCATION_NAME": "Fairfield Inn & Suites by Marriott", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2024, "Total Visits": 877.0, "Total Visitors": 445.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 278.0, "Total Spend": 1416.0, "Total Transactions": 9.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 146.48, "MEDIAN_SPEND_PER_CUSTOMER": 537.68 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "LOCATION_NAME": "King of Wings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010037021.0, "MEDIAN_DWELL": 22.0, "Total Spend": 129.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.98, "MEDIAN_SPEND_PER_CUSTOMER": 48.98 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zvf", "LOCATION_NAME": "M2O Burgers & Salads", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940282, "LONGITUDE": -75.150883, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 158.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 19.0, "Total Spend": 161.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.0, "MEDIAN_SPEND_PER_CUSTOMER": 21.99 }, "geometry": { "type": "Point", "coordinates": [ -75.150883, 39.940282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.986364, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010151021.0, "MEDIAN_DWELL": 8.0, "Total Spend": 81.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 7.48 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.986364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8t-vvf", "LOCATION_NAME": "Skechers", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.089192, "LONGITUDE": -74.961438, "DATE_RANGE_START": 2024, "Total Visits": 429.0, "Total Visitors": 404.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 537.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 53.48, "MEDIAN_SPEND_PER_CUSTOMER": 79.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961438, 40.089192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "LOCATION_NAME": "Head House Books", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.940589, "LONGITUDE": -75.145463, "DATE_RANGE_START": 2024, "Total Visits": 536.0, "Total Visitors": 509.0, "POI_CBG": 421010016002.0, "MEDIAN_DWELL": 22.0, "Total Spend": 223.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 14.59 }, "geometry": { "type": "Point", "coordinates": [ -75.145463, 39.940589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "LOCATION_NAME": "Luke's Lobster", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 200.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 3283.0, "Total Transactions": 70.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.04, "MEDIAN_SPEND_PER_CUSTOMER": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "LOCATION_NAME": "Little Pete's Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2024, "Total Visits": 1342.0, "Total Visitors": 710.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 154.0, "Total Spend": 558.0, "Total Transactions": 16.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.63, "MEDIAN_SPEND_PER_CUSTOMER": 34.63 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "LOCATION_NAME": "Ruth's Chris Steak House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952962, "LONGITUDE": -75.170263, "DATE_RANGE_START": 2024, "Total Visits": 1594.0, "Total Visitors": 886.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 145.0, "Total Spend": 8567.0, "Total Transactions": 62.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 113.19, "MEDIAN_SPEND_PER_CUSTOMER": 126.72 }, "geometry": { "type": "Point", "coordinates": [ -75.170263, 39.952962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmb-whq", "LOCATION_NAME": "Terakawa Ramen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955405, "LONGITUDE": -75.15447, "DATE_RANGE_START": 2024, "Total Visits": 19620.0, "Total Visitors": 13494.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1819.0, "Total Transactions": 45.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.03, "MEDIAN_SPEND_PER_CUSTOMER": 36.95 }, "geometry": { "type": "Point", "coordinates": [ -75.15447, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-v75", "LOCATION_NAME": "Margherita Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948535, "LONGITUDE": -75.144159, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 169.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2564.0, "Total Transactions": 219.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.4, "MEDIAN_SPEND_PER_CUSTOMER": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2024, "Total Visits": 517.0, "Total Visitors": 315.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 506.0, "Total Transactions": 30.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.2, "MEDIAN_SPEND_PER_CUSTOMER": 14.84 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dvw-bhq", "LOCATION_NAME": "Yummy Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961114, "LONGITUDE": -75.224901, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010093004.0, "MEDIAN_DWELL": null, "Total Spend": 449.0, "Total Transactions": 18.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.99, "MEDIAN_SPEND_PER_CUSTOMER": 24.29 }, "geometry": { "type": "Point", "coordinates": [ -75.224901, 39.961114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "LOCATION_NAME": "Hilltown Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 157.0, "POI_CBG": 421010213004.0, "MEDIAN_DWELL": 59.0, "Total Spend": 28558.0, "Total Transactions": 578.0, "Total Customers": 365.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 53.28 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2024, "Total Visits": 433.0, "Total Visitors": 344.0, "POI_CBG": 421010146001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 20273.0, "Total Transactions": 1370.0, "Total Customers": 916.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.18, "MEDIAN_SPEND_PER_CUSTOMER": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.052417, "LONGITUDE": -75.008753, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1650.0, "Total Transactions": 43.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.35, "MEDIAN_SPEND_PER_CUSTOMER": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.008753, 40.052417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p85-2tv", "LOCATION_NAME": "S S Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.066075, "LONGITUDE": -75.050826, "DATE_RANGE_START": 2024, "Total Visits": 241.0, "Total Visitors": 133.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 2.0, "Total Spend": 66.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050826, 40.066075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23g@628-pmf-sqz", "LOCATION_NAME": "New Balance Philadelphia", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.950046, "LONGITUDE": -75.168022, "DATE_RANGE_START": 2024, "Total Visits": 2525.0, "Total Visitors": 1840.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5329.0, "Total Transactions": 47.0, "Total Customers": 45.0, "MEDIAN_SPEND_PER_TRANSACTION": 99.99, "MEDIAN_SPEND_PER_CUSTOMER": 99.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168022, 39.950046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pnw-psq", "LOCATION_NAME": "Unleashed by Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.969275, "LONGITUDE": -75.139207, "DATE_RANGE_START": 2024, "Total Visits": 2222.0, "Total Visitors": 1319.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 7917.0, "Total Transactions": 194.0, "Total Customers": 170.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.3, "MEDIAN_SPEND_PER_CUSTOMER": 33.44 }, "geometry": { "type": "Point", "coordinates": [ -75.139207, 39.969275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7z-vj9", "LOCATION_NAME": "Xin Xing House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035461, "LONGITUDE": -75.080869, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 155.0, "POI_CBG": 421010312001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1145.0, "Total Transactions": 8.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.0, "MEDIAN_SPEND_PER_CUSTOMER": 300.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080869, 40.035461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7v-sqz", "LOCATION_NAME": "Sloane Toyota of Philadelphia", "TOP_CATEGORY": "Automobile Dealers", "LATITUDE": 40.054964, "LONGITUDE": -75.075228, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010310002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 35703.0, "Total Transactions": 128.0, "Total Customers": 101.0, "MEDIAN_SPEND_PER_TRANSACTION": 118.94, "MEDIAN_SPEND_PER_CUSTOMER": 154.94 }, "geometry": { "type": "Point", "coordinates": [ -75.075228, 40.054964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.052252, "LONGITUDE": -75.010446, "DATE_RANGE_START": 2024, "Total Visits": 675.0, "Total Visitors": 290.0, "POI_CBG": 421010348013.0, "MEDIAN_DWELL": 6.0, "Total Spend": 42556.0, "Total Transactions": 1205.0, "Total Customers": 674.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.72, "MEDIAN_SPEND_PER_CUSTOMER": 35.25 }, "geometry": { "type": "Point", "coordinates": [ -75.010446, 40.052252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-grk", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.917059, "LONGITUDE": -75.180598, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 152424.0, "Total Transactions": 3749.0, "Total Customers": 1499.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.61, "MEDIAN_SPEND_PER_CUSTOMER": 46.24 }, "geometry": { "type": "Point", "coordinates": [ -75.180598, 39.917059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.982036, "LONGITUDE": -75.156118, "DATE_RANGE_START": 2024, "Total Visits": 717.0, "Total Visitors": 317.0, "POI_CBG": 421010377001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2433.0, "Total Transactions": 253.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.63, "MEDIAN_SPEND_PER_CUSTOMER": 10.04 }, "geometry": { "type": "Point", "coordinates": [ -75.156118, 39.982036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2024, "Total Visits": 307.0, "Total Visitors": 146.0, "POI_CBG": 421010012013.0, "MEDIAN_DWELL": 5.0, "Total Spend": 38289.0, "Total Transactions": 3610.0, "Total Customers": 1489.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.15, "MEDIAN_SPEND_PER_CUSTOMER": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pnw-py9", "LOCATION_NAME": "Pharmacy of America V", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.969421, "LONGITUDE": -75.140859, "DATE_RANGE_START": 2024, "Total Visits": 500.0, "Total Visitors": 500.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 232.0, "Total Transactions": 18.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.26, "MEDIAN_SPEND_PER_CUSTOMER": 5.26 }, "geometry": { "type": "Point", "coordinates": [ -75.140859, 39.969421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "LOCATION_NAME": "GNC (General Nutrition Centers)", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.031543, "LONGITUDE": -75.100254, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 344.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.99, "MEDIAN_SPEND_PER_CUSTOMER": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.100254, 40.031543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmc-v2k", "LOCATION_NAME": "Michaels Stores", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.923501, "LONGITUDE": -75.140646, "DATE_RANGE_START": 2024, "Total Visits": 553.0, "Total Visitors": 441.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 111.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.51, "MEDIAN_SPEND_PER_CUSTOMER": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.140646, 39.923501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "LOCATION_NAME": "San Lucas Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010039014.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2316.0, "Total Transactions": 72.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.21, "MEDIAN_SPEND_PER_CUSTOMER": 29.95 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "LOCATION_NAME": "Evan's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2024, "Total Visits": 66.0, "Total Visitors": 55.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1613.0, "Total Transactions": 67.0, "Total Customers": 50.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.05, "MEDIAN_SPEND_PER_CUSTOMER": 22.29 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 155.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1757.0, "Total Transactions": 120.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2024, "Total Visits": 1270.0, "Total Visitors": 1101.0, "POI_CBG": 421010323003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15312.0, "Total Transactions": 1028.0, "Total Customers": 613.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.08, "MEDIAN_SPEND_PER_CUSTOMER": 18.08 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "LOCATION_NAME": "Ritz Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2024, "Total Visits": 391.0, "Total Visitors": 312.0, "POI_CBG": 421010334001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 8907.0, "Total Transactions": 221.0, "Total Customers": 175.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.11, "MEDIAN_SPEND_PER_CUSTOMER": 43.17 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "LOCATION_NAME": "LKQ", "TOP_CATEGORY": "Miscellaneous Durable Goods Merchant Wholesalers", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 187.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 10050.0, "Total Transactions": 26.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 98.8, "MEDIAN_SPEND_PER_CUSTOMER": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-syv", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.925363, "LONGITUDE": -75.15743, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 224.0, "POI_CBG": 421010028012.0, "MEDIAN_DWELL": 7.0, "Total Spend": 207.0, "Total Transactions": 24.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.58, "MEDIAN_SPEND_PER_CUSTOMER": 12.58 }, "geometry": { "type": "Point", "coordinates": [ -75.15743, 39.925363 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-pgk", "LOCATION_NAME": "Best Sunny Diner", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992784, "LONGITUDE": -75.148123, "DATE_RANGE_START": 2024, "Total Visits": 72.0, "Total Visitors": 58.0, "POI_CBG": 421010165003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 218.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.87, "MEDIAN_SPEND_PER_CUSTOMER": 15.95 }, "geometry": { "type": "Point", "coordinates": [ -75.148123, 39.992784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "LOCATION_NAME": "Rustica", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.964223, "LONGITUDE": -75.140493, "DATE_RANGE_START": 2024, "Total Visits": 768.0, "Total Visitors": 357.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 197.0, "Total Spend": 1527.0, "Total Transactions": 108.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.55, "MEDIAN_SPEND_PER_CUSTOMER": 14.78 }, "geometry": { "type": "Point", "coordinates": [ -75.140493, 39.964223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "LOCATION_NAME": "Pub & Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 105.0, "POI_CBG": 421010012023.0, "MEDIAN_DWELL": 167.0, "Total Spend": 1859.0, "Total Transactions": 29.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.75, "MEDIAN_SPEND_PER_CUSTOMER": 84.19 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "LOCATION_NAME": "Best In Town Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 167.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 53.0, "Total Spend": 1496.0, "Total Transactions": 53.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.71, "MEDIAN_SPEND_PER_CUSTOMER": 32.09 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-6x5", "LOCATION_NAME": "Giuseppe & Sons", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950627, "LONGITUDE": -75.166809, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4123.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 80.12, "MEDIAN_SPEND_PER_CUSTOMER": 93.22 }, "geometry": { "type": "Point", "coordinates": [ -75.166809, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.999377, "LONGITUDE": -75.132935, "DATE_RANGE_START": 2024, "Total Visits": 498.0, "Total Visitors": 450.0, "POI_CBG": 421010195011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2889.0, "Total Transactions": 153.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.36, "MEDIAN_SPEND_PER_CUSTOMER": 19.52 }, "geometry": { "type": "Point", "coordinates": [ -75.132935, 39.999377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@628-pmf-mrk", "LOCATION_NAME": "Bain's Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952352, "LONGITUDE": -75.168112, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 503.0, "Total Transactions": 45.0, "Total Customers": 37.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.42, "MEDIAN_SPEND_PER_CUSTOMER": 12.57 }, "geometry": { "type": "Point", "coordinates": [ -75.168112, 39.952352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2024, "Total Visits": 1887.0, "Total Visitors": 1103.0, "POI_CBG": 421010307003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 95672.0, "Total Transactions": 5503.0, "Total Customers": 1919.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.39, "MEDIAN_SPEND_PER_CUSTOMER": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj7-w8v", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.018928, "LONGITUDE": -75.097108, "DATE_RANGE_START": 2024, "Total Visits": 1847.0, "Total Visitors": 1315.0, "POI_CBG": 421010292002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 51.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.08, "MEDIAN_SPEND_PER_CUSTOMER": 4.08 }, "geometry": { "type": "Point", "coordinates": [ -75.097108, 40.018928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "LOCATION_NAME": "Rosario's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2024, "Total Visits": 137.0, "Total Visitors": 137.0, "POI_CBG": 421010022002.0, "MEDIAN_DWELL": 136.0, "Total Spend": 57.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.95, "MEDIAN_SPEND_PER_CUSTOMER": 16.95 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "LOCATION_NAME": "Greek Lady", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 263.0, "POI_CBG": 421010088023.0, "MEDIAN_DWELL": 8.0, "Total Spend": 9910.0, "Total Transactions": 411.0, "Total Customers": 308.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.85, "MEDIAN_SPEND_PER_CUSTOMER": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "LOCATION_NAME": "Menagerie Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2024, "Total Visits": 130.0, "Total Visitors": 120.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 27.0, "Total Spend": 5601.0, "Total Transactions": 603.0, "Total Customers": 395.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.48, "MEDIAN_SPEND_PER_CUSTOMER": 10.32 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2024, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 6.0, "Total Spend": 489.0, "Total Transactions": 30.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.3, "MEDIAN_SPEND_PER_CUSTOMER": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj4-zzz", "LOCATION_NAME": "Wok Works", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.005065, "LONGITUDE": -75.150775, "DATE_RANGE_START": 2024, "Total Visits": 3137.0, "Total Visitors": 1393.0, "POI_CBG": 421010200002.0, "MEDIAN_DWELL": 167.0, "Total Spend": 451.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.12, "MEDIAN_SPEND_PER_CUSTOMER": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.150775, 40.005065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "LOCATION_NAME": "Independence Prime", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 863.0, "Total Transactions": 29.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.86, "MEDIAN_SPEND_PER_CUSTOMER": 31.17 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8j-bx5", "LOCATION_NAME": "Moe's Deli Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.037856, "LONGITUDE": -75.038561, "DATE_RANGE_START": 2024, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 715.0, "Total Transactions": 66.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.38, "MEDIAN_SPEND_PER_CUSTOMER": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038561, 40.037856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm8-gzf", "LOCATION_NAME": "Shake Shack", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.901198, "LONGITUDE": -75.171974, "DATE_RANGE_START": 2024, "Total Visits": 3453.0, "Total Visitors": 2587.0, "POI_CBG": 421019806001.0, "MEDIAN_DWELL": 166.0, "Total Spend": 1043.0, "Total Transactions": 49.0, "Total Customers": 41.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.58, "MEDIAN_SPEND_PER_CUSTOMER": 18.11 }, "geometry": { "type": "Point", "coordinates": [ -75.171974, 39.901198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "LOCATION_NAME": "2nd Street Brew House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 65.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 90.0, "Total Spend": 4708.0, "Total Transactions": 109.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.5, "MEDIAN_SPEND_PER_CUSTOMER": 45.63 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.947353, "LONGITUDE": -75.228782, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010073004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 2196.0, "Total Transactions": 96.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.3, "MEDIAN_SPEND_PER_CUSTOMER": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.228782, 39.947353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-rtv", "LOCATION_NAME": "Takka Grill and Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029529, "LONGITUDE": -75.180791, "DATE_RANGE_START": 2024, "Total Visits": 140.0, "Total Visitors": 124.0, "POI_CBG": 421010240002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 354.0, "Total Transactions": 12.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.28 }, "geometry": { "type": "Point", "coordinates": [ -75.180791, 40.029529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pmf-s3q", "LOCATION_NAME": "South Deli and Grocery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944603, "LONGITUDE": -75.17157, "DATE_RANGE_START": 2024, "Total Visits": 492.0, "Total Visitors": 388.0, "POI_CBG": 421010012022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 516.0, "Total Transactions": 46.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.0, "MEDIAN_SPEND_PER_CUSTOMER": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17157, 39.944603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.933013, "LONGITUDE": -75.144591, "DATE_RANGE_START": 2024, "Total Visits": 315.0, "Total Visitors": 274.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 12666.0, "Total Transactions": 1602.0, "Total Customers": 739.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.78, "MEDIAN_SPEND_PER_CUSTOMER": 10.11 }, "geometry": { "type": "Point", "coordinates": [ -75.144591, 39.933013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph6-vvf", "LOCATION_NAME": "Debreaux's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.989238, "LONGITUDE": -75.24979, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": null, "Total Spend": 274.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.75, "MEDIAN_SPEND_PER_CUSTOMER": 47.93 }, "geometry": { "type": "Point", "coordinates": [ -75.24979, 39.989238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958186, "LONGITUDE": -75.208259, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 7.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 18.0, "Total Spend": 6613.0, "Total Transactions": 933.0, "Total Customers": 446.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.69, "MEDIAN_SPEND_PER_CUSTOMER": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.208259, 39.958186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@63s-dvr-qj9", "LOCATION_NAME": "Trendsetters Bar & Lounge", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.937385, "LONGITUDE": -75.217901, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 91.0, "POI_CBG": 421010070001.0, "MEDIAN_DWELL": 1358.0, "Total Spend": 47.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.96, "MEDIAN_SPEND_PER_CUSTOMER": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.217901, 39.937385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pmf-jgk", "LOCATION_NAME": "Square 1682", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.950845, "LONGITUDE": -75.168603, "DATE_RANGE_START": 2024, "Total Visits": 746.0, "Total Visitors": 371.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 169.0, "Total Spend": 3925.0, "Total Transactions": 68.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.12, "MEDIAN_SPEND_PER_CUSTOMER": 55.36 }, "geometry": { "type": "Point", "coordinates": [ -75.168603, 39.950845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "LOCATION_NAME": "Zesto Pizza & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.032146, "LONGITUDE": -75.21395, "DATE_RANGE_START": 2024, "Total Visits": 986.0, "Total Visitors": 582.0, "POI_CBG": 421010213003.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1787.0, "Total Transactions": 101.0, "Total Customers": 83.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.22, "MEDIAN_SPEND_PER_CUSTOMER": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.21395, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2024, "Total Visits": 411.0, "Total Visitors": 303.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3205.0, "Total Transactions": 403.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.76, "MEDIAN_SPEND_PER_CUSTOMER": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p8f-ct9", "LOCATION_NAME": "Rosario Deli Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.015606, "LONGITUDE": -75.078196, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 62.0, "POI_CBG": 421010300003.0, "MEDIAN_DWELL": 8.0, "Total Spend": 192.0, "Total Transactions": 16.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.52, "MEDIAN_SPEND_PER_CUSTOMER": 34.58 }, "geometry": { "type": "Point", "coordinates": [ -75.078196, 40.015606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-7qz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.948017, "LONGITUDE": -75.161653, "DATE_RANGE_START": 2024, "Total Visits": 844.0, "Total Visitors": 531.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 8.0, "Total Spend": 230.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.22, "MEDIAN_SPEND_PER_CUSTOMER": 24.09 }, "geometry": { "type": "Point", "coordinates": [ -75.161653, 39.948017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "LOCATION_NAME": "Urban Outfitters", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.950062, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 28521.0, "Total Transactions": 602.0, "Total Customers": 490.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 39.85 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.914496, "LONGITUDE": -75.156757, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 154.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 21.0, "Total Spend": 183.0, "Total Transactions": 13.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.52, "MEDIAN_SPEND_PER_CUSTOMER": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.156757, 39.914496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2024, "Total Visits": 412.0, "Total Visitors": 344.0, "POI_CBG": 421010334004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 8288.0, "Total Transactions": 1024.0, "Total Customers": 440.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.07, "MEDIAN_SPEND_PER_CUSTOMER": 9.63 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pnx-7yv", "LOCATION_NAME": "Creep Records", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.961361, "LONGITUDE": -75.141595, "DATE_RANGE_START": 2024, "Total Visits": 332.0, "Total Visitors": 250.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 1471.0, "Total Transactions": 57.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.32, "MEDIAN_SPEND_PER_CUSTOMER": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.141595, 39.961361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kpv", "LOCATION_NAME": "Citi Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.006375, "LONGITUDE": -75.09134, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 18.0, "POI_CBG": 421010294002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 15468.0, "Total Transactions": 645.0, "Total Customers": 370.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09134, 40.006375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmb-fpv", "LOCATION_NAME": "Locust Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.947237, "LONGITUDE": -75.157431, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 41.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 102.0, "Total Spend": 216.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.38, "MEDIAN_SPEND_PER_CUSTOMER": 24.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157431, 39.947237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pj5-j9z", "LOCATION_NAME": "Pizza Power", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998737, "LONGITUDE": -75.128356, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 51.0, "POI_CBG": 421010195012.0, "MEDIAN_DWELL": 1.0, "Total Spend": 147.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.0, "MEDIAN_SPEND_PER_CUSTOMER": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128356, 39.998737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-y5f", "LOCATION_NAME": "Southside Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.940448, "LONGITUDE": -75.17585, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010019002.0, "MEDIAN_DWELL": null, "Total Spend": 190.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.88, "MEDIAN_SPEND_PER_CUSTOMER": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.17585, 39.940448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p72-5s5", "LOCATION_NAME": "Three Monkeys Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.053948, "LONGITUDE": -74.983889, "DATE_RANGE_START": 2024, "Total Visits": 354.0, "Total Visitors": 140.0, "POI_CBG": 421010351001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 884.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 97.16, "MEDIAN_SPEND_PER_CUSTOMER": 98.58 }, "geometry": { "type": "Point", "coordinates": [ -74.983889, 40.053948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "LOCATION_NAME": "Thai Square Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010013005.0, "MEDIAN_DWELL": null, "Total Spend": 837.0, "Total Transactions": 17.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.99, "MEDIAN_SPEND_PER_CUSTOMER": 54.17 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "LOCATION_NAME": "L'anima", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2024, "Total Visits": 689.0, "Total Visitors": 625.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 343.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 130.1, "MEDIAN_SPEND_PER_CUSTOMER": 130.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "LOCATION_NAME": "El Vez", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2024, "Total Visits": 292.0, "Total Visitors": 175.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 44.0, "Total Spend": 63810.0, "Total Transactions": 768.0, "Total Customers": 657.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.33, "MEDIAN_SPEND_PER_CUSTOMER": 75.17 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22h@628-pmf-n3q", "LOCATION_NAME": "Genji", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.953358, "LONGITUDE": -75.165439, "DATE_RANGE_START": 2024, "Total Visits": 270.0, "Total Visitors": 234.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 80.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.165439, 39.953358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pnx-cbk", "LOCATION_NAME": "Philly Style Bagels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97443, "LONGITUDE": -75.13265, "DATE_RANGE_START": 2024, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010158005.0, "MEDIAN_DWELL": 1.0, "Total Spend": 122.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.4, "MEDIAN_SPEND_PER_CUSTOMER": 15.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13265, 39.97443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "LOCATION_NAME": "Heng Fa Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2024, "Total Visits": 294.0, "Total Visitors": 219.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 20943.0, "Total Transactions": 546.0, "Total Customers": 391.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.57 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-224@628-pm9-whq", "LOCATION_NAME": "Penzeys Spices", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.95039, "LONGITUDE": -75.144816, "DATE_RANGE_START": 2024, "Total Visits": 931.0, "Total Visitors": 761.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 623.0, "Total Transactions": 25.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.78, "MEDIAN_SPEND_PER_CUSTOMER": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144816, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pm9-zs5", "LOCATION_NAME": "Retrospect", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941639, "LONGITUDE": -75.151247, "DATE_RANGE_START": 2024, "Total Visits": 610.0, "Total Visitors": 515.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 15421.0, "Total Transactions": 469.0, "Total Customers": 415.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.0, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.151247, 39.941639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgg-jsq", "LOCATION_NAME": "BBQ Town", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.995114, "LONGITUDE": -75.167387, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 9.0, "POI_CBG": 421010168006.0, "MEDIAN_DWELL": 327.0, "Total Spend": 356.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.39, "MEDIAN_SPEND_PER_CUSTOMER": 32.47 }, "geometry": { "type": "Point", "coordinates": [ -75.167387, 39.995114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087567, "LONGITUDE": -74.965278, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1981.0, "Total Transactions": 124.0, "Total Customers": 116.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.24, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -74.965278, 40.087567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@63s-dvy-k9f", "LOCATION_NAME": "Five Guys", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951004, "LONGITUDE": -75.198123, "DATE_RANGE_START": 2024, "Total Visits": 1051.0, "Total Visitors": 503.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5297.0, "Total Transactions": 255.0, "Total Customers": 205.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.63, "MEDIAN_SPEND_PER_CUSTOMER": 20.99 }, "geometry": { "type": "Point", "coordinates": [ -75.198123, 39.951004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087323, "LONGITUDE": -75.039984, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 849.0, "Total Transactions": 101.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.46, "MEDIAN_SPEND_PER_CUSTOMER": 8.57 }, "geometry": { "type": "Point", "coordinates": [ -75.039984, 40.087323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "LOCATION_NAME": "ShopRite", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.994586, "LONGITUDE": -75.091606, "DATE_RANGE_START": 2024, "Total Visits": 2763.0, "Total Visitors": 1569.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1452719.0, "Total Transactions": 33531.0, "Total Customers": 13615.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.55, "MEDIAN_SPEND_PER_CUSTOMER": 49.64 }, "geometry": { "type": "Point", "coordinates": [ -75.091606, 39.994586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2024, "Total Visits": 1489.0, "Total Visitors": 873.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 22491.0, "Total Transactions": 1343.0, "Total Customers": 883.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.18, "MEDIAN_SPEND_PER_CUSTOMER": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996643, "LONGITUDE": -75.089519, "DATE_RANGE_START": 2024, "Total Visits": 342.0, "Total Visitors": 313.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 18912.0, "Total Transactions": 449.0, "Total Customers": 340.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.98, "MEDIAN_SPEND_PER_CUSTOMER": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089519, 39.996643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2024, "Total Visits": 2328.0, "Total Visitors": 1347.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 73295.0, "Total Transactions": 4406.0, "Total Customers": 1914.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.78, "MEDIAN_SPEND_PER_CUSTOMER": 21.51 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8n5", "LOCATION_NAME": "ULTA Beauty", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951999, "LONGITUDE": -75.157711, "DATE_RANGE_START": 2024, "Total Visits": 13727.0, "Total Visitors": 7998.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 20.0, "Total Spend": 42812.0, "Total Transactions": 953.0, "Total Customers": 819.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.31, "MEDIAN_SPEND_PER_CUSTOMER": 35.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157711, 39.951999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgf-3bk", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.955764, "LONGITUDE": -75.194013, "DATE_RANGE_START": 2024, "Total Visits": 1958.0, "Total Visitors": 1251.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 58.0, "Total Spend": 109.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.5, "MEDIAN_SPEND_PER_CUSTOMER": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194013, 39.955764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "LOCATION_NAME": "Weavers Way Co Op", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 74.0, "POI_CBG": 421010236001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 4262.0, "Total Transactions": 117.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.0, "MEDIAN_SPEND_PER_CUSTOMER": 36.31 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.926446, "LONGITUDE": -75.145402, "DATE_RANGE_START": 2024, "Total Visits": 1266.0, "Total Visitors": 828.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 12912.0, "Total Transactions": 1030.0, "Total Customers": 700.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.58, "MEDIAN_SPEND_PER_CUSTOMER": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pg3-789", "LOCATION_NAME": "China Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.067023, "LONGITUDE": -75.178027, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 227.0, "Total Transactions": 12.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.25, "MEDIAN_SPEND_PER_CUSTOMER": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.178027, 40.067023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-bhq", "LOCATION_NAME": "Rena's Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.912331, "LONGITUDE": -75.233407, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 250.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 616.0, "Total Transactions": 12.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.77, "MEDIAN_SPEND_PER_CUSTOMER": 233.84 }, "geometry": { "type": "Point", "coordinates": [ -75.233407, 39.912331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2024, "Total Visits": 954.0, "Total Visitors": 836.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 18474.0, "Total Transactions": 1164.0, "Total Customers": 761.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.12, "MEDIAN_SPEND_PER_CUSTOMER": 16.93 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nnq", "LOCATION_NAME": "Liberty Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970136, "LONGITUDE": -75.136058, "DATE_RANGE_START": 2024, "Total Visits": 516.0, "Total Visitors": 440.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 31.0, "Total Spend": 6378.0, "Total Transactions": 250.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.4, "MEDIAN_SPEND_PER_CUSTOMER": 21.52 }, "geometry": { "type": "Point", "coordinates": [ -75.136058, 39.970136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-s89", "LOCATION_NAME": "Pen and Pencil", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.948013, "LONGITUDE": -75.167208, "DATE_RANGE_START": 2024, "Total Visits": 275.0, "Total Visitors": 234.0, "POI_CBG": 421010008043.0, "MEDIAN_DWELL": 11.0, "Total Spend": 304.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167208, 39.948013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2024, "Total Visits": 417.0, "Total Visitors": 269.0, "POI_CBG": 421010141001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 14532.0, "Total Transactions": 1706.0, "Total Customers": 710.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.99, "MEDIAN_SPEND_PER_CUSTOMER": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pp4-qvf", "LOCATION_NAME": "Applebee's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.976851, "LONGITUDE": -75.11886, "DATE_RANGE_START": 2024, "Total Visits": 728.0, "Total Visitors": 552.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 51.0, "Total Spend": 2717.0, "Total Transactions": 46.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.4, "MEDIAN_SPEND_PER_CUSTOMER": 59.4 }, "geometry": { "type": "Point", "coordinates": [ -75.11886, 39.976851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "LOCATION_NAME": "Gennaro's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2024, "Total Visits": 342.0, "Total Visitors": 307.0, "POI_CBG": 421010015002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 479.0, "Total Transactions": 39.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.95, "MEDIAN_SPEND_PER_CUSTOMER": 13.34 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-yd9", "LOCATION_NAME": "Art of Perfume", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.120376, "LONGITUDE": -75.016141, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010359001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 155.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.97, "MEDIAN_SPEND_PER_CUSTOMER": 58.97 }, "geometry": { "type": "Point", "coordinates": [ -75.016141, 40.120376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-7h5", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.991208, "LONGITUDE": -75.177977, "DATE_RANGE_START": 2024, "Total Visits": 332.0, "Total Visitors": 182.0, "POI_CBG": 421010169013.0, "MEDIAN_DWELL": 39.0, "Total Spend": 1608.0, "Total Transactions": 42.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.48, "MEDIAN_SPEND_PER_CUSTOMER": 28.15 }, "geometry": { "type": "Point", "coordinates": [ -75.177977, 39.991208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-fcq", "LOCATION_NAME": "Rustic Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.946665, "LONGITUDE": -75.157591, "DATE_RANGE_START": 2024, "Total Visits": 133.0, "Total Visitors": 122.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 78.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.15, "MEDIAN_SPEND_PER_CUSTOMER": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.157591, 39.946665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "LOCATION_NAME": "Lets Grub", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010106002.0, "MEDIAN_DWELL": null, "Total Spend": 531.0, "Total Transactions": 43.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.34, "MEDIAN_SPEND_PER_CUSTOMER": 19.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-75z", "LOCATION_NAME": "North Third", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.963481, "LONGITUDE": -75.142676, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 752.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 88.84, "MEDIAN_SPEND_PER_CUSTOMER": 88.84 }, "geometry": { "type": "Point", "coordinates": [ -75.142676, 39.963481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "LOCATION_NAME": "Frame Fatale", "TOP_CATEGORY": "Home Furnishings Stores", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2024, "Total Visits": 658.0, "Total Visitors": 508.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 846.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.2, "MEDIAN_SPEND_PER_CUSTOMER": 154.33 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.029093, "LONGITUDE": -75.118871, "DATE_RANGE_START": 2024, "Total Visits": 491.0, "Total Visitors": 354.0, "POI_CBG": 421010290004.0, "MEDIAN_DWELL": 11.0, "Total Spend": 642.0, "Total Transactions": 43.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.66, "MEDIAN_SPEND_PER_CUSTOMER": 12.37 }, "geometry": { "type": "Point", "coordinates": [ -75.118871, 40.029093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2024, "Total Visits": 729.0, "Total Visitors": 467.0, "POI_CBG": 421010389001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2159.0, "Total Transactions": 124.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.68, "MEDIAN_SPEND_PER_CUSTOMER": 23.66 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2024, "Total Visits": 529.0, "Total Visitors": 462.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3572.0, "Total Transactions": 332.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 16.44 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "LOCATION_NAME": "Athleta", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.949833, "LONGITUDE": -75.170282, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 41.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 7.0, "Total Spend": 3960.0, "Total Transactions": 49.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 67.94, "MEDIAN_SPEND_PER_CUSTOMER": 67.94 }, "geometry": { "type": "Point", "coordinates": [ -75.170282, 39.949833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "LOCATION_NAME": "Bloomingdale's Outlet Philadelphia", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 31.0, "Total Spend": 4404.0, "Total Transactions": 49.0, "Total Customers": 46.0, "MEDIAN_SPEND_PER_TRANSACTION": 74.98, "MEDIAN_SPEND_PER_CUSTOMER": 79.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953319, "LONGITUDE": -75.17307, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010004021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 929.0, "Total Transactions": 53.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.43, "MEDIAN_SPEND_PER_CUSTOMER": 6.97 }, "geometry": { "type": "Point", "coordinates": [ -75.17307, 39.953319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "LOCATION_NAME": "Shoe Carnival", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.049912, "LONGITUDE": -75.06237, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010335002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 8177.0, "Total Transactions": 128.0, "Total Customers": 118.0, "MEDIAN_SPEND_PER_TRANSACTION": 59.96, "MEDIAN_SPEND_PER_CUSTOMER": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06237, 40.049912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg9-cyv", "LOCATION_NAME": "Mercado Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.983185, "LONGITUDE": -75.169254, "DATE_RANGE_START": 2024, "Total Visits": 146.0, "Total Visitors": 112.0, "POI_CBG": 421010152004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1975.0, "Total Transactions": 161.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.65, "MEDIAN_SPEND_PER_CUSTOMER": 18.39 }, "geometry": { "type": "Point", "coordinates": [ -75.169254, 39.983185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "LOCATION_NAME": "Pjp Marketplace", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.038428, "LONGITUDE": -75.106684, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 222.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 63.0, "Total Spend": 23455.0, "Total Transactions": 725.0, "Total Customers": 424.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.53, "MEDIAN_SPEND_PER_CUSTOMER": 29.38 }, "geometry": { "type": "Point", "coordinates": [ -75.106684, 40.038428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.990623, "LONGITUDE": -75.103002, "DATE_RANGE_START": 2024, "Total Visits": 508.0, "Total Visitors": 312.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 25.0, "Total Spend": 23119.0, "Total Transactions": 467.0, "Total Customers": 369.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.68, "MEDIAN_SPEND_PER_CUSTOMER": 47.5 }, "geometry": { "type": "Point", "coordinates": [ -75.103002, 39.990623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.055386, "LONGITUDE": -75.049698, "DATE_RANGE_START": 2024, "Total Visits": 894.0, "Total Visitors": 588.0, "POI_CBG": 421010334002.0, "MEDIAN_DWELL": 8.0, "Total Spend": 86055.0, "Total Transactions": 4521.0, "Total Customers": 1823.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.93, "MEDIAN_SPEND_PER_CUSTOMER": 22.22 }, "geometry": { "type": "Point", "coordinates": [ -75.049698, 40.055386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-4vz", "LOCATION_NAME": "Cafe Tinto", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02153, "LONGITUDE": -75.122622, "DATE_RANGE_START": 2024, "Total Visits": 240.0, "Total Visitors": 159.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2197.0, "Total Transactions": 176.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.59, "MEDIAN_SPEND_PER_CUSTOMER": 14.72 }, "geometry": { "type": "Point", "coordinates": [ -75.122622, 40.02153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.055425, "LONGITUDE": -75.00482, "DATE_RANGE_START": 2024, "Total Visits": 1418.0, "Total Visitors": 849.0, "POI_CBG": 421010348031.0, "MEDIAN_DWELL": 7.0, "Total Spend": 793.0, "Total Transactions": 42.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.46, "MEDIAN_SPEND_PER_CUSTOMER": 9.41 }, "geometry": { "type": "Point", "coordinates": [ -75.00482, 40.055425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-zcq", "LOCATION_NAME": "Rodriguez Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.992691, "LONGITUDE": -75.131414, "DATE_RANGE_START": 2024, "Total Visits": 93.0, "Total Visitors": 72.0, "POI_CBG": 421010176014.0, "MEDIAN_DWELL": 45.0, "Total Spend": 350.0, "Total Transactions": 34.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.56, "MEDIAN_SPEND_PER_CUSTOMER": 9.41 }, "geometry": { "type": "Point", "coordinates": [ -75.131414, 39.992691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-rhq", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.079417, "LONGITUDE": -74.992984, "DATE_RANGE_START": 2024, "Total Visits": 1875.0, "Total Visitors": 943.0, "POI_CBG": 421010353021.0, "MEDIAN_DWELL": 6.0, "Total Spend": 58875.0, "Total Transactions": 1676.0, "Total Customers": 615.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.24, "MEDIAN_SPEND_PER_CUSTOMER": 38.66 }, "geometry": { "type": "Point", "coordinates": [ -74.992984, 40.079417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "LOCATION_NAME": "Save-A-Lot", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.996497, "LONGITUDE": -75.16664, "DATE_RANGE_START": 2024, "Total Visits": 1016.0, "Total Visitors": 816.0, "POI_CBG": 421010173002.0, "MEDIAN_DWELL": 16.0, "Total Spend": 1825.0, "Total Transactions": 146.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.35, "MEDIAN_SPEND_PER_CUSTOMER": 22.31 }, "geometry": { "type": "Point", "coordinates": [ -75.16664, 39.996497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "LOCATION_NAME": "New Star Express Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2024, "Total Visits": 146.0, "Total Visitors": 141.0, "POI_CBG": 421010111004.0, "MEDIAN_DWELL": 18.0, "Total Spend": 3481.0, "Total Transactions": 130.0, "Total Customers": 75.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.42, "MEDIAN_SPEND_PER_CUSTOMER": 34.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phy-v9f", "LOCATION_NAME": "Liberty", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.030432, "LONGITUDE": -75.118462, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 167.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 200.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.0, "MEDIAN_SPEND_PER_CUSTOMER": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118462, 40.030432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2024, "Total Visits": 686.0, "Total Visitors": 348.0, "POI_CBG": 421010011022.0, "MEDIAN_DWELL": 697.0, "Total Spend": 7410.0, "Total Transactions": 242.0, "Total Customers": 219.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.75, "MEDIAN_SPEND_PER_CUSTOMER": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "LOCATION_NAME": "Tires Plus", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 107.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2034.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 70.6, "MEDIAN_SPEND_PER_CUSTOMER": 70.6 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "LOCATION_NAME": "Popi's Italian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 82.0, "POI_CBG": 421010373002.0, "MEDIAN_DWELL": 110.0, "Total Spend": 295.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 56.44, "MEDIAN_SPEND_PER_CUSTOMER": 112.16 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "LOCATION_NAME": "Solly Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": null, "Total Spend": 683.0, "Total Transactions": 24.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.41, "MEDIAN_SPEND_PER_CUSTOMER": 34.88 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2024, "Total Visits": 445.0, "Total Visitors": 423.0, "POI_CBG": 421010320005.0, "MEDIAN_DWELL": 18.0, "Total Spend": 1396.0, "Total Transactions": 33.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.24, "MEDIAN_SPEND_PER_CUSTOMER": 36.24 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.002558, "LONGITUDE": -75.222575, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 25.0, "POI_CBG": 421010121001.0, "MEDIAN_DWELL": 32.0, "Total Spend": 7666.0, "Total Transactions": 648.0, "Total Customers": 390.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.21, "MEDIAN_SPEND_PER_CUSTOMER": 12.92 }, "geometry": { "type": "Point", "coordinates": [ -75.222575, 40.002558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2024, "Total Visits": 213.0, "Total Visitors": 192.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1496.0, "Total Transactions": 45.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.43, "MEDIAN_SPEND_PER_CUSTOMER": 32.36 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "LOCATION_NAME": "Green Farm", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 163.0, "POI_CBG": 421010357012.0, "MEDIAN_DWELL": 5.0, "Total Spend": 506.0, "Total Transactions": 20.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.5, "MEDIAN_SPEND_PER_CUSTOMER": 70.73 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pmf-jjv", "LOCATION_NAME": "Kura Revolving Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951729, "LONGITUDE": -75.169617, "DATE_RANGE_START": 2024, "Total Visits": 50.0, "Total Visitors": 45.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 2.0, "Total Spend": 8034.0, "Total Transactions": 109.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 61.47, "MEDIAN_SPEND_PER_CUSTOMER": 62.64 }, "geometry": { "type": "Point", "coordinates": [ -75.169617, 39.951729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-2kz", "LOCATION_NAME": "Exxon Mobil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.93922, "LONGITUDE": -75.197844, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 353.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.09, "MEDIAN_SPEND_PER_CUSTOMER": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.197844, 39.93922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-gc5", "LOCATION_NAME": "Verree Express Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.07247, "LONGITUDE": -75.076116, "DATE_RANGE_START": 2024, "Total Visits": 399.0, "Total Visitors": 171.0, "POI_CBG": 421010340003.0, "MEDIAN_DWELL": 54.0, "Total Spend": 243.0, "Total Transactions": 13.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.49, "MEDIAN_SPEND_PER_CUSTOMER": 15.08 }, "geometry": { "type": "Point", "coordinates": [ -75.076116, 40.07247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm8-djv", "LOCATION_NAME": "Chickie's & Pete's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.911588, "LONGITUDE": -75.17455, "DATE_RANGE_START": 2024, "Total Visits": 2483.0, "Total Visitors": 2284.0, "POI_CBG": 421010373001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 473.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 30.57, "MEDIAN_SPEND_PER_CUSTOMER": 36.37 }, "geometry": { "type": "Point", "coordinates": [ -75.17455, 39.911588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-k75", "LOCATION_NAME": "Angela's Pizzeria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0945, "LONGITUDE": -75.018316, "DATE_RANGE_START": 2024, "Total Visits": 133.0, "Total Visitors": 121.0, "POI_CBG": 421010355001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 106.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.018316, 40.0945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p82-swk", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.050065, "LONGITUDE": -75.086882, "DATE_RANGE_START": 2024, "Total Visits": 1152.0, "Total Visitors": 546.0, "POI_CBG": 421010306001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 56504.0, "Total Transactions": 1788.0, "Total Customers": 803.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.42, "MEDIAN_SPEND_PER_CUSTOMER": 32.92 }, "geometry": { "type": "Point", "coordinates": [ -75.086882, 40.050065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j5f", "LOCATION_NAME": "Vans", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.949842, "LONGITUDE": -75.169276, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 15636.0, "Total Transactions": 159.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.92, "MEDIAN_SPEND_PER_CUSTOMER": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169276, 39.949842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "LOCATION_NAME": "Sumo Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 71.0, "POI_CBG": 421010011014.0, "MEDIAN_DWELL": null, "Total Spend": 973.0, "Total Transactions": 36.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.63, "MEDIAN_SPEND_PER_CUSTOMER": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-v75", "LOCATION_NAME": "Oishii", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948099, "LONGITUDE": -75.143818, "DATE_RANGE_START": 2024, "Total Visits": 920.0, "Total Visitors": 703.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 26.0, "Total Spend": 8979.0, "Total Transactions": 448.0, "Total Customers": 378.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143818, 39.948099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 108.0, "POI_CBG": 421010312002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1598.0, "Total Transactions": 54.0, "Total Customers": 47.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.98, "MEDIAN_SPEND_PER_CUSTOMER": 28.64 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.068123, "LONGITUDE": -75.156862, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010263022.0, "MEDIAN_DWELL": 3.0, "Total Spend": 263.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.05, "MEDIAN_SPEND_PER_CUSTOMER": 35.05 }, "geometry": { "type": "Point", "coordinates": [ -75.156862, 40.068123 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "LOCATION_NAME": "Javies Beverages", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.034848, "LONGITUDE": -75.234562, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 170.0, "POI_CBG": 421010215004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 5651.0, "Total Transactions": 190.0, "Total Customers": 134.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.72, "MEDIAN_SPEND_PER_CUSTOMER": 36.82 }, "geometry": { "type": "Point", "coordinates": [ -75.234562, 40.034848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2024, "Total Visits": 1215.0, "Total Visitors": 831.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 4.0, "Total Spend": 16737.0, "Total Transactions": 965.0, "Total Customers": 604.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.76, "MEDIAN_SPEND_PER_CUSTOMER": 18.53 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.06154, "LONGITUDE": -75.05684, "DATE_RANGE_START": 2024, "Total Visits": 1048.0, "Total Visitors": 808.0, "POI_CBG": 421010336001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1143.0, "Total Transactions": 49.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.0, "MEDIAN_SPEND_PER_CUSTOMER": 22.76 }, "geometry": { "type": "Point", "coordinates": [ -75.05684, 40.06154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmd-j7q", "LOCATION_NAME": "Chart House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941147, "LONGITUDE": -75.140478, "DATE_RANGE_START": 2024, "Total Visits": 487.0, "Total Visitors": 487.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 373.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 141.77, "MEDIAN_SPEND_PER_CUSTOMER": 141.77 }, "geometry": { "type": "Point", "coordinates": [ -75.140478, 39.941147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pnt-3qz", "LOCATION_NAME": "Jr's Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974112, "LONGITUDE": -75.122728, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 41.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 95.0, "Total Spend": 532.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 202.0, "MEDIAN_SPEND_PER_CUSTOMER": 202.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122728, 39.974112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-xbk", "LOCATION_NAME": "Yellow Front", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.970311, "LONGITUDE": -75.165314, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 111.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5267.0, "Total Transactions": 317.0, "Total Customers": 121.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.79, "MEDIAN_SPEND_PER_CUSTOMER": 22.17 }, "geometry": { "type": "Point", "coordinates": [ -75.165314, 39.970311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p7x-q4v", "LOCATION_NAME": "Tom's Corner Grill & Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.04063, "LONGITUDE": -75.043816, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 32.0, "POI_CBG": 421010332002.0, "MEDIAN_DWELL": 53.0, "Total Spend": 157.0, "Total Transactions": 12.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.6, "MEDIAN_SPEND_PER_CUSTOMER": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.043816, 40.04063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2024, "Total Visits": 7276.0, "Total Visitors": 4262.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 4002.0, "Total Transactions": 454.0, "Total Customers": 208.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.22, "MEDIAN_SPEND_PER_CUSTOMER": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5fz", "LOCATION_NAME": "Van Leeuwen Artisan Ice Cream", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950007, "LONGITUDE": -75.161725, "DATE_RANGE_START": 2024, "Total Visits": 588.0, "Total Visitors": 467.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 751.0, "Total Transactions": 63.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.5, "MEDIAN_SPEND_PER_CUSTOMER": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.161725, 39.950007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "LOCATION_NAME": "The Bagel Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.937457, "LONGITUDE": -75.15033, "DATE_RANGE_START": 2024, "Total Visits": 340.0, "Total Visitors": 180.0, "POI_CBG": 421010017002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3435.0, "Total Transactions": 241.0, "Total Customers": 171.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.42, "MEDIAN_SPEND_PER_CUSTOMER": 16.56 }, "geometry": { "type": "Point", "coordinates": [ -75.15033, 39.937457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pm3-vpv", "LOCATION_NAME": "Flannel", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927131, "LONGITUDE": -75.166347, "DATE_RANGE_START": 2024, "Total Visits": 159.0, "Total Visitors": 130.0, "POI_CBG": 421010028022.0, "MEDIAN_DWELL": 7.0, "Total Spend": 5574.0, "Total Transactions": 107.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.93, "MEDIAN_SPEND_PER_CUSTOMER": 53.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166347, 39.927131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "LOCATION_NAME": "Sorrento's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2024, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010278003.0, "MEDIAN_DWELL": null, "Total Spend": 2097.0, "Total Transactions": 100.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.64, "MEDIAN_SPEND_PER_CUSTOMER": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "LOCATION_NAME": "Palm Tree Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 132.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 99.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.69, "MEDIAN_SPEND_PER_CUSTOMER": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 217.0, "POI_CBG": 421010164001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4107.0, "Total Transactions": 444.0, "Total Customers": 237.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.74, "MEDIAN_SPEND_PER_CUSTOMER": 10.27 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2024, "Total Visits": 409.0, "Total Visitors": 175.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5789.0, "Total Transactions": 757.0, "Total Customers": 309.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.39, "MEDIAN_SPEND_PER_CUSTOMER": 10.32 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-4jv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.962356, "LONGITUDE": -75.16195, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2837.0, "Total Transactions": 317.0, "Total Customers": 199.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.24, "MEDIAN_SPEND_PER_CUSTOMER": 10.32 }, "geometry": { "type": "Point", "coordinates": [ -75.16195, 39.962356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-mp9", "LOCATION_NAME": "Concourse Dance Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.95318, "LONGITUDE": -75.167893, "DATE_RANGE_START": 2024, "Total Visits": 786.0, "Total Visitors": 552.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 102.0, "Total Spend": 17718.0, "Total Transactions": 852.0, "Total Customers": 405.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.2, "MEDIAN_SPEND_PER_CUSTOMER": 32.55 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 39.95318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-xt9", "LOCATION_NAME": "Taproom", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.036887, "LONGITUDE": -75.031645, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 132.0, "POI_CBG": 421010329004.0, "MEDIAN_DWELL": 70.0, "Total Spend": 209.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 44.38, "MEDIAN_SPEND_PER_CUSTOMER": 79.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031645, 40.036887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "LOCATION_NAME": "Royal's Restaurants", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2024, "Total Visits": 130.0, "Total Visitors": 130.0, "POI_CBG": 421010263013.0, "MEDIAN_DWELL": 7.0, "Total Spend": 894.0, "Total Transactions": 25.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.91, "MEDIAN_SPEND_PER_CUSTOMER": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "LOCATION_NAME": "Good Day Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2024, "Total Visits": 288.0, "Total Visitors": 255.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1855.0, "Total Transactions": 129.0, "Total Customers": 76.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.34, "MEDIAN_SPEND_PER_CUSTOMER": 17.54 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-j5f", "LOCATION_NAME": "Acme Markets", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.071186, "LONGITUDE": -75.194058, "DATE_RANGE_START": 2024, "Total Visits": 1685.0, "Total Visitors": 760.0, "POI_CBG": 421010257001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 132299.0, "Total Transactions": 3562.0, "Total Customers": 1336.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.97, "MEDIAN_SPEND_PER_CUSTOMER": 44.46 }, "geometry": { "type": "Point", "coordinates": [ -75.194058, 40.071186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm7-nwk", "LOCATION_NAME": "Point Crab's & Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.934951, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2024, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010031006.0, "MEDIAN_DWELL": 1.0, "Total Spend": 402.0, "Total Transactions": 16.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.33, "MEDIAN_SPEND_PER_CUSTOMER": 28.21 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.934951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2024, "Total Visits": 848.0, "Total Visitors": 558.0, "POI_CBG": 421010061001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 2274.0, "Total Transactions": 142.0, "Total Customers": 90.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.55, "MEDIAN_SPEND_PER_CUSTOMER": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-phy-7bk", "LOCATION_NAME": "Front Street Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.023755, "LONGITUDE": -75.123669, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010288003.0, "MEDIAN_DWELL": 1.0, "Total Spend": 158.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.16, "MEDIAN_SPEND_PER_CUSTOMER": 33.16 }, "geometry": { "type": "Point", "coordinates": [ -75.123669, 40.023755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvr-7bk", "LOCATION_NAME": "Rainbow Shops", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.927395, "LONGITUDE": -75.232174, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010066004.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1020.0, "Total Transactions": 29.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.93, "MEDIAN_SPEND_PER_CUSTOMER": 46.12 }, "geometry": { "type": "Point", "coordinates": [ -75.232174, 39.927395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.045021, "LONGITUDE": -75.117483, "DATE_RANGE_START": 2024, "Total Visits": 4471.0, "Total Visitors": 2998.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 256.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.71, "MEDIAN_SPEND_PER_CUSTOMER": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.117483, 40.045021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "LOCATION_NAME": "A Lin Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 122.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 1.0, "Total Spend": 451.0, "Total Transactions": 17.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.8, "MEDIAN_SPEND_PER_CUSTOMER": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-3kf", "LOCATION_NAME": "Sheraton Hotels & Resorts", "TOP_CATEGORY": "Traveler Accommodation", "LATITUDE": 39.957083, "LONGITUDE": -75.167351, "DATE_RANGE_START": 2024, "Total Visits": 2064.0, "Total Visitors": 1251.0, "POI_CBG": 421010003001.0, "MEDIAN_DWELL": 296.0, "Total Spend": 37.0, "Total Transactions": 5.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.0, "MEDIAN_SPEND_PER_CUSTOMER": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167351, 39.957083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "LOCATION_NAME": "Varga Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2024, "Total Visits": 250.0, "Total Visitors": 197.0, "POI_CBG": 421010009022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5238.0, "Total Transactions": 100.0, "Total Customers": 82.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.82, "MEDIAN_SPEND_PER_CUSTOMER": 51.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "LOCATION_NAME": "Asia Express", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2024, "Total Visits": 169.0, "Total Visitors": 155.0, "POI_CBG": 421010310001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 383.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.89, "MEDIAN_SPEND_PER_CUSTOMER": 28.89 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 145.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 3663.0, "Total Transactions": 205.0, "Total Customers": 167.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.3, "MEDIAN_SPEND_PER_CUSTOMER": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2024, "Total Visits": 219.0, "Total Visitors": 219.0, "POI_CBG": 421010114006.0, "MEDIAN_DWELL": 10.0, "Total Spend": 2282.0, "Total Transactions": 136.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.22, "MEDIAN_SPEND_PER_CUSTOMER": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pgh-h3q", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.00873, "LONGITUDE": -75.176539, "DATE_RANGE_START": 2024, "Total Visits": 762.0, "Total Visitors": 353.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 71.0, "Total Spend": 10053.0, "Total Transactions": 600.0, "Total Customers": 421.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.17, "MEDIAN_SPEND_PER_CUSTOMER": 16.64 }, "geometry": { "type": "Point", "coordinates": [ -75.176539, 40.00873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-tvz", "LOCATION_NAME": "Esposito's Porchetta", "TOP_CATEGORY": "Special Food Services", "LATITUDE": 39.928698, "LONGITUDE": -75.16155, "DATE_RANGE_START": 2024, "Total Visits": 37.0, "Total Visitors": 28.0, "POI_CBG": 421010028023.0, "MEDIAN_DWELL": 321.0, "Total Spend": 456.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.0, "MEDIAN_SPEND_PER_CUSTOMER": 173.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16155, 39.928698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2024, "Total Visits": 488.0, "Total Visitors": 436.0, "POI_CBG": 421010347013.0, "MEDIAN_DWELL": 3.0, "Total Spend": 6525.0, "Total Transactions": 504.0, "Total Customers": 305.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.98, "MEDIAN_SPEND_PER_CUSTOMER": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-24z@628-pm9-td9", "LOCATION_NAME": "Jefferson Atrium Cafeteria", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950074, "LONGITUDE": -75.158524, "DATE_RANGE_START": 2024, "Total Visits": 10001.0, "Total Visitors": 4760.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 127.0, "Total Spend": 922.0, "Total Transactions": 230.0, "Total Customers": 86.0, "MEDIAN_SPEND_PER_TRANSACTION": 4.27, "MEDIAN_SPEND_PER_CUSTOMER": 6.38 }, "geometry": { "type": "Point", "coordinates": [ -75.158524, 39.950074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "LOCATION_NAME": "Time Out Sports Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 86.0, "POI_CBG": 421010205002.0, "MEDIAN_DWELL": 38.0, "Total Spend": 3293.0, "Total Transactions": 74.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.84, "MEDIAN_SPEND_PER_CUSTOMER": 55.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgy-kj9", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.062838, "LONGITUDE": -75.23752, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 249.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 296.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23752, 40.062838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "LOCATION_NAME": "Taco Bell", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95033, "LONGITUDE": -75.158429, "DATE_RANGE_START": 2024, "Total Visits": 1328.0, "Total Visitors": 966.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 15000.0, "Total Transactions": 895.0, "Total Customers": 586.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.79, "MEDIAN_SPEND_PER_CUSTOMER": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.158429, 39.95033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.948755, "LONGITUDE": -75.160687, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 17.0, "POI_CBG": 421010009011.0, "MEDIAN_DWELL": 2.0, "Total Spend": 13196.0, "Total Transactions": 941.0, "Total Customers": 615.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.61, "MEDIAN_SPEND_PER_CUSTOMER": 15.61 }, "geometry": { "type": "Point", "coordinates": [ -75.160687, 39.948755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pp5-jgk", "LOCATION_NAME": "Tin Can Bar", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.981701, "LONGITUDE": -75.113705, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 307.0, "POI_CBG": 421010180013.0, "MEDIAN_DWELL": 14.0, "Total Spend": 7990.0, "Total Transactions": 169.0, "Total Customers": 97.0, "MEDIAN_SPEND_PER_TRANSACTION": 42.27, "MEDIAN_SPEND_PER_CUSTOMER": 52.47 }, "geometry": { "type": "Point", "coordinates": [ -75.113705, 39.981701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "LOCATION_NAME": "Fiesta Pizza II", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2031.0, "Total Transactions": 83.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.52, "MEDIAN_SPEND_PER_CUSTOMER": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "LOCATION_NAME": "Overbrook Pizza Shop", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2024, "Total Visits": 115.0, "Total Visitors": 115.0, "POI_CBG": 421010375001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 4336.0, "Total Transactions": 169.0, "Total Customers": 117.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.93, "MEDIAN_SPEND_PER_CUSTOMER": 28.78 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "LOCATION_NAME": "Xiandu Thai", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2024, "Total Visits": 2542.0, "Total Visitors": 1748.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4536.0, "Total Transactions": 93.0, "Total Customers": 74.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.78, "MEDIAN_SPEND_PER_CUSTOMER": 57.52 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "LOCATION_NAME": "Barcade", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96746, "LONGITUDE": -75.134594, "DATE_RANGE_START": 2024, "Total Visits": 615.0, "Total Visitors": 490.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 32.0, "Total Spend": 940.0, "Total Transactions": 30.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.8, "MEDIAN_SPEND_PER_CUSTOMER": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134594, 39.96746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "LOCATION_NAME": "Wendy's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2024, "Total Visits": 1080.0, "Total Visitors": 528.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 97.0, "Total Spend": 50.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.12, "MEDIAN_SPEND_PER_CUSTOMER": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pjf-kvf", "LOCATION_NAME": "Hideaway Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.076825, "LONGITUDE": -75.208128, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 115.0, "POI_CBG": 421010385002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1999.0, "Total Transactions": 42.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 32.39, "MEDIAN_SPEND_PER_CUSTOMER": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.208128, 40.076825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "LOCATION_NAME": "Museum Deli", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2024, "Total Visits": 154.0, "Total Visitors": 109.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3185.0, "Total Transactions": 203.0, "Total Customers": 138.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.83, "MEDIAN_SPEND_PER_CUSTOMER": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2024, "Total Visits": 433.0, "Total Visitors": 379.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 756.0, "Total Transactions": 33.0, "Total Customers": 28.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.15, "MEDIAN_SPEND_PER_CUSTOMER": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-6p9", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950048, "LONGITUDE": -75.193086, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 21.0, "POI_CBG": 421010369002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 4986.0, "Total Transactions": 632.0, "Total Customers": 254.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.6, "MEDIAN_SPEND_PER_CUSTOMER": 12.58 }, "geometry": { "type": "Point", "coordinates": [ -75.193086, 39.950048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "LOCATION_NAME": "Beauty Point", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.980056, "LONGITUDE": -75.235035, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010113001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2282.0, "Total Transactions": 76.0, "Total Customers": 66.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.16, "MEDIAN_SPEND_PER_CUSTOMER": 30.21 }, "geometry": { "type": "Point", "coordinates": [ -75.235035, 39.980056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "LOCATION_NAME": "Philadelphia Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991178, "LONGITUDE": -75.130621, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010176013.0, "MEDIAN_DWELL": 41.0, "Total Spend": 82.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.85, "MEDIAN_SPEND_PER_CUSTOMER": 5.85 }, "geometry": { "type": "Point", "coordinates": [ -75.130621, 39.991178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "LOCATION_NAME": "Spice Finch", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2024, "Total Visits": 1274.0, "Total Visitors": 898.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 173.0, "Total Spend": 6455.0, "Total Transactions": 67.0, "Total Customers": 59.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.98, "MEDIAN_SPEND_PER_CUSTOMER": 78.01 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-rc5", "LOCATION_NAME": "Wolf Street Pizza & Pasta House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923579, "LONGITUDE": -75.182546, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 103.0, "POI_CBG": 421010037022.0, "MEDIAN_DWELL": 5.0, "Total Spend": 800.0, "Total Transactions": 28.0, "Total Customers": 25.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.15, "MEDIAN_SPEND_PER_CUSTOMER": 26.15 }, "geometry": { "type": "Point", "coordinates": [ -75.182546, 39.923579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2024, "Total Visits": 958.0, "Total Visitors": 765.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10034.0, "Total Transactions": 768.0, "Total Customers": 413.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.64, "MEDIAN_SPEND_PER_CUSTOMER": 16.28 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "LOCATION_NAME": "The Flavor Spot", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": null, "Total Spend": 1208.0, "Total Transactions": 47.0, "Total Customers": 36.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.36, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.09959, "LONGITUDE": -75.024533, "DATE_RANGE_START": 2024, "Total Visits": 196.0, "Total Visitors": 142.0, "POI_CBG": 421010355003.0, "MEDIAN_DWELL": 10.0, "Total Spend": 1235.0, "Total Transactions": 137.0, "Total Customers": 95.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.5, "MEDIAN_SPEND_PER_CUSTOMER": 7.65 }, "geometry": { "type": "Point", "coordinates": [ -75.024533, 40.09959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2024, "Total Visits": 1630.0, "Total Visitors": 1201.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 78213.0, "Total Transactions": 4492.0, "Total Customers": 1655.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.18, "MEDIAN_SPEND_PER_CUSTOMER": 24.17 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-qpv", "LOCATION_NAME": "Sunrise Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009015, "LONGITUDE": -75.137692, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010198006.0, "MEDIAN_DWELL": null, "Total Spend": 760.0, "Total Transactions": 37.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.93, "MEDIAN_SPEND_PER_CUSTOMER": 34.01 }, "geometry": { "type": "Point", "coordinates": [ -75.137692, 40.009015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024675, "LONGITUDE": -75.147531, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 7.0, "POI_CBG": 421010283003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 2736.0, "Total Transactions": 362.0, "Total Customers": 196.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.55, "MEDIAN_SPEND_PER_CUSTOMER": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147531, 40.024675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yjv", "LOCATION_NAME": "Prince Tea House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955371, "LONGITUDE": -75.154071, "DATE_RANGE_START": 2024, "Total Visits": 303.0, "Total Visitors": 303.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2468.0, "Total Transactions": 57.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.43, "MEDIAN_SPEND_PER_CUSTOMER": 38.03 }, "geometry": { "type": "Point", "coordinates": [ -75.154071, 39.955371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "LOCATION_NAME": "Royal Farms", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2024, "Total Visits": 1160.0, "Total Visitors": 637.0, "POI_CBG": 421010380001.0, "MEDIAN_DWELL": 4.0, "Total Spend": 38462.0, "Total Transactions": 2037.0, "Total Customers": 895.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.69, "MEDIAN_SPEND_PER_CUSTOMER": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-qj9", "LOCATION_NAME": "Mack Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.966784, "LONGITUDE": -75.242585, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 184.0, "POI_CBG": 421010096005.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2345.0, "Total Transactions": 132.0, "Total Customers": 71.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.48, "MEDIAN_SPEND_PER_CUSTOMER": 25.22 }, "geometry": { "type": "Point", "coordinates": [ -75.242585, 39.966784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "LOCATION_NAME": "Five Below", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2024, "Total Visits": 910.0, "Total Visitors": 694.0, "POI_CBG": 421010382003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 12552.0, "Total Transactions": 536.0, "Total Customers": 477.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.23, "MEDIAN_SPEND_PER_CUSTOMER": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-j7q", "LOCATION_NAME": "Smokin Stogies N Stuff", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.951529, "LONGITUDE": -75.170525, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 230.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 990.0, "Total Transactions": 41.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.88, "MEDIAN_SPEND_PER_CUSTOMER": 34.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170525, 39.951529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "LOCATION_NAME": "Sprouts Farmers Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2024, "Total Visits": 866.0, "Total Visitors": 432.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 16.0, "Total Spend": 327261.0, "Total Transactions": 9085.0, "Total Customers": 4260.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.97, "MEDIAN_SPEND_PER_CUSTOMER": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-jgk", "LOCATION_NAME": "John's Roast Pork", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.92105, "LONGITUDE": -75.145001, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 190.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 6691.0, "Total Transactions": 229.0, "Total Customers": 217.0, "MEDIAN_SPEND_PER_TRANSACTION": 23.79, "MEDIAN_SPEND_PER_CUSTOMER": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.145001, 39.92105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "LOCATION_NAME": "M & M Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010180022.0, "MEDIAN_DWELL": 16.0, "Total Spend": 941.0, "Total Transactions": 47.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.5, "MEDIAN_SPEND_PER_CUSTOMER": 71.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "LOCATION_NAME": "Burger King", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2024, "Total Visits": 358.0, "Total Visitors": 321.0, "POI_CBG": 421010281003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 4498.0, "Total Transactions": 348.0, "Total Customers": 271.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.68, "MEDIAN_SPEND_PER_CUSTOMER": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-87q", "LOCATION_NAME": "Kabuki Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.953616, "LONGITUDE": -75.160916, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 234.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 952.0, "Total Transactions": 33.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.23, "MEDIAN_SPEND_PER_CUSTOMER": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160916, 39.953616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "LOCATION_NAME": "CLo", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010195022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.47, "MEDIAN_SPEND_PER_CUSTOMER": 25.47 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-p5f", "LOCATION_NAME": "Beaty American", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.978949, "LONGITUDE": -75.139763, "DATE_RANGE_START": 2024, "Total Visits": 219.0, "Total Visitors": 201.0, "POI_CBG": 421010156001.0, "MEDIAN_DWELL": 29.0, "Total Spend": 624.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 101.52, "MEDIAN_SPEND_PER_CUSTOMER": 237.06 }, "geometry": { "type": "Point", "coordinates": [ -75.139763, 39.978949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.060452, "LONGITUDE": -75.08143, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010338005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 116.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 44.05 }, "geometry": { "type": "Point", "coordinates": [ -75.08143, 40.060452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.019938, "LONGITUDE": -75.174444, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010243002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1488.0, "Total Transactions": 161.0, "Total Customers": 103.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.09, "MEDIAN_SPEND_PER_CUSTOMER": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.174444, 40.019938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2024, "Total Visits": 777.0, "Total Visitors": 607.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 5.0, "Total Spend": 8931.0, "Total Transactions": 965.0, "Total Customers": 661.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.79, "MEDIAN_SPEND_PER_CUSTOMER": 10.15 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "LOCATION_NAME": "Apple Retail Store", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2024, "Total Visits": 814.0, "Total Visitors": 673.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 103090.0, "Total Transactions": 463.0, "Total Customers": 403.0, "MEDIAN_SPEND_PER_TRANSACTION": 73.44, "MEDIAN_SPEND_PER_CUSTOMER": 85.32 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "LOCATION_NAME": "Talula's Garden", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2024, "Total Visits": 764.0, "Total Visitors": 558.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 9.0, "Total Spend": 38251.0, "Total Transactions": 864.0, "Total Customers": 556.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.01, "MEDIAN_SPEND_PER_CUSTOMER": 28.83 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "LOCATION_NAME": "Sam's Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.093002, "LONGITUDE": -74.958736, "DATE_RANGE_START": 2024, "Total Visits": 3938.0, "Total Visitors": 2291.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 18.0, "Total Spend": 271273.0, "Total Transactions": 4146.0, "Total Customers": 1812.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.03, "MEDIAN_SPEND_PER_CUSTOMER": 92.37 }, "geometry": { "type": "Point", "coordinates": [ -74.958736, 40.093002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "LOCATION_NAME": "Target", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2024, "Total Visits": 972.0, "Total Visitors": 721.0, "POI_CBG": 421010019003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 11175.0, "Total Transactions": 517.0, "Total Customers": 369.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.4, "MEDIAN_SPEND_PER_CUSTOMER": 24.97 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23b@63s-dw4-rzf", "LOCATION_NAME": "Bar Symon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.89519, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 21.0, "Total Spend": 246.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.39, "MEDIAN_SPEND_PER_CUSTOMER": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2024, "Total Visits": 248.0, "Total Visitors": 221.0, "POI_CBG": 421010356014.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2528.0, "Total Transactions": 22.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.91, "MEDIAN_SPEND_PER_CUSTOMER": 33.46 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.961412, "LONGITUDE": -75.144253, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 4944.0, "Total Transactions": 648.0, "Total Customers": 251.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.81, "MEDIAN_SPEND_PER_CUSTOMER": 8.18 }, "geometry": { "type": "Point", "coordinates": [ -75.144253, 39.961412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "LOCATION_NAME": "Palm Tree Gourmet", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.959117, "LONGITUDE": -75.162552, "DATE_RANGE_START": 2024, "Total Visits": 908.0, "Total Visitors": 554.0, "POI_CBG": 421010125001.0, "MEDIAN_DWELL": 36.0, "Total Spend": 14225.0, "Total Transactions": 1147.0, "Total Customers": 519.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.89, "MEDIAN_SPEND_PER_CUSTOMER": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.162552, 39.959117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "LOCATION_NAME": "Vic Sushi Bar", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2024, "Total Visits": 369.0, "Total Visitors": 319.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2859.0, "Total Transactions": 74.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.2, "MEDIAN_SPEND_PER_CUSTOMER": 40.26 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "LOCATION_NAME": "Speedway", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.005152, "LONGITUDE": -75.109029, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010191005.0, "MEDIAN_DWELL": 3.0, "Total Spend": 3636.0, "Total Transactions": 220.0, "Total Customers": 80.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.01, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109029, 40.005152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-f75", "LOCATION_NAME": "Taqueria Dos Hermanos", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.946087, "LONGITUDE": -75.156048, "DATE_RANGE_START": 2024, "Total Visits": 291.0, "Total Visitors": 192.0, "POI_CBG": 421010009021.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2171.0, "Total Transactions": 99.0, "Total Customers": 91.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.87, "MEDIAN_SPEND_PER_CUSTOMER": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.156048, 39.946087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "LOCATION_NAME": "Race Street Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 174.0, "POI_CBG": 421010001002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1718.0, "Total Transactions": 36.0, "Total Customers": 20.0, "MEDIAN_SPEND_PER_TRANSACTION": 39.07, "MEDIAN_SPEND_PER_CUSTOMER": 62.22 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "LOCATION_NAME": "Dim Sum House by Jane G's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2024, "Total Visits": 2010.0, "Total Visitors": 1676.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 9846.0, "Total Transactions": 165.0, "Total Customers": 143.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.26, "MEDIAN_SPEND_PER_CUSTOMER": 54.36 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-hh5", "LOCATION_NAME": "Mandarin Palace", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952035, "LONGITUDE": -75.171616, "DATE_RANGE_START": 2024, "Total Visits": 245.0, "Total Visitors": 225.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2676.0, "Total Transactions": 97.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.55, "MEDIAN_SPEND_PER_CUSTOMER": 31.05 }, "geometry": { "type": "Point", "coordinates": [ -75.171616, 39.952035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-224@628-pnw-k4v", "LOCATION_NAME": "Humpty's Dumplings", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.96876, "LONGITUDE": -75.136611, "DATE_RANGE_START": 2024, "Total Visits": 484.0, "Total Visitors": 315.0, "POI_CBG": 421010142002.0, "MEDIAN_DWELL": 26.0, "Total Spend": 710.0, "Total Transactions": 42.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.22, "MEDIAN_SPEND_PER_CUSTOMER": 14.22 }, "geometry": { "type": "Point", "coordinates": [ -75.136611, 39.96876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pm9-tqf", "LOCATION_NAME": "Wetzel's Pretzels", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952391, "LONGITUDE": -75.157424, "DATE_RANGE_START": 2024, "Total Visits": 694.0, "Total Visitors": 486.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2850.0, "Total Transactions": 291.0, "Total Customers": 246.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.09, "MEDIAN_SPEND_PER_CUSTOMER": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157424, 39.952391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pgj-x3q", "LOCATION_NAME": "Broad and Lehigh", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.993627, "LONGITUDE": -75.154337, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 132.0, "POI_CBG": 421010166001.0, "MEDIAN_DWELL": 91.0, "Total Spend": 55.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154337, 39.993627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pgb-54v", "LOCATION_NAME": "Night Market Callowhill", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.959051, "LONGITUDE": -75.158731, "DATE_RANGE_START": 2024, "Total Visits": 710.0, "Total Visitors": 417.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 114.0, "Total Spend": 40.0, "Total Transactions": 25.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 1.0, "MEDIAN_SPEND_PER_CUSTOMER": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158731, 39.959051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.01665, "LONGITUDE": -75.149977, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 186.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 4.0, "Total Spend": 178.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.7, "MEDIAN_SPEND_PER_CUSTOMER": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149977, 40.01665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnw-nt9", "LOCATION_NAME": "Fishtown Tavern", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.970532, "LONGITUDE": -75.134266, "DATE_RANGE_START": 2024, "Total Visits": 250.0, "Total Visitors": 240.0, "POI_CBG": 421010158004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 13023.0, "Total Transactions": 494.0, "Total Customers": 283.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.78, "MEDIAN_SPEND_PER_CUSTOMER": 25.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134266, 39.970532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "LOCATION_NAME": "Pho Cyclo Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2024, "Total Visits": 878.0, "Total Visitors": 467.0, "POI_CBG": 421010039011.0, "MEDIAN_DWELL": 91.0, "Total Spend": 889.0, "Total Transactions": 22.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.24, "MEDIAN_SPEND_PER_CUSTOMER": 48.99 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.084831, "LONGITUDE": -74.972304, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5477.0, "Total Transactions": 279.0, "Total Customers": 170.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.55, "MEDIAN_SPEND_PER_CUSTOMER": 20.18 }, "geometry": { "type": "Point", "coordinates": [ -74.972304, 40.084831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-zmk", "LOCATION_NAME": "The Good King Tavern", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.941737, "LONGITUDE": -75.15419, "DATE_RANGE_START": 2024, "Total Visits": 107.0, "Total Visitors": 93.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 12324.0, "Total Transactions": 161.0, "Total Customers": 125.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.71, "MEDIAN_SPEND_PER_CUSTOMER": 74.22 }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 39.941737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 196.0, "POI_CBG": 421010379003.0, "MEDIAN_DWELL": 11.0, "Total Spend": 4393.0, "Total Transactions": 233.0, "Total Customers": 188.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.68, "MEDIAN_SPEND_PER_CUSTOMER": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "LOCATION_NAME": "Davis Pharmacy", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2024, "Total Visits": 90.0, "Total Visitors": 90.0, "POI_CBG": 421010079002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1766.0, "Total Transactions": 66.0, "Total Customers": 49.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.98, "MEDIAN_SPEND_PER_CUSTOMER": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.081872, "LONGITUDE": -75.037836, "DATE_RANGE_START": 2024, "Total Visits": 288.0, "Total Visitors": 190.0, "POI_CBG": 421010345023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 501.0, "Total Transactions": 42.0, "Total Customers": 14.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.59, "MEDIAN_SPEND_PER_CUSTOMER": 5.79 }, "geometry": { "type": "Point", "coordinates": [ -75.037836, 40.081872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2024, "Total Visits": 1139.0, "Total Visitors": 861.0, "POI_CBG": 421010072006.0, "MEDIAN_DWELL": 3.0, "Total Spend": 2017.0, "Total Transactions": 111.0, "Total Customers": 96.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2024, "Total Visits": 696.0, "Total Visitors": 404.0, "POI_CBG": 421010163002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 599.0, "Total Transactions": 45.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgm-68v", "LOCATION_NAME": "Shan Chuan", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.009211, "LONGITUDE": -75.194127, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 121.0, "POI_CBG": 421010207004.0, "MEDIAN_DWELL": 18.0, "Total Spend": 386.0, "Total Transactions": 11.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.24, "MEDIAN_SPEND_PER_CUSTOMER": 33.81 }, "geometry": { "type": "Point", "coordinates": [ -75.194127, 40.009211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "LOCATION_NAME": "Ross Stores", "TOP_CATEGORY": "Department Stores", "LATITUDE": 39.992468, "LONGITUDE": -75.101245, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 14519.0, "Total Transactions": 283.0, "Total Customers": 244.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.79, "MEDIAN_SPEND_PER_CUSTOMER": 39.96 }, "geometry": { "type": "Point", "coordinates": [ -75.101245, 39.992468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007696, "LONGITUDE": -75.174522, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 9.0, "POI_CBG": 421010170002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 6464.0, "Total Transactions": 719.0, "Total Customers": 448.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.85, "MEDIAN_SPEND_PER_CUSTOMER": 9.96 }, "geometry": { "type": "Point", "coordinates": [ -75.174522, 40.007696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2024, "Total Visits": 907.0, "Total Visitors": 639.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 7.0, "Total Spend": 9436.0, "Total Transactions": 461.0, "Total Customers": 286.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.64, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2024, "Total Visits": 245.0, "Total Visitors": 219.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 747.0, "Total Transactions": 51.0, "Total Customers": 30.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.8, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-xyv", "LOCATION_NAME": "M S Mart", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.95623, "LONGITUDE": -75.155785, "DATE_RANGE_START": 2024, "Total Visits": 987.0, "Total Visitors": 778.0, "POI_CBG": 421010002001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 3847.0, "Total Transactions": 244.0, "Total Customers": 154.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.94, "MEDIAN_SPEND_PER_CUSTOMER": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.155785, 39.95623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-kcq", "LOCATION_NAME": "Holme Style Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.056893, "LONGITUDE": -75.027632, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 53.0, "POI_CBG": 421010347021.0, "MEDIAN_DWELL": 26.0, "Total Spend": 1107.0, "Total Transactions": 47.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.13, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027632, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "LOCATION_NAME": "LUKOIL", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2024, "Total Visits": 1456.0, "Total Visitors": 1123.0, "POI_CBG": 421010362031.0, "MEDIAN_DWELL": 3.0, "Total Spend": 825.0, "Total Transactions": 28.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 27.08, "MEDIAN_SPEND_PER_CUSTOMER": 26.07 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pm3-t5f", "LOCATION_NAME": "River Twice", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929748, "LONGITUDE": -75.163402, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 102.0, "Total Spend": 1176.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 342.44, "MEDIAN_SPEND_PER_CUSTOMER": 342.44 }, "geometry": { "type": "Point", "coordinates": [ -75.163402, 39.929748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "LOCATION_NAME": "Papa John's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044953, "LONGITUDE": -75.143968, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010278004.0, "MEDIAN_DWELL": 60.0, "Total Spend": 468.0, "Total Transactions": 24.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.54, "MEDIAN_SPEND_PER_CUSTOMER": 19.54 }, "geometry": { "type": "Point", "coordinates": [ -75.143968, 40.044953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-qvf", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 40.03237, "LONGITUDE": -75.101559, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 257.0, "POI_CBG": 421010390001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 1124.0, "Total Transactions": 22.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 50.0, "MEDIAN_SPEND_PER_CUSTOMER": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101559, 40.03237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pg4-pvz", "LOCATION_NAME": "Torres Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.049468, "LONGITUDE": -75.160392, "DATE_RANGE_START": 2024, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010249003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 253.0, "Total Transactions": 13.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.49, "MEDIAN_SPEND_PER_CUSTOMER": 15.49 }, "geometry": { "type": "Point", "coordinates": [ -75.160392, 40.049468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7v-ghq", "LOCATION_NAME": "New Olympia House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.050867, "LONGITUDE": -75.066941, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010310001.0, "MEDIAN_DWELL": 16.0, "Total Spend": 98.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.38, "MEDIAN_SPEND_PER_CUSTOMER": 37.38 }, "geometry": { "type": "Point", "coordinates": [ -75.066941, 40.050867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j7q", "LOCATION_NAME": "The Dandelion", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951011, "LONGITUDE": -75.170702, "DATE_RANGE_START": 2024, "Total Visits": 250.0, "Total Visitors": 246.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 27.0, "Total Spend": 305.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 115.81, "MEDIAN_SPEND_PER_CUSTOMER": 115.81 }, "geometry": { "type": "Point", "coordinates": [ -75.170702, 39.951011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5mk", "LOCATION_NAME": "Fogo de Chão", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950928, "LONGITUDE": -75.162963, "DATE_RANGE_START": 2024, "Total Visits": 10572.0, "Total Visitors": 6846.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 28496.0, "Total Transactions": 180.0, "Total Customers": 166.0, "MEDIAN_SPEND_PER_TRANSACTION": 145.0, "MEDIAN_SPEND_PER_CUSTOMER": 155.12 }, "geometry": { "type": "Point", "coordinates": [ -75.162963, 39.950928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "LOCATION_NAME": "Pho Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.041625, "LONGITUDE": -75.064814, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 130.0, "POI_CBG": 421010314013.0, "MEDIAN_DWELL": 2.0, "Total Spend": 3024.0, "Total Transactions": 70.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 41.54, "MEDIAN_SPEND_PER_CUSTOMER": 40.23 }, "geometry": { "type": "Point", "coordinates": [ -75.064814, 40.041625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "LOCATION_NAME": "Jetro Cash & Carry", "TOP_CATEGORY": "Grocery and Related Product Merchant Wholesalers", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2024, "Total Visits": 1834.0, "Total Visitors": 1349.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 40.0, "Total Spend": 345592.0, "Total Transactions": 635.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 349.67, "MEDIAN_SPEND_PER_CUSTOMER": 420.89 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-qj9", "LOCATION_NAME": "Erietronics", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 40.007758, "LONGITUDE": -75.141073, "DATE_RANGE_START": 2024, "Total Visits": 105.0, "Total Visitors": 100.0, "POI_CBG": 421010199002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 355.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 135.0, "MEDIAN_SPEND_PER_CUSTOMER": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141073, 40.007758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@63s-dvr-hyv", "LOCATION_NAME": "Woodland and Conveince", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.925089, "LONGITUDE": -75.23477, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 80.0, "POI_CBG": 421010063001.0, "MEDIAN_DWELL": 26.0, "Total Spend": 140.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.0, "MEDIAN_SPEND_PER_CUSTOMER": 53.25 }, "geometry": { "type": "Point", "coordinates": [ -75.23477, 39.925089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-xdv", "LOCATION_NAME": "Pho & Cafe Saigon", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952304, "LONGITUDE": -75.20911, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010087022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 122.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.17, "MEDIAN_SPEND_PER_CUSTOMER": 46.17 }, "geometry": { "type": "Point", "coordinates": [ -75.20911, 39.952304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "LOCATION_NAME": "The Vitamin Shoppe", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.951605, "LONGITUDE": -75.168872, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 486.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 79.96, "MEDIAN_SPEND_PER_CUSTOMER": 79.96 }, "geometry": { "type": "Point", "coordinates": [ -75.168872, 39.951605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgy-mzf", "LOCATION_NAME": "Doc's World of Beer", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 40.063477, "LONGITUDE": -75.238345, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 99.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 7725.0, "Total Transactions": 309.0, "Total Customers": 151.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.59, "MEDIAN_SPEND_PER_CUSTOMER": 34.02 }, "geometry": { "type": "Point", "coordinates": [ -75.238345, 40.063477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "LOCATION_NAME": "S & S Foods", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.924738, "LONGITUDE": -75.144356, "DATE_RANGE_START": 2024, "Total Visits": 337.0, "Total Visitors": 158.0, "POI_CBG": 421019807001.0, "MEDIAN_DWELL": 465.0, "Total Spend": 5154.0, "Total Transactions": 32.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 54.75, "MEDIAN_SPEND_PER_CUSTOMER": 93.27 }, "geometry": { "type": "Point", "coordinates": [ -75.144356, 39.924738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2024, "Total Visits": 666.0, "Total Visitors": 506.0, "POI_CBG": 421010341005.0, "MEDIAN_DWELL": 4.0, "Total Spend": 527.0, "Total Transactions": 37.0, "Total Customers": 26.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.26, "MEDIAN_SPEND_PER_CUSTOMER": 16.26 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2024, "Total Visits": 274.0, "Total Visitors": 138.0, "POI_CBG": 421010320003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1706.0, "Total Transactions": 70.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.35, "MEDIAN_SPEND_PER_CUSTOMER": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p86-gtv", "LOCATION_NAME": "All In Time", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.075731, "LONGITUDE": -75.085308, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 192.0, "POI_CBG": 421010341004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 189.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.2, "MEDIAN_SPEND_PER_CUSTOMER": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085308, 40.075731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2024, "Total Visits": 1147.0, "Total Visitors": 334.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 71.0, "Total Spend": 11758.0, "Total Transactions": 353.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 24.83, "MEDIAN_SPEND_PER_CUSTOMER": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-2zf", "LOCATION_NAME": "Vapor Funky Monkey", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.024206, "LONGITUDE": -75.220514, "DATE_RANGE_START": 2024, "Total Visits": 658.0, "Total Visitors": 462.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 9.0, "Total Spend": 409.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.02, "MEDIAN_SPEND_PER_CUSTOMER": 44.81 }, "geometry": { "type": "Point", "coordinates": [ -75.220514, 40.024206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-kvf", "LOCATION_NAME": "Bolo", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951589, "LONGITUDE": -75.174566, "DATE_RANGE_START": 2024, "Total Visits": 1330.0, "Total Visitors": 1065.0, "POI_CBG": 421010007001.0, "MEDIAN_DWELL": 31.0, "Total Spend": 511.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 66.72, "MEDIAN_SPEND_PER_CUSTOMER": 66.72 }, "geometry": { "type": "Point", "coordinates": [ -75.174566, 39.951589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "LOCATION_NAME": "King Wok's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010321001.0, "MEDIAN_DWELL": null, "Total Spend": 2337.0, "Total Transactions": 68.0, "Total Customers": 55.0, "MEDIAN_SPEND_PER_TRANSACTION": 33.65, "MEDIAN_SPEND_PER_CUSTOMER": 42.75 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2024, "Total Visits": 1036.0, "Total Visitors": 839.0, "POI_CBG": 421010098011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 10198.0, "Total Transactions": 920.0, "Total Customers": 586.0, "MEDIAN_SPEND_PER_TRANSACTION": 9.44, "MEDIAN_SPEND_PER_CUSTOMER": 12.21 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-223@628-pnx-2hq", "LOCATION_NAME": "CARQUEST Auto Parts", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.97016, "LONGITUDE": -75.143294, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 126.0, "POI_CBG": 421010144001.0, "MEDIAN_DWELL": 10.0, "Total Spend": 282.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 106.98, "MEDIAN_SPEND_PER_CUSTOMER": 106.98 }, "geometry": { "type": "Point", "coordinates": [ -75.143294, 39.97016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-975", "LOCATION_NAME": "DK Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952998, "LONGITUDE": -75.192279, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 649.0, "Total Transactions": 38.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.99, "MEDIAN_SPEND_PER_CUSTOMER": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.192279, 39.952998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmf-rx5", "LOCATION_NAME": "Indian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944053, "LONGITUDE": -75.169964, "DATE_RANGE_START": 2024, "Total Visits": 87.0, "Total Visitors": 58.0, "POI_CBG": 421010014003.0, "MEDIAN_DWELL": 15.0, "Total Spend": 964.0, "Total Transactions": 13.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.67, "MEDIAN_SPEND_PER_CUSTOMER": 76.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169964, 39.944053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "LOCATION_NAME": "Rival Bros Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2024, "Total Visits": 228.0, "Total Visitors": 190.0, "POI_CBG": 421010028024.0, "MEDIAN_DWELL": 9.0, "Total Spend": 5179.0, "Total Transactions": 542.0, "Total Customers": 350.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.25, "MEDIAN_SPEND_PER_CUSTOMER": 12.13 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "LOCATION_NAME": "Atomic City Comics", "TOP_CATEGORY": "Book Stores and News Dealers", "LATITUDE": 39.94191, "LONGITUDE": -75.153432, "DATE_RANGE_START": 2024, "Total Visits": 774.0, "Total Visitors": 669.0, "POI_CBG": 421010015001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 733.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.22, "MEDIAN_SPEND_PER_CUSTOMER": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.153432, 39.94191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dwf-bhq", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.912346, "LONGITUDE": -75.233779, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 250.0, "POI_CBG": 421010060001.0, "MEDIAN_DWELL": 8.0, "Total Spend": 524.0, "Total Transactions": 24.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.53, "MEDIAN_SPEND_PER_CUSTOMER": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.233779, 39.912346 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "LOCATION_NAME": "Ashley Stewart", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.037805, "LONGITUDE": -75.117799, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010273001.0, "MEDIAN_DWELL": 38.0, "Total Spend": 803.0, "Total Transactions": 12.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.94, "MEDIAN_SPEND_PER_CUSTOMER": 84.16 }, "geometry": { "type": "Point", "coordinates": [ -75.117799, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-btv", "LOCATION_NAME": "Tomorrow Gift", "TOP_CATEGORY": "Office Supplies, Stationery, and Gift Stores", "LATITUDE": 39.980373, "LONGITUDE": -75.17232, "DATE_RANGE_START": 2024, "Total Visits": 295.0, "Total Visitors": 188.0, "POI_CBG": 421010148001.0, "MEDIAN_DWELL": 59.0, "Total Spend": 253.0, "Total Transactions": 12.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.18, "MEDIAN_SPEND_PER_CUSTOMER": 48.64 }, "geometry": { "type": "Point", "coordinates": [ -75.17232, 39.980373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm3-wrk", "LOCATION_NAME": "El Paisano Supermarket 1", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.932161, "LONGITUDE": -75.160824, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 429.0, "POI_CBG": 421010029003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 740.0, "Total Transactions": 38.0, "Total Customers": 33.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.66, "MEDIAN_SPEND_PER_CUSTOMER": 24.77 }, "geometry": { "type": "Point", "coordinates": [ -75.160824, 39.932161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-hqz", "LOCATION_NAME": "Old Nelson Food Company", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.954526, "LONGITUDE": -75.17109, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 213.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 1.0, "Total Spend": 11332.0, "Total Transactions": 874.0, "Total Customers": 571.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.5, "MEDIAN_SPEND_PER_CUSTOMER": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.17109, 39.954526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwd-v9f", "LOCATION_NAME": "RevZilla", "TOP_CATEGORY": "Other Motor Vehicle Dealers", "LATITUDE": 39.900369, "LONGITUDE": -75.195065, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 147.0, "POI_CBG": 421010050001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 419.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 158.97, "MEDIAN_SPEND_PER_CUSTOMER": 158.97 }, "geometry": { "type": "Point", "coordinates": [ -75.195065, 39.900369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2024, "Total Visits": 519.0, "Total Visitors": 478.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 8623.0, "Total Transactions": 516.0, "Total Customers": 315.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.33, "MEDIAN_SPEND_PER_CUSTOMER": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "LOCATION_NAME": "Big Lots Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2024, "Total Visits": 756.0, "Total Visitors": 628.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 11.0, "Total Spend": 153.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 26.6, "MEDIAN_SPEND_PER_CUSTOMER": 26.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.967205, "LONGITUDE": -75.175753, "DATE_RANGE_START": 2024, "Total Visits": 430.0, "Total Visitors": 357.0, "POI_CBG": 421010134011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 397.0, "Total Transactions": 28.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.94, "MEDIAN_SPEND_PER_CUSTOMER": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.175753, 39.967205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.954266, "LONGITUDE": -75.225768, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010085003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 421.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225768, 39.954266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "LOCATION_NAME": "Doggie Style", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 190.0, "POI_CBG": 421010008041.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1181.0, "Total Transactions": 45.0, "Total Customers": 42.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.98, "MEDIAN_SPEND_PER_CUSTOMER": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-jjv", "LOCATION_NAME": "Pastrami & Things", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.952406, "LONGITUDE": -75.170418, "DATE_RANGE_START": 2024, "Total Visits": 255.0, "Total Visitors": 176.0, "POI_CBG": 421010004022.0, "MEDIAN_DWELL": 118.0, "Total Spend": 2204.0, "Total Transactions": 309.0, "Total Customers": 108.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.01, "MEDIAN_SPEND_PER_CUSTOMER": 10.71 }, "geometry": { "type": "Point", "coordinates": [ -75.170418, 39.952406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "LOCATION_NAME": "Off Broadway Shoe Warehouse", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2024, "Total Visits": 423.0, "Total Visitors": 415.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2896.0, "Total Transactions": 47.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 65.49, "MEDIAN_SPEND_PER_CUSTOMER": 61.24 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "LOCATION_NAME": "Luigi's Pizza Fresca", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2024, "Total Visits": 461.0, "Total Visitors": 320.0, "POI_CBG": 421010136011.0, "MEDIAN_DWELL": 19.0, "Total Spend": 834.0, "Total Transactions": 26.0, "Total Customers": 18.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.58, "MEDIAN_SPEND_PER_CUSTOMER": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "LOCATION_NAME": "Guzman Grocery", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 29.0, "POI_CBG": 421010177023.0, "MEDIAN_DWELL": 6.0, "Total Spend": 320.0, "Total Transactions": 34.0, "Total Customers": 24.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.5, "MEDIAN_SPEND_PER_CUSTOMER": 11.13 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j35", "LOCATION_NAME": "Her Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.950724, "LONGITUDE": -75.170177, "DATE_RANGE_START": 2024, "Total Visits": 415.0, "Total Visitors": 394.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1265.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 250.93, "MEDIAN_SPEND_PER_CUSTOMER": 250.93 }, "geometry": { "type": "Point", "coordinates": [ -75.170177, 39.950724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "LOCATION_NAME": "Revolution House", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 162.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 10213.0, "Total Transactions": 174.0, "Total Customers": 137.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.0, "MEDIAN_SPEND_PER_CUSTOMER": 59.34 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2024, "Total Visits": 1032.0, "Total Visitors": 732.0, "POI_CBG": 421010203002.0, "MEDIAN_DWELL": 7.0, "Total Spend": 1959.0, "Total Transactions": 86.0, "Total Customers": 62.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.27, "MEDIAN_SPEND_PER_CUSTOMER": 16.73 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "LOCATION_NAME": "CVS", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.041026, "LONGITUDE": -75.223821, "DATE_RANGE_START": 2024, "Total Visits": 641.0, "Total Visitors": 498.0, "POI_CBG": 421010217003.0, "MEDIAN_DWELL": 5.0, "Total Spend": 7981.0, "Total Transactions": 399.0, "Total Customers": 238.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 19.32 }, "geometry": { "type": "Point", "coordinates": [ -75.223821, 40.041026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.039125, "LONGITUDE": -75.107746, "DATE_RANGE_START": 2024, "Total Visits": 515.0, "Total Visitors": 258.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 228.0, "Total Spend": 5418.0, "Total Transactions": 286.0, "Total Customers": 230.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.11, "MEDIAN_SPEND_PER_CUSTOMER": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.107746, 40.039125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "LOCATION_NAME": "Fette Sau", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 191.0, "POI_CBG": 421010144002.0, "MEDIAN_DWELL": 17.0, "Total Spend": 8457.0, "Total Transactions": 213.0, "Total Customers": 162.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.41, "MEDIAN_SPEND_PER_CUSTOMER": 44.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pj6-k4v", "LOCATION_NAME": "Pelicana", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.044988, "LONGITUDE": -75.117527, "DATE_RANGE_START": 2024, "Total Visits": 4471.0, "Total Visitors": 2998.0, "POI_CBG": 421010272002.0, "MEDIAN_DWELL": 19.0, "Total Spend": 127.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.51, "MEDIAN_SPEND_PER_CUSTOMER": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.117527, 40.044988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@63s-dvw-s5z", "LOCATION_NAME": "Rodriguez Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.970341, "LONGITUDE": -75.233962, "DATE_RANGE_START": 2024, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010102001.0, "MEDIAN_DWELL": null, "Total Spend": 956.0, "Total Transactions": 88.0, "Total Customers": 65.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.74, "MEDIAN_SPEND_PER_CUSTOMER": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.233962, 39.970341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p82-4jv", "LOCATION_NAME": "Jc Mini Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.04695, "LONGITUDE": -75.097959, "DATE_RANGE_START": 2024, "Total Visits": 178.0, "Total Visitors": 138.0, "POI_CBG": 421010305011.0, "MEDIAN_DWELL": 9.0, "Total Spend": 65.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 6.13, "MEDIAN_SPEND_PER_CUSTOMER": 7.38 }, "geometry": { "type": "Point", "coordinates": [ -75.097959, 40.04695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tn5", "LOCATION_NAME": "Unclaimed Diamonds", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.949045, "LONGITUDE": -75.153751, "DATE_RANGE_START": 2024, "Total Visits": 309.0, "Total Visitors": 258.0, "POI_CBG": 421010006001.0, "MEDIAN_DWELL": 119.0, "Total Spend": 200.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 76.13, "MEDIAN_SPEND_PER_CUSTOMER": 76.13 }, "geometry": { "type": "Point", "coordinates": [ -75.153751, 39.949045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "LOCATION_NAME": "Famous Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 40.087684, "LONGITUDE": -74.961421, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 132.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 49.99, "MEDIAN_SPEND_PER_CUSTOMER": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961421, 40.087684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "LOCATION_NAME": "AutoZone", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 21.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 6073.0, "Total Transactions": 91.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 36.99, "MEDIAN_SPEND_PER_CUSTOMER": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "LOCATION_NAME": "Popeyes Louisiana Kitchen", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081017, "LONGITUDE": -75.170814, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010259001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 10667.0, "Total Transactions": 563.0, "Total Customers": 442.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.22, "MEDIAN_SPEND_PER_CUSTOMER": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.170814, 40.081017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.979092, "LONGITUDE": -75.159657, "DATE_RANGE_START": 2024, "Total Visits": 852.0, "Total Visitors": 621.0, "POI_CBG": 421010147002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1466.0, "Total Transactions": 97.0, "Total Customers": 70.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.34, "MEDIAN_SPEND_PER_CUSTOMER": 7.79 }, "geometry": { "type": "Point", "coordinates": [ -75.159657, 39.979092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-tqf", "LOCATION_NAME": "Gulf Oil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.961991, "LONGITUDE": -75.156364, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 183.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 246.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 69.12, "MEDIAN_SPEND_PER_CUSTOMER": 69.12 }, "geometry": { "type": "Point", "coordinates": [ -75.156364, 39.961991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7h5", "LOCATION_NAME": "Dollar Tree", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.088705, "LONGITUDE": -74.967825, "DATE_RANGE_START": 2024, "Total Visits": 424.0, "Total Visitors": 357.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 145.0, "Total Transactions": 11.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.28, "MEDIAN_SPEND_PER_CUSTOMER": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -74.967825, 40.088705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "LOCATION_NAME": "Aura", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.961228, "LONGITUDE": -75.138826, "DATE_RANGE_START": 2024, "Total Visits": 334.0, "Total Visitors": 241.0, "POI_CBG": 421010367001.0, "MEDIAN_DWELL": 82.0, "Total Spend": 103128.0, "Total Transactions": 1184.0, "Total Customers": 998.0, "MEDIAN_SPEND_PER_TRANSACTION": 64.51, "MEDIAN_SPEND_PER_CUSTOMER": 76.18 }, "geometry": { "type": "Point", "coordinates": [ -75.138826, 39.961228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phz-6c5", "LOCATION_NAME": "L & M Food Market", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.0235, "LONGITUDE": -75.115742, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010289023.0, "MEDIAN_DWELL": 5.0, "Total Spend": 165.0, "Total Transactions": 22.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 5.6, "MEDIAN_SPEND_PER_CUSTOMER": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115742, 40.0235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@63s-dw9-54v", "LOCATION_NAME": "Minute Suites", "TOP_CATEGORY": "Drinking Places (Alcoholic Beverages)", "LATITUDE": 39.877241, "LONGITUDE": -75.244122, "DATE_RANGE_START": 2024, "Total Visits": 823.0, "Total Visitors": 808.0, "POI_CBG": 421019804001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 112.0, "Total Transactions": 4.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.5 }, "geometry": { "type": "Point", "coordinates": [ -75.244122, 39.877241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-ysq", "LOCATION_NAME": "C & R Building Supply", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 39.93947, "LONGITUDE": -75.209529, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 158.0, "POI_CBG": 421019809001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 469.0, "Total Transactions": 9.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.62, "MEDIAN_SPEND_PER_CUSTOMER": 80.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209529, 39.93947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pm4-3kf", "LOCATION_NAME": "Miles Table", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.925054, "LONGITUDE": -75.160226, "DATE_RANGE_START": 2024, "Total Visits": 843.0, "Total Visitors": 656.0, "POI_CBG": 421010041014.0, "MEDIAN_DWELL": 73.0, "Total Spend": 3917.0, "Total Transactions": 230.0, "Total Customers": 147.0, "MEDIAN_SPEND_PER_TRANSACTION": 16.04, "MEDIAN_SPEND_PER_CUSTOMER": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.160226, 39.925054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p8t-5xq", "LOCATION_NAME": "Pho Nam Giang", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086078, "LONGITUDE": -74.964941, "DATE_RANGE_START": 2024, "Total Visits": 366.0, "Total Visitors": 303.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 17.0, "Total Spend": 2875.0, "Total Transactions": 71.0, "Total Customers": 67.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.78, "MEDIAN_SPEND_PER_CUSTOMER": 37.64 }, "geometry": { "type": "Point", "coordinates": [ -74.964941, 40.086078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "LOCATION_NAME": "Fat Tuesday", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2024, "Total Visits": 1519.0, "Total Visitors": 1418.0, "POI_CBG": 421010010021.0, "MEDIAN_DWELL": 15.0, "Total Spend": 9441.0, "Total Transactions": 369.0, "Total Customers": 296.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.5, "MEDIAN_SPEND_PER_CUSTOMER": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-7t9", "LOCATION_NAME": "Rybread", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967471, "LONGITUDE": -75.165645, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 17.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 3.0, "Total Spend": 8452.0, "Total Transactions": 561.0, "Total Customers": 317.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.5, "MEDIAN_SPEND_PER_CUSTOMER": 19.65 }, "geometry": { "type": "Point", "coordinates": [ -75.165645, 39.967471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm8-ffz", "LOCATION_NAME": "Phil's Battery Service", "TOP_CATEGORY": "Electronics and Appliance Stores", "LATITUDE": 39.924742, "LONGITUDE": -75.152309, "DATE_RANGE_START": 2024, "Total Visits": 334.0, "Total Visitors": 267.0, "POI_CBG": 421010027024.0, "MEDIAN_DWELL": 1.0, "Total Spend": 197.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152309, 39.924742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "LOCATION_NAME": "Chipotle Mexican Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 411.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 12478.0, "Total Transactions": 692.0, "Total Customers": 427.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.91, "MEDIAN_SPEND_PER_CUSTOMER": 20.98 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "LOCATION_NAME": "TGI Fridays", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2024, "Total Visits": 646.0, "Total Visitors": 467.0, "POI_CBG": 421010122031.0, "MEDIAN_DWELL": 49.0, "Total Spend": 17259.0, "Total Transactions": 305.0, "Total Customers": 241.0, "MEDIAN_SPEND_PER_TRANSACTION": 45.78, "MEDIAN_SPEND_PER_CUSTOMER": 55.29 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dw2-7yv", "LOCATION_NAME": "Pete's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958784, "LONGITUDE": -75.241349, "DATE_RANGE_START": 2024, "Total Visits": 408.0, "Total Visitors": 337.0, "POI_CBG": 421010083022.0, "MEDIAN_DWELL": 60.0, "Total Spend": 336.0, "Total Transactions": 24.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.23, "MEDIAN_SPEND_PER_CUSTOMER": 15.36 }, "geometry": { "type": "Point", "coordinates": [ -75.241349, 39.958784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-ghq", "LOCATION_NAME": "Buccann", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.051098, "LONGITUDE": -75.066611, "DATE_RANGE_START": 2024, "Total Visits": 197.0, "Total Visitors": 197.0, "POI_CBG": 421010310001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 741.0, "Total Transactions": 7.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 128.0, "MEDIAN_SPEND_PER_CUSTOMER": 128.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066611, 40.051098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "LOCATION_NAME": "Kaffa Crossing", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.956913, "LONGITUDE": -75.210358, "DATE_RANGE_START": 2024, "Total Visits": 440.0, "Total Visitors": 240.0, "POI_CBG": 421010087012.0, "MEDIAN_DWELL": 150.0, "Total Spend": 2087.0, "Total Transactions": 82.0, "Total Customers": 16.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.14, "MEDIAN_SPEND_PER_CUSTOMER": 34.44 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 39.956913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-ty9", "LOCATION_NAME": "La Famiglia Ristorante", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.949369, "LONGITUDE": -75.142406, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 2256.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 190.0, "MEDIAN_SPEND_PER_CUSTOMER": 190.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142406, 39.949369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22j@628-pmf-8vz", "LOCATION_NAME": "University Of Penn Food Court", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.95305, "LONGITUDE": -75.192581, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "MEDIAN_DWELL": 9.0, "Total Spend": 299.0, "Total Transactions": 5.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 58.61, "MEDIAN_SPEND_PER_CUSTOMER": 58.61 }, "geometry": { "type": "Point", "coordinates": [ -75.192581, 39.95305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "LOCATION_NAME": "KFC", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 211.0, "POI_CBG": 421010363011.0, "MEDIAN_DWELL": 4.0, "Total Spend": 3761.0, "Total Transactions": 215.0, "Total Customers": 179.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.89, "MEDIAN_SPEND_PER_CUSTOMER": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "LOCATION_NAME": "Bistro SouthEast", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2024, "Total Visits": 1098.0, "Total Visitors": 292.0, "POI_CBG": 421010014001.0, "MEDIAN_DWELL": 272.0, "Total Spend": 1353.0, "Total Transactions": 63.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.28, "MEDIAN_SPEND_PER_CUSTOMER": 26.14 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-sbk", "LOCATION_NAME": "Coffee House Too", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.97675, "LONGITUDE": -75.123708, "DATE_RANGE_START": 2024, "Total Visits": 196.0, "Total Visitors": 196.0, "POI_CBG": 421010160006.0, "MEDIAN_DWELL": 6.0, "Total Spend": 1015.0, "Total Transactions": 43.0, "Total Customers": 39.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.72, "MEDIAN_SPEND_PER_CUSTOMER": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.123708, 39.97675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "LOCATION_NAME": "CosmoProf", "TOP_CATEGORY": "Machinery, Equipment, and Supplies Merchant Wholesalers", "LATITUDE": 39.932573, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010366001.0, "MEDIAN_DWELL": 6.0, "Total Spend": 435.0, "Total Transactions": 8.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 38.61, "MEDIAN_SPEND_PER_CUSTOMER": 46.87 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "LOCATION_NAME": "Nordstrom Rack", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 39.951362, "LONGITUDE": -75.169014, "DATE_RANGE_START": 2024, "Total Visits": 33.0, "Total Visitors": 30.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 53748.0, "Total Transactions": 823.0, "Total Customers": 704.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.5, "MEDIAN_SPEND_PER_CUSTOMER": 53.97 }, "geometry": { "type": "Point", "coordinates": [ -75.169014, 39.951362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-6p9", "LOCATION_NAME": "Samsun Footwear", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.95084, "LONGITUDE": -75.166508, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 9.0, "Total Spend": 481.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 110.0, "MEDIAN_SPEND_PER_CUSTOMER": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166508, 39.95084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "LOCATION_NAME": "Engimono Sushi", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 341.0, "POI_CBG": 421010135004.0, "MEDIAN_DWELL": 14.0, "Total Spend": 1132.0, "Total Transactions": 24.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 47.4, "MEDIAN_SPEND_PER_CUSTOMER": 45.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvy-89z", "LOCATION_NAME": "Common Beat Music", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.947856, "LONGITUDE": -75.222011, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 90.0, "POI_CBG": 421010078003.0, "MEDIAN_DWELL": 14.0, "Total Spend": 3077.0, "Total Transactions": 53.0, "Total Customers": 38.0, "MEDIAN_SPEND_PER_TRANSACTION": 34.02, "MEDIAN_SPEND_PER_CUSTOMER": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222011, 39.947856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmf-dd9", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.939546, "LONGITUDE": -75.191189, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 11.0, "POI_CBG": 421010033002.0, "MEDIAN_DWELL": 5.0, "Total Spend": 21631.0, "Total Transactions": 1646.0, "Total Customers": 982.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.15, "MEDIAN_SPEND_PER_CUSTOMER": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.191189, 39.939546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7b-vmk", "LOCATION_NAME": "Out of Wack Jacks Bar & Grill", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.057001, "LONGITUDE": -75.014587, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 428.0, "POI_CBG": 421010348012.0, "MEDIAN_DWELL": 24.0, "Total Spend": 2079.0, "Total Transactions": 38.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.72, "MEDIAN_SPEND_PER_CUSTOMER": 43.72 }, "geometry": { "type": "Point", "coordinates": [ -75.014587, 40.057001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "LOCATION_NAME": "Petco", "TOP_CATEGORY": "Other Miscellaneous Store Retailers", "LATITUDE": 40.08158, "LONGITUDE": -75.02629, "DATE_RANGE_START": 2024, "Total Visits": 552.0, "Total Visitors": 352.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 23.0, "Total Spend": 9757.0, "Total Transactions": 224.0, "Total Customers": 172.0, "MEDIAN_SPEND_PER_TRANSACTION": 35.0, "MEDIAN_SPEND_PER_CUSTOMER": 42.01 }, "geometry": { "type": "Point", "coordinates": [ -75.02629, 40.08158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "LOCATION_NAME": "Dunkin'", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.035455, "LONGITUDE": -75.216949, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 151.0, "POI_CBG": 421010212001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 5225.0, "Total Transactions": 596.0, "Total Customers": 270.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.42, "MEDIAN_SPEND_PER_CUSTOMER": 9.69 }, "geometry": { "type": "Point", "coordinates": [ -75.216949, 40.035455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "LOCATION_NAME": "Chick-fil-A", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2024, "Total Visits": 1656.0, "Total Visitors": 1294.0, "POI_CBG": 421019803001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 7770.0, "Total Transactions": 446.0, "Total Customers": 330.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.8, "MEDIAN_SPEND_PER_CUSTOMER": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pfz-ch5", "LOCATION_NAME": "Pilgrim Roasters", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.022764, "LONGITUDE": -75.219439, "DATE_RANGE_START": 2024, "Total Visits": 253.0, "Total Visitors": 241.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 7.0, "Total Spend": 2871.0, "Total Transactions": 258.0, "Total Customers": 157.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.38, "MEDIAN_SPEND_PER_CUSTOMER": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219439, 40.022764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "LOCATION_NAME": "Elixr Coffee", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2024, "Total Visits": 307.0, "Total Visitors": 166.0, "POI_CBG": 421010376002.0, "MEDIAN_DWELL": 18.0, "Total Spend": 10640.0, "Total Transactions": 1211.0, "Total Customers": 770.0, "MEDIAN_SPEND_PER_TRANSACTION": 7.17, "MEDIAN_SPEND_PER_CUSTOMER": 8.67 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pgy-ks5", "LOCATION_NAME": "T.J. Maxx", "TOP_CATEGORY": "Department Stores", "LATITUDE": 40.064304, "LONGITUDE": -75.236768, "DATE_RANGE_START": 2024, "Total Visits": 571.0, "Total Visitors": 241.0, "POI_CBG": 421010384002.0, "MEDIAN_DWELL": 37.0, "Total Spend": 13274.0, "Total Transactions": 316.0, "Total Customers": 249.0, "MEDIAN_SPEND_PER_TRANSACTION": 29.99, "MEDIAN_SPEND_PER_CUSTOMER": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.236768, 40.064304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "LOCATION_NAME": "Pep Boys", "TOP_CATEGORY": "Automotive Parts, Accessories, and Tire Stores", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2024, "Total Visits": 213.0, "Total Visitors": 163.0, "POI_CBG": 421010023002.0, "MEDIAN_DWELL": 143.0, "Total Spend": 2026.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 87.0, "MEDIAN_SPEND_PER_CUSTOMER": 87.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "LOCATION_NAME": "Hong Kong Supermarket", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2024, "Total Visits": 641.0, "Total Visitors": 473.0, "POI_CBG": 421010291001.0, "MEDIAN_DWELL": 13.0, "Total Spend": 3622.0, "Total Transactions": 57.0, "Total Customers": 43.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.0, "MEDIAN_SPEND_PER_CUSTOMER": 54.23 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-ks5", "LOCATION_NAME": "Ribs R' Us", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.026224, "LONGITUDE": -75.133, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010285001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1037.0, "Total Transactions": 21.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 46.97, "MEDIAN_SPEND_PER_CUSTOMER": 48.58 }, "geometry": { "type": "Point", "coordinates": [ -75.133, 40.026224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "LOCATION_NAME": "Walgreens", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2024, "Total Visits": 588.0, "Total Visitors": 478.0, "POI_CBG": 421010096001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1993.0, "Total Transactions": 115.0, "Total Customers": 78.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.3, "MEDIAN_SPEND_PER_CUSTOMER": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "LOCATION_NAME": "University City Beverage", "TOP_CATEGORY": "Beer, Wine, and Liquor Stores", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 153.0, "POI_CBG": 421010087013.0, "MEDIAN_DWELL": 1.0, "Total Spend": 77.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.5, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "LOCATION_NAME": "Subway", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.992302, "LONGITUDE": -75.09981, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010382002.0, "MEDIAN_DWELL": 11.0, "Total Spend": 39778.0, "Total Transactions": 2370.0, "Total Customers": 1922.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.09981, 39.992302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm4-s5z", "LOCATION_NAME": "The Pizza Place", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.927861, "LONGITUDE": -75.157274, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 112.0, "POI_CBG": 421010028011.0, "MEDIAN_DWELL": 3.0, "Total Spend": 185.0, "Total Transactions": 12.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.75, "MEDIAN_SPEND_PER_CUSTOMER": 9.92 }, "geometry": { "type": "Point", "coordinates": [ -75.157274, 39.927861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "LOCATION_NAME": "Tacodelphia", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 170.0, "POI_CBG": 421010011011.0, "MEDIAN_DWELL": 1.0, "Total Spend": 2570.0, "Total Transactions": 180.0, "Total Customers": 128.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.0, "MEDIAN_SPEND_PER_CUSTOMER": 16.01 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "LOCATION_NAME": "McDonald's", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2024, "Total Visits": 390.0, "Total Visitors": 374.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 2.0, "Total Spend": 13550.0, "Total Transactions": 949.0, "Total Customers": 579.0, "MEDIAN_SPEND_PER_TRANSACTION": 11.74, "MEDIAN_SPEND_PER_CUSTOMER": 14.54 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "LOCATION_NAME": "Sally Beauty Supply", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 39.912755, "LONGITUDE": -75.154842, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010372004.0, "MEDIAN_DWELL": 5.0, "Total Spend": 1918.0, "Total Transactions": 90.0, "Total Customers": 72.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.34, "MEDIAN_SPEND_PER_CUSTOMER": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.154842, 39.912755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pg8-kmk", "LOCATION_NAME": "Green Eggs Cafe", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.974211, "LONGITUDE": -75.182048, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 142.0, "POI_CBG": 421010137004.0, "MEDIAN_DWELL": 33.0, "Total Spend": 859.0, "Total Transactions": 9.0, "Total Customers": 9.0, "MEDIAN_SPEND_PER_TRANSACTION": 81.75, "MEDIAN_SPEND_PER_CUSTOMER": 81.75 }, "geometry": { "type": "Point", "coordinates": [ -75.182048, 39.974211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "LOCATION_NAME": "Cold Stone Creamery", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.978055, "LONGITUDE": -75.11947, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010160003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 5734.0, "Total Transactions": 288.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.06, "MEDIAN_SPEND_PER_CUSTOMER": 19.27 }, "geometry": { "type": "Point", "coordinates": [ -75.11947, 39.978055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012036, "LONGITUDE": -75.088981, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 12.0, "Total Spend": 108.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.06, "MEDIAN_SPEND_PER_CUSTOMER": 30.03 }, "geometry": { "type": "Point", "coordinates": [ -75.088981, 40.012036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "LOCATION_NAME": "Garden's Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 92.0, "POI_CBG": 421010139003.0, "MEDIAN_DWELL": 2.0, "Total Spend": 106.0, "Total Transactions": 8.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.35, "MEDIAN_SPEND_PER_CUSTOMER": 15.72 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfy-zfz", "LOCATION_NAME": "The Rook Manayunk", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.021721, "LONGITUDE": -75.215726, "DATE_RANGE_START": 2024, "Total Visits": 349.0, "Total Visitors": 316.0, "POI_CBG": 421010210004.0, "MEDIAN_DWELL": 24.0, "Total Spend": 16258.0, "Total Transactions": 245.0, "Total Customers": 207.0, "MEDIAN_SPEND_PER_TRANSACTION": 48.01, "MEDIAN_SPEND_PER_CUSTOMER": 57.76 }, "geometry": { "type": "Point", "coordinates": [ -75.215726, 40.021721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-tjv", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.106695, "LONGITUDE": -75.000071, "DATE_RANGE_START": 2024, "Total Visits": 2640.0, "Total Visitors": 2260.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 3.0, "Total Spend": 59046.0, "Total Transactions": 3315.0, "Total Customers": 1596.0, "MEDIAN_SPEND_PER_TRANSACTION": 10.85, "MEDIAN_SPEND_PER_CUSTOMER": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.000071, 40.106695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.966704, "LONGITUDE": -75.232937, "DATE_RANGE_START": 2024, "Total Visits": 1887.0, "Total Visitors": 856.0, "POI_CBG": 421010102002.0, "MEDIAN_DWELL": 40.0, "Total Spend": 705.0, "Total Transactions": 25.0, "Total Customers": 13.0, "MEDIAN_SPEND_PER_TRANSACTION": 28.08, "MEDIAN_SPEND_PER_CUSTOMER": 44.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232937, 39.966704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "LOCATION_NAME": "Stargazy", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 49.0, "POI_CBG": 421010029001.0, "MEDIAN_DWELL": 202.0, "Total Spend": 720.0, "Total Transactions": 32.0, "Total Customers": 22.0, "MEDIAN_SPEND_PER_TRANSACTION": 17.24, "MEDIAN_SPEND_PER_CUSTOMER": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "LOCATION_NAME": "DiNapoli Pizza", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 151.0, "POI_CBG": 421010176021.0, "MEDIAN_DWELL": 95.0, "Total Spend": 1302.0, "Total Transactions": 49.0, "Total Customers": 34.0, "MEDIAN_SPEND_PER_TRANSACTION": 25.08, "MEDIAN_SPEND_PER_CUSTOMER": 29.89 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.026568, "LONGITUDE": -75.209601, "DATE_RANGE_START": 2024, "Total Visits": 236.0, "Total Visitors": 133.0, "POI_CBG": 421010210003.0, "MEDIAN_DWELL": 50.0, "Total Spend": 155.0, "Total Transactions": 7.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 31.51, "MEDIAN_SPEND_PER_CUSTOMER": 31.55 }, "geometry": { "type": "Point", "coordinates": [ -75.209601, 40.026568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p83-xdv", "LOCATION_NAME": "Mayura Indian Restaurant", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.086185, "LONGITUDE": -75.045124, "DATE_RANGE_START": 2024, "Total Visits": 1892.0, "Total Visitors": 902.0, "POI_CBG": 421010344001.0, "MEDIAN_DWELL": 28.0, "Total Spend": 1102.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 418.61, "MEDIAN_SPEND_PER_CUSTOMER": 418.61 }, "geometry": { "type": "Point", "coordinates": [ -75.045124, 40.086185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-zs5", "LOCATION_NAME": "Lady Love", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 39.941785, "LONGITUDE": -75.151232, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 180.0, "POI_CBG": 421010016001.0, "MEDIAN_DWELL": 1.0, "Total Spend": 449.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 37.79, "MEDIAN_SPEND_PER_CUSTOMER": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.151232, 39.941785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "LOCATION_NAME": "Nike Factory Store", "TOP_CATEGORY": "Shoe Stores", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2024, "Total Visits": 652.0, "Total Visitors": 577.0, "POI_CBG": 421010005001.0, "MEDIAN_DWELL": 7.0, "Total Spend": 28687.0, "Total Transactions": 391.0, "Total Customers": 353.0, "MEDIAN_SPEND_PER_TRANSACTION": 57.99, "MEDIAN_SPEND_PER_CUSTOMER": 59.98 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "LOCATION_NAME": "Boston Market", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 111.0, "POI_CBG": 421010088022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 743.0, "Total Transactions": 33.0, "Total Customers": 29.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.57, "MEDIAN_SPEND_PER_CUSTOMER": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "LOCATION_NAME": "GameStop", "TOP_CATEGORY": "Sporting Goods, Hobby, and Musical Instrument Stores", "LATITUDE": 39.917828, "LONGITUDE": -75.186813, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 1.0, "Total Spend": 1440.0, "Total Transactions": 9.0, "Total Customers": 7.0, "MEDIAN_SPEND_PER_TRANSACTION": 19.48, "MEDIAN_SPEND_PER_CUSTOMER": 81.37 }, "geometry": { "type": "Point", "coordinates": [ -75.186813, 39.917828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-p8d-kxq", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.012669, "LONGITUDE": -75.088277, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010293002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 290.0, "Total Transactions": 14.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 13.15, "MEDIAN_SPEND_PER_CUSTOMER": 10.17 }, "geometry": { "type": "Point", "coordinates": [ -75.088277, 40.012669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "LOCATION_NAME": "US Gas", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2024, "Total Visits": 317.0, "Total Visitors": 174.0, "POI_CBG": 421010161002.0, "MEDIAN_DWELL": 2.0, "Total Spend": 2272.0, "Total Transactions": 86.0, "Total Customers": 54.0, "MEDIAN_SPEND_PER_TRANSACTION": 20.0, "MEDIAN_SPEND_PER_CUSTOMER": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "LOCATION_NAME": "Tandy Leather Factory", "TOP_CATEGORY": "Jewelry, Luggage, and Leather Goods Stores", "LATITUDE": 40.102565, "LONGITUDE": -75.008773, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 174.0, "POI_CBG": 421010360001.0, "MEDIAN_DWELL": 12.0, "Total Spend": 1016.0, "Total Transactions": 8.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 52.56, "MEDIAN_SPEND_PER_CUSTOMER": 52.56 }, "geometry": { "type": "Point", "coordinates": [ -75.008773, 40.102565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "LOCATION_NAME": "Cleavers", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 39.951401, "LONGITUDE": -75.170622, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010007002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 6362.0, "Total Transactions": 249.0, "Total Customers": 220.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.49, "MEDIAN_SPEND_PER_CUSTOMER": 23.59 }, "geometry": { "type": "Point", "coordinates": [ -75.170622, 39.951401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "LOCATION_NAME": "Stanley's Hardware", "TOP_CATEGORY": "Building Material and Supplies Dealers", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2024, "Total Visits": 228.0, "Total Visitors": 141.0, "POI_CBG": 421010211002.0, "MEDIAN_DWELL": 6.0, "Total Spend": 11156.0, "Total Transactions": 282.0, "Total Customers": 180.0, "MEDIAN_SPEND_PER_TRANSACTION": 22.92, "MEDIAN_SPEND_PER_CUSTOMER": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "LOCATION_NAME": "Dollar General", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.035406, "LONGITUDE": -75.064931, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010317004.0, "MEDIAN_DWELL": 18.0, "Total Spend": 497.0, "Total Transactions": 28.0, "Total Customers": 21.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.85, "MEDIAN_SPEND_PER_CUSTOMER": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.064931, 40.035406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "LOCATION_NAME": "Carter's", "TOP_CATEGORY": "Clothing Stores", "LATITUDE": 40.07594, "LONGITUDE": -75.031523, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010346001.0, "MEDIAN_DWELL": 11.0, "Total Spend": 1688.0, "Total Transactions": 32.0, "Total Customers": 32.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.7, "MEDIAN_SPEND_PER_CUSTOMER": 40.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031523, 40.07594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-8n5", "LOCATION_NAME": "ALDI", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.959397, "LONGITUDE": -75.213118, "DATE_RANGE_START": 2024, "Total Visits": 587.0, "Total Visitors": 411.0, "POI_CBG": 421010092001.0, "MEDIAN_DWELL": 9.0, "Total Spend": 440.0, "Total Transactions": 4.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 105.0, "MEDIAN_SPEND_PER_CUSTOMER": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213118, 39.959397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-phn-qmk", "LOCATION_NAME": "7-Eleven", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.069208, "LONGITUDE": -75.181115, "DATE_RANGE_START": 2024, "Total Visits": 582.0, "Total Visitors": 433.0, "POI_CBG": 421010261002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 199.0, "Total Transactions": 5.0, "Total Customers": 4.0, "MEDIAN_SPEND_PER_TRANSACTION": 43.5, "MEDIAN_SPEND_PER_CUSTOMER": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181115, 40.069208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dw2-2x5", "LOCATION_NAME": "Exxon Mobil", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 39.967078, "LONGITUDE": -75.246264, "DATE_RANGE_START": 2024, "Total Visits": 1327.0, "Total Visitors": 832.0, "POI_CBG": 421010096005.0, "MEDIAN_DWELL": 5.0, "Total Spend": 399.0, "Total Transactions": 39.0, "Total Customers": 12.0, "MEDIAN_SPEND_PER_TRANSACTION": 3.25, "MEDIAN_SPEND_PER_CUSTOMER": 40.68 }, "geometry": { "type": "Point", "coordinates": [ -75.246264, 39.967078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "LOCATION_NAME": "Grossman Furniture", "TOP_CATEGORY": "Furniture Stores", "LATITUDE": 39.951777, "LONGITUDE": -75.14359, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 155.0, "POI_CBG": 421010001001.0, "MEDIAN_DWELL": 2.0, "Total Spend": 5468.0, "Total Transactions": 3.0, "Total Customers": 3.0, "MEDIAN_SPEND_PER_TRANSACTION": 2076.54, "MEDIAN_SPEND_PER_CUSTOMER": 2076.54 }, "geometry": { "type": "Point", "coordinates": [ -75.14359, 39.951777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-p85-6kz", "LOCATION_NAME": "IGA", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 40.068401, "LONGITUDE": -75.051737, "DATE_RANGE_START": 2024, "Total Visits": 1871.0, "Total Visitors": 1193.0, "POI_CBG": 421010337012.0, "MEDIAN_DWELL": 8.0, "Total Spend": 245.0, "Total Transactions": 11.0, "Total Customers": 11.0, "MEDIAN_SPEND_PER_TRANSACTION": 21.28, "MEDIAN_SPEND_PER_CUSTOMER": 21.28 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.068401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "LOCATION_NAME": "Sunoco", "TOP_CATEGORY": "Gasoline Stations", "LATITUDE": 40.000821, "LONGITUDE": -75.226777, "DATE_RANGE_START": 2024, "Total Visits": 1045.0, "Total Visitors": 778.0, "POI_CBG": 421010121002.0, "MEDIAN_DWELL": 3.0, "Total Spend": 551.0, "Total Transactions": 9.0, "Total Customers": 8.0, "MEDIAN_SPEND_PER_TRANSACTION": 40.0, "MEDIAN_SPEND_PER_CUSTOMER": 46.25 }, "geometry": { "type": "Point", "coordinates": [ -75.226777, 40.000821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8j-bkz", "LOCATION_NAME": "Family Dollar Stores", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 40.037339, "LONGITUDE": -75.040377, "DATE_RANGE_START": 2024, "Total Visits": 380.0, "Total Visitors": 307.0, "POI_CBG": 421010331012.0, "MEDIAN_DWELL": 6.0, "Total Spend": 683.0, "Total Transactions": 12.0, "Total Customers": 5.0, "MEDIAN_SPEND_PER_TRANSACTION": 18.18, "MEDIAN_SPEND_PER_CUSTOMER": 130.99 }, "geometry": { "type": "Point", "coordinates": [ -75.040377, 40.037339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "LOCATION_NAME": "Wawa", "TOP_CATEGORY": "Grocery Stores", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2024, "Total Visits": 1859.0, "Total Visitors": 1372.0, "POI_CBG": 421010378001.0, "MEDIAN_DWELL": 5.0, "Total Spend": 118256.0, "Total Transactions": 5926.0, "Total Customers": 2795.0, "MEDIAN_SPEND_PER_TRANSACTION": 14.25, "MEDIAN_SPEND_PER_CUSTOMER": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-x89", "LOCATION_NAME": "Kim's Seafood", "TOP_CATEGORY": "Specialty Food Stores", "LATITUDE": 40.029599, "LONGITUDE": -75.146407, "DATE_RANGE_START": 2024, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010283007.0, "MEDIAN_DWELL": 3.0, "Total Spend": 372.0, "Total Transactions": 22.0, "Total Customers": 17.0, "MEDIAN_SPEND_PER_TRANSACTION": 15.0, "MEDIAN_SPEND_PER_CUSTOMER": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146407, 40.029599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "LOCATION_NAME": "Starbucks", "TOP_CATEGORY": "Restaurants and Other Eating Places", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2024, "Total Visits": 829.0, "Total Visitors": 639.0, "POI_CBG": 421010348022.0, "MEDIAN_DWELL": 4.0, "Total Spend": 4288.0, "Total Transactions": 420.0, "Total Customers": 250.0, "MEDIAN_SPEND_PER_TRANSACTION": 8.32, "MEDIAN_SPEND_PER_CUSTOMER": 11.15 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "LOCATION_NAME": "Rite Aid", "TOP_CATEGORY": "Health and Personal Care Stores", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2024, "Total Visits": 390.0, "Total Visitors": 280.0, "POI_CBG": 421010290003.0, "MEDIAN_DWELL": 4.0, "Total Spend": 1176.0, "Total Transactions": 63.0, "Total Customers": 51.0, "MEDIAN_SPEND_PER_TRANSACTION": 12.07, "MEDIAN_SPEND_PER_CUSTOMER": 16.88 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "LOCATION_NAME": "BJ's Wholesale Club", "TOP_CATEGORY": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "LATITUDE": 39.916033, "LONGITUDE": -75.188037, "DATE_RANGE_START": 2024, "Total Visits": 2127.0, "Total Visitors": 1534.0, "POI_CBG": 421010038002.0, "MEDIAN_DWELL": 13.0, "Total Spend": 6711.0, "Total Transactions": 74.0, "Total Customers": 57.0, "MEDIAN_SPEND_PER_TRANSACTION": 51.98, "MEDIAN_SPEND_PER_CUSTOMER": 73.61 }, "geometry": { "type": "Point", "coordinates": [ -75.188037, 39.916033 ] } } +] +} diff --git a/assets/data/data_2019.geojson b/assets/data/data_2019.geojson new file mode 100644 index 0000000..2b57c2f --- /dev/null +++ b/assets/data/data_2019.geojson @@ -0,0 +1,2864 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-qzz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "3600 Aramingo Ave", "LATITUDE": 39.993907, "LONGITUDE": -75.096856, "DATE_RANGE_START": 2019, "Total Visits": 738.0, "Total Visitors": 663.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 11.0, "Total Spend": 110.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 10.63, "Median Spend per Customer": 14.61 }, "geometry": { "type": "Point", "coordinates": [ -75.096856, 39.993907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-225@628-pjf-j7q", "Name": "All The Way Live", "Category": "Restaurants and Other Eating Places", "Address": "8419 Germantown Ave", "LATITUDE": 40.075711, "LONGITUDE": -75.205375, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 80.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 32.0, "Total Spend": 322.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 34.65, "Median Spend per Customer": 47.28 }, "geometry": { "type": "Point", "coordinates": [ -75.205375, 40.075711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22d@628-pmf-n5z", "Name": "Jake & Max's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd Ste C06", "LATITUDE": 39.954579, "LONGITUDE": -75.168468, "DATE_RANGE_START": 2019, "Total Visits": 13123.0, "Total Visitors": 4982.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 344.0, "Total Spend": 53.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 9.17 }, "geometry": { "type": "Point", "coordinates": [ -75.168468, 39.954579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 188.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 7.0, "Total Spend": 9895.0, "Total Transactions": 746.0, "Total Customers": 555.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7601 Lindbergh Blvd", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2019, "Total Visits": 1134.0, "Total Visitors": 758.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 9.0, "Total Spend": 4647.0, "Total Transactions": 858.0, "Total Customers": 451.0, "Median Spend per Transaction": 4.21, "Median Spend per Customer": 6.77 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St", "LATITUDE": 40.024672, "LONGITUDE": -75.147508, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 120.0, "POI_CBG": 421010283003.0, "Median Dwell Time": 3.0, "Total Spend": 3034.0, "Total Transactions": 540.0, "Total Customers": 278.0, "Median Spend per Transaction": 4.62, "Median Spend per Customer": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.147508, 40.024672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-y5f", "Name": "Southside Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "917 S 20th St", "LATITUDE": 39.940448, "LONGITUDE": -75.17585, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 1.0, "Total Spend": 57.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.02, "Median Spend per Customer": 17.02 }, "geometry": { "type": "Point", "coordinates": [ -75.17585, 39.940448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "Name": "Ibis Lounge", "Category": "Restaurants and Other Eating Places", "Address": "5420 Lancaster Ave", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 32.0, "POI_CBG": 421010113002.0, "Median Dwell Time": 5.0, "Total Spend": 1315.0, "Total Transactions": 70.0, "Total Customers": 53.0, "Median Spend per Transaction": 14.36, "Median Spend per Customer": 16.92 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "Name": "ALDI", "Category": "Grocery Stores", "Address": "3101 W Girard Ave", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2019, "Total Visits": 1421.0, "Total Visitors": 1048.0, "POI_CBG": 421010137005.0, "Median Dwell Time": 9.0, "Total Spend": 944.0, "Total Transactions": 33.0, "Total Customers": 25.0, "Median Spend per Transaction": 24.33, "Median Spend per Customer": 37.7 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "Name": "A& A Grocery Store", "Category": "Grocery Stores", "Address": "5030 Haverford Ave", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2019, "Total Visits": 118.0, "Total Visitors": 75.0, "POI_CBG": 421010093001.0, "Median Dwell Time": 11.0, "Total Spend": 1914.0, "Total Transactions": 150.0, "Total Customers": 60.0, "Median Spend per Transaction": 12.03, "Median Spend per Customer": 13.85 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5690 Rising Sun Ave", "LATITUDE": 40.039629, "LONGITUDE": -75.109938, "DATE_RANGE_START": 2019, "Total Visits": 1218.0, "Total Visitors": 1028.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 4.0, "Total Spend": 11394.0, "Total Transactions": 501.0, "Total Customers": 378.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 24.37 }, "geometry": { "type": "Point", "coordinates": [ -75.109938, 40.039629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-gzf", "Name": "AnM Gas", "Category": "Gasoline Stations", "Address": "536 W Roosevelt Blvd", "LATITUDE": 40.023031, "LONGITUDE": -75.134802, "DATE_RANGE_START": 2019, "Total Visits": 421.0, "Total Visitors": 396.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 1.0, "Total Spend": 2729.0, "Total Transactions": 198.0, "Total Customers": 112.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134802, 40.023031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p7x-6tv", "Name": "Artifax", "Category": "Other Miscellaneous Store Retailers", "Address": "2446 Cottman Ave", "LATITUDE": 40.046392, "LONGITUDE": -75.058077, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 80.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 10.0, "Total Spend": 10327.0, "Total Transactions": 268.0, "Total Customers": 197.0, "Median Spend per Transaction": 23.71, "Median Spend per Customer": 32.25 }, "geometry": { "type": "Point", "coordinates": [ -75.058077, 40.046392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-68v", "Name": "Winkel", "Category": "Restaurants and Other Eating Places", "Address": "1119 Locust St", "LATITUDE": 39.947806, "LONGITUDE": -75.160351, "DATE_RANGE_START": 2019, "Total Visits": 1369.0, "Total Visitors": 949.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 105.0, "Total Spend": 76.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.9, "Median Spend per Customer": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160351, 39.947806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgg-9xq", "Name": "Boss Furniture", "Category": "Furniture Stores", "Address": "2359 W Allegheny Ave", "LATITUDE": 40.003922, "LONGITUDE": -75.168399, "DATE_RANGE_START": 2019, "Total Visits": 358.0, "Total Visitors": 225.0, "POI_CBG": 421010171003.0, "Median Dwell Time": 55.0, "Total Spend": 546.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 75.0, "Median Spend per Customer": 114.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168399, 40.003922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25q-222@628-pm9-tn5", "Name": "Superhots By George", "Category": "Specialty Food Stores", "Address": "740 Sansom St Ste 601", "LATITUDE": 39.948564, "LONGITUDE": -75.153931, "DATE_RANGE_START": 2019, "Total Visits": 5045.0, "Total Visitors": 3227.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 99.0, "Total Spend": 11689.0, "Total Transactions": 796.0, "Total Customers": 706.0, "Median Spend per Transaction": 12.3, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153931, 39.948564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5700 Roosevelt Blvd", "LATITUDE": 40.032503, "LONGITUDE": -75.08527, "DATE_RANGE_START": 2019, "Total Visits": 2842.0, "Total Visitors": 1981.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 5.0, "Total Spend": 575.0, "Total Transactions": 33.0, "Total Customers": 15.0, "Median Spend per Transaction": 15.34, "Median Spend per Customer": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.08527, 40.032503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2300 W Oregon Ave", "LATITUDE": 39.916033, "LONGITUDE": -75.188037, "DATE_RANGE_START": 2019, "Total Visits": 3573.0, "Total Visitors": 2532.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 21.0, "Total Spend": 55377.0, "Total Transactions": 456.0, "Total Customers": 313.0, "Median Spend per Transaction": 82.62, "Median Spend per Customer": 99.19 }, "geometry": { "type": "Point", "coordinates": [ -75.188037, 39.916033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4160 Monument Rd", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2019, "Total Visits": 818.0, "Total Visitors": 636.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 9.0, "Total Spend": 715.0, "Total Transactions": 75.0, "Total Customers": 70.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-75z", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "1500 Market St", "LATITUDE": 39.952267, "LONGITUDE": -75.166533, "DATE_RANGE_START": 2019, "Total Visits": 2335.0, "Total Visitors": 1111.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 164.0, "Total Spend": 5833.0, "Total Transactions": 455.0, "Total Customers": 405.0, "Median Spend per Transaction": 9.37, "Median Spend per Customer": 10.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166533, 39.952267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-435", "Name": "State Liquor Stores", "Category": "Beer, Wine, and Liquor Stores", "Address": "2401 Vare Ave", "LATITUDE": 39.920248, "LONGITUDE": -75.188384, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 628.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 429.0, "Total Transactions": 22.0, "Total Customers": 10.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.188384, 39.920248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "9875 Bustleton Ave", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2019, "Total Visits": 741.0, "Total Visitors": 556.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 5.0, "Total Spend": 4782.0, "Total Transactions": 182.0, "Total Customers": 133.0, "Median Spend per Transaction": 16.89, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "Name": "Jini Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "1319 Franklin Mills Cir", "LATITUDE": 40.085837, "LONGITUDE": -74.962154, "DATE_RANGE_START": 2019, "Total Visits": 350.0, "Total Visitors": 290.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 8.0, "Total Spend": 937.0, "Total Transactions": 35.0, "Total Customers": 32.0, "Median Spend per Transaction": 18.33, "Median Spend per Customer": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -74.962154, 40.085837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8m-snq", "Name": "Station Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "1609 Pratt St", "LATITUDE": 40.022297, "LONGITUDE": -75.077816, "DATE_RANGE_START": 2019, "Total Visits": 2032.0, "Total Visitors": 1264.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 19.0, "Total Spend": 3554.0, "Total Transactions": 100.0, "Total Customers": 87.0, "Median Spend per Transaction": 22.1, "Median Spend per Customer": 28.85 }, "geometry": { "type": "Point", "coordinates": [ -75.077816, 40.022297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnt-435", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2427 Aramingo Ave Ste 8", "LATITUDE": 39.974417, "LONGITUDE": -75.121241, "DATE_RANGE_START": 2019, "Total Visits": 1124.0, "Total Visitors": 944.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 3.0, "Total Spend": 5458.0, "Total Transactions": 85.0, "Total Customers": 77.0, "Median Spend per Transaction": 35.42, "Median Spend per Customer": 49.3 }, "geometry": { "type": "Point", "coordinates": [ -75.121241, 39.974417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1300 S Columbus Blvd", "LATITUDE": 39.930175, "LONGITUDE": -75.144763, "DATE_RANGE_START": 2019, "Total Visits": 3100.0, "Total Visitors": 2670.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 7.0, "Total Spend": 9714.0, "Total Transactions": 275.0, "Total Customers": 260.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 22.45 }, "geometry": { "type": "Point", "coordinates": [ -75.144763, 39.930175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "2360 W Oregon Ave", "LATITUDE": 39.918005, "LONGITUDE": -75.188849, "DATE_RANGE_START": 2019, "Total Visits": 711.0, "Total Visitors": 535.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 12.0, "Total Spend": 12367.0, "Total Transactions": 253.0, "Total Customers": 198.0, "Median Spend per Transaction": 32.23, "Median Spend per Customer": 45.85 }, "geometry": { "type": "Point", "coordinates": [ -75.188849, 39.918005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "9000 Tinicum Blvd", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2019, "Total Visits": 2422.0, "Total Visitors": 1677.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 351.0, "Total Spend": 15658.0, "Total Transactions": 98.0, "Total Customers": 80.0, "Median Spend per Transaction": 107.19, "Median Spend per Customer": 104.85 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "Name": "Chillin Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6545 Elmwood Ave", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 85.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 11.0, "Total Spend": 1536.0, "Total Transactions": 93.0, "Total Customers": 83.0, "Median Spend per Transaction": 15.69, "Median Spend per Customer": 15.76 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp5-7qz", "Name": "Sidekicks Sports Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2207 N 2nd St", "LATITUDE": 39.983939, "LONGITUDE": -75.136124, "DATE_RANGE_START": 2019, "Total Visits": 188.0, "Total Visitors": 70.0, "POI_CBG": 421010162003.0, "Median Dwell Time": 123.0, "Total Spend": 227.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 27.5, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.136124, 39.983939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmb-6x5", "Name": "Mission Taqueria", "Category": "Restaurants and Other Eating Places", "Address": "1516 Sansom St Fl 2", "LATITUDE": 39.950235, "LONGITUDE": -75.166639, "DATE_RANGE_START": 2019, "Total Visits": 506.0, "Total Visitors": 443.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 31.0, "Total Spend": 1800.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 45.81, "Median Spend per Customer": 50.26 }, "geometry": { "type": "Point", "coordinates": [ -75.166639, 39.950235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-649", "Name": "The Barn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4901 Catharine St", "LATITUDE": 39.948417, "LONGITUDE": -75.22137, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 150.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 29.0, "Total Spend": 7641.0, "Total Transactions": 363.0, "Total Customers": 223.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 24.15 }, "geometry": { "type": "Point", "coordinates": [ -75.22137, 39.948417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "Name": "King Wok Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "13631 Philmont Ave", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 203.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 5.0, "Total Spend": 124.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.44, "Median Spend per Customer": 17.44 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pm8-kxq", "Name": "Victory Beer Hall", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1100 Pattison Ave", "LATITUDE": 39.904214, "LONGITUDE": -75.169344, "DATE_RANGE_START": 2019, "Total Visits": 7226.0, "Total Visitors": 5990.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 66.0, "Total Spend": 20734.0, "Total Transactions": 845.0, "Total Customers": 656.0, "Median Spend per Transaction": 17.6, "Median Spend per Customer": 21.08 }, "geometry": { "type": "Point", "coordinates": [ -75.169344, 39.904214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "Name": "City Pizza", "Category": "Restaurants and Other Eating Places", "Address": "100 Snyder Ave", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2019, "Total Visits": 836.0, "Total Visitors": 545.0, "POI_CBG": 421010042013.0, "Median Dwell Time": 57.0, "Total Spend": 367.0, "Total Transactions": 23.0, "Total Customers": 22.0, "Median Spend per Transaction": 12.75, "Median Spend per Customer": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5zz", "Name": "Top Tomato Pizza Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1107 Walnut St", "LATITUDE": 39.948971, "LONGITUDE": -75.159389, "DATE_RANGE_START": 2019, "Total Visits": 368.0, "Total Visitors": 227.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 147.0, "Total Spend": 4777.0, "Total Transactions": 273.0, "Total Customers": 208.0, "Median Spend per Transaction": 11.89, "Median Spend per Customer": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.159389, 39.948971 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-cqz", "Name": "Pita Chip", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St Ste 7", "LATITUDE": 39.977951, "LONGITUDE": -75.158444, "DATE_RANGE_START": 2019, "Total Visits": 1729.0, "Total Visitors": 1453.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 57.0, "Total Spend": 3781.0, "Total Transactions": 386.0, "Total Customers": 338.0, "Median Spend per Transaction": 8.37, "Median Spend per Customer": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.158444, 39.977951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw4-rzf", "Name": "La Tapenade Mediterranean Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave Terminal A", "LATITUDE": 39.880653, "LONGITUDE": -75.238331, "DATE_RANGE_START": 2019, "Total Visits": 22481.0, "Total Visitors": 17362.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 35.0, "Total Spend": 7401.0, "Total Transactions": 315.0, "Total Customers": 283.0, "Median Spend per Transaction": 17.38, "Median Spend per Customer": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.238331, 39.880653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "Name": "Ruth's Chris Steak House", "Category": "Restaurants and Other Eating Places", "Address": "1800 Market St", "LATITUDE": 39.952962, "LONGITUDE": -75.170263, "DATE_RANGE_START": 2019, "Total Visits": 4609.0, "Total Visitors": 2607.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 305.0, "Total Spend": 17831.0, "Total Transactions": 195.0, "Total Customers": 170.0, "Median Spend per Transaction": 60.76, "Median Spend per Customer": 73.63 }, "geometry": { "type": "Point", "coordinates": [ -75.170263, 39.952962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8m-x5z", "Name": "Goody's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6237 Frankford Ave", "LATITUDE": 40.027482, "LONGITUDE": -75.061166, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 58.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 49.0, "Total Spend": 1748.0, "Total Transactions": 92.0, "Total Customers": 70.0, "Median Spend per Transaction": 14.82, "Median Spend per Customer": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -75.061166, 40.027482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9w-q4v", "Name": "Cafe Michelangelo", "Category": "Restaurants and Other Eating Places", "Address": "11901 Bustleton Ave", "LATITUDE": 40.12143, "LONGITUDE": -75.016007, "DATE_RANGE_START": 2019, "Total Visits": 436.0, "Total Visitors": 343.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 46.0, "Total Spend": 10608.0, "Total Transactions": 158.0, "Total Customers": 117.0, "Median Spend per Transaction": 56.51, "Median Spend per Customer": 54.58 }, "geometry": { "type": "Point", "coordinates": [ -75.016007, 40.12143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "Name": "Hatville Deli", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2019, "Total Visits": 1796.0, "Total Visitors": 1687.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 4289.0, "Total Transactions": 326.0, "Total Customers": 293.0, "Median Spend per Transaction": 11.56, "Median Spend per Customer": 12.11 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "Name": "Wadsworth Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Wadsworth Ave", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 58.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 273.0, "Total Spend": 2879.0, "Total Transactions": 175.0, "Total Customers": 113.0, "Median Spend per Transaction": 12.61, "Median Spend per Customer": 18.09 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "Name": "Stock", "Category": "Restaurants and Other Eating Places", "Address": "308 E Girard Ave", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 115.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 15.0, "Total Spend": 74238.0, "Total Transactions": 272.0, "Total Customers": 172.0, "Median Spend per Transaction": 174.95, "Median Spend per Customer": 223.95 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgj-cqz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "1601 N Broad St", "LATITUDE": 39.977899, "LONGITUDE": -75.158476, "DATE_RANGE_START": 2019, "Total Visits": 1268.0, "Total Visitors": 1046.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 53.0, "Total Spend": 181.0, "Total Transactions": 15.0, "Total Customers": 12.0, "Median Spend per Transaction": 10.12, "Median Spend per Customer": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.158476, 39.977899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "Name": "Soy Cafe", "Category": "Restaurants and Other Eating Places", "Address": "630 N 2nd St", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2019, "Total Visits": 665.0, "Total Visitors": 485.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 168.0, "Total Spend": 2684.0, "Total Transactions": 188.0, "Total Customers": 142.0, "Median Spend per Transaction": 12.69, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6017 N Broad St", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2019, "Total Visits": 325.0, "Total Visitors": 242.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 4.0, "Total Spend": 8681.0, "Total Transactions": 1516.0, "Total Customers": 765.0, "Median Spend per Transaction": 4.81, "Median Spend per Customer": 7.31 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "101 S 52nd St", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2019, "Total Visits": 2925.0, "Total Visitors": 2080.0, "POI_CBG": 421010085001.0, "Median Dwell Time": 9.0, "Total Spend": 11423.0, "Total Transactions": 1311.0, "Total Customers": 913.0, "Median Spend per Transaction": 7.67, "Median Spend per Customer": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2749 W Hunting Park Ave Ste 130", "LATITUDE": 40.00769, "LONGITUDE": -75.17457, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 75.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 2.0, "Total Spend": 4935.0, "Total Transactions": 776.0, "Total Customers": 460.0, "Median Spend per Transaction": 5.49, "Median Spend per Customer": 7.42 }, "geometry": { "type": "Point", "coordinates": [ -75.17457, 40.00769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-tgk", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "5520 Whitaker Ave Ste 10", "LATITUDE": 40.035436, "LONGITUDE": -75.099754, "DATE_RANGE_START": 2019, "Total Visits": 73.0, "Total Visitors": 62.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 4.0, "Total Spend": 16.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 4.78, "Median Spend per Customer": 4.78 }, "geometry": { "type": "Point", "coordinates": [ -75.099754, 40.035436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-2zf", "Name": "Helm", "Category": "Restaurants and Other Eating Places", "Address": "1303 N 5th St", "LATITUDE": 39.971556, "LONGITUDE": -75.144508, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 8.0, "POI_CBG": 421010144001.0, "Median Dwell Time": 131.0, "Total Spend": 972.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 46.88, "Median Spend per Customer": 46.88 }, "geometry": { "type": "Point", "coordinates": [ -75.144508, 39.971556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pjf-t5f", "Name": "The Foodery Chestnut Hill", "Category": "Restaurants and Other Eating Places", "Address": "7829 Germantown Ave", "LATITUDE": 40.069552, "LONGITUDE": -75.199381, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010257003.0, "Median Dwell Time": 207.0, "Total Spend": 444.0, "Total Transactions": 38.0, "Total Customers": 28.0, "Median Spend per Transaction": 7.1, "Median Spend per Customer": 10.68 }, "geometry": { "type": "Point", "coordinates": [ -75.199381, 40.069552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pp2-85f", "Name": "Tony's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "3128 Belgrade St", "LATITUDE": 39.985499, "LONGITUDE": -75.106228, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 23.0, "POI_CBG": 421010180021.0, "Median Dwell Time": 2.0, "Total Spend": 1211.0, "Total Transactions": 92.0, "Total Customers": 57.0, "Median Spend per Transaction": 11.78, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.106228, 39.985499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "Name": "Claire's", "Category": "Clothing Stores", "Address": "2329 Cottman Ave", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 11.0, "Total Spend": 4003.0, "Total Transactions": 133.0, "Total Customers": 122.0, "Median Spend per Transaction": 24.2, "Median Spend per Customer": 27.85 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-vmk", "Name": "E Frank Hopkins", "Category": "Restaurants and Other Eating Places", "Address": "3120 S 3rd St", "LATITUDE": 39.906965, "LONGITUDE": -75.154623, "DATE_RANGE_START": 2019, "Total Visits": 496.0, "Total Visitors": 262.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 62.0, "Total Spend": 1691.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 90.88, "Median Spend per Customer": 141.13 }, "geometry": { "type": "Point", "coordinates": [ -75.154623, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-n89", "Name": "House of Grub", "Category": "Restaurants and Other Eating Places", "Address": "1341 N Delaware Ave", "LATITUDE": 39.967901, "LONGITUDE": -75.127452, "DATE_RANGE_START": 2019, "Total Visits": 2389.0, "Total Visitors": 1854.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 195.0, "Total Spend": 966.0, "Total Transactions": 138.0, "Total Customers": 43.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 18.82 }, "geometry": { "type": "Point", "coordinates": [ -75.127452, 39.967901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-d35", "Name": "Thomas'", "Category": "Restaurants and Other Eating Places", "Address": "447 E Girard Ave", "LATITUDE": 39.970627, "LONGITUDE": -75.128561, "DATE_RANGE_START": 2019, "Total Visits": 343.0, "Total Visitors": 253.0, "POI_CBG": 421010143002.0, "Median Dwell Time": 79.0, "Total Spend": 1806.0, "Total Transactions": 27.0, "Total Customers": 27.0, "Median Spend per Transaction": 34.17, "Median Spend per Customer": 34.17 }, "geometry": { "type": "Point", "coordinates": [ -75.128561, 39.970627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-nwk", "Name": "La Casa Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "3871 L St", "LATITUDE": 40.005788, "LONGITUDE": -75.102968, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 145.0, "POI_CBG": 421010190001.0, "Median Dwell Time": 5.0, "Total Spend": 779.0, "Total Transactions": 38.0, "Total Customers": 25.0, "Median Spend per Transaction": 20.75, "Median Spend per Customer": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102968, 40.005788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "2237 Cecil B Moore Ave", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 42.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 11.0, "Total Spend": 60.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pnw-pjv", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "115 E Girard Ave", "LATITUDE": 39.969267, "LONGITUDE": -75.133945, "DATE_RANGE_START": 2019, "Total Visits": 720.0, "Total Visitors": 608.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 40.0, "Total Spend": 3713.0, "Total Transactions": 258.0, "Total Customers": 210.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.133945, 39.969267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4301 Market St", "LATITUDE": 39.958195, "LONGITUDE": -75.208247, "DATE_RANGE_START": 2019, "Total Visits": 613.0, "Total Visitors": 475.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 5.0, "Total Spend": 5023.0, "Total Transactions": 904.0, "Total Customers": 513.0, "Median Spend per Transaction": 4.89, "Median Spend per Customer": 6.47 }, "geometry": { "type": "Point", "coordinates": [ -75.208247, 39.958195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p7w-gc5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7965 Verree Rd", "LATITUDE": 40.072485, "LONGITUDE": -75.075778, "DATE_RANGE_START": 2019, "Total Visits": 773.0, "Total Visitors": 560.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 3.0, "Total Spend": 489.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 20.13, "Median Spend per Customer": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.075778, 40.072485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "704 E Passyunk Ave # 20", "LATITUDE": 39.940142, "LONGITUDE": -75.151529, "DATE_RANGE_START": 2019, "Total Visits": 313.0, "Total Visitors": 173.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 16.0, "Total Spend": 11821.0, "Total Transactions": 718.0, "Total Customers": 305.0, "Median Spend per Transaction": 10.99, "Median Spend per Customer": 24.26 }, "geometry": { "type": "Point", "coordinates": [ -75.151529, 39.940142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pmb-ygk", "Name": "Oishii Poke", "Category": "Restaurants and Other Eating Places", "Address": "938 Arch St Fl Rear", "LATITUDE": 39.953252, "LONGITUDE": -75.15618, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 90.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 3876.0, "Total Transactions": 252.0, "Total Customers": 213.0, "Median Spend per Transaction": 12.83, "Median Spend per Customer": 13.24 }, "geometry": { "type": "Point", "coordinates": [ -75.15618, 39.953252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1161 Franklin Mills Cir", "LATITUDE": 40.084266, "LONGITUDE": -74.961834, "DATE_RANGE_START": 2019, "Total Visits": 981.0, "Total Visitors": 888.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 13795.0, "Total Transactions": 961.0, "Total Customers": 840.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -74.961834, 40.084266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6138 Ridge Ave", "LATITUDE": 40.034271, "LONGITUDE": -75.216406, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 267.0, "POI_CBG": 421010213002.0, "Median Dwell Time": 10.0, "Total Spend": 2170.0, "Total Transactions": 248.0, "Total Customers": 142.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.216406, 40.034271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p8m-v2k", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6429 Sackett St", "LATITUDE": 40.029763, "LONGITUDE": -75.058989, "DATE_RANGE_START": 2019, "Total Visits": 515.0, "Total Visitors": 396.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 5.0, "Total Spend": 56.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 5.38 }, "geometry": { "type": "Point", "coordinates": [ -75.058989, 40.029763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pgb-tsq", "Name": "Spring Garden Flowers", "Category": "Florists", "Address": "1209 Ridge Ave", "LATITUDE": 39.962555, "LONGITUDE": -75.157889, "DATE_RANGE_START": 2019, "Total Visits": 556.0, "Total Visitors": 430.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 165.0, "Total Spend": 5811.0, "Total Transactions": 203.0, "Total Customers": 182.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.157889, 39.962555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "Name": "Beck's Cajun Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 24.0, "Total Spend": 9242.0, "Total Transactions": 658.0, "Total Customers": 570.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "Name": "Pizzeria Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1925 S Broad St", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 42.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 572.0, "Total Spend": 1417.0, "Total Transactions": 68.0, "Total Customers": 55.0, "Median Spend per Transaction": 20.57, "Median Spend per Customer": 22.94 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5711 Ridge Ave", "LATITUDE": 40.027472, "LONGITUDE": -75.209408, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 1.0, "Total Spend": 20440.0, "Total Transactions": 850.0, "Total Customers": 601.0, "Median Spend per Transaction": 22.48, "Median Spend per Customer": 25.46 }, "geometry": { "type": "Point", "coordinates": [ -75.209408, 40.027472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg4-2rk", "Name": "Maker artisan pizza", "Category": "Restaurants and Other Eating Places", "Address": "5301 Germantown Ave", "LATITUDE": 40.032925, "LONGITUDE": -75.168806, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010246001.0, "Median Dwell Time": 568.0, "Total Spend": 1351.0, "Total Transactions": 100.0, "Total Customers": 55.0, "Median Spend per Transaction": 8.79, "Median Spend per Customer": 15.57 }, "geometry": { "type": "Point", "coordinates": [ -75.168806, 40.032925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-sdv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "411 W Oregon Ave", "LATITUDE": 39.915109, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2019, "Total Visits": 596.0, "Total Visitors": 511.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 9.0, "Total Spend": 281.0, "Total Transactions": 23.0, "Total Customers": 23.0, "Median Spend per Transaction": 8.37, "Median Spend per Customer": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.915109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-ph6-gkz", "Name": "Habeeb's Convenience Store", "Category": "Grocery Stores", "Address": "1803 N 54th St", "LATITUDE": 39.98437, "LONGITUDE": -75.230985, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010119001.0, "Median Dwell Time": null, "Total Spend": 601.0, "Total Transactions": 67.0, "Total Customers": 43.0, "Median Spend per Transaction": 8.37, "Median Spend per Customer": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.230985, 39.98437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7700 Island Ave", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2019, "Total Visits": 976.0, "Total Visitors": 781.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 6.0, "Total Spend": 14082.0, "Total Transactions": 1601.0, "Total Customers": 956.0, "Median Spend per Transaction": 7.44, "Median Spend per Customer": 9.86 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1615 Chancellor St", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2019, "Total Visits": 1014.0, "Total Visitors": 651.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 109.0, "Total Spend": 18593.0, "Total Transactions": 247.0, "Total Customers": 238.0, "Median Spend per Transaction": 51.16, "Median Spend per Customer": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-n3q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Jfk Blvd 2 Penn Center Concourse", "LATITUDE": 39.95343, "LONGITUDE": -75.165858, "DATE_RANGE_START": 2019, "Total Visits": 8037.0, "Total Visitors": 5037.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 73.0, "Total Spend": 4750.0, "Total Transactions": 1196.0, "Total Customers": 485.0, "Median Spend per Transaction": 3.33, "Median Spend per Customer": 4.95 }, "geometry": { "type": "Point", "coordinates": [ -75.165858, 39.95343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-php-p35", "Name": "Rodney Food Market", "Category": "Restaurants and Other Eating Places", "Address": "6901 Rodney St", "LATITUDE": 40.057226, "LONGITUDE": -75.155985, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 38.0, "POI_CBG": 421010265002.0, "Median Dwell Time": 169.0, "Total Spend": 197.0, "Total Transactions": 32.0, "Total Customers": 25.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 6.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155985, 40.057226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "Name": "Secret Garden", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "7631 Ridge Ave", "LATITUDE": 40.051859, "LONGITUDE": -75.235556, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010218002.0, "Median Dwell Time": 1.0, "Total Spend": 2023.0, "Total Transactions": 55.0, "Total Customers": 52.0, "Median Spend per Transaction": 26.95, "Median Spend per Customer": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.235556, 40.051859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "Name": "Polo Ralph Lauren Factory Store", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Ste 92", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2019, "Total Visits": 130.0, "Total Visitors": 97.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 53.0, "Total Spend": 9532.0, "Total Transactions": 118.0, "Total Customers": 102.0, "Median Spend per Transaction": 55.3, "Median Spend per Customer": 68.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "Name": "Tiffany & Co.", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1715 Walnut St", "LATITUDE": 39.950223, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2019, "Total Visits": 998.0, "Total Visitors": 681.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 137.0, "Total Spend": 26684.0, "Total Transactions": 77.0, "Total Customers": 73.0, "Median Spend per Transaction": 145.8, "Median Spend per Customer": 159.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.950223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5643 Ridge Ave", "LATITUDE": 40.026858, "LONGITUDE": -75.208809, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 50.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 1.0, "Total Spend": 10581.0, "Total Transactions": 1617.0, "Total Customers": 726.0, "Median Spend per Transaction": 4.89, "Median Spend per Customer": 7.81 }, "geometry": { "type": "Point", "coordinates": [ -75.208809, 40.026858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "Name": "Mr. Tire", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6740 Frankford Ave", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 108.0, "POI_CBG": 421010316006.0, "Median Dwell Time": 195.0, "Total Spend": 3774.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 98.14, "Median Spend per Customer": 176.61 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p76-7t9", "Name": "Mattress World", "Category": "Furniture Stores", "Address": "7924 State Rd", "LATITUDE": 40.030695, "LONGITUDE": -75.023149, "DATE_RANGE_START": 2019, "Total Visits": 1254.0, "Total Visitors": 866.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 41.0, "Total Spend": 4279.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 376.92, "Median Spend per Customer": 376.92 }, "geometry": { "type": "Point", "coordinates": [ -75.023149, 40.030695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm6-389", "Name": "Best Buy", "Category": "Electronics and Appliance Stores", "Address": "2300 S Columbus Blvd", "LATITUDE": 39.915668, "LONGITUDE": -75.138943, "DATE_RANGE_START": 2019, "Total Visits": 1739.0, "Total Visitors": 1393.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 16.0, "Total Spend": 1273.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 53.01, "Median Spend per Customer": 79.33 }, "geometry": { "type": "Point", "coordinates": [ -75.138943, 39.915668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm4-pjv", "Name": "Cardenas Oil & Vinegar Taproom", "Category": "Specialty Food Stores", "Address": "942 S 9th St", "LATITUDE": 39.937768, "LONGITUDE": -75.158238, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 40.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 70.0, "Total Spend": 1214.0, "Total Transactions": 27.0, "Total Customers": 23.0, "Median Spend per Transaction": 36.81, "Median Spend per Customer": 39.86 }, "geometry": { "type": "Point", "coordinates": [ -75.158238, 39.937768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "Name": "Brewer's Outlet", "Category": "Beer, Wine, and Liquor Stores", "Address": "309 S 48th St", "LATITUDE": 39.953078, "LONGITUDE": -75.217954, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 508.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 57.0, "Total Spend": 16762.0, "Total Transactions": 448.0, "Total Customers": 356.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.217954, 39.953078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "Name": "Beer Love", "Category": "Beer, Wine, and Liquor Stores", "Address": "714 S 4th St", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2019, "Total Visits": 550.0, "Total Visitors": 393.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 52.0, "Total Spend": 5598.0, "Total Transactions": 228.0, "Total Customers": 150.0, "Median Spend per Transaction": 21.98, "Median Spend per Customer": 26.33 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-zzz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1315 E Washington Ln", "LATITUDE": 40.058549, "LONGITUDE": -75.166373, "DATE_RANGE_START": 2019, "Total Visits": 603.0, "Total Visitors": 375.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 9.0, "Total Spend": 1555.0, "Total Transactions": 98.0, "Total Customers": 80.0, "Median Spend per Transaction": 10.78, "Median Spend per Customer": 18.56 }, "geometry": { "type": "Point", "coordinates": [ -75.166373, 40.058549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6919 Castor Ave # 6935", "LATITUDE": 40.045974, "LONGITUDE": -75.070637, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 118.0, "POI_CBG": 421010314015.0, "Median Dwell Time": 11.0, "Total Spend": 17306.0, "Total Transactions": 1832.0, "Total Customers": 984.0, "Median Spend per Transaction": 6.71, "Median Spend per Customer": 10.09 }, "geometry": { "type": "Point", "coordinates": [ -75.070637, 40.045974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp4-r49", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "2401 2499 Aramingo Ave Space 2499 D", "LATITUDE": 39.975637, "LONGITUDE": -75.119836, "DATE_RANGE_START": 2019, "Total Visits": 3441.0, "Total Visitors": 2019.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 12.0, "Total Spend": 3639.0, "Total Transactions": 87.0, "Total Customers": 77.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.119836, 39.975637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7770 Dungan Rd", "LATITUDE": 40.065575, "LONGITUDE": -75.072105, "DATE_RANGE_START": 2019, "Total Visits": 613.0, "Total Visitors": 338.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 9.0, "Total Spend": 1168.0, "Total Transactions": 52.0, "Total Customers": 33.0, "Median Spend per Transaction": 17.01, "Median Spend per Customer": 24.79 }, "geometry": { "type": "Point", "coordinates": [ -75.072105, 40.065575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-bhq", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "29 N 52nd St", "LATITUDE": 39.960816, "LONGITUDE": -75.224417, "DATE_RANGE_START": 2019, "Total Visits": 331.0, "Total Visitors": 270.0, "POI_CBG": 421010093003.0, "Median Dwell Time": 9.0, "Total Spend": 1461.0, "Total Transactions": 188.0, "Total Customers": 137.0, "Median Spend per Transaction": 6.3, "Median Spend per Customer": 7.85 }, "geometry": { "type": "Point", "coordinates": [ -75.224417, 39.960816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-d5f", "Name": "Allen Tire & Service", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4410 E Howell St", "LATITUDE": 40.019598, "LONGITUDE": -75.06328, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 40.0, "POI_CBG": 421010319003.0, "Median Dwell Time": 50.0, "Total Spend": 2341.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 124.09, "Median Spend per Customer": 125.72 }, "geometry": { "type": "Point", "coordinates": [ -75.06328, 40.019598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "Name": "Banana Leaf", "Category": "Restaurants and Other Eating Places", "Address": "1009 Arch St", "LATITUDE": 39.953737, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 208.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 26.0, "Total Spend": 1958.0, "Total Transactions": 67.0, "Total Customers": 65.0, "Median Spend per Transaction": 27.38, "Median Spend per Customer": 27.42 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.953737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "Name": "Yummy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1807 John F Kennedy Blvd", "LATITUDE": 39.954519, "LONGITUDE": -75.170234, "DATE_RANGE_START": 2019, "Total Visits": 676.0, "Total Visitors": 463.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 14.0, "Total Spend": 5034.0, "Total Transactions": 245.0, "Total Customers": 187.0, "Median Spend per Transaction": 18.12, "Median Spend per Customer": 23.06 }, "geometry": { "type": "Point", "coordinates": [ -75.170234, 39.954519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "3939 Chestnut St Fl 2", "LATITUDE": 39.955756, "LONGITUDE": -75.201691, "DATE_RANGE_START": 2019, "Total Visits": 3720.0, "Total Visitors": 2160.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 172.0, "Total Spend": 8729.0, "Total Transactions": 243.0, "Total Customers": 222.0, "Median Spend per Transaction": 26.34, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.201691, 39.955756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "Name": "Paisas Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4263 Frankford Ave", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2019, "Total Visits": 2798.0, "Total Visitors": 1912.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 2.0, "Total Spend": 340.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 16.83, "Median Spend per Customer": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1851 S Columbus Blvd Ste 3", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 148.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 6.0, "Total Spend": 20561.0, "Total Transactions": 1509.0, "Total Customers": 1116.0, "Median Spend per Transaction": 11.56, "Median Spend per Customer": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfy-2ff", "Name": "Tasty Twisters Bakery", "Category": "Restaurants and Other Eating Places", "Address": "5002 Umbria St", "LATITUDE": 40.035673, "LONGITUDE": -75.236122, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 60.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 5.0, "Total Spend": 599.0, "Total Transactions": 25.0, "Total Customers": 20.0, "Median Spend per Transaction": 16.75, "Median Spend per Customer": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.236122, 40.035673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@63s-dvr-hyv", "Name": "A & C Hardware", "Category": "Building Material and Supplies Dealers", "Address": "6501 Woodland Ave Apt 3", "LATITUDE": 39.925638, "LONGITUDE": -75.23463, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 158.0, "POI_CBG": 421010063001.0, "Median Dwell Time": 97.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 12.93 }, "geometry": { "type": "Point", "coordinates": [ -75.23463, 39.925638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.037065, "LONGITUDE": -75.118922, "DATE_RANGE_START": 2019, "Total Visits": 197.0, "Total Visitors": 172.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 44.0, "Total Spend": 12625.0, "Total Transactions": 416.0, "Total Customers": 365.0, "Median Spend per Transaction": 22.63, "Median Spend per Customer": 23.35 }, "geometry": { "type": "Point", "coordinates": [ -75.118922, 40.037065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pg8-z2k", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1701 N 33rd St", "LATITUDE": 39.982802, "LONGITUDE": -75.187818, "DATE_RANGE_START": 2019, "Total Visits": 3351.0, "Total Visitors": 2239.0, "POI_CBG": 421010149006.0, "Median Dwell Time": 5.0, "Total Spend": 294.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 11.48, "Median Spend per Customer": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.187818, 39.982802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "500 W Erie Ave", "LATITUDE": 40.007189, "LONGITUDE": -75.137271, "DATE_RANGE_START": 2019, "Total Visits": 2480.0, "Total Visitors": 1667.0, "POI_CBG": 421010199001.0, "Median Dwell Time": 5.0, "Total Spend": 451.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.007189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pjf-vj9", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "8019 Germantown Ave", "LATITUDE": 40.071317, "LONGITUDE": -75.201046, "DATE_RANGE_START": 2019, "Total Visits": 465.0, "Total Visitors": 331.0, "POI_CBG": 421010257003.0, "Median Dwell Time": 8.0, "Total Spend": 300.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 90.0, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.201046, 40.071317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "Name": "Forever 21", "Category": "Clothing Stores", "Address": "1706 Franklin Mills Cir", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2019, "Total Visits": 1023.0, "Total Visitors": 964.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 17.0, "Total Spend": 17744.0, "Total Transactions": 645.0, "Total Customers": 583.0, "Median Spend per Transaction": 22.56, "Median Spend per Customer": 24.66 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "Name": "H&M (Hennes & Mauritz)", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.088823, "LONGITUDE": -74.961811, "DATE_RANGE_START": 2019, "Total Visits": 1026.0, "Total Visitors": 954.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 17797.0, "Total Transactions": 498.0, "Total Customers": 450.0, "Median Spend per Transaction": 28.58, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961811, 40.088823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kmk", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1231 N Broad St", "LATITUDE": 39.973034, "LONGITUDE": -75.158605, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 143.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 158.0, "Total Spend": 5791.0, "Total Transactions": 58.0, "Total Customers": 50.0, "Median Spend per Transaction": 77.0, "Median Spend per Customer": 84.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158605, 39.973034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "1130 Market St", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2019, "Total Visits": 12633.0, "Total Visitors": 9132.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 21.0, "Total Spend": 19162.0, "Total Transactions": 530.0, "Total Customers": 461.0, "Median Spend per Transaction": 24.85, "Median Spend per Customer": 28.05 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-j9z", "Name": "Citi Auto Group", "Category": "Automobile Dealers", "Address": "4160 Torresdale Ave", "LATITUDE": 40.007166, "LONGITUDE": -75.087699, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 47.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 5.0, "Total Spend": 6663.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 1000.0, "Median Spend per Customer": 2000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087699, 40.007166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pg4-j9z", "Name": "Boss Furniture", "Category": "Furniture Stores", "Address": "5607 Germantown Ave", "LATITUDE": 40.035423, "LONGITUDE": -75.173956, "DATE_RANGE_START": 2019, "Total Visits": 2152.0, "Total Visitors": 1439.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 19.0, "Total Spend": 1874.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 50.5, "Median Spend per Customer": 50.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173956, 40.035423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pp4-zxq", "Name": "M R Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2510 N Front St", "LATITUDE": 39.988165, "LONGITUDE": -75.131689, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 57.0, "POI_CBG": 421010163003.0, "Median Dwell Time": 307.0, "Total Spend": 2338.0, "Total Transactions": 148.0, "Total Customers": 140.0, "Median Spend per Transaction": 7.33, "Median Spend per Customer": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.131689, 39.988165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-6tv", "Name": "Allen Tire & Service", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6301 Rising Sun Ave", "LATITUDE": 40.048405, "LONGITUDE": -75.096529, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010306003.0, "Median Dwell Time": 9.0, "Total Spend": 5531.0, "Total Transactions": 33.0, "Total Customers": 32.0, "Median Spend per Transaction": 128.39, "Median Spend per Customer": 122.99 }, "geometry": { "type": "Point", "coordinates": [ -75.096529, 40.048405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj9-4sq", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "5600 N Broad St", "LATITUDE": 40.039267, "LONGITUDE": -75.144973, "DATE_RANGE_START": 2019, "Total Visits": 553.0, "Total Visitors": 455.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 4.0, "Total Spend": 70.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 3.5, "Median Spend per Customer": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144973, 40.039267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmd-tvz", "Name": "GIANT Heirloom Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "2303 Bainbridge St", "LATITUDE": 39.944771, "LONGITUDE": -75.180795, "DATE_RANGE_START": 2019, "Total Visits": 1499.0, "Total Visitors": 959.0, "POI_CBG": 421010013005.0, "Median Dwell Time": 9.0, "Total Spend": 246.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.77, "Median Spend per Customer": 64.25 }, "geometry": { "type": "Point", "coordinates": [ -75.180795, 39.944771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.91267, "LONGITUDE": -75.154671, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 90.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 11.0, "Total Spend": 713.0, "Total Transactions": 28.0, "Total Customers": 25.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154671, 39.91267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "Name": "Oregon Express", "Category": "Restaurants and Other Eating Places", "Address": "2700 S Marvine St", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 15.0, "POI_CBG": 421010372001.0, "Median Dwell Time": 5.0, "Total Spend": 145.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg4-mx5", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "5301 Chew Ave Ste B", "LATITUDE": 40.04358, "LONGITUDE": -75.159446, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 27.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 1.0, "Total Spend": 8214.0, "Total Transactions": 97.0, "Total Customers": 88.0, "Median Spend per Transaction": 36.89, "Median Spend per Customer": 46.43 }, "geometry": { "type": "Point", "coordinates": [ -75.159446, 40.04358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph6-whq", "Name": "Italian Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2035 N 63rd St", "LATITUDE": 39.986561, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 9.0, "Total Spend": 1944.0, "Total Transactions": 125.0, "Total Customers": 85.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-2ff", "Name": "Corner Bakery Cafe", "Category": "Restaurants and Other Eating Places", "Address": "3737 Market St", "LATITUDE": 39.956861, "LONGITUDE": -75.196925, "DATE_RANGE_START": 2019, "Total Visits": 1024.0, "Total Visitors": 590.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 244.0, "Total Spend": 216.0, "Total Transactions": 20.0, "Total Customers": 15.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.196925, 39.956861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "Name": "China Royal", "Category": "Restaurants and Other Eating Places", "Address": "2620 Rhawn St", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 43.0, "POI_CBG": 421010333003.0, "Median Dwell Time": 19.0, "Total Spend": 1100.0, "Total Transactions": 52.0, "Total Customers": 38.0, "Median Spend per Transaction": 19.85, "Median Spend per Customer": 27.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "Name": "Lazos Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "2533 Poplar St", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 40.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 352.0, "Total Spend": 2141.0, "Total Transactions": 138.0, "Total Customers": 113.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-zmk", "Name": "The Good King Tavern", "Category": "Restaurants and Other Eating Places", "Address": "614 S 7th St", "LATITUDE": 39.941737, "LONGITUDE": -75.15419, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 60.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 22.0, "Total Spend": 1575.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 61.76, "Median Spend per Customer": 57.14 }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 39.941737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7v-w49", "Name": "China Ruby", "Category": "Restaurants and Other Eating Places", "Address": "1535 Cottman Ave", "LATITUDE": 40.055952, "LONGITUDE": -75.07383, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 57.0, "POI_CBG": 421010338002.0, "Median Dwell Time": 136.0, "Total Spend": 1663.0, "Total Transactions": 72.0, "Total Customers": 55.0, "Median Spend per Transaction": 18.9, "Median Spend per Customer": 19.12 }, "geometry": { "type": "Point", "coordinates": [ -75.07383, 40.055952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pnw-m49", "Name": "Baan Thai", "Category": "Restaurants and Other Eating Places", "Address": "1030 N American St", "LATITUDE": 39.967197, "LONGITUDE": -75.141229, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 87.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 69.0, "Total Spend": 3558.0, "Total Transactions": 108.0, "Total Customers": 100.0, "Median Spend per Transaction": 29.0, "Median Spend per Customer": 31.35 }, "geometry": { "type": "Point", "coordinates": [ -75.141229, 39.967197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-v2k", "Name": "Original Village Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1006 Sandmeyer Ln", "LATITUDE": 40.107293, "LONGITUDE": -75.037623, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 100.0, "POI_CBG": 421010357021.0, "Median Dwell Time": 20.0, "Total Spend": 3416.0, "Total Transactions": 150.0, "Total Customers": 77.0, "Median Spend per Transaction": 22.52, "Median Spend per Customer": 35.72 }, "geometry": { "type": "Point", "coordinates": [ -75.037623, 40.107293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-qzz", "Name": "For Pete's Sake", "Category": "Restaurants and Other Eating Places", "Address": "900 S Front St", "LATITUDE": 39.935493, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 173.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 49.0, "Total Spend": 283.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 70.4, "Median Spend per Customer": 70.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.935493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-7yv", "Name": "Olympia Gyro", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953552, "LONGITUDE": -75.159357, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 4645.0, "Total Transactions": 287.0, "Total Customers": 265.0, "Median Spend per Transaction": 14.47, "Median Spend per Customer": 15.26 }, "geometry": { "type": "Point", "coordinates": [ -75.159357, 39.953552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1200 Walnut St Ste B", "LATITUDE": 39.948772, "LONGITUDE": -75.160716, "DATE_RANGE_START": 2019, "Total Visits": 733.0, "Total Visitors": 653.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 9.0, "Total Spend": 28547.0, "Total Transactions": 2594.0, "Total Customers": 1687.0, "Median Spend per Transaction": 10.42, "Median Spend per Customer": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160716, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "3901 Chestnut St", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2019, "Total Visits": 530.0, "Total Visitors": 366.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 161.0, "Total Spend": 7306.0, "Total Transactions": 480.0, "Total Customers": 355.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.011206, "LONGITUDE": -75.113008, "DATE_RANGE_START": 2019, "Total Visits": 656.0, "Total Visitors": 418.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 5.0, "Total Spend": 6346.0, "Total Transactions": 1204.0, "Total Customers": 495.0, "Median Spend per Transaction": 4.31, "Median Spend per Customer": 7.53 }, "geometry": { "type": "Point", "coordinates": [ -75.113008, 40.011206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-2c5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.073477, "LONGITUDE": -75.033695, "DATE_RANGE_START": 2019, "Total Visits": 480.0, "Total Visitors": 248.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 31.0, "Total Spend": 4576.0, "Total Transactions": 713.0, "Total Customers": 400.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.033695, 40.073477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-6p9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6101 N Broad St", "LATITUDE": 40.046097, "LONGITUDE": -75.142598, "DATE_RANGE_START": 2019, "Total Visits": 1326.0, "Total Visitors": 951.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 10.0, "Total Spend": 2109.0, "Total Transactions": 178.0, "Total Customers": 118.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.142598, 40.046097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3401 Walnut St", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 57.0, "Total Spend": 33528.0, "Total Transactions": 2112.0, "Total Customers": 1111.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp5-7wk", "Name": "Friendly Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2258 N Front St", "LATITUDE": 39.984702, "LONGITUDE": -75.132436, "DATE_RANGE_START": 2019, "Total Visits": 16049.0, "Total Visitors": 6133.0, "POI_CBG": 421010162001.0, "Median Dwell Time": 150.0, "Total Spend": 5.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 1.5, "Median Spend per Customer": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132436, 39.984702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "Name": "Somerton Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "10853 Bustleton Ave", "LATITUDE": 40.110353, "LONGITUDE": -75.024095, "DATE_RANGE_START": 2019, "Total Visits": 1746.0, "Total Visitors": 1216.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 6.0, "Total Spend": 2225.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 216.0, "Median Spend per Customer": 668.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024095, 40.110353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2400 Lombard St", "LATITUDE": 39.946402, "LONGITUDE": -75.180743, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 63.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 10.0, "Total Spend": 13015.0, "Total Transactions": 1694.0, "Total Customers": 1019.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180743, 39.946402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1345 W Olney Ave", "LATITUDE": 40.039133, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2019, "Total Visits": 306.0, "Total Visitors": 253.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 5.0, "Total Spend": 4644.0, "Total Transactions": 1011.0, "Total Customers": 470.0, "Median Spend per Transaction": 4.37, "Median Spend per Customer": 5.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 40.039133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvr-d5f", "Name": "Y & B Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6547 Elmwood Ave", "LATITUDE": 39.921556, "LONGITUDE": -75.231623, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 12.0, "Total Spend": 703.0, "Total Transactions": 20.0, "Total Customers": 7.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 126.25 }, "geometry": { "type": "Point", "coordinates": [ -75.231623, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-gtv", "Name": "Bruno's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7362 N 19th St", "LATITUDE": 40.067212, "LONGITUDE": -75.146516, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 75.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 100.0, "Total Spend": 2054.0, "Total Transactions": 112.0, "Total Customers": 92.0, "Median Spend per Transaction": 17.02, "Median Spend per Customer": 19.31 }, "geometry": { "type": "Point", "coordinates": [ -75.146516, 40.067212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgf-52k", "Name": "Chengdu Famous Food", "Category": "Restaurants and Other Eating Places", "Address": "3635 Lancaster Ave", "LATITUDE": 39.959245, "LONGITUDE": -75.194556, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 58.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 11.0, "Total Spend": 5232.0, "Total Transactions": 157.0, "Total Customers": 110.0, "Median Spend per Transaction": 29.09, "Median Spend per Customer": 36.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194556, 39.959245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2550 Welsh Rd", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 97.0, "POI_CBG": 421010347013.0, "Median Dwell Time": 1.0, "Total Spend": 787.0, "Total Transactions": 78.0, "Total Customers": 68.0, "Median Spend per Transaction": 8.3, "Median Spend per Customer": 8.86 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgc-wzf", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "1575 N 52nd St Ste 400", "LATITUDE": 39.977954, "LONGITUDE": -75.224016, "DATE_RANGE_START": 2019, "Total Visits": 6270.0, "Total Visitors": 3353.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 20.0, "Total Spend": 7142.0, "Total Transactions": 571.0, "Total Customers": 485.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.224016, 39.977954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvr-2hq", "Name": "Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "25 Passyunk Dr", "LATITUDE": 39.917185, "LONGITUDE": -75.216767, "DATE_RANGE_START": 2019, "Total Visits": 1507.0, "Total Visitors": 1103.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 29.0, "Total Spend": 7218.0, "Total Transactions": 42.0, "Total Customers": 37.0, "Median Spend per Transaction": 91.0, "Median Spend per Customer": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216767, 39.917185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993511, "LONGITUDE": -75.143942, "DATE_RANGE_START": 2019, "Total Visits": 1031.0, "Total Visitors": 636.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 14.0, "Total Spend": 1824.0, "Total Transactions": 97.0, "Total Customers": 53.0, "Median Spend per Transaction": 12.23, "Median Spend per Customer": 23.09 }, "geometry": { "type": "Point", "coordinates": [ -75.143942, 39.993511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pg8-bp9", "Name": "WokWorks", "Category": "Restaurants and Other Eating Places", "Address": "3000 W Sedgley Ave", "LATITUDE": 39.984089, "LONGITUDE": -75.183, "DATE_RANGE_START": 2019, "Total Visits": 725.0, "Total Visitors": 408.0, "POI_CBG": 421010151022.0, "Median Dwell Time": 155.0, "Total Spend": 120.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.13, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.183, 39.984089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7w-pvz", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "7300 Roosevelt Blvd", "LATITUDE": 40.044968, "LONGITUDE": -75.054721, "DATE_RANGE_START": 2019, "Total Visits": 242.0, "Total Visitors": 210.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 2.0, "Total Spend": 2432.0, "Total Transactions": 180.0, "Total Customers": 140.0, "Median Spend per Transaction": 10.55, "Median Spend per Customer": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -75.054721, 40.044968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4140 N Broad St", "LATITUDE": 40.016586, "LONGITUDE": -75.149894, "DATE_RANGE_START": 2019, "Total Visits": 2497.0, "Total Visitors": 1759.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 5.0, "Total Spend": 149.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 44.82, "Median Spend per Customer": 44.82 }, "geometry": { "type": "Point", "coordinates": [ -75.149894, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-yn5", "Name": "Encore", "Category": "Restaurants and Other Eating Places", "Address": "4002 W Girard Ave", "LATITUDE": 39.973824, "LONGITUDE": -75.204593, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 90.0, "POI_CBG": 421010110003.0, "Median Dwell Time": 10.0, "Total Spend": 1479.0, "Total Transactions": 43.0, "Total Customers": 32.0, "Median Spend per Transaction": 26.5, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204593, 39.973824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-68v", "Name": "Kinme", "Category": "Restaurants and Other Eating Places", "Address": "1117 Locust St", "LATITUDE": 39.947803, "LONGITUDE": -75.160062, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 77.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 18.0, "Total Spend": 2161.0, "Total Transactions": 62.0, "Total Customers": 60.0, "Median Spend per Transaction": 29.84, "Median Spend per Customer": 30.92 }, "geometry": { "type": "Point", "coordinates": [ -75.160062, 39.947803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "Name": "Burlington", "Category": "Clothing Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051298, "LONGITUDE": -75.065323, "DATE_RANGE_START": 2019, "Total Visits": 3833.0, "Total Visitors": 2873.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 26.0, "Total Spend": 7787.0, "Total Transactions": 205.0, "Total Customers": 145.0, "Median Spend per Transaction": 27.55, "Median Spend per Customer": 36.32 }, "geometry": { "type": "Point", "coordinates": [ -75.065323, 40.051298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "Name": "King Food Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7426 Frankford Ave", "LATITUDE": 40.038528, "LONGITUDE": -75.036845, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 33.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 27.0, "Total Spend": 1185.0, "Total Transactions": 53.0, "Total Customers": 45.0, "Median Spend per Transaction": 20.47, "Median Spend per Customer": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.036845, 40.038528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5200 Germantown Ave", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2019, "Total Visits": 525.0, "Total Visitors": 295.0, "POI_CBG": 421010242001.0, "Median Dwell Time": 9.0, "Total Spend": 1867.0, "Total Transactions": 240.0, "Total Customers": 147.0, "Median Spend per Transaction": 6.31, "Median Spend per Customer": 9.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgh-cwk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1925 W Allegheny Ave", "LATITUDE": 40.003103, "LONGITUDE": -75.162138, "DATE_RANGE_START": 2019, "Total Visits": 513.0, "Total Visitors": 390.0, "POI_CBG": 421010202001.0, "Median Dwell Time": 7.0, "Total Spend": 848.0, "Total Transactions": 108.0, "Total Customers": 83.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 7.33 }, "geometry": { "type": "Point", "coordinates": [ -75.162138, 40.003103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-975", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.953036, "LONGITUDE": -75.192281, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 320.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 1.0, "Total Spend": 14030.0, "Total Transactions": 2394.0, "Total Customers": 1389.0, "Median Spend per Transaction": 4.7, "Median Spend per Customer": 6.65 }, "geometry": { "type": "Point", "coordinates": [ -75.192281, 39.953036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "9430 Academy Rd", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2019, "Total Visits": 1073.0, "Total Visitors": 846.0, "POI_CBG": 421010348022.0, "Median Dwell Time": 11.0, "Total Spend": 6676.0, "Total Transactions": 818.0, "Total Customers": 520.0, "Median Spend per Transaction": 6.37, "Median Spend per Customer": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-zmk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5601 Chestnut St", "LATITUDE": 39.960742, "LONGITUDE": -75.234226, "DATE_RANGE_START": 2019, "Total Visits": 7364.0, "Total Visitors": 3928.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 18.0, "Total Spend": 57.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 6.79, "Median Spend per Customer": 6.79 }, "geometry": { "type": "Point", "coordinates": [ -75.234226, 39.960742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-psq", "Name": "Sherwin-Williams", "Category": "Building Material and Supplies Dealers", "Address": "1001 Washington Ave", "LATITUDE": 39.937244, "LONGITUDE": -75.16006, "DATE_RANGE_START": 2019, "Total Visits": 145.0, "Total Visitors": 127.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 1.0, "Total Spend": 133.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 24.76, "Median Spend per Customer": 40.01 }, "geometry": { "type": "Point", "coordinates": [ -75.16006, 39.937244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8m-v2k", "Name": "Hung Vuong Food Market", "Category": "Grocery Stores", "Address": "6499 Sackett St", "LATITUDE": 40.030075, "LONGITUDE": -75.057846, "DATE_RANGE_START": 2019, "Total Visits": 328.0, "Total Visitors": 248.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 30.0, "Total Spend": 41744.0, "Total Transactions": 730.0, "Total Customers": 473.0, "Median Spend per Transaction": 37.52, "Median Spend per Customer": 45.32 }, "geometry": { "type": "Point", "coordinates": [ -75.057846, 40.030075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "12301 Academy Rd", "LATITUDE": 40.095744, "LONGITUDE": -74.976099, "DATE_RANGE_START": 2019, "Total Visits": 1614.0, "Total Visitors": 1073.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 95883.0, "Total Transactions": 6270.0, "Total Customers": 2177.0, "Median Spend per Transaction": 10.94, "Median Spend per Customer": 23.31 }, "geometry": { "type": "Point", "coordinates": [ -74.976099, 40.095744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "Name": "Old Nelson Food Company", "Category": "Beer, Wine, and Liquor Stores", "Address": "1100 W Montgomery Ave Ste D", "LATITUDE": 39.979391, "LONGITUDE": -75.152636, "DATE_RANGE_START": 2019, "Total Visits": 3288.0, "Total Visitors": 1779.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 130.0, "Total Spend": 3076.0, "Total Transactions": 316.0, "Total Customers": 308.0, "Median Spend per Transaction": 8.44, "Median Spend per Customer": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.152636, 39.979391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5680 Rising Sun Ave", "LATITUDE": 40.039167, "LONGITUDE": -75.110538, "DATE_RANGE_START": 2019, "Total Visits": 2212.0, "Total Visitors": 1669.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 5.0, "Total Spend": 1027.0, "Total Transactions": 33.0, "Total Customers": 22.0, "Median Spend per Transaction": 33.77, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110538, 40.039167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "Name": "Just To Serve You", "Category": "Restaurants and Other Eating Places", "Address": "5622 W Girard Ave", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 25.0, "POI_CBG": 421010102001.0, "Median Dwell Time": 3.0, "Total Spend": 288.0, "Total Transactions": 15.0, "Total Customers": 12.0, "Median Spend per Transaction": 19.98, "Median Spend per Customer": 19.98 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-rx5", "Name": "Shanks Original", "Category": "Restaurants and Other Eating Places", "Address": "901 S Columbus Blvd Pier 40", "LATITUDE": 39.934821, "LONGITUDE": -75.142056, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 32.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 3.0, "Total Spend": 82.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 24.5, "Median Spend per Customer": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 39.934821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-jjv", "Name": "Just Salad", "Category": "Restaurants and Other Eating Places", "Address": "1729 Chestnut St", "LATITUDE": 39.951824, "LONGITUDE": -75.169805, "DATE_RANGE_START": 2019, "Total Visits": 1241.0, "Total Visitors": 989.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 68.0, "Total Spend": 298.0, "Total Transactions": 25.0, "Total Customers": 22.0, "Median Spend per Transaction": 11.97, "Median Spend per Customer": 11.97 }, "geometry": { "type": "Point", "coordinates": [ -75.169805, 39.951824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phy-5pv", "Name": "E & S Mini Market", "Category": "Restaurants and Other Eating Places", "Address": "300 W Roosevelt Blvd", "LATITUDE": 40.023938, "LONGITUDE": -75.130466, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 113.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 502.0, "Total Spend": 190.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.9, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130466, 40.023938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-68v", "Name": "The Bike Stop", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "206 S Quince St", "LATITUDE": 39.948357, "LONGITUDE": -75.159979, "DATE_RANGE_START": 2019, "Total Visits": 305.0, "Total Visitors": 200.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 74.0, "Total Spend": 9363.0, "Total Transactions": 676.0, "Total Customers": 287.0, "Median Spend per Transaction": 10.9, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159979, 39.948357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3nq", "Name": "Nick's Roast Beef", "Category": "Restaurants and Other Eating Places", "Address": "4501 Woodhaven Rd", "LATITUDE": 40.083763, "LONGITUDE": -74.966105, "DATE_RANGE_START": 2019, "Total Visits": 1094.0, "Total Visitors": 888.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 51.0, "Total Spend": 2582.0, "Total Transactions": 70.0, "Total Customers": 67.0, "Median Spend per Transaction": 34.97, "Median Spend per Customer": 36.6 }, "geometry": { "type": "Point", "coordinates": [ -74.966105, 40.083763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "Name": "Pho Cyclo Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2124 S Broad St", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2019, "Total Visits": 1889.0, "Total Visitors": 1313.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 24.0, "Total Spend": 1695.0, "Total Transactions": 68.0, "Total Customers": 63.0, "Median Spend per Transaction": 24.25, "Median Spend per Customer": 23.81 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "Name": "Anastasi Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1039 S 9th St", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2019, "Total Visits": 207.0, "Total Visitors": 203.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 5.0, "Total Spend": 15984.0, "Total Transactions": 328.0, "Total Customers": 267.0, "Median Spend per Transaction": 36.42, "Median Spend per Customer": 49.06 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-mc5", "Name": "Mole Poblano Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1144 S 9th St", "LATITUDE": 39.935124, "LONGITUDE": -75.158821, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 98.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 9.0, "Total Spend": 2657.0, "Total Transactions": 55.0, "Total Customers": 42.0, "Median Spend per Transaction": 41.04, "Median Spend per Customer": 54.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158821, 39.935124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pmb-c3q", "Name": "Kin Boutique", "Category": "Clothing Stores", "Address": "1010 Pine St", "LATITUDE": 39.944553, "LONGITUDE": -75.158728, "DATE_RANGE_START": 2019, "Total Visits": 2155.0, "Total Visitors": 1459.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 139.0, "Total Spend": 4759.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 88.0, "Median Spend per Customer": 81.48 }, "geometry": { "type": "Point", "coordinates": [ -75.158728, 39.944553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmf-rx5", "Name": "Viet Bistro", "Category": "Restaurants and Other Eating Places", "Address": "1640 South St", "LATITUDE": 39.944017, "LONGITUDE": -75.170118, "DATE_RANGE_START": 2019, "Total Visits": 1504.0, "Total Visitors": 973.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 66.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 19.98, "Median Spend per Customer": 19.98 }, "geometry": { "type": "Point", "coordinates": [ -75.170118, 39.944017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "Name": "Fiorino", "Category": "Restaurants and Other Eating Places", "Address": "3572 Indian Queen Ln", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 48.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 6.0, "Total Spend": 5022.0, "Total Transactions": 48.0, "Total Customers": 47.0, "Median Spend per Transaction": 81.96, "Median Spend per Customer": 82.29 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "320 W Oregon Ave Ste 1", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2019, "Total Visits": 1379.0, "Total Visitors": 889.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 18.0, "Total Spend": 6995.0, "Total Transactions": 235.0, "Total Customers": 203.0, "Median Spend per Transaction": 25.65, "Median Spend per Customer": 30.71 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j7q", "Name": "The Dandelion", "Category": "Restaurants and Other Eating Places", "Address": "124 S 18th St", "LATITUDE": 39.951011, "LONGITUDE": -75.170702, "DATE_RANGE_START": 2019, "Total Visits": 460.0, "Total Visitors": 406.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 28.0, "Total Spend": 2077.0, "Total Transactions": 23.0, "Total Customers": 23.0, "Median Spend per Transaction": 63.24, "Median Spend per Customer": 63.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170702, 39.951011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9t-gzf", "Name": "Holt's Cigar Company", "Category": "Other Miscellaneous Store Retailers", "Address": "12270 Townsend Rd Ste 1203", "LATITUDE": 40.103076, "LONGITUDE": -74.985848, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 83.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 343.0, "Total Spend": 2474.0, "Total Transactions": 35.0, "Total Customers": 35.0, "Median Spend per Transaction": 46.38, "Median Spend per Customer": 46.38 }, "geometry": { "type": "Point", "coordinates": [ -74.985848, 40.103076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "104 S 40th St", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 70.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 14.0, "Total Spend": 5902.0, "Total Transactions": 290.0, "Total Customers": 198.0, "Median Spend per Transaction": 18.37, "Median Spend per Customer": 21.42 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmv-5cq", "Name": "Navy Yard Food Trucks", "Category": "Restaurants and Other Eating Places", "Address": "4701 S Broad St", "LATITUDE": 39.892125, "LONGITUDE": -75.174398, "DATE_RANGE_START": 2019, "Total Visits": 616.0, "Total Visitors": 346.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 66.0, "Total Spend": 192.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174398, 39.892125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-7yv", "Name": "Carnival Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4222 Lancaster Ave", "LATITUDE": 39.967096, "LONGITUDE": -75.208944, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 88.0, "POI_CBG": 421010106001.0, "Median Dwell Time": 7.0, "Total Spend": 229.0, "Total Transactions": 17.0, "Total Customers": 15.0, "Median Spend per Transaction": 13.95, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.208944, 39.967096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "Name": "SouthHouse", "Category": "Restaurants and Other Eating Places", "Address": "2535 S 13th St", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2019, "Total Visits": 518.0, "Total Visitors": 280.0, "POI_CBG": 421010040023.0, "Median Dwell Time": 238.0, "Total Spend": 4715.0, "Total Transactions": 127.0, "Total Customers": 87.0, "Median Spend per Transaction": 29.34, "Median Spend per Customer": 35.66 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "Name": "Saigon Noodle Bar", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074096, "LONGITUDE": -75.202561, "DATE_RANGE_START": 2019, "Total Visits": 665.0, "Total Visitors": 490.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 27.0, "Total Spend": 2051.0, "Total Transactions": 112.0, "Total Customers": 97.0, "Median Spend per Transaction": 14.91, "Median Spend per Customer": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202561, 40.074096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-wc5", "Name": "Craft Hall", "Category": "Restaurants and Other Eating Places", "Address": "901 N Delaware Ave", "LATITUDE": 39.962369, "LONGITUDE": -75.135937, "DATE_RANGE_START": 2019, "Total Visits": 1564.0, "Total Visitors": 1106.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 71.0, "Total Spend": 18279.0, "Total Transactions": 375.0, "Total Customers": 331.0, "Median Spend per Transaction": 33.36, "Median Spend per Customer": 39.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.962369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yd9", "Name": "Tai Lake", "Category": "Restaurants and Other Eating Places", "Address": "134 N 10th St", "LATITUDE": 39.954672, "LONGITUDE": -75.156344, "DATE_RANGE_START": 2019, "Total Visits": 210.0, "Total Visitors": 183.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 39.0, "Total Spend": 7610.0, "Total Transactions": 95.0, "Total Customers": 90.0, "Median Spend per Transaction": 43.9, "Median Spend per Customer": 45.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156344, 39.954672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25n-223@628-pmf-33q", "Name": "Martabak Ok", "Category": "Restaurants and Other Eating Places", "Address": "1801 Washington Ave Unit D", "LATITUDE": 39.938993, "LONGITUDE": -75.173271, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 29.0, "Total Spend": 159.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 16.49, "Median Spend per Customer": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.173271, 39.938993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "Name": "El Balconcito", "Category": "Restaurants and Other Eating Places", "Address": "658 E Godfrey Ave", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 5.0, "Total Spend": 3565.0, "Total Transactions": 63.0, "Total Customers": 58.0, "Median Spend per Transaction": 59.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "Name": "Aya Asian Fusion", "Category": "Restaurants and Other Eating Places", "Address": "7313 Frankford Ave # 15", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 87.0, "POI_CBG": 421010330006.0, "Median Dwell Time": 4.0, "Total Spend": 3639.0, "Total Transactions": 137.0, "Total Customers": 113.0, "Median Spend per Transaction": 23.62, "Median Spend per Customer": 27.64 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "Name": "Cafe Old Nelson", "Category": "Restaurants and Other Eating Places", "Address": "1435 Arch St", "LATITUDE": 39.954761, "LONGITUDE": -75.164691, "DATE_RANGE_START": 2019, "Total Visits": 565.0, "Total Visitors": 385.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 94.0, "Total Spend": 4335.0, "Total Transactions": 440.0, "Total Customers": 268.0, "Median Spend per Transaction": 9.23, "Median Spend per Customer": 11.94 }, "geometry": { "type": "Point", "coordinates": [ -75.164691, 39.954761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmd-rx5", "Name": "Cotoletta Fitler Square", "Category": "Restaurants and Other Eating Places", "Address": "2227 Pine St", "LATITUDE": 39.947447, "LONGITUDE": -75.179191, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 62.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 264.0, "Total Spend": 6657.0, "Total Transactions": 73.0, "Total Customers": 63.0, "Median Spend per Transaction": 77.78, "Median Spend per Customer": 82.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179191, 39.947447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22b@628-pmb-7h5", "Name": "Bain's Deli", "Category": "Restaurants and Other Eating Places", "Address": "200 S Broad St Ste FC3", "LATITUDE": 39.949072, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2019, "Total Visits": 16967.0, "Total Visitors": 10019.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 118.0, "Total Spend": 591.0, "Total Transactions": 62.0, "Total Customers": 57.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 10.07 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.949072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-4y9", "Name": "CIBO Express Market", "Category": "Health and Personal Care Stores", "Address": "Terminal C Philidelphia Internaional Airport", "LATITUDE": 39.87575, "LONGITUDE": -75.24417, "DATE_RANGE_START": 2019, "Total Visits": 454923.0, "Total Visitors": 244998.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 76.0, "Total Spend": 131.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 19.2, "Median Spend per Customer": 15.35 }, "geometry": { "type": "Point", "coordinates": [ -75.24417, 39.87575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8n-cqz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6400 Roosevelt Blvd", "LATITUDE": 40.03577, "LONGITUDE": -75.069964, "DATE_RANGE_START": 2019, "Total Visits": 2855.0, "Total Visitors": 2170.0, "POI_CBG": 421010313002.0, "Median Dwell Time": 4.0, "Total Spend": 331.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069964, 40.03577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-sdv", "Name": "Independence Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 S Independence Mall W", "LATITUDE": 39.950376, "LONGITUDE": -75.15103, "DATE_RANGE_START": 2019, "Total Visits": 3018.0, "Total Visitors": 2475.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 32.0, "Total Spend": 79684.0, "Total Transactions": 3944.0, "Total Customers": 2713.0, "Median Spend per Transaction": 15.72, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15103, 39.950376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgj-pgk", "Name": "Arthurs Dog House", "Category": "Restaurants and Other Eating Places", "Address": "2650 Germantown Ave", "LATITUDE": 39.992823, "LONGITUDE": -75.148113, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 62.0, "POI_CBG": 421010165003.0, "Median Dwell Time": 7.0, "Total Spend": 78.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.44, "Median Spend per Customer": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.148113, 39.992823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7350 Oxford Ave", "LATITUDE": 40.062718, "LONGITUDE": -75.083858, "DATE_RANGE_START": 2019, "Total Visits": 1419.0, "Total Visitors": 989.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 5.0, "Total Spend": 9781.0, "Total Transactions": 265.0, "Total Customers": 228.0, "Median Spend per Transaction": 22.66, "Median Spend per Customer": 32.07 }, "geometry": { "type": "Point", "coordinates": [ -75.083858, 40.062718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "Name": "LKQ", "Category": "Miscellaneous Durable Goods Merchant Wholesalers", "Address": "3350 S 61st St", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2019, "Total Visits": 688.0, "Total Visitors": 458.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 296.0, "Total Spend": 4032.0, "Total Transactions": 35.0, "Total Customers": 17.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 157.28 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6137 Frankford Ave", "LATITUDE": 40.027117, "LONGITUDE": -75.0631, "DATE_RANGE_START": 2019, "Total Visits": 898.0, "Total Visitors": 720.0, "POI_CBG": 421010319001.0, "Median Dwell Time": 9.0, "Total Spend": 10270.0, "Total Transactions": 270.0, "Total Customers": 212.0, "Median Spend per Transaction": 19.13, "Median Spend per Customer": 26.75 }, "geometry": { "type": "Point", "coordinates": [ -75.0631, 40.027117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1190 E Luzerne St", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2019, "Total Visits": 301.0, "Total Visitors": 173.0, "POI_CBG": 421010191003.0, "Median Dwell Time": 4.0, "Total Spend": 994.0, "Total Transactions": 122.0, "Total Customers": 15.0, "Median Spend per Transaction": 7.76, "Median Spend per Customer": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-ph6-cdv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6375 Lebanon Ave", "LATITUDE": 39.979947, "LONGITUDE": -75.248732, "DATE_RANGE_START": 2019, "Total Visits": 610.0, "Total Visitors": 365.0, "POI_CBG": 421010114001.0, "Median Dwell Time": 4.0, "Total Spend": 2516.0, "Total Transactions": 72.0, "Total Customers": 40.0, "Median Spend per Transaction": 4.98, "Median Spend per Customer": 5.76 }, "geometry": { "type": "Point", "coordinates": [ -75.248732, 39.979947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "Delaware Ave & Spring Garden St", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2019, "Total Visits": 6017.0, "Total Visitors": 4236.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 4.0, "Total Spend": 75929.0, "Total Transactions": 3798.0, "Total Customers": 2564.0, "Median Spend per Transaction": 15.19, "Median Spend per Customer": 20.34 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4156 Ridge Ave # 78", "LATITUDE": 40.008575, "LONGITUDE": -75.193866, "DATE_RANGE_START": 2019, "Total Visits": 4511.0, "Total Visitors": 3140.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 1.0, "Total Spend": 2578.0, "Total Transactions": 150.0, "Total Customers": 77.0, "Median Spend per Transaction": 9.23, "Median Spend per Customer": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.193866, 40.008575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Knights Rd", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2019, "Total Visits": 1797.0, "Total Visitors": 1034.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 3.0, "Total Spend": 7790.0, "Total Transactions": 356.0, "Total Customers": 213.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9q-hqz", "Name": "Pearle Vision", "Category": "Health and Personal Care Stores", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079188, "LONGITUDE": -75.028586, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 115.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 105.0, "Total Spend": 596.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 178.97, "Median Spend per Customer": 178.97 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.079188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "4358 Main St", "LATITUDE": 40.025431, "LONGITUDE": -75.223871, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 103.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 13.0, "Total Spend": 4476.0, "Total Transactions": 60.0, "Total Customers": 58.0, "Median Spend per Transaction": 54.98, "Median Spend per Customer": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223871, 40.025431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7941 Bustleton Av & Loney St", "LATITUDE": 40.058164, "LONGITUDE": -75.052414, "DATE_RANGE_START": 2019, "Total Visits": 715.0, "Total Visitors": 560.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 4.0, "Total Spend": 341.0, "Total Transactions": 15.0, "Total Customers": 8.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 21.66 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.058164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-qpv", "Name": "Sunrise Pizza", "Category": "Restaurants and Other Eating Places", "Address": "528 W Butler St", "LATITUDE": 40.009015, "LONGITUDE": -75.137692, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010198006.0, "Median Dwell Time": 7.0, "Total Spend": 495.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 24.45, "Median Spend per Customer": 24.45 }, "geometry": { "type": "Point", "coordinates": [ -75.137692, 40.009015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjf-jy9", "Name": "Bredenbeck's Bakery & Ice Cream Parlor", "Category": "Restaurants and Other Eating Places", "Address": "8126 Germantown Ave", "LATITUDE": 40.072481, "LONGITUDE": -75.202392, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 18.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 98.0, "Total Spend": 16479.0, "Total Transactions": 771.0, "Total Customers": 618.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 14.24 }, "geometry": { "type": "Point", "coordinates": [ -75.202392, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pm3-st9", "Name": "Laurel", "Category": "Restaurants and Other Eating Places", "Address": "1617 E Passyunk Ave", "LATITUDE": 39.929472, "LONGITUDE": -75.163723, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 90.0, "Total Spend": 1519.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 44.25, "Median Spend per Customer": 48.55 }, "geometry": { "type": "Point", "coordinates": [ -75.163723, 39.929472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7730 City Ave", "LATITUDE": 39.977128, "LONGITUDE": -75.274366, "DATE_RANGE_START": 2019, "Total Visits": 635.0, "Total Visitors": 526.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 7.0, "Total Spend": 13579.0, "Total Transactions": 386.0, "Total Customers": 303.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.274366, 39.977128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2204 S Columbus Blvd", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2019, "Total Visits": 1459.0, "Total Visitors": 1279.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 5.0, "Total Spend": 72001.0, "Total Transactions": 5459.0, "Total Customers": 3851.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-223@628-pnx-7qz", "Name": "Dolce & Caffe", "Category": "Restaurants and Other Eating Places", "Address": "708 N 2nd St", "LATITUDE": 39.962218, "LONGITUDE": -75.141391, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 15.0, "Total Spend": 4972.0, "Total Transactions": 505.0, "Total Customers": 306.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.141391, 39.962218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6858 Rising Sun Ave", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2019, "Total Visits": 1421.0, "Total Visitors": 979.0, "POI_CBG": 421010307003.0, "Median Dwell Time": 3.0, "Total Spend": 98916.0, "Total Transactions": 6656.0, "Total Customers": 2907.0, "Median Spend per Transaction": 10.47, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-tn5", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "721 Walnut St", "LATITUDE": 39.948145, "LONGITUDE": -75.153461, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 137.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 22.0, "Total Spend": 812.0, "Total Transactions": 73.0, "Total Customers": 70.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.153461, 39.948145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-sqz", "Name": "Aesop", "Category": "Health and Personal Care Stores", "Address": "1528 Walnut St", "LATITUDE": 39.949498, "LONGITUDE": -75.16734, "DATE_RANGE_START": 2019, "Total Visits": 20500.0, "Total Visitors": 10934.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 70.0, "Total Spend": 2583.0, "Total Transactions": 25.0, "Total Customers": 23.0, "Median Spend per Transaction": 72.36, "Median Spend per Customer": 70.74 }, "geometry": { "type": "Point", "coordinates": [ -75.16734, 39.949498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "Name": "Eye Encounters", "Category": "Health and Personal Care Stores", "Address": "1925 Chestnut St", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2019, "Total Visits": 12893.0, "Total Visitors": 7288.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 63.0, "Total Spend": 980.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 99.0, "Median Spend per Customer": 99.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-cdv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5338 N 5th St", "LATITUDE": 40.033248, "LONGITUDE": -75.131604, "DATE_RANGE_START": 2019, "Total Visits": 1388.0, "Total Visitors": 909.0, "POI_CBG": 421010275003.0, "Median Dwell Time": 4.0, "Total Spend": 379.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 22.88, "Median Spend per Customer": 24.76 }, "geometry": { "type": "Point", "coordinates": [ -75.131604, 40.033248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "456 N 5th St", "LATITUDE": 39.959702, "LONGITUDE": -75.147615, "DATE_RANGE_START": 2019, "Total Visits": 480.0, "Total Visitors": 365.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 7.0, "Total Spend": 322201.0, "Total Transactions": 8544.0, "Total Customers": 5069.0, "Median Spend per Transaction": 22.25, "Median Spend per Customer": 37.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147615, 39.959702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2133 Cottman Ave", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2019, "Total Visits": 1168.0, "Total Visitors": 1028.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 7.0, "Total Spend": 12294.0, "Total Transactions": 870.0, "Total Customers": 661.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-tvz", "Name": "Material Culture", "Category": "Used Merchandise Stores", "Address": "4700 Wissahickon Ave Ste 101", "LATITUDE": 40.01529, "LONGITUDE": -75.173584, "DATE_RANGE_START": 2019, "Total Visits": 2713.0, "Total Visitors": 1448.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 156.0, "Total Spend": 2896.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 351.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173584, 40.01529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-y5f", "Name": "Mineralistic", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "319 South St", "LATITUDE": 39.941629, "LONGITUDE": -75.148231, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 102.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 15.0, "Total Spend": 2449.0, "Total Transactions": 52.0, "Total Customers": 50.0, "Median Spend per Transaction": 33.48, "Median Spend per Customer": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.148231, 39.941629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pm9-wc5", "Name": "Renaissance Hotels", "Category": "Traveler Accommodation", "Address": "401 Chestnut St", "LATITUDE": 39.949053, "LONGITUDE": -75.147888, "DATE_RANGE_START": 2019, "Total Visits": 1567.0, "Total Visitors": 1286.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 57.0, "Total Spend": 34857.0, "Total Transactions": 193.0, "Total Customers": 160.0, "Median Spend per Transaction": 50.24, "Median Spend per Customer": 57.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147888, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "Name": "Sampan", "Category": "Traveler Accommodation", "Address": "124 S 13th St", "LATITUDE": 39.949535, "LONGITUDE": -75.16221, "DATE_RANGE_START": 2019, "Total Visits": 9681.0, "Total Visitors": 6173.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 101.0, "Total Spend": 20452.0, "Total Transactions": 313.0, "Total Customers": 273.0, "Median Spend per Transaction": 45.19, "Median Spend per Customer": 49.86 }, "geometry": { "type": "Point", "coordinates": [ -75.16221, 39.949535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "Name": "DaMo Pasta Lab", "Category": "Restaurants and Other Eating Places", "Address": "105 S 12th St", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 200.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 5928.0, "Total Transactions": 290.0, "Total Customers": 248.0, "Median Spend per Transaction": 16.43, "Median Spend per Customer": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "Name": "Dolce Carini Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1929 Chestnut St", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2019, "Total Visits": 518.0, "Total Visitors": 341.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 90.0, "Total Spend": 2779.0, "Total Transactions": 242.0, "Total Customers": 190.0, "Median Spend per Transaction": 8.72, "Median Spend per Customer": 9.94 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-jgk", "Name": "The Happy Rooster", "Category": "Restaurants and Other Eating Places", "Address": "118 S 16th St", "LATITUDE": 39.950462, "LONGITUDE": -75.16756, "DATE_RANGE_START": 2019, "Total Visits": 626.0, "Total Visitors": 471.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 119.0, "Total Spend": 8683.0, "Total Transactions": 237.0, "Total Customers": 193.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 31.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16756, 39.950462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-tvz", "Name": "Devon Seafood Grill", "Category": "Restaurants and Other Eating Places", "Address": "225 S 18th St", "LATITUDE": 39.949401, "LONGITUDE": -75.170553, "DATE_RANGE_START": 2019, "Total Visits": 1596.0, "Total Visitors": 1009.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 90.0, "Total Spend": 42984.0, "Total Transactions": 505.0, "Total Customers": 450.0, "Median Spend per Transaction": 66.28, "Median Spend per Customer": 70.82 }, "geometry": { "type": "Point", "coordinates": [ -75.170553, 39.949401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvr-cwk", "Name": "Happy Wok", "Category": "Restaurants and Other Eating Places", "Address": "6507 Elmwood Ave", "LATITUDE": 39.922171, "LONGITUDE": -75.230743, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 40.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 256.0, "Total Spend": 829.0, "Total Transactions": 28.0, "Total Customers": 27.0, "Median Spend per Transaction": 26.55, "Median Spend per Customer": 29.93 }, "geometry": { "type": "Point", "coordinates": [ -75.230743, 39.922171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-bhq", "Name": "China House II", "Category": "Restaurants and Other Eating Places", "Address": "70th St & Grovers Ave", "LATITUDE": 39.912259, "LONGITUDE": -75.233384, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 138.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 12.0, "Total Spend": 559.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 102.0, "Median Spend per Customer": 102.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233384, 39.912259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "Name": "Gallelli Formal Wear", "Category": "Clothing Stores", "Address": "904 Cottman Ave", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2019, "Total Visits": 260.0, "Total Visitors": 238.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 11.0, "Total Spend": 2622.0, "Total Transactions": 23.0, "Total Customers": 20.0, "Median Spend per Transaction": 115.0, "Median Spend per Customer": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "Name": "Asian Chopsticks", "Category": "Restaurants and Other Eating Places", "Address": "4044 Woodhaven Rd", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 133.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 4.0, "Total Spend": 1006.0, "Total Transactions": 47.0, "Total Customers": 43.0, "Median Spend per Transaction": 19.24, "Median Spend per Customer": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "9990 Roosevelt Blvd", "LATITUDE": 40.094236, "LONGITUDE": -75.016653, "DATE_RANGE_START": 2019, "Total Visits": 701.0, "Total Visitors": 583.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 7.0, "Total Spend": 9204.0, "Total Transactions": 850.0, "Total Customers": 593.0, "Median Spend per Transaction": 9.27, "Median Spend per Customer": 11.08 }, "geometry": { "type": "Point", "coordinates": [ -75.016653, 40.094236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@63s-dw9-7dv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "Philadelphia Int. Airport Terminal D Concourse B", "LATITUDE": 39.877241, "LONGITUDE": -75.244155, "DATE_RANGE_START": 2019, "Total Visits": 2888.0, "Total Visitors": 2688.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 13468.0, "Total Transactions": 1871.0, "Total Customers": 1719.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 6.59 }, "geometry": { "type": "Point", "coordinates": [ -75.244155, 39.877241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "300 E Erie Ave", "LATITUDE": 40.006873, "LONGITUDE": -75.123103, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 162.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 2.0, "Total Spend": 4457.0, "Total Transactions": 768.0, "Total Customers": 353.0, "Median Spend per Transaction": 4.95, "Median Spend per Customer": 7.6 }, "geometry": { "type": "Point", "coordinates": [ -75.123103, 40.006873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgc-zzz", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "5050 Parkside Ave", "LATITUDE": 39.979858, "LONGITUDE": -75.220169, "DATE_RANGE_START": 2019, "Total Visits": 946.0, "Total Visitors": 613.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 35.0, "Total Spend": 183.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.220169, 39.979858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-kj9", "Name": "Sassafras Market", "Category": "Grocery Stores", "Address": "163 N 3rd St", "LATITUDE": 39.953897, "LONGITUDE": -75.14465, "DATE_RANGE_START": 2019, "Total Visits": 202.0, "Total Visitors": 193.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 1.0, "Total Spend": 12829.0, "Total Transactions": 923.0, "Total Customers": 456.0, "Median Spend per Transaction": 11.43, "Median Spend per Customer": 17.18 }, "geometry": { "type": "Point", "coordinates": [ -75.14465, 39.953897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "Name": "Total Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "2431 Castor Ave Ste A", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2019, "Total Visits": 575.0, "Total Visitors": 453.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 47.0, "Total Spend": 4627.0, "Total Transactions": 183.0, "Total Customers": 135.0, "Median Spend per Transaction": 21.09, "Median Spend per Customer": 31.47 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pm7-45f", "Name": "Jerusalem Furniture", "Category": "Furniture Stores", "Address": "2300 W Passyunk Ave", "LATITUDE": 39.921866, "LONGITUDE": -75.185805, "DATE_RANGE_START": 2019, "Total Visits": 268.0, "Total Visitors": 237.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 6.0, "Total Spend": 481.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 144.38, "Median Spend per Customer": 144.38 }, "geometry": { "type": "Point", "coordinates": [ -75.185805, 39.921866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg9-cyv", "Name": "Mercado Food Market", "Category": "Grocery Stores", "Address": "1859 N Van Pelt St", "LATITUDE": 39.983185, "LONGITUDE": -75.169254, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 50.0, "POI_CBG": 421010152004.0, "Median Dwell Time": 5.0, "Total Spend": 165.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.169254, 39.983185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-435", "Name": "Fresh Gulf Seafood", "Category": "Specialty Food Stores", "Address": "2528 S 24th St", "LATITUDE": 39.920683, "LONGITUDE": -75.187828, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 87.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 8.0, "Total Spend": 657.0, "Total Transactions": 30.0, "Total Customers": 20.0, "Median Spend per Transaction": 23.2, "Median Spend per Customer": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.187828, 39.920683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "Name": "Harbison Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "5725 Harbison Ave", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 105.0, "POI_CBG": 421010321003.0, "Median Dwell Time": 1.0, "Total Spend": 1600.0, "Total Transactions": 63.0, "Total Customers": 52.0, "Median Spend per Transaction": 25.5, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2014 S Broad St", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2019, "Total Visits": 2497.0, "Total Visitors": 1571.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 10.0, "Total Spend": 7676.0, "Total Transactions": 495.0, "Total Customers": 253.0, "Median Spend per Transaction": 11.22, "Median Spend per Customer": 19.52 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "Name": "Burlington", "Category": "Clothing Stores", "Address": "1563 Franklin Mills Cir", "LATITUDE": 40.087035, "LONGITUDE": -74.960571, "DATE_RANGE_START": 2019, "Total Visits": 2718.0, "Total Visitors": 2234.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 22.0, "Total Spend": 10304.0, "Total Transactions": 235.0, "Total Customers": 207.0, "Median Spend per Transaction": 32.99, "Median Spend per Customer": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -74.960571, 40.087035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-t7q", "Name": "TNS Diamonds", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "136 S 8th St Unit A", "LATITUDE": 39.94842, "LONGITUDE": -75.154396, "DATE_RANGE_START": 2019, "Total Visits": 3781.0, "Total Visitors": 3005.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 2.0, "Total Spend": 1089.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 127.0, "Median Spend per Customer": 127.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154396, 39.94842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p74-vfz", "Name": "Liberty Bell Bicycle", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "7741 Frankford Ave", "LATITUDE": 40.03991, "LONGITUDE": -75.031204, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 118.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 44.0, "Total Spend": 102.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.031204, 40.03991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnt-3qz", "Name": "JR's saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2663 E Norris St", "LATITUDE": 39.97411, "LONGITUDE": -75.12273, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 83.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 78.0, "Total Spend": 674.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 202.21, "Median Spend per Customer": 202.21 }, "geometry": { "type": "Point", "coordinates": [ -75.12273, 39.97411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "Name": "New London Pizza", "Category": "Restaurants and Other Eating Places", "Address": "500 E Wyoming Ave", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010289013.0, "Median Dwell Time": null, "Total Spend": 3808.0, "Total Transactions": 183.0, "Total Customers": 133.0, "Median Spend per Transaction": 16.22, "Median Spend per Customer": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-kpv", "Name": "Artisans On the Avenue", "Category": "Clothing Stores", "Address": "8440 Germantown Ave", "LATITUDE": 40.075688, "LONGITUDE": -75.206238, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 27.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 11.0, "Total Spend": 444.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 133.15, "Median Spend per Customer": 133.15 }, "geometry": { "type": "Point", "coordinates": [ -75.206238, 40.075688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914447, "LONGITUDE": -75.156842, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 8.0, "Total Spend": 1602.0, "Total Transactions": 177.0, "Total Customers": 103.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.156842, 39.914447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y9z", "Name": "Delightful Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "906 Arch St", "LATITUDE": 39.953218, "LONGITUDE": -75.155064, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 153.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 1220.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 26.81, "Median Spend per Customer": 26.81 }, "geometry": { "type": "Point", "coordinates": [ -75.155064, 39.953218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "Name": "Blue Corn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "940 S 9th St", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2019, "Total Visits": 693.0, "Total Visitors": 561.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 34.0, "Total Spend": 88.0, "Total Transactions": 17.0, "Total Customers": 8.0, "Median Spend per Transaction": 4.5, "Median Spend per Customer": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pmb-7qz", "Name": "Voyeur Nightclub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1221 Saint James St", "LATITUDE": 39.948348, "LONGITUDE": -75.161699, "DATE_RANGE_START": 2019, "Total Visits": 836.0, "Total Visitors": 568.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 56.0, "Total Spend": 32094.0, "Total Transactions": 1413.0, "Total Customers": 893.0, "Median Spend per Transaction": 19.9, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161699, 39.948348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-st9", "Name": "Osteria", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "640 N Broad St", "LATITUDE": 39.965046, "LONGITUDE": -75.161654, "DATE_RANGE_START": 2019, "Total Visits": 2080.0, "Total Visitors": 1401.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 101.0, "Total Spend": 19036.0, "Total Transactions": 200.0, "Total Customers": 192.0, "Median Spend per Transaction": 61.3, "Median Spend per Customer": 62.65 }, "geometry": { "type": "Point", "coordinates": [ -75.161654, 39.965046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm3-syv", "Name": "Bing Bing Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "1648 E Passyunk Ave", "LATITUDE": 39.928965, "LONGITUDE": -75.164747, "DATE_RANGE_START": 2019, "Total Visits": 270.0, "Total Visitors": 237.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 22.0, "Total Spend": 30231.0, "Total Transactions": 596.0, "Total Customers": 571.0, "Median Spend per Transaction": 42.94, "Median Spend per Customer": 44.39 }, "geometry": { "type": "Point", "coordinates": [ -75.164747, 39.928965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "Name": "Xi'an Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "4000 Chestnut St", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2019, "Total Visits": 203.0, "Total Visitors": 197.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 11.0, "Total Spend": 2772.0, "Total Transactions": 98.0, "Total Customers": 85.0, "Median Spend per Transaction": 22.52, "Median Spend per Customer": 24.54 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-5vf", "Name": "Mario Brothers Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2224 Cottman Ave", "LATITUDE": 40.048464, "LONGITUDE": -75.061807, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 108.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 21.0, "Total Spend": 290.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 13.13, "Median Spend per Customer": 13.13 }, "geometry": { "type": "Point", "coordinates": [ -75.061807, 40.048464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "Name": "In Riva", "Category": "Restaurants and Other Eating Places", "Address": "4116 Ridge Ave", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2019, "Total Visits": 1922.0, "Total Visitors": 1526.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 1.0, "Total Spend": 32282.0, "Total Transactions": 545.0, "Total Customers": 486.0, "Median Spend per Transaction": 47.25, "Median Spend per Customer": 48.97 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dwf-wkz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "3000 Island Ave", "LATITUDE": 39.902609, "LONGITUDE": -75.240437, "DATE_RANGE_START": 2019, "Total Visits": 811.0, "Total Visitors": 633.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 10.0, "Total Spend": 14.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 4.08, "Median Spend per Customer": 4.08 }, "geometry": { "type": "Point", "coordinates": [ -75.240437, 39.902609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "Name": "Hilltown Tavern", "Category": "Restaurants and Other Eating Places", "Address": "326 Roxborough Ave", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 48.0, "POI_CBG": 421010213004.0, "Median Dwell Time": 37.0, "Total Spend": 14295.0, "Total Transactions": 356.0, "Total Customers": 232.0, "Median Spend per Transaction": 30.02, "Median Spend per Customer": 46.67 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7w-psq", "Name": "England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2840 Cottman Ave", "LATITUDE": 40.043231, "LONGITUDE": -75.052729, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 72.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 29.0, "Total Spend": 832.0, "Total Transactions": 35.0, "Total Customers": 25.0, "Median Spend per Transaction": 23.19, "Median Spend per Customer": 30.26 }, "geometry": { "type": "Point", "coordinates": [ -75.052729, 40.043231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1939 Callowhill St", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2019, "Total Visits": 343.0, "Total Visitors": 268.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 41.0, "Total Spend": 23943.0, "Total Transactions": 430.0, "Total Customers": 403.0, "Median Spend per Transaction": 40.46, "Median Spend per Customer": 40.81 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "Name": "Pizzeria Cappelli", "Category": "Restaurants and Other Eating Places", "Address": "209 S 13th St", "LATITUDE": 39.948456, "LONGITUDE": -75.162098, "DATE_RANGE_START": 2019, "Total Visits": 207.0, "Total Visitors": 163.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 35.0, "Total Spend": 8638.0, "Total Transactions": 681.0, "Total Customers": 568.0, "Median Spend per Transaction": 9.9, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162098, 39.948456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "Name": "Crazy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1837 Chestnut St", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2019, "Total Visits": 496.0, "Total Visitors": 385.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 61.0, "Total Spend": 12876.0, "Total Transactions": 423.0, "Total Customers": 378.0, "Median Spend per Transaction": 22.48, "Median Spend per Customer": 25.52 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 10th St", "LATITUDE": 39.931641, "LONGITUDE": -75.160608, "DATE_RANGE_START": 2019, "Total Visits": 200.0, "Total Visitors": 130.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 13.0, "Total Spend": 4156.0, "Total Transactions": 780.0, "Total Customers": 411.0, "Median Spend per Transaction": 4.19, "Median Spend per Customer": 6.46 }, "geometry": { "type": "Point", "coordinates": [ -75.160608, 39.931641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vzz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "525 Arch St", "LATITUDE": 39.953037, "LONGITUDE": -75.149632, "DATE_RANGE_START": 2019, "Total Visits": 830.0, "Total Visitors": 740.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 6.0, "Total Spend": 5351.0, "Total Transactions": 904.0, "Total Customers": 483.0, "Median Spend per Transaction": 4.81, "Median Spend per Customer": 5.94 }, "geometry": { "type": "Point", "coordinates": [ -75.149632, 39.953037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2620 Cottman Ave", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2019, "Total Visits": 1557.0, "Total Visitors": 1248.0, "POI_CBG": 421010314021.0, "Median Dwell Time": 9.0, "Total Spend": 5184.0, "Total Transactions": 162.0, "Total Customers": 140.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 27.26 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-qmk", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030627, "LONGITUDE": -75.102315, "DATE_RANGE_START": 2019, "Total Visits": 1303.0, "Total Visitors": 1118.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 7.0, "Total Spend": 16207.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 387.66, "Median Spend per Customer": 661.97 }, "geometry": { "type": "Point", "coordinates": [ -75.102315, 40.030627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.991664, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 122.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 131.0, "Total Spend": 1172.0, "Total Transactions": 77.0, "Total Customers": 43.0, "Median Spend per Transaction": 7.27, "Median Spend per Customer": 15.33 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.991664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "Name": "Petrovsky Market", "Category": "Specialty Food Stores", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2019, "Total Visits": 1211.0, "Total Visitors": 710.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 8.0, "Total Spend": 16029.0, "Total Transactions": 520.0, "Total Customers": 283.0, "Median Spend per Transaction": 20.7, "Median Spend per Customer": 35.47 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "Name": "Arch Pharmacy", "Category": "Health and Personal Care Stores", "Address": "933 Arch St", "LATITUDE": 39.953757, "LONGITUDE": -75.15607, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 205.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 94.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.5, "Median Spend per Customer": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15607, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j7q", "Name": "Boyds Philadelphia", "Category": "Clothing Stores", "Address": "1818 Chestnut St", "LATITUDE": 39.951667, "LONGITUDE": -75.171279, "DATE_RANGE_START": 2019, "Total Visits": 868.0, "Total Visitors": 533.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 88.0, "Total Spend": 44929.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 1901.0, "Median Spend per Customer": 3348.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171279, 39.951667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-975", "Name": "Piper Boutique", "Category": "Clothing Stores", "Address": "140 S 34th St", "LATITUDE": 39.953175, "LONGITUDE": -75.192257, "DATE_RANGE_START": 2019, "Total Visits": 303.0, "Total Visitors": 232.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 58.0, "Total Spend": 1976.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 85.55, "Median Spend per Customer": 85.55 }, "geometry": { "type": "Point", "coordinates": [ -75.192257, 39.953175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-z9f", "Name": "Neighborhood Pharmacy", "Category": "Health and Personal Care Stores", "Address": "5701 Chestnut St", "LATITUDE": 39.959949, "LONGITUDE": -75.235332, "DATE_RANGE_START": 2019, "Total Visits": 130.0, "Total Visitors": 103.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 130.0, "Total Spend": 559.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 75.75, "Median Spend per Customer": 75.75 }, "geometry": { "type": "Point", "coordinates": [ -75.235332, 39.959949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2400 Castor Ave", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2019, "Total Visits": 5613.0, "Total Visitors": 3899.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 6.0, "Total Spend": 16919.0, "Total Transactions": 746.0, "Total Customers": 538.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-28v", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "780 Adams Ave", "LATITUDE": 40.030475, "LONGITUDE": -75.104415, "DATE_RANGE_START": 2019, "Total Visits": 3513.0, "Total Visitors": 2692.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 5.0, "Total Spend": 257.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 7.12, "Median Spend per Customer": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.104415, 40.030475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3850 Lancaster Ave", "LATITUDE": 39.961276, "LONGITUDE": -75.199304, "DATE_RANGE_START": 2019, "Total Visits": 811.0, "Total Visitors": 561.0, "POI_CBG": 421010091003.0, "Median Dwell Time": 110.0, "Total Spend": 3336.0, "Total Transactions": 100.0, "Total Customers": 70.0, "Median Spend per Transaction": 15.6, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.199304, 39.961276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4000 Monument Rd", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2019, "Total Visits": 8119.0, "Total Visitors": 5542.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 19.0, "Total Spend": 690585.0, "Total Transactions": 14483.0, "Total Customers": 8550.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "7350 Oxford Ave", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2019, "Total Visits": 245.0, "Total Visitors": 192.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 52.0, "Total Spend": 862.0, "Total Transactions": 57.0, "Total Customers": 55.0, "Median Spend per Transaction": 11.22, "Median Spend per Customer": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7000 Chester Ave", "LATITUDE": 39.923566, "LONGITUDE": -75.245262, "DATE_RANGE_START": 2019, "Total Visits": 1757.0, "Total Visitors": 1318.0, "POI_CBG": 421010064003.0, "Median Dwell Time": 5.0, "Total Spend": 3336.0, "Total Transactions": 573.0, "Total Customers": 331.0, "Median Spend per Transaction": 5.06, "Median Spend per Customer": 7.23 }, "geometry": { "type": "Point", "coordinates": [ -75.245262, 39.923566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgg-yvz", "Name": "Favors", "Category": "Restaurants and Other Eating Places", "Address": "2867 N Taylor St", "LATITUDE": 39.9991, "LONGITUDE": -75.171017, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 60.0, "POI_CBG": 421010172024.0, "Median Dwell Time": 44.0, "Total Spend": 134.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 6.89, "Median Spend per Customer": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.171017, 39.9991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmb-cqz", "Name": "Chapterhouse Cafe & Gallery", "Category": "Restaurants and Other Eating Places", "Address": "620 S 9th St", "LATITUDE": 39.941901, "LONGITUDE": -75.157292, "DATE_RANGE_START": 2019, "Total Visits": 3686.0, "Total Visitors": 2584.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 28.0, "Total Spend": 3419.0, "Total Transactions": 595.0, "Total Customers": 385.0, "Median Spend per Transaction": 4.86, "Median Spend per Customer": 6.16 }, "geometry": { "type": "Point", "coordinates": [ -75.157292, 39.941901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp5-ct9", "Name": "Crispy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1858 E Allegheny Ave", "LATITUDE": 39.995185, "LONGITUDE": -75.112579, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 25.0, "POI_CBG": 421010178001.0, "Median Dwell Time": 8.0, "Total Spend": 758.0, "Total Transactions": 32.0, "Total Customers": 32.0, "Median Spend per Transaction": 23.3, "Median Spend per Customer": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.112579, 39.995185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2445 N Broad St", "LATITUDE": 39.990666, "LONGITUDE": -75.154886, "DATE_RANGE_START": 2019, "Total Visits": 493.0, "Total Visitors": 393.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 17.0, "Total Spend": 9527.0, "Total Transactions": 268.0, "Total Customers": 202.0, "Median Spend per Transaction": 18.44, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154886, 39.990666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@63s-dvw-bhq", "Name": "Pm Food Market", "Category": "Grocery Stores", "Address": "61 N 52nd St", "LATITUDE": 39.961425, "LONGITUDE": -75.224249, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 90.0, "POI_CBG": 421010093003.0, "Median Dwell Time": 5.0, "Total Spend": 166.0, "Total Transactions": 22.0, "Total Customers": 15.0, "Median Spend per Transaction": 6.47, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224249, 39.961425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "Name": "3 Brothers Pizza & Pasta", "Category": "Restaurants and Other Eating Places", "Address": "2621 E Ontario St", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421010379002.0, "Median Dwell Time": 1.0, "Total Spend": 911.0, "Total Transactions": 102.0, "Total Customers": 62.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 11.48 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4813 Tacony St # 25", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2019, "Total Visits": 2207.0, "Total Visitors": 1829.0, "POI_CBG": 421010380002.0, "Median Dwell Time": 4.0, "Total Spend": 13108.0, "Total Transactions": 593.0, "Total Customers": 446.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.01 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "Name": "Athleta", "Category": "Clothing Stores", "Address": "1722 Walnut St", "LATITUDE": 39.94988, "LONGITUDE": -75.170326, "DATE_RANGE_START": 2019, "Total Visits": 803.0, "Total Visitors": 600.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 47.0, "Total Spend": 21538.0, "Total Transactions": 222.0, "Total Customers": 212.0, "Median Spend per Transaction": 79.0, "Median Spend per Customer": 82.99 }, "geometry": { "type": "Point", "coordinates": [ -75.170326, 39.94988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-zmk", "Name": "Touch of Gold", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "640 South St Ste A", "LATITUDE": 39.941921, "LONGITUDE": -75.153483, "DATE_RANGE_START": 2019, "Total Visits": 2100.0, "Total Visitors": 1601.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 27.0, "Total Spend": 2091.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 348.0, "Median Spend per Customer": 348.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153483, 39.941921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pnw-psq", "Name": "Unleashed by Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "180 W Girard Ave Ste 7", "LATITUDE": 39.969106, "LONGITUDE": -75.139264, "DATE_RANGE_START": 2019, "Total Visits": 865.0, "Total Visitors": 636.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 6.0, "Total Spend": 1317.0, "Total Transactions": 50.0, "Total Customers": 50.0, "Median Spend per Transaction": 19.92, "Median Spend per Customer": 19.92 }, "geometry": { "type": "Point", "coordinates": [ -75.139264, 39.969106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "Name": "Vintage Wine Bar", "Category": "Restaurants and Other Eating Places", "Address": "129 S 13th St", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2019, "Total Visits": 396.0, "Total Visitors": 298.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 40.0, "Total Spend": 13154.0, "Total Transactions": 260.0, "Total Customers": 233.0, "Median Spend per Transaction": 36.74, "Median Spend per Customer": 37.24 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-5zz", "Name": "Panda Garden", "Category": "Restaurants and Other Eating Places", "Address": "130 S 11th St", "LATITUDE": 39.949206, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2019, "Total Visits": 520.0, "Total Visitors": 248.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 264.0, "Total Spend": 728.0, "Total Transactions": 47.0, "Total Customers": 45.0, "Median Spend per Transaction": 14.37, "Median Spend per Customer": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.949206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "237 S 10th St", "LATITUDE": 39.947166, "LONGITUDE": -75.157345, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 85.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 1.0, "Total Spend": 2979.0, "Total Transactions": 103.0, "Total Customers": 85.0, "Median Spend per Transaction": 21.06, "Median Spend per Customer": 22.23 }, "geometry": { "type": "Point", "coordinates": [ -75.157345, 39.947166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "Name": "Spice C", "Category": "Restaurants and Other Eating Places", "Address": "131 N 10th St", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 168.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 212.0, "Total Spend": 1068.0, "Total Transactions": 25.0, "Total Customers": 23.0, "Median Spend per Transaction": 28.22, "Median Spend per Customer": 26.94 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "Name": "Spice 28", "Category": "Restaurants and Other Eating Places", "Address": "1228 Chestnut St", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2019, "Total Visits": 433.0, "Total Visitors": 350.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 46.0, "Total Spend": 6025.0, "Total Transactions": 230.0, "Total Customers": 195.0, "Median Spend per Transaction": 18.27, "Median Spend per Customer": 21.55 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "Name": "Fiesta Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "8339 Germantown Ave", "LATITUDE": 40.075222, "LONGITUDE": -75.204582, "DATE_RANGE_START": 2019, "Total Visits": 268.0, "Total Visitors": 240.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 28.0, "Total Spend": 2925.0, "Total Transactions": 108.0, "Total Customers": 102.0, "Median Spend per Transaction": 19.71, "Median Spend per Customer": 22.95 }, "geometry": { "type": "Point", "coordinates": [ -75.204582, 40.075222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8901 Franford Ave", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 326.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 4.0, "Total Spend": 15253.0, "Total Transactions": 1411.0, "Total Customers": 848.0, "Median Spend per Transaction": 8.85, "Median Spend per Customer": 11.76 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-zfz", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "60 N 23rd St", "LATITUDE": 39.956578, "LONGITUDE": -75.177927, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 137.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 131.0, "Total Spend": 1514.0, "Total Transactions": 122.0, "Total Customers": 115.0, "Median Spend per Transaction": 10.3, "Median Spend per Customer": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.177927, 39.956578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-nqz", "Name": "Pret A Manger", "Category": "Restaurants and Other Eating Places", "Address": "3730 Walnut St", "LATITUDE": 39.952934, "LONGITUDE": -75.19846, "DATE_RANGE_START": 2019, "Total Visits": 4666.0, "Total Visitors": 2392.0, "POI_CBG": 421010088011.0, "Median Dwell Time": 191.0, "Total Spend": 33.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 5.43, "Median Spend per Customer": 5.43 }, "geometry": { "type": "Point", "coordinates": [ -75.19846, 39.952934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "717 E Girard Ave", "LATITUDE": 39.972318, "LONGITUDE": -75.125675, "DATE_RANGE_START": 2019, "Total Visits": 190.0, "Total Visitors": 122.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 10.0, "Total Spend": 3468.0, "Total Transactions": 601.0, "Total Customers": 370.0, "Median Spend per Transaction": 4.64, "Median Spend per Customer": 6.02 }, "geometry": { "type": "Point", "coordinates": [ -75.125675, 39.972318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "Name": "Arctic Scoop", "Category": "Restaurants and Other Eating Places", "Address": "1812 E Passyunk Ave", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 137.0, "Total Spend": 3384.0, "Total Transactions": 331.0, "Total Customers": 292.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp4-wrk", "Name": "Cosan Grocery Store", "Category": "Grocery Stores", "Address": "159 W Huntingdon St", "LATITUDE": 39.98972, "LONGITUDE": -75.133321, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 20.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 5.0, "Total Spend": 27.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.133321, 39.98972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj3-3nq", "Name": "Mora Mini Market", "Category": "Grocery Stores", "Address": "4501 N 19th St", "LATITUDE": 40.022573, "LONGITUDE": -75.156258, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 22.0, "POI_CBG": 421010280001.0, "Median Dwell Time": 158.0, "Total Spend": 831.0, "Total Transactions": 105.0, "Total Customers": 62.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156258, 40.022573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "Name": "Mid Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2800 W Dauphin St Ste 420", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2019, "Total Visits": 368.0, "Total Visitors": 178.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 152.0, "Total Spend": 342.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 12.92, "Median Spend per Customer": 12.92 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnw-nnq", "Name": "Kung Fu Necktie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1250 N Front St", "LATITUDE": 39.970272, "LONGITUDE": -75.135925, "DATE_RANGE_START": 2019, "Total Visits": 698.0, "Total Visitors": 600.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 33.0, "Total Spend": 4642.0, "Total Transactions": 212.0, "Total Customers": 185.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 39.970272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-4y9", "Name": "Vino Volo", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8500 Essington Ave # 8800", "LATITUDE": 39.875903, "LONGITUDE": -75.243029, "DATE_RANGE_START": 2019, "Total Visits": 454923.0, "Total Visitors": 244998.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 76.0, "Total Spend": 245.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243029, 39.875903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "Name": "Cafe Saigon", "Category": "Restaurants and Other Eating Places", "Address": "827 Adams Ave", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2019, "Total Visits": 531.0, "Total Visitors": 433.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 18.0, "Total Spend": 4656.0, "Total Transactions": 112.0, "Total Customers": 78.0, "Median Spend per Transaction": 24.26, "Median Spend per Customer": 33.38 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-q75", "Name": "Stacy's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7856 Haverford Ave", "LATITUDE": 39.979079, "LONGITUDE": -75.268686, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 108.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 12.0, "Total Spend": 302.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 21.71 }, "geometry": { "type": "Point", "coordinates": [ -75.268686, 39.979079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-2ff", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6200 Stenton Ave", "LATITUDE": 40.057857, "LONGITUDE": -75.164182, "DATE_RANGE_START": 2019, "Total Visits": 498.0, "Total Visitors": 333.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 35.0, "Total Spend": 2364.0, "Total Transactions": 23.0, "Total Customers": 22.0, "Median Spend per Transaction": 41.89, "Median Spend per Customer": 42.22 }, "geometry": { "type": "Point", "coordinates": [ -75.164182, 40.057857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-6x5", "Name": "Ocean Prime", "Category": "Restaurants and Other Eating Places", "Address": "124 S 15th St", "LATITUDE": 39.950182, "LONGITUDE": -75.165953, "DATE_RANGE_START": 2019, "Total Visits": 1314.0, "Total Visitors": 1063.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 47.0, "Total Spend": 3858.0, "Total Transactions": 23.0, "Total Customers": 22.0, "Median Spend per Transaction": 179.54, "Median Spend per Customer": 182.32 }, "geometry": { "type": "Point", "coordinates": [ -75.165953, 39.950182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5601 Vine St # 55", "LATITUDE": 39.966061, "LONGITUDE": -75.233588, "DATE_RANGE_START": 2019, "Total Visits": 490.0, "Total Visitors": 360.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 17.0, "Total Spend": 12875.0, "Total Transactions": 346.0, "Total Customers": 265.0, "Median Spend per Transaction": 20.78, "Median Spend per Customer": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.233588, 39.966061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "22 W Girard Ave", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2019, "Total Visits": 511.0, "Total Visitors": 375.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 8.0, "Total Spend": 16786.0, "Total Transactions": 1926.0, "Total Customers": 1328.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 9.05 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pnw-ndv", "Name": "Cake Life Bake Shop", "Category": "Restaurants and Other Eating Places", "Address": "1306 Frankford Ave", "LATITUDE": 39.970543, "LONGITUDE": -75.134645, "DATE_RANGE_START": 2019, "Total Visits": 1629.0, "Total Visitors": 1116.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 60.0, "Total Spend": 10494.0, "Total Transactions": 638.0, "Total Customers": 478.0, "Median Spend per Transaction": 11.03, "Median Spend per Customer": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.134645, 39.970543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phy-skf", "Name": "Phoenix Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4417 N 6th St", "LATITUDE": 40.018943, "LONGITUDE": -75.136372, "DATE_RANGE_START": 2019, "Total Visits": 343.0, "Total Visitors": 210.0, "POI_CBG": 421010197001.0, "Median Dwell Time": 81.0, "Total Spend": 262.0, "Total Transactions": 62.0, "Total Customers": 25.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 7.64 }, "geometry": { "type": "Point", "coordinates": [ -75.136372, 40.018943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-vfz", "Name": "Pizza Hut", "Category": "Restaurants and Other Eating Places", "Address": "7400 Bustleton Ave", "LATITUDE": 40.05103, "LONGITUDE": -75.059628, "DATE_RANGE_START": 2019, "Total Visits": 7146.0, "Total Visitors": 4769.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 20.0, "Total Spend": 2458.0, "Total Transactions": 123.0, "Total Customers": 103.0, "Median Spend per Transaction": 16.86, "Median Spend per Customer": 18.08 }, "geometry": { "type": "Point", "coordinates": [ -75.059628, 40.05103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1700 N 28th St", "LATITUDE": 39.981705, "LONGITUDE": -75.180442, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 63.0, "POI_CBG": 421010149004.0, "Median Dwell Time": 51.0, "Total Spend": 207.0, "Total Transactions": 22.0, "Total Customers": 15.0, "Median Spend per Transaction": 8.06, "Median Spend per Customer": 8.06 }, "geometry": { "type": "Point", "coordinates": [ -75.180442, 39.981705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992304, "LONGITUDE": -75.099808, "DATE_RANGE_START": 2019, "Total Visits": 366.0, "Total Visitors": 338.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 17.0, "Total Spend": 345.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099808, 39.992304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "Name": "Rittenhouse Market", "Category": "Grocery Stores", "Address": "1733 Spruce St", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2019, "Total Visits": 3366.0, "Total Visitors": 2150.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 28.0, "Total Spend": 46012.0, "Total Transactions": 2064.0, "Total Customers": 928.0, "Median Spend per Transaction": 15.26, "Median Spend per Customer": 24.93 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8f-9cq", "Name": "D & R Food Market", "Category": "Grocery Stores", "Address": "1801 Orthodox St", "LATITUDE": 40.012762, "LONGITUDE": -75.081478, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 45.0, "POI_CBG": 421010300005.0, "Median Dwell Time": 17.0, "Total Spend": 144.0, "Total Transactions": 17.0, "Total Customers": 15.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 6.97 }, "geometry": { "type": "Point", "coordinates": [ -75.081478, 40.012762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1215 Filbert St", "LATITUDE": 39.953206, "LONGITUDE": -75.160514, "DATE_RANGE_START": 2019, "Total Visits": 700.0, "Total Visitors": 626.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 2867.0, "Total Transactions": 311.0, "Total Customers": 218.0, "Median Spend per Transaction": 6.17, "Median Spend per Customer": 8.27 }, "geometry": { "type": "Point", "coordinates": [ -75.160514, 39.953206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "701 W Lehigh Ave", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2019, "Total Visits": 443.0, "Total Visitors": 365.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 9.0, "Total Spend": 3862.0, "Total Transactions": 396.0, "Total Customers": 295.0, "Median Spend per Transaction": 8.8, "Median Spend per Customer": 10.64 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-226@628-p86-hbk", "Name": "Bishos", "Category": "Restaurants and Other Eating Places", "Address": "7950 Oxford Ave", "LATITUDE": 40.075828, "LONGITUDE": -75.085199, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 153.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 9.0, "Total Spend": 770.0, "Total Transactions": 53.0, "Total Customers": 35.0, "Median Spend per Transaction": 12.25, "Median Spend per Customer": 18.75 }, "geometry": { "type": "Point", "coordinates": [ -75.085199, 40.075828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-zxq", "Name": "Federal Donuts South Street", "Category": "Restaurants and Other Eating Places", "Address": "540 South St", "LATITUDE": 39.94181, "LONGITUDE": -75.152224, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 197.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 2.0, "Total Spend": 6454.0, "Total Transactions": 528.0, "Total Customers": 491.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152224, 39.94181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6323 Castor Ave", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 155.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 3.0, "Total Spend": 1557.0, "Total Transactions": 270.0, "Total Customers": 163.0, "Median Spend per Transaction": 4.56, "Median Spend per Customer": 5.81 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "150 N Broad St", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2019, "Total Visits": 1111.0, "Total Visitors": 798.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 5.0, "Total Spend": 1548.0, "Total Transactions": 217.0, "Total Customers": 137.0, "Median Spend per Transaction": 5.61, "Median Spend per Customer": 6.65 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-4sq", "Name": "Potbelly Sandwich Works", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave", "LATITUDE": 39.979564, "LONGITUDE": -75.153441, "DATE_RANGE_START": 2019, "Total Visits": 265.0, "Total Visitors": 145.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 154.0, "Total Spend": 8415.0, "Total Transactions": 781.0, "Total Customers": 526.0, "Median Spend per Transaction": 9.61, "Median Spend per Customer": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153441, 39.979564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p8j-bx5", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "7366 Frankford Ave", "LATITUDE": 40.037953, "LONGITUDE": -75.038426, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 47.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 2.0, "Total Spend": 1115.0, "Total Transactions": 162.0, "Total Customers": 157.0, "Median Spend per Transaction": 5.44, "Median Spend per Customer": 5.57 }, "geometry": { "type": "Point", "coordinates": [ -75.038426, 40.037953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4849 Market St", "LATITUDE": 39.959641, "LONGITUDE": -75.218508, "DATE_RANGE_START": 2019, "Total Visits": 608.0, "Total Visitors": 453.0, "POI_CBG": 421010104004.0, "Median Dwell Time": 10.0, "Total Spend": 1998.0, "Total Transactions": 148.0, "Total Customers": 93.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.218508, 39.959641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@63s-dvv-rx5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6731 Woodland Ave", "LATITUDE": 39.923209, "LONGITUDE": -75.238375, "DATE_RANGE_START": 2019, "Total Visits": 525.0, "Total Visitors": 401.0, "POI_CBG": 421010063003.0, "Median Dwell Time": 7.0, "Total Spend": 1288.0, "Total Transactions": 72.0, "Total Customers": 35.0, "Median Spend per Transaction": 8.36, "Median Spend per Customer": 21.55 }, "geometry": { "type": "Point", "coordinates": [ -75.238375, 39.923209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "Name": "Hair Fashion & Beyond", "Category": "Health and Personal Care Stores", "Address": "1600 N Broad St Ste 9", "LATITUDE": 39.978135, "LONGITUDE": -75.158545, "DATE_RANGE_START": 2019, "Total Visits": 2232.0, "Total Visitors": 1632.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 22.0, "Total Spend": 7835.0, "Total Transactions": 400.0, "Total Customers": 341.0, "Median Spend per Transaction": 15.09, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.158545, 39.978135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-5fz", "Name": "Madison K", "Category": "Health and Personal Care Stores", "Address": "600 N 2nd St", "LATITUDE": 39.961127, "LONGITUDE": -75.141646, "DATE_RANGE_START": 2019, "Total Visits": 866.0, "Total Visitors": 678.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 30.0, "Total Spend": 215.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 64.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141646, 39.961127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 18th St", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2019, "Total Visits": 870.0, "Total Visitors": 411.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 4109.0, "Total Transactions": 733.0, "Total Customers": 370.0, "Median Spend per Transaction": 4.54, "Median Spend per Customer": 8.04 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4421 N Broad St", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2019, "Total Visits": 1939.0, "Total Visitors": 1318.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 7.0, "Total Spend": 6890.0, "Total Transactions": 400.0, "Total Customers": 298.0, "Median Spend per Transaction": 15.01, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-3wk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10950 E Roosevelt Blvd", "LATITUDE": 40.09991, "LONGITUDE": -75.009414, "DATE_RANGE_START": 2019, "Total Visits": 2672.0, "Total Visitors": 1984.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 2.0, "Total Spend": 678.0, "Total Transactions": 33.0, "Total Customers": 22.0, "Median Spend per Transaction": 16.15, "Median Spend per Customer": 36.64 }, "geometry": { "type": "Point", "coordinates": [ -75.009414, 40.09991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5756 Baltimore Ave # 74", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2019, "Total Visits": 4672.0, "Total Visitors": 2619.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 5.0, "Total Spend": 9845.0, "Total Transactions": 568.0, "Total Customers": 355.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6401 Harbison Ave", "LATITUDE": 40.032146, "LONGITUDE": -75.063064, "DATE_RANGE_START": 2019, "Total Visits": 1502.0, "Total Visitors": 1006.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 4.0, "Total Spend": 14904.0, "Total Transactions": 706.0, "Total Customers": 406.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063064, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-b8v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1325 Point Breeze Ave", "LATITUDE": 39.934826, "LONGITUDE": -75.178911, "DATE_RANGE_START": 2019, "Total Visits": 250.0, "Total Visitors": 167.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 9.0, "Total Spend": 1788.0, "Total Transactions": 187.0, "Total Customers": 110.0, "Median Spend per Transaction": 7.13, "Median Spend per Customer": 9.08 }, "geometry": { "type": "Point", "coordinates": [ -75.178911, 39.934826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9q-jsq", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "9801 Roosevelt Blvd Ste 6", "LATITUDE": 40.084384, "LONGITUDE": -75.022786, "DATE_RANGE_START": 2019, "Total Visits": 247.0, "Total Visitors": 217.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 16.0, "Total Spend": 1426.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 113.96, "Median Spend per Customer": 113.96 }, "geometry": { "type": "Point", "coordinates": [ -75.022786, 40.084384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmd-snq", "Name": "Pure Design", "Category": "Florists", "Address": "500 S 22nd St", "LATITUDE": 39.946224, "LONGITUDE": -75.178525, "DATE_RANGE_START": 2019, "Total Visits": 142.0, "Total Visitors": 133.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 1.0, "Total Spend": 1394.0, "Total Transactions": 23.0, "Total Customers": 23.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178525, 39.946224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1500 Chestnut St", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2019, "Total Visits": 3803.0, "Total Visitors": 2678.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 140.0, "Total Spend": 13768.0, "Total Transactions": 525.0, "Total Customers": 436.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.067993, "LONGITUDE": -75.198422, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 202.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 24.0, "Total Spend": 3236.0, "Total Transactions": 103.0, "Total Customers": 92.0, "Median Spend per Transaction": 18.32, "Median Spend per Customer": 21.19 }, "geometry": { "type": "Point", "coordinates": [ -75.198422, 40.067993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-fzz", "Name": "The Children's Place", "Category": "Clothing Stores", "Address": "2230 W Oregon Ave", "LATITUDE": 39.917936, "LONGITUDE": -75.185126, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 6.0, "Total Spend": 195.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 27.34, "Median Spend per Customer": 27.34 }, "geometry": { "type": "Point", "coordinates": [ -75.185126, 39.917936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj9-4d9", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "5747 N Broad St", "LATITUDE": 40.039716, "LONGITUDE": -75.144869, "DATE_RANGE_START": 2019, "Total Visits": 325.0, "Total Visitors": 262.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 11.0, "Total Spend": 5574.0, "Total Transactions": 62.0, "Total Customers": 55.0, "Median Spend per Transaction": 69.98, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144869, 40.039716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-vxq", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "7300 Algon Ave", "LATITUDE": 40.055747, "LONGITUDE": -75.073256, "DATE_RANGE_START": 2019, "Total Visits": 546.0, "Total Visitors": 396.0, "POI_CBG": 421010338002.0, "Median Dwell Time": 24.0, "Total Spend": 311.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 32.5, "Median Spend per Customer": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073256, 40.055747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-gzf", "Name": "Maximum Level Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5118 Sansom St", "LATITUDE": 39.957373, "LONGITUDE": -75.223958, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 55.0, "POI_CBG": 421010085002.0, "Median Dwell Time": 28.0, "Total Spend": 463.0, "Total Transactions": 15.0, "Total Customers": 10.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 27.1 }, "geometry": { "type": "Point", "coordinates": [ -75.223958, 39.957373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pnx-sh5", "Name": "The International", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1624 N Front St", "LATITUDE": 39.974951, "LONGITUDE": -75.134534, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 55.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 41.0, "Total Spend": 13948.0, "Total Transactions": 353.0, "Total Customers": 280.0, "Median Spend per Transaction": 28.2, "Median Spend per Customer": 31.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134534, 39.974951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1300 N Broad St", "LATITUDE": 39.973475, "LONGITUDE": -75.159323, "DATE_RANGE_START": 2019, "Total Visits": 415.0, "Total Visitors": 350.0, "POI_CBG": 421010140003.0, "Median Dwell Time": 4.0, "Total Spend": 1580.0, "Total Transactions": 87.0, "Total Customers": 53.0, "Median Spend per Transaction": 16.09, "Median Spend per Customer": 24.15 }, "geometry": { "type": "Point", "coordinates": [ -75.159323, 39.973475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1900 Welsh Rd # 10", "LATITUDE": 40.08189, "LONGITUDE": -75.037804, "DATE_RANGE_START": 2019, "Total Visits": 473.0, "Total Visitors": 301.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 5.0, "Total Spend": 397.0, "Total Transactions": 48.0, "Total Customers": 22.0, "Median Spend per Transaction": 7.35, "Median Spend per Customer": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.037804, 40.08189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvw-9pv", "Name": "52nd Convenience Store", "Category": "Grocery Stores", "Address": "204 N 52nd St", "LATITUDE": 39.963376, "LONGITUDE": -75.224566, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 22.0, "POI_CBG": 421010093005.0, "Median Dwell Time": 302.0, "Total Spend": 968.0, "Total Transactions": 97.0, "Total Customers": 63.0, "Median Spend per Transaction": 9.31, "Median Spend per Customer": 10.73 }, "geometry": { "type": "Point", "coordinates": [ -75.224566, 39.963376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p86-hbk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7941 Oxford Ave", "LATITUDE": 40.075694, "LONGITUDE": -75.084798, "DATE_RANGE_START": 2019, "Total Visits": 705.0, "Total Visitors": 490.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 5.0, "Total Spend": 2732.0, "Total Transactions": 90.0, "Total Customers": 42.0, "Median Spend per Transaction": 19.72, "Median Spend per Customer": 35.67 }, "geometry": { "type": "Point", "coordinates": [ -75.084798, 40.075694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "Name": "Bok Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "800 Mifflin St", "LATITUDE": 39.925217, "LONGITUDE": -75.160024, "DATE_RANGE_START": 2019, "Total Visits": 1561.0, "Total Visitors": 1186.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 75.0, "Total Spend": 58840.0, "Total Transactions": 3380.0, "Total Customers": 2084.0, "Median Spend per Transaction": 14.37, "Median Spend per Customer": 20.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160024, 39.925217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "Name": "Javies Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "4901 Umbria St", "LATITUDE": 40.034848, "LONGITUDE": -75.234562, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 202.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 4.0, "Total Spend": 44216.0, "Total Transactions": 1602.0, "Total Customers": 971.0, "Median Spend per Transaction": 22.08, "Median Spend per Customer": 32.03 }, "geometry": { "type": "Point", "coordinates": [ -75.234562, 40.034848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp5-qxq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "338 E Allegheny Ave Ste 80", "LATITUDE": 39.997222, "LONGITUDE": -75.123675, "DATE_RANGE_START": 2019, "Total Visits": 296.0, "Total Visitors": 247.0, "POI_CBG": 421010177025.0, "Median Dwell Time": 6.0, "Total Spend": 1195.0, "Total Transactions": 42.0, "Total Customers": 20.0, "Median Spend per Transaction": 8.39, "Median Spend per Customer": 36.75 }, "geometry": { "type": "Point", "coordinates": [ -75.123675, 39.997222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-t5f", "Name": "Cavanaugh's Riverdeck", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "417 N Columbus Blvd", "LATITUDE": 39.957746, "LONGITUDE": -75.137247, "DATE_RANGE_START": 2019, "Total Visits": 491.0, "Total Visitors": 393.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 30.0, "Total Spend": 346.0, "Total Transactions": 27.0, "Total Customers": 18.0, "Median Spend per Transaction": 8.47, "Median Spend per Customer": 14.34 }, "geometry": { "type": "Point", "coordinates": [ -75.137247, 39.957746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "Name": "South", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "600 N Broad St", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2019, "Total Visits": 563.0, "Total Visitors": 483.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 85.0, "Total Spend": 8164.0, "Total Transactions": 296.0, "Total Customers": 252.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-835", "Name": "Luhv Vegan Deli", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953213, "LONGITUDE": -75.159384, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 3495.0, "Total Transactions": 300.0, "Total Customers": 243.0, "Median Spend per Transaction": 9.63, "Median Spend per Customer": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.159384, 39.953213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5400 Rising Sun Ave Ste 11", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2019, "Total Visits": 433.0, "Total Visitors": 313.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 6.0, "Total Spend": 865.0, "Total Transactions": 42.0, "Total Customers": 33.0, "Median Spend per Transaction": 15.98, "Median Spend per Customer": 14.59 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 W Cheltenham Ave", "LATITUDE": 40.081571, "LONGITUDE": -75.172058, "DATE_RANGE_START": 2019, "Total Visits": 1837.0, "Total Visitors": 1238.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 5.0, "Total Spend": 894.0, "Total Transactions": 68.0, "Total Customers": 33.0, "Median Spend per Transaction": 4.74, "Median Spend per Customer": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.172058, 40.081571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "Name": "Green Leaf Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7520 Haverford Ave", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 120.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 37.0, "Total Spend": 932.0, "Total Transactions": 43.0, "Total Customers": 28.0, "Median Spend per Transaction": 18.73, "Median Spend per Customer": 27.53 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "201 W Lehigh Ave", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2019, "Total Visits": 1118.0, "Total Visitors": 903.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 3.0, "Total Spend": 2877.0, "Total Transactions": 153.0, "Total Customers": 133.0, "Median Spend per Transaction": 19.71, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "Name": "El Poquito", "Category": "Restaurants and Other Eating Places", "Address": "8201 Germantown Ave", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 143.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 97.0, "Total Spend": 35756.0, "Total Transactions": 613.0, "Total Customers": 520.0, "Median Spend per Transaction": 44.24, "Median Spend per Customer": 61.12 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-225@628-pmf-sqz", "Name": "Rag & Bone", "Category": "Clothing Stores", "Address": "1601 Walnut St", "LATITUDE": 39.950021, "LONGITUDE": -75.167636, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 165.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 49.0, "Total Spend": 11187.0, "Total Transactions": 58.0, "Total Customers": 43.0, "Median Spend per Transaction": 111.0, "Median Spend per Customer": 195.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167636, 39.950021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@63s-dvw-mrk", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "4 S 52nd St", "LATITUDE": 39.959737, "LONGITUDE": -75.225178, "DATE_RANGE_START": 2019, "Total Visits": 301.0, "Total Visitors": 255.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 6.0, "Total Spend": 5802.0, "Total Transactions": 55.0, "Total Customers": 48.0, "Median Spend per Transaction": 69.98, "Median Spend per Customer": 75.59 }, "geometry": { "type": "Point", "coordinates": [ -75.225178, 39.959737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jgk", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "3 Snyder Ave", "LATITUDE": 39.921384, "LONGITUDE": -75.145, "DATE_RANGE_START": 2019, "Total Visits": 696.0, "Total Visitors": 600.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 32.0, "Total Spend": 232.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 27.44, "Median Spend per Customer": 27.44 }, "geometry": { "type": "Point", "coordinates": [ -75.145, 39.921384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-h5z", "Name": "Buena Onda", "Category": "Restaurants and Other Eating Places", "Address": "1901 Callowhill St", "LATITUDE": 39.960932, "LONGITUDE": -75.170707, "DATE_RANGE_START": 2019, "Total Visits": 608.0, "Total Visitors": 338.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 646.0, "Total Spend": 17760.0, "Total Transactions": 823.0, "Total Customers": 666.0, "Median Spend per Transaction": 17.67, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.170707, 39.960932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3366 Grant Ave", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2019, "Total Visits": 1409.0, "Total Visitors": 958.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 8.0, "Total Spend": 325.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 18.13, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-789", "Name": "VIX Emporium", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "5009 Baltimore Ave", "LATITUDE": 39.94808, "LONGITUDE": -75.223905, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 110.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 37.0, "Total Spend": 2327.0, "Total Transactions": 63.0, "Total Customers": 60.0, "Median Spend per Transaction": 29.43, "Median Spend per Customer": 30.46 }, "geometry": { "type": "Point", "coordinates": [ -75.223905, 39.94808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2116 S Columbus Blvd", "LATITUDE": 39.915644, "LONGITUDE": -75.139656, "DATE_RANGE_START": 2019, "Total Visits": 1069.0, "Total Visitors": 883.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 12.0, "Total Spend": 3553.0, "Total Transactions": 305.0, "Total Customers": 248.0, "Median Spend per Transaction": 7.58, "Median Spend per Customer": 8.66 }, "geometry": { "type": "Point", "coordinates": [ -75.139656, 39.915644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1434 E Washington Ln", "LATITUDE": 40.060394, "LONGITUDE": -75.164248, "DATE_RANGE_START": 2019, "Total Visits": 190.0, "Total Visitors": 163.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 8.0, "Total Spend": 18742.0, "Total Transactions": 455.0, "Total Customers": 363.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 30.65 }, "geometry": { "type": "Point", "coordinates": [ -75.164248, 40.060394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-dvz", "Name": "Lighthouse Thrift Shop", "Category": "Used Merchandise Stores", "Address": "6515 Rising Sun Ave", "LATITUDE": 40.051415, "LONGITUDE": -75.093615, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 58.0, "POI_CBG": 421010306007.0, "Median Dwell Time": 16.0, "Total Spend": 51.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.43, "Median Spend per Customer": 15.43 }, "geometry": { "type": "Point", "coordinates": [ -75.093615, 40.051415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmb-gkz", "Name": "Effie's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1127 Pine St", "LATITUDE": 39.945113, "LONGITUDE": -75.160611, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 23.0, "Total Spend": 3877.0, "Total Transactions": 55.0, "Total Customers": 55.0, "Median Spend per Transaction": 68.26, "Median Spend per Customer": 68.26 }, "geometry": { "type": "Point", "coordinates": [ -75.160611, 39.945113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "Name": "Dragon Phoenix House", "Category": "Restaurants and Other Eating Places", "Address": "2839 Tyson Ave", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2019, "Total Visits": 168.0, "Total Visitors": 77.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 136.0, "Total Spend": 1137.0, "Total Transactions": 43.0, "Total Customers": 35.0, "Median Spend per Transaction": 24.06, "Median Spend per Customer": 32.24 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-mrk", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "1601 Market St", "LATITUDE": 39.953042, "LONGITUDE": -75.167502, "DATE_RANGE_START": 2019, "Total Visits": 1596.0, "Total Visitors": 755.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 178.0, "Total Spend": 378.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 13.88, "Median Spend per Customer": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.167502, 39.953042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-9cq", "Name": "Federal Donuts West", "Category": "Restaurants and Other Eating Places", "Address": "3428 Sansom St", "LATITUDE": 39.953537, "LONGITUDE": -75.193139, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 57.0, "Total Spend": 18259.0, "Total Transactions": 1527.0, "Total Customers": 1331.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193139, 39.953537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "809 S Broad St", "LATITUDE": 39.94013, "LONGITUDE": -75.165831, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 172.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 5.0, "Total Spend": 5293.0, "Total Transactions": 991.0, "Total Customers": 520.0, "Median Spend per Transaction": 4.19, "Median Spend per Customer": 5.92 }, "geometry": { "type": "Point", "coordinates": [ -75.165831, 39.94013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-6x5", "Name": "The North Face", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1515 Walnut St", "LATITUDE": 39.949894, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2019, "Total Visits": 430.0, "Total Visitors": 323.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 61.0, "Total Spend": 7831.0, "Total Transactions": 95.0, "Total Customers": 88.0, "Median Spend per Transaction": 66.0, "Median Spend per Customer": 69.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3655 Aramingo Ave", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2019, "Total Visits": 650.0, "Total Visitors": 493.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 18.0, "Total Spend": 921.0, "Total Transactions": 63.0, "Total Customers": 60.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "Name": "Kostas Bar", "Category": "Restaurants and Other Eating Places", "Address": "15 W Girard Ave", "LATITUDE": 39.96897, "LONGITUDE": -75.134955, "DATE_RANGE_START": 2019, "Total Visits": 406.0, "Total Visitors": 275.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 58.0, "Total Spend": 21789.0, "Total Transactions": 1073.0, "Total Customers": 683.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134955, 39.96897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-r49", "Name": "IGA", "Category": "Grocery Stores", "Address": "2497 Aramingo Ave", "LATITUDE": 39.975356, "LONGITUDE": -75.119618, "DATE_RANGE_START": 2019, "Total Visits": 2154.0, "Total Visitors": 1203.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 11.0, "Total Spend": 3967.0, "Total Transactions": 140.0, "Total Customers": 95.0, "Median Spend per Transaction": 24.04, "Median Spend per Customer": 27.33 }, "geometry": { "type": "Point", "coordinates": [ -75.119618, 39.975356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm4-75z", "Name": "Emily's Cold Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "1600 S 16th St", "LATITUDE": 39.930875, "LONGITUDE": -75.171865, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 85.0, "POI_CBG": 421010030015.0, "Median Dwell Time": 10.0, "Total Spend": 268.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 24.5, "Median Spend per Customer": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171865, 39.930875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj6-fj9", "Name": "Sparks Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "199 Sparks St", "LATITUDE": 40.04458, "LONGITUDE": -75.123446, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 43.0, "POI_CBG": 421010274025.0, "Median Dwell Time": 169.0, "Total Spend": 506.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.123446, 40.04458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6c5", "Name": "Jefferson Apothecary", "Category": "Health and Personal Care Stores", "Address": "111 S 11th St Ste 1850", "LATITUDE": 39.949825, "LONGITUDE": -75.158415, "DATE_RANGE_START": 2019, "Total Visits": 24205.0, "Total Visitors": 10594.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 255.0, "Total Spend": 3838.0, "Total Transactions": 170.0, "Total Customers": 132.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.949825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "518 Port Royal Ave", "LATITUDE": 40.061169, "LONGITUDE": -75.237242, "DATE_RANGE_START": 2019, "Total Visits": 760.0, "Total Visitors": 541.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 7.0, "Total Spend": 6050.0, "Total Transactions": 247.0, "Total Customers": 183.0, "Median Spend per Transaction": 15.4, "Median Spend per Customer": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.237242, 40.061169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvw-jgk", "Name": "Sun Ray Drugs", "Category": "Health and Personal Care Stores", "Address": "142 S 52nd St", "LATITUDE": 39.957136, "LONGITUDE": -75.22573, "DATE_RANGE_START": 2019, "Total Visits": 320.0, "Total Visitors": 233.0, "POI_CBG": 421010085006.0, "Median Dwell Time": 9.0, "Total Spend": 1001.0, "Total Transactions": 72.0, "Total Customers": 47.0, "Median Spend per Transaction": 5.54, "Median Spend per Customer": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.22573, 39.957136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pj9-yvz", "Name": "My Daughters Wedding", "Category": "Clothing Stores", "Address": "5642 N 5th St", "LATITUDE": 40.037569, "LONGITUDE": -75.130408, "DATE_RANGE_START": 2019, "Total Visits": 1577.0, "Total Visitors": 1064.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 12.0, "Total Spend": 225.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 67.4, "Median Spend per Customer": 67.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130408, 40.037569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2715 S Front St", "LATITUDE": 39.91305, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2019, "Total Visits": 351.0, "Total Visitors": 305.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 1873.0, "Total Transactions": 112.0, "Total Customers": 70.0, "Median Spend per Transaction": 12.41, "Median Spend per Customer": 17.08 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.91305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4424 N Broad St", "LATITUDE": 40.021226, "LONGITUDE": -75.14987, "DATE_RANGE_START": 2019, "Total Visits": 1601.0, "Total Visitors": 1076.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 13.0, "Total Spend": 594.0, "Total Transactions": 57.0, "Total Customers": 40.0, "Median Spend per Transaction": 8.28, "Median Spend per Customer": 10.23 }, "geometry": { "type": "Point", "coordinates": [ -75.14987, 40.021226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "321 E Allegheny Ave # 25", "LATITUDE": 39.998177, "LONGITUDE": -75.124544, "DATE_RANGE_START": 2019, "Total Visits": 383.0, "Total Visitors": 268.0, "POI_CBG": 421010177025.0, "Median Dwell Time": 11.0, "Total Spend": 1193.0, "Total Transactions": 197.0, "Total Customers": 72.0, "Median Spend per Transaction": 3.7, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.124544, 39.998177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1512 Walnut St", "LATITUDE": 39.949499, "LONGITUDE": -75.166653, "DATE_RANGE_START": 2019, "Total Visits": 1541.0, "Total Visitors": 1191.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 17.0, "Total Spend": 26062.0, "Total Transactions": 2450.0, "Total Customers": 1686.0, "Median Spend per Transaction": 10.21, "Median Spend per Customer": 11.29 }, "geometry": { "type": "Point", "coordinates": [ -75.166653, 39.949499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2500 Wharton St", "LATITUDE": 39.935654, "LONGITUDE": -75.186436, "DATE_RANGE_START": 2019, "Total Visits": 463.0, "Total Visitors": 263.0, "POI_CBG": 421010032004.0, "Median Dwell Time": 99.0, "Total Spend": 202.0, "Total Transactions": 22.0, "Total Customers": 13.0, "Median Spend per Transaction": 8.48, "Median Spend per Customer": 15.62 }, "geometry": { "type": "Point", "coordinates": [ -75.186436, 39.935654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1434 Frankford Ave", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2019, "Total Visits": 1802.0, "Total Visitors": 810.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 58.0, "Total Spend": 2928.0, "Total Transactions": 53.0, "Total Customers": 50.0, "Median Spend per Transaction": 33.19, "Median Spend per Customer": 34.28 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-bhq", "Name": "Pet Friendly Dog Bakery", "Category": "Other Miscellaneous Store Retailers", "Address": "4324 Main St", "LATITUDE": 40.025005, "LONGITUDE": -75.222997, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 93.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 9.0, "Total Spend": 326.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.51, "Median Spend per Customer": 40.83 }, "geometry": { "type": "Point", "coordinates": [ -75.222997, 40.025005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-mzf", "Name": "Cantina Dos Segundos", "Category": "Restaurants and Other Eating Places", "Address": "931 N 2nd St", "LATITUDE": 39.964821, "LONGITUDE": -75.140233, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 118.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 37.0, "Total Spend": 31916.0, "Total Transactions": 731.0, "Total Customers": 668.0, "Median Spend per Transaction": 35.7, "Median Spend per Customer": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140233, 39.964821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "Name": "Oregon Steaks", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 143.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 3.0, "Total Spend": 7341.0, "Total Transactions": 586.0, "Total Customers": 396.0, "Median Spend per Transaction": 9.13, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@63s-dvw-dy9", "Name": "Coffee Deli Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "238 N 50th St", "LATITUDE": 39.963737, "LONGITUDE": -75.220341, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010093001.0, "Median Dwell Time": 360.0, "Total Spend": 78.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 7.53, "Median Spend per Customer": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.220341, 39.963737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2019, "Total Visits": 410.0, "Total Visitors": 343.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 10.0, "Total Spend": 12048.0, "Total Transactions": 903.0, "Total Customers": 680.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 12.53 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4163 Whitaker Ave", "LATITUDE": 40.012435, "LONGITUDE": -75.119008, "DATE_RANGE_START": 2019, "Total Visits": 924.0, "Total Visitors": 725.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 3.0, "Total Spend": 13520.0, "Total Transactions": 1238.0, "Total Customers": 848.0, "Median Spend per Transaction": 9.24, "Median Spend per Customer": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.119008, 40.012435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-pjv", "Name": "Murph's Bar", "Category": "Restaurants and Other Eating Places", "Address": "202 E Girard Ave", "LATITUDE": 39.968904, "LONGITUDE": -75.133385, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 25.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 20.0, "Total Spend": 2809.0, "Total Transactions": 112.0, "Total Customers": 85.0, "Median Spend per Transaction": 23.48, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133385, 39.968904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgh-xh5", "Name": "Cure Discount Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2310 N Broad St Frnt A", "LATITUDE": 39.988199, "LONGITUDE": -75.156168, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 27.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 58.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156168, 39.988199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-5mk", "Name": "West Elm", "Category": "Home Furnishings Stores", "Address": "1330 Chestnut St # 873", "LATITUDE": 39.950642, "LONGITUDE": -75.163094, "DATE_RANGE_START": 2019, "Total Visits": 1079.0, "Total Visitors": 705.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 115.0, "Total Spend": 13150.0, "Total Transactions": 115.0, "Total Customers": 113.0, "Median Spend per Transaction": 35.64, "Median Spend per Customer": 37.82 }, "geometry": { "type": "Point", "coordinates": [ -75.163094, 39.950642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029917, "LONGITUDE": -75.0978, "DATE_RANGE_START": 2019, "Total Visits": 8668.0, "Total Visitors": 5230.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 19.0, "Total Spend": 149712.0, "Total Transactions": 1189.0, "Total Customers": 666.0, "Median Spend per Transaction": 40.55, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.0978, 40.029917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-r6k", "Name": "Grindcore House", "Category": "Restaurants and Other Eating Places", "Address": "1515 S 4th St", "LATITUDE": 39.929019, "LONGITUDE": -75.151738, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 38.0, "POI_CBG": 421010027023.0, "Median Dwell Time": 21.0, "Total Spend": 11200.0, "Total Transactions": 1169.0, "Total Customers": 468.0, "Median Spend per Transaction": 7.62, "Median Spend per Customer": 14.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151738, 39.929019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "Name": "Tires Plus", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "800 Franklin Mills Cir", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2019, "Total Visits": 618.0, "Total Visitors": 515.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 63.0, "Total Spend": 2695.0, "Total Transactions": 25.0, "Total Customers": 25.0, "Median Spend per Transaction": 62.81, "Median Spend per Customer": 62.81 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "9001 Frankford Ave", "LATITUDE": 40.051659, "LONGITUDE": -75.008179, "DATE_RANGE_START": 2019, "Total Visits": 545.0, "Total Visitors": 420.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 4.0, "Total Spend": 3771.0, "Total Transactions": 180.0, "Total Customers": 92.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 26.16 }, "geometry": { "type": "Point", "coordinates": [ -75.008179, 40.051659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-yvz", "Name": "Panda Garden", "Category": "Restaurants and Other Eating Places", "Address": "5651 N 5th St", "LATITUDE": 40.037582, "LONGITUDE": -75.130053, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010274012.0, "Median Dwell Time": 105.0, "Total Spend": 255.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.130053, 40.037582 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "Name": "East Coast Tropicals", "Category": "Grocery Stores", "Address": "1615 N Hancock St", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 115.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 15.0, "Total Spend": 4956.0, "Total Transactions": 28.0, "Total Customers": 27.0, "Median Spend per Transaction": 120.48, "Median Spend per Customer": 121.07 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-w8v", "Name": "Main Street Madness", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3791 Main St", "LATITUDE": 40.018, "LONGITUDE": -75.213362, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 22.0, "POI_CBG": 421010209003.0, "Median Dwell Time": 5.0, "Total Spend": 212.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 42.5, "Median Spend per Customer": 42.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213362, 40.018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj6-99f", "Name": "Red Wine Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "701 Adams Ave", "LATITUDE": 40.033146, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 163.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 53.0, "Total Spend": 549.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 33.28, "Median Spend per Customer": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.033146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7913 Oxford Ave # 29", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2019, "Total Visits": 866.0, "Total Visitors": 633.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 3.0, "Total Spend": 73298.0, "Total Transactions": 4654.0, "Total Customers": 2052.0, "Median Spend per Transaction": 10.86, "Median Spend per Customer": 21.35 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "4371 Richmond St", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2019, "Total Visits": 1641.0, "Total Visitors": 770.0, "POI_CBG": 421010183001.0, "Median Dwell Time": 5.0, "Total Spend": 17270.0, "Total Transactions": 1849.0, "Total Customers": 605.0, "Median Spend per Transaction": 7.07, "Median Spend per Customer": 13.32 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "Name": "Red Lobster", "Category": "Restaurants and Other Eating Places", "Address": "9140 Roosevelt Blvd", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2019, "Total Visits": 1131.0, "Total Visitors": 929.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 63.0, "Total Spend": 17996.0, "Total Transactions": 308.0, "Total Customers": 265.0, "Median Spend per Transaction": 49.0, "Median Spend per Customer": 58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "Name": "Rice & Mix", "Category": "Restaurants and Other Eating Places", "Address": "128 S 12th St", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2019, "Total Visits": 313.0, "Total Visitors": 255.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 6.0, "Total Spend": 4263.0, "Total Transactions": 293.0, "Total Customers": 192.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "Name": "Cleavers", "Category": "Restaurants and Other Eating Places", "Address": "108 S 18th St", "LATITUDE": 39.951397, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2019, "Total Visits": 292.0, "Total Visitors": 273.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 11.0, "Total Spend": 23316.0, "Total Transactions": 1034.0, "Total Customers": 868.0, "Median Spend per Transaction": 16.74, "Median Spend per Customer": 20.68 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 39.951397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave Ste A", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2019, "Total Visits": 240.0, "Total Visitors": 205.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 5.0, "Total Spend": 34528.0, "Total Transactions": 3227.0, "Total Customers": 1976.0, "Median Spend per Transaction": 10.21, "Median Spend per Customer": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-w8v", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955482, "LONGITUDE": -75.18177, "DATE_RANGE_START": 2019, "Total Visits": 425.0, "Total Visitors": 380.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 9.0, "Total Spend": 19078.0, "Total Transactions": 2180.0, "Total Customers": 1721.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 9.49 }, "geometry": { "type": "Point", "coordinates": [ -75.18177, 39.955482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm7-qj9", "Name": "Cafe y Chocolate", "Category": "Restaurants and Other Eating Places", "Address": "1532 Snyder Ave", "LATITUDE": 39.924573, "LONGITUDE": -75.172685, "DATE_RANGE_START": 2019, "Total Visits": 538.0, "Total Visitors": 311.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 643.0, "Total Spend": 3053.0, "Total Transactions": 113.0, "Total Customers": 95.0, "Median Spend per Transaction": 26.95, "Median Spend per Customer": 30.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172685, 39.924573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "Name": "Quails", "Category": "Clothing Stores", "Address": "1428 Franklin Mills Cir", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 230.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 3886.0, "Total Transactions": 40.0, "Total Customers": 40.0, "Median Spend per Transaction": 83.75, "Median Spend per Customer": 83.75 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-rhq", "Name": "Moonshine Philly", "Category": "Restaurants and Other Eating Places", "Address": "1825 E Moyamensing Ave", "LATITUDE": 39.925012, "LONGITUDE": -75.151601, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 27.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 122.0, "Total Spend": 11979.0, "Total Transactions": 282.0, "Total Customers": 238.0, "Median Spend per Transaction": 36.58, "Median Spend per Customer": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151601, 39.925012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-ty9", "Name": "Sakura Japanese Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1521 Spring Garden St", "LATITUDE": 39.962988, "LONGITUDE": -75.163765, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 28.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 5.0, "Total Spend": 2607.0, "Total Transactions": 113.0, "Total Customers": 95.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 22.44 }, "geometry": { "type": "Point", "coordinates": [ -75.163765, 39.962988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "1100 S Columbus Blvd # 20", "LATITUDE": 39.932572, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2019, "Total Visits": 701.0, "Total Visitors": 621.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 8.0, "Total Spend": 6106.0, "Total Transactions": 110.0, "Total Customers": 92.0, "Median Spend per Transaction": 37.09, "Median Spend per Customer": 39.22 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "11725 Bustleton Ave", "LATITUDE": 40.119147, "LONGITUDE": -75.015143, "DATE_RANGE_START": 2019, "Total Visits": 5390.0, "Total Visitors": 2975.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 16.0, "Total Spend": 64150.0, "Total Transactions": 716.0, "Total Customers": 343.0, "Median Spend per Transaction": 36.73, "Median Spend per Customer": 51.1 }, "geometry": { "type": "Point", "coordinates": [ -75.015143, 40.119147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "Name": "Sue's Market", "Category": "Grocery Stores", "Address": "275 Saint James Pl", "LATITUDE": 39.946236, "LONGITUDE": -75.145477, "DATE_RANGE_START": 2019, "Total Visits": 1094.0, "Total Visitors": 725.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 120.0, "Total Spend": 5752.0, "Total Transactions": 400.0, "Total Customers": 128.0, "Median Spend per Transaction": 11.81, "Median Spend per Customer": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.145477, 39.946236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2801 W Dauphin St", "LATITUDE": 39.991985, "LONGITUDE": -75.178334, "DATE_RANGE_START": 2019, "Total Visits": 1522.0, "Total Visitors": 886.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 13.0, "Total Spend": 1897.0, "Total Transactions": 133.0, "Total Customers": 37.0, "Median Spend per Transaction": 3.36, "Median Spend per Customer": 27.88 }, "geometry": { "type": "Point", "coordinates": [ -75.178334, 39.991985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-r49", "Name": "The Richmond Bottle Shop", "Category": "Beer, Wine, and Liquor Stores", "Address": "2497 Aramingo Ave", "LATITUDE": 39.975358, "LONGITUDE": -75.119619, "DATE_RANGE_START": 2019, "Total Visits": 2137.0, "Total Visitors": 1198.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 11.0, "Total Spend": 368.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.51, "Median Spend per Customer": 36.56 }, "geometry": { "type": "Point", "coordinates": [ -75.119619, 39.975358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp5-5fz", "Name": "El Sabor Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "176 Diamond St", "LATITUDE": 39.981887, "LONGITUDE": -75.135939, "DATE_RANGE_START": 2019, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010157001.0, "Median Dwell Time": null, "Total Spend": 2179.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 42.57, "Median Spend per Customer": 42.57 }, "geometry": { "type": "Point", "coordinates": [ -75.135939, 39.981887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjk-rff", "Name": "The Cedars House", "Category": "Restaurants and Other Eating Places", "Address": "200 W Northwestern Ave", "LATITUDE": 40.083003, "LONGITUDE": -75.232456, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 18.0, "POI_CBG": 421010384001.0, "Median Dwell Time": 23.0, "Total Spend": 1067.0, "Total Transactions": 70.0, "Total Customers": 62.0, "Median Spend per Transaction": 14.35, "Median Spend per Customer": 14.34 }, "geometry": { "type": "Point", "coordinates": [ -75.232456, 40.083003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "Name": "Chestnut Hill Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "8138 Germantown Ave", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 716.0, "Total Spend": 330.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj4-c89", "Name": "Wister Mini Market", "Category": "Grocery Stores", "Address": "368 E Wister St", "LATITUDE": 40.034154, "LONGITUDE": -75.160332, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 27.0, "POI_CBG": 421010245002.0, "Median Dwell Time": 712.0, "Total Spend": 20.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 2.99, "Median Spend per Customer": 2.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160332, 40.034154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-4gk", "Name": "I Heart Cambodia", "Category": "Restaurants and Other Eating Places", "Address": "2207 S 7th St", "LATITUDE": 39.921392, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 27.0, "POI_CBG": 421010041012.0, "Median Dwell Time": 421.0, "Total Spend": 946.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 42.14, "Median Spend per Customer": 49.18 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.921392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "Name": "Jack's place", "Category": "Restaurants and Other Eating Places", "Address": "7167 Hegerman St", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 38.0, "POI_CBG": 421010326007.0, "Median Dwell Time": 7.0, "Total Spend": 127.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 11.72, "Median Spend per Customer": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "Name": "Villavillekula", "Category": "Clothing Stores", "Address": "8419 Germantown Ave", "LATITUDE": 40.075713, "LONGITUDE": -75.205415, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 80.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 32.0, "Total Spend": 736.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 67.44, "Median Spend per Customer": 67.44 }, "geometry": { "type": "Point", "coordinates": [ -75.205415, 40.075713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-47q", "Name": "Kid City", "Category": "Clothing Stores", "Address": "2419 S 24th St", "LATITUDE": 39.921142, "LONGITUDE": -75.185929, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 185.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 8.0, "Total Spend": 6155.0, "Total Transactions": 188.0, "Total Customers": 172.0, "Median Spend per Transaction": 22.96, "Median Spend per Customer": 25.12 }, "geometry": { "type": "Point", "coordinates": [ -75.185929, 39.921142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "2417 Welsh Rd", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2019, "Total Visits": 1461.0, "Total Visitors": 938.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 11.0, "Total Spend": 142120.0, "Total Transactions": 696.0, "Total Customers": 453.0, "Median Spend per Transaction": 30.31, "Median Spend per Customer": 48.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-225@628-pm9-zs5", "Name": "Aurora Grace", "Category": "Specialty Food Stores", "Address": "517 S 5th St", "LATITUDE": 39.942077, "LONGITUDE": -75.150507, "DATE_RANGE_START": 2019, "Total Visits": 2189.0, "Total Visitors": 1819.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 36.0, "Total Spend": 956.0, "Total Transactions": 30.0, "Total Customers": 25.0, "Median Spend per Transaction": 13.98, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150507, 39.942077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-gzf", "Name": "Tria Cafe Wash West", "Category": "Beer, Wine, and Liquor Stores", "Address": "1137 Spruce St", "LATITUDE": 39.946658, "LONGITUDE": -75.160853, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 143.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 3.0, "Total Spend": 636.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 43.01, "Median Spend per Customer": 46.13 }, "geometry": { "type": "Point", "coordinates": [ -75.160853, 39.946658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-225@628-pgb-8y9", "Name": "Parkway Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2401 Pennsylvania Ave", "LATITUDE": 39.967017, "LONGITUDE": -75.177894, "DATE_RANGE_START": 2019, "Total Visits": 3883.0, "Total Visitors": 2310.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 132.0, "Total Spend": 2034.0, "Total Transactions": 47.0, "Total Customers": 28.0, "Median Spend per Transaction": 18.85, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177894, 39.967017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "301 S 52nd St", "LATITUDE": 39.9542, "LONGITUDE": -75.225712, "DATE_RANGE_START": 2019, "Total Visits": 1921.0, "Total Visitors": 1158.0, "POI_CBG": 421010085003.0, "Median Dwell Time": 5.0, "Total Spend": 451.0, "Total Transactions": 33.0, "Total Customers": 20.0, "Median Spend per Transaction": 8.48, "Median Spend per Customer": 19.02 }, "geometry": { "type": "Point", "coordinates": [ -75.225712, 39.9542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Roosevelt Blvd", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2019, "Total Visits": 6240.0, "Total Visitors": 4471.0, "POI_CBG": 421010361002.0, "Median Dwell Time": 5.0, "Total Spend": 8089.0, "Total Transactions": 355.0, "Total Customers": 245.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 28.24 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "1850 E Sedgley Ave", "LATITUDE": 40.002434, "LONGITUDE": -75.100336, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 90.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 1.0, "Total Spend": 70255.0, "Total Transactions": 53.0, "Total Customers": 13.0, "Median Spend per Transaction": 384.41, "Median Spend per Customer": 158.92 }, "geometry": { "type": "Point", "coordinates": [ -75.100336, 40.002434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "Name": "Chubby's Fox Chase Deli", "Category": "Restaurants and Other Eating Places", "Address": "537 Hoffnagle St", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2019, "Total Visits": 163.0, "Total Visitors": 27.0, "POI_CBG": 421010341006.0, "Median Dwell Time": 1357.0, "Total Spend": 593.0, "Total Transactions": 40.0, "Total Customers": 37.0, "Median Spend per Transaction": 12.36, "Median Spend per Customer": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-psq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "11750 Bustleton Ave", "LATITUDE": 40.120378, "LONGITUDE": -75.018088, "DATE_RANGE_START": 2019, "Total Visits": 785.0, "Total Visitors": 573.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 5.0, "Total Spend": 2033.0, "Total Transactions": 120.0, "Total Customers": 67.0, "Median Spend per Transaction": 9.66, "Median Spend per Customer": 12.31 }, "geometry": { "type": "Point", "coordinates": [ -75.018088, 40.120378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "Name": "Dick's Sporting Goods", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "20 Franklin Mills Blvd", "LATITUDE": 40.085609, "LONGITUDE": -74.967208, "DATE_RANGE_START": 2019, "Total Visits": 851.0, "Total Visitors": 741.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 18.0, "Total Spend": 34355.0, "Total Transactions": 598.0, "Total Customers": 526.0, "Median Spend per Transaction": 43.14, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -74.967208, 40.085609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pnt-3wk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2495 Aramingo Ave", "LATITUDE": 39.974268, "LONGITUDE": -75.119829, "DATE_RANGE_START": 2019, "Total Visits": 250.0, "Total Visitors": 227.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 5.0, "Total Spend": 1706.0, "Total Transactions": 80.0, "Total Customers": 70.0, "Median Spend per Transaction": 11.69, "Median Spend per Customer": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.119829, 39.974268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjj-wzf", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9101 Ridge Ave # 15", "LATITUDE": 40.073365, "LONGITUDE": -75.241949, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 183.0, "POI_CBG": 421010384001.0, "Median Dwell Time": 31.0, "Total Spend": 8006.0, "Total Transactions": 77.0, "Total Customers": 70.0, "Median Spend per Transaction": 31.03, "Median Spend per Customer": 29.42 }, "geometry": { "type": "Point", "coordinates": [ -75.241949, 40.073365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1617 John F Kennedy Blvd", "LATITUDE": 39.954271, "LONGITUDE": -75.167991, "DATE_RANGE_START": 2019, "Total Visits": 12348.0, "Total Visitors": 6193.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 129.0, "Total Spend": 17910.0, "Total Transactions": 1049.0, "Total Customers": 653.0, "Median Spend per Transaction": 9.23, "Median Spend per Customer": 13.29 }, "geometry": { "type": "Point", "coordinates": [ -75.167991, 39.954271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "2383 Cottman Ave Ste 38B", "LATITUDE": 40.046821, "LONGITUDE": -75.055507, "DATE_RANGE_START": 2019, "Total Visits": 415.0, "Total Visitors": 336.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 16.0, "Total Spend": 2151.0, "Total Transactions": 67.0, "Total Customers": 35.0, "Median Spend per Transaction": 14.42, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.055507, 40.046821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1115 Cottman Ave", "LATITUDE": 40.060462, "LONGITUDE": -75.081398, "DATE_RANGE_START": 2019, "Total Visits": 696.0, "Total Visitors": 511.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 4.0, "Total Spend": 255.0, "Total Transactions": 18.0, "Total Customers": 8.0, "Median Spend per Transaction": 12.25, "Median Spend per Customer": 18.04 }, "geometry": { "type": "Point", "coordinates": [ -75.081398, 40.060462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-vvf", "Name": "Steve Madden", "Category": "Shoe Stores", "Address": "1455 Franklin Mills Cir Spc 155", "LATITUDE": 40.089544, "LONGITUDE": -74.961668, "DATE_RANGE_START": 2019, "Total Visits": 461.0, "Total Visitors": 445.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 294.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 23.89, "Median Spend per Customer": 23.89 }, "geometry": { "type": "Point", "coordinates": [ -74.961668, 40.089544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pmf-j35", "Name": "Head Start Shoes", "Category": "Shoe Stores", "Address": "126 S 17th St", "LATITUDE": 39.950646, "LONGITUDE": -75.169071, "DATE_RANGE_START": 2019, "Total Visits": 375.0, "Total Visitors": 326.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 3.0, "Total Spend": 4534.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 205.0, "Median Spend per Customer": 235.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 39.950646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "Name": "Dollar Value", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2007 S Broad St", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2019, "Total Visits": 350.0, "Total Visitors": 275.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 12.0, "Total Spend": 1430.0, "Total Transactions": 100.0, "Total Customers": 78.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "Name": "Loco Dollar", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "201 E Allegheny Ave", "LATITUDE": 39.998868, "LONGITUDE": -75.126992, "DATE_RANGE_START": 2019, "Total Visits": 435.0, "Total Visitors": 335.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 11.0, "Total Spend": 981.0, "Total Transactions": 53.0, "Total Customers": 45.0, "Median Spend per Transaction": 15.09, "Median Spend per Customer": 16.56 }, "geometry": { "type": "Point", "coordinates": [ -75.126992, 39.998868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "4421 Main St", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2019, "Total Visits": 170.0, "Total Visitors": 157.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 36.0, "Total Spend": 33954.0, "Total Transactions": 865.0, "Total Customers": 705.0, "Median Spend per Transaction": 30.84, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Henry Ave", "LATITUDE": 40.063794, "LONGITUDE": -75.238861, "DATE_RANGE_START": 2019, "Total Visits": 538.0, "Total Visitors": 418.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 5.0, "Total Spend": 18225.0, "Total Transactions": 1911.0, "Total Customers": 1173.0, "Median Spend per Transaction": 8.28, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.238861, 40.063794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pjf-kvf", "Name": "The Bone Appetite", "Category": "Other Miscellaneous Store Retailers", "Address": "8517 Germantown Ave", "LATITUDE": 40.076504, "LONGITUDE": -75.206829, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 102.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 8.0, "Total Spend": 4299.0, "Total Transactions": 123.0, "Total Customers": 100.0, "Median Spend per Transaction": 23.94, "Median Spend per Customer": 25.67 }, "geometry": { "type": "Point", "coordinates": [ -75.206829, 40.076504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "Name": "Bar Bombon", "Category": "Restaurants and Other Eating Places", "Address": "133 S 18th St", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 165.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 55.0, "Total Spend": 29668.0, "Total Transactions": 608.0, "Total Customers": 533.0, "Median Spend per Transaction": 41.8, "Median Spend per Customer": 46.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "Name": "Le Viet Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1019 S 11th St", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2019, "Total Visits": 326.0, "Total Visitors": 243.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 50.0, "Total Spend": 2346.0, "Total Transactions": 68.0, "Total Customers": 57.0, "Median Spend per Transaction": 25.1, "Median Spend per Customer": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "Name": "Dragon City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "923 Levick St", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2019, "Total Visits": 220.0, "Total Visitors": 182.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 24.0, "Total Spend": 1271.0, "Total Transactions": 67.0, "Total Customers": 53.0, "Median Spend per Transaction": 15.48, "Median Spend per Customer": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-phy-6kz", "Name": "La Casa Del Sandwich", "Category": "Restaurants and Other Eating Places", "Address": "101 E Rockland St", "LATITUDE": 40.024809, "LONGITUDE": -75.123343, "DATE_RANGE_START": 2019, "Total Visits": 688.0, "Total Visitors": 553.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 22.0, "Total Spend": 97.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 29.25, "Median Spend per Customer": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.123343, 40.024809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-djv", "Name": "Quality Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6438 Rising Sun Ave", "LATITUDE": 40.050855, "LONGITUDE": -75.094676, "DATE_RANGE_START": 2019, "Total Visits": 396.0, "Total Visitors": 273.0, "POI_CBG": 421010306007.0, "Median Dwell Time": 59.0, "Total Spend": 40.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.02, "Median Spend per Customer": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.094676, 40.050855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-975", "Name": "DK Sushi", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.952998, "LONGITUDE": -75.192279, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 57.0, "Total Spend": 5032.0, "Total Transactions": 400.0, "Total Customers": 207.0, "Median Spend per Transaction": 10.76, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.192279, 39.952998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "Name": "Cambria Suites", "Category": "Traveler Accommodation", "Address": "219 S Broad St", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2019, "Total Visits": 13980.0, "Total Visitors": 8598.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 63.0, "Total Spend": 15492.0, "Total Transactions": 70.0, "Total Customers": 52.0, "Median Spend per Transaction": 164.84, "Median Spend per Customer": 197.63 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "Name": "Revolution House", "Category": "Restaurants and Other Eating Places", "Address": "200 Market St", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2019, "Total Visits": 335.0, "Total Visitors": 306.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 13.0, "Total Spend": 33540.0, "Total Transactions": 781.0, "Total Customers": 703.0, "Median Spend per Transaction": 32.16, "Median Spend per Customer": 36.06 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-mrk", "Name": "Jerry's Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "129 W Laurel St", "LATITUDE": 39.965113, "LONGITUDE": -75.138904, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 42.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 63.0, "Total Spend": 15134.0, "Total Transactions": 311.0, "Total Customers": 268.0, "Median Spend per Transaction": 41.56, "Median Spend per Customer": 48.86 }, "geometry": { "type": "Point", "coordinates": [ -75.138904, 39.965113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "Name": "Pasqually's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "200 S 43rd St", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2019, "Total Visits": 125.0, "Total Visitors": 87.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 49.0, "Total Spend": 21749.0, "Total Transactions": 1236.0, "Total Customers": 655.0, "Median Spend per Transaction": 14.67, "Median Spend per Customer": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnz-jgk", "Name": "Bonks Bar", "Category": "Restaurants and Other Eating Places", "Address": "3467 Richmond St", "LATITUDE": 39.986368, "LONGITUDE": -75.094326, "DATE_RANGE_START": 2019, "Total Visits": 306.0, "Total Visitors": 263.0, "POI_CBG": 421010378002.0, "Median Dwell Time": 28.0, "Total Spend": 2738.0, "Total Transactions": 62.0, "Total Customers": 53.0, "Median Spend per Transaction": 38.72, "Median Spend per Customer": 48.95 }, "geometry": { "type": "Point", "coordinates": [ -75.094326, 39.986368 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "Name": "European Republic", "Category": "Restaurants and Other Eating Places", "Address": "213 Chestnut St", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2019, "Total Visits": 5252.0, "Total Visitors": 3901.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 41.0, "Total Spend": 1615.0, "Total Transactions": 153.0, "Total Customers": 110.0, "Median Spend per Transaction": 8.54, "Median Spend per Customer": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "314 W Lehigh Ave", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 170.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 4.0, "Total Spend": 4172.0, "Total Transactions": 335.0, "Total Customers": 257.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "Name": "Cook and Shaker", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Albert St", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 77.0, "POI_CBG": 421010160001.0, "Median Dwell Time": 9.0, "Total Spend": 11904.0, "Total Transactions": 305.0, "Total Customers": 197.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 40.06 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7x-dgk", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "6846 Bustleton Ave", "LATITUDE": 40.04172, "LONGITUDE": -75.064728, "DATE_RANGE_START": 2019, "Total Visits": 340.0, "Total Visitors": 227.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 16.0, "Total Spend": 429.0, "Total Transactions": 67.0, "Total Customers": 52.0, "Median Spend per Transaction": 5.06, "Median Spend per Customer": 5.35 }, "geometry": { "type": "Point", "coordinates": [ -75.064728, 40.04172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3yv", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.101772, "LONGITUDE": -75.007116, "DATE_RANGE_START": 2019, "Total Visits": 3083.0, "Total Visitors": 2600.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 48.0, "Total Spend": 62.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.75, "Median Spend per Customer": 18.75 }, "geometry": { "type": "Point", "coordinates": [ -75.007116, 40.101772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-hdv", "Name": "The Juice Room", "Category": "Restaurants and Other Eating Places", "Address": "7127 Germantown Ave", "LATITUDE": 40.0592, "LONGITUDE": -75.189995, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 82.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 11.0, "Total Spend": 2495.0, "Total Transactions": 272.0, "Total Customers": 165.0, "Median Spend per Transaction": 7.83, "Median Spend per Customer": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.189995, 40.0592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.99223, "LONGITUDE": -75.09972, "DATE_RANGE_START": 2019, "Total Visits": 1131.0, "Total Visitors": 921.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 24.0, "Total Spend": 7189.0, "Total Transactions": 218.0, "Total Customers": 200.0, "Median Spend per Transaction": 30.12, "Median Spend per Customer": 30.87 }, "geometry": { "type": "Point", "coordinates": [ -75.09972, 39.99223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-rkz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6600 Essington Ave", "LATITUDE": 39.914686, "LONGITUDE": -75.220838, "DATE_RANGE_START": 2019, "Total Visits": 451.0, "Total Visitors": 270.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 10.0, "Total Spend": 1508.0, "Total Transactions": 237.0, "Total Customers": 103.0, "Median Spend per Transaction": 5.58, "Median Spend per Customer": 6.41 }, "geometry": { "type": "Point", "coordinates": [ -75.220838, 39.914686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-pn5", "Name": "Yiro Yiro", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St # 29", "LATITUDE": 39.954699, "LONGITUDE": -75.202157, "DATE_RANGE_START": 2019, "Total Visits": 516.0, "Total Visitors": 400.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 26.0, "Total Spend": 6161.0, "Total Transactions": 366.0, "Total Customers": 303.0, "Median Spend per Transaction": 13.38, "Median Spend per Customer": 16.08 }, "geometry": { "type": "Point", "coordinates": [ -75.202157, 39.954699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@63s-dvy-8sq", "Name": "MK Food Service Equipment", "Category": "Gasoline Stations", "Address": "4700 Pine St", "LATITUDE": 39.95219, "LONGITUDE": -75.216689, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 53.0, "POI_CBG": 421010079001.0, "Median Dwell Time": 503.0, "Total Spend": 535.0, "Total Transactions": 83.0, "Total Customers": 37.0, "Median Spend per Transaction": 5.89, "Median Spend per Customer": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.216689, 39.95219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-575", "Name": "City Electric Supply", "Category": "Household Appliances and Electrical and Electronic Goods Merchant Wholesalers", "Address": "440 N 2nd St # 450", "LATITUDE": 39.958795, "LONGITUDE": -75.142437, "DATE_RANGE_START": 2019, "Total Visits": 668.0, "Total Visitors": 628.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 5.0, "Total Spend": 3109.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 198.07, "Median Spend per Customer": 306.53 }, "geometry": { "type": "Point", "coordinates": [ -75.142437, 39.958795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w8v", "Name": "Pro Image Sports", "Category": "Clothing Stores", "Address": "1491 Franklin Mills Cir", "LATITUDE": 40.087124, "LONGITUDE": -74.961763, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 208.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 1109.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 21.18, "Median Spend per Customer": 21.22 }, "geometry": { "type": "Point", "coordinates": [ -74.961763, 40.087124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-hbk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2121 W Lehigh Ave Ste 5", "LATITUDE": 39.996353, "LONGITUDE": -75.165984, "DATE_RANGE_START": 2019, "Total Visits": 625.0, "Total Visitors": 418.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 13.0, "Total Spend": 568.0, "Total Transactions": 50.0, "Total Customers": 27.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 21.16 }, "geometry": { "type": "Point", "coordinates": [ -75.165984, 39.996353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "138 W Chelten Ave", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 483.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 12.0, "Total Spend": 312.0, "Total Transactions": 25.0, "Total Customers": 20.0, "Median Spend per Transaction": 11.61, "Median Spend per Customer": 15.33 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1812 W Cheltenham Ave", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2019, "Total Visits": 678.0, "Total Visitors": 511.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 6.0, "Total Spend": 2979.0, "Total Transactions": 326.0, "Total Customers": 195.0, "Median Spend per Transaction": 6.05, "Median Spend per Customer": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "715 S 2nd St", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2019, "Total Visits": 410.0, "Total Visitors": 265.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 270.0, "Total Spend": 210.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 31.44, "Median Spend per Customer": 31.44 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "Name": "Pitchers Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4326 Main St", "LATITUDE": 40.025059, "LONGITUDE": -75.223033, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 103.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 53.0, "Total Spend": 11789.0, "Total Transactions": 410.0, "Total Customers": 300.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 20.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223033, 40.025059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@63s-dvy-pn5", "Name": "Hatch & Coop", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954694, "LONGITUDE": -75.202176, "DATE_RANGE_START": 2019, "Total Visits": 1403.0, "Total Visitors": 974.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 15.0, "Total Spend": 2183.0, "Total Transactions": 182.0, "Total Customers": 143.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.202176, 39.954694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "Name": "Sahara Grill", "Category": "Restaurants and Other Eating Places", "Address": "1334 Walnut St", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2019, "Total Visits": 17755.0, "Total Visitors": 10176.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 86.0, "Total Spend": 4192.0, "Total Transactions": 140.0, "Total Customers": 107.0, "Median Spend per Transaction": 21.91, "Median Spend per Customer": 24.72 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgb-3dv", "Name": "Rex Pizza & Beer", "Category": "Restaurants and Other Eating Places", "Address": "1526 Race St", "LATITUDE": 39.956427, "LONGITUDE": -75.165441, "DATE_RANGE_START": 2019, "Total Visits": 2117.0, "Total Visitors": 1458.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 70.0, "Total Spend": 2130.0, "Total Transactions": 155.0, "Total Customers": 120.0, "Median Spend per Transaction": 11.76, "Median Spend per Customer": 14.31 }, "geometry": { "type": "Point", "coordinates": [ -75.165441, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "Name": "Luke's Lobster", "Category": "Restaurants and Other Eating Places", "Address": "130 S 17th St", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2019, "Total Visits": 300.0, "Total Visitors": 218.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 15.0, "Total Spend": 10924.0, "Total Transactions": 346.0, "Total Customers": 323.0, "Median Spend per Transaction": 27.15, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgd-zfz", "Name": "Ramen Bar", "Category": "Restaurants and Other Eating Places", "Address": "3400 Lancaster Ave", "LATITUDE": 39.957167, "LONGITUDE": -75.192099, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 57.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 83.0, "Total Spend": 4861.0, "Total Transactions": 142.0, "Total Customers": 123.0, "Median Spend per Transaction": 28.65, "Median Spend per Customer": 31.83 }, "geometry": { "type": "Point", "coordinates": [ -75.192099, 39.957167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-jsq", "Name": "Danny's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.045112, "LONGITUDE": -75.117134, "DATE_RANGE_START": 2019, "Total Visits": 1204.0, "Total Visitors": 813.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 20.0, "Total Spend": 322.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.117134, 40.045112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwd-v9f", "Name": "RevZilla", "Category": "Other Motor Vehicle Dealers", "Address": "4020 S 26th St", "LATITUDE": 39.900369, "LONGITUDE": -75.195065, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 88.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 344.0, "Total Spend": 50786.0, "Total Transactions": 175.0, "Total Customers": 125.0, "Median Spend per Transaction": 215.64, "Median Spend per Customer": 248.49 }, "geometry": { "type": "Point", "coordinates": [ -75.195065, 39.900369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2800 Fox St", "LATITUDE": 40.008742, "LONGITUDE": -75.17653, "DATE_RANGE_START": 2019, "Total Visits": 3218.0, "Total Visitors": 2099.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 32.0, "Total Spend": 11943.0, "Total Transactions": 290.0, "Total Customers": 223.0, "Median Spend per Transaction": 27.92, "Median Spend per Customer": 32.01 }, "geometry": { "type": "Point", "coordinates": [ -75.17653, 40.008742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2044 Red Lion Rd.", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2019, "Total Visits": 6525.0, "Total Visitors": 4163.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 22.0, "Total Spend": 46529.0, "Total Transactions": 616.0, "Total Customers": 366.0, "Median Spend per Transaction": 55.89, "Median Spend per Customer": 92.53 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2120 S 23rd St", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2019, "Total Visits": 460.0, "Total Visitors": 303.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 7.0, "Total Spend": 760.0, "Total Transactions": 35.0, "Total Customers": 20.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 13.18 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3854 Morrell Ave", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2019, "Total Visits": 506.0, "Total Visitors": 375.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 9.0, "Total Spend": 447.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 6.32, "Median Spend per Customer": 6.32 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9w-sdv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "12050 Bustleton Ave", "LATITUDE": 40.123431, "LONGITUDE": -75.01617, "DATE_RANGE_START": 2019, "Total Visits": 408.0, "Total Visitors": 303.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 5.0, "Total Spend": 113.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.01617, 40.123431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-xnq", "Name": "Rose 4 U Florist", "Category": "Florists", "Address": "116 N 11th St", "LATITUDE": 39.95546, "LONGITUDE": -75.157664, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 56.0, "Total Spend": 254.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 76.14, "Median Spend per Customer": 76.14 }, "geometry": { "type": "Point", "coordinates": [ -75.157664, 39.95546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "Name": "Easy Pickins", "Category": "Clothing Stores", "Address": "1207 Chestnut St", "LATITUDE": 39.950651, "LONGITUDE": -75.160672, "DATE_RANGE_START": 2019, "Total Visits": 631.0, "Total Visitors": 473.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 12403.0, "Total Transactions": 455.0, "Total Customers": 401.0, "Median Spend per Transaction": 21.98, "Median Spend per Customer": 24.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160672, 39.950651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "8880 Bartram Ave", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2019, "Total Visits": 685.0, "Total Visitors": 425.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 218.0, "Total Spend": 6767.0, "Total Transactions": 53.0, "Total Customers": 33.0, "Median Spend per Transaction": 130.19, "Median Spend per Customer": 156.92 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pmb-7t9", "Name": "Jeans Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1334 Walnut St", "LATITUDE": 39.949139, "LONGITUDE": -75.163554, "DATE_RANGE_START": 2019, "Total Visits": 563.0, "Total Visitors": 363.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 116.0, "Total Spend": 2624.0, "Total Transactions": 263.0, "Total Customers": 175.0, "Median Spend per Transaction": 9.21, "Median Spend per Customer": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.163554, 39.949139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "Name": "The Ranchito", "Category": "Restaurants and Other Eating Places", "Address": "4745 Rising Sun Ave", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 78.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 4.0, "Total Spend": 711.0, "Total Transactions": 42.0, "Total Customers": 32.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "Name": "Balducci's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.875709, "LONGITUDE": -75.241464, "DATE_RANGE_START": 2019, "Total Visits": 454923.0, "Total Visitors": 244998.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 76.0, "Total Spend": 12119.0, "Total Transactions": 933.0, "Total Customers": 881.0, "Median Spend per Transaction": 11.28, "Median Spend per Customer": 11.62 }, "geometry": { "type": "Point", "coordinates": [ -75.241464, 39.875709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg9-ty9", "Name": "Brandywine Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1501 Spring Garden St", "LATITUDE": 39.962927, "LONGITUDE": -75.163263, "DATE_RANGE_START": 2019, "Total Visits": 188.0, "Total Visitors": 152.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 117.0, "Total Spend": 110.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 33.02, "Median Spend per Customer": 33.02 }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.962927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St Ste 128", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2019, "Total Visits": 676.0, "Total Visitors": 546.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 9.0, "Total Spend": 24379.0, "Total Transactions": 2224.0, "Total Customers": 1383.0, "Median Spend per Transaction": 10.21, "Median Spend per Customer": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1334 Bainbridge St", "LATITUDE": 39.942529, "LONGITUDE": -75.164834, "DATE_RANGE_START": 2019, "Total Visits": 645.0, "Total Visitors": 355.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 99.0, "Total Spend": 1903.0, "Total Transactions": 82.0, "Total Customers": 65.0, "Median Spend per Transaction": 22.14, "Median Spend per Customer": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.164834, 39.942529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "Name": "Dfti Boutique", "Category": "Clothing Stores", "Address": "2026 Chestnut St", "LATITUDE": 39.95206, "LONGITUDE": -75.174572, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 85.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 158.0, "Total Spend": 11568.0, "Total Transactions": 132.0, "Total Customers": 120.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174572, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2131 South St", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2019, "Total Visits": 435.0, "Total Visitors": 366.0, "POI_CBG": 421010012013.0, "Median Dwell Time": 4.0, "Total Spend": 49480.0, "Total Transactions": 5419.0, "Total Customers": 2574.0, "Median Spend per Transaction": 7.29, "Median Spend per Customer": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-wtv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7720 Bustleton Ave", "LATITUDE": 40.054812, "LONGITUDE": -75.054903, "DATE_RANGE_START": 2019, "Total Visits": 526.0, "Total Visitors": 376.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 8.0, "Total Spend": 2051.0, "Total Transactions": 158.0, "Total Customers": 80.0, "Median Spend per Transaction": 7.45, "Median Spend per Customer": 13.26 }, "geometry": { "type": "Point", "coordinates": [ -75.054903, 40.054812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pm4-ckf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2101 S 17th St", "LATITUDE": 39.924823, "LONGITUDE": -75.17424, "DATE_RANGE_START": 2019, "Total Visits": 1592.0, "Total Visitors": 1108.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 4.0, "Total Spend": 187.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 11.23, "Median Spend per Customer": 11.23 }, "geometry": { "type": "Point", "coordinates": [ -75.17424, 39.924823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "Name": "Gap Factory Store", "Category": "Clothing Stores", "Address": "2123 25 Cottman Avenue Space #40 & 41", "LATITUDE": 40.050036, "LONGITUDE": -75.06262, "DATE_RANGE_START": 2019, "Total Visits": 861.0, "Total Visitors": 741.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 18.0, "Total Spend": 1583.0, "Total Transactions": 38.0, "Total Customers": 37.0, "Median Spend per Transaction": 31.99, "Median Spend per Customer": 32.62 }, "geometry": { "type": "Point", "coordinates": [ -75.06262, 40.050036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-4n5", "Name": "Shoe Factory", "Category": "Shoe Stores", "Address": "7000 Castor Ave", "LATITUDE": 40.047111, "LONGITUDE": -75.070347, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 287.0, "POI_CBG": 421010310003.0, "Median Dwell Time": 20.0, "Total Spend": 4373.0, "Total Transactions": 180.0, "Total Customers": 168.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070347, 40.047111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "Name": "Atomic City Comics", "Category": "Book Stores and News Dealers", "Address": "638 South St", "LATITUDE": 39.942034, "LONGITUDE": -75.153458, "DATE_RANGE_START": 2019, "Total Visits": 202.0, "Total Visitors": 177.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 10.0, "Total Spend": 3072.0, "Total Transactions": 95.0, "Total Customers": 83.0, "Median Spend per Transaction": 25.89, "Median Spend per Customer": 32.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153458, 39.942034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-33q", "Name": "Hello World", "Category": "Home Furnishings Stores", "Address": "3610 Sansom St", "LATITUDE": 39.953792, "LONGITUDE": -75.195373, "DATE_RANGE_START": 2019, "Total Visits": 1098.0, "Total Visitors": 793.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 160.0, "Total Spend": 2516.0, "Total Transactions": 78.0, "Total Customers": 77.0, "Median Spend per Transaction": 22.66, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.195373, 39.953792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "Name": "Rittenhouse Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2001 Pine St", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 65.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 39.0, "Total Spend": 1009.0, "Total Transactions": 63.0, "Total Customers": 48.0, "Median Spend per Transaction": 12.24, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-85f", "Name": "North Catholic Book Store", "Category": "Clothing Stores", "Address": "2539 E Clearfield St", "LATITUDE": 39.984977, "LONGITUDE": -75.106527, "DATE_RANGE_START": 2019, "Total Visits": 195.0, "Total Visitors": 153.0, "POI_CBG": 421010180021.0, "Median Dwell Time": 8.0, "Total Spend": 1699.0, "Total Transactions": 163.0, "Total Customers": 152.0, "Median Spend per Transaction": 4.99, "Median Spend per Customer": 4.99 }, "geometry": { "type": "Point", "coordinates": [ -75.106527, 39.984977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "Name": "C Town Supermarkets", "Category": "Grocery Stores", "Address": "2438 W Lehigh Ave", "LATITUDE": 39.99594, "LONGITUDE": -75.172136, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 162.0, "POI_CBG": 421010169011.0, "Median Dwell Time": 7.0, "Total Spend": 955.0, "Total Transactions": 95.0, "Total Customers": 60.0, "Median Spend per Transaction": 9.16, "Median Spend per Customer": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.172136, 39.99594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2019, "Total Visits": 2750.0, "Total Visitors": 2334.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 11.0, "Total Spend": 24359.0, "Total Transactions": 806.0, "Total Customers": 731.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 24.81 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "Name": "Burlington", "Category": "Clothing Stores", "Address": "3401 Aramingo Ave", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 122.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 46.0, "Total Spend": 2921.0, "Total Transactions": 72.0, "Total Customers": 63.0, "Median Spend per Transaction": 34.43, "Median Spend per Customer": 34.69 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-y7q", "Name": "Brothers Shoes", "Category": "Shoe Stores", "Address": "3619 Germantown Ave", "LATITUDE": 40.007979, "LONGITUDE": -75.150258, "DATE_RANGE_START": 2019, "Total Visits": 203.0, "Total Visitors": 178.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 8.0, "Total Spend": 1332.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 32.99, "Median Spend per Customer": 31.49 }, "geometry": { "type": "Point", "coordinates": [ -75.150258, 40.007979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "8261 Stenton Ave", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2019, "Total Visits": 2897.0, "Total Visitors": 1871.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 4.0, "Total Spend": 2288.0, "Total Transactions": 90.0, "Total Customers": 55.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 36.82 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "Name": "Victoria's Secret", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.090585, "LONGITUDE": -74.961564, "DATE_RANGE_START": 2019, "Total Visits": 841.0, "Total Visitors": 675.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 23.0, "Total Spend": 2686.0, "Total Transactions": 50.0, "Total Customers": 47.0, "Median Spend per Transaction": 49.25, "Median Spend per Customer": 51.4 }, "geometry": { "type": "Point", "coordinates": [ -74.961564, 40.090585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-3qz", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4229 N Broad St Unit 35", "LATITUDE": 40.017784, "LONGITUDE": -75.148619, "DATE_RANGE_START": 2019, "Total Visits": 173.0, "Total Visitors": 152.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 5.0, "Total Spend": 2616.0, "Total Transactions": 52.0, "Total Customers": 37.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 51.83 }, "geometry": { "type": "Point", "coordinates": [ -75.148619, 40.017784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2601 W Girard Ave", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2019, "Total Visits": 460.0, "Total Visitors": 361.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 5.0, "Total Spend": 889.0, "Total Transactions": 57.0, "Total Customers": 43.0, "Median Spend per Transaction": 11.7, "Median Spend per Customer": 20.86 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-d5f", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3141 Frankford Ave # 59", "LATITUDE": 39.992273, "LONGITUDE": -75.110947, "DATE_RANGE_START": 2019, "Total Visits": 416.0, "Total Visitors": 325.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 5.0, "Total Spend": 1123.0, "Total Transactions": 158.0, "Total Customers": 80.0, "Median Spend per Transaction": 5.79, "Median Spend per Customer": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.110947, 39.992273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-ph6-gx5", "Name": "Community Mini Mart", "Category": "Grocery Stores", "Address": "1801 Georges Ln", "LATITUDE": 39.984629, "LONGITUDE": -75.229321, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 50.0, "POI_CBG": 421010119002.0, "Median Dwell Time": 1005.0, "Total Spend": 56.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229321, 39.984629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2300 S Broad St", "LATITUDE": 39.921823, "LONGITUDE": -75.170522, "DATE_RANGE_START": 2019, "Total Visits": 921.0, "Total Visitors": 551.0, "POI_CBG": 421010039012.0, "Median Dwell Time": 16.0, "Total Spend": 921.0, "Total Transactions": 98.0, "Total Customers": 52.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -75.170522, 39.921823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "Name": "Academy Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10101 Academy Rd Ste 105", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 135.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 16.0, "Total Spend": 258.0, "Total Transactions": 15.0, "Total Customers": 5.0, "Median Spend per Transaction": 16.87, "Median Spend per Customer": 65.08 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23h@628-pmf-sqz", "Name": "LUSH", "Category": "Health and Personal Care Stores", "Address": "1525 Walnut St", "LATITUDE": 39.949954, "LONGITUDE": -75.167065, "DATE_RANGE_START": 2019, "Total Visits": 555.0, "Total Visitors": 436.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 23.0, "Total Spend": 24705.0, "Total Transactions": 904.0, "Total Customers": 831.0, "Median Spend per Transaction": 21.79, "Median Spend per Customer": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.167065, 39.949954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "Name": "US Gas", "Category": "Gasoline Stations", "Address": "2652 Frankford Ave", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 197.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 5.0, "Total Spend": 2132.0, "Total Transactions": 115.0, "Total Customers": 97.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "Name": "Theory", "Category": "Clothing Stores", "Address": "1616 Walnut St", "LATITUDE": 39.949699, "LONGITUDE": -75.168323, "DATE_RANGE_START": 2019, "Total Visits": 415.0, "Total Visitors": 360.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 5.0, "Total Spend": 2937.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 123.0, "Median Spend per Customer": 123.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168323, 39.949699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "801 E Cathedral Rd. Store #24", "LATITUDE": 40.064353, "LONGITUDE": -75.238205, "DATE_RANGE_START": 2019, "Total Visits": 466.0, "Total Visitors": 323.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 11.0, "Total Spend": 559.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.238205, 40.064353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pm4-pvz", "Name": "Pit Stop HQ", "Category": "Other Miscellaneous Store Retailers", "Address": "838 Christian St # 842", "LATITUDE": 39.938787, "LONGITUDE": -75.157591, "DATE_RANGE_START": 2019, "Total Visits": 1554.0, "Total Visitors": 924.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 354.0, "Total Spend": 1796.0, "Total Transactions": 37.0, "Total Customers": 28.0, "Median Spend per Transaction": 19.65, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157591, 39.938787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmd-s5z", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "2101 South St # 102", "LATITUDE": 39.945275, "LONGITUDE": -75.177239, "DATE_RANGE_START": 2019, "Total Visits": 323.0, "Total Visitors": 280.0, "POI_CBG": 421010012013.0, "Median Dwell Time": 25.0, "Total Spend": 164.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 24.29, "Median Spend per Customer": 24.29 }, "geometry": { "type": "Point", "coordinates": [ -75.177239, 39.945275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "Name": "Suit Corner", "Category": "Clothing Stores", "Address": "302 Market St", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2019, "Total Visits": 2552.0, "Total Visitors": 2129.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 40.0, "Total Spend": 1721.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 79.0, "Median Spend per Customer": 89.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yd9", "Name": "Sleep Inn", "Category": "Traveler Accommodation", "Address": "1020 Cherry St", "LATITUDE": 39.954446, "LONGITUDE": -75.157043, "DATE_RANGE_START": 2019, "Total Visits": 795.0, "Total Visitors": 548.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 61.0, "Total Spend": 2256.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 183.65, "Median Spend per Customer": 191.28 }, "geometry": { "type": "Point", "coordinates": [ -75.157043, 39.954446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "Name": "Nom Nom Ramen", "Category": "Restaurants and Other Eating Places", "Address": "20 S 18th St", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 285.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 100.0, "Total Spend": 8411.0, "Total Transactions": 300.0, "Total Customers": 255.0, "Median Spend per Transaction": 20.66, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-ty9", "Name": "Front Street Dive", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "10 S Front St Fl 2", "LATITUDE": 39.94928, "LONGITUDE": -75.14266, "DATE_RANGE_START": 2019, "Total Visits": 3558.0, "Total Visitors": 3110.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 20.0, "Total Spend": 24105.0, "Total Transactions": 705.0, "Total Customers": 586.0, "Median Spend per Transaction": 26.51, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14266, 39.94928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmb-gzf", "Name": "Cloud Factory Hookah Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1201 Spruce St", "LATITUDE": 39.946776, "LONGITUDE": -75.161155, "DATE_RANGE_START": 2019, "Total Visits": 253.0, "Total Visitors": 223.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 11.0, "Total Spend": 744.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 37.01 }, "geometry": { "type": "Point", "coordinates": [ -75.161155, 39.946776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pj6-k4v", "Name": "Pelicana Chicken", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.04453, "LONGITUDE": -75.117658, "DATE_RANGE_START": 2019, "Total Visits": 1204.0, "Total Visitors": 813.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 20.0, "Total Spend": 277.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 21.48, "Median Spend per Customer": 44.43 }, "geometry": { "type": "Point", "coordinates": [ -75.117658, 40.04453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "Name": "Giorgio On Pine", "Category": "Restaurants and Other Eating Places", "Address": "1328 Pine St", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 58.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 83.0, "Total Spend": 12664.0, "Total Transactions": 158.0, "Total Customers": 153.0, "Median Spend per Transaction": 64.81, "Median Spend per Customer": 68.79 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pjf-zvf", "Name": "Cosimos Pizza Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8624 Germantown Ave", "LATITUDE": 40.076997, "LONGITUDE": -75.208562, "DATE_RANGE_START": 2019, "Total Visits": 145.0, "Total Visitors": 107.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 20.0, "Total Spend": 6958.0, "Total Transactions": 428.0, "Total Customers": 252.0, "Median Spend per Transaction": 11.01, "Median Spend per Customer": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.208562, 40.076997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p85-7nq", "Name": "Tuscany Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "2418 Rhawn St", "LATITUDE": 40.056919, "LONGITUDE": -75.047895, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 55.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 496.0, "Total Spend": 551.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 56.08, "Median Spend per Customer": 56.08 }, "geometry": { "type": "Point", "coordinates": [ -75.047895, 40.056919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-ndv", "Name": "Kensington Quarters", "Category": "Restaurants and Other Eating Places", "Address": "1310 Frankford Ave", "LATITUDE": 39.97058, "LONGITUDE": -75.134713, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 235.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 49.0, "Total Spend": 16775.0, "Total Transactions": 220.0, "Total Customers": 210.0, "Median Spend per Transaction": 63.64, "Median Spend per Customer": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134713, 39.97058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "Name": "Tacodelphia", "Category": "Restaurants and Other Eating Places", "Address": "427 S Broad St", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 213.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 3.0, "Total Spend": 5837.0, "Total Transactions": 483.0, "Total Customers": 358.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "Name": "The Quick Fixx", "Category": "Restaurants and Other Eating Places", "Address": "1511 South St", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 90.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 59.0, "Total Spend": 6949.0, "Total Transactions": 358.0, "Total Customers": 262.0, "Median Spend per Transaction": 16.85, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pm5-2ff", "Name": "Wokano", "Category": "Restaurants and Other Eating Places", "Address": "1100 Washington Ave", "LATITUDE": 39.937057, "LONGITUDE": -75.161863, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 653.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 22.0, "Total Spend": 3339.0, "Total Transactions": 78.0, "Total Customers": 73.0, "Median Spend per Transaction": 37.6, "Median Spend per Customer": 41.93 }, "geometry": { "type": "Point", "coordinates": [ -75.161863, 39.937057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phy-mff", "Name": "Rivas Monica", "Category": "Grocery Stores", "Address": "1025 W Ruscomb St", "LATITUDE": 40.028515, "LONGITUDE": -75.140923, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 30.0, "POI_CBG": 421010283001.0, "Median Dwell Time": 7.0, "Total Spend": 313.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 46.42, "Median Spend per Customer": 46.42 }, "geometry": { "type": "Point", "coordinates": [ -75.140923, 40.028515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "Name": "Mammoth Coffee", "Category": "Restaurants and Other Eating Places", "Address": "534 W Girard Ave", "LATITUDE": 39.969701, "LONGITUDE": -75.146132, "DATE_RANGE_START": 2019, "Total Visits": 398.0, "Total Visitors": 205.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 173.0, "Total Spend": 1506.0, "Total Transactions": 212.0, "Total Customers": 108.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146132, 39.969701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvw-hwk", "Name": "Quick & Quality", "Category": "Restaurants and Other Eating Places", "Address": "4836 Spruce St", "LATITUDE": 39.953576, "LONGITUDE": -75.219432, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 15.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 5.0, "Total Spend": 665.0, "Total Transactions": 33.0, "Total Customers": 3.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 199.75 }, "geometry": { "type": "Point", "coordinates": [ -75.219432, 39.953576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm3-t5f", "Name": "Manatawny Still Works", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1603 E Passyunk Ave Fl 1", "LATITUDE": 39.929704, "LONGITUDE": -75.163451, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 1.0, "Total Spend": 130.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 39.1, "Median Spend per Customer": 39.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163451, 39.929704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "701 Chestnut St", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2019, "Total Visits": 505.0, "Total Visitors": 410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 2063.0, "Total Transactions": 235.0, "Total Customers": 220.0, "Median Spend per Transaction": 8.05, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "Name": "Mega Mart", "Category": "Grocery Stores", "Address": "6340 Ogontz Ave", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 127.0, "POI_CBG": 421010277003.0, "Median Dwell Time": 6.0, "Total Spend": 529.0, "Total Transactions": 47.0, "Total Customers": 37.0, "Median Spend per Transaction": 8.39, "Median Spend per Customer": 8.39 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1100 S 10th St", "LATITUDE": 39.936469, "LONGITUDE": -75.160327, "DATE_RANGE_START": 2019, "Total Visits": 2963.0, "Total Visitors": 2209.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 4.0, "Total Spend": 2489.0, "Total Transactions": 92.0, "Total Customers": 73.0, "Median Spend per Transaction": 27.09, "Median Spend per Customer": 28.26 }, "geometry": { "type": "Point", "coordinates": [ -75.160327, 39.936469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "337 Spring Garden St", "LATITUDE": 39.961453, "LONGITUDE": -75.144571, "DATE_RANGE_START": 2019, "Total Visits": 296.0, "Total Visitors": 235.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 13.0, "Total Spend": 2014.0, "Total Transactions": 92.0, "Total Customers": 77.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.144571, 39.961453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p85-hkf", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2417 Welsh Rd", "LATITUDE": 40.071857, "LONGITUDE": -75.030407, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 47.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 25.0, "Total Spend": 1494.0, "Total Transactions": 93.0, "Total Customers": 87.0, "Median Spend per Transaction": 12.05, "Median Spend per Customer": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030407, 40.071857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-3wk", "Name": "Cavanaughs Headhouse", "Category": "Restaurants and Other Eating Places", "Address": "421 S 2nd St", "LATITUDE": 39.942292, "LONGITUDE": -75.144972, "DATE_RANGE_START": 2019, "Total Visits": 1073.0, "Total Visitors": 805.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 34.0, "Total Spend": 14531.0, "Total Transactions": 505.0, "Total Customers": 363.0, "Median Spend per Transaction": 21.24, "Median Spend per Customer": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 39.942292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p9j-zj9", "Name": "Kabobi", "Category": "Restaurants and Other Eating Places", "Address": "10600 Roosevelt Blvd", "LATITUDE": 40.0995, "LONGITUDE": -75.010461, "DATE_RANGE_START": 2019, "Total Visits": 385.0, "Total Visitors": 358.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 10.0, "Total Spend": 1676.0, "Total Transactions": 65.0, "Total Customers": 40.0, "Median Spend per Transaction": 24.07, "Median Spend per Customer": 32.17 }, "geometry": { "type": "Point", "coordinates": [ -75.010461, 40.0995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "Name": "Crown Deli", "Category": "Restaurants and Other Eating Places", "Address": "3806 Morrell Ave", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2019, "Total Visits": 926.0, "Total Visitors": 620.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 18.0, "Total Spend": 2998.0, "Total Transactions": 77.0, "Total Customers": 67.0, "Median Spend per Transaction": 22.24, "Median Spend per Customer": 27.13 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "6470 Torresdale Ave", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2019, "Total Visits": 728.0, "Total Visitors": 583.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 4.0, "Total Spend": 10895.0, "Total Transactions": 1043.0, "Total Customers": 621.0, "Median Spend per Transaction": 8.73, "Median Spend per Customer": 12.11 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "Name": "Crown Chicken and Grill", "Category": "Restaurants and Other Eating Places", "Address": "7275 Rising Sun Ave", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 227.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 1.0, "Total Spend": 7107.0, "Total Transactions": 728.0, "Total Customers": 461.0, "Median Spend per Transaction": 8.55, "Median Spend per Customer": 10.31 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "9970 Bustleton Ave", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2019, "Total Visits": 1378.0, "Total Visitors": 1078.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 6.0, "Total Spend": 9413.0, "Total Transactions": 996.0, "Total Customers": 660.0, "Median Spend per Transaction": 7.9, "Median Spend per Customer": 11.05 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1700 W Cheltenham Ave", "LATITUDE": 40.065814, "LONGITUDE": -75.144222, "DATE_RANGE_START": 2019, "Total Visits": 1449.0, "Total Visitors": 1033.0, "POI_CBG": 421010266001.0, "Median Dwell Time": 4.0, "Total Spend": 411.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 17.6, "Median Spend per Customer": 30.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144222, 40.065814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgk-28v", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1300 W Lehigh Ave", "LATITUDE": 39.993135, "LONGITUDE": -75.152859, "DATE_RANGE_START": 2019, "Total Visits": 650.0, "Total Visitors": 460.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 7.0, "Total Spend": 91.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 7.72, "Median Spend per Customer": 7.72 }, "geometry": { "type": "Point", "coordinates": [ -75.152859, 39.993135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "Name": "Windfall Gallery", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7944 Germantown Ave", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 68.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 33.0, "Total Spend": 236.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 70.74, "Median Spend per Customer": 70.74 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-xh5", "Name": "C & R Building Supplies", "Category": "Building Material and Supplies Dealers", "Address": "1322 Washington Ave", "LATITUDE": 39.937501, "LONGITUDE": -75.165521, "DATE_RANGE_START": 2019, "Total Visits": 2130.0, "Total Visitors": 1314.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 81.0, "Total Spend": 9501.0, "Total Transactions": 42.0, "Total Customers": 15.0, "Median Spend per Transaction": 84.78, "Median Spend per Customer": 208.01 }, "geometry": { "type": "Point", "coordinates": [ -75.165521, 39.937501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p76-yd9", "Name": "American Uniform Sales", "Category": "Clothing Stores", "Address": "2845 Southampton Rd", "LATITUDE": 40.106001, "LONGITUDE": -74.984618, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 67.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 35.0, "Total Spend": 1450.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 39.0, "Median Spend per Customer": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984618, 40.106001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "11500 Roosevelt Blvd", "LATITUDE": 40.104996, "LONGITUDE": -75.007889, "DATE_RANGE_START": 2019, "Total Visits": 330.0, "Total Visitors": 70.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 296.0, "Total Spend": 21550.0, "Total Transactions": 33.0, "Total Customers": 12.0, "Median Spend per Transaction": 163.79, "Median Spend per Customer": 367.2 }, "geometry": { "type": "Point", "coordinates": [ -75.007889, 40.104996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9q-y5f", "Name": "uBreakiFix", "Category": "Electronics and Appliance Stores", "Address": "1691 Grant Ave # 6A", "LATITUDE": 40.086714, "LONGITUDE": -75.0387, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 47.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 4.0, "Total Spend": 1116.0, "Total Transactions": 40.0, "Total Customers": 40.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.0387, 40.086714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-xwk", "Name": "aka.", "Category": "Traveler Accommodation", "Address": "2929 Walnut St", "LATITUDE": 39.952073, "LONGITUDE": -75.184019, "DATE_RANGE_START": 2019, "Total Visits": 20567.0, "Total Visitors": 12558.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 107.0, "Total Spend": 3227.0, "Total Transactions": 68.0, "Total Customers": 67.0, "Median Spend per Transaction": 15.53, "Median Spend per Customer": 15.32 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.952073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "8525 Frankford Ave", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2019, "Total Visits": 420.0, "Total Visitors": 315.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 4.0, "Total Spend": 937.0, "Total Transactions": 57.0, "Total Customers": 50.0, "Median Spend per Transaction": 11.07, "Median Spend per Customer": 12.87 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "Name": "Pho Don", "Category": "Restaurants and Other Eating Places", "Address": "3528 Germantown Ave", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 53.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 155.0, "Total Spend": 927.0, "Total Transactions": 57.0, "Total Customers": 43.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 19.21 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dqf", "Name": "Five Brothers", "Category": "Restaurants and Other Eating Places", "Address": "5851 Loretto Ave", "LATITUDE": 40.033693, "LONGITUDE": -75.084934, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 51.0, "Total Spend": 1170.0, "Total Transactions": 117.0, "Total Customers": 57.0, "Median Spend per Transaction": 8.83, "Median Spend per Customer": 12.63 }, "geometry": { "type": "Point", "coordinates": [ -75.084934, 40.033693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-tsq", "Name": "Charlie's Roast Pork", "Category": "Restaurants and Other Eating Places", "Address": "1301 S 3rd St", "LATITUDE": 39.931451, "LONGITUDE": -75.149656, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 132.0, "Total Spend": 821.0, "Total Transactions": 40.0, "Total Customers": 40.0, "Median Spend per Transaction": 16.88, "Median Spend per Customer": 16.88 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 39.931451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-wzf", "Name": "Mayfair Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7424 Frankford Ave", "LATITUDE": 40.038525, "LONGITUDE": -75.036899, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 30.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 25.0, "Total Spend": 131.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 11.45, "Median Spend per Customer": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.036899, 40.038525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm4-d35", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2217 S Broad St", "LATITUDE": 39.922429, "LONGITUDE": -75.169649, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 35.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 119.0, "Total Spend": 3466.0, "Total Transactions": 438.0, "Total Customers": 187.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.169649, 39.922429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmd-w49", "Name": "Cook", "Category": "Home Furnishings Stores", "Address": "253 S 20th St", "LATITUDE": 39.94873, "LONGITUDE": -75.174113, "DATE_RANGE_START": 2019, "Total Visits": 2031.0, "Total Visitors": 1203.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 98.0, "Total Spend": 591.0, "Total Transactions": 25.0, "Total Customers": 20.0, "Median Spend per Transaction": 18.54, "Median Spend per Customer": 20.98 }, "geometry": { "type": "Point", "coordinates": [ -75.174113, 39.94873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6543 Roosevelt Blvd Unit 18A", "LATITUDE": 40.034799, "LONGITUDE": -75.06613, "DATE_RANGE_START": 2019, "Total Visits": 188.0, "Total Visitors": 158.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 9.0, "Total Spend": 2384.0, "Total Transactions": 97.0, "Total Customers": 82.0, "Median Spend per Transaction": 21.85, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.06613, 40.034799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-8vz", "Name": "Pret A Manger", "Category": "Restaurants and Other Eating Places", "Address": "John M. Huntsman Hall", "LATITUDE": 39.952473, "LONGITUDE": -75.193453, "DATE_RANGE_START": 2019, "Total Visits": 1902.0, "Total Visitors": 1156.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 102.0, "Total Spend": 161.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 5.42, "Median Spend per Customer": 5.42 }, "geometry": { "type": "Point", "coordinates": [ -75.193453, 39.952473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pzn-zj9", "Name": "La Casa Di Lucias", "Category": "Special Food Services", "Address": "14425 Bustleton Ave", "LATITUDE": 40.132324, "LONGITUDE": -75.010926, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 120.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 62.0, "Total Spend": 538.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 30.92, "Median Spend per Customer": 30.92 }, "geometry": { "type": "Point", "coordinates": [ -75.010926, 40.132324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-gzf", "Name": "Bar X", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "255 S Camac St", "LATITUDE": 39.946786, "LONGITUDE": -75.161663, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 82.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 81.0, "Total Spend": 4654.0, "Total Transactions": 232.0, "Total Customers": 140.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161663, 39.946786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "Name": "Smiley's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4251 Main St", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 68.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 12.0, "Total Spend": 1380.0, "Total Transactions": 97.0, "Total Customers": 78.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 14.02 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-qj9", "Name": "Suzani Palace", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd Ste 3", "LATITUDE": 40.103023, "LONGITUDE": -75.030669, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 145.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 112.0, "Total Spend": 145.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 43.64, "Median Spend per Customer": 43.64 }, "geometry": { "type": "Point", "coordinates": [ -75.030669, 40.103023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "5717 Rising Sun Ave", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2019, "Total Visits": 255.0, "Total Visitors": 217.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 21.0, "Total Spend": 12198.0, "Total Transactions": 208.0, "Total Customers": 195.0, "Median Spend per Transaction": 45.36, "Median Spend per Customer": 49.28 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-j7q", "Name": "Cavanaugh's Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "1823 Sansom St", "LATITUDE": 39.951128, "LONGITUDE": -75.171573, "DATE_RANGE_START": 2019, "Total Visits": 361.0, "Total Visitors": 245.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 57.0, "Total Spend": 127.0, "Total Transactions": 15.0, "Total Customers": 12.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 4.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171573, 39.951128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "Name": "DJ Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4040 City Ave", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2019, "Total Visits": 1264.0, "Total Visitors": 936.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 44.0, "Total Spend": 4902.0, "Total Transactions": 133.0, "Total Customers": 107.0, "Median Spend per Transaction": 25.52, "Median Spend per Customer": 39.04 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw4-rzf", "Name": "LOVE Grille", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895174, "LONGITUDE": -75.227972, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 38178.0, "Total Transactions": 1776.0, "Total Customers": 1537.0, "Median Spend per Transaction": 17.36, "Median Spend per Customer": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.227972, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.038624, "LONGITUDE": -75.106851, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 11.0, "Total Spend": 6123.0, "Total Transactions": 426.0, "Total Customers": 350.0, "Median Spend per Transaction": 11.98, "Median Spend per Customer": 14.11 }, "geometry": { "type": "Point", "coordinates": [ -75.106851, 40.038624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmf-389", "Name": "Ferguson", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "1821 Washington Ave", "LATITUDE": 39.939235, "LONGITUDE": -75.174446, "DATE_RANGE_START": 2019, "Total Visits": 323.0, "Total Visitors": 285.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 5.0, "Total Spend": 8097.0, "Total Transactions": 20.0, "Total Customers": 12.0, "Median Spend per Transaction": 82.49, "Median Spend per Customer": 79.65 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.939235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7y-dd9", "Name": "Home Gallery Furniture", "Category": "Furniture Stores", "Address": "6437 Rising Sun Ave", "LATITUDE": 40.050405, "LONGITUDE": -75.093967, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 60.0, "POI_CBG": 421010306003.0, "Median Dwell Time": 245.0, "Total Spend": 9318.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 2311.14, "Median Spend per Customer": 2311.14 }, "geometry": { "type": "Point", "coordinates": [ -75.093967, 40.050405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-z75", "Name": "LL Flooring", "Category": "Home Furnishings Stores", "Address": "10500 Roosevelt Blvd", "LATITUDE": 40.099015, "LONGITUDE": -75.011125, "DATE_RANGE_START": 2019, "Total Visits": 92.0, "Total Visitors": 92.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 11.0, "Total Spend": 16241.0, "Total Transactions": 25.0, "Total Customers": 17.0, "Median Spend per Transaction": 154.86, "Median Spend per Customer": 348.62 }, "geometry": { "type": "Point", "coordinates": [ -75.011125, 40.099015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgy-mzf", "Name": "Doc's World of Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "701 E Cathedral Rd", "LATITUDE": 40.063477, "LONGITUDE": -75.238345, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 108.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 4.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.238345, 40.063477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3670 Richmond St", "LATITUDE": 39.989253, "LONGITUDE": -75.090212, "DATE_RANGE_START": 2019, "Total Visits": 3137.0, "Total Visitors": 2137.0, "POI_CBG": 421010379006.0, "Median Dwell Time": 4.0, "Total Spend": 1039.0, "Total Transactions": 50.0, "Total Customers": 30.0, "Median Spend per Transaction": 16.24, "Median Spend per Customer": 25.01 }, "geometry": { "type": "Point", "coordinates": [ -75.090212, 39.989253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-6x5", "Name": "Bonobos", "Category": "Clothing Stores", "Address": "1519 Walnut St", "LATITUDE": 39.949913, "LONGITUDE": -75.166858, "DATE_RANGE_START": 2019, "Total Visits": 448.0, "Total Visitors": 301.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 22.0, "Total Spend": 2906.0, "Total Transactions": 25.0, "Total Customers": 22.0, "Median Spend per Transaction": 108.8, "Median Spend per Customer": 70.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166858, 39.949913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-hwk", "Name": "The Men's Wearhouse", "Category": "Clothing Stores", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079413, "LONGITUDE": -75.029146, "DATE_RANGE_START": 2019, "Total Visits": 170.0, "Total Visitors": 132.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 19.0, "Total Spend": 1323.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 99.99, "Median Spend per Customer": 168.61 }, "geometry": { "type": "Point", "coordinates": [ -75.029146, 40.079413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-xqz", "Name": "Kinky Choices", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1299 N 7th St", "LATITUDE": 39.971585, "LONGITUDE": -75.147595, "DATE_RANGE_START": 2019, "Total Visits": 230.0, "Total Visitors": 160.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 19.0, "Total Spend": 2406.0, "Total Transactions": 58.0, "Total Customers": 55.0, "Median Spend per Transaction": 32.23, "Median Spend per Customer": 32.54 }, "geometry": { "type": "Point", "coordinates": [ -75.147595, 39.971585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "Name": "Ross Stores", "Category": "Department Stores", "Address": "7720 City Ave", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2019, "Total Visits": 1656.0, "Total Visitors": 1239.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 20.0, "Total Spend": 12009.0, "Total Transactions": 300.0, "Total Customers": 258.0, "Median Spend per Transaction": 29.98, "Median Spend per Customer": 33.97 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2200 Wheatsheaf Ln Ste E6", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 253.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 4.0, "Total Spend": 13747.0, "Total Transactions": 841.0, "Total Customers": 735.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6430 Castor Ave", "LATITUDE": 40.040673, "LONGITUDE": -75.076835, "DATE_RANGE_START": 2019, "Total Visits": 585.0, "Total Visitors": 380.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 6.0, "Total Spend": 2157.0, "Total Transactions": 248.0, "Total Customers": 125.0, "Median Spend per Transaction": 6.4, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.076835, 40.040673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1529 Chestnut St", "LATITUDE": 39.95137, "LONGITUDE": -75.166677, "DATE_RANGE_START": 2019, "Total Visits": 3148.0, "Total Visitors": 2465.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 15.0, "Total Spend": 32541.0, "Total Transactions": 2803.0, "Total Customers": 2222.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166677, 39.95137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-vvf", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "2951 Market St", "LATITUDE": 39.955606, "LONGITUDE": -75.181993, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 24.0, "Total Spend": 5211.0, "Total Transactions": 663.0, "Total Customers": 508.0, "Median Spend per Transaction": 7.64, "Median Spend per Customer": 8.19 }, "geometry": { "type": "Point", "coordinates": [ -75.181993, 39.955606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1820 Torresdale Ave", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2019, "Total Visits": 247.0, "Total Visitors": 160.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 4.0, "Total Spend": 3356.0, "Total Transactions": 636.0, "Total Customers": 282.0, "Median Spend per Transaction": 4.09, "Median Spend per Customer": 7.26 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-ks5", "Name": "Elwood", "Category": "Restaurants and Other Eating Places", "Address": "1007 Frankford Ave", "LATITUDE": 39.96637, "LONGITUDE": -75.134125, "DATE_RANGE_START": 2019, "Total Visits": 370.0, "Total Visitors": 346.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 1.0, "Total Spend": 391.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 77.76, "Median Spend per Customer": 77.76 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 39.96637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "2104 Market St", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2019, "Total Visits": 781.0, "Total Visitors": 525.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 35.0, "Total Spend": 2379.0, "Total Transactions": 170.0, "Total Customers": 138.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-td9", "Name": "Volver", "Category": "Restaurants and Other Eating Places", "Address": "300 S Broad St", "LATITUDE": 39.946987, "LONGITUDE": -75.165701, "DATE_RANGE_START": 2019, "Total Visits": 2893.0, "Total Visitors": 2094.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 27.0, "Total Spend": 1306.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 206.35, "Median Spend per Customer": 206.35 }, "geometry": { "type": "Point", "coordinates": [ -75.165701, 39.946987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6zf", "Name": "Royal Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1369 Franklin Mills Cir", "LATITUDE": 40.085942, "LONGITUDE": -74.962636, "DATE_RANGE_START": 2019, "Total Visits": 465.0, "Total Visitors": 400.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 60.0, "Total Spend": 1251.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 38.23, "Median Spend per Customer": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -74.962636, 40.085942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 W Hunting Park Ave", "LATITUDE": 40.008154, "LONGITUDE": -75.17322, "DATE_RANGE_START": 2019, "Total Visits": 816.0, "Total Visitors": 668.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 7.0, "Total Spend": 2481.0, "Total Transactions": 275.0, "Total Customers": 218.0, "Median Spend per Transaction": 6.65, "Median Spend per Customer": 7.05 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 40.008154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012072, "LONGITUDE": -75.115243, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 265.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 5.0, "Total Spend": 378.0, "Total Transactions": 27.0, "Total Customers": 20.0, "Median Spend per Transaction": 14.06, "Median Spend per Customer": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.115243, 40.012072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945313, "LONGITUDE": -75.238538, "DATE_RANGE_START": 2019, "Total Visits": 1099.0, "Total Visitors": 806.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 7.0, "Total Spend": 1997.0, "Total Transactions": 268.0, "Total Customers": 193.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 6.86 }, "geometry": { "type": "Point", "coordinates": [ -75.238538, 39.945313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "Name": "The Gold Standard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4800 Baltimore Ave", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2019, "Total Visits": 118.0, "Total Visitors": 107.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 12.0, "Total Spend": 3171.0, "Total Transactions": 188.0, "Total Customers": 162.0, "Median Spend per Transaction": 13.84, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-ks5", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "5763 N 3rd St", "LATITUDE": 39.95206, "LONGITUDE": -75.145094, "DATE_RANGE_START": 2019, "Total Visits": 408.0, "Total Visitors": 386.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 8351.0, "Total Transactions": 1273.0, "Total Customers": 758.0, "Median Spend per Transaction": 5.13, "Median Spend per Customer": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.145094, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2054 Red Lion Rd", "LATITUDE": 40.099554, "LONGITUDE": -75.024268, "DATE_RANGE_START": 2019, "Total Visits": 2335.0, "Total Visitors": 1877.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 11.0, "Total Spend": 996.0, "Total Transactions": 218.0, "Total Customers": 125.0, "Median Spend per Transaction": 3.97, "Median Spend per Customer": 5.39 }, "geometry": { "type": "Point", "coordinates": [ -75.024268, 40.099554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "Name": "Peddler Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2100 Spring St", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 83.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 231.0, "Total Spend": 3287.0, "Total Transactions": 463.0, "Total Customers": 273.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3200 Red Lion Rd", "LATITUDE": 40.081241, "LONGITUDE": -74.99492, "DATE_RANGE_START": 2019, "Total Visits": 195.0, "Total Visitors": 160.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 2.0, "Total Spend": 2571.0, "Total Transactions": 466.0, "Total Customers": 248.0, "Median Spend per Transaction": 4.44, "Median Spend per Customer": 6.24 }, "geometry": { "type": "Point", "coordinates": [ -74.99492, 40.081241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-t9z", "Name": "The Queen Grocery", "Category": "Grocery Stores", "Address": "6559 Torresdale Ave", "LATITUDE": 40.02303, "LONGITUDE": -75.048349, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 63.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 7.0, "Total Spend": 51.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.66, "Median Spend per Customer": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.048349, 40.02303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8d-m8v", "Name": "Quicky Mart Express", "Category": "Grocery Stores", "Address": "4346 Frankford Ave", "LATITUDE": 40.012599, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2019, "Total Visits": 490.0, "Total Visitors": 315.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 7.0, "Total Spend": 1926.0, "Total Transactions": 217.0, "Total Customers": 88.0, "Median Spend per Transaction": 8.45, "Median Spend per Customer": 12.43 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.012599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-5pv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1113 Market St", "LATITUDE": 39.952074, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2019, "Total Visits": 838.0, "Total Visitors": 650.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 70.0, "Total Spend": 7108.0, "Total Transactions": 1531.0, "Total Customers": 815.0, "Median Spend per Transaction": 3.65, "Median Spend per Customer": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.952074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-m6k", "Name": "Brave New Worlds", "Category": "Book Stores and News Dealers", "Address": "55 N 2nd St", "LATITUDE": 39.951384, "LONGITUDE": -75.143026, "DATE_RANGE_START": 2019, "Total Visits": 2357.0, "Total Visitors": 1827.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 59.0, "Total Spend": 650.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 30.23, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.143026, 39.951384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7z-6tv", "Name": "Dollar Discount", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6812 Rising Sun Ave", "LATITUDE": 40.055124, "LONGITUDE": -75.090736, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 213.0, "POI_CBG": 421010307003.0, "Median Dwell Time": 11.0, "Total Spend": 423.0, "Total Transactions": 27.0, "Total Customers": 25.0, "Median Spend per Transaction": 10.2, "Median Spend per Customer": 9.01 }, "geometry": { "type": "Point", "coordinates": [ -75.090736, 40.055124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-7yv", "Name": "Home2 Suites", "Category": "Traveler Accommodation", "Address": "1200 Arch St", "LATITUDE": 39.953662, "LONGITUDE": -75.15975, "DATE_RANGE_START": 2019, "Total Visits": 8135.0, "Total Visitors": 6000.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 101.0, "Total Spend": 21557.0, "Total Transactions": 65.0, "Total Customers": 57.0, "Median Spend per Transaction": 225.32, "Median Spend per Customer": 302.34 }, "geometry": { "type": "Point", "coordinates": [ -75.15975, 39.953662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-n89", "Name": "Southside Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "5213 Market St", "LATITUDE": 39.960357, "LONGITUDE": -75.225351, "DATE_RANGE_START": 2019, "Total Visits": 506.0, "Total Visitors": 380.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 13.0, "Total Spend": 424.0, "Total Transactions": 27.0, "Total Customers": 23.0, "Median Spend per Transaction": 12.1, "Median Spend per Customer": 18.37 }, "geometry": { "type": "Point", "coordinates": [ -75.225351, 39.960357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-s3q", "Name": "Lazaro's Pizzeria & Grill", "Category": "Restaurants and Other Eating Places", "Address": "1743 South St", "LATITUDE": 39.944595, "LONGITUDE": -75.171704, "DATE_RANGE_START": 2019, "Total Visits": 1441.0, "Total Visitors": 986.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 24.0, "Total Spend": 695.0, "Total Transactions": 32.0, "Total Customers": 23.0, "Median Spend per Transaction": 24.32, "Median Spend per Customer": 24.63 }, "geometry": { "type": "Point", "coordinates": [ -75.171704, 39.944595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-kpv", "Name": "The Goat Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "1907 Sansom St", "LATITUDE": 39.951177, "LONGITUDE": -75.172386, "DATE_RANGE_START": 2019, "Total Visits": 170.0, "Total Visitors": 135.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 62.0, "Total Spend": 609.0, "Total Transactions": 15.0, "Total Customers": 10.0, "Median Spend per Transaction": 23.9, "Median Spend per Customer": 47.14 }, "geometry": { "type": "Point", "coordinates": [ -75.172386, 39.951177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5726 Baltimore Ave # 46", "LATITUDE": 39.945629, "LONGITUDE": -75.237997, "DATE_RANGE_START": 2019, "Total Visits": 408.0, "Total Visitors": 338.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 8.0, "Total Spend": 9125.0, "Total Transactions": 232.0, "Total Customers": 205.0, "Median Spend per Transaction": 18.12, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.237997, 39.945629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "4430 N Broad St", "LATITUDE": 40.021282, "LONGITUDE": -75.14902, "DATE_RANGE_START": 2019, "Total Visits": 1572.0, "Total Visitors": 1146.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 7.0, "Total Spend": 3667.0, "Total Transactions": 345.0, "Total Customers": 303.0, "Median Spend per Transaction": 8.95, "Median Spend per Customer": 9.86 }, "geometry": { "type": "Point", "coordinates": [ -75.14902, 40.021282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-6p9", "Name": "La Colombe", "Category": "Restaurants and Other Eating Places", "Address": "1414 S Penn Sq", "LATITUDE": 39.95153, "LONGITUDE": -75.165284, "DATE_RANGE_START": 2019, "Total Visits": 1724.0, "Total Visitors": 1294.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 35.0, "Total Spend": 455.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 8.59, "Median Spend per Customer": 10.64 }, "geometry": { "type": "Point", "coordinates": [ -75.165284, 39.95153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1675 S Columbus Blvd", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2019, "Total Visits": 15596.0, "Total Visitors": 10171.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 29.0, "Total Spend": 3678.0, "Total Transactions": 496.0, "Total Customers": 368.0, "Median Spend per Transaction": 5.73, "Median Spend per Customer": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6hq", "Name": "Milkboy Philadelphia", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1100 Chestnut St", "LATITUDE": 39.949997, "LONGITUDE": -75.158798, "DATE_RANGE_START": 2019, "Total Visits": 1254.0, "Total Visitors": 845.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 121.0, "Total Spend": 2735.0, "Total Transactions": 100.0, "Total Customers": 92.0, "Median Spend per Transaction": 20.32, "Median Spend per Customer": 23.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158798, 39.949997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "Name": "Cafe Lift", "Category": "Restaurants and Other Eating Places", "Address": "428 N 13th St", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 62.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 58.0, "Total Spend": 15957.0, "Total Transactions": 480.0, "Total Customers": 416.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-kzz", "Name": "Bitar's", "Category": "Restaurants and Other Eating Places", "Address": "947 Federal St", "LATITUDE": 39.934662, "LONGITUDE": -75.160281, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 72.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 1.0, "Total Spend": 65.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.21, "Median Spend per Customer": 19.61 }, "geometry": { "type": "Point", "coordinates": [ -75.160281, 39.934662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "Name": "Royal's Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "7802 Limekiln Pike", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 77.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 11.0, "Total Spend": 3957.0, "Total Transactions": 168.0, "Total Customers": 127.0, "Median Spend per Transaction": 19.98, "Median Spend per Customer": 23.56 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-t7q", "Name": "Vetri Cucina", "Category": "Restaurants and Other Eating Places", "Address": "1312 Spruce St", "LATITUDE": 39.946687, "LONGITUDE": -75.163203, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 137.0, "POI_CBG": 421010011014.0, "Median Dwell Time": 44.0, "Total Spend": 6213.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 426.4, "Median Spend per Customer": 426.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163203, 39.946687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "Name": "Munchies Cafe", "Category": "Restaurants and Other Eating Places", "Address": "728 Chestnut St", "LATITUDE": 39.949457, "LONGITUDE": -75.153676, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 88.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 2.0, "Total Spend": 3898.0, "Total Transactions": 443.0, "Total Customers": 262.0, "Median Spend per Transaction": 8.17, "Median Spend per Customer": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153676, 39.949457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "Name": "Lebel Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5601 W Girard Ave", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2019, "Total Visits": 143.0, "Total Visitors": 113.0, "POI_CBG": 421010112003.0, "Median Dwell Time": 5.0, "Total Spend": 2449.0, "Total Transactions": 133.0, "Total Customers": 98.0, "Median Spend per Transaction": 12.63, "Median Spend per Customer": 18.95 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Ridge Ave", "LATITUDE": 40.030371, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2019, "Total Visits": 456.0, "Total Visitors": 393.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 9.0, "Total Spend": 877.0, "Total Transactions": 80.0, "Total Customers": 67.0, "Median Spend per Transaction": 10.04, "Median Spend per Customer": 11.06 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7300 Rising Sun Ave", "LATITUDE": 40.061832, "LONGITUDE": -75.084015, "DATE_RANGE_START": 2019, "Total Visits": 243.0, "Total Visitors": 217.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 3.0, "Total Spend": 2017.0, "Total Transactions": 413.0, "Total Customers": 213.0, "Median Spend per Transaction": 4.13, "Median Spend per Customer": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.084015, 40.061832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6191 Ridge Ave", "LATITUDE": 40.035531, "LONGITUDE": -75.217119, "DATE_RANGE_START": 2019, "Total Visits": 242.0, "Total Visitors": 177.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 9.0, "Total Spend": 5611.0, "Total Transactions": 953.0, "Total Customers": 523.0, "Median Spend per Transaction": 4.67, "Median Spend per Customer": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.217119, 40.035531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgb-47q", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "1500 Spring Garden St", "LATITUDE": 39.962439, "LONGITUDE": -75.1634, "DATE_RANGE_START": 2019, "Total Visits": 5720.0, "Total Visitors": 2432.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 294.0, "Total Spend": 8330.0, "Total Transactions": 870.0, "Total Customers": 613.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.1634, 39.962439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "238 S 20th St", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2019, "Total Visits": 180.0, "Total Visitors": 80.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 1123.0, "Total Spend": 8125.0, "Total Transactions": 1018.0, "Total Customers": 576.0, "Median Spend per Transaction": 6.2, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "Name": "Fishtown Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1802 Frankford Ave", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010157003.0, "Median Dwell Time": null, "Total Spend": 1069.0, "Total Transactions": 33.0, "Total Customers": 23.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 18.29 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-ph6-gzf", "Name": "Wynnefield Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1901 N 54th St", "LATITUDE": 39.986069, "LONGITUDE": -75.231575, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 158.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 54.0, "Total Spend": 131.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 33.05, "Median Spend per Customer": 33.05 }, "geometry": { "type": "Point", "coordinates": [ -75.231575, 39.986069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9910 Frankford Ave Ste 250", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2019, "Total Visits": 471.0, "Total Visitors": 363.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 7.0, "Total Spend": 2176.0, "Total Transactions": 92.0, "Total Customers": 68.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.55 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1002 S Broad St", "LATITUDE": 39.938246, "LONGITUDE": -75.166948, "DATE_RANGE_START": 2019, "Total Visits": 9440.0, "Total Visitors": 5565.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 17.0, "Total Spend": 7479.0, "Total Transactions": 1224.0, "Total Customers": 691.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.938246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1923 N 54th St", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 38.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 3.0, "Total Spend": 160.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6409 Torresdale Ave # 13", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2019, "Total Visits": 273.0, "Total Visitors": 172.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 3.0, "Total Spend": 3075.0, "Total Transactions": 533.0, "Total Customers": 245.0, "Median Spend per Transaction": 4.58, "Median Spend per Customer": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-s5z", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.011216, "LONGITUDE": -75.115625, "DATE_RANGE_START": 2019, "Total Visits": 731.0, "Total Visitors": 575.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 21.0, "Total Spend": 4270.0, "Total Transactions": 102.0, "Total Customers": 93.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.115625, 40.011216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "Name": "Claire's", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952045, "LONGITUDE": -75.16824, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 102.0, "Total Spend": 6722.0, "Total Transactions": 262.0, "Total Customers": 248.0, "Median Spend per Transaction": 21.04, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.16824, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "Name": "Finish Line", "Category": "Shoe Stores", "Address": "1449 Franklin Mills Cir", "LATITUDE": 40.086808, "LONGITUDE": -74.961767, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 213.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 6.0, "Total Spend": 2124.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 112.5, "Median Spend per Customer": 112.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961767, 40.086808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm9-t7q", "Name": "Harry Merrill & Son", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "124 S 8th St", "LATITUDE": 39.94877, "LONGITUDE": -75.154332, "DATE_RANGE_START": 2019, "Total Visits": 3781.0, "Total Visitors": 3005.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 2.0, "Total Spend": 3875.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 129.6, "Median Spend per Customer": 129.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154332, 39.94877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm3-t5f", "Name": "Black & Brew", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Passyunk Ave", "LATITUDE": 39.93027, "LONGITUDE": -75.162757, "DATE_RANGE_START": 2019, "Total Visits": 220.0, "Total Visitors": 70.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 704.0, "Total Spend": 6898.0, "Total Transactions": 613.0, "Total Customers": 383.0, "Median Spend per Transaction": 9.21, "Median Spend per Customer": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.162757, 39.93027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2901 Abbottsford Ave", "LATITUDE": 40.015127, "LONGITUDE": -75.178214, "DATE_RANGE_START": 2019, "Total Visits": 335.0, "Total Visitors": 230.0, "POI_CBG": 421010206001.0, "Median Dwell Time": 3.0, "Total Spend": 3657.0, "Total Transactions": 685.0, "Total Customers": 363.0, "Median Spend per Transaction": 4.73, "Median Spend per Customer": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.178214, 40.015127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "Name": "Sam's Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1000 Franklin Mills Cir", "LATITUDE": 40.093002, "LONGITUDE": -74.958736, "DATE_RANGE_START": 2019, "Total Visits": 7091.0, "Total Visitors": 4441.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 20.0, "Total Spend": 249923.0, "Total Transactions": 4118.0, "Total Customers": 1726.0, "Median Spend per Transaction": 36.05, "Median Spend per Customer": 81.91 }, "geometry": { "type": "Point", "coordinates": [ -74.958736, 40.093002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2027 W Oregon Ave", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2019, "Total Visits": 1014.0, "Total Visitors": 771.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 11.0, "Total Spend": 1002.0, "Total Transactions": 55.0, "Total Customers": 47.0, "Median Spend per Transaction": 9.32, "Median Spend per Customer": 13.32 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-7qz", "Name": "Pizza Hut", "Category": "Restaurants and Other Eating Places", "Address": "8001 Castor Ave", "LATITUDE": 40.061876, "LONGITUDE": -75.055584, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 30.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 28.0, "Total Spend": 2962.0, "Total Transactions": 163.0, "Total Customers": 142.0, "Median Spend per Transaction": 17.03, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.055584, 40.061876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "Name": "Alexa Pharmacy", "Category": "Health and Personal Care Stores", "Address": "919 Tyson Ave", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010308003.0, "Median Dwell Time": 6.0, "Total Spend": 1050.0, "Total Transactions": 35.0, "Total Customers": 33.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "7129 Frankford Ave", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 23.0, "POI_CBG": 421010326001.0, "Median Dwell Time": null, "Total Spend": 5584.0, "Total Transactions": 283.0, "Total Customers": 253.0, "Median Spend per Transaction": 17.45, "Median Spend per Customer": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "90 Franklin Mills Blvd", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2019, "Total Visits": 696.0, "Total Visitors": 548.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 6517.0, "Total Transactions": 601.0, "Total Customers": 423.0, "Median Spend per Transaction": 9.89, "Median Spend per Customer": 11.46 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pj2-tsq", "Name": "Beijing", "Category": "Restaurants and Other Eating Places", "Address": "909 E Cayuga St", "LATITUDE": 40.015027, "LONGITUDE": -75.108817, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010191004.0, "Median Dwell Time": 3.0, "Total Spend": 3200.0, "Total Transactions": 128.0, "Total Customers": 115.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 21.95 }, "geometry": { "type": "Point", "coordinates": [ -75.108817, 40.015027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm3-xh5", "Name": "Stephanie's Flowers", "Category": "Florists", "Address": "1430 S 9th St", "LATITUDE": 39.931071, "LONGITUDE": -75.159796, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 25.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 205.0, "Total Spend": 438.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159796, 39.931071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-ph6-gzf", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1913 N 54th St", "LATITUDE": 39.986348, "LONGITUDE": -75.231742, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 27.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 212.0, "Total Spend": 219.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 10.26, "Median Spend per Customer": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.231742, 39.986348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-4d9", "Name": "Americas Quality Tire", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5915 Harbison Ave", "LATITUDE": 40.020793, "LONGITUDE": -75.063071, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010319003.0, "Median Dwell Time": 5.0, "Total Spend": 763.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063071, 40.020793 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "Name": "Bloomsday Cafe", "Category": "Restaurants and Other Eating Places", "Address": "414 S 2nd St", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 10.0, "Total Spend": 7930.0, "Total Transactions": 165.0, "Total Customers": 118.0, "Median Spend per Transaction": 31.21, "Median Spend per Customer": 41.72 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "Name": "All The Way Live", "Category": "Restaurants and Other Eating Places", "Address": "6108 Germantown Ave", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 43.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 33.0, "Total Spend": 148.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 33.33, "Median Spend per Customer": 33.33 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kj9", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "2100 Walnut St", "LATITUDE": 39.950618, "LONGITUDE": -75.175914, "DATE_RANGE_START": 2019, "Total Visits": 3268.0, "Total Visitors": 2097.0, "POI_CBG": 421010008031.0, "Median Dwell Time": 251.0, "Total Spend": 50.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 7.79, "Median Spend per Customer": 7.79 }, "geometry": { "type": "Point", "coordinates": [ -75.175914, 39.950618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25n-222@628-pm4-ct9", "Name": "Okie Dokie Donuts", "Category": "Restaurants and Other Eating Places", "Address": "1439 Snyder Ave", "LATITUDE": 39.924749, "LONGITUDE": -75.171055, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 68.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 21.0, "Total Spend": 279.0, "Total Transactions": 27.0, "Total Customers": 27.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.171055, 39.924749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "Name": "Vapordelphia", "Category": "Other Miscellaneous Store Retailers", "Address": "603 S 9th St", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2019, "Total Visits": 1556.0, "Total Visitors": 1163.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 52.0, "Total Spend": 9181.0, "Total Transactions": 223.0, "Total Customers": 147.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 43.25 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4268 Ridge Ave", "LATITUDE": 40.009408, "LONGITUDE": -75.196533, "DATE_RANGE_START": 2019, "Total Visits": 418.0, "Total Visitors": 371.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 1.0, "Total Spend": 8507.0, "Total Transactions": 1492.0, "Total Customers": 838.0, "Median Spend per Transaction": 4.89, "Median Spend per Customer": 6.78 }, "geometry": { "type": "Point", "coordinates": [ -75.196533, 40.009408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-mzf", "Name": "4 Seasons", "Category": "Restaurants and Other Eating Places", "Address": "3503 B St", "LATITUDE": 40.003248, "LONGITUDE": -75.124064, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 102.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 16.0, "Total Spend": 6018.0, "Total Transactions": 526.0, "Total Customers": 448.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 6.05 }, "geometry": { "type": "Point", "coordinates": [ -75.124064, 40.003248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "Name": "Scrub Pro", "Category": "Clothing Stores", "Address": "817 Adams Ave # 819", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2019, "Total Visits": 5667.0, "Total Visitors": 4183.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 21.0, "Total Spend": 6766.0, "Total Transactions": 135.0, "Total Customers": 118.0, "Median Spend per Transaction": 39.9, "Median Spend per Customer": 43.96 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "Name": "Grossman Furniture", "Category": "Furniture Stores", "Address": "206 Arch St", "LATITUDE": 39.951777, "LONGITUDE": -75.14359, "DATE_RANGE_START": 2019, "Total Visits": 691.0, "Total Visitors": 503.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 22.0, "Total Spend": 3675.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 899.0, "Median Spend per Customer": 899.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14359, 39.951777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6800 Bustleton Ave", "LATITUDE": 40.040921, "LONGITUDE": -75.065658, "DATE_RANGE_START": 2019, "Total Visits": 693.0, "Total Visitors": 463.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 3.0, "Total Spend": 158.0, "Total Transactions": 25.0, "Total Customers": 15.0, "Median Spend per Transaction": 5.61, "Median Spend per Customer": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.065658, 40.040921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-b8v", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "8130 Roosevelt Blvd", "LATITUDE": 40.059227, "LONGITUDE": -75.045575, "DATE_RANGE_START": 2019, "Total Visits": 420.0, "Total Visitors": 328.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 5.0, "Total Spend": 1623.0, "Total Transactions": 92.0, "Total Customers": 65.0, "Median Spend per Transaction": 11.85, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.045575, 40.059227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@63s-dvq-vpv", "Name": "Hair Outlet Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "6100 Woodland Ave", "LATITUDE": 39.92823, "LONGITUDE": -75.22885, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 58.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 68.0, "Total Spend": 2677.0, "Total Transactions": 115.0, "Total Customers": 100.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 19.94 }, "geometry": { "type": "Point", "coordinates": [ -75.22885, 39.92823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3750 W Girard Ave", "LATITUDE": 39.974361, "LONGITUDE": -75.199089, "DATE_RANGE_START": 2019, "Total Visits": 2557.0, "Total Visitors": 2037.0, "POI_CBG": 421010110001.0, "Median Dwell Time": 4.0, "Total Spend": 1471.0, "Total Transactions": 68.0, "Total Customers": 58.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -75.199089, 39.974361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6215 Roosevelt Blvd", "LATITUDE": 40.033829, "LONGITUDE": -75.072583, "DATE_RANGE_START": 2019, "Total Visits": 1128.0, "Total Visitors": 928.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 4.0, "Total Spend": 8796.0, "Total Transactions": 388.0, "Total Customers": 257.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 28.52 }, "geometry": { "type": "Point", "coordinates": [ -75.072583, 40.033829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "501 W Lehigh Ave", "LATITUDE": 39.992376, "LONGITUDE": -75.140508, "DATE_RANGE_START": 2019, "Total Visits": 1686.0, "Total Visitors": 1058.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 4.0, "Total Spend": 11334.0, "Total Transactions": 531.0, "Total Customers": 368.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140508, 39.992376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-ph8-rx5", "Name": "Royal Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "7610 City Ave", "LATITUDE": 39.97851, "LONGITUDE": -75.271319, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 6.0, "Total Spend": 402.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 120.8, "Median Spend per Customer": 120.8 }, "geometry": { "type": "Point", "coordinates": [ -75.271319, 39.97851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9171 Roosevelt Blvd", "LATITUDE": 40.076084, "LONGITUDE": -75.031448, "DATE_RANGE_START": 2019, "Total Visits": 1782.0, "Total Visitors": 1571.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 11.0, "Total Spend": 12045.0, "Total Transactions": 713.0, "Total Customers": 610.0, "Median Spend per Transaction": 12.92, "Median Spend per Customer": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.031448, 40.076084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "Name": "Ganaan Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5909 N 5th St", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010274011.0, "Median Dwell Time": 1.0, "Total Spend": 6138.0, "Total Transactions": 198.0, "Total Customers": 163.0, "Median Spend per Transaction": 26.7, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-p7q", "Name": "Turning Heads", "Category": "Clothing Stores", "Address": "2731 Germantown Ave", "LATITUDE": 39.993848, "LONGITUDE": -75.147504, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010175003.0, "Median Dwell Time": null, "Total Spend": 267.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147504, 39.993848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "Name": "Giovanni's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "5604 Greene St", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 85.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 39.0, "Total Spend": 1494.0, "Total Transactions": 73.0, "Total Customers": 62.0, "Median Spend per Transaction": 18.98, "Median Spend per Customer": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "Name": "Nike Factory Store", "Category": "Shoe Stores", "Address": "901 Market St Unit 1095", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 23.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 28.0, "Total Spend": 36126.0, "Total Transactions": 503.0, "Total Customers": 421.0, "Median Spend per Transaction": 44.07, "Median Spend per Customer": 46.87 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "716 South St", "LATITUDE": 39.942147, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2019, "Total Visits": 255.0, "Total Visitors": 190.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 77.0, "Total Spend": 22191.0, "Total Transactions": 938.0, "Total Customers": 696.0, "Median Spend per Transaction": 21.21, "Median Spend per Customer": 23.56 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.942147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.029727, "LONGITUDE": -75.09938, "DATE_RANGE_START": 2019, "Total Visits": 805.0, "Total Visitors": 688.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 14.0, "Total Spend": 8862.0, "Total Transactions": 650.0, "Total Customers": 511.0, "Median Spend per Transaction": 11.61, "Median Spend per Customer": 12.78 }, "geometry": { "type": "Point", "coordinates": [ -75.09938, 40.029727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2805 S Front St # 2809", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2019, "Total Visits": 560.0, "Total Visitors": 368.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 3.0, "Total Spend": 10194.0, "Total Transactions": 1596.0, "Total Customers": 670.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 8.28 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-rc5", "Name": "The Olde Bar", "Category": "Restaurants and Other Eating Places", "Address": "125 Walnut St", "LATITUDE": 39.946931, "LONGITUDE": -75.144178, "DATE_RANGE_START": 2019, "Total Visits": 160.0, "Total Visitors": 145.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 37.0, "Total Spend": 194.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 15.18, "Median Spend per Customer": 32.89 }, "geometry": { "type": "Point", "coordinates": [ -75.144178, 39.946931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "Name": "Keller Market", "Category": "Restaurants and Other Eating Places", "Address": "7964 Verree Rd", "LATITUDE": 40.072481, "LONGITUDE": -75.076705, "DATE_RANGE_START": 2019, "Total Visits": 430.0, "Total Visitors": 222.0, "POI_CBG": 421010341002.0, "Median Dwell Time": 45.0, "Total Spend": 2607.0, "Total Transactions": 168.0, "Total Customers": 93.0, "Median Spend per Transaction": 11.64, "Median Spend per Customer": 23.01 }, "geometry": { "type": "Point", "coordinates": [ -75.076705, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-nqz", "Name": "Thanal Indian Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1939 Arch St", "LATITUDE": 39.955758, "LONGITUDE": -75.172555, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 137.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 49.0, "Total Spend": 10145.0, "Total Transactions": 207.0, "Total Customers": 188.0, "Median Spend per Transaction": 38.08, "Median Spend per Customer": 38.38 }, "geometry": { "type": "Point", "coordinates": [ -75.172555, 39.955758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmc-qmk", "Name": "Federal Donuts 2nd Street", "Category": "Restaurants and Other Eating Places", "Address": "1219 S 2nd St", "LATITUDE": 39.932221, "LONGITUDE": -75.147485, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010025002.0, "Median Dwell Time": null, "Total Spend": 12312.0, "Total Transactions": 993.0, "Total Customers": 881.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.147485, 39.932221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg2-4qf", "Name": "Phu Fha Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "355 Lyceum Ave", "LATITUDE": 40.029908, "LONGITUDE": -75.218798, "DATE_RANGE_START": 2019, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010213004.0, "Median Dwell Time": null, "Total Spend": 796.0, "Total Transactions": 37.0, "Total Customers": 32.0, "Median Spend per Transaction": 17.23, "Median Spend per Customer": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.218798, 40.029908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pjf-t5f", "Name": "Host", "Category": "Furniture Stores", "Address": "7908 Germantown Ave", "LATITUDE": 40.069687, "LONGITUDE": -75.200234, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 20.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 452.0, "Total Spend": 435.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 11.82, "Median Spend per Customer": 14.84 }, "geometry": { "type": "Point", "coordinates": [ -75.200234, 40.069687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "Name": "YOLO Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1632 W Susquehanna Ave # 1662", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 28.0, "POI_CBG": 421010167024.0, "Median Dwell Time": 7.0, "Total Spend": 2625.0, "Total Transactions": 142.0, "Total Customers": 55.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6301 Chew Ave", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2019, "Total Visits": 1233.0, "Total Visitors": 773.0, "POI_CBG": 421010389003.0, "Median Dwell Time": 9.0, "Total Spend": 3111.0, "Total Transactions": 133.0, "Total Customers": 93.0, "Median Spend per Transaction": 14.15, "Median Spend per Customer": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2640 E Cumberland St", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2019, "Total Visits": 841.0, "Total Visitors": 673.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 6.0, "Total Spend": 14000.0, "Total Transactions": 650.0, "Total Customers": 433.0, "Median Spend per Transaction": 16.35, "Median Spend per Customer": 23.79 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-8vz", "Name": "Mom's Organic Market", "Category": "Grocery Stores", "Address": "34 S 11th St", "LATITUDE": 39.950979, "LONGITUDE": -75.158689, "DATE_RANGE_START": 2019, "Total Visits": 673.0, "Total Visitors": 586.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 78807.0, "Total Transactions": 3633.0, "Total Customers": 1522.0, "Median Spend per Transaction": 13.19, "Median Spend per Customer": 27.23 }, "geometry": { "type": "Point", "coordinates": [ -75.158689, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "Name": "Not Just Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2240 S 11th St", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 7.0, "Total Spend": 855.0, "Total Transactions": 60.0, "Total Customers": 47.0, "Median Spend per Transaction": 11.83, "Median Spend per Customer": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-3kf", "Name": "South Side Pizza", "Category": "Restaurants and Other Eating Places", "Address": "740 Mifflin St", "LATITUDE": 39.925364, "LONGITUDE": -75.159106, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 18.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 240.0, "Total Spend": 437.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 22.71, "Median Spend per Customer": 22.71 }, "geometry": { "type": "Point", "coordinates": [ -75.159106, 39.925364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-94v", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1001 Market St Unit C065", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2019, "Total Visits": 22929.0, "Total Visitors": 13449.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 14.0, "Total Spend": 14797.0, "Total Transactions": 255.0, "Total Customers": 228.0, "Median Spend per Transaction": 35.63, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pm9-wtv", "Name": "Ross Stores", "Category": "Department Stores", "Address": "701 Market St", "LATITUDE": 39.951286, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2019, "Total Visits": 59483.0, "Total Visitors": 32677.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 59.0, "Total Spend": 21347.0, "Total Transactions": 538.0, "Total Customers": 473.0, "Median Spend per Transaction": 26.77, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.951286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6429 Rising Sun Ave", "LATITUDE": 40.050364, "LONGITUDE": -75.094508, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 92.0, "POI_CBG": 421010306003.0, "Median Dwell Time": 5.0, "Total Spend": 1766.0, "Total Transactions": 260.0, "Total Customers": 145.0, "Median Spend per Transaction": 5.53, "Median Spend per Customer": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094508, 40.050364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4501 Castor Ave", "LATITUDE": 40.016881, "LONGITUDE": -75.096377, "DATE_RANGE_START": 2019, "Total Visits": 187.0, "Total Visitors": 158.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 8.0, "Total Spend": 1773.0, "Total Transactions": 205.0, "Total Customers": 122.0, "Median Spend per Transaction": 5.41, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.096377, 40.016881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-qxq", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "3451 Aramingo Ave", "LATITUDE": 39.991716, "LONGITUDE": -75.09926, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 167.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 6.0, "Total Spend": 1205.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 90.0, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09926, 39.991716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg8-kmk", "Name": "Brewerytown Beats", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1517 N Bailey St", "LATITUDE": 39.979092, "LONGITUDE": -75.178265, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 57.0, "POI_CBG": 421010138001.0, "Median Dwell Time": 25.0, "Total Spend": 70.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.178265, 39.979092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-qs5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3501 Cedar St", "LATITUDE": 39.991422, "LONGITUDE": -75.097766, "DATE_RANGE_START": 2019, "Total Visits": 326.0, "Total Visitors": 262.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 11.0, "Total Spend": 219.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 15.77, "Median Spend per Customer": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.097766, 39.991422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p8d-fmk", "Name": "Renzi's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2728 Orthodox St", "LATITUDE": 39.998034, "LONGITUDE": -75.074418, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 33.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 255.0, "Total Spend": 7270.0, "Total Transactions": 293.0, "Total Customers": 198.0, "Median Spend per Transaction": 22.45, "Median Spend per Customer": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -75.074418, 39.998034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-phz-tjv", "Name": "Pizza express", "Category": "Restaurants and Other Eating Places", "Address": "3324 Kensington Ave", "LATITUDE": 39.998436, "LONGITUDE": -75.110266, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 35.0, "POI_CBG": 421010192004.0, "Median Dwell Time": 9.0, "Total Spend": 1777.0, "Total Transactions": 115.0, "Total Customers": 95.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.110266, 39.998436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-v75", "Name": "W P Cooke", "Category": "Other Motor Vehicle Dealers", "Address": "4731 N Broad St", "LATITUDE": 40.025446, "LONGITUDE": -75.147136, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 67.0, "POI_CBG": 421010283003.0, "Median Dwell Time": 11.0, "Total Spend": 108.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147136, 40.025446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4390 Richmond St", "LATITUDE": 39.997473, "LONGITUDE": -75.074081, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 150.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 5.0, "Total Spend": 4807.0, "Total Transactions": 223.0, "Total Customers": 75.0, "Median Spend per Transaction": 13.83, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.074081, 39.997473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-gkz", "Name": "Nifty Fifty's", "Category": "Restaurants and Other Eating Places", "Address": "2491 Grant Ave", "LATITUDE": 40.079457, "LONGITUDE": -75.025402, "DATE_RANGE_START": 2019, "Total Visits": 1837.0, "Total Visitors": 1541.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 31.0, "Total Spend": 452.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 36.64, "Median Spend per Customer": 45.13 }, "geometry": { "type": "Point", "coordinates": [ -75.025402, 40.079457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "Name": "Spasso Italian Grill", "Category": "Restaurants and Other Eating Places", "Address": "34 S Front St", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2019, "Total Visits": 660.0, "Total Visitors": 581.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 45.0, "Total Spend": 11659.0, "Total Transactions": 142.0, "Total Customers": 135.0, "Median Spend per Transaction": 72.36, "Median Spend per Customer": 67.56 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-9cq", "Name": "Dahlak", "Category": "Restaurants and Other Eating Places", "Address": "4708 Baltimore Ave", "LATITUDE": 39.948401, "LONGITUDE": -75.21737, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 232.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 51.0, "Total Spend": 9001.0, "Total Transactions": 365.0, "Total Customers": 267.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21737, 39.948401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmd-vmk", "Name": "Erawan Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "123 S 23rd St", "LATITUDE": 39.951764, "LONGITUDE": -75.178105, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 107.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 172.0, "Total Spend": 3483.0, "Total Transactions": 93.0, "Total Customers": 87.0, "Median Spend per Transaction": 33.62, "Median Spend per Customer": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.178105, 39.951764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmv-3bk", "Name": "The Bistro", "Category": "Restaurants and Other Eating Places", "Address": "1001 Intrepid Ave", "LATITUDE": 39.895397, "LONGITUDE": -75.171867, "DATE_RANGE_START": 2019, "Total Visits": 1416.0, "Total Visitors": 693.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 412.0, "Total Spend": 289.0, "Total Transactions": 23.0, "Total Customers": 10.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.171867, 39.895397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "Name": "Gia Pronto", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 57.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 42.0, "Total Spend": 15659.0, "Total Transactions": 2135.0, "Total Customers": 1011.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 10.32 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@63s-dw9-7nq", "Name": "LeBus Bakery", "Category": "Restaurants and Other Eating Places", "Address": "Terminal C Philadelphia Airport", "LATITUDE": 39.877284, "LONGITUDE": -75.241546, "DATE_RANGE_START": 2019, "Total Visits": 454923.0, "Total Visitors": 244998.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 76.0, "Total Spend": 1652.0, "Total Transactions": 203.0, "Total Customers": 152.0, "Median Spend per Transaction": 7.13, "Median Spend per Customer": 7.93 }, "geometry": { "type": "Point", "coordinates": [ -75.241546, 39.877284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "117 S 16th St", "LATITUDE": 39.950584, "LONGITUDE": -75.167188, "DATE_RANGE_START": 2019, "Total Visits": 670.0, "Total Visitors": 578.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 6.0, "Total Spend": 8030.0, "Total Transactions": 1781.0, "Total Customers": 938.0, "Median Spend per Transaction": 3.66, "Median Spend per Customer": 5.07 }, "geometry": { "type": "Point", "coordinates": [ -75.167188, 39.950584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1600 John F Kennedy Blvd", "LATITUDE": 39.953718, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2019, "Total Visits": 550.0, "Total Visitors": 430.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 12072.0, "Total Transactions": 2958.0, "Total Customers": 1403.0, "Median Spend per Transaction": 3.45, "Median Spend per Customer": 4.84 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.953718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-wrk", "Name": "Lulu Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4508 Walnut St", "LATITUDE": 39.955024, "LONGITUDE": -75.212218, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010086012.0, "Median Dwell Time": 200.0, "Total Spend": 2086.0, "Total Transactions": 172.0, "Total Customers": 140.0, "Median Spend per Transaction": 11.7, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212218, 39.955024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p7x-dsq", "Name": "Rib Rack", "Category": "Restaurants and Other Eating Places", "Address": "2100 Tyson Ave", "LATITUDE": 40.042525, "LONGITUDE": -75.063219, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 22.0, "POI_CBG": 421010314022.0, "Median Dwell Time": 53.0, "Total Spend": 690.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 59.19, "Median Spend per Customer": 59.19 }, "geometry": { "type": "Point", "coordinates": [ -75.063219, 40.042525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj4-8d9", "Name": "New Germantown Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4923 Germantown Ave", "LATITUDE": 40.028807, "LONGITUDE": -75.162735, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 23.0, "POI_CBG": 421010245002.0, "Median Dwell Time": 824.0, "Total Spend": 222.0, "Total Transactions": 17.0, "Total Customers": 15.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162735, 40.028807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-ffz", "Name": "D'jakarta Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1540 W Ritner St", "LATITUDE": 39.920881, "LONGITUDE": -75.173653, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010039021.0, "Median Dwell Time": 1.0, "Total Spend": 418.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 21.43, "Median Spend per Customer": 26.69 }, "geometry": { "type": "Point", "coordinates": [ -75.173653, 39.920881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "Name": "Einstein Brothers", "Category": "Restaurants and Other Eating Places", "Address": "5600 City Ave", "LATITUDE": 39.994394, "LONGITUDE": -75.238422, "DATE_RANGE_START": 2019, "Total Visits": 441.0, "Total Visitors": 283.0, "POI_CBG": 421010117001.0, "Median Dwell Time": 76.0, "Total Spend": 3216.0, "Total Transactions": 195.0, "Total Customers": 100.0, "Median Spend per Transaction": 3.78, "Median Spend per Customer": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.238422, 39.994394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "Name": "Engimono Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1811 Fairmount Ave", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2019, "Total Visits": 267.0, "Total Visitors": 148.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 973.0, "Total Spend": 13425.0, "Total Transactions": 418.0, "Total Customers": 335.0, "Median Spend per Transaction": 29.82, "Median Spend per Customer": 31.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "Name": "Mission BBQ", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2019, "Total Visits": 1113.0, "Total Visitors": 959.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 17.0, "Total Spend": 3220.0, "Total Transactions": 27.0, "Total Customers": 22.0, "Median Spend per Transaction": 40.59, "Median Spend per Customer": 27.29 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmb-7yv", "Name": "John Yi Fish Market", "Category": "Specialty Food Stores", "Address": "51 N 12th St", "LATITUDE": 39.953479, "LONGITUDE": -75.159041, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 6069.0, "Total Transactions": 210.0, "Total Customers": 178.0, "Median Spend per Transaction": 21.33, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159041, 39.953479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj7-k75", "Name": "Got The Look", "Category": "Clothing Stores", "Address": "825 Adams Ave # 27", "LATITUDE": 40.03117, "LONGITUDE": -75.103826, "DATE_RANGE_START": 2019, "Total Visits": 5667.0, "Total Visitors": 4183.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 21.0, "Total Spend": 18978.0, "Total Transactions": 430.0, "Total Customers": 371.0, "Median Spend per Transaction": 34.99, "Median Spend per Customer": 36.98 }, "geometry": { "type": "Point", "coordinates": [ -75.103826, 40.03117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2100 Market St", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2019, "Total Visits": 570.0, "Total Visitors": 433.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 5.0, "Total Spend": 6501.0, "Total Transactions": 1298.0, "Total Customers": 693.0, "Median Spend per Transaction": 4.09, "Median Spend per Customer": 6.16 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "221 W Hunting Park Ave", "LATITUDE": 40.014677, "LONGITUDE": -75.130343, "DATE_RANGE_START": 2019, "Total Visits": 480.0, "Total Visitors": 381.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 3.0, "Total Spend": 3890.0, "Total Transactions": 690.0, "Total Customers": 383.0, "Median Spend per Transaction": 4.51, "Median Spend per Customer": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.014677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6620 N Broad St", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2019, "Total Visits": 316.0, "Total Visitors": 242.0, "POI_CBG": 421010268003.0, "Median Dwell Time": 2.0, "Total Spend": 3814.0, "Total Transactions": 653.0, "Total Customers": 326.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 6.82 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4133 G St", "LATITUDE": 40.011535, "LONGITUDE": -75.111695, "DATE_RANGE_START": 2019, "Total Visits": 620.0, "Total Visitors": 500.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 5.0, "Total Spend": 2850.0, "Total Transactions": 185.0, "Total Customers": 132.0, "Median Spend per Transaction": 11.99, "Median Spend per Customer": 13.78 }, "geometry": { "type": "Point", "coordinates": [ -75.111695, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-28v", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "9159 Roosevelt Blvd", "LATITUDE": 40.074524, "LONGITUDE": -75.032955, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 58.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 29.0, "Total Spend": 1624.0, "Total Transactions": 43.0, "Total Customers": 38.0, "Median Spend per Transaction": 31.99, "Median Spend per Customer": 38.66 }, "geometry": { "type": "Point", "coordinates": [ -75.032955, 40.074524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "Name": "Tandy Leather Factory", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "11000 Roosevelt Blvd Ste 300", "LATITUDE": 40.102565, "LONGITUDE": -75.008773, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 316.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 9.0, "Total Spend": 866.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 63.67, "Median Spend per Customer": 63.67 }, "geometry": { "type": "Point", "coordinates": [ -75.008773, 40.102565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2419 S 24th St", "LATITUDE": 39.921672, "LONGITUDE": -75.186144, "DATE_RANGE_START": 2019, "Total Visits": 1906.0, "Total Visitors": 1418.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 21.0, "Total Spend": 11006.0, "Total Transactions": 263.0, "Total Customers": 225.0, "Median Spend per Transaction": 27.98, "Median Spend per Customer": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.186144, 39.921672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993729, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2019, "Total Visits": 178.0, "Total Visitors": 128.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 12.0, "Total Spend": 1914.0, "Total Transactions": 163.0, "Total Customers": 127.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.993729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "Name": "DiNapoli Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Front St", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2019, "Total Visits": 268.0, "Total Visitors": 223.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 5.0, "Total Spend": 1470.0, "Total Transactions": 63.0, "Total Customers": 43.0, "Median Spend per Transaction": 18.86, "Median Spend per Customer": 27.85 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "Name": "The Twisted Tail", "Category": "Restaurants and Other Eating Places", "Address": "509 S 2nd St", "LATITUDE": 39.941828, "LONGITUDE": -75.145203, "DATE_RANGE_START": 2019, "Total Visits": 215.0, "Total Visitors": 198.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 42.0, "Total Spend": 31065.0, "Total Transactions": 545.0, "Total Customers": 385.0, "Median Spend per Transaction": 40.15, "Median Spend per Customer": 50.15 }, "geometry": { "type": "Point", "coordinates": [ -75.145203, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "Name": "China Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "2842 Saint Vincent St", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2019, "Total Visits": 621.0, "Total Visitors": 518.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 34.0, "Total Spend": 5233.0, "Total Transactions": 93.0, "Total Customers": 82.0, "Median Spend per Transaction": 47.43, "Median Spend per Customer": 51.1 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmb-ce5", "Name": "Ralphs Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "760 S 9th St", "LATITUDE": 39.940063, "LONGITUDE": -75.157832, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 132.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 40.0, "Total Spend": 1091.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 144.0, "Median Spend per Customer": 144.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157832, 39.940063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "Name": "Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1309 Sansom St", "LATITUDE": 39.95002, "LONGITUDE": -75.162328, "DATE_RANGE_START": 2019, "Total Visits": 420.0, "Total Visitors": 315.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 94.0, "Total Spend": 153614.0, "Total Transactions": 4456.0, "Total Customers": 3580.0, "Median Spend per Transaction": 23.6, "Median Spend per Customer": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162328, 39.95002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f9f", "Name": "El Balconcito II", "Category": "Restaurants and Other Eating Places", "Address": "7326 Castor Ave", "LATITUDE": 40.052956, "LONGITUDE": -75.064913, "DATE_RANGE_START": 2019, "Total Visits": 1196.0, "Total Visitors": 735.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 70.0, "Total Spend": 5408.0, "Total Transactions": 98.0, "Total Customers": 82.0, "Median Spend per Transaction": 39.42, "Median Spend per Customer": 57.68 }, "geometry": { "type": "Point", "coordinates": [ -75.064913, 40.052956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@63s-dw4-rzf", "Name": "Gachi Sushi and Noodle", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895158, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 7395.0, "Total Transactions": 408.0, "Total Customers": 363.0, "Median Spend per Transaction": 13.78, "Median Spend per Customer": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.895158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "2946 Island Ave", "LATITUDE": 39.899825, "LONGITUDE": -75.241379, "DATE_RANGE_START": 2019, "Total Visits": 711.0, "Total Visitors": 528.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 19.0, "Total Spend": 863.0, "Total Transactions": 73.0, "Total Customers": 68.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 10.95 }, "geometry": { "type": "Point", "coordinates": [ -75.241379, 39.899825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Broad St", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2019, "Total Visits": 1003.0, "Total Visitors": 810.0, "POI_CBG": 421010200001.0, "Median Dwell Time": 7.0, "Total Spend": 5777.0, "Total Transactions": 810.0, "Total Customers": 601.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 8.06 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "551 Franklin Mills Cir", "LATITUDE": 40.089385, "LONGITUDE": -74.964383, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 311.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 4017.0, "Total Transactions": 680.0, "Total Customers": 370.0, "Median Spend per Transaction": 5.17, "Median Spend per Customer": 6.38 }, "geometry": { "type": "Point", "coordinates": [ -74.964383, 40.089385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj6-9s5", "Name": "New Generation Super Deli", "Category": "Restaurants and Other Eating Places", "Address": "351 E Olney Ave", "LATITUDE": 40.034686, "LONGITUDE": -75.115012, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 148.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 1.0, "Total Spend": 18.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.3, "Median Spend per Customer": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.115012, 40.034686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phj-rrk", "Name": "Sunny Side Breakfast & Lunch", "Category": "Restaurants and Other Eating Places", "Address": "7706 Ogontz Ave", "LATITUDE": 40.071002, "LONGITUDE": -75.157739, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 48.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 12.0, "Total Spend": 419.0, "Total Transactions": 23.0, "Total Customers": 23.0, "Median Spend per Transaction": 20.06, "Median Spend per Customer": 20.06 }, "geometry": { "type": "Point", "coordinates": [ -75.157739, 40.071002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7512 Bustleton Ave", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2019, "Total Visits": 633.0, "Total Visitors": 440.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 4.0, "Total Spend": 5771.0, "Total Transactions": 923.0, "Total Customers": 473.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 7.72 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dy9", "Name": "Firestone Complete Auto Care", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7320 Elgin Ave", "LATITUDE": 40.052472, "LONGITUDE": -75.06646, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 230.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 126.0, "Total Spend": 621.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 76.36, "Median Spend per Customer": 76.36 }, "geometry": { "type": "Point", "coordinates": [ -75.06646, 40.052472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "Name": "Beer Stop", "Category": "Beer, Wine, and Liquor Stores", "Address": "4252 Rising Sun Ave", "LATITUDE": 40.015837, "LONGITUDE": -75.130275, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 208.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 4.0, "Total Spend": 4396.0, "Total Transactions": 98.0, "Total Customers": 78.0, "Median Spend per Transaction": 23.95, "Median Spend per Customer": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.130275, 40.015837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-pjv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2401 E Venango St", "LATITUDE": 39.993233, "LONGITUDE": -75.096202, "DATE_RANGE_START": 2019, "Total Visits": 1008.0, "Total Visitors": 788.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 6.0, "Total Spend": 2771.0, "Total Transactions": 143.0, "Total Customers": 85.0, "Median Spend per Transaction": 13.05, "Median Spend per Customer": 20.65 }, "geometry": { "type": "Point", "coordinates": [ -75.096202, 39.993233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "Name": "Penn Hardware", "Category": "Building Material and Supplies Dealers", "Address": "7404 Frankford Ave", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 125.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 3.0, "Total Spend": 1124.0, "Total Transactions": 47.0, "Total Customers": 40.0, "Median Spend per Transaction": 19.96, "Median Spend per Customer": 24.73 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgc-zvf", "Name": "Got The Look", "Category": "Clothing Stores", "Address": "5101 Lancaster Ave", "LATITUDE": 39.976469, "LONGITUDE": -75.224485, "DATE_RANGE_START": 2019, "Total Visits": 396.0, "Total Visitors": 323.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 22.0, "Total Spend": 13028.0, "Total Transactions": 316.0, "Total Customers": 288.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.224485, 39.976469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-vfz", "Name": "Philly Homebrew Outlet West", "Category": "Electronics and Appliance Stores", "Address": "1314 S 47th St", "LATITUDE": 39.942809, "LONGITUDE": -75.210442, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 40.0, "POI_CBG": 421010074002.0, "Median Dwell Time": 201.0, "Total Spend": 335.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 23.88, "Median Spend per Customer": 23.88 }, "geometry": { "type": "Point", "coordinates": [ -75.210442, 39.942809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-gp9", "Name": "Umai Umai", "Category": "Restaurants and Other Eating Places", "Address": "533 N 22nd St", "LATITUDE": 39.964683, "LONGITUDE": -75.174102, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 42.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 67.0, "Total Spend": 927.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 40.81, "Median Spend per Customer": 40.81 }, "geometry": { "type": "Point", "coordinates": [ -75.174102, 39.964683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3341 Grant Ave", "LATITUDE": 40.068776, "LONGITUDE": -75.005362, "DATE_RANGE_START": 2019, "Total Visits": 496.0, "Total Visitors": 420.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 2.0, "Total Spend": 9974.0, "Total Transactions": 555.0, "Total Customers": 287.0, "Median Spend per Transaction": 9.79, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005362, 40.068776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3900 N Broad St", "LATITUDE": 40.012783, "LONGITUDE": -75.150904, "DATE_RANGE_START": 2019, "Total Visits": 1572.0, "Total Visitors": 1193.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 12.0, "Total Spend": 17467.0, "Total Transactions": 331.0, "Total Customers": 257.0, "Median Spend per Transaction": 28.07, "Median Spend per Customer": 34.11 }, "geometry": { "type": "Point", "coordinates": [ -75.150904, 40.012783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pg9-t9z", "Name": "A&A Food Market", "Category": "Grocery Stores", "Address": "1700 Wallace St", "LATITUDE": 39.965619, "LONGITUDE": -75.165824, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 53.0, "POI_CBG": 421010134022.0, "Median Dwell Time": 1.0, "Total Spend": 678.0, "Total Transactions": 83.0, "Total Customers": 32.0, "Median Spend per Transaction": 6.45, "Median Spend per Customer": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.165824, 39.965619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7201 Castor Ave", "LATITUDE": 40.050139, "LONGITUDE": -75.066802, "DATE_RANGE_START": 2019, "Total Visits": 488.0, "Total Visitors": 386.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 7.0, "Total Spend": 2665.0, "Total Transactions": 173.0, "Total Customers": 103.0, "Median Spend per Transaction": 10.11, "Median Spend per Customer": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.066802, 40.050139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-6ff", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "10188 Bustleton Ave", "LATITUDE": 40.107593, "LONGITUDE": -75.02698, "DATE_RANGE_START": 2019, "Total Visits": 1139.0, "Total Visitors": 818.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 21.0, "Total Spend": 4827.0, "Total Transactions": 301.0, "Total Customers": 223.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.02698, 40.107593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5801 Roosevelt Blvd", "LATITUDE": 40.031321, "LONGITUDE": -75.083478, "DATE_RANGE_START": 2019, "Total Visits": 2710.0, "Total Visitors": 2021.0, "POI_CBG": 421010318004.0, "Median Dwell Time": 5.0, "Total Spend": 358.0, "Total Transactions": 17.0, "Total Customers": 15.0, "Median Spend per Transaction": 25.02, "Median Spend per Customer": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.083478, 40.031321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "Name": "Jetro Cash & Carry", "Category": "Grocery and Related Product Merchant Wholesalers", "Address": "700 Pattison Ave", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2019, "Total Visits": 4492.0, "Total Visitors": 3295.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 39.0, "Total Spend": 392131.0, "Total Transactions": 966.0, "Total Customers": 237.0, "Median Spend per Transaction": 279.78, "Median Spend per Customer": 582.56 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "Name": "Hong Kong Supermarket", "Category": "Grocery Stores", "Address": "571 Adams Ave Ste 4", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2019, "Total Visits": 1249.0, "Total Visitors": 938.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 15.0, "Total Spend": 6208.0, "Total Transactions": 138.0, "Total Customers": 108.0, "Median Spend per Transaction": 30.44, "Median Spend per Customer": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9440 State Rd", "LATITUDE": 40.049354, "LONGITUDE": -74.989522, "DATE_RANGE_START": 2019, "Total Visits": 1434.0, "Total Visitors": 899.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 3.0, "Total Spend": 19096.0, "Total Transactions": 2095.0, "Total Customers": 883.0, "Median Spend per Transaction": 7.4, "Median Spend per Customer": 11.14 }, "geometry": { "type": "Point", "coordinates": [ -74.989522, 40.049354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "Name": "A Plus", "Category": "Grocery Stores", "Address": "5240 Torresdale Ave", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2019, "Total Visits": 493.0, "Total Visitors": 303.0, "POI_CBG": 421010298005.0, "Median Dwell Time": 6.0, "Total Spend": 690.0, "Total Transactions": 25.0, "Total Customers": 8.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "Name": "Deluxe Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8749 Frankford Ave", "LATITUDE": 40.048286, "LONGITUDE": -75.012528, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 87.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 304.0, "Total Spend": 371.0, "Total Transactions": 15.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.5, "Median Spend per Customer": 59.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012528, 40.048286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7065 Lincoln Dr", "LATITUDE": 40.054006, "LONGITUDE": -75.193227, "DATE_RANGE_START": 2019, "Total Visits": 330.0, "Total Visitors": 273.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 6.0, "Total Spend": 8798.0, "Total Transactions": 385.0, "Total Customers": 233.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 21.62 }, "geometry": { "type": "Point", "coordinates": [ -75.193227, 40.054006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phm-8sq", "Name": "Oak Lane Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6724 Old York Rd", "LATITUDE": 40.055908, "LONGITUDE": -75.140617, "DATE_RANGE_START": 2019, "Total Visits": 133.0, "Total Visitors": 83.0, "POI_CBG": 421010268003.0, "Median Dwell Time": 306.0, "Total Spend": 83.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140617, 40.055908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm9-zs5", "Name": "Condom Kingdom", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "437 South St", "LATITUDE": 39.942054, "LONGITUDE": -75.150455, "DATE_RANGE_START": 2019, "Total Visits": 2189.0, "Total Visitors": 1819.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 36.0, "Total Spend": 1060.0, "Total Transactions": 35.0, "Total Customers": 35.0, "Median Spend per Transaction": 21.25, "Median Spend per Customer": 21.25 }, "geometry": { "type": "Point", "coordinates": [ -75.150455, 39.942054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "Name": "Thai Kuu", "Category": "Restaurants and Other Eating Places", "Address": "35 Bethlehem Pike Ste 109A", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2019, "Total Visits": 158.0, "Total Visitors": 138.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 10.0, "Total Spend": 4353.0, "Total Transactions": 117.0, "Total Customers": 95.0, "Median Spend per Transaction": 36.06, "Median Spend per Customer": 37.16 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "Name": "Barclay Prime", "Category": "Restaurants and Other Eating Places", "Address": "237 S 18th St", "LATITUDE": 39.948498, "LONGITUDE": -75.170757, "DATE_RANGE_START": 2019, "Total Visits": 1031.0, "Total Visitors": 640.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 180.0, "Total Spend": 26204.0, "Total Transactions": 107.0, "Total Customers": 102.0, "Median Spend per Transaction": 225.85, "Median Spend per Customer": 242.46 }, "geometry": { "type": "Point", "coordinates": [ -75.170757, 39.948498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "Name": "HKS pharmacy", "Category": "Health and Personal Care Stores", "Address": "3357 N Front St", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 35.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 254.0, "Total Spend": 8169.0, "Total Transactions": 318.0, "Total Customers": 263.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj6-bx5", "Name": "Nam Vang Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "571 Adams Ave", "LATITUDE": 40.037327, "LONGITUDE": -75.108009, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 145.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 6.0, "Total Spend": 15352.0, "Total Transactions": 212.0, "Total Customers": 195.0, "Median Spend per Transaction": 66.0, "Median Spend per Customer": 71.28 }, "geometry": { "type": "Point", "coordinates": [ -75.108009, 40.037327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "Name": "Mr Wings", "Category": "Restaurants and Other Eating Places", "Address": "500 W Oregon Ave", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 103.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 171.0, "Total Spend": 3078.0, "Total Transactions": 173.0, "Total Customers": 83.0, "Median Spend per Transaction": 12.04, "Median Spend per Customer": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-k4v", "Name": "Kisso Sushi", "Category": "Restaurants and Other Eating Places", "Address": "205 N 4th St", "LATITUDE": 39.954278, "LONGITUDE": -75.146239, "DATE_RANGE_START": 2019, "Total Visits": 3968.0, "Total Visitors": 2957.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 44.0, "Total Spend": 3133.0, "Total Transactions": 52.0, "Total Customers": 45.0, "Median Spend per Transaction": 48.94, "Median Spend per Customer": 49.85 }, "geometry": { "type": "Point", "coordinates": [ -75.146239, 39.954278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "2141 Cottman Ave Unit D", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2019, "Total Visits": 583.0, "Total Visitors": 513.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 32.0, "Total Spend": 18424.0, "Total Transactions": 341.0, "Total Customers": 313.0, "Median Spend per Transaction": 45.36, "Median Spend per Customer": 48.3 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmb-xyv", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "216 N 10th St", "LATITUDE": 39.955915, "LONGITUDE": -75.155905, "DATE_RANGE_START": 2019, "Total Visits": 723.0, "Total Visitors": 541.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 11.0, "Total Spend": 162.0, "Total Transactions": 23.0, "Total Customers": 23.0, "Median Spend per Transaction": 5.24, "Median Spend per Customer": 5.24 }, "geometry": { "type": "Point", "coordinates": [ -75.155905, 39.955915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "Name": "Malelani Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6734 Germantown Ave", "LATITUDE": 40.05294, "LONGITUDE": -75.186129, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 72.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 32.0, "Total Spend": 1185.0, "Total Transactions": 42.0, "Total Customers": 40.0, "Median Spend per Transaction": 25.25, "Median Spend per Customer": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.186129, 40.05294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pj4-35z", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "4322 N Broad St", "LATITUDE": 40.019242, "LONGITUDE": -75.149367, "DATE_RANGE_START": 2019, "Total Visits": 210.0, "Total Visitors": 205.0, "POI_CBG": 421010204002.0, "Median Dwell Time": 3.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.149367, 40.019242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "3914 Lancaster Ave", "LATITUDE": 39.962152, "LONGITUDE": -75.2011, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 48.0, "POI_CBG": 421010108004.0, "Median Dwell Time": 1.0, "Total Spend": 321.0, "Total Transactions": 30.0, "Total Customers": 22.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.2011, 39.962152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "4600 City Ave", "LATITUDE": 40.002693, "LONGITUDE": -75.222651, "DATE_RANGE_START": 2019, "Total Visits": 830.0, "Total Visitors": 641.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 9.0, "Total Spend": 13619.0, "Total Transactions": 1844.0, "Total Customers": 1076.0, "Median Spend per Transaction": 5.89, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.222651, 40.002693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "917 W Girard Ave # 31", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2019, "Total Visits": 1094.0, "Total Visitors": 761.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 7.0, "Total Spend": 12479.0, "Total Transactions": 1967.0, "Total Customers": 919.0, "Median Spend per Transaction": 5.13, "Median Spend per Customer": 7.68 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "Name": "Girard Meat Market", "Category": "Specialty Food Stores", "Address": "4725 W Girard Ave", "LATITUDE": 39.972943, "LONGITUDE": -75.217427, "DATE_RANGE_START": 2019, "Total Visits": 576.0, "Total Visitors": 490.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 6.0, "Total Spend": 3788.0, "Total Transactions": 128.0, "Total Customers": 65.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 32.68 }, "geometry": { "type": "Point", "coordinates": [ -75.217427, 39.972943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pj6-6hq", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "300 E Godfrey Ave", "LATITUDE": 40.042687, "LONGITUDE": -75.109486, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 147.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 17.0, "Total Spend": 1116.0, "Total Transactions": 23.0, "Total Customers": 17.0, "Median Spend per Transaction": 25.68, "Median Spend per Customer": 44.85 }, "geometry": { "type": "Point", "coordinates": [ -75.109486, 40.042687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "Name": "Capriccio Cafe and Bar", "Category": "Restaurants and Other Eating Places", "Address": "110 N 16th St", "LATITUDE": 39.955464, "LONGITUDE": -75.166555, "DATE_RANGE_START": 2019, "Total Visits": 491.0, "Total Visitors": 366.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 19.0, "Total Spend": 6934.0, "Total Transactions": 765.0, "Total Customers": 471.0, "Median Spend per Transaction": 6.37, "Median Spend per Customer": 8.92 }, "geometry": { "type": "Point", "coordinates": [ -75.166555, 39.955464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-x5z", "Name": "Essen Bakery", "Category": "Restaurants and Other Eating Places", "Address": "1437 E Passyunk Ave", "LATITUDE": 39.931036, "LONGITUDE": -75.161763, "DATE_RANGE_START": 2019, "Total Visits": 866.0, "Total Visitors": 685.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 4.0, "Total Spend": 4955.0, "Total Transactions": 388.0, "Total Customers": 265.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.161763, 39.931036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwd-pjv", "Name": "Urban Shop 543", "Category": "Restaurants and Other Eating Places", "Address": "5000 S Broad St", "LATITUDE": 39.889355, "LONGITUDE": -75.175351, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 102.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 172.0, "Total Spend": 389.0, "Total Transactions": 62.0, "Total Customers": 7.0, "Median Spend per Transaction": 5.56, "Median Spend per Customer": 50.28 }, "geometry": { "type": "Point", "coordinates": [ -75.175351, 39.889355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pp4-vfz", "Name": "Franco's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2573 Tulip St", "LATITUDE": 39.982045, "LONGITUDE": -75.121584, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 23.0, "POI_CBG": 421010160004.0, "Median Dwell Time": 302.0, "Total Spend": 1405.0, "Total Transactions": 70.0, "Total Customers": 48.0, "Median Spend per Transaction": 21.36, "Median Spend per Customer": 23.85 }, "geometry": { "type": "Point", "coordinates": [ -75.121584, 39.982045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dw2-7yv", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 S 60th St", "LATITUDE": 39.958784, "LONGITUDE": -75.241349, "DATE_RANGE_START": 2019, "Total Visits": 761.0, "Total Visitors": 461.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 309.0, "Total Spend": 591.0, "Total Transactions": 35.0, "Total Customers": 35.0, "Median Spend per Transaction": 14.47, "Median Spend per Customer": 14.47 }, "geometry": { "type": "Point", "coordinates": [ -75.241349, 39.958784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-phq-nbk", "Name": "Reyes Grocery Store", "Category": "Grocery Stores", "Address": "6560 N 18th St", "LATITUDE": 40.054327, "LONGITUDE": -75.148175, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 23.0, "POI_CBG": 421010267004.0, "Median Dwell Time": 7.0, "Total Spend": 821.0, "Total Transactions": 100.0, "Total Customers": 25.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148175, 40.054327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "Name": "Old English Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6015 N 5th St", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 113.0, "POI_CBG": 421010274011.0, "Median Dwell Time": 1.0, "Total Spend": 267.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 29.65 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "Name": "Crunchik'n", "Category": "Restaurants and Other Eating Places", "Address": "1428 Cecil B Moore Ave", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2019, "Total Visits": 2693.0, "Total Visitors": 1854.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 20.0, "Total Spend": 98.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.98, "Median Spend per Customer": 22.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Girard Ave", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2019, "Total Visits": 488.0, "Total Visitors": 310.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 91.0, "Total Spend": 6019.0, "Total Transactions": 505.0, "Total Customers": 401.0, "Median Spend per Transaction": 10.02, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "Name": "Mulberry Market", "Category": "Grocery Stores", "Address": "236 Arch St", "LATITUDE": 39.951945, "LONGITUDE": -75.144635, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 125.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 13700.0, "Total Transactions": 748.0, "Total Customers": 393.0, "Median Spend per Transaction": 15.8, "Median Spend per Customer": 23.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144635, 39.951945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "145 N 11th St", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2019, "Total Visits": 8184.0, "Total Visitors": 5962.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 43.0, "Total Spend": 3414.0, "Total Transactions": 160.0, "Total Customers": 152.0, "Median Spend per Transaction": 17.2, "Median Spend per Customer": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1100 Tasker St", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 53.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 5.0, "Total Spend": 3452.0, "Total Transactions": 476.0, "Total Customers": 370.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 6.88 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm9-y9z", "Name": "Lil' Pop Shop", "Category": "Restaurants and Other Eating Places", "Address": "534 S 4th St", "LATITUDE": 39.94178, "LONGITUDE": -75.149245, "DATE_RANGE_START": 2019, "Total Visits": 1857.0, "Total Visitors": 1744.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 1701.0, "Total Transactions": 198.0, "Total Customers": 183.0, "Median Spend per Transaction": 7.99, "Median Spend per Customer": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.94178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1700 Jfk Blvd 6 Penn Ctr Concourse", "LATITUDE": 39.953617, "LONGITUDE": -75.167012, "DATE_RANGE_START": 2019, "Total Visits": 7009.0, "Total Visitors": 4229.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 128.0, "Total Spend": 2713.0, "Total Transactions": 513.0, "Total Customers": 293.0, "Median Spend per Transaction": 4.51, "Median Spend per Customer": 6.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167012, 39.953617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-phy-7bk", "Name": "Front Street Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4823 N Front St", "LATITUDE": 40.023724, "LONGITUDE": -75.123608, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 60.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 519.0, "Total Spend": 15068.0, "Total Transactions": 405.0, "Total Customers": 343.0, "Median Spend per Transaction": 23.98, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123608, 40.023724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvw-wzf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5701 Walnut St", "LATITUDE": 39.958527, "LONGITUDE": -75.235976, "DATE_RANGE_START": 2019, "Total Visits": 495.0, "Total Visitors": 331.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 8.0, "Total Spend": 1278.0, "Total Transactions": 168.0, "Total Customers": 137.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235976, 39.958527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "2000 Hamilton St", "LATITUDE": 39.9622, "LONGITUDE": -75.172139, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 130.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 71.0, "Total Spend": 2818.0, "Total Transactions": 37.0, "Total Customers": 35.0, "Median Spend per Transaction": 36.32, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.172139, 39.9622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "Name": "Medical Tower Pharmacy", "Category": "Health and Personal Care Stores", "Address": "255 S 17th St", "LATITUDE": 39.948045, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2019, "Total Visits": 2420.0, "Total Visitors": 1562.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 78.0, "Total Spend": 1926.0, "Total Transactions": 67.0, "Total Customers": 47.0, "Median Spend per Transaction": 14.37, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.948045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7106 Ridge Ave", "LATITUDE": 40.043955, "LONGITUDE": -75.231236, "DATE_RANGE_START": 2019, "Total Visits": 401.0, "Total Visitors": 316.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 9.0, "Total Spend": 289.0, "Total Transactions": 27.0, "Total Customers": 20.0, "Median Spend per Transaction": 6.78, "Median Spend per Customer": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.231236, 40.043955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "Name": "OfficeMax", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7231 Roosevelt Blvd", "LATITUDE": 40.043545, "LONGITUDE": -75.054368, "DATE_RANGE_START": 2019, "Total Visits": 3296.0, "Total Visitors": 2499.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 5.0, "Total Spend": 9869.0, "Total Transactions": 333.0, "Total Customers": 277.0, "Median Spend per Transaction": 12.32, "Median Spend per Customer": 16.07 }, "geometry": { "type": "Point", "coordinates": [ -75.054368, 40.043545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-kvf", "Name": "Antique Gallery", "Category": "Used Merchandise Stores", "Address": "8523 Germantown Ave", "LATITUDE": 40.076502, "LONGITUDE": -75.206969, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 127.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 4.0, "Total Spend": 162.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 48.6, "Median Spend per Customer": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.206969, 40.076502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5601 Vine St", "LATITUDE": 39.966876, "LONGITUDE": -75.233151, "DATE_RANGE_START": 2019, "Total Visits": 2310.0, "Total Visitors": 1461.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 10.0, "Total Spend": 752.0, "Total Transactions": 52.0, "Total Customers": 38.0, "Median Spend per Transaction": 11.69, "Median Spend per Customer": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.233151, 39.966876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5901 Wissahickon Ave", "LATITUDE": 40.02991, "LONGITUDE": -75.186134, "DATE_RANGE_START": 2019, "Total Visits": 3618.0, "Total Visitors": 2467.0, "POI_CBG": 421010239002.0, "Median Dwell Time": 4.0, "Total Spend": 2960.0, "Total Transactions": 138.0, "Total Customers": 90.0, "Median Spend per Transaction": 14.63, "Median Spend per Customer": 20.09 }, "geometry": { "type": "Point", "coordinates": [ -75.186134, 40.02991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-33q", "Name": "LOFT", "Category": "Clothing Stores", "Address": "120 S 36th St", "LATITUDE": 39.953717, "LONGITUDE": -75.195101, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 100.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 12.0, "Total Spend": 3276.0, "Total Transactions": 63.0, "Total Customers": 57.0, "Median Spend per Transaction": 35.8, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195101, 39.953717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "Name": "Front Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1253 N Front St", "LATITUDE": 39.970159, "LONGITUDE": -75.135552, "DATE_RANGE_START": 2019, "Total Visits": 773.0, "Total Visitors": 658.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 26.0, "Total Spend": 5524.0, "Total Transactions": 198.0, "Total Customers": 162.0, "Median Spend per Transaction": 18.36, "Median Spend per Customer": 25.52 }, "geometry": { "type": "Point", "coordinates": [ -75.135552, 39.970159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj6-8y9", "Name": "El Rinconcito", "Category": "Restaurants and Other Eating Places", "Address": "734 Adams Ave", "LATITUDE": 40.031782, "LONGITUDE": -75.107117, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 140.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 5.0, "Total Spend": 447.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.107117, 40.031782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2043 Chestnut St", "LATITUDE": 39.95261, "LONGITUDE": -75.174957, "DATE_RANGE_START": 2019, "Total Visits": 585.0, "Total Visitors": 346.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 167.0, "Total Spend": 463.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.174957, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "Name": "Independence Prime", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 14375.0, "Total Transactions": 515.0, "Total Customers": 431.0, "Median Spend per Transaction": 22.37, "Median Spend per Customer": 26.34 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "Name": "Moshulu", "Category": "Restaurants and Other Eating Places", "Address": "401 S Columbus Blvd", "LATITUDE": 39.941589, "LONGITUDE": -75.141261, "DATE_RANGE_START": 2019, "Total Visits": 2424.0, "Total Visitors": 2165.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 21.0, "Total Spend": 60680.0, "Total Transactions": 1108.0, "Total Customers": 898.0, "Median Spend per Transaction": 29.96, "Median Spend per Customer": 41.3 }, "geometry": { "type": "Point", "coordinates": [ -75.141261, 39.941589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-jjv", "Name": "Pastrami & Things", "Category": "Restaurants and Other Eating Places", "Address": "1234 Market St Ste LL1", "LATITUDE": 39.952406, "LONGITUDE": -75.170418, "DATE_RANGE_START": 2019, "Total Visits": 540.0, "Total Visitors": 421.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 47.0, "Total Spend": 263.0, "Total Transactions": 38.0, "Total Customers": 27.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 8.88 }, "geometry": { "type": "Point", "coordinates": [ -75.170418, 39.952406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7901 Oxford Ave", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2019, "Total Visits": 865.0, "Total Visitors": 681.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 5.0, "Total Spend": 14311.0, "Total Transactions": 1446.0, "Total Customers": 865.0, "Median Spend per Transaction": 8.31, "Median Spend per Customer": 11.59 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "1527 Chestnut St", "LATITUDE": 39.951369, "LONGITUDE": -75.166562, "DATE_RANGE_START": 2019, "Total Visits": 730.0, "Total Visitors": 501.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 73.0, "Total Spend": 15882.0, "Total Transactions": 1154.0, "Total Customers": 994.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166562, 39.951369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@63s-dvq-6ff", "Name": "Citizens Beer", "Category": "Restaurants and Other Eating Places", "Address": "5400 Spruce St", "LATITUDE": 39.954856, "LONGITUDE": -75.229978, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010085004.0, "Median Dwell Time": 1.0, "Total Spend": 60.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.06, "Median Spend per Customer": 18.06 }, "geometry": { "type": "Point", "coordinates": [ -75.229978, 39.954856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "Name": "Christies Deli", "Category": "Restaurants and Other Eating Places", "Address": "1822 Spring Garden St", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 17.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 193.0, "Total Spend": 5959.0, "Total Transactions": 518.0, "Total Customers": 250.0, "Median Spend per Transaction": 10.49, "Median Spend per Customer": 18.73 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25p-222@628-pm4-cwk", "Name": "Station Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "1550 McKean St", "LATITUDE": 39.925815, "LONGITUDE": -75.172603, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 27.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 21.0, "Total Spend": 4884.0, "Total Transactions": 170.0, "Total Customers": 92.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172603, 39.925815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1551 Washington Ave", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2019, "Total Visits": 283.0, "Total Visitors": 198.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 5.0, "Total Spend": 5089.0, "Total Transactions": 946.0, "Total Customers": 566.0, "Median Spend per Transaction": 4.62, "Median Spend per Customer": 5.96 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "Name": "Sprouts Farmers Market", "Category": "Grocery Stores", "Address": "1000 S Broad St", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2019, "Total Visits": 3233.0, "Total Visitors": 1952.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 13.0, "Total Spend": 412353.0, "Total Transactions": 11094.0, "Total Customers": 5069.0, "Median Spend per Transaction": 24.96, "Median Spend per Customer": 47.87 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-jgk", "Name": "AM Food Market", "Category": "Grocery Stores", "Address": "1200 N 52nd St", "LATITUDE": 39.971594, "LONGITUDE": -75.225601, "DATE_RANGE_START": 2019, "Total Visits": 501.0, "Total Visitors": 343.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 12.0, "Total Spend": 1473.0, "Total Transactions": 243.0, "Total Customers": 130.0, "Median Spend per Transaction": 5.47, "Median Spend per Customer": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.225601, 39.971594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-p8d-8y9", "Name": "T & J Food Market", "Category": "Grocery Stores", "Address": "1900 Church St", "LATITUDE": 40.00933, "LONGITUDE": -75.084903, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 68.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 91.0, "Total Spend": 217.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 21.48 }, "geometry": { "type": "Point", "coordinates": [ -75.084903, 40.00933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-ty9", "Name": "Shane Confectionery", "Category": "Specialty Food Stores", "Address": "110 Market St", "LATITUDE": 39.949497, "LONGITUDE": -75.14262, "DATE_RANGE_START": 2019, "Total Visits": 3558.0, "Total Visitors": 3110.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 20.0, "Total Spend": 3452.0, "Total Transactions": 188.0, "Total Customers": 162.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 16.55 }, "geometry": { "type": "Point", "coordinates": [ -75.14262, 39.949497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22h@628-pmf-n3q", "Name": "Genji", "Category": "Specialty Food Stores", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953358, "LONGITUDE": -75.165439, "DATE_RANGE_START": 2019, "Total Visits": 1019.0, "Total Visitors": 633.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 89.0, "Total Spend": 1780.0, "Total Transactions": 95.0, "Total Customers": 93.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 14.47 }, "geometry": { "type": "Point", "coordinates": [ -75.165439, 39.953358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-wx5", "Name": "Gap Factory Store", "Category": "Clothing Stores", "Address": "1875 Franklin Mills Cir Spc NO163", "LATITUDE": 40.090197, "LONGITUDE": -74.960879, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 82.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 2821.0, "Total Transactions": 60.0, "Total Customers": 58.0, "Median Spend per Transaction": 41.57, "Median Spend per Customer": 38.16 }, "geometry": { "type": "Point", "coordinates": [ -74.960879, 40.090197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-2hq", "Name": "Venus Video", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "6307 Passyunk Ave", "LATITUDE": 39.917066, "LONGITUDE": -75.216791, "DATE_RANGE_START": 2019, "Total Visits": 1507.0, "Total Visitors": 1103.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 29.0, "Total Spend": 2533.0, "Total Transactions": 73.0, "Total Customers": 67.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.216791, 39.917066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "Name": "Zumiez", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1441 Franklin Mills Cir", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2019, "Total Visits": 420.0, "Total Visitors": 373.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 3896.0, "Total Transactions": 77.0, "Total Customers": 77.0, "Median Spend per Transaction": 37.52, "Median Spend per Customer": 37.52 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm6-gkz", "Name": "South View Pizza", "Category": "Restaurants and Other Eating Places", "Address": "367 Durfor St", "LATITUDE": 39.919441, "LONGITUDE": -75.153896, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 20.0, "POI_CBG": 421010042024.0, "Median Dwell Time": 154.0, "Total Spend": 423.0, "Total Transactions": 57.0, "Total Customers": 28.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 10.34 }, "geometry": { "type": "Point", "coordinates": [ -75.153896, 39.919441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "1622 South St", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 45.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 100.0, "Total Spend": 3090.0, "Total Transactions": 172.0, "Total Customers": 165.0, "Median Spend per Transaction": 16.01, "Median Spend per Customer": 16.01 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmf-s3q", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "1745 South St", "LATITUDE": 39.944594, "LONGITUDE": -75.171766, "DATE_RANGE_START": 2019, "Total Visits": 178.0, "Total Visitors": 128.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 27.0, "Total Spend": 7903.0, "Total Transactions": 870.0, "Total Customers": 690.0, "Median Spend per Transaction": 6.89, "Median Spend per Customer": 7.94 }, "geometry": { "type": "Point", "coordinates": [ -75.171766, 39.944594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pfz-ch5", "Name": "Pilgrim Roasters", "Category": "Restaurants and Other Eating Places", "Address": "4120 Main St", "LATITUDE": 40.022764, "LONGITUDE": -75.219439, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 308.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 22.0, "Total Spend": 4736.0, "Total Transactions": 675.0, "Total Customers": 325.0, "Median Spend per Transaction": 5.78, "Median Spend per Customer": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.219439, 40.022764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgh-6p9", "Name": "New Station Pizza 8", "Category": "Restaurants and Other Eating Places", "Address": "2206 W Hunting Park Ave", "LATITUDE": 40.010722, "LONGITUDE": -75.164603, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010202004.0, "Median Dwell Time": 116.0, "Total Spend": 2578.0, "Total Transactions": 175.0, "Total Customers": 147.0, "Median Spend per Transaction": 10.91, "Median Spend per Customer": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.164603, 40.010722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "555 Adams Ave", "LATITUDE": 40.036515, "LONGITUDE": -75.108096, "DATE_RANGE_START": 2019, "Total Visits": 225.0, "Total Visitors": 188.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 33.0, "Total Spend": 7364.0, "Total Transactions": 172.0, "Total Customers": 142.0, "Median Spend per Transaction": 22.62, "Median Spend per Customer": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.108096, 40.036515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2200 W Oregon Ave", "LATITUDE": 39.916081, "LONGITUDE": -75.185496, "DATE_RANGE_START": 2019, "Total Visits": 5282.0, "Total Visitors": 3158.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 18.0, "Total Spend": 200754.0, "Total Transactions": 1194.0, "Total Customers": 661.0, "Median Spend per Transaction": 50.76, "Median Spend per Customer": 57.93 }, "geometry": { "type": "Point", "coordinates": [ -75.185496, 39.916081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj9-zmk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5612 N 5th St", "LATITUDE": 40.036925, "LONGITUDE": -75.130756, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 45.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 2.0, "Total Spend": 705.0, "Total Transactions": 35.0, "Total Customers": 20.0, "Median Spend per Transaction": 15.26, "Median Spend per Customer": 22.17 }, "geometry": { "type": "Point", "coordinates": [ -75.130756, 40.036925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7001 Frankford Ave", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2019, "Total Visits": 623.0, "Total Visitors": 486.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 6.0, "Total Spend": 3630.0, "Total Transactions": 207.0, "Total Customers": 145.0, "Median Spend per Transaction": 10.29, "Median Spend per Customer": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "Name": "Primal Nutrition", "Category": "Health and Personal Care Stores", "Address": "8114 Roosevelt Blvd", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 45.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 13.0, "Total Spend": 2602.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 48.75, "Median Spend per Customer": 48.75 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "8005 Ogontz Ave", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2019, "Total Visits": 3959.0, "Total Visitors": 2700.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 3.0, "Total Spend": 18388.0, "Total Transactions": 1014.0, "Total Customers": 606.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 22.29 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-x89", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5017 N Broad St # 25", "LATITUDE": 40.030078, "LONGITUDE": -75.146229, "DATE_RANGE_START": 2019, "Total Visits": 6201.0, "Total Visitors": 3615.0, "POI_CBG": 421010282001.0, "Median Dwell Time": 5.0, "Total Spend": 253.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 18.97, "Median Spend per Customer": 28.58 }, "geometry": { "type": "Point", "coordinates": [ -75.146229, 40.030078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "Name": "Anthropologie", "Category": "Clothing Stores", "Address": "1801 Walnut St", "LATITUDE": 39.950352, "LONGITUDE": -75.170778, "DATE_RANGE_START": 2019, "Total Visits": 8022.0, "Total Visitors": 4976.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 101.0, "Total Spend": 189466.0, "Total Transactions": 2014.0, "Total Customers": 1314.0, "Median Spend per Transaction": 51.94, "Median Spend per Customer": 59.85 }, "geometry": { "type": "Point", "coordinates": [ -75.170778, 39.950352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3617 Lancaster Ave Fl 1", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2019, "Total Visits": 871.0, "Total Visitors": 441.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 237.0, "Total Spend": 4340.0, "Total Transactions": 123.0, "Total Customers": 93.0, "Median Spend per Transaction": 23.14, "Median Spend per Customer": 29.18 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-sqz", "Name": "Holts Cigar Company", "Category": "Other Miscellaneous Store Retailers", "Address": "1522 Walnut St", "LATITUDE": 39.949481, "LONGITUDE": -75.167107, "DATE_RANGE_START": 2019, "Total Visits": 1001.0, "Total Visitors": 758.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 80.0, "Total Spend": 13893.0, "Total Transactions": 153.0, "Total Customers": 107.0, "Median Spend per Transaction": 80.22, "Median Spend per Customer": 92.22 }, "geometry": { "type": "Point", "coordinates": [ -75.167107, 39.949481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "Name": "Blick Art Materials", "Category": "Other Miscellaneous Store Retailers", "Address": "1330 Chestnut St", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2019, "Total Visits": 480.0, "Total Visitors": 272.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 130.0, "Total Spend": 441.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 12.35, "Median Spend per Customer": 12.35 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-3qz", "Name": "Jana Pharmacy", "Category": "Health and Personal Care Stores", "Address": "413 E Wyoming Ave", "LATITUDE": 40.020931, "LONGITUDE": -75.117668, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 20.0, "POI_CBG": 421010289011.0, "Median Dwell Time": 26.0, "Total Spend": 136.0, "Total Transactions": 8.0, "Total Customers": 3.0, "Median Spend per Transaction": 19.11, "Median Spend per Customer": 40.89 }, "geometry": { "type": "Point", "coordinates": [ -75.117668, 40.020931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-xdv", "Name": "Tiffin", "Category": "Restaurants and Other Eating Places", "Address": "710 W Girard Ave", "LATITUDE": 39.970151, "LONGITUDE": -75.148856, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 92.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 85.0, "Total Spend": 288.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 71.96, "Median Spend per Customer": 71.96 }, "geometry": { "type": "Point", "coordinates": [ -75.148856, 39.970151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "Name": "Shing Kee", "Category": "Restaurants and Other Eating Places", "Address": "600 Washington Ave Ste 18A", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 140.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 32.0, "Total Spend": 2049.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 33.83, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "3208 Red Lion Rd", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2019, "Total Visits": 197.0, "Total Visitors": 168.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 3.0, "Total Spend": 8448.0, "Total Transactions": 466.0, "Total Customers": 401.0, "Median Spend per Transaction": 16.11, "Median Spend per Customer": 16.46 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pft-yjv", "Name": "Murphy's Tavern", "Category": "Restaurants and Other Eating Places", "Address": "5892 Henry Ave", "LATITUDE": 40.031371, "LONGITUDE": -75.207978, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 82.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 103.0, "Total Spend": 1294.0, "Total Transactions": 30.0, "Total Customers": 12.0, "Median Spend per Transaction": 39.89, "Median Spend per Customer": 46.28 }, "geometry": { "type": "Point", "coordinates": [ -75.207978, 40.031371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "Name": "Fishtown Pizza", "Category": "Restaurants and Other Eating Places", "Address": "607 E Girard Ave", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 30.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 6.0, "Total Spend": 1215.0, "Total Transactions": 68.0, "Total Customers": 37.0, "Median Spend per Transaction": 14.69, "Median Spend per Customer": 17.09 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-x3q", "Name": "New Star", "Category": "Restaurants and Other Eating Places", "Address": "2409 Kensington Ave", "LATITUDE": 39.986317, "LONGITUDE": -75.131538, "DATE_RANGE_START": 2019, "Total Visits": 1939.0, "Total Visitors": 1463.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 4.0, "Total Spend": 1732.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 37.0, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131538, 39.986317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pg2-zj9", "Name": "Panda Garden", "Category": "Restaurants and Other Eating Places", "Address": "275 W Mount Pleasant Ave", "LATITUDE": 40.054638, "LONGITUDE": -75.193918, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 58.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 50.0, "Total Spend": 1691.0, "Total Transactions": 105.0, "Total Customers": 85.0, "Median Spend per Transaction": 14.3, "Median Spend per Customer": 16.47 }, "geometry": { "type": "Point", "coordinates": [ -75.193918, 40.054638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4501 Castor Ave", "LATITUDE": 40.016586, "LONGITUDE": -75.096388, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 178.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 21.0, "Total Spend": 4140.0, "Total Transactions": 258.0, "Total Customers": 208.0, "Median Spend per Transaction": 11.97, "Median Spend per Customer": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.096388, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "31 Snyder Ave", "LATITUDE": 39.921808, "LONGITUDE": -75.146286, "DATE_RANGE_START": 2019, "Total Visits": 378.0, "Total Visitors": 356.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 4313.0, "Total Transactions": 247.0, "Total Customers": 193.0, "Median Spend per Transaction": 13.21, "Median Spend per Customer": 16.42 }, "geometry": { "type": "Point", "coordinates": [ -75.146286, 39.921808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "1521 S Columbus Blvd", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2019, "Total Visits": 611.0, "Total Visitors": 545.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 7.0, "Total Spend": 5202.0, "Total Transactions": 531.0, "Total Customers": 401.0, "Median Spend per Transaction": 8.95, "Median Spend per Customer": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9240 State Rd", "LATITUDE": 40.047033, "LONGITUDE": -74.993404, "DATE_RANGE_START": 2019, "Total Visits": 386.0, "Total Visitors": 245.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 3.0, "Total Spend": 4296.0, "Total Transactions": 696.0, "Total Customers": 305.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -74.993404, 40.047033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-5s5", "Name": "Say Cheese", "Category": "Restaurants and Other Eating Places", "Address": "3510 Scotts Ln", "LATITUDE": 40.007571, "LONGITUDE": -75.186532, "DATE_RANGE_START": 2019, "Total Visits": 801.0, "Total Visitors": 458.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 63.0, "Total Spend": 90.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186532, 40.007571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pg2-n5z", "Name": "Torres Grocery", "Category": "Grocery Stores", "Address": "152 E Sharpnack St", "LATITUDE": 40.051691, "LONGITUDE": -75.181363, "DATE_RANGE_START": 2019, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010253002.0, "Median Dwell Time": null, "Total Spend": 150.0, "Total Transactions": 20.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.29, "Median Spend per Customer": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.051691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2zf", "Name": "West Point Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 N 63rd St", "LATITUDE": 39.965894, "LONGITUDE": -75.245802, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010096005.0, "Median Dwell Time": 11.0, "Total Spend": 405.0, "Total Transactions": 23.0, "Total Customers": 22.0, "Median Spend per Transaction": 16.03, "Median Spend per Customer": 15.22 }, "geometry": { "type": "Point", "coordinates": [ -75.245802, 39.965894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-phy-49z", "Name": "B & O Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4731 N Front St", "LATITUDE": 40.022553, "LONGITUDE": -75.123914, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 82.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 11.0, "Total Spend": 811.0, "Total Transactions": 37.0, "Total Customers": 30.0, "Median Spend per Transaction": 24.25, "Median Spend per Customer": 24.25 }, "geometry": { "type": "Point", "coordinates": [ -75.123914, 40.022553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "59 E Oregon Ave", "LATITUDE": 39.914298, "LONGITUDE": -75.149292, "DATE_RANGE_START": 2019, "Total Visits": 3266.0, "Total Visitors": 2284.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 3.0, "Total Spend": 2065.0, "Total Transactions": 113.0, "Total Customers": 50.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 25.85 }, "geometry": { "type": "Point", "coordinates": [ -75.149292, 39.914298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8113 Stenton Ave", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2019, "Total Visits": 386.0, "Total Visitors": 255.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 3.0, "Total Spend": 6646.0, "Total Transactions": 1101.0, "Total Customers": 606.0, "Median Spend per Transaction": 4.95, "Median Spend per Customer": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3501 Aramingo Ave", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2019, "Total Visits": 1681.0, "Total Visitors": 1184.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 9.0, "Total Spend": 8222.0, "Total Transactions": 1249.0, "Total Customers": 606.0, "Median Spend per Transaction": 5.49, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5mk", "Name": "U Bahn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1320 Chestnut St", "LATITUDE": 39.95079, "LONGITUDE": -75.16242, "DATE_RANGE_START": 2019, "Total Visits": 34207.0, "Total Visitors": 20410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 67.0, "Total Spend": 35146.0, "Total Transactions": 1348.0, "Total Customers": 865.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16242, 39.95079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmd-w49", "Name": "Twenty Manning", "Category": "Restaurants and Other Eating Places", "Address": "261 S 20th St", "LATITUDE": 39.948622, "LONGITUDE": -75.17407, "DATE_RANGE_START": 2019, "Total Visits": 405.0, "Total Visitors": 230.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 83.0, "Total Spend": 4247.0, "Total Transactions": 65.0, "Total Customers": 58.0, "Median Spend per Transaction": 50.6, "Median Spend per Customer": 50.6 }, "geometry": { "type": "Point", "coordinates": [ -75.17407, 39.948622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7bk", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "1320 Walnut St", "LATITUDE": 39.948987, "LONGITUDE": -75.16307, "DATE_RANGE_START": 2019, "Total Visits": 1586.0, "Total Visitors": 1234.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 23.0, "Total Spend": 14515.0, "Total Transactions": 553.0, "Total Customers": 483.0, "Median Spend per Transaction": 20.17, "Median Spend per Customer": 24.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16307, 39.948987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "Name": "Maggiano's Little Italy", "Category": "Restaurants and Other Eating Places", "Address": "1201 Filbert St", "LATITUDE": 39.953256, "LONGITUDE": -75.160263, "DATE_RANGE_START": 2019, "Total Visits": 1148.0, "Total Visitors": 983.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 10.0, "Total Spend": 36542.0, "Total Transactions": 686.0, "Total Customers": 608.0, "Median Spend per Transaction": 30.66, "Median Spend per Customer": 36.31 }, "geometry": { "type": "Point", "coordinates": [ -75.160263, 39.953256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-47q", "Name": "The Lunar Inn", "Category": "Restaurants and Other Eating Places", "Address": "3124 Richmond St", "LATITUDE": 39.982358, "LONGITUDE": -75.103191, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 75.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 48.0, "Total Spend": 7331.0, "Total Transactions": 148.0, "Total Customers": 105.0, "Median Spend per Transaction": 39.1, "Median Spend per Customer": 47.08 }, "geometry": { "type": "Point", "coordinates": [ -75.103191, 39.982358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "106 S 40th St", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 143.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 22.0, "Total Spend": 5100.0, "Total Transactions": 170.0, "Total Customers": 152.0, "Median Spend per Transaction": 24.93, "Median Spend per Customer": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2019, "Total Visits": 1314.0, "Total Visitors": 1039.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 6566.0, "Total Transactions": 1151.0, "Total Customers": 600.0, "Median Spend per Transaction": 4.65, "Median Spend per Customer": 6.55 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "Name": "Curran's Irish Inn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6900 State Rd", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2019, "Total Visits": 939.0, "Total Visitors": 778.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 63.0, "Total Spend": 3294.0, "Total Transactions": 80.0, "Total Customers": 73.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 36.75 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "Name": "Canto House", "Category": "Restaurants and Other Eating Places", "Address": "941 Race St", "LATITUDE": 39.955533, "LONGITUDE": -75.155568, "DATE_RANGE_START": 2019, "Total Visits": 11720.0, "Total Visitors": 7916.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 41.0, "Total Spend": 3310.0, "Total Transactions": 113.0, "Total Customers": 103.0, "Median Spend per Transaction": 24.93, "Median Spend per Customer": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155568, 39.955533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 33277.0, "Total Transactions": 515.0, "Total Customers": 470.0, "Median Spend per Transaction": 43.04, "Median Spend per Customer": 47.61 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-ygk", "Name": "Pho Cali", "Category": "Restaurants and Other Eating Places", "Address": "1000 Arch St", "LATITUDE": 39.953422, "LONGITUDE": -75.156467, "DATE_RANGE_START": 2019, "Total Visits": 468.0, "Total Visitors": 410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 36.0, "Total Spend": 3002.0, "Total Transactions": 108.0, "Total Customers": 107.0, "Median Spend per Transaction": 26.6, "Median Spend per Customer": 26.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156467, 39.953422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "Name": "Cafe Thanh Truc", "Category": "Restaurants and Other Eating Places", "Address": "1037 S 8th St", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 52.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 25.0, "Total Spend": 283.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 30.72, "Median Spend per Customer": 30.72 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-3kf", "Name": "Mirage Lounge", "Category": "Restaurants and Other Eating Places", "Address": "119 South St", "LATITUDE": 39.941399, "LONGITUDE": -75.144795, "DATE_RANGE_START": 2019, "Total Visits": 2409.0, "Total Visitors": 1974.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 37.0, "Total Spend": 10553.0, "Total Transactions": 228.0, "Total Customers": 183.0, "Median Spend per Transaction": 32.16, "Median Spend per Customer": 44.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144795, 39.941399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "Name": "Lucha Cartel", "Category": "Restaurants and Other Eating Places", "Address": "207 Chestnut St", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 295.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 43.0, "Total Spend": 37041.0, "Total Transactions": 971.0, "Total Customers": 821.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032189, "LONGITUDE": -75.214079, "DATE_RANGE_START": 2019, "Total Visits": 521.0, "Total Visitors": 365.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 32.0, "Total Spend": 9425.0, "Total Transactions": 531.0, "Total Customers": 455.0, "Median Spend per Transaction": 13.6, "Median Spend per Customer": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.214079, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm8-kxq", "Name": "NBC Sports Arena", "Category": "Restaurants and Other Eating Places", "Address": "1100 Pattison Ave", "LATITUDE": 39.904477, "LONGITUDE": -75.169135, "DATE_RANGE_START": 2019, "Total Visits": 7977.0, "Total Visitors": 6593.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 68.0, "Total Spend": 67593.0, "Total Transactions": 3381.0, "Total Customers": 2432.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 20.15 }, "geometry": { "type": "Point", "coordinates": [ -75.169135, 39.904477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmf-zj9", "Name": "Arch Brunch", "Category": "Restaurants and Other Eating Places", "Address": "2200 Arch St Ste 103", "LATITUDE": 39.955759, "LONGITUDE": -75.17646, "DATE_RANGE_START": 2019, "Total Visits": 4434.0, "Total Visitors": 3385.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 67.0, "Total Spend": 646.0, "Total Transactions": 28.0, "Total Customers": 20.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17646, 39.955759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "Name": "Red Poke Express", "Category": "Restaurants and Other Eating Places", "Address": "135 South St", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 98.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 5.0, "Total Spend": 2231.0, "Total Transactions": 125.0, "Total Customers": 98.0, "Median Spend per Transaction": 13.15, "Median Spend per Customer": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgk-z9f", "Name": "Fuwa Deli&beer", "Category": "Restaurants and Other Eating Places", "Address": "3987 Ford Rd", "LATITUDE": 39.99997, "LONGITUDE": -75.209417, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 57.0, "POI_CBG": 421010122041.0, "Median Dwell Time": 5.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.52, "Median Spend per Customer": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.209417, 39.99997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "Name": "Schmear It", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956751, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2019, "Total Visits": 12156.0, "Total Visitors": 6523.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 84.0, "Total Spend": 3219.0, "Total Transactions": 438.0, "Total Customers": 250.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "2800 Fox St Ste 110 Unit D", "LATITUDE": 40.008773, "LONGITUDE": -75.176588, "DATE_RANGE_START": 2019, "Total Visits": 3218.0, "Total Visitors": 2099.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 32.0, "Total Spend": 15140.0, "Total Transactions": 598.0, "Total Customers": 560.0, "Median Spend per Transaction": 19.41, "Median Spend per Customer": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.176588, 40.008773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6865 Rising Sun Ave", "LATITUDE": 40.055372, "LONGITUDE": -75.089592, "DATE_RANGE_START": 2019, "Total Visits": 1737.0, "Total Visitors": 1179.0, "POI_CBG": 421010307002.0, "Median Dwell Time": 5.0, "Total Spend": 353.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 18.81, "Median Spend per Customer": 41.34 }, "geometry": { "type": "Point", "coordinates": [ -75.089592, 40.055372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5650 Ridge Ave", "LATITUDE": 40.026583, "LONGITUDE": -75.209516, "DATE_RANGE_START": 2019, "Total Visits": 1712.0, "Total Visitors": 1321.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 4.0, "Total Spend": 300.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209516, 40.026583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-6p9", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1416 Chestnut St", "LATITUDE": 39.950763, "LONGITUDE": -75.164862, "DATE_RANGE_START": 2019, "Total Visits": 748.0, "Total Visitors": 451.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 129.0, "Total Spend": 4686.0, "Total Transactions": 65.0, "Total Customers": 62.0, "Median Spend per Transaction": 75.0, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164862, 39.950763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-5cq", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1217 Chestnut St", "LATITUDE": 39.950795, "LONGITUDE": -75.160907, "DATE_RANGE_START": 2019, "Total Visits": 783.0, "Total Visitors": 598.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 79.0, "Total Spend": 6213.0, "Total Transactions": 83.0, "Total Customers": 70.0, "Median Spend per Transaction": 63.0, "Median Spend per Customer": 69.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160907, 39.950795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-phn-87q", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1616 E Wadsworth Ave", "LATITUDE": 40.080555, "LONGITUDE": -75.171342, "DATE_RANGE_START": 2019, "Total Visits": 163.0, "Total Visitors": 158.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 10.0, "Total Spend": 4310.0, "Total Transactions": 43.0, "Total Customers": 42.0, "Median Spend per Transaction": 93.74, "Median Spend per Customer": 109.96 }, "geometry": { "type": "Point", "coordinates": [ -75.171342, 40.080555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-kvf", "Name": "Long In the Tooth", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2027 Sansom St", "LATITUDE": 39.951536, "LONGITUDE": -75.174727, "DATE_RANGE_START": 2019, "Total Visits": 2805.0, "Total Visitors": 1862.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 101.0, "Total Spend": 713.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 25.9, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174727, 39.951536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2132 E Lehigh Ave", "LATITUDE": 39.984509, "LONGITUDE": -75.121352, "DATE_RANGE_START": 2019, "Total Visits": 666.0, "Total Visitors": 491.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 12.0, "Total Spend": 2590.0, "Total Transactions": 108.0, "Total Customers": 62.0, "Median Spend per Transaction": 16.3, "Median Spend per Customer": 35.11 }, "geometry": { "type": "Point", "coordinates": [ -75.121352, 39.984509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-y9z", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "3020 Market St", "LATITUDE": 39.954522, "LONGITUDE": -75.184483, "DATE_RANGE_START": 2019, "Total Visits": 4626.0, "Total Visitors": 2875.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 79.0, "Total Spend": 5795.0, "Total Transactions": 631.0, "Total Customers": 475.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.184483, 39.954522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgf-33q", "Name": "Kiwi Frozen Yogurt", "Category": "Restaurants and Other Eating Places", "Address": "3606 Chestnut St", "LATITUDE": 39.954562, "LONGITUDE": -75.195031, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 5.0, "Total Spend": 756.0, "Total Transactions": 45.0, "Total Customers": 43.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195031, 39.954562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pm9-wzf", "Name": "GIANT Heirloom Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "801 Market St", "LATITUDE": 39.951718, "LONGITUDE": -75.153682, "DATE_RANGE_START": 2019, "Total Visits": 59483.0, "Total Visitors": 32677.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 59.0, "Total Spend": 85.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 16.46, "Median Spend per Customer": 16.46 }, "geometry": { "type": "Point", "coordinates": [ -75.153682, 39.951718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3900 Castor Ave", "LATITUDE": 40.00641, "LONGITUDE": -75.099483, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 208.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 5.0, "Total Spend": 1867.0, "Total Transactions": 107.0, "Total Customers": 75.0, "Median Spend per Transaction": 12.75, "Median Spend per Customer": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.099483, 40.00641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4530 N 5th St", "LATITUDE": 40.02088, "LONGITUDE": -75.134701, "DATE_RANGE_START": 2019, "Total Visits": 311.0, "Total Visitors": 232.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 7.0, "Total Spend": 2165.0, "Total Transactions": 97.0, "Total Customers": 53.0, "Median Spend per Transaction": 16.65, "Median Spend per Customer": 28.56 }, "geometry": { "type": "Point", "coordinates": [ -75.134701, 40.02088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvx-jd9", "Name": "Song's Capital Discount", "Category": "Health and Personal Care Stores", "Address": "1237 N 52nd St", "LATITUDE": 39.972561, "LONGITUDE": -75.225887, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 67.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 67.0, "Total Spend": 96.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.225887, 39.972561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-pvz", "Name": "12 Steps Down", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "831 Christian St", "LATITUDE": 39.939056, "LONGITUDE": -75.157629, "DATE_RANGE_START": 2019, "Total Visits": 133.0, "Total Visitors": 112.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 46.0, "Total Spend": 197.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157629, 39.939056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "Name": "iMunch Cafe", "Category": "Health and Personal Care Stores", "Address": "1233 N 31st St", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010137005.0, "Median Dwell Time": 11.0, "Total Spend": 5190.0, "Total Transactions": 383.0, "Total Customers": 225.0, "Median Spend per Transaction": 10.94, "Median Spend per Customer": 15.55 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9w-zmk", "Name": "Hendrix Pharmacy", "Category": "Health and Personal Care Stores", "Address": "11685 Bustleton Ave", "LATITUDE": 40.118281, "LONGITUDE": -75.017944, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 453.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 3.0, "Total Spend": 242.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 18.99, "Median Spend per Customer": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.017944, 40.118281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1100 S Delaware Ave", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 125.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 3.0, "Total Spend": 5568.0, "Total Transactions": 92.0, "Total Customers": 78.0, "Median Spend per Transaction": 54.99, "Median Spend per Customer": 64.98 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-87q", "Name": "Rittenhouse Needlepoint", "Category": "Other Miscellaneous Store Retailers", "Address": "1216 Arch St Ste 2A", "LATITUDE": 39.953747, "LONGITUDE": -75.160369, "DATE_RANGE_START": 2019, "Total Visits": 12651.0, "Total Visitors": 8910.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 100.0, "Total Spend": 298.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 19.22, "Median Spend per Customer": 19.22 }, "geometry": { "type": "Point", "coordinates": [ -75.160369, 39.953747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "Name": "Liberty Smokes", "Category": "Other Miscellaneous Store Retailers", "Address": "2740 S Front St", "LATITUDE": 39.912433, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2019, "Total Visits": 1491.0, "Total Visitors": 986.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 93.0, "Total Spend": 1234.0, "Total Transactions": 27.0, "Total Customers": 23.0, "Median Spend per Transaction": 47.99, "Median Spend per Customer": 42.14 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.912433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-whq", "Name": "Ocean City", "Category": "Restaurants and Other Eating Places", "Address": "234 N 9th St", "LATITUDE": 39.95631, "LONGITUDE": -75.15439, "DATE_RANGE_START": 2019, "Total Visits": 460.0, "Total Visitors": 363.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 47.0, "Total Spend": 2840.0, "Total Transactions": 70.0, "Total Customers": 70.0, "Median Spend per Transaction": 37.0, "Median Spend per Customer": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15439, 39.95631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "Name": "El Punto", "Category": "Restaurants and Other Eating Places", "Address": "4460 Whitaker Ave", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 112.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 7.0, "Total Spend": 2312.0, "Total Transactions": 148.0, "Total Customers": 127.0, "Median Spend per Transaction": 13.25, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-66k", "Name": "Hatch and choop", "Category": "Restaurants and Other Eating Places", "Address": "122 S 12th St", "LATITUDE": 39.94951, "LONGITUDE": -75.160766, "DATE_RANGE_START": 2019, "Total Visits": 773.0, "Total Visitors": 520.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 57.0, "Total Spend": 653.0, "Total Transactions": 48.0, "Total Customers": 40.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 12.25 }, "geometry": { "type": "Point", "coordinates": [ -75.160766, 39.94951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "Name": "Axis Pizza", "Category": "Restaurants and Other Eating Places", "Address": "20 S 36th St", "LATITUDE": 39.95523, "LONGITUDE": -75.194652, "DATE_RANGE_START": 2019, "Total Visits": 1389.0, "Total Visitors": 936.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 41.0, "Total Spend": 9892.0, "Total Transactions": 851.0, "Total Customers": 505.0, "Median Spend per Transaction": 9.18, "Median Spend per Customer": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.194652, 39.95523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5zz", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "128 S 11th St", "LATITUDE": 39.949143, "LONGITUDE": -75.1591, "DATE_RANGE_START": 2019, "Total Visits": 4531.0, "Total Visitors": 3050.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 87.0, "Total Spend": 558.0, "Total Transactions": 38.0, "Total Customers": 37.0, "Median Spend per Transaction": 12.83, "Median Spend per Customer": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.1591, 39.949143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "Name": "Chew Deli", "Category": "Restaurants and Other Eating Places", "Address": "6302 Chew Ave", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 128.0, "POI_CBG": 421010252007.0, "Median Dwell Time": 155.0, "Total Spend": 918.0, "Total Transactions": 75.0, "Total Customers": 57.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-j35", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "127 S 18th St", "LATITUDE": 39.950756, "LONGITUDE": -75.17035, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 168.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 8.0, "Total Spend": 13704.0, "Total Transactions": 898.0, "Total Customers": 778.0, "Median Spend per Transaction": 11.83, "Median Spend per Customer": 14.26 }, "geometry": { "type": "Point", "coordinates": [ -75.17035, 39.950756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "Name": "Scoop Deville", "Category": "Restaurants and Other Eating Places", "Address": "1315 Walnut St", "LATITUDE": 39.949429, "LONGITUDE": -75.162851, "DATE_RANGE_START": 2019, "Total Visits": 1014.0, "Total Visitors": 650.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 78.0, "Total Spend": 1879.0, "Total Transactions": 172.0, "Total Customers": 163.0, "Median Spend per Transaction": 8.56, "Median Spend per Customer": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.162851, 39.949429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "839 N Broad St", "LATITUDE": 39.969391, "LONGITUDE": -75.159457, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 97.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 2.0, "Total Spend": 6769.0, "Total Transactions": 1131.0, "Total Customers": 625.0, "Median Spend per Transaction": 4.7, "Median Spend per Customer": 6.39 }, "geometry": { "type": "Point", "coordinates": [ -75.159457, 39.969391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "Name": "The Cheesecake Factory", "Category": "Restaurants and Other Eating Places", "Address": "1430 Walnut St", "LATITUDE": 39.949381, "LONGITUDE": -75.165741, "DATE_RANGE_START": 2019, "Total Visits": 2730.0, "Total Visitors": 2037.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 63.0, "Total Spend": 61000.0, "Total Transactions": 1363.0, "Total Customers": 1221.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 40.13 }, "geometry": { "type": "Point", "coordinates": [ -75.165741, 39.949381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-33q", "Name": "Urban Outfitters", "Category": "Clothing Stores", "Address": "110 S 36th St", "LATITUDE": 39.953788, "LONGITUDE": -75.194952, "DATE_RANGE_START": 2019, "Total Visits": 430.0, "Total Visitors": 373.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 5.0, "Total Spend": 9544.0, "Total Transactions": 210.0, "Total Customers": 158.0, "Median Spend per Transaction": 32.44, "Median Spend per Customer": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.194952, 39.953788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "Name": "El Vez", "Category": "Restaurants and Other Eating Places", "Address": "121 S 13th St", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2019, "Total Visits": 1569.0, "Total Visitors": 1226.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 56.0, "Total Spend": 122544.0, "Total Transactions": 2009.0, "Total Customers": 1811.0, "Median Spend per Transaction": 47.63, "Median Spend per Customer": 51.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgm-3qz", "Name": "LeBus East Falls", "Category": "Restaurants and Other Eating Places", "Address": "4201 Ridge Ave", "LATITUDE": 40.00891, "LONGITUDE": -75.193713, "DATE_RANGE_START": 2019, "Total Visits": 593.0, "Total Visitors": 491.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 12.0, "Total Spend": 4336.0, "Total Transactions": 93.0, "Total Customers": 58.0, "Median Spend per Transaction": 38.79, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193713, 40.00891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "Name": "Main Street Pho", "Category": "Restaurants and Other Eating Places", "Address": "4307 Main St", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 60.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 3.0, "Total Spend": 3927.0, "Total Transactions": 122.0, "Total Customers": 108.0, "Median Spend per Transaction": 26.1, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-9pv", "Name": "The Buffalo House", "Category": "Restaurants and Other Eating Places", "Address": "8439 Frankford Ave", "LATITUDE": 40.043677, "LONGITUDE": -75.017847, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 88.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 17.0, "Total Spend": 1285.0, "Total Transactions": 58.0, "Total Customers": 45.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.017847, 40.043677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-223@628-pm9-whq", "Name": "Las Bugambilias", "Category": "Restaurants and Other Eating Places", "Address": "15 S 3rd St", "LATITUDE": 39.949643, "LONGITUDE": -75.145551, "DATE_RANGE_START": 2019, "Total Visits": 486.0, "Total Visitors": 383.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 62.0, "Total Spend": 2964.0, "Total Transactions": 58.0, "Total Customers": 58.0, "Median Spend per Transaction": 50.37, "Median Spend per Customer": 50.37 }, "geometry": { "type": "Point", "coordinates": [ -75.145551, 39.949643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "Name": "Spring Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3739 Lancaster Ave", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2019, "Total Visits": 550.0, "Total Visitors": 395.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 77.0, "Total Spend": 2985.0, "Total Transactions": 192.0, "Total Customers": 148.0, "Median Spend per Transaction": 13.74, "Median Spend per Customer": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-jjv", "Name": "House of Our Own Books", "Category": "Book Stores and News Dealers", "Address": "3920 Spruce St", "LATITUDE": 39.951372, "LONGITUDE": -75.201884, "DATE_RANGE_START": 2019, "Total Visits": 1053.0, "Total Visitors": 698.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 97.0, "Total Spend": 114.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.56, "Median Spend per Customer": 34.19 }, "geometry": { "type": "Point", "coordinates": [ -75.201884, 39.951372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "Name": "Macy's", "Category": "Department Stores", "Address": "1300 Market St", "LATITUDE": 39.951926, "LONGITUDE": -75.161906, "DATE_RANGE_START": 2019, "Total Visits": 10614.0, "Total Visitors": 7344.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 51.0, "Total Spend": 30923.0, "Total Transactions": 366.0, "Total Customers": 311.0, "Median Spend per Transaction": 42.5, "Median Spend per Customer": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -75.161906, 39.951926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "3300 Aramingo Ave", "LATITUDE": 39.990629, "LONGITUDE": -75.10302, "DATE_RANGE_START": 2019, "Total Visits": 818.0, "Total Visitors": 661.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 10.0, "Total Spend": 29063.0, "Total Transactions": 708.0, "Total Customers": 545.0, "Median Spend per Transaction": 31.31, "Median Spend per Customer": 41.02 }, "geometry": { "type": "Point", "coordinates": [ -75.10302, 39.990629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-r49", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6391 Oxford Ave", "LATITUDE": 40.044228, "LONGITUDE": -75.087251, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 123.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 28.0, "Total Spend": 5532.0, "Total Transactions": 235.0, "Total Customers": 172.0, "Median Spend per Transaction": 22.64, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.087251, 40.044228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@63s-dw2-4gk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "136 N 63rd St", "LATITUDE": 39.965722, "LONGITUDE": -75.246681, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 100.0, "POI_CBG": 421010096004.0, "Median Dwell Time": 10.0, "Total Spend": 618.0, "Total Transactions": 40.0, "Total Customers": 30.0, "Median Spend per Transaction": 10.22, "Median Spend per Customer": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -75.246681, 39.965722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp4-zfz", "Name": "Liberty Gas Station", "Category": "Gasoline Stations", "Address": "101 W Lehigh Ave", "LATITUDE": 39.991196, "LONGITUDE": -75.131119, "DATE_RANGE_START": 2019, "Total Visits": 341.0, "Total Visitors": 280.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 4.0, "Total Spend": 16462.0, "Total Transactions": 148.0, "Total Customers": 137.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131119, 39.991196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-s89", "Name": "SuitSupply", "Category": "Clothing Stores", "Address": "1601 Locust St", "LATITUDE": 39.948725, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2019, "Total Visits": 1559.0, "Total Visitors": 1049.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 60.0, "Total Spend": 4744.0, "Total Transactions": 22.0, "Total Customers": 17.0, "Median Spend per Transaction": 168.0, "Median Spend per Customer": 178.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.948725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "Name": "P.C. Richard & Son", "Category": "Electronics and Appliance Stores", "Address": "2420 Cottman Ave", "LATITUDE": 40.046246, "LONGITUDE": -75.059899, "DATE_RANGE_START": 2019, "Total Visits": 791.0, "Total Visitors": 623.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 21.0, "Total Spend": 8164.0, "Total Transactions": 27.0, "Total Customers": 25.0, "Median Spend per Transaction": 166.31, "Median Spend per Customer": 172.77 }, "geometry": { "type": "Point", "coordinates": [ -75.059899, 40.046246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm4-ckf", "Name": "A Plus Mini Market", "Category": "Grocery Stores", "Address": "2101 S 17th St", "LATITUDE": 39.924818, "LONGITUDE": -75.174415, "DATE_RANGE_START": 2019, "Total Visits": 212.0, "Total Visitors": 170.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 3.0, "Total Spend": 84.0, "Total Transactions": 18.0, "Total Customers": 12.0, "Median Spend per Transaction": 4.5, "Median Spend per Customer": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174415, 39.924818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-zmk", "Name": "The Fresh Grocer", "Category": "Grocery Stores", "Address": "3021 Grays Ferry Ave", "LATITUDE": 39.940294, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2019, "Total Visits": 3575.0, "Total Visitors": 1962.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 18.0, "Total Spend": 1153.0, "Total Transactions": 30.0, "Total Customers": 22.0, "Median Spend per Transaction": 22.42, "Median Spend per Customer": 19.39 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 39.940294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "1544 Christian St", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2019, "Total Visits": 133.0, "Total Visitors": 100.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 6.0, "Total Spend": 95.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.69, "Median Spend per Customer": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pgb-tn5", "Name": "JC Food Market", "Category": "Grocery Stores", "Address": "600 N 11th St", "LATITUDE": 39.962905, "LONGITUDE": -75.15611, "DATE_RANGE_START": 2019, "Total Visits": 330.0, "Total Visitors": 198.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 51.0, "Total Spend": 1847.0, "Total Transactions": 188.0, "Total Customers": 107.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.15611, 39.962905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5627 Chestnut St # 99", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2019, "Total Visits": 2077.0, "Total Visitors": 1459.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 9.0, "Total Spend": 5075.0, "Total Transactions": 253.0, "Total Customers": 170.0, "Median Spend per Transaction": 12.25, "Median Spend per Customer": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2132 South Street Philadelphia", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2019, "Total Visits": 695.0, "Total Visitors": 475.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 10.0, "Total Spend": 27055.0, "Total Transactions": 1273.0, "Total Customers": 653.0, "Median Spend per Transaction": 12.35, "Median Spend per Customer": 23.58 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6515 Castor Ave", "LATITUDE": 40.040851, "LONGITUDE": -75.075239, "DATE_RANGE_START": 2019, "Total Visits": 740.0, "Total Visitors": 495.0, "POI_CBG": 421010313004.0, "Median Dwell Time": 12.0, "Total Spend": 988.0, "Total Transactions": 47.0, "Total Customers": 28.0, "Median Spend per Transaction": 14.88, "Median Spend per Customer": 23.58 }, "geometry": { "type": "Point", "coordinates": [ -75.075239, 40.040851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7v-skf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1560 Cottman Ave", "LATITUDE": 40.055128, "LONGITUDE": -75.073724, "DATE_RANGE_START": 2019, "Total Visits": 1761.0, "Total Visitors": 1269.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 4.0, "Total Spend": 514.0, "Total Transactions": 23.0, "Total Customers": 17.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 23.54 }, "geometry": { "type": "Point", "coordinates": [ -75.073724, 40.055128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "Name": "San Lucas Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2000 S Bouvier St", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 10.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 47.0, "Total Spend": 809.0, "Total Transactions": 43.0, "Total Customers": 33.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-wkz", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "2000 S Swanson St", "LATITUDE": 39.922348, "LONGITUDE": -75.146462, "DATE_RANGE_START": 2019, "Total Visits": 1829.0, "Total Visitors": 1502.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 17.0, "Total Spend": 2698.0, "Total Transactions": 57.0, "Total Customers": 53.0, "Median Spend per Transaction": 40.82, "Median Spend per Customer": 45.96 }, "geometry": { "type": "Point", "coordinates": [ -75.146462, 39.922348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "3000 Island Ave", "LATITUDE": 39.902552, "LONGITUDE": -75.240445, "DATE_RANGE_START": 2019, "Total Visits": 811.0, "Total Visitors": 633.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 10.0, "Total Spend": 2735.0, "Total Transactions": 87.0, "Total Customers": 55.0, "Median Spend per Transaction": 20.19, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.240445, 39.902552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26j-222@628-pgb-6x5", "Name": "The Black Taxi", "Category": "Restaurants and Other Eating Places", "Address": "745 N 25th St # 747", "LATITUDE": 39.968738, "LONGITUDE": -75.178186, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 49.0, "Total Spend": 15049.0, "Total Transactions": 450.0, "Total Customers": 313.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 36.73 }, "geometry": { "type": "Point", "coordinates": [ -75.178186, 39.968738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-r49", "Name": "Jade Palace", "Category": "Restaurants and Other Eating Places", "Address": "1714 S 5th St", "LATITUDE": 39.926873, "LONGITUDE": -75.154236, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 30.0, "POI_CBG": 421010027012.0, "Median Dwell Time": 9.0, "Total Spend": 129.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.65, "Median Spend per Customer": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.154236, 39.926873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "Name": "Wooden Shoe Books", "Category": "Book Stores and News Dealers", "Address": "704 South St", "LATITUDE": 39.942084, "LONGITUDE": -75.154166, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 135.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 22.0, "Total Spend": 1201.0, "Total Transactions": 50.0, "Total Customers": 50.0, "Median Spend per Transaction": 20.79, "Median Spend per Customer": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.154166, 39.942084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm3-vzz", "Name": "A Novel Idea", "Category": "Book Stores and News Dealers", "Address": "1726 E Passyunk Ave", "LATITUDE": 39.928207, "LONGITUDE": -75.165695, "DATE_RANGE_START": 2019, "Total Visits": 881.0, "Total Visitors": 723.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 15.0, "Total Spend": 883.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 32.38, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.165695, 39.928207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-yd9", "Name": "Essene Market & Cafe", "Category": "Health and Personal Care Stores", "Address": "719 S 4th St", "LATITUDE": 39.940035, "LONGITUDE": -75.149067, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 112.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 6.0, "Total Spend": 189.0, "Total Transactions": 13.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.86, "Median Spend per Customer": 56.75 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2601 Penrose Ave", "LATITUDE": 39.907673, "LONGITUDE": -75.189086, "DATE_RANGE_START": 2019, "Total Visits": 5717.0, "Total Visitors": 3695.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 5.0, "Total Spend": 1341.0, "Total Transactions": 95.0, "Total Customers": 70.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.189086, 39.907673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2901 N Broad St", "LATITUDE": 39.99726, "LONGITUDE": -75.153396, "DATE_RANGE_START": 2019, "Total Visits": 2515.0, "Total Visitors": 1937.0, "POI_CBG": 421010174002.0, "Median Dwell Time": 5.0, "Total Spend": 11789.0, "Total Transactions": 555.0, "Total Customers": 400.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153396, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "Name": "Michaels Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "9739 Roosevelt Blvd", "LATITUDE": 40.082446, "LONGITUDE": -75.023342, "DATE_RANGE_START": 2019, "Total Visits": 1211.0, "Total Visitors": 1023.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 13.0, "Total Spend": 13652.0, "Total Transactions": 451.0, "Total Customers": 393.0, "Median Spend per Transaction": 17.25, "Median Spend per Customer": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.023342, 40.082446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "Name": "Navy Exchange", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 Robbins St Bldg NO5", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2019, "Total Visits": 1271.0, "Total Visitors": 423.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 284.0, "Total Spend": 14394.0, "Total Transactions": 628.0, "Total Customers": 278.0, "Median Spend per Transaction": 8.37, "Median Spend per Customer": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3668 Aramingo Ave Ste 9A", "LATITUDE": 39.995094, "LONGITUDE": -75.095646, "DATE_RANGE_START": 2019, "Total Visits": 690.0, "Total Visitors": 565.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 10.0, "Total Spend": 795.0, "Total Transactions": 43.0, "Total Customers": 32.0, "Median Spend per Transaction": 17.32, "Median Spend per Customer": 23.44 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 39.995094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-9s5", "Name": "Parkside Beef & Ale", "Category": "Restaurants and Other Eating Places", "Address": "1433 Arch St", "LATITUDE": 39.954767, "LONGITUDE": -75.164606, "DATE_RANGE_START": 2019, "Total Visits": 476.0, "Total Visitors": 331.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 71.0, "Total Spend": 319.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 20.02 }, "geometry": { "type": "Point", "coordinates": [ -75.164606, 39.954767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "Name": "Solly Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8108 Bustleton Ave", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 52.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 266.0, "Total Spend": 1297.0, "Total Transactions": 62.0, "Total Customers": 45.0, "Median Spend per Transaction": 18.12, "Median Spend per Customer": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-py9", "Name": "Jasmine Rice Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "306 S 16th St", "LATITUDE": 39.947082, "LONGITUDE": -75.168176, "DATE_RANGE_START": 2019, "Total Visits": 1562.0, "Total Visitors": 973.0, "POI_CBG": 421010012021.0, "Median Dwell Time": 278.0, "Total Spend": 779.0, "Total Transactions": 27.0, "Total Customers": 27.0, "Median Spend per Transaction": 26.22, "Median Spend per Customer": 26.22 }, "geometry": { "type": "Point", "coordinates": [ -75.168176, 39.947082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5fz", "Name": "Zio's Brick Oven Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "111 S 13th St", "LATITUDE": 39.950079, "LONGITUDE": -75.161743, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 197.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 26.0, "Total Spend": 5113.0, "Total Transactions": 411.0, "Total Customers": 310.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.161743, 39.950079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xkf", "Name": "Lee How Fook", "Category": "Restaurants and Other Eating Places", "Address": "219 N 11th St", "LATITUDE": 39.956286, "LONGITUDE": -75.157078, "DATE_RANGE_START": 2019, "Total Visits": 1208.0, "Total Visitors": 870.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 41.0, "Total Spend": 1525.0, "Total Transactions": 38.0, "Total Customers": 37.0, "Median Spend per Transaction": 36.67, "Median Spend per Customer": 36.07 }, "geometry": { "type": "Point", "coordinates": [ -75.157078, 39.956286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pm9-wc5", "Name": "Pinch Dumplings", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949677, "LONGITUDE": -75.147569, "DATE_RANGE_START": 2019, "Total Visits": 1471.0, "Total Visitors": 1114.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 33.0, "Total Spend": 2119.0, "Total Transactions": 157.0, "Total Customers": 142.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 13.07 }, "geometry": { "type": "Point", "coordinates": [ -75.147569, 39.949677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-p8j-cqz", "Name": "Oriental Taste", "Category": "Restaurants and Other Eating Places", "Address": "3510 Cottman Ave", "LATITUDE": 40.037313, "LONGITUDE": -75.042418, "DATE_RANGE_START": 2019, "Total Visits": 1834.0, "Total Visitors": 1393.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 22.0, "Total Spend": 288.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 86.39, "Median Spend per Customer": 86.39 }, "geometry": { "type": "Point", "coordinates": [ -75.042418, 40.037313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1618 Chestnut St # 22", "LATITUDE": 39.951061, "LONGITUDE": -75.168264, "DATE_RANGE_START": 2019, "Total Visits": 1016.0, "Total Visitors": 750.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 141.0, "Total Spend": 13254.0, "Total Transactions": 413.0, "Total Customers": 395.0, "Median Spend per Transaction": 25.44, "Median Spend per Customer": 26.39 }, "geometry": { "type": "Point", "coordinates": [ -75.168264, 39.951061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8m-v2k", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "6406 Sackett St", "LATITUDE": 40.029454, "LONGITUDE": -75.058288, "DATE_RANGE_START": 2019, "Total Visits": 310.0, "Total Visitors": 247.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 13.0, "Total Spend": 4159.0, "Total Transactions": 75.0, "Total Customers": 63.0, "Median Spend per Transaction": 36.58, "Median Spend per Customer": 42.1 }, "geometry": { "type": "Point", "coordinates": [ -75.058288, 40.029454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvx-3dv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "801 N 48th St", "LATITUDE": 39.967245, "LONGITUDE": -75.215949, "DATE_RANGE_START": 2019, "Total Visits": 530.0, "Total Visitors": 356.0, "POI_CBG": 421010105001.0, "Median Dwell Time": 9.0, "Total Spend": 837.0, "Total Transactions": 70.0, "Total Customers": 42.0, "Median Spend per Transaction": 7.77, "Median Spend per Customer": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.215949, 39.967245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "Name": "Olive Garden", "Category": "Restaurants and Other Eating Places", "Address": "9280 Roosevelt Blvd", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2019, "Total Visits": 1434.0, "Total Visitors": 1261.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 54.0, "Total Spend": 27451.0, "Total Transactions": 558.0, "Total Customers": 503.0, "Median Spend per Transaction": 43.49, "Median Spend per Customer": 49.25 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "10500 Roosevelt Blvd", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2019, "Total Visits": 578.0, "Total Visitors": 460.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 14.0, "Total Spend": 1737.0, "Total Transactions": 42.0, "Total Customers": 42.0, "Median Spend per Transaction": 25.42, "Median Spend per Customer": 25.42 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-k4v", "Name": "Paradise Pizza", "Category": "Restaurants and Other Eating Places", "Address": "106 W Girard Ave", "LATITUDE": 39.968728, "LONGITUDE": -75.136484, "DATE_RANGE_START": 2019, "Total Visits": 1206.0, "Total Visitors": 868.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 105.0, "Total Spend": 299.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 17.07, "Median Spend per Customer": 18.18 }, "geometry": { "type": "Point", "coordinates": [ -75.136484, 39.968728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-vcq", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "400 W Allegheny Ave Ste C2", "LATITUDE": 39.998344, "LONGITUDE": -75.136151, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 140.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 11.0, "Total Spend": 2076.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 33.47, "Median Spend per Customer": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.136151, 39.998344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "Name": "Prohibition Taproom", "Category": "Restaurants and Other Eating Places", "Address": "501 N 13th St", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2019, "Total Visits": 240.0, "Total Visitors": 190.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 51.0, "Total Spend": 18358.0, "Total Transactions": 456.0, "Total Customers": 368.0, "Median Spend per Transaction": 33.68, "Median Spend per Customer": 37.82 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pmf-skf", "Name": "Butcher and Singer", "Category": "Restaurants and Other Eating Places", "Address": "1500 Walnut St", "LATITUDE": 39.948984, "LONGITUDE": -75.166282, "DATE_RANGE_START": 2019, "Total Visits": 8354.0, "Total Visitors": 5390.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 58.0, "Total Spend": 29928.0, "Total Transactions": 172.0, "Total Customers": 157.0, "Median Spend per Transaction": 169.48, "Median Spend per Customer": 178.36 }, "geometry": { "type": "Point", "coordinates": [ -75.166282, 39.948984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7715 Frankford Ave", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2019, "Total Visits": 1061.0, "Total Visitors": 703.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 4.0, "Total Spend": 21965.0, "Total Transactions": 2350.0, "Total Customers": 1054.0, "Median Spend per Transaction": 7.87, "Median Spend per Customer": 11.42 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7901 Frankford Ave", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 242.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 4.0, "Total Spend": 432.0, "Total Transactions": 52.0, "Total Customers": 17.0, "Median Spend per Transaction": 8.16, "Median Spend per Customer": 10.17 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "Name": "Bourbon & Branch", "Category": "Restaurants and Other Eating Places", "Address": "705 N 2nd St", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 132.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 54.0, "Total Spend": 25082.0, "Total Transactions": 803.0, "Total Customers": 591.0, "Median Spend per Transaction": 23.44, "Median Spend per Customer": 30.08 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2109 N Broad St", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2019, "Total Visits": 984.0, "Total Visitors": 723.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 6.0, "Total Spend": 20897.0, "Total Transactions": 2707.0, "Total Customers": 1691.0, "Median Spend per Transaction": 6.9, "Median Spend per Customer": 8.61 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "Name": "Pickwick Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1700 Market St", "LATITUDE": 39.952852, "LONGITUDE": -75.169574, "DATE_RANGE_START": 2019, "Total Visits": 448.0, "Total Visitors": 295.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 108.0, "Total Spend": 2500.0, "Total Transactions": 200.0, "Total Customers": 137.0, "Median Spend per Transaction": 9.91, "Median Spend per Customer": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169574, 39.952852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4314 Locust St", "LATITUDE": 39.953381, "LONGITUDE": -75.209698, "DATE_RANGE_START": 2019, "Total Visits": 1269.0, "Total Visitors": 838.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 9.0, "Total Spend": 25149.0, "Total Transactions": 1476.0, "Total Customers": 721.0, "Median Spend per Transaction": 11.06, "Median Spend per Customer": 21.16 }, "geometry": { "type": "Point", "coordinates": [ -75.209698, 39.953381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "401 Spring Garden St", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2019, "Total Visits": 1283.0, "Total Visitors": 909.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 11.0, "Total Spend": 11743.0, "Total Transactions": 561.0, "Total Customers": 336.0, "Median Spend per Transaction": 14.83, "Median Spend per Customer": 22.29 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfv-649", "Name": "Pelham Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6555 Greene St Ste 3", "LATITUDE": 40.043444, "LONGITUDE": -75.190762, "DATE_RANGE_START": 2019, "Total Visits": 1771.0, "Total Visitors": 971.0, "POI_CBG": 421010237001.0, "Median Dwell Time": 9.0, "Total Spend": 173.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 37.62, "Median Spend per Customer": 51.83 }, "geometry": { "type": "Point", "coordinates": [ -75.190762, 40.043444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p72-hqz", "Name": "Dagwood's Pub", "Category": "Restaurants and Other Eating Places", "Address": "4625 Linden Ave", "LATITUDE": 40.05063, "LONGITUDE": -74.999822, "DATE_RANGE_START": 2019, "Total Visits": 623.0, "Total Visitors": 523.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 58.0, "Total Spend": 517.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 51.44, "Median Spend per Customer": 69.15 }, "geometry": { "type": "Point", "coordinates": [ -74.999822, 40.05063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "1230 Arch St", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2019, "Total Visits": 966.0, "Total Visitors": 823.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 1997.0, "Total Transactions": 173.0, "Total Customers": 128.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-y5f", "Name": "Neighborhood Ramen", "Category": "Restaurants and Other Eating Places", "Address": "617 S 3rd St", "LATITUDE": 39.9409, "LONGITUDE": -75.147453, "DATE_RANGE_START": 2019, "Total Visits": 1489.0, "Total Visitors": 1156.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 45.0, "Total Spend": 2817.0, "Total Transactions": 102.0, "Total Customers": 87.0, "Median Spend per Transaction": 23.6, "Median Spend per Customer": 29.97 }, "geometry": { "type": "Point", "coordinates": [ -75.147453, 39.9409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1500 E Erie Ave", "LATITUDE": 40.005384, "LONGITUDE": -75.097837, "DATE_RANGE_START": 2019, "Total Visits": 500.0, "Total Visitors": 423.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 5.0, "Total Spend": 726.0, "Total Transactions": 88.0, "Total Customers": 75.0, "Median Spend per Transaction": 7.4, "Median Spend per Customer": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.097837, 40.005384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgd-zpv", "Name": "PaperMill", "Category": "Restaurants and Other Eating Places", "Address": "3320 Market St", "LATITUDE": 39.955405, "LONGITUDE": -75.190449, "DATE_RANGE_START": 2019, "Total Visits": 7128.0, "Total Visitors": 3733.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 69.0, "Total Spend": 1480.0, "Total Transactions": 107.0, "Total Customers": 98.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.190449, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-yd9", "Name": "C & R Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "1600 Washington Ave", "LATITUDE": 39.938173, "LONGITUDE": -75.170563, "DATE_RANGE_START": 2019, "Total Visits": 1304.0, "Total Visitors": 798.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 27.0, "Total Spend": 632.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 33.7, "Median Spend per Customer": 61.62 }, "geometry": { "type": "Point", "coordinates": [ -75.170563, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgm-249", "Name": "Alice Alexander", "Category": "Clothing Stores", "Address": "4056 Ridge Ave", "LATITUDE": 40.007598, "LONGITUDE": -75.190878, "DATE_RANGE_START": 2019, "Total Visits": 858.0, "Total Visitors": 685.0, "POI_CBG": 421010170001.0, "Median Dwell Time": 16.0, "Total Spend": 1625.0, "Total Transactions": 100.0, "Total Customers": 88.0, "Median Spend per Transaction": 9.37, "Median Spend per Customer": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.190878, 40.007598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3724 Spruce St # 3744", "LATITUDE": 39.950972, "LONGITUDE": -75.198395, "DATE_RANGE_START": 2019, "Total Visits": 3853.0, "Total Visitors": 2225.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 11.0, "Total Spend": 69643.0, "Total Transactions": 9113.0, "Total Customers": 3631.0, "Median Spend per Transaction": 6.12, "Median Spend per Customer": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.198395, 39.950972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-649", "Name": "Quaker Valley Foods", "Category": "Specialty Food Stores", "Address": "2701 Red Lion Rd", "LATITUDE": 40.094265, "LONGITUDE": -75.010029, "DATE_RANGE_START": 2019, "Total Visits": 536.0, "Total Visitors": 197.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 227.0, "Total Spend": 156567.0, "Total Transactions": 107.0, "Total Customers": 42.0, "Median Spend per Transaction": 1188.26, "Median Spend per Customer": 503.67 }, "geometry": { "type": "Point", "coordinates": [ -75.010029, 40.094265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj2-btv", "Name": "Bentoulis Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1226 E Hunting Park Ave", "LATITUDE": 40.01065, "LONGITUDE": -75.102956, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 87.0, "POI_CBG": 421010191002.0, "Median Dwell Time": 16.0, "Total Spend": 682.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 18.1, "Median Spend per Customer": 17.49 }, "geometry": { "type": "Point", "coordinates": [ -75.102956, 40.01065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5534 Wayne Ave", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2019, "Total Visits": 558.0, "Total Visitors": 481.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 7.0, "Total Spend": 968.0, "Total Transactions": 70.0, "Total Customers": 55.0, "Median Spend per Transaction": 11.55, "Median Spend per Customer": 13.89 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3725 Aramingo Ave", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2019, "Total Visits": 1269.0, "Total Visitors": 1078.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 4.0, "Total Spend": 14093.0, "Total Transactions": 1251.0, "Total Customers": 913.0, "Median Spend per Transaction": 8.92, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5s5", "Name": "Federal Donuts East Market", "Category": "Restaurants and Other Eating Places", "Address": "21 S 12th St", "LATITUDE": 39.951076, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2019, "Total Visits": 1394.0, "Total Visitors": 1096.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 16.0, "Total Spend": 5974.0, "Total Transactions": 470.0, "Total Customers": 456.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.951076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "Name": "Bubblefish", "Category": "Restaurants and Other Eating Places", "Address": "909 Arch St", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2019, "Total Visits": 6866.0, "Total Visitors": 4814.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 50.0, "Total Spend": 14483.0, "Total Transactions": 396.0, "Total Customers": 358.0, "Median Spend per Transaction": 28.61, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "9499 Roosevelt Blvd", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2019, "Total Visits": 2539.0, "Total Visitors": 2192.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 13381.0, "Total Transactions": 598.0, "Total Customers": 488.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 22.75 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "Name": "Express Fuel", "Category": "Gasoline Stations", "Address": "5201 Oxford Ave", "LATITUDE": 40.026572, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2019, "Total Visits": 215.0, "Total Visitors": 163.0, "POI_CBG": 421010302004.0, "Median Dwell Time": 3.0, "Total Spend": 2035.0, "Total Transactions": 185.0, "Total Customers": 133.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1601 Market St", "LATITUDE": 39.954256, "LONGITUDE": -75.167978, "DATE_RANGE_START": 2019, "Total Visits": 12348.0, "Total Visitors": 6193.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 129.0, "Total Spend": 675.0, "Total Transactions": 115.0, "Total Customers": 68.0, "Median Spend per Transaction": 4.08, "Median Spend per Customer": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.167978, 39.954256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-kcq", "Name": "Cosmic Cafe and Ciderhouse", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1 Boathouse Row", "LATITUDE": 39.969067, "LONGITUDE": -75.185279, "DATE_RANGE_START": 2019, "Total Visits": 588.0, "Total Visitors": 500.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 11.0, "Total Spend": 663.0, "Total Transactions": 53.0, "Total Customers": 45.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185279, 39.969067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5mk", "Name": "Fogo de Chão", "Category": "Restaurants and Other Eating Places", "Address": "1337 Chestnut St", "LATITUDE": 39.950928, "LONGITUDE": -75.162963, "DATE_RANGE_START": 2019, "Total Visits": 34207.0, "Total Visitors": 20410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 67.0, "Total Spend": 52616.0, "Total Transactions": 393.0, "Total Customers": 376.0, "Median Spend per Transaction": 109.0, "Median Spend per Customer": 114.56 }, "geometry": { "type": "Point", "coordinates": [ -75.162963, 39.950928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-2zf", "Name": "Vapor Funky Monkey", "Category": "Other Miscellaneous Store Retailers", "Address": "4221 Main St", "LATITUDE": 40.024206, "LONGITUDE": -75.220514, "DATE_RANGE_START": 2019, "Total Visits": 1008.0, "Total Visitors": 596.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 92.0, "Total Spend": 243.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 26.95, "Median Spend per Customer": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.220514, 40.024206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmb-5fz", "Name": "1225Raw Sushi and Sake Lounge", "Category": "Restaurants and Other Eating Places", "Address": "1225 Sansom St", "LATITUDE": 39.950027, "LONGITUDE": -75.161491, "DATE_RANGE_START": 2019, "Total Visits": 250.0, "Total Visitors": 190.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 30.0, "Total Spend": 4597.0, "Total Transactions": 90.0, "Total Customers": 82.0, "Median Spend per Transaction": 41.34, "Median Spend per Customer": 45.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161491, 39.950027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j9z", "Name": "Rouge", "Category": "Restaurants and Other Eating Places", "Address": "205 S 18th St", "LATITUDE": 39.949689, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2019, "Total Visits": 706.0, "Total Visitors": 370.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 304.0, "Total Spend": 14996.0, "Total Transactions": 252.0, "Total Customers": 190.0, "Median Spend per Transaction": 51.76, "Median Spend per Customer": 55.85 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.949689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6101 Ridge Ave", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2019, "Total Visits": 293.0, "Total Visitors": 178.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 5.0, "Total Spend": 1518.0, "Total Transactions": 157.0, "Total Customers": 62.0, "Median Spend per Transaction": 5.94, "Median Spend per Customer": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "10901C Bustleton Ave", "LATITUDE": 40.112307, "LONGITUDE": -75.022895, "DATE_RANGE_START": 2019, "Total Visits": 1268.0, "Total Visitors": 913.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 6.0, "Total Spend": 4338.0, "Total Transactions": 240.0, "Total Customers": 150.0, "Median Spend per Transaction": 10.1, "Median Spend per Customer": 17.77 }, "geometry": { "type": "Point", "coordinates": [ -75.022895, 40.112307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pj8-g6k", "Name": "Summerdale Pharmacy", "Category": "Health and Personal Care Stores", "Address": "900 E Sanger St", "LATITUDE": 40.033196, "LONGITUDE": -75.090605, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 47.0, "POI_CBG": 421010390007.0, "Median Dwell Time": 1.0, "Total Spend": 9.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 2.75, "Median Spend per Customer": 2.75 }, "geometry": { "type": "Point", "coordinates": [ -75.090605, 40.033196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1046 Market St", "LATITUDE": 39.951447, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2019, "Total Visits": 2110.0, "Total Visitors": 1804.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 6.0, "Total Spend": 18083.0, "Total Transactions": 1174.0, "Total Customers": 820.0, "Median Spend per Transaction": 9.68, "Median Spend per Customer": 13.93 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.951447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "255-222@628-pm9-y9z", "Name": "Milkboy", "Category": "Restaurants and Other Eating Places", "Address": "401 South St", "LATITUDE": 39.941731, "LONGITUDE": -75.1493, "DATE_RANGE_START": 2019, "Total Visits": 1857.0, "Total Visitors": 1744.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 2207.0, "Total Transactions": 67.0, "Total Customers": 67.0, "Median Spend per Transaction": 25.8, "Median Spend per Customer": 25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.941731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "Name": "Xiandu Thai", "Category": "Restaurants and Other Eating Places", "Address": "1119 Walnut St", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2019, "Total Visits": 4531.0, "Total Visitors": 3050.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 87.0, "Total Spend": 11978.0, "Total Transactions": 293.0, "Total Customers": 268.0, "Median Spend per Transaction": 32.47, "Median Spend per Customer": 35.57 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2940 Fox St", "LATITUDE": 40.010746, "LONGITUDE": -75.175382, "DATE_RANGE_START": 2019, "Total Visits": 798.0, "Total Visitors": 703.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 9.0, "Total Spend": 946.0, "Total Transactions": 73.0, "Total Customers": 57.0, "Median Spend per Transaction": 10.85, "Median Spend per Customer": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.175382, 40.010746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6001 Ridge Ave", "LATITUDE": 40.032001, "LONGITUDE": -75.213304, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 105.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 14.0, "Total Spend": 3952.0, "Total Transactions": 153.0, "Total Customers": 128.0, "Median Spend per Transaction": 25.83, "Median Spend per Customer": 26.57 }, "geometry": { "type": "Point", "coordinates": [ -75.213304, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "260 W Lehigh Ave Ste 80", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2019, "Total Visits": 1218.0, "Total Visitors": 800.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 10.0, "Total Spend": 2097.0, "Total Transactions": 105.0, "Total Customers": 85.0, "Median Spend per Transaction": 12.99, "Median Spend per Customer": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9280 Krewstown Rd", "LATITUDE": 40.085969, "LONGITUDE": -75.04681, "DATE_RANGE_START": 2019, "Total Visits": 586.0, "Total Visitors": 435.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 5.0, "Total Spend": 1668.0, "Total Transactions": 98.0, "Total Customers": 77.0, "Median Spend per Transaction": 13.35, "Median Spend per Customer": 14.42 }, "geometry": { "type": "Point", "coordinates": [ -75.04681, 40.085969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6363 Frankford Ave", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2019, "Total Visits": 943.0, "Total Visitors": 665.0, "POI_CBG": 421010320003.0, "Median Dwell Time": 9.0, "Total Spend": 1358.0, "Total Transactions": 75.0, "Total Customers": 65.0, "Median Spend per Transaction": 12.49, "Median Spend per Customer": 12.49 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-5vf", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "2226 Cottman Ave", "LATITUDE": 40.048428, "LONGITUDE": -75.061751, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 167.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 24.0, "Total Spend": 1834.0, "Total Transactions": 145.0, "Total Customers": 133.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 11.95 }, "geometry": { "type": "Point", "coordinates": [ -75.061751, 40.048428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-8d9", "Name": "New Star Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1082 Wagner Ave", "LATITUDE": 40.034004, "LONGITUDE": -75.139986, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 28.0, "POI_CBG": 421010282001.0, "Median Dwell Time": 1.0, "Total Spend": 1368.0, "Total Transactions": 82.0, "Total Customers": 45.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139986, 40.034004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "Name": "Annies Seafood", "Category": "Specialty Food Stores", "Address": "6600 Haverford Ave", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010100004.0, "Median Dwell Time": 1.0, "Total Spend": 216.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm3-vpv", "Name": "Mesh Vintage", "Category": "Clothing Stores", "Address": "1820 E Passyunk Ave", "LATITUDE": 39.927333, "LONGITUDE": -75.166704, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 11.0, "Total Spend": 423.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166704, 39.927333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-n3q", "Name": "Double Connect", "Category": "Electronics and Appliance Stores", "Address": "5130 Market St", "LATITUDE": 39.959668, "LONGITUDE": -75.224073, "DATE_RANGE_START": 2019, "Total Visits": 31152.0, "Total Visitors": 11593.0, "POI_CBG": 421010085001.0, "Median Dwell Time": 21.0, "Total Spend": 466.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 47.5, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224073, 39.959668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6801 Frankford Ave", "LATITUDE": 40.032157, "LONGITUDE": -75.050449, "DATE_RANGE_START": 2019, "Total Visits": 1159.0, "Total Visitors": 866.0, "POI_CBG": 421010325001.0, "Median Dwell Time": 10.0, "Total Spend": 3510.0, "Total Transactions": 142.0, "Total Customers": 98.0, "Median Spend per Transaction": 16.68, "Median Spend per Customer": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.050449, 40.032157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6412 Castor Ave # 6422", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2019, "Total Visits": 1121.0, "Total Visitors": 686.0, "POI_CBG": 421010311013.0, "Median Dwell Time": 11.0, "Total Spend": 2825.0, "Total Transactions": 125.0, "Total Customers": 75.0, "Median Spend per Transaction": 15.9, "Median Spend per Customer": 20.38 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-brk", "Name": "North Penn Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "2241 W Clearfield St", "LATITUDE": 40.002096, "LONGITUDE": -75.167568, "DATE_RANGE_START": 2019, "Total Visits": 292.0, "Total Visitors": 222.0, "POI_CBG": 421010172013.0, "Median Dwell Time": 8.0, "Total Spend": 223.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 66.88, "Median Spend per Customer": 66.88 }, "geometry": { "type": "Point", "coordinates": [ -75.167568, 40.002096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "Name": "Stargazy", "Category": "Restaurants and Other Eating Places", "Address": "1838 E Passyunk Ave", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010029001.0, "Median Dwell Time": null, "Total Spend": 1798.0, "Total Transactions": 88.0, "Total Customers": 65.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "Name": "Calvin Klein", "Category": "Clothing Stores", "Address": "1889 Franklin Mills Cir", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 107.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 9087.0, "Total Transactions": 145.0, "Total Customers": 103.0, "Median Spend per Transaction": 37.99, "Median Spend per Customer": 39.88 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8t-vvf", "Name": "Skechers", "Category": "Shoe Stores", "Address": "1701 Franklin Mills Cir # 202", "LATITUDE": 40.089192, "LONGITUDE": -74.961438, "DATE_RANGE_START": 2019, "Total Visits": 665.0, "Total Visitors": 608.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 1999.0, "Total Transactions": 27.0, "Total Customers": 25.0, "Median Spend per Transaction": 74.73, "Median Spend per Customer": 74.48 }, "geometry": { "type": "Point", "coordinates": [ -74.961438, 40.089192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-cyv", "Name": "Jaggie's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6220 Lansdowne Ave", "LATITUDE": 39.975337, "LONGITUDE": -75.244317, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 27.0, "POI_CBG": 421010101006.0, "Median Dwell Time": 101.0, "Total Spend": 127.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244317, 39.975337 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3951 E Roosevelt Blvd", "LATITUDE": 40.027243, "LONGITUDE": -75.110271, "DATE_RANGE_START": 2019, "Total Visits": 2039.0, "Total Visitors": 1569.0, "POI_CBG": 421010292001.0, "Median Dwell Time": 4.0, "Total Spend": 615.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 32.06, "Median Spend per Customer": 33.12 }, "geometry": { "type": "Point", "coordinates": [ -75.110271, 40.027243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1207 Franklin Mills Cir", "LATITUDE": 40.084661, "LONGITUDE": -74.961825, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 555.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 6863.0, "Total Transactions": 168.0, "Total Customers": 158.0, "Median Spend per Transaction": 27.35, "Median Spend per Customer": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -74.961825, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "Name": "Walmart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd Bldg G", "LATITUDE": 40.031276, "LONGITUDE": -75.099634, "DATE_RANGE_START": 2019, "Total Visits": 13224.0, "Total Visitors": 8767.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 20.0, "Total Spend": 342702.0, "Total Transactions": 6761.0, "Total Customers": 4399.0, "Median Spend per Transaction": 29.34, "Median Spend per Customer": 40.91 }, "geometry": { "type": "Point", "coordinates": [ -75.099634, 40.031276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg9-x5z", "Name": "Vineyards Cafe", "Category": "Restaurants and Other Eating Places", "Address": "847 N 16th St", "LATITUDE": 39.96989, "LONGITUDE": -75.162961, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 40.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 42.0, "Total Spend": 3669.0, "Total Transactions": 476.0, "Total Customers": 263.0, "Median Spend per Transaction": 6.06, "Median Spend per Customer": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.162961, 39.96989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2201 W Allegheny Ave Ste 5", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2019, "Total Visits": 416.0, "Total Visitors": 320.0, "POI_CBG": 421010171003.0, "Median Dwell Time": 6.0, "Total Spend": 456.0, "Total Transactions": 35.0, "Total Customers": 23.0, "Median Spend per Transaction": 11.49, "Median Spend per Customer": 17.73 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6151 N Broad St", "LATITUDE": 40.0471, "LONGITUDE": -75.142281, "DATE_RANGE_START": 2019, "Total Visits": 5404.0, "Total Visitors": 3448.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 6.0, "Total Spend": 21353.0, "Total Transactions": 968.0, "Total Customers": 635.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.01 }, "geometry": { "type": "Point", "coordinates": [ -75.142281, 40.0471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9s-ct9", "Name": "City Cigars", "Category": "Other Miscellaneous Store Retailers", "Address": "615 Byberry Rd", "LATITUDE": 40.123352, "LONGITUDE": -75.014613, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 65.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 81.0, "Total Spend": 1134.0, "Total Transactions": 40.0, "Total Customers": 25.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 31.53 }, "geometry": { "type": "Point", "coordinates": [ -75.014613, 40.123352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "1415 Washington Ave", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2019, "Total Visits": 1033.0, "Total Visitors": 815.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 9.0, "Total Spend": 35514.0, "Total Transactions": 996.0, "Total Customers": 701.0, "Median Spend per Transaction": 28.37, "Median Spend per Customer": 37.23 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8b-cbk", "Name": "Smoker's Palace", "Category": "Other Miscellaneous Store Retailers", "Address": "6301 Keystone St", "LATITUDE": 40.017474, "LONGITUDE": -75.051228, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 77.0, "POI_CBG": 421010323001.0, "Median Dwell Time": 1.0, "Total Spend": 2981.0, "Total Transactions": 102.0, "Total Customers": 65.0, "Median Spend per Transaction": 19.61, "Median Spend per Customer": 38.46 }, "geometry": { "type": "Point", "coordinates": [ -75.051228, 40.017474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2019, "Total Visits": 760.0, "Total Visitors": 653.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 5.0, "Total Spend": 5396.0, "Total Transactions": 551.0, "Total Customers": 426.0, "Median Spend per Transaction": 8.36, "Median Spend per Customer": 10.08 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5mk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1301 Chestnut St", "LATITUDE": 39.950727, "LONGITUDE": -75.161879, "DATE_RANGE_START": 2019, "Total Visits": 280.0, "Total Visitors": 248.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 29.0, "Total Spend": 7203.0, "Total Transactions": 1268.0, "Total Customers": 765.0, "Median Spend per Transaction": 4.81, "Median Spend per Customer": 5.58 }, "geometry": { "type": "Point", "coordinates": [ -75.161879, 39.950727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-h89", "Name": "Kite & Key", "Category": "Restaurants and Other Eating Places", "Address": "1836 Callowhill St", "LATITUDE": 39.960365, "LONGITUDE": -75.169693, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 157.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 42.0, "Total Spend": 605.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 56.15, "Median Spend per Customer": 56.15 }, "geometry": { "type": "Point", "coordinates": [ -75.169693, 39.960365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-vmk", "Name": "Maxi's Pizza Subs and Bar", "Category": "Restaurants and Other Eating Places", "Address": "1926 Liacouras Walk", "LATITUDE": 39.982213, "LONGITUDE": -75.15602, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 100.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 10.0, "Total Spend": 1867.0, "Total Transactions": 113.0, "Total Customers": 60.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 14.59 }, "geometry": { "type": "Point", "coordinates": [ -75.15602, 39.982213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm4-grk", "Name": "AmeriThai", "Category": "Restaurants and Other Eating Places", "Address": "1244 Snyder Ave", "LATITUDE": 39.923914, "LONGITUDE": -75.167514, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 58.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 3.0, "Total Spend": 1433.0, "Total Transactions": 40.0, "Total Customers": 35.0, "Median Spend per Transaction": 35.92, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.167514, 39.923914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "Name": "Wah Gi Wah Halal", "Category": "Restaurants and Other Eating Places", "Address": "4447 Chestnut St", "LATITUDE": 39.956965, "LONGITUDE": -75.211135, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 229.0, "Total Spend": 2971.0, "Total Transactions": 87.0, "Total Customers": 77.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 35.92 }, "geometry": { "type": "Point", "coordinates": [ -75.211135, 39.956965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7x-b6k", "Name": "New England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6728 Bustleton Ave", "LATITUDE": 40.040059, "LONGITUDE": -75.066331, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 68.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 22.0, "Total Spend": 400.0, "Total Transactions": 15.0, "Total Customers": 12.0, "Median Spend per Transaction": 25.32, "Median Spend per Customer": 27.81 }, "geometry": { "type": "Point", "coordinates": [ -75.066331, 40.040059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-wzf", "Name": "Firestone Complete Auto Care", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9602 Bustleton Ave", "LATITUDE": 40.087378, "LONGITUDE": -75.035984, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 32.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 4.0, "Total Spend": 2780.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 136.39, "Median Spend per Customer": 136.39 }, "geometry": { "type": "Point", "coordinates": [ -75.035984, 40.087378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd Unit 22", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2019, "Total Visits": 565.0, "Total Visitors": 431.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 40.0, "Total Spend": 6622.0, "Total Transactions": 237.0, "Total Customers": 215.0, "Median Spend per Transaction": 21.13, "Median Spend per Customer": 26.14 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-cqz", "Name": "Little Morocco", "Category": "Restaurants and Other Eating Places", "Address": "1431 W Passyunk Ave # 1F", "LATITUDE": 39.925459, "LONGITUDE": -75.170748, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 42.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 51.0, "Total Spend": 735.0, "Total Transactions": 40.0, "Total Customers": 15.0, "Median Spend per Transaction": 15.93, "Median Spend per Customer": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.170748, 39.925459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-ty9", "Name": "La Famiglia Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "8 S Front St", "LATITUDE": 39.949369, "LONGITUDE": -75.142406, "DATE_RANGE_START": 2019, "Total Visits": 336.0, "Total Visitors": 325.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 38.0, "Total Spend": 2709.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 82.17, "Median Spend per Customer": 82.17 }, "geometry": { "type": "Point", "coordinates": [ -75.142406, 39.949369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "Name": "Jamba", "Category": "Restaurants and Other Eating Places", "Address": "Philadelphia Int L Airport Space C 9a", "LATITUDE": 39.87525, "LONGITUDE": -75.241494, "DATE_RANGE_START": 2019, "Total Visits": 305816.0, "Total Visitors": 187584.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 63.0, "Total Spend": 3725.0, "Total Transactions": 370.0, "Total Customers": 360.0, "Median Spend per Transaction": 8.26, "Median Spend per Customer": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.241494, 39.87525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "634 Market St", "LATITUDE": 39.950691, "LONGITUDE": -75.151871, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 340.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 111.0, "Total Spend": 5950.0, "Total Transactions": 1153.0, "Total Customers": 680.0, "Median Spend per Transaction": 4.21, "Median Spend per Customer": 5.39 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.950691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 Walnut St", "LATITUDE": 39.948446, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2019, "Total Visits": 735.0, "Total Visitors": 455.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 86.0, "Total Spend": 5441.0, "Total Transactions": 1191.0, "Total Customers": 578.0, "Median Spend per Transaction": 3.66, "Median Spend per Customer": 6.24 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.948446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4160 Monument Rd", "LATITUDE": 40.002692, "LONGITUDE": -75.214454, "DATE_RANGE_START": 2019, "Total Visits": 698.0, "Total Visitors": 515.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 5.0, "Total Spend": 6550.0, "Total Transactions": 1129.0, "Total Customers": 656.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 6.53 }, "geometry": { "type": "Point", "coordinates": [ -75.214454, 40.002692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9834 Bustleton Ave", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2019, "Total Visits": 858.0, "Total Visitors": 601.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 5.0, "Total Spend": 4477.0, "Total Transactions": 723.0, "Total Customers": 418.0, "Median Spend per Transaction": 4.83, "Median Spend per Customer": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2320 26 Fairmount Avenue Philadelphia", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2019, "Total Visits": 776.0, "Total Visitors": 605.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 8.0, "Total Spend": 16742.0, "Total Transactions": 830.0, "Total Customers": 451.0, "Median Spend per Transaction": 13.22, "Median Spend per Customer": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 214", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 102.0, "Total Spend": 6157.0, "Total Transactions": 202.0, "Total Customers": 153.0, "Median Spend per Transaction": 24.99, "Median Spend per Customer": 33.24 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-8d9", "Name": "Hilton Garden Inn", "Category": "Traveler Accommodation", "Address": "1100 Arch St", "LATITUDE": 39.953445, "LONGITUDE": -75.157985, "DATE_RANGE_START": 2019, "Total Visits": 28837.0, "Total Visitors": 16617.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 33608.0, "Total Transactions": 192.0, "Total Customers": 157.0, "Median Spend per Transaction": 58.4, "Median Spend per Customer": 127.43 }, "geometry": { "type": "Point", "coordinates": [ -75.157985, 39.953445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "Name": "Tommy Hilfiger", "Category": "Clothing Stores", "Address": "1800 Franklin Mills Cir", "LATITUDE": 40.089952, "LONGITUDE": -74.962035, "DATE_RANGE_START": 2019, "Total Visits": 355.0, "Total Visitors": 336.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 6.0, "Total Spend": 8376.0, "Total Transactions": 122.0, "Total Customers": 108.0, "Median Spend per Transaction": 50.97, "Median Spend per Customer": 50.13 }, "geometry": { "type": "Point", "coordinates": [ -74.962035, 40.089952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "Name": "Bellini", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "220 S 16th St", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2019, "Total Visits": 272.0, "Total Visitors": 235.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 2522.0, "Total Transactions": 27.0, "Total Customers": 27.0, "Median Spend per Transaction": 63.86, "Median Spend per Customer": 63.86 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kcq", "Name": "Almaz Cafe", "Category": "Restaurants and Other Eating Places", "Address": "140 S 20th St", "LATITUDE": 39.95075, "LONGITUDE": -75.173912, "DATE_RANGE_START": 2019, "Total Visits": 130.0, "Total Visitors": 93.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 28.0, "Total Spend": 1620.0, "Total Transactions": 53.0, "Total Customers": 53.0, "Median Spend per Transaction": 23.12, "Median Spend per Customer": 23.12 }, "geometry": { "type": "Point", "coordinates": [ -75.173912, 39.95075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "Name": "George's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 W Girard Ave", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 193.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 5.0, "Total Spend": 3093.0, "Total Transactions": 157.0, "Total Customers": 87.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 16.94 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-ph8-rtv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7740 City Ave", "LATITUDE": 39.978949, "LONGITUDE": -75.271415, "DATE_RANGE_START": 2019, "Total Visits": 1033.0, "Total Visitors": 805.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 2.0, "Total Spend": 56.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.271415, 39.978949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "Name": "Tony Luke's", "Category": "Restaurants and Other Eating Places", "Address": "1 Citizens Bank Way", "LATITUDE": 39.906891, "LONGITUDE": -75.166013, "DATE_RANGE_START": 2019, "Total Visits": 2585.0, "Total Visitors": 2427.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 11.0, "Total Spend": 750.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 24.3, "Median Spend per Customer": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166013, 39.906891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "Name": "Ruby Buffet", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2019, "Total Visits": 1314.0, "Total Visitors": 1163.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 46.0, "Total Spend": 15159.0, "Total Transactions": 423.0, "Total Customers": 390.0, "Median Spend per Transaction": 35.04, "Median Spend per Customer": 35.69 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "177 W Allegheny Ave", "LATITUDE": 39.999351, "LONGITUDE": -75.132987, "DATE_RANGE_START": 2019, "Total Visits": 220.0, "Total Visitors": 198.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 3.0, "Total Spend": 593.0, "Total Transactions": 48.0, "Total Customers": 33.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 14.17 }, "geometry": { "type": "Point", "coordinates": [ -75.132987, 39.999351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgj-c5z", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1511 Cecil B Moore Ave", "LATITUDE": 39.979163, "LONGITUDE": -75.160092, "DATE_RANGE_START": 2019, "Total Visits": 656.0, "Total Visitors": 405.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 120.0, "Total Spend": 4096.0, "Total Transactions": 416.0, "Total Customers": 310.0, "Median Spend per Transaction": 9.28, "Median Spend per Customer": 10.24 }, "geometry": { "type": "Point", "coordinates": [ -75.160092, 39.979163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "Name": "Chuck E. Cheese's", "Category": "Restaurants and Other Eating Places", "Address": "9 Snyder Ave. Corner of Front & Snyder", "LATITUDE": 39.921782, "LONGITUDE": -75.1449, "DATE_RANGE_START": 2019, "Total Visits": 240.0, "Total Visitors": 220.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 22.0, "Total Spend": 1016.0, "Total Transactions": 60.0, "Total Customers": 40.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.1449, 39.921782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9990 Bustleton Ave", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2019, "Total Visits": 631.0, "Total Visitors": 550.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 5.0, "Total Spend": 5420.0, "Total Transactions": 135.0, "Total Customers": 122.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7613 Castor Ave", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2019, "Total Visits": 475.0, "Total Visitors": 381.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 7.0, "Total Spend": 6777.0, "Total Transactions": 723.0, "Total Customers": 486.0, "Median Spend per Transaction": 7.97, "Median Spend per Customer": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956616, "LONGITUDE": -75.194139, "DATE_RANGE_START": 2019, "Total Visits": 388.0, "Total Visitors": 301.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 8.0, "Total Spend": 10225.0, "Total Transactions": 2125.0, "Total Customers": 916.0, "Median Spend per Transaction": 3.98, "Median Spend per Customer": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.194139, 39.956616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5801 Oxford Ave", "LATITUDE": 40.032682, "LONGITUDE": -75.084504, "DATE_RANGE_START": 2019, "Total Visits": 590.0, "Total Visitors": 416.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 5.0, "Total Spend": 1831.0, "Total Transactions": 330.0, "Total Customers": 175.0, "Median Spend per Transaction": 4.72, "Median Spend per Customer": 6.47 }, "geometry": { "type": "Point", "coordinates": [ -75.084504, 40.032682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1142 Crease St", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 37.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 62.0, "Total Spend": 7898.0, "Total Transactions": 288.0, "Total Customers": 253.0, "Median Spend per Transaction": 22.96, "Median Spend per Customer": 27.74 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-cbk", "Name": "Torres", "Category": "Restaurants and Other Eating Places", "Address": "5434 Torresdale Ave", "LATITUDE": 40.01446, "LONGITUDE": -75.065885, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 12.0, "Total Spend": 820.0, "Total Transactions": 25.0, "Total Customers": 23.0, "Median Spend per Transaction": 28.94, "Median Spend per Customer": 28.51 }, "geometry": { "type": "Point", "coordinates": [ -75.065885, 40.01446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "Name": "Grace Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2229 Grays Ferry Ave", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 61.0, "Total Spend": 2608.0, "Total Transactions": 90.0, "Total Customers": 70.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "Name": "General Tso", "Category": "Restaurants and Other Eating Places", "Address": "2350 Orthodox St", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 35.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 1.0, "Total Spend": 876.0, "Total Transactions": 47.0, "Total Customers": 32.0, "Median Spend per Transaction": 17.36, "Median Spend per Customer": 26.02 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-fcq", "Name": "Yeager Hardware", "Category": "Building Material and Supplies Dealers", "Address": "1232 N 52nd St", "LATITUDE": 39.97236, "LONGITUDE": -75.226332, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 37.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 227.0, "Total Spend": 30059.0, "Total Transactions": 1104.0, "Total Customers": 833.0, "Median Spend per Transaction": 16.39, "Median Spend per Customer": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.226332, 39.97236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-8sq", "Name": "Highline Automotive", "Category": "Automobile Dealers", "Address": "4343 Torresdale Ave", "LATITUDE": 40.008707, "LONGITUDE": -75.082395, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 247.0, "POI_CBG": 421010294003.0, "Median Dwell Time": 10.0, "Total Spend": 408.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 122.47, "Median Spend per Customer": 122.47 }, "geometry": { "type": "Point", "coordinates": [ -75.082395, 40.008707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2726 S Front St", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2019, "Total Visits": 743.0, "Total Visitors": 603.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 3591.0, "Total Transactions": 120.0, "Total Customers": 100.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2524 Aramingo Ave", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 103.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 5.0, "Total Spend": 9871.0, "Total Transactions": 253.0, "Total Customers": 213.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8d-8n5", "Name": "Margaret Mini Market", "Category": "Grocery Stores", "Address": "2300 Margaret St", "LATITUDE": 40.007563, "LONGITUDE": -75.076393, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 75.0, "POI_CBG": 421010380002.0, "Median Dwell Time": 1.0, "Total Spend": 157.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.076393, 40.007563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2535 Aramingo Ave", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2019, "Total Visits": 1388.0, "Total Visitors": 1068.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 4.0, "Total Spend": 173766.0, "Total Transactions": 10038.0, "Total Customers": 4851.0, "Median Spend per Transaction": 12.17, "Median Spend per Customer": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-jqf", "Name": "Brewers Outlet Of Mt Airy & Chestnut Hill", "Category": "Beer, Wine, and Liquor Stores", "Address": "7401 Germantown Ave", "LATITUDE": 40.063253, "LONGITUDE": -75.192693, "DATE_RANGE_START": 2019, "Total Visits": 292.0, "Total Visitors": 233.0, "POI_CBG": 421010256003.0, "Median Dwell Time": 5.0, "Total Spend": 16905.0, "Total Transactions": 500.0, "Total Customers": 393.0, "Median Spend per Transaction": 25.9, "Median Spend per Customer": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.192693, 40.063253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-y5f", "Name": "Haagen Dazs", "Category": "Restaurants and Other Eating Places", "Address": "242 South St", "LATITUDE": 39.941281, "LONGITUDE": -75.147232, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 55.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 2.0, "Total Spend": 3657.0, "Total Transactions": 363.0, "Total Customers": 331.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147232, 39.941281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-j7q", "Name": "Smokin Stogies N Stuff", "Category": "Other Miscellaneous Store Retailers", "Address": "102 S 18th St", "LATITUDE": 39.951529, "LONGITUDE": -75.170525, "DATE_RANGE_START": 2019, "Total Visits": 606.0, "Total Visitors": 553.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 6041.0, "Total Transactions": 265.0, "Total Customers": 212.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.170525, 39.951529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-mzf", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "38 S 52nd St # 42", "LATITUDE": 39.958726, "LONGITUDE": -75.2256, "DATE_RANGE_START": 2019, "Total Visits": 263.0, "Total Visitors": 222.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 13.0, "Total Spend": 1370.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 80.87, "Median Spend per Customer": 80.87 }, "geometry": { "type": "Point", "coordinates": [ -75.2256, 39.958726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1020 S Broad St", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2019, "Total Visits": 643.0, "Total Visitors": 545.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 5.0, "Total Spend": 33782.0, "Total Transactions": 1313.0, "Total Customers": 776.0, "Median Spend per Transaction": 17.04, "Median Spend per Customer": 30.28 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093157, "LONGITUDE": -75.032901, "DATE_RANGE_START": 2019, "Total Visits": 163.0, "Total Visitors": 137.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 10.0, "Total Spend": 1345.0, "Total Transactions": 82.0, "Total Customers": 27.0, "Median Spend per Transaction": 10.32, "Median Spend per Customer": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.032901, 40.093157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6140 Woodland Ave", "LATITUDE": 39.928169, "LONGITUDE": -75.230056, "DATE_RANGE_START": 2019, "Total Visits": 1281.0, "Total Visitors": 933.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 7.0, "Total Spend": 670.0, "Total Transactions": 42.0, "Total Customers": 22.0, "Median Spend per Transaction": 11.07, "Median Spend per Customer": 26.46 }, "geometry": { "type": "Point", "coordinates": [ -75.230056, 39.928169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "Name": "Mariposa Food Co op", "Category": "Grocery Stores", "Address": "4824 Baltimore Ave", "LATITUDE": 39.947933, "LONGITUDE": -75.220657, "DATE_RANGE_START": 2019, "Total Visits": 222.0, "Total Visitors": 182.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 7.0, "Total Spend": 73083.0, "Total Transactions": 2900.0, "Total Customers": 1154.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 34.75 }, "geometry": { "type": "Point", "coordinates": [ -75.220657, 39.947933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "Name": "Weavers Way Co Op", "Category": "Grocery Stores", "Address": "559 Carpenter Ln", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 128.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 10.0, "Total Spend": 62589.0, "Total Transactions": 2100.0, "Total Customers": 954.0, "Median Spend per Transaction": 20.04, "Median Spend per Customer": 38.74 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-8d9", "Name": "Bee Natural", "Category": "Specialty Food Stores", "Address": "1136 Arch St", "LATITUDE": 39.952966, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 1838.0, "Total Transactions": 88.0, "Total Customers": 88.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.952966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-qs5", "Name": "Panasian Buffet", "Category": "Restaurants and Other Eating Places", "Address": "833 Adams Ave", "LATITUDE": 40.030993, "LONGITUDE": -75.10376, "DATE_RANGE_START": 2019, "Total Visits": 1921.0, "Total Visitors": 1664.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 22.0, "Total Spend": 5620.0, "Total Transactions": 180.0, "Total Customers": 158.0, "Median Spend per Transaction": 27.24, "Median Spend per Customer": 32.51 }, "geometry": { "type": "Point", "coordinates": [ -75.10376, 40.030993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-qmk", "Name": "Yeeroh", "Category": "Restaurants and Other Eating Places", "Address": "1412 South St", "LATITUDE": 39.943614, "LONGITUDE": -75.166117, "DATE_RANGE_START": 2019, "Total Visits": 73.0, "Total Visitors": 65.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 19.0, "Total Spend": 3084.0, "Total Transactions": 167.0, "Total Customers": 142.0, "Median Spend per Transaction": 14.22, "Median Spend per Customer": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.166117, 39.943614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-zxq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3260 N Broad St Ste 5", "LATITUDE": 40.002963, "LONGITUDE": -75.152983, "DATE_RANGE_START": 2019, "Total Visits": 448.0, "Total Visitors": 380.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 5.0, "Total Spend": 3130.0, "Total Transactions": 232.0, "Total Customers": 138.0, "Median Spend per Transaction": 7.98, "Median Spend per Customer": 14.29 }, "geometry": { "type": "Point", "coordinates": [ -75.152983, 40.002963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5911 Ridge Ave # 5933", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2019, "Total Visits": 631.0, "Total Visitors": 436.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 7.0, "Total Spend": 6912.0, "Total Transactions": 340.0, "Total Customers": 213.0, "Median Spend per Transaction": 14.31, "Median Spend per Customer": 19.09 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5214 Baltimore Ave # 30", "LATITUDE": 39.947336, "LONGITUDE": -75.228833, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 523.0, "POI_CBG": 421010073004.0, "Median Dwell Time": 6.0, "Total Spend": 6454.0, "Total Transactions": 237.0, "Total Customers": 132.0, "Median Spend per Transaction": 14.94, "Median Spend per Customer": 22.13 }, "geometry": { "type": "Point", "coordinates": [ -75.228833, 39.947336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-y35", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "11725 Bustleton Ave", "LATITUDE": 40.119184, "LONGITUDE": -75.01709, "DATE_RANGE_START": 2019, "Total Visits": 548.0, "Total Visitors": 456.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 2.0, "Total Spend": 4885.0, "Total Transactions": 801.0, "Total Customers": 365.0, "Median Spend per Transaction": 5.16, "Median Spend per Customer": 7.21 }, "geometry": { "type": "Point", "coordinates": [ -75.01709, 40.119184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave Ste 5", "LATITUDE": 40.087324, "LONGITUDE": -75.039996, "DATE_RANGE_START": 2019, "Total Visits": 380.0, "Total Visitors": 285.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 3.0, "Total Spend": 1577.0, "Total Transactions": 308.0, "Total Customers": 153.0, "Median Spend per Transaction": 4.99, "Median Spend per Customer": 5.77 }, "geometry": { "type": "Point", "coordinates": [ -75.039996, 40.087324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "Name": "Beijing Garden", "Category": "Restaurants and Other Eating Places", "Address": "5911 Ridge Ave", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 27.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 7.0, "Total Spend": 1980.0, "Total Transactions": 95.0, "Total Customers": 68.0, "Median Spend per Transaction": 19.71, "Median Spend per Customer": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pmb-yqf", "Name": "Vivi Bubble Tea", "Category": "Restaurants and Other Eating Places", "Address": "145 N 10th St", "LATITUDE": 39.954838, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 120.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 12.0, "Total Spend": 7092.0, "Total Transactions": 845.0, "Total Customers": 730.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.954838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7104 Ridge Ave", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2019, "Total Visits": 403.0, "Total Visitors": 306.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 5.0, "Total Spend": 11368.0, "Total Transactions": 1731.0, "Total Customers": 800.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "Name": "Four Seasons Diner", "Category": "Restaurants and Other Eating Places", "Address": "2811 Cottman Ave", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2019, "Total Visits": 501.0, "Total Visitors": 385.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 26.0, "Total Spend": 14346.0, "Total Transactions": 456.0, "Total Customers": 388.0, "Median Spend per Transaction": 29.77, "Median Spend per Customer": 31.45 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "Name": "New Quality Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "105 E Allegheny Ave", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 80.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 68.0, "Total Spend": 268.0, "Total Transactions": 17.0, "Total Customers": 15.0, "Median Spend per Transaction": 16.29, "Median Spend per Customer": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "Name": "Big Ben Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7266 Rising Sun Ave", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 55.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 11.0, "Total Spend": 5690.0, "Total Transactions": 232.0, "Total Customers": 160.0, "Median Spend per Transaction": 19.72, "Median Spend per Customer": 27.84 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-75z", "Name": "Pizza Brain", "Category": "Restaurants and Other Eating Places", "Address": "2313 Frankford Ave", "LATITUDE": 39.980599, "LONGITUDE": -75.128225, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 198.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 13.0, "Total Spend": 7259.0, "Total Transactions": 373.0, "Total Customers": 320.0, "Median Spend per Transaction": 15.84, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.128225, 39.980599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pg3-789", "Name": "Queen Express Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8101 Stenton Ave", "LATITUDE": 40.066992, "LONGITUDE": -75.177976, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 52.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 931.0, "Total Spend": 53.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 16.05, "Median Spend per Customer": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.177976, 40.066992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "35 E Chelten Ave", "LATITUDE": 40.037244, "LONGITUDE": -75.17465, "DATE_RANGE_START": 2019, "Total Visits": 370.0, "Total Visitors": 308.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 8.0, "Total Spend": 10206.0, "Total Transactions": 240.0, "Total Customers": 142.0, "Median Spend per Transaction": 26.97, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.17465, 40.037244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp5-gff", "Name": "Stop One Supermarket", "Category": "Grocery Stores", "Address": "2971 Aramingo Ave", "LATITUDE": 39.985559, "LONGITUDE": -75.111594, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 63.0, "POI_CBG": 421010179003.0, "Median Dwell Time": 854.0, "Total Spend": 103.0, "Total Transactions": 15.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.29, "Median Spend per Customer": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.111594, 39.985559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2600 Grant Ave", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2019, "Total Visits": 1286.0, "Total Visitors": 948.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 89121.0, "Total Transactions": 5767.0, "Total Customers": 2500.0, "Median Spend per Transaction": 10.26, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "242 Market St # 244", "LATITUDE": 39.949907, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2019, "Total Visits": 668.0, "Total Visitors": 511.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 7.0, "Total Spend": 3010.0, "Total Transactions": 386.0, "Total Customers": 202.0, "Median Spend per Transaction": 6.09, "Median Spend per Customer": 6.99 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.949907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-pqf", "Name": "Tico's Tacos Tex Mex", "Category": "Restaurants and Other Eating Places", "Address": "1627 South St", "LATITUDE": 39.944355, "LONGITUDE": -75.169738, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 28.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 14.0, "Total Spend": 2370.0, "Total Transactions": 130.0, "Total Customers": 88.0, "Median Spend per Transaction": 13.71, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.169738, 39.944355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "537 Adams Ave", "LATITUDE": 40.038428, "LONGITUDE": -75.106684, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 65.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 146.0, "Total Spend": 40179.0, "Total Transactions": 1104.0, "Total Customers": 776.0, "Median Spend per Transaction": 19.62, "Median Spend per Customer": 27.08 }, "geometry": { "type": "Point", "coordinates": [ -75.106684, 40.038428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6771 N 5th St", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2019, "Total Visits": 210.0, "Total Visitors": 177.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 4.0, "Total Spend": 436.0, "Total Transactions": 48.0, "Total Customers": 28.0, "Median Spend per Transaction": 5.46, "Median Spend per Customer": 11.12 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-qs5", "Name": "Flying Fish Seafood", "Category": "Specialty Food Stores", "Address": "2652 S 9th St", "LATITUDE": 39.91592, "LONGITUDE": -75.163019, "DATE_RANGE_START": 2019, "Total Visits": 636.0, "Total Visitors": 326.0, "POI_CBG": 421010041023.0, "Median Dwell Time": 348.0, "Total Spend": 1374.0, "Total Transactions": 28.0, "Total Customers": 22.0, "Median Spend per Transaction": 53.0, "Median Spend per Customer": 70.85 }, "geometry": { "type": "Point", "coordinates": [ -75.163019, 39.91592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wkz", "Name": "Xenos Candy 'N' Gifts", "Category": "Specialty Food Stores", "Address": "231 Chestnut St", "LATITUDE": 39.948713, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2019, "Total Visits": 5252.0, "Total Visitors": 3901.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 41.0, "Total Spend": 546.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 15.07, "Median Spend per Customer": 15.07 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.948713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1800 South St", "LATITUDE": 39.944289, "LONGITUDE": -75.17218, "DATE_RANGE_START": 2019, "Total Visits": 1251.0, "Total Visitors": 743.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 13.0, "Total Spend": 18921.0, "Total Transactions": 1031.0, "Total Customers": 560.0, "Median Spend per Transaction": 12.6, "Median Spend per Customer": 17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17218, 39.944289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-t9z", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "804 Walnut St", "LATITUDE": 39.947992, "LONGITUDE": -75.154441, "DATE_RANGE_START": 2019, "Total Visits": 1987.0, "Total Visitors": 1471.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 33.0, "Total Spend": 1611.0, "Total Transactions": 195.0, "Total Customers": 138.0, "Median Spend per Transaction": 6.49, "Median Spend per Customer": 7.55 }, "geometry": { "type": "Point", "coordinates": [ -75.154441, 39.947992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9s-j9z", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "1890 Woodhaven Rd", "LATITUDE": 40.111439, "LONGITUDE": -75.002407, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 152.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 1.0, "Total Spend": 40.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 3.5, "Median Spend per Customer": 4.72 }, "geometry": { "type": "Point", "coordinates": [ -75.002407, 40.111439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phn-qj9", "Name": "Stenton Beer Distributors", "Category": "Beer, Wine, and Liquor Stores", "Address": "8119 Stenton Ave", "LATITUDE": 40.067357, "LONGITUDE": -75.178619, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 82.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 1.0, "Total Spend": 795.0, "Total Transactions": 38.0, "Total Customers": 20.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.178619, 40.067357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1600 E Wadsworth Ave", "LATITUDE": 40.080322, "LONGITUDE": -75.171913, "DATE_RANGE_START": 2019, "Total Visits": 698.0, "Total Visitors": 508.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 9.0, "Total Spend": 1502.0, "Total Transactions": 88.0, "Total Customers": 68.0, "Median Spend per Transaction": 10.49, "Median Spend per Customer": 15.22 }, "geometry": { "type": "Point", "coordinates": [ -75.171913, 40.080322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "259 Market St", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2019, "Total Visits": 621.0, "Total Visitors": 538.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 6.0, "Total Spend": 21164.0, "Total Transactions": 1254.0, "Total Customers": 678.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 18.41 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p7c-3dv", "Name": "Marathon", "Category": "Gasoline Stations", "Address": "9451 Academy Rd", "LATITUDE": 40.06844, "LONGITUDE": -75.007839, "DATE_RANGE_START": 2019, "Total Visits": 193.0, "Total Visitors": 122.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 13.0, "Total Spend": 441.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 41.75, "Median Spend per Customer": 41.75 }, "geometry": { "type": "Point", "coordinates": [ -75.007839, 40.06844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-p9z", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4160 N American St", "LATITUDE": 40.014187, "LONGITUDE": -75.131595, "DATE_RANGE_START": 2019, "Total Visits": 790.0, "Total Visitors": 590.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 4.0, "Total Spend": 309.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 66.05 }, "geometry": { "type": "Point", "coordinates": [ -75.131595, 40.014187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-94v", "Name": "Journeys", "Category": "Shoe Stores", "Address": "1001 Market St", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2019, "Total Visits": 22929.0, "Total Visitors": 13449.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 14.0, "Total Spend": 425.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8f-7dv", "Name": "Risque Video", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4853 James St", "LATITUDE": 40.00855, "LONGITUDE": -75.072772, "DATE_RANGE_START": 2019, "Total Visits": 1058.0, "Total Visitors": 913.0, "POI_CBG": 421010380002.0, "Median Dwell Time": 7.0, "Total Spend": 72.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072772, 40.00855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "Name": "Walmart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9745 Roosevelt Blvd Ste A", "LATITUDE": 40.083037, "LONGITUDE": -75.022233, "DATE_RANGE_START": 2019, "Total Visits": 16825.0, "Total Visitors": 10671.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 22.0, "Total Spend": 306752.0, "Total Transactions": 6465.0, "Total Customers": 3939.0, "Median Spend per Transaction": 29.61, "Median Spend per Customer": 43.79 }, "geometry": { "type": "Point", "coordinates": [ -75.022233, 40.083037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4061 Lancaster Ave", "LATITUDE": 39.964853, "LONGITUDE": -75.204438, "DATE_RANGE_START": 2019, "Total Visits": 523.0, "Total Visitors": 320.0, "POI_CBG": 421010107002.0, "Median Dwell Time": 29.0, "Total Spend": 736.0, "Total Transactions": 112.0, "Total Customers": 90.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 7.52 }, "geometry": { "type": "Point", "coordinates": [ -75.204438, 39.964853 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgg-n3q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2201 W Cambria St", "LATITUDE": 39.998932, "LONGITUDE": -75.167191, "DATE_RANGE_START": 2019, "Total Visits": 598.0, "Total Visitors": 391.0, "POI_CBG": 421010172011.0, "Median Dwell Time": 11.0, "Total Spend": 746.0, "Total Transactions": 95.0, "Total Customers": 70.0, "Median Spend per Transaction": 5.9, "Median Spend per Customer": 8.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167191, 39.998932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "Name": "Bleu Martini", "Category": "Restaurants and Other Eating Places", "Address": "24 S 2nd St", "LATITUDE": 39.949349, "LONGITUDE": -75.144205, "DATE_RANGE_START": 2019, "Total Visits": 2913.0, "Total Visitors": 2387.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 47.0, "Total Spend": 22182.0, "Total Transactions": 491.0, "Total Customers": 378.0, "Median Spend per Transaction": 28.3, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144205, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "Name": "Marcello's Pizza Grill", "Category": "Restaurants and Other Eating Places", "Address": "10849 Bustleton Ave", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2019, "Total Visits": 1746.0, "Total Visitors": 1216.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 6.0, "Total Spend": 79.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.51, "Median Spend per Customer": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gp9", "Name": "Libertine", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "261 S 13th St", "LATITUDE": 39.94681, "LONGITUDE": -75.162398, "DATE_RANGE_START": 2019, "Total Visits": 603.0, "Total Visitors": 401.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 199.0, "Total Spend": 4654.0, "Total Transactions": 95.0, "Total Customers": 80.0, "Median Spend per Transaction": 43.8, "Median Spend per Customer": 46.83 }, "geometry": { "type": "Point", "coordinates": [ -75.162398, 39.94681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p8m-54v", "Name": "Johnnie's Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4201 Comly St", "LATITUDE": 40.022812, "LONGITUDE": -75.063613, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 18.0, "POI_CBG": 421010319004.0, "Median Dwell Time": 105.0, "Total Spend": 377.0, "Total Transactions": 15.0, "Total Customers": 8.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 30.04 }, "geometry": { "type": "Point", "coordinates": [ -75.063613, 40.022812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "Name": "The Pizza Store", "Category": "Restaurants and Other Eating Places", "Address": "2727 E Allegheny Ave", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 58.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 12.0, "Total Spend": 756.0, "Total Transactions": 53.0, "Total Customers": 38.0, "Median Spend per Transaction": 14.14, "Median Spend per Customer": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "Name": "L'anima", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 17th St", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 118.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 22.0, "Total Spend": 772.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 127.42, "Median Spend per Customer": 127.42 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg8-ks5", "Name": "Blue Jay Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2900 W Girard Ave", "LATITUDE": 39.974422, "LONGITUDE": -75.183713, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 25.0, "POI_CBG": 421010137004.0, "Median Dwell Time": null, "Total Spend": 2270.0, "Total Transactions": 147.0, "Total Customers": 105.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 14.31 }, "geometry": { "type": "Point", "coordinates": [ -75.183713, 39.974422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-yqf", "Name": "Shiao Lan Kung", "Category": "Restaurants and Other Eating Places", "Address": "930 Race St", "LATITUDE": 39.955257, "LONGITUDE": -75.155387, "DATE_RANGE_START": 2019, "Total Visits": 11720.0, "Total Visitors": 7916.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 41.0, "Total Spend": 2909.0, "Total Transactions": 57.0, "Total Customers": 53.0, "Median Spend per Transaction": 42.37, "Median Spend per Customer": 49.23 }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.955257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-zmk", "Name": "Colney Deli", "Category": "Restaurants and Other Eating Places", "Address": "5610 N 5th St", "LATITUDE": 40.036792, "LONGITUDE": -75.130653, "DATE_RANGE_START": 2019, "Total Visits": 1577.0, "Total Visitors": 1064.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 12.0, "Total Spend": 5432.0, "Total Transactions": 308.0, "Total Customers": 173.0, "Median Spend per Transaction": 14.95, "Median Spend per Customer": 20.45 }, "geometry": { "type": "Point", "coordinates": [ -75.130653, 40.036792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pg9-td9", "Name": "Tela's Market & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1833 Fairmount Ave", "LATITUDE": 39.967388, "LONGITUDE": -75.168391, "DATE_RANGE_START": 2019, "Total Visits": 550.0, "Total Visitors": 391.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 47.0, "Total Spend": 36093.0, "Total Transactions": 2465.0, "Total Customers": 1219.0, "Median Spend per Transaction": 12.31, "Median Spend per Customer": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.168391, 39.967388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pzn-zj9", "Name": "Sweeney's Station Saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "13639 Philmont Ave", "LATITUDE": 40.131466, "LONGITUDE": -75.011396, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 1.0, "Total Spend": 1586.0, "Total Transactions": 57.0, "Total Customers": 43.0, "Median Spend per Transaction": 25.06, "Median Spend per Customer": 30.55 }, "geometry": { "type": "Point", "coordinates": [ -75.011396, 40.131466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-n5z", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3901 Walnut St", "LATITUDE": 39.954037, "LONGITUDE": -75.200292, "DATE_RANGE_START": 2019, "Total Visits": 1667.0, "Total Visitors": 1164.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 11.0, "Total Spend": 9424.0, "Total Transactions": 1734.0, "Total Customers": 956.0, "Median Spend per Transaction": 4.75, "Median Spend per Customer": 6.73 }, "geometry": { "type": "Point", "coordinates": [ -75.200292, 39.954037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "Name": "New Delhi Indian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4004 Chestnut St", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2019, "Total Visits": 373.0, "Total Visitors": 280.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 38.0, "Total Spend": 8544.0, "Total Transactions": 326.0, "Total Customers": 295.0, "Median Spend per Transaction": 20.24, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5zz", "Name": "Moriartys Restaurant & Irish Pub", "Category": "Restaurants and Other Eating Places", "Address": "1116 Walnut St", "LATITUDE": 39.948666, "LONGITUDE": -75.159836, "DATE_RANGE_START": 2019, "Total Visits": 262.0, "Total Visitors": 235.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 40.0, "Total Spend": 25077.0, "Total Transactions": 623.0, "Total Customers": 560.0, "Median Spend per Transaction": 30.38, "Median Spend per Customer": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159836, 39.948666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "Name": "Vernick Food & Drink", "Category": "Restaurants and Other Eating Places", "Address": "2031 Walnut St", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2019, "Total Visits": 5072.0, "Total Visitors": 3183.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 78.0, "Total Spend": 20670.0, "Total Transactions": 130.0, "Total Customers": 128.0, "Median Spend per Transaction": 132.09, "Median Spend per Customer": 137.46 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2019, "Total Visits": 348.0, "Total Visitors": 320.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 4.0, "Total Spend": 2687.0, "Total Transactions": 323.0, "Total Customers": 252.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 8.79 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "Name": "Linden Italian Market", "Category": "Restaurants and Other Eating Places", "Address": "4011 Linden Ave", "LATITUDE": 40.054575, "LONGITUDE": -75.004237, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 198.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 3.0, "Total Spend": 625.0, "Total Transactions": 53.0, "Total Customers": 43.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004237, 40.054575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "3619 Aramingo Ave", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2019, "Total Visits": 708.0, "Total Visitors": 595.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 9.0, "Total Spend": 15886.0, "Total Transactions": 1303.0, "Total Customers": 941.0, "Median Spend per Transaction": 10.13, "Median Spend per Customer": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgf-3bk", "Name": "Old Nelson Food", "Category": "Restaurants and Other Eating Places", "Address": "3600 Market St", "LATITUDE": 39.956093, "LONGITUDE": -75.194408, "DATE_RANGE_START": 2019, "Total Visits": 406.0, "Total Visitors": 258.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 11.0, "Total Spend": 5849.0, "Total Transactions": 611.0, "Total Customers": 491.0, "Median Spend per Transaction": 8.48, "Median Spend per Customer": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.194408, 39.956093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-d35", "Name": "Saqqara Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1356 South St", "LATITUDE": 39.943438, "LONGITUDE": -75.165102, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 63.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 44.0, "Total Spend": 1276.0, "Total Transactions": 45.0, "Total Customers": 38.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165102, 39.943438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7nq", "Name": "Woody's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "202 S 13th St", "LATITUDE": 39.948953, "LONGITUDE": -75.162366, "DATE_RANGE_START": 2019, "Total Visits": 4126.0, "Total Visitors": 2785.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 144.0, "Total Spend": 51396.0, "Total Transactions": 2375.0, "Total Customers": 1438.0, "Median Spend per Transaction": 17.4, "Median Spend per Customer": 26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162366, 39.948953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-pvz", "Name": "Triple Play Sports", "Category": "Clothing Stores", "Address": "827 S 9th St", "LATITUDE": 39.939041, "LONGITUDE": -75.157707, "DATE_RANGE_START": 2019, "Total Visits": 668.0, "Total Visitors": 478.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 5.0, "Total Spend": 2957.0, "Total Transactions": 50.0, "Total Customers": 33.0, "Median Spend per Transaction": 49.0, "Median Spend per Customer": 69.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157707, 39.939041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8t-w8v", "Name": "jasmine Inc", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087715, "LONGITUDE": -74.961773, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 203.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 6.0, "Total Spend": 598.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 15.45, "Median Spend per Customer": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -74.961773, 40.087715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-skf", "Name": "Good Dog Bar", "Category": "Restaurants and Other Eating Places", "Address": "224 S 15th St", "LATITUDE": 39.948847, "LONGITUDE": -75.166287, "DATE_RANGE_START": 2019, "Total Visits": 371.0, "Total Visitors": 232.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 26.0, "Total Spend": 17996.0, "Total Transactions": 521.0, "Total Customers": 458.0, "Median Spend per Transaction": 28.31, "Median Spend per Customer": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166287, 39.948847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-223@628-phy-rc5", "Name": "Tierra Colombiana Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4535 N 5th St", "LATITUDE": 40.020572, "LONGITUDE": -75.133736, "DATE_RANGE_START": 2019, "Total Visits": 401.0, "Total Visitors": 358.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 42.0, "Total Spend": 1782.0, "Total Transactions": 25.0, "Total Customers": 22.0, "Median Spend per Transaction": 67.04, "Median Spend per Customer": 71.52 }, "geometry": { "type": "Point", "coordinates": [ -75.133736, 40.020572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-zpv", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1575 N 52nd St Ste 707", "LATITUDE": 39.97922, "LONGITUDE": -75.22266, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 168.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 21.0, "Total Spend": 4947.0, "Total Transactions": 88.0, "Total Customers": 85.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.22266, 39.97922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5834 Pulaski Ave", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2019, "Total Visits": 1531.0, "Total Visitors": 1054.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 13.0, "Total Spend": 1671.0, "Total Transactions": 110.0, "Total Customers": 80.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "Name": "Fiesta Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "600 Jamestown St", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 351.0, "Total Spend": 2743.0, "Total Transactions": 165.0, "Total Customers": 125.0, "Median Spend per Transaction": 13.77, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2149 Catharine St", "LATITUDE": 39.942567, "LONGITUDE": -75.179023, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 1.0, "Total Spend": 1148.0, "Total Transactions": 178.0, "Total Customers": 130.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 7.24 }, "geometry": { "type": "Point", "coordinates": [ -75.179023, 39.942567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-45f", "Name": "Md Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1641 N Franklin St", "LATITUDE": 39.977208, "LONGITUDE": -75.147273, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 32.0, "POI_CBG": 421010145001.0, "Median Dwell Time": 224.0, "Total Spend": 603.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147273, 39.977208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "1851 S Columbus Blvd Ste 7", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 5.0, "Total Spend": 29651.0, "Total Transactions": 623.0, "Total Customers": 530.0, "Median Spend per Transaction": 35.37, "Median Spend per Customer": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pp5-kpv", "Name": "Port Richmond Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2512 E Clearfield St", "LATITUDE": 39.985432, "LONGITUDE": -75.107476, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 92.0, "POI_CBG": 421010180023.0, "Median Dwell Time": 116.0, "Total Spend": 1107.0, "Total Transactions": 80.0, "Total Customers": 32.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 21.35 }, "geometry": { "type": "Point", "coordinates": [ -75.107476, 39.985432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-v2k", "Name": "Temple Rainbow", "Category": "Restaurants and Other Eating Places", "Address": "2156 N Broad St", "LATITUDE": 39.986143, "LONGITUDE": -75.156606, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 73.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 1010.0, "Total Spend": 98.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.156606, 39.986143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "Name": "Sawatdee Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "534 S 15th St", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 75.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 5.0, "Total Spend": 1560.0, "Total Transactions": 38.0, "Total Customers": 37.0, "Median Spend per Transaction": 36.13, "Median Spend per Customer": 33.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmf-ht9", "Name": "Devon & Blakely", "Category": "Restaurants and Other Eating Places", "Address": "1801 Market St", "LATITUDE": 39.953611, "LONGITUDE": -75.170322, "DATE_RANGE_START": 2019, "Total Visits": 9281.0, "Total Visitors": 5080.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 233.0, "Total Spend": 2600.0, "Total Transactions": 272.0, "Total Customers": 202.0, "Median Spend per Transaction": 9.18, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 39.953611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "Name": "The Ritz-Carlton", "Category": "Traveler Accommodation", "Address": "10 Avenue of the Arts", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2019, "Total Visits": 18388.0, "Total Visitors": 12258.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 80.0, "Total Spend": 11480.0, "Total Transactions": 53.0, "Total Customers": 45.0, "Median Spend per Transaction": 103.95, "Median Spend per Customer": 211.79 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "Name": "Locust Rendezvous", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1415 Locust St", "LATITUDE": 39.948535, "LONGITUDE": -75.165879, "DATE_RANGE_START": 2019, "Total Visits": 2827.0, "Total Visitors": 1907.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 61.0, "Total Spend": 14581.0, "Total Transactions": 391.0, "Total Customers": 321.0, "Median Spend per Transaction": 29.79, "Median Spend per Customer": 34.58 }, "geometry": { "type": "Point", "coordinates": [ -75.165879, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgj-cqz", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St Ste 5", "LATITUDE": 39.977801, "LONGITUDE": -75.158494, "DATE_RANGE_START": 2019, "Total Visits": 9558.0, "Total Visitors": 6158.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 42.0, "Total Spend": 1546.0, "Total Transactions": 82.0, "Total Customers": 73.0, "Median Spend per Transaction": 13.6, "Median Spend per Customer": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158494, 39.977801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "Name": "Ocean Harbor", "Category": "Restaurants and Other Eating Places", "Address": "1023 Race St", "LATITUDE": 39.95567, "LONGITUDE": -75.156821, "DATE_RANGE_START": 2019, "Total Visits": 7019.0, "Total Visitors": 5402.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 8923.0, "Total Transactions": 163.0, "Total Customers": 155.0, "Median Spend per Transaction": 47.93, "Median Spend per Customer": 51.25 }, "geometry": { "type": "Point", "coordinates": [ -75.156821, 39.95567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "4010 Robbins Ave", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 87.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 32.0, "Total Spend": 81.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 24.23, "Median Spend per Customer": 24.23 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3032 N Broad St", "LATITUDE": 39.999771, "LONGITUDE": -75.153727, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 215.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 6.0, "Total Spend": 720.0, "Total Transactions": 68.0, "Total Customers": 60.0, "Median Spend per Transaction": 9.01, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153727, 39.999771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "Name": "Southgate", "Category": "Restaurants and Other Eating Places", "Address": "1801 Lombard St", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2019, "Total Visits": 1148.0, "Total Visitors": 738.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 234.0, "Total Spend": 9648.0, "Total Transactions": 187.0, "Total Customers": 165.0, "Median Spend per Transaction": 38.11, "Median Spend per Customer": 45.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.991684, "LONGITUDE": -75.154551, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 122.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 131.0, "Total Spend": 3633.0, "Total Transactions": 441.0, "Total Customers": 308.0, "Median Spend per Transaction": 6.94, "Median Spend per Customer": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154551, 39.991684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "Name": "Fette Sau", "Category": "Restaurants and Other Eating Places", "Address": "1208 Frankford Ave", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 97.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 55.0, "Total Spend": 31180.0, "Total Transactions": 1096.0, "Total Customers": 815.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 30.56 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvv-249", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2210 Island Ave", "LATITUDE": 39.916025, "LONGITUDE": -75.24632, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 78.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 268.0, "Total Spend": 3058.0, "Total Transactions": 53.0, "Total Customers": 48.0, "Median Spend per Transaction": 32.65, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.24632, 39.916025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-td9", "Name": "Milano's Pizzeria and Grill", "Category": "Restaurants and Other Eating Places", "Address": "127 S 10th St", "LATITUDE": 39.948998, "LONGITUDE": -75.157083, "DATE_RANGE_START": 2019, "Total Visits": 303.0, "Total Visitors": 240.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 17.0, "Total Spend": 1567.0, "Total Transactions": 127.0, "Total Customers": 102.0, "Median Spend per Transaction": 11.48, "Median Spend per Customer": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157083, 39.948998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1509 Chestnut St", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2019, "Total Visits": 938.0, "Total Visitors": 670.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 20.0, "Total Spend": 6138.0, "Total Transactions": 1433.0, "Total Customers": 618.0, "Median Spend per Transaction": 3.77, "Median Spend per Customer": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "52 E Jefferson St", "LATITUDE": 39.97281, "LONGITUDE": -75.134837, "DATE_RANGE_START": 2019, "Total Visits": 1802.0, "Total Visitors": 810.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 58.0, "Total Spend": 10406.0, "Total Transactions": 1198.0, "Total Customers": 898.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134837, 39.97281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-j7q", "Name": "Frecon Farms", "Category": "Specialty Food Stores", "Address": "1819 Walnut St", "LATITUDE": 39.950808, "LONGITUDE": -75.171348, "DATE_RANGE_START": 2019, "Total Visits": 8022.0, "Total Visitors": 4976.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 101.0, "Total Spend": 924.0, "Total Transactions": 70.0, "Total Customers": 68.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171348, 39.950808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5401 N 5th St", "LATITUDE": 40.033486, "LONGITUDE": -75.130876, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 198.0, "POI_CBG": 421010274013.0, "Median Dwell Time": 23.0, "Total Spend": 5388.0, "Total Transactions": 911.0, "Total Customers": 403.0, "Median Spend per Transaction": 4.94, "Median Spend per Customer": 8.11 }, "geometry": { "type": "Point", "coordinates": [ -75.130876, 40.033486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "Name": "Bassetts Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "45 N 12th St", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2019, "Total Visits": 230.0, "Total Visitors": 210.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 11509.0, "Total Transactions": 1071.0, "Total Customers": 1018.0, "Median Spend per Transaction": 8.05, "Median Spend per Customer": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-8d9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1038 Arch St", "LATITUDE": 39.953621, "LONGITUDE": -75.157784, "DATE_RANGE_START": 2019, "Total Visits": 1156.0, "Total Visitors": 979.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 21.0, "Total Spend": 5501.0, "Total Transactions": 1053.0, "Total Customers": 765.0, "Median Spend per Transaction": 4.1, "Median Spend per Customer": 4.68 }, "geometry": { "type": "Point", "coordinates": [ -75.157784, 39.953621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "Name": "Sunglass Hut", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 258", "LATITUDE": 39.952036, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2019, "Total Visits": 541.0, "Total Visitors": 445.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 14.0, "Total Spend": 8213.0, "Total Transactions": 40.0, "Total Customers": 38.0, "Median Spend per Transaction": 189.54, "Median Spend per Customer": 186.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-tjv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "808 Chestnut St", "LATITUDE": 39.949514, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2019, "Total Visits": 245.0, "Total Visitors": 203.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 5.0, "Total Spend": 8599.0, "Total Transactions": 1754.0, "Total Customers": 731.0, "Median Spend per Transaction": 4.02, "Median Spend per Customer": 6.04 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-5vf", "Name": "Wellcare Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2220 Cottman Ave Fl 1", "LATITUDE": 40.048598, "LONGITUDE": -75.061857, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 123.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 5.0, "Total Spend": 33.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.96, "Median Spend per Customer": 9.96 }, "geometry": { "type": "Point", "coordinates": [ -75.061857, 40.048598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "Name": "Hunan Palace", "Category": "Restaurants and Other Eating Places", "Address": "6118 Lancaster Ave", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 2.0, "Total Spend": 999.0, "Total Transactions": 98.0, "Total Customers": 55.0, "Median Spend per Transaction": 8.35, "Median Spend per Customer": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-9j9", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1 S. 15th Street", "LATITUDE": 39.952975, "LONGITUDE": -75.164449, "DATE_RANGE_START": 2019, "Total Visits": 558.0, "Total Visitors": 456.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 17.0, "Total Spend": 137.0, "Total Transactions": 20.0, "Total Customers": 12.0, "Median Spend per Transaction": 4.59, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.164449, 39.952975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1801 Spruce St", "LATITUDE": 39.947944, "LONGITUDE": -75.171288, "DATE_RANGE_START": 2019, "Total Visits": 395.0, "Total Visitors": 303.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 6.0, "Total Spend": 8189.0, "Total Transactions": 1318.0, "Total Customers": 698.0, "Median Spend per Transaction": 4.81, "Median Spend per Customer": 7.02 }, "geometry": { "type": "Point", "coordinates": [ -75.171288, 39.947944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "630 Walnut Ln", "LATITUDE": 40.028872, "LONGITUDE": -75.206199, "DATE_RANGE_START": 2019, "Total Visits": 3849.0, "Total Visitors": 2860.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 4.0, "Total Spend": 1950.0, "Total Transactions": 120.0, "Total Customers": 88.0, "Median Spend per Transaction": 12.14, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206199, 40.028872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "1356 Franklin Mills Cir", "LATITUDE": 40.085814, "LONGITUDE": -74.963569, "DATE_RANGE_START": 2019, "Total Visits": 4271.0, "Total Visitors": 3338.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 25.0, "Total Spend": 25965.0, "Total Transactions": 473.0, "Total Customers": 405.0, "Median Spend per Transaction": 37.7, "Median Spend per Customer": 43.22 }, "geometry": { "type": "Point", "coordinates": [ -74.963569, 40.085814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-nnq", "Name": "M & M Food Market", "Category": "Grocery Stores", "Address": "458 Markle St", "LATITUDE": 40.02486, "LONGITUDE": -75.210261, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 17.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 60.0, "Total Spend": 622.0, "Total Transactions": 60.0, "Total Customers": 37.0, "Median Spend per Transaction": 8.45, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.210261, 40.02486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p7v-ffz", "Name": "E Z Gas", "Category": "Gasoline Stations", "Address": "1701 Cottman Ave", "LATITUDE": 40.054304, "LONGITUDE": -75.070914, "DATE_RANGE_START": 2019, "Total Visits": 471.0, "Total Visitors": 328.0, "POI_CBG": 421010335003.0, "Median Dwell Time": 5.0, "Total Spend": 6960.0, "Total Transactions": 403.0, "Total Customers": 250.0, "Median Spend per Transaction": 14.18, "Median Spend per Customer": 20.36 }, "geometry": { "type": "Point", "coordinates": [ -75.070914, 40.054304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "301 W Chelten Ave Ste F", "LATITUDE": 40.030538, "LONGITUDE": -75.181434, "DATE_RANGE_START": 2019, "Total Visits": 701.0, "Total Visitors": 565.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 9.0, "Total Spend": 2997.0, "Total Transactions": 203.0, "Total Customers": 155.0, "Median Spend per Transaction": 10.66, "Median Spend per Customer": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.181434, 40.030538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 Richmond St", "LATITUDE": 39.983382, "LONGITUDE": -75.10116, "DATE_RANGE_START": 2019, "Total Visits": 2240.0, "Total Visitors": 1561.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 5.0, "Total Spend": 677.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 38.23, "Median Spend per Customer": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -75.10116, 39.983382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "2335 Cottman Ave Spc 10", "LATITUDE": 40.048384, "LONGITUDE": -75.056563, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 147.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 11.0, "Total Spend": 3346.0, "Total Transactions": 35.0, "Total Customers": 32.0, "Median Spend per Transaction": 90.0, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056563, 40.048384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "Name": "ALDO", "Category": "Shoe Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952094, "LONGITUDE": -75.167619, "DATE_RANGE_START": 2019, "Total Visits": 2006.0, "Total Visitors": 1268.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 84.0, "Total Spend": 7676.0, "Total Transactions": 150.0, "Total Customers": 143.0, "Median Spend per Transaction": 37.99, "Median Spend per Customer": 39.49 }, "geometry": { "type": "Point", "coordinates": [ -75.167619, 39.952094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pfz-bhq", "Name": "Latitudes and Longitudes", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4325 Main St", "LATITUDE": 40.02537, "LONGITUDE": -75.222819, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 68.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 25.0, "Total Spend": 108.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222819, 40.02537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "199 Franklin Mills Blvd Ste A", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2019, "Total Visits": 865.0, "Total Visitors": 720.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 16.0, "Total Spend": 514.0, "Total Transactions": 23.0, "Total Customers": 22.0, "Median Spend per Transaction": 16.78, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "Name": "Fuel", "Category": "Restaurants and Other Eating Places", "Address": "1917 E Passyunk Ave", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 40.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 11.0, "Total Spend": 2686.0, "Total Transactions": 192.0, "Total Customers": 170.0, "Median Spend per Transaction": 11.21, "Median Spend per Customer": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-z9f", "Name": "Rosarios Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1501 Wharton St", "LATITUDE": 39.934489, "LONGITUDE": -75.169442, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 35.0, "POI_CBG": 421010022002.0, "Median Dwell Time": 5.0, "Total Spend": 1295.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 23.9, "Median Spend per Customer": 29.05 }, "geometry": { "type": "Point", "coordinates": [ -75.169442, 39.934489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-kpv", "Name": "Sophy Curson", "Category": "Clothing Stores", "Address": "19th St And Sansom St", "LATITUDE": 39.951064, "LONGITUDE": -75.172395, "DATE_RANGE_START": 2019, "Total Visits": 618.0, "Total Visitors": 510.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 4784.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 1436.0, "Median Spend per Customer": 1436.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172395, 39.951064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmb-8sq", "Name": "South Fellini", "Category": "Clothing Stores", "Address": "1100 Market St", "LATITUDE": 39.951564, "LONGITUDE": -75.158766, "DATE_RANGE_START": 2019, "Total Visits": 12633.0, "Total Visitors": 9132.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 21.0, "Total Spend": 3448.0, "Total Transactions": 85.0, "Total Customers": 80.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158766, 39.951564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1900 Chestnut St", "LATITUDE": 39.951643, "LONGITUDE": -75.17217, "DATE_RANGE_START": 2019, "Total Visits": 2725.0, "Total Visitors": 1946.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 74387.0, "Total Transactions": 2893.0, "Total Customers": 1851.0, "Median Spend per Transaction": 16.89, "Median Spend per Customer": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.17217, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgj-9xq", "Name": "Brothers Food Market", "Category": "Grocery Stores", "Address": "2101 W York St", "LATITUDE": 39.990985, "LONGITUDE": -75.167059, "DATE_RANGE_START": 2019, "Total Visits": 73.0, "Total Visitors": 68.0, "POI_CBG": 421010168006.0, "Median Dwell Time": 1.0, "Total Spend": 316.0, "Total Transactions": 35.0, "Total Customers": 25.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.167059, 39.990985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3359 Kensington Ave", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2019, "Total Visits": 346.0, "Total Visitors": 237.0, "POI_CBG": 421010188007.0, "Median Dwell Time": 4.0, "Total Spend": 179.0, "Total Transactions": 18.0, "Total Customers": 10.0, "Median Spend per Transaction": 11.01, "Median Spend per Customer": 2.63 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5040 City Ave", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 606.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 7.0, "Total Spend": 4155.0, "Total Transactions": 238.0, "Total Customers": 197.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1443 S 7th St", "LATITUDE": 39.930286, "LONGITUDE": -75.155935, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 48.0, "POI_CBG": 421010028013.0, "Median Dwell Time": 4.0, "Total Spend": 2540.0, "Total Transactions": 205.0, "Total Customers": 113.0, "Median Spend per Transaction": 9.35, "Median Spend per Customer": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.155935, 39.930286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-227@628-pmf-j35", "Name": "Cheys Kitchen", "Category": "Specialty Food Stores", "Address": "131 S 17th St Bsmt", "LATITUDE": 39.950469, "LONGITUDE": -75.169274, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 85.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 58.0, "Total Spend": 1630.0, "Total Transactions": 127.0, "Total Customers": 105.0, "Median Spend per Transaction": 10.44, "Median Spend per Customer": 11.33 }, "geometry": { "type": "Point", "coordinates": [ -75.169274, 39.950469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "Name": "Fat Tuesday", "Category": "Specialty Food Stores", "Address": "431 South St", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2019, "Total Visits": 182.0, "Total Visitors": 172.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 17361.0, "Total Transactions": 1019.0, "Total Customers": 826.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "Name": "Monde Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "100 S 21st St", "LATITUDE": 39.952049, "LONGITUDE": -75.175756, "DATE_RANGE_START": 2019, "Total Visits": 1473.0, "Total Visitors": 1049.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 18.0, "Total Spend": 23054.0, "Total Transactions": 1646.0, "Total Customers": 775.0, "Median Spend per Transaction": 11.24, "Median Spend per Customer": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.175756, 39.952049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3300 10 South Broad Street Philadelphia", "LATITUDE": 39.909224, "LONGITUDE": -75.174004, "DATE_RANGE_START": 2019, "Total Visits": 808.0, "Total Visitors": 626.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 7.0, "Total Spend": 4234.0, "Total Transactions": 198.0, "Total Customers": 143.0, "Median Spend per Transaction": 10.87, "Median Spend per Customer": 19.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174004, 39.909224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1301 Rhawn St", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2019, "Total Visits": 701.0, "Total Visitors": 500.0, "POI_CBG": 421010337022.0, "Median Dwell Time": 7.0, "Total Spend": 3456.0, "Total Transactions": 252.0, "Total Customers": 182.0, "Median Spend per Transaction": 7.98, "Median Spend per Customer": 11.84 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pp5-49z", "Name": "Minnow Lane", "Category": "Clothing Stores", "Address": "2029 Frankford Ave", "LATITUDE": 39.97911, "LONGITUDE": -75.129647, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 278.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 16.0, "Total Spend": 808.0, "Total Transactions": 23.0, "Total Customers": 22.0, "Median Spend per Transaction": 21.52, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129647, 39.97911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phy-xwk", "Name": "Banana's Bar & Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5500 Rising Sun Ave", "LATITUDE": 40.033188, "LONGITUDE": -75.116286, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 80.0, "POI_CBG": 421010273002.0, "Median Dwell Time": 52.0, "Total Spend": 1262.0, "Total Transactions": 68.0, "Total Customers": 37.0, "Median Spend per Transaction": 19.72, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116286, 40.033188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-nwk", "Name": "Louie Louie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3611 Walnut St", "LATITUDE": 39.953483, "LONGITUDE": -75.196032, "DATE_RANGE_START": 2019, "Total Visits": 373.0, "Total Visitors": 295.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 112.0, "Total Spend": 25959.0, "Total Transactions": 435.0, "Total Customers": 400.0, "Median Spend per Transaction": 41.92, "Median Spend per Customer": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.196032, 39.953483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "101 E Olney Ave", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2019, "Total Visits": 736.0, "Total Visitors": 596.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 8.0, "Total Spend": 5249.0, "Total Transactions": 513.0, "Total Customers": 400.0, "Median Spend per Transaction": 8.52, "Median Spend per Customer": 10.21 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "Name": "Nifty Fifty's", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 57.0, "POI_CBG": 421010372003.0, "Median Dwell Time": 1.0, "Total Spend": 4085.0, "Total Transactions": 127.0, "Total Customers": 115.0, "Median Spend per Transaction": 25.89, "Median Spend per Customer": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "Name": "Morgan's Pier", "Category": "Restaurants and Other Eating Places", "Address": "221 N Columbus Blvd", "LATITUDE": 39.955033, "LONGITUDE": -75.13891, "DATE_RANGE_START": 2019, "Total Visits": 1021.0, "Total Visitors": 928.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 34.0, "Total Spend": 144114.0, "Total Transactions": 5499.0, "Total Customers": 3566.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13891, 39.955033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3541 Aramingo Ave", "LATITUDE": 39.992778, "LONGITUDE": -75.097644, "DATE_RANGE_START": 2019, "Total Visits": 485.0, "Total Visitors": 395.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 15.0, "Total Spend": 5899.0, "Total Transactions": 401.0, "Total Customers": 330.0, "Median Spend per Transaction": 11.21, "Median Spend per Customer": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.097644, 39.992778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.933087, "LONGITUDE": -75.144618, "DATE_RANGE_START": 2019, "Total Visits": 2132.0, "Total Visitors": 1687.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 3.0, "Total Spend": 14873.0, "Total Transactions": 2487.0, "Total Customers": 1043.0, "Median Spend per Transaction": 5.15, "Median Spend per Customer": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.144618, 39.933087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-tqf", "Name": "Passeros Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "834 Chestnut St", "LATITUDE": 39.949637, "LONGITUDE": -75.155037, "DATE_RANGE_START": 2019, "Total Visits": 586.0, "Total Visitors": 461.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 28.0, "Total Spend": 1418.0, "Total Transactions": 270.0, "Total Customers": 182.0, "Median Spend per Transaction": 4.12, "Median Spend per Customer": 5.95 }, "geometry": { "type": "Point", "coordinates": [ -75.155037, 39.949637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dvy-mx5", "Name": "Tea Do", "Category": "Restaurants and Other Eating Places", "Address": "3816 Chestnut St", "LATITUDE": 39.95462, "LONGITUDE": -75.199919, "DATE_RANGE_START": 2019, "Total Visits": 3705.0, "Total Visitors": 2354.0, "POI_CBG": 421010088012.0, "Median Dwell Time": 57.0, "Total Spend": 1961.0, "Total Transactions": 222.0, "Total Customers": 205.0, "Median Spend per Transaction": 7.83, "Median Spend per Customer": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.199919, 39.95462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-6zf", "Name": "Danis Auto", "Category": "Automobile Dealers", "Address": "6250 Harbison Ave", "LATITUDE": 40.02883, "LONGITUDE": -75.063054, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 83.0, "POI_CBG": 421010317003.0, "Median Dwell Time": 87.0, "Total Spend": 7329.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 1000.0, "Median Spend per Customer": 1200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063054, 40.02883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "Name": "Philly Auto", "Category": "Automobile Dealers", "Address": "4530 Torresdale Ave", "LATITUDE": 40.010118, "LONGITUDE": -75.081162, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 248.0, "POI_CBG": 421010294003.0, "Median Dwell Time": 33.0, "Total Spend": 12544.0, "Total Transactions": 93.0, "Total Customers": 82.0, "Median Spend per Transaction": 32.83, "Median Spend per Customer": 32.88 }, "geometry": { "type": "Point", "coordinates": [ -75.081162, 40.010118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9k-jvz", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9880 Roosevelt Blvd", "LATITUDE": 40.093114, "LONGITUDE": -75.019569, "DATE_RANGE_START": 2019, "Total Visits": 530.0, "Total Visitors": 381.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 13.0, "Total Spend": 2085.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 26.72, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.019569, 40.093114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfy-zj9", "Name": "Nadeau Furniture with a Soul", "Category": "Furniture Stores", "Address": "4131 Main St", "LATITUDE": 40.022884, "LONGITUDE": -75.218834, "DATE_RANGE_START": 2019, "Total Visits": 1418.0, "Total Visitors": 1038.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 55.0, "Total Spend": 5218.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 111.96, "Median Spend per Customer": 111.96 }, "geometry": { "type": "Point", "coordinates": [ -75.218834, 40.022884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-j7q", "Name": "Sues Produce Market", "Category": "Grocery Stores", "Address": "114 S 18th St", "LATITUDE": 39.951234, "LONGITUDE": -75.170685, "DATE_RANGE_START": 2019, "Total Visits": 565.0, "Total Visitors": 495.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 38.0, "Total Spend": 2173.0, "Total Transactions": 130.0, "Total Customers": 90.0, "Median Spend per Transaction": 13.07, "Median Spend per Customer": 14.16 }, "geometry": { "type": "Point", "coordinates": [ -75.170685, 39.951234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "Name": "Rieker's Prime Meats", "Category": "Specialty Food Stores", "Address": "7979 Oxford Ave", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 177.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 21.0, "Total Spend": 4100.0, "Total Transactions": 113.0, "Total Customers": 87.0, "Median Spend per Transaction": 25.11, "Median Spend per Customer": 36.78 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "245 N Broad St", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2019, "Total Visits": 418.0, "Total Visitors": 358.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 22.0, "Total Spend": 664.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 14.53, "Median Spend per Customer": 12.27 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-5fz", "Name": "Express Weed Mart", "Category": "Health and Personal Care Stores", "Address": "1206 Sansom St", "LATITUDE": 39.949594, "LONGITUDE": -75.16074, "DATE_RANGE_START": 2019, "Total Visits": 6683.0, "Total Visitors": 4511.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 47.0, "Total Spend": 2307.0, "Total Transactions": 78.0, "Total Customers": 65.0, "Median Spend per Transaction": 21.97, "Median Spend per Customer": 21.32 }, "geometry": { "type": "Point", "coordinates": [ -75.16074, 39.949594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pmf-j35", "Name": "Sephora", "Category": "Health and Personal Care Stores", "Address": "1714 Chestnut St", "LATITUDE": 39.95125, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2019, "Total Visits": 1734.0, "Total Visitors": 1221.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 67.0, "Total Spend": 1705.0, "Total Transactions": 15.0, "Total Customers": 10.0, "Median Spend per Transaction": 122.04, "Median Spend per Customer": 28.89 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.95125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p83-y5f", "Name": "Pennypack Flowers", "Category": "Florists", "Address": "9315 Krewstown Rd", "LATITUDE": 40.085429, "LONGITUDE": -75.045472, "DATE_RANGE_START": 2019, "Total Visits": 663.0, "Total Visitors": 515.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 11.0, "Total Spend": 295.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 88.5, "Median Spend per Customer": 88.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045472, 40.085429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "2422 W Passyunk Ave", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2019, "Total Visits": 358.0, "Total Visitors": 305.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 7.0, "Total Spend": 2385.0, "Total Transactions": 215.0, "Total Customers": 157.0, "Median Spend per Transaction": 10.66, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmd-xqz", "Name": "Cafe Ynez", "Category": "Restaurants and Other Eating Places", "Address": "2025 Washington Ave", "LATITUDE": 39.939765, "LONGITUDE": -75.177339, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 103.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 153.0, "Total Spend": 336.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177339, 39.939765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg4-47q", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "100 W Queen Ln", "LATITUDE": 40.030031, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2019, "Total Visits": 1404.0, "Total Visitors": 845.0, "POI_CBG": 421010242001.0, "Median Dwell Time": 5.0, "Total Spend": 978.0, "Total Transactions": 40.0, "Total Customers": 25.0, "Median Spend per Transaction": 16.96, "Median Spend per Customer": 24.05 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 40.030031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj4-zpv", "Name": "Temple University", "Category": "Book Stores and News Dealers", "Address": "W Ontario St & N Broad St", "LATITUDE": 40.004657, "LONGITUDE": -75.152205, "DATE_RANGE_START": 2019, "Total Visits": 15315.0, "Total Visitors": 8833.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 39.0, "Total Spend": 3815.0, "Total Transactions": 137.0, "Total Customers": 137.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 40.004657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8445 Frankford Ave Ste C", "LATITUDE": 40.043781, "LONGITUDE": -75.017638, "DATE_RANGE_START": 2019, "Total Visits": 273.0, "Total Visitors": 203.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 7.0, "Total Spend": 266.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 14.45, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.017638, 40.043781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100724, "LONGITUDE": -75.010588, "DATE_RANGE_START": 2019, "Total Visits": 880.0, "Total Visitors": 710.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 13.0, "Total Spend": 3812.0, "Total Transactions": 117.0, "Total Customers": 85.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.010588, 40.100724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "Name": "1 Stop Smoke Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "10103 Verree Rd Unit C", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 97.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 4.0, "Total Spend": 1524.0, "Total Transactions": 55.0, "Total Customers": 40.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-v9f", "Name": "Tang Pharmacy V", "Category": "Health and Personal Care Stores", "Address": "7452 Ogontz Ave", "LATITUDE": 40.068833, "LONGITUDE": -75.157234, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010263024.0, "Median Dwell Time": null, "Total Spend": 235.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157234, 40.068833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-sbk", "Name": "The Igloo", "Category": "Restaurants and Other Eating Places", "Address": "2223 Grays Ferry Ave", "LATITUDE": 39.945135, "LONGITUDE": -75.179463, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 18.0, "Total Spend": 1815.0, "Total Transactions": 197.0, "Total Customers": 182.0, "Median Spend per Transaction": 7.55, "Median Spend per Customer": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.179463, 39.945135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2503 Welsh Rd # 05", "LATITUDE": 40.070297, "LONGITUDE": -75.030572, "DATE_RANGE_START": 2019, "Total Visits": 506.0, "Total Visitors": 415.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 6.0, "Total Spend": 4030.0, "Total Transactions": 258.0, "Total Customers": 120.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 20.23 }, "geometry": { "type": "Point", "coordinates": [ -75.030572, 40.070297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "Name": "Gaffney Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "5401 Germantown Ave", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2019, "Total Visits": 253.0, "Total Visitors": 213.0, "POI_CBG": 421010246001.0, "Median Dwell Time": 15.0, "Total Spend": 4732.0, "Total Transactions": 165.0, "Total Customers": 122.0, "Median Spend per Transaction": 19.9, "Median Spend per Customer": 22.91 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2800 Fox St", "LATITUDE": 40.008821, "LONGITUDE": -75.175673, "DATE_RANGE_START": 2019, "Total Visits": 1171.0, "Total Visitors": 959.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 10.0, "Total Spend": 1893.0, "Total Transactions": 103.0, "Total Customers": 87.0, "Median Spend per Transaction": 15.62, "Median Spend per Customer": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.175673, 40.008821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8n-6kz", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6301 Frankford Ave", "LATITUDE": 40.027244, "LONGITUDE": -75.059172, "DATE_RANGE_START": 2019, "Total Visits": 245.0, "Total Visitors": 185.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 9.0, "Total Spend": 60.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.08, "Median Spend per Customer": 18.08 }, "geometry": { "type": "Point", "coordinates": [ -75.059172, 40.027244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-s89", "Name": "Best Buy Furniture", "Category": "Furniture Stores", "Address": "2558 Grant Ave", "LATITUDE": 40.078011, "LONGITUDE": -75.024952, "DATE_RANGE_START": 2019, "Total Visits": 6281.0, "Total Visitors": 4394.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 35.0, "Total Spend": 2405.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 722.0, "Median Spend per Customer": 722.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024952, 40.078011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "Name": "Beer Baron", "Category": "Beer, Wine, and Liquor Stores", "Address": "3290 Red Lion Rd", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2019, "Total Visits": 1604.0, "Total Visitors": 973.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 7.0, "Total Spend": 10256.0, "Total Transactions": 335.0, "Total Customers": 218.0, "Median Spend per Transaction": 28.49, "Median Spend per Customer": 33.77 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-mp9", "Name": "Concourse Dance Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1635 Market St", "LATITUDE": 39.95318, "LONGITUDE": -75.167893, "DATE_RANGE_START": 2019, "Total Visits": 2957.0, "Total Visitors": 1614.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 204.0, "Total Spend": 5296.0, "Total Transactions": 130.0, "Total Customers": 98.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 39.95318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dw2-c3q", "Name": "Tony Boys Breakfast", "Category": "Restaurants and Other Eating Places", "Address": "5951 Market St", "LATITUDE": 39.962196, "LONGITUDE": -75.240563, "DATE_RANGE_START": 2019, "Total Visits": 1694.0, "Total Visitors": 1159.0, "POI_CBG": 421010095003.0, "Median Dwell Time": 6.0, "Total Spend": 121.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 36.45, "Median Spend per Customer": 36.45 }, "geometry": { "type": "Point", "coordinates": [ -75.240563, 39.962196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@63s-dw4-rzf", "Name": "Local Tavern", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave Gate F11", "LATITUDE": 39.895174, "LONGITUDE": -75.227977, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 47316.0, "Total Transactions": 1767.0, "Total Customers": 1492.0, "Median Spend per Transaction": 23.31, "Median Spend per Customer": 26.32 }, "geometry": { "type": "Point", "coordinates": [ -75.227977, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "Name": "Yummy Pho", "Category": "Restaurants and Other Eating Places", "Address": "2012 N Broad St", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 88.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 9.0, "Total Spend": 3679.0, "Total Transactions": 275.0, "Total Customers": 192.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Butler St", "LATITUDE": 39.9973, "LONGITUDE": -75.092737, "DATE_RANGE_START": 2019, "Total Visits": 2357.0, "Total Visitors": 1817.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 10.0, "Total Spend": 31471.0, "Total Transactions": 2350.0, "Total Customers": 1621.0, "Median Spend per Transaction": 10.78, "Median Spend per Customer": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.092737, 39.9973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-54v", "Name": "United Fried Chicken", "Category": "Restaurants and Other Eating Places", "Address": "1339 W Olney Ave", "LATITUDE": 40.039073, "LONGITUDE": -75.143922, "DATE_RANGE_START": 2019, "Total Visits": 182.0, "Total Visitors": 163.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 5.0, "Total Spend": 925.0, "Total Transactions": 90.0, "Total Customers": 53.0, "Median Spend per Transaction": 9.55, "Median Spend per Customer": 10.87 }, "geometry": { "type": "Point", "coordinates": [ -75.143922, 40.039073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "Name": "The Tasty", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 12th St", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 63.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 46.0, "Total Spend": 12360.0, "Total Transactions": 646.0, "Total Customers": 410.0, "Median Spend per Transaction": 15.81, "Median Spend per Customer": 23.12 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2019, "Total Visits": 585.0, "Total Visitors": 436.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 9.0, "Total Spend": 5210.0, "Total Transactions": 635.0, "Total Customers": 320.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 6.84 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-p5f", "Name": "Beaty American", "Category": "Furniture Stores", "Address": "1800 N American St Unit G", "LATITUDE": 39.978949, "LONGITUDE": -75.139763, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 62.0, "POI_CBG": 421010156001.0, "Median Dwell Time": 25.0, "Total Spend": 696.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 66.96, "Median Spend per Customer": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.139763, 39.978949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "3745 Aramingo Ave", "LATITUDE": 39.99445, "LONGITUDE": -75.09179, "DATE_RANGE_START": 2019, "Total Visits": 5850.0, "Total Visitors": 3448.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 20.0, "Total Spend": 5414.0, "Total Transactions": 110.0, "Total Customers": 63.0, "Median Spend per Transaction": 37.17, "Median Spend per Customer": 56.4 }, "geometry": { "type": "Point", "coordinates": [ -75.09179, 39.99445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2310 W Oregon Ave", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2019, "Total Visits": 1681.0, "Total Visitors": 1313.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 9.0, "Total Spend": 4649.0, "Total Transactions": 263.0, "Total Customers": 167.0, "Median Spend per Transaction": 8.98, "Median Spend per Customer": 15.89 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dtn-hqz", "Name": "Bruegger's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.89519, "LONGITUDE": -75.227949, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 12966.0, "Total Transactions": 1586.0, "Total Customers": 1024.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227949, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-c89", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "100 W Erie Ave", "LATITUDE": 40.007079, "LONGITUDE": -75.128063, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 501.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 11.0, "Total Spend": 63.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.83, "Median Spend per Customer": 18.83 }, "geometry": { "type": "Point", "coordinates": [ -75.128063, 40.007079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnz-xyv", "Name": "Hong Kong Deli", "Category": "Restaurants and Other Eating Places", "Address": "3294 Gaul St", "LATITUDE": 39.988418, "LONGITUDE": -75.102851, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 47.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 10.0, "Total Spend": 382.0, "Total Transactions": 30.0, "Total Customers": 20.0, "Median Spend per Transaction": 9.82, "Median Spend per Customer": 8.59 }, "geometry": { "type": "Point", "coordinates": [ -75.102851, 39.988418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-6tv", "Name": "Smoothie King", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 207", "LATITUDE": 39.951888, "LONGITUDE": -75.167584, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 102.0, "Total Spend": 6887.0, "Total Transactions": 894.0, "Total Customers": 618.0, "Median Spend per Transaction": 6.58, "Median Spend per Customer": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.167584, 39.951888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1325 E Washington Ln", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2019, "Total Visits": 380.0, "Total Visitors": 278.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 4.0, "Total Spend": 4737.0, "Total Transactions": 765.0, "Total Customers": 415.0, "Median Spend per Transaction": 5.3, "Median Spend per Customer": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-grk", "Name": "Federal Donuts", "Category": "Restaurants and Other Eating Places", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.963015, "LONGITUDE": -75.174167, "DATE_RANGE_START": 2019, "Total Visits": 6276.0, "Total Visitors": 3630.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 22.0, "Total Spend": 9444.0, "Total Transactions": 810.0, "Total Customers": 710.0, "Median Spend per Transaction": 9.13, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.174167, 39.963015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "Name": "Adobe Cafe", "Category": "Restaurants and Other Eating Places", "Address": "736 S 8th St", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 3.0, "Total Spend": 1614.0, "Total Transactions": 27.0, "Total Customers": 23.0, "Median Spend per Transaction": 43.71, "Median Spend per Customer": 52.66 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "Name": "Tomo Sushi & Ramen", "Category": "Restaurants and Other Eating Places", "Address": "228 Arch St", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 11204.0, "Total Transactions": 247.0, "Total Customers": 217.0, "Median Spend per Transaction": 34.68, "Median Spend per Customer": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pj3-wrk", "Name": "Silver Chopsticks", "Category": "Restaurants and Other Eating Places", "Address": "4711 N Broad St", "LATITUDE": 40.024907, "LONGITUDE": -75.14743, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010283003.0, "Median Dwell Time": 1.0, "Total Spend": 176.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.59, "Median Spend per Customer": 13.59 }, "geometry": { "type": "Point", "coordinates": [ -75.14743, 40.024907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24p-222@628-pm7-r6k", "Name": "Sit & Spin Records", "Category": "Electronics and Appliance Stores", "Address": "2243 S Lambert St", "LATITUDE": 39.923599, "LONGITUDE": -75.180744, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010037021.0, "Median Dwell Time": 12.0, "Total Spend": 90.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180744, 39.923599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "Name": "King of Wings", "Category": "Restaurants and Other Eating Places", "Address": "2233 S Woodstock St", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010037021.0, "Median Dwell Time": 1.0, "Total Spend": 190.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 24.73, "Median Spend per Customer": 24.73 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "Name": "New Pizza Villa", "Category": "Restaurants and Other Eating Places", "Address": "7159 Torresdale Ave", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 33.0, "Total Spend": 1073.0, "Total Transactions": 52.0, "Total Customers": 33.0, "Median Spend per Transaction": 18.04, "Median Spend per Customer": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4qf", "Name": "Sun Rise Convenience Store", "Category": "Grocery Stores", "Address": "4655 Rising Sun Ave", "LATITUDE": 40.021353, "LONGITUDE": -75.125766, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010288001.0, "Median Dwell Time": 18.0, "Total Spend": 517.0, "Total Transactions": 38.0, "Total Customers": 37.0, "Median Spend per Transaction": 13.22, "Median Spend per Customer": 13.36 }, "geometry": { "type": "Point", "coordinates": [ -75.125766, 40.021353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj7-kmk", "Name": "No 1 Waterice", "Category": "Restaurants and Other Eating Places", "Address": "4657 Castor Ave", "LATITUDE": 40.021183, "LONGITUDE": -75.094108, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010301004.0, "Median Dwell Time": 1.0, "Total Spend": 38.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094108, 40.021183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@63s-dvy-wtv", "Name": "Don Barriga Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "4443 Spruce St Apt 1", "LATITUDE": 39.953099, "LONGITUDE": -75.211951, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 32.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 116.0, "Total Spend": 7571.0, "Total Transactions": 310.0, "Total Customers": 255.0, "Median Spend per Transaction": 20.04, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.211951, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm6-gx5", "Name": "King Food", "Category": "Restaurants and Other Eating Places", "Address": "2554 S American St", "LATITUDE": 39.915882, "LONGITUDE": -75.152424, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 13.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 10.0, "Total Spend": 80.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.25, "Median Spend per Customer": 23.88 }, "geometry": { "type": "Point", "coordinates": [ -75.152424, 39.915882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfv-94v", "Name": "The Nesting House", "Category": "Clothing Stores", "Address": "542 Carpenter Ln", "LATITUDE": 40.04661, "LONGITUDE": -75.195379, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 28.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 3.0, "Total Spend": 7594.0, "Total Transactions": 153.0, "Total Customers": 125.0, "Median Spend per Transaction": 21.29, "Median Spend per Customer": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.195379, 40.04661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Susquehanna Ave", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 107.0, "Total Spend": 36.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "Name": "Brick House Bar & Grille", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3334 Grant Ave", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2019, "Total Visits": 488.0, "Total Visitors": 356.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 48.0, "Total Spend": 3466.0, "Total Transactions": 115.0, "Total Customers": 92.0, "Median Spend per Transaction": 24.91, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmc-vzz", "Name": "Chopstick House", "Category": "Restaurants and Other Eating Places", "Address": "1626 S Columbus Blvd", "LATITUDE": 39.926547, "LONGITUDE": -75.14612, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 117.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 1036.0, "Total Transactions": 50.0, "Total Customers": 38.0, "Median Spend per Transaction": 22.18, "Median Spend per Customer": 23.05 }, "geometry": { "type": "Point", "coordinates": [ -75.14612, 39.926547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-3kf", "Name": "Bistro Romano", "Category": "Restaurants and Other Eating Places", "Address": "120 Lombard St", "LATITUDE": 39.941964, "LONGITUDE": -75.144702, "DATE_RANGE_START": 2019, "Total Visits": 145.0, "Total Visitors": 142.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 73.0, "Total Spend": 503.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 150.98, "Median Spend per Customer": 150.98 }, "geometry": { "type": "Point", "coordinates": [ -75.144702, 39.941964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2300 Fairmount Ave # 16", "LATITUDE": 39.96715, "LONGITUDE": -75.175689, "DATE_RANGE_START": 2019, "Total Visits": 974.0, "Total Visitors": 808.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 5.0, "Total Spend": 1005.0, "Total Transactions": 78.0, "Total Customers": 48.0, "Median Spend per Transaction": 4.77, "Median Spend per Customer": 10.31 }, "geometry": { "type": "Point", "coordinates": [ -75.175689, 39.96715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "800 E Washington Ln", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2019, "Total Visits": 2594.0, "Total Visitors": 1601.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 5.0, "Total Spend": 16220.0, "Total Transactions": 833.0, "Total Customers": 490.0, "Median Spend per Transaction": 17.4, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "Name": "Destination XL", "Category": "Clothing Stores", "Address": "2329 Cottman Ave Spc 51", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2019, "Total Visits": 187.0, "Total Visitors": 170.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 16.0, "Total Spend": 4571.0, "Total Transactions": 52.0, "Total Customers": 47.0, "Median Spend per Transaction": 59.5, "Median Spend per Customer": 62.61 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kcq", "Name": "Silver Legends", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "2008 Walnut St", "LATITUDE": 39.950384, "LONGITUDE": -75.174268, "DATE_RANGE_START": 2019, "Total Visits": 846.0, "Total Visitors": 466.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 187.0, "Total Spend": 464.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 45.36, "Median Spend per Customer": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.174268, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tn5", "Name": "Unclaimed Diamonds", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "113 S 8th St", "LATITUDE": 39.949045, "LONGITUDE": -75.153751, "DATE_RANGE_START": 2019, "Total Visits": 118.0, "Total Visitors": 113.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 1586.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153751, 39.949045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5700 Oxford Ave", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2019, "Total Visits": 598.0, "Total Visitors": 478.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 6.0, "Total Spend": 711.0, "Total Transactions": 38.0, "Total Customers": 22.0, "Median Spend per Transaction": 13.26, "Median Spend per Customer": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912527, "LONGITUDE": -75.154627, "DATE_RANGE_START": 2019, "Total Visits": 441.0, "Total Visitors": 368.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 12.0, "Total Spend": 1790.0, "Total Transactions": 48.0, "Total Customers": 45.0, "Median Spend per Transaction": 34.9, "Median Spend per Customer": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -75.154627, 39.912527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "Name": "Royal Boucherie", "Category": "Restaurants and Other Eating Places", "Address": "52 S 2nd St", "LATITUDE": 39.948704, "LONGITUDE": -75.144251, "DATE_RANGE_START": 2019, "Total Visits": 2074.0, "Total Visitors": 1661.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 44.0, "Total Spend": 24563.0, "Total Transactions": 243.0, "Total Customers": 223.0, "Median Spend per Transaction": 76.91, "Median Spend per Customer": 79.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144251, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-d9z", "Name": "Garden Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2025 Benjamin Franklin Pkwy", "LATITUDE": 39.960516, "LONGITUDE": -75.17253, "DATE_RANGE_START": 2019, "Total Visits": 918.0, "Total Visitors": 806.0, "POI_CBG": 421010125003.0, "Median Dwell Time": 65.0, "Total Spend": 80.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 14.85, "Median Spend per Customer": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.17253, 39.960516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-kfz", "Name": "Machi Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "209 S 20th St", "LATITUDE": 39.950008, "LONGITUDE": -75.173818, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 85.0, "POI_CBG": 421010008034.0, "Median Dwell Time": 9.0, "Total Spend": 3205.0, "Total Transactions": 117.0, "Total Customers": 102.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.173818, 39.950008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "Name": "Sumo Sushi", "Category": "Restaurants and Other Eating Places", "Address": "401 S 13th St", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010011014.0, "Median Dwell Time": 39.0, "Total Spend": 2495.0, "Total Transactions": 93.0, "Total Customers": 90.0, "Median Spend per Transaction": 18.76, "Median Spend per Customer": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "Name": "Spice Finch", "Category": "Restaurants and Other Eating Places", "Address": "220 S 17th St", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2019, "Total Visits": 3761.0, "Total Visitors": 2350.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 242.0, "Total Spend": 18589.0, "Total Transactions": 270.0, "Total Customers": 237.0, "Median Spend per Transaction": 54.18, "Median Spend per Customer": 63.05 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "1556 E Wadsworth Ave", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 92.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 3.0, "Total Spend": 622.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 18.33, "Median Spend per Customer": 18.33 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2019, "Total Visits": 381.0, "Total Visitors": 288.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 35.0, "Total Spend": 7322.0, "Total Transactions": 393.0, "Total Customers": 323.0, "Median Spend per Transaction": 15.24, "Median Spend per Customer": 17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfz-pjv", "Name": "Nathan's Famous", "Category": "Restaurants and Other Eating Places", "Address": "5420 Ridge Ave", "LATITUDE": 40.022386, "LONGITUDE": -75.209026, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 98.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 106.0, "Total Spend": 945.0, "Total Transactions": 97.0, "Total Customers": 95.0, "Median Spend per Transaction": 9.39, "Median Spend per Customer": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.209026, 40.022386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "Name": "Royal Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4200 Baltimore Ave", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 95.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 2.0, "Total Spend": 1199.0, "Total Transactions": 70.0, "Total Customers": 48.0, "Median Spend per Transaction": 15.41, "Median Spend per Customer": 15.82 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "Name": "Falafel Time", "Category": "Restaurants and Other Eating Places", "Address": "2214 South St", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 63.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 41.0, "Total Spend": 1957.0, "Total Transactions": 130.0, "Total Customers": 98.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 12.87 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5901 Rising Sun Ave", "LATITUDE": 40.044029, "LONGITUDE": -75.102175, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 128.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 2.0, "Total Spend": 3117.0, "Total Transactions": 583.0, "Total Customers": 275.0, "Median Spend per Transaction": 4.45, "Median Spend per Customer": 6.86 }, "geometry": { "type": "Point", "coordinates": [ -75.102175, 40.044029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pm4-nh5", "Name": "The Chilly Banana", "Category": "Restaurants and Other Eating Places", "Address": "932 E Passyunk Ave", "LATITUDE": 39.937277, "LONGITUDE": -75.154779, "DATE_RANGE_START": 2019, "Total Visits": 168.0, "Total Visitors": 127.0, "POI_CBG": 421010024001.0, "Median Dwell Time": 176.0, "Total Spend": 1312.0, "Total Transactions": 150.0, "Total Customers": 128.0, "Median Spend per Transaction": 7.7, "Median Spend per Customer": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.154779, 39.937277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7241 Torresdale Ave", "LATITUDE": 40.029702, "LONGITUDE": -75.035384, "DATE_RANGE_START": 2019, "Total Visits": 2009.0, "Total Visitors": 1314.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 4.0, "Total Spend": 721.0, "Total Transactions": 37.0, "Total Customers": 28.0, "Median Spend per Transaction": 16.67, "Median Spend per Customer": 20.03 }, "geometry": { "type": "Point", "coordinates": [ -75.035384, 40.029702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "Name": "Banana Republic Outlet", "Category": "Clothing Stores", "Address": "1911 Chestnut St", "LATITUDE": 39.952113, "LONGITUDE": -75.172438, "DATE_RANGE_START": 2019, "Total Visits": 1356.0, "Total Visitors": 984.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 20.0, "Total Spend": 13144.0, "Total Transactions": 233.0, "Total Customers": 208.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 43.99 }, "geometry": { "type": "Point", "coordinates": [ -75.172438, 39.952113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "Name": "Wyndham", "Category": "Traveler Accommodation", "Address": "400 Arch St", "LATITUDE": 39.952204, "LONGITUDE": -75.146959, "DATE_RANGE_START": 2019, "Total Visits": 5748.0, "Total Visitors": 3648.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 356.0, "Total Spend": 59929.0, "Total Transactions": 386.0, "Total Customers": 283.0, "Median Spend per Transaction": 42.87, "Median Spend per Customer": 67.78 }, "geometry": { "type": "Point", "coordinates": [ -75.146959, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "Name": "Drury Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1311 Sansom St", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2019, "Total Visits": 586.0, "Total Visitors": 478.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 63.0, "Total Spend": 91.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-vpv", "Name": "Urban Saloon", "Category": "Restaurants and Other Eating Places", "Address": "2120 Fairmount Ave", "LATITUDE": 39.967182, "LONGITUDE": -75.172904, "DATE_RANGE_START": 2019, "Total Visits": 1163.0, "Total Visitors": 924.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 33.0, "Total Spend": 40918.0, "Total Transactions": 1046.0, "Total Customers": 785.0, "Median Spend per Transaction": 29.02, "Median Spend per Customer": 36.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172904, 39.967182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-49z", "Name": "Academic Bistro", "Category": "Restaurants and Other Eating Places", "Address": "101 N 33rd St", "LATITUDE": 39.957909, "LONGITUDE": -75.188916, "DATE_RANGE_START": 2019, "Total Visits": 1832.0, "Total Visitors": 770.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 151.0, "Total Spend": 232.0, "Total Transactions": 23.0, "Total Customers": 13.0, "Median Spend per Transaction": 4.09, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.188916, 39.957909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2327 Cottman Ave", "LATITUDE": 40.048258, "LONGITUDE": -75.056175, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 137.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 16.0, "Total Spend": 12877.0, "Total Transactions": 243.0, "Total Customers": 217.0, "Median Spend per Transaction": 36.2, "Median Spend per Customer": 41.46 }, "geometry": { "type": "Point", "coordinates": [ -75.056175, 40.048258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pgj-pgk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2649 Germantown Ave", "LATITUDE": 39.992811, "LONGITUDE": -75.147675, "DATE_RANGE_START": 2019, "Total Visits": 540.0, "Total Visitors": 431.0, "POI_CBG": 421010164003.0, "Median Dwell Time": 6.0, "Total Spend": 1133.0, "Total Transactions": 130.0, "Total Customers": 83.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 8.57 }, "geometry": { "type": "Point", "coordinates": [ -75.147675, 39.992811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-pgk", "Name": "Best Sunny Diner", "Category": "Restaurants and Other Eating Places", "Address": "2650 Germantown Ave", "LATITUDE": 39.992784, "LONGITUDE": -75.148123, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 98.0, "POI_CBG": 421010165003.0, "Median Dwell Time": 12.0, "Total Spend": 141.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 11.6, "Median Spend per Customer": 11.31 }, "geometry": { "type": "Point", "coordinates": [ -75.148123, 39.992784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-4y9", "Name": "Ez Dollar Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1013 Snyder Ave", "LATITUDE": 39.923795, "LONGITUDE": -75.163033, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 45.0, "POI_CBG": 421010040011.0, "Median Dwell Time": 11.0, "Total Spend": 755.0, "Total Transactions": 30.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 226.61 }, "geometry": { "type": "Point", "coordinates": [ -75.163033, 39.923795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1801 John F Kennedy Blvd", "LATITUDE": 39.954574, "LONGITUDE": -75.169932, "DATE_RANGE_START": 2019, "Total Visits": 1802.0, "Total Visitors": 1079.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 100.0, "Total Spend": 23582.0, "Total Transactions": 631.0, "Total Customers": 540.0, "Median Spend per Transaction": 25.74, "Median Spend per Customer": 28.72 }, "geometry": { "type": "Point", "coordinates": [ -75.169932, 39.954574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-xnq", "Name": "Mr Chef Wynnefield", "Category": "Restaurants and Other Eating Places", "Address": "5026 Wynnefield Ave", "LATITUDE": 39.991211, "LONGITUDE": -75.226105, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 160.0, "POI_CBG": 421010119004.0, "Median Dwell Time": 2.0, "Total Spend": 302.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226105, 39.991211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "7422 Bustleton Ave", "LATITUDE": 40.052515, "LONGITUDE": -75.058505, "DATE_RANGE_START": 2019, "Total Visits": 1169.0, "Total Visitors": 993.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 11.0, "Total Spend": 3320.0, "Total Transactions": 105.0, "Total Customers": 88.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 21.17 }, "geometry": { "type": "Point", "coordinates": [ -75.058505, 40.052515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1730 Washington Ave", "LATITUDE": 39.938146, "LONGITUDE": -75.172721, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 160.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 11.0, "Total Spend": 10146.0, "Total Transactions": 242.0, "Total Customers": 222.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.172721, 39.938146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pm4-pjv", "Name": "Di Bruno Bros", "Category": "Specialty Food Stores", "Address": "930 S 9th St", "LATITUDE": 39.938055, "LONGITUDE": -75.158145, "DATE_RANGE_START": 2019, "Total Visits": 693.0, "Total Visitors": 561.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 34.0, "Total Spend": 19547.0, "Total Transactions": 1233.0, "Total Customers": 1016.0, "Median Spend per Transaction": 10.93, "Median Spend per Customer": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158145, 39.938055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6401 Oxford Ave Ste 11", "LATITUDE": 40.045558, "LONGITUDE": -75.087582, "DATE_RANGE_START": 2019, "Total Visits": 1308.0, "Total Visitors": 948.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 9.0, "Total Spend": 3551.0, "Total Transactions": 172.0, "Total Customers": 125.0, "Median Spend per Transaction": 12.69, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087582, 40.045558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phn-qmk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "8235 Stenton Ave", "LATITUDE": 40.068844, "LONGITUDE": -75.18088, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 97.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 4.0, "Total Spend": 2111.0, "Total Transactions": 88.0, "Total Customers": 67.0, "Median Spend per Transaction": 18.68, "Median Spend per Customer": 21.42 }, "geometry": { "type": "Point", "coordinates": [ -75.18088, 40.068844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "12311 Academy Rd Ste 250", "LATITUDE": 40.095101, "LONGITUDE": -74.975911, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 178.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 5681.0, "Total Transactions": 288.0, "Total Customers": 165.0, "Median Spend per Transaction": 13.8, "Median Spend per Customer": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -74.975911, 40.095101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "919A Levick St", "LATITUDE": 40.045256, "LONGITUDE": -75.086611, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 316.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 6.0, "Total Spend": 799.0, "Total Transactions": 52.0, "Total Customers": 32.0, "Median Spend per Transaction": 13.12, "Median Spend per Customer": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.086611, 40.045256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2201 W Oregon Ave", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2019, "Total Visits": 508.0, "Total Visitors": 401.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 9.0, "Total Spend": 620.0, "Total Transactions": 35.0, "Total Customers": 17.0, "Median Spend per Transaction": 18.5, "Median Spend per Customer": 12.49 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3141 Frankford Ave Spc 41", "LATITUDE": 39.992401, "LONGITUDE": -75.110955, "DATE_RANGE_START": 2019, "Total Visits": 416.0, "Total Visitors": 325.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 5.0, "Total Spend": 207.0, "Total Transactions": 23.0, "Total Customers": 13.0, "Median Spend per Transaction": 5.74, "Median Spend per Customer": 12.76 }, "geometry": { "type": "Point", "coordinates": [ -75.110955, 39.992401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "Name": "Accent On Animals", "Category": "Other Miscellaneous Store Retailers", "Address": "804 South St", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2019, "Total Visits": 1556.0, "Total Visitors": 1163.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 52.0, "Total Spend": 1749.0, "Total Transactions": 78.0, "Total Customers": 67.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "9717 Roosevelt Blvd", "LATITUDE": 40.08158, "LONGITUDE": -75.02629, "DATE_RANGE_START": 2019, "Total Visits": 745.0, "Total Visitors": 618.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 9.0, "Total Spend": 14372.0, "Total Transactions": 395.0, "Total Customers": 301.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.02629, 40.08158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "Name": "NO 1 China", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2019, "Total Visits": 781.0, "Total Visitors": 636.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 13.0, "Total Spend": 1134.0, "Total Transactions": 53.0, "Total Customers": 52.0, "Median Spend per Transaction": 16.6, "Median Spend per Customer": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "Name": "El Merkury", "Category": "Restaurants and Other Eating Places", "Address": "2104 Chestnut St", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 127.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 68.0, "Total Spend": 895.0, "Total Transactions": 52.0, "Total Customers": 45.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg2-fmk", "Name": "Fino's Pizzeria & Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6784 Germantown Ave", "LATITUDE": 40.054534, "LONGITUDE": -75.186974, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 1.0, "Total Spend": 241.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 13.08, "Median Spend per Customer": 13.08 }, "geometry": { "type": "Point", "coordinates": [ -75.186974, 40.054534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "Name": "El Taco", "Category": "Restaurants and Other Eating Places", "Address": "3233 Powelton Ave", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2019, "Total Visits": 142.0, "Total Visitors": 62.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 534.0, "Total Spend": 4157.0, "Total Transactions": 338.0, "Total Customers": 247.0, "Median Spend per Transaction": 10.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "6842 Bustleton Ave", "LATITUDE": 40.041625, "LONGITUDE": -75.064814, "DATE_RANGE_START": 2019, "Total Visits": 320.0, "Total Visitors": 192.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 21.0, "Total Spend": 4198.0, "Total Transactions": 163.0, "Total Customers": 150.0, "Median Spend per Transaction": 20.32, "Median Spend per Customer": 20.71 }, "geometry": { "type": "Point", "coordinates": [ -75.064814, 40.041625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zpv", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "2820 W. Oregon Ave.", "LATITUDE": 39.917091, "LONGITUDE": -75.187282, "DATE_RANGE_START": 2019, "Total Visits": 29910.0, "Total Visitors": 14422.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 24.0, "Total Spend": 2938.0, "Total Transactions": 50.0, "Total Customers": 50.0, "Median Spend per Transaction": 38.22, "Median Spend per Customer": 38.22 }, "geometry": { "type": "Point", "coordinates": [ -75.187282, 39.917091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-c3q", "Name": "Yarnphoria", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1020 Pine St", "LATITUDE": 39.944703, "LONGITUDE": -75.159061, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 65.0, "Total Spend": 480.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159061, 39.944703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-p82-nqz", "Name": "On Charcoal", "Category": "Restaurants and Other Eating Places", "Address": "6516 Castor Ave", "LATITUDE": 40.041319, "LONGITUDE": -75.075986, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 33.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 577.0, "Total Spend": 341.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 102.38, "Median Spend per Customer": 102.38 }, "geometry": { "type": "Point", "coordinates": [ -75.075986, 40.041319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p8h-s89", "Name": "Sophies Bridal", "Category": "Clothing Stores", "Address": "6819 Torresdale Ave", "LATITUDE": 40.025369, "LONGITUDE": -75.043875, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 40.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 274.0, "Total Spend": 133.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043875, 40.025369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pjf-kvf", "Name": "Tailored Home", "Category": "Home Furnishings Stores", "Address": "8528 Germantown Ave", "LATITUDE": 40.076272, "LONGITUDE": -75.207332, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 598.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 31.0, "Total Spend": 265.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 29.7, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.207332, 40.076272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3301 Aramingo Ave", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 98.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 20.0, "Total Spend": 3284.0, "Total Transactions": 108.0, "Total Customers": 95.0, "Median Spend per Transaction": 17.26, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-hdv", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "2800 Fox St", "LATITUDE": 40.009459, "LONGITUDE": -75.174254, "DATE_RANGE_START": 2019, "Total Visits": 6541.0, "Total Visitors": 3916.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 17.0, "Total Spend": 883.0, "Total Transactions": 33.0, "Total Customers": 8.0, "Median Spend per Transaction": 18.86, "Median Spend per Customer": 60.01 }, "geometry": { "type": "Point", "coordinates": [ -75.174254, 40.009459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "Name": "Four Seasons Market", "Category": "Specialty Food Stores", "Address": "6130 Woodland Ave", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2019, "Total Visits": 315.0, "Total Visitors": 267.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 11.0, "Total Spend": 426.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 19.08, "Median Spend per Customer": 19.08 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pgf-fj9", "Name": "Cleopatra Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4145 Chestnut St", "LATITUDE": 39.956516, "LONGITUDE": -75.206034, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 165.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 288.0, "Total Spend": 723.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206034, 39.956516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "Name": "Cantinho Brasileiro Restaurante", "Category": "Restaurants and Other Eating Places", "Address": "7536 Castor Ave", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2019, "Total Visits": 168.0, "Total Visitors": 117.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 9.0, "Total Spend": 1320.0, "Total Transactions": 80.0, "Total Customers": 42.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "Name": "Dannys Wok 3", "Category": "Restaurants and Other Eating Places", "Address": "4322 N Broad St", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2019, "Total Visits": 306.0, "Total Visitors": 292.0, "POI_CBG": 421010204002.0, "Median Dwell Time": 7.0, "Total Spend": 2479.0, "Total Transactions": 63.0, "Total Customers": 60.0, "Median Spend per Transaction": 30.84, "Median Spend per Customer": 31.93 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnx-dsq", "Name": "Cedar Point Bar and Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2370 E Norris St", "LATITUDE": 39.976851, "LONGITUDE": -75.127783, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 93.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 26.0, "Total Spend": 25086.0, "Total Transactions": 615.0, "Total Customers": 458.0, "Median Spend per Transaction": 33.0, "Median Spend per Customer": 42.24 }, "geometry": { "type": "Point", "coordinates": [ -75.127783, 39.976851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfx-ks5", "Name": "Gregs Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4460 Main St", "LATITUDE": 40.026584, "LONGITUDE": -75.226738, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 22.0, "Total Spend": 5385.0, "Total Transactions": 225.0, "Total Customers": 203.0, "Median Spend per Transaction": 17.55, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.226738, 40.026584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-jjv", "Name": "Pelicana chicken", "Category": "Restaurants and Other Eating Places", "Address": "4002 Spruce St", "LATITUDE": 39.95156, "LONGITUDE": -75.203327, "DATE_RANGE_START": 2019, "Total Visits": 222.0, "Total Visitors": 158.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 65.0, "Total Spend": 883.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 44.88, "Median Spend per Customer": 44.88 }, "geometry": { "type": "Point", "coordinates": [ -75.203327, 39.95156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp2-q75", "Name": "Kensington Pub", "Category": "Restaurants and Other Eating Places", "Address": "2116 E Tioga St", "LATITUDE": 39.995547, "LONGITUDE": -75.102511, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 98.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 125.0, "Total Spend": 752.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 30.5, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102511, 39.995547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "51 Bethlehem Pike", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2019, "Total Visits": 173.0, "Total Visitors": 128.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 31.0, "Total Spend": 908.0, "Total Transactions": 40.0, "Total Customers": 40.0, "Median Spend per Transaction": 14.08, "Median Spend per Customer": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "1037 Chestnut St", "LATITUDE": 39.950371, "LONGITUDE": -75.158373, "DATE_RANGE_START": 2019, "Total Visits": 435.0, "Total Visitors": 320.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 14842.0, "Total Transactions": 1736.0, "Total Customers": 1276.0, "Median Spend per Transaction": 7.44, "Median Spend per Customer": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158373, 39.950371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgh-vmk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1936 Liacouras Walk", "LATITUDE": 39.982434, "LONGITUDE": -75.155908, "DATE_RANGE_START": 2019, "Total Visits": 1231.0, "Total Visitors": 726.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 166.0, "Total Spend": 3614.0, "Total Transactions": 388.0, "Total Customers": 267.0, "Median Spend per Transaction": 8.82, "Median Spend per Customer": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155908, 39.982434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yqf", "Name": "T Swirl Crepe", "Category": "Restaurants and Other Eating Places", "Address": "150 N 10th St", "LATITUDE": 39.955094, "LONGITUDE": -75.156151, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 215.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 19.0, "Total Spend": 4210.0, "Total Transactions": 262.0, "Total Customers": 245.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.156151, 39.955094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-grk", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "1755 N 13th St", "LATITUDE": 39.979416, "LONGITUDE": -75.154998, "DATE_RANGE_START": 2019, "Total Visits": 3425.0, "Total Visitors": 1964.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 121.0, "Total Spend": 1104.0, "Total Transactions": 97.0, "Total Customers": 93.0, "Median Spend per Transaction": 10.28, "Median Spend per Customer": 10.28 }, "geometry": { "type": "Point", "coordinates": [ -75.154998, 39.979416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "Name": "Union Tap House", "Category": "Restaurants and Other Eating Places", "Address": "4801 Umbria St", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 77.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 51.0, "Total Spend": 131.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 14.75, "Median Spend per Customer": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "3551 Aramingo Ave", "LATITUDE": 39.992457, "LONGITUDE": -75.097895, "DATE_RANGE_START": 2019, "Total Visits": 200.0, "Total Visitors": 182.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 6.0, "Total Spend": 6602.0, "Total Transactions": 486.0, "Total Customers": 370.0, "Median Spend per Transaction": 11.23, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.097895, 39.992457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-kcq", "Name": "Sweet Charlie's", "Category": "Restaurants and Other Eating Places", "Address": "1921 Walnut St", "LATITUDE": 39.95076, "LONGITUDE": -75.173342, "DATE_RANGE_START": 2019, "Total Visits": 3147.0, "Total Visitors": 2305.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 35.0, "Total Spend": 10361.0, "Total Transactions": 886.0, "Total Customers": 831.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173342, 39.95076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7yv", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "48 N 12th St", "LATITUDE": 39.953782, "LONGITUDE": -75.159676, "DATE_RANGE_START": 2019, "Total Visits": 3410.0, "Total Visitors": 2962.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 21.0, "Total Spend": 22791.0, "Total Transactions": 1949.0, "Total Customers": 1359.0, "Median Spend per Transaction": 10.57, "Median Spend per Customer": 12.23 }, "geometry": { "type": "Point", "coordinates": [ -75.159676, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-gtv", "Name": "Greenstreet Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1101 Spruce St", "LATITUDE": 39.946471, "LONGITUDE": -75.159628, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 47.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 146.0, "Total Spend": 145.0, "Total Transactions": 25.0, "Total Customers": 15.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159628, 39.946471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-syv", "Name": "Tony's Auto Service", "Category": "Gasoline Stations", "Address": "711 W Oregon Ave", "LATITUDE": 39.915674, "LONGITUDE": -75.160462, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 70.0, "POI_CBG": 421010041022.0, "Median Dwell Time": 6.0, "Total Spend": 6381.0, "Total Transactions": 52.0, "Total Customers": 40.0, "Median Spend per Transaction": 18.07, "Median Spend per Customer": 19.73 }, "geometry": { "type": "Point", "coordinates": [ -75.160462, 39.915674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-sbk", "Name": "Frankinstien Bike Worx", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1529 Spruce St", "LATITUDE": 39.947579, "LONGITUDE": -75.167633, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 105.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 60.0, "Total Spend": 788.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 38.88, "Median Spend per Customer": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.167633, 39.947579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-pjv", "Name": "Mizu", "Category": "Restaurants and Other Eating Places", "Address": "111 S 40th St", "LATITUDE": 39.955254, "LONGITUDE": -75.202132, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 35.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 6.0, "Total Spend": 3297.0, "Total Transactions": 128.0, "Total Customers": 115.0, "Median Spend per Transaction": 21.26, "Median Spend per Customer": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202132, 39.955254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nyv", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1000 S Columbus Blvd", "LATITUDE": 39.931469, "LONGITUDE": -75.144907, "DATE_RANGE_START": 2019, "Total Visits": 1341.0, "Total Visitors": 1094.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 48.0, "Total Spend": 8330.0, "Total Transactions": 87.0, "Total Customers": 77.0, "Median Spend per Transaction": 37.24, "Median Spend per Customer": 51.08 }, "geometry": { "type": "Point", "coordinates": [ -75.144907, 39.931469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj8-2c5", "Name": "US1 Car Stereo", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4331 E Roosevelt Blvd", "LATITUDE": 40.029189, "LONGITUDE": -75.103473, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 93.0, "POI_CBG": 421010292002.0, "Median Dwell Time": 6.0, "Total Spend": 5100.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 216.0, "Median Spend per Customer": 216.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103473, 40.029189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-rkz", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028707, "LONGITUDE": -75.099267, "DATE_RANGE_START": 2019, "Total Visits": 2750.0, "Total Visitors": 2334.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 11.0, "Total Spend": 1437.0, "Total Transactions": 23.0, "Total Customers": 22.0, "Median Spend per Transaction": 28.47, "Median Spend per Customer": 33.18 }, "geometry": { "type": "Point", "coordinates": [ -75.099267, 40.028707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p83-zcq", "Name": "Kuttanadu Super Market", "Category": "Grocery Stores", "Address": "8923 Krewstown Rd", "LATITUDE": 40.083172, "LONGITUDE": -75.048353, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 57.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 7.0, "Total Spend": 2199.0, "Total Transactions": 92.0, "Total Customers": 70.0, "Median Spend per Transaction": 14.29, "Median Spend per Customer": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.048353, 40.083172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1034 Washington Ave # 38", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2019, "Total Visits": 583.0, "Total Visitors": 363.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 3.0, "Total Spend": 2784.0, "Total Transactions": 273.0, "Total Customers": 125.0, "Median Spend per Transaction": 8.58, "Median Spend per Customer": 10.73 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5s5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1201 Chestnut St", "LATITUDE": 39.950566, "LONGITUDE": -75.160281, "DATE_RANGE_START": 2019, "Total Visits": 1652.0, "Total Visitors": 1411.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 1413.0, "Total Transactions": 150.0, "Total Customers": 120.0, "Median Spend per Transaction": 7.42, "Median Spend per Customer": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.160281, 39.950566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1105 N 63rd St # 09", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 255.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 9.0, "Total Spend": 1643.0, "Total Transactions": 87.0, "Total Customers": 65.0, "Median Spend per Transaction": 13.35, "Median Spend per Customer": 13.46 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pgh-v2k", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2131 59 North Broad Street Ste 5", "LATITUDE": 39.985827, "LONGITUDE": -75.15577, "DATE_RANGE_START": 2019, "Total Visits": 550.0, "Total Visitors": 423.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 7.0, "Total Spend": 6468.0, "Total Transactions": 350.0, "Total Customers": 237.0, "Median Spend per Transaction": 10.02, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.985827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg8-kzz", "Name": "2637brew", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2637 W Girard Ave", "LATITUDE": 39.974293, "LONGITUDE": -75.180147, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 47.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 85.0, "Total Spend": 11168.0, "Total Transactions": 238.0, "Total Customers": 200.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 44.81 }, "geometry": { "type": "Point", "coordinates": [ -75.180147, 39.974293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-8d9", "Name": "Tom's Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "59 N 11th St", "LATITUDE": 39.953328, "LONGITUDE": -75.157763, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 14106.0, "Total Transactions": 378.0, "Total Customers": 346.0, "Median Spend per Transaction": 30.11, "Median Spend per Customer": 33.25 }, "geometry": { "type": "Point", "coordinates": [ -75.157763, 39.953328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-6x5", "Name": "Giuseppe & Sons", "Category": "Restaurants and Other Eating Places", "Address": "1523 Sansom St", "LATITUDE": 39.950627, "LONGITUDE": -75.166809, "DATE_RANGE_START": 2019, "Total Visits": 12130.0, "Total Visitors": 8380.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 46.0, "Total Spend": 16492.0, "Total Transactions": 203.0, "Total Customers": 162.0, "Median Spend per Transaction": 51.7, "Median Spend per Customer": 69.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166809, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dwg-cbk", "Name": "Hot Spot Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7000 Elmwood Ave", "LATITUDE": 39.916984, "LONGITUDE": -75.237394, "DATE_RANGE_START": 2019, "Total Visits": 145.0, "Total Visitors": 133.0, "POI_CBG": 421010060005.0, "Median Dwell Time": 5.0, "Total Spend": 3189.0, "Total Transactions": 155.0, "Total Customers": 95.0, "Median Spend per Transaction": 18.23, "Median Spend per Customer": 25.66 }, "geometry": { "type": "Point", "coordinates": [ -75.237394, 39.916984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "Name": "Domenic's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "14258 Bustleton Ave", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 57.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 82.0, "Total Spend": 652.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-t5f", "Name": "Perla", "Category": "Restaurants and Other Eating Places", "Address": "1535 S 11th St", "LATITUDE": 39.930011, "LONGITUDE": -75.162803, "DATE_RANGE_START": 2019, "Total Visits": 346.0, "Total Visitors": 193.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 202.0, "Total Spend": 3568.0, "Total Transactions": 45.0, "Total Customers": 45.0, "Median Spend per Transaction": 65.08, "Median Spend per Customer": 65.08 }, "geometry": { "type": "Point", "coordinates": [ -75.162803, 39.930011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-qzz", "Name": "Fortune Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1828 South St", "LATITUDE": 39.944339, "LONGITUDE": -75.172891, "DATE_RANGE_START": 2019, "Total Visits": 1128.0, "Total Visitors": 666.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 195.0, "Total Spend": 56.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 16.74, "Median Spend per Customer": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.172891, 39.944339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992769, "LONGITUDE": -75.100237, "DATE_RANGE_START": 2019, "Total Visits": 430.0, "Total Visitors": 318.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 58.0, "Total Spend": 7231.0, "Total Transactions": 295.0, "Total Customers": 240.0, "Median Spend per Transaction": 23.61, "Median Spend per Customer": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100237, 39.992769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmb-5pv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1201 Market St", "LATITUDE": 39.952298, "LONGITUDE": -75.160846, "DATE_RANGE_START": 2019, "Total Visits": 2255.0, "Total Visitors": 1576.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 140.0, "Total Spend": 9471.0, "Total Transactions": 1321.0, "Total Customers": 861.0, "Median Spend per Transaction": 5.56, "Median Spend per Customer": 7.24 }, "geometry": { "type": "Point", "coordinates": [ -75.160846, 39.952298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-t7q", "Name": "Craftsman Row Saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "112 S 8th St", "LATITUDE": 39.949101, "LONGITUDE": -75.154283, "DATE_RANGE_START": 2019, "Total Visits": 623.0, "Total Visitors": 525.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 40.0, "Total Spend": 18388.0, "Total Transactions": 498.0, "Total Customers": 415.0, "Median Spend per Transaction": 27.83, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154283, 39.949101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "Name": "Brauhaus Schmitz", "Category": "Restaurants and Other Eating Places", "Address": "718 South St", "LATITUDE": 39.942007, "LONGITUDE": -75.154702, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 285.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 42.0, "Total Spend": 16870.0, "Total Transactions": 355.0, "Total Customers": 311.0, "Median Spend per Transaction": 35.7, "Median Spend per Customer": 42.72 }, "geometry": { "type": "Point", "coordinates": [ -75.154702, 39.942007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-zs5", "Name": "Kilimandjaro Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4519 Baltimore Ave", "LATITUDE": 39.949245, "LONGITUDE": -75.213733, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 222.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 63.0, "Total Spend": 145.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 43.5, "Median Spend per Customer": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213733, 39.949245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "Name": "Moy Fong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7411 Stenton Ave", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 87.0, "POI_CBG": 421010264005.0, "Median Dwell Time": 5.0, "Total Spend": 3685.0, "Total Transactions": 198.0, "Total Customers": 163.0, "Median Spend per Transaction": 14.48, "Median Spend per Customer": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-yqf", "Name": "M Kee", "Category": "Restaurants and Other Eating Places", "Address": "1002 Race St", "LATITUDE": 39.955229, "LONGITUDE": -75.156117, "DATE_RANGE_START": 2019, "Total Visits": 390.0, "Total Visitors": 360.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 1680.0, "Total Transactions": 57.0, "Total Customers": 52.0, "Median Spend per Transaction": 23.6, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156117, 39.955229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22c@63s-dw9-7nq", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave Terminal E Space E15", "LATITUDE": 39.878147, "LONGITUDE": -75.237777, "DATE_RANGE_START": 2019, "Total Visits": 2938.0, "Total Visitors": 2647.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 13.0, "Total Spend": 2938.0, "Total Transactions": 235.0, "Total Customers": 218.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 10.85 }, "geometry": { "type": "Point", "coordinates": [ -75.237777, 39.878147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "Name": "La Tienda MiniMarket", "Category": "Restaurants and Other Eating Places", "Address": "1247 Snyder Ave", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 42.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 180.0, "Total Spend": 98.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.046202, "LONGITUDE": -75.056569, "DATE_RANGE_START": 2019, "Total Visits": 1832.0, "Total Visitors": 1301.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 10.0, "Total Spend": 11464.0, "Total Transactions": 2007.0, "Total Customers": 1008.0, "Median Spend per Transaction": 4.74, "Median Spend per Customer": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.056569, 40.046202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7221 Torresdale Ave", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2019, "Total Visits": 313.0, "Total Visitors": 200.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 4.0, "Total Spend": 4991.0, "Total Transactions": 861.0, "Total Customers": 368.0, "Median Spend per Transaction": 4.95, "Median Spend per Customer": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1924 Fairmount Ave", "LATITUDE": 39.967006, "LONGITUDE": -75.169701, "DATE_RANGE_START": 2019, "Total Visits": 751.0, "Total Visitors": 518.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 8.0, "Total Spend": 11879.0, "Total Transactions": 725.0, "Total Customers": 433.0, "Median Spend per Transaction": 11.11, "Median Spend per Customer": 15.47 }, "geometry": { "type": "Point", "coordinates": [ -75.169701, 39.967006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "300 N 63rd St", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2019, "Total Visits": 870.0, "Total Visitors": 568.0, "POI_CBG": 421010096001.0, "Median Dwell Time": 9.0, "Total Spend": 3193.0, "Total Transactions": 207.0, "Total Customers": 128.0, "Median Spend per Transaction": 9.54, "Median Spend per Customer": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgg-rc5", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "3130 W Hunting Park Ave", "LATITUDE": 40.003796, "LONGITUDE": -75.180647, "DATE_RANGE_START": 2019, "Total Visits": 496.0, "Total Visitors": 421.0, "POI_CBG": 421010171004.0, "Median Dwell Time": 4.0, "Total Spend": 2982.0, "Total Transactions": 207.0, "Total Customers": 162.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 13.44 }, "geometry": { "type": "Point", "coordinates": [ -75.180647, 40.003796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "Name": "Muslim Fashion", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "5210 Chestnut St", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2019, "Total Visits": 1949.0, "Total Visitors": 1464.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 19.0, "Total Spend": 686.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 63.0, "Median Spend per Customer": 78.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-y9z", "Name": "South Street Art Mart", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "530 S 4th St", "LATITUDE": 39.941857, "LONGITUDE": -75.149316, "DATE_RANGE_START": 2019, "Total Visits": 1857.0, "Total Visitors": 1744.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 179.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 9.88, "Median Spend per Customer": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.149316, 39.941857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj6-bx5", "Name": "Sunny Park Gift Shop", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "571 Adams Ave", "LATITUDE": 40.037273, "LONGITUDE": -75.107834, "DATE_RANGE_START": 2019, "Total Visits": 1246.0, "Total Visitors": 934.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 15.0, "Total Spend": 2063.0, "Total Transactions": 400.0, "Total Customers": 263.0, "Median Spend per Transaction": 3.76, "Median Spend per Customer": 4.52 }, "geometry": { "type": "Point", "coordinates": [ -75.107834, 40.037273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "Name": "Bruno's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1838 W Cheltenham Ave", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 108.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 124.0, "Total Spend": 814.0, "Total Transactions": 48.0, "Total Customers": 45.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 15.23 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phq-2hq", "Name": "X Mark's the Spot", "Category": "Restaurants and Other Eating Places", "Address": "6364 Stenton Ave", "LATITUDE": 40.060083, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 115.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 52.0, "Total Spend": 573.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 35.5, "Median Spend per Customer": 39.25 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 40.060083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-rkz", "Name": "Zahav", "Category": "Restaurants and Other Eating Places", "Address": "237 Saint James Pl", "LATITUDE": 39.946194, "LONGITUDE": -75.145279, "DATE_RANGE_START": 2019, "Total Visits": 1094.0, "Total Visitors": 725.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 120.0, "Total Spend": 42684.0, "Total Transactions": 300.0, "Total Customers": 293.0, "Median Spend per Transaction": 125.0, "Median Spend per Customer": 127.99 }, "geometry": { "type": "Point", "coordinates": [ -75.145279, 39.946194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "Name": "The Flavor Spot", "Category": "Restaurants and Other Eating Places", "Address": "5013 N Broad St", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2019, "Total Visits": 147.0, "Total Visitors": 142.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 2.0, "Total Spend": 1132.0, "Total Transactions": 68.0, "Total Customers": 60.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22b@628-pm9-bp9", "Name": "The Prime Rib", "Category": "Restaurants and Other Eating Places", "Address": "900 Packer Ave", "LATITUDE": 39.909183, "LONGITUDE": -75.164667, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 471.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 25.0, "Total Spend": 1495.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 235.82, "Median Spend per Customer": 235.82 }, "geometry": { "type": "Point", "coordinates": [ -75.164667, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "Name": "Angelo's Pizza House", "Category": "Restaurants and Other Eating Places", "Address": "3901 Frankford Ave", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 52.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 1.0, "Total Spend": 592.0, "Total Transactions": 48.0, "Total Customers": 28.0, "Median Spend per Transaction": 9.18, "Median Spend per Customer": 11.23 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-s5z", "Name": "Restaurant Depot", "Category": "Grocery and Related Product Merchant Wholesalers", "Address": "2950 Roberts Ave", "LATITUDE": 40.009243, "LONGITUDE": -75.177699, "DATE_RANGE_START": 2019, "Total Visits": 2307.0, "Total Visitors": 1258.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 20.0, "Total Spend": 1221.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 366.56, "Median Spend per Customer": 366.56 }, "geometry": { "type": "Point", "coordinates": [ -75.177699, 40.009243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5201 Rising Sun Ave", "LATITUDE": 40.029093, "LONGITUDE": -75.118871, "DATE_RANGE_START": 2019, "Total Visits": 638.0, "Total Visitors": 471.0, "POI_CBG": 421010290004.0, "Median Dwell Time": 9.0, "Total Spend": 2583.0, "Total Transactions": 82.0, "Total Customers": 48.0, "Median Spend per Transaction": 14.91, "Median Spend per Customer": 18.86 }, "geometry": { "type": "Point", "coordinates": [ -75.118871, 40.029093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgy-r6k", "Name": "Hopkins Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7700 Ridge Ave", "LATITUDE": 40.051828, "LONGITUDE": -75.236578, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 55.0, "POI_CBG": 421010219001.0, "Median Dwell Time": 5.0, "Total Spend": 692.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 31.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236578, 40.051828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5719 Oxford Ave", "LATITUDE": 40.033268, "LONGITUDE": -75.084729, "DATE_RANGE_START": 2019, "Total Visits": 833.0, "Total Visitors": 580.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 9.0, "Total Spend": 3011.0, "Total Transactions": 368.0, "Total Customers": 232.0, "Median Spend per Transaction": 7.49, "Median Spend per Customer": 8.88 }, "geometry": { "type": "Point", "coordinates": [ -75.084729, 40.033268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "315 Market St", "LATITUDE": 39.950471, "LONGITUDE": -75.146166, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 95.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 33.0, "Total Spend": 1590.0, "Total Transactions": 53.0, "Total Customers": 52.0, "Median Spend per Transaction": 22.72, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.146166, 39.950471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "Name": "The Plough & the Stars", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2019, "Total Visits": 591.0, "Total Visitors": 415.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 62.0, "Total Spend": 4505.0, "Total Transactions": 137.0, "Total Customers": 103.0, "Median Spend per Transaction": 23.35, "Median Spend per Customer": 26.13 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-whq", "Name": "Mac's Tavern", "Category": "Restaurants and Other Eating Places", "Address": "226 Market St", "LATITUDE": 39.949782, "LONGITUDE": -75.144728, "DATE_RANGE_START": 2019, "Total Visits": 5252.0, "Total Visitors": 3901.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 41.0, "Total Spend": 10024.0, "Total Transactions": 285.0, "Total Customers": 265.0, "Median Spend per Transaction": 27.3, "Median Spend per Customer": 28.12 }, "geometry": { "type": "Point", "coordinates": [ -75.144728, 39.949782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-y7q", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "1701 Welsh Rd Ste 3", "LATITUDE": 40.085978, "LONGITUDE": -75.039162, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 80.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 1.0, "Total Spend": 48.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.039162, 40.085978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2027 S Broad St", "LATITUDE": 39.924749, "LONGITUDE": -75.169152, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 65.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 3.0, "Total Spend": 2073.0, "Total Transactions": 228.0, "Total Customers": 182.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 8.85 }, "geometry": { "type": "Point", "coordinates": [ -75.169152, 39.924749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "600 S 9th St", "LATITUDE": 39.942532, "LONGITUDE": -75.157241, "DATE_RANGE_START": 2019, "Total Visits": 931.0, "Total Visitors": 798.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 7.0, "Total Spend": 6524.0, "Total Transactions": 1114.0, "Total Customers": 720.0, "Median Spend per Transaction": 4.59, "Median Spend per Customer": 5.59 }, "geometry": { "type": "Point", "coordinates": [ -75.157241, 39.942532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1900 Market Street 20th & Market", "LATITUDE": 39.953365, "LONGITUDE": -75.173088, "DATE_RANGE_START": 2019, "Total Visits": 1289.0, "Total Visitors": 880.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 64.0, "Total Spend": 16327.0, "Total Transactions": 2970.0, "Total Customers": 1726.0, "Median Spend per Transaction": 4.27, "Median Spend per Customer": 5.94 }, "geometry": { "type": "Point", "coordinates": [ -75.173088, 39.953365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "Name": "Rays Cafe & Tea House", "Category": "Restaurants and Other Eating Places", "Address": "141 N 9th St", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 58.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 19.0, "Total Spend": 1162.0, "Total Transactions": 173.0, "Total Customers": 58.0, "Median Spend per Transaction": 3.63, "Median Spend per Customer": 11.07 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hh5", "Name": "Square on Square", "Category": "Restaurants and Other Eating Places", "Address": "274 S 20th St", "LATITUDE": 39.94849, "LONGITUDE": -75.174456, "DATE_RANGE_START": 2019, "Total Visits": 2100.0, "Total Visitors": 1183.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 134.0, "Total Spend": 3123.0, "Total Transactions": 133.0, "Total Customers": 95.0, "Median Spend per Transaction": 21.31, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.174456, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-k75", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9745 Roosevelt Blvd # 5130", "LATITUDE": 40.08259, "LONGITUDE": -75.022988, "DATE_RANGE_START": 2019, "Total Visits": 16825.0, "Total Visitors": 10671.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 22.0, "Total Spend": 1804.0, "Total Transactions": 207.0, "Total Customers": 132.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.022988, 40.08259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-jgk", "Name": "DanDan", "Category": "Restaurants and Other Eating Places", "Address": "126 S 16th St", "LATITUDE": 39.950263, "LONGITUDE": -75.1676, "DATE_RANGE_START": 2019, "Total Visits": 300.0, "Total Visitors": 230.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 11.0, "Total Spend": 17281.0, "Total Transactions": 471.0, "Total Customers": 425.0, "Median Spend per Transaction": 29.95, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1676, 39.950263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg9-ty9", "Name": "I Tea", "Category": "Restaurants and Other Eating Places", "Address": "1537 Spring Garden St", "LATITUDE": 39.963033, "LONGITUDE": -75.164167, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 57.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 10.0, "Total Spend": 1253.0, "Total Transactions": 85.0, "Total Customers": 78.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.164167, 39.963033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "Name": "The Sidecar Bar & Grille", "Category": "Restaurants and Other Eating Places", "Address": "2201 Christian St", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 42.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 26.0, "Total Spend": 7890.0, "Total Transactions": 197.0, "Total Customers": 168.0, "Median Spend per Transaction": 31.24, "Median Spend per Customer": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmb-m8v", "Name": "Cafe Ole", "Category": "Restaurants and Other Eating Places", "Address": "147 N 3rd St", "LATITUDE": 39.953535, "LONGITUDE": -75.144687, "DATE_RANGE_START": 2019, "Total Visits": 306.0, "Total Visitors": 95.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 431.0, "Total Spend": 48.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.39, "Median Spend per Customer": 14.39 }, "geometry": { "type": "Point", "coordinates": [ -75.144687, 39.953535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj4-v4v", "Name": "Taqueria La Raza", "Category": "Restaurants and Other Eating Places", "Address": "227 W Allegheny Ave", "LATITUDE": 39.999423, "LONGITUDE": -75.134255, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 52.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 191.0, "Total Spend": 1007.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 27.68, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134255, 39.999423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "Name": "Quaker Diner", "Category": "Restaurants and Other Eating Places", "Address": "7241 Rising Sun Ave", "LATITUDE": 40.060542, "LONGITUDE": -75.084471, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 123.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 21.0, "Total Spend": 2573.0, "Total Transactions": 102.0, "Total Customers": 80.0, "Median Spend per Transaction": 23.58, "Median Spend per Customer": 27.67 }, "geometry": { "type": "Point", "coordinates": [ -75.084471, 40.060542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "Name": "Real Food Eatery", "Category": "Restaurants and Other Eating Places", "Address": "207 S 16th St", "LATITUDE": 39.949409, "LONGITUDE": -75.167315, "DATE_RANGE_START": 2019, "Total Visits": 878.0, "Total Visitors": 653.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 44.0, "Total Spend": 5273.0, "Total Transactions": 398.0, "Total Customers": 353.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 12.37 }, "geometry": { "type": "Point", "coordinates": [ -75.167315, 39.949409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-h89", "Name": "Gyu-Kaku", "Category": "Restaurants and Other Eating Places", "Address": "1901 Callowhill St", "LATITUDE": 39.960773, "LONGITUDE": -75.170117, "DATE_RANGE_START": 2019, "Total Visits": 783.0, "Total Visitors": 593.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 51.0, "Total Spend": 20423.0, "Total Transactions": 316.0, "Total Customers": 293.0, "Median Spend per Transaction": 52.51, "Median Spend per Customer": 59.91 }, "geometry": { "type": "Point", "coordinates": [ -75.170117, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "Name": "Alaska King Crab House", "Category": "Restaurants and Other Eating Places", "Address": "4834 Lancaster Ave", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2019, "Total Visits": 493.0, "Total Visitors": 443.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 9.0, "Total Spend": 587.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5733 N Broad St", "LATITUDE": 40.040654, "LONGITUDE": -75.144015, "DATE_RANGE_START": 2019, "Total Visits": 193.0, "Total Visitors": 165.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 34.0, "Total Spend": 3566.0, "Total Transactions": 178.0, "Total Customers": 133.0, "Median Spend per Transaction": 18.33, "Median Spend per Customer": 19.56 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.040654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-kfz", "Name": "SoBol UCity", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.951073, "LONGITUDE": -75.198726, "DATE_RANGE_START": 2019, "Total Visits": 3853.0, "Total Visitors": 2225.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 11.0, "Total Spend": 12860.0, "Total Transactions": 1128.0, "Total Customers": 821.0, "Median Spend per Transaction": 10.69, "Median Spend per Customer": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.198726, 39.951073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "Name": "Pizza & Steak Master", "Category": "Restaurants and Other Eating Places", "Address": "6627 Chew Ave", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 15.0, "POI_CBG": 421010253001.0, "Median Dwell Time": 579.0, "Total Spend": 1582.0, "Total Transactions": 77.0, "Total Customers": 52.0, "Median Spend per Transaction": 20.06, "Median Spend per Customer": 28.33 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-rzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895169, "LONGITUDE": -75.227984, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 110.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 13.41, "Median Spend per Customer": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -75.227984, 39.895169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "Name": "El Fuego", "Category": "Restaurants and Other Eating Places", "Address": "723 Walnut St", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2019, "Total Visits": 212.0, "Total Visitors": 175.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 13.0, "Total Spend": 2492.0, "Total Transactions": 208.0, "Total Customers": 140.0, "Median Spend per Transaction": 10.57, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-v75", "Name": "Buffalo Billiards", "Category": "Restaurants and Other Eating Places", "Address": "118 Chestnut St", "LATITUDE": 39.948098, "LONGITUDE": -75.143221, "DATE_RANGE_START": 2019, "Total Visits": 1093.0, "Total Visitors": 741.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 96.0, "Total Spend": 19983.0, "Total Transactions": 750.0, "Total Customers": 580.0, "Median Spend per Transaction": 18.67, "Median Spend per Customer": 24.06 }, "geometry": { "type": "Point", "coordinates": [ -75.143221, 39.948098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "Name": "Ristorante Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1915 S Broad St", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 48.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 63.0, "Total Spend": 7426.0, "Total Transactions": 80.0, "Total Customers": 78.0, "Median Spend per Transaction": 83.05, "Median Spend per Customer": 83.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "499 Franklin Mills Cir", "LATITUDE": 40.087623, "LONGITUDE": -74.965267, "DATE_RANGE_START": 2019, "Total Visits": 1881.0, "Total Visitors": 1579.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 16729.0, "Total Transactions": 1414.0, "Total Customers": 1059.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 12.51 }, "geometry": { "type": "Point", "coordinates": [ -74.965267, 40.087623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "Name": "Arby's", "Category": "Restaurants and Other Eating Places", "Address": "577 Franklin Mills Cir", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2019, "Total Visits": 465.0, "Total Visitors": 428.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 4816.0, "Total Transactions": 403.0, "Total Customers": 328.0, "Median Spend per Transaction": 10.02, "Median Spend per Customer": 11.64 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "6001 N Broad St", "LATITUDE": 40.044629, "LONGITUDE": -75.142895, "DATE_RANGE_START": 2019, "Total Visits": 1173.0, "Total Visitors": 916.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 7.0, "Total Spend": 6388.0, "Total Transactions": 675.0, "Total Customers": 503.0, "Median Spend per Transaction": 8.34, "Median Spend per Customer": 10.16 }, "geometry": { "type": "Point", "coordinates": [ -75.142895, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-qs5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "813 Adams Ave", "LATITUDE": 40.031776, "LONGITUDE": -75.104312, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 120.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 6.0, "Total Spend": 2258.0, "Total Transactions": 405.0, "Total Customers": 232.0, "Median Spend per Transaction": 4.53, "Median Spend per Customer": 5.83 }, "geometry": { "type": "Point", "coordinates": [ -75.104312, 40.031776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-rzf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2300 E Butler St", "LATITUDE": 39.996049, "LONGITUDE": -75.092849, "DATE_RANGE_START": 2019, "Total Visits": 666.0, "Total Visitors": 356.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 6.0, "Total Spend": 1312.0, "Total Transactions": 213.0, "Total Customers": 172.0, "Median Spend per Transaction": 4.59, "Median Spend per Customer": 6.03 }, "geometry": { "type": "Point", "coordinates": [ -75.092849, 39.996049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgf-h3q", "Name": "A Part Of Me", "Category": "Clothing Stores", "Address": "3834 Lancaster Ave", "LATITUDE": 39.960878, "LONGITUDE": -75.198538, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 207.0, "POI_CBG": 421010091001.0, "Median Dwell Time": 1.0, "Total Spend": 566.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 113.0, "Median Spend per Customer": 170.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198538, 39.960878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "Name": "Tap Room On 19th", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2400 S 19th St", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010038001.0, "Median Dwell Time": 37.0, "Total Spend": 11071.0, "Total Transactions": 277.0, "Total Customers": 200.0, "Median Spend per Transaction": 32.88, "Median Spend per Customer": 42.69 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-89z", "Name": "Dasiwa", "Category": "Restaurants and Other Eating Places", "Address": "735 N 26th St", "LATITUDE": 39.969169, "LONGITUDE": -75.179702, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 18.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 9.0, "Total Spend": 6412.0, "Total Transactions": 148.0, "Total Customers": 127.0, "Median Spend per Transaction": 38.4, "Median Spend per Customer": 42.38 }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.969169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm4-t7q", "Name": "Mifflin Market", "Category": "Grocery Stores", "Address": "1901 S 5th St", "LATITUDE": 39.924805, "LONGITUDE": -75.154427, "DATE_RANGE_START": 2019, "Total Visits": 495.0, "Total Visitors": 252.0, "POI_CBG": 421010042014.0, "Median Dwell Time": 180.0, "Total Spend": 498.0, "Total Transactions": 53.0, "Total Customers": 33.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 10.97 }, "geometry": { "type": "Point", "coordinates": [ -75.154427, 39.924805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7001 Roosevelt Blvd", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2019, "Total Visits": 1043.0, "Total Visitors": 850.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 3.0, "Total Spend": 92442.0, "Total Transactions": 5280.0, "Total Customers": 2867.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "Name": "Desi Chaat House", "Category": "Restaurants and Other Eating Places", "Address": "501 S 42nd St", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 27.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 1.0, "Total Spend": 1671.0, "Total Transactions": 135.0, "Total Customers": 98.0, "Median Spend per Transaction": 9.55, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgf-y9z", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "3400 W Girard Ave", "LATITUDE": 39.969714, "LONGITUDE": -75.196116, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 20.0, "Total Spend": 1831.0, "Total Transactions": 258.0, "Total Customers": 252.0, "Median Spend per Transaction": 5.85, "Median Spend per Customer": 5.85 }, "geometry": { "type": "Point", "coordinates": [ -75.196116, 39.969714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "Name": "Tony's Luke", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 38.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 3.0, "Total Spend": 11870.0, "Total Transactions": 506.0, "Total Customers": 465.0, "Median Spend per Transaction": 18.36, "Median Spend per Customer": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnx-9s5", "Name": "Interstate Drafthouse", "Category": "Restaurants and Other Eating Places", "Address": "1235 E Palmer St", "LATITUDE": 39.971824, "LONGITUDE": -75.128675, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 40.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 84.0, "Total Spend": 17517.0, "Total Transactions": 403.0, "Total Customers": 325.0, "Median Spend per Transaction": 37.85, "Median Spend per Customer": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128675, 39.971824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "164 W Chelten Ave", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2019, "Total Visits": 1961.0, "Total Visitors": 1236.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 41.0, "Total Spend": 3192.0, "Total Transactions": 132.0, "Total Customers": 95.0, "Median Spend per Transaction": 15.86, "Median Spend per Customer": 19.06 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "5901 Wayne Ave", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010238003.0, "Median Dwell Time": 298.0, "Total Spend": 7388.0, "Total Transactions": 1009.0, "Total Customers": 575.0, "Median Spend per Transaction": 5.85, "Median Spend per Customer": 6.98 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "Name": "Kaffa Crossing", "Category": "Restaurants and Other Eating Places", "Address": "4423 Chestnut St", "LATITUDE": 39.956859, "LONGITUDE": -75.210414, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 38.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 30.0, "Total Spend": 443.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.4, "Median Spend per Customer": 40.4 }, "geometry": { "type": "Point", "coordinates": [ -75.210414, 39.956859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "Name": "R.E. Michel", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "333 E Hunting Park Ave", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2019, "Total Visits": 193.0, "Total Visitors": 145.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 19.0, "Total Spend": 2536.0, "Total Transactions": 17.0, "Total Customers": 5.0, "Median Spend per Transaction": 68.04, "Median Spend per Customer": 272.16 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "Name": "CHAPMAN NISSAN", "Category": "Automobile Dealers", "Address": "6723 Essington Ave", "LATITUDE": 39.910684, "LONGITUDE": -75.224285, "DATE_RANGE_START": 2019, "Total Visits": 1139.0, "Total Visitors": 708.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 69.0, "Total Spend": 21926.0, "Total Transactions": 85.0, "Total Customers": 82.0, "Median Spend per Transaction": 74.21, "Median Spend per Customer": 80.95 }, "geometry": { "type": "Point", "coordinates": [ -75.224285, 39.910684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgf-kj9", "Name": "Wheel Fun Rentals Boathouse Row", "Category": "Other Motor Vehicle Dealers", "Address": "1 Boathouse Row", "LATITUDE": 39.969459, "LONGITUDE": -75.187508, "DATE_RANGE_START": 2019, "Total Visits": 543.0, "Total Visitors": 498.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 13.0, "Total Spend": 2680.0, "Total Transactions": 93.0, "Total Customers": 93.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.187508, 39.969459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4201 N Marshall St", "LATITUDE": 40.015701, "LONGITUDE": -75.13771, "DATE_RANGE_START": 2019, "Total Visits": 230.0, "Total Visitors": 183.0, "POI_CBG": 421010197004.0, "Median Dwell Time": 8.0, "Total Spend": 6691.0, "Total Transactions": 200.0, "Total Customers": 143.0, "Median Spend per Transaction": 19.97, "Median Spend per Customer": 27.53 }, "geometry": { "type": "Point", "coordinates": [ -75.13771, 40.015701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6344 Stenton Ave", "LATITUDE": 40.059864, "LONGITUDE": -75.166534, "DATE_RANGE_START": 2019, "Total Visits": 615.0, "Total Visitors": 458.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 10.0, "Total Spend": 1505.0, "Total Transactions": 87.0, "Total Customers": 65.0, "Median Spend per Transaction": 15.55, "Median Spend per Customer": 18.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166534, 40.059864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rx5", "Name": "Hair Hair", "Category": "Health and Personal Care Stores", "Address": "7618 City Ave", "LATITUDE": 39.978114, "LONGITUDE": -75.271405, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 95.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 5.0, "Total Spend": 19226.0, "Total Transactions": 641.0, "Total Customers": 541.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 25.3 }, "geometry": { "type": "Point", "coordinates": [ -75.271405, 39.978114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "Name": "Johns Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "128 W Chelten Ave", "LATITUDE": 40.03316, "LONGITUDE": -75.177034, "DATE_RANGE_START": 2019, "Total Visits": 168.0, "Total Visitors": 147.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 8.0, "Total Spend": 4952.0, "Total Transactions": 242.0, "Total Customers": 192.0, "Median Spend per Transaction": 14.53, "Median Spend per Customer": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.177034, 40.03316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-b49", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5000 Ogontz Ave", "LATITUDE": 40.030422, "LONGITUDE": -75.153419, "DATE_RANGE_START": 2019, "Total Visits": 1391.0, "Total Visitors": 1011.0, "POI_CBG": 421010280003.0, "Median Dwell Time": 4.0, "Total Spend": 463.0, "Total Transactions": 25.0, "Total Customers": 13.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 22.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153419, 40.030422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "Name": "Uniqlo", "Category": "Clothing Stores", "Address": "1608 Chestnut St", "LATITUDE": 39.951014, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2019, "Total Visits": 936.0, "Total Visitors": 675.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 111.0, "Total Spend": 66556.0, "Total Transactions": 1474.0, "Total Customers": 1324.0, "Median Spend per Transaction": 29.9, "Median Spend per Customer": 34.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.951014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-yd9", "Name": "Kayuh Bicycles & Cafe", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1900 W Girard Ave", "LATITUDE": 39.973645, "LONGITUDE": -75.17798, "DATE_RANGE_START": 2019, "Total Visits": 648.0, "Total Visitors": 480.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 20.0, "Total Spend": 1708.0, "Total Transactions": 223.0, "Total Customers": 107.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.17798, 39.973645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "Name": "The Book Trader", "Category": "Book Stores and News Dealers", "Address": "7 N 2nd St", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 92.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 20.0, "Total Spend": 1005.0, "Total Transactions": 45.0, "Total Customers": 43.0, "Median Spend per Transaction": 16.07, "Median Spend per Customer": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "Name": "Mostly Books", "Category": "Book Stores and News Dealers", "Address": "529 Bainbridge St", "LATITUDE": 39.94129, "LONGITUDE": -75.151876, "DATE_RANGE_START": 2019, "Total Visits": 292.0, "Total Visitors": 195.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 73.0, "Total Spend": 825.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 12.88, "Median Spend per Customer": 12.85 }, "geometry": { "type": "Point", "coordinates": [ -75.151876, 39.94129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvx-59f", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4701 W Girard Ave", "LATITUDE": 39.972941, "LONGITUDE": -75.217366, "DATE_RANGE_START": 2019, "Total Visits": 450.0, "Total Visitors": 373.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 7.0, "Total Spend": 1626.0, "Total Transactions": 188.0, "Total Customers": 143.0, "Median Spend per Transaction": 6.43, "Median Spend per Customer": 7.24 }, "geometry": { "type": "Point", "coordinates": [ -75.217366, 39.972941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7938 Dungan Rd", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2019, "Total Visits": 851.0, "Total Visitors": 550.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 9.0, "Total Spend": 1204.0, "Total Transactions": 90.0, "Total Customers": 67.0, "Median Spend per Transaction": 8.74, "Median Spend per Customer": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7620 Lindbergh Blvd Ste B", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2019, "Total Visits": 1714.0, "Total Visitors": 1236.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 19.0, "Total Spend": 401.0, "Total Transactions": 35.0, "Total Customers": 28.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 10.35 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5536 Torresdale Ave", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 10.0, "POI_CBG": 421010298002.0, "Median Dwell Time": 395.0, "Total Spend": 1504.0, "Total Transactions": 90.0, "Total Customers": 80.0, "Median Spend per Transaction": 16.1, "Median Spend per Customer": 18.33 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2501 S 70th St", "LATITUDE": 39.916923, "LONGITUDE": -75.236784, "DATE_RANGE_START": 2019, "Total Visits": 273.0, "Total Visitors": 235.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 7.0, "Total Spend": 8219.0, "Total Transactions": 177.0, "Total Customers": 133.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 30.11 }, "geometry": { "type": "Point", "coordinates": [ -75.236784, 39.916923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-yjv", "Name": "LL Flooring", "Category": "Home Furnishings Stores", "Address": "1530 S Columbus Blvd", "LATITUDE": 39.927832, "LONGITUDE": -75.145672, "DATE_RANGE_START": 2019, "Total Visits": 623.0, "Total Visitors": 575.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 1.0, "Total Spend": 4226.0, "Total Transactions": 8.0, "Total Customers": 3.0, "Median Spend per Transaction": 762.0, "Median Spend per Customer": 1268.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145672, 39.927832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj7-sqz", "Name": "Pizza Hut", "Category": "Restaurants and Other Eating Places", "Address": "4501 Castor Ave", "LATITUDE": 40.017091, "LONGITUDE": -75.096438, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 27.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 10.0, "Total Spend": 2222.0, "Total Transactions": 98.0, "Total Customers": 85.0, "Median Spend per Transaction": 21.34, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.096438, 40.017091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cbk", "Name": "Saffron Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "3240 N Broad St", "LATITUDE": 40.002525, "LONGITUDE": -75.153041, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 30.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 8.0, "Total Spend": 167.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.153041, 40.002525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "Name": "J&J Super Market", "Category": "Grocery Stores", "Address": "1839 S 7th St", "LATITUDE": 39.925365, "LONGITUDE": -75.157449, "DATE_RANGE_START": 2019, "Total Visits": 215.0, "Total Visitors": 135.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 267.0, "Total Spend": 2446.0, "Total Transactions": 245.0, "Total Customers": 120.0, "Median Spend per Transaction": 8.04, "Median Spend per Customer": 12.76 }, "geometry": { "type": "Point", "coordinates": [ -75.157449, 39.925365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-fvf", "Name": "Jennifer Grocery", "Category": "Grocery Stores", "Address": "4824 Chester Ave", "LATITUDE": 39.944398, "LONGITUDE": -75.216558, "DATE_RANGE_START": 2019, "Total Visits": 187.0, "Total Visitors": 140.0, "POI_CBG": 421010078002.0, "Median Dwell Time": 7.0, "Total Spend": 277.0, "Total Transactions": 23.0, "Total Customers": 22.0, "Median Spend per Transaction": 8.77, "Median Spend per Customer": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.216558, 39.944398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "1500 N 50th St", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2019, "Total Visits": 3928.0, "Total Visitors": 2622.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 16.0, "Total Spend": 236384.0, "Total Transactions": 3012.0, "Total Customers": 1786.0, "Median Spend per Transaction": 33.12, "Median Spend per Customer": 41.68 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-3wk", "Name": "Christian Food Market", "Category": "Grocery Stores", "Address": "2243 Christian St", "LATITUDE": 39.942022, "LONGITUDE": -75.180801, "DATE_RANGE_START": 2019, "Total Visits": 143.0, "Total Visitors": 90.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 12.0, "Total Spend": 1639.0, "Total Transactions": 177.0, "Total Customers": 77.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180801, 39.942022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22h@628-pmb-7yv", "Name": "Sweet As Fudge Candy Shoppe", "Category": "Specialty Food Stores", "Address": "12th & Arch St Reading Terminal Market", "LATITUDE": 39.954075, "LONGITUDE": -75.15933, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 56.0, "Total Spend": 2137.0, "Total Transactions": 165.0, "Total Customers": 152.0, "Median Spend per Transaction": 11.25, "Median Spend per Customer": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15933, 39.954075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "1575 N 52nd St Ste 704", "LATITUDE": 39.978284, "LONGITUDE": -75.224461, "DATE_RANGE_START": 2019, "Total Visits": 713.0, "Total Visitors": 603.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 11.0, "Total Spend": 52677.0, "Total Transactions": 1784.0, "Total Customers": 1514.0, "Median Spend per Transaction": 21.56, "Median Spend per Customer": 24.79 }, "geometry": { "type": "Point", "coordinates": [ -75.224461, 39.978284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj9-6p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5810 N Broad St", "LATITUDE": 40.042256, "LONGITUDE": -75.144223, "DATE_RANGE_START": 2019, "Total Visits": 200.0, "Total Visitors": 170.0, "POI_CBG": 421010278002.0, "Median Dwell Time": 3.0, "Total Spend": 501.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 12.07, "Median Spend per Customer": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144223, 40.042256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9212 Frankford Ave", "LATITUDE": 40.055974, "LONGITUDE": -75.005102, "DATE_RANGE_START": 2019, "Total Visits": 336.0, "Total Visitors": 230.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 7.0, "Total Spend": 306.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 14.01, "Median Spend per Customer": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.005102, 40.055974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-b49", "Name": "E Cigs International", "Category": "Other Miscellaneous Store Retailers", "Address": "6212 Ridge Ave", "LATITUDE": 40.03586, "LONGITUDE": -75.217916, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 87.0, "POI_CBG": 421010213001.0, "Median Dwell Time": 15.0, "Total Spend": 806.0, "Total Transactions": 22.0, "Total Customers": 17.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 45.35 }, "geometry": { "type": "Point", "coordinates": [ -75.217916, 40.03586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6758 Ridge Ave", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2019, "Total Visits": 356.0, "Total Visitors": 230.0, "POI_CBG": 421010215001.0, "Median Dwell Time": 44.0, "Total Spend": 9356.0, "Total Transactions": 282.0, "Total Customers": 243.0, "Median Spend per Transaction": 19.63, "Median Spend per Customer": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-jgk", "Name": "Furniture Unlimited II", "Category": "Furniture Stores", "Address": "22 W Chelten Ave", "LATITUDE": 40.035258, "LONGITUDE": -75.175116, "DATE_RANGE_START": 2019, "Total Visits": 3793.0, "Total Visitors": 2379.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 46.0, "Total Spend": 826.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 247.86, "Median Spend per Customer": 247.86 }, "geometry": { "type": "Point", "coordinates": [ -75.175116, 40.035258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3401 Lancaster Ave", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2019, "Total Visits": 275.0, "Total Visitors": 205.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 4.0, "Total Spend": 4346.0, "Total Transactions": 483.0, "Total Customers": 222.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-p8j-9mk", "Name": "Capriotti Bros", "Category": "Specialty Food Stores", "Address": "7132 Frankford Ave", "LATITUDE": 40.035466, "LONGITUDE": -75.044048, "DATE_RANGE_START": 2019, "Total Visits": 548.0, "Total Visitors": 396.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 16.0, "Total Spend": 369.0, "Total Transactions": 27.0, "Total Customers": 23.0, "Median Spend per Transaction": 12.34, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044048, 40.035466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pm7-sh5", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "2335 S Hemberger St", "LATITUDE": 39.922929, "LONGITUDE": -75.18437, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 92.0, "POI_CBG": 421010037022.0, "Median Dwell Time": 104.0, "Total Spend": 166.0, "Total Transactions": 25.0, "Total Customers": 25.0, "Median Spend per Transaction": 5.22, "Median Spend per Customer": 5.22 }, "geometry": { "type": "Point", "coordinates": [ -75.18437, 39.922929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-rc5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2545 Aramingo Ave Ste 80", "LATITUDE": 39.977844, "LONGITUDE": -75.118479, "DATE_RANGE_START": 2019, "Total Visits": 1889.0, "Total Visitors": 1319.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 9.0, "Total Spend": 7024.0, "Total Transactions": 288.0, "Total Customers": 178.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 17.37 }, "geometry": { "type": "Point", "coordinates": [ -75.118479, 39.977844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7615 Lindbergh Blvd", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2019, "Total Visits": 728.0, "Total Visitors": 536.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 15.0, "Total Spend": 3433.0, "Total Transactions": 132.0, "Total Customers": 85.0, "Median Spend per Transaction": 18.55, "Median Spend per Customer": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "Name": "Beauty Point", "Category": "Health and Personal Care Stores", "Address": "5610 Lancaster Ave", "LATITUDE": 39.980086, "LONGITUDE": -75.235032, "DATE_RANGE_START": 2019, "Total Visits": 218.0, "Total Visitors": 113.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 251.0, "Total Spend": 3590.0, "Total Transactions": 122.0, "Total Customers": 105.0, "Median Spend per Transaction": 21.56, "Median Spend per Customer": 22.11 }, "geometry": { "type": "Point", "coordinates": [ -75.235032, 39.980086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm3-zpv", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "2354 S 7th St", "LATITUDE": 39.919286, "LONGITUDE": -75.159152, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 50.0, "POI_CBG": 421010041021.0, "Median Dwell Time": 2.0, "Total Spend": 72.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.17, "Median Spend per Customer": 15.17 }, "geometry": { "type": "Point", "coordinates": [ -75.159152, 39.919286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgf-fpv", "Name": "Kabobeesh", "Category": "Restaurants and Other Eating Places", "Address": "4201 Chestnut St", "LATITUDE": 39.956522, "LONGITUDE": -75.206506, "DATE_RANGE_START": 2019, "Total Visits": 267.0, "Total Visitors": 220.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 32.0, "Total Spend": 6553.0, "Total Transactions": 218.0, "Total Customers": 177.0, "Median Spend per Transaction": 17.23, "Median Spend per Customer": 24.29 }, "geometry": { "type": "Point", "coordinates": [ -75.206506, 39.956522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-n3q", "Name": "Naya Market St", "Category": "Restaurants and Other Eating Places", "Address": "1601 Market St", "LATITUDE": 39.953238, "LONGITUDE": -75.167055, "DATE_RANGE_START": 2019, "Total Visits": 1752.0, "Total Visitors": 1198.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 29.0, "Total Spend": 1509.0, "Total Transactions": 130.0, "Total Customers": 80.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.953238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1601 S Columbus Blvd", "LATITUDE": 39.923962, "LONGITUDE": -75.142554, "DATE_RANGE_START": 2019, "Total Visits": 1051.0, "Total Visitors": 904.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 6.0, "Total Spend": 10374.0, "Total Transactions": 1276.0, "Total Customers": 956.0, "Median Spend per Transaction": 6.92, "Median Spend per Customer": 8.27 }, "geometry": { "type": "Point", "coordinates": [ -75.142554, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "Name": "Nori Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1636 South St", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 53.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 67.0, "Total Spend": 3617.0, "Total Transactions": 113.0, "Total Customers": 103.0, "Median Spend per Transaction": 26.82, "Median Spend per Customer": 30.57 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "12375 Academy Rd", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2019, "Total Visits": 655.0, "Total Visitors": 440.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 5671.0, "Total Transactions": 893.0, "Total Customers": 396.0, "Median Spend per Transaction": 5.09, "Median Spend per Customer": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "Name": "Hibiscus Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4907 Catharine St", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 52.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 8.0, "Total Spend": 3007.0, "Total Transactions": 163.0, "Total Customers": 145.0, "Median Spend per Transaction": 15.82, "Median Spend per Customer": 15.92 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "Name": "Ox Coffee", "Category": "Restaurants and Other Eating Places", "Address": "616 S 3rd St", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2019, "Total Visits": 3623.0, "Total Visitors": 2943.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 21.0, "Total Spend": 3340.0, "Total Transactions": 445.0, "Total Customers": 223.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "Name": "lululemon athletica", "Category": "Clothing Stores", "Address": "1720 Walnut St", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2019, "Total Visits": 576.0, "Total Visitors": 485.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 24.0, "Total Spend": 25726.0, "Total Transactions": 252.0, "Total Customers": 232.0, "Median Spend per Transaction": 88.0, "Median Spend per Customer": 88.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-5xq", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8920 Frankford Ave", "LATITUDE": 40.051379, "LONGITUDE": -75.010945, "DATE_RANGE_START": 2019, "Total Visits": 728.0, "Total Visitors": 471.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 9.0, "Total Spend": 203.0, "Total Transactions": 17.0, "Total Customers": 15.0, "Median Spend per Transaction": 6.34, "Median Spend per Customer": 10.63 }, "geometry": { "type": "Point", "coordinates": [ -75.010945, 40.051379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1100 W Girard Ave", "LATITUDE": 39.970561, "LONGITUDE": -75.155313, "DATE_RANGE_START": 2019, "Total Visits": 886.0, "Total Visitors": 643.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 9.0, "Total Spend": 1023.0, "Total Transactions": 93.0, "Total Customers": 55.0, "Median Spend per Transaction": 7.44, "Median Spend per Customer": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155313, 39.970561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5601 Vine St", "LATITUDE": 39.96694, "LONGITUDE": -75.233446, "DATE_RANGE_START": 2019, "Total Visits": 959.0, "Total Visitors": 660.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 9.0, "Total Spend": 2337.0, "Total Transactions": 243.0, "Total Customers": 190.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.233446, 39.96694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "Name": "Fairmount Pizza and Grill", "Category": "Restaurants and Other Eating Places", "Address": "2000 Fairmount Ave", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2019, "Total Visits": 260.0, "Total Visitors": 238.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 8.0, "Total Spend": 14078.0, "Total Transactions": 993.0, "Total Customers": 715.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 13.34 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-jjv", "Name": "The Continental Mid Town", "Category": "Restaurants and Other Eating Places", "Address": "1801 Chestnut St", "LATITUDE": 39.951903, "LONGITUDE": -75.170452, "DATE_RANGE_START": 2019, "Total Visits": 2290.0, "Total Visitors": 1891.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 58.0, "Total Spend": 24695.0, "Total Transactions": 431.0, "Total Customers": 388.0, "Median Spend per Transaction": 43.38, "Median Spend per Customer": 45.94 }, "geometry": { "type": "Point", "coordinates": [ -75.170452, 39.951903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-z75", "Name": "Pierogi Factory", "Category": "Restaurants and Other Eating Places", "Address": "9965 Bustleton Ave", "LATITUDE": 40.101174, "LONGITUDE": -75.028995, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 148.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 14.0, "Total Spend": 318.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 41.0, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028995, 40.101174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St Ste 103", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 24.0, "Total Spend": 5496.0, "Total Transactions": 535.0, "Total Customers": 436.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "Name": "Frieda", "Category": "Restaurants and Other Eating Places", "Address": "320 Walnut St", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 73.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 1.0, "Total Spend": 3064.0, "Total Transactions": 163.0, "Total Customers": 110.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 18.56 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "4670 E Roosevelt Blvd", "LATITUDE": 40.029034, "LONGITUDE": -75.099595, "DATE_RANGE_START": 2019, "Total Visits": 1181.0, "Total Visitors": 873.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 5.0, "Total Spend": 42496.0, "Total Transactions": 3381.0, "Total Customers": 2309.0, "Median Spend per Transaction": 10.15, "Median Spend per Customer": 14.39 }, "geometry": { "type": "Point", "coordinates": [ -75.099595, 40.029034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "Name": "Cold Stone Creamery", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978153, "LONGITUDE": -75.119499, "DATE_RANGE_START": 2019, "Total Visits": 212.0, "Total Visitors": 187.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 1.0, "Total Spend": 6532.0, "Total Transactions": 530.0, "Total Customers": 443.0, "Median Spend per Transaction": 10.55, "Median Spend per Customer": 12.23 }, "geometry": { "type": "Point", "coordinates": [ -75.119499, 39.978153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2201 Penrose Ave", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2019, "Total Visits": 420.0, "Total Visitors": 295.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 2.0, "Total Spend": 9844.0, "Total Transactions": 1587.0, "Total Customers": 721.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-whq", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7422 Bustleton Ave", "LATITUDE": 40.051934, "LONGITUDE": -75.058717, "DATE_RANGE_START": 2019, "Total Visits": 916.0, "Total Visitors": 758.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 10.0, "Total Spend": 6279.0, "Total Transactions": 77.0, "Total Customers": 68.0, "Median Spend per Transaction": 53.77, "Median Spend per Customer": 55.05 }, "geometry": { "type": "Point", "coordinates": [ -75.058717, 40.051934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2815 Ridge Ave Ste A", "LATITUDE": 39.986359, "LONGITUDE": -75.179573, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 476.0, "POI_CBG": 421010151021.0, "Median Dwell Time": 9.0, "Total Spend": 264.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 11.3, "Median Spend per Customer": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179573, 39.986359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wtv", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "701 Market St", "LATITUDE": 39.951227, "LONGITUDE": -75.152425, "DATE_RANGE_START": 2019, "Total Visits": 1293.0, "Total Visitors": 978.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 21.0, "Total Spend": 23927.0, "Total Transactions": 2082.0, "Total Customers": 1539.0, "Median Spend per Transaction": 7.38, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152425, 39.951227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "Name": "Buffalo Exchange", "Category": "Used Merchandise Stores", "Address": "1520 Chestnut St", "LATITUDE": 39.951062, "LONGITUDE": -75.166599, "DATE_RANGE_START": 2019, "Total Visits": 12130.0, "Total Visitors": 8380.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 46.0, "Total Spend": 53101.0, "Total Transactions": 1647.0, "Total Customers": 1386.0, "Median Spend per Transaction": 25.92, "Median Spend per Customer": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.166599, 39.951062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "3000 B St", "LATITUDE": 39.995073, "LONGITUDE": -75.126158, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 78.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 3.0, "Total Spend": 1274.0, "Total Transactions": 143.0, "Total Customers": 73.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.126158, 39.995073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "Name": "Beer Express", "Category": "Beer, Wine, and Liquor Stores", "Address": "11718 Bustleton Ave", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2019, "Total Visits": 430.0, "Total Visitors": 350.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 2.0, "Total Spend": 8076.0, "Total Transactions": 292.0, "Total Customers": 197.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 28.11 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-gc5", "Name": "Verree Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7960 Verree Rd", "LATITUDE": 40.072408, "LONGITUDE": -75.076041, "DATE_RANGE_START": 2019, "Total Visits": 142.0, "Total Visitors": 93.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 43.0, "Total Spend": 423.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 25.45 }, "geometry": { "type": "Point", "coordinates": [ -75.076041, 40.072408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dvy-89z", "Name": "Firehouse Bicycles", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "701 S 50th St Fl 2", "LATITUDE": 39.947728, "LONGITUDE": -75.222697, "DATE_RANGE_START": 2019, "Total Visits": 1682.0, "Total Visitors": 1193.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 39.0, "Total Spend": 2881.0, "Total Transactions": 30.0, "Total Customers": 27.0, "Median Spend per Transaction": 56.7, "Median Spend per Customer": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.222697, 39.947728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1700 Washington Ave", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2019, "Total Visits": 573.0, "Total Visitors": 403.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 11.0, "Total Spend": 2774.0, "Total Transactions": 341.0, "Total Customers": 227.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "Name": "Overbrook Pizza Shop", "Category": "Restaurants and Other Eating Places", "Address": "2099 N 63rd St", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 27.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 1.0, "Total Spend": 4471.0, "Total Transactions": 267.0, "Total Customers": 197.0, "Median Spend per Transaction": 14.96, "Median Spend per Customer": 18.42 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "Name": "Papa Joe's", "Category": "Restaurants and Other Eating Places", "Address": "7204 Ogontz Ave", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 35.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 1139.0, "Total Spend": 32.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.54, "Median Spend per Customer": 9.54 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-8y9", "Name": "Accu Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4802 Spruce St", "LATITUDE": 39.953369, "LONGITUDE": -75.218457, "DATE_RANGE_START": 2019, "Total Visits": 260.0, "Total Visitors": 195.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 20.0, "Total Spend": 3565.0, "Total Transactions": 197.0, "Total Customers": 150.0, "Median Spend per Transaction": 16.67, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.218457, 39.953369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "Name": "Monk's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "264 S 16th St", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2019, "Total Visits": 358.0, "Total Visitors": 298.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 61.0, "Total Spend": 34242.0, "Total Transactions": 618.0, "Total Customers": 576.0, "Median Spend per Transaction": 43.91, "Median Spend per Customer": 45.73 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "Name": "Sorrento's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1624 W Olney Ave", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 50.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 5.0, "Total Spend": 1409.0, "Total Transactions": 75.0, "Total Customers": 68.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6114 Lancaster Ave", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2019, "Total Visits": 328.0, "Total Visitors": 280.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 5.0, "Total Spend": 968.0, "Total Transactions": 60.0, "Total Customers": 52.0, "Median Spend per Transaction": 12.36, "Median Spend per Customer": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3110 W Cheltenham Ave", "LATITUDE": 40.081002, "LONGITUDE": -75.170911, "DATE_RANGE_START": 2019, "Total Visits": 580.0, "Total Visitors": 460.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 8.0, "Total Spend": 9945.0, "Total Transactions": 771.0, "Total Customers": 576.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 13.58 }, "geometry": { "type": "Point", "coordinates": [ -75.170911, 40.081002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1945 Callowhill St", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2019, "Total Visits": 371.0, "Total Visitors": 321.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 7.0, "Total Spend": 7991.0, "Total Transactions": 1213.0, "Total Customers": 775.0, "Median Spend per Transaction": 5.32, "Median Spend per Customer": 6.41 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-7yv", "Name": "Old City Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953757, "LONGITUDE": -75.158885, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 22023.0, "Total Transactions": 3673.0, "Total Customers": 2062.0, "Median Spend per Transaction": 4.75, "Median Spend per Customer": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158885, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2998A Welsh Rd", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 222.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 1.0, "Total Spend": 3720.0, "Total Transactions": 701.0, "Total Customers": 283.0, "Median Spend per Transaction": 4.62, "Median Spend per Customer": 7.81 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-zj9", "Name": "Arch Gourmet", "Category": "Grocery Stores", "Address": "2200 Arch St", "LATITUDE": 39.955807, "LONGITUDE": -75.176416, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 1.0, "Total Spend": 2700.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176416, 39.955807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj4-7wk", "Name": "Vernie's Soul Food", "Category": "Restaurants and Other Eating Places", "Address": "1800 W Eleanor St", "LATITUDE": 40.027362, "LONGITUDE": -75.153997, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010280003.0, "Median Dwell Time": null, "Total Spend": 1085.0, "Total Transactions": 48.0, "Total Customers": 43.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.153997, 40.027362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "Name": "Galaxy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1239 Cottman Ave", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 33.0, "POI_CBG": 421010338004.0, "Median Dwell Time": 38.0, "Total Spend": 336.0, "Total Transactions": 27.0, "Total Customers": 17.0, "Median Spend per Transaction": 10.78, "Median Spend per Customer": 10.86 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-73q", "Name": "Byrne's Tavern", "Category": "Restaurants and Other Eating Places", "Address": "3301 Richmond St", "LATITUDE": 39.984147, "LONGITUDE": -75.098754, "DATE_RANGE_START": 2019, "Total Visits": 288.0, "Total Visitors": 265.0, "POI_CBG": 421010378002.0, "Median Dwell Time": 1.0, "Total Spend": 6340.0, "Total Transactions": 138.0, "Total Customers": 112.0, "Median Spend per Transaction": 43.0, "Median Spend per Customer": 47.26 }, "geometry": { "type": "Point", "coordinates": [ -75.098754, 39.984147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phy-v9f", "Name": "The Crab Shack 2", "Category": "Restaurants and Other Eating Places", "Address": "5305 Rising Sun Ave", "LATITUDE": 40.030196, "LONGITUDE": -75.117947, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 233.0, "POI_CBG": 421010290004.0, "Median Dwell Time": 6.0, "Total Spend": 2628.0, "Total Transactions": 90.0, "Total Customers": 82.0, "Median Spend per Transaction": 24.3, "Median Spend per Customer": 28.5 }, "geometry": { "type": "Point", "coordinates": [ -75.117947, 40.030196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "Name": "Asian Bamboo House", "Category": "Restaurants and Other Eating Places", "Address": "9456 State Rd", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 108.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 20.0, "Total Spend": 3277.0, "Total Transactions": 118.0, "Total Customers": 87.0, "Median Spend per Transaction": 20.42, "Median Spend per Customer": 30.83 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvr-cyv", "Name": "Chrisetta's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6600 Elmwood Ave", "LATITUDE": 39.9211, "LONGITUDE": -75.231507, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010062001.0, "Median Dwell Time": 1.0, "Total Spend": 500.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 150.0, "Median Spend per Customer": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231507, 39.9211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "Name": "Castor Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6038 Castor Ave", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 53.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 423.0, "Total Spend": 1673.0, "Total Transactions": 95.0, "Total Customers": 80.0, "Median Spend per Transaction": 13.67, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6p9", "Name": "DelFrisco's Double Eagle Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "1428 Chestnut St # 1432", "LATITUDE": 39.950881, "LONGITUDE": -75.165456, "DATE_RANGE_START": 2019, "Total Visits": 4581.0, "Total Visitors": 3505.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 75.0, "Total Spend": 64470.0, "Total Transactions": 520.0, "Total Customers": 463.0, "Median Spend per Transaction": 85.63, "Median Spend per Customer": 104.56 }, "geometry": { "type": "Point", "coordinates": [ -75.165456, 39.950881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-t5f", "Name": "Golden Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "679 N Broad St", "LATITUDE": 39.965831, "LONGITUDE": -75.160375, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 58.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 7.0, "Total Spend": 1036.0, "Total Transactions": 58.0, "Total Customers": 45.0, "Median Spend per Transaction": 17.92, "Median Spend per Customer": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.160375, 39.965831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p82-3wk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "700 Robbins St", "LATITUDE": 40.039012, "LONGITUDE": -75.097789, "DATE_RANGE_START": 2019, "Total Visits": 425.0, "Total Visitors": 268.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 134.0, "Total Spend": 1786.0, "Total Transactions": 187.0, "Total Customers": 118.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.097789, 40.039012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9920 Bustleton Ave", "LATITUDE": 40.101484, "LONGITUDE": -75.030277, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 267.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 7.0, "Total Spend": 1059.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 57.63, "Median Spend per Customer": 57.63 }, "geometry": { "type": "Point", "coordinates": [ -75.030277, 40.101484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pgg-p9z", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3118 W Allegheny Ave", "LATITUDE": 40.004888, "LONGITUDE": -75.180206, "DATE_RANGE_START": 2019, "Total Visits": 403.0, "Total Visitors": 292.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 21.0, "Total Spend": 4145.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 216.49, "Median Spend per Customer": 216.49 }, "geometry": { "type": "Point", "coordinates": [ -75.180206, 40.004888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5200 Woodland Ave", "LATITUDE": 39.938259, "LONGITUDE": -75.21557, "DATE_RANGE_START": 2019, "Total Visits": 435.0, "Total Visitors": 356.0, "POI_CBG": 421010074005.0, "Median Dwell Time": 5.0, "Total Spend": 7110.0, "Total Transactions": 508.0, "Total Customers": 398.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.21557, 39.938259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-35z", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4641 Chestnut St # 51", "LATITUDE": 39.957614, "LONGITUDE": -75.214932, "DATE_RANGE_START": 2019, "Total Visits": 1581.0, "Total Visitors": 1171.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 31.0, "Total Spend": 3952.0, "Total Transactions": 208.0, "Total Customers": 127.0, "Median Spend per Transaction": 12.63, "Median Spend per Customer": 19.59 }, "geometry": { "type": "Point", "coordinates": [ -75.214932, 39.957614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030253, "LONGITUDE": -75.101415, "DATE_RANGE_START": 2019, "Total Visits": 1502.0, "Total Visitors": 1321.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 16.0, "Total Spend": 7122.0, "Total Transactions": 133.0, "Total Customers": 112.0, "Median Spend per Transaction": 32.03, "Median Spend per Customer": 41.35 }, "geometry": { "type": "Point", "coordinates": [ -75.101415, 40.030253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "Name": "Urban Outfitters", "Category": "Clothing Stores", "Address": "1627 Walnut St", "LATITUDE": 39.950066, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2019, "Total Visits": 1549.0, "Total Visitors": 1339.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 11.0, "Total Spend": 12619.0, "Total Transactions": 257.0, "Total Customers": 230.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "Name": "Fleishman Fabrics & Supplies", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "737 S 4th St", "LATITUDE": 39.93943, "LONGITUDE": -75.149516, "DATE_RANGE_START": 2019, "Total Visits": 486.0, "Total Visitors": 336.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 106.0, "Total Spend": 3284.0, "Total Transactions": 47.0, "Total Customers": 40.0, "Median Spend per Transaction": 24.73, "Median Spend per Customer": 38.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149516, 39.93943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4617 N 5th St", "LATITUDE": 40.021323, "LONGITUDE": -75.133522, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 328.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 9.0, "Total Spend": 1722.0, "Total Transactions": 205.0, "Total Customers": 115.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 8.88 }, "geometry": { "type": "Point", "coordinates": [ -75.133522, 40.021323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-236@63s-dw4-rzf", "Name": "L'Occitane", "Category": "Health and Personal Care Stores", "Address": "8000 Essington Ave", "LATITUDE": 39.895196, "LONGITUDE": -75.227963, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 518.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 4483.0, "Total Transactions": 108.0, "Total Customers": 98.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.227963, 39.895196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2751 W Passyunk Ave", "LATITUDE": 39.921602, "LONGITUDE": -75.193164, "DATE_RANGE_START": 2019, "Total Visits": 2535.0, "Total Visitors": 1941.0, "POI_CBG": 421010036003.0, "Median Dwell Time": 4.0, "Total Spend": 458.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193164, 39.921602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-kpv", "Name": "Foreign Bazaar", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1921 Chestnut St", "LATITUDE": 39.952092, "LONGITUDE": -75.172676, "DATE_RANGE_START": 2019, "Total Visits": 260.0, "Total Visitors": 193.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 80.0, "Total Spend": 849.0, "Total Transactions": 30.0, "Total Customers": 27.0, "Median Spend per Transaction": 23.6, "Median Spend per Customer": 24.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172676, 39.952092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "Name": "Thunderbird Salvage", "Category": "Used Merchandise Stores", "Address": "2441 Frankford Ave", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 135.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 100.0, "Total Spend": 5869.0, "Total Transactions": 215.0, "Total Customers": 167.0, "Median Spend per Transaction": 21.25, "Median Spend per Customer": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pm3-vpv", "Name": "Philadelphia Scooters", "Category": "Other Motor Vehicle Dealers", "Address": "2501 Wharton St Ste G", "LATITUDE": 39.936705, "LONGITUDE": -75.186573, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 90.0, "POI_CBG": 421010020002.0, "Median Dwell Time": 17.0, "Total Spend": 453.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 135.95, "Median Spend per Customer": 135.95 }, "geometry": { "type": "Point", "coordinates": [ -75.186573, 39.936705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3101 W Allegheny Ave", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2019, "Total Visits": 232.0, "Total Visitors": 208.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 6.0, "Total Spend": 6656.0, "Total Transactions": 208.0, "Total Customers": 165.0, "Median Spend per Transaction": 18.46, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1440 E Erie Ave", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 243.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 3.0, "Total Spend": 7548.0, "Total Transactions": 187.0, "Total Customers": 145.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "Name": "Harbor Freight Tools", "Category": "Building Material and Supplies Dealers", "Address": "151 Franklin Mills Blvd", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2019, "Total Visits": 1106.0, "Total Visitors": 933.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 33927.0, "Total Transactions": 538.0, "Total Customers": 448.0, "Median Spend per Transaction": 32.85, "Median Spend per Customer": 37.54 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-syv", "Name": "Snyder Supermarket", "Category": "Grocery Stores", "Address": "2700 Snyder Ave", "LATITUDE": 39.926819, "LONGITUDE": -75.191169, "DATE_RANGE_START": 2019, "Total Visits": 598.0, "Total Visitors": 255.0, "POI_CBG": 421010036003.0, "Median Dwell Time": 210.0, "Total Spend": 19.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.63, "Median Spend per Customer": 5.63 }, "geometry": { "type": "Point", "coordinates": [ -75.191169, 39.926819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-835", "Name": "Iovine Brothers Produce", "Category": "Grocery Stores", "Address": "1136 Arch St", "LATITUDE": 39.952988, "LONGITUDE": -75.158802, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 11367.0, "Total Transactions": 948.0, "Total Customers": 648.0, "Median Spend per Transaction": 9.26, "Median Spend per Customer": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158802, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.037805, "LONGITUDE": -75.117796, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 143.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 13.0, "Total Spend": 142.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 29.62, "Median Spend per Customer": 42.51 }, "geometry": { "type": "Point", "coordinates": [ -75.117796, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-6x5", "Name": "Brooks Brothers", "Category": "Clothing Stores", "Address": "1513 Walnut St", "LATITUDE": 39.949887, "LONGITUDE": -75.166618, "DATE_RANGE_START": 2019, "Total Visits": 541.0, "Total Visitors": 406.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 62.0, "Total Spend": 8963.0, "Total Transactions": 60.0, "Total Customers": 45.0, "Median Spend per Transaction": 104.0, "Median Spend per Customer": 127.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166618, 39.949887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "1575 N 52nd St", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2019, "Total Visits": 725.0, "Total Visitors": 638.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 1.0, "Total Spend": 106.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 31.88, "Median Spend per Customer": 31.88 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "Name": "10 Spot/MadRag", "Category": "Clothing Stores", "Address": "2250 W Oregon Ave", "LATITUDE": 39.917816, "LONGITUDE": -75.185164, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 6.0, "Total Spend": 19699.0, "Total Transactions": 665.0, "Total Customers": 538.0, "Median Spend per Transaction": 21.68, "Median Spend per Customer": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.185164, 39.917816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "Name": "Journeys", "Category": "Shoe Stores", "Address": "1559 Franklin Mills Cir", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2019, "Total Visits": 225.0, "Total Visitors": 200.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 7.0, "Total Spend": 2765.0, "Total Transactions": 48.0, "Total Customers": 47.0, "Median Spend per Transaction": 54.99, "Median Spend per Customer": 56.74 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5814 Woodland Ave", "LATITUDE": 39.931302, "LONGITUDE": -75.225599, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 295.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 8.0, "Total Spend": 1332.0, "Total Transactions": 175.0, "Total Customers": 138.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225599, 39.931302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6337 N Broad St", "LATITUDE": 40.050125, "LONGITUDE": -75.141867, "DATE_RANGE_START": 2019, "Total Visits": 326.0, "Total Visitors": 257.0, "POI_CBG": 421010268004.0, "Median Dwell Time": 7.0, "Total Spend": 2463.0, "Total Transactions": 285.0, "Total Customers": 173.0, "Median Spend per Transaction": 7.13, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.141867, 40.050125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2417 Welsh Rd", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2019, "Total Visits": 263.0, "Total Visitors": 175.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 32.0, "Total Spend": 538.0, "Total Transactions": 35.0, "Total Customers": 25.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pp2-47q", "Name": "Tinys Bottle Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "3124 Richmond St", "LATITUDE": 39.982331, "LONGITUDE": -75.103167, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 75.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 48.0, "Total Spend": 366.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 23.05, "Median Spend per Customer": 23.05 }, "geometry": { "type": "Point", "coordinates": [ -75.103167, 39.982331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "Name": "Guzman Grocery", "Category": "Grocery Stores", "Address": "3100 E St", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010177023.0, "Median Dwell Time": 5.0, "Total Spend": 121.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 11.29 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-gkz", "Name": "Ristorante Aroma", "Category": "Restaurants and Other Eating Places", "Address": "1245 S 3rd St", "LATITUDE": 39.944903, "LONGITUDE": -75.160742, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 3.0, "Total Spend": 945.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 98.28, "Median Spend per Customer": 98.28 }, "geometry": { "type": "Point", "coordinates": [ -75.160742, 39.944903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgd-z9f", "Name": "UrHomeInPhilly", "Category": "Traveler Accommodation", "Address": "3601 Market St", "LATITUDE": 39.956628, "LONGITUDE": -75.194459, "DATE_RANGE_START": 2019, "Total Visits": 12156.0, "Total Visitors": 6523.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 84.0, "Total Spend": 440.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 35.39 }, "geometry": { "type": "Point", "coordinates": [ -75.194459, 39.956628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw4-q75", "Name": "Aloft Hotels", "Category": "Traveler Accommodation", "Address": "4301 Island Ave", "LATITUDE": 39.891128, "LONGITUDE": -75.233821, "DATE_RANGE_START": 2019, "Total Visits": 1486.0, "Total Visitors": 993.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 286.0, "Total Spend": 1350.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 190.05, "Median Spend per Customer": 190.05 }, "geometry": { "type": "Point", "coordinates": [ -75.233821, 39.891128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "Name": "1 Tippling Place", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2006 Chestnut St", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2019, "Total Visits": 197.0, "Total Visitors": 125.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 240.0, "Total Spend": 3424.0, "Total Transactions": 85.0, "Total Customers": 75.0, "Median Spend per Transaction": 33.0, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-nwk", "Name": "One Pound Cheesesteaks", "Category": "Restaurants and Other Eating Places", "Address": "2661 Kensington Ave", "LATITUDE": 39.989593, "LONGITUDE": -75.125509, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 163.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 5.0, "Total Spend": 87.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125509, 39.989593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-jsq", "Name": "Rione", "Category": "Restaurants and Other Eating Places", "Address": "102 S 21st St", "LATITUDE": 39.951947, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 75.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 15.0, "Total Spend": 3286.0, "Total Transactions": 267.0, "Total Customers": 218.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 11.58 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.951947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmb-dy9", "Name": "Dante & Luigi's", "Category": "Restaurants and Other Eating Places", "Address": "762 S 10th St", "LATITUDE": 39.940085, "LONGITUDE": -75.159485, "DATE_RANGE_START": 2019, "Total Visits": 190.0, "Total Visitors": 102.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 234.0, "Total Spend": 769.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 122.5, "Median Spend per Customer": 122.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159485, 39.940085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-f9f", "Name": "Dimension Latin Grill", "Category": "Restaurants and Other Eating Places", "Address": "7312 Castor Ave", "LATITUDE": 40.052647, "LONGITUDE": -75.065236, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 102.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 43.0, "Total Spend": 2730.0, "Total Transactions": 70.0, "Total Customers": 48.0, "Median Spend per Transaction": 28.64, "Median Spend per Customer": 45.32 }, "geometry": { "type": "Point", "coordinates": [ -75.065236, 40.052647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-2zf", "Name": "Asia Mix Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd Ste 154", "LATITUDE": 40.103233, "LONGITUDE": -75.010226, "DATE_RANGE_START": 2019, "Total Visits": 781.0, "Total Visitors": 636.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 13.0, "Total Spend": 291.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 45.33, "Median Spend per Customer": 45.33 }, "geometry": { "type": "Point", "coordinates": [ -75.010226, 40.103233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-7h5", "Name": "Estia", "Category": "Restaurants and Other Eating Places", "Address": "1405 Locust St", "LATITUDE": 39.948448, "LONGITUDE": -75.165269, "DATE_RANGE_START": 2019, "Total Visits": 835.0, "Total Visitors": 570.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 84.0, "Total Spend": 12225.0, "Total Transactions": 110.0, "Total Customers": 97.0, "Median Spend per Transaction": 86.4, "Median Spend per Customer": 93.01 }, "geometry": { "type": "Point", "coordinates": [ -75.165269, 39.948448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj2-7bk", "Name": "Pizza House Express", "Category": "Restaurants and Other Eating Places", "Address": "529 E Allegheny Ave", "LATITUDE": 39.997808, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2019, "Total Visits": 341.0, "Total Visitors": 175.0, "POI_CBG": 421010177023.0, "Median Dwell Time": 98.0, "Total Spend": 479.0, "Total Transactions": 32.0, "Total Customers": 32.0, "Median Spend per Transaction": 12.19, "Median Spend per Customer": 12.19 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.997808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pm9-wc5", "Name": "Rebel Taco", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949731, "LONGITUDE": -75.148051, "DATE_RANGE_START": 2019, "Total Visits": 8470.0, "Total Visitors": 6511.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 36.0, "Total Spend": 7519.0, "Total Transactions": 541.0, "Total Customers": 408.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 14.39 }, "geometry": { "type": "Point", "coordinates": [ -75.148051, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "Name": "Checkers Drive-In Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "3500 Aramingo Ave", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 85.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 19.0, "Total Spend": 3052.0, "Total Transactions": 301.0, "Total Customers": 228.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6417 Harbison Ave", "LATITUDE": 40.032699, "LONGITUDE": -75.063191, "DATE_RANGE_START": 2019, "Total Visits": 785.0, "Total Visitors": 618.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 9.0, "Total Spend": 1868.0, "Total Transactions": 137.0, "Total Customers": 110.0, "Median Spend per Transaction": 11.39, "Median Spend per Customer": 15.69 }, "geometry": { "type": "Point", "coordinates": [ -75.063191, 40.032699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-hh5", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "1821 Chestnut St", "LATITUDE": 39.951987, "LONGITUDE": -75.171121, "DATE_RANGE_START": 2019, "Total Visits": 1832.0, "Total Visitors": 1143.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 131.0, "Total Spend": 394.0, "Total Transactions": 25.0, "Total Customers": 25.0, "Median Spend per Transaction": 14.1, "Median Spend per Customer": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171121, 39.951987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "24th & Oregon St", "LATITUDE": 39.919412, "LONGITUDE": -75.187304, "DATE_RANGE_START": 2019, "Total Visits": 1964.0, "Total Visitors": 1321.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 9.0, "Total Spend": 15434.0, "Total Transactions": 1632.0, "Total Customers": 1088.0, "Median Spend per Transaction": 8.12, "Median Spend per Customer": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.187304, 39.919412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1630 E Wadsworth Ave", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2019, "Total Visits": 771.0, "Total Visitors": 556.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 6.0, "Total Spend": 6221.0, "Total Transactions": 1001.0, "Total Customers": 623.0, "Median Spend per Transaction": 5.07, "Median Spend per Customer": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-wx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "701 Market St", "LATITUDE": 39.950748, "LONGITUDE": -75.151909, "DATE_RANGE_START": 2019, "Total Visits": 465.0, "Total Visitors": 410.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 7.0, "Total Spend": 5525.0, "Total Transactions": 1338.0, "Total Customers": 505.0, "Median Spend per Transaction": 3.66, "Median Spend per Customer": 6.03 }, "geometry": { "type": "Point", "coordinates": [ -75.151909, 39.950748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-kj9", "Name": "The Pleasure Chest", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "2039 Walnut St", "LATITUDE": 39.950864, "LONGITUDE": -75.175215, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 60.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 385.0, "Total Spend": 856.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 62.02, "Median Spend per Customer": 62.02 }, "geometry": { "type": "Point", "coordinates": [ -75.175215, 39.950864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dtm-v75", "Name": "Delta Hotels", "Category": "Traveler Accommodation", "Address": "500 Stevens Dr", "LATITUDE": 39.873088, "LONGITUDE": -75.27466, "DATE_RANGE_START": 2019, "Total Visits": 2545.0, "Total Visitors": 1637.0, "POI_CBG": 420454037012.0, "Median Dwell Time": 287.0, "Total Spend": 4299.0, "Total Transactions": 77.0, "Total Customers": 50.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27466, 39.873088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-td9", "Name": "Watkins Drinkery", "Category": "Restaurants and Other Eating Places", "Address": "1712 S 10th St", "LATITUDE": 39.927952, "LONGITUDE": -75.162075, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 37.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 89.0, "Total Spend": 9915.0, "Total Transactions": 253.0, "Total Customers": 132.0, "Median Spend per Transaction": 30.95, "Median Spend per Customer": 51.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162075, 39.927952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "Name": "The Beer Peddlers", "Category": "Beer, Wine, and Liquor Stores", "Address": "1942 S Columbus Blvd", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 67.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 6.0, "Total Spend": 15120.0, "Total Transactions": 508.0, "Total Customers": 395.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "4424 N Broad St", "LATITUDE": 40.021127, "LONGITUDE": -75.149781, "DATE_RANGE_START": 2019, "Total Visits": 994.0, "Total Visitors": 713.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 11.0, "Total Spend": 3216.0, "Total Transactions": 103.0, "Total Customers": 63.0, "Median Spend per Transaction": 16.32, "Median Spend per Customer": 24.14 }, "geometry": { "type": "Point", "coordinates": [ -75.149781, 40.021127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "Name": "South Square Market", "Category": "Grocery Stores", "Address": "2221 South St", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2019, "Total Visits": 483.0, "Total Visitors": 360.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 7.0, "Total Spend": 66912.0, "Total Transactions": 2955.0, "Total Customers": 1228.0, "Median Spend per Transaction": 15.98, "Median Spend per Customer": 27.75 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "5632 Ridge Ave", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2019, "Total Visits": 405.0, "Total Visitors": 267.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 4.0, "Total Spend": 2274.0, "Total Transactions": 205.0, "Total Customers": 98.0, "Median Spend per Transaction": 6.45, "Median Spend per Customer": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-7qz", "Name": "Wax Downtown", "Category": "Specialty Food Stores", "Address": "740 Sansom St Ste 505F", "LATITUDE": 39.948559, "LONGITUDE": -75.153964, "DATE_RANGE_START": 2019, "Total Visits": 5045.0, "Total Visitors": 3227.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 99.0, "Total Spend": 427.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153964, 39.948559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6150 N 5th St", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2019, "Total Visits": 721.0, "Total Visitors": 528.0, "POI_CBG": 421010275001.0, "Median Dwell Time": 10.0, "Total Spend": 2781.0, "Total Transactions": 148.0, "Total Customers": 113.0, "Median Spend per Transaction": 12.04, "Median Spend per Customer": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave # B", "LATITUDE": 39.913456, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 93.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 11.0, "Total Spend": 5219.0, "Total Transactions": 155.0, "Total Customers": 102.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7261 Roosevelt Blvd", "LATITUDE": 40.043988, "LONGITUDE": -75.054077, "DATE_RANGE_START": 2019, "Total Visits": 6946.0, "Total Visitors": 4934.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 4.0, "Total Spend": 892.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.054077, 40.043988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmb-rp9", "Name": "Recess Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "125 S 2nd St", "LATITUDE": 39.947601, "LONGITUDE": -75.143229, "DATE_RANGE_START": 2019, "Total Visits": 2002.0, "Total Visitors": 1378.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 37.0, "Total Spend": 9640.0, "Total Transactions": 153.0, "Total Customers": 103.0, "Median Spend per Transaction": 30.18, "Median Spend per Customer": 46.16 }, "geometry": { "type": "Point", "coordinates": [ -75.143229, 39.947601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-66k", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2201 Cottman Ave Ste 245", "LATITUDE": 40.049027, "LONGITUDE": -75.060408, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 235.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 5.0, "Total Spend": 9421.0, "Total Transactions": 167.0, "Total Customers": 148.0, "Median Spend per Transaction": 40.83, "Median Spend per Customer": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.060408, 40.049027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgh-6ff", "Name": "Lou & Choo's Lounge", "Category": "Restaurants and Other Eating Places", "Address": "2101 W Hunting Park Ave", "LATITUDE": 40.011812, "LONGITUDE": -75.163369, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 238.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 57.0, "Total Spend": 1557.0, "Total Transactions": 52.0, "Total Customers": 32.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163369, 40.011812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg8-ks5", "Name": "SPOT Gourmet Burgers", "Category": "Restaurants and Other Eating Places", "Address": "2821 W Girard Ave", "LATITUDE": 39.974624, "LONGITUDE": -75.182611, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 22.0, "Total Spend": 364.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.44, "Median Spend per Customer": 27.2 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.974624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4334 Frankford Ave", "LATITUDE": 40.012134, "LONGITUDE": -75.088896, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 273.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 6.0, "Total Spend": 1767.0, "Total Transactions": 198.0, "Total Customers": 107.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.088896, 40.012134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "42 W Chelten Ave", "LATITUDE": 40.034612, "LONGITUDE": -75.175438, "DATE_RANGE_START": 2019, "Total Visits": 3793.0, "Total Visitors": 2379.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 46.0, "Total Spend": 1205.0, "Total Transactions": 135.0, "Total Customers": 102.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.175438, 40.034612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "Name": "China Gate", "Category": "Restaurants and Other Eating Places", "Address": "3822 Morrell Ave", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2019, "Total Visits": 926.0, "Total Visitors": 620.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 18.0, "Total Spend": 1201.0, "Total Transactions": 57.0, "Total Customers": 48.0, "Median Spend per Transaction": 17.93, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-7qz", "Name": "Vedge", "Category": "Restaurants and Other Eating Places", "Address": "1221 Locust St", "LATITUDE": 39.947987, "LONGITUDE": -75.161387, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 158.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 34.0, "Total Spend": 25739.0, "Total Transactions": 228.0, "Total Customers": 212.0, "Median Spend per Transaction": 100.16, "Median Spend per Customer": 107.48 }, "geometry": { "type": "Point", "coordinates": [ -75.161387, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "Name": "A Lin Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1942 S 9th St", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 10.0, "Total Spend": 519.0, "Total Transactions": 28.0, "Total Customers": 23.0, "Median Spend per Transaction": 17.55, "Median Spend per Customer": 19.38 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmd-vfz", "Name": "Tsuki Sushi", "Category": "Restaurants and Other Eating Places", "Address": "2135 Walnut St", "LATITUDE": 39.951096, "LONGITUDE": -75.177135, "DATE_RANGE_START": 2019, "Total Visits": 345.0, "Total Visitors": 308.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 2.0, "Total Spend": 2039.0, "Total Transactions": 77.0, "Total Customers": 72.0, "Median Spend per Transaction": 19.48, "Median Spend per Customer": 23.01 }, "geometry": { "type": "Point", "coordinates": [ -75.177135, 39.951096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-6ff", "Name": "R & R Produce", "Category": "Grocery Stores", "Address": "2300 Cottman Ave", "LATITUDE": 40.047175, "LONGITUDE": -75.05967, "DATE_RANGE_START": 2019, "Total Visits": 451.0, "Total Visitors": 396.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 7.0, "Total Spend": 1116.0, "Total Transactions": 87.0, "Total Customers": 62.0, "Median Spend per Transaction": 10.1, "Median Spend per Customer": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.05967, 40.047175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "Name": "Wilson's Market", "Category": "Grocery Stores", "Address": "1337 W Olney Ave", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2019, "Total Visits": 598.0, "Total Visitors": 480.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 5.0, "Total Spend": 150.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 10.58, "Median Spend per Customer": 10.84 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "35 S 13th St", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2019, "Total Visits": 638.0, "Total Visitors": 475.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 121.0, "Total Spend": 5835.0, "Total Transactions": 508.0, "Total Customers": 396.0, "Median Spend per Transaction": 9.7, "Median Spend per Customer": 11.35 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pj3-wff", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4616 N Broad St # 4650", "LATITUDE": 40.024012, "LONGITUDE": -75.148537, "DATE_RANGE_START": 2019, "Total Visits": 450.0, "Total Visitors": 366.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 4.0, "Total Spend": 2262.0, "Total Transactions": 123.0, "Total Customers": 65.0, "Median Spend per Transaction": 10.29, "Median Spend per Customer": 15.28 }, "geometry": { "type": "Point", "coordinates": [ -75.148537, 40.024012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3925 Walnut St", "LATITUDE": 39.95427, "LONGITUDE": -75.201494, "DATE_RANGE_START": 2019, "Total Visits": 4927.0, "Total Visitors": 2958.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 83.0, "Total Spend": 23905.0, "Total Transactions": 1574.0, "Total Customers": 755.0, "Median Spend per Transaction": 9.18, "Median Spend per Customer": 20.29 }, "geometry": { "type": "Point", "coordinates": [ -75.201494, 39.95427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-xyv", "Name": "M S Mart", "Category": "Health and Personal Care Stores", "Address": "222 N 10th St", "LATITUDE": 39.95623, "LONGITUDE": -75.155785, "DATE_RANGE_START": 2019, "Total Visits": 3835.0, "Total Visitors": 2537.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 123.0, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.8, "Median Spend per Customer": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155785, 39.95623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "2047 Cottman Ave", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2019, "Total Visits": 282.0, "Total Visitors": 257.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 17.0, "Total Spend": 1797.0, "Total Transactions": 38.0, "Total Customers": 35.0, "Median Spend per Transaction": 39.08, "Median Spend per Customer": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-w8v", "Name": "Aéropostale", "Category": "Clothing Stores", "Address": "1434 Franklin Mills Cir # 717A", "LATITUDE": 40.086851, "LONGITUDE": -74.962597, "DATE_RANGE_START": 2019, "Total Visits": 212.0, "Total Visitors": 208.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 1853.0, "Total Transactions": 47.0, "Total Customers": 45.0, "Median Spend per Transaction": 26.02, "Median Spend per Customer": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962597, 40.086851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p8j-6hq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7383 State Rd & Bleigh St", "LATITUDE": 40.026851, "LONGITUDE": -75.028938, "DATE_RANGE_START": 2019, "Total Visits": 976.0, "Total Visitors": 786.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 3.0, "Total Spend": 638.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 23.22, "Median Spend per Customer": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.028938, 40.026851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "Name": "Neighborhood Books", "Category": "Book Stores and News Dealers", "Address": "1906 South St", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2019, "Total Visits": 631.0, "Total Visitors": 403.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 201.0, "Total Spend": 859.0, "Total Transactions": 57.0, "Total Customers": 53.0, "Median Spend per Transaction": 13.93, "Median Spend per Customer": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y7q", "Name": "Day N Nite", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "908 Cherry St", "LATITUDE": 39.954252, "LONGITUDE": -75.1549, "DATE_RANGE_START": 2019, "Total Visits": 6866.0, "Total Visitors": 4814.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 50.0, "Total Spend": 4348.0, "Total Transactions": 83.0, "Total Customers": 62.0, "Median Spend per Transaction": 33.63, "Median Spend per Customer": 43.98 }, "geometry": { "type": "Point", "coordinates": [ -75.1549, 39.954252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm9-whq", "Name": "Old City Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "240 Market St", "LATITUDE": 39.949756, "LONGITUDE": -75.145531, "DATE_RANGE_START": 2019, "Total Visits": 2119.0, "Total Visitors": 1621.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 39.0, "Total Spend": 3289.0, "Total Transactions": 180.0, "Total Customers": 138.0, "Median Spend per Transaction": 13.13, "Median Spend per Customer": 17.97 }, "geometry": { "type": "Point", "coordinates": [ -75.145531, 39.949756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7v-fmk", "Name": "Ernie's Original Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1618 Cottman Ave", "LATITUDE": 40.054659, "LONGITUDE": -75.072746, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 120.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 27.0, "Total Spend": 184.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 26.6, "Median Spend per Customer": 26.6 }, "geometry": { "type": "Point", "coordinates": [ -75.072746, 40.054659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St # 08", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2019, "Total Visits": 481.0, "Total Visitors": 396.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 9.0, "Total Spend": 10760.0, "Total Transactions": 1339.0, "Total Customers": 978.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 8.88 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-hkf", "Name": "The Coventry Deli", "Category": "Restaurants and Other Eating Places", "Address": "2000 Market St", "LATITUDE": 39.953273, "LONGITUDE": -75.173676, "DATE_RANGE_START": 2019, "Total Visits": 7013.0, "Total Visitors": 3256.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 380.0, "Total Spend": 14903.0, "Total Transactions": 1727.0, "Total Customers": 655.0, "Median Spend per Transaction": 8.91, "Median Spend per Customer": 13.38 }, "geometry": { "type": "Point", "coordinates": [ -75.173676, 39.953273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pj2-d35", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1050 E Hunting Park Ave", "LATITUDE": 40.010891, "LONGITUDE": -75.107156, "DATE_RANGE_START": 2019, "Total Visits": 370.0, "Total Visitors": 245.0, "POI_CBG": 421010191006.0, "Median Dwell Time": 24.0, "Total Spend": 3048.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107156, 40.010891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-j5f", "Name": "Kitchen Kapers", "Category": "Electronics and Appliance Stores", "Address": "213 S 17th St", "LATITUDE": 39.949485, "LONGITUDE": -75.169064, "DATE_RANGE_START": 2019, "Total Visits": 596.0, "Total Visitors": 446.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 68.0, "Total Spend": 2431.0, "Total Transactions": 72.0, "Total Customers": 72.0, "Median Spend per Transaction": 29.1, "Median Spend per Customer": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169064, 39.949485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "Name": "Fairmart", "Category": "Grocery Stores", "Address": "623 Fairmount Ave", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 53.0, "POI_CBG": 421010131001.0, "Median Dwell Time": 179.0, "Total Spend": 2238.0, "Total Transactions": 273.0, "Total Customers": 113.0, "Median Spend per Transaction": 6.77, "Median Spend per Customer": 11.83 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "314 S 5th St", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2019, "Total Visits": 878.0, "Total Visitors": 593.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 11.0, "Total Spend": 7752.0, "Total Transactions": 513.0, "Total Customers": 253.0, "Median Spend per Transaction": 8.85, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pjk-3bk", "Name": "Posh", "Category": "Gasoline Stations", "Address": "8901 Ridge Ave", "LATITUDE": 40.068847, "LONGITUDE": -75.240209, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 67.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 3.0, "Total Spend": 1234.0, "Total Transactions": 28.0, "Total Customers": 23.0, "Median Spend per Transaction": 47.0, "Median Spend per Customer": 48.5 }, "geometry": { "type": "Point", "coordinates": [ -75.240209, 40.068847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1825 W Oregon Ave # 33", "LATITUDE": 39.91807, "LONGITUDE": -75.17894, "DATE_RANGE_START": 2019, "Total Visits": 1737.0, "Total Visitors": 1143.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 430.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17894, 39.91807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8v-b8v", "Name": "Sam's Club Fuel Center", "Category": "Gasoline Stations", "Address": "1000 Franklin Mills Cir", "LATITUDE": 40.091819, "LONGITUDE": -74.963857, "DATE_RANGE_START": 2019, "Total Visits": 2780.0, "Total Visitors": 1724.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 1446.0, "Total Transactions": 37.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.13, "Median Spend per Customer": 143.19 }, "geometry": { "type": "Point", "coordinates": [ -74.963857, 40.091819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7434 Ogontz Ave", "LATITUDE": 40.068237, "LONGITUDE": -75.156911, "DATE_RANGE_START": 2019, "Total Visits": 3250.0, "Total Visitors": 2047.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 4.0, "Total Spend": 1103.0, "Total Transactions": 57.0, "Total Customers": 43.0, "Median Spend per Transaction": 13.74, "Median Spend per Customer": 15.69 }, "geometry": { "type": "Point", "coordinates": [ -75.156911, 40.068237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8j-cyv", "Name": "Apex Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7200 Frankford Ave", "LATITUDE": 40.035775, "LONGITUDE": -75.04334, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 55.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 6.0, "Total Spend": 331.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 99.5, "Median Spend per Customer": 99.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04334, 40.035775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9163 Roosevelt Blvd & Welsh Rd", "LATITUDE": 40.074794, "LONGITUDE": -75.032684, "DATE_RANGE_START": 2019, "Total Visits": 1294.0, "Total Visitors": 1088.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 11.0, "Total Spend": 2598.0, "Total Transactions": 292.0, "Total Customers": 217.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032684, 40.074794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm5-fj9", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "80 E Oregon Ave", "LATITUDE": 39.913638, "LONGITUDE": -75.149864, "DATE_RANGE_START": 2019, "Total Visits": 275.0, "Total Visitors": 258.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 3178.0, "Total Transactions": 133.0, "Total Customers": 110.0, "Median Spend per Transaction": 18.88, "Median Spend per Customer": 17.64 }, "geometry": { "type": "Point", "coordinates": [ -75.149864, 39.913638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mx5", "Name": "Jos. A. Bank Clothiers", "Category": "Clothing Stores", "Address": "1650 Market St", "LATITUDE": 39.952606, "LONGITUDE": -75.168302, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 102.0, "Total Spend": 8436.0, "Total Transactions": 55.0, "Total Customers": 52.0, "Median Spend per Transaction": 98.0, "Median Spend per Customer": 99.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168302, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-wkz", "Name": "rue21", "Category": "Clothing Stores", "Address": "1259 Franklin Mills Cir", "LATITUDE": 40.088728, "LONGITUDE": -74.961198, "DATE_RANGE_START": 2019, "Total Visits": 460.0, "Total Visitors": 446.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 452449.0, "Total Transactions": 10031.0, "Total Customers": 8983.0, "Median Spend per Transaction": 34.98, "Median Spend per Customer": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -74.961198, 40.088728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-jjv", "Name": "Blue Sole Shoes", "Category": "Shoe Stores", "Address": "1805 Chestnut St Frnt 1", "LATITUDE": 39.951916, "LONGITUDE": -75.17056, "DATE_RANGE_START": 2019, "Total Visits": 720.0, "Total Visitors": 568.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 42.0, "Total Spend": 2390.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 365.0, "Median Spend per Customer": 365.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17056, 39.951916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "Name": "Roses Florist", "Category": "Florists", "Address": "3551 Chestnut St", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2019, "Total Visits": 979.0, "Total Visitors": 691.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 264.0, "Total Spend": 720.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "Name": "Menagerie Coffee", "Category": "Restaurants and Other Eating Places", "Address": "18 S 3rd St", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 127.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 28.0, "Total Spend": 9789.0, "Total Transactions": 1537.0, "Total Customers": 958.0, "Median Spend per Transaction": 5.25, "Median Spend per Customer": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "Name": "Street Side", "Category": "Restaurants and Other Eating Places", "Address": "165 W Girard Ave", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 35.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 78.0, "Total Spend": 3417.0, "Total Transactions": 157.0, "Total Customers": 127.0, "Median Spend per Transaction": 19.03, "Median Spend per Customer": 22.06 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028739, "LONGITUDE": -75.099173, "DATE_RANGE_START": 2019, "Total Visits": 2750.0, "Total Visitors": 2334.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 11.0, "Total Spend": 13733.0, "Total Transactions": 821.0, "Total Customers": 705.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.099173, 40.028739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-9fz", "Name": "D M Food Market", "Category": "Grocery Stores", "Address": "2201 W Oxford St", "LATITUDE": 39.979141, "LONGITUDE": -75.171311, "DATE_RANGE_START": 2019, "Total Visits": 92.0, "Total Visitors": 72.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 2.0, "Total Spend": 462.0, "Total Transactions": 62.0, "Total Customers": 40.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.171311, 39.979141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@63s-dvr-hdv", "Name": "A&e Food Market", "Category": "Grocery Stores", "Address": "6363 Buist Ave", "LATITUDE": 39.922107, "LONGITUDE": -75.227751, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010067003.0, "Median Dwell Time": 5.0, "Total Spend": 176.0, "Total Transactions": 20.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 13.71 }, "geometry": { "type": "Point", "coordinates": [ -75.227751, 39.922107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1646 N 29th St", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2019, "Total Visits": 103.0, "Total Visitors": 67.0, "POI_CBG": 421010149005.0, "Median Dwell Time": 467.0, "Total Spend": 283.0, "Total Transactions": 33.0, "Total Customers": 20.0, "Median Spend per Transaction": 6.79, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm9-5cq", "Name": "Friends Convenience Store", "Category": "Grocery Stores", "Address": "2652 S Warnock St", "LATITUDE": 39.91628, "LONGITUDE": -75.165627, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 67.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 3.0, "Total Spend": 53.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.23, "Median Spend per Customer": 8.23 }, "geometry": { "type": "Point", "coordinates": [ -75.165627, 39.91628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "Name": "Green Farm", "Category": "Specialty Food Stores", "Address": "10690 Bustleton Ave", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2019, "Total Visits": 676.0, "Total Visitors": 481.0, "POI_CBG": 421010357012.0, "Median Dwell Time": 5.0, "Total Spend": 8625.0, "Total Transactions": 321.0, "Total Customers": 182.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 26.9 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-gzf", "Name": "Romano Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4712 N 5th St", "LATITUDE": 40.023038, "LONGITUDE": -75.133728, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 105.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 14.0, "Total Spend": 1346.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 105.5, "Median Spend per Customer": 105.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133728, 40.023038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-jd9", "Name": "The Body Shop", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 148", "LATITUDE": 39.952033, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2019, "Total Visits": 571.0, "Total Visitors": 468.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 15.0, "Total Spend": 5747.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 975.0, "Median Spend per Customer": 975.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6201 Ridge Ave", "LATITUDE": 40.035916, "LONGITUDE": -75.217328, "DATE_RANGE_START": 2019, "Total Visits": 2300.0, "Total Visitors": 1396.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 4.0, "Total Spend": 914.0, "Total Transactions": 42.0, "Total Customers": 28.0, "Median Spend per Transaction": 24.27, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217328, 40.035916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phk-yvz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "440 W Cheltenham Ave", "LATITUDE": 40.054755, "LONGITUDE": -75.125732, "DATE_RANGE_START": 2019, "Total Visits": 2229.0, "Total Visitors": 1386.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 4.0, "Total Spend": 664.0, "Total Transactions": 27.0, "Total Customers": 25.0, "Median Spend per Transaction": 21.94, "Median Spend per Customer": 21.16 }, "geometry": { "type": "Point", "coordinates": [ -75.125732, 40.054755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "Name": "Burlington", "Category": "Clothing Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.912374, "LONGITUDE": -75.156918, "DATE_RANGE_START": 2019, "Total Visits": 2937.0, "Total Visitors": 2349.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 25.0, "Total Spend": 4679.0, "Total Transactions": 108.0, "Total Customers": 92.0, "Median Spend per Transaction": 27.97, "Median Spend per Customer": 31.71 }, "geometry": { "type": "Point", "coordinates": [ -75.156918, 39.912374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-jjv", "Name": "Allen Edmonds", "Category": "Shoe Stores", "Address": "1736 Chestnut St", "LATITUDE": 39.9515, "LONGITUDE": -75.170237, "DATE_RANGE_START": 2019, "Total Visits": 1154.0, "Total Visitors": 969.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 21.0, "Total Spend": 2448.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 129.0, "Median Spend per Customer": 129.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170237, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2900 S 70th St", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2019, "Total Visits": 1119.0, "Total Visitors": 723.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 4.0, "Total Spend": 62.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 5.38 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-ph6-9mk", "Name": "Amatullah's Treasures", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "6303 Lansdowne Ave", "LATITUDE": 39.97541, "LONGITUDE": -75.246023, "DATE_RANGE_START": 2019, "Total Visits": 200.0, "Total Visitors": 102.0, "POI_CBG": 421010114001.0, "Median Dwell Time": 801.0, "Total Spend": 167.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246023, 39.97541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3301 Tyson Ave", "LATITUDE": 40.035458, "LONGITUDE": -75.049099, "DATE_RANGE_START": 2019, "Total Visits": 505.0, "Total Visitors": 316.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 5.0, "Total Spend": 7068.0, "Total Transactions": 255.0, "Total Customers": 130.0, "Median Spend per Transaction": 27.42, "Median Spend per Customer": 35.48 }, "geometry": { "type": "Point", "coordinates": [ -75.049099, 40.035458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj8-qj9", "Name": "ALDI", "Category": "Grocery Stores", "Address": "5200 Whitaker Ave", "LATITUDE": 40.032177, "LONGITUDE": -75.103052, "DATE_RANGE_START": 2019, "Total Visits": 641.0, "Total Visitors": 578.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 7.0, "Total Spend": 208.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 62.45, "Median Spend per Customer": 62.45 }, "geometry": { "type": "Point", "coordinates": [ -75.103052, 40.032177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1602 S Delaware Ave # 04", "LATITUDE": 39.926446, "LONGITUDE": -75.145402, "DATE_RANGE_START": 2019, "Total Visits": 1126.0, "Total Visitors": 883.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 67872.0, "Total Transactions": 7064.0, "Total Customers": 3821.0, "Median Spend per Transaction": 8.07, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phq-k75", "Name": "Rodriguez Mini Market", "Category": "Grocery Stores", "Address": "6731 Ogontz Ave", "LATITUDE": 40.057192, "LONGITUDE": -75.148867, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 122.0, "POI_CBG": 421010267007.0, "Median Dwell Time": 3.0, "Total Spend": 393.0, "Total Transactions": 58.0, "Total Customers": 27.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.148867, 40.057192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8144 Castor Ave # 8152", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2019, "Total Visits": 1408.0, "Total Visitors": 870.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 3.0, "Total Spend": 33030.0, "Total Transactions": 2195.0, "Total Customers": 983.0, "Median Spend per Transaction": 8.15, "Median Spend per Customer": 13.4 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "Name": "Repo Records", "Category": "Electronics and Appliance Stores", "Address": "506 South St", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2019, "Total Visits": 2524.0, "Total Visitors": 1936.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 51.0, "Total Spend": 10508.0, "Total Transactions": 298.0, "Total Customers": 277.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "11701 Bustleton Ave", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2019, "Total Visits": 4877.0, "Total Visitors": 2655.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 14.0, "Total Spend": 43599.0, "Total Transactions": 1031.0, "Total Customers": 581.0, "Median Spend per Transaction": 23.64, "Median Spend per Customer": 41.9 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "Name": "Trader Joe's", "Category": "Grocery Stores", "Address": "2121 Market St", "LATITUDE": 39.954199, "LONGITUDE": -75.176054, "DATE_RANGE_START": 2019, "Total Visits": 3017.0, "Total Visitors": 2170.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 10.0, "Total Spend": 717665.0, "Total Transactions": 16532.0, "Total Customers": 8882.0, "Median Spend per Transaction": 33.07, "Median Spend per Customer": 56.8 }, "geometry": { "type": "Point", "coordinates": [ -75.176054, 39.954199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-g49", "Name": "Ham Bone", "Category": "Other Miscellaneous Store Retailers", "Address": "1824 Frankford Ave", "LATITUDE": 39.977503, "LONGITUDE": -75.13156, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 148.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 4.0, "Total Spend": 6247.0, "Total Transactions": 155.0, "Total Customers": 120.0, "Median Spend per Transaction": 27.54, "Median Spend per Customer": 35.68 }, "geometry": { "type": "Point", "coordinates": [ -75.13156, 39.977503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "Name": "Ruckus Gallery", "Category": "Other Miscellaneous Store Retailers", "Address": "27 N 2nd St", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2019, "Total Visits": 1136.0, "Total Visitors": 840.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 121.0, "Total Spend": 12578.0, "Total Transactions": 260.0, "Total Customers": 190.0, "Median Spend per Transaction": 25.49, "Median Spend per Customer": 41.19 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6501 Harbison Ave", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2019, "Total Visits": 3238.0, "Total Visitors": 2349.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 9.0, "Total Spend": 10706.0, "Total Transactions": 596.0, "Total Customers": 356.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 20.09 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-33q", "Name": "Capital Auto Auction", "Category": "Automobile Dealers", "Address": "5135 Bleigh Ave", "LATITUDE": 40.025317, "LONGITUDE": -75.026634, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 125.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 88.0, "Total Spend": 100.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.026634, 40.025317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "143 W Fisher Ave", "LATITUDE": 40.031206, "LONGITUDE": -75.124676, "DATE_RANGE_START": 2019, "Total Visits": 1171.0, "Total Visitors": 766.0, "POI_CBG": 421010286005.0, "Median Dwell Time": 4.0, "Total Spend": 472.0, "Total Transactions": 22.0, "Total Customers": 17.0, "Median Spend per Transaction": 15.19, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124676, 40.031206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "929 South St", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2019, "Total Visits": 2732.0, "Total Visitors": 1751.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 15.0, "Total Spend": 139712.0, "Total Transactions": 3470.0, "Total Customers": 1552.0, "Median Spend per Transaction": 26.31, "Median Spend per Customer": 48.89 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@63s-dvy-xwk", "Name": "Lil' Pop Shop", "Category": "Restaurants and Other Eating Places", "Address": "265 S 44th St", "LATITUDE": 39.953164, "LONGITUDE": -75.210265, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 19.0, "Total Spend": 1644.0, "Total Transactions": 185.0, "Total Customers": 167.0, "Median Spend per Transaction": 6.83, "Median Spend per Customer": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.210265, 39.953164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pm9-yn5", "Name": "Marsh Mane", "Category": "Health and Personal Care Stores", "Address": "529 S 4th St", "LATITUDE": 39.941856, "LONGITUDE": -75.148769, "DATE_RANGE_START": 2019, "Total Visits": 3335.0, "Total Visitors": 2748.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 21.0, "Total Spend": 96.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 28.8, "Median Spend per Customer": 28.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148769, 39.941856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-7bk", "Name": "VIP Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "1312 Walnut St # 1314", "LATITUDE": 39.94892, "LONGITUDE": -75.162809, "DATE_RANGE_START": 2019, "Total Visits": 610.0, "Total Visitors": 403.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 149.0, "Total Spend": 26052.0, "Total Transactions": 1772.0, "Total Customers": 968.0, "Median Spend per Transaction": 12.09, "Median Spend per Customer": 15.84 }, "geometry": { "type": "Point", "coordinates": [ -75.162809, 39.94892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvr-gtv", "Name": "Jo Jo's Deli", "Category": "Restaurants and Other Eating Places", "Address": "2401 S 62nd St", "LATITUDE": 39.926055, "LONGITUDE": -75.227662, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 30.0, "POI_CBG": 421010067005.0, "Median Dwell Time": 5.0, "Total Spend": 755.0, "Total Transactions": 67.0, "Total Customers": 42.0, "Median Spend per Transaction": 9.13, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227662, 39.926055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "Name": "Philadelphia Bikesmith", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1822 Spring Garden St", "LATITUDE": 39.962935, "LONGITUDE": -75.169326, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 32.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 339.0, "Total Spend": 12989.0, "Total Transactions": 135.0, "Total Customers": 117.0, "Median Spend per Transaction": 47.7, "Median Spend per Customer": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169326, 39.962935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "Name": "Ross Stores", "Category": "Department Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.912498, "LONGITUDE": -75.15633, "DATE_RANGE_START": 2019, "Total Visits": 2707.0, "Total Visitors": 2097.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 23.0, "Total Spend": 4930.0, "Total Transactions": 122.0, "Total Customers": 108.0, "Median Spend per Transaction": 32.37, "Median Spend per Customer": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.15633, 39.912498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "Name": "Macy's", "Category": "Department Stores", "Address": "2399 Cottman Ave", "LATITUDE": 40.04687, "LONGITUDE": -75.054304, "DATE_RANGE_START": 2019, "Total Visits": 3788.0, "Total Visitors": 2983.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 22.0, "Total Spend": 12624.0, "Total Transactions": 137.0, "Total Customers": 115.0, "Median Spend per Transaction": 58.38, "Median Spend per Customer": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -75.054304, 40.04687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "713 W Girard Ave", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 35.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 5.0, "Total Spend": 8686.0, "Total Transactions": 393.0, "Total Customers": 285.0, "Median Spend per Transaction": 19.93, "Median Spend per Customer": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2634 N Broad St # 44", "LATITUDE": 39.993791, "LONGITUDE": -75.155151, "DATE_RANGE_START": 2019, "Total Visits": 2732.0, "Total Visitors": 1992.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 4.0, "Total Spend": 832.0, "Total Transactions": 35.0, "Total Customers": 22.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -75.155151, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "901 Levick St", "LATITUDE": 40.044581, "LONGITUDE": -75.086995, "DATE_RANGE_START": 2019, "Total Visits": 1151.0, "Total Visitors": 904.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 9.0, "Total Spend": 398.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 24.29 }, "geometry": { "type": "Point", "coordinates": [ -75.086995, 40.044581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044593, "LONGITUDE": -75.101222, "DATE_RANGE_START": 2019, "Total Visits": 321.0, "Total Visitors": 220.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 6.0, "Total Spend": 931.0, "Total Transactions": 67.0, "Total Customers": 45.0, "Median Spend per Transaction": 7.94, "Median Spend per Customer": 16.07 }, "geometry": { "type": "Point", "coordinates": [ -75.101222, 40.044593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "Name": "Frame Fatale", "Category": "Home Furnishings Stores", "Address": "1813 E Passyunk Ave", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2019, "Total Visits": 1061.0, "Total Visitors": 766.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 45.0, "Total Spend": 2184.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 52.32, "Median Spend per Customer": 71.37 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pj6-k4v", "Name": "H Mart", "Category": "Grocery Stores", "Address": "6201 N Front St", "LATITUDE": 40.044993, "LONGITUDE": -75.117488, "DATE_RANGE_START": 2019, "Total Visits": 1204.0, "Total Visitors": 813.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 20.0, "Total Spend": 47081.0, "Total Transactions": 4354.0, "Total Customers": 3740.0, "Median Spend per Transaction": 8.04, "Median Spend per Customer": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.117488, 40.044993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-zj9", "Name": "Pantry I Food Mart", "Category": "Grocery Stores", "Address": "5240 Torresdale Ave", "LATITUDE": 40.013698, "LONGITUDE": -75.069042, "DATE_RANGE_START": 2019, "Total Visits": 515.0, "Total Visitors": 321.0, "POI_CBG": 421010298005.0, "Median Dwell Time": 6.0, "Total Spend": 802.0, "Total Transactions": 82.0, "Total Customers": 50.0, "Median Spend per Transaction": 8.99, "Median Spend per Customer": 11.14 }, "geometry": { "type": "Point", "coordinates": [ -75.069042, 40.013698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-btv", "Name": "Ridge Gas & Minimart", "Category": "Gasoline Stations", "Address": "2300 Ridge Ave", "LATITUDE": 39.980802, "LONGITUDE": -75.173001, "DATE_RANGE_START": 2019, "Total Visits": 336.0, "Total Visitors": 262.0, "POI_CBG": 421010149001.0, "Median Dwell Time": 3.0, "Total Spend": 1463.0, "Total Transactions": 98.0, "Total Customers": 67.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173001, 39.980802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pp5-ht9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2750 Aramingo Ave", "LATITUDE": 39.983672, "LONGITUDE": -75.115989, "DATE_RANGE_START": 2019, "Total Visits": 953.0, "Total Visitors": 606.0, "POI_CBG": 421010179005.0, "Median Dwell Time": 4.0, "Total Spend": 343.0, "Total Transactions": 18.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.27, "Median Spend per Customer": 28.84 }, "geometry": { "type": "Point", "coordinates": [ -75.115989, 39.983672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pgb-7t9", "Name": "Plants Etc", "Category": "Florists", "Address": "2313 Fairmount Ave", "LATITUDE": 39.967525, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 12.0, "Total Spend": 705.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.967525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "Name": "Uncle Oogie's", "Category": "Restaurants and Other Eating Places", "Address": "36 Snyder Ave", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 1.0, "Total Spend": 232.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 15.57, "Median Spend per Customer": 15.57 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-hdv", "Name": "Miss Rachel's Pantry", "Category": "Special Food Services", "Address": "1938 S Chadwick St", "LATITUDE": 39.926531, "LONGITUDE": -75.173779, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 7.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 9.0, "Total Spend": 146.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 11.16, "Median Spend per Customer": 11.16 }, "geometry": { "type": "Point", "coordinates": [ -75.173779, 39.926531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phc-pd9", "Name": "Bala Inn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5004 City Ave", "LATITUDE": 40.000031, "LONGITUDE": -75.228413, "DATE_RANGE_START": 2019, "Total Visits": 743.0, "Total Visitors": 568.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 54.0, "Total Spend": 2688.0, "Total Transactions": 108.0, "Total Customers": 83.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228413, 40.000031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-mff", "Name": "Con Murphy's", "Category": "Restaurants and Other Eating Places", "Address": "1700 Benjamin Franklin Pkwy", "LATITUDE": 39.955696, "LONGITUDE": -75.167996, "DATE_RANGE_START": 2019, "Total Visits": 326.0, "Total Visitors": 258.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 41.0, "Total Spend": 22297.0, "Total Transactions": 481.0, "Total Customers": 406.0, "Median Spend per Transaction": 34.05, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167996, 39.955696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "Name": "Vietnam Cafe", "Category": "Restaurants and Other Eating Places", "Address": "816 S 47th St", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2019, "Total Visits": 288.0, "Total Visitors": 235.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 42.0, "Total Spend": 14809.0, "Total Transactions": 353.0, "Total Customers": 306.0, "Median Spend per Transaction": 34.92, "Median Spend per Customer": 36.13 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "Name": "Charley's", "Category": "Restaurants and Other Eating Places", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2019, "Total Visits": 886.0, "Total Visitors": 771.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 4769.0, "Total Transactions": 313.0, "Total Customers": 292.0, "Median Spend per Transaction": 13.26, "Median Spend per Customer": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-5s5", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "2201 Cottman Ave", "LATITUDE": 40.049399, "LONGITUDE": -75.061192, "DATE_RANGE_START": 2019, "Total Visits": 1091.0, "Total Visitors": 840.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 19.0, "Total Spend": 5504.0, "Total Transactions": 463.0, "Total Customers": 410.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.061192, 40.049399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "Name": "CAVA", "Category": "Restaurants and Other Eating Places", "Address": "1713 Chestnut St", "LATITUDE": 39.95186, "LONGITUDE": -75.16924, "DATE_RANGE_START": 2019, "Total Visits": 2284.0, "Total Visitors": 1857.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 22.0, "Total Spend": 26759.0, "Total Transactions": 2129.0, "Total Customers": 1554.0, "Median Spend per Transaction": 10.66, "Median Spend per Customer": 12.23 }, "geometry": { "type": "Point", "coordinates": [ -75.16924, 39.95186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-t9z", "Name": "Last Drop", "Category": "Restaurants and Other Eating Places", "Address": "1300 Pine St", "LATITUDE": 39.945156, "LONGITUDE": -75.163064, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 531.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 4.0, "Total Spend": 132.0, "Total Transactions": 15.0, "Total Customers": 12.0, "Median Spend per Transaction": 8.67, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163064, 39.945156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-qpv", "Name": "New York Bagel Bakery", "Category": "Restaurants and Other Eating Places", "Address": "7555 Haverford Ave", "LATITUDE": 39.97966, "LONGITUDE": -75.268066, "DATE_RANGE_START": 2019, "Total Visits": 680.0, "Total Visitors": 528.0, "POI_CBG": 421010098011.0, "Median Dwell Time": 29.0, "Total Spend": 12312.0, "Total Transactions": 411.0, "Total Customers": 341.0, "Median Spend per Transaction": 24.1, "Median Spend per Customer": 25.4 }, "geometry": { "type": "Point", "coordinates": [ -75.268066, 39.97966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market Street Concourse", "LATITUDE": 39.952204, "LONGITUDE": -75.166371, "DATE_RANGE_START": 2019, "Total Visits": 23448.0, "Total Visitors": 11995.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 225.0, "Total Spend": 6373.0, "Total Transactions": 1404.0, "Total Customers": 613.0, "Median Spend per Transaction": 4.08, "Median Spend per Customer": 5.59 }, "geometry": { "type": "Point", "coordinates": [ -75.166371, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "Name": "Philly's Famous Italian Ices", "Category": "Restaurants and Other Eating Places", "Address": "1950 E Lehigh Ave", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 48.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 63.0, "Total Spend": 1109.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-yvz", "Name": "Hong Kong Star", "Category": "Restaurants and Other Eating Places", "Address": "1629 W Cumberland St", "LATITUDE": 39.9915, "LONGITUDE": -75.15937, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 13.0, "POI_CBG": 421010167022.0, "Median Dwell Time": 534.0, "Total Spend": 16.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 4.67, "Median Spend per Customer": 4.67 }, "geometry": { "type": "Point", "coordinates": [ -75.15937, 39.9915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pjg-2ff", "Name": "ESF Camps Chestnut Hill", "Category": "RV (Recreational Vehicle) Parks and Recreational Camps", "Address": "8891 Germantown Ave", "LATITUDE": 40.080429, "LONGITUDE": -75.215544, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 28.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 39.0, "Total Spend": 514.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 6.09, "Median Spend per Customer": 5.76 }, "geometry": { "type": "Point", "coordinates": [ -75.215544, 40.080429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-k75", "Name": "Lendy's Food Market", "Category": "Grocery Stores", "Address": "617 W York St", "LATITUDE": 39.988027, "LONGITUDE": -75.143801, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 13.0, "POI_CBG": 421010164004.0, "Median Dwell Time": 214.0, "Total Spend": 133.0, "Total Transactions": 22.0, "Total Customers": 10.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.143801, 39.988027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-ph6-q4v", "Name": "Lucky Garden", "Category": "Restaurants and Other Eating Places", "Address": "5528 Lansdowne Ave", "LATITUDE": 39.976559, "LONGITUDE": -75.232622, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 13.0, "POI_CBG": 421010112007.0, "Median Dwell Time": 1.0, "Total Spend": 81.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.232622, 39.976559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-jjv", "Name": "Hakim's Bookstore", "Category": "Book Stores and News Dealers", "Address": "210 S 52nd St", "LATITUDE": 39.95665, "LONGITUDE": -75.225827, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 25.0, "POI_CBG": 421010085006.0, "Median Dwell Time": 59.0, "Total Spend": 1281.0, "Total Transactions": 142.0, "Total Customers": 128.0, "Median Spend per Transaction": 5.16, "Median Spend per Customer": 5.58 }, "geometry": { "type": "Point", "coordinates": [ -75.225827, 39.95665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgg-p5f", "Name": "Mimmo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3000 W Allegheny Ave", "LATITUDE": 40.004649, "LONGITUDE": -75.17882, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010171004.0, "Median Dwell Time": 271.0, "Total Spend": 1211.0, "Total Transactions": 70.0, "Total Customers": 60.0, "Median Spend per Transaction": 15.61, "Median Spend per Customer": 18.71 }, "geometry": { "type": "Point", "coordinates": [ -75.17882, 40.004649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pg8-jjv", "Name": "Deborah's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2608 W Girard Ave", "LATITUDE": 39.97383, "LONGITUDE": -75.179259, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 5.0, "Total Spend": 251.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.179259, 39.97383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7v-f2k", "Name": "Bob's Discount Furniture", "Category": "Furniture Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051318, "LONGITUDE": -75.065293, "DATE_RANGE_START": 2019, "Total Visits": 3908.0, "Total Visitors": 2923.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 26.0, "Total Spend": 10568.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 386.65, "Median Spend per Customer": 493.06 }, "geometry": { "type": "Point", "coordinates": [ -75.065293, 40.051318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-g8v", "Name": "Khaamar Baari Supermarket", "Category": "Grocery Stores", "Address": "6919 Castor Ave", "LATITUDE": 40.046044, "LONGITUDE": -75.070773, "DATE_RANGE_START": 2019, "Total Visits": 120.0, "Total Visitors": 88.0, "POI_CBG": 421010314015.0, "Median Dwell Time": 7.0, "Total Spend": 519.0, "Total Transactions": 18.0, "Total Customers": 10.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 50.34 }, "geometry": { "type": "Point", "coordinates": [ -75.070773, 40.046044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pj8-tgk", "Name": "New Ben City Supermarket", "Category": "Grocery Stores", "Address": "5520 Whitaker Ave", "LATITUDE": 40.035691, "LONGITUDE": -75.100546, "DATE_RANGE_START": 2019, "Total Visits": 1294.0, "Total Visitors": 796.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 12.0, "Total Spend": 818.0, "Total Transactions": 103.0, "Total Customers": 67.0, "Median Spend per Transaction": 5.29, "Median Spend per Customer": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.100546, 40.035691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-qfz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5440 Lansdowne Ave", "LATITUDE": 39.976667, "LONGITUDE": -75.231099, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 125.0, "POI_CBG": 421010112001.0, "Median Dwell Time": 6.0, "Total Spend": 1727.0, "Total Transactions": 75.0, "Total Customers": 28.0, "Median Spend per Transaction": 15.05, "Median Spend per Customer": 37.15 }, "geometry": { "type": "Point", "coordinates": [ -75.231099, 39.976667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951608, "LONGITUDE": -75.168943, "DATE_RANGE_START": 2019, "Total Visits": 1961.0, "Total Visitors": 1709.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 1116.0, "Total Transactions": 45.0, "Total Customers": 42.0, "Median Spend per Transaction": 24.62, "Median Spend per Customer": 25.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168943, 39.951608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-kfz", "Name": "UrHomeInPhilly", "Category": "Traveler Accommodation", "Address": "1955 Locust St", "LATITUDE": 39.949546, "LONGITUDE": -75.173863, "DATE_RANGE_START": 2019, "Total Visits": 197.0, "Total Visitors": 150.0, "POI_CBG": 421010008034.0, "Median Dwell Time": 24.0, "Total Spend": 134.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.173863, 39.949546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-skf", "Name": "Max Brenner", "Category": "Restaurants and Other Eating Places", "Address": "1500 Walnut St", "LATITUDE": 39.949114, "LONGITUDE": -75.166283, "DATE_RANGE_START": 2019, "Total Visits": 843.0, "Total Visitors": 520.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 99.0, "Total Spend": 1907.0, "Total Transactions": 32.0, "Total Customers": 32.0, "Median Spend per Transaction": 43.26, "Median Spend per Customer": 43.26 }, "geometry": { "type": "Point", "coordinates": [ -75.166283, 39.949114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "Name": "Seorabol Korean Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5734 Old Second St", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2019, "Total Visits": 425.0, "Total Visitors": 310.0, "POI_CBG": 421010274023.0, "Median Dwell Time": 65.0, "Total Spend": 7748.0, "Total Transactions": 102.0, "Total Customers": 93.0, "Median Spend per Transaction": 57.68, "Median Spend per Customer": 66.87 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-dd9", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "3084 Frankford Ave", "LATITUDE": 39.991806, "LONGITUDE": -75.113116, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 50.0, "POI_CBG": 421010178003.0, "Median Dwell Time": 630.0, "Total Spend": 2335.0, "Total Transactions": 143.0, "Total Customers": 120.0, "Median Spend per Transaction": 10.58, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.113116, 39.991806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pp5-k4v", "Name": "Ho Le Chan", "Category": "Restaurants and Other Eating Places", "Address": "2344 E Clearfield St", "LATITUDE": 39.987263, "LONGITUDE": -75.109046, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 73.0, "POI_CBG": 421010179002.0, "Median Dwell Time": 7.0, "Total Spend": 521.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 27.85 }, "geometry": { "type": "Point", "coordinates": [ -75.109046, 39.987263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "Name": "Tandoori bakery", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd Store 17", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 280.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 4.0, "Total Spend": 4452.0, "Total Transactions": 133.0, "Total Customers": 58.0, "Median Spend per Transaction": 22.5, "Median Spend per Customer": 36.52 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "Name": "Little Pete's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2401 Pennsylvania Ave", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2019, "Total Visits": 3883.0, "Total Visitors": 2310.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 132.0, "Total Spend": 1331.0, "Total Transactions": 45.0, "Total Customers": 37.0, "Median Spend per Transaction": 24.12, "Median Spend per Customer": 26.24 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "4001 N 5th St", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2019, "Total Visits": 793.0, "Total Visitors": 618.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 3.0, "Total Spend": 559.0, "Total Transactions": 45.0, "Total Customers": 37.0, "Median Spend per Transaction": 10.82, "Median Spend per Customer": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "4030 City Ave", "LATITUDE": 40.007477, "LONGITUDE": -75.212304, "DATE_RANGE_START": 2019, "Total Visits": 736.0, "Total Visitors": 556.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 23.0, "Total Spend": 30855.0, "Total Transactions": 2404.0, "Total Customers": 1806.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.53 }, "geometry": { "type": "Point", "coordinates": [ -75.212304, 40.007477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6240 Stenton Ave", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 282.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 10.0, "Total Spend": 630.0, "Total Transactions": 55.0, "Total Customers": 48.0, "Median Spend per Transaction": 8.73, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "Name": "Sweet Creations Unlimited", "Category": "Specialty Food Stores", "Address": "5940 Torresdale Ave", "LATITUDE": 40.017723, "LONGITUDE": -75.059702, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 25.0, "POI_CBG": 421010321003.0, "Median Dwell Time": 10.0, "Total Spend": 141.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 19.46, "Median Spend per Customer": 19.46 }, "geometry": { "type": "Point", "coordinates": [ -75.059702, 40.017723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "1243 S Broad St", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2019, "Total Visits": 1326.0, "Total Visitors": 951.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 4.0, "Total Spend": 40724.0, "Total Transactions": 1931.0, "Total Customers": 1196.0, "Median Spend per Transaction": 17.97, "Median Spend per Customer": 27.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-p5f", "Name": "M & L Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1105 S 6th St", "LATITUDE": 39.934764, "LONGITUDE": -75.153674, "DATE_RANGE_START": 2019, "Total Visits": 425.0, "Total Visitors": 350.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 15.0, "Total Spend": 2019.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 606.0, "Median Spend per Customer": 606.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153674, 39.934764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "Name": "Eyes Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "402 South St", "LATITUDE": 39.941491, "LONGITUDE": -75.149374, "DATE_RANGE_START": 2019, "Total Visits": 568.0, "Total Visitors": 555.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 10.0, "Total Spend": 2850.0, "Total Transactions": 63.0, "Total Customers": 62.0, "Median Spend per Transaction": 29.08, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149374, 39.941491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-p7q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1955 W Hunting Park Ave", "LATITUDE": 40.01382, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2019, "Total Visits": 267.0, "Total Visitors": 172.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 5.0, "Total Spend": 1236.0, "Total Transactions": 130.0, "Total Customers": 98.0, "Median Spend per Transaction": 7.15, "Median Spend per Customer": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 40.01382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "Name": "Bad Brother", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "726 N 24th St", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010136011.0, "Median Dwell Time": null, "Total Spend": 341.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 102.3, "Median Spend per Customer": 102.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvq-649", "Name": "Three Sister Grocery", "Category": "Grocery Stores", "Address": "5356 Delancey St", "LATITUDE": 39.954366, "LONGITUDE": -75.229741, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 25.0, "POI_CBG": 421010085004.0, "Median Dwell Time": 6.0, "Total Spend": 218.0, "Total Transactions": 22.0, "Total Customers": 15.0, "Median Spend per Transaction": 5.25, "Median Spend per Customer": 5.25 }, "geometry": { "type": "Point", "coordinates": [ -75.229741, 39.954366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "Name": "Tokyo Sushi & Catering", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd Ste C120", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2019, "Total Visits": 13123.0, "Total Visitors": 4982.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 344.0, "Total Spend": 10395.0, "Total Transactions": 820.0, "Total Customers": 525.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "265 S Broad St", "LATITUDE": 39.947387, "LONGITUDE": -75.16433, "DATE_RANGE_START": 2019, "Total Visits": 7884.0, "Total Visitors": 4358.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 308.0, "Total Spend": 3236.0, "Total Transactions": 486.0, "Total Customers": 345.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 6.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16433, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-ks5", "Name": "Born Yesterday", "Category": "Clothing Stores", "Address": "1901 Walnut St", "LATITUDE": 39.950495, "LONGITUDE": -75.17265, "DATE_RANGE_START": 2019, "Total Visits": 2419.0, "Total Visitors": 1736.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 56.0, "Total Spend": 6977.0, "Total Transactions": 133.0, "Total Customers": 130.0, "Median Spend per Transaction": 43.56, "Median Spend per Customer": 43.56 }, "geometry": { "type": "Point", "coordinates": [ -75.17265, 39.950495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9t-r6k", "Name": "Hong Kong Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "12333 Academy Rd", "LATITUDE": 40.095743, "LONGITUDE": -74.974916, "DATE_RANGE_START": 2019, "Total Visits": 147.0, "Total Visitors": 103.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 1495.0, "Total Transactions": 65.0, "Total Customers": 58.0, "Median Spend per Transaction": 18.2, "Median Spend per Customer": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -74.974916, 40.095743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.979849, "LONGITUDE": -75.269293, "DATE_RANGE_START": 2019, "Total Visits": 811.0, "Total Visitors": 700.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 7.0, "Total Spend": 195.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.269293, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "Name": "The Love", "Category": "Restaurants and Other Eating Places", "Address": "130 S 18th St", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2019, "Total Visits": 8022.0, "Total Visitors": 4976.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 101.0, "Total Spend": 43986.0, "Total Transactions": 435.0, "Total Customers": 416.0, "Median Spend per Transaction": 80.72, "Median Spend per Customer": 83.84 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pmf-jd9", "Name": "SoBol Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "46 S 17th St", "LATITUDE": 39.951746, "LONGITUDE": -75.168892, "DATE_RANGE_START": 2019, "Total Visits": 6869.0, "Total Visitors": 5219.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 21.0, "Total Spend": 4950.0, "Total Transactions": 441.0, "Total Customers": 396.0, "Median Spend per Transaction": 10.69, "Median Spend per Customer": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.168892, 39.951746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "8515 Germantown Ave", "LATITUDE": 40.076409, "LONGITUDE": -75.206721, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 118.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 22.0, "Total Spend": 7480.0, "Total Transactions": 979.0, "Total Customers": 645.0, "Median Spend per Transaction": 6.43, "Median Spend per Customer": 7.67 }, "geometry": { "type": "Point", "coordinates": [ -75.206721, 40.076409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-ph5-py9", "Name": "Papp's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6001 Hazelhurst St", "LATITUDE": 39.982659, "LONGITUDE": -75.241682, "DATE_RANGE_START": 2019, "Total Visits": 92.0, "Total Visitors": 58.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 21.0, "Total Spend": 1044.0, "Total Transactions": 113.0, "Total Customers": 82.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 10.21 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.982659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phz-ch5", "Name": "Cafe Liz", "Category": "Restaurants and Other Eating Places", "Address": "5437 N Lawrence St", "LATITUDE": 40.034261, "LONGITUDE": -75.129795, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 102.0, "POI_CBG": 421010274013.0, "Median Dwell Time": 49.0, "Total Spend": 2862.0, "Total Transactions": 47.0, "Total Customers": 23.0, "Median Spend per Transaction": 48.0, "Median Spend per Customer": 103.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129795, 40.034261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmf-n5z", "Name": "Di Bruno Bros", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd", "LATITUDE": 39.954896, "LONGITUDE": -75.168695, "DATE_RANGE_START": 2019, "Total Visits": 13123.0, "Total Visitors": 4982.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 344.0, "Total Spend": 52241.0, "Total Transactions": 2905.0, "Total Customers": 1971.0, "Median Spend per Transaction": 11.78, "Median Spend per Customer": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.168695, 39.954896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj4-3qz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4229 N Broad St", "LATITUDE": 40.017536, "LONGITUDE": -75.148496, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 72.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 11.0, "Total Spend": 7167.0, "Total Transactions": 306.0, "Total Customers": 250.0, "Median Spend per Transaction": 20.43, "Median Spend per Customer": 22.51 }, "geometry": { "type": "Point", "coordinates": [ -75.148496, 40.017536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-3nq", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "399 Franklin Mills Cir", "LATITUDE": 40.084019, "LONGITUDE": -74.96509, "DATE_RANGE_START": 2019, "Total Visits": 738.0, "Total Visitors": 640.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 94.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 28.21, "Median Spend per Customer": 28.21 }, "geometry": { "type": "Point", "coordinates": [ -74.96509, 40.084019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@628-pmf-n3q", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953446, "LONGITUDE": -75.165892, "DATE_RANGE_START": 2019, "Total Visits": 8037.0, "Total Visitors": 5037.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 73.0, "Total Spend": 4195.0, "Total Transactions": 610.0, "Total Customers": 408.0, "Median Spend per Transaction": 6.57, "Median Spend per Customer": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.165892, 39.953446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "Name": "Volo Coffeehouse", "Category": "Restaurants and Other Eating Places", "Address": "4360 Main St", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 23.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 4495.0, "Total Transactions": 490.0, "Total Customers": 225.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1201 S Broad St", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2019, "Total Visits": 205.0, "Total Visitors": 123.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 202.0, "Total Spend": 5903.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 125.44, "Median Spend per Customer": 125.44 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "Name": "IKEA", "Category": "Furniture Stores", "Address": "2206 S Columbus Blvd", "LATITUDE": 39.917106, "LONGITUDE": -75.141639, "DATE_RANGE_START": 2019, "Total Visits": 8390.0, "Total Visitors": 6923.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 48.0, "Total Spend": 531660.0, "Total Transactions": 5134.0, "Total Customers": 3266.0, "Median Spend per Transaction": 32.83, "Median Spend per Customer": 69.98 }, "geometry": { "type": "Point", "coordinates": [ -75.141639, 39.917106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "2106 S Columbus Blvd", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2019, "Total Visits": 3710.0, "Total Visitors": 2607.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 17.0, "Total Spend": 278590.0, "Total Transactions": 3553.0, "Total Customers": 2507.0, "Median Spend per Transaction": 32.36, "Median Spend per Customer": 40.03 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "Name": "Old Nelson Food Market", "Category": "Grocery Stores", "Address": "2000 Chestnut St", "LATITUDE": 39.951893, "LONGITUDE": -75.173688, "DATE_RANGE_START": 2019, "Total Visits": 923.0, "Total Visitors": 595.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 153.0, "Total Spend": 121668.0, "Total Transactions": 11662.0, "Total Customers": 5087.0, "Median Spend per Transaction": 8.9, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.173688, 39.951893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7607 Ridge Ave", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2019, "Total Visits": 260.0, "Total Visitors": 172.0, "POI_CBG": 421010218002.0, "Median Dwell Time": 3.0, "Total Spend": 620.0, "Total Transactions": 52.0, "Total Customers": 40.0, "Median Spend per Transaction": 11.12, "Median Spend per Customer": 7.27 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3440 Market St", "LATITUDE": 39.955622, "LONGITUDE": -75.192214, "DATE_RANGE_START": 2019, "Total Visits": 5219.0, "Total Visitors": 3127.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 85.0, "Total Spend": 1819.0, "Total Transactions": 245.0, "Total Customers": 125.0, "Median Spend per Transaction": 4.58, "Median Spend per Customer": 8.22 }, "geometry": { "type": "Point", "coordinates": [ -75.192214, 39.955622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9200 Frankford Ave Ste 250", "LATITUDE": 40.055425, "LONGITUDE": -75.00482, "DATE_RANGE_START": 2019, "Total Visits": 904.0, "Total Visitors": 668.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 8.0, "Total Spend": 1153.0, "Total Transactions": 40.0, "Total Customers": 38.0, "Median Spend per Transaction": 23.3, "Median Spend per Customer": 20.39 }, "geometry": { "type": "Point", "coordinates": [ -75.00482, 40.055425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "Name": "Quetzally", "Category": "Restaurants and Other Eating Places", "Address": "1225 Fitzwater St", "LATITUDE": 39.941598, "LONGITUDE": -75.163087, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 21.0, "Total Spend": 1257.0, "Total Transactions": 58.0, "Total Customers": 52.0, "Median Spend per Transaction": 21.06, "Median Spend per Customer": 21.98 }, "geometry": { "type": "Point", "coordinates": [ -75.163087, 39.941598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "9000 Roosevelt Blvd", "LATITUDE": 40.074942, "LONGITUDE": -75.035038, "DATE_RANGE_START": 2019, "Total Visits": 3998.0, "Total Visitors": 2577.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 6.0, "Total Spend": 934.0, "Total Transactions": 33.0, "Total Customers": 20.0, "Median Spend per Transaction": 23.3, "Median Spend per Customer": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.035038, 40.074942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "8966 Frankford Ave", "LATITUDE": 40.052422, "LONGITUDE": -75.00877, "DATE_RANGE_START": 2019, "Total Visits": 628.0, "Total Visitors": 566.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 5.0, "Total Spend": 10929.0, "Total Transactions": 292.0, "Total Customers": 222.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.00877, 40.052422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "Name": "1 Stop Mini Market", "Category": "Grocery Stores", "Address": "700 S 8th St", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2019, "Total Visits": 170.0, "Total Visitors": 125.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 4.0, "Total Spend": 2733.0, "Total Transactions": 165.0, "Total Customers": 67.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 17.01 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6399 Oxford Ave", "LATITUDE": 40.045071, "LONGITUDE": -75.088214, "DATE_RANGE_START": 2019, "Total Visits": 2224.0, "Total Visitors": 1396.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 4.0, "Total Spend": 20897.0, "Total Transactions": 986.0, "Total Customers": 641.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 27.89 }, "geometry": { "type": "Point", "coordinates": [ -75.088214, 40.045071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "Name": "Ross Stores", "Category": "Department Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029581, "LONGITUDE": -75.100406, "DATE_RANGE_START": 2019, "Total Visits": 1421.0, "Total Visitors": 1296.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 41.0, "Total Spend": 13666.0, "Total Transactions": 292.0, "Total Customers": 243.0, "Median Spend per Transaction": 34.44, "Median Spend per Customer": 36.97 }, "geometry": { "type": "Point", "coordinates": [ -75.100406, 40.029581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-7yv", "Name": "Bee Natural", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "51 N 12th St", "LATITUDE": 39.953663, "LONGITUDE": -75.158929, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 770.0, "Total Transactions": 57.0, "Total Customers": 55.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158929, 39.953663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-snq", "Name": "Motel 6", "Category": "Traveler Accommodation", "Address": "11580 Roosevelt Blvd", "LATITUDE": 40.103426, "LONGITUDE": -75.005145, "DATE_RANGE_START": 2019, "Total Visits": 1591.0, "Total Visitors": 1019.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 292.0, "Total Spend": 390.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 117.05, "Median Spend per Customer": 117.05 }, "geometry": { "type": "Point", "coordinates": [ -75.005145, 40.103426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dw9-wtv", "Name": "Revive 21", "Category": "Restaurants and Other Eating Places", "Address": "Phildelphia Airport Terminal F", "LATITUDE": 39.880826, "LONGITUDE": -75.237536, "DATE_RANGE_START": 2019, "Total Visits": 22481.0, "Total Visitors": 17362.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 35.0, "Total Spend": 10551.0, "Total Transactions": 333.0, "Total Customers": 301.0, "Median Spend per Transaction": 23.1, "Median Spend per Customer": 28.29 }, "geometry": { "type": "Point", "coordinates": [ -75.237536, 39.880826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "Name": "TGI Fridays", "Category": "Restaurants and Other Eating Places", "Address": "4000 City Ave", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2019, "Total Visits": 1861.0, "Total Visitors": 1446.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 57.0, "Total Spend": 31279.0, "Total Transactions": 796.0, "Total Customers": 710.0, "Median Spend per Transaction": 34.92, "Median Spend per Customer": 37.54 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-9cq", "Name": "White Dog Cafe", "Category": "Restaurants and Other Eating Places", "Address": "3420 Sansom St", "LATITUDE": 39.953556, "LONGITUDE": -75.192905, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 57.0, "Total Spend": 30926.0, "Total Transactions": 490.0, "Total Customers": 446.0, "Median Spend per Transaction": 43.91, "Median Spend per Customer": 47.72 }, "geometry": { "type": "Point", "coordinates": [ -75.192905, 39.953556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-jd9", "Name": "Ten Asian Food Hall", "Category": "Restaurants and Other Eating Places", "Address": "1715 Chestnut St", "LATITUDE": 39.951674, "LONGITUDE": -75.169299, "DATE_RANGE_START": 2019, "Total Visits": 5535.0, "Total Visitors": 4198.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 21.0, "Total Spend": 9490.0, "Total Transactions": 848.0, "Total Customers": 620.0, "Median Spend per Transaction": 10.58, "Median Spend per Customer": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.169299, 39.951674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "Name": "Gallo's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "8101 Roosevelt Blvd", "LATITUDE": 40.057623, "LONGITUDE": -75.044487, "DATE_RANGE_START": 2019, "Total Visits": 833.0, "Total Visitors": 723.0, "POI_CBG": 421010333001.0, "Median Dwell Time": 53.0, "Total Spend": 15597.0, "Total Transactions": 195.0, "Total Customers": 157.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 62.27 }, "geometry": { "type": "Point", "coordinates": [ -75.044487, 40.057623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "Name": "Triangle Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1338 S 10th St", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 68.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 41.0, "Total Spend": 25322.0, "Total Transactions": 631.0, "Total Customers": 523.0, "Median Spend per Transaction": 33.08, "Median Spend per Customer": 39.28 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "Name": "The Bayou Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "4245 Main St", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 168.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 93.0, "Total Spend": 10806.0, "Total Transactions": 401.0, "Total Customers": 326.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 23.03 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "6350 Roosevelt Blvd", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2019, "Total Visits": 240.0, "Total Visitors": 210.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 5.0, "Total Spend": 6375.0, "Total Transactions": 393.0, "Total Customers": 265.0, "Median Spend per Transaction": 13.56, "Median Spend per Customer": 20.92 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2440 Grant Ave", "LATITUDE": 40.079147, "LONGITUDE": -75.02653, "DATE_RANGE_START": 2019, "Total Visits": 701.0, "Total Visitors": 606.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 8198.0, "Total Transactions": 568.0, "Total Customers": 460.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.02653, 40.079147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7911 Ogontz Ave # 17", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2019, "Total Visits": 885.0, "Total Visitors": 726.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 4.0, "Total Spend": 19322.0, "Total Transactions": 2019.0, "Total Customers": 1414.0, "Median Spend per Transaction": 8.2, "Median Spend per Customer": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "Name": "Somerset Splits", "Category": "Restaurants and Other Eating Places", "Address": "2600 E Somerset St", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010180013.0, "Median Dwell Time": 21.0, "Total Spend": 1279.0, "Total Transactions": 92.0, "Total Customers": 82.0, "Median Spend per Transaction": 13.22, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm4-g8v", "Name": "V Marks the Shop", "Category": "Clothing Stores", "Address": "1515 McKean St", "LATITUDE": 39.926043, "LONGITUDE": -75.171734, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 18.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 93.0, "Total Spend": 880.0, "Total Transactions": 28.0, "Total Customers": 17.0, "Median Spend per Transaction": 21.95, "Median Spend per Customer": 14.38 }, "geometry": { "type": "Point", "coordinates": [ -75.171734, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "Name": "Pinoy Groseri", "Category": "Grocery Stores", "Address": "7925 Bustleton Ave", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 30.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 1299.0, "Total Spend": 556.0, "Total Transactions": 18.0, "Total Customers": 10.0, "Median Spend per Transaction": 27.87, "Median Spend per Customer": 36.31 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-x3q", "Name": "Medina mini market", "Category": "Grocery Stores", "Address": "804 W Susquehanna Ave", "LATITUDE": 39.984945, "LONGITUDE": -75.147239, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 38.0, "POI_CBG": 421010377003.0, "Median Dwell Time": 95.0, "Total Spend": 49.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.14, "Median Spend per Customer": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.147239, 39.984945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-5vf", "Name": "Hot Pot Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "4234 Germantown Ave", "LATITUDE": 40.018926, "LONGITUDE": -75.155968, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 77.0, "POI_CBG": 421010205001.0, "Median Dwell Time": 86.0, "Total Spend": 81.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 24.32, "Median Spend per Customer": 24.32 }, "geometry": { "type": "Point", "coordinates": [ -75.155968, 40.018926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "Name": "Dim Sum & Noodle", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 104", "LATITUDE": 39.962276, "LONGITUDE": -75.172659, "DATE_RANGE_START": 2019, "Total Visits": 228.0, "Total Visitors": 172.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 167.0, "Total Spend": 7936.0, "Total Transactions": 248.0, "Total Customers": 213.0, "Median Spend per Transaction": 29.05, "Median Spend per Customer": 30.73 }, "geometry": { "type": "Point", "coordinates": [ -75.172659, 39.962276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "6100 Frankford Ave", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2019, "Total Visits": 576.0, "Total Visitors": 458.0, "POI_CBG": 421010317003.0, "Median Dwell Time": 12.0, "Total Spend": 8558.0, "Total Transactions": 805.0, "Total Customers": 565.0, "Median Spend per Transaction": 9.01, "Median Spend per Customer": 11.65 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-v4v", "Name": "Olde City Food Market", "Category": "Grocery Stores", "Address": "202 Market St", "LATITUDE": 39.949709, "LONGITUDE": -75.144055, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 258.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 725.0, "Total Transactions": 68.0, "Total Customers": 27.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 22.83 }, "geometry": { "type": "Point", "coordinates": [ -75.144055, 39.949709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "10000 Bustleton Ave", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2019, "Total Visits": 1146.0, "Total Visitors": 913.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 6.0, "Total Spend": 8052.0, "Total Transactions": 323.0, "Total Customers": 198.0, "Median Spend per Transaction": 12.39, "Median Spend per Customer": 23.47 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pmf-jd9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1628 Chestnut St # 36", "LATITUDE": 39.9512, "LONGITUDE": -75.168586, "DATE_RANGE_START": 2019, "Total Visits": 3245.0, "Total Visitors": 2289.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 180.0, "Total Spend": 18752.0, "Total Transactions": 1299.0, "Total Customers": 918.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 12.13 }, "geometry": { "type": "Point", "coordinates": [ -75.168586, 39.9512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phz-q4v", "Name": "Jj's Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3800 J St", "LATITUDE": 40.005715, "LONGITUDE": -75.107525, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 80.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 64.0, "Total Spend": 1109.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107525, 40.005715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "1234 Locust St", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2019, "Total Visits": 2051.0, "Total Visitors": 1324.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 86.0, "Total Spend": 11192.0, "Total Transactions": 207.0, "Total Customers": 197.0, "Median Spend per Transaction": 43.85, "Median Spend per Customer": 46.29 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-y7q", "Name": "Siu Kee Duck House", "Category": "Restaurants and Other Eating Places", "Address": "111 N 10th St", "LATITUDE": 39.953918, "LONGITUDE": -75.155876, "DATE_RANGE_START": 2019, "Total Visits": 6866.0, "Total Visitors": 4814.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 50.0, "Total Spend": 126.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.3, "Median Spend per Customer": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155876, 39.953918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-zvf", "Name": "Tavern On the Hill", "Category": "Restaurants and Other Eating Places", "Address": "8636 Germantown Ave", "LATITUDE": 40.077151, "LONGITUDE": -75.208916, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 65.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 20.0, "Total Spend": 4672.0, "Total Transactions": 95.0, "Total Customers": 68.0, "Median Spend per Transaction": 46.0, "Median Spend per Customer": 60.76 }, "geometry": { "type": "Point", "coordinates": [ -75.208916, 40.077151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phz-wkz", "Name": "Steve's Old Pizza London", "Category": "Restaurants and Other Eating Places", "Address": "3573 Frankford Ave", "LATITUDE": 39.997988, "LONGITUDE": -75.101209, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 72.0, "POI_CBG": 421010188002.0, "Median Dwell Time": 269.0, "Total Spend": 1714.0, "Total Transactions": 78.0, "Total Customers": 62.0, "Median Spend per Transaction": 21.74, "Median Spend per Customer": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.101209, 39.997988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-v75", "Name": "JJ Bootleggers", "Category": "Restaurants and Other Eating Places", "Address": "35 S 2nd St", "LATITUDE": 39.94896, "LONGITUDE": -75.143844, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 35.0, "Total Spend": 17467.0, "Total Transactions": 585.0, "Total Customers": 475.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 30.28 }, "geometry": { "type": "Point", "coordinates": [ -75.143844, 39.94896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd # 4", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2019, "Total Visits": 29365.0, "Total Visitors": 13895.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 133.0, "Total Spend": 14668.0, "Total Transactions": 1433.0, "Total Customers": 870.0, "Median Spend per Transaction": 8.94, "Median Spend per Customer": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-54v", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "2875 W Dauphin St", "LATITUDE": 39.991295, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2019, "Total Visits": 581.0, "Total Visitors": 431.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 22.0, "Total Spend": 280.0, "Total Transactions": 23.0, "Total Customers": 18.0, "Median Spend per Transaction": 9.38, "Median Spend per Customer": 9.61 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978087, "LONGITUDE": -75.11955, "DATE_RANGE_START": 2019, "Total Visits": 888.0, "Total Visitors": 541.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 3.0, "Total Spend": 11337.0, "Total Transactions": 1669.0, "Total Customers": 856.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.11955, 39.978087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6401 Roosevelt Blvd", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2019, "Total Visits": 706.0, "Total Visitors": 478.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 3.0, "Total Spend": 3029.0, "Total Transactions": 541.0, "Total Customers": 257.0, "Median Spend per Transaction": 4.91, "Median Spend per Customer": 6.84 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2951 Market St", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 24.0, "Total Spend": 7374.0, "Total Transactions": 1887.0, "Total Customers": 1079.0, "Median Spend per Transaction": 3.45, "Median Spend per Customer": 4.31 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-c89", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7970 Dungan Rd # 80", "LATITUDE": 40.068373, "LONGITUDE": -75.068436, "DATE_RANGE_START": 2019, "Total Visits": 581.0, "Total Visitors": 343.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 2.0, "Total Spend": 3756.0, "Total Transactions": 586.0, "Total Customers": 265.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.068436, 40.068373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-ks5", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "218 Arch St", "LATITUDE": 39.951718, "LONGITUDE": -75.144312, "DATE_RANGE_START": 2019, "Total Visits": 1532.0, "Total Visitors": 1138.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 43.0, "Total Spend": 4206.0, "Total Transactions": 336.0, "Total Customers": 255.0, "Median Spend per Transaction": 9.86, "Median Spend per Customer": 12.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 39.951718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj5-435", "Name": "1 Stop Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3701 Germantown Ave", "LATITUDE": 40.009415, "LONGITUDE": -75.15067, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 108.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 7.0, "Total Spend": 478.0, "Total Transactions": 57.0, "Total Customers": 43.0, "Median Spend per Transaction": 6.03, "Median Spend per Customer": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15067, 40.009415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "Name": "El Coqui Panaderia", "Category": "Restaurants and Other Eating Places", "Address": "3528 I St", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2019, "Total Visits": 162.0, "Total Visitors": 140.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 7.0, "Total Spend": 6054.0, "Total Transactions": 386.0, "Total Customers": 275.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj4-y7q", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "3600 Germantown Ave", "LATITUDE": 40.007623, "LONGITUDE": -75.150494, "DATE_RANGE_START": 2019, "Total Visits": 660.0, "Total Visitors": 516.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 4.0, "Total Spend": 4919.0, "Total Transactions": 47.0, "Total Customers": 42.0, "Median Spend per Transaction": 86.5, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150494, 40.007623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "56 Snyder Ave Spc 25", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 153.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 15.0, "Total Spend": 1929.0, "Total Transactions": 168.0, "Total Customers": 130.0, "Median Spend per Transaction": 9.19, "Median Spend per Customer": 10.42 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "Name": "The Little Apple", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4361 Main St", "LATITUDE": 40.025728, "LONGITUDE": -75.223969, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 85.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 10.0, "Total Spend": 3319.0, "Total Transactions": 93.0, "Total Customers": 92.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223969, 40.025728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvx-vs5", "Name": "Curry Bird", "Category": "Restaurants and Other Eating Places", "Address": "4604 Woodland Ave", "LATITUDE": 39.944122, "LONGITUDE": -75.209774, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 15.0, "POI_CBG": 421010074001.0, "Median Dwell Time": null, "Total Spend": 771.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 23.65, "Median Spend per Customer": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.209774, 39.944122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pjf-kcq", "Name": "Kimberly James Bridal", "Category": "Clothing Stores", "Address": "15 W Highland Ave Ste 1", "LATITUDE": 40.075732, "LONGITUDE": -75.206965, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 128.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 60.0, "Total Spend": 150.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206965, 40.075732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-w6k", "Name": "Food & Friends", "Category": "Grocery Stores", "Address": "1933 Spruce St", "LATITUDE": 39.948295, "LONGITUDE": -75.174192, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 242.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 32.0, "Total Spend": 39015.0, "Total Transactions": 2195.0, "Total Customers": 1108.0, "Median Spend per Transaction": 14.85, "Median Spend per Customer": 22.19 }, "geometry": { "type": "Point", "coordinates": [ -75.174192, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm4-mc5", "Name": "Meat Market El Pueblo", "Category": "Specialty Food Stores", "Address": "1141 S 9th St", "LATITUDE": 39.935181, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2019, "Total Visits": 143.0, "Total Visitors": 138.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 12.0, "Total Spend": 1058.0, "Total Transactions": 40.0, "Total Customers": 40.0, "Median Spend per Transaction": 17.46, "Median Spend per Customer": 17.46 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.935181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-223@628-p8n-389", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6327 Torresdale Ave # 43", "LATITUDE": 40.02098, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2019, "Total Visits": 358.0, "Total Visitors": 253.0, "POI_CBG": 421010323001.0, "Median Dwell Time": 6.0, "Total Spend": 1220.0, "Total Transactions": 100.0, "Total Customers": 55.0, "Median Spend per Transaction": 9.27, "Median Spend per Customer": 11.16 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.02098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1500 Spruce St", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2019, "Total Visits": 1854.0, "Total Visitors": 1113.0, "POI_CBG": 421010012021.0, "Median Dwell Time": 37.0, "Total Spend": 27749.0, "Total Transactions": 1634.0, "Total Customers": 815.0, "Median Spend per Transaction": 10.76, "Median Spend per Customer": 19.95 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "Name": "Cuba Libre Restaurant & Rum Bar Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "10 S 2nd St", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2019, "Total Visits": 348.0, "Total Visitors": 283.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 56.0, "Total Spend": 1214.0, "Total Transactions": 90.0, "Total Customers": 82.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-ty9", "Name": "La Fontana Della Citta", "Category": "Restaurants and Other Eating Places", "Address": "1701 Spruce St", "LATITUDE": 39.947768, "LONGITUDE": -75.169697, "DATE_RANGE_START": 2019, "Total Visits": 360.0, "Total Visitors": 293.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 82.0, "Total Spend": 4209.0, "Total Transactions": 62.0, "Total Customers": 60.0, "Median Spend per Transaction": 54.2, "Median Spend per Customer": 55.27 }, "geometry": { "type": "Point", "coordinates": [ -75.169697, 39.947768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj5-3yv", "Name": "Bravo Seafood", "Category": "Restaurants and Other Eating Places", "Address": "3742 Germantown Ave", "LATITUDE": 40.010478, "LONGITUDE": -75.151556, "DATE_RANGE_START": 2019, "Total Visits": 1221.0, "Total Visitors": 951.0, "POI_CBG": 421010201021.0, "Median Dwell Time": 17.0, "Total Spend": 607.0, "Total Transactions": 17.0, "Total Customers": 15.0, "Median Spend per Transaction": 27.17, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.151556, 40.010478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6rk", "Name": "Le Pain Quotidien", "Category": "Restaurants and Other Eating Places", "Address": "1425 Walnut St", "LATITUDE": 39.949701, "LONGITUDE": -75.165264, "DATE_RANGE_START": 2019, "Total Visits": 395.0, "Total Visitors": 252.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 158.0, "Total Spend": 95.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.49, "Median Spend per Customer": 17.49 }, "geometry": { "type": "Point", "coordinates": [ -75.165264, 39.949701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "Name": "Suraya", "Category": "Restaurants and Other Eating Places", "Address": "1528 Frankford Ave", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2019, "Total Visits": 850.0, "Total Visitors": 721.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 79.0, "Total Spend": 117362.0, "Total Transactions": 1423.0, "Total Customers": 1178.0, "Median Spend per Transaction": 43.74, "Median Spend per Customer": 54.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phz-2c5", "Name": "New Supermarket", "Category": "Restaurants and Other Eating Places", "Address": "4764 Rorer St", "LATITUDE": 40.021812, "LONGITUDE": -75.114561, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 42.0, "POI_CBG": 421010289022.0, "Median Dwell Time": 929.0, "Total Spend": 1440.0, "Total Transactions": 140.0, "Total Customers": 75.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.114561, 40.021812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "2101 S 11th St", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2019, "Total Visits": 2070.0, "Total Visitors": 1118.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 4.0, "Total Spend": 17075.0, "Total Transactions": 835.0, "Total Customers": 515.0, "Median Spend per Transaction": 19.35, "Median Spend per Customer": 25.01 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjb-6ff", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "6200 N Broad St", "LATITUDE": 40.04808, "LONGITUDE": -75.143086, "DATE_RANGE_START": 2019, "Total Visits": 2893.0, "Total Visitors": 2087.0, "POI_CBG": 421010277001.0, "Median Dwell Time": 6.0, "Total Spend": 88.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 26.43, "Median Spend per Customer": 26.43 }, "geometry": { "type": "Point", "coordinates": [ -75.143086, 40.04808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "Name": "Windsor", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Spc 731", "LATITUDE": 40.08613, "LONGITUDE": -74.962864, "DATE_RANGE_START": 2019, "Total Visits": 292.0, "Total Visitors": 282.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 7769.0, "Total Transactions": 180.0, "Total Customers": 165.0, "Median Spend per Transaction": 29.4, "Median Spend per Customer": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -74.962864, 40.08613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2211 Stenton Ave", "LATITUDE": 40.055857, "LONGITUDE": -75.157863, "DATE_RANGE_START": 2019, "Total Visits": 883.0, "Total Visitors": 661.0, "POI_CBG": 421010265006.0, "Median Dwell Time": 5.0, "Total Spend": 7073.0, "Total Transactions": 768.0, "Total Customers": 566.0, "Median Spend per Transaction": 7.6, "Median Spend per Customer": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157863, 40.055857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmf-tvz", "Name": "Aurora Grace", "Category": "Restaurants and Other Eating Places", "Address": "225 S 18th St", "LATITUDE": 39.949402, "LONGITUDE": -75.170471, "DATE_RANGE_START": 2019, "Total Visits": 1596.0, "Total Visitors": 1009.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 90.0, "Total Spend": 567.0, "Total Transactions": 37.0, "Total Customers": 37.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.170471, 39.949402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "Name": "Monster Pets", "Category": "Other Miscellaneous Store Retailers", "Address": "1946 S Columbus Blvd", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 252.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 8.0, "Total Spend": 4455.0, "Total Transactions": 100.0, "Total Customers": 93.0, "Median Spend per Transaction": 37.79, "Median Spend per Customer": 38.32 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-tsq", "Name": "Pennsport Beer Boutique", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "242 Wharton St", "LATITUDE": 39.931601, "LONGITUDE": -75.149607, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 85.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 36.0, "Total Spend": 1394.0, "Total Transactions": 60.0, "Total Customers": 45.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149607, 39.931601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjf-zvf", "Name": "McNally's Tavern Chestnut Hill", "Category": "Restaurants and Other Eating Places", "Address": "8634 Germantown Ave", "LATITUDE": 40.077129, "LONGITUDE": -75.208866, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 52.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 39.0, "Total Spend": 4491.0, "Total Transactions": 98.0, "Total Customers": 88.0, "Median Spend per Transaction": 41.18, "Median Spend per Customer": 39.87 }, "geometry": { "type": "Point", "coordinates": [ -75.208866, 40.077129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmf-kzz", "Name": "City Tap House", "Category": "Restaurants and Other Eating Places", "Address": "100 N 18th St", "LATITUDE": 39.95591, "LONGITUDE": -75.169553, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 178.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 10.0, "Total Spend": 8182.0, "Total Transactions": 173.0, "Total Customers": 168.0, "Median Spend per Transaction": 36.58, "Median Spend per Customer": 37.45 }, "geometry": { "type": "Point", "coordinates": [ -75.169553, 39.95591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-5mk", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "313 Spring Garden St", "LATITUDE": 39.961178, "LONGITUDE": -75.143721, "DATE_RANGE_START": 2019, "Total Visits": 991.0, "Total Visitors": 693.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 28.0, "Total Spend": 5351.0, "Total Transactions": 105.0, "Total Customers": 93.0, "Median Spend per Transaction": 37.11, "Median Spend per Customer": 42.84 }, "geometry": { "type": "Point", "coordinates": [ -75.143721, 39.961178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pp5-p35", "Name": "Martin's Deli", "Category": "Restaurants and Other Eating Places", "Address": "2772 Kensington Ave", "LATITUDE": 39.991299, "LONGITUDE": -75.123216, "DATE_RANGE_START": 2019, "Total Visits": 1524.0, "Total Visitors": 1074.0, "POI_CBG": 421010177022.0, "Median Dwell Time": 14.0, "Total Spend": 335.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 6.58, "Median Spend per Customer": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.123216, 39.991299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj2-mrk", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "3960 Kensington Ave # 80", "LATITUDE": 40.006514, "LONGITUDE": -75.095617, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 120.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 5.0, "Total Spend": 1374.0, "Total Transactions": 127.0, "Total Customers": 108.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.095617, 40.006514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "Name": "Nordstrom Rack", "Category": "Clothing Stores", "Address": "1700 Chestnut St", "LATITUDE": 39.951246, "LONGITUDE": -75.168975, "DATE_RANGE_START": 2019, "Total Visits": 3251.0, "Total Visitors": 2625.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 150864.0, "Total Transactions": 2445.0, "Total Customers": 2192.0, "Median Spend per Transaction": 45.31, "Median Spend per Customer": 49.94 }, "geometry": { "type": "Point", "coordinates": [ -75.168975, 39.951246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "Name": "Kitchen Kapers", "Category": "Home Furnishings Stores", "Address": "8530 Germantown Ave", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 598.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 31.0, "Total Spend": 1640.0, "Total Transactions": 43.0, "Total Customers": 42.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 24.81 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm9-y9z", "Name": "Urban Princess Boutique", "Category": "Clothing Stores", "Address": "620 S 4th St", "LATITUDE": 39.941138, "LONGITUDE": -75.149398, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 128.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 5.0, "Total Spend": 1015.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 25.92, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149398, 39.941138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "Name": "Kashmir Garden Super Market", "Category": "Grocery Stores", "Address": "9325 Krewstown Rd", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 118.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 11.0, "Total Spend": 10269.0, "Total Transactions": 306.0, "Total Customers": 197.0, "Median Spend per Transaction": 24.23, "Median Spend per Customer": 36.88 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24r-222@628-pm7-kmk", "Name": "8 Brothers Food Market", "Category": "Grocery Stores", "Address": "2639 Tasker St", "LATITUDE": 39.933486, "LONGITUDE": -75.18947, "DATE_RANGE_START": 2019, "Total Visits": 230.0, "Total Visitors": 142.0, "POI_CBG": 421010032006.0, "Median Dwell Time": 68.0, "Total Spend": 254.0, "Total Transactions": 27.0, "Total Customers": 20.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18947, 39.933486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kzz", "Name": "Curio Collection", "Category": "Traveler Accommodation", "Address": "1 Logan Sq", "LATITUDE": 39.95668, "LONGITUDE": -75.169667, "DATE_RANGE_START": 2019, "Total Visits": 5180.0, "Total Visitors": 3583.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 142.0, "Total Spend": 173.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169667, 39.95668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-w6k", "Name": "Society Hill Hotel", "Category": "Traveler Accommodation", "Address": "301 Chestnut St", "LATITUDE": 39.948794, "LONGITUDE": -75.146118, "DATE_RANGE_START": 2019, "Total Visits": 265.0, "Total Visitors": 257.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 821.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 122.48, "Median Spend per Customer": 122.48 }, "geometry": { "type": "Point", "coordinates": [ -75.146118, 39.948794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-jd9", "Name": "Westin Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "99 South 17th Street At Liberty Place", "LATITUDE": 39.952041, "LONGITUDE": -75.168491, "DATE_RANGE_START": 2019, "Total Visits": 8057.0, "Total Visitors": 5229.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 54.0, "Total Spend": 37354.0, "Total Transactions": 208.0, "Total Customers": 167.0, "Median Spend per Transaction": 55.0, "Median Spend per Customer": 92.38 }, "geometry": { "type": "Point", "coordinates": [ -75.168491, 39.952041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "Name": "Fairfield Inn & Suites by Marriott", "Category": "Traveler Accommodation", "Address": "8800 Bartram Ave", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2019, "Total Visits": 3816.0, "Total Visitors": 2389.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 220.0, "Total Spend": 21767.0, "Total Transactions": 173.0, "Total Customers": 143.0, "Median Spend per Transaction": 122.77, "Median Spend per Customer": 145.02 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "Name": "Stateside", "Category": "Restaurants and Other Eating Places", "Address": "1536 E Passyunk Ave", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 42.0, "Total Spend": 12126.0, "Total Transactions": 310.0, "Total Customers": 265.0, "Median Spend per Transaction": 31.42, "Median Spend per Customer": 36.07 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "Name": "Butcher Bar", "Category": "Restaurants and Other Eating Places", "Address": "2034 Chestnut St", "LATITUDE": 39.95199, "LONGITUDE": -75.174938, "DATE_RANGE_START": 2019, "Total Visits": 2805.0, "Total Visitors": 1862.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 101.0, "Total Spend": 25822.0, "Total Transactions": 448.0, "Total Customers": 391.0, "Median Spend per Transaction": 44.0, "Median Spend per Customer": 51.23 }, "geometry": { "type": "Point", "coordinates": [ -75.174938, 39.95199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6190 N Front St", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2019, "Total Visits": 463.0, "Total Visitors": 333.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 2.0, "Total Spend": 3901.0, "Total Transactions": 620.0, "Total Customers": 333.0, "Median Spend per Transaction": 4.95, "Median Spend per Customer": 7.21 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-5zz", "Name": "Crunchik'n", "Category": "Restaurants and Other Eating Places", "Address": "212 S 11th St", "LATITUDE": 39.948207, "LONGITUDE": -75.159314, "DATE_RANGE_START": 2019, "Total Visits": 190.0, "Total Visitors": 115.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 96.0, "Total Spend": 267.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 18.37 }, "geometry": { "type": "Point", "coordinates": [ -75.159314, 39.948207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "Name": "Penrose Diner", "Category": "Restaurants and Other Eating Places", "Address": "2016 Penrose Ave", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2019, "Total Visits": 1794.0, "Total Visitors": 1459.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 30.0, "Total Spend": 30657.0, "Total Transactions": 848.0, "Total Customers": 718.0, "Median Spend per Transaction": 30.66, "Median Spend per Customer": 33.41 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "Name": "SquareBurger", "Category": "Restaurants and Other Eating Places", "Address": "200 N 6th St", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 65.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 140.0, "Total Spend": 1090.0, "Total Transactions": 68.0, "Total Customers": 65.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 12.72 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "Name": "Venu", "Category": "Restaurants and Other Eating Places", "Address": "13th & Packer Ave", "LATITUDE": 39.911404, "LONGITUDE": -75.170366, "DATE_RANGE_START": 2019, "Total Visits": 3150.0, "Total Visitors": 2499.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 3.0, "Total Spend": 24395.0, "Total Transactions": 946.0, "Total Customers": 463.0, "Median Spend per Transaction": 17.09, "Median Spend per Customer": 36.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170366, 39.911404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-249", "Name": "On Point Bistro", "Category": "Restaurants and Other Eating Places", "Address": "1200 Point Breeze Ave", "LATITUDE": 39.937259, "LONGITUDE": -75.177106, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 47.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 15.0, "Total Spend": 4615.0, "Total Transactions": 130.0, "Total Customers": 118.0, "Median Spend per Transaction": 25.37, "Median Spend per Customer": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177106, 39.937259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "8743 Frankford Ave", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 87.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 304.0, "Total Spend": 1269.0, "Total Transactions": 60.0, "Total Customers": 57.0, "Median Spend per Transaction": 17.96, "Median Spend per Customer": 19.54 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dw9-835", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave # E8A", "LATITUDE": 39.878257, "LONGITUDE": -75.238877, "DATE_RANGE_START": 2019, "Total Visits": 1381.0, "Total Visitors": 1268.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 20.0, "Total Spend": 8302.0, "Total Transactions": 780.0, "Total Customers": 725.0, "Median Spend per Transaction": 9.48, "Median Spend per Customer": 9.49 }, "geometry": { "type": "Point", "coordinates": [ -75.238877, 39.878257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-8n5", "Name": "Federal Donuts North", "Category": "Restaurants and Other Eating Places", "Address": "701 N 7th St", "LATITUDE": 39.964219, "LONGITUDE": -75.14909, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 80.0, "POI_CBG": 421010131001.0, "Median Dwell Time": 4.0, "Total Spend": 370.0, "Total Transactions": 27.0, "Total Customers": 23.0, "Median Spend per Transaction": 12.05, "Median Spend per Customer": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14909, 39.964219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-d35", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2201 2219 South Broad Street Commerce Plaza", "LATITUDE": 39.922445, "LONGITUDE": -75.169848, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 165.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 1.0, "Total Spend": 7670.0, "Total Transactions": 1083.0, "Total Customers": 661.0, "Median Spend per Transaction": 5.67, "Median Spend per Customer": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.169848, 39.922445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pm3-vs5", "Name": "Mike & Matt's Italian Market", "Category": "Grocery Stores", "Address": "1206 Mifflin St", "LATITUDE": 39.926268, "LONGITUDE": -75.165968, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 15.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 160.0, "Total Spend": 432.0, "Total Transactions": 40.0, "Total Customers": 30.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165968, 39.926268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-qpv", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "800 W Erie Ave", "LATITUDE": 40.007797, "LONGITUDE": -75.141965, "DATE_RANGE_START": 2019, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010199002.0, "Median Dwell Time": 2.0, "Total Spend": 286.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 13.1, "Median Spend per Customer": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.141965, 40.007797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-ph9-pqf", "Name": "Rice and Things", "Category": "Restaurants and Other Eating Places", "Address": "7232 Haverford Ave", "LATITUDE": 39.974763, "LONGITUDE": -75.261333, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 23.0, "POI_CBG": 421010098021.0, "Median Dwell Time": 8.0, "Total Spend": 1671.0, "Total Transactions": 75.0, "Total Customers": 62.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.261333, 39.974763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phz-6c5", "Name": "L & M Food Market", "Category": "Grocery Stores", "Address": "4863 D St", "LATITUDE": 40.0235, "LONGITUDE": -75.115742, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010289023.0, "Median Dwell Time": 13.0, "Total Spend": 145.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.115742, 40.0235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-grk", "Name": "Nick's Charcoal Pit", "Category": "Restaurants and Other Eating Places", "Address": "1242 Snyder Ave", "LATITUDE": 39.923906, "LONGITUDE": -75.167451, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 30.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 1.0, "Total Spend": 1185.0, "Total Transactions": 48.0, "Total Customers": 43.0, "Median Spend per Transaction": 15.4, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167451, 39.923906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmd-zcq", "Name": "Los Camaradas", "Category": "Restaurants and Other Eating Places", "Address": "918 S 22nd St", "LATITUDE": 39.940826, "LONGITUDE": -75.179816, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010013003.0, "Median Dwell Time": 72.0, "Total Spend": 13554.0, "Total Transactions": 330.0, "Total Customers": 280.0, "Median Spend per Transaction": 34.22, "Median Spend per Customer": 35.87 }, "geometry": { "type": "Point", "coordinates": [ -75.179816, 39.940826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-nnq", "Name": "Square Pie", "Category": "Restaurants and Other Eating Places", "Address": "600 Catharine St", "LATITUDE": 39.938609, "LONGITUDE": -75.152665, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 110.0, "Total Spend": 2117.0, "Total Transactions": 67.0, "Total Customers": 60.0, "Median Spend per Transaction": 31.24, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.152665, 39.938609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-j5f", "Name": "Poppy's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8229 Germantown Ave", "LATITUDE": 40.074185, "LONGITUDE": -75.202466, "DATE_RANGE_START": 2019, "Total Visits": 665.0, "Total Visitors": 490.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 27.0, "Total Spend": 784.0, "Total Transactions": 115.0, "Total Customers": 93.0, "Median Spend per Transaction": 6.4, "Median Spend per Customer": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202466, 40.074185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4046 Woodhaven Rd", "LATITUDE": 40.086321, "LONGITUDE": -74.971748, "DATE_RANGE_START": 2019, "Total Visits": 2399.0, "Total Visitors": 1687.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 4.0, "Total Spend": 10812.0, "Total Transactions": 1964.0, "Total Customers": 623.0, "Median Spend per Transaction": 4.51, "Median Spend per Customer": 9.06 }, "geometry": { "type": "Point", "coordinates": [ -74.971748, 40.086321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "Name": "Bistrot La Minette", "Category": "Restaurants and Other Eating Places", "Address": "623 S 6th St", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 98.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 119.0, "Total Spend": 5548.0, "Total Transactions": 53.0, "Total Customers": 52.0, "Median Spend per Transaction": 92.53, "Median Spend per Customer": 92.87 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfy-h3q", "Name": "Mr P Pizza & Pasta", "Category": "Restaurants and Other Eating Places", "Address": "7138 Ridge Ave", "LATITUDE": 40.044177, "LONGITUDE": -75.231987, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 90.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 17.0, "Total Spend": 1845.0, "Total Transactions": 132.0, "Total Customers": 97.0, "Median Spend per Transaction": 9.97, "Median Spend per Customer": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.231987, 40.044177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "Name": "Oneals Pub", "Category": "Restaurants and Other Eating Places", "Address": "611 S 3rd St", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 52.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 33.0, "Total Spend": 7989.0, "Total Transactions": 232.0, "Total Customers": 145.0, "Median Spend per Transaction": 28.1, "Median Spend per Customer": 29.35 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-5mk", "Name": "McGillin's Olde Ale House", "Category": "Restaurants and Other Eating Places", "Address": "1310 Drury St", "LATITUDE": 39.95021, "LONGITUDE": -75.162564, "DATE_RANGE_START": 2019, "Total Visits": 373.0, "Total Visitors": 326.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 46.0, "Total Spend": 44406.0, "Total Transactions": 2175.0, "Total Customers": 1529.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162564, 39.95021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg2-hdv", "Name": "Golden Crust Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "7153 Germantown Ave", "LATITUDE": 40.059871, "LONGITUDE": -75.190661, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 78.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 13.0, "Total Spend": 2931.0, "Total Transactions": 200.0, "Total Customers": 133.0, "Median Spend per Transaction": 13.87, "Median Spend per Customer": 15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.190661, 40.059871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-6ff", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "924 Walnut St", "LATITUDE": 39.948341, "LONGITUDE": -75.157035, "DATE_RANGE_START": 2019, "Total Visits": 2284.0, "Total Visitors": 1547.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 52.0, "Total Spend": 820.0, "Total Transactions": 53.0, "Total Customers": 47.0, "Median Spend per Transaction": 13.09, "Median Spend per Customer": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.157035, 39.948341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p85-2hq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8298 Bustleton Ave", "LATITUDE": 40.066275, "LONGITUDE": -75.051537, "DATE_RANGE_START": 2019, "Total Visits": 580.0, "Total Visitors": 435.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 6.0, "Total Spend": 918.0, "Total Transactions": 182.0, "Total Customers": 105.0, "Median Spend per Transaction": 4.1, "Median Spend per Customer": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.051537, 40.066275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmd-yjv", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "2001 Federal St", "LATITUDE": 39.937442, "LONGITUDE": -75.176792, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 57.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 525.0, "Total Spend": 6266.0, "Total Transactions": 758.0, "Total Customers": 613.0, "Median Spend per Transaction": 6.59, "Median Spend per Customer": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.176792, 39.937442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23c@628-pmf-mrk", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 204", "LATITUDE": 39.952393, "LONGITUDE": -75.168002, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 102.0, "Total Spend": 3081.0, "Total Transactions": 227.0, "Total Customers": 207.0, "Median Spend per Transaction": 10.62, "Median Spend per Customer": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.168002, 39.952393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-52k", "Name": "Orient Express", "Category": "Restaurants and Other Eating Places", "Address": "1835 N 12th St Ste 7", "LATITUDE": 39.980968, "LONGITUDE": -75.15329, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 1.0, "Total Spend": 1681.0, "Total Transactions": 198.0, "Total Customers": 115.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15329, 39.980968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pzn-zfz", "Name": "Syriana Hookah Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "14254 Bustleton Ave", "LATITUDE": 40.132652, "LONGITUDE": -75.012051, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 30.0, "Total Spend": 176.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.88, "Median Spend per Customer": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.012051, 40.132652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfw-g6k", "Name": "Apollo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3542 Conrad St", "LATITUDE": 40.012812, "LONGITUDE": -75.190541, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010207003.0, "Median Dwell Time": 22.0, "Total Spend": 793.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 19.9, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.190541, 40.012812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "Name": "Tavern On Camac", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "243 S Camac St", "LATITUDE": 39.947272, "LONGITUDE": -75.161618, "DATE_RANGE_START": 2019, "Total Visits": 421.0, "Total Visitors": 305.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 50.0, "Total Spend": 30897.0, "Total Transactions": 1378.0, "Total Customers": 723.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 27.28 }, "geometry": { "type": "Point", "coordinates": [ -75.161618, 39.947272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qmk", "Name": "Sea Soul", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.038264, "LONGITUDE": -75.11969, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 127.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 11.0, "Total Spend": 277.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 10.59, "Median Spend per Customer": 11.74 }, "geometry": { "type": "Point", "coordinates": [ -75.11969, 40.038264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-7nq", "Name": "Chatayee Thai", "Category": "Restaurants and Other Eating Places", "Address": "1227 Walnut St", "LATITUDE": 39.94915, "LONGITUDE": -75.161857, "DATE_RANGE_START": 2019, "Total Visits": 2540.0, "Total Visitors": 1722.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 96.0, "Total Spend": 1326.0, "Total Transactions": 35.0, "Total Customers": 28.0, "Median Spend per Transaction": 21.44, "Median Spend per Customer": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161857, 39.94915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "Name": "Vientiane Bistro", "Category": "Restaurants and Other Eating Places", "Address": "2537 Kensington Ave", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 67.0, "POI_CBG": 421010161003.0, "Median Dwell Time": 5.0, "Total Spend": 158.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 22.5, "Median Spend per Customer": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-f4v", "Name": "Action Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7202 Ogontz Ave", "LATITUDE": 40.064215, "LONGITUDE": -75.153872, "DATE_RANGE_START": 2019, "Total Visits": 120.0, "Total Visitors": 58.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 342.0, "Total Spend": 869.0, "Total Transactions": 50.0, "Total Customers": 40.0, "Median Spend per Transaction": 16.97, "Median Spend per Customer": 18.28 }, "geometry": { "type": "Point", "coordinates": [ -75.153872, 40.064215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "Name": "Lucky 13 Pub", "Category": "Restaurants and Other Eating Places", "Address": "1820 S 13th St", "LATITUDE": 39.927169, "LONGITUDE": -75.167128, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 58.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 60.0, "Total Spend": 6020.0, "Total Transactions": 223.0, "Total Customers": 160.0, "Median Spend per Transaction": 21.96, "Median Spend per Customer": 31.35 }, "geometry": { "type": "Point", "coordinates": [ -75.167128, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm9-z2k", "Name": "Royal Sushi & Izakaya", "Category": "Restaurants and Other Eating Places", "Address": "780 S 2nd St # 782", "LATITUDE": 39.938134, "LONGITUDE": -75.146531, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 232.0, "POI_CBG": 421010017001.0, "Median Dwell Time": 81.0, "Total Spend": 32539.0, "Total Transactions": 386.0, "Total Customers": 331.0, "Median Spend per Transaction": 66.2, "Median Spend per Customer": 71.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146531, 39.938134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-v75", "Name": "Margherita Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "60 S 2nd St", "LATITUDE": 39.948535, "LONGITUDE": -75.144159, "DATE_RANGE_START": 2019, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 20.0, "Total Spend": 3866.0, "Total Transactions": 328.0, "Total Customers": 242.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mzf", "Name": "Passero's Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "1601 John F Kennedy Blvd", "LATITUDE": 39.954206, "LONGITUDE": -75.167446, "DATE_RANGE_START": 2019, "Total Visits": 12348.0, "Total Visitors": 6193.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 129.0, "Total Spend": 749.0, "Total Transactions": 143.0, "Total Customers": 97.0, "Median Spend per Transaction": 4.1, "Median Spend per Customer": 5.78 }, "geometry": { "type": "Point", "coordinates": [ -75.167446, 39.954206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "Name": "Chicko Tako", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 108.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 10.0, "Total Spend": 3064.0, "Total Transactions": 167.0, "Total Customers": 145.0, "Median Spend per Transaction": 14.85, "Median Spend per Customer": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-xnq", "Name": "Dae Bak", "Category": "Restaurants and Other Eating Places", "Address": "1016 Race St Fl 2", "LATITUDE": 39.955289, "LONGITUDE": -75.156637, "DATE_RANGE_START": 2019, "Total Visits": 8184.0, "Total Visitors": 5962.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 43.0, "Total Spend": 4417.0, "Total Transactions": 102.0, "Total Customers": 98.0, "Median Spend per Transaction": 33.12, "Median Spend per Customer": 35.53 }, "geometry": { "type": "Point", "coordinates": [ -75.156637, 39.955289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "Name": "Sam's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5450 Rutland St", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 65.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 10.0, "Total Spend": 311.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 15.25, "Median Spend per Customer": 17.13 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-649", "Name": "Peking Inn", "Category": "Restaurants and Other Eating Places", "Address": "4905 Catharine St", "LATITUDE": 39.948431, "LONGITUDE": -75.221496, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 80.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 18.0, "Total Spend": 542.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 24.08 }, "geometry": { "type": "Point", "coordinates": [ -75.221496, 39.948431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7325 Castor Ave", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 132.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 10.0, "Total Spend": 3914.0, "Total Transactions": 210.0, "Total Customers": 160.0, "Median Spend per Transaction": 16.17, "Median Spend per Customer": 20.91 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4211 N Broad St", "LATITUDE": 40.017737, "LONGITUDE": -75.148813, "DATE_RANGE_START": 2019, "Total Visits": 285.0, "Total Visitors": 262.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 9.0, "Total Spend": 3616.0, "Total Transactions": 296.0, "Total Customers": 253.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 11.42 }, "geometry": { "type": "Point", "coordinates": [ -75.148813, 40.017737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "Name": "American Sardine Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1800 Federal St", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 68.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 23.0, "Total Spend": 1608.0, "Total Transactions": 52.0, "Total Customers": 48.0, "Median Spend per Transaction": 26.55, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-whq", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "304 Market St", "LATITUDE": 39.949985, "LONGITUDE": -75.146017, "DATE_RANGE_START": 2019, "Total Visits": 247.0, "Total Visitors": 227.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 10.0, "Total Spend": 1184.0, "Total Transactions": 58.0, "Total Customers": 57.0, "Median Spend per Transaction": 12.83, "Median Spend per Customer": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.146017, 39.949985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8f-9xq", "Name": "Leandro's Pizza House", "Category": "Restaurants and Other Eating Places", "Address": "4501 Frankford Ave", "LATITUDE": 40.013813, "LONGITUDE": -75.08597, "DATE_RANGE_START": 2019, "Total Visits": 435.0, "Total Visitors": 296.0, "POI_CBG": 421010294003.0, "Median Dwell Time": 42.0, "Total Spend": 175.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 25.74, "Median Spend per Customer": 21.78 }, "geometry": { "type": "Point", "coordinates": [ -75.08597, 40.013813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "29 E Chelten Ave", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2019, "Total Visits": 946.0, "Total Visitors": 753.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 7.0, "Total Spend": 8505.0, "Total Transactions": 991.0, "Total Customers": 666.0, "Median Spend per Transaction": 7.43, "Median Spend per Customer": 9.46 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-75z", "Name": "North Third", "Category": "Restaurants and Other Eating Places", "Address": "801 N 3rd St", "LATITUDE": 39.963481, "LONGITUDE": -75.142676, "DATE_RANGE_START": 2019, "Total Visits": 120.0, "Total Visitors": 107.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 33.0, "Total Spend": 2302.0, "Total Transactions": 40.0, "Total Customers": 33.0, "Median Spend per Transaction": 39.82, "Median Spend per Customer": 41.29 }, "geometry": { "type": "Point", "coordinates": [ -75.142676, 39.963481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Spring Garden St", "LATITUDE": 39.962408, "LONGITUDE": -75.163643, "DATE_RANGE_START": 2019, "Total Visits": 1246.0, "Total Visitors": 490.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 231.0, "Total Spend": 9902.0, "Total Transactions": 1944.0, "Total Customers": 934.0, "Median Spend per Transaction": 4.18, "Median Spend per Customer": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.163643, 39.962408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pgg-b8v", "Name": "Shrimp Express II", "Category": "Restaurants and Other Eating Places", "Address": "2205 W Indiana Ave", "LATITUDE": 40.000369, "LONGITUDE": -75.16696, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 40.0, "POI_CBG": 421010172013.0, "Median Dwell Time": 1.0, "Total Spend": 418.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 23.6, "Median Spend per Customer": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16696, 40.000369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-xnq", "Name": "Dim Sum Garden", "Category": "Restaurants and Other Eating Places", "Address": "1020 Race St", "LATITUDE": 39.955197, "LONGITUDE": -75.156774, "DATE_RANGE_START": 2019, "Total Visits": 810.0, "Total Visitors": 761.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 35.0, "Total Spend": 478.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 61.75, "Median Spend per Customer": 61.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 39.955197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "Name": "Menchie's", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd Unit 4", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2019, "Total Visits": 296.0, "Total Visitors": 273.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 7.0, "Total Spend": 761.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2145 W Allegheny Ave", "LATITUDE": 40.003544, "LONGITUDE": -75.165622, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 177.0, "POI_CBG": 421010202001.0, "Median Dwell Time": 31.0, "Total Spend": 2228.0, "Total Transactions": 353.0, "Total Customers": 260.0, "Median Spend per Transaction": 4.8, "Median Spend per Customer": 6.13 }, "geometry": { "type": "Point", "coordinates": [ -75.165622, 40.003544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "Name": "Reggae Reggae Vibes", "Category": "Restaurants and Other Eating Places", "Address": "517 W Girard Ave", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421010144003.0, "Median Dwell Time": 2.0, "Total Spend": 2666.0, "Total Transactions": 145.0, "Total Customers": 128.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 15.31 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-3yv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4701 N Mascher St", "LATITUDE": 40.022096, "LONGITUDE": -75.125775, "DATE_RANGE_START": 2019, "Total Visits": 840.0, "Total Visitors": 548.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 5.0, "Total Spend": 943.0, "Total Transactions": 55.0, "Total Customers": 52.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125775, 40.022096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pjf-ks5", "Name": "Threadwell", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "8432 Germantown Ave", "LATITUDE": 40.075533, "LONGITUDE": -75.206071, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 1.0, "Total Spend": 608.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 48.6, "Median Spend per Customer": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.206071, 40.075533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-qj9", "Name": "Evergreen Young's Market", "Category": "Specialty Food Stores", "Address": "7500 Verree Rd", "LATITUDE": 40.065852, "LONGITUDE": -75.083408, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 47.0, "POI_CBG": 421010339001.0, "Median Dwell Time": 4.0, "Total Spend": 2376.0, "Total Transactions": 25.0, "Total Customers": 22.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083408, 40.065852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-575", "Name": "Aldo's Pizzarama", "Category": "Restaurants and Other Eating Places", "Address": "10201 Bustleton Ave", "LATITUDE": 40.108537, "LONGITUDE": -75.025505, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 25.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 5.0, "Total Spend": 1044.0, "Total Transactions": 47.0, "Total Customers": 43.0, "Median Spend per Transaction": 18.53, "Median Spend per Customer": 17.55 }, "geometry": { "type": "Point", "coordinates": [ -75.025505, 40.108537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm4-8sq", "Name": "Olivares Food Market", "Category": "Grocery Stores", "Address": "1718 Wharton St", "LATITUDE": 39.934795, "LONGITUDE": -75.173301, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 35.0, "POI_CBG": 421010030023.0, "Median Dwell Time": 10.0, "Total Spend": 1105.0, "Total Transactions": 113.0, "Total Customers": 67.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173301, 39.934795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4000 Woodhaven Rd Ste 250", "LATITUDE": 40.084825, "LONGITUDE": -74.9723, "DATE_RANGE_START": 2019, "Total Visits": 142.0, "Total Visitors": 105.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 8.0, "Total Spend": 3996.0, "Total Transactions": 168.0, "Total Customers": 122.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 17.43 }, "geometry": { "type": "Point", "coordinates": [ -74.9723, 40.084825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-vj9", "Name": "Fairmount Pet Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "2024 Fairmount Ave", "LATITUDE": 39.967037, "LONGITUDE": -75.17115, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 2.0, "Total Spend": 8435.0, "Total Transactions": 282.0, "Total Customers": 192.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 29.12 }, "geometry": { "type": "Point", "coordinates": [ -75.17115, 39.967037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4001 Woodhaven Rd", "LATITUDE": 40.087401, "LONGITUDE": -74.970519, "DATE_RANGE_START": 2019, "Total Visits": 2367.0, "Total Visitors": 1799.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 936.0, "Total Transactions": 62.0, "Total Customers": 30.0, "Median Spend per Transaction": 7.59, "Median Spend per Customer": 20.44 }, "geometry": { "type": "Point", "coordinates": [ -74.970519, 40.087401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "Name": "Carter's", "Category": "Clothing Stores", "Address": "9171 Roosevelt Blvd Ste C", "LATITUDE": 40.075968, "LONGITUDE": -75.031512, "DATE_RANGE_START": 2019, "Total Visits": 295.0, "Total Visitors": 290.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 3176.0, "Total Transactions": 88.0, "Total Customers": 85.0, "Median Spend per Transaction": 30.89, "Median Spend per Customer": 31.71 }, "geometry": { "type": "Point", "coordinates": [ -75.031512, 40.075968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "1464 Philadelphia Mills", "LATITUDE": 40.087098, "LONGITUDE": -74.962333, "DATE_RANGE_START": 2019, "Total Visits": 541.0, "Total Visitors": 511.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 922.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 57.49, "Median Spend per Customer": 57.49 }, "geometry": { "type": "Point", "coordinates": [ -74.962333, 40.087098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgj-zvf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2900 N Broad St Ste 5A", "LATITUDE": 39.99726, "LONGITUDE": -75.154252, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 99.0, "Total Spend": 4257.0, "Total Transactions": 88.0, "Total Customers": 73.0, "Median Spend per Transaction": 39.0, "Median Spend per Customer": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.154252, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7162 Ridge Ave", "LATITUDE": 40.0441, "LONGITUDE": -75.232794, "DATE_RANGE_START": 2019, "Total Visits": 1168.0, "Total Visitors": 786.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 11.0, "Total Spend": 158500.0, "Total Transactions": 4611.0, "Total Customers": 2477.0, "Median Spend per Transaction": 22.77, "Median Spend per Customer": 39.31 }, "geometry": { "type": "Point", "coordinates": [ -75.232794, 40.0441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.031655, "LONGITUDE": -75.099529, "DATE_RANGE_START": 2019, "Total Visits": 13014.0, "Total Visitors": 8648.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 20.0, "Total Spend": 707.0, "Total Transactions": 55.0, "Total Customers": 47.0, "Median Spend per Transaction": 8.56, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.099529, 40.031655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-j9z", "Name": "A Bar", "Category": "Restaurants and Other Eating Places", "Address": "1737 Walnut St", "LATITUDE": 39.95037, "LONGITUDE": -75.170503, "DATE_RANGE_START": 2019, "Total Visits": 5742.0, "Total Visitors": 4188.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 70.0, "Total Spend": 3954.0, "Total Transactions": 167.0, "Total Customers": 118.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170503, 39.95037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-y7q", "Name": "Chu Shang Spicy 厨尚麻辣", "Category": "Restaurants and Other Eating Places", "Address": "925 Arch St", "LATITUDE": 39.95387, "LONGITUDE": -75.155752, "DATE_RANGE_START": 2019, "Total Visits": 413.0, "Total Visitors": 315.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 54.0, "Total Spend": 1820.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 37.0, "Median Spend per Customer": 40.38 }, "geometry": { "type": "Point", "coordinates": [ -75.155752, 39.95387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "Name": "Pho Palace", "Category": "Restaurants and Other Eating Places", "Address": "15501 Bustleton Ave", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 90.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 5.0, "Total Spend": 5186.0, "Total Transactions": 152.0, "Total Customers": 127.0, "Median Spend per Transaction": 30.27, "Median Spend per Customer": 33.16 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-tgk", "Name": "Southside Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5043 Wissahickon Ave", "LATITUDE": 40.019691, "LONGITUDE": -75.174271, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010243002.0, "Median Dwell Time": 7.0, "Total Spend": 134.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 40.23, "Median Spend per Customer": 40.23 }, "geometry": { "type": "Point", "coordinates": [ -75.174271, 40.019691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfz-bx5", "Name": "Manayunk Tavern", "Category": "Restaurants and Other Eating Places", "Address": "4247 Main St", "LATITUDE": 40.024589, "LONGITUDE": -75.221155, "DATE_RANGE_START": 2019, "Total Visits": 152.0, "Total Visitors": 80.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 67.0, "Total Spend": 10570.0, "Total Transactions": 310.0, "Total Customers": 237.0, "Median Spend per Transaction": 27.84, "Median Spend per Customer": 34.19 }, "geometry": { "type": "Point", "coordinates": [ -75.221155, 40.024589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2019, "Total Visits": 453.0, "Total Visitors": 338.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 33.0, "Total Spend": 8466.0, "Total Transactions": 698.0, "Total Customers": 533.0, "Median Spend per Transaction": 9.91, "Median Spend per Customer": 10.85 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zvf", "Name": "M2O Burgers & Salads", "Category": "Restaurants and Other Eating Places", "Address": "701 S 5th St", "LATITUDE": 39.940282, "LONGITUDE": -75.150883, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 55.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 11.0, "Total Spend": 150.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 14.12, "Median Spend per Customer": 27.36 }, "geometry": { "type": "Point", "coordinates": [ -75.150883, 39.940282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p74-wtv", "Name": "Oteri's Italian Bakery Frankford Ave", "Category": "Restaurants and Other Eating Places", "Address": "7518 Frankford Ave", "LATITUDE": 40.038952, "LONGITUDE": -75.035677, "DATE_RANGE_START": 2019, "Total Visits": 173.0, "Total Visitors": 132.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 8.0, "Total Spend": 1298.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 31.48 }, "geometry": { "type": "Point", "coordinates": [ -75.035677, 40.038952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "3800 Aramingo Ave", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2019, "Total Visits": 4591.0, "Total Visitors": 3243.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 16.0, "Total Spend": 113313.0, "Total Transactions": 1519.0, "Total Customers": 1013.0, "Median Spend per Transaction": 29.24, "Median Spend per Customer": 40.46 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "Name": "Race Supermarket", "Category": "Grocery Stores", "Address": "156 N 52nd St", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2019, "Total Visits": 125.0, "Total Visitors": 97.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 6.0, "Total Spend": 1032.0, "Total Transactions": 133.0, "Total Customers": 70.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 10.71 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-8n5", "Name": "ALDI", "Category": "Grocery Stores", "Address": "4421 Market St", "LATITUDE": 39.959397, "LONGITUDE": -75.213118, "DATE_RANGE_START": 2019, "Total Visits": 889.0, "Total Visitors": 700.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 9.0, "Total Spend": 40.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213118, 39.959397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-sbk", "Name": "Spruce Market", "Category": "Grocery Stores", "Address": "1523 Spruce St", "LATITUDE": 39.947568, "LONGITUDE": -75.167428, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 228.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 13.0, "Total Spend": 18565.0, "Total Transactions": 845.0, "Total Customers": 520.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.167428, 39.947568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4201 Walnut St # 59", "LATITUDE": 39.954892, "LONGITUDE": -75.206728, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 223.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 3.0, "Total Spend": 3104.0, "Total Transactions": 287.0, "Total Customers": 113.0, "Median Spend per Transaction": 7.03, "Median Spend per Customer": 8.79 }, "geometry": { "type": "Point", "coordinates": [ -75.206728, 39.954892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8j-bp9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4011 Cottman Ave", "LATITUDE": 40.035986, "LONGITUDE": -75.039532, "DATE_RANGE_START": 2019, "Total Visits": 403.0, "Total Visitors": 303.0, "POI_CBG": 421010330006.0, "Median Dwell Time": 6.0, "Total Spend": 2461.0, "Total Transactions": 147.0, "Total Customers": 63.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 20.09 }, "geometry": { "type": "Point", "coordinates": [ -75.039532, 40.035986 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg9-wc5", "Name": "Fairmount Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1900 Green St", "LATITUDE": 39.964685, "LONGITUDE": -75.169302, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 62.0, "POI_CBG": 421010134023.0, "Median Dwell Time": 26.0, "Total Spend": 1357.0, "Total Transactions": 35.0, "Total Customers": 32.0, "Median Spend per Transaction": 11.55, "Median Spend per Customer": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.169302, 39.964685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w49", "Name": "The Children's Place", "Category": "Clothing Stores", "Address": "1575 Franklin Mills Cir", "LATITUDE": 40.087614, "LONGITUDE": -74.96103, "DATE_RANGE_START": 2019, "Total Visits": 886.0, "Total Visitors": 771.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 365.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 15.47, "Median Spend per Customer": 19.79 }, "geometry": { "type": "Point", "coordinates": [ -74.96103, 40.087614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "1711 Walnut St", "LATITUDE": 39.950226, "LONGITUDE": -75.169589, "DATE_RANGE_START": 2019, "Total Visits": 530.0, "Total Visitors": 361.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 144.0, "Total Spend": 27904.0, "Total Transactions": 321.0, "Total Customers": 287.0, "Median Spend per Transaction": 67.5, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169589, 39.950226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "4037 N 5th St", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2019, "Total Visits": 2014.0, "Total Visitors": 1314.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 17.0, "Total Spend": 4591.0, "Total Transactions": 118.0, "Total Customers": 93.0, "Median Spend per Transaction": 25.81, "Median Spend per Customer": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgk-2rk", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "1601 W Lehigh Ave", "LATITUDE": 39.994689, "LONGITUDE": -75.158268, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 137.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 204.0, "Total Spend": 7.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 2.0, "Median Spend per Customer": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158268, 39.994689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "Name": "Riverwards Produce", "Category": "Grocery Stores", "Address": "2200 E Norris St", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2019, "Total Visits": 288.0, "Total Visitors": 175.0, "POI_CBG": 421010158001.0, "Median Dwell Time": 10.0, "Total Spend": 54458.0, "Total Transactions": 2285.0, "Total Customers": 988.0, "Median Spend per Transaction": 17.48, "Median Spend per Customer": 32.01 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwg-f4v", "Name": "Lucky Star Food Market", "Category": "Grocery Stores", "Address": "7329 Elmwood Ave", "LATITUDE": 39.913515, "LONGITUDE": -75.242295, "DATE_RANGE_START": 2019, "Total Visits": 425.0, "Total Visitors": 292.0, "POI_CBG": 421010060004.0, "Median Dwell Time": 5.0, "Total Spend": 1224.0, "Total Transactions": 170.0, "Total Customers": 82.0, "Median Spend per Transaction": 5.63, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.913515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvz-2p9", "Name": "Chestnut Deli", "Category": "Grocery Stores", "Address": "4630 Chestnut St", "LATITUDE": 39.956923, "LONGITUDE": -75.214531, "DATE_RANGE_START": 2019, "Total Visits": 380.0, "Total Visitors": 316.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 7.0, "Total Spend": 1229.0, "Total Transactions": 75.0, "Total Customers": 62.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214531, 39.956923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5s5", "Name": "Loews Philadelphia Hotel", "Category": "Traveler Accommodation", "Address": "1200 Market St", "LATITUDE": 39.951431, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2019, "Total Visits": 25752.0, "Total Visitors": 14147.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 267.0, "Total Spend": 72029.0, "Total Transactions": 750.0, "Total Customers": 576.0, "Median Spend per Transaction": 30.8, "Median Spend per Customer": 37.93 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 39.951431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2201 Cottman Ave", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2019, "Total Visits": 296.0, "Total Visitors": 260.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 12.0, "Total Spend": 1780.0, "Total Transactions": 33.0, "Total Customers": 32.0, "Median Spend per Transaction": 34.09, "Median Spend per Customer": 31.76 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1635 Spruce St", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 235.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 86.0, "Total Spend": 5508.0, "Total Transactions": 148.0, "Total Customers": 137.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 28.31 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5s5", "Name": "ROOST East Market", "Category": "Traveler Accommodation", "Address": "1199 Ludlow St", "LATITUDE": 39.951349, "LONGITUDE": -75.159655, "DATE_RANGE_START": 2019, "Total Visits": 9495.0, "Total Visitors": 6276.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 3612.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 261.83, "Median Spend per Customer": 262.83 }, "geometry": { "type": "Point", "coordinates": [ -75.159655, 39.951349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-jd9", "Name": "Club Quarters Philadelphia", "Category": "Traveler Accommodation", "Address": "1628 Chestnut St", "LATITUDE": 39.951302, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2019, "Total Visits": 1009.0, "Total Visitors": 708.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 186.0, "Total Spend": 1363.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 42.26, "Median Spend per Customer": 42.26 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.951302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "3212 N Broad St", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 68.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 22.0, "Total Spend": 214.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.95, "Median Spend per Customer": 16.95 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-8vz", "Name": "Dizengoff", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.953032, "LONGITUDE": -75.192553, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 57.0, "Total Spend": 3476.0, "Total Transactions": 207.0, "Total Customers": 188.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192553, 39.953032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-9mk", "Name": "Bravo Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3748 Germantown Ave", "LATITUDE": 40.010647, "LONGITUDE": -75.151533, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 92.0, "POI_CBG": 421010201021.0, "Median Dwell Time": 162.0, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.68, "Median Spend per Customer": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.151533, 40.010647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "4356 Main St", "LATITUDE": 40.025386, "LONGITUDE": -75.223869, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 78.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 6.0, "Total Spend": 4823.0, "Total Transactions": 128.0, "Total Customers": 127.0, "Median Spend per Transaction": 27.72, "Median Spend per Customer": 28.45 }, "geometry": { "type": "Point", "coordinates": [ -75.223869, 40.025386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "Name": "La Calaca Feliz", "Category": "Restaurants and Other Eating Places", "Address": "2321 Fairmount Ave", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 115.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 46.0, "Total Spend": 35109.0, "Total Transactions": 661.0, "Total Customers": 573.0, "Median Spend per Transaction": 44.68, "Median Spend per Customer": 50.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-ty9", "Name": "Stir", "Category": "Restaurants and Other Eating Places", "Address": "2600 Benjamin Franklin Pkwy", "LATITUDE": 39.965783, "LONGITUDE": -75.181173, "DATE_RANGE_START": 2019, "Total Visits": 5312.0, "Total Visitors": 4829.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 76.0, "Total Spend": 2718.0, "Total Transactions": 125.0, "Total Customers": 62.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181173, 39.965783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "Name": "In & Out Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7600 Ogontz Ave", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 52.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 109.0, "Total Spend": 503.0, "Total Transactions": 28.0, "Total Customers": 20.0, "Median Spend per Transaction": 17.67, "Median Spend per Customer": 22.25 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y9z", "Name": "Copabanana", "Category": "Restaurants and Other Eating Places", "Address": "344 South St", "LATITUDE": 39.941497, "LONGITUDE": -75.14907, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 331.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 16.0, "Total Spend": 16835.0, "Total Transactions": 386.0, "Total Customers": 360.0, "Median Spend per Transaction": 31.91, "Median Spend per Customer": 33.14 }, "geometry": { "type": "Point", "coordinates": [ -75.14907, 39.941497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5zz", "Name": "Chix & Wings", "Category": "Restaurants and Other Eating Places", "Address": "138 S 11th St", "LATITUDE": 39.94898, "LONGITUDE": -75.159094, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 138.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 40.0, "Total Spend": 3030.0, "Total Transactions": 255.0, "Total Customers": 193.0, "Median Spend per Transaction": 8.95, "Median Spend per Customer": 10.42 }, "geometry": { "type": "Point", "coordinates": [ -75.159094, 39.94898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp4-tvz", "Name": "Best Deli II", "Category": "Restaurants and Other Eating Places", "Address": "2616 E Lehigh Ave", "LATITUDE": 39.978727, "LONGITUDE": -75.115372, "DATE_RANGE_START": 2019, "Total Visits": 368.0, "Total Visitors": 210.0, "POI_CBG": 421010378003.0, "Median Dwell Time": 302.0, "Total Spend": 1868.0, "Total Transactions": 135.0, "Total Customers": 72.0, "Median Spend per Transaction": 11.2, "Median Spend per Customer": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.115372, 39.978727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-xkf", "Name": "Vietnam Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "221 N 11th St", "LATITUDE": 39.956332, "LONGITUDE": -75.157056, "DATE_RANGE_START": 2019, "Total Visits": 580.0, "Total Visitors": 420.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 125.0, "Total Spend": 4588.0, "Total Transactions": 98.0, "Total Customers": 92.0, "Median Spend per Transaction": 37.73, "Median Spend per Customer": 38.83 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.956332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste F6", "LATITUDE": 39.952029, "LONGITUDE": -75.167533, "DATE_RANGE_START": 2019, "Total Visits": 2767.0, "Total Visitors": 1619.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 151.0, "Total Spend": 20951.0, "Total Transactions": 2037.0, "Total Customers": 1394.0, "Median Spend per Transaction": 9.67, "Median Spend per Customer": 11.07 }, "geometry": { "type": "Point", "coordinates": [ -75.167533, 39.952029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2019, "Total Visits": 418.0, "Total Visitors": 351.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 11.0, "Total Spend": 779.0, "Total Transactions": 63.0, "Total Customers": 47.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 12.46 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "Name": "Cafe Square One", "Category": "Restaurants and Other Eating Places", "Address": "50 S 3rd St", "LATITUDE": 39.948829, "LONGITUDE": -75.146095, "DATE_RANGE_START": 2019, "Total Visits": 265.0, "Total Visitors": 257.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 6391.0, "Total Transactions": 556.0, "Total Customers": 325.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.146095, 39.948829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.029744, "LONGITUDE": -75.099335, "DATE_RANGE_START": 2019, "Total Visits": 273.0, "Total Visitors": 252.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 13.0, "Total Spend": 875.0, "Total Transactions": 35.0, "Total Customers": 25.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 28.34 }, "geometry": { "type": "Point", "coordinates": [ -75.099335, 40.029744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "327 Spring Garden St", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 223.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 7.0, "Total Spend": 3310.0, "Total Transactions": 360.0, "Total Customers": 257.0, "Median Spend per Transaction": 8.2, "Median Spend per Customer": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "Name": "Weavers Way Co op", "Category": "Grocery Stores", "Address": "8424 Germantown Ave", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 105.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 8.0, "Total Spend": 128666.0, "Total Transactions": 3941.0, "Total Customers": 1329.0, "Median Spend per Transaction": 20.47, "Median Spend per Customer": 47.88 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-gkz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5301 Chew Ave", "LATITUDE": 40.043254, "LONGITUDE": -75.158799, "DATE_RANGE_START": 2019, "Total Visits": 586.0, "Total Visitors": 435.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 6.0, "Total Spend": 3716.0, "Total Transactions": 147.0, "Total Customers": 102.0, "Median Spend per Transaction": 12.66, "Median Spend per Customer": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.158799, 40.043254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-xkf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4500 Baltimore Ave", "LATITUDE": 39.94872, "LONGITUDE": -75.21312, "DATE_RANGE_START": 2019, "Total Visits": 4418.0, "Total Visitors": 2495.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 5.0, "Total Spend": 3190.0, "Total Transactions": 158.0, "Total Customers": 100.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 17.97 }, "geometry": { "type": "Point", "coordinates": [ -75.21312, 39.94872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-sqz", "Name": "Ashton Cigar Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1522 Walnut St Fl 2", "LATITUDE": 39.949464, "LONGITUDE": -75.167106, "DATE_RANGE_START": 2019, "Total Visits": 855.0, "Total Visitors": 635.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 84.0, "Total Spend": 23040.0, "Total Transactions": 313.0, "Total Customers": 242.0, "Median Spend per Transaction": 48.59, "Median Spend per Customer": 63.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167106, 39.949464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm8-kxq", "Name": "1100 Social", "Category": "Restaurants and Other Eating Places", "Address": "1100 Pattison Ave", "LATITUDE": 39.904301, "LONGITUDE": -75.169143, "DATE_RANGE_START": 2019, "Total Visits": 2342.0, "Total Visitors": 2127.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 43.0, "Total Spend": 10780.0, "Total Transactions": 588.0, "Total Customers": 436.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169143, 39.904301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "Name": "Romeo Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1608 W Passyunk Ave", "LATITUDE": 39.924602, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2019, "Total Visits": 611.0, "Total Visitors": 370.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 41.0, "Total Spend": 415.0, "Total Transactions": 33.0, "Total Customers": 30.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.924602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "3900 City Ave", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2019, "Total Visits": 3461.0, "Total Visitors": 2414.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 66.0, "Total Spend": 31984.0, "Total Transactions": 2207.0, "Total Customers": 1389.0, "Median Spend per Transaction": 12.07, "Median Spend per Customer": 15.73 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm3-zmk", "Name": "Aslam Market", "Category": "Grocery Stores", "Address": "2330 S 7th St", "LATITUDE": 39.919814, "LONGITUDE": -75.159051, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010041021.0, "Median Dwell Time": 1.0, "Total Spend": 1673.0, "Total Transactions": 75.0, "Total Customers": 43.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159051, 39.919814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8h-789", "Name": "Palm Tree Deli", "Category": "Restaurants and Other Eating Places", "Address": "7201 Torresdale Ave", "LATITUDE": 40.029254, "LONGITUDE": -75.03641, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 1.0, "Total Spend": 5191.0, "Total Transactions": 370.0, "Total Customers": 240.0, "Median Spend per Transaction": 11.47, "Median Spend per Customer": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.03641, 40.029254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "Name": "John's Place", "Category": "Restaurants and Other Eating Places", "Address": "1529 Spring Garden St", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 37.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 28.0, "Total Spend": 1457.0, "Total Transactions": 150.0, "Total Customers": 87.0, "Median Spend per Transaction": 8.53, "Median Spend per Customer": 12.33 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "Name": "Joes Pizza", "Category": "Restaurants and Other Eating Places", "Address": "122 S 16th St", "LATITUDE": 39.95039, "LONGITUDE": -75.167575, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 470.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 21.0, "Total Spend": 202.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 18.01, "Median Spend per Customer": 19.27 }, "geometry": { "type": "Point", "coordinates": [ -75.167575, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "Name": "Bottle Bar East", "Category": "Restaurants and Other Eating Places", "Address": "1308 Frankford Ave", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 177.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 52.0, "Total Spend": 40150.0, "Total Transactions": 1424.0, "Total Customers": 956.0, "Median Spend per Transaction": 23.5, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-4y9", "Name": "Guido's Mini Market", "Category": "Grocery Stores", "Address": "2314 S 12th St", "LATITUDE": 39.92079, "LONGITUDE": -75.166881, "DATE_RANGE_START": 2019, "Total Visits": 160.0, "Total Visitors": 113.0, "POI_CBG": 421010040024.0, "Median Dwell Time": 144.0, "Total Spend": 200.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.65, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.166881, 39.92079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "1900 N 5th St", "LATITUDE": 39.980937, "LONGITUDE": -75.144152, "DATE_RANGE_START": 2019, "Total Visits": 2242.0, "Total Visitors": 1542.0, "POI_CBG": 421010156002.0, "Median Dwell Time": 15.0, "Total Spend": 7388.0, "Total Transactions": 205.0, "Total Customers": 143.0, "Median Spend per Transaction": 23.92, "Median Spend per Customer": 30.03 }, "geometry": { "type": "Point", "coordinates": [ -75.144152, 39.980937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.962963, "LONGITUDE": -75.174058, "DATE_RANGE_START": 2019, "Total Visits": 6276.0, "Total Visitors": 3630.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 22.0, "Total Spend": 304363.0, "Total Transactions": 9528.0, "Total Customers": 4048.0, "Median Spend per Transaction": 16.28, "Median Spend per Customer": 32.66 }, "geometry": { "type": "Point", "coordinates": [ -75.174058, 39.962963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pj2-94v", "Name": "Hoagies Plus", "Category": "Restaurants and Other Eating Places", "Address": "752 E Tioga St", "LATITUDE": 40.0012, "LONGITUDE": -75.114597, "DATE_RANGE_START": 2019, "Total Visits": 428.0, "Total Visitors": 207.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 321.0, "Total Spend": 1394.0, "Total Transactions": 68.0, "Total Customers": 43.0, "Median Spend per Transaction": 14.8, "Median Spend per Customer": 19.24 }, "geometry": { "type": "Point", "coordinates": [ -75.114597, 40.0012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2017 S Broad St # 2023", "LATITUDE": 39.924926, "LONGITUDE": -75.169063, "DATE_RANGE_START": 2019, "Total Visits": 2560.0, "Total Visitors": 1456.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 14.0, "Total Spend": 3696.0, "Total Transactions": 197.0, "Total Customers": 128.0, "Median Spend per Transaction": 11.26, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169063, 39.924926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "Name": "Evergreen Deli", "Category": "Grocery Stores", "Address": "46 S 4th St", "LATITUDE": 39.949185, "LONGITUDE": -75.147628, "DATE_RANGE_START": 2019, "Total Visits": 1924.0, "Total Visitors": 1507.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 10.0, "Total Spend": 5832.0, "Total Transactions": 506.0, "Total Customers": 248.0, "Median Spend per Transaction": 11.15, "Median Spend per Customer": 15.86 }, "geometry": { "type": "Point", "coordinates": [ -75.147628, 39.949185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1501 Cecil B Moore Ave", "LATITUDE": 39.979068, "LONGITUDE": -75.159667, "DATE_RANGE_START": 2019, "Total Visits": 825.0, "Total Visitors": 548.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 7.0, "Total Spend": 2628.0, "Total Transactions": 368.0, "Total Customers": 190.0, "Median Spend per Transaction": 4.59, "Median Spend per Customer": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.159667, 39.979068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "Name": "Jo-Ann Fabric and Craft Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2019, "Total Visits": 283.0, "Total Visitors": 250.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 8.0, "Total Spend": 8273.0, "Total Transactions": 282.0, "Total Customers": 210.0, "Median Spend per Transaction": 21.46, "Median Spend per Customer": 26.23 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-r6k", "Name": "Loop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1914 South St", "LATITUDE": 39.944579, "LONGITUDE": -75.174065, "DATE_RANGE_START": 2019, "Total Visits": 631.0, "Total Visitors": 403.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 201.0, "Total Spend": 2987.0, "Total Transactions": 63.0, "Total Customers": 52.0, "Median Spend per Transaction": 46.56, "Median Spend per Customer": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174065, 39.944579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "229 W Allegheny Ave", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2019, "Total Visits": 571.0, "Total Visitors": 440.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 11.0, "Total Spend": 1349.0, "Total Transactions": 130.0, "Total Customers": 80.0, "Median Spend per Transaction": 6.4, "Median Spend per Customer": 6.15 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-y7q", "Name": "K & A Gift Shop", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "911 Arch St", "LATITUDE": 39.953734, "LONGITUDE": -75.155203, "DATE_RANGE_START": 2019, "Total Visits": 6866.0, "Total Visitors": 4814.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 50.0, "Total Spend": 2190.0, "Total Transactions": 393.0, "Total Customers": 258.0, "Median Spend per Transaction": 3.87, "Median Spend per Customer": 5.26 }, "geometry": { "type": "Point", "coordinates": [ -75.155203, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "801 S 9th St", "LATITUDE": 39.93927, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2019, "Total Visits": 668.0, "Total Visitors": 478.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 5.0, "Total Spend": 6715.0, "Total Transactions": 403.0, "Total Customers": 223.0, "Median Spend per Transaction": 11.17, "Median Spend per Customer": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.93927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "Name": "Fairdale Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4019 Fairdale Rd", "LATITUDE": 40.084494, "LONGITUDE": -74.972673, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 48.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 6.0, "Total Spend": 214.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.41, "Median Spend per Customer": 64.19 }, "geometry": { "type": "Point", "coordinates": [ -74.972673, 40.084494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2201 Walnut St", "LATITUDE": 39.951277, "LONGITUDE": -75.177618, "DATE_RANGE_START": 2019, "Total Visits": 3521.0, "Total Visitors": 2678.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 5.0, "Total Spend": 2950.0, "Total Transactions": 150.0, "Total Customers": 108.0, "Median Spend per Transaction": 18.77, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177618, 39.951277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-vzz", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "1600 S Columbus Blvd", "LATITUDE": 39.926515, "LONGITUDE": -75.145923, "DATE_RANGE_START": 2019, "Total Visits": 556.0, "Total Visitors": 511.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 2935.0, "Total Transactions": 117.0, "Total Customers": 105.0, "Median Spend per Transaction": 20.42, "Median Spend per Customer": 24.77 }, "geometry": { "type": "Point", "coordinates": [ -75.145923, 39.926515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-p7q", "Name": "Garage Fishtown", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 E Girard Ave", "LATITUDE": 39.968647, "LONGITUDE": -75.134215, "DATE_RANGE_START": 2019, "Total Visits": 187.0, "Total Visitors": 177.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 8.0, "Total Spend": 561.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 26.5, "Median Spend per Customer": 61.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134215, 39.968647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yjv", "Name": "Zio Pizza Palace & Grill", "Category": "Restaurants and Other Eating Places", "Address": "157 N 9th St", "LATITUDE": 39.955076, "LONGITUDE": -75.154189, "DATE_RANGE_START": 2019, "Total Visits": 220.0, "Total Visitors": 205.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 2.0, "Total Spend": 8572.0, "Total Transactions": 330.0, "Total Customers": 250.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154189, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfy-d35", "Name": "Something Different", "Category": "Florists", "Address": "399 Leverington Ave", "LATITUDE": 40.033667, "LONGITUDE": -75.220915, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 82.0, "POI_CBG": 421010213005.0, "Median Dwell Time": 2.0, "Total Spend": 170.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220915, 40.033667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "322 N Broad St", "LATITUDE": 39.959088, "LONGITUDE": -75.1625, "DATE_RANGE_START": 2019, "Total Visits": 2813.0, "Total Visitors": 1674.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 171.0, "Total Spend": 2473.0, "Total Transactions": 193.0, "Total Customers": 173.0, "Median Spend per Transaction": 10.9, "Median Spend per Customer": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.1625, 39.959088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "Name": "Honey Bee Gourmet Deli", "Category": "Restaurants and Other Eating Places", "Address": "1034 Spruce St", "LATITUDE": 39.945912, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 313.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 28.0, "Total Spend": 80.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 39.945912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1425 Locust St", "LATITUDE": 39.948525, "LONGITUDE": -75.166014, "DATE_RANGE_START": 2019, "Total Visits": 840.0, "Total Visitors": 631.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 10.0, "Total Spend": 7286.0, "Total Transactions": 1569.0, "Total Customers": 795.0, "Median Spend per Transaction": 3.84, "Median Spend per Customer": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166014, 39.948525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "Name": "Chill On the Hill", "Category": "Restaurants and Other Eating Places", "Address": "5 E Highland Ave", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 72.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 11.0, "Total Spend": 1171.0, "Total Transactions": 137.0, "Total Customers": 113.0, "Median Spend per Transaction": 7.04, "Median Spend per Customer": 7.81 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5233 Torresdale Ave # 45", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 268.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 3.0, "Total Spend": 2703.0, "Total Transactions": 448.0, "Total Customers": 197.0, "Median Spend per Transaction": 4.5, "Median Spend per Customer": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-ch5", "Name": "La Roca", "Category": "Restaurants and Other Eating Places", "Address": "4161 Main St", "LATITUDE": 40.023561, "LONGITUDE": -75.219763, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 155.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 48.0, "Total Spend": 14226.0, "Total Transactions": 400.0, "Total Customers": 345.0, "Median Spend per Transaction": 28.78, "Median Spend per Customer": 31.44 }, "geometry": { "type": "Point", "coordinates": [ -75.219763, 40.023561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-s89", "Name": "Blume", "Category": "Restaurants and Other Eating Places", "Address": "1500 Locust St", "LATITUDE": 39.948455, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2019, "Total Visits": 994.0, "Total Visitors": 686.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 9.0, "Total Spend": 26823.0, "Total Transactions": 665.0, "Total Customers": 580.0, "Median Spend per Transaction": 32.65, "Median Spend per Customer": 35.75 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 39.948455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgf-7kf", "Name": "Lavish", "Category": "Restaurants and Other Eating Places", "Address": "4308 Lancaster Ave", "LATITUDE": 39.967761, "LONGITUDE": -75.210086, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 73.0, "POI_CBG": 421010106001.0, "Median Dwell Time": 79.0, "Total Spend": 2034.0, "Total Transactions": 47.0, "Total Customers": 43.0, "Median Spend per Transaction": 44.0, "Median Spend per Customer": 51.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210086, 39.967761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pm9-wc5", "Name": "Rustica Rosticceria", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949727, "LONGITUDE": -75.148072, "DATE_RANGE_START": 2019, "Total Visits": 8470.0, "Total Visitors": 6511.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 36.0, "Total Spend": 246.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.148072, 39.949727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St Ste 5", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2019, "Total Visits": 12156.0, "Total Visitors": 6523.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 84.0, "Total Spend": 5138.0, "Total Transactions": 496.0, "Total Customers": 323.0, "Median Spend per Transaction": 9.53, "Median Spend per Customer": 10.87 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "7210 Cresheim Rd", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 67.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 6.0, "Total Spend": 1278.0, "Total Transactions": 132.0, "Total Customers": 112.0, "Median Spend per Transaction": 8.8, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "Name": "Bardot Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "447 Poplar St", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2019, "Total Visits": 441.0, "Total Visitors": 316.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 60.0, "Total Spend": 8895.0, "Total Transactions": 285.0, "Total Customers": 208.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 32.74 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "Name": "Mac Mart Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "104 S 18th St", "LATITUDE": 39.951438, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2019, "Total Visits": 606.0, "Total Visitors": 553.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 7600.0, "Total Transactions": 501.0, "Total Customers": 445.0, "Median Spend per Transaction": 12.11, "Median Spend per Customer": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "Name": "Good Day Deli", "Category": "Restaurants and Other Eating Places", "Address": "37 S 20th St", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 262.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 12.0, "Total Spend": 2208.0, "Total Transactions": 227.0, "Total Customers": 147.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 10.05 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmf-rx5", "Name": "Indian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1634 South St", "LATITUDE": 39.944053, "LONGITUDE": -75.169964, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 47.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 489.0, "Total Spend": 1036.0, "Total Transactions": 27.0, "Total Customers": 25.0, "Median Spend per Transaction": 36.35, "Median Spend per Customer": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.169964, 39.944053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-j7q", "Name": "Byblos", "Category": "Restaurants and Other Eating Places", "Address": "116 S 18th St", "LATITUDE": 39.951257, "LONGITUDE": -75.170681, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 310.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 32.0, "Total Spend": 11894.0, "Total Transactions": 188.0, "Total Customers": 162.0, "Median Spend per Transaction": 47.8, "Median Spend per Customer": 53.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170681, 39.951257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "Name": "Unit Su Vege", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 106", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2019, "Total Visits": 721.0, "Total Visitors": 441.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 67.0, "Total Spend": 5749.0, "Total Transactions": 175.0, "Total Customers": 160.0, "Median Spend per Transaction": 26.17, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-835", "Name": "Down Home Diner", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.952864, "LONGITUDE": -75.159035, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 11011.0, "Total Transactions": 393.0, "Total Customers": 375.0, "Median Spend per Transaction": 24.34, "Median Spend per Customer": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159035, 39.952864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-syv", "Name": "Sushi Garden & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "425 S Broad St", "LATITUDE": 39.944749, "LONGITUDE": -75.164917, "DATE_RANGE_START": 2019, "Total Visits": 345.0, "Total Visitors": 311.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 5.0, "Total Spend": 1692.0, "Total Transactions": 68.0, "Total Customers": 62.0, "Median Spend per Transaction": 18.57, "Median Spend per Customer": 19.38 }, "geometry": { "type": "Point", "coordinates": [ -75.164917, 39.944749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-8sq", "Name": "Cinnabon", "Category": "Restaurants and Other Eating Places", "Address": "1101 Market St", "LATITUDE": 39.952174, "LONGITUDE": -75.158425, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 1848.0, "Total Transactions": 277.0, "Total Customers": 237.0, "Median Spend per Transaction": 4.84, "Median Spend per Customer": 5.35 }, "geometry": { "type": "Point", "coordinates": [ -75.158425, 39.952174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032059, "LONGITUDE": -75.213927, "DATE_RANGE_START": 2019, "Total Visits": 585.0, "Total Visitors": 400.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 10.0, "Total Spend": 7667.0, "Total Transactions": 1129.0, "Total Customers": 643.0, "Median Spend per Transaction": 5.35, "Median Spend per Customer": 7.67 }, "geometry": { "type": "Point", "coordinates": [ -75.213927, 40.032059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "4700 N 15th St", "LATITUDE": 40.025459, "LONGITUDE": -75.149625, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 68.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 7.0, "Total Spend": 455.0, "Total Transactions": 38.0, "Total Customers": 17.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.149625, 40.025459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5051 Wissahickon Ave", "LATITUDE": 40.019964, "LONGITUDE": -75.174488, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 243.0, "POI_CBG": 421010243002.0, "Median Dwell Time": 4.0, "Total Spend": 3089.0, "Total Transactions": 615.0, "Total Customers": 270.0, "Median Spend per Transaction": 3.99, "Median Spend per Customer": 6.67 }, "geometry": { "type": "Point", "coordinates": [ -75.174488, 40.019964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-4sq", "Name": "NOTO Philadelphia", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1209 Vine St", "LATITUDE": 39.957795, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2019, "Total Visits": 193.0, "Total Visitors": 162.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 41.0, "Total Spend": 27804.0, "Total Transactions": 606.0, "Total Customers": 356.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.957795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "Name": "Davids Mai Lai Wah", "Category": "Restaurants and Other Eating Places", "Address": "1001 Race St", "LATITUDE": 39.955591, "LONGITUDE": -75.155966, "DATE_RANGE_START": 2019, "Total Visits": 788.0, "Total Visitors": 698.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 10677.0, "Total Transactions": 268.0, "Total Customers": 250.0, "Median Spend per Transaction": 36.35, "Median Spend per Customer": 37.33 }, "geometry": { "type": "Point", "coordinates": [ -75.155966, 39.955591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8h-5xq", "Name": "New Station Pizza Iv", "Category": "Restaurants and Other Eating Places", "Address": "6904 Torresdale Ave", "LATITUDE": 40.026249, "LONGITUDE": -75.043153, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 37.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 166.0, "Total Spend": 767.0, "Total Transactions": 55.0, "Total Customers": 47.0, "Median Spend per Transaction": 11.56, "Median Spend per Customer": 13.13 }, "geometry": { "type": "Point", "coordinates": [ -75.043153, 40.026249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-snq", "Name": "Alice Pizza", "Category": "Restaurants and Other Eating Places", "Address": "235 S 15th St", "LATITUDE": 39.948159, "LONGITUDE": -75.166048, "DATE_RANGE_START": 2019, "Total Visits": 8700.0, "Total Visitors": 5255.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 162.0, "Total Spend": 4597.0, "Total Transactions": 252.0, "Total Customers": 212.0, "Median Spend per Transaction": 11.77, "Median Spend per Customer": 14.09 }, "geometry": { "type": "Point", "coordinates": [ -75.166048, 39.948159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-p35", "Name": "Fiore Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2608 Kensington Ave", "LATITUDE": 39.989223, "LONGITUDE": -75.127044, "DATE_RANGE_START": 2019, "Total Visits": 386.0, "Total Visitors": 333.0, "POI_CBG": 421010163001.0, "Median Dwell Time": 12.0, "Total Spend": 1117.0, "Total Transactions": 58.0, "Total Customers": 43.0, "Median Spend per Transaction": 16.89, "Median Spend per Customer": 19.85 }, "geometry": { "type": "Point", "coordinates": [ -75.127044, 39.989223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "Name": "Barbuzzo", "Category": "Restaurants and Other Eating Places", "Address": "110 S 13th St", "LATITUDE": 39.950022, "LONGITUDE": -75.162126, "DATE_RANGE_START": 2019, "Total Visits": 5653.0, "Total Visitors": 4028.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 74.0, "Total Spend": 32223.0, "Total Transactions": 483.0, "Total Customers": 456.0, "Median Spend per Transaction": 54.05, "Median Spend per Customer": 55.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162126, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg3-jqf", "Name": "Jansen", "Category": "Restaurants and Other Eating Places", "Address": "7402 Germantown Ave", "LATITUDE": 40.062669, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 62.0, "POI_CBG": 421010388001.0, "Median Dwell Time": 104.0, "Total Spend": 5436.0, "Total Transactions": 35.0, "Total Customers": 33.0, "Median Spend per Transaction": 145.0, "Median Spend per Customer": 174.28 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 40.062669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-qpv", "Name": "Shalom Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "7598 Haverford Ave Ste A", "LATITUDE": 39.979511, "LONGITUDE": -75.26908, "DATE_RANGE_START": 2019, "Total Visits": 1188.0, "Total Visitors": 845.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 55.0, "Total Spend": 2015.0, "Total Transactions": 68.0, "Total Customers": 47.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 25.68 }, "geometry": { "type": "Point", "coordinates": [ -75.26908, 39.979511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "Name": "Bleu Sushi", "Category": "Restaurants and Other Eating Places", "Address": "262 S 10th St", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 63.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 82.0, "Total Spend": 3658.0, "Total Transactions": 78.0, "Total Customers": 73.0, "Median Spend per Transaction": 32.1, "Median Spend per Customer": 32.16 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9q-ht9", "Name": "Bubbakoo's Burritos", "Category": "Restaurants and Other Eating Places", "Address": "2550 Grant Ave", "LATITUDE": 40.078769, "LONGITUDE": -75.027229, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 98.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 5432.0, "Total Transactions": 298.0, "Total Customers": 208.0, "Median Spend per Transaction": 14.61, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.027229, 40.078769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-6zf", "Name": "Petes Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4074 Lancaster Ave", "LATITUDE": 39.964375, "LONGITUDE": -75.204736, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 135.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 22.0, "Total Spend": 1025.0, "Total Transactions": 47.0, "Total Customers": 42.0, "Median Spend per Transaction": 18.6, "Median Spend per Customer": 18.67 }, "geometry": { "type": "Point", "coordinates": [ -75.204736, 39.964375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-4jv", "Name": "Del Rossi's Cheesesteak", "Category": "Restaurants and Other Eating Places", "Address": "538 N 4th St", "LATITUDE": 39.961482, "LONGITUDE": -75.14504, "DATE_RANGE_START": 2019, "Total Visits": 268.0, "Total Visitors": 185.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 31.0, "Total Spend": 10917.0, "Total Transactions": 618.0, "Total Customers": 486.0, "Median Spend per Transaction": 13.01, "Median Spend per Customer": 16.78 }, "geometry": { "type": "Point", "coordinates": [ -75.14504, 39.961482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8j-bff", "Name": "Mayfair Diner", "Category": "Restaurants and Other Eating Places", "Address": "7373 Frankford Ave", "LATITUDE": 40.037436, "LONGITUDE": -75.038227, "DATE_RANGE_START": 2019, "Total Visits": 247.0, "Total Visitors": 140.0, "POI_CBG": 421010330003.0, "Median Dwell Time": 127.0, "Total Spend": 3806.0, "Total Transactions": 142.0, "Total Customers": 133.0, "Median Spend per Transaction": 25.88, "Median Spend per Customer": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.038227, 40.037436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pmf-pvz", "Name": "Bistro La Baia", "Category": "Restaurants and Other Eating Places", "Address": "1700 Lombard St", "LATITUDE": 39.945165, "LONGITUDE": -75.170267, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 42.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 9.0, "Total Spend": 2180.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 82.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.945165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-cbk", "Name": "Oregon Diner", "Category": "Restaurants and Other Eating Places", "Address": "302 W Oregon Ave", "LATITUDE": 39.913868, "LONGITUDE": -75.152939, "DATE_RANGE_START": 2019, "Total Visits": 979.0, "Total Visitors": 705.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 43.0, "Total Spend": 897.0, "Total Transactions": 23.0, "Total Customers": 18.0, "Median Spend per Transaction": 36.36, "Median Spend per Customer": 41.09 }, "geometry": { "type": "Point", "coordinates": [ -75.152939, 39.913868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "161 W Chelten Ave", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2019, "Total Visits": 232.0, "Total Visitors": 198.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 5.0, "Total Spend": 463.0, "Total Transactions": 40.0, "Total Customers": 38.0, "Median Spend per Transaction": 8.74, "Median Spend per Customer": 8.85 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5945 Woodland Ave", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2019, "Total Visits": 1183.0, "Total Visitors": 898.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 11.0, "Total Spend": 7038.0, "Total Transactions": 786.0, "Total Customers": 523.0, "Median Spend per Transaction": 7.6, "Median Spend per Customer": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "2552 Grant Ave", "LATITUDE": 40.079208, "LONGITUDE": -75.02664, "DATE_RANGE_START": 2019, "Total Visits": 408.0, "Total Visitors": 373.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 6.0, "Total Spend": 7870.0, "Total Transactions": 426.0, "Total Customers": 373.0, "Median Spend per Transaction": 16.18, "Median Spend per Customer": 16.84 }, "geometry": { "type": "Point", "coordinates": [ -75.02664, 40.079208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1801 Torresdale Ave", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 596.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 5.0, "Total Spend": 7130.0, "Total Transactions": 725.0, "Total Customers": 528.0, "Median Spend per Transaction": 8.39, "Median Spend per Customer": 9.99 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pgb-6tv", "Name": "Fairmount Framing", "Category": "Home Furnishings Stores", "Address": "754 N 25th St", "LATITUDE": 39.968987, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 15.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 39.0, "Total Spend": 444.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 133.37, "Median Spend per Customer": 133.37 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.968987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgk-z9f", "Name": "Beauty & Fashion City", "Category": "Health and Personal Care Stores", "Address": "3985 Ford Rd", "LATITUDE": 39.999963, "LONGITUDE": -75.209335, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 32.0, "POI_CBG": 421010122041.0, "Median Dwell Time": 2.0, "Total Spend": 468.0, "Total Transactions": 23.0, "Total Customers": 22.0, "Median Spend per Transaction": 12.94, "Median Spend per Customer": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.209335, 39.999963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dwg-f75", "Name": "Aya's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7144 Elmwood Ave", "LATITUDE": 39.915076, "LONGITUDE": -75.240053, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 40.0, "POI_CBG": 421010060004.0, "Median Dwell Time": 67.0, "Total Spend": 668.0, "Total Transactions": 27.0, "Total Customers": 17.0, "Median Spend per Transaction": 21.48, "Median Spend per Customer": 38.53 }, "geometry": { "type": "Point", "coordinates": [ -75.240053, 39.915076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-2ff", "Name": "Bus Stop", "Category": "Shoe Stores", "Address": "727 S 4th St", "LATITUDE": 39.939675, "LONGITUDE": -75.149432, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 17.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 104.0, "Total Spend": 682.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 77.1, "Median Spend per Customer": 77.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149432, 39.939675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "Name": "Lee's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "930 N 29th St", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 22.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 519.0, "Total Spend": 1767.0, "Total Transactions": 150.0, "Total Customers": 97.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032491, "LONGITUDE": -75.214429, "DATE_RANGE_START": 2019, "Total Visits": 282.0, "Total Visitors": 220.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 20.0, "Total Spend": 2122.0, "Total Transactions": 87.0, "Total Customers": 78.0, "Median Spend per Transaction": 12.81, "Median Spend per Customer": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.214429, 40.032491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmf-y7q", "Name": "Sunset Social", "Category": "Restaurants and Other Eating Places", "Address": "129 S 30th St", "LATITUDE": 39.952424, "LONGITUDE": -75.183701, "DATE_RANGE_START": 2019, "Total Visits": 2840.0, "Total Visitors": 1771.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 24.0, "Total Spend": 62.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.78, "Median Spend per Customer": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.183701, 39.952424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-435", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "2110 S Columbus Blvd", "LATITUDE": 39.918945, "LONGITUDE": -75.143088, "DATE_RANGE_START": 2019, "Total Visits": 660.0, "Total Visitors": 520.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 22.0, "Total Spend": 37700.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 1025.67, "Median Spend per Customer": 1025.67 }, "geometry": { "type": "Point", "coordinates": [ -75.143088, 39.918945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-phc-rkz", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "5022 City Ave # 24", "LATITUDE": 39.999213, "LONGITUDE": -75.22984, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 63.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 5.0, "Total Spend": 86.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 5.36, "Median Spend per Customer": 5.71 }, "geometry": { "type": "Point", "coordinates": [ -75.22984, 39.999213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7x-5zz", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2118 Cottman Ave Ste 4", "LATITUDE": 40.048936, "LONGITUDE": -75.06319, "DATE_RANGE_START": 2019, "Total Visits": 270.0, "Total Visitors": 227.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 7.0, "Total Spend": 879.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 15.2, "Median Spend per Customer": 15.2 }, "geometry": { "type": "Point", "coordinates": [ -75.06319, 40.048936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "102 E Chelten Ave", "LATITUDE": 40.037208, "LONGITUDE": -75.172767, "DATE_RANGE_START": 2019, "Total Visits": 1253.0, "Total Visitors": 873.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 5.0, "Total Spend": 20831.0, "Total Transactions": 933.0, "Total Customers": 585.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172767, 40.037208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6240 Germantown Ave", "LATITUDE": 40.042819, "LONGITUDE": -75.181027, "DATE_RANGE_START": 2019, "Total Visits": 2006.0, "Total Visitors": 1256.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 4.0, "Total Spend": 1678.0, "Total Transactions": 90.0, "Total Customers": 42.0, "Median Spend per Transaction": 14.93, "Median Spend per Customer": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.181027, 40.042819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-zxq", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "608 South St", "LATITUDE": 39.941838, "LONGITUDE": -75.152721, "DATE_RANGE_START": 2019, "Total Visits": 303.0, "Total Visitors": 272.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 13.0, "Total Spend": 5880.0, "Total Transactions": 90.0, "Total Customers": 87.0, "Median Spend per Transaction": 42.47, "Median Spend per Customer": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -75.152721, 39.941838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pfz-bzf", "Name": "Gary Mann Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4349 Main St", "LATITUDE": 40.025665, "LONGITUDE": -75.223674, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 105.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 6.0, "Total Spend": 342.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 77.0, "Median Spend per Customer": 102.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223674, 40.025665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2019, "Total Visits": 896.0, "Total Visitors": 735.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 10.0, "Total Spend": 60449.0, "Total Transactions": 1339.0, "Total Customers": 1116.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 39.05 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1240 W Erie Ave", "LATITUDE": 40.004616, "LONGITUDE": -75.104425, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 175.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 8.0, "Total Spend": 101.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.63, "Median Spend per Customer": 14.63 }, "geometry": { "type": "Point", "coordinates": [ -75.104425, 40.004616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-zs5", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "508 South St", "LATITUDE": 39.941661, "LONGITUDE": -75.151237, "DATE_RANGE_START": 2019, "Total Visits": 2524.0, "Total Visitors": 1936.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 51.0, "Total Spend": 851.0, "Total Transactions": 37.0, "Total Customers": 35.0, "Median Spend per Transaction": 23.46, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151237, 39.941661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "Name": "Cafe La Maude", "Category": "Restaurants and Other Eating Places", "Address": "816 N 4th St", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 27.0, "POI_CBG": 421010367002.0, "Median Dwell Time": 270.0, "Total Spend": 19700.0, "Total Transactions": 383.0, "Total Customers": 348.0, "Median Spend per Transaction": 49.43, "Median Spend per Customer": 51.36 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pj5-3nq", "Name": "Erie Mini Market", "Category": "Grocery Stores", "Address": "1413 W Erie Ave", "LATITUDE": 40.009145, "LONGITUDE": -75.152232, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 32.0, "POI_CBG": 421010201022.0, "Median Dwell Time": 5.0, "Total Spend": 1323.0, "Total Transactions": 145.0, "Total Customers": 45.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.152232, 40.009145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "Name": "Fountain Porter", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1601 S 10th St", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 80.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 40.0, "Total Spend": 3713.0, "Total Transactions": 133.0, "Total Customers": 77.0, "Median Spend per Transaction": 22.32, "Median Spend per Customer": 30.71 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "Name": "Castle Roxx", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "105 Shurs Ln", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 118.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 27.0, "Total Spend": 3238.0, "Total Transactions": 117.0, "Total Customers": 87.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "Name": "Garden Court Eatery & Beer", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4725 Pine St", "LATITUDE": 39.952636, "LONGITUDE": -75.21767, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 508.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 57.0, "Total Spend": 8215.0, "Total Transactions": 511.0, "Total Customers": 295.0, "Median Spend per Transaction": 14.05, "Median Spend per Customer": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.21767, 39.952636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm4-s5z", "Name": "The Pizza Place", "Category": "Restaurants and Other Eating Places", "Address": "1648 S 7th St", "LATITUDE": 39.927861, "LONGITUDE": -75.157274, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 112.0, "POI_CBG": 421010028011.0, "Median Dwell Time": 10.0, "Total Spend": 791.0, "Total Transactions": 65.0, "Total Customers": 43.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 11.82 }, "geometry": { "type": "Point", "coordinates": [ -75.157274, 39.927861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-kcq", "Name": "Holme Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2907 Holme Ave", "LATITUDE": 40.056893, "LONGITUDE": -75.027632, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 42.0, "POI_CBG": 421010347021.0, "Median Dwell Time": 32.0, "Total Spend": 309.0, "Total Transactions": 15.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 15.71 }, "geometry": { "type": "Point", "coordinates": [ -75.027632, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "Name": "Yamitsuki Ramen", "Category": "Restaurants and Other Eating Places", "Address": "1028 Arch St", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2019, "Total Visits": 685.0, "Total Visitors": 585.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 4786.0, "Total Transactions": 157.0, "Total Customers": 120.0, "Median Spend per Transaction": 26.38, "Median Spend per Customer": 31.36 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23b@63s-dw4-rzf", "Name": "Bar Symon", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave Level 2 Terminal D Gate D9", "LATITUDE": 39.87555, "LONGITUDE": -75.238035, "DATE_RANGE_START": 2019, "Total Visits": 454923.0, "Total Visitors": 244998.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 76.0, "Total Spend": 253.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 32.54, "Median Spend per Customer": 32.54 }, "geometry": { "type": "Point", "coordinates": [ -75.238035, 39.87555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgh-vcq", "Name": "El Guaco Loco", "Category": "Restaurants and Other Eating Places", "Address": "2003 N 13th St", "LATITUDE": 39.983075, "LONGITUDE": -75.154536, "DATE_RANGE_START": 2019, "Total Visits": 1806.0, "Total Visitors": 756.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 246.0, "Total Spend": 1476.0, "Total Transactions": 173.0, "Total Customers": 138.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154536, 39.983075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9p-tgk", "Name": "Maxi Gastronome", "Category": "Restaurants and Other Eating Places", "Address": "10155 Verree Rd", "LATITUDE": 40.10649, "LONGITUDE": -75.029058, "DATE_RANGE_START": 2019, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010357011.0, "Median Dwell Time": null, "Total Spend": 428.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 25.22, "Median Spend per Customer": 49.11 }, "geometry": { "type": "Point", "coordinates": [ -75.029058, 40.10649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-9j9", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953347, "LONGITUDE": -75.165403, "DATE_RANGE_START": 2019, "Total Visits": 8037.0, "Total Visitors": 5037.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 73.0, "Total Spend": 539.0, "Total Transactions": 40.0, "Total Customers": 37.0, "Median Spend per Transaction": 10.53, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165403, 39.953347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "942 Race St", "LATITUDE": 39.955218, "LONGITUDE": -75.155815, "DATE_RANGE_START": 2019, "Total Visits": 401.0, "Total Visitors": 328.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 61.0, "Total Spend": 5219.0, "Total Transactions": 105.0, "Total Customers": 97.0, "Median Spend per Transaction": 36.15, "Median Spend per Customer": 50.75 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 39.955218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-dqf", "Name": "Asian Palace", "Category": "Restaurants and Other Eating Places", "Address": "2001 W Oregon Ave", "LATITUDE": 39.918335, "LONGITUDE": -75.181058, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 292.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 12.0, "Total Spend": 336.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 56.59, "Median Spend per Customer": 56.59 }, "geometry": { "type": "Point", "coordinates": [ -75.181058, 39.918335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-rtv", "Name": "Takka Grill and Pizza", "Category": "Restaurants and Other Eating Places", "Address": "324 W Chelten Ave", "LATITUDE": 40.029529, "LONGITUDE": -75.180791, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 40.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 4.0, "Total Spend": 1944.0, "Total Transactions": 118.0, "Total Customers": 92.0, "Median Spend per Transaction": 13.68, "Median Spend per Customer": 15.44 }, "geometry": { "type": "Point", "coordinates": [ -75.180791, 40.029529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "7855 Oxford Ave", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2019, "Total Visits": 483.0, "Total Visitors": 401.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 6.0, "Total Spend": 7950.0, "Total Transactions": 658.0, "Total Customers": 491.0, "Median Spend per Transaction": 9.69, "Median Spend per Customer": 11.84 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1324 Walnut St", "LATITUDE": 39.949164, "LONGITUDE": -75.163217, "DATE_RANGE_START": 2019, "Total Visits": 428.0, "Total Visitors": 373.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 7.0, "Total Spend": 3458.0, "Total Transactions": 753.0, "Total Customers": 423.0, "Median Spend per Transaction": 3.66, "Median Spend per Customer": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163217, 39.949164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "Name": "Open House", "Category": "Home Furnishings Stores", "Address": "107 S 13th St", "LATITUDE": 39.950268, "LONGITUDE": -75.161745, "DATE_RANGE_START": 2019, "Total Visits": 343.0, "Total Visitors": 310.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 22.0, "Total Spend": 15494.0, "Total Transactions": 438.0, "Total Customers": 405.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 31.05 }, "geometry": { "type": "Point", "coordinates": [ -75.161745, 39.950268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-hnq", "Name": "The Ranstead Room", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2013 Ranstead St", "LATITUDE": 39.952421, "LONGITUDE": -75.173819, "DATE_RANGE_START": 2019, "Total Visits": 7677.0, "Total Visitors": 4692.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 77.0, "Total Spend": 11463.0, "Total Transactions": 220.0, "Total Customers": 212.0, "Median Spend per Transaction": 40.39, "Median Spend per Customer": 41.12 }, "geometry": { "type": "Point", "coordinates": [ -75.173819, 39.952421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "129 S 30th St", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2019, "Total Visits": 1812.0, "Total Visitors": 1174.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 90.0, "Total Spend": 16936.0, "Total Transactions": 1732.0, "Total Customers": 1038.0, "Median Spend per Transaction": 8.26, "Median Spend per Customer": 11.32 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgf-33q", "Name": "Ochatto", "Category": "Restaurants and Other Eating Places", "Address": "3608 Chestnut St", "LATITUDE": 39.954494, "LONGITUDE": -75.195113, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 203.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 31.0, "Total Spend": 10935.0, "Total Transactions": 436.0, "Total Customers": 335.0, "Median Spend per Transaction": 20.67, "Median Spend per Customer": 23.26 }, "geometry": { "type": "Point", "coordinates": [ -75.195113, 39.954494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-hnq", "Name": "Stock", "Category": "Restaurants and Other Eating Places", "Address": "1935 Chestnut St", "LATITUDE": 39.952182, "LONGITUDE": -75.173159, "DATE_RANGE_START": 2019, "Total Visits": 12893.0, "Total Visitors": 7288.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 63.0, "Total Spend": 19552.0, "Total Transactions": 85.0, "Total Customers": 73.0, "Median Spend per Transaction": 193.95, "Median Spend per Customer": 211.95 }, "geometry": { "type": "Point", "coordinates": [ -75.173159, 39.952182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-djv", "Name": "Pastificio", "Category": "Restaurants and Other Eating Places", "Address": "1528 Packer Ave", "LATITUDE": 39.911498, "LONGITUDE": -75.174639, "DATE_RANGE_START": 2019, "Total Visits": 3373.0, "Total Visitors": 2817.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 50.0, "Total Spend": 7778.0, "Total Transactions": 292.0, "Total Customers": 208.0, "Median Spend per Transaction": 13.98, "Median Spend per Customer": 20.59 }, "geometry": { "type": "Point", "coordinates": [ -75.174639, 39.911498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8n-3nq", "Name": "Perrys Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "4221 Benner St", "LATITUDE": 40.023149, "LONGITUDE": -75.061553, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010319002.0, "Median Dwell Time": 7.0, "Total Spend": 461.0, "Total Transactions": 37.0, "Total Customers": 22.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061553, 40.023149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "Name": "Roses", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "501 Adams Ave", "LATITUDE": 40.039098, "LONGITUDE": -75.107749, "DATE_RANGE_START": 2019, "Total Visits": 1023.0, "Total Visitors": 800.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 15.0, "Total Spend": 26241.0, "Total Transactions": 673.0, "Total Customers": 535.0, "Median Spend per Transaction": 25.17, "Median Spend per Customer": 32.83 }, "geometry": { "type": "Point", "coordinates": [ -75.107749, 40.039098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.031024, "LONGITUDE": -75.099091, "DATE_RANGE_START": 2019, "Total Visits": 1051.0, "Total Visitors": 921.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 12.0, "Total Spend": 9498.0, "Total Transactions": 205.0, "Total Customers": 167.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 24.27 }, "geometry": { "type": "Point", "coordinates": [ -75.099091, 40.031024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "Name": "S & S Foods", "Category": "Grocery Stores", "Address": "1800 S Columbus Blvd", "LATITUDE": 39.924738, "LONGITUDE": -75.144356, "DATE_RANGE_START": 2019, "Total Visits": 770.0, "Total Visitors": 646.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 25.0, "Total Spend": 8083.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 186.0, "Median Spend per Customer": 178.14 }, "geometry": { "type": "Point", "coordinates": [ -75.144356, 39.924738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "8101 Oxford Ave", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2019, "Total Visits": 406.0, "Total Visitors": 267.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 4.0, "Total Spend": 179.0, "Total Transactions": 27.0, "Total Customers": 27.0, "Median Spend per Transaction": 5.37, "Median Spend per Customer": 5.37 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1826 30 Chestnut Street Philadelphia", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2019, "Total Visits": 1917.0, "Total Visitors": 1356.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 13.0, "Total Spend": 30302.0, "Total Transactions": 1546.0, "Total Customers": 1043.0, "Median Spend per Transaction": 12.19, "Median Spend per Customer": 16.62 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-xt9", "Name": "Four Points By Sheraton", "Category": "Traveler Accommodation", "Address": "1201 Race St", "LATITUDE": 39.955952, "LONGITUDE": -75.159173, "DATE_RANGE_START": 2019, "Total Visits": 1126.0, "Total Visitors": 851.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 164.0, "Total Spend": 3124.0, "Total Transactions": 20.0, "Total Customers": 15.0, "Median Spend per Transaction": 113.12, "Median Spend per Customer": 202.35 }, "geometry": { "type": "Point", "coordinates": [ -75.159173, 39.955952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pnw-x89", "Name": "Pretty Girls Cook", "Category": "Restaurants and Other Eating Places", "Address": "1016 N Marshall St", "LATITUDE": 39.97001, "LONGITUDE": -75.147605, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 53.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 47.0, "Total Spend": 4007.0, "Total Transactions": 160.0, "Total Customers": 140.0, "Median Spend per Transaction": 16.48, "Median Spend per Customer": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.147605, 39.97001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pgb-fxq", "Name": "Cherry Street Tavern", "Category": "Restaurants and Other Eating Places", "Address": "129 N 22nd St", "LATITUDE": 39.95699, "LONGITUDE": -75.175753, "DATE_RANGE_START": 2019, "Total Visits": 503.0, "Total Visitors": 373.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 80.0, "Total Spend": 3689.0, "Total Transactions": 102.0, "Total Customers": 88.0, "Median Spend per Transaction": 29.0, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175753, 39.95699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm3-vzz", "Name": "LaScala's Birra", "Category": "Restaurants and Other Eating Places", "Address": "1700 E Passyunk Ave", "LATITUDE": 39.928592, "LONGITUDE": -75.165123, "DATE_RANGE_START": 2019, "Total Visits": 881.0, "Total Visitors": 723.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 15.0, "Total Spend": 15301.0, "Total Transactions": 346.0, "Total Customers": 315.0, "Median Spend per Transaction": 39.31, "Median Spend per Customer": 40.56 }, "geometry": { "type": "Point", "coordinates": [ -75.165123, 39.928592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-6hq", "Name": "Wrap Shack", "Category": "Restaurants and Other Eating Places", "Address": "112 S 11th St", "LATITUDE": 39.949717, "LONGITUDE": -75.158951, "DATE_RANGE_START": 2019, "Total Visits": 660.0, "Total Visitors": 448.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 55.0, "Total Spend": 10325.0, "Total Transactions": 308.0, "Total Customers": 267.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 30.92 }, "geometry": { "type": "Point", "coordinates": [ -75.158951, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "Name": "South Street Souvlaki", "Category": "Restaurants and Other Eating Places", "Address": "509 South St", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2019, "Total Visits": 986.0, "Total Visitors": 746.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 201.0, "Total Spend": 159.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 47.82, "Median Spend per Customer": 47.82 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pg3-789", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "8103 Stenton Ave", "LATITUDE": 40.067023, "LONGITUDE": -75.178027, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 40.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 425.0, "Total Spend": 277.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 23.85, "Median Spend per Customer": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.178027, 40.067023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "Name": "Park Manor Deli", "Category": "Restaurants and Other Eating Places", "Address": "240 W Chelten Ave", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 263.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 7.0, "Total Spend": 4558.0, "Total Transactions": 375.0, "Total Customers": 205.0, "Median Spend per Transaction": 10.52, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-tn5", "Name": "Koto Sushi", "Category": "Restaurants and Other Eating Places", "Address": "719 Sansom St", "LATITUDE": 39.948858, "LONGITUDE": -75.153256, "DATE_RANGE_START": 2019, "Total Visits": 2209.0, "Total Visitors": 1522.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 79.0, "Total Spend": 6117.0, "Total Transactions": 235.0, "Total Customers": 190.0, "Median Spend per Transaction": 21.33, "Median Spend per Customer": 26.26 }, "geometry": { "type": "Point", "coordinates": [ -75.153256, 39.948858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5601 Vine St", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2019, "Total Visits": 416.0, "Total Visitors": 341.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 3.0, "Total Spend": 6783.0, "Total Transactions": 748.0, "Total Customers": 541.0, "Median Spend per Transaction": 7.69, "Median Spend per Customer": 9.13 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2344 N Broad St", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 267.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 2.0, "Total Spend": 8926.0, "Total Transactions": 1522.0, "Total Customers": 736.0, "Median Spend per Transaction": 4.75, "Median Spend per Customer": 7.45 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7500 Frankford Ave", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2019, "Total Visits": 491.0, "Total Visitors": 338.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 3.0, "Total Spend": 6196.0, "Total Transactions": 1018.0, "Total Customers": 398.0, "Median Spend per Transaction": 5.48, "Median Spend per Customer": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3675 Market St", "LATITUDE": 39.956525, "LONGITUDE": -75.195111, "DATE_RANGE_START": 2019, "Total Visits": 12156.0, "Total Visitors": 6523.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 84.0, "Total Spend": 12448.0, "Total Transactions": 1982.0, "Total Customers": 1141.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.195111, 39.956525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "Name": "Sang Kee Peking Duck House", "Category": "Restaurants and Other Eating Places", "Address": "238 N 9th St", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2019, "Total Visits": 445.0, "Total Visitors": 418.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 10.0, "Total Spend": 20799.0, "Total Transactions": 693.0, "Total Customers": 633.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "Name": "Ruby Tuesday", "Category": "Restaurants and Other Eating Places", "Address": "8680 Bartram Ave", "LATITUDE": 39.887819, "LONGITUDE": -75.247004, "DATE_RANGE_START": 2019, "Total Visits": 1078.0, "Total Visitors": 943.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 44.0, "Total Spend": 17081.0, "Total Transactions": 411.0, "Total Customers": 350.0, "Median Spend per Transaction": 35.22, "Median Spend per Customer": 43.17 }, "geometry": { "type": "Point", "coordinates": [ -75.247004, 39.887819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "Name": "El Rey", "Category": "Restaurants and Other Eating Places", "Address": "2013 Chestnut St", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2019, "Total Visits": 503.0, "Total Visitors": 435.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 42.0, "Total Spend": 33191.0, "Total Transactions": 795.0, "Total Customers": 725.0, "Median Spend per Transaction": 30.66, "Median Spend per Customer": 34.08 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-yqf", "Name": "Chubby Cattle", "Category": "Restaurants and Other Eating Places", "Address": "146 N 10th St", "LATITUDE": 39.954989, "LONGITUDE": -75.156236, "DATE_RANGE_START": 2019, "Total Visits": 8184.0, "Total Visitors": 5962.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 43.0, "Total Spend": 12357.0, "Total Transactions": 163.0, "Total Customers": 158.0, "Median Spend per Transaction": 70.97, "Median Spend per Customer": 72.03 }, "geometry": { "type": "Point", "coordinates": [ -75.156236, 39.954989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "9220 Frankford Ave", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2019, "Total Visits": 581.0, "Total Visitors": 458.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 5.0, "Total Spend": 91.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 6.73, "Median Spend per Customer": 12.92 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-tn5", "Name": "Fat Salmon Sushi", "Category": "Restaurants and Other Eating Places", "Address": "719 Walnut St", "LATITUDE": 39.948136, "LONGITUDE": -75.153395, "DATE_RANGE_START": 2019, "Total Visits": 243.0, "Total Visitors": 177.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 76.0, "Total Spend": 15529.0, "Total Transactions": 368.0, "Total Customers": 321.0, "Median Spend per Transaction": 34.02, "Median Spend per Customer": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153395, 39.948136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1219 S 9th St", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2019, "Total Visits": 1641.0, "Total Visitors": 1527.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 9.0, "Total Spend": 5446.0, "Total Transactions": 336.0, "Total Customers": 328.0, "Median Spend per Transaction": 14.28, "Median Spend per Customer": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-9vf", "Name": "Clearfield Grocery", "Category": "Restaurants and Other Eating Places", "Address": "2101 E Clearfield St", "LATITUDE": 39.990892, "LONGITUDE": -75.111783, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 53.0, "POI_CBG": 421010179004.0, "Median Dwell Time": 145.0, "Total Spend": 159.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 21.75, "Median Spend per Customer": 47.68 }, "geometry": { "type": "Point", "coordinates": [ -75.111783, 39.990892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1018 N 2nd St", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 83.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 20.0, "Total Spend": 7440.0, "Total Transactions": 1103.0, "Total Customers": 556.0, "Median Spend per Transaction": 5.54, "Median Spend per Customer": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914434, "LONGITUDE": -75.156267, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 491.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 3.0, "Total Spend": 4220.0, "Total Transactions": 770.0, "Total Customers": 438.0, "Median Spend per Transaction": 4.6, "Median Spend per Customer": 6.03 }, "geometry": { "type": "Point", "coordinates": [ -75.156267, 39.914434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "10000 Roosevelt Blvd", "LATITUDE": 40.095264, "LONGITUDE": -75.015635, "DATE_RANGE_START": 2019, "Total Visits": 2194.0, "Total Visitors": 1599.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 4.0, "Total Spend": 6281.0, "Total Transactions": 773.0, "Total Customers": 418.0, "Median Spend per Transaction": 6.54, "Median Spend per Customer": 9.77 }, "geometry": { "type": "Point", "coordinates": [ -75.015635, 40.095264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "Name": "Boostin' Bowls", "Category": "Restaurants and Other Eating Places", "Address": "100 Levering St", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 6272.0, "Total Transactions": 450.0, "Total Customers": 338.0, "Median Spend per Transaction": 11.6, "Median Spend per Customer": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-php-zs5", "Name": "The Mattress Man", "Category": "Furniture Stores", "Address": "7421 Stenton Ave", "LATITUDE": 40.061005, "LONGITUDE": -75.167487, "DATE_RANGE_START": 2019, "Total Visits": 158.0, "Total Visitors": 135.0, "POI_CBG": 421010264005.0, "Median Dwell Time": 26.0, "Total Spend": 2995.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 899.08, "Median Spend per Customer": 899.08 }, "geometry": { "type": "Point", "coordinates": [ -75.167487, 40.061005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "Name": "Girard Mini Market", "Category": "Grocery Stores", "Address": "2901 W Girard Ave", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2019, "Total Visits": 35.0, "Total Visitors": 35.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 6.0, "Total Spend": 64.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 19.24 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj2-mp9", "Name": "The Apple Pharmacy", "Category": "Health and Personal Care Stores", "Address": "Erie Avenue At Front St", "LATITUDE": 40.005425, "LONGITUDE": -75.098798, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 62.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 1.0, "Total Spend": 31.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098798, 40.005425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pfv-649", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6555 Greene St", "LATITUDE": 40.043396, "LONGITUDE": -75.190646, "DATE_RANGE_START": 2019, "Total Visits": 503.0, "Total Visitors": 368.0, "POI_CBG": 421010237001.0, "Median Dwell Time": 6.0, "Total Spend": 5055.0, "Total Transactions": 558.0, "Total Customers": 293.0, "Median Spend per Transaction": 7.35, "Median Spend per Customer": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.190646, 40.043396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8318 Bustleton Ave", "LATITUDE": 40.069743, "LONGITUDE": -75.051689, "DATE_RANGE_START": 2019, "Total Visits": 700.0, "Total Visitors": 546.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 6.0, "Total Spend": 88.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.051689, 40.069743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-y7q", "Name": "The Post", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "129 S 30th St", "LATITUDE": 39.952733, "LONGITUDE": -75.18366, "DATE_RANGE_START": 2019, "Total Visits": 1219.0, "Total Visitors": 826.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 31.0, "Total Spend": 7592.0, "Total Transactions": 223.0, "Total Customers": 160.0, "Median Spend per Transaction": 17.99, "Median Spend per Customer": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.18366, 39.952733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "Name": "Papa Nick's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "199 W Godfrey Ave", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 47.0, "POI_CBG": 421010272003.0, "Median Dwell Time": 5.0, "Total Spend": 788.0, "Total Transactions": 42.0, "Total Customers": 33.0, "Median Spend per Transaction": 17.95, "Median Spend per Customer": 18.74 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "3711 Market St", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2019, "Total Visits": 16237.0, "Total Visitors": 9386.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 85.0, "Total Spend": 18245.0, "Total Transactions": 446.0, "Total Customers": 418.0, "Median Spend per Transaction": 30.93, "Median Spend per Customer": 31.08 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "Name": "Georgian Bread Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "10865 Bustleton Ave", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2019, "Total Visits": 436.0, "Total Visitors": 356.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 8.0, "Total Spend": 218.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2019, "Total Visits": 590.0, "Total Visitors": 411.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 71.0, "Total Spend": 28978.0, "Total Transactions": 786.0, "Total Customers": 698.0, "Median Spend per Transaction": 27.93, "Median Spend per Customer": 31.37 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "Name": "Greek Lady", "Category": "Restaurants and Other Eating Places", "Address": "222 S 40th St", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2019, "Total Visits": 740.0, "Total Visitors": 663.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 51.0, "Total Spend": 18903.0, "Total Transactions": 1318.0, "Total Customers": 941.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "Name": "Super Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7340 Frankford Ave", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 48.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 100.0, "Total Spend": 795.0, "Total Transactions": 45.0, "Total Customers": 35.0, "Median Spend per Transaction": 16.92, "Median Spend per Customer": 20.54 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "Name": "New Deck Tavern", "Category": "Restaurants and Other Eating Places", "Address": "3408 Sansom St", "LATITUDE": 39.953506, "LONGITUDE": -75.192591, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 57.0, "Total Spend": 24993.0, "Total Transactions": 766.0, "Total Customers": 626.0, "Median Spend per Transaction": 26.42, "Median Spend per Customer": 32.65 }, "geometry": { "type": "Point", "coordinates": [ -75.192591, 39.953506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "Name": "Cafe Soho", "Category": "Restaurants and Other Eating Places", "Address": "468 W Cheltenham Ave", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2019, "Total Visits": 293.0, "Total Visitors": 245.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 60.0, "Total Spend": 16740.0, "Total Transactions": 455.0, "Total Customers": 375.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 36.42 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "2120 S Broad St", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 65.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 10.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "710 Adams Ave", "LATITUDE": 40.032391, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2019, "Total Visits": 856.0, "Total Visitors": 675.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 7.0, "Total Spend": 8998.0, "Total Transactions": 830.0, "Total Customers": 655.0, "Median Spend per Transaction": 9.14, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.032391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9900 Frankford Ave", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 148.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 5.0, "Total Spend": 4640.0, "Total Transactions": 771.0, "Total Customers": 330.0, "Median Spend per Transaction": 5.27, "Median Spend per Customer": 8.98 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-8y9", "Name": "The Pharmacy", "Category": "Restaurants and Other Eating Places", "Address": "1300 S 18th St", "LATITUDE": 39.934901, "LONGITUDE": -75.174223, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 82.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 72.0, "Total Spend": 86.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 25.81, "Median Spend per Customer": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.174223, 39.934901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "Name": "Shot Tower Coffee", "Category": "Restaurants and Other Eating Places", "Address": "542 Christian St", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2019, "Total Visits": 250.0, "Total Visitors": 185.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 20.0, "Total Spend": 5488.0, "Total Transactions": 578.0, "Total Customers": 311.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "Name": "Cry Baby Pasta", "Category": "Restaurants and Other Eating Places", "Address": "627 S 3rd St", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2019, "Total Visits": 1489.0, "Total Visitors": 1156.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 45.0, "Total Spend": 6034.0, "Total Transactions": 58.0, "Total Customers": 52.0, "Median Spend per Transaction": 97.56, "Median Spend per Customer": 95.24 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "Name": "Thai Singha House", "Category": "Restaurants and Other Eating Places", "Address": "3906B Chestnut St", "LATITUDE": 39.95527, "LONGITUDE": -75.20037, "DATE_RANGE_START": 2019, "Total Visits": 2469.0, "Total Visitors": 1544.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 54.0, "Total Spend": 1910.0, "Total Transactions": 80.0, "Total Customers": 73.0, "Median Spend per Transaction": 20.51, "Median Spend per Customer": 21.81 }, "geometry": { "type": "Point", "coordinates": [ -75.20037, 39.95527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-y9z", "Name": "Bella Boutique", "Category": "Clothing Stores", "Address": "527 S 4th St", "LATITUDE": 39.941863, "LONGITUDE": -75.148989, "DATE_RANGE_START": 2019, "Total Visits": 3335.0, "Total Visitors": 2748.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 21.0, "Total Spend": 570.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 29.0, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148989, 39.941863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2nd Lehigh Ave", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2019, "Total Visits": 911.0, "Total Visitors": 685.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 7.0, "Total Spend": 9992.0, "Total Transactions": 958.0, "Total Customers": 690.0, "Median Spend per Transaction": 8.61, "Median Spend per Customer": 10.33 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7v-f2k", "Name": "Raymour & Flanigan Outlet", "Category": "Furniture Stores", "Address": "2045 Cottman Ave", "LATITUDE": 40.051034, "LONGITUDE": -75.064888, "DATE_RANGE_START": 2019, "Total Visits": 1076.0, "Total Visitors": 896.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 18.0, "Total Spend": 945.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 283.63, "Median Spend per Customer": 283.63 }, "geometry": { "type": "Point", "coordinates": [ -75.064888, 40.051034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6701 Ridge Ave", "LATITUDE": 40.040962, "LONGITUDE": -75.223848, "DATE_RANGE_START": 2019, "Total Visits": 1059.0, "Total Visitors": 785.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 7.0, "Total Spend": 12122.0, "Total Transactions": 441.0, "Total Customers": 305.0, "Median Spend per Transaction": 16.79, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223848, 40.040962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3331 Grant Ave", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2019, "Total Visits": 1879.0, "Total Visitors": 1371.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 7.0, "Total Spend": 3751.0, "Total Transactions": 198.0, "Total Customers": 165.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-8sq", "Name": "Edible Arrangements", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "120 S 12th St", "LATITUDE": 39.949551, "LONGITUDE": -75.160537, "DATE_RANGE_START": 2019, "Total Visits": 813.0, "Total Visitors": 633.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 25.0, "Total Spend": 143.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 39.98, "Median Spend per Customer": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160537, 39.949551 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-975", "Name": "Avril 50", "Category": "Other Miscellaneous Store Retailers", "Address": "3406 Sansom St", "LATITUDE": 39.953493, "LONGITUDE": -75.192528, "DATE_RANGE_START": 2019, "Total Visits": 7877.0, "Total Visitors": 4864.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 57.0, "Total Spend": 988.0, "Total Transactions": 40.0, "Total Customers": 33.0, "Median Spend per Transaction": 22.51, "Median Spend per Customer": 26.35 }, "geometry": { "type": "Point", "coordinates": [ -75.192528, 39.953493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj2-dvz", "Name": "Sosa Food Market", "Category": "Grocery Stores", "Address": "4062 L St", "LATITUDE": 40.009118, "LONGITUDE": -75.102792, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010191003.0, "Median Dwell Time": 12.0, "Total Spend": 57.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.11, "Median Spend per Customer": 8.11 }, "geometry": { "type": "Point", "coordinates": [ -75.102792, 40.009118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p74-y5f", "Name": "Mr Wheelchair", "Category": "Other Motor Vehicle Dealers", "Address": "7932 Frankford Ave # 34", "LATITUDE": 40.041366, "LONGITUDE": -75.028788, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010331023.0, "Median Dwell Time": null, "Total Spend": 763.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 229.0, "Median Spend per Customer": 229.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028788, 40.041366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1100 Pattison Ave", "LATITUDE": 39.904365, "LONGITUDE": -75.169382, "DATE_RANGE_START": 2019, "Total Visits": 7977.0, "Total Visitors": 6593.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 68.0, "Total Spend": 5231.0, "Total Transactions": 323.0, "Total Customers": 313.0, "Median Spend per Transaction": 14.28, "Median Spend per Customer": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169382, 39.904365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "Name": "Capital Beer", "Category": "Restaurants and Other Eating Places", "Address": "2661 E Cumberland St", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 85.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 3.0, "Total Spend": 3095.0, "Total Transactions": 155.0, "Total Customers": 117.0, "Median Spend per Transaction": 17.05, "Median Spend per Customer": 18.53 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "Name": "Khyber Pass Pub", "Category": "Restaurants and Other Eating Places", "Address": "56 S 2nd St", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2019, "Total Visits": 683.0, "Total Visitors": 636.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 25.0, "Total Spend": 24100.0, "Total Transactions": 616.0, "Total Customers": 530.0, "Median Spend per Transaction": 31.49, "Median Spend per Customer": 35.14 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-p35", "Name": "Jhoandra Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3661 N 6th St", "LATITUDE": 40.007461, "LONGITUDE": -75.138722, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 55.0, "POI_CBG": 421010199001.0, "Median Dwell Time": 36.0, "Total Spend": 87.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138722, 40.007461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "Name": "Pub & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1946 Lombard St", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 73.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 78.0, "Total Spend": 7367.0, "Total Transactions": 97.0, "Total Customers": 88.0, "Median Spend per Transaction": 52.96, "Median Spend per Customer": 55.85 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dwf-td9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2934 Island Ave", "LATITUDE": 39.902299, "LONGITUDE": -75.242062, "DATE_RANGE_START": 2019, "Total Visits": 143.0, "Total Visitors": 128.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 6.0, "Total Spend": 5419.0, "Total Transactions": 408.0, "Total Customers": 330.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.78 }, "geometry": { "type": "Point", "coordinates": [ -75.242062, 39.902299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "942 Market St", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2019, "Total Visits": 440.0, "Total Visitors": 393.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 8817.0, "Total Transactions": 778.0, "Total Customers": 591.0, "Median Spend per Transaction": 10.04, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-ks5", "Name": "The Spice Rack", "Category": "Specialty Food Stores", "Address": "8428 Germantown Ave", "LATITUDE": 40.075333, "LONGITUDE": -75.206122, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 28.0, "Total Spend": 303.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206122, 40.075333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7y-gzf", "Name": "Mill Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6700 Martins Mill Rd", "LATITUDE": 40.053776, "LONGITUDE": -75.092099, "DATE_RANGE_START": 2019, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010307003.0, "Median Dwell Time": null, "Total Spend": 656.0, "Total Transactions": 47.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.092099, 40.053776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kj9", "Name": "Fleur De Lis Boutique", "Category": "Clothing Stores", "Address": "2107 Walnut St", "LATITUDE": 39.950913, "LONGITUDE": -75.176137, "DATE_RANGE_START": 2019, "Total Visits": 6045.0, "Total Visitors": 4211.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 16.0, "Total Spend": 1796.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 82.4, "Median Spend per Customer": 82.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176137, 39.950913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgg-pvz", "Name": "Piccadilly Club", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3123 N 30th St", "LATITUDE": 40.003812, "LONGITUDE": -75.178504, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 53.0, "POI_CBG": 421010171004.0, "Median Dwell Time": 101.0, "Total Spend": 993.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 154.0, "Median Spend per Customer": 298.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178504, 40.003812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "Name": "House of Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "3520 Cottman Ave", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2019, "Total Visits": 1834.0, "Total Visitors": 1393.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 22.0, "Total Spend": 2221.0, "Total Transactions": 70.0, "Total Customers": 65.0, "Median Spend per Transaction": 30.61, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-rkz", "Name": "Cafe Lutecia", "Category": "Restaurants and Other Eating Places", "Address": "2301 Lombard St", "LATITUDE": 39.946587, "LONGITUDE": -75.179627, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 80.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 465.0, "Total Spend": 3049.0, "Total Transactions": 105.0, "Total Customers": 68.0, "Median Spend per Transaction": 24.35, "Median Spend per Customer": 27.02 }, "geometry": { "type": "Point", "coordinates": [ -75.179627, 39.946587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7124 Ridge Ave # 62", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 137.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 7.0, "Total Spend": 7521.0, "Total Transactions": 605.0, "Total Customers": 413.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 12.51 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pg5-2tv", "Name": "Morton Food Market", "Category": "Grocery Stores", "Address": "6201 Morton St", "LATITUDE": 40.04563, "LONGITUDE": -75.176218, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 57.0, "POI_CBG": 421010252004.0, "Median Dwell Time": 4.0, "Total Spend": 34.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 2.63, "Median Spend per Customer": 4.25 }, "geometry": { "type": "Point", "coordinates": [ -75.176218, 40.04563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "Name": "The Bottle Shop", "Category": "Beer, Wine, and Liquor Stores", "Address": "1616 E Passyunk Ave", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 42.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 10.0, "Total Spend": 14954.0, "Total Transactions": 773.0, "Total Customers": 546.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p74-vs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7830 Frankford Ave", "LATITUDE": 40.040935, "LONGITUDE": -75.030449, "DATE_RANGE_START": 2019, "Total Visits": 1374.0, "Total Visitors": 781.0, "POI_CBG": 421010331023.0, "Median Dwell Time": 4.0, "Total Spend": 427.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 23.31, "Median Spend per Customer": 27.37 }, "geometry": { "type": "Point", "coordinates": [ -75.030449, 40.040935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-235@628-pmf-jd9", "Name": "The Men's Wearhouse", "Category": "Clothing Stores", "Address": "1624 Chestnut St # 1626", "LATITUDE": 39.951253, "LONGITUDE": -75.168383, "DATE_RANGE_START": 2019, "Total Visits": 1646.0, "Total Visitors": 1166.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 180.0, "Total Spend": 5361.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 139.98, "Median Spend per Customer": 159.07 }, "geometry": { "type": "Point", "coordinates": [ -75.168383, 39.951253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-hdv", "Name": "The Book Corner", "Category": "Book Stores and News Dealers", "Address": "311 N 20th St", "LATITUDE": 39.960171, "LONGITUDE": -75.171295, "DATE_RANGE_START": 2019, "Total Visits": 911.0, "Total Visitors": 700.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 62.0, "Total Spend": 1100.0, "Total Transactions": 130.0, "Total Customers": 102.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.171295, 39.960171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-bzf", "Name": "Penn City Auto Stores", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7116 Elmwood Ave", "LATITUDE": 39.915656, "LONGITUDE": -75.239326, "DATE_RANGE_START": 2019, "Total Visits": 28.0, "Total Visitors": 23.0, "POI_CBG": 421010060004.0, "Median Dwell Time": 223.0, "Total Spend": 6307.0, "Total Transactions": 60.0, "Total Customers": 55.0, "Median Spend per Transaction": 73.45, "Median Spend per Customer": 69.98 }, "geometry": { "type": "Point", "coordinates": [ -75.239326, 39.915656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "Name": "Frank's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3600 Fisk Ave", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 25.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 1.0, "Total Spend": 2010.0, "Total Transactions": 113.0, "Total Customers": 77.0, "Median Spend per Transaction": 13.92, "Median Spend per Customer": 23.86 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg9-vzz", "Name": "Fairmount Bicycles", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2015 Fairmount Ave", "LATITUDE": 39.967501, "LONGITUDE": -75.170829, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 30.0, "POI_CBG": 421010135002.0, "Median Dwell Time": 817.0, "Total Spend": 6880.0, "Total Transactions": 80.0, "Total Customers": 65.0, "Median Spend per Transaction": 33.0, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170829, 39.967501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj5-jqf", "Name": "Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3366 N 2nd St", "LATITUDE": 40.002083, "LONGITUDE": -75.132811, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 77.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 1.0, "Total Spend": 1205.0, "Total Transactions": 58.0, "Total Customers": 47.0, "Median Spend per Transaction": 17.76, "Median Spend per Customer": 22.26 }, "geometry": { "type": "Point", "coordinates": [ -75.132811, 40.002083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-249", "Name": "Two Brothers Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3322 N 13th St", "LATITUDE": 40.003487, "LONGITUDE": -75.150398, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 52.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 56.0, "Total Spend": 4505.0, "Total Transactions": 217.0, "Total Customers": 140.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 21.88 }, "geometry": { "type": "Point", "coordinates": [ -75.150398, 40.003487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "Name": "City View Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1434 Cecil B Moore Ave", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2019, "Total Visits": 380.0, "Total Visitors": 316.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 36.0, "Total Spend": 25856.0, "Total Transactions": 1776.0, "Total Customers": 1244.0, "Median Spend per Transaction": 11.07, "Median Spend per Customer": 15.82 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pmf-hh5", "Name": "Koreana", "Category": "Restaurants and Other Eating Places", "Address": "37 S 19th St", "LATITUDE": 39.952324, "LONGITUDE": -75.171634, "DATE_RANGE_START": 2019, "Total Visits": 371.0, "Total Visitors": 282.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 60.0, "Total Spend": 7496.0, "Total Transactions": 520.0, "Total Customers": 413.0, "Median Spend per Transaction": 11.43, "Median Spend per Customer": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.171634, 39.952324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "Name": "Champ's Diner", "Category": "Restaurants and Other Eating Places", "Address": "1539 Cecil B Moore Ave", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 108.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 6.0, "Total Spend": 18032.0, "Total Transactions": 1008.0, "Total Customers": 765.0, "Median Spend per Transaction": 14.2, "Median Spend per Customer": 18.38 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "Name": "2nd Street Brew House", "Category": "Restaurants and Other Eating Places", "Address": "1700 S 2nd St", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 52.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 41.0, "Total Spend": 5133.0, "Total Transactions": 185.0, "Total Customers": 113.0, "Median Spend per Transaction": 26.5, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8sq", "Name": "District Taco", "Category": "Restaurants and Other Eating Places", "Address": "1140 Market St", "LATITUDE": 39.95167, "LONGITUDE": -75.159171, "DATE_RANGE_START": 2019, "Total Visits": 12633.0, "Total Visitors": 9132.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 21.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.68, "Median Spend per Customer": 12.68 }, "geometry": { "type": "Point", "coordinates": [ -75.159171, 39.95167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ygk", "Name": "QT Vietnamese Sandwich", "Category": "Restaurants and Other Eating Places", "Address": "48 N 10th St", "LATITUDE": 39.953408, "LONGITUDE": -75.156559, "DATE_RANGE_START": 2019, "Total Visits": 630.0, "Total Visitors": 486.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 59.0, "Total Spend": 745.0, "Total Transactions": 63.0, "Total Customers": 63.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156559, 39.953408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm8-djv", "Name": "Celebre Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1536 Packer Ave", "LATITUDE": 39.911364, "LONGITUDE": -75.175337, "DATE_RANGE_START": 2019, "Total Visits": 160.0, "Total Visitors": 128.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 20.0, "Total Spend": 91.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 27.35, "Median Spend per Customer": 27.35 }, "geometry": { "type": "Point", "coordinates": [ -75.175337, 39.911364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "Name": "Microtel Inn and Suites", "Category": "Traveler Accommodation", "Address": "8840 Tinicum Blvd", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2019, "Total Visits": 1109.0, "Total Visitors": 741.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 309.0, "Total Spend": 9715.0, "Total Transactions": 70.0, "Total Customers": 65.0, "Median Spend per Transaction": 105.56, "Median Spend per Customer": 105.72 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "Name": "Charlie Was a Sinner", "Category": "Restaurants and Other Eating Places", "Address": "131 S 13th St", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 235.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 33.0, "Total Spend": 30011.0, "Total Transactions": 546.0, "Total Customers": 511.0, "Median Spend per Transaction": 40.66, "Median Spend per Customer": 43.46 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgd-z9f", "Name": "Pita Chip", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956634, "LONGITUDE": -75.194194, "DATE_RANGE_START": 2019, "Total Visits": 12156.0, "Total Visitors": 6523.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 84.0, "Total Spend": 11148.0, "Total Transactions": 1118.0, "Total Customers": 800.0, "Median Spend per Transaction": 8.37, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.194194, 39.956634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "910 Chestnut St", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2019, "Total Visits": 496.0, "Total Visitors": 381.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 2802.0, "Total Transactions": 356.0, "Total Customers": 263.0, "Median Spend per Transaction": 7.55, "Median Spend per Customer": 8.09 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-vvf", "Name": "Pret A Manger", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955744, "LONGITUDE": -75.181965, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 24.0, "Total Spend": 21298.0, "Total Transactions": 2419.0, "Total Customers": 1811.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.181965, 39.955744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pg9-vpv", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "2100 Fairmount Ave", "LATITUDE": 39.967164, "LONGITUDE": -75.172278, "DATE_RANGE_START": 2019, "Total Visits": 1163.0, "Total Visitors": 924.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 33.0, "Total Spend": 5345.0, "Total Transactions": 688.0, "Total Customers": 516.0, "Median Spend per Transaction": 6.08, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172278, 39.967164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "Name": "Crash Bang Boom", "Category": "Clothing Stores", "Address": "528 S 4th St", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2019, "Total Visits": 1857.0, "Total Visitors": 1744.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 290.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 76.16, "Median Spend per Customer": 76.16 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "9475 Roosevelt Blvd Ste 8", "LATITUDE": 40.079117, "LONGITUDE": -75.027659, "DATE_RANGE_START": 2019, "Total Visits": 278.0, "Total Visitors": 175.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 213.0, "Total Spend": 2586.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 57.33, "Median Spend per Customer": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.027659, 40.079117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "Name": "Best Buy Furniture", "Category": "Furniture Stores", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.078042, "LONGITUDE": -75.024894, "DATE_RANGE_START": 2019, "Total Visits": 6281.0, "Total Visitors": 4394.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 35.0, "Total Spend": 5990.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 600.0, "Median Spend per Customer": 600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024894, 40.078042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "Name": "Royal Farms", "Category": "Grocery Stores", "Address": "2501 Church St", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2019, "Total Visits": 2052.0, "Total Visitors": 1514.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 10.0, "Total Spend": 40983.0, "Total Transactions": 2339.0, "Total Customers": 1131.0, "Median Spend per Transaction": 12.23, "Median Spend per Customer": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "Name": "Evan's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4311 Locust St", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 32.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 27.0, "Total Spend": 3989.0, "Total Transactions": 278.0, "Total Customers": 172.0, "Median Spend per Transaction": 12.47, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "Name": "Marine Layer", "Category": "Clothing Stores", "Address": "1604 Walnut St", "LATITUDE": 39.949625, "LONGITUDE": -75.16782, "DATE_RANGE_START": 2019, "Total Visits": 2555.0, "Total Visitors": 1889.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 30.0, "Total Spend": 1402.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 104.0, "Median Spend per Customer": 115.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16782, 39.949625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "3621 Walnut St", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2019, "Total Visits": 483.0, "Total Visitors": 360.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 152.0, "Total Spend": 4361.0, "Total Transactions": 47.0, "Total Customers": 40.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 112.45 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvw-gzf", "Name": "Connie's Food Market", "Category": "Grocery Stores", "Address": "5153 Walnut St", "LATITUDE": 39.957128, "LONGITUDE": -75.225058, "DATE_RANGE_START": 2019, "Total Visits": 303.0, "Total Visitors": 272.0, "POI_CBG": 421010085002.0, "Median Dwell Time": 5.0, "Total Spend": 11.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 3.24, "Median Spend per Customer": 3.24 }, "geometry": { "type": "Point", "coordinates": [ -75.225058, 39.957128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "Name": "Palm Tree Gourmet", "Category": "Grocery Stores", "Address": "1940 Pine St", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 65.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 64.0, "Total Spend": 13238.0, "Total Transactions": 1059.0, "Total Customers": 593.0, "Median Spend per Transaction": 9.98, "Median Spend per Customer": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "917 Filbert St", "LATITUDE": 39.952664, "LONGITUDE": -75.15622, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 60.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 1844.0, "Total Transactions": 237.0, "Total Customers": 157.0, "Median Spend per Transaction": 5.86, "Median Spend per Customer": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.15622, 39.952664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2301 W Passyunk Ave", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2019, "Total Visits": 875.0, "Total Visitors": 575.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 4.0, "Total Spend": 611.0, "Total Transactions": 80.0, "Total Customers": 53.0, "Median Spend per Transaction": 5.96, "Median Spend per Customer": 9.06 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-f75", "Name": "Beer City", "Category": "Grocery Stores", "Address": "701 E Girard Ave", "LATITUDE": 39.972301, "LONGITUDE": -75.125884, "DATE_RANGE_START": 2019, "Total Visits": 538.0, "Total Visitors": 358.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 64.0, "Total Spend": 12270.0, "Total Transactions": 498.0, "Total Customers": 346.0, "Median Spend per Transaction": 19.97, "Median Spend per Customer": 27.89 }, "geometry": { "type": "Point", "coordinates": [ -75.125884, 39.972301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "Name": "Northeast Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "7324 Castor Ave", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2019, "Total Visits": 145.0, "Total Visitors": 80.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 82.0, "Total Spend": 2742.0, "Total Transactions": 78.0, "Total Customers": 60.0, "Median Spend per Transaction": 30.29, "Median Spend per Customer": 43.07 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1101 Locust St", "LATITUDE": 39.947798, "LONGITUDE": -75.1598, "DATE_RANGE_START": 2019, "Total Visits": 2177.0, "Total Visitors": 1487.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 43.0, "Total Spend": 13147.0, "Total Transactions": 846.0, "Total Customers": 491.0, "Median Spend per Transaction": 9.87, "Median Spend per Customer": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.1598, 39.947798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-3dv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "810 S Broad St", "LATITUDE": 39.940442, "LONGITUDE": -75.166876, "DATE_RANGE_START": 2019, "Total Visits": 533.0, "Total Visitors": 351.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 9.0, "Total Spend": 4922.0, "Total Transactions": 262.0, "Total Customers": 177.0, "Median Spend per Transaction": 11.76, "Median Spend per Customer": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.166876, 39.940442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-6tv", "Name": "Eternity Fashion", "Category": "Clothing Stores", "Address": "1410 Chestnut St", "LATITUDE": 39.951034, "LONGITUDE": -75.166595, "DATE_RANGE_START": 2019, "Total Visits": 646.0, "Total Visitors": 368.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 91.0, "Total Spend": 11840.0, "Total Transactions": 323.0, "Total Customers": 300.0, "Median Spend per Transaction": 27.98, "Median Spend per Customer": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166595, 39.951034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-vcq", "Name": "The Dolphin Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1539 S Broad St", "LATITUDE": 39.930579, "LONGITUDE": -75.167937, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 72.0, "POI_CBG": 421010029002.0, "Median Dwell Time": 26.0, "Total Spend": 703.0, "Total Transactions": 27.0, "Total Customers": 25.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167937, 39.930579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "Name": "Varga Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "941 Spruce St", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2019, "Total Visits": 183.0, "Total Visitors": 167.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 17.0, "Total Spend": 13084.0, "Total Transactions": 348.0, "Total Customers": 298.0, "Median Spend per Transaction": 30.02, "Median Spend per Customer": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "Name": "Moonlight Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "6834 Limekiln Pike", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 258.0, "POI_CBG": 421010265004.0, "Median Dwell Time": 33.0, "Total Spend": 1782.0, "Total Transactions": 68.0, "Total Customers": 60.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp4-qmk", "Name": "Pizza Hut", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978207, "LONGITUDE": -75.119477, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 95.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 2.0, "Total Spend": 4789.0, "Total Transactions": 223.0, "Total Customers": 192.0, "Median Spend per Transaction": 17.26, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.119477, 39.978207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgj-75z", "Name": "L & K Food Market", "Category": "Grocery Stores", "Address": "2163 N 21st St", "LATITUDE": 39.98765, "LONGITUDE": -75.167446, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 105.0, "POI_CBG": 421010152002.0, "Median Dwell Time": 5.0, "Total Spend": 65.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.55, "Median Spend per Customer": 5.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167446, 39.98765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "Name": "Cottman Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "7544 Frankford Ave", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2019, "Total Visits": 277.0, "Total Visitors": 208.0, "POI_CBG": 421010331013.0, "Median Dwell Time": 3.0, "Total Spend": 4001.0, "Total Transactions": 165.0, "Total Customers": 115.0, "Median Spend per Transaction": 20.39, "Median Spend per Customer": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p7v-qj9", "Name": "Oxford Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "7517 Oxford Ave", "LATITUDE": 40.066404, "LONGITUDE": -75.083593, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 118.0, "POI_CBG": 421010339001.0, "Median Dwell Time": 2.0, "Total Spend": 19080.0, "Total Transactions": 571.0, "Total Customers": 335.0, "Median Spend per Transaction": 28.74, "Median Spend per Customer": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.083593, 40.066404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-qvf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.03237, "LONGITUDE": -75.101559, "DATE_RANGE_START": 2019, "Total Visits": 873.0, "Total Visitors": 788.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 13.0, "Total Spend": 6487.0, "Total Transactions": 105.0, "Total Customers": 95.0, "Median Spend per Transaction": 37.78, "Median Spend per Customer": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.101559, 40.03237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp2-qzz", "Name": "Cambridge Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2313 E Venango St Ste 1", "LATITUDE": 39.994215, "LONGITUDE": -75.097432, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 4.0, "Total Spend": 127.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 12.32, "Median Spend per Customer": 12.32 }, "geometry": { "type": "Point", "coordinates": [ -75.097432, 39.994215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd Ste F2", "LATITUDE": 40.031542, "LONGITUDE": -75.100256, "DATE_RANGE_START": 2019, "Total Visits": 220.0, "Total Visitors": 203.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 6.0, "Total Spend": 5222.0, "Total Transactions": 88.0, "Total Customers": 75.0, "Median Spend per Transaction": 50.48, "Median Spend per Customer": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.100256, 40.031542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6000 N Broad St Store A", "LATITUDE": 40.045011, "LONGITUDE": -75.144262, "DATE_RANGE_START": 2019, "Total Visits": 635.0, "Total Visitors": 516.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 6.0, "Total Spend": 432.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 14.13, "Median Spend per Customer": 15.78 }, "geometry": { "type": "Point", "coordinates": [ -75.144262, 40.045011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dwg-g6k", "Name": "United", "Category": "Gasoline Stations", "Address": "6901 Buist Ave", "LATITUDE": 39.917055, "LONGITUDE": -75.235223, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 60.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 5.0, "Total Spend": 12517.0, "Total Transactions": 330.0, "Total Customers": 187.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 30.11 }, "geometry": { "type": "Point", "coordinates": [ -75.235223, 39.917055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1 Mifflin St", "LATITUDE": 39.92482, "LONGITUDE": -75.146253, "DATE_RANGE_START": 2019, "Total Visits": 9861.0, "Total Visitors": 6550.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 21.0, "Total Spend": 526075.0, "Total Transactions": 10173.0, "Total Customers": 5963.0, "Median Spend per Transaction": 33.47, "Median Spend per Customer": 53.37 }, "geometry": { "type": "Point", "coordinates": [ -75.146253, 39.92482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2001 Pennsylvania Ave", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2019, "Total Visits": 4019.0, "Total Visitors": 2718.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 17.0, "Total Spend": 257408.0, "Total Transactions": 8222.0, "Total Customers": 4393.0, "Median Spend per Transaction": 21.2, "Median Spend per Customer": 36.86 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp4-kfz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2459 Kensington Ave", "LATITUDE": 39.987233, "LONGITUDE": -75.129676, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 461.0, "POI_CBG": 421010161004.0, "Median Dwell Time": 5.0, "Total Spend": 2253.0, "Total Transactions": 210.0, "Total Customers": 77.0, "Median Spend per Transaction": 7.68, "Median Spend per Customer": 10.82 }, "geometry": { "type": "Point", "coordinates": [ -75.129676, 39.987233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j9z", "Name": "aka.", "Category": "Traveler Accommodation", "Address": "135 S 18th St", "LATITUDE": 39.950397, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2019, "Total Visits": 656.0, "Total Visitors": 523.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 136.0, "Total Spend": 4626.0, "Total Transactions": 173.0, "Total Customers": 165.0, "Median Spend per Transaction": 16.13, "Median Spend per Customer": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.950397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmf-jgk", "Name": "Dizengoff", "Category": "Restaurants and Other Eating Places", "Address": "1625 Sansom St", "LATITUDE": 39.950806, "LONGITUDE": -75.168528, "DATE_RANGE_START": 2019, "Total Visits": 851.0, "Total Visitors": 628.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 112.0, "Total Spend": 12138.0, "Total Transactions": 750.0, "Total Customers": 643.0, "Median Spend per Transaction": 14.2, "Median Spend per Customer": 14.95 }, "geometry": { "type": "Point", "coordinates": [ -75.168528, 39.950806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "Name": "My Thai", "Category": "Restaurants and Other Eating Places", "Address": "2200 South St", "LATITUDE": 39.945111, "LONGITUDE": -75.178763, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 117.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 1.0, "Total Spend": 1965.0, "Total Transactions": 60.0, "Total Customers": 48.0, "Median Spend per Transaction": 33.35, "Median Spend per Customer": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178763, 39.945111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-59f", "Name": "Bellissima Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7816 Castor Ave", "LATITUDE": 40.058663, "LONGITUDE": -75.059466, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 123.0, "POI_CBG": 421010336002.0, "Median Dwell Time": 8.0, "Total Spend": 1812.0, "Total Transactions": 80.0, "Total Customers": 62.0, "Median Spend per Transaction": 20.38, "Median Spend per Customer": 24.75 }, "geometry": { "type": "Point", "coordinates": [ -75.059466, 40.058663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "Name": "Steak 'Em Up", "Category": "Restaurants and Other Eating Places", "Address": "2600 S 11th St", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 77.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 2.0, "Total Spend": 2427.0, "Total Transactions": 115.0, "Total Customers": 88.0, "Median Spend per Transaction": 17.15, "Median Spend per Customer": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "Name": "Race Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "208 Race St", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2019, "Total Visits": 158.0, "Total Visitors": 132.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 48.0, "Total Spend": 7369.0, "Total Transactions": 157.0, "Total Customers": 107.0, "Median Spend per Transaction": 38.5, "Median Spend per Customer": 41.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "Name": "Oyster House", "Category": "Restaurants and Other Eating Places", "Address": "1516 Sansom St", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2019, "Total Visits": 741.0, "Total Visitors": 640.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 50.0, "Total Spend": 51999.0, "Total Transactions": 650.0, "Total Customers": 565.0, "Median Spend per Transaction": 61.12, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "Name": "Trio", "Category": "Restaurants and Other Eating Places", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.968734, "LONGITUDE": -75.180754, "DATE_RANGE_START": 2019, "Total Visits": 343.0, "Total Visitors": 175.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 62.0, "Total Spend": 9303.0, "Total Transactions": 508.0, "Total Customers": 353.0, "Median Spend per Transaction": 10.72, "Median Spend per Customer": 14.39 }, "geometry": { "type": "Point", "coordinates": [ -75.180754, 39.968734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "Name": "Yiro Yiro", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032303, "LONGITUDE": -75.214323, "DATE_RANGE_START": 2019, "Total Visits": 3205.0, "Total Visitors": 1774.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 16.0, "Total Spend": 7094.0, "Total Transactions": 411.0, "Total Customers": 325.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.214323, 40.032303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "Name": "Museum Deli", "Category": "Restaurants and Other Eating Places", "Address": "333 Spring Garden St", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2019, "Total Visits": 188.0, "Total Visitors": 142.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 8.0, "Total Spend": 3593.0, "Total Transactions": 353.0, "Total Customers": 182.0, "Median Spend per Transaction": 9.4, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "Name": "Burlington", "Category": "Clothing Stores", "Address": "833 Market St", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2019, "Total Visits": 16667.0, "Total Visitors": 9353.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 12.0, "Total Spend": 21783.0, "Total Transactions": 511.0, "Total Customers": 406.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 31.83 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "Name": "Shoe Carnival", "Category": "Shoe Stores", "Address": "2135 Cottman Ave", "LATITUDE": 40.049924, "LONGITUDE": -75.062397, "DATE_RANGE_START": 2019, "Total Visits": 1311.0, "Total Visitors": 1033.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 13.0, "Total Spend": 13793.0, "Total Transactions": 262.0, "Total Customers": 212.0, "Median Spend per Transaction": 44.97, "Median Spend per Customer": 57.85 }, "geometry": { "type": "Point", "coordinates": [ -75.062397, 40.049924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-jjv", "Name": "MAC Cosmetics", "Category": "Health and Personal Care Stores", "Address": "1734 Chestnut St Spc # Unit A", "LATITUDE": 39.951489, "LONGITUDE": -75.170193, "DATE_RANGE_START": 2019, "Total Visits": 4751.0, "Total Visitors": 3187.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 114.0, "Total Spend": 1803.0, "Total Transactions": 40.0, "Total Customers": 37.0, "Median Spend per Transaction": 33.48, "Median Spend per Customer": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.170193, 39.951489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-mx5", "Name": "Real Food Eatery", "Category": "Restaurants and Other Eating Places", "Address": "1700 Market St", "LATITUDE": 39.952907, "LONGITUDE": -75.169077, "DATE_RANGE_START": 2019, "Total Visits": 15803.0, "Total Visitors": 8064.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 258.0, "Total Spend": 7767.0, "Total Transactions": 580.0, "Total Customers": 490.0, "Median Spend per Transaction": 12.1, "Median Spend per Customer": 12.91 }, "geometry": { "type": "Point", "coordinates": [ -75.169077, 39.952907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "Name": "Ritz Diner", "Category": "Restaurants and Other Eating Places", "Address": "8000 Roosevelt Blvd", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2019, "Total Visits": 1389.0, "Total Visitors": 1126.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 37.0, "Total Spend": 11646.0, "Total Transactions": 408.0, "Total Customers": 330.0, "Median Spend per Transaction": 25.89, "Median Spend per Customer": 28.42 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5158 Haverford Ave", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2019, "Total Visits": 130.0, "Total Visitors": 75.0, "POI_CBG": 421010093005.0, "Median Dwell Time": 86.0, "Total Spend": 787.0, "Total Transactions": 53.0, "Total Customers": 50.0, "Median Spend per Transaction": 12.52, "Median Spend per Customer": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p72-5s5", "Name": "Three Monkeys Cafe", "Category": "Restaurants and Other Eating Places", "Address": "9645 James St", "LATITUDE": 40.053948, "LONGITUDE": -74.983889, "DATE_RANGE_START": 2019, "Total Visits": 845.0, "Total Visitors": 656.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 61.0, "Total Spend": 876.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 65.37, "Median Spend per Customer": 64.54 }, "geometry": { "type": "Point", "coordinates": [ -74.983889, 40.053948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnz-zj9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3398 Aramingo & Ontario", "LATITUDE": 39.99116, "LONGITUDE": -75.102091, "DATE_RANGE_START": 2019, "Total Visits": 553.0, "Total Visitors": 408.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 4.0, "Total Spend": 665.0, "Total Transactions": 28.0, "Total Customers": 17.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 28.16 }, "geometry": { "type": "Point", "coordinates": [ -75.102091, 39.99116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgf-6zf", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "4034 Lancaster Ave", "LATITUDE": 39.963777, "LONGITUDE": -75.203645, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 145.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 11.0, "Total Spend": 2638.0, "Total Transactions": 37.0, "Total Customers": 33.0, "Median Spend per Transaction": 54.98, "Median Spend per Customer": 62.48 }, "geometry": { "type": "Point", "coordinates": [ -75.203645, 39.963777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "180 W Duncannon Ave", "LATITUDE": 40.029081, "LONGITUDE": -75.125232, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 223.0, "POI_CBG": 421010286001.0, "Median Dwell Time": 9.0, "Total Spend": 15798.0, "Total Transactions": 351.0, "Total Customers": 265.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 31.44 }, "geometry": { "type": "Point", "coordinates": [ -75.125232, 40.029081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "Name": "Clarkville", "Category": "Restaurants and Other Eating Places", "Address": "4301 Baltimore Ave", "LATITUDE": 39.949731, "LONGITUDE": -75.209453, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 65.0, "POI_CBG": 421010087011.0, "Median Dwell Time": 18.0, "Total Spend": 17634.0, "Total Transactions": 541.0, "Total Customers": 475.0, "Median Spend per Transaction": 26.28, "Median Spend per Customer": 29.84 }, "geometry": { "type": "Point", "coordinates": [ -75.209453, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-wc5", "Name": "Renzis Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "6300 Battersby St", "LATITUDE": 40.029921, "LONGITUDE": -75.062595, "DATE_RANGE_START": 2019, "Total Visits": 182.0, "Total Visitors": 100.0, "POI_CBG": 421010316004.0, "Median Dwell Time": 838.0, "Total Spend": 2320.0, "Total Transactions": 103.0, "Total Customers": 85.0, "Median Spend per Transaction": 20.08, "Median Spend per Customer": 23.57 }, "geometry": { "type": "Point", "coordinates": [ -75.062595, 40.029921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "Name": "Double Knot", "Category": "Health and Personal Care Stores", "Address": "120 S 13th St", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2019, "Total Visits": 553.0, "Total Visitors": 446.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 54.0, "Total Spend": 33298.0, "Total Transactions": 546.0, "Total Customers": 400.0, "Median Spend per Transaction": 26.6, "Median Spend per Customer": 46.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "Name": "Sonnys Famous Steaks", "Category": "Restaurants and Other Eating Places", "Address": "228 Market St", "LATITUDE": 39.949796, "LONGITUDE": -75.144721, "DATE_RANGE_START": 2019, "Total Visits": 120.0, "Total Visitors": 102.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 12.0, "Total Spend": 28094.0, "Total Transactions": 1329.0, "Total Customers": 1204.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144721, 39.949796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phj-rp9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7900 Ogontz Ave", "LATITUDE": 40.07278, "LONGITUDE": -75.15833, "DATE_RANGE_START": 2019, "Total Visits": 2475.0, "Total Visitors": 1662.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 6.0, "Total Spend": 447.0, "Total Transactions": 15.0, "Total Customers": 8.0, "Median Spend per Transaction": 30.07, "Median Spend per Customer": 34.37 }, "geometry": { "type": "Point", "coordinates": [ -75.15833, 40.07278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "Name": "House of Kosher", "Category": "Restaurants and Other Eating Places", "Address": "9806 Bustleton Ave", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2019, "Total Visits": 375.0, "Total Visitors": 233.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 13.0, "Total Spend": 16443.0, "Total Transactions": 208.0, "Total Customers": 100.0, "Median Spend per Transaction": 48.01, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-qs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2500 Island Ave & Elmwood Ave", "LATITUDE": 39.912518, "LONGITUDE": -75.243563, "DATE_RANGE_START": 2019, "Total Visits": 1459.0, "Total Visitors": 1008.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 4.0, "Total Spend": 910.0, "Total Transactions": 42.0, "Total Customers": 30.0, "Median Spend per Transaction": 17.26, "Median Spend per Customer": 25.72 }, "geometry": { "type": "Point", "coordinates": [ -75.243563, 39.912518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-y5f", "Name": "Reef Restaurant & Lounge", "Category": "Restaurants and Other Eating Places", "Address": "605 S 3rd St", "LATITUDE": 39.941163, "LONGITUDE": -75.147404, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 122.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 46.0, "Total Spend": 335.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 51.78, "Median Spend per Customer": 51.78 }, "geometry": { "type": "Point", "coordinates": [ -75.147404, 39.941163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012073, "LONGITUDE": -75.115248, "DATE_RANGE_START": 2019, "Total Visits": 298.0, "Total Visitors": 265.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 5.0, "Total Spend": 557.0, "Total Transactions": 45.0, "Total Customers": 35.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.115248, 40.012073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3218 Willits Rd", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2019, "Total Visits": 401.0, "Total Visitors": 250.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 3.0, "Total Spend": 1279.0, "Total Transactions": 202.0, "Total Customers": 132.0, "Median Spend per Transaction": 5.05, "Median Spend per Customer": 5.81 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6x5", "Name": "Amma's South Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1518 Chestnut St", "LATITUDE": 39.950885, "LONGITUDE": -75.166421, "DATE_RANGE_START": 2019, "Total Visits": 12130.0, "Total Visitors": 8380.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 46.0, "Total Spend": 16597.0, "Total Transactions": 451.0, "Total Customers": 398.0, "Median Spend per Transaction": 27.27, "Median Spend per Customer": 32.29 }, "geometry": { "type": "Point", "coordinates": [ -75.166421, 39.950885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2019, "Total Visits": 651.0, "Total Visitors": 493.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 3.0, "Total Spend": 4497.0, "Total Transactions": 745.0, "Total Customers": 380.0, "Median Spend per Transaction": 5.16, "Median Spend per Customer": 7.24 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "416 N 63rd St # 36", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2019, "Total Visits": 285.0, "Total Visitors": 220.0, "POI_CBG": 421010101005.0, "Median Dwell Time": 3.0, "Total Spend": 4837.0, "Total Transactions": 760.0, "Total Customers": 448.0, "Median Spend per Transaction": 5.45, "Median Spend per Customer": 7.53 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "Name": "Hadramout", "Category": "Restaurants and Other Eating Places", "Address": "136 S 45th St", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2019, "Total Visits": 138.0, "Total Visitors": 63.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 184.0, "Total Spend": 3719.0, "Total Transactions": 108.0, "Total Customers": 95.0, "Median Spend per Transaction": 22.46, "Median Spend per Customer": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pg2-hbk", "Name": "Milo The Meeting House", "Category": "Restaurants and Other Eating Places", "Address": "7165 Germantown Ave", "LATITUDE": 40.060155, "LONGITUDE": -75.19073, "DATE_RANGE_START": 2019, "Total Visits": 381.0, "Total Visitors": 318.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 23.0, "Total Spend": 2159.0, "Total Transactions": 93.0, "Total Customers": 78.0, "Median Spend per Transaction": 21.08, "Median Spend per Customer": 24.62 }, "geometry": { "type": "Point", "coordinates": [ -75.19073, 40.060155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "912 Walnut St # 916", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2019, "Total Visits": 2004.0, "Total Visitors": 1276.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 7.0, "Total Spend": 51342.0, "Total Transactions": 7872.0, "Total Customers": 3060.0, "Median Spend per Transaction": 5.48, "Median Spend per Customer": 9.11 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmb-kj9", "Name": "Oui", "Category": "Restaurants and Other Eating Places", "Address": "160 N 3rd St", "LATITUDE": 39.953782, "LONGITUDE": -75.145092, "DATE_RANGE_START": 2019, "Total Visits": 2247.0, "Total Visitors": 1801.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 5.0, "Total Spend": 96.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 28.8, "Median Spend per Customer": 28.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145092, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-wx5", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7720 Lindbergh Blvd", "LATITUDE": 39.903669, "LONGITUDE": -75.238891, "DATE_RANGE_START": 2019, "Total Visits": 871.0, "Total Visitors": 633.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 34.0, "Total Spend": 2195.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 25.35, "Median Spend per Customer": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.238891, 39.903669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "Name": "Fair Mart", "Category": "Grocery Stores", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.968488, "LONGITUDE": -75.180495, "DATE_RANGE_START": 2019, "Total Visits": 1131.0, "Total Visitors": 750.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 221.0, "Total Spend": 4511.0, "Total Transactions": 435.0, "Total Customers": 163.0, "Median Spend per Transaction": 8.2, "Median Spend per Customer": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.180495, 39.968488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7520 City Ave", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2019, "Total Visits": 573.0, "Total Visitors": 461.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 1.0, "Total Spend": 8773.0, "Total Transactions": 1439.0, "Total Customers": 755.0, "Median Spend per Transaction": 4.91, "Median Spend per Customer": 7.66 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phq-gff", "Name": "Takka Grill & Shrimpie's", "Category": "Restaurants and Other Eating Places", "Address": "1910 W Cheltenham Ave", "LATITUDE": 40.067474, "LONGITUDE": -75.147141, "DATE_RANGE_START": 2019, "Total Visits": 446.0, "Total Visitors": 230.0, "POI_CBG": 421010266003.0, "Median Dwell Time": 461.0, "Total Spend": 1524.0, "Total Transactions": 98.0, "Total Customers": 38.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147141, 40.067474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1919 Market St Ste 150", "LATITUDE": 39.953745, "LONGITUDE": -75.172854, "DATE_RANGE_START": 2019, "Total Visits": 5797.0, "Total Visitors": 3073.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 120.0, "Total Spend": 17762.0, "Total Transactions": 1078.0, "Total Customers": 710.0, "Median Spend per Transaction": 11.14, "Median Spend per Customer": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.172854, 39.953745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg4-grk", "Name": "1beautysupplypa", "Category": "Health and Personal Care Stores", "Address": "301 W Chelten Ave Ste C", "LATITUDE": 40.030533, "LONGITUDE": -75.181364, "DATE_RANGE_START": 2019, "Total Visits": 919.0, "Total Visitors": 700.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 9.0, "Total Spend": 5970.0, "Total Transactions": 250.0, "Total Customers": 232.0, "Median Spend per Transaction": 16.98, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.181364, 40.030533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1000 E Erie Ave", "LATITUDE": 40.005166, "LONGITUDE": -75.108882, "DATE_RANGE_START": 2019, "Total Visits": 2830.0, "Total Visitors": 1871.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 4.0, "Total Spend": 33066.0, "Total Transactions": 1566.0, "Total Customers": 800.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 27.34 }, "geometry": { "type": "Point", "coordinates": [ -75.108882, 40.005166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmf-j35", "Name": "Benjamin Lovell Shoes", "Category": "Shoe Stores", "Address": "1728 Chestnut St", "LATITUDE": 39.95135, "LONGITUDE": -75.169937, "DATE_RANGE_START": 2019, "Total Visits": 4751.0, "Total Visitors": 3187.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 114.0, "Total Spend": 7053.0, "Total Transactions": 52.0, "Total Customers": 50.0, "Median Spend per Transaction": 110.0, "Median Spend per Customer": 116.98 }, "geometry": { "type": "Point", "coordinates": [ -75.169937, 39.95135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "9711 Roosevelt Blvd", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2019, "Total Visits": 2527.0, "Total Visitors": 2154.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 9.0, "Total Spend": 39898.0, "Total Transactions": 3097.0, "Total Customers": 2034.0, "Median Spend per Transaction": 10.17, "Median Spend per Customer": 14.9 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8045 Frankford Ave Ste 1", "LATITUDE": 40.041766, "LONGITUDE": -75.026083, "DATE_RANGE_START": 2019, "Total Visits": 295.0, "Total Visitors": 220.0, "POI_CBG": 421010329001.0, "Median Dwell Time": 6.0, "Total Spend": 739.0, "Total Transactions": 53.0, "Total Customers": 28.0, "Median Spend per Transaction": 7.98, "Median Spend per Customer": 12.85 }, "geometry": { "type": "Point", "coordinates": [ -75.026083, 40.041766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1405 S 10th St", "LATITUDE": 39.931453, "LONGITUDE": -75.160518, "DATE_RANGE_START": 2019, "Total Visits": 1258.0, "Total Visitors": 688.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 16.0, "Total Spend": 20453.0, "Total Transactions": 914.0, "Total Customers": 480.0, "Median Spend per Transaction": 11.98, "Median Spend per Customer": 20.91 }, "geometry": { "type": "Point", "coordinates": [ -75.160518, 39.931453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "Name": "Finn Mccools Ale House", "Category": "Restaurants and Other Eating Places", "Address": "118 S 12th St", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 486.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 21.0, "Total Spend": 7223.0, "Total Transactions": 300.0, "Total Customers": 198.0, "Median Spend per Transaction": 18.6, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "171 W Chelten Ave", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2019, "Total Visits": 1251.0, "Total Visitors": 969.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 5.0, "Total Spend": 392.0, "Total Transactions": 35.0, "Total Customers": 30.0, "Median Spend per Transaction": 7.91, "Median Spend per Customer": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pj4-s89", "Name": "Marv Loves Too", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2762 N 2nd St", "LATITUDE": 39.992943, "LONGITUDE": -75.134756, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 42.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 48.0, "Total Spend": 733.0, "Total Transactions": 33.0, "Total Customers": 22.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134756, 39.992943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp5-7dv", "Name": "Martha", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2113 E York St", "LATITUDE": 39.982345, "LONGITUDE": -75.128218, "DATE_RANGE_START": 2019, "Total Visits": 331.0, "Total Visitors": 195.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 67.0, "Total Spend": 20818.0, "Total Transactions": 610.0, "Total Customers": 445.0, "Median Spend per Transaction": 28.48, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128218, 39.982345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "Name": "Time Out Sports Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3709 Schuyler St", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 125.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 70.0, "Total Spend": 2246.0, "Total Transactions": 92.0, "Total Customers": 47.0, "Median Spend per Transaction": 18.8, "Median Spend per Customer": 36.67 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-wrk", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2628 N Broad St", "LATITUDE": 39.993383, "LONGITUDE": -75.155194, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 47.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 238.0, "Total Spend": 13544.0, "Total Transactions": 615.0, "Total Customers": 453.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 24.61 }, "geometry": { "type": "Point", "coordinates": [ -75.155194, 39.993383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "Name": "El Camino Real", "Category": "Restaurants and Other Eating Places", "Address": "1040 N 2nd St", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2019, "Total Visits": 376.0, "Total Visitors": 295.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 47.0, "Total Spend": 423.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 42.64, "Median Spend per Customer": 68.43 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-w6k", "Name": "National Mechanics", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "22 S 3rd St", "LATITUDE": 39.94956, "LONGITUDE": -75.146014, "DATE_RANGE_START": 2019, "Total Visits": 410.0, "Total Visitors": 361.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 52.0, "Total Spend": 8097.0, "Total Transactions": 210.0, "Total Customers": 168.0, "Median Spend per Transaction": 33.16, "Median Spend per Customer": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146014, 39.94956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "Name": "Frankford Hall", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1210 Frankford Ave", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2019, "Total Visits": 1121.0, "Total Visitors": 969.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 52.0, "Total Spend": 73218.0, "Total Transactions": 3691.0, "Total Customers": 2569.0, "Median Spend per Transaction": 15.99, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "Name": "Golden Crust Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "3732 Midvale Ave", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 82.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 15.0, "Total Spend": 2851.0, "Total Transactions": 160.0, "Total Customers": 120.0, "Median Spend per Transaction": 13.45, "Median Spend per Customer": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm4-pvz", "Name": "George's Sandwich Shop", "Category": "Restaurants and Other Eating Places", "Address": "900 S 9th St", "LATITUDE": 39.938819, "LONGITUDE": -75.157978, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 152.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 1.0, "Total Spend": 1006.0, "Total Transactions": 73.0, "Total Customers": 68.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157978, 39.938819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "Name": "Standard Tap", "Category": "Restaurants and Other Eating Places", "Address": "901 N 2nd St", "LATITUDE": 39.964257, "LONGITUDE": -75.140401, "DATE_RANGE_START": 2019, "Total Visits": 185.0, "Total Visitors": 143.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 46.0, "Total Spend": 28305.0, "Total Transactions": 671.0, "Total Customers": 570.0, "Median Spend per Transaction": 33.0, "Median Spend per Customer": 35.28 }, "geometry": { "type": "Point", "coordinates": [ -75.140401, 39.964257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22q@628-pmb-835", "Name": "Pearl's Oyster Bar", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.95321, "LONGITUDE": -75.159401, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 8195.0, "Total Transactions": 300.0, "Total Customers": 272.0, "Median Spend per Transaction": 22.98, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.159401, 39.95321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2019, "Total Visits": 1224.0, "Total Visitors": 1023.0, "POI_CBG": 421010098011.0, "Median Dwell Time": 5.0, "Total Spend": 12319.0, "Total Transactions": 1396.0, "Total Customers": 968.0, "Median Spend per Transaction": 8.06, "Median Spend per Customer": 9.05 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "Name": "Little Italy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "901 South St", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2019, "Total Visits": 188.0, "Total Visitors": 163.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 9.0, "Total Spend": 1416.0, "Total Transactions": 113.0, "Total Customers": 90.0, "Median Spend per Transaction": 10.76, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmb-835", "Name": "Beck's Cajun Cafe", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953182, "LONGITUDE": -75.159431, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 3525.0, "Total Transactions": 253.0, "Total Customers": 233.0, "Median Spend per Transaction": 12.52, "Median Spend per Customer": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.159431, 39.953182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "4004 W Girard Ave", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 70.0, "POI_CBG": 421010110003.0, "Median Dwell Time": 6.0, "Total Spend": 347.0, "Total Transactions": 25.0, "Total Customers": 18.0, "Median Spend per Transaction": 12.7, "Median Spend per Customer": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-ks5", "Name": "Zama", "Category": "Restaurants and Other Eating Places", "Address": "128 S 19th St", "LATITUDE": 39.950901, "LONGITUDE": -75.172392, "DATE_RANGE_START": 2019, "Total Visits": 853.0, "Total Visitors": 635.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 61.0, "Total Spend": 18397.0, "Total Transactions": 192.0, "Total Customers": 167.0, "Median Spend per Transaction": 78.78, "Median Spend per Customer": 92.11 }, "geometry": { "type": "Point", "coordinates": [ -75.172392, 39.950901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phy-h3q", "Name": "Latin Fashion", "Category": "Clothing Stores", "Address": "4648 N 5th St", "LATITUDE": 40.022384, "LONGITUDE": -75.133854, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 48.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 44.0, "Total Spend": 458.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 137.5, "Median Spend per Customer": 137.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133854, 40.022384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "848 S 2nd St", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 62.0, "POI_CBG": 421010017001.0, "Median Dwell Time": 10.0, "Total Spend": 16996.0, "Total Transactions": 351.0, "Total Customers": 328.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-bp9", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "9910 Frankford Ave", "LATITUDE": 40.064931, "LONGITUDE": -74.985003, "DATE_RANGE_START": 2019, "Total Visits": 4039.0, "Total Visitors": 2119.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 17.0, "Total Spend": 472.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 41.83 }, "geometry": { "type": "Point", "coordinates": [ -74.985003, 40.064931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-mc5", "Name": "Wings & More", "Category": "Beer, Wine, and Liquor Stores", "Address": "900 Washington Ave", "LATITUDE": 39.935358, "LONGITUDE": -75.158798, "DATE_RANGE_START": 2019, "Total Visits": 190.0, "Total Visitors": 180.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 18.0, "Total Spend": 340.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 102.0, "Median Spend per Customer": 102.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158798, 39.935358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "Name": "Jomici Apothecary", "Category": "Health and Personal Care Stores", "Address": "273 S 15th St", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2019, "Total Visits": 503.0, "Total Visitors": 375.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 74.0, "Total Spend": 405.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 17.48, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-vvf", "Name": "Au Bon Pain", "Category": "Restaurants and Other Eating Places", "Address": "2951 Market St", "LATITUDE": 39.955579, "LONGITUDE": -75.182324, "DATE_RANGE_START": 2019, "Total Visits": 49490.0, "Total Visitors": 28237.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 24.0, "Total Spend": 120.0, "Total Transactions": 15.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 26.73 }, "geometry": { "type": "Point", "coordinates": [ -75.182324, 39.955579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1801 W Hunting Park Ave", "LATITUDE": 40.014555, "LONGITUDE": -75.15728, "DATE_RANGE_START": 2019, "Total Visits": 2715.0, "Total Visitors": 1877.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 4.0, "Total Spend": 16434.0, "Total Transactions": 813.0, "Total Customers": 516.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.62 }, "geometry": { "type": "Point", "coordinates": [ -75.15728, 40.014555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1516 Chestnut St", "LATITUDE": 39.950896, "LONGITUDE": -75.166342, "DATE_RANGE_START": 2019, "Total Visits": 585.0, "Total Visitors": 413.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 7269.0, "Total Transactions": 750.0, "Total Customers": 631.0, "Median Spend per Transaction": 9.28, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.166342, 39.950896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "Name": "Dancewear On Broad LLC", "Category": "Clothing Stores", "Address": "1129 S Broad St", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 2.0, "Total Spend": 931.0, "Total Transactions": 23.0, "Total Customers": 20.0, "Median Spend per Transaction": 31.14, "Median Spend per Customer": 36.32 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "Name": "Vic Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "2035 Sansom St", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2019, "Total Visits": 348.0, "Total Visitors": 283.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 89.0, "Total Spend": 7405.0, "Total Transactions": 228.0, "Total Customers": 205.0, "Median Spend per Transaction": 28.11, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "Name": "Martinez Grocery", "Category": "Grocery Stores", "Address": "2655 W Sterner St", "LATITUDE": 39.997199, "LONGITUDE": -75.175295, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010172022.0, "Median Dwell Time": 4.0, "Total Spend": 287.0, "Total Transactions": 27.0, "Total Customers": 23.0, "Median Spend per Transaction": 7.7, "Median Spend per Customer": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.175295, 39.997199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 Castor Ave", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2019, "Total Visits": 8965.0, "Total Visitors": 5427.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 22.0, "Total Spend": 222316.0, "Total Transactions": 4727.0, "Total Customers": 2577.0, "Median Spend per Transaction": 30.76, "Median Spend per Customer": 52.38 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-7t9", "Name": "Flowers Etcetera By Denise", "Category": "Florists", "Address": "637 N 2nd St", "LATITUDE": 39.961729, "LONGITUDE": -75.140942, "DATE_RANGE_START": 2019, "Total Visits": 202.0, "Total Visitors": 192.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1.0, "Total Spend": 272.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140942, 39.961729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm4-k2k", "Name": "Cellular 2000 LLC", "Category": "Electronics and Appliance Stores", "Address": "649 Washington Ave", "LATITUDE": 39.93569, "LONGITUDE": -75.155206, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 62.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 48.0, "Total Spend": 525.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 72.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155206, 39.93569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phc-r8v", "Name": "Sherwin-Williams", "Category": "Building Material and Supplies Dealers", "Address": "5058 City Ave", "LATITUDE": 39.998314, "LONGITUDE": -75.231577, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 53.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 13.0, "Total Spend": 98.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 29.51, "Median Spend per Customer": 29.51 }, "geometry": { "type": "Point", "coordinates": [ -75.231577, 39.998314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-cqz", "Name": "Tropical Smoothie Café", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St Ste 4", "LATITUDE": 39.977828, "LONGITUDE": -75.158485, "DATE_RANGE_START": 2019, "Total Visits": 1018.0, "Total Visitors": 843.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 61.0, "Total Spend": 19.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.66, "Median Spend per Customer": 5.66 }, "geometry": { "type": "Point", "coordinates": [ -75.158485, 39.977828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "Name": "Four Seasons Hotels and Resorts", "Category": "Traveler Accommodation", "Address": "1 N 19th St", "LATITUDE": 39.955061, "LONGITUDE": -75.170762, "DATE_RANGE_START": 2019, "Total Visits": 11542.0, "Total Visitors": 4349.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 317.0, "Total Spend": 3428.0, "Total Transactions": 107.0, "Total Customers": 92.0, "Median Spend per Transaction": 15.4, "Median Spend per Customer": 24.01 }, "geometry": { "type": "Point", "coordinates": [ -75.170762, 39.955061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pfy-vmk", "Name": "Triumph Motorcycles", "Category": "Other Motor Vehicle Dealers", "Address": "3901 Main Street", "LATITUDE": 40.019956, "LONGITUDE": -75.21517, "DATE_RANGE_START": 2019, "Total Visits": 215.0, "Total Visitors": 190.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 10.0, "Total Spend": 12993.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 1500.0, "Median Spend per Customer": 1500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21517, 40.019956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-8d9", "Name": "Moge Tee Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "1025 Arch St", "LATITUDE": 39.953994, "LONGITUDE": -75.157412, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 298.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 53.0, "Total Spend": 38.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 5.73, "Median Spend per Customer": 5.73 }, "geometry": { "type": "Point", "coordinates": [ -75.157412, 39.953994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-t5f", "Name": "Pho Viet", "Category": "Restaurants and Other Eating Places", "Address": "5520 Whitaker Ave", "LATITUDE": 40.035248, "LONGITUDE": -75.100976, "DATE_RANGE_START": 2019, "Total Visits": 235.0, "Total Visitors": 153.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 19.0, "Total Spend": 3101.0, "Total Transactions": 117.0, "Total Customers": 82.0, "Median Spend per Transaction": 26.25, "Median Spend per Customer": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100976, 40.035248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "Name": "Paradise Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1363 E Lycoming St", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 35.0, "POI_CBG": 421010190004.0, "Median Dwell Time": 1.0, "Total Spend": 492.0, "Total Transactions": 25.0, "Total Customers": 18.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 17.69 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pg8-grk", "Name": "Norris Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "2003 N 31st St # 05", "LATITUDE": 39.986859, "LONGITUDE": -75.183863, "DATE_RANGE_START": 2019, "Total Visits": 433.0, "Total Visitors": 255.0, "POI_CBG": 421010151023.0, "Median Dwell Time": 85.0, "Total Spend": 304.0, "Total Transactions": 20.0, "Total Customers": 15.0, "Median Spend per Transaction": 8.84, "Median Spend per Customer": 13.26 }, "geometry": { "type": "Point", "coordinates": [ -75.183863, 39.986859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p74-z75", "Name": "Seafood Bay Inc", "Category": "Restaurants and Other Eating Places", "Address": "8006 Frankford Ave", "LATITUDE": 40.041659, "LONGITUDE": -75.028001, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010331022.0, "Median Dwell Time": 1.0, "Total Spend": 344.0, "Total Transactions": 22.0, "Total Customers": 15.0, "Median Spend per Transaction": 11.46, "Median Spend per Customer": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.028001, 40.041659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnw-nt9", "Name": "Fishtown Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1301 Frankford Ave", "LATITUDE": 39.970532, "LONGITUDE": -75.134266, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 37.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 85.0, "Total Spend": 13801.0, "Total Transactions": 565.0, "Total Customers": 421.0, "Median Spend per Transaction": 18.64, "Median Spend per Customer": 23.64 }, "geometry": { "type": "Point", "coordinates": [ -75.134266, 39.970532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-k75", "Name": "Best Buy", "Category": "Electronics and Appliance Stores", "Address": "9733 Roosevelt Blvd", "LATITUDE": 40.082306, "LONGITUDE": -75.023635, "DATE_RANGE_START": 2019, "Total Visits": 1586.0, "Total Visitors": 1298.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 15.0, "Total Spend": 1817.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 41.03, "Median Spend per Customer": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.023635, 40.082306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8m-b8v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5807 Torresdale Ave", "LATITUDE": 40.016255, "LONGITUDE": -75.061394, "DATE_RANGE_START": 2019, "Total Visits": 463.0, "Total Visitors": 280.0, "POI_CBG": 421010321001.0, "Median Dwell Time": 18.0, "Total Spend": 1357.0, "Total Transactions": 158.0, "Total Customers": 95.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061394, 40.016255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-wkz", "Name": "Kelly's Cajun Grill", "Category": "Restaurants and Other Eating Places", "Address": "1835 Franklin Mills Cir", "LATITUDE": 40.088195, "LONGITUDE": -74.961933, "DATE_RANGE_START": 2019, "Total Visits": 1153.0, "Total Visitors": 958.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 22.0, "Total Spend": 466.0, "Total Transactions": 43.0, "Total Customers": 37.0, "Median Spend per Transaction": 10.02, "Median Spend per Customer": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -74.961933, 40.088195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "575 Adams Ave", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2019, "Total Visits": 501.0, "Total Visitors": 460.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 24.0, "Total Spend": 8963.0, "Total Transactions": 296.0, "Total Customers": 265.0, "Median Spend per Transaction": 25.79, "Median Spend per Customer": 29.11 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "Name": "Love Vape", "Category": "Other Miscellaneous Store Retailers", "Address": "608 S 5th St", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2019, "Total Visits": 240.0, "Total Visitors": 187.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 176.0, "Total Spend": 4467.0, "Total Transactions": 153.0, "Total Customers": 107.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7265 Castor Ave", "LATITUDE": 40.050926, "LONGITUDE": -75.066019, "DATE_RANGE_START": 2019, "Total Visits": 2897.0, "Total Visitors": 1926.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 4.0, "Total Spend": 719.0, "Total Transactions": 28.0, "Total Customers": 20.0, "Median Spend per Transaction": 26.15, "Median Spend per Customer": 26.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066019, 40.050926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3230 Richmond St", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2019, "Total Visits": 766.0, "Total Visitors": 535.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 4.0, "Total Spend": 19348.0, "Total Transactions": 2031.0, "Total Customers": 941.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 10.97 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-qzz", "Name": "Umai", "Category": "Restaurants and Other Eating Places", "Address": "1840 South St", "LATITUDE": 39.944367, "LONGITUDE": -75.173187, "DATE_RANGE_START": 2019, "Total Visits": 197.0, "Total Visitors": 142.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 71.0, "Total Spend": 438.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 41.06, "Median Spend per Customer": 41.06 }, "geometry": { "type": "Point", "coordinates": [ -75.173187, 39.944367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kcq", "Name": "Tselaine", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1927 Walnut St", "LATITUDE": 39.950645, "LONGITUDE": -75.173695, "DATE_RANGE_START": 2019, "Total Visits": 3147.0, "Total Visitors": 2305.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 35.0, "Total Spend": 1874.0, "Total Transactions": 40.0, "Total Customers": 38.0, "Median Spend per Transaction": 30.66, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.173695, 39.950645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-snq", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "1501 Locust St", "LATITUDE": 39.948548, "LONGITUDE": -75.166465, "DATE_RANGE_START": 2019, "Total Visits": 20500.0, "Total Visitors": 10934.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 70.0, "Total Spend": 1129.0, "Total Transactions": 190.0, "Total Customers": 180.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 5.53 }, "geometry": { "type": "Point", "coordinates": [ -75.166465, 39.948548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8d-bzf", "Name": "Bridesburg Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4254 Richmond St", "LATITUDE": 39.995886, "LONGITUDE": -75.076645, "DATE_RANGE_START": 2019, "Total Visits": 160.0, "Total Visitors": 63.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 288.0, "Total Spend": 217.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 59.0, "Median Spend per Customer": 59.0 }, "geometry": { "type": "Point", "coordinates": [ -75.076645, 39.995886 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vxq", "Name": "Liberty Bell Bicycle", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1901 S 13th St", "LATITUDE": 39.926446, "LONGITUDE": -75.166883, "DATE_RANGE_START": 2019, "Total Visits": 565.0, "Total Visitors": 280.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 436.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.79, "Median Spend per Customer": 7.79 }, "geometry": { "type": "Point", "coordinates": [ -75.166883, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "Name": "J & P Seafood", "Category": "Restaurants and Other Eating Places", "Address": "4820 Spruce St", "LATITUDE": 39.953491, "LONGITUDE": -75.218951, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 100.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 9.0, "Total Spend": 1313.0, "Total Transactions": 25.0, "Total Customers": 23.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 21.13 }, "geometry": { "type": "Point", "coordinates": [ -75.218951, 39.953491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@628-pmf-mrk", "Name": "Bain's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St", "LATITUDE": 39.952412, "LONGITUDE": -75.168016, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 102.0, "Total Spend": 1557.0, "Total Transactions": 170.0, "Total Customers": 138.0, "Median Spend per Transaction": 8.91, "Median Spend per Customer": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168016, 39.952412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgy-kj9", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "701 E Cathedral Rd Ste 7", "LATITUDE": 40.062824, "LONGITUDE": -75.237514, "DATE_RANGE_START": 2019, "Total Visits": 560.0, "Total Visitors": 383.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 69.0, "Total Spend": 7735.0, "Total Transactions": 118.0, "Total Customers": 102.0, "Median Spend per Transaction": 48.19, "Median Spend per Customer": 49.59 }, "geometry": { "type": "Point", "coordinates": [ -75.237514, 40.062824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "Name": "Buffalo Wild Wings", "Category": "Restaurants and Other Eating Places", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.082615, "LONGITUDE": -75.025718, "DATE_RANGE_START": 2019, "Total Visits": 2592.0, "Total Visitors": 2244.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 33.0, "Total Spend": 19988.0, "Total Transactions": 535.0, "Total Customers": 480.0, "Median Spend per Transaction": 32.68, "Median Spend per Customer": 34.74 }, "geometry": { "type": "Point", "coordinates": [ -75.025718, 40.082615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pmf-jgk", "Name": "Abe Fisher", "Category": "Restaurants and Other Eating Places", "Address": "1623 Sansom St", "LATITUDE": 39.950786, "LONGITUDE": -75.168347, "DATE_RANGE_START": 2019, "Total Visits": 1019.0, "Total Visitors": 708.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 51.0, "Total Spend": 13826.0, "Total Transactions": 110.0, "Total Customers": 107.0, "Median Spend per Transaction": 121.34, "Median Spend per Customer": 118.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168347, 39.950786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w49", "Name": "Sam Ash Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1887 Franklin Mills Cir", "LATITUDE": 40.087105, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2019, "Total Visits": 263.0, "Total Visitors": 225.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 8860.0, "Total Transactions": 130.0, "Total Customers": 120.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 24.94 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "Name": "Yakitori Boy", "Category": "Restaurants and Other Eating Places", "Address": "211 N 11th St", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2019, "Total Visits": 295.0, "Total Visitors": 243.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 59.0, "Total Spend": 25887.0, "Total Transactions": 501.0, "Total Customers": 433.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 37.93 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "Name": "Pat's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "12317 Academy Rd", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 123.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 6224.0, "Total Transactions": 411.0, "Total Customers": 338.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-btv", "Name": "Kraftwork", "Category": "Restaurants and Other Eating Places", "Address": "541 E Girard Ave", "LATITUDE": 39.971499, "LONGITUDE": -75.127358, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 48.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 16.0, "Total Spend": 15977.0, "Total Transactions": 388.0, "Total Customers": 315.0, "Median Spend per Transaction": 35.95, "Median Spend per Customer": 40.88 }, "geometry": { "type": "Point", "coordinates": [ -75.127358, 39.971499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "Name": "La Rosa Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2106 S Broad St", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 67.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 3.0, "Total Spend": 823.0, "Total Transactions": 73.0, "Total Customers": 68.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-2tv", "Name": "Tacony Latin Flavor", "Category": "Restaurants and Other Eating Places", "Address": "6300 Torresdale Ave Fl 1", "LATITUDE": 40.020803, "LONGITUDE": -75.053805, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010323002.0, "Median Dwell Time": 1.0, "Total Spend": 1022.0, "Total Transactions": 15.0, "Total Customers": 12.0, "Median Spend per Transaction": 48.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.053805, 40.020803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-66k", "Name": "Oloroso", "Category": "Restaurants and Other Eating Places", "Address": "1121 Walnut St", "LATITUDE": 39.948946, "LONGITUDE": -75.159995, "DATE_RANGE_START": 2019, "Total Visits": 4531.0, "Total Visitors": 3050.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 87.0, "Total Spend": 4554.0, "Total Transactions": 57.0, "Total Customers": 57.0, "Median Spend per Transaction": 71.3, "Median Spend per Customer": 71.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159995, 39.948946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "Name": "Lets Grub", "Category": "Restaurants and Other Eating Places", "Address": "4040 Lancaster Ave", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2019, "Total Visits": 72.0, "Total Visitors": 65.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 16.0, "Total Spend": 482.0, "Total Transactions": 32.0, "Total Customers": 27.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8j-bkz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7310 Frankford Ave # 14", "LATITUDE": 40.037321, "LONGITUDE": -75.040337, "DATE_RANGE_START": 2019, "Total Visits": 410.0, "Total Visitors": 313.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 6.0, "Total Spend": 1809.0, "Total Transactions": 210.0, "Total Customers": 128.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.040337, 40.037321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "Name": "Dollar Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7578 Haverford Ave", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2019, "Total Visits": 316.0, "Total Visitors": 258.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 16.0, "Total Spend": 4454.0, "Total Transactions": 87.0, "Total Customers": 83.0, "Median Spend per Transaction": 18.95, "Median Spend per Customer": 19.63 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6201 N Front St", "LATITUDE": 40.045678, "LONGITUDE": -75.11816, "DATE_RANGE_START": 2019, "Total Visits": 303.0, "Total Visitors": 230.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 5.0, "Total Spend": 3458.0, "Total Transactions": 330.0, "Total Customers": 235.0, "Median Spend per Transaction": 7.71, "Median Spend per Customer": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.11816, 40.045678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-zs5", "Name": "Golden Triangle", "Category": "Restaurants and Other Eating Places", "Address": "610 S 5th St", "LATITUDE": 39.94154, "LONGITUDE": -75.15097, "DATE_RANGE_START": 2019, "Total Visits": 215.0, "Total Visitors": 150.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 357.0, "Total Spend": 2896.0, "Total Transactions": 135.0, "Total Customers": 87.0, "Median Spend per Transaction": 18.12, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15097, 39.94154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "Name": "Amada", "Category": "Restaurants and Other Eating Places", "Address": "217 Chestnut St", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 175.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 64.0, "Total Spend": 26901.0, "Total Transactions": 298.0, "Total Customers": 277.0, "Median Spend per Transaction": 72.06, "Median Spend per Customer": 75.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-t7q", "Name": "Maria's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4058 N 5th St", "LATITUDE": 40.013401, "LONGITUDE": -75.135844, "DATE_RANGE_START": 2019, "Total Visits": 123.0, "Total Visitors": 92.0, "POI_CBG": 421010197002.0, "Median Dwell Time": 12.0, "Total Spend": 592.0, "Total Transactions": 35.0, "Total Customers": 25.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 26.46 }, "geometry": { "type": "Point", "coordinates": [ -75.135844, 40.013401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2290 W Oregon Ave", "LATITUDE": 39.91709, "LONGITUDE": -75.185434, "DATE_RANGE_START": 2019, "Total Visits": 270.0, "Total Visitors": 217.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 10.0, "Total Spend": 5612.0, "Total Transactions": 185.0, "Total Customers": 158.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 16.59 }, "geometry": { "type": "Point", "coordinates": [ -75.185434, 39.91709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "Name": "Colonial Pizza", "Category": "Restaurants and Other Eating Places", "Address": "400 S 43rd St", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 48.0, "POI_CBG": 421010087011.0, "Median Dwell Time": 20.0, "Total Spend": 3447.0, "Total Transactions": 220.0, "Total Customers": 133.0, "Median Spend per Transaction": 13.94, "Median Spend per Customer": 19.66 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-jjv", "Name": "Copabanana", "Category": "Restaurants and Other Eating Places", "Address": "4000 Spruce St", "LATITUDE": 39.951555, "LONGITUDE": -75.203266, "DATE_RANGE_START": 2019, "Total Visits": 465.0, "Total Visitors": 376.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 58.0, "Total Spend": 37159.0, "Total Transactions": 958.0, "Total Customers": 860.0, "Median Spend per Transaction": 31.23, "Median Spend per Customer": 33.02 }, "geometry": { "type": "Point", "coordinates": [ -75.203266, 39.951555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2034 N Broad St", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2019, "Total Visits": 949.0, "Total Visitors": 681.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 5.0, "Total Spend": 1956.0, "Total Transactions": 267.0, "Total Customers": 158.0, "Median Spend per Transaction": 5.15, "Median Spend per Customer": 7.08 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3901 Aramingo Ave", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2019, "Total Visits": 803.0, "Total Visitors": 621.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 3.0, "Total Spend": 12375.0, "Total Transactions": 650.0, "Total Customers": 403.0, "Median Spend per Transaction": 10.02, "Median Spend per Customer": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "Name": "Circle Thrift", "Category": "Used Merchandise Stores", "Address": "2233 Frankford Ave", "LATITUDE": 39.980269, "LONGITUDE": -75.128616, "DATE_RANGE_START": 2019, "Total Visits": 683.0, "Total Visitors": 343.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 188.0, "Total Spend": 5404.0, "Total Transactions": 405.0, "Total Customers": 330.0, "Median Spend per Transaction": 8.83, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128616, 39.980269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-qcq", "Name": "Grilly Cheese", "Category": "Restaurants and Other Eating Places", "Address": "1400 Fitzwater St", "LATITUDE": 39.941662, "LONGITUDE": -75.166242, "DATE_RANGE_START": 2019, "Total Visits": 586.0, "Total Visitors": 421.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 73.0, "Total Spend": 36.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.93, "Median Spend per Customer": 10.93 }, "geometry": { "type": "Point", "coordinates": [ -75.166242, 39.941662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pm6-f2k", "Name": "Bobs Food Market", "Category": "Specialty Food Stores", "Address": "2200 S 3rd St", "LATITUDE": 39.920704, "LONGITUDE": -75.15184, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 62.0, "POI_CBG": 421010042012.0, "Median Dwell Time": 2.0, "Total Spend": 468.0, "Total Transactions": 80.0, "Total Customers": 23.0, "Median Spend per Transaction": 5.2, "Median Spend per Customer": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.15184, 39.920704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2025 S Broad St", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2019, "Total Visits": 2560.0, "Total Visitors": 1456.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 14.0, "Total Spend": 12939.0, "Total Transactions": 3093.0, "Total Customers": 1286.0, "Median Spend per Transaction": 3.45, "Median Spend per Customer": 5.16 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-cyv", "Name": "El Provocon", "Category": "Restaurants and Other Eating Places", "Address": "2843 Tyson Ave", "LATITUDE": 40.039466, "LONGITUDE": -75.056309, "DATE_RANGE_START": 2019, "Total Visits": 295.0, "Total Visitors": 197.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 7.0, "Total Spend": 2081.0, "Total Transactions": 147.0, "Total Customers": 82.0, "Median Spend per Transaction": 12.36, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056309, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pjk-3nq", "Name": "Pina's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8919 Ridge Ave", "LATITUDE": 40.069435, "LONGITUDE": -75.239981, "DATE_RANGE_START": 2019, "Total Visits": 610.0, "Total Visitors": 415.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 38.0, "Total Spend": 2297.0, "Total Transactions": 118.0, "Total Customers": 92.0, "Median Spend per Transaction": 18.5, "Median Spend per Customer": 23.85 }, "geometry": { "type": "Point", "coordinates": [ -75.239981, 40.069435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6602 Frankford Ave @ Magee Avenue", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 122.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 7.0, "Total Spend": 1044.0, "Total Transactions": 72.0, "Total Customers": 63.0, "Median Spend per Transaction": 11.06, "Median Spend per Customer": 11.81 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm9-yd9", "Name": "Famous 4th Street Delicatessen", "Category": "Restaurants and Other Eating Places", "Address": "700 S 4th St", "LATITUDE": 39.940489, "LONGITUDE": -75.149633, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 170.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 44.0, "Total Spend": 18754.0, "Total Transactions": 561.0, "Total Customers": 441.0, "Median Spend per Transaction": 26.19, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149633, 39.940489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9p-pvz", "Name": "Da Franco Pizzeria & Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "742 Red Lion Rd", "LATITUDE": 40.105135, "LONGITUDE": -75.033737, "DATE_RANGE_START": 2019, "Total Visits": 666.0, "Total Visitors": 438.0, "POI_CBG": 421010356022.0, "Median Dwell Time": 45.0, "Total Spend": 584.0, "Total Transactions": 28.0, "Total Customers": 22.0, "Median Spend per Transaction": 13.45, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.033737, 40.105135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phz-s89", "Name": "Torres Food Market", "Category": "Grocery Stores", "Address": "1872 E Schiller St", "LATITUDE": 39.998232, "LONGITUDE": -75.106593, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 25.0, "POI_CBG": 421010188007.0, "Median Dwell Time": 11.0, "Total Spend": 1498.0, "Total Transactions": 183.0, "Total Customers": 110.0, "Median Spend per Transaction": 7.14, "Median Spend per Customer": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.106593, 39.998232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "7700 City Ave", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2019, "Total Visits": 700.0, "Total Visitors": 621.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 7.0, "Total Spend": 81.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 18.37 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-bhq", "Name": "Lloyd Whiskey Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "529 E Girard Ave", "LATITUDE": 39.971373, "LONGITUDE": -75.127654, "DATE_RANGE_START": 2019, "Total Visits": 440.0, "Total Visitors": 292.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 52.0, "Total Spend": 10598.0, "Total Transactions": 223.0, "Total Customers": 182.0, "Median Spend per Transaction": 34.1, "Median Spend per Customer": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.127654, 39.971373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2801 Cottman Ave", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2019, "Total Visits": 801.0, "Total Visitors": 710.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 5.0, "Total Spend": 11052.0, "Total Transactions": 1148.0, "Total Customers": 901.0, "Median Spend per Transaction": 7.95, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "Name": "Apricot Stone", "Category": "Restaurants and Other Eating Places", "Address": "1040 N American St Ste 601", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 103.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 43.0, "Total Spend": 4479.0, "Total Transactions": 90.0, "Total Customers": 83.0, "Median Spend per Transaction": 42.26, "Median Spend per Customer": 44.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-w8v", "Name": "Friday Saturday Sunday", "Category": "Restaurants and Other Eating Places", "Address": "261 S 21st St", "LATITUDE": 39.948822, "LONGITUDE": -75.175905, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 52.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 93.0, "Total Spend": 21254.0, "Total Transactions": 193.0, "Total Customers": 153.0, "Median Spend per Transaction": 71.77, "Median Spend per Customer": 107.36 }, "geometry": { "type": "Point", "coordinates": [ -75.175905, 39.948822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pg2-hdv", "Name": "Trattoria Moma", "Category": "Restaurants and Other Eating Places", "Address": "7131 Germantown Ave", "LATITUDE": 40.059314, "LONGITUDE": -75.190082, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 47.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 46.0, "Total Spend": 2003.0, "Total Transactions": 25.0, "Total Customers": 25.0, "Median Spend per Transaction": 62.92, "Median Spend per Customer": 62.92 }, "geometry": { "type": "Point", "coordinates": [ -75.190082, 40.059314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "Name": "Milkcrate Cafe", "Category": "Restaurants and Other Eating Places", "Address": "400 E Girard Ave", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2019, "Total Visits": 405.0, "Total Visitors": 267.0, "POI_CBG": 421010143002.0, "Median Dwell Time": 52.0, "Total Spend": 13904.0, "Total Transactions": 1136.0, "Total Customers": 545.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "Name": "Miller's Ale House", "Category": "Restaurants and Other Eating Places", "Address": "9495 Roosevelt Blvd", "LATITUDE": 40.079795, "LONGITUDE": -75.028682, "DATE_RANGE_START": 2019, "Total Visits": 1789.0, "Total Visitors": 1453.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 59.0, "Total Spend": 48190.0, "Total Transactions": 1189.0, "Total Customers": 1016.0, "Median Spend per Transaction": 35.76, "Median Spend per Customer": 40.33 }, "geometry": { "type": "Point", "coordinates": [ -75.028682, 40.079795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-kvf", "Name": "The Wellness Refinery", "Category": "Restaurants and Other Eating Places", "Address": "216 Church St", "LATITUDE": 39.950375, "LONGITUDE": -75.144624, "DATE_RANGE_START": 2019, "Total Visits": 2252.0, "Total Visitors": 1754.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 2997.0, "Total Transactions": 167.0, "Total Customers": 128.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144624, 39.950375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pjg-qcq", "Name": "DanceFit Chestnut Hill", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "98 Bethlehem Pike", "LATITUDE": 40.08043, "LONGITUDE": -75.207859, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 22.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 283.0, "Total Spend": 758.0, "Total Transactions": 38.0, "Total Customers": 30.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 21.13 }, "geometry": { "type": "Point", "coordinates": [ -75.207859, 40.08043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-r6k", "Name": "United Buffet", "Category": "Restaurants and Other Eating Places", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029584, "LONGITUDE": -75.100403, "DATE_RANGE_START": 2019, "Total Visits": 1421.0, "Total Visitors": 1296.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 41.0, "Total Spend": 15568.0, "Total Transactions": 436.0, "Total Customers": 363.0, "Median Spend per Transaction": 31.29, "Median Spend per Customer": 35.38 }, "geometry": { "type": "Point", "coordinates": [ -75.100403, 40.029584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "Name": "Warwick Hotel Rittenhouse Square", "Category": "Traveler Accommodation", "Address": "220 S 17th St", "LATITUDE": 39.949172, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2019, "Total Visits": 3761.0, "Total Visitors": 2350.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 242.0, "Total Spend": 2543.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 194.48, "Median Spend per Customer": 194.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.949172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "Name": "Sunny Side Diner", "Category": "Restaurants and Other Eating Places", "Address": "5948 Market St", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 265.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 5.0, "Total Spend": 681.0, "Total Transactions": 40.0, "Total Customers": 35.0, "Median Spend per Transaction": 13.93, "Median Spend per Customer": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-vxq", "Name": "Jersey Mike's", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955112, "LONGITUDE": -75.18233, "DATE_RANGE_START": 2019, "Total Visits": 511.0, "Total Visitors": 438.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 12.0, "Total Spend": 11374.0, "Total Transactions": 984.0, "Total Customers": 850.0, "Median Spend per Transaction": 11.1, "Median Spend per Customer": 11.52 }, "geometry": { "type": "Point", "coordinates": [ -75.18233, 39.955112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgj-2ff", "Name": "Pita & Co", "Category": "Restaurants and Other Eating Places", "Address": "1755 N 13th St", "LATITUDE": 39.979339, "LONGITUDE": -75.155043, "DATE_RANGE_START": 2019, "Total Visits": 3425.0, "Total Visitors": 1964.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 121.0, "Total Spend": 350.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 105.0, "Median Spend per Customer": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155043, 39.979339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phy-wx5", "Name": "Brother's Pizza House II", "Category": "Restaurants and Other Eating Places", "Address": "4948 Rising Sun Ave", "LATITUDE": 40.026513, "LONGITUDE": -75.12182, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 95.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 5.0, "Total Spend": 141.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 16.69, "Median Spend per Customer": 16.69 }, "geometry": { "type": "Point", "coordinates": [ -75.12182, 40.026513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "1708 N Broad St", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2019, "Total Visits": 613.0, "Total Visitors": 433.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 21.0, "Total Spend": 149.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 8.49, "Median Spend per Customer": 10.58 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rp9", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2308 W Oregon Ave", "LATITUDE": 39.917838, "LONGITUDE": -75.186989, "DATE_RANGE_START": 2019, "Total Visits": 105.0, "Total Visitors": 100.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 23.0, "Total Spend": 6422.0, "Total Transactions": 268.0, "Total Customers": 222.0, "Median Spend per Transaction": 22.21, "Median Spend per Customer": 25.14 }, "geometry": { "type": "Point", "coordinates": [ -75.186989, 39.917838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "Name": "Melograno", "Category": "Restaurants and Other Eating Places", "Address": "2012 Sansom St", "LATITUDE": 39.951247, "LONGITUDE": -75.174115, "DATE_RANGE_START": 2019, "Total Visits": 175.0, "Total Visitors": 140.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 41.0, "Total Spend": 452.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 62.22, "Median Spend per Customer": 62.22 }, "geometry": { "type": "Point", "coordinates": [ -75.174115, 39.951247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5pv", "Name": "Hard Rock Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1113 Market St", "LATITUDE": 39.952216, "LONGITUDE": -75.159642, "DATE_RANGE_START": 2019, "Total Visits": 1692.0, "Total Visitors": 1324.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 85.0, "Total Spend": 32368.0, "Total Transactions": 601.0, "Total Customers": 526.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 39.46 }, "geometry": { "type": "Point", "coordinates": [ -75.159642, 39.952216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "Name": "Kohl's", "Category": "Department Stores", "Address": "8500 Henry Ave", "LATITUDE": 40.062537, "LONGITUDE": -75.235162, "DATE_RANGE_START": 2019, "Total Visits": 1546.0, "Total Visitors": 1173.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 22.0, "Total Spend": 49145.0, "Total Transactions": 885.0, "Total Customers": 711.0, "Median Spend per Transaction": 40.79, "Median Spend per Customer": 47.25 }, "geometry": { "type": "Point", "coordinates": [ -75.235162, 40.062537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p8d-rp9", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2200 Wheatsheaf Ln", "LATITUDE": 39.998893, "LONGITUDE": -75.091892, "DATE_RANGE_START": 2019, "Total Visits": 11232.0, "Total Visitors": 6856.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 21.0, "Total Spend": 218372.0, "Total Transactions": 4639.0, "Total Customers": 2920.0, "Median Spend per Transaction": 28.16, "Median Spend per Customer": 40.59 }, "geometry": { "type": "Point", "coordinates": [ -75.091892, 39.998893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-t5f", "Name": "B N B Cigars", "Category": "Other Miscellaneous Store Retailers", "Address": "7920 Germantown Ave", "LATITUDE": 40.069906, "LONGITUDE": -75.200386, "DATE_RANGE_START": 2019, "Total Visits": 47.0, "Total Visitors": 40.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 63.0, "Total Spend": 3450.0, "Total Transactions": 100.0, "Total Customers": 65.0, "Median Spend per Transaction": 21.49, "Median Spend per Customer": 28.77 }, "geometry": { "type": "Point", "coordinates": [ -75.200386, 40.069906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4200 G St", "LATITUDE": 40.012396, "LONGITUDE": -75.112446, "DATE_RANGE_START": 2019, "Total Visits": 205.0, "Total Visitors": 162.0, "POI_CBG": 421010289012.0, "Median Dwell Time": 4.0, "Total Spend": 10771.0, "Total Transactions": 606.0, "Total Customers": 346.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112446, 40.012396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p8m-syv", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1607 Bridge St", "LATITUDE": 40.02299, "LONGITUDE": -75.075925, "DATE_RANGE_START": 2019, "Total Visits": 1552.0, "Total Visitors": 1018.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 8.0, "Total Spend": 2749.0, "Total Transactions": 203.0, "Total Customers": 95.0, "Median Spend per Transaction": 6.22, "Median Spend per Customer": 16.09 }, "geometry": { "type": "Point", "coordinates": [ -75.075925, 40.02299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "Name": "Platinum", "Category": "Clothing Stores", "Address": "526 South St", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2019, "Total Visits": 170.0, "Total Visitors": 162.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 34.0, "Total Spend": 3145.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 150.0, "Median Spend per Customer": 194.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1420 Cecil B Moore Ave", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2019, "Total Visits": 2693.0, "Total Visitors": 1854.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 20.0, "Total Spend": 16262.0, "Total Transactions": 3496.0, "Total Customers": 1719.0, "Median Spend per Transaction": 3.97, "Median Spend per Customer": 6.35 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "331 S 22nd St", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 85.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 482.0, "Total Spend": 1433.0, "Total Transactions": 205.0, "Total Customers": 150.0, "Median Spend per Transaction": 5.86, "Median Spend per Customer": 7.52 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj3-cbk", "Name": "Furniture Mecca", "Category": "Furniture Stores", "Address": "1430 W Hunting Park Ave", "LATITUDE": 40.016794, "LONGITUDE": -75.150696, "DATE_RANGE_START": 2019, "Total Visits": 2169.0, "Total Visitors": 1552.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 7.0, "Total Spend": 461.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 138.26, "Median Spend per Customer": 138.26 }, "geometry": { "type": "Point", "coordinates": [ -75.150696, 40.016794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-p75-9cq", "Name": "Deals", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8290 Frankford Ave", "LATITUDE": 40.043742, "LONGITUDE": -75.019324, "DATE_RANGE_START": 2019, "Total Visits": 3468.0, "Total Visitors": 2100.0, "POI_CBG": 421019802001.0, "Median Dwell Time": 1.0, "Total Spend": 18.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.54, "Median Spend per Customer": 5.54 }, "geometry": { "type": "Point", "coordinates": [ -75.019324, 40.043742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-d7q", "Name": "Alex's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "400 Leverington Ave", "LATITUDE": 40.034052, "LONGITUDE": -75.220933, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010213001.0, "Median Dwell Time": null, "Total Spend": 2769.0, "Total Transactions": 155.0, "Total Customers": 108.0, "Median Spend per Transaction": 17.54, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.220933, 40.034052 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwb-pvz", "Name": "TMK Produce", "Category": "Grocery Stores", "Address": "6700 Essington Ave Unit A1A6", "LATITUDE": 39.91064, "LONGITUDE": -75.220471, "DATE_RANGE_START": 2019, "Total Visits": 528.0, "Total Visitors": 228.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 56.0, "Total Spend": 3947.0, "Total Transactions": 295.0, "Total Customers": 247.0, "Median Spend per Transaction": 7.33, "Median Spend per Customer": 8.02 }, "geometry": { "type": "Point", "coordinates": [ -75.220471, 39.91064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "Name": "VaporFi", "Category": "Other Miscellaneous Store Retailers", "Address": "1240 South St Unit B", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2019, "Total Visits": 2054.0, "Total Visitors": 1371.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 125.0, "Total Spend": 2743.0, "Total Transactions": 42.0, "Total Customers": 35.0, "Median Spend per Transaction": 52.86, "Median Spend per Customer": 53.89 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pnw-m6k", "Name": "GIANT Heirloom Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "1004 N 2nd St", "LATITUDE": 39.966473, "LONGITUDE": -75.140367, "DATE_RANGE_START": 2019, "Total Visits": 478.0, "Total Visitors": 293.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 96.0, "Total Spend": 159.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 23.68, "Median Spend per Customer": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.140367, 39.966473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-tjv", "Name": "Children's Hospital Of Philadelphia", "Category": "Health and Personal Care Stores", "Address": "3401 Civic Center Blvd", "LATITUDE": 39.94747, "LONGITUDE": -75.195382, "DATE_RANGE_START": 2019, "Total Visits": 4559.0, "Total Visitors": 1924.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 268.0, "Total Spend": 1894.0, "Total Transactions": 343.0, "Total Customers": 313.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195382, 39.94747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6900 Lindbergh Blvd", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2019, "Total Visits": 545.0, "Total Visitors": 418.0, "POI_CBG": 421010061001.0, "Median Dwell Time": 6.0, "Total Spend": 1516.0, "Total Transactions": 83.0, "Total Customers": 72.0, "Median Spend per Transaction": 14.09, "Median Spend per Customer": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-p8f-9pv", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "4454 Penn St", "LATITUDE": 40.014668, "LONGITUDE": -75.088538, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 302.0, "Total Spend": 1889.0, "Total Transactions": 195.0, "Total Customers": 188.0, "Median Spend per Transaction": 7.98, "Median Spend per Customer": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.088538, 40.014668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7520 City Ave", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2019, "Total Visits": 2046.0, "Total Visitors": 1408.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 6.0, "Total Spend": 9010.0, "Total Transactions": 380.0, "Total Customers": 277.0, "Median Spend per Transaction": 18.36, "Median Spend per Customer": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-3dv", "Name": "Sheraton Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "3549 Chestnut St", "LATITUDE": 39.95502, "LONGITUDE": -75.193986, "DATE_RANGE_START": 2019, "Total Visits": 3518.0, "Total Visitors": 1869.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 423.0, "Total Spend": 2047.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 118.21, "Median Spend per Customer": 166.41 }, "geometry": { "type": "Point", "coordinates": [ -75.193986, 39.95502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "Name": "Le Meridien", "Category": "Traveler Accommodation", "Address": "1421 Arch St", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2019, "Total Visits": 2499.0, "Total Visitors": 1388.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 300.0, "Total Spend": 36397.0, "Total Transactions": 222.0, "Total Customers": 187.0, "Median Spend per Transaction": 70.86, "Median Spend per Customer": 90.68 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "Name": "Evo Brickoven Pizza", "Category": "Restaurants and Other Eating Places", "Address": "277 W Mount Pleasant Ave", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 53.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 17.0, "Total Spend": 3300.0, "Total Transactions": 147.0, "Total Customers": 112.0, "Median Spend per Transaction": 19.92, "Median Spend per Customer": 20.27 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "Name": "Local 44", "Category": "Restaurants and Other Eating Places", "Address": "4333 Spruce St", "LATITUDE": 39.952832, "LONGITUDE": -75.210325, "DATE_RANGE_START": 2019, "Total Visits": 708.0, "Total Visitors": 415.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 219.0, "Total Spend": 22204.0, "Total Transactions": 658.0, "Total Customers": 470.0, "Median Spend per Transaction": 27.88, "Median Spend per Customer": 35.06 }, "geometry": { "type": "Point", "coordinates": [ -75.210325, 39.952832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phk-yvz", "Name": "Gogi BBQ", "Category": "Restaurants and Other Eating Places", "Address": "6783 N 5th St", "LATITUDE": 40.054866, "LONGITUDE": -75.125965, "DATE_RANGE_START": 2019, "Total Visits": 202.0, "Total Visitors": 157.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 79.0, "Total Spend": 3881.0, "Total Transactions": 57.0, "Total Customers": 55.0, "Median Spend per Transaction": 60.03, "Median Spend per Customer": 64.64 }, "geometry": { "type": "Point", "coordinates": [ -75.125965, 40.054866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm6-fj9", "Name": "Anthony's Saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2351 S Front St", "LATITUDE": 39.917977, "LONGITUDE": -75.148931, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 27.0, "POI_CBG": 421010042021.0, "Median Dwell Time": 181.0, "Total Spend": 1527.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 371.74, "Median Spend per Customer": 458.42 }, "geometry": { "type": "Point", "coordinates": [ -75.148931, 39.917977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "Name": "Rustica", "Category": "Restaurants and Other Eating Places", "Address": "903 N 2nd St", "LATITUDE": 39.964423, "LONGITUDE": -75.140069, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 250.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 41.0, "Total Spend": 5659.0, "Total Transactions": 278.0, "Total Customers": 217.0, "Median Spend per Transaction": 16.1, "Median Spend per Customer": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.140069, 39.964423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-nt9", "Name": "Seven Arts Framing", "Category": "Home Furnishings Stores", "Address": "255 N 3rd St", "LATITUDE": 39.955549, "LONGITUDE": -75.144273, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 53.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 244.0, "Total Spend": 5145.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 192.63, "Median Spend per Customer": 241.06 }, "geometry": { "type": "Point", "coordinates": [ -75.144273, 39.955549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "256-222@628-pm4-nqz", "Name": "Saloon Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "750 S 7th St", "LATITUDE": 39.939873, "LONGITUDE": -75.154572, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010018001.0, "Median Dwell Time": 59.0, "Total Spend": 259.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 77.74, "Median Spend per Customer": 77.74 }, "geometry": { "type": "Point", "coordinates": [ -75.154572, 39.939873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "501 Franklin Mills Cir", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2019, "Total Visits": 921.0, "Total Visitors": 776.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 8.0, "Total Spend": 12192.0, "Total Transactions": 1334.0, "Total Customers": 878.0, "Median Spend per Transaction": 7.52, "Median Spend per Customer": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-sbk", "Name": "Howl At The Moon Philadelphia", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "258 S 15th St", "LATITUDE": 39.947729, "LONGITUDE": -75.166598, "DATE_RANGE_START": 2019, "Total Visits": 715.0, "Total Visitors": 483.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 73.0, "Total Spend": 54221.0, "Total Transactions": 2192.0, "Total Customers": 1291.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166598, 39.947729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zvf", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "2906 N Broad St # 08", "LATITUDE": 39.997217, "LONGITUDE": -75.154386, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 5.0, "Total Spend": 159.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 47.86, "Median Spend per Customer": 47.86 }, "geometry": { "type": "Point", "coordinates": [ -75.154386, 39.997217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "Name": "Luigi's Pizza Fresca", "Category": "Restaurants and Other Eating Places", "Address": "2401 Fairmount Ave", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2019, "Total Visits": 583.0, "Total Visitors": 451.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 15.0, "Total Spend": 1668.0, "Total Transactions": 90.0, "Total Customers": 58.0, "Median Spend per Transaction": 14.68, "Median Spend per Customer": 23.33 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "Name": "CLo", "Category": "Shoe Stores", "Address": "3511 N Lee St", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010195022.0, "Median Dwell Time": 9.0, "Total Spend": 14425.0, "Total Transactions": 548.0, "Total Customers": 348.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "Name": "Kei Sushi Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1711 South St", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 58.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 55.0, "Total Spend": 7913.0, "Total Transactions": 190.0, "Total Customers": 158.0, "Median Spend per Transaction": 31.35, "Median Spend per Customer": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-kmk", "Name": "Philly Sunnyside Diner", "Category": "Restaurants and Other Eating Places", "Address": "2801 W Girard Ave", "LATITUDE": 39.974534, "LONGITUDE": -75.181976, "DATE_RANGE_START": 2019, "Total Visits": 80.0, "Total Visitors": 57.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 3.0, "Total Spend": 457.0, "Total Transactions": 23.0, "Total Customers": 18.0, "Median Spend per Transaction": 19.9, "Median Spend per Customer": 27.59 }, "geometry": { "type": "Point", "coordinates": [ -75.181976, 39.974534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-vj9", "Name": "Baker Street Bread Co", "Category": "Restaurants and Other Eating Places", "Address": "8009 Germantown Ave", "LATITUDE": 40.071164, "LONGITUDE": -75.200774, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 103.0, "POI_CBG": 421010257003.0, "Median Dwell Time": 4.0, "Total Spend": 6118.0, "Total Transactions": 406.0, "Total Customers": 220.0, "Median Spend per Transaction": 8.37, "Median Spend per Customer": 12.86 }, "geometry": { "type": "Point", "coordinates": [ -75.200774, 40.071164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "401 N 21st St", "LATITUDE": 39.962306, "LONGITUDE": -75.172957, "DATE_RANGE_START": 2019, "Total Visits": 350.0, "Total Visitors": 245.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 11.0, "Total Spend": 18492.0, "Total Transactions": 851.0, "Total Customers": 633.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 23.72 }, "geometry": { "type": "Point", "coordinates": [ -75.172957, 39.962306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p74-cyv", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "8016 Frankford Ave", "LATITUDE": 40.041879, "LONGITUDE": -75.027519, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 52.0, "POI_CBG": 421010331022.0, "Median Dwell Time": 22.0, "Total Spend": 750.0, "Total Transactions": 57.0, "Total Customers": 45.0, "Median Spend per Transaction": 10.9, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.027519, 40.041879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "120 W Oregon Ave", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 310.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 15043.0, "Total Transactions": 1494.0, "Total Customers": 949.0, "Median Spend per Transaction": 8.7, "Median Spend per Customer": 10.77 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-n5z", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd", "LATITUDE": 39.954715, "LONGITUDE": -75.168495, "DATE_RANGE_START": 2019, "Total Visits": 13123.0, "Total Visitors": 4982.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 344.0, "Total Spend": 7455.0, "Total Transactions": 811.0, "Total Customers": 530.0, "Median Spend per Transaction": 8.53, "Median Spend per Customer": 10.31 }, "geometry": { "type": "Point", "coordinates": [ -75.168495, 39.954715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-835", "Name": "Nanee's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953311, "LONGITUDE": -75.158833, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 2449.0, "Total Transactions": 152.0, "Total Customers": 148.0, "Median Spend per Transaction": 14.09, "Median Spend per Customer": 14.49 }, "geometry": { "type": "Point", "coordinates": [ -75.158833, 39.953311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1528 Walnut St", "LATITUDE": 39.949521, "LONGITUDE": -75.167452, "DATE_RANGE_START": 2019, "Total Visits": 2657.0, "Total Visitors": 2046.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 20.0, "Total Spend": 15202.0, "Total Transactions": 2713.0, "Total Customers": 1626.0, "Median Spend per Transaction": 4.59, "Median Spend per Customer": 5.78 }, "geometry": { "type": "Point", "coordinates": [ -75.167452, 39.949521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-rff", "Name": "Montana Grill", "Category": "Restaurants and Other Eating Places", "Address": "6651 Castor Ave", "LATITUDE": 40.042892, "LONGITUDE": -75.073677, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 98.0, "POI_CBG": 421010313004.0, "Median Dwell Time": 22.0, "Total Spend": 162.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 20.11 }, "geometry": { "type": "Point", "coordinates": [ -75.073677, 40.042892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "Name": "Triple Joy", "Category": "Restaurants and Other Eating Places", "Address": "2301 N 29th St", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2019, "Total Visits": 177.0, "Total Visitors": 102.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 18.0, "Total Spend": 1384.0, "Total Transactions": 110.0, "Total Customers": 65.0, "Median Spend per Transaction": 10.62, "Median Spend per Customer": 15.87 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2100 Red Lion Rd", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2019, "Total Visits": 793.0, "Total Visitors": 681.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 5.0, "Total Spend": 270.0, "Total Transactions": 30.0, "Total Customers": 18.0, "Median Spend per Transaction": 8.31, "Median Spend per Customer": 11.01 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5601 Lancaster Ave", "LATITUDE": 39.980352, "LONGITUDE": -75.234957, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 93.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 8.0, "Total Spend": 3431.0, "Total Transactions": 282.0, "Total Customers": 222.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 11.21 }, "geometry": { "type": "Point", "coordinates": [ -75.234957, 39.980352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "532 W Lehigh Ave # 46", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2019, "Total Visits": 205.0, "Total Visitors": 170.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 5.0, "Total Spend": 2620.0, "Total Transactions": 480.0, "Total Customers": 292.0, "Median Spend per Transaction": 4.9, "Median Spend per Customer": 6.56 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-pn5", "Name": "Luna Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1700 N 3rd St", "LATITUDE": 39.976619, "LONGITUDE": -75.140834, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 52.0, "POI_CBG": 421010156001.0, "Median Dwell Time": 41.0, "Total Spend": 1137.0, "Total Transactions": 127.0, "Total Customers": 52.0, "Median Spend per Transaction": 5.62, "Median Spend per Customer": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.140834, 39.976619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2101 S 10th St", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2019, "Total Visits": 438.0, "Total Visitors": 295.0, "POI_CBG": 421010041013.0, "Median Dwell Time": 4.0, "Total Spend": 603.0, "Total Transactions": 52.0, "Total Customers": 27.0, "Median Spend per Transaction": 8.91, "Median Spend per Customer": 10.52 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "4201 N Broad St", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2019, "Total Visits": 1311.0, "Total Visitors": 994.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 7.0, "Total Spend": 2631.0, "Total Transactions": 207.0, "Total Customers": 102.0, "Median Spend per Transaction": 8.35, "Median Spend per Customer": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.067745, "LONGITUDE": -75.198, "DATE_RANGE_START": 2019, "Total Visits": 528.0, "Total Visitors": 430.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 18.0, "Total Spend": 10348.0, "Total Transactions": 351.0, "Total Customers": 203.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.198, 40.067745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "8828 Frankford Ave", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2019, "Total Visits": 578.0, "Total Visitors": 438.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 6.0, "Total Spend": 2259.0, "Total Transactions": 102.0, "Total Customers": 73.0, "Median Spend per Transaction": 12.45, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pm9-tqf", "Name": "Jefferson Pharmacy", "Category": "Health and Personal Care Stores", "Address": "833 Chestnut St Ste 125", "LATITUDE": 39.949885, "LONGITUDE": -75.154967, "DATE_RANGE_START": 2019, "Total Visits": 9098.0, "Total Visitors": 4954.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 155.0, "Total Spend": 4202.0, "Total Transactions": 193.0, "Total Customers": 147.0, "Median Spend per Transaction": 11.49, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154967, 39.949885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph6-p5f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5201 Lancaster Ave", "LATITUDE": 39.977589, "LONGITUDE": -75.227009, "DATE_RANGE_START": 2019, "Total Visits": 1882.0, "Total Visitors": 1439.0, "POI_CBG": 421010118003.0, "Median Dwell Time": 4.0, "Total Spend": 996.0, "Total Transactions": 45.0, "Total Customers": 32.0, "Median Spend per Transaction": 20.07, "Median Spend per Customer": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.227009, 39.977589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "Name": "Kiehl's", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2019, "Total Visits": 924.0, "Total Visitors": 648.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 114.0, "Total Spend": 9656.0, "Total Transactions": 213.0, "Total Customers": 203.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 39.42 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029566, "LONGITUDE": -75.100398, "DATE_RANGE_START": 2019, "Total Visits": 1421.0, "Total Visitors": 1296.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 41.0, "Total Spend": 4733.0, "Total Transactions": 128.0, "Total Customers": 93.0, "Median Spend per Transaction": 27.97, "Median Spend per Customer": 37.97 }, "geometry": { "type": "Point", "coordinates": [ -75.100398, 40.029566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "Name": "Vince.", "Category": "Clothing Stores", "Address": "1701 Walnut St", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2019, "Total Visits": 5742.0, "Total Visitors": 4188.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 70.0, "Total Spend": 6906.0, "Total Transactions": 30.0, "Total Customers": 25.0, "Median Spend per Transaction": 177.0, "Median Spend per Customer": 177.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-vcq", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "1851 S Columbus Blvd", "LATITUDE": 39.923962, "LONGITUDE": -75.139231, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 198.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 12.0, "Total Spend": 3169.0, "Total Transactions": 43.0, "Total Customers": 40.0, "Median Spend per Transaction": 67.34, "Median Spend per Customer": 69.85 }, "geometry": { "type": "Point", "coordinates": [ -75.139231, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p9w-sbk", "Name": "Spiritual World", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "13020 Bustleton Ave Ste A", "LATITUDE": 40.124382, "LONGITUDE": -75.015592, "DATE_RANGE_START": 2019, "Total Visits": 851.0, "Total Visitors": 575.0, "POI_CBG": 421010365013.0, "Median Dwell Time": 17.0, "Total Spend": 357.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 38.48, "Median Spend per Customer": 38.48 }, "geometry": { "type": "Point", "coordinates": [ -75.015592, 40.124382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-brk", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2539 Castor Ave Ste D", "LATITUDE": 39.994031, "LONGITUDE": -75.091432, "DATE_RANGE_START": 2019, "Total Visits": 341.0, "Total Visitors": 326.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 5.0, "Total Spend": 4668.0, "Total Transactions": 112.0, "Total Customers": 92.0, "Median Spend per Transaction": 24.29, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091432, 39.994031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3000 Island Ave Ste M P", "LATITUDE": 39.898752, "LONGITUDE": -75.240579, "DATE_RANGE_START": 2019, "Total Visits": 1016.0, "Total Visitors": 776.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 11.0, "Total Spend": 679.0, "Total Transactions": 45.0, "Total Customers": 25.0, "Median Spend per Transaction": 13.24, "Median Spend per Customer": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.240579, 39.898752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-pn5", "Name": "Good's Vintage", "Category": "Used Merchandise Stores", "Address": "1022 S 9th St", "LATITUDE": 39.93696, "LONGITUDE": -75.158415, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 75.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 14.0, "Total Spend": 191.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 24.84, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.93696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvx-w49", "Name": "Millcreek Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4200 Chester Ave", "LATITUDE": 39.948179, "LONGITUDE": -75.207276, "DATE_RANGE_START": 2019, "Total Visits": 125.0, "Total Visitors": 92.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 50.0, "Total Spend": 646.0, "Total Transactions": 27.0, "Total Customers": 23.0, "Median Spend per Transaction": 15.38, "Median Spend per Customer": 17.38 }, "geometry": { "type": "Point", "coordinates": [ -75.207276, 39.948179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "Name": "Pub On Passyunk East", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1501 E Passyunk Ave", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 102.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 43.0, "Total Spend": 23073.0, "Total Transactions": 748.0, "Total Customers": 608.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm4-4gk", "Name": "El Sabor Catracho", "Category": "Restaurants and Other Eating Places", "Address": "2201 S 7th St", "LATITUDE": 39.92144, "LONGITUDE": -75.158323, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 123.0, "POI_CBG": 421010041012.0, "Median Dwell Time": 356.0, "Total Spend": 681.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.158323, 39.92144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj4-zzz", "Name": "Wok Works", "Category": "Restaurants and Other Eating Places", "Address": "3401 N Broad St", "LATITUDE": 40.005065, "LONGITUDE": -75.150775, "DATE_RANGE_START": 2019, "Total Visits": 18626.0, "Total Visitors": 7351.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 243.0, "Total Spend": 399.0, "Total Transactions": 28.0, "Total Customers": 27.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 11.94 }, "geometry": { "type": "Point", "coordinates": [ -75.150775, 40.005065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-x3q", "Name": "Manakeesh Cafe Bakery & Grill", "Category": "Restaurants and Other Eating Places", "Address": "4420 Walnut St", "LATITUDE": 39.95498, "LONGITUDE": -75.211488, "DATE_RANGE_START": 2019, "Total Visits": 560.0, "Total Visitors": 295.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 268.0, "Total Spend": 11160.0, "Total Transactions": 525.0, "Total Customers": 443.0, "Median Spend per Transaction": 16.85, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.211488, 39.95498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3qz", "Name": "Grand China Buffet", "Category": "Restaurants and Other Eating Places", "Address": "29 Franklin Mills Blvd", "LATITUDE": 40.085175, "LONGITUDE": -74.967524, "DATE_RANGE_START": 2019, "Total Visits": 1627.0, "Total Visitors": 1413.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 35.0, "Total Spend": 12005.0, "Total Transactions": 300.0, "Total Customers": 270.0, "Median Spend per Transaction": 35.16, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -74.967524, 40.085175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4200 N Broad St", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2019, "Total Visits": 1627.0, "Total Visitors": 1226.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 5.0, "Total Spend": 8807.0, "Total Transactions": 981.0, "Total Customers": 765.0, "Median Spend per Transaction": 7.42, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "Name": "Function Coffee Labs", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 10th St", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2019, "Total Visits": 2387.0, "Total Visitors": 1756.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 17.0, "Total Spend": 25.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.45, "Median Spend per Customer": 7.45 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4017 N 5th St # 59", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2019, "Total Visits": 366.0, "Total Visitors": 296.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 3.0, "Total Spend": 1926.0, "Total Transactions": 275.0, "Total Customers": 152.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-rx5", "Name": "Choice Beer Deli", "Category": "Restaurants and Other Eating Places", "Address": "1642 South St", "LATITUDE": 39.944126, "LONGITUDE": -75.170213, "DATE_RANGE_START": 2019, "Total Visits": 137.0, "Total Visitors": 70.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 548.0, "Total Spend": 111.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 23.21, "Median Spend per Customer": 23.21 }, "geometry": { "type": "Point", "coordinates": [ -75.170213, 39.944126 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.080948, "LONGITUDE": -75.025099, "DATE_RANGE_START": 2019, "Total Visits": 10306.0, "Total Visitors": 6828.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 17.0, "Total Spend": 141682.0, "Total Transactions": 2049.0, "Total Customers": 1313.0, "Median Spend per Transaction": 24.81, "Median Spend per Customer": 36.79 }, "geometry": { "type": "Point", "coordinates": [ -75.025099, 40.080948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-wzf", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "1575 N 52nd St Ste 400", "LATITUDE": 39.977998, "LONGITUDE": -75.223963, "DATE_RANGE_START": 2019, "Total Visits": 8084.0, "Total Visitors": 4411.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 19.0, "Total Spend": 346.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.9, "Median Spend per Customer": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.223963, 39.977998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "3899 Aramingo Ave", "LATITUDE": 39.996676, "LONGITUDE": -75.089544, "DATE_RANGE_START": 2019, "Total Visits": 1214.0, "Total Visitors": 968.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 9.0, "Total Spend": 4580.0, "Total Transactions": 172.0, "Total Customers": 135.0, "Median Spend per Transaction": 15.7, "Median Spend per Customer": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.089544, 39.996676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "15500 Bustleton Ave", "LATITUDE": 40.134399, "LONGITUDE": -75.01003, "DATE_RANGE_START": 2019, "Total Visits": 715.0, "Total Visitors": 545.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 5.0, "Total Spend": 6180.0, "Total Transactions": 182.0, "Total Customers": 105.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.01003, 40.134399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "801 S Broad St", "LATITUDE": 39.940581, "LONGITUDE": -75.165835, "DATE_RANGE_START": 2019, "Total Visits": 1642.0, "Total Visitors": 1219.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 4.0, "Total Spend": 2542.0, "Total Transactions": 105.0, "Total Customers": 75.0, "Median Spend per Transaction": 22.26, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165835, 39.940581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8y9", "Name": "Windsor", "Category": "Clothing Stores", "Address": "901 Market St Spc C200", "LATITUDE": 39.951878, "LONGITUDE": -75.155445, "DATE_RANGE_START": 2019, "Total Visits": 59483.0, "Total Visitors": 32677.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 59.0, "Total Spend": 87.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155445, 39.951878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1851 S Columbus Blvd Ste G", "LATITUDE": 39.923624, "LONGITUDE": -75.139475, "DATE_RANGE_START": 2019, "Total Visits": 916.0, "Total Visitors": 770.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 19.0, "Total Spend": 18736.0, "Total Transactions": 430.0, "Total Customers": 381.0, "Median Spend per Transaction": 32.19, "Median Spend per Customer": 36.99 }, "geometry": { "type": "Point", "coordinates": [ -75.139475, 39.923624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2308 W Oregon Ave Ste A", "LATITUDE": 39.91784, "LONGITUDE": -75.186842, "DATE_RANGE_START": 2019, "Total Visits": 381.0, "Total Visitors": 348.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 6.0, "Total Spend": 6299.0, "Total Transactions": 132.0, "Total Customers": 115.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.186842, 39.91784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2250 S Columbus Blvd", "LATITUDE": 39.917114, "LONGITUDE": -75.139852, "DATE_RANGE_START": 2019, "Total Visits": 1296.0, "Total Visitors": 1186.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 18864.0, "Total Transactions": 1054.0, "Total Customers": 933.0, "Median Spend per Transaction": 13.79, "Median Spend per Customer": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.139852, 39.917114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "15501 Bustleton Ave Ste A", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2019, "Total Visits": 4726.0, "Total Visitors": 1822.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 46.0, "Total Spend": 4418.0, "Total Transactions": 70.0, "Total Customers": 45.0, "Median Spend per Transaction": 19.98, "Median Spend per Customer": 24.35 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "Name": "Reyes Food Market", "Category": "Grocery Stores", "Address": "6161 Chestnut St", "LATITUDE": 39.961179, "LONGITUDE": -75.244847, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010083011.0, "Median Dwell Time": 1.0, "Total Spend": 581.0, "Total Transactions": 67.0, "Total Customers": 23.0, "Median Spend per Transaction": 6.7, "Median Spend per Customer": 16.93 }, "geometry": { "type": "Point", "coordinates": [ -75.244847, 39.961179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kfz", "Name": "The Rittenhouse Hotel", "Category": "Traveler Accommodation", "Address": "210 W Rittenhouse Sq", "LATITUDE": 39.949841, "LONGITUDE": -75.173264, "DATE_RANGE_START": 2019, "Total Visits": 1716.0, "Total Visitors": 953.0, "POI_CBG": 421010008034.0, "Median Dwell Time": 205.0, "Total Spend": 38060.0, "Total Transactions": 97.0, "Total Customers": 73.0, "Median Spend per Transaction": 66.5, "Median Spend per Customer": 66.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173264, 39.949841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwf-j35", "Name": "Airgas", "Category": "Chemical and Allied Products Merchant Wholesalers", "Address": "7575 Holstein Ave", "LATITUDE": 39.90125, "LONGITUDE": -75.230162, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 88.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 94.0, "Total Spend": 87.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230162, 39.90125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pgb-nh5", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "827 N Broad St", "LATITUDE": 39.969197, "LONGITUDE": -75.159372, "DATE_RANGE_START": 2019, "Total Visits": 311.0, "Total Visitors": 263.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 4.0, "Total Spend": 4355.0, "Total Transactions": 47.0, "Total Customers": 35.0, "Median Spend per Transaction": 54.8, "Median Spend per Customer": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159372, 39.969197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "3901 M St # 29", "LATITUDE": 40.006521, "LONGITUDE": -75.100325, "DATE_RANGE_START": 2019, "Total Visits": 1552.0, "Total Visitors": 1114.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 11.0, "Total Spend": 3027.0, "Total Transactions": 122.0, "Total Customers": 82.0, "Median Spend per Transaction": 11.08, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100325, 40.006521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2489 Aramingo Ave", "LATITUDE": 39.974271, "LONGITUDE": -75.11985, "DATE_RANGE_START": 2019, "Total Visits": 391.0, "Total Visitors": 353.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 5.0, "Total Spend": 670.0, "Total Transactions": 55.0, "Total Customers": 40.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.11985, 39.974271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "Name": "The Capital Grille", "Category": "Restaurants and Other Eating Places", "Address": "1338 Chestnut St # 46", "LATITUDE": 39.950707, "LONGITUDE": -75.163622, "DATE_RANGE_START": 2019, "Total Visits": 806.0, "Total Visitors": 660.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 14.0, "Total Spend": 31308.0, "Total Transactions": 160.0, "Total Customers": 145.0, "Median Spend per Transaction": 122.49, "Median Spend per Customer": 122.65 }, "geometry": { "type": "Point", "coordinates": [ -75.163622, 39.950707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-nwk", "Name": "Hiroki", "Category": "Restaurants and Other Eating Places", "Address": "1335 N Front St", "LATITUDE": 39.971334, "LONGITUDE": -75.135176, "DATE_RANGE_START": 2019, "Total Visits": 378.0, "Total Visitors": 316.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 1.0, "Total Spend": 11677.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 400.0, "Median Spend per Customer": 404.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135176, 39.971334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pnx-7bk", "Name": "Honey's Sit N Eat", "Category": "Restaurants and Other Eating Places", "Address": "800 N 4th St", "LATITUDE": 39.963975, "LONGITUDE": -75.144545, "DATE_RANGE_START": 2019, "Total Visits": 480.0, "Total Visitors": 313.0, "POI_CBG": 421010367002.0, "Median Dwell Time": 31.0, "Total Spend": 129.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144545, 39.963975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-vfz", "Name": "Panorama", "Category": "Restaurants and Other Eating Places", "Address": "14 N Front St", "LATITUDE": 39.950151, "LONGITUDE": -75.142176, "DATE_RANGE_START": 2019, "Total Visits": 4601.0, "Total Visitors": 3770.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 4746.0, "Total Transactions": 55.0, "Total Customers": 53.0, "Median Spend per Transaction": 72.55, "Median Spend per Customer": 72.55 }, "geometry": { "type": "Point", "coordinates": [ -75.142176, 39.950151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6001 Lancaster Ave", "LATITUDE": 39.983085, "LONGITUDE": -75.241704, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 42.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 34.0, "Total Spend": 11696.0, "Total Transactions": 513.0, "Total Customers": 366.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.241704, 39.983085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4438 Chestnut St", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 48.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 508.0, "Total Spend": 18652.0, "Total Transactions": 810.0, "Total Customers": 615.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-mrk", "Name": "Auntie Anne's", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 206", "LATITUDE": 39.952065, "LONGITUDE": -75.167537, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 102.0, "Total Spend": 17.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.16, "Median Spend per Customer": 5.16 }, "geometry": { "type": "Point", "coordinates": [ -75.167537, 39.952065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pfx-kzz", "Name": "Haggerty Deli", "Category": "Grocery Stores", "Address": "4528 Wilde St", "LATITUDE": 40.029098, "LONGITUDE": -75.225579, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010214004.0, "Median Dwell Time": 3.0, "Total Spend": 1691.0, "Total Transactions": 122.0, "Total Customers": 57.0, "Median Spend per Transaction": 11.49, "Median Spend per Customer": 15.46 }, "geometry": { "type": "Point", "coordinates": [ -75.225579, 40.029098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-224@628-pm4-nkf", "Name": "Felly Bistro On Pass", "Category": "Restaurants and Other Eating Places", "Address": "769 E Passyunk Ave", "LATITUDE": 39.938821, "LONGITUDE": -75.152405, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 1.0, "Total Spend": 214.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 64.09, "Median Spend per Customer": 64.09 }, "geometry": { "type": "Point", "coordinates": [ -75.152405, 39.938821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phy-47q", "Name": "Feltonville Express Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4812 Rising Sun Ave", "LATITUDE": 40.02367, "LONGITUDE": -75.124313, "DATE_RANGE_START": 2019, "Total Visits": 90.0, "Total Visitors": 42.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 290.0, "Total Spend": 3207.0, "Total Transactions": 152.0, "Total Customers": 105.0, "Median Spend per Transaction": 19.46, "Median Spend per Customer": 24.59 }, "geometry": { "type": "Point", "coordinates": [ -75.124313, 40.02367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-68v", "Name": "Strangelove's", "Category": "Restaurants and Other Eating Places", "Address": "216 S 11th St", "LATITUDE": 39.948065, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2019, "Total Visits": 2177.0, "Total Visitors": 1487.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 43.0, "Total Spend": 11112.0, "Total Transactions": 292.0, "Total Customers": 258.0, "Median Spend per Transaction": 28.9, "Median Spend per Customer": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.948065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "Name": "Henry James Saloon", "Category": "Restaurants and Other Eating Places", "Address": "577 Jamestown St", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 60.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 32.0, "Total Spend": 1874.0, "Total Transactions": 47.0, "Total Customers": 35.0, "Median Spend per Transaction": 34.04, "Median Spend per Customer": 35.17 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "Name": "Tavares Grocery", "Category": "Grocery Stores", "Address": "364 E Chelten Ave", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 105.0, "POI_CBG": 421010247005.0, "Median Dwell Time": 197.0, "Total Spend": 52.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.85, "Median Spend per Customer": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phk-yvz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6744 N 5th St # 46", "LATITUDE": 40.054784, "LONGITUDE": -75.126802, "DATE_RANGE_START": 2019, "Total Visits": 350.0, "Total Visitors": 250.0, "POI_CBG": 421010269001.0, "Median Dwell Time": 4.0, "Total Spend": 1688.0, "Total Transactions": 103.0, "Total Customers": 55.0, "Median Spend per Transaction": 10.21, "Median Spend per Customer": 19.06 }, "geometry": { "type": "Point", "coordinates": [ -75.126802, 40.054784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "Name": "Bookhaven", "Category": "Book Stores and News Dealers", "Address": "2202 Fairmount Ave", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 52.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 4.0, "Total Spend": 1285.0, "Total Transactions": 53.0, "Total Customers": 53.0, "Median Spend per Transaction": 24.03, "Median Spend per Customer": 24.03 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11000 Roosevelt Blvd Ste 3", "LATITUDE": 40.101947, "LONGITUDE": -75.011258, "DATE_RANGE_START": 2019, "Total Visits": 4541.0, "Total Visitors": 3258.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 21.0, "Total Spend": 109389.0, "Total Transactions": 2697.0, "Total Customers": 1574.0, "Median Spend per Transaction": 24.99, "Median Spend per Customer": 43.15 }, "geometry": { "type": "Point", "coordinates": [ -75.011258, 40.101947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-389", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "30 Franklin Mills Blvd", "LATITUDE": 40.084522, "LONGITUDE": -74.967251, "DATE_RANGE_START": 2019, "Total Visits": 616.0, "Total Visitors": 548.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 35.0, "Total Spend": 2227.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 668.49, "Median Spend per Customer": 668.49 }, "geometry": { "type": "Point", "coordinates": [ -74.967251, 40.084522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qcq", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.039147, "LONGITUDE": -75.118804, "DATE_RANGE_START": 2019, "Total Visits": 4426.0, "Total Visitors": 2632.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 16.0, "Total Spend": 1326.0, "Total Transactions": 32.0, "Total Customers": 13.0, "Median Spend per Transaction": 17.34, "Median Spend per Customer": 93.04 }, "geometry": { "type": "Point", "coordinates": [ -75.118804, 40.039147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "400 W Allegheny Ave", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2019, "Total Visits": 305.0, "Total Visitors": 203.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 30.0, "Total Spend": 1384.0, "Total Transactions": 65.0, "Total Customers": 47.0, "Median Spend per Transaction": 11.19, "Median Spend per Customer": 11.19 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6506 Frankford Ave", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2019, "Total Visits": 2115.0, "Total Visitors": 1204.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 5.0, "Total Spend": 28487.0, "Total Transactions": 2958.0, "Total Customers": 1156.0, "Median Spend per Transaction": 7.4, "Median Spend per Customer": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "Name": "Brandy Melville", "Category": "Clothing Stores", "Address": "1527 Walnut St", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2019, "Total Visits": 1054.0, "Total Visitors": 906.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 22135.0, "Total Transactions": 583.0, "Total Customers": 521.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1600 E Wadsworth Ave Ste B", "LATITUDE": 40.080365, "LONGITUDE": -75.171922, "DATE_RANGE_START": 2019, "Total Visits": 282.0, "Total Visitors": 240.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 6.0, "Total Spend": 2207.0, "Total Transactions": 300.0, "Total Customers": 218.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.171922, 40.080365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8m-6rk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6101 Frankford Ave", "LATITUDE": 40.026735, "LONGITUDE": -75.064295, "DATE_RANGE_START": 2019, "Total Visits": 653.0, "Total Visitors": 510.0, "POI_CBG": 421010319001.0, "Median Dwell Time": 6.0, "Total Spend": 776.0, "Total Transactions": 60.0, "Total Customers": 37.0, "Median Spend per Transaction": 7.52, "Median Spend per Customer": 14.52 }, "geometry": { "type": "Point", "coordinates": [ -75.064295, 40.026735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11749 Bustleton Ave Ste 14", "LATITUDE": 40.120348, "LONGITUDE": -75.015989, "DATE_RANGE_START": 2019, "Total Visits": 786.0, "Total Visitors": 621.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 11.0, "Total Spend": 646.0, "Total Transactions": 40.0, "Total Customers": 13.0, "Median Spend per Transaction": 11.91, "Median Spend per Customer": 30.02 }, "geometry": { "type": "Point", "coordinates": [ -75.015989, 40.120348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfz-ch5", "Name": "Craft Manayunk", "Category": "Restaurants and Other Eating Places", "Address": "4141 Main St", "LATITUDE": 40.022994, "LONGITUDE": -75.219064, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 95.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 45.0, "Total Spend": 16089.0, "Total Transactions": 391.0, "Total Customers": 315.0, "Median Spend per Transaction": 31.4, "Median Spend per Customer": 34.08 }, "geometry": { "type": "Point", "coordinates": [ -75.219064, 40.022994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2340 W Oregon Ave", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2019, "Total Visits": 675.0, "Total Visitors": 560.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 8.0, "Total Spend": 482.0, "Total Transactions": 37.0, "Total Customers": 37.0, "Median Spend per Transaction": 11.55, "Median Spend per Customer": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1000 S Broad St", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2019, "Total Visits": 640.0, "Total Visitors": 515.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 8.0, "Total Spend": 77.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.31, "Median Spend per Customer": 15.31 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phd-h89", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "4600 City Ave", "LATITUDE": 40.002639, "LONGITUDE": -75.222769, "DATE_RANGE_START": 2019, "Total Visits": 315.0, "Total Visitors": 292.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 6.0, "Total Spend": 6816.0, "Total Transactions": 375.0, "Total Customers": 321.0, "Median Spend per Transaction": 13.8, "Median Spend per Customer": 15.86 }, "geometry": { "type": "Point", "coordinates": [ -75.222769, 40.002639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p75-9vf", "Name": "Ashburner Inn", "Category": "Restaurants and Other Eating Places", "Address": "8400 Torresdale Ave", "LATITUDE": 40.040603, "LONGITUDE": -75.015474, "DATE_RANGE_START": 2019, "Total Visits": 441.0, "Total Visitors": 345.0, "POI_CBG": 421010349003.0, "Median Dwell Time": 72.0, "Total Spend": 5278.0, "Total Transactions": 105.0, "Total Customers": 90.0, "Median Spend per Transaction": 43.88, "Median Spend per Customer": 42.58 }, "geometry": { "type": "Point", "coordinates": [ -75.015474, 40.040603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8j-ct9", "Name": "New London Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7230 Frankford Ave", "LATITUDE": 40.036249, "LONGITUDE": -75.042416, "DATE_RANGE_START": 2019, "Total Visits": 85.0, "Total Visitors": 47.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 124.0, "Total Spend": 1261.0, "Total Transactions": 47.0, "Total Customers": 38.0, "Median Spend per Transaction": 19.93, "Median Spend per Customer": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.042416, 40.036249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "Name": "A Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "135 S 18th St", "LATITUDE": 39.950427, "LONGITUDE": -75.170427, "DATE_RANGE_START": 2019, "Total Visits": 1349.0, "Total Visitors": 1068.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 31.0, "Total Spend": 34790.0, "Total Transactions": 1128.0, "Total Customers": 858.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -75.170427, 39.950427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "Name": "Morimoto", "Category": "Restaurants and Other Eating Places", "Address": "723 Chestnut St", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2019, "Total Visits": 596.0, "Total Visitors": 438.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 90.0, "Total Spend": 29416.0, "Total Transactions": 167.0, "Total Customers": 162.0, "Median Spend per Transaction": 155.81, "Median Spend per Customer": 161.32 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-p9z", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "214 S 40th St", "LATITUDE": 39.953614, "LONGITUDE": -75.202983, "DATE_RANGE_START": 2019, "Total Visits": 395.0, "Total Visitors": 350.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 21.0, "Total Spend": 4864.0, "Total Transactions": 301.0, "Total Customers": 275.0, "Median Spend per Transaction": 13.07, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202983, 39.953614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-tgk", "Name": "Phoenix Cafe", "Category": "Restaurants and Other Eating Places", "Address": "861 E Allegheny Ave", "LATITUDE": 39.996785, "LONGITUDE": -75.113541, "DATE_RANGE_START": 2019, "Total Visits": 1946.0, "Total Visitors": 1338.0, "POI_CBG": 421010177012.0, "Median Dwell Time": 9.0, "Total Spend": 445.0, "Total Transactions": 98.0, "Total Customers": 28.0, "Median Spend per Transaction": 4.69, "Median Spend per Customer": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -75.113541, 39.996785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5100 City Ave", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2019, "Total Visits": 678.0, "Total Visitors": 506.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 2.0, "Total Spend": 12088.0, "Total Transactions": 2044.0, "Total Customers": 1174.0, "Median Spend per Transaction": 5.16, "Median Spend per Customer": 7.01 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-9cq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3437 Walnut St", "LATITUDE": 39.953242, "LONGITUDE": -75.19352, "DATE_RANGE_START": 2019, "Total Visits": 282.0, "Total Visitors": 168.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 228.0, "Total Spend": 9245.0, "Total Transactions": 2057.0, "Total Customers": 853.0, "Median Spend per Transaction": 3.45, "Median Spend per Customer": 6.19 }, "geometry": { "type": "Point", "coordinates": [ -75.19352, 39.953242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1501 N 52nd St", "LATITUDE": 39.977256, "LONGITUDE": -75.226088, "DATE_RANGE_START": 2019, "Total Visits": 282.0, "Total Visitors": 213.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 4.0, "Total Spend": 2283.0, "Total Transactions": 440.0, "Total Customers": 253.0, "Median Spend per Transaction": 4.59, "Median Spend per Customer": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.226088, 39.977256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-r49", "Name": "PA Auto Sales com", "Category": "Automobile Dealers", "Address": "11600 Roosevelt Blvd", "LATITUDE": 40.104341, "LONGITUDE": -75.003284, "DATE_RANGE_START": 2019, "Total Visits": 3028.0, "Total Visitors": 2330.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 38.0, "Total Spend": 19219.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 2000.0, "Median Spend per Customer": 2000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003284, 40.104341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "Name": "CB2", "Category": "Furniture Stores", "Address": "1422 Walnut St", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2019, "Total Visits": 3122.0, "Total Visitors": 1992.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 86.0, "Total Spend": 13294.0, "Total Transactions": 152.0, "Total Customers": 123.0, "Median Spend per Transaction": 38.43, "Median Spend per Customer": 48.23 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pgg-j7q", "Name": "B & R Grocery", "Category": "Grocery Stores", "Address": "2601 N 23rd St", "LATITUDE": 39.994344, "LONGITUDE": -75.169339, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 20.0, "POI_CBG": 421010168005.0, "Median Dwell Time": 42.0, "Total Spend": 93.0, "Total Transactions": 18.0, "Total Customers": 8.0, "Median Spend per Transaction": 3.75, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169339, 39.994344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7w-wc5", "Name": "McNally's Tavern Mayfair", "Category": "Restaurants and Other Eating Places", "Address": "3300 Brighton St", "LATITUDE": 40.035746, "LONGITUDE": -75.049243, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 20.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 1.0, "Total Spend": 2236.0, "Total Transactions": 47.0, "Total Customers": 47.0, "Median Spend per Transaction": 46.18, "Median Spend per Customer": 46.18 }, "geometry": { "type": "Point", "coordinates": [ -75.049243, 40.035746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-835", "Name": "3J's Food Market", "Category": "Grocery Stores", "Address": "801 N 2nd St", "LATITUDE": 39.963054, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 22.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 15.0, "Total Spend": 25707.0, "Total Transactions": 2292.0, "Total Customers": 1039.0, "Median Spend per Transaction": 9.85, "Median Spend per Customer": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "Name": "Comfort & Floyd", "Category": "Restaurants and Other Eating Places", "Address": "1301 S 11th St", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 22.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 51.0, "Total Spend": 2722.0, "Total Transactions": 88.0, "Total Customers": 75.0, "Median Spend per Transaction": 35.64, "Median Spend per Customer": 36.29 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "1501 E Susquehanna Ave", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2019, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 5.0, "Total Spend": 430.0, "Total Transactions": 32.0, "Total Customers": 32.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7912 Roosevelt Blvd", "LATITUDE": 40.055662, "LONGITUDE": -75.049241, "DATE_RANGE_START": 2019, "Total Visits": 2185.0, "Total Visitors": 1632.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 4.0, "Total Spend": 80200.0, "Total Transactions": 4922.0, "Total Customers": 2369.0, "Median Spend per Transaction": 11.92, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.049241, 40.055662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "Name": "Fishtown Social", "Category": "Restaurants and Other Eating Places", "Address": "1525 Frankford Ave", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 87.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 285.0, "Total Spend": 9425.0, "Total Transactions": 173.0, "Total Customers": 145.0, "Median Spend per Transaction": 39.2, "Median Spend per Customer": 48.96 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-225@628-pjk-3nq", "Name": "Lucky Star Asian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "8919 Ridge Ave", "LATITUDE": 40.069778, "LONGITUDE": -75.239531, "DATE_RANGE_START": 2019, "Total Visits": 610.0, "Total Visitors": 415.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 38.0, "Total Spend": 154.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.13, "Median Spend per Customer": 30.13 }, "geometry": { "type": "Point", "coordinates": [ -75.239531, 40.069778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm8-9fz", "Name": "Philadium Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1631 Packer Ave", "LATITUDE": 39.91258, "LONGITUDE": -75.17636, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 63.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 54.0, "Total Spend": 1031.0, "Total Transactions": 27.0, "Total Customers": 18.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17636, 39.91258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-bp9", "Name": "Sang Kee Noodle House", "Category": "Restaurants and Other Eating Places", "Address": "900 Packer Ave", "LATITUDE": 39.909183, "LONGITUDE": -75.16467, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 471.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 25.0, "Total Spend": 2696.0, "Total Transactions": 120.0, "Total Customers": 93.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.96 }, "geometry": { "type": "Point", "coordinates": [ -75.16467, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "Name": "Xian Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "902 Arch St", "LATITUDE": 39.9532, "LONGITUDE": -75.154945, "DATE_RANGE_START": 2019, "Total Visits": 148.0, "Total Visitors": 100.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1217.0, "Total Spend": 2374.0, "Total Transactions": 85.0, "Total Customers": 73.0, "Median Spend per Transaction": 25.44, "Median Spend per Customer": 25.97 }, "geometry": { "type": "Point", "coordinates": [ -75.154945, 39.9532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "Name": "Philadelphia Pharmacy", "Category": "Health and Personal Care Stores", "Address": "101 E Lehigh Ave # 03", "LATITUDE": 39.991113, "LONGITUDE": -75.130735, "DATE_RANGE_START": 2019, "Total Visits": 87.0, "Total Visitors": 78.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 11.0, "Total Spend": 5782.0, "Total Transactions": 23.0, "Total Customers": 18.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130735, 39.991113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm3-vxq", "Name": "Noir Restaurant & Bar", "Category": "Restaurants and Other Eating Places", "Address": "1909 E Passyunk Ave", "LATITUDE": 39.926292, "LONGITUDE": -75.16736, "DATE_RANGE_START": 2019, "Total Visits": 1234.0, "Total Visitors": 778.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 92.0, "Total Spend": 4175.0, "Total Transactions": 55.0, "Total Customers": 50.0, "Median Spend per Transaction": 50.58, "Median Spend per Customer": 50.85 }, "geometry": { "type": "Point", "coordinates": [ -75.16736, 39.926292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "Name": "Macaroni's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "9315 Old Bustleton Ave", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2019, "Total Visits": 330.0, "Total Visitors": 248.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 79.0, "Total Spend": 6526.0, "Total Transactions": 70.0, "Total Customers": 60.0, "Median Spend per Transaction": 98.82, "Median Spend per Customer": 100.13 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p7w-x3q", "Name": "Mobil", "Category": "Gasoline Stations", "Address": "3301 Tyson Ave", "LATITUDE": 40.035465, "LONGITUDE": -75.049236, "DATE_RANGE_START": 2019, "Total Visits": 2269.0, "Total Visitors": 1234.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 4.0, "Total Spend": 1416.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 59.98, "Median Spend per Customer": 119.96 }, "geometry": { "type": "Point", "coordinates": [ -75.049236, 40.035465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Verree Rd", "LATITUDE": 40.105422, "LONGITUDE": -75.032802, "DATE_RANGE_START": 2019, "Total Visits": 1469.0, "Total Visitors": 931.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 4.0, "Total Spend": 311.0, "Total Transactions": 23.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.84, "Median Spend per Customer": 19.73 }, "geometry": { "type": "Point", "coordinates": [ -75.032802, 40.105422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "Name": "Gennaro's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1315 Bainbridge St", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 82.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 7.0, "Total Spend": 2159.0, "Total Transactions": 175.0, "Total Customers": 108.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2201 South St", "LATITUDE": 39.945401, "LONGITUDE": -75.178709, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 147.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 7.0, "Total Spend": 8285.0, "Total Transactions": 1149.0, "Total Customers": 633.0, "Median Spend per Transaction": 4.62, "Median Spend per Customer": 6.37 }, "geometry": { "type": "Point", "coordinates": [ -75.178709, 39.945401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-p7b-qs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "9200 Ashton Rd", "LATITUDE": 40.063609, "LONGITUDE": -75.021861, "DATE_RANGE_START": 2019, "Total Visits": 1731.0, "Total Visitors": 988.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 420.0, "Total Transactions": 30.0, "Total Customers": 17.0, "Median Spend per Transaction": 13.21, "Median Spend per Customer": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.021861, 40.063609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4113 G St", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2019, "Total Visits": 536.0, "Total Visitors": 378.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 11.0, "Total Spend": 2293.0, "Total Transactions": 225.0, "Total Customers": 163.0, "Median Spend per Transaction": 6.53, "Median Spend per Customer": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "Name": "Two Brothers", "Category": "Grocery Stores", "Address": "5400 Willows Ave", "LATITUDE": 39.943904, "LONGITUDE": -75.228136, "DATE_RANGE_START": 2019, "Total Visits": 173.0, "Total Visitors": 112.0, "POI_CBG": 421010071024.0, "Median Dwell Time": 229.0, "Total Spend": 764.0, "Total Transactions": 88.0, "Total Customers": 32.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 17.6 }, "geometry": { "type": "Point", "coordinates": [ -75.228136, 39.943904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "Name": "Moore Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "601 Moore St", "LATITUDE": 39.926601, "LONGITUDE": -75.156132, "DATE_RANGE_START": 2019, "Total Visits": 318.0, "Total Visitors": 200.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 6.0, "Total Spend": 12144.0, "Total Transactions": 360.0, "Total Customers": 218.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.156132, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7972 Castor Ave", "LATITUDE": 40.061568, "LONGITUDE": -75.05681, "DATE_RANGE_START": 2019, "Total Visits": 320.0, "Total Visitors": 233.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 7.0, "Total Spend": 1254.0, "Total Transactions": 60.0, "Total Customers": 47.0, "Median Spend per Transaction": 14.91, "Median Spend per Customer": 15.58 }, "geometry": { "type": "Point", "coordinates": [ -75.05681, 40.061568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3601 Midvale Ave", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2019, "Total Visits": 413.0, "Total Visitors": 277.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 10.0, "Total Spend": 12068.0, "Total Transactions": 580.0, "Total Customers": 262.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 24.24 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmd-tvz", "Name": "The Indie Shelf", "Category": "Health and Personal Care Stores", "Address": "2247 Grays Ferry Ave", "LATITUDE": 39.944748, "LONGITUDE": -75.180225, "DATE_RANGE_START": 2019, "Total Visits": 475.0, "Total Visitors": 405.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 13.0, "Total Spend": 1842.0, "Total Transactions": 45.0, "Total Customers": 45.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.180225, 39.944748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "Name": "Produce Junction", "Category": "Florists", "Address": "2241 Bryn Mawr Ave", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2019, "Total Visits": 393.0, "Total Visitors": 330.0, "POI_CBG": 421010120001.0, "Median Dwell Time": 5.0, "Total Spend": 960.0, "Total Transactions": 45.0, "Total Customers": 30.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pp5-p35", "Name": "Q & A Wholesale", "Category": "Other Miscellaneous Store Retailers", "Address": "2749 Kensington Ave", "LATITUDE": 39.990714, "LONGITUDE": -75.123434, "DATE_RANGE_START": 2019, "Total Visits": 142.0, "Total Visitors": 135.0, "POI_CBG": 421010178007.0, "Median Dwell Time": 1.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.123434, 39.990714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "Name": "Greene Street", "Category": "Clothing Stores", "Address": "8524 Germantown Ave", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2019, "Total Visits": 775.0, "Total Visitors": 598.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 31.0, "Total Spend": 2610.0, "Total Transactions": 65.0, "Total Customers": 60.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 25.78 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg9-ty9", "Name": "Milano Di Rouge", "Category": "Clothing Stores", "Address": "1509 Spring Garden St", "LATITUDE": 39.962944, "LONGITUDE": -75.163384, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 5.0, "Total Spend": 851.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 57.8 }, "geometry": { "type": "Point", "coordinates": [ -75.163384, 39.962944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-n89", "Name": "Cramer's Uniforms", "Category": "Clothing Stores", "Address": "5226 Market St", "LATITUDE": 39.959947, "LONGITUDE": -75.225879, "DATE_RANGE_START": 2019, "Total Visits": 31152.0, "Total Visitors": 11593.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 21.0, "Total Spend": 550.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225879, 39.959947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p8j-cqz", "Name": "Infinity Jewelers", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "3528 Cottman Ave", "LATITUDE": 40.03712, "LONGITUDE": -75.041991, "DATE_RANGE_START": 2019, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 60.0, "Total Spend": 661.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 120.0, "Median Spend per Customer": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041991, 40.03712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-phy-kcq", "Name": "La Parrillada", "Category": "Restaurants and Other Eating Places", "Address": "5002 N 5th St", "LATITUDE": 40.027461, "LONGITUDE": -75.132799, "DATE_RANGE_START": 2019, "Total Visits": 75.0, "Total Visitors": 37.0, "POI_CBG": 421010285001.0, "Median Dwell Time": 160.0, "Total Spend": 251.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 50.11 }, "geometry": { "type": "Point", "coordinates": [ -75.132799, 40.027461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7236 Germantown Ave # 40", "LATITUDE": 40.060844, "LONGITUDE": -75.192031, "DATE_RANGE_START": 2019, "Total Visits": 665.0, "Total Visitors": 513.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 3.0, "Total Spend": 52557.0, "Total Transactions": 4869.0, "Total Customers": 2249.0, "Median Spend per Transaction": 7.45, "Median Spend per Customer": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.192031, 40.060844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3300 Market St", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2019, "Total Visits": 3858.0, "Total Visitors": 2192.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 10.0, "Total Spend": 97065.0, "Total Transactions": 13732.0, "Total Customers": 5164.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1901 W Oregon Ave", "LATITUDE": 39.918299, "LONGITUDE": -75.180698, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 118.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 7109.0, "Total Transactions": 423.0, "Total Customers": 283.0, "Median Spend per Transaction": 8.49, "Median Spend per Customer": 13.39 }, "geometry": { "type": "Point", "coordinates": [ -75.180698, 39.918299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-3bk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1500 W Moyamensing Ave", "LATITUDE": 39.916261, "LONGITUDE": -75.173391, "DATE_RANGE_START": 2019, "Total Visits": 306.0, "Total Visitors": 243.0, "POI_CBG": 421010039022.0, "Median Dwell Time": 3.0, "Total Spend": 2725.0, "Total Transactions": 123.0, "Total Customers": 65.0, "Median Spend per Transaction": 13.7, "Median Spend per Customer": 37.29 }, "geometry": { "type": "Point", "coordinates": [ -75.173391, 39.916261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "Name": "Nautica", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087648, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2019, "Total Visits": 886.0, "Total Visitors": 771.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 3135.0, "Total Transactions": 87.0, "Total Customers": 75.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "Name": "Off Broadway Shoe Warehouse", "Category": "Shoe Stores", "Address": "1477 Franklin Mills Cir", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2019, "Total Visits": 961.0, "Total Visitors": 873.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 3611.0, "Total Transactions": 42.0, "Total Customers": 33.0, "Median Spend per Transaction": 81.23, "Median Spend per Customer": 72.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "Name": "Saks Off Fifth", "Category": "Department Stores", "Address": "1618 Franklin Mills Cir", "LATITUDE": 40.088158, "LONGITUDE": -74.961632, "DATE_RANGE_START": 2019, "Total Visits": 3396.0, "Total Visitors": 2812.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 29.0, "Total Spend": 21649.0, "Total Transactions": 185.0, "Total Customers": 168.0, "Median Spend per Transaction": 66.98, "Median Spend per Customer": 66.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961632, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-y5f", "Name": "Philly Dream Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "254 South St", "LATITUDE": 39.94126, "LONGITUDE": -75.147502, "DATE_RANGE_START": 2019, "Total Visits": 1489.0, "Total Visitors": 1156.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 45.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147502, 39.94126 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-dqf", "Name": "Good Neighbor Mini Market", "Category": "Specialty Food Stores", "Address": "5131 Chester Ave", "LATITUDE": 39.941908, "LONGITUDE": -75.220217, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 42.0, "POI_CBG": 421010073001.0, "Median Dwell Time": 178.0, "Total Spend": 192.0, "Total Transactions": 37.0, "Total Customers": 15.0, "Median Spend per Transaction": 3.37, "Median Spend per Customer": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.220217, 39.941908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044956, "LONGITUDE": -75.143877, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 4.0, "Total Spend": 7218.0, "Total Transactions": 333.0, "Total Customers": 267.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 23.46 }, "geometry": { "type": "Point", "coordinates": [ -75.143877, 40.044956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-syv", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "2000 Germantown Ave", "LATITUDE": 39.981631, "LONGITUDE": -75.144038, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 18.0, "POI_CBG": 421010156002.0, "Median Dwell Time": 4.0, "Total Spend": 989.0, "Total Transactions": 62.0, "Total Customers": 60.0, "Median Spend per Transaction": 11.6, "Median Spend per Customer": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144038, 39.981631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-st9", "Name": "Cantina Los Caballitos", "Category": "Restaurants and Other Eating Places", "Address": "1651 E Passyunk Ave", "LATITUDE": 39.928871, "LONGITUDE": -75.16446, "DATE_RANGE_START": 2019, "Total Visits": 376.0, "Total Visitors": 277.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 61.0, "Total Spend": 55759.0, "Total Transactions": 1278.0, "Total Customers": 1074.0, "Median Spend per Transaction": 36.46, "Median Spend per Customer": 41.48 }, "geometry": { "type": "Point", "coordinates": [ -75.16446, 39.928871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "Name": "Smokey Joes", "Category": "Restaurants and Other Eating Places", "Address": "210 S 40th St", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2019, "Total Visits": 441.0, "Total Visitors": 381.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 28.0, "Total Spend": 7922.0, "Total Transactions": 358.0, "Total Customers": 248.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "Name": "Garden's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1902 W Girard Ave", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 90.0, "POI_CBG": 421010139003.0, "Median Dwell Time": 10.0, "Total Spend": 1924.0, "Total Transactions": 152.0, "Total Customers": 92.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@63s-dvr-j9z", "Name": "Kingston 11", "Category": "Restaurants and Other Eating Places", "Address": "6405 Woodland Ave", "LATITUDE": 39.926444, "LONGITUDE": -75.233508, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 57.0, "POI_CBG": 421010066003.0, "Median Dwell Time": 9.0, "Total Spend": 289.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 29.3, "Median Spend per Customer": 30.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233508, 39.926444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-brk", "Name": "East Coast Wings + Grill", "Category": "Restaurants and Other Eating Places", "Address": "2539 Castor Ave", "LATITUDE": 39.993916, "LONGITUDE": -75.091363, "DATE_RANGE_START": 2019, "Total Visits": 225.0, "Total Visitors": 193.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 17.0, "Total Spend": 8380.0, "Total Transactions": 213.0, "Total Customers": 175.0, "Median Spend per Transaction": 34.98, "Median Spend per Customer": 38.31 }, "geometry": { "type": "Point", "coordinates": [ -75.091363, 39.993916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p8n-btv", "Name": "El New Sunrise Mini Market", "Category": "Grocery Stores", "Address": "2701 Levick St", "LATITUDE": 40.03352, "LONGITUDE": -75.066168, "DATE_RANGE_START": 2019, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 9.0, "Total Spend": 77.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.066168, 40.03352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-8jv", "Name": "The Nile Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6008 Germantown Ave", "LATITUDE": 40.039401, "LONGITUDE": -75.177975, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 129.0, "Total Spend": 1857.0, "Total Transactions": 82.0, "Total Customers": 67.0, "Median Spend per Transaction": 17.7, "Median Spend per Customer": 21.16 }, "geometry": { "type": "Point", "coordinates": [ -75.177975, 40.039401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp5-g49", "Name": "Aramingo's Best Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2885 Aramingo Ave", "LATITUDE": 39.984627, "LONGITUDE": -75.113365, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 35.0, "POI_CBG": 421010179003.0, "Median Dwell Time": 13.0, "Total Spend": 2624.0, "Total Transactions": 123.0, "Total Customers": 63.0, "Median Spend per Transaction": 20.2, "Median Spend per Customer": 30.81 }, "geometry": { "type": "Point", "coordinates": [ -75.113365, 39.984627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "Name": "Nova Star Pharmacy", "Category": "Health and Personal Care Stores", "Address": "301 E Girard Ave", "LATITUDE": 39.969977, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2019, "Total Visits": 45.0, "Total Visitors": 42.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 270.0, "Total Spend": 1247.0, "Total Transactions": 35.0, "Total Customers": 23.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 24.09 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmf-qfz", "Name": "Entree Byob", "Category": "Restaurants and Other Eating Places", "Address": "1608 South St", "LATITUDE": 39.943935, "LONGITUDE": -75.169156, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 105.0, "Total Spend": 2178.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 70.33, "Median Spend per Customer": 70.33 }, "geometry": { "type": "Point", "coordinates": [ -75.169156, 39.943935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kxq", "Name": "Benjamin Lovell Shoes", "Category": "Shoe Stores", "Address": "60 N 3rd St", "LATITUDE": 39.951787, "LONGITUDE": -75.145456, "DATE_RANGE_START": 2019, "Total Visits": 738.0, "Total Visitors": 570.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 96.0, "Total Spend": 4935.0, "Total Transactions": 48.0, "Total Customers": 47.0, "Median Spend per Transaction": 99.99, "Median Spend per Customer": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145456, 39.951787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "Name": "Jack B Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "748 S 4th St", "LATITUDE": 39.939115, "LONGITUDE": -75.149838, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 98.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 8.0, "Total Spend": 2237.0, "Total Transactions": 35.0, "Total Customers": 28.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149838, 39.939115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-ygk", "Name": "Straight From the Heart Bookstore", "Category": "Book Stores and News Dealers", "Address": "13500 Philmont Ave", "LATITUDE": 40.130239, "LONGITUDE": -75.016705, "DATE_RANGE_START": 2019, "Total Visits": 1597.0, "Total Visitors": 768.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 80.0, "Total Spend": 297.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 20.26, "Median Spend per Customer": 45.67 }, "geometry": { "type": "Point", "coordinates": [ -75.016705, 40.130239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "Name": "Bloomingdale's Outlet Philadelphia", "Category": "Department Stores", "Address": "1625 Chestnut St Ste 240 248", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 102.0, "Total Spend": 13231.0, "Total Transactions": 202.0, "Total Customers": 185.0, "Median Spend per Transaction": 53.98, "Median Spend per Customer": 54.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22n@63s-dw9-7nq", "Name": "Sunglass Hut", "Category": "Health and Personal Care Stores", "Address": "8500 Essington Ave Spc M 22", "LATITUDE": 39.873547, "LONGITUDE": -75.247282, "DATE_RANGE_START": 2019, "Total Visits": 7088.0, "Total Visitors": 6390.0, "POI_CBG": 420459800001.0, "Median Dwell Time": 41.0, "Total Spend": 6303.0, "Total Transactions": 35.0, "Total Customers": 32.0, "Median Spend per Transaction": 189.84, "Median Spend per Customer": 189.84 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.873547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmf-mc5", "Name": "Assembly Rooftop Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1840 Benjamin Franklin Pkwy", "LATITUDE": 39.956953, "LONGITUDE": -75.169629, "DATE_RANGE_START": 2019, "Total Visits": 9115.0, "Total Visitors": 7169.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 56.0, "Total Spend": 100.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169629, 39.956953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "Name": "New Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2800 W Dauphin St", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2019, "Total Visits": 1083.0, "Total Visitors": 573.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 122.0, "Total Spend": 1044.0, "Total Transactions": 68.0, "Total Customers": 48.0, "Median Spend per Transaction": 14.06, "Median Spend per Customer": 16.31 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wc5", "Name": "Kids Foot Locker", "Category": "Shoe Stores", "Address": "1376 Franklin Mills Cir Spc 729", "LATITUDE": 40.08622, "LONGITUDE": -74.962809, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 233.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 850.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 56.5, "Median Spend per Customer": 56.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962809, 40.08622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-j35", "Name": "18th Street Apothecary", "Category": "Health and Personal Care Stores", "Address": "113 S 18th St", "LATITUDE": 39.951252, "LONGITUDE": -75.170272, "DATE_RANGE_START": 2019, "Total Visits": 956.0, "Total Visitors": 643.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 194.0, "Total Spend": 1564.0, "Total Transactions": 32.0, "Total Customers": 27.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.98 }, "geometry": { "type": "Point", "coordinates": [ -75.170272, 39.951252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-q9f", "Name": "BEL Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "10101 Verree Rd Ste C", "LATITUDE": 40.105145, "LONGITUDE": -75.032134, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 55.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 4.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.64, "Median Spend per Customer": 13.64 }, "geometry": { "type": "Point", "coordinates": [ -75.032134, 40.105145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmb-ce5", "Name": "Angelo's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "736 S 9th St", "LATITUDE": 39.940639, "LONGITUDE": -75.157632, "DATE_RANGE_START": 2019, "Total Visits": 110.0, "Total Visitors": 102.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 13.0, "Total Spend": 374.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.33, "Median Spend per Customer": 37.65 }, "geometry": { "type": "Point", "coordinates": [ -75.157632, 39.940639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-835", "Name": "Little Thai Market", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953099, "LONGITUDE": -75.159123, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 4225.0, "Total Transactions": 275.0, "Total Customers": 247.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.159123, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9w-sbk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "13000 Bustleton Ave", "LATITUDE": 40.124225, "LONGITUDE": -75.015653, "DATE_RANGE_START": 2019, "Total Visits": 1771.0, "Total Visitors": 1284.0, "POI_CBG": 421010365013.0, "Median Dwell Time": 4.0, "Total Spend": 988.0, "Total Transactions": 45.0, "Total Customers": 32.0, "Median Spend per Transaction": 16.59, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.015653, 40.124225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgj-4qf", "Name": "Eddie's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1200 W Berks St", "LATITUDE": 39.980774, "LONGITUDE": -75.153402, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 82.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 1.0, "Total Spend": 370.0, "Total Transactions": 60.0, "Total Customers": 53.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 5.75 }, "geometry": { "type": "Point", "coordinates": [ -75.153402, 39.980774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-rhq", "Name": "Singh Tire Center", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "240 Diamond St", "LATITUDE": 39.982111, "LONGITUDE": -75.138488, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 38.0, "POI_CBG": 421010156001.0, "Median Dwell Time": 8.0, "Total Spend": 150.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138488, 39.982111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "Name": "Golden Nugget Jewelers III", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "800 Chestnut St", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2019, "Total Visits": 3971.0, "Total Visitors": 2995.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 33.0, "Total Spend": 95180.0, "Total Transactions": 53.0, "Total Customers": 47.0, "Median Spend per Transaction": 675.0, "Median Spend per Customer": 850.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "Name": "Barcade", "Category": "Restaurants and Other Eating Places", "Address": "1114 Frankford Ave", "LATITUDE": 39.96746, "LONGITUDE": -75.134594, "DATE_RANGE_START": 2019, "Total Visits": 1236.0, "Total Visitors": 1006.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 41.0, "Total Spend": 28427.0, "Total Transactions": 1154.0, "Total Customers": 978.0, "Median Spend per Transaction": 18.4, "Median Spend per Customer": 20.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134594, 39.96746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnt-tgk", "Name": "Hinge Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2652 E Somerset St", "LATITUDE": 39.979226, "LONGITUDE": -75.112172, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 57.0, "POI_CBG": 421010180011.0, "Median Dwell Time": 169.0, "Total Spend": 2500.0, "Total Transactions": 60.0, "Total Customers": 48.0, "Median Spend per Transaction": 37.24, "Median Spend per Customer": 40.34 }, "geometry": { "type": "Point", "coordinates": [ -75.112172, 39.979226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-8y9", "Name": "Dollar Days Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "309 S 48th St", "LATITUDE": 39.952899, "LONGITUDE": -75.218099, "DATE_RANGE_START": 2019, "Total Visits": 710.0, "Total Visitors": 508.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 57.0, "Total Spend": 2912.0, "Total Transactions": 203.0, "Total Customers": 158.0, "Median Spend per Transaction": 11.27, "Median Spend per Customer": 13.76 }, "geometry": { "type": "Point", "coordinates": [ -75.218099, 39.952899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9s-92k", "Name": "House Of Beauty", "Category": "Health and Personal Care Stores", "Address": "2191 Hornig Rd", "LATITUDE": 40.114993, "LONGITUDE": -74.997145, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 72.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 23.0, "Total Spend": 413.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 123.84, "Median Spend per Customer": 123.84 }, "geometry": { "type": "Point", "coordinates": [ -74.997145, 40.114993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-hwk", "Name": "Mr Bar Stool", "Category": "Furniture Stores", "Address": "167 N 2nd St", "LATITUDE": 39.953666, "LONGITUDE": -75.142763, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 112.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 1.0, "Total Spend": 1567.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 470.34, "Median Spend per Customer": 470.34 }, "geometry": { "type": "Point", "coordinates": [ -75.142763, 39.953666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "Name": "Balducci's", "Category": "Grocery Stores", "Address": "1 Garage Access Rd Terminal C", "LATITUDE": 39.878244, "LONGITUDE": -75.24235, "DATE_RANGE_START": 2019, "Total Visits": 70643.0, "Total Visitors": 56252.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 12.0, "Total Spend": 2213.0, "Total Transactions": 165.0, "Total Customers": 158.0, "Median Spend per Transaction": 11.52, "Median Spend per Customer": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.24235, 39.878244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5715 N Broad St", "LATITUDE": 40.040308, "LONGITUDE": -75.143944, "DATE_RANGE_START": 2019, "Total Visits": 738.0, "Total Visitors": 526.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 8.0, "Total Spend": 3132.0, "Total Transactions": 210.0, "Total Customers": 148.0, "Median Spend per Transaction": 10.22, "Median Spend per Customer": 12.03 }, "geometry": { "type": "Point", "coordinates": [ -75.143944, 40.040308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-grk", "Name": "Bargain world", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4839 Woodland Ave", "LATITUDE": 39.941099, "LONGITUDE": -75.21263, "DATE_RANGE_START": 2019, "Total Visits": 380.0, "Total Visitors": 270.0, "POI_CBG": 421010074002.0, "Median Dwell Time": 22.0, "Total Spend": 133.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.59, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.21263, 39.941099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1334 Windrim Ave", "LATITUDE": 40.029597, "LONGITUDE": -75.145391, "DATE_RANGE_START": 2019, "Total Visits": 490.0, "Total Visitors": 360.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 5.0, "Total Spend": 1579.0, "Total Transactions": 88.0, "Total Customers": 57.0, "Median Spend per Transaction": 9.99, "Median Spend per Customer": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.145391, 40.029597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pmb-btv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1051 South St", "LATITUDE": 39.943154, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2019, "Total Visits": 3506.0, "Total Visitors": 2237.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 11.0, "Total Spend": 14829.0, "Total Transactions": 790.0, "Total Customers": 476.0, "Median Spend per Transaction": 12.45, "Median Spend per Customer": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.943154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-47q", "Name": "Beauty Time", "Category": "Health and Personal Care Stores", "Address": "5694 Rising Sun Ave Ste 9", "LATITUDE": 40.040779, "LONGITUDE": -75.109561, "DATE_RANGE_START": 2019, "Total Visits": 486.0, "Total Visitors": 408.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 13.0, "Total Spend": 6801.0, "Total Transactions": 238.0, "Total Customers": 192.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 23.72 }, "geometry": { "type": "Point", "coordinates": [ -75.109561, 40.040779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "Name": "BP", "Category": "Gasoline Stations", "Address": "5801 Oxford Ave", "LATITUDE": 40.032516, "LONGITUDE": -75.084558, "DATE_RANGE_START": 2019, "Total Visits": 3483.0, "Total Visitors": 2262.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 5.0, "Total Spend": 4449.0, "Total Transactions": 227.0, "Total Customers": 182.0, "Median Spend per Transaction": 13.95, "Median Spend per Customer": 16.89 }, "geometry": { "type": "Point", "coordinates": [ -75.084558, 40.032516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-php-pgk", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "7111 Stenton Ave", "LATITUDE": 40.058417, "LONGITUDE": -75.162783, "DATE_RANGE_START": 2019, "Total Visits": 280.0, "Total Visitors": 210.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 6.0, "Total Spend": 591.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 24.09, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162783, 40.058417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "Name": "Burlington", "Category": "Clothing Stores", "Address": "9940 Roosevelt Blvd", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 53.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 408.0, "Total Spend": 5396.0, "Total Transactions": 127.0, "Total Customers": 103.0, "Median Spend per Transaction": 31.97, "Median Spend per Customer": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-php-s3q", "Name": "Tejade Grocery", "Category": "Grocery Stores", "Address": "1601 E Tulpehocken St", "LATITUDE": 40.060966, "LONGITUDE": -75.161233, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010264004.0, "Median Dwell Time": 13.0, "Total Spend": 884.0, "Total Transactions": 128.0, "Total Customers": 43.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 16.57 }, "geometry": { "type": "Point", "coordinates": [ -75.161233, 40.060966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "Name": "East Falls Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4024 Ridge Ave", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010170001.0, "Median Dwell Time": 4.0, "Total Spend": 14630.0, "Total Transactions": 493.0, "Total Customers": 345.0, "Median Spend per Transaction": 23.71, "Median Spend per Customer": 26.78 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmd-sbk", "Name": "Bicycle Therapy", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2211 South St", "LATITUDE": 39.945493, "LONGITUDE": -75.178987, "DATE_RANGE_START": 2019, "Total Visits": 88.0, "Total Visitors": 82.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 7.0, "Total Spend": 10681.0, "Total Transactions": 67.0, "Total Customers": 63.0, "Median Spend per Transaction": 75.6, "Median Spend per Customer": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.178987, 39.945493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-nwk", "Name": "Centro Musical", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "464 W Lehigh Ave", "LATITUDE": 39.991818, "LONGITUDE": -75.139984, "DATE_RANGE_START": 2019, "Total Visits": 1149.0, "Total Visitors": 646.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 408.0, "Total Spend": 109.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 39.991818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "Name": "The Last Word Bookshop", "Category": "Book Stores and News Dealers", "Address": "220 S 40th St", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2019, "Total Visits": 1849.0, "Total Visitors": 1526.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 79.0, "Total Spend": 3053.0, "Total Transactions": 168.0, "Total Customers": 163.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 14.94 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnw-yvz", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "901 W Girard Ave Ste 1B", "LATITUDE": 39.97112, "LONGITUDE": -75.151073, "DATE_RANGE_START": 2019, "Total Visits": 1416.0, "Total Visitors": 1034.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 6.0, "Total Spend": 473.0, "Total Transactions": 28.0, "Total Customers": 23.0, "Median Spend per Transaction": 13.63, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.151073, 39.97112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-ks5", "Name": "ICI Macarons & Cafe", "Category": "Restaurants and Other Eating Places", "Address": "230 Arch St", "LATITUDE": 39.951938, "LONGITUDE": -75.144396, "DATE_RANGE_START": 2019, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 240.0, "Total Spend": 3979.0, "Total Transactions": 178.0, "Total Customers": 140.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144396, 39.951938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj9-grk", "Name": "Nedro Food Market", "Category": "Grocery Stores", "Address": "5900 N 21st St", "LATITUDE": 40.043815, "LONGITUDE": -75.156105, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010279014.0, "Median Dwell Time": 47.0, "Total Spend": 220.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 13.91, "Median Spend per Customer": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.156105, 40.043815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "8500 Henry Ave Ste 10", "LATITUDE": 40.063003, "LONGITUDE": -75.237723, "DATE_RANGE_START": 2019, "Total Visits": 483.0, "Total Visitors": 395.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 5.0, "Total Spend": 22348.0, "Total Transactions": 533.0, "Total Customers": 423.0, "Median Spend per Transaction": 33.45, "Median Spend per Customer": 40.34 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 40.063003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "Name": "Friendship Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "3300 Cottman Ave", "LATITUDE": 40.03925, "LONGITUDE": -75.04588, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 61.0, "Total Spend": 154.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.49, "Median Spend per Customer": 23.25 }, "geometry": { "type": "Point", "coordinates": [ -75.04588, 40.03925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-xwk", "Name": "Walnut Street Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2929 Walnut St", "LATITUDE": 39.952066, "LONGITUDE": -75.183753, "DATE_RANGE_START": 2019, "Total Visits": 10318.0, "Total Visitors": 5850.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 301.0, "Total Spend": 6145.0, "Total Transactions": 263.0, "Total Customers": 180.0, "Median Spend per Transaction": 11.07, "Median Spend per Customer": 29.91 }, "geometry": { "type": "Point", "coordinates": [ -75.183753, 39.952066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-phy-rc5", "Name": "TABU Hookah Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4535 N 5th St", "LATITUDE": 40.02058, "LONGITUDE": -75.133817, "DATE_RANGE_START": 2019, "Total Visits": 788.0, "Total Visitors": 543.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 56.0, "Total Spend": 41700.0, "Total Transactions": 2095.0, "Total Customers": 1018.0, "Median Spend per Transaction": 16.01, "Median Spend per Customer": 26.02 }, "geometry": { "type": "Point", "coordinates": [ -75.133817, 40.02058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pm8-kxq", "Name": "Broad Street Bullies", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1100 Pattison Ave", "LATITUDE": 39.904586, "LONGITUDE": -75.16953, "DATE_RANGE_START": 2019, "Total Visits": 3740.0, "Total Visitors": 3152.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 51.0, "Total Spend": 2661.0, "Total Transactions": 68.0, "Total Customers": 57.0, "Median Spend per Transaction": 31.75, "Median Spend per Customer": 40.08 }, "geometry": { "type": "Point", "coordinates": [ -75.16953, 39.904586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "Name": "Drinkers Pub", "Category": "Restaurants and Other Eating Places", "Address": "1903 Chestnut St", "LATITUDE": 39.952101, "LONGITUDE": -75.17208, "DATE_RANGE_START": 2019, "Total Visits": 738.0, "Total Visitors": 631.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 5.0, "Total Spend": 42933.0, "Total Transactions": 1806.0, "Total Customers": 1244.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17208, 39.952101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-4vz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "9201 Roosevelt Blvd", "LATITUDE": 40.077481, "LONGITUDE": -75.031225, "DATE_RANGE_START": 2019, "Total Visits": 413.0, "Total Visitors": 401.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 3010.0, "Total Transactions": 213.0, "Total Customers": 187.0, "Median Spend per Transaction": 10.97, "Median Spend per Customer": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.031225, 40.077481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pg8-ks5", "Name": "Rybrew", "Category": "Restaurants and Other Eating Places", "Address": "2816 W Girard Ave", "LATITUDE": 39.974204, "LONGITUDE": -75.182529, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 25.0, "Total Spend": 20303.0, "Total Transactions": 1231.0, "Total Customers": 705.0, "Median Spend per Transaction": 13.48, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.182529, 39.974204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pm5-bzf", "Name": "Mr Wish USA", "Category": "Restaurants and Other Eating Places", "Address": "320 W Oregon Ave", "LATITUDE": 39.912953, "LONGITUDE": -75.153917, "DATE_RANGE_START": 2019, "Total Visits": 338.0, "Total Visitors": 268.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 22.0, "Total Spend": 14.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 4.32, "Median Spend per Customer": 4.32 }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.912953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "200 W Washington Sq", "LATITUDE": 39.94797, "LONGITUDE": -75.154128, "DATE_RANGE_START": 2019, "Total Visits": 675.0, "Total Visitors": 573.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 5.0, "Total Spend": 9338.0, "Total Transactions": 1507.0, "Total Customers": 963.0, "Median Spend per Transaction": 4.81, "Median Spend per Customer": 5.89 }, "geometry": { "type": "Point", "coordinates": [ -75.154128, 39.94797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-47q", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2298 W Ritner St", "LATITUDE": 39.921468, "LONGITUDE": -75.184708, "DATE_RANGE_START": 2019, "Total Visits": 378.0, "Total Visitors": 298.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 11.0, "Total Spend": 6024.0, "Total Transactions": 38.0, "Total Customers": 37.0, "Median Spend per Transaction": 24.28, "Median Spend per Customer": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.184708, 39.921468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5001 Rising Sun Ave", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2019, "Total Visits": 1031.0, "Total Visitors": 836.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 5.0, "Total Spend": 5155.0, "Total Transactions": 949.0, "Total Customers": 440.0, "Median Spend per Transaction": 4.6, "Median Spend per Customer": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pm9-wc5", "Name": "Scoop DeVille", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949779, "LONGITUDE": -75.148514, "DATE_RANGE_START": 2019, "Total Visits": 4401.0, "Total Visitors": 3576.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 28.0, "Total Spend": 5197.0, "Total Transactions": 505.0, "Total Customers": 468.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.148514, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj9-5j9", "Name": "D & D Mini Market", "Category": "Grocery Stores", "Address": "5900 N 12th St", "LATITUDE": 40.042578, "LONGITUDE": -75.140373, "DATE_RANGE_START": 2019, "Total Visits": 98.0, "Total Visitors": 60.0, "POI_CBG": 421010276003.0, "Median Dwell Time": 7.0, "Total Spend": 88.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.45, "Median Spend per Customer": 7.79 }, "geometry": { "type": "Point", "coordinates": [ -75.140373, 40.042578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "Name": "S and J Seafood", "Category": "Specialty Food Stores", "Address": "713 S 52nd St", "LATITUDE": 39.948539, "LONGITUDE": -75.227093, "DATE_RANGE_START": 2019, "Total Visits": 418.0, "Total Visitors": 232.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 382.0, "Total Spend": 2507.0, "Total Transactions": 72.0, "Total Customers": 60.0, "Median Spend per Transaction": 23.83, "Median Spend per Customer": 25.14 }, "geometry": { "type": "Point", "coordinates": [ -75.227093, 39.948539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9m-gtv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3200 92 Red Lion Road Suite 250", "LATITUDE": 40.080307, "LONGITUDE": -74.99459, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 222.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 5.0, "Total Spend": 740.0, "Total Transactions": 37.0, "Total Customers": 33.0, "Median Spend per Transaction": 16.24, "Median Spend per Customer": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -74.99459, 40.080307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-6hq", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1186 Franklin Mills Cir", "LATITUDE": 40.087733, "LONGITUDE": -74.961181, "DATE_RANGE_START": 2019, "Total Visits": 886.0, "Total Visitors": 771.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 1071.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 33.74 }, "geometry": { "type": "Point", "coordinates": [ -74.961181, 40.087733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgk-z9f", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "3977 Ford Rd", "LATITUDE": 39.999874, "LONGITUDE": -75.209033, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 27.0, "POI_CBG": 421010122041.0, "Median Dwell Time": 3.0, "Total Spend": 174.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 10.9, "Median Spend per Customer": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.209033, 39.999874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-n5z", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St", "LATITUDE": 39.954145, "LONGITUDE": -75.201008, "DATE_RANGE_START": 2019, "Total Visits": 551.0, "Total Visitors": 366.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 91.0, "Total Spend": 790.0, "Total Transactions": 52.0, "Total Customers": 50.0, "Median Spend per Transaction": 13.38, "Median Spend per Customer": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.201008, 39.954145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pm4-2x5", "Name": "Stadium Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2400 S 10th St", "LATITUDE": 39.919559, "LONGITUDE": -75.163925, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 40.0, "POI_CBG": 421010040021.0, "Median Dwell Time": 7.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.08, "Median Spend per Customer": 20.08 }, "geometry": { "type": "Point", "coordinates": [ -75.163925, 39.919559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pnx-cbk", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "1451 E Columbia Ave", "LATITUDE": 39.97443, "LONGITUDE": -75.13265, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 43.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 5.0, "Total Spend": 3125.0, "Total Transactions": 213.0, "Total Customers": 190.0, "Median Spend per Transaction": 11.63, "Median Spend per Customer": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.13265, 39.97443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8902 Frankford Ave", "LATITUDE": 40.050984, "LONGITUDE": -75.010119, "DATE_RANGE_START": 2019, "Total Visits": 984.0, "Total Visitors": 560.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 2.0, "Total Spend": 4525.0, "Total Transactions": 773.0, "Total Customers": 340.0, "Median Spend per Transaction": 4.96, "Median Spend per Customer": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.010119, 40.050984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "Name": "RIM Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1172 S 9th St", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2019, "Total Visits": 77.0, "Total Visitors": 72.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 1.0, "Total Spend": 705.0, "Total Transactions": 43.0, "Total Customers": 38.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-jd9", "Name": "The Children's Boutique", "Category": "Clothing Stores", "Address": "128 S 17th St", "LATITUDE": 39.950539, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2019, "Total Visits": 2300.0, "Total Visitors": 1672.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 43.0, "Total Spend": 1393.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 59.12, "Median Spend per Customer": 59.12 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "Name": "Popi's Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3120 S 20th St", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 93.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 38.0, "Total Spend": 7161.0, "Total Transactions": 93.0, "Total Customers": 77.0, "Median Spend per Transaction": 65.34, "Median Spend per Customer": 72.7 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "Name": "Aldo Lamberti Trattoria", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.874852, "LONGITUDE": -75.241162, "DATE_RANGE_START": 2019, "Total Visits": 19356.0, "Total Visitors": 16699.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 41.0, "Total Spend": 41.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.33, "Median Spend per Customer": 12.33 }, "geometry": { "type": "Point", "coordinates": [ -75.241162, 39.874852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnw-nh5", "Name": "Sancho Pistolas", "Category": "Restaurants and Other Eating Places", "Address": "19 W Girard Ave", "LATITUDE": 39.969014, "LONGITUDE": -75.135132, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 278.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 46.0, "Total Spend": 1794.0, "Total Transactions": 40.0, "Total Customers": 38.0, "Median Spend per Transaction": 32.61, "Median Spend per Customer": 31.92 }, "geometry": { "type": "Point", "coordinates": [ -75.135132, 39.969014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "Name": "Higher Grounds", "Category": "Restaurants and Other Eating Places", "Address": "631 N 3rd St", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010367001.0, "Median Dwell Time": null, "Total Spend": 2039.0, "Total Transactions": 203.0, "Total Customers": 122.0, "Median Spend per Transaction": 8.9, "Median Spend per Customer": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p85-7wk", "Name": "Merc Bros Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "8108 Roosevelt Blvd", "LATITUDE": 40.058617, "LONGITUDE": -75.046078, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 74.0, "Total Spend": 100.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 30.02, "Median Spend per Customer": 30.02 }, "geometry": { "type": "Point", "coordinates": [ -75.046078, 40.058617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-2hq", "Name": "O Sole Mio", "Category": "Restaurants and Other Eating Places", "Address": "824 S 8th St", "LATITUDE": 39.937827, "LONGITUDE": -75.148269, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 35.0, "POI_CBG": 421010017001.0, "Median Dwell Time": 779.0, "Total Spend": 4777.0, "Total Transactions": 431.0, "Total Customers": 200.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 18.08 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 39.937827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pnx-bzf", "Name": "Heffe", "Category": "Restaurants and Other Eating Places", "Address": "1431 Frankford Ave", "LATITUDE": 39.973095, "LONGITUDE": -75.13376, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 38.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 235.0, "Total Spend": 31.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.13376, 39.973095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2539 Castor Ave", "LATITUDE": 39.991689, "LONGITUDE": -75.090963, "DATE_RANGE_START": 2019, "Total Visits": 6053.0, "Total Visitors": 3646.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 17.0, "Total Spend": 84954.0, "Total Transactions": 964.0, "Total Customers": 581.0, "Median Spend per Transaction": 40.98, "Median Spend per Customer": 53.88 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 39.991689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "Name": "Claudio's Specialty Foods", "Category": "Specialty Food Stores", "Address": "924 S 9th St # 26", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 47.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 82.0, "Total Spend": 1715.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 26.8, "Median Spend per Customer": 30.21 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "Name": "Rapoport Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6934 Bustleton Ave", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2019, "Total Visits": 311.0, "Total Visitors": 263.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 55.0, "Total Spend": 284.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 17.73, "Median Spend per Customer": 21.77 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-225@628-pp5-dgk", "Name": "A & F Pharmacy", "Category": "Health and Personal Care Stores", "Address": "3200 Frankford Ave", "LATITUDE": 39.993258, "LONGITUDE": -75.110206, "DATE_RANGE_START": 2019, "Total Visits": 716.0, "Total Visitors": 466.0, "POI_CBG": 421010188005.0, "Median Dwell Time": 342.0, "Total Spend": 288.0, "Total Transactions": 17.0, "Total Customers": 15.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 15.88 }, "geometry": { "type": "Point", "coordinates": [ -75.110206, 39.993258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1 Penn Sq E", "LATITUDE": 39.952459, "LONGITUDE": -75.162267, "DATE_RANGE_START": 2019, "Total Visits": 7859.0, "Total Visitors": 5342.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 120.0, "Total Spend": 7469.0, "Total Transactions": 1584.0, "Total Customers": 823.0, "Median Spend per Transaction": 4.1, "Median Spend per Customer": 5.63 }, "geometry": { "type": "Point", "coordinates": [ -75.162267, 39.952459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5301 Chew Ave", "LATITUDE": 40.043491, "LONGITUDE": -75.159296, "DATE_RANGE_START": 2019, "Total Visits": 406.0, "Total Visitors": 280.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 6.0, "Total Spend": 4583.0, "Total Transactions": 790.0, "Total Customers": 448.0, "Median Spend per Transaction": 4.72, "Median Spend per Customer": 7.03 }, "geometry": { "type": "Point", "coordinates": [ -75.159296, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "Name": "LIDS", "Category": "Clothing Stores", "Address": "1301 Franklin Mills Cir", "LATITUDE": 40.085593, "LONGITUDE": -74.962215, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 58.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 88.0, "Total Spend": 1631.0, "Total Transactions": 45.0, "Total Customers": 45.0, "Median Spend per Transaction": 37.99, "Median Spend per Customer": 37.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962215, 40.085593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1268 Franklin Mills Cir", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2019, "Total Visits": 813.0, "Total Visitors": 680.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 20.0, "Total Spend": 6122.0, "Total Transactions": 120.0, "Total Customers": 108.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 24.9 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912981, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 58.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 3.0, "Total Spend": 4701.0, "Total Transactions": 75.0, "Total Customers": 67.0, "Median Spend per Transaction": 48.19, "Median Spend per Customer": 43.72 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.912981 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "Name": "A Z Budget", "Category": "Department Stores", "Address": "2914 N Broad St", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2019, "Total Visits": 257.0, "Total Visitors": 190.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 5.0, "Total Spend": 627.0, "Total Transactions": 27.0, "Total Customers": 27.0, "Median Spend per Transaction": 19.56, "Median Spend per Customer": 19.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2701 N 2nd St", "LATITUDE": 39.991624, "LONGITUDE": -75.134387, "DATE_RANGE_START": 2019, "Total Visits": 258.0, "Total Visitors": 207.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 8.0, "Total Spend": 7291.0, "Total Transactions": 195.0, "Total Customers": 152.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.134387, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5272 Frankford Ave", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2019, "Total Visits": 740.0, "Total Visitors": 473.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 3.0, "Total Spend": 5043.0, "Total Transactions": 1129.0, "Total Customers": 473.0, "Median Spend per Transaction": 3.97, "Median Spend per Customer": 6.15 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-h5z", "Name": "Ground Up Coffee Shop", "Category": "Restaurants and Other Eating Places", "Address": "1926 E Passyunk Ave", "LATITUDE": 39.926043, "LONGITUDE": -75.168183, "DATE_RANGE_START": 2019, "Total Visits": 1537.0, "Total Visitors": 983.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 141.0, "Total Spend": 355.0, "Total Transactions": 62.0, "Total Customers": 42.0, "Median Spend per Transaction": 4.25, "Median Spend per Customer": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168183, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmf-j5f", "Name": "Stir", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1705 Chancellor St", "LATITUDE": 39.949714, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2019, "Total Visits": 7944.0, "Total Visitors": 5157.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 60.0, "Total Spend": 1839.0, "Total Transactions": 78.0, "Total Customers": 50.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.949714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "Name": "Mustard Greens Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "622 S 2nd St", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 123.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 314.0, "Total Spend": 2664.0, "Total Transactions": 42.0, "Total Customers": 40.0, "Median Spend per Transaction": 50.04, "Median Spend per Customer": 52.24 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "3348 Grant Ave", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2019, "Total Visits": 198.0, "Total Visitors": 160.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 12.0, "Total Spend": 681.0, "Total Transactions": 30.0, "Total Customers": 25.0, "Median Spend per Transaction": 15.44, "Median Spend per Customer": 18.14 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "Name": "Giovani's Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "1533 Chestnut St", "LATITUDE": 39.951522, "LONGITUDE": -75.166746, "DATE_RANGE_START": 2019, "Total Visits": 2998.0, "Total Visitors": 2026.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 45.0, "Total Spend": 12121.0, "Total Transactions": 825.0, "Total Customers": 565.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166746, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "Name": "Best In Town Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7971 Castor Ave", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2019, "Total Visits": 107.0, "Total Visitors": 97.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 4.0, "Total Spend": 1590.0, "Total Transactions": 82.0, "Total Customers": 63.0, "Median Spend per Transaction": 16.56, "Median Spend per Customer": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-y9z", "Name": "Alyan's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "603 S 4th St", "LATITUDE": 39.941428, "LONGITUDE": -75.149062, "DATE_RANGE_START": 2019, "Total Visits": 3623.0, "Total Visitors": 2943.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 21.0, "Total Spend": 4037.0, "Total Transactions": 150.0, "Total Customers": 125.0, "Median Spend per Transaction": 19.02, "Median Spend per Customer": 21.63 }, "geometry": { "type": "Point", "coordinates": [ -75.149062, 39.941428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2743 S Front St", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 213.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 6.0, "Total Spend": 5511.0, "Total Transactions": 461.0, "Total Customers": 368.0, "Median Spend per Transaction": 10.57, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2400 Castor Ave", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2019, "Total Visits": 790.0, "Total Visitors": 613.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 14.0, "Total Spend": 769.0, "Total Transactions": 65.0, "Total Customers": 55.0, "Median Spend per Transaction": 7.23, "Median Spend per Customer": 8.11 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3400 Lancaster Ave Ste 10", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2019, "Total Visits": 625.0, "Total Visitors": 355.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 21.0, "Total Spend": 27893.0, "Total Transactions": 2604.0, "Total Customers": 1499.0, "Median Spend per Transaction": 10.21, "Median Spend per Customer": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "Name": "Tampopo", "Category": "Restaurants and Other Eating Places", "Address": "269 S 44th St", "LATITUDE": 39.953009, "LONGITUDE": -75.210311, "DATE_RANGE_START": 2019, "Total Visits": 708.0, "Total Visitors": 415.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 219.0, "Total Spend": 4800.0, "Total Transactions": 245.0, "Total Customers": 208.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 15.58 }, "geometry": { "type": "Point", "coordinates": [ -75.210311, 39.953009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "Name": "Broad Street Diner", "Category": "Restaurants and Other Eating Places", "Address": "1135 S Broad St", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 153.0, "POI_CBG": 421010023001.0, "Median Dwell Time": 19.0, "Total Spend": 13868.0, "Total Transactions": 556.0, "Total Customers": 471.0, "Median Spend per Transaction": 23.18, "Median Spend per Customer": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmd-hyv", "Name": "Spirit of Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "401 S Columbus Blvd", "LATITUDE": 39.941503, "LONGITUDE": -75.140368, "DATE_RANGE_START": 2019, "Total Visits": 696.0, "Total Visitors": 625.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 121.0, "Total Spend": 7526.0, "Total Transactions": 192.0, "Total Customers": 142.0, "Median Spend per Transaction": 27.5, "Median Spend per Customer": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140368, 39.941503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "Name": "Asia On the Parkway", "Category": "Restaurants and Other Eating Places", "Address": "1700 Benjamin Franklin Pkwy", "LATITUDE": 39.95574, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2019, "Total Visits": 3678.0, "Total Visitors": 2487.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 139.0, "Total Spend": 7025.0, "Total Transactions": 183.0, "Total Customers": 165.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 37.63 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.95574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-d35", "Name": "honeygrow", "Category": "Restaurants and Other Eating Places", "Address": "1601 N Broad St", "LATITUDE": 39.978435, "LONGITUDE": -75.157453, "DATE_RANGE_START": 2019, "Total Visits": 516.0, "Total Visitors": 370.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 313.0, "Total Spend": 538.0, "Total Transactions": 40.0, "Total Customers": 32.0, "Median Spend per Transaction": 12.85, "Median Spend per Customer": 13.28 }, "geometry": { "type": "Point", "coordinates": [ -75.157453, 39.978435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-68v", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8914 Frankford Ave", "LATITUDE": 40.051732, "LONGITUDE": -75.010927, "DATE_RANGE_START": 2019, "Total Visits": 93.0, "Total Visitors": 55.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 332.0, "Total Spend": 3887.0, "Total Transactions": 165.0, "Total Customers": 133.0, "Median Spend per Transaction": 22.49, "Median Spend per Customer": 25.17 }, "geometry": { "type": "Point", "coordinates": [ -75.010927, 40.051732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "Name": "Pizza Boli's", "Category": "Restaurants and Other Eating Places", "Address": "3883 Glendale St", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2019, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010190001.0, "Median Dwell Time": 9.0, "Total Spend": 517.0, "Total Transactions": 28.0, "Total Customers": 20.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 21.18 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4100 Chester Ave", "LATITUDE": 39.94836, "LONGITUDE": -75.206367, "DATE_RANGE_START": 2019, "Total Visits": 50.0, "Total Visitors": 40.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 1.0, "Total Spend": 4384.0, "Total Transactions": 721.0, "Total Customers": 366.0, "Median Spend per Transaction": 5.28, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.206367, 39.94836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "Name": "No 1 Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2731 E Allegheny Ave", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2019, "Total Visits": 120.0, "Total Visitors": 80.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 1.0, "Total Spend": 187.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 17.93, "Median Spend per Customer": 17.93 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-9vf", "Name": "Soul Boat", "Category": "Restaurants and Other Eating Places", "Address": "1422 Dickinson St", "LATITUDE": 39.931707, "LONGITUDE": -75.169132, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010030024.0, "Median Dwell Time": 5.0, "Total Spend": 1069.0, "Total Transactions": 68.0, "Total Customers": 48.0, "Median Spend per Transaction": 14.53, "Median Spend per Customer": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.169132, 39.931707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "Name": "T cafe", "Category": "Restaurants and Other Eating Places", "Address": "108 Chestnut St", "LATITUDE": 39.947904, "LONGITUDE": -75.142953, "DATE_RANGE_START": 2019, "Total Visits": 650.0, "Total Visitors": 516.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 61.0, "Total Spend": 36913.0, "Total Transactions": 1637.0, "Total Customers": 1006.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.142953, 39.947904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5753 Wayne Ave", "LATITUDE": 40.032663, "LONGITUDE": -75.179788, "DATE_RANGE_START": 2019, "Total Visits": 416.0, "Total Visitors": 292.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 2.0, "Total Spend": 10469.0, "Total Transactions": 1767.0, "Total Customers": 748.0, "Median Spend per Transaction": 4.89, "Median Spend per Customer": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.179788, 40.032663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "Name": "Taco Loco", "Category": "Restaurants and Other Eating Places", "Address": "400 Washington Ave", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 2.0, "Total Spend": 1547.0, "Total Transactions": 125.0, "Total Customers": 105.0, "Median Spend per Transaction": 10.53, "Median Spend per Customer": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-ysq", "Name": "C & R Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "1601 S 49th St", "LATITUDE": 39.93947, "LONGITUDE": -75.209529, "DATE_RANGE_START": 2019, "Total Visits": 476.0, "Total Visitors": 380.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 24.0, "Total Spend": 4766.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 198.3, "Median Spend per Customer": 226.33 }, "geometry": { "type": "Point", "coordinates": [ -75.209529, 39.93947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-ht9", "Name": "Sonesta Philadelphia Rittenhouse Square", "Category": "Traveler Accommodation", "Address": "1800 Market St", "LATITUDE": 39.952877, "LONGITUDE": -75.170604, "DATE_RANGE_START": 2019, "Total Visits": 3386.0, "Total Visitors": 1826.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 207.0, "Total Spend": 43845.0, "Total Transactions": 150.0, "Total Customers": 137.0, "Median Spend per Transaction": 237.89, "Median Spend per Customer": 270.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170604, 39.952877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8220 Bartram Ave", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2019, "Total Visits": 1359.0, "Total Visitors": 1096.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 180747.0, "Total Transactions": 11105.0, "Total Customers": 6240.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "Name": "Prince Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 E Wyoming Ave", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 93.0, "POI_CBG": 421010288002.0, "Median Dwell Time": 6.0, "Total Spend": 6848.0, "Total Transactions": 323.0, "Total Customers": 257.0, "Median Spend per Transaction": 18.9, "Median Spend per Customer": 22.81 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "Name": "University City Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4300 Walnut St", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2019, "Total Visits": 193.0, "Total Visitors": 180.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 6.0, "Total Spend": 2198.0, "Total Transactions": 55.0, "Total Customers": 35.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 27.75 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-cdv", "Name": "Holiday Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "8601 Torresdale Ave", "LATITUDE": 40.04293, "LONGITUDE": -75.010392, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 37.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 3.0, "Total Spend": 1572.0, "Total Transactions": 50.0, "Total Customers": 30.0, "Median Spend per Transaction": 23.62, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010392, 40.04293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pg4-w49", "Name": "Pauline's Deli", "Category": "Restaurants and Other Eating Places", "Address": "2145 Elkins Ave", "LATITUDE": 40.040848, "LONGITUDE": -75.157522, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010279022.0, "Median Dwell Time": 3.0, "Total Spend": 1654.0, "Total Transactions": 168.0, "Total Customers": 77.0, "Median Spend per Transaction": 9.13, "Median Spend per Customer": 15.59 }, "geometry": { "type": "Point", "coordinates": [ -75.157522, 40.040848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "Name": "M & M Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2736 E Allegheny Ave", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2019, "Total Visits": 132.0, "Total Visitors": 103.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 23.0, "Total Spend": 805.0, "Total Transactions": 37.0, "Total Customers": 27.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "527 Franklin Mills Cir", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2019, "Total Visits": 943.0, "Total Visitors": 798.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 1270.0, "Total Transactions": 75.0, "Total Customers": 67.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5840 Old York Rd", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2019, "Total Visits": 296.0, "Total Visitors": 215.0, "POI_CBG": 421010278002.0, "Median Dwell Time": 25.0, "Total Spend": 1502.0, "Total Transactions": 115.0, "Total Customers": 83.0, "Median Spend per Transaction": 10.52, "Median Spend per Customer": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7616 City Line Avenue Route 1 & 76th St", "LATITUDE": 39.978487, "LONGITUDE": -75.271145, "DATE_RANGE_START": 2019, "Total Visits": 1249.0, "Total Visitors": 1048.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 15.0, "Total Spend": 36999.0, "Total Transactions": 936.0, "Total Customers": 798.0, "Median Spend per Transaction": 27.63, "Median Spend per Customer": 32.97 }, "geometry": { "type": "Point", "coordinates": [ -75.271145, 39.978487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-249", "Name": "Moon Arrow", "Category": "Clothing Stores", "Address": "742 S 4th St", "LATITUDE": 39.939446, "LONGITUDE": -75.149912, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 8.0, "Total Spend": 604.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 41.79, "Median Spend per Customer": 41.79 }, "geometry": { "type": "Point", "coordinates": [ -75.149912, 39.939446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnz-xyv", "Name": "Moju's Family Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2501 E Westmoreland St", "LATITUDE": 39.988309, "LONGITUDE": -75.102423, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010379002.0, "Median Dwell Time": 190.0, "Total Spend": 743.0, "Total Transactions": 37.0, "Total Customers": 33.0, "Median Spend per Transaction": 15.25, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102423, 39.988309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnw-zzz", "Name": "L & M Auto Repair", "Category": "Grocery Stores", "Address": "1404 N 7th St", "LATITUDE": 39.973171, "LONGITUDE": -75.147843, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010145002.0, "Median Dwell Time": 163.0, "Total Spend": 433.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 130.11, "Median Spend per Customer": 130.11 }, "geometry": { "type": "Point", "coordinates": [ -75.147843, 39.973171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "6863 Bustleton Ave", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 27.0, "POI_CBG": 421010314022.0, "Median Dwell Time": 62.0, "Total Spend": 739.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 70.6, "Median Spend per Customer": 70.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26h-222@628-pm3-zmk", "Name": "Wendy's Deli", "Category": "Restaurants and Other Eating Places", "Address": "2312 S 7th St", "LATITUDE": 39.920091, "LONGITUDE": -75.159002, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010041021.0, "Median Dwell Time": 1.0, "Total Spend": 691.0, "Total Transactions": 33.0, "Total Customers": 27.0, "Median Spend per Transaction": 21.06, "Median Spend per Customer": 22.29 }, "geometry": { "type": "Point", "coordinates": [ -75.159002, 39.920091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "Name": "Hoagie Factory", "Category": "Restaurants and Other Eating Places", "Address": "2121 72nd Ave", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010266007.0, "Median Dwell Time": 192.0, "Total Spend": 1998.0, "Total Transactions": 112.0, "Total Customers": 93.0, "Median Spend per Transaction": 15.2, "Median Spend per Customer": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 27.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 75.0, "Total Spend": 2657.0, "Total Transactions": 98.0, "Total Customers": 93.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1912 Liacouras Walk", "LATITUDE": 39.982036, "LONGITUDE": -75.156118, "DATE_RANGE_START": 2019, "Total Visits": 786.0, "Total Visitors": 338.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 68.0, "Total Spend": 2415.0, "Total Transactions": 436.0, "Total Customers": 165.0, "Median Spend per Transaction": 4.3, "Median Spend per Customer": 7.47 }, "geometry": { "type": "Point", "coordinates": [ -75.156118, 39.982036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-kfz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2801 W Dauphin St Ste 5", "LATITUDE": 39.991954, "LONGITUDE": -75.178916, "DATE_RANGE_START": 2019, "Total Visits": 730.0, "Total Visitors": 443.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 11.0, "Total Spend": 1064.0, "Total Transactions": 52.0, "Total Customers": 35.0, "Median Spend per Transaction": 11.11, "Median Spend per Customer": 15.31 }, "geometry": { "type": "Point", "coordinates": [ -75.178916, 39.991954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "Name": "Davis Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4523 Baltimore Ave", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 52.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 699.0, "Total Spend": 2075.0, "Total Transactions": 107.0, "Total Customers": 77.0, "Median Spend per Transaction": 12.43, "Median Spend per Customer": 20.45 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pp4-jd9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2685 Frankford Ave", "LATITUDE": 39.986516, "LONGITUDE": -75.12253, "DATE_RANGE_START": 2019, "Total Visits": 1876.0, "Total Visitors": 1351.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 4.0, "Total Spend": 243.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 26.35, "Median Spend per Customer": 26.35 }, "geometry": { "type": "Point", "coordinates": [ -75.12253, 39.986516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3604 Chestnut St", "LATITUDE": 39.954547, "LONGITUDE": -75.194897, "DATE_RANGE_START": 2019, "Total Visits": 255.0, "Total Visitors": 232.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 6.0, "Total Spend": 51466.0, "Total Transactions": 6740.0, "Total Customers": 2753.0, "Median Spend per Transaction": 6.42, "Median Spend per Customer": 9.92 }, "geometry": { "type": "Point", "coordinates": [ -75.194897, 39.954547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-73q", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "121 S Broad St", "LATITUDE": 39.950321, "LONGITUDE": -75.163776, "DATE_RANGE_START": 2019, "Total Visits": 2662.0, "Total Visitors": 1856.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 87.0, "Total Spend": 7046.0, "Total Transactions": 485.0, "Total Customers": 421.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.163776, 39.950321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-7wk", "Name": "Fuel", "Category": "Restaurants and Other Eating Places", "Address": "3200 Chestnut St", "LATITUDE": 39.953562, "LONGITUDE": -75.188092, "DATE_RANGE_START": 2019, "Total Visits": 500.0, "Total Visitors": 336.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 45.0, "Total Spend": 4293.0, "Total Transactions": 353.0, "Total Customers": 293.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.188092, 39.953562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5506 Chestnut St # 12", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2019, "Total Visits": 978.0, "Total Visitors": 615.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 3.0, "Total Spend": 6048.0, "Total Transactions": 958.0, "Total Customers": 558.0, "Median Spend per Transaction": 5.19, "Median Spend per Customer": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4900 City Ave", "LATITUDE": 40.000779, "LONGITUDE": -75.226852, "DATE_RANGE_START": 2019, "Total Visits": 5925.0, "Total Visitors": 4291.0, "POI_CBG": 421010121002.0, "Median Dwell Time": 4.0, "Total Spend": 2209.0, "Total Transactions": 85.0, "Total Customers": 60.0, "Median Spend per Transaction": 24.31, "Median Spend per Customer": 31.33 }, "geometry": { "type": "Point", "coordinates": [ -75.226852, 40.000779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1128 Walnut St", "LATITUDE": 39.948761, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2019, "Total Visits": 533.0, "Total Visitors": 486.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 5.0, "Total Spend": 8607.0, "Total Transactions": 1448.0, "Total Customers": 883.0, "Median Spend per Transaction": 4.81, "Median Spend per Customer": 5.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.948761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8t-vvf", "Name": "Hanesbrands", "Category": "Clothing Stores", "Address": "1519 Franklin Mills Cir Ste 313", "LATITUDE": 40.089656, "LONGITUDE": -74.961738, "DATE_RANGE_START": 2019, "Total Visits": 473.0, "Total Visitors": 440.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 452.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 53.5, "Median Spend per Customer": 53.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961738, 40.089656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "Name": "So Korean Grill", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St Ste 120", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 2.0, "Total Spend": 2034.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 89.21, "Median Spend per Customer": 89.21 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "Name": "Spring Garden Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "400 Spring Garden St", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2019, "Total Visits": 921.0, "Total Visitors": 715.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 11.0, "Total Spend": 2151.0, "Total Transactions": 157.0, "Total Customers": 108.0, "Median Spend per Transaction": 11.23, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-kvf", "Name": "20th Street Pizza", "Category": "Restaurants and Other Eating Places", "Address": "108 S 20th St", "LATITUDE": 39.951712, "LONGITUDE": -75.173725, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 90.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 41.0, "Total Spend": 882.0, "Total Transactions": 40.0, "Total Customers": 35.0, "Median Spend per Transaction": 18.74, "Median Spend per Customer": 25.28 }, "geometry": { "type": "Point", "coordinates": [ -75.173725, 39.951712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "Name": "Talk of the Town", "Category": "Restaurants and Other Eating Places", "Address": "7804 Limekiln Pike", "LATITUDE": 40.071911, "LONGITUDE": -75.161398, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 108.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 9.0, "Total Spend": 1312.0, "Total Transactions": 58.0, "Total Customers": 43.0, "Median Spend per Transaction": 17.88, "Median Spend per Customer": 20.76 }, "geometry": { "type": "Point", "coordinates": [ -75.161398, 40.071911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "Name": "New Zem Zem Pizza", "Category": "Restaurants and Other Eating Places", "Address": "117 E Chelten Ave", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2019, "Total Visits": 180.0, "Total Visitors": 117.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 23.0, "Total Spend": 1268.0, "Total Transactions": 57.0, "Total Customers": 45.0, "Median Spend per Transaction": 24.56, "Median Spend per Customer": 24.37 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnz-kzz", "Name": "La Colombe Torrefaction", "Category": "Restaurants and Other Eating Places", "Address": "2600 E Tioga St", "LATITUDE": 39.988818, "LONGITUDE": -75.097047, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 80.0, "POI_CBG": 421010379006.0, "Median Dwell Time": 10.0, "Total Spend": 82.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.25, "Median Spend per Customer": 24.68 }, "geometry": { "type": "Point", "coordinates": [ -75.097047, 39.988818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market St", "LATITUDE": 39.952606, "LONGITUDE": -75.16665, "DATE_RANGE_START": 2019, "Total Visits": 7542.0, "Total Visitors": 4836.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 66.0, "Total Spend": 9880.0, "Total Transactions": 1766.0, "Total Customers": 1088.0, "Median Spend per Transaction": 4.59, "Median Spend per Customer": 5.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16665, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pgh-vmk", "Name": "The Conwell Inn", "Category": "Traveler Accommodation", "Address": "1331 Pollet Walk", "LATITUDE": 39.981755, "LONGITUDE": -75.156137, "DATE_RANGE_START": 2019, "Total Visits": 786.0, "Total Visitors": 338.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 68.0, "Total Spend": 8479.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 177.53, "Median Spend per Customer": 181.86 }, "geometry": { "type": "Point", "coordinates": [ -75.156137, 39.981755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-s89", "Name": "Pen and Pencil", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1522 Latimer St", "LATITUDE": 39.948013, "LONGITUDE": -75.167208, "DATE_RANGE_START": 2019, "Total Visits": 245.0, "Total Visitors": 157.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 32.0, "Total Spend": 885.0, "Total Transactions": 35.0, "Total Customers": 27.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167208, 39.948013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "Name": "Italian Express", "Category": "Restaurants and Other Eating Places", "Address": "2641 W Girard Ave", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2019, "Total Visits": 92.0, "Total Visitors": 60.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 553.0, "Total Spend": 1649.0, "Total Transactions": 142.0, "Total Customers": 90.0, "Median Spend per Transaction": 9.56, "Median Spend per Customer": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7b-vmk", "Name": "Out Of Wack Jack", "Category": "Restaurants and Other Eating Places", "Address": "3156 Willits Rd", "LATITUDE": 40.057001, "LONGITUDE": -75.014587, "DATE_RANGE_START": 2019, "Total Visits": 165.0, "Total Visitors": 97.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 61.0, "Total Spend": 1734.0, "Total Transactions": 35.0, "Total Customers": 32.0, "Median Spend per Transaction": 43.19, "Median Spend per Customer": 46.76 }, "geometry": { "type": "Point", "coordinates": [ -75.014587, 40.057001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-49z", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "2400 W Passyunk Ave", "LATITUDE": 39.921974, "LONGITUDE": -75.18737, "DATE_RANGE_START": 2019, "Total Visits": 207.0, "Total Visitors": 192.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 2.0, "Total Spend": 96.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.51, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18737, 39.921974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-y9z", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "5818 Woodland Ave", "LATITUDE": 39.93105, "LONGITUDE": -75.226248, "DATE_RANGE_START": 2019, "Total Visits": 755.0, "Total Visitors": 646.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 12.0, "Total Spend": 1780.0, "Total Transactions": 160.0, "Total Customers": 142.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -75.226248, 39.93105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j7q", "Name": "J Mclaughlin", "Category": "Clothing Stores", "Address": "8401 Germantown Ave", "LATITUDE": 40.075451, "LONGITUDE": -75.204853, "DATE_RANGE_START": 2019, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010387001.0, "Median Dwell Time": null, "Total Spend": 643.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 155.0, "Median Spend per Customer": 155.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204853, 40.075451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-pjv", "Name": "Dock Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6700 Essington Ave Unit C1", "LATITUDE": 39.90981, "LONGITUDE": -75.220749, "DATE_RANGE_START": 2019, "Total Visits": 2780.0, "Total Visitors": 961.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 191.0, "Total Spend": 1410.0, "Total Transactions": 190.0, "Total Customers": 62.0, "Median Spend per Transaction": 6.29, "Median Spend per Customer": 13.04 }, "geometry": { "type": "Point", "coordinates": [ -75.220749, 39.90981 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-73q", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.947698, "LONGITUDE": -75.193491, "DATE_RANGE_START": 2019, "Total Visits": 1379.0, "Total Visitors": 999.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 9.0, "Total Spend": 52.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.53, "Median Spend per Customer": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.193491, 39.947698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmb-fpv", "Name": "Locust Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "235 S 10th St", "LATITUDE": 39.947233, "LONGITUDE": -75.157426, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 103.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 22.0, "Total Spend": 7181.0, "Total Transactions": 287.0, "Total Customers": 182.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157426, 39.947233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph6-vvf", "Name": "Debreaux's", "Category": "Restaurants and Other Eating Places", "Address": "2135 N 63rd St", "LATITUDE": 39.989238, "LONGITUDE": -75.24979, "DATE_RANGE_START": 2019, "Total Visits": 92.0, "Total Visitors": 68.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 5.0, "Total Spend": 179.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 40.92, "Median Spend per Customer": 40.92 }, "geometry": { "type": "Point", "coordinates": [ -75.24979, 39.989238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvr-cwk", "Name": "Rhythm and Brunch", "Category": "Restaurants and Other Eating Places", "Address": "6517 Elmwood Ave", "LATITUDE": 39.922021, "LONGITUDE": -75.230955, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 48.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 18.0, "Total Spend": 2801.0, "Total Transactions": 80.0, "Total Customers": 70.0, "Median Spend per Transaction": 29.0, "Median Spend per Customer": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -75.230955, 39.922021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wzf", "Name": "Bravo Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "1323 Lindley Ave", "LATITUDE": 40.030409, "LONGITUDE": -75.145574, "DATE_RANGE_START": 2019, "Total Visits": 173.0, "Total Visitors": 145.0, "POI_CBG": 421010282001.0, "Median Dwell Time": 11.0, "Total Spend": 1344.0, "Total Transactions": 85.0, "Total Customers": 52.0, "Median Spend per Transaction": 12.07, "Median Spend per Customer": 20.64 }, "geometry": { "type": "Point", "coordinates": [ -75.145574, 40.030409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "Name": "Tattooed Mom", "Category": "Restaurants and Other Eating Places", "Address": "530 South St", "LATITUDE": 39.941873, "LONGITUDE": -75.151859, "DATE_RANGE_START": 2019, "Total Visits": 330.0, "Total Visitors": 301.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 41.0, "Total Spend": 39892.0, "Total Transactions": 1612.0, "Total Customers": 1346.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151859, 39.941873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p75-9pv", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "8423 8445 Frankford Ave Ste A", "LATITUDE": 40.044008, "LONGITUDE": -75.017305, "DATE_RANGE_START": 2019, "Total Visits": 167.0, "Total Visitors": 123.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 14.0, "Total Spend": 446.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 18.34, "Median Spend per Customer": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.017305, 40.044008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "Name": "Kennedy Food Garden", "Category": "Grocery Stores", "Address": "1901 John F Kennedy Blvd", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2019, "Total Visits": 894.0, "Total Visitors": 511.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 205.0, "Total Spend": 4900.0, "Total Transactions": 386.0, "Total Customers": 247.0, "Median Spend per Transaction": 10.48, "Median Spend per Customer": 11.91 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "Name": "Suburban Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10875 Bustleton Ave", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2019, "Total Visits": 300.0, "Total Visitors": 237.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 6.0, "Total Spend": 1456.0, "Total Transactions": 30.0, "Total Customers": 22.0, "Median Spend per Transaction": 37.69, "Median Spend per Customer": 29.28 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "Name": "Skyline Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "505 Washington Ave", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2019, "Total Visits": 428.0, "Total Visitors": 333.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 7.0, "Total Spend": 18742.0, "Total Transactions": 38.0, "Total Customers": 22.0, "Median Spend per Transaction": 122.25, "Median Spend per Customer": 134.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-73q", "Name": "CITGO", "Category": "Gasoline Stations", "Address": "6201 Lancaster Ave", "LATITUDE": 39.984832, "LONGITUDE": -75.246188, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 202.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 5.0, "Total Spend": 83.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246188, 39.984832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2311 Cottman Ave", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2019, "Total Visits": 147.0, "Total Visitors": 133.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 5.0, "Total Spend": 6660.0, "Total Transactions": 480.0, "Total Customers": 415.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3313 Wharton St", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2019, "Total Visits": 421.0, "Total Visitors": 363.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 3.0, "Total Spend": 8731.0, "Total Transactions": 1477.0, "Total Customers": 781.0, "Median Spend per Transaction": 5.05, "Median Spend per Customer": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2001 Chestnut St", "LATITUDE": 39.952185, "LONGITUDE": -75.173618, "DATE_RANGE_START": 2019, "Total Visits": 423.0, "Total Visitors": 321.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 9.0, "Total Spend": 6020.0, "Total Transactions": 1289.0, "Total Customers": 718.0, "Median Spend per Transaction": 3.9, "Median Spend per Customer": 5.04 }, "geometry": { "type": "Point", "coordinates": [ -75.173618, 39.952185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "Name": "Walnut Supermarket", "Category": "Grocery Stores", "Address": "5131 Walnut St", "LATITUDE": 39.957098, "LONGITUDE": -75.224484, "DATE_RANGE_START": 2019, "Total Visits": 242.0, "Total Visitors": 188.0, "POI_CBG": 421010085002.0, "Median Dwell Time": 7.0, "Total Spend": 6731.0, "Total Transactions": 207.0, "Total Customers": 148.0, "Median Spend per Transaction": 21.25, "Median Spend per Customer": 26.59 }, "geometry": { "type": "Point", "coordinates": [ -75.224484, 39.957098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "Name": "Parkway Corner Deli", "Category": "Restaurants and Other Eating Places", "Address": "2201 Pennsylvania Ave", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2019, "Total Visits": 458.0, "Total Visitors": 345.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 22.0, "Total Spend": 10154.0, "Total Transactions": 661.0, "Total Customers": 385.0, "Median Spend per Transaction": 13.19, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-mzf", "Name": "Tir na nOg Irish Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1600 Arch St", "LATITUDE": 39.954415, "LONGITUDE": -75.16676, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 212.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 51.0, "Total Spend": 17835.0, "Total Transactions": 470.0, "Total Customers": 413.0, "Median Spend per Transaction": 26.12, "Median Spend per Customer": 30.68 }, "geometry": { "type": "Point", "coordinates": [ -75.16676, 39.954415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnz-z9f", "Name": "R & R Produce", "Category": "Grocery Stores", "Address": "2344 E Allegheny Ave", "LATITUDE": 39.988487, "LONGITUDE": -75.10672, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 52.0, "POI_CBG": 421010179002.0, "Median Dwell Time": 1.0, "Total Spend": 293.0, "Total Transactions": 27.0, "Total Customers": 23.0, "Median Spend per Transaction": 10.46, "Median Spend per Customer": 10.46 }, "geometry": { "type": "Point", "coordinates": [ -75.10672, 39.988487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8t-4qf", "Name": "Speedy's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4013 Fairdale Rd", "LATITUDE": 40.084571, "LONGITUDE": -74.972797, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 38.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 44.0, "Total Spend": 743.0, "Total Transactions": 42.0, "Total Customers": 25.0, "Median Spend per Transaction": 18.85, "Median Spend per Customer": 22.73 }, "geometry": { "type": "Point", "coordinates": [ -74.972797, 40.084571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "Name": "Sky Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1122 38 Washington Ave Ste B", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2019, "Total Visits": 272.0, "Total Visitors": 215.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 40.0, "Total Spend": 6537.0, "Total Transactions": 135.0, "Total Customers": 118.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8v-7nq", "Name": "Beer Outlet", "Category": "Beer, Wine, and Liquor Stores", "Address": "189 Franklin Mills Blvd", "LATITUDE": 40.088669, "LONGITUDE": -74.965987, "DATE_RANGE_START": 2019, "Total Visits": 423.0, "Total Visitors": 366.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 265.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 11.31, "Median Spend per Customer": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -74.965987, 40.088669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "Name": "Stenton Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7171 Stenton Ave", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2019, "Total Visits": 100.0, "Total Visitors": 55.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 279.0, "Total Spend": 1049.0, "Total Transactions": 73.0, "Total Customers": 50.0, "Median Spend per Transaction": 10.64, "Median Spend per Customer": 17.05 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "Name": "Pizzeria Stella", "Category": "Restaurants and Other Eating Places", "Address": "420 S 2nd St", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2019, "Total Visits": 381.0, "Total Visitors": 328.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 9.0, "Total Spend": 27298.0, "Total Transactions": 390.0, "Total Customers": 360.0, "Median Spend per Transaction": 58.48, "Median Spend per Customer": 63.44 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "Name": "Allegro Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3942 Spruce St", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2019, "Total Visits": 371.0, "Total Visitors": 277.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 41.0, "Total Spend": 16112.0, "Total Transactions": 1334.0, "Total Customers": 888.0, "Median Spend per Transaction": 9.56, "Median Spend per Customer": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-6p9", "Name": "Pret A Manger", "Category": "Restaurants and Other Eating Places", "Address": "30 S 15th St", "LATITUDE": 39.951392, "LONGITUDE": -75.16582, "DATE_RANGE_START": 2019, "Total Visits": 19592.0, "Total Visitors": 12000.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 32.0, "Total Spend": 1155.0, "Total Transactions": 128.0, "Total Customers": 80.0, "Median Spend per Transaction": 7.67, "Median Spend per Customer": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.16582, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2200 Wheatsheaf Ln Ste E3", "LATITUDE": 39.999174, "LONGITUDE": -75.093264, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 47.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 5.0, "Total Spend": 31.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.37, "Median Spend per Customer": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -75.093264, 39.999174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5700 Baltimore Ave", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2019, "Total Visits": 227.0, "Total Visitors": 193.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 8.0, "Total Spend": 810.0, "Total Transactions": 60.0, "Total Customers": 57.0, "Median Spend per Transaction": 11.14, "Median Spend per Customer": 11.91 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "Name": "John's Diner", "Category": "Restaurants and Other Eating Places", "Address": "119 E Chelten Ave", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2019, "Total Visits": 150.0, "Total Visitors": 100.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 27.0, "Total Spend": 364.0, "Total Transactions": 28.0, "Total Customers": 23.0, "Median Spend per Transaction": 11.23, "Median Spend per Customer": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "Name": "Hair Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4160 Monument Rd", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2019, "Total Visits": 4966.0, "Total Visitors": 2720.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 18.0, "Total Spend": 5176.0, "Total Transactions": 220.0, "Total Customers": 178.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p8t-6kz", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4301 Byberry Rd", "LATITUDE": 40.083264, "LONGITUDE": -74.962395, "DATE_RANGE_START": 2019, "Total Visits": 20780.0, "Total Visitors": 12506.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 26.0, "Total Spend": 409252.0, "Total Transactions": 7746.0, "Total Customers": 4218.0, "Median Spend per Transaction": 29.04, "Median Spend per Customer": 46.62 }, "geometry": { "type": "Point", "coordinates": [ -74.962395, 40.083264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "Name": "Dairy Queen", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave", "LATITUDE": 40.087375, "LONGITUDE": -75.039949, "DATE_RANGE_START": 2019, "Total Visits": 365.0, "Total Visitors": 270.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 4.0, "Total Spend": 2470.0, "Total Transactions": 233.0, "Total Customers": 207.0, "Median Spend per Transaction": 9.05, "Median Spend per Customer": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.039949, 40.087375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "Name": "Trio Delight Cafe", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.037587, "LONGITUDE": -75.118044, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 128.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 3.0, "Total Spend": 1496.0, "Total Transactions": 93.0, "Total Customers": 87.0, "Median Spend per Transaction": 12.34, "Median Spend per Customer": 13.97 }, "geometry": { "type": "Point", "coordinates": [ -75.118044, 40.037587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pm8-pgk", "Name": "Kasumi Sushi", "Category": "Restaurants and Other Eating Places", "Address": "2201 Penrose Ave Ste 3", "LATITUDE": 39.910232, "LONGITUDE": -75.186866, "DATE_RANGE_START": 2019, "Total Visits": 1011.0, "Total Visitors": 635.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 4.0, "Total Spend": 4992.0, "Total Transactions": 167.0, "Total Customers": 115.0, "Median Spend per Transaction": 22.53, "Median Spend per Customer": 35.42 }, "geometry": { "type": "Point", "coordinates": [ -75.186866, 39.910232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pg9-k75", "Name": "Panda Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3024 W York St", "LATITUDE": 39.9926, "LONGITUDE": -75.181975, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 5.0, "POI_CBG": 421010169023.0, "Median Dwell Time": 41.0, "Total Spend": 2956.0, "Total Transactions": 133.0, "Total Customers": 95.0, "Median Spend per Transaction": 20.73, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181975, 39.9926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3320 Grant Ave Unit 18B", "LATITUDE": 40.068041, "LONGITUDE": -75.007034, "DATE_RANGE_START": 2019, "Total Visits": 82.0, "Total Visitors": 78.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 10.0, "Total Spend": 890.0, "Total Transactions": 145.0, "Total Customers": 88.0, "Median Spend per Transaction": 5.51, "Median Spend per Customer": 6.45 }, "geometry": { "type": "Point", "coordinates": [ -75.007034, 40.068041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8000 Pine Rd", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2019, "Total Visits": 520.0, "Total Visitors": 361.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 5.0, "Total Spend": 7146.0, "Total Transactions": 1341.0, "Total Customers": 535.0, "Median Spend per Transaction": 4.53, "Median Spend per Customer": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3705 Germantown Ave", "LATITUDE": 40.009461, "LONGITUDE": -75.150639, "DATE_RANGE_START": 2019, "Total Visits": 53.0, "Total Visitors": 52.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 2.0, "Total Spend": 2124.0, "Total Transactions": 413.0, "Total Customers": 188.0, "Median Spend per Transaction": 3.93, "Median Spend per Customer": 6.84 }, "geometry": { "type": "Point", "coordinates": [ -75.150639, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-7t9", "Name": "The Kettle Black", "Category": "Restaurants and Other Eating Places", "Address": "631 N 2nd St", "LATITUDE": 39.961646, "LONGITUDE": -75.140921, "DATE_RANGE_START": 2019, "Total Visits": 2119.0, "Total Visitors": 1821.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1.0, "Total Spend": 3637.0, "Total Transactions": 325.0, "Total Customers": 223.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140921, 39.961646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-2tv", "Name": "Bodhi Coffee", "Category": "Restaurants and Other Eating Places", "Address": "410 S 2nd St", "LATITUDE": 39.942883, "LONGITUDE": -75.145675, "DATE_RANGE_START": 2019, "Total Visits": 348.0, "Total Visitors": 255.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 53.0, "Total Spend": 1519.0, "Total Transactions": 237.0, "Total Customers": 152.0, "Median Spend per Transaction": 5.25, "Median Spend per Customer": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145675, 39.942883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "Name": "Aura", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "628 N Front St", "LATITUDE": 39.961228, "LONGITUDE": -75.138826, "DATE_RANGE_START": 2019, "Total Visits": 668.0, "Total Visitors": 571.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 21.0, "Total Spend": 151370.0, "Total Transactions": 3255.0, "Total Customers": 2660.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.138826, 39.961228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "Name": "Nam Phuong", "Category": "Restaurants and Other Eating Places", "Address": "1100 Washington Ave", "LATITUDE": 39.936493, "LONGITUDE": -75.162002, "DATE_RANGE_START": 2019, "Total Visits": 611.0, "Total Visitors": 506.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 20.0, "Total Spend": 12873.0, "Total Transactions": 308.0, "Total Customers": 267.0, "Median Spend per Transaction": 34.05, "Median Spend per Customer": 36.95 }, "geometry": { "type": "Point", "coordinates": [ -75.162002, 39.936493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-qzz", "Name": "Randazzo's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1826 South St", "LATITUDE": 39.944329, "LONGITUDE": -75.172844, "DATE_RANGE_START": 2019, "Total Visits": 1128.0, "Total Visitors": 666.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 195.0, "Total Spend": 5690.0, "Total Transactions": 293.0, "Total Customers": 192.0, "Median Spend per Transaction": 14.13, "Median Spend per Customer": 18.28 }, "geometry": { "type": "Point", "coordinates": [ -75.172844, 39.944329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "10740 Roosevelt Blvd", "LATITUDE": 40.099643, "LONGITUDE": -75.010101, "DATE_RANGE_START": 2019, "Total Visits": 1144.0, "Total Visitors": 1001.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 21.0, "Total Spend": 9387.0, "Total Transactions": 296.0, "Total Customers": 273.0, "Median Spend per Transaction": 30.87, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.010101, 40.099643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "Name": "Tuna Bar", "Category": "Restaurants and Other Eating Places", "Address": "205 Race St", "LATITUDE": 39.954087, "LONGITUDE": -75.143167, "DATE_RANGE_START": 2019, "Total Visits": 401.0, "Total Visitors": 293.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 278.0, "Total Spend": 15258.0, "Total Transactions": 243.0, "Total Customers": 205.0, "Median Spend per Transaction": 52.95, "Median Spend per Customer": 67.4 }, "geometry": { "type": "Point", "coordinates": [ -75.143167, 39.954087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wc5", "Name": "Abunai Poke", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949658, "LONGITUDE": -75.147567, "DATE_RANGE_START": 2019, "Total Visits": 1471.0, "Total Visitors": 1114.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 33.0, "Total Spend": 4264.0, "Total Transactions": 265.0, "Total Customers": 213.0, "Median Spend per Transaction": 14.15, "Median Spend per Customer": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.147567, 39.949658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfy-zj9", "Name": "Mike's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4111 Main St", "LATITUDE": 40.022539, "LONGITUDE": -75.218415, "DATE_RANGE_START": 2019, "Total Visits": 1418.0, "Total Visitors": 1038.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 55.0, "Total Spend": 5897.0, "Total Transactions": 558.0, "Total Customers": 475.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218415, 40.022539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmc-2ff", "Name": "The Trestle Inn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "339 N 11th St", "LATITUDE": 39.958777, "LONGITUDE": -75.156489, "DATE_RANGE_START": 2019, "Total Visits": 418.0, "Total Visitors": 370.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 1.0, "Total Spend": 9212.0, "Total Transactions": 350.0, "Total Customers": 305.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156489, 39.958777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "Name": "Ryan's Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4301 Main St", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2019, "Total Visits": 263.0, "Total Visitors": 227.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 41.0, "Total Spend": 23864.0, "Total Transactions": 986.0, "Total Customers": 711.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 21.25 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-236@628-pm9-wc5", "Name": "Grubhouse", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949649, "LONGITUDE": -75.147584, "DATE_RANGE_START": 2019, "Total Visits": 1471.0, "Total Visitors": 1114.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 33.0, "Total Spend": 3684.0, "Total Transactions": 223.0, "Total Customers": 195.0, "Median Spend per Transaction": 13.09, "Median Spend per Customer": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.147584, 39.949649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "Name": "New Wave Cafe", "Category": "Restaurants and Other Eating Places", "Address": "784 S 3rd St", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2019, "Total Visits": 83.0, "Total Visitors": 65.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 21.0, "Total Spend": 11754.0, "Total Transactions": 306.0, "Total Customers": 237.0, "Median Spend per Transaction": 31.78, "Median Spend per Customer": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "Name": "New England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2417 Welsh Rd", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2019, "Total Visits": 390.0, "Total Visitors": 301.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 22.0, "Total Spend": 945.0, "Total Transactions": 35.0, "Total Customers": 33.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 21.22 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "Name": "Abyssinia", "Category": "Restaurants and Other Eating Places", "Address": "229 S 45th St", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2019, "Total Visits": 168.0, "Total Visitors": 100.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 108.0, "Total Spend": 8816.0, "Total Transactions": 238.0, "Total Customers": 208.0, "Median Spend per Transaction": 31.5, "Median Spend per Customer": 36.15 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "Name": "Buddakan", "Category": "Restaurants and Other Eating Places", "Address": "325 Chestnut St", "LATITUDE": 39.948922, "LONGITUDE": -75.147091, "DATE_RANGE_START": 2019, "Total Visits": 545.0, "Total Visitors": 398.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 81.0, "Total Spend": 36939.0, "Total Transactions": 303.0, "Total Customers": 277.0, "Median Spend per Transaction": 90.6, "Median Spend per Customer": 108.57 }, "geometry": { "type": "Point", "coordinates": [ -75.147091, 39.948922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "Name": "Jj Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "2028 Chestnut St", "LATITUDE": 39.951963, "LONGITUDE": -75.174719, "DATE_RANGE_START": 2019, "Total Visits": 140.0, "Total Visitors": 88.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 58.0, "Total Spend": 6423.0, "Total Transactions": 185.0, "Total Customers": 162.0, "Median Spend per Transaction": 27.72, "Median Spend per Customer": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.174719, 39.951963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "1651 S Columbus Blvd", "LATITUDE": 39.925864, "LONGITUDE": -75.142894, "DATE_RANGE_START": 2019, "Total Visits": 6390.0, "Total Visitors": 4231.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 18.0, "Total Spend": 278974.0, "Total Transactions": 1936.0, "Total Customers": 1096.0, "Median Spend per Transaction": 48.36, "Median Spend per Customer": 56.09 }, "geometry": { "type": "Point", "coordinates": [ -75.142894, 39.925864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjb-6p9", "Name": "ALDI", "Category": "Grocery Stores", "Address": "6119 N Broad St", "LATITUDE": 40.046633, "LONGITUDE": -75.14228, "DATE_RANGE_START": 2019, "Total Visits": 826.0, "Total Visitors": 581.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 10.0, "Total Spend": 124.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.25, "Median Spend per Customer": 37.36 }, "geometry": { "type": "Point", "coordinates": [ -75.14228, 40.046633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvr-z75", "Name": "Kim A Grocery & Deli", "Category": "Grocery Stores", "Address": "1840 S 58th St", "LATITUDE": 39.935748, "LONGITUDE": -75.228814, "DATE_RANGE_START": 2019, "Total Visits": 233.0, "Total Visitors": 190.0, "POI_CBG": 421010065003.0, "Median Dwell Time": 9.0, "Total Spend": 17.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228814, 39.935748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6701 Ridge Ave", "LATITUDE": 40.040652, "LONGITUDE": -75.223499, "DATE_RANGE_START": 2019, "Total Visits": 3405.0, "Total Visitors": 2057.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 5.0, "Total Spend": 197941.0, "Total Transactions": 11910.0, "Total Customers": 4872.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 25.08 }, "geometry": { "type": "Point", "coordinates": [ -75.223499, 40.040652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9377 Krewstown Rd", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2019, "Total Visits": 1331.0, "Total Visitors": 911.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 4.0, "Total Spend": 75859.0, "Total Transactions": 4779.0, "Total Customers": 2204.0, "Median Spend per Transaction": 11.1, "Median Spend per Customer": 21.66 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1707 Arch St", "LATITUDE": 39.95521, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2019, "Total Visits": 785.0, "Total Visitors": 531.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 48.0, "Total Spend": 63002.0, "Total Transactions": 8662.0, "Total Customers": 3638.0, "Median Spend per Transaction": 6.18, "Median Spend per Customer": 9.92 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.95521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hnq", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "24 S 20th St", "LATITUDE": 39.952468, "LONGITUDE": -75.173535, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 83.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 158.0, "Total Spend": 623.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 12.13, "Median Spend per Customer": 12.13 }, "geometry": { "type": "Point", "coordinates": [ -75.173535, 39.952468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-ckf", "Name": "Tran Beer Dist", "Category": "Beer, Wine, and Liquor Stores", "Address": "1616 W Passyunk Ave", "LATITUDE": 39.924541, "LONGITUDE": -75.173565, "DATE_RANGE_START": 2019, "Total Visits": 611.0, "Total Visitors": 370.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 41.0, "Total Spend": 2295.0, "Total Transactions": 97.0, "Total Customers": 73.0, "Median Spend per Transaction": 23.68, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173565, 39.924541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "10050 Roosevelt Blvd", "LATITUDE": 40.095685, "LONGITUDE": -75.015058, "DATE_RANGE_START": 2019, "Total Visits": 958.0, "Total Visitors": 818.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 4.0, "Total Spend": 1680.0, "Total Transactions": 335.0, "Total Customers": 148.0, "Median Spend per Transaction": 4.26, "Median Spend per Customer": 6.99 }, "geometry": { "type": "Point", "coordinates": [ -75.015058, 40.095685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-xnq", "Name": "LIDS", "Category": "Clothing Stores", "Address": "8500 Essington Ave Ste DE7", "LATITUDE": 39.87811, "LONGITUDE": -75.239425, "DATE_RANGE_START": 2019, "Total Visits": 305816.0, "Total Visitors": 187584.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 63.0, "Total Spend": 3812.0, "Total Transactions": 78.0, "Total Customers": 73.0, "Median Spend per Transaction": 48.48, "Median Spend per Customer": 48.73 }, "geometry": { "type": "Point", "coordinates": [ -75.239425, 39.87811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "Name": "Liberty Time", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2019, "Total Visits": 6869.0, "Total Visitors": 5219.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 21.0, "Total Spend": 767.0, "Total Transactions": 23.0, "Total Customers": 23.0, "Median Spend per Transaction": 31.86, "Median Spend per Customer": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tqf", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1675 S Columbus Blvd", "LATITUDE": 39.926373, "LONGITUDE": -75.141555, "DATE_RANGE_START": 2019, "Total Visits": 15596.0, "Total Visitors": 10171.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 29.0, "Total Spend": 543130.0, "Total Transactions": 9769.0, "Total Customers": 6555.0, "Median Spend per Transaction": 34.39, "Median Spend per Customer": 49.15 }, "geometry": { "type": "Point", "coordinates": [ -75.141555, 39.926373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9355 Krewstown Rd", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2019, "Total Visits": 625.0, "Total Visitors": 460.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 6.0, "Total Spend": 664.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 18.36, "Median Spend per Customer": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "Name": "Academy Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "3091 Holme Ave", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 18.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 18.0, "Total Spend": 241.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 30.39, "Median Spend per Customer": 34.63 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9k-t9z", "Name": "Millevoi Brothers", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2075 Byberry Rd", "LATITUDE": 40.108397, "LONGITUDE": -75.000602, "DATE_RANGE_START": 2019, "Total Visits": 217.0, "Total Visitors": 152.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 78.0, "Total Spend": 776.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 68.49, "Median Spend per Customer": 68.49 }, "geometry": { "type": "Point", "coordinates": [ -75.000602, 40.108397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-ffz", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "1528 W Ritner St", "LATITUDE": 39.92086, "LONGITUDE": -75.173341, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010039021.0, "Median Dwell Time": 3.0, "Total Spend": 1243.0, "Total Transactions": 58.0, "Total Customers": 55.0, "Median Spend per Transaction": 15.43, "Median Spend per Customer": 15.43 }, "geometry": { "type": "Point", "coordinates": [ -75.173341, 39.92086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm4-h5z", "Name": "Le Virtu", "Category": "Restaurants and Other Eating Places", "Address": "1927 E Passyunk Ave", "LATITUDE": 39.925948, "LONGITUDE": -75.16776, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 115.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 60.0, "Total Spend": 8802.0, "Total Transactions": 60.0, "Total Customers": 58.0, "Median Spend per Transaction": 127.54, "Median Spend per Customer": 120.81 }, "geometry": { "type": "Point", "coordinates": [ -75.16776, 39.925948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-223@628-phz-py9", "Name": "Gaetano's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1135 E Erie Ave", "LATITUDE": 40.0058, "LONGITUDE": -75.105778, "DATE_RANGE_START": 2019, "Total Visits": 178.0, "Total Visitors": 155.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 46.0, "Total Spend": 540.0, "Total Transactions": 27.0, "Total Customers": 25.0, "Median Spend per Transaction": 17.06, "Median Spend per Customer": 22.56 }, "geometry": { "type": "Point", "coordinates": [ -75.105778, 40.0058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-6x5", "Name": "Harp & Crown", "Category": "Restaurants and Other Eating Places", "Address": "1525 Sansom St", "LATITUDE": 39.950579, "LONGITUDE": -75.166788, "DATE_RANGE_START": 2019, "Total Visits": 12130.0, "Total Visitors": 8380.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 46.0, "Total Spend": 20488.0, "Total Transactions": 275.0, "Total Customers": 253.0, "Median Spend per Transaction": 58.09, "Median Spend per Customer": 59.78 }, "geometry": { "type": "Point", "coordinates": [ -75.166788, 39.950579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "Name": "New Panda", "Category": "Restaurants and Other Eating Places", "Address": "8340 Bustleton Ave", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 45.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 15.0, "Total Spend": 850.0, "Total Transactions": 52.0, "Total Customers": 38.0, "Median Spend per Transaction": 14.15, "Median Spend per Customer": 14.16 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "Name": "Makkah Market", "Category": "Restaurants and Other Eating Places", "Address": "4249 Walnut St", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2019, "Total Visits": 310.0, "Total Visitors": 247.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 7.0, "Total Spend": 11317.0, "Total Transactions": 643.0, "Total Customers": 376.0, "Median Spend per Transaction": 11.92, "Median Spend per Customer": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg9-b8v", "Name": "Dragon Express", "Category": "Restaurants and Other Eating Places", "Address": "2400 Ridge Ave", "LATITUDE": 39.981544, "LONGITUDE": -75.174071, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 68.0, "POI_CBG": 421010149001.0, "Median Dwell Time": 20.0, "Total Spend": 717.0, "Total Transactions": 42.0, "Total Customers": 35.0, "Median Spend per Transaction": 13.61, "Median Spend per Customer": 14.69 }, "geometry": { "type": "Point", "coordinates": [ -75.174071, 39.981544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5800 Woodland Ave", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2019, "Total Visits": 1316.0, "Total Visitors": 971.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 10.0, "Total Spend": 2933.0, "Total Transactions": 170.0, "Total Customers": 100.0, "Median Spend per Transaction": 9.83, "Median Spend per Customer": 17.59 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1 Franklin Town Blvd", "LATITUDE": 39.960173, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2019, "Total Visits": 408.0, "Total Visitors": 295.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 5.0, "Total Spend": 1988.0, "Total Transactions": 255.0, "Total Customers": 140.0, "Median Spend per Transaction": 5.94, "Median Spend per Customer": 7.76 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.960173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "Name": "Knead Bagels", "Category": "Restaurants and Other Eating Places", "Address": "725 Walnut St", "LATITUDE": 39.948165, "LONGITUDE": -75.153606, "DATE_RANGE_START": 2019, "Total Visits": 202.0, "Total Visitors": 157.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 12819.0, "Total Transactions": 1191.0, "Total Customers": 696.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153606, 39.948165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-vj9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3780 Main St", "LATITUDE": 40.018604, "LONGITUDE": -75.214313, "DATE_RANGE_START": 2019, "Total Visits": 705.0, "Total Visitors": 551.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 5.0, "Total Spend": 9847.0, "Total Transactions": 451.0, "Total Customers": 340.0, "Median Spend per Transaction": 12.51, "Median Spend per Customer": 15.97 }, "geometry": { "type": "Point", "coordinates": [ -75.214313, 40.018604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4601 Walnut St", "LATITUDE": 39.955786, "LONGITUDE": -75.214102, "DATE_RANGE_START": 2019, "Total Visits": 3321.0, "Total Visitors": 2254.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 5.0, "Total Spend": 762.0, "Total Transactions": 45.0, "Total Customers": 35.0, "Median Spend per Transaction": 15.82, "Median Spend per Customer": 18.01 }, "geometry": { "type": "Point", "coordinates": [ -75.214102, 39.955786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "9173 Roosevelt Blvd Ste 10", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2019, "Total Visits": 1124.0, "Total Visitors": 984.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 10.0, "Total Spend": 25276.0, "Total Transactions": 520.0, "Total Customers": 448.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7qz", "Name": "Wishbone", "Category": "Restaurants and Other Eating Places", "Address": "210 S 13th St", "LATITUDE": 39.948376, "LONGITUDE": -75.162398, "DATE_RANGE_START": 2019, "Total Visits": 636.0, "Total Visitors": 410.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 33.0, "Total Spend": 2406.0, "Total Transactions": 207.0, "Total Customers": 160.0, "Median Spend per Transaction": 11.43, "Median Spend per Customer": 12.91 }, "geometry": { "type": "Point", "coordinates": [ -75.162398, 39.948376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg9-k4v", "Name": "Mom's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "2312 N 29th St", "LATITUDE": 39.991401, "LONGITUDE": -75.180066, "DATE_RANGE_START": 2019, "Total Visits": 58.0, "Total Visitors": 58.0, "POI_CBG": 421010169022.0, "Median Dwell Time": 7.0, "Total Spend": 787.0, "Total Transactions": 28.0, "Total Customers": 23.0, "Median Spend per Transaction": 21.49, "Median Spend per Customer": 25.31 }, "geometry": { "type": "Point", "coordinates": [ -75.180066, 39.991401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-9pv", "Name": "Liberty Bell Diner", "Category": "Restaurants and Other Eating Places", "Address": "8445 Frankford Ave", "LATITUDE": 40.044508, "LONGITUDE": -75.01753, "DATE_RANGE_START": 2019, "Total Visits": 1246.0, "Total Visitors": 745.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 33.0, "Total Spend": 65.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 6.58, "Median Spend per Customer": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.01753, 40.044508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvx-2kz", "Name": "Rising Sun", "Category": "Restaurants and Other Eating Places", "Address": "4800 Westminster Ave", "LATITUDE": 39.968785, "LONGITUDE": -75.217282, "DATE_RANGE_START": 2019, "Total Visits": 65.0, "Total Visitors": 50.0, "POI_CBG": 421010104003.0, "Median Dwell Time": 5.0, "Total Spend": 25477.0, "Total Transactions": 493.0, "Total Customers": 370.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.217282, 39.968785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "Name": "Bindlestiff Books", "Category": "Book Stores and News Dealers", "Address": "4530 Baltimore Ave", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 1.0, "Total Spend": 165.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 38.86, "Median Spend per Customer": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "Name": "Main Street Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4444 Main St", "LATITUDE": 40.026391, "LONGITUDE": -75.226268, "DATE_RANGE_START": 2019, "Total Visits": 135.0, "Total Visitors": 123.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 2547.0, "Total Transactions": 45.0, "Total Customers": 45.0, "Median Spend per Transaction": 43.18, "Median Spend per Customer": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.226268, 40.026391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-d35", "Name": "Dipinto Guitars", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "407 E Girard Ave", "LATITUDE": 39.970499, "LONGITUDE": -75.13019, "DATE_RANGE_START": 2019, "Total Visits": 108.0, "Total Visitors": 55.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 216.0, "Total Spend": 170.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 50.89, "Median Spend per Customer": 50.89 }, "geometry": { "type": "Point", "coordinates": [ -75.13019, 39.970499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5020 City Ave", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2019, "Total Visits": 848.0, "Total Visitors": 685.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 5.0, "Total Spend": 17426.0, "Total Transactions": 2064.0, "Total Customers": 1487.0, "Median Spend per Transaction": 7.43, "Median Spend per Customer": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnw-mzf", "Name": "Once Worn Consignment", "Category": "Used Merchandise Stores", "Address": "906 N 2nd St", "LATITUDE": 39.964394, "LONGITUDE": -75.140857, "DATE_RANGE_START": 2019, "Total Visits": 122.0, "Total Visitors": 105.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 126.0, "Total Spend": 2450.0, "Total Transactions": 70.0, "Total Customers": 63.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140857, 39.964394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-pvz", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "3680 Aramingo Ave", "LATITUDE": 39.994647, "LONGITUDE": -75.095265, "DATE_RANGE_START": 2019, "Total Visits": 393.0, "Total Visitors": 320.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 12.0, "Total Spend": 3390.0, "Total Transactions": 203.0, "Total Customers": 180.0, "Median Spend per Transaction": 13.7, "Median Spend per Customer": 14.64 }, "geometry": { "type": "Point", "coordinates": [ -75.095265, 39.994647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yd9", "Name": "Tea Do", "Category": "Restaurants and Other Eating Places", "Address": "132 N 10th St", "LATITUDE": 39.954609, "LONGITUDE": -75.156246, "DATE_RANGE_START": 2019, "Total Visits": 213.0, "Total Visitors": 188.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 41.0, "Total Spend": 8972.0, "Total Transactions": 951.0, "Total Customers": 793.0, "Median Spend per Transaction": 8.37, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.156246, 39.954609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954762, "LONGITUDE": -75.202149, "DATE_RANGE_START": 2019, "Total Visits": 560.0, "Total Visitors": 398.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 21.0, "Total Spend": 7954.0, "Total Transactions": 1647.0, "Total Customers": 738.0, "Median Spend per Transaction": 3.99, "Median Spend per Customer": 5.81 }, "geometry": { "type": "Point", "coordinates": [ -75.202149, 39.954762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "Name": "Apple Retail Store", "Category": "Electronics and Appliance Stores", "Address": "1607 Walnut St", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2019, "Total Visits": 1726.0, "Total Visitors": 1286.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 41.0, "Total Spend": 340225.0, "Total Transactions": 1587.0, "Total Customers": 1398.0, "Median Spend per Transaction": 85.32, "Median Spend per Customer": 103.73 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-y5f", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "1687 Grant Ave", "LATITUDE": 40.086763, "LONGITUDE": -75.038776, "DATE_RANGE_START": 2019, "Total Visits": 118.0, "Total Visitors": 108.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 1.0, "Total Spend": 129.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 6.21 }, "geometry": { "type": "Point", "coordinates": [ -75.038776, 40.086763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "10 Snyder Ave", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2019, "Total Visits": 843.0, "Total Visitors": 678.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 5.0, "Total Spend": 2487.0, "Total Transactions": 108.0, "Total Customers": 90.0, "Median Spend per Transaction": 17.58, "Median Spend per Customer": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.913861, "LONGITUDE": -75.154438, "DATE_RANGE_START": 2019, "Total Visits": 5387.0, "Total Visitors": 2875.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 20.0, "Total Spend": 4350.0, "Total Transactions": 22.0, "Total Customers": 17.0, "Median Spend per Transaction": 168.89, "Median Spend per Customer": 270.32 }, "geometry": { "type": "Point", "coordinates": [ -75.154438, 39.913861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-7t9", "Name": "Wawa", "Category": "Grocery Stores", "Address": "10901A Bustleton Ave", "LATITUDE": 40.11156, "LONGITUDE": -75.023472, "DATE_RANGE_START": 2019, "Total Visits": 2052.0, "Total Visitors": 1274.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 3.0, "Total Spend": 2842.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 140.0, "Median Spend per Customer": 31.94 }, "geometry": { "type": "Point", "coordinates": [ -75.023472, 40.11156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Frankford Ave", "LATITUDE": 40.065, "LONGITUDE": -74.981932, "DATE_RANGE_START": 2019, "Total Visits": 5340.0, "Total Visitors": 2938.0, "POI_CBG": 421010362033.0, "Median Dwell Time": 4.0, "Total Spend": 713.0, "Total Transactions": 32.0, "Total Customers": 20.0, "Median Spend per Transaction": 16.16, "Median Spend per Customer": 25.25 }, "geometry": { "type": "Point", "coordinates": [ -74.981932, 40.065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-228@628-p8t-w49", "Name": "Street Corner", "Category": "Gasoline Stations", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087377, "LONGITUDE": -74.961635, "DATE_RANGE_START": 2019, "Total Visits": 97.0, "Total Visitors": 83.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 6.0, "Total Spend": 573.0, "Total Transactions": 100.0, "Total Customers": 65.0, "Median Spend per Transaction": 4.03, "Median Spend per Customer": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -74.961635, 40.087377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6919 Torresdale Ave # 27", "LATITUDE": 40.026137, "LONGITUDE": -75.042321, "DATE_RANGE_START": 2019, "Total Visits": 411.0, "Total Visitors": 243.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 5.0, "Total Spend": 521.0, "Total Transactions": 53.0, "Total Customers": 17.0, "Median Spend per Transaction": 8.2, "Median Spend per Customer": 7.86 }, "geometry": { "type": "Point", "coordinates": [ -75.042321, 40.026137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "Name": "Boss Outlet", "Category": "Clothing Stores", "Address": "1613 Franklin Mills Cir", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2019, "Total Visits": 242.0, "Total Visitors": 205.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 39843.0, "Total Transactions": 695.0, "Total Customers": 638.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 40.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pp2-sdv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3829 Aramingo Ave", "LATITUDE": 39.995956, "LONGITUDE": -75.09064, "DATE_RANGE_START": 2019, "Total Visits": 157.0, "Total Visitors": 123.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 7.0, "Total Spend": 719.0, "Total Transactions": 65.0, "Total Customers": 53.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 10.36 }, "geometry": { "type": "Point", "coordinates": [ -75.09064, 39.995956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-cdv", "Name": "Pizza Hut", "Category": "Restaurants and Other Eating Places", "Address": "2701 Castor Ave", "LATITUDE": 39.991164, "LONGITUDE": -75.088836, "DATE_RANGE_START": 2019, "Total Visits": 5888.0, "Total Visitors": 3733.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 21.0, "Total Spend": 25.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.43, "Median Spend per Customer": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.088836, 39.991164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pj2-d9z", "Name": "T&S Express Market", "Category": "Automobile Dealers", "Address": "1200 E Hunting Park Ave", "LATITUDE": 40.010871, "LONGITUDE": -75.104013, "DATE_RANGE_START": 2019, "Total Visits": 63.0, "Total Visitors": 55.0, "POI_CBG": 421010191002.0, "Median Dwell Time": 75.0, "Total Spend": 164.0, "Total Transactions": 17.0, "Total Customers": 8.0, "Median Spend per Transaction": 7.37, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104013, 40.010871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-rzf", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2400 E Butler St", "LATITUDE": 39.995312, "LONGITUDE": -75.092003, "DATE_RANGE_START": 2019, "Total Visits": 505.0, "Total Visitors": 416.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 8.0, "Total Spend": 803.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 36.69, "Median Spend per Customer": 36.16 }, "geometry": { "type": "Point", "coordinates": [ -75.092003, 39.995312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-fcq", "Name": "Kanella", "Category": "Restaurants and Other Eating Places", "Address": "1001 Spruce St", "LATITUDE": 39.946359, "LONGITUDE": -75.157966, "DATE_RANGE_START": 2019, "Total Visits": 248.0, "Total Visitors": 235.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 17.0, "Total Spend": 9761.0, "Total Transactions": 240.0, "Total Customers": 218.0, "Median Spend per Transaction": 32.32, "Median Spend per Customer": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.157966, 39.946359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "1930 Chestnut St", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2019, "Total Visits": 2240.0, "Total Visitors": 1657.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 41.0, "Total Spend": 18705.0, "Total Transactions": 518.0, "Total Customers": 441.0, "Median Spend per Transaction": 29.0, "Median Spend per Customer": 32.32 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "Name": "Rosario's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1256 S 15th St Fl 1", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2019, "Total Visits": 68.0, "Total Visitors": 50.0, "POI_CBG": 421010022002.0, "Median Dwell Time": 6.0, "Total Spend": 1627.0, "Total Transactions": 67.0, "Total Customers": 60.0, "Median Spend per Transaction": 24.68, "Median Spend per Customer": 25.33 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1511 Locust St", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2019, "Total Visits": 498.0, "Total Visitors": 373.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 51.0, "Total Spend": 28499.0, "Total Transactions": 705.0, "Total Customers": 618.0, "Median Spend per Transaction": 29.96, "Median Spend per Customer": 32.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-m8v", "Name": "Ooh LaLa Salads", "Category": "Restaurants and Other Eating Places", "Address": "1238 W Girard Ave", "LATITUDE": 39.970924, "LONGITUDE": -75.156972, "DATE_RANGE_START": 2019, "Total Visits": 18.0, "Total Visitors": 15.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 14.0, "Total Spend": 225.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 14.84 }, "geometry": { "type": "Point", "coordinates": [ -75.156972, 39.970924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "Name": "New Star Express Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5202 Lancaster Ave", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2019, "Total Visits": 113.0, "Total Visitors": 98.0, "POI_CBG": 421010111004.0, "Median Dwell Time": 14.0, "Total Spend": 1143.0, "Total Transactions": 67.0, "Total Customers": 62.0, "Median Spend per Transaction": 15.89, "Median Spend per Customer": 16.26 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "Name": "The Fresh Market", "Category": "Grocery Stores", "Address": "8208 Germantown Ave # 18", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2019, "Total Visits": 1013.0, "Total Visitors": 630.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 21.0, "Total Spend": 37066.0, "Total Transactions": 951.0, "Total Customers": 533.0, "Median Spend per Transaction": 24.51, "Median Spend per Customer": 43.27 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnt-3wk", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2491 Aramingo Ave", "LATITUDE": 39.974634, "LONGITUDE": -75.119239, "DATE_RANGE_START": 2019, "Total Visits": 656.0, "Total Visitors": 538.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 49.0, "Total Spend": 3055.0, "Total Transactions": 50.0, "Total Customers": 45.0, "Median Spend per Transaction": 32.04, "Median Spend per Customer": 52.47 }, "geometry": { "type": "Point", "coordinates": [ -75.119239, 39.974634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-pn5", "Name": "Hummus Grill", "Category": "Restaurants and Other Eating Places", "Address": "3931 Walnut St", "LATITUDE": 39.954342, "LONGITUDE": -75.202153, "DATE_RANGE_START": 2019, "Total Visits": 541.0, "Total Visitors": 455.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 14.0, "Total Spend": 6365.0, "Total Transactions": 508.0, "Total Customers": 363.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.202153, 39.954342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "1200 N Broad St", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2019, "Total Visits": 606.0, "Total Visitors": 505.0, "POI_CBG": 421010140001.0, "Median Dwell Time": 7.0, "Total Spend": 611.0, "Total Transactions": 57.0, "Total Customers": 50.0, "Median Spend per Transaction": 8.68, "Median Spend per Customer": 8.79 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-fs5", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2201 W Oregon Ave", "LATITUDE": 39.919174, "LONGITUDE": -75.184979, "DATE_RANGE_START": 2019, "Total Visits": 2129.0, "Total Visitors": 1524.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 10.0, "Total Spend": 294.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 31.57, "Median Spend per Customer": 31.57 }, "geometry": { "type": "Point", "coordinates": [ -75.184979, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-225@628-p8m-vs5", "Name": "Wholesale Direct Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6410 Frankford Ave", "LATITUDE": 40.029181, "LONGITUDE": -75.05776, "DATE_RANGE_START": 2019, "Total Visits": 4616.0, "Total Visitors": 2275.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 41.0, "Total Spend": 4791.0, "Total Transactions": 135.0, "Total Customers": 103.0, "Median Spend per Transaction": 23.71, "Median Spend per Customer": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.05776, 40.029181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "Name": "The Bagel Place", "Category": "Restaurants and Other Eating Places", "Address": "404 Queen St", "LATITUDE": 39.937457, "LONGITUDE": -75.15033, "DATE_RANGE_START": 2019, "Total Visits": 180.0, "Total Visitors": 155.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 8.0, "Total Spend": 11639.0, "Total Transactions": 820.0, "Total Customers": 481.0, "Median Spend per Transaction": 11.1, "Median Spend per Customer": 15.36 }, "geometry": { "type": "Point", "coordinates": [ -75.15033, 39.937457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "315 N 12th St", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2019, "Total Visits": 470.0, "Total Visitors": 295.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 79.0, "Total Spend": 7222.0, "Total Transactions": 1163.0, "Total Customers": 760.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6391 Oxford Ave", "LATITUDE": 40.045014, "LONGITUDE": -75.08777, "DATE_RANGE_START": 2019, "Total Visits": 520.0, "Total Visitors": 406.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 2.0, "Total Spend": 8372.0, "Total Transactions": 1358.0, "Total Customers": 658.0, "Median Spend per Transaction": 4.97, "Median Spend per Customer": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.08777, 40.045014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "Name": "Palm Tree Market", "Category": "Grocery Stores", "Address": "4368 Cresson St", "LATITUDE": 40.026206, "LONGITUDE": -75.22393, "DATE_RANGE_START": 2019, "Total Visits": 180.0, "Total Visitors": 125.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 413.0, "Total Spend": 4650.0, "Total Transactions": 305.0, "Total Customers": 232.0, "Median Spend per Transaction": 12.81, "Median Spend per Customer": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.22393, 40.026206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22f@628-pmf-n3q", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953402, "LONGITUDE": -75.165876, "DATE_RANGE_START": 2019, "Total Visits": 8037.0, "Total Visitors": 5037.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 73.0, "Total Spend": 769.0, "Total Transactions": 135.0, "Total Customers": 127.0, "Median Spend per Transaction": 5.43, "Median Spend per Customer": 5.44 }, "geometry": { "type": "Point", "coordinates": [ -75.165876, 39.953402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgd-zxq", "Name": "GIANT Heirloom Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "3401 Chestnut St", "LATITUDE": 39.954746, "LONGITUDE": -75.191875, "DATE_RANGE_START": 2019, "Total Visits": 8603.0, "Total Visitors": 4982.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 336.0, "Total Spend": 342.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 21.99, "Median Spend per Customer": 49.49 }, "geometry": { "type": "Point", "coordinates": [ -75.191875, 39.954746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmd-zfz", "Name": "Springfield Beer Distributor", "Category": "Beer, Wine, and Liquor Stores", "Address": "2206 Washington Ave", "LATITUDE": 39.939186, "LONGITUDE": -75.180299, "DATE_RANGE_START": 2019, "Total Visits": 1149.0, "Total Visitors": 913.0, "POI_CBG": 421010020001.0, "Median Dwell Time": 1.0, "Total Spend": 11306.0, "Total Transactions": 142.0, "Total Customers": 102.0, "Median Spend per Transaction": 48.54, "Median Spend per Customer": 41.45 }, "geometry": { "type": "Point", "coordinates": [ -75.180299, 39.939186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4400 City Ave", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2019, "Total Visits": 6283.0, "Total Visitors": 4649.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 5.0, "Total Spend": 65657.0, "Total Transactions": 2997.0, "Total Customers": 2074.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.17 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3000 Reed St # 02", "LATITUDE": 39.936229, "LONGITUDE": -75.194533, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 133.0, "POI_CBG": 421010033006.0, "Median Dwell Time": 6.0, "Total Spend": 1045.0, "Total Transactions": 55.0, "Total Customers": 37.0, "Median Spend per Transaction": 15.58, "Median Spend per Customer": 23.36 }, "geometry": { "type": "Point", "coordinates": [ -75.194533, 39.936229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg9-7h5", "Name": "Hair Town", "Category": "Health and Personal Care Stores", "Address": "2301 N 29th St", "LATITUDE": 39.991198, "LONGITUDE": -75.177954, "DATE_RANGE_START": 2019, "Total Visits": 158.0, "Total Visitors": 83.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 231.0, "Total Spend": 5379.0, "Total Transactions": 203.0, "Total Customers": 148.0, "Median Spend per Transaction": 22.11, "Median Spend per Customer": 25.85 }, "geometry": { "type": "Point", "coordinates": [ -75.177954, 39.991198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm9-y9z", "Name": "InksterInc", "Category": "Clothing Stores", "Address": "530 S 4th St Apt 1", "LATITUDE": 39.941856, "LONGITUDE": -75.149296, "DATE_RANGE_START": 2019, "Total Visits": 1857.0, "Total Visitors": 1744.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 383.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 115.0, "Median Spend per Customer": 115.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149296, 39.941856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992425, "LONGITUDE": -75.101329, "DATE_RANGE_START": 2019, "Total Visits": 1001.0, "Total Visitors": 835.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 21.0, "Total Spend": 9640.0, "Total Transactions": 205.0, "Total Customers": 143.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 51.25 }, "geometry": { "type": "Point", "coordinates": [ -75.101329, 39.992425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "Name": "Dollar Mart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4902 Baltimore Ave", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2019, "Total Visits": 1682.0, "Total Visitors": 1193.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 39.0, "Total Spend": 381.0, "Total Transactions": 42.0, "Total Customers": 37.0, "Median Spend per Transaction": 8.06, "Median Spend per Customer": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-rp9", "Name": "Sunrise Breakfast", "Category": "Restaurants and Other Eating Places", "Address": "1916 E Washington Ln", "LATITUDE": 40.066142, "LONGITUDE": -75.158748, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 2.0, "Total Spend": 1338.0, "Total Transactions": 78.0, "Total Customers": 52.0, "Median Spend per Transaction": 14.32, "Median Spend per Customer": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.158748, 40.066142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "Name": "Baltimore Pet Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "4532 Baltimore Ave", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2019, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 5.0, "Total Spend": 10593.0, "Total Transactions": 351.0, "Total Customers": 245.0, "Median Spend per Transaction": 24.02, "Median Spend per Customer": 34.81 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1032 Pine St", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2019, "Total Visits": 2155.0, "Total Visitors": 1459.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 139.0, "Total Spend": 1289.0, "Total Transactions": 40.0, "Total Customers": 37.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 29.69 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4jv", "Name": "Embroidery King", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "6190 Rising Sun Ave", "LATITUDE": 40.046955, "LONGITUDE": -75.098445, "DATE_RANGE_START": 2019, "Total Visits": 112.0, "Total Visitors": 70.0, "POI_CBG": 421010305021.0, "Median Dwell Time": 203.0, "Total Spend": 881.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 106.5, "Median Spend per Customer": 106.5 }, "geometry": { "type": "Point", "coordinates": [ -75.098445, 40.046955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phq-f4v", "Name": "Almonte Mini Market 2", "Category": "Restaurants and Other Eating Places", "Address": "2129 72nd Ave", "LATITUDE": 40.064577, "LONGITUDE": -75.153201, "DATE_RANGE_START": 2019, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010266007.0, "Median Dwell Time": 1.0, "Total Spend": 46.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 4.25, "Median Spend per Customer": 4.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153201, 40.064577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-ht9", "Name": "Vapor Hut", "Category": "Other Miscellaneous Store Retailers", "Address": "2550 Grant Ave Ste 340", "LATITUDE": 40.0786, "LONGITUDE": -75.027064, "DATE_RANGE_START": 2019, "Total Visits": 223.0, "Total Visitors": 183.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 35.0, "Total Spend": 5740.0, "Total Transactions": 155.0, "Total Customers": 105.0, "Median Spend per Transaction": 29.16, "Median Spend per Customer": 41.04 }, "geometry": { "type": "Point", "coordinates": [ -75.027064, 40.0786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7400 Bustleton Ave", "LATITUDE": 40.051082, "LONGITUDE": -75.059668, "DATE_RANGE_START": 2019, "Total Visits": 7146.0, "Total Visitors": 4769.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 20.0, "Total Spend": 170358.0, "Total Transactions": 4617.0, "Total Customers": 2835.0, "Median Spend per Transaction": 23.9, "Median Spend per Customer": 36.97 }, "geometry": { "type": "Point", "coordinates": [ -75.059668, 40.051082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-835", "Name": "Pennsylvania General Store", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "51 N 12th St", "LATITUDE": 39.953203, "LONGITUDE": -75.159393, "DATE_RANGE_START": 2019, "Total Visits": 109275.0, "Total Visitors": 55610.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 175.0, "Total Transactions": 17.0, "Total Customers": 15.0, "Median Spend per Transaction": 11.09, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.159393, 39.953203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm9-zmk", "Name": "Anastacia's Antiques", "Category": "Used Merchandise Stores", "Address": "617 Bainbridge St", "LATITUDE": 39.941324, "LONGITUDE": -75.153108, "DATE_RANGE_START": 2019, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010015001.0, "Median Dwell Time": null, "Total Spend": 1295.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 324.0, "Median Spend per Customer": 324.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153108, 39.941324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "Name": "Asia Express", "Category": "Restaurants and Other Eating Places", "Address": "7246 Castor Ave", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010310001.0, "Median Dwell Time": 22.0, "Total Spend": 384.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 19.01, "Median Spend per Customer": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pg2-zs5", "Name": "South Philly Italian Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "311 W Mount Pleasant Ave", "LATITUDE": 40.054139, "LONGITUDE": -75.194452, "DATE_RANGE_START": 2019, "Total Visits": 95.0, "Total Visitors": 27.0, "POI_CBG": 421010388004.0, "Median Dwell Time": 195.0, "Total Spend": 590.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 50.39, "Median Spend per Customer": 64.62 }, "geometry": { "type": "Point", "coordinates": [ -75.194452, 40.054139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-2hq", "Name": "Las Cazuelas Restaurant BYOB", "Category": "Restaurants and Other Eating Places", "Address": "426 W Girard Ave", "LATITUDE": 39.969878, "LONGITUDE": -75.143998, "DATE_RANGE_START": 2019, "Total Visits": 40.0, "Total Visitors": 32.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 10.0, "Total Spend": 3503.0, "Total Transactions": 88.0, "Total Customers": 80.0, "Median Spend per Transaction": 31.38, "Median Spend per Customer": 28.65 }, "geometry": { "type": "Point", "coordinates": [ -75.143998, 39.969878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "Name": "Convenient Food Mart", "Category": "Grocery Stores", "Address": "7101 Frankford Ave", "LATITUDE": 40.034523, "LONGITUDE": -75.044217, "DATE_RANGE_START": 2019, "Total Visits": 115.0, "Total Visitors": 93.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 3.0, "Total Spend": 10529.0, "Total Transactions": 846.0, "Total Customers": 308.0, "Median Spend per Transaction": 10.74, "Median Spend per Customer": 13.19 }, "geometry": { "type": "Point", "coordinates": [ -75.044217, 40.034523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "Name": "Crab Shack", "Category": "Specialty Food Stores", "Address": "4800 N 16th St", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2019, "Total Visits": 208.0, "Total Visitors": 190.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 6.0, "Total Spend": 365.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-gc5", "Name": "Salmon Beer Distributor", "Category": "Beer, Wine, and Liquor Stores", "Address": "4571 Aramingo Ave", "LATITUDE": 40.002806, "LONGITUDE": -75.078717, "DATE_RANGE_START": 2019, "Total Visits": 287.0, "Total Visitors": 255.0, "POI_CBG": 421010183003.0, "Median Dwell Time": 1.0, "Total Spend": 1425.0, "Total Transactions": 42.0, "Total Customers": 28.0, "Median Spend per Transaction": 28.29, "Median Spend per Customer": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.078717, 40.002806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-94v", "Name": "Mood Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4618 Baltimore Ave", "LATITUDE": 39.948631, "LONGITUDE": -75.215805, "DATE_RANGE_START": 2019, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 360.0, "Total Spend": 1812.0, "Total Transactions": 67.0, "Total Customers": 60.0, "Median Spend per Transaction": 21.47, "Median Spend per Customer": 24.33 }, "geometry": { "type": "Point", "coordinates": [ -75.215805, 39.948631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7b-kpv", "Name": "China City", "Category": "Restaurants and Other Eating Places", "Address": "9200 Frankford Ave", "LATITUDE": 40.055685, "LONGITUDE": -75.004529, "DATE_RANGE_START": 2019, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 1.0, "Total Spend": 516.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 16.16, "Median Spend per Customer": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.004529, 40.055685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "Name": "Revolution Taco", "Category": "Restaurants and Other Eating Places", "Address": "2015 Walnut St", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2019, "Total Visits": 273.0, "Total Visitors": 157.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 76.0, "Total Spend": 7176.0, "Total Transactions": 448.0, "Total Customers": 356.0, "Median Spend per Transaction": 13.66, "Median Spend per Customer": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-s89", "Name": "Tequilas Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1602 Locust St", "LATITUDE": 39.948519, "LONGITUDE": -75.168054, "DATE_RANGE_START": 2019, "Total Visits": 785.0, "Total Visitors": 553.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 71.0, "Total Spend": 139.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 41.79, "Median Spend per Customer": 41.79 }, "geometry": { "type": "Point", "coordinates": [ -75.168054, 39.948519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "Name": "Little Fish", "Category": "Restaurants and Other Eating Places", "Address": "746 S 6th St", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2019, "Total Visits": 67.0, "Total Visitors": 58.0, "POI_CBG": 421010018001.0, "Median Dwell Time": 55.0, "Total Spend": 5700.0, "Total Transactions": 45.0, "Total Customers": 45.0, "Median Spend per Transaction": 125.44, "Median Spend per Customer": 125.44 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "Name": "Ginza", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Front St", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 52.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 41.0, "Total Spend": 6062.0, "Total Transactions": 125.0, "Total Customers": 115.0, "Median Spend per Transaction": 44.06, "Median Spend per Customer": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-54v", "Name": "Wood Street Pizza", "Category": "Restaurants and Other Eating Places", "Address": "325 N 12th St", "LATITUDE": 39.958437, "LONGITUDE": -75.158269, "DATE_RANGE_START": 2019, "Total Visits": 172.0, "Total Visitors": 135.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 9.0, "Total Spend": 3624.0, "Total Transactions": 218.0, "Total Customers": 155.0, "Median Spend per Transaction": 12.36, "Median Spend per Customer": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.158269, 39.958437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "Name": "Tradesman's", "Category": "Restaurants and Other Eating Places", "Address": "1322 Chestnut St", "LATITUDE": 39.950487, "LONGITUDE": -75.162708, "DATE_RANGE_START": 2019, "Total Visits": 1319.0, "Total Visitors": 1038.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 56.0, "Total Spend": 68058.0, "Total Transactions": 2317.0, "Total Customers": 1622.0, "Median Spend per Transaction": 23.96, "Median Spend per Customer": 30.4 }, "geometry": { "type": "Point", "coordinates": [ -75.162708, 39.950487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-5xq", "Name": "Liberty Choice", "Category": "Restaurants and Other Eating Places", "Address": "1939 N Front St", "LATITUDE": 39.979685, "LONGITUDE": -75.132953, "DATE_RANGE_START": 2019, "Total Visits": 333.0, "Total Visitors": 267.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 9.0, "Total Spend": 12516.0, "Total Transactions": 1088.0, "Total Customers": 480.0, "Median Spend per Transaction": 9.18, "Median Spend per Customer": 17.54 }, "geometry": { "type": "Point", "coordinates": [ -75.132953, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-psq", "Name": "Pho House Thang Long", "Category": "Restaurants and Other Eating Places", "Address": "177 W Girard Ave", "LATITUDE": 39.969594, "LONGITUDE": -75.138911, "DATE_RANGE_START": 2019, "Total Visits": 263.0, "Total Visitors": 198.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 230.0, "Total Spend": 2544.0, "Total Transactions": 82.0, "Total Customers": 72.0, "Median Spend per Transaction": 29.81, "Median Spend per Customer": 32.57 }, "geometry": { "type": "Point", "coordinates": [ -75.138911, 39.969594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "Name": "Talula's Garden", "Category": "Restaurants and Other Eating Places", "Address": "210 W Washington Sq", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2019, "Total Visits": 1143.0, "Total Visitors": 860.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 48.0, "Total Spend": 61504.0, "Total Transactions": 1724.0, "Total Customers": 948.0, "Median Spend per Transaction": 13.14, "Median Spend per Customer": 30.62 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5750 Baltimore Ave", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2019, "Total Visits": 225.0, "Total Visitors": 200.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 6.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.38, "Median Spend per Customer": 13.38 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pmb-gtv", "Name": "Middle Child", "Category": "Restaurants and Other Eating Places", "Address": "248 S 11th St", "LATITUDE": 39.947198, "LONGITUDE": -75.159468, "DATE_RANGE_START": 2019, "Total Visits": 1501.0, "Total Visitors": 1004.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 194.0, "Total Spend": 12710.0, "Total Transactions": 690.0, "Total Customers": 546.0, "Median Spend per Transaction": 14.98, "Median Spend per Customer": 16.95 }, "geometry": { "type": "Point", "coordinates": [ -75.159468, 39.947198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "Name": "Pac A Deli", "Category": "Grocery Stores", "Address": "1200 Walnut St", "LATITUDE": 39.948693, "LONGITUDE": -75.160788, "DATE_RANGE_START": 2019, "Total Visits": 713.0, "Total Visitors": 595.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 14.0, "Total Spend": 16771.0, "Total Transactions": 986.0, "Total Customers": 575.0, "Median Spend per Transaction": 13.48, "Median Spend per Customer": 18.58 }, "geometry": { "type": "Point", "coordinates": [ -75.160788, 39.948693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "Name": "Heng Fa Food Market", "Category": "Grocery Stores", "Address": "130 N 10th St", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2019, "Total Visits": 746.0, "Total Visitors": 516.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 9.0, "Total Spend": 34784.0, "Total Transactions": 1258.0, "Total Customers": 924.0, "Median Spend per Transaction": 20.87, "Median Spend per Customer": 25.82 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "Name": "Thai Square Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2521 Christian St", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2019, "Total Visits": 52.0, "Total Visitors": 27.0, "POI_CBG": 421010013005.0, "Median Dwell Time": 119.0, "Total Spend": 3877.0, "Total Transactions": 102.0, "Total Customers": 92.0, "Median Spend per Transaction": 32.35, "Median Spend per Customer": 35.53 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgh-bzf", "Name": "A & J Seafood", "Category": "Specialty Food Stores", "Address": "3148 N Broad St", "LATITUDE": 40.001306, "LONGITUDE": -75.15324, "DATE_RANGE_START": 2019, "Total Visits": 128.0, "Total Visitors": 88.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 357.0, "Total Spend": 788.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 106.55, "Median Spend per Customer": 106.55 }, "geometry": { "type": "Point", "coordinates": [ -75.15324, 40.001306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-vcq", "Name": "Talula's Daily", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "208 W Washington Sq", "LATITUDE": 39.947344, "LONGITUDE": -75.153493, "DATE_RANGE_START": 2019, "Total Visits": 1143.0, "Total Visitors": 860.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 48.0, "Total Spend": 96.0, "Total Transactions": 23.0, "Total Customers": 23.0, "Median Spend per Transaction": 2.75, "Median Spend per Customer": 2.75 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 39.947344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "Name": "Tio Flores", "Category": "Restaurants and Other Eating Places", "Address": "1600 South St", "LATITUDE": 39.94381, "LONGITUDE": -75.168972, "DATE_RANGE_START": 2019, "Total Visits": 353.0, "Total Visitors": 293.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 10.0, "Total Spend": 20463.0, "Total Transactions": 496.0, "Total Customers": 446.0, "Median Spend per Transaction": 32.37, "Median Spend per Customer": 36.36 }, "geometry": { "type": "Point", "coordinates": [ -75.168972, 39.94381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "Name": "Sang Kee Noodle House", "Category": "Restaurants and Other Eating Places", "Address": "3549 Chestnut St", "LATITUDE": 39.954847, "LONGITUDE": -75.193677, "DATE_RANGE_START": 2019, "Total Visits": 1336.0, "Total Visitors": 830.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 321.0, "Total Spend": 12148.0, "Total Transactions": 431.0, "Total Customers": 288.0, "Median Spend per Transaction": 20.44, "Median Spend per Customer": 31.75 }, "geometry": { "type": "Point", "coordinates": [ -75.193677, 39.954847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pft-ygk", "Name": "Chubbys Steaks", "Category": "Restaurants and Other Eating Places", "Address": "5826 Henry Ave", "LATITUDE": 40.029131, "LONGITUDE": -75.206304, "DATE_RANGE_START": 2019, "Total Visits": 648.0, "Total Visitors": 546.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 27.0, "Total Spend": 12218.0, "Total Transactions": 563.0, "Total Customers": 496.0, "Median Spend per Transaction": 17.99, "Median Spend per Customer": 19.45 }, "geometry": { "type": "Point", "coordinates": [ -75.206304, 40.029131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg4-bx5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6201 Germantown Ave", "LATITUDE": 40.042838, "LONGITUDE": -75.179833, "DATE_RANGE_START": 2019, "Total Visits": 466.0, "Total Visitors": 340.0, "POI_CBG": 421010252002.0, "Median Dwell Time": 6.0, "Total Spend": 2834.0, "Total Transactions": 142.0, "Total Customers": 93.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 17.72 }, "geometry": { "type": "Point", "coordinates": [ -75.179833, 40.042838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pnx-4vz", "Name": "The Abbaye", "Category": "Restaurants and Other Eating Places", "Address": "637 N 3rd St", "LATITUDE": 39.962216, "LONGITUDE": -75.142919, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 37.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 35.0, "Total Spend": 15269.0, "Total Transactions": 408.0, "Total Customers": 240.0, "Median Spend per Transaction": 32.38, "Median Spend per Customer": 33.57 }, "geometry": { "type": "Point", "coordinates": [ -75.142919, 39.962216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6587 Roosevelt Blvd", "LATITUDE": 40.035295, "LONGITUDE": -75.065039, "DATE_RANGE_START": 2019, "Total Visits": 706.0, "Total Visitors": 530.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 11.0, "Total Spend": 1199.0, "Total Transactions": 77.0, "Total Customers": 53.0, "Median Spend per Transaction": 10.91, "Median Spend per Customer": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.065039, 40.035295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "Name": "Head House Books", "Category": "Book Stores and News Dealers", "Address": "619 S 2nd St", "LATITUDE": 39.940599, "LONGITUDE": -75.145587, "DATE_RANGE_START": 2019, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 8.0, "Total Spend": 2661.0, "Total Transactions": 100.0, "Total Customers": 88.0, "Median Spend per Transaction": 27.19, "Median Spend per Customer": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.145587, 39.940599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "Name": "King Wok's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Torresdale Ave", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 23.0, "POI_CBG": 421010321001.0, "Median Dwell Time": null, "Total Spend": 522.0, "Total Transactions": 32.0, "Total Customers": 23.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 12.65 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "Name": "Lombard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "542 Lombard St", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2019, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 1.0, "Total Spend": 3114.0, "Total Transactions": 591.0, "Total Customers": 321.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "Name": "Palm Tree Market", "Category": "Restaurants and Other Eating Places", "Address": "717 N 2nd St", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 45.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 43.0, "Total Spend": 8125.0, "Total Transactions": 528.0, "Total Customers": 346.0, "Median Spend per Transaction": 13.56, "Median Spend per Customer": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "716 Adams Ave", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2019, "Total Visits": 247.0, "Total Visitors": 232.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 6.0, "Total Spend": 5170.0, "Total Transactions": 451.0, "Total Customers": 353.0, "Median Spend per Transaction": 9.11, "Median Spend per Customer": 11.46 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22x@628-pmf-n3q", "Name": "Uptown Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953433, "LONGITUDE": -75.165886, "DATE_RANGE_START": 2019, "Total Visits": 8037.0, "Total Visitors": 5037.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 73.0, "Total Spend": 11564.0, "Total Transactions": 566.0, "Total Customers": 428.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165886, 39.953433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "Name": "China City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6612 Castor Ave", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2019, "Total Visits": 127.0, "Total Visitors": 48.0, "POI_CBG": 421010311011.0, "Median Dwell Time": 189.0, "Total Spend": 320.0, "Total Transactions": 25.0, "Total Customers": 22.0, "Median Spend per Transaction": 11.3, "Median Spend per Customer": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pfy-b6k", "Name": "Barry's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "471 Leverington Ave", "LATITUDE": 40.035119, "LONGITUDE": -75.217909, "DATE_RANGE_START": 2019, "Total Visits": 192.0, "Total Visitors": 132.0, "POI_CBG": 421010213001.0, "Median Dwell Time": 42.0, "Total Spend": 2726.0, "Total Transactions": 140.0, "Total Customers": 102.0, "Median Spend per Transaction": 16.11, "Median Spend per Customer": 24.54 }, "geometry": { "type": "Point", "coordinates": [ -75.217909, 40.035119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "Name": "Mr Sushi", "Category": "Restaurants and Other Eating Places", "Address": "7324 Oxford Ave", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2019, "Total Visits": 160.0, "Total Visitors": 143.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 1.0, "Total Spend": 3729.0, "Total Transactions": 110.0, "Total Customers": 103.0, "Median Spend per Transaction": 30.2, "Median Spend per Customer": 31.62 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgm-68v", "Name": "Foghorn", "Category": "Restaurants and Other Eating Places", "Address": "4213 Ridge Ave", "LATITUDE": 40.009232, "LONGITUDE": -75.194181, "DATE_RANGE_START": 2019, "Total Visits": 117.0, "Total Visitors": 112.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 3.0, "Total Spend": 2703.0, "Total Transactions": 125.0, "Total Customers": 105.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.194181, 40.009232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6738 Bustleton Ave", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2019, "Total Visits": 153.0, "Total Visitors": 127.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 13.0, "Total Spend": 1484.0, "Total Transactions": 57.0, "Total Customers": 53.0, "Median Spend per Transaction": 20.8, "Median Spend per Customer": 23.9 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "Name": "Penang", "Category": "Restaurants and Other Eating Places", "Address": "117 N 10th St", "LATITUDE": 39.954047, "LONGITUDE": -75.155868, "DATE_RANGE_START": 2019, "Total Visits": 308.0, "Total Visitors": 270.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 41.0, "Total Spend": 15628.0, "Total Transactions": 401.0, "Total Customers": 386.0, "Median Spend per Transaction": 33.17, "Median Spend per Customer": 34.17 }, "geometry": { "type": "Point", "coordinates": [ -75.155868, 39.954047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "Name": "Bistro SouthEast", "Category": "Restaurants and Other Eating Places", "Address": "1824 South St", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2019, "Total Visits": 1128.0, "Total Visitors": 666.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 195.0, "Total Spend": 3496.0, "Total Transactions": 117.0, "Total Customers": 93.0, "Median Spend per Transaction": 25.13, "Median Spend per Customer": 31.22 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "Name": "Perkins Restaurant & Bakery", "Category": "Restaurants and Other Eating Places", "Address": "1681 Grant Ave", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2019, "Total Visits": 635.0, "Total Visitors": 481.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 38.0, "Total Spend": 5048.0, "Total Transactions": 160.0, "Total Customers": 145.0, "Median Spend per Transaction": 29.13, "Median Spend per Customer": 30.35 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-6rk", "Name": "Magic Carpet Foods", "Category": "Restaurants and Other Eating Places", "Address": "36th & Spruce St", "LATITUDE": 39.950915, "LONGITUDE": -75.195176, "DATE_RANGE_START": 2019, "Total Visits": 2112.0, "Total Visitors": 1363.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 89.0, "Total Spend": 2560.0, "Total Transactions": 288.0, "Total Customers": 165.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.195176, 39.950915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-94v", "Name": "La tapenade", "Category": "Restaurants and Other Eating Places", "Address": "Terminal A W", "LATITUDE": 39.941057, "LONGITUDE": -75.146154, "DATE_RANGE_START": 2019, "Total Visits": 102.0, "Total Visitors": 82.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 44.0, "Total Spend": 10030.0, "Total Transactions": 411.0, "Total Customers": 385.0, "Median Spend per Transaction": 18.5, "Median Spend per Customer": 22.53 }, "geometry": { "type": "Point", "coordinates": [ -75.146154, 39.941057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm3-t35", "Name": "B2", "Category": "Restaurants and Other Eating Places", "Address": "1500 E Passyunk Ave", "LATITUDE": 39.930857, "LONGITUDE": -75.162484, "DATE_RANGE_START": 2019, "Total Visits": 873.0, "Total Visitors": 560.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 120.0, "Total Spend": 1282.0, "Total Transactions": 260.0, "Total Customers": 52.0, "Median Spend per Transaction": 4.03, "Median Spend per Customer": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.162484, 39.930857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "8920 Frankford Ave", "LATITUDE": 40.05212, "LONGITUDE": -75.010353, "DATE_RANGE_START": 2019, "Total Visits": 1329.0, "Total Visitors": 783.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 11.0, "Total Spend": 39972.0, "Total Transactions": 1168.0, "Total Customers": 773.0, "Median Spend per Transaction": 19.45, "Median Spend per Customer": 27.95 }, "geometry": { "type": "Point", "coordinates": [ -75.010353, 40.05212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmb-dd9", "Name": "Town Food Market", "Category": "Grocery Stores", "Address": "428 S 13th St", "LATITUDE": 39.944522, "LONGITUDE": -75.163234, "DATE_RANGE_START": 2019, "Total Visits": 237.0, "Total Visitors": 208.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1.0, "Total Spend": 5173.0, "Total Transactions": 187.0, "Total Customers": 167.0, "Median Spend per Transaction": 23.84, "Median Spend per Customer": 26.84 }, "geometry": { "type": "Point", "coordinates": [ -75.163234, 39.944522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@63s-dvq-jsq", "Name": "Torres Grocery", "Category": "Grocery Stores", "Address": "5800 Delancey St", "LATITUDE": 39.955416, "LONGITUDE": -75.238225, "DATE_RANGE_START": 2019, "Total Visits": 55.0, "Total Visitors": 48.0, "POI_CBG": 421010084005.0, "Median Dwell Time": 1.0, "Total Spend": 279.0, "Total Transactions": 32.0, "Total Customers": 15.0, "Median Spend per Transaction": 8.7, "Median Spend per Customer": 7.79 }, "geometry": { "type": "Point", "coordinates": [ -75.238225, 39.955416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2000 Hamilton St", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2019, "Total Visits": 485.0, "Total Visitors": 336.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 8.0, "Total Spend": 70013.0, "Total Transactions": 7552.0, "Total Customers": 3788.0, "Median Spend per Transaction": 7.61, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "Name": "Cappuccio's Meats", "Category": "Specialty Food Stores", "Address": "1019 S 9th St", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2019, "Total Visits": 70.0, "Total Visitors": 65.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 1.0, "Total Spend": 1740.0, "Total Transactions": 42.0, "Total Customers": 42.0, "Median Spend per Transaction": 28.13, "Median Spend per Customer": 28.13 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p7z-x89", "Name": "Don Pedro Meats and Market", "Category": "Specialty Food Stores", "Address": "6010 Castor Ave", "LATITUDE": 40.035069, "LONGITUDE": -75.082126, "DATE_RANGE_START": 2019, "Total Visits": 601.0, "Total Visitors": 421.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 11.0, "Total Spend": 6532.0, "Total Transactions": 142.0, "Total Customers": 107.0, "Median Spend per Transaction": 25.16, "Median Spend per Customer": 45.23 }, "geometry": { "type": "Point", "coordinates": [ -75.082126, 40.035069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm7-nwk", "Name": "Point Crab's & Seafood", "Category": "Specialty Food Stores", "Address": "1324 S 21st St", "LATITUDE": 39.934951, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2019, "Total Visits": 78.0, "Total Visitors": 67.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 5.0, "Total Spend": 192.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.934951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj7-5fz", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "5843 45 Rising Sun Avenue Philadelphia", "LATITUDE": 40.043629, "LONGITUDE": -75.102849, "DATE_RANGE_START": 2019, "Total Visits": 525.0, "Total Visitors": 410.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 6.0, "Total Spend": 576.0, "Total Transactions": 43.0, "Total Customers": 32.0, "Median Spend per Transaction": 9.49, "Median Spend per Customer": 9.74 }, "geometry": { "type": "Point", "coordinates": [ -75.102849, 40.043629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7yv", "Name": "Hunger Burger", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953665, "LONGITUDE": -75.159753, "DATE_RANGE_START": 2019, "Total Visits": 400.0, "Total Visitors": 365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 11.0, "Total Spend": 8909.0, "Total Transactions": 590.0, "Total Customers": 536.0, "Median Spend per Transaction": 13.53, "Median Spend per Customer": 14.59 }, "geometry": { "type": "Point", "coordinates": [ -75.159753, 39.953665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm3-vzz", "Name": "Sermania Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1719 E Passyunk Ave", "LATITUDE": 39.928072, "LONGITUDE": -75.165393, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 1.0, "Total Spend": 381.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 51.84, "Median Spend per Customer": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.165393, 39.928072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "602 Carpenter Ln", "LATITUDE": 40.04622, "LONGITUDE": -75.195937, "DATE_RANGE_START": 2019, "Total Visits": 118.0, "Total Visitors": 70.0, "POI_CBG": 421010236003.0, "Median Dwell Time": 40.0, "Total Spend": 1535.0, "Total Transactions": 160.0, "Total Customers": 117.0, "Median Spend per Transaction": 7.83, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.195937, 40.04622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-v75", "Name": "Glory Beer Bar & Kitchen", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "126 Chestnut St", "LATITUDE": 39.948157, "LONGITUDE": -75.143628, "DATE_RANGE_START": 2019, "Total Visits": 257.0, "Total Visitors": 208.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 59.0, "Total Spend": 1937.0, "Total Transactions": 35.0, "Total Customers": 33.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 49.49 }, "geometry": { "type": "Point", "coordinates": [ -75.143628, 39.948157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "Name": "Desi Village", "Category": "Restaurants and Other Eating Places", "Address": "4527 Baltimore Ave", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2019, "Total Visits": 60.0, "Total Visitors": 23.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 229.0, "Total Spend": 1000.0, "Total Transactions": 40.0, "Total Customers": 33.0, "Median Spend per Transaction": 21.52, "Median Spend per Customer": 29.26 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "Name": "Trattoria Carina", "Category": "Restaurants and Other Eating Places", "Address": "2201 Spruce St", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2019, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010008011.0, "Median Dwell Time": 1.0, "Total Spend": 5190.0, "Total Transactions": 50.0, "Total Customers": 47.0, "Median Spend per Transaction": 112.71, "Median Spend per Customer": 120.3 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6601 N Broad St", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2019, "Total Visits": 486.0, "Total Visitors": 338.0, "POI_CBG": 421010268002.0, "Median Dwell Time": 7.0, "Total Spend": 1199.0, "Total Transactions": 58.0, "Total Customers": 50.0, "Median Spend per Transaction": 7.76, "Median Spend per Customer": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "Name": "Station Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9319 Krewstown Rd", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2019, "Total Visits": 238.0, "Total Visitors": 143.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 40.0, "Total Spend": 3289.0, "Total Transactions": 168.0, "Total Customers": 122.0, "Median Spend per Transaction": 17.68, "Median Spend per Customer": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p74-n5z", "Name": "Uniform Gear", "Category": "Clothing Stores", "Address": "8063 Walker St", "LATITUDE": 40.039579, "LONGITUDE": -75.024137, "DATE_RANGE_START": 2019, "Total Visits": 43.0, "Total Visitors": 35.0, "POI_CBG": 421010329002.0, "Median Dwell Time": 4.0, "Total Spend": 1271.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 47.0, "Median Spend per Customer": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024137, 40.039579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-p7w-v4v", "Name": "The Children's Place", "Category": "Clothing Stores", "Address": "2349 Cottman Ave", "LATITUDE": 40.047874, "LONGITUDE": -75.055616, "DATE_RANGE_START": 2019, "Total Visits": 285.0, "Total Visitors": 278.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 11.0, "Total Spend": 80.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 23.96, "Median Spend per Customer": 23.96 }, "geometry": { "type": "Point", "coordinates": [ -75.055616, 40.047874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "Name": "Brickbat Books", "Category": "Used Merchandise Stores", "Address": "709 S 4th St", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2019, "Total Visits": 7.0, "Total Visitors": 3.0, "POI_CBG": 421010016001.0, "Median Dwell Time": null, "Total Spend": 951.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvx-vcq", "Name": "Gold Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1247 S 47th St", "LATITUDE": 39.943788, "LONGITUDE": -75.210959, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 37.0, "POI_CBG": 421010074001.0, "Median Dwell Time": 5.0, "Total Spend": 1295.0, "Total Transactions": 127.0, "Total Customers": 77.0, "Median Spend per Transaction": 8.91, "Median Spend per Customer": 10.63 }, "geometry": { "type": "Point", "coordinates": [ -75.210959, 39.943788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "Name": "Philly Tacos", "Category": "Restaurants and Other Eating Places", "Address": "2011 Reed St", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2019, "Total Visits": 33.0, "Total Visitors": 22.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 131.0, "Total Spend": 763.0, "Total Transactions": 35.0, "Total Customers": 30.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3100 W Allegheny Ave", "LATITUDE": 40.004821, "LONGITUDE": -75.179811, "DATE_RANGE_START": 2019, "Total Visits": 388.0, "Total Visitors": 315.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 5.0, "Total Spend": 9425.0, "Total Transactions": 1111.0, "Total Customers": 760.0, "Median Spend per Transaction": 7.62, "Median Spend per Customer": 9.14 }, "geometry": { "type": "Point", "coordinates": [ -75.179811, 40.004821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6608 Frankford Ave", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2019, "Total Visits": 768.0, "Total Visitors": 433.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 3.0, "Total Spend": 3024.0, "Total Transactions": 590.0, "Total Customers": 295.0, "Median Spend per Transaction": 3.55, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-jd9", "Name": "Watch Co", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952246, "LONGITUDE": -75.168308, "DATE_RANGE_START": 2019, "Total Visits": 35645.0, "Total Visitors": 18639.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 102.0, "Total Spend": 2678.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168308, 39.952246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "Name": "Stanley's Hardware", "Category": "Building Material and Supplies Dealers", "Address": "5555 Ridge Ave", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2019, "Total Visits": 820.0, "Total Visitors": 581.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 10.0, "Total Spend": 56369.0, "Total Transactions": 1676.0, "Total Customers": 1089.0, "Median Spend per Transaction": 20.55, "Median Spend per Customer": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-f4v", "Name": "Q The Tire Doctor", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1961 N 29th St", "LATITUDE": 39.986136, "LONGITUDE": -75.180823, "DATE_RANGE_START": 2019, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010151022.0, "Median Dwell Time": 1.0, "Total Spend": 421.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 55.5, "Median Spend per Customer": 55.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180823, 39.986136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm7-wp9", "Name": "El Patio Cafe Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1400 S 31st St", "LATITUDE": 39.936426, "LONGITUDE": -75.195622, "DATE_RANGE_START": 2019, "Total Visits": 27.0, "Total Visitors": 22.0, "POI_CBG": 421010033006.0, "Median Dwell Time": 19.0, "Total Spend": 332.0, "Total Transactions": 43.0, "Total Customers": 23.0, "Median Spend per Transaction": 5.87, "Median Spend per Customer": 13.06 }, "geometry": { "type": "Point", "coordinates": [ -75.195622, 39.936426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-sbk", "Name": "Faulkner Hyundai", "Category": "Automobile Dealers", "Address": "11500 Roosevelt Blvd", "LATITUDE": 40.102704, "LONGITUDE": -75.006021, "DATE_RANGE_START": 2019, "Total Visits": 6140.0, "Total Visitors": 4156.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 60.0, "Total Spend": 38068.0, "Total Transactions": 92.0, "Total Customers": 85.0, "Median Spend per Transaction": 137.11, "Median Spend per Customer": 149.73 }, "geometry": { "type": "Point", "coordinates": [ -75.006021, 40.102704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-phy-qs5", "Name": "Torres Grocery", "Category": "Grocery Stores", "Address": "4100 N Fairhill St", "LATITUDE": 40.013759, "LONGITUDE": -75.137021, "DATE_RANGE_START": 2019, "Total Visits": 17.0, "Total Visitors": 13.0, "POI_CBG": 421010197001.0, "Median Dwell Time": 14.0, "Total Spend": 45.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 2.59, "Median Spend per Customer": 2.99 }, "geometry": { "type": "Point", "coordinates": [ -75.137021, 40.013759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-ph6-whq", "Name": "Cedar Park Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2035 N 63rd St", "LATITUDE": 39.986565, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 9.0, "Total Spend": 7962.0, "Total Transactions": 311.0, "Total Customers": 268.0, "Median Spend per Transaction": 22.74, "Median Spend per Customer": 23.86 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnw-mzf", "Name": "The Foodery", "Category": "Restaurants and Other Eating Places", "Address": "837 N 2nd St", "LATITUDE": 39.963893, "LONGITUDE": -75.14043, "DATE_RANGE_START": 2019, "Total Visits": 3095.0, "Total Visitors": 2424.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 23.0, "Total Spend": 11718.0, "Total Transactions": 730.0, "Total Customers": 516.0, "Median Spend per Transaction": 13.45, "Median Spend per Customer": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.14043, 39.963893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6110 Woodland Ave", "LATITUDE": 39.928851, "LONGITUDE": -75.229354, "DATE_RANGE_START": 2019, "Total Visits": 485.0, "Total Visitors": 353.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 10.0, "Total Spend": 2224.0, "Total Transactions": 346.0, "Total Customers": 200.0, "Median Spend per Transaction": 5.92, "Median Spend per Customer": 6.99 }, "geometry": { "type": "Point", "coordinates": [ -75.229354, 39.928851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "29 Snyder Ave", "LATITUDE": 39.923331, "LONGITUDE": -75.144837, "DATE_RANGE_START": 2019, "Total Visits": 2297.0, "Total Visitors": 1621.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 12.0, "Total Spend": 57.0, "Total Transactions": 13.0, "Total Customers": 5.0, "Median Spend per Transaction": 3.62, "Median Spend per Customer": 8.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144837, 39.923331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "329 Spring Garden St", "LATITUDE": 39.96142, "LONGITUDE": -75.144288, "DATE_RANGE_START": 2019, "Total Visits": 461.0, "Total Visitors": 315.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 6.0, "Total Spend": 5362.0, "Total Transactions": 1041.0, "Total Customers": 490.0, "Median Spend per Transaction": 4.41, "Median Spend per Customer": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.144288, 39.96142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm4-h5z", "Name": "Cramers Uniforms", "Category": "Clothing Stores", "Address": "1916 E Passyunk Ave", "LATITUDE": 39.926232, "LONGITUDE": -75.167927, "DATE_RANGE_START": 2019, "Total Visits": 1537.0, "Total Visitors": 983.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 141.0, "Total Spend": 615.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 184.0, "Median Spend per Customer": 184.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167927, 39.926232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-gff", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2920 Roberts Ave Ste 1040", "LATITUDE": 40.011075, "LONGITUDE": -75.176591, "DATE_RANGE_START": 2019, "Total Visits": 37.0, "Total Visitors": 37.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 12.0, "Total Spend": 2694.0, "Total Transactions": 267.0, "Total Customers": 210.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 10.41 }, "geometry": { "type": "Point", "coordinates": [ -75.176591, 40.011075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7700 Crittenden St", "LATITUDE": 40.072233, "LONGITUDE": -75.194825, "DATE_RANGE_START": 2019, "Total Visits": 272.0, "Total Visitors": 233.0, "POI_CBG": 421010257001.0, "Median Dwell Time": 9.0, "Total Spend": 2549.0, "Total Transactions": 143.0, "Total Customers": 85.0, "Median Spend per Transaction": 10.95, "Median Spend per Customer": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.194825, 40.072233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "901 S 2nd St", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2019, "Total Visits": 42.0, "Total Visitors": 30.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 201.0, "Total Spend": 5653.0, "Total Transactions": 450.0, "Total Customers": 328.0, "Median Spend per Transaction": 9.61, "Median Spend per Customer": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } } +] +} diff --git a/assets/data/data_2020.geojson b/assets/data/data_2020.geojson new file mode 100644 index 0000000..8912e4e --- /dev/null +++ b/assets/data/data_2020.geojson @@ -0,0 +1,2600 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm4-t7q", "Name": "Mifflin Market", "Category": "Grocery Stores", "Address": "1901 S 5th St", "LATITUDE": 39.924805, "LONGITUDE": -75.154427, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 139.0, "POI_CBG": 421010042014.0, "Median Dwell Time": 99.0, "Total Spend": 812.0, "Total Transactions": 95.0, "Total Customers": 38.0, "Median Spend per Transaction": 7.39, "Median Spend per Customer": 11.81 }, "geometry": { "type": "Point", "coordinates": [ -75.154427, 39.924805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4000 Woodhaven Rd Ste 250", "LATITUDE": 40.084825, "LONGITUDE": -74.9723, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 137.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 7.0, "Total Spend": 4521.0, "Total Transactions": 222.0, "Total Customers": 135.0, "Median Spend per Transaction": 14.7, "Median Spend per Customer": 22.1 }, "geometry": { "type": "Point", "coordinates": [ -74.9723, 40.084825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-p75-9cq", "Name": "Deals", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8290 Frankford Ave", "LATITUDE": 40.043742, "LONGITUDE": -75.019324, "DATE_RANGE_START": 2020, "Total Visits": 3912.0, "Total Visitors": 2348.0, "POI_CBG": 421019802001.0, "Median Dwell Time": 2.0, "Total Spend": 308.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.019324, 40.043742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg9-b8v", "Name": "Dragon Express", "Category": "Restaurants and Other Eating Places", "Address": "2400 Ridge Ave", "LATITUDE": 39.981544, "LONGITUDE": -75.174071, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010149001.0, "Median Dwell Time": 9.0, "Total Spend": 429.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 17.95, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174071, 39.981544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg8-kmk", "Name": "Brewerytown Beats", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1517 N Bailey St", "LATITUDE": 39.979092, "LONGITUDE": -75.178265, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010138001.0, "Median Dwell Time": 62.0, "Total Spend": 166.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 26.46, "Median Spend per Customer": 26.46 }, "geometry": { "type": "Point", "coordinates": [ -75.178265, 39.979092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "Name": "New Pizza Villa", "Category": "Restaurants and Other Eating Places", "Address": "7159 Torresdale Ave", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 20.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 668.0, "Total Spend": 1399.0, "Total Transactions": 60.0, "Total Customers": 42.0, "Median Spend per Transaction": 21.97, "Median Spend per Customer": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "Name": "Fountain Porter", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1601 S 10th St", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 4.0, "Total Spend": 1759.0, "Total Transactions": 38.0, "Total Customers": 14.0, "Median Spend per Transaction": 46.2, "Median Spend per Customer": 36.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "4010 Robbins Ave", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 2.0, "Total Spend": 165.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 24.1, "Median Spend per Customer": 24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9171 Roosevelt Blvd", "LATITUDE": 40.076084, "LONGITUDE": -75.031448, "DATE_RANGE_START": 2020, "Total Visits": 998.0, "Total Visitors": 861.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 11.0, "Total Spend": 17649.0, "Total Transactions": 766.0, "Total Customers": 671.0, "Median Spend per Transaction": 17.94, "Median Spend per Customer": 20.85 }, "geometry": { "type": "Point", "coordinates": [ -75.031448, 40.076084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "1415 Washington Ave", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2020, "Total Visits": 719.0, "Total Visitors": 562.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 7.0, "Total Spend": 50632.0, "Total Transactions": 1137.0, "Total Customers": 852.0, "Median Spend per Transaction": 34.54, "Median Spend per Customer": 45.52 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4438 Chestnut St", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 40.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 24.0, "Total Spend": 20080.0, "Total Transactions": 830.0, "Total Customers": 582.0, "Median Spend per Transaction": 21.85, "Median Spend per Customer": 26.64 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1700 N 28th St", "LATITUDE": 39.981705, "LONGITUDE": -75.180442, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 44.0, "POI_CBG": 421010149004.0, "Median Dwell Time": 20.0, "Total Spend": 616.0, "Total Transactions": 36.0, "Total Customers": 32.0, "Median Spend per Transaction": 12.08, "Median Spend per Customer": 14.54 }, "geometry": { "type": "Point", "coordinates": [ -75.180442, 39.981705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-syv", "Name": "Sushi Garden & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "425 S Broad St", "LATITUDE": 39.944749, "LONGITUDE": -75.164917, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 60.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 102.0, "Total Spend": 329.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 17.15, "Median Spend per Customer": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.164917, 39.944749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@63s-dvy-wtv", "Name": "Don Barriga Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "4443 Spruce St Apt 1", "LATITUDE": 39.953099, "LONGITUDE": -75.211951, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 14.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 12.0, "Total Spend": 6960.0, "Total Transactions": 284.0, "Total Customers": 198.0, "Median Spend per Transaction": 24.6, "Median Spend per Customer": 26.16 }, "geometry": { "type": "Point", "coordinates": [ -75.211951, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "Name": "Pub & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1946 Lombard St", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 4.0, "Total Spend": 3571.0, "Total Transactions": 48.0, "Total Customers": 46.0, "Median Spend per Transaction": 72.08, "Median Spend per Customer": 70.16 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7yv", "Name": "Hunger Burger", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953665, "LONGITUDE": -75.159753, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 52.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 2815.0, "Total Transactions": 195.0, "Total Customers": 165.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.159753, 39.953665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "8880 Bartram Ave", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2020, "Total Visits": 516.0, "Total Visitors": 256.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 493.0, "Total Spend": 47832.0, "Total Transactions": 93.0, "Total Customers": 14.0, "Median Spend per Transaction": 610.73, "Median Spend per Customer": 622.37 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-ygk", "Name": "Shaxian Delicacies", "Category": "Restaurants and Other Eating Places", "Address": "106 N 10th St", "LATITUDE": 39.953861, "LONGITUDE": -75.156353, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 89.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 61.0, "Total Spend": 80.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 20.27, "Median Spend per Customer": 20.27 }, "geometry": { "type": "Point", "coordinates": [ -75.156353, 39.953861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8sq", "Name": "District Taco", "Category": "Restaurants and Other Eating Places", "Address": "1140 Market St", "LATITUDE": 39.95167, "LONGITUDE": -75.159171, "DATE_RANGE_START": 2020, "Total Visits": 4897.0, "Total Visitors": 3356.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 15.0, "Total Spend": 3761.0, "Total Transactions": 236.0, "Total Customers": 181.0, "Median Spend per Transaction": 13.67, "Median Spend per Customer": 17.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159171, 39.95167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvp-bff", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5754 Baltimore Ave", "LATITUDE": 39.945197, "LONGITUDE": -75.238981, "DATE_RANGE_START": 2020, "Total Visits": 232.0, "Total Visitors": 202.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 11.0, "Total Spend": 830.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 23.23, "Median Spend per Customer": 23.46 }, "geometry": { "type": "Point", "coordinates": [ -75.238981, 39.945197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "2422 W Passyunk Ave", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 99.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 320.0, "Total Spend": 2841.0, "Total Transactions": 195.0, "Total Customers": 157.0, "Median Spend per Transaction": 12.55, "Median Spend per Customer": 14.54 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Butler St", "LATITUDE": 39.9973, "LONGITUDE": -75.092737, "DATE_RANGE_START": 2020, "Total Visits": 774.0, "Total Visitors": 482.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 40.0, "Total Spend": 34067.0, "Total Transactions": 1904.0, "Total Customers": 1298.0, "Median Spend per Transaction": 15.67, "Median Spend per Customer": 19.98 }, "geometry": { "type": "Point", "coordinates": [ -75.092737, 39.9973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmb-kj9", "Name": "Oui", "Category": "Restaurants and Other Eating Places", "Address": "160 N 3rd St", "LATITUDE": 39.953782, "LONGITUDE": -75.145092, "DATE_RANGE_START": 2020, "Total Visits": 512.0, "Total Visitors": 337.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 78.0, "Total Spend": 471.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 42.77, "Median Spend per Customer": 42.77 }, "geometry": { "type": "Point", "coordinates": [ -75.145092, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7265 Castor Ave", "LATITUDE": 40.050926, "LONGITUDE": -75.066019, "DATE_RANGE_START": 2020, "Total Visits": 1634.0, "Total Visitors": 1233.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 4.0, "Total Spend": 755.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 24.01, "Median Spend per Customer": 24.01 }, "geometry": { "type": "Point", "coordinates": [ -75.066019, 40.050926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-btv", "Name": "Ridge Gas & Minimart", "Category": "Gasoline Stations", "Address": "2300 Ridge Ave", "LATITUDE": 39.980802, "LONGITUDE": -75.173001, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 228.0, "POI_CBG": 421010149001.0, "Median Dwell Time": 6.0, "Total Spend": 1752.0, "Total Transactions": 101.0, "Total Customers": 60.0, "Median Spend per Transaction": 16.75, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173001, 39.980802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "Name": "Urban Outfitters", "Category": "Clothing Stores", "Address": "1627 Walnut St", "LATITUDE": 39.950066, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 224.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 3.0, "Total Spend": 6697.0, "Total Transactions": 87.0, "Total Customers": 81.0, "Median Spend per Transaction": 34.55, "Median Spend per Customer": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "Name": "Charley's", "Category": "Restaurants and Other Eating Places", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 322.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 2886.0, "Total Transactions": 147.0, "Total Customers": 137.0, "Median Spend per Transaction": 13.29, "Median Spend per Customer": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pj6-435", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "5694 Rising Sun Ave", "LATITUDE": 40.040276, "LONGITUDE": -75.109025, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 62.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 24.0, "Total Spend": 76.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 19.17, "Median Spend per Customer": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.109025, 40.040276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pp5-p35", "Name": "Martin's Deli", "Category": "Restaurants and Other Eating Places", "Address": "2772 Kensington Ave", "LATITUDE": 39.991299, "LONGITUDE": -75.123216, "DATE_RANGE_START": 2020, "Total Visits": 1082.0, "Total Visitors": 713.0, "POI_CBG": 421010177022.0, "Median Dwell Time": 10.0, "Total Spend": 286.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 13.8, "Median Spend per Customer": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123216, 39.991299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 294.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 2.0, "Total Spend": 6499.0, "Total Transactions": 582.0, "Total Customers": 411.0, "Median Spend per Transaction": 9.82, "Median Spend per Customer": 12.17 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2311 Cottman Ave", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 127.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 6.0, "Total Spend": 11209.0, "Total Transactions": 603.0, "Total Customers": 516.0, "Median Spend per Transaction": 16.77, "Median Spend per Customer": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "Name": "Kashmir Garden Super Market", "Category": "Grocery Stores", "Address": "9325 Krewstown Rd", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 125.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 5.0, "Total Spend": 6630.0, "Total Transactions": 169.0, "Total Customers": 123.0, "Median Spend per Transaction": 22.64, "Median Spend per Customer": 34.63 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "Name": "Green Farm", "Category": "Specialty Food Stores", "Address": "10690 Bustleton Ave", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2020, "Total Visits": 468.0, "Total Visitors": 377.0, "POI_CBG": 421010357012.0, "Median Dwell Time": 6.0, "Total Spend": 11308.0, "Total Transactions": 405.0, "Total Customers": 272.0, "Median Spend per Transaction": 22.94, "Median Spend per Customer": 28.39 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "518 Port Royal Ave", "LATITUDE": 40.061169, "LONGITUDE": -75.237242, "DATE_RANGE_START": 2020, "Total Visits": 756.0, "Total Visitors": 528.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 9.0, "Total Spend": 7565.0, "Total Transactions": 316.0, "Total Customers": 232.0, "Median Spend per Transaction": 13.63, "Median Spend per Customer": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.237242, 40.061169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9m-gtv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3200 92 Red Lion Road Suite 250", "LATITUDE": 40.080307, "LONGITUDE": -74.99459, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 129.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 3.0, "Total Spend": 1917.0, "Total Transactions": 111.0, "Total Customers": 56.0, "Median Spend per Transaction": 10.77, "Median Spend per Customer": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -74.99459, 40.080307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 214", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2020, "Total Visits": 6123.0, "Total Visitors": 3702.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 70.0, "Total Spend": 549.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 31.08, "Median Spend per Customer": 31.08 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "Name": "Victoria's Secret", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.090585, "LONGITUDE": -74.961564, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 363.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 36.0, "Total Spend": 342.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 34.74, "Median Spend per Customer": 34.74 }, "geometry": { "type": "Point", "coordinates": [ -74.961564, 40.090585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "Name": "Philly Auto", "Category": "Automobile Dealers", "Address": "4530 Torresdale Ave", "LATITUDE": 40.010118, "LONGITUDE": -75.081162, "DATE_RANGE_START": 2020, "Total Visits": 226.0, "Total Visitors": 171.0, "POI_CBG": 421010294003.0, "Median Dwell Time": 18.0, "Total Spend": 23917.0, "Total Transactions": 127.0, "Total Customers": 107.0, "Median Spend per Transaction": 33.24, "Median Spend per Customer": 50.97 }, "geometry": { "type": "Point", "coordinates": [ -75.081162, 40.010118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1105 N 63rd St # 09", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2020, "Total Visits": 288.0, "Total Visitors": 212.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 7.0, "Total Spend": 2326.0, "Total Transactions": 143.0, "Total Customers": 95.0, "Median Spend per Transaction": 13.07, "Median Spend per Customer": 16.51 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "59 E Oregon Ave", "LATITUDE": 39.914298, "LONGITUDE": -75.149292, "DATE_RANGE_START": 2020, "Total Visits": 4083.0, "Total Visitors": 2559.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 6.0, "Total Spend": 1911.0, "Total Transactions": 113.0, "Total Customers": 75.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.149292, 39.914298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "Name": "US Gas", "Category": "Gasoline Stations", "Address": "2652 Frankford Ave", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2020, "Total Visits": 234.0, "Total Visitors": 179.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 2.0, "Total Spend": 1979.0, "Total Transactions": 109.0, "Total Customers": 83.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-2kz", "Name": "Skechers", "Category": "Shoe Stores", "Address": "9161 Roosevelt Blvd # 17", "LATITUDE": 40.074571, "LONGITUDE": -75.032796, "DATE_RANGE_START": 2020, "Total Visits": 357.0, "Total Visitors": 274.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 20.0, "Total Spend": 1471.0, "Total Transactions": 30.0, "Total Customers": 22.0, "Median Spend per Transaction": 52.49, "Median Spend per Customer": 76.88 }, "geometry": { "type": "Point", "coordinates": [ -75.032796, 40.074571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 Castor Ave", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2020, "Total Visits": 8632.0, "Total Visitors": 5242.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 21.0, "Total Spend": 318779.0, "Total Transactions": 5421.0, "Total Customers": 3265.0, "Median Spend per Transaction": 40.43, "Median Spend per Customer": 62.65 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "Name": "Fiorino", "Category": "Restaurants and Other Eating Places", "Address": "3572 Indian Queen Ln", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 10.0, "Total Spend": 3007.0, "Total Transactions": 30.0, "Total Customers": 26.0, "Median Spend per Transaction": 91.41, "Median Spend per Customer": 94.3 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-45f", "Name": "Md Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1641 N Franklin St", "LATITUDE": 39.977208, "LONGITUDE": -75.147273, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 26.0, "POI_CBG": 421010145001.0, "Median Dwell Time": 155.0, "Total Spend": 2007.0, "Total Transactions": 113.0, "Total Customers": 101.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147273, 39.977208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-vcq", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "1851 S Columbus Blvd", "LATITUDE": 39.923962, "LONGITUDE": -75.139231, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 34.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 1423.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 94.98, "Median Spend per Customer": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -75.139231, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "Name": "Lucky 13 Pub", "Category": "Restaurants and Other Eating Places", "Address": "1820 S 13th St", "LATITUDE": 39.927169, "LONGITUDE": -75.167128, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 38.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 240.0, "Total Spend": 1231.0, "Total Transactions": 42.0, "Total Customers": 36.0, "Median Spend per Transaction": 24.82, "Median Spend per Customer": 30.54 }, "geometry": { "type": "Point", "coordinates": [ -75.167128, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9910 Frankford Ave Ste 250", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2020, "Total Visits": 496.0, "Total Visitors": 375.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 8.0, "Total Spend": 3259.0, "Total Transactions": 143.0, "Total Customers": 107.0, "Median Spend per Transaction": 15.74, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "150 N Broad St", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 242.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 7.0, "Total Spend": 995.0, "Total Transactions": 121.0, "Total Customers": 50.0, "Median Spend per Transaction": 6.93, "Median Spend per Customer": 7.07 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "912 Walnut St # 916", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2020, "Total Visits": 726.0, "Total Visitors": 494.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 6.0, "Total Spend": 36712.0, "Total Transactions": 4800.0, "Total Customers": 1870.0, "Median Spend per Transaction": 6.62, "Median Spend per Customer": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgf-3bk", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "3550 Market St", "LATITUDE": 39.955764, "LONGITUDE": -75.194013, "DATE_RANGE_START": 2020, "Total Visits": 1350.0, "Total Visitors": 822.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 81.0, "Total Spend": 108.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 18.5, "Median Spend per Customer": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194013, 39.955764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pzn-zj9", "Name": "Sweeney's Station Saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "13639 Philmont Ave", "LATITUDE": 40.131466, "LONGITUDE": -75.011396, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010365011.0, "Median Dwell Time": null, "Total Spend": 240.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 24.25, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.011396, 40.131466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgf-33q", "Name": "Kiwi Frozen Yogurt", "Category": "Restaurants and Other Eating Places", "Address": "3606 Chestnut St", "LATITUDE": 39.954562, "LONGITUDE": -75.195031, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010369003.0, "Median Dwell Time": null, "Total Spend": 304.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195031, 39.954562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm4-h5z", "Name": "Le Virtu", "Category": "Restaurants and Other Eating Places", "Address": "1927 E Passyunk Ave", "LATITUDE": 39.925948, "LONGITUDE": -75.16776, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 147.0, "Total Spend": 14343.0, "Total Transactions": 105.0, "Total Customers": 99.0, "Median Spend per Transaction": 113.2, "Median Spend per Customer": 124.14 }, "geometry": { "type": "Point", "coordinates": [ -75.16776, 39.925948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "Name": "Time Out Sports Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3709 Schuyler St", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 38.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 23.0, "Total Spend": 419.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 52.88, "Median Spend per Customer": 52.88 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "Name": "Philly's Famous Italian Ices", "Category": "Restaurants and Other Eating Places", "Address": "1950 E Lehigh Ave", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 9.0, "Total Spend": 7961.0, "Total Transactions": 40.0, "Total Customers": 36.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pj8-dqf", "Name": "Oxford Circle Deli", "Category": "Restaurants and Other Eating Places", "Address": "5759 Oxford Ave", "LATITUDE": 40.033593, "LONGITUDE": -75.085029, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 42.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 904.0, "Total Spend": 4273.0, "Total Transactions": 127.0, "Total Customers": 109.0, "Median Spend per Transaction": 29.95, "Median Spend per Customer": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.085029, 40.033593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "Name": "Rustica", "Category": "Restaurants and Other Eating Places", "Address": "903 N 2nd St", "LATITUDE": 39.964423, "LONGITUDE": -75.140069, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 44.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 167.0, "Total Spend": 2188.0, "Total Transactions": 111.0, "Total Customers": 97.0, "Median Spend per Transaction": 17.66, "Median Spend per Customer": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.140069, 39.964423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "Name": "Tony Luke's", "Category": "Restaurants and Other Eating Places", "Address": "1 Citizens Bank Way", "LATITUDE": 39.906891, "LONGITUDE": -75.166013, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 54.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 9.0, "Total Spend": 3543.0, "Total Transactions": 163.0, "Total Customers": 155.0, "Median Spend per Transaction": 17.42, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166013, 39.906891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-hh5", "Name": "Esquina Mini Market", "Category": "Grocery Stores", "Address": "1959 N 19th St", "LATITUDE": 39.984984, "LONGITUDE": -75.171394, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 36.0, "POI_CBG": 421010152004.0, "Median Dwell Time": 1.0, "Total Spend": 62.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.171394, 39.984984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "Name": "Race Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "208 Race St", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 46.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 319.0, "Total Spend": 3565.0, "Total Transactions": 83.0, "Total Customers": 64.0, "Median Spend per Transaction": 35.16, "Median Spend per Customer": 48.98 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-54v", "Name": "Wood Street Pizza", "Category": "Restaurants and Other Eating Places", "Address": "325 N 12th St", "LATITUDE": 39.958437, "LONGITUDE": -75.158269, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 54.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 3.0, "Total Spend": 2950.0, "Total Transactions": 101.0, "Total Customers": 85.0, "Median Spend per Transaction": 25.76, "Median Spend per Customer": 30.09 }, "geometry": { "type": "Point", "coordinates": [ -75.158269, 39.958437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3401 Walnut St", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2020, "Total Visits": 1356.0, "Total Visitors": 951.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 16.0, "Total Spend": 20914.0, "Total Transactions": 987.0, "Total Customers": 647.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 22.74 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "Name": "Dick's Sporting Goods", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "20 Franklin Mills Blvd", "LATITUDE": 40.085609, "LONGITUDE": -74.967208, "DATE_RANGE_START": 2020, "Total Visits": 992.0, "Total Visitors": 873.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 21.0, "Total Spend": 43.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 10.78, "Median Spend per Customer": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -74.967208, 40.085609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2133 Cottman Ave", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2020, "Total Visits": 786.0, "Total Visitors": 717.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 9.0, "Total Spend": 14775.0, "Total Transactions": 669.0, "Total Customers": 578.0, "Median Spend per Transaction": 17.63, "Median Spend per Customer": 19.28 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2027 W Oregon Ave", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2020, "Total Visits": 919.0, "Total Visitors": 740.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 11.0, "Total Spend": 632.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 14.06, "Median Spend per Customer": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9k-jvz", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9880 Roosevelt Blvd", "LATITUDE": 40.093114, "LONGITUDE": -75.019569, "DATE_RANGE_START": 2020, "Total Visits": 498.0, "Total Visitors": 379.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 19.0, "Total Spend": 1426.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 41.03, "Median Spend per Customer": 44.15 }, "geometry": { "type": "Point", "coordinates": [ -75.019569, 40.093114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1443 S 7th St", "LATITUDE": 39.930286, "LONGITUDE": -75.155935, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 71.0, "POI_CBG": 421010028013.0, "Median Dwell Time": 2.0, "Total Spend": 4215.0, "Total Transactions": 256.0, "Total Customers": 125.0, "Median Spend per Transaction": 12.41, "Median Spend per Customer": 19.12 }, "geometry": { "type": "Point", "coordinates": [ -75.155935, 39.930286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "Name": "The Last Word Bookshop", "Category": "Book Stores and News Dealers", "Address": "220 S 40th St", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 189.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 11.0, "Total Spend": 2440.0, "Total Transactions": 91.0, "Total Customers": 69.0, "Median Spend per Transaction": 24.14, "Median Spend per Customer": 24.68 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "Name": "Best Buy Furniture", "Category": "Furniture Stores", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.078042, "LONGITUDE": -75.024894, "DATE_RANGE_START": 2020, "Total Visits": 2322.0, "Total Visitors": 1874.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 21.0, "Total Spend": 12577.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 458.5, "Median Spend per Customer": 458.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024894, 40.078042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3401 Lancaster Ave", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 119.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 3.0, "Total Spend": 3282.0, "Total Transactions": 369.0, "Total Customers": 163.0, "Median Spend per Transaction": 6.62, "Median Spend per Customer": 10.41 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6401 Harbison Ave", "LATITUDE": 40.032146, "LONGITUDE": -75.063064, "DATE_RANGE_START": 2020, "Total Visits": 1022.0, "Total Visitors": 677.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 4.0, "Total Spend": 12024.0, "Total Transactions": 540.0, "Total Customers": 331.0, "Median Spend per Transaction": 20.2, "Median Spend per Customer": 28.03 }, "geometry": { "type": "Point", "coordinates": [ -75.063064, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "8005 Ogontz Ave", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2020, "Total Visits": 1647.0, "Total Visitors": 1292.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 5.0, "Total Spend": 13300.0, "Total Transactions": 693.0, "Total Customers": 526.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6323 Castor Ave", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2020, "Total Visits": 141.0, "Total Visitors": 101.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 4.0, "Total Spend": 1992.0, "Total Transactions": 320.0, "Total Customers": 151.0, "Median Spend per Transaction": 4.84, "Median Spend per Customer": 7.76 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "Name": "Eyes Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "402 South St", "LATITUDE": 39.941491, "LONGITUDE": -75.149374, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 202.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 5.0, "Total Spend": 2068.0, "Total Transactions": 54.0, "Total Customers": 50.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149374, 39.941491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-m6k", "Name": "Brave New Worlds", "Category": "Book Stores and News Dealers", "Address": "55 N 2nd St", "LATITUDE": 39.951384, "LONGITUDE": -75.143026, "DATE_RANGE_START": 2020, "Total Visits": 1651.0, "Total Visitors": 1050.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 391.0, "Total Spend": 309.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.143026, 39.951384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993729, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 175.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 11.0, "Total Spend": 699.0, "Total Transactions": 69.0, "Total Customers": 62.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 8.02 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.993729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "Name": "Adobe Cafe", "Category": "Restaurants and Other Eating Places", "Address": "736 S 8th St", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 5.0, "Total Spend": 3428.0, "Total Transactions": 93.0, "Total Customers": 87.0, "Median Spend per Transaction": 29.7, "Median Spend per Customer": 31.49 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2601 W Girard Ave", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2020, "Total Visits": 333.0, "Total Visitors": 258.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 9.0, "Total Spend": 424.0, "Total Transactions": 44.0, "Total Customers": 40.0, "Median Spend per Transaction": 8.44, "Median Spend per Customer": 8.44 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvv-249", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2210 Island Ave", "LATITUDE": 39.916025, "LONGITUDE": -75.24632, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 6.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 3.0, "Total Spend": 1397.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 43.23, "Median Spend per Customer": 43.23 }, "geometry": { "type": "Point", "coordinates": [ -75.24632, 39.916025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-w6k", "Name": "National Mechanics", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "22 S 3rd St", "LATITUDE": 39.94956, "LONGITUDE": -75.146014, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 178.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 20.46, "Median Spend per Customer": 20.46 }, "geometry": { "type": "Point", "coordinates": [ -75.146014, 39.94956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "Name": "General Tso", "Category": "Restaurants and Other Eating Places", "Address": "2350 Orthodox St", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 30.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 167.0, "Total Spend": 1732.0, "Total Transactions": 64.0, "Total Customers": 54.0, "Median Spend per Transaction": 20.64, "Median Spend per Customer": 21.19 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "Name": "The Pizza Store", "Category": "Restaurants and Other Eating Places", "Address": "2727 E Allegheny Ave", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 38.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 260.0, "Total Spend": 1768.0, "Total Transactions": 62.0, "Total Customers": 40.0, "Median Spend per Transaction": 26.14, "Median Spend per Customer": 32.04 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "Name": "Papa Joe's", "Category": "Restaurants and Other Eating Places", "Address": "7204 Ogontz Ave", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2020, "Total Visits": 181.0, "Total Visitors": 50.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 381.0, "Total Spend": 567.0, "Total Transactions": 28.0, "Total Customers": 18.0, "Median Spend per Transaction": 21.25, "Median Spend per Customer": 35.69 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "9475 Roosevelt Blvd Ste 8", "LATITUDE": 40.079117, "LONGITUDE": -75.027659, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 58.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 76.0, "Total Spend": 1281.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 68.8, "Median Spend per Customer": 68.25 }, "geometry": { "type": "Point", "coordinates": [ -75.027659, 40.079117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg9-bp9", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "2454 Turner St", "LATITUDE": 39.979916, "LONGITUDE": -75.175802, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010149001.0, "Median Dwell Time": null, "Total Spend": 54.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175802, 39.979916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-75z", "Name": "North Third", "Category": "Restaurants and Other Eating Places", "Address": "801 N 3rd St", "LATITUDE": 39.963481, "LONGITUDE": -75.142676, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 12.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1.0, "Total Spend": 1380.0, "Total Transactions": 24.0, "Total Customers": 16.0, "Median Spend per Transaction": 22.35, "Median Spend per Customer": 22.35 }, "geometry": { "type": "Point", "coordinates": [ -75.142676, 39.963481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-ph8-rx5", "Name": "Royal Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "7610 City Ave", "LATITUDE": 39.97851, "LONGITUDE": -75.271319, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 17.0, "Total Spend": 6705.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 150.0, "Median Spend per Customer": 166.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271319, 39.97851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "Name": "Cuba Libre Restaurant & Rum Bar Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "10 S 2nd St", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 94.0, "Total Spend": 12559.0, "Total Transactions": 135.0, "Total Customers": 133.0, "Median Spend per Transaction": 75.15, "Median Spend per Customer": 75.59 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm3-vxq", "Name": "Noir Restaurant & Bar", "Category": "Restaurants and Other Eating Places", "Address": "1909 E Passyunk Ave", "LATITUDE": 39.926292, "LONGITUDE": -75.16736, "DATE_RANGE_START": 2020, "Total Visits": 659.0, "Total Visitors": 345.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 567.0, "Total Spend": 1745.0, "Total Transactions": 36.0, "Total Customers": 30.0, "Median Spend per Transaction": 41.74, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16736, 39.926292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-ty9", "Name": "La Fontana Della Citta", "Category": "Restaurants and Other Eating Places", "Address": "1701 Spruce St", "LATITUDE": 39.947768, "LONGITUDE": -75.169697, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 99.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 30.0, "Total Spend": 10362.0, "Total Transactions": 125.0, "Total Customers": 121.0, "Median Spend per Transaction": 76.61, "Median Spend per Customer": 79.76 }, "geometry": { "type": "Point", "coordinates": [ -75.169697, 39.947768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "Name": "New England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2417 Welsh Rd", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2020, "Total Visits": 278.0, "Total Visitors": 228.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 1350.0, "Total Transactions": 54.0, "Total Customers": 46.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.63 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "Name": "Blue Corn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "940 S 9th St", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 260.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 21.0, "Total Spend": 5700.0, "Total Transactions": 171.0, "Total Customers": 111.0, "Median Spend per Transaction": 25.06, "Median Spend per Customer": 40.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj8-2ff", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "4310 E Roosevelt Blvd", "LATITUDE": 40.030225, "LONGITUDE": -75.104904, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 147.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 16.0, "Total Spend": 418.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 60.97, "Median Spend per Customer": 48.56 }, "geometry": { "type": "Point", "coordinates": [ -75.104904, 40.030225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "Name": "Anastasi Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1039 S 9th St", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 83.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 4.0, "Total Spend": 25325.0, "Total Transactions": 516.0, "Total Customers": 421.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "4001 N 5th St", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2020, "Total Visits": 240.0, "Total Visitors": 208.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 7.0, "Total Spend": 498.0, "Total Transactions": 32.0, "Total Customers": 24.0, "Median Spend per Transaction": 13.3, "Median Spend per Customer": 22.51 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "Name": "Royal Boucherie", "Category": "Restaurants and Other Eating Places", "Address": "52 S 2nd St", "LATITUDE": 39.948704, "LONGITUDE": -75.144251, "DATE_RANGE_START": 2020, "Total Visits": 349.0, "Total Visitors": 260.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 59.0, "Total Spend": 2927.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 71.55, "Median Spend per Customer": 71.55 }, "geometry": { "type": "Point", "coordinates": [ -75.144251, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "Name": "ALDI", "Category": "Grocery Stores", "Address": "3101 W Girard Ave", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2020, "Total Visits": 931.0, "Total Visitors": 667.0, "POI_CBG": 421010137005.0, "Median Dwell Time": 14.0, "Total Spend": 647.0, "Total Transactions": 18.0, "Total Customers": 8.0, "Median Spend per Transaction": 36.95, "Median Spend per Customer": 81.57 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wkz", "Name": "Xenos Candy 'N' Gifts", "Category": "Specialty Food Stores", "Address": "231 Chestnut St", "LATITUDE": 39.948713, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2020, "Total Visits": 1528.0, "Total Visitors": 822.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 200.0, "Total Spend": 348.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 30.26, "Median Spend per Customer": 30.26 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.948713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "Name": "Rapoport Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6934 Bustleton Ave", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 79.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 92.0, "Total Spend": 823.0, "Total Transactions": 46.0, "Total Customers": 38.0, "Median Spend per Transaction": 14.29, "Median Spend per Customer": 14.29 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3601 Midvale Ave", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2020, "Total Visits": 270.0, "Total Visitors": 183.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 6.0, "Total Spend": 9659.0, "Total Transactions": 441.0, "Total Customers": 244.0, "Median Spend per Transaction": 14.8, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "Name": "Eye Encounters", "Category": "Health and Personal Care Stores", "Address": "1925 Chestnut St", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2020, "Total Visits": 2900.0, "Total Visitors": 1669.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 85.0, "Total Spend": 333.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8n-cqz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6400 Roosevelt Blvd", "LATITUDE": 40.03577, "LONGITUDE": -75.069964, "DATE_RANGE_START": 2020, "Total Visits": 1477.0, "Total Visitors": 1141.0, "POI_CBG": 421010313002.0, "Median Dwell Time": 5.0, "Total Spend": 336.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 21.04, "Median Spend per Customer": 21.04 }, "geometry": { "type": "Point", "coordinates": [ -75.069964, 40.03577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-92k", "Name": "Levi Strauss & Co.", "Category": "Clothing Stores", "Address": "901 Market St Unit 2070", "LATITUDE": 39.95164, "LONGITUDE": -75.155746, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 49.0, "Total Spend": 1156.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 30.55, "Median Spend per Customer": 36.09 }, "geometry": { "type": "Point", "coordinates": [ -75.155746, 39.95164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgg-n3q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2201 W Cambria St", "LATITUDE": 39.998932, "LONGITUDE": -75.167191, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 288.0, "POI_CBG": 421010172011.0, "Median Dwell Time": 8.0, "Total Spend": 1123.0, "Total Transactions": 109.0, "Total Customers": 67.0, "Median Spend per Transaction": 5.8, "Median Spend per Customer": 5.88 }, "geometry": { "type": "Point", "coordinates": [ -75.167191, 39.998932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "1100 S Columbus Blvd # 20", "LATITUDE": 39.932572, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 198.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 5.0, "Total Spend": 2364.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 49.74, "Median Spend per Customer": 48.94 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvr-2hq", "Name": "Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "25 Passyunk Dr", "LATITUDE": 39.917185, "LONGITUDE": -75.216767, "DATE_RANGE_START": 2020, "Total Visits": 1274.0, "Total Visitors": 921.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 21.0, "Total Spend": 4394.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 80.0, "Median Spend per Customer": 83.11 }, "geometry": { "type": "Point", "coordinates": [ -75.216767, 39.917185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7001 Frankford Ave", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2020, "Total Visits": 836.0, "Total Visitors": 542.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 9.0, "Total Spend": 6580.0, "Total Transactions": 347.0, "Total Customers": 167.0, "Median Spend per Transaction": 10.28, "Median Spend per Customer": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-8y9", "Name": "Forever 21", "Category": "Clothing Stores", "Address": "907 937a Market St #2175", "LATITUDE": 39.951978, "LONGITUDE": -75.155812, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 49.0, "Total Spend": 11064.0, "Total Transactions": 280.0, "Total Customers": 244.0, "Median Spend per Transaction": 29.97, "Median Spend per Customer": 37.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155812, 39.951978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-7nq", "Name": "Chatayee Thai", "Category": "Restaurants and Other Eating Places", "Address": "1227 Walnut St", "LATITUDE": 39.94915, "LONGITUDE": -75.161857, "DATE_RANGE_START": 2020, "Total Visits": 576.0, "Total Visitors": 403.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 278.0, "Total Spend": 3030.0, "Total Transactions": 48.0, "Total Customers": 46.0, "Median Spend per Transaction": 58.62, "Median Spend per Customer": 67.01 }, "geometry": { "type": "Point", "coordinates": [ -75.161857, 39.94915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "456 N 5th St", "LATITUDE": 39.959702, "LONGITUDE": -75.147615, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 353.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 12.0, "Total Spend": 356536.0, "Total Transactions": 7975.0, "Total Customers": 4802.0, "Median Spend per Transaction": 30.96, "Median Spend per Customer": 47.92 }, "geometry": { "type": "Point", "coordinates": [ -75.147615, 39.959702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "Name": "European Republic", "Category": "Restaurants and Other Eating Places", "Address": "213 Chestnut St", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2020, "Total Visits": 1528.0, "Total Visitors": 822.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 200.0, "Total Spend": 200.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 10.55, "Median Spend per Customer": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2489 Aramingo Ave", "LATITUDE": 39.974271, "LONGITUDE": -75.11985, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 238.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 4.0, "Total Spend": 988.0, "Total Transactions": 73.0, "Total Customers": 50.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 13.88 }, "geometry": { "type": "Point", "coordinates": [ -75.11985, 39.974271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "Name": "Engimono Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1811 Fairmount Ave", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 79.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 33.0, "Total Spend": 10193.0, "Total Transactions": 306.0, "Total Customers": 242.0, "Median Spend per Transaction": 28.55, "Median Spend per Customer": 31.45 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-grk", "Name": "Nick's Charcoal Pit", "Category": "Restaurants and Other Eating Places", "Address": "1242 Snyder Ave", "LATITUDE": 39.923906, "LONGITUDE": -75.167451, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010040013.0, "Median Dwell Time": null, "Total Spend": 2497.0, "Total Transactions": 81.0, "Total Customers": 66.0, "Median Spend per Transaction": 28.03, "Median Spend per Customer": 30.83 }, "geometry": { "type": "Point", "coordinates": [ -75.167451, 39.923906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-zj9", "Name": "Arch Gourmet", "Category": "Grocery Stores", "Address": "2200 Arch St", "LATITUDE": 39.955807, "LONGITUDE": -75.176416, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010004011.0, "Median Dwell Time": null, "Total Spend": 254.0, "Total Transactions": 12.0, "Total Customers": 6.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176416, 39.955807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "Name": "Pizzeria Cappelli", "Category": "Restaurants and Other Eating Places", "Address": "209 S 13th St", "LATITUDE": 39.948456, "LONGITUDE": -75.162098, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 24.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 224.0, "Total Spend": 3042.0, "Total Transactions": 171.0, "Total Customers": 143.0, "Median Spend per Transaction": 13.19, "Median Spend per Customer": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.162098, 39.948456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p9q-yn5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1619 Grant Ave", "LATITUDE": 40.088065, "LONGITUDE": -75.037683, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 12.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 12.0, "Total Spend": 411.0, "Total Transactions": 44.0, "Total Customers": 32.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.037683, 40.088065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-pjv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2401 E Venango St", "LATITUDE": 39.993233, "LONGITUDE": -75.096202, "DATE_RANGE_START": 2020, "Total Visits": 1072.0, "Total Visitors": 800.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 8.0, "Total Spend": 4321.0, "Total Transactions": 165.0, "Total Customers": 117.0, "Median Spend per Transaction": 16.99, "Median Spend per Customer": 19.59 }, "geometry": { "type": "Point", "coordinates": [ -75.096202, 39.993233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvx-2kz", "Name": "Rising Sun", "Category": "Restaurants and Other Eating Places", "Address": "4800 Westminster Ave", "LATITUDE": 39.968785, "LONGITUDE": -75.217282, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010104003.0, "Median Dwell Time": 1.0, "Total Spend": 35547.0, "Total Transactions": 758.0, "Total Customers": 518.0, "Median Spend per Transaction": 17.64, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.217282, 39.968785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-v9f", "Name": "Tang Pharmacy V", "Category": "Health and Personal Care Stores", "Address": "7452 Ogontz Ave", "LATITUDE": 40.068833, "LONGITUDE": -75.157234, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 18.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 23.0, "Total Spend": 558.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157234, 40.068833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-yjv", "Name": "Amazing Crab House", "Category": "Restaurants and Other Eating Places", "Address": "604 S 2nd St", "LATITUDE": 39.940979, "LONGITUDE": -75.14584, "DATE_RANGE_START": 2020, "Total Visits": 472.0, "Total Visitors": 268.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 1022.0, "Total Spend": 4009.0, "Total Transactions": 83.0, "Total Customers": 71.0, "Median Spend per Transaction": 38.86, "Median Spend per Customer": 47.06 }, "geometry": { "type": "Point", "coordinates": [ -75.14584, 39.940979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "Name": "Tuna Bar", "Category": "Restaurants and Other Eating Places", "Address": "205 Race St", "LATITUDE": 39.954087, "LONGITUDE": -75.143167, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 117.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 89.0, "Total Spend": 7422.0, "Total Transactions": 95.0, "Total Customers": 83.0, "Median Spend per Transaction": 69.81, "Median Spend per Customer": 83.12 }, "geometry": { "type": "Point", "coordinates": [ -75.143167, 39.954087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pg8-ks5", "Name": "Rybrew", "Category": "Restaurants and Other Eating Places", "Address": "2816 W Girard Ave", "LATITUDE": 39.974204, "LONGITUDE": -75.182529, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 18.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 94.0, "Total Spend": 13765.0, "Total Transactions": 778.0, "Total Customers": 449.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.182529, 39.974204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8v-b8v", "Name": "Sam's Club Fuel Center", "Category": "Gasoline Stations", "Address": "1000 Franklin Mills Cir", "LATITUDE": 40.091819, "LONGITUDE": -74.963857, "DATE_RANGE_START": 2020, "Total Visits": 3015.0, "Total Visitors": 1729.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 805.0, "Total Transactions": 28.0, "Total Customers": 14.0, "Median Spend per Transaction": 27.5, "Median Spend per Customer": 33.27 }, "geometry": { "type": "Point", "coordinates": [ -74.963857, 40.091819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-s5z", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.011216, "LONGITUDE": -75.115625, "DATE_RANGE_START": 2020, "Total Visits": 443.0, "Total Visitors": 375.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 31.0, "Total Spend": 9474.0, "Total Transactions": 121.0, "Total Customers": 91.0, "Median Spend per Transaction": 57.2, "Median Spend per Customer": 57.21 }, "geometry": { "type": "Point", "coordinates": [ -75.115625, 40.011216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2801 Cottman Ave", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2020, "Total Visits": 639.0, "Total Visitors": 498.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 6.0, "Total Spend": 11726.0, "Total Transactions": 971.0, "Total Customers": 812.0, "Median Spend per Transaction": 9.7, "Median Spend per Customer": 11.3 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-6ff", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "924 Walnut St", "LATITUDE": 39.948341, "LONGITUDE": -75.157035, "DATE_RANGE_START": 2020, "Total Visits": 897.0, "Total Visitors": 607.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 15.0, "Total Spend": 348.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 21.62, "Median Spend per Customer": 21.62 }, "geometry": { "type": "Point", "coordinates": [ -75.157035, 39.948341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p6z-yqf", "Name": "Philadelphia Boat Supply", "Category": "Other Motor Vehicle Dealers", "Address": "8900 State Rd", "LATITUDE": 40.042284, "LONGITUDE": -75.001789, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 343.0, "POI_CBG": 421019891001.0, "Median Dwell Time": 11.0, "Total Spend": 788.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 198.4, "Median Spend per Customer": 198.4 }, "geometry": { "type": "Point", "coordinates": [ -75.001789, 40.042284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-8d9", "Name": "Tom's Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "59 N 11th St", "LATITUDE": 39.953328, "LONGITUDE": -75.157763, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 1717.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 48.34, "Median Spend per Customer": 48.34 }, "geometry": { "type": "Point", "coordinates": [ -75.157763, 39.953328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-vpv", "Name": "P'unk Burger", "Category": "Restaurants and Other Eating Places", "Address": "1823 E Passyunk Ave", "LATITUDE": 39.927124, "LONGITUDE": -75.166327, "DATE_RANGE_START": 2020, "Total Visits": 621.0, "Total Visitors": 353.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 446.0, "Total Spend": 630.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.927124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "9711 Roosevelt Blvd", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2020, "Total Visits": 921.0, "Total Visitors": 794.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 5.0, "Total Spend": 44507.0, "Total Transactions": 2350.0, "Total Customers": 1761.0, "Median Spend per Transaction": 17.03, "Median Spend per Customer": 20.3 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2440 Grant Ave", "LATITUDE": 40.079147, "LONGITUDE": -75.02653, "DATE_RANGE_START": 2020, "Total Visits": 574.0, "Total Visitors": 514.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 13564.0, "Total Transactions": 863.0, "Total Customers": 687.0, "Median Spend per Transaction": 13.58, "Median Spend per Customer": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.02653, 40.079147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "Name": "Ox Coffee", "Category": "Restaurants and Other Eating Places", "Address": "616 S 3rd St", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2020, "Total Visits": 798.0, "Total Visitors": 651.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 7.0, "Total Spend": 3167.0, "Total Transactions": 264.0, "Total Customers": 131.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pmf-jd9", "Name": "SoBol Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "46 S 17th St", "LATITUDE": 39.951746, "LONGITUDE": -75.168892, "DATE_RANGE_START": 2020, "Total Visits": 1491.0, "Total Visitors": 1245.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 3305.0, "Total Transactions": 236.0, "Total Customers": 177.0, "Median Spend per Transaction": 10.69, "Median Spend per Customer": 12.04 }, "geometry": { "type": "Point", "coordinates": [ -75.168892, 39.951746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1800 South St", "LATITUDE": 39.944289, "LONGITUDE": -75.17218, "DATE_RANGE_START": 2020, "Total Visits": 484.0, "Total Visitors": 312.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 7.0, "Total Spend": 21501.0, "Total Transactions": 975.0, "Total Customers": 516.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 21.21 }, "geometry": { "type": "Point", "coordinates": [ -75.17218, 39.944289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-47q", "Name": "Beauty Time", "Category": "Health and Personal Care Stores", "Address": "5694 Rising Sun Ave Ste 9", "LATITUDE": 40.040779, "LONGITUDE": -75.109561, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 220.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 8.0, "Total Spend": 8465.0, "Total Transactions": 244.0, "Total Customers": 191.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 32.93 }, "geometry": { "type": "Point", "coordinates": [ -75.109561, 40.040779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "Name": "Bindlestiff Books", "Category": "Book Stores and News Dealers", "Address": "4530 Baltimore Ave", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 3.0, "Total Spend": 535.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 68.01, "Median Spend per Customer": 68.01 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8f-7dv", "Name": "Risque Video", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4853 James St", "LATITUDE": 40.00855, "LONGITUDE": -75.072772, "DATE_RANGE_START": 2020, "Total Visits": 617.0, "Total Visitors": 500.0, "POI_CBG": 421010380002.0, "Median Dwell Time": 296.0, "Total Spend": 552.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 35.62, "Median Spend per Customer": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.072772, 40.00855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "Name": "Macy's", "Category": "Department Stores", "Address": "1300 Market St", "LATITUDE": 39.951926, "LONGITUDE": -75.161906, "DATE_RANGE_START": 2020, "Total Visits": 2948.0, "Total Visitors": 2299.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 13.0, "Total Spend": 10862.0, "Total Transactions": 141.0, "Total Customers": 99.0, "Median Spend per Transaction": 39.86, "Median Spend per Customer": 45.63 }, "geometry": { "type": "Point", "coordinates": [ -75.161906, 39.951926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-vfz", "Name": "Philly Homebrew Outlet West", "Category": "Electronics and Appliance Stores", "Address": "1314 S 47th St", "LATITUDE": 39.942809, "LONGITUDE": -75.210442, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010074002.0, "Median Dwell Time": 1.0, "Total Spend": 1581.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 56.32, "Median Spend per Customer": 58.23 }, "geometry": { "type": "Point", "coordinates": [ -75.210442, 39.942809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11000 Roosevelt Blvd Ste 3", "LATITUDE": 40.101947, "LONGITUDE": -75.011258, "DATE_RANGE_START": 2020, "Total Visits": 4923.0, "Total Visitors": 3466.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 19.0, "Total Spend": 209900.0, "Total Transactions": 3640.0, "Total Customers": 2336.0, "Median Spend per Transaction": 35.62, "Median Spend per Customer": 54.58 }, "geometry": { "type": "Point", "coordinates": [ -75.011258, 40.101947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-ch5", "Name": "Fishtown Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1617 Frankford Ave", "LATITUDE": 39.974427, "LONGITUDE": -75.132999, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 16.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 40.0, "Total Spend": 171.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.132999, 39.974427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9w-sdv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "12050 Bustleton Ave", "LATITUDE": 40.123431, "LONGITUDE": -75.01617, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 1.0, "Total Spend": 408.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 19.93, "Median Spend per Customer": 23.66 }, "geometry": { "type": "Point", "coordinates": [ -75.01617, 40.123431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "Name": "Frieda", "Category": "Restaurants and Other Eating Places", "Address": "320 Walnut St", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 1.0, "Total Spend": 2013.0, "Total Transactions": 91.0, "Total Customers": 54.0, "Median Spend per Transaction": 16.63, "Median Spend per Customer": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-249", "Name": "Two Brothers Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3322 N 13th St", "LATITUDE": 40.003487, "LONGITUDE": -75.150398, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 6.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 459.0, "Total Spend": 5379.0, "Total Transactions": 224.0, "Total Customers": 151.0, "Median Spend per Transaction": 22.33, "Median Spend per Customer": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.150398, 40.003487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8m-x5z", "Name": "Goody's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6237 Frankford Ave", "LATITUDE": 40.027482, "LONGITUDE": -75.061166, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 10.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 175.0, "Total Spend": 2122.0, "Total Transactions": 69.0, "Total Customers": 56.0, "Median Spend per Transaction": 27.99, "Median Spend per Customer": 33.07 }, "geometry": { "type": "Point", "coordinates": [ -75.061166, 40.027482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7w-6zf", "Name": "Ali Baba Cafe & Hookah Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "7704 Castor Ave", "LATITUDE": 40.057745, "LONGITUDE": -75.060291, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 30.0, "POI_CBG": 421010336003.0, "Median Dwell Time": 201.0, "Total Spend": 1505.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 57.47, "Median Spend per Customer": 85.28 }, "geometry": { "type": "Point", "coordinates": [ -75.060291, 40.057745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnz-xyv", "Name": "Moju's Family Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2501 E Westmoreland St", "LATITUDE": 39.988309, "LONGITUDE": -75.102423, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 34.0, "POI_CBG": 421010379002.0, "Median Dwell Time": 59.0, "Total Spend": 1113.0, "Total Transactions": 50.0, "Total Customers": 34.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102423, 39.988309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "Name": "New Panda", "Category": "Restaurants and Other Eating Places", "Address": "8340 Bustleton Ave", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 38.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 9.0, "Total Spend": 1100.0, "Total Transactions": 46.0, "Total Customers": 36.0, "Median Spend per Transaction": 21.97, "Median Spend per Customer": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5643 Ridge Ave", "LATITUDE": 40.026858, "LONGITUDE": -75.208809, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 5.0, "Total Spend": 13474.0, "Total Transactions": 1818.0, "Total Customers": 627.0, "Median Spend per Transaction": 4.86, "Median Spend per Customer": 8.86 }, "geometry": { "type": "Point", "coordinates": [ -75.208809, 40.026858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7z-6x5", "Name": "Rising Sun Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6919 Rising Sun Ave", "LATITUDE": 40.056616, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 46.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 5.0, "Total Spend": 246.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 36.38, "Median Spend per Customer": 42.67 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.056616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "Name": "The Quick Fixx", "Category": "Restaurants and Other Eating Places", "Address": "1511 South St", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 56.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 1.0, "Total Spend": 4640.0, "Total Transactions": 197.0, "Total Customers": 135.0, "Median Spend per Transaction": 17.04, "Median Spend per Customer": 26.92 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnw-nh5", "Name": "Sancho Pistolas", "Category": "Restaurants and Other Eating Places", "Address": "19 W Girard Ave", "LATITUDE": 39.969014, "LONGITUDE": -75.135132, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 58.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 387.0, "Total Spend": 1002.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 38.33, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135132, 39.969014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "Name": "Chestnut Hill Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "8138 Germantown Ave", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 40.0, "Total Spend": 399.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "Name": "Fette Sau", "Category": "Restaurants and Other Eating Places", "Address": "1208 Frankford Ave", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 10.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 6.0, "Total Spend": 15797.0, "Total Transactions": 322.0, "Total Customers": 270.0, "Median Spend per Transaction": 40.98, "Median Spend per Customer": 47.15 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-gp9", "Name": "Mercato BYOB", "Category": "Restaurants and Other Eating Places", "Address": "1216 Spruce St", "LATITUDE": 39.946499, "LONGITUDE": -75.161768, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 1.0, "Total Spend": 2456.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 84.77, "Median Spend per Customer": 84.77 }, "geometry": { "type": "Point", "coordinates": [ -75.161768, 39.946499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phj-rrk", "Name": "Sunny Side Breakfast & Lunch", "Category": "Restaurants and Other Eating Places", "Address": "7706 Ogontz Ave", "LATITUDE": 40.071002, "LONGITUDE": -75.157739, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 22.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 3.0, "Total Spend": 775.0, "Total Transactions": 42.0, "Total Customers": 32.0, "Median Spend per Transaction": 19.12, "Median Spend per Customer": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157739, 40.071002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "Name": "Martinez Grocery", "Category": "Grocery Stores", "Address": "2655 W Sterner St", "LATITUDE": 39.997199, "LONGITUDE": -75.175295, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 28.0, "POI_CBG": 421010172022.0, "Median Dwell Time": 5.0, "Total Spend": 619.0, "Total Transactions": 62.0, "Total Customers": 26.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175295, 39.997199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvx-vcq", "Name": "Gold Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1247 S 47th St", "LATITUDE": 39.943788, "LONGITUDE": -75.210959, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010074001.0, "Median Dwell Time": 4.0, "Total Spend": 2027.0, "Total Transactions": 139.0, "Total Customers": 95.0, "Median Spend per Transaction": 10.83, "Median Spend per Customer": 13.71 }, "geometry": { "type": "Point", "coordinates": [ -75.210959, 39.943788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-kpv", "Name": "The Goat Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "1907 Sansom St", "LATITUDE": 39.951177, "LONGITUDE": -75.172386, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 38.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 10.0, "Total Spend": 580.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 35.84, "Median Spend per Customer": 35.84 }, "geometry": { "type": "Point", "coordinates": [ -75.172386, 39.951177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-6zf", "Name": "Petes Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4074 Lancaster Ave", "LATITUDE": 39.964375, "LONGITUDE": -75.204736, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 50.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 110.0, "Total Spend": 500.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 31.37, "Median Spend per Customer": 31.37 }, "geometry": { "type": "Point", "coordinates": [ -75.204736, 39.964375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p7z-yn5", "Name": "Tropicana Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6394 Castor Ave", "LATITUDE": 40.039393, "LONGITUDE": -75.077846, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010311013.0, "Median Dwell Time": 7.0, "Total Spend": 60.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 10.49, "Median Spend per Customer": 10.49 }, "geometry": { "type": "Point", "coordinates": [ -75.077846, 40.039393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "Name": "1 Tippling Place", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2006 Chestnut St", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 20.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 546.0, "Total Spend": 292.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 27.5, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "Name": "So Korean Grill", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St Ste 120", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 10.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 107.0, "Total Spend": 136.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 34.19, "Median Spend per Customer": 34.19 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "Name": "Hunan Palace", "Category": "Restaurants and Other Eating Places", "Address": "6118 Lancaster Ave", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 12.0, "Total Spend": 998.0, "Total Transactions": 62.0, "Total Customers": 52.0, "Median Spend per Transaction": 16.42, "Median Spend per Customer": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "Name": "In & Out Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7600 Ogontz Ave", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 44.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 472.0, "Total Spend": 567.0, "Total Transactions": 28.0, "Total Customers": 18.0, "Median Spend per Transaction": 19.05, "Median Spend per Customer": 17.24 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bzf", "Name": "Ramen", "Category": "Restaurants and Other Eating Places", "Address": "4357 Main St", "LATITUDE": 40.025762, "LONGITUDE": -75.22385, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 52.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 321.0, "Total Spend": 545.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 28.15, "Median Spend per Customer": 36.15 }, "geometry": { "type": "Point", "coordinates": [ -75.22385, 40.025762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p7x-5s5", "Name": "Regency Furniture", "Category": "Furniture Stores", "Address": "2201 Cottman Ave Ste 100", "LATITUDE": 40.048374, "LONGITUDE": -75.06017, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 244.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 4.0, "Total Spend": 4395.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 648.0, "Median Spend per Customer": 648.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06017, 40.048374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7730 City Ave", "LATITUDE": 39.977128, "LONGITUDE": -75.274366, "DATE_RANGE_START": 2020, "Total Visits": 417.0, "Total Visitors": 335.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 7.0, "Total Spend": 20452.0, "Total Transactions": 512.0, "Total Customers": 431.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.274366, 39.977128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-dvz", "Name": "Lighthouse Thrift Shop", "Category": "Used Merchandise Stores", "Address": "6515 Rising Sun Ave", "LATITUDE": 40.051415, "LONGITUDE": -75.093615, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010306007.0, "Median Dwell Time": 2.0, "Total Spend": 71.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 11.27, "Median Spend per Customer": 11.27 }, "geometry": { "type": "Point", "coordinates": [ -75.093615, 40.051415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-bhq", "Name": "Lloyd Whiskey Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "529 E Girard Ave", "LATITUDE": 39.971373, "LONGITUDE": -75.127654, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 91.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 5.0, "Total Spend": 8947.0, "Total Transactions": 159.0, "Total Customers": 119.0, "Median Spend per Transaction": 50.95, "Median Spend per Customer": 58.42 }, "geometry": { "type": "Point", "coordinates": [ -75.127654, 39.971373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-j7q", "Name": "Vango Lounge And Skybar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "116 S 18th St", "LATITUDE": 39.951206, "LONGITUDE": -75.170692, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 81.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 10943.0, "Total Transactions": 95.0, "Total Customers": 93.0, "Median Spend per Transaction": 91.34, "Median Spend per Customer": 92.67 }, "geometry": { "type": "Point", "coordinates": [ -75.170692, 39.951206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "Name": "Deluxe Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8749 Frankford Ave", "LATITUDE": 40.048286, "LONGITUDE": -75.012528, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 87.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 296.0, "Total Spend": 617.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 35.99, "Median Spend per Customer": 55.98 }, "geometry": { "type": "Point", "coordinates": [ -75.012528, 40.048286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5627 Chestnut St # 99", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2020, "Total Visits": 474.0, "Total Visitors": 314.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 25.0, "Total Spend": 154.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 7.01, "Median Spend per Customer": 7.01 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "Name": "Moonlight Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "6834 Limekiln Pike", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 87.0, "POI_CBG": 421010265004.0, "Median Dwell Time": 1.0, "Total Spend": 1225.0, "Total Transactions": 44.0, "Total Customers": 42.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pmb-v75", "Name": "Mei Mei Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "33 S 2nd St", "LATITUDE": 39.948931, "LONGITUDE": -75.143532, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 81.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 151.0, "Total Spend": 365.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 39.0, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143532, 39.948931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-225@628-pm9-zs5", "Name": "Aurora Grace", "Category": "Specialty Food Stores", "Address": "517 S 5th St", "LATITUDE": 39.942077, "LONGITUDE": -75.150507, "DATE_RANGE_START": 2020, "Total Visits": 1006.0, "Total Visitors": 838.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 16.0, "Total Spend": 317.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150507, 39.942077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5zz", "Name": "Chix & Wings", "Category": "Restaurants and Other Eating Places", "Address": "138 S 11th St", "LATITUDE": 39.94898, "LONGITUDE": -75.159094, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 85.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 199.0, "Total Spend": 3048.0, "Total Transactions": 198.0, "Total Customers": 155.0, "Median Spend per Transaction": 11.52, "Median Spend per Customer": 12.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159094, 39.94898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Verree Rd", "LATITUDE": 40.105422, "LONGITUDE": -75.032802, "DATE_RANGE_START": 2020, "Total Visits": 1638.0, "Total Visitors": 1086.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 4.0, "Total Spend": 1690.0, "Total Transactions": 62.0, "Total Customers": 38.0, "Median Spend per Transaction": 23.11, "Median Spend per Customer": 31.88 }, "geometry": { "type": "Point", "coordinates": [ -75.032802, 40.105422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "Name": "Yiro Yiro", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032303, "LONGITUDE": -75.214323, "DATE_RANGE_START": 2020, "Total Visits": 1645.0, "Total Visitors": 1046.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 8.0, "Total Spend": 6776.0, "Total Transactions": 294.0, "Total Customers": 264.0, "Median Spend per Transaction": 18.97, "Median Spend per Customer": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.214323, 40.032303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-2kz", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "9169 Roosevelt Blvd", "LATITUDE": 40.075387, "LONGITUDE": -75.03207, "DATE_RANGE_START": 2020, "Total Visits": 1000.0, "Total Visitors": 844.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 20.0, "Total Spend": 416.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 46.67, "Median Spend per Customer": 46.67 }, "geometry": { "type": "Point", "coordinates": [ -75.03207, 40.075387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2400 Lombard St", "LATITUDE": 39.946402, "LONGITUDE": -75.180743, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 178.0, "Total Spend": 1433.0, "Total Transactions": 167.0, "Total Customers": 137.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.180743, 39.946402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "2383 Cottman Ave Ste 38B", "LATITUDE": 40.046821, "LONGITUDE": -75.055507, "DATE_RANGE_START": 2020, "Total Visits": 161.0, "Total Visitors": 115.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 45.0, "Total Spend": 1486.0, "Total Transactions": 64.0, "Total Customers": 44.0, "Median Spend per Transaction": 10.73, "Median Spend per Customer": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.055507, 40.046821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7124 Ridge Ave # 62", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 145.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 3.0, "Total Spend": 12546.0, "Total Transactions": 933.0, "Total Customers": 703.0, "Median Spend per Transaction": 11.11, "Median Spend per Customer": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "4004 W Girard Ave", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010110003.0, "Median Dwell Time": 114.0, "Total Spend": 1081.0, "Total Transactions": 56.0, "Total Customers": 42.0, "Median Spend per Transaction": 16.43, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "901 S 2nd St", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 34.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 2.0, "Total Spend": 8640.0, "Total Transactions": 470.0, "Total Customers": 282.0, "Median Spend per Transaction": 13.65, "Median Spend per Customer": 23.23 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-68v", "Name": "Kinme", "Category": "Restaurants and Other Eating Places", "Address": "1117 Locust St", "LATITUDE": 39.947803, "LONGITUDE": -75.160062, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 40.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 3.0, "Total Spend": 2257.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 65.88, "Median Spend per Customer": 78.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160062, 39.947803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgj-c5z", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1511 Cecil B Moore Ave", "LATITUDE": 39.979163, "LONGITUDE": -75.160092, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 121.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 7.0, "Total Spend": 1849.0, "Total Transactions": 161.0, "Total Customers": 121.0, "Median Spend per Transaction": 10.35, "Median Spend per Customer": 12.07 }, "geometry": { "type": "Point", "coordinates": [ -75.160092, 39.979163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-hdv", "Name": "The Book Corner", "Category": "Book Stores and News Dealers", "Address": "311 N 20th St", "LATITUDE": 39.960171, "LONGITUDE": -75.171295, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 113.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 61.0, "Total Spend": 563.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.171295, 39.960171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4617 N 5th St", "LATITUDE": 40.021323, "LONGITUDE": -75.133522, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 276.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 8.0, "Total Spend": 1816.0, "Total Transactions": 125.0, "Total Customers": 109.0, "Median Spend per Transaction": 8.81, "Median Spend per Customer": 9.23 }, "geometry": { "type": "Point", "coordinates": [ -75.133522, 40.021323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "716 South St", "LATITUDE": 39.942147, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 50.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 322.0, "Total Spend": 25516.0, "Total Transactions": 949.0, "Total Customers": 717.0, "Median Spend per Transaction": 25.14, "Median Spend per Customer": 29.68 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.942147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "3000 B St", "LATITUDE": 39.995073, "LONGITUDE": -75.126158, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 52.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 136.0, "Total Spend": 201.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 23.56, "Median Spend per Customer": 23.56 }, "geometry": { "type": "Point", "coordinates": [ -75.126158, 39.995073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1551 Washington Ave", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2020, "Total Visits": 193.0, "Total Visitors": 123.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 4.0, "Total Spend": 3942.0, "Total Transactions": 582.0, "Total Customers": 373.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 7.85 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5301 Chew Ave", "LATITUDE": 40.043491, "LONGITUDE": -75.159296, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 262.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 3.0, "Total Spend": 6826.0, "Total Transactions": 899.0, "Total Customers": 419.0, "Median Spend per Transaction": 6.16, "Median Spend per Customer": 10.06 }, "geometry": { "type": "Point", "coordinates": [ -75.159296, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "Name": "Boss Outlet", "Category": "Clothing Stores", "Address": "1613 Franklin Mills Cir", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 64.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 12476.0, "Total Transactions": 187.0, "Total Customers": 157.0, "Median Spend per Transaction": 42.18, "Median Spend per Customer": 44.64 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9355 Krewstown Rd", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2020, "Total Visits": 498.0, "Total Visitors": 349.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 8.0, "Total Spend": 1225.0, "Total Transactions": 62.0, "Total Customers": 56.0, "Median Spend per Transaction": 9.58, "Median Spend per Customer": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pgb-7t9", "Name": "Plants Etc", "Category": "Florists", "Address": "2313 Fairmount Ave", "LATITUDE": 39.967525, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010136011.0, "Median Dwell Time": null, "Total Spend": 937.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.967525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "Name": "Good Day Deli", "Category": "Restaurants and Other Eating Places", "Address": "37 S 20th St", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 89.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 4.0, "Total Spend": 2343.0, "Total Transactions": 143.0, "Total Customers": 62.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5601 Vine St", "LATITUDE": 39.966876, "LONGITUDE": -75.233151, "DATE_RANGE_START": 2020, "Total Visits": 1125.0, "Total Visitors": 768.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 11.0, "Total Spend": 446.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 7.18, "Median Spend per Customer": 7.18 }, "geometry": { "type": "Point", "coordinates": [ -75.233151, 39.966876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2600 Grant Ave", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2020, "Total Visits": 790.0, "Total Visitors": 582.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 79652.0, "Total Transactions": 5177.0, "Total Customers": 2519.0, "Median Spend per Transaction": 11.51, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "Name": "Beer Baron", "Category": "Beer, Wine, and Liquor Stores", "Address": "3290 Red Lion Rd", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2020, "Total Visits": 1963.0, "Total Visitors": 1141.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 8.0, "Total Spend": 16128.0, "Total Transactions": 518.0, "Total Customers": 248.0, "Median Spend per Transaction": 26.97, "Median Spend per Customer": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-kfz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2801 W Dauphin St Ste 5", "LATITUDE": 39.991954, "LONGITUDE": -75.178916, "DATE_RANGE_START": 2020, "Total Visits": 490.0, "Total Visitors": 308.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 11.0, "Total Spend": 516.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 13.69, "Median Spend per Customer": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.178916, 39.991954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p7v-ffz", "Name": "E Z Gas", "Category": "Gasoline Stations", "Address": "1701 Cottman Ave", "LATITUDE": 40.054304, "LONGITUDE": -75.070914, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 280.0, "POI_CBG": 421010335003.0, "Median Dwell Time": 4.0, "Total Spend": 9833.0, "Total Transactions": 532.0, "Total Customers": 296.0, "Median Spend per Transaction": 15.74, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070914, 40.054304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "Name": "lululemon athletica", "Category": "Clothing Stores", "Address": "1720 Walnut St", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 254.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 4.0, "Total Spend": 14666.0, "Total Transactions": 145.0, "Total Customers": 131.0, "Median Spend per Transaction": 68.0, "Median Spend per Customer": 71.25 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pm9-y9z", "Name": "Gold Heart Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "426 South St", "LATITUDE": 39.941621, "LONGITUDE": -75.150209, "DATE_RANGE_START": 2020, "Total Visits": 643.0, "Total Visitors": 534.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 11.0, "Total Spend": 21354.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 526.0, "Median Spend per Customer": 2084.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150209, 39.941621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2308 W Oregon Ave Ste A", "LATITUDE": 39.91784, "LONGITUDE": -75.186842, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 272.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 23.0, "Total Spend": 4130.0, "Total Transactions": 75.0, "Total Customers": 69.0, "Median Spend per Transaction": 56.89, "Median Spend per Customer": 59.79 }, "geometry": { "type": "Point", "coordinates": [ -75.186842, 39.91784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1939 Callowhill St", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 77.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 168.0, "Total Spend": 6846.0, "Total Transactions": 163.0, "Total Customers": 149.0, "Median Spend per Transaction": 36.72, "Median Spend per Customer": 40.78 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pft-ygk", "Name": "Chubbys Steaks", "Category": "Restaurants and Other Eating Places", "Address": "5826 Henry Ave", "LATITUDE": 40.029131, "LONGITUDE": -75.206304, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 208.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 10.0, "Total Spend": 12635.0, "Total Transactions": 520.0, "Total Customers": 429.0, "Median Spend per Transaction": 20.36, "Median Spend per Customer": 25.76 }, "geometry": { "type": "Point", "coordinates": [ -75.206304, 40.029131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "Name": "Chuck E. Cheese's", "Category": "Restaurants and Other Eating Places", "Address": "9 Snyder Ave. Corner of Front & Snyder", "LATITUDE": 39.921782, "LONGITUDE": -75.1449, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 95.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 37.0, "Total Spend": 114.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.24, "Median Spend per Customer": 14.24 }, "geometry": { "type": "Point", "coordinates": [ -75.1449, 39.921782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 56.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 52.0, "Total Spend": 9654.0, "Total Transactions": 244.0, "Total Customers": 230.0, "Median Spend per Transaction": 34.66, "Median Spend per Customer": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-xqz", "Name": "Brother's Food Market", "Category": "Grocery Stores", "Address": "3516 Germantown Ave", "LATITUDE": 40.006485, "LONGITUDE": -75.150169, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 44.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 5.0, "Total Spend": 74.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 18.52, "Median Spend per Customer": 18.52 }, "geometry": { "type": "Point", "coordinates": [ -75.150169, 40.006485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "Name": "L'anima", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 17th St", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 52.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 387.0, "Total Spend": 899.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 72.16, "Median Spend per Customer": 72.16 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "Name": "Microtel Inn and Suites", "Category": "Traveler Accommodation", "Address": "8840 Tinicum Blvd", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2020, "Total Visits": 536.0, "Total Visitors": 345.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 326.0, "Total Spend": 11743.0, "Total Transactions": 73.0, "Total Customers": 62.0, "Median Spend per Transaction": 127.86, "Median Spend per Customer": 139.49 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8y9", "Name": "City Winery Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "990 Filbert St", "LATITUDE": 39.952404, "LONGITUDE": -75.156249, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 49.0, "Total Spend": 597.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 37.69, "Median Spend per Customer": 38.68 }, "geometry": { "type": "Point", "coordinates": [ -75.156249, 39.952404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-ph6-whq", "Name": "Cedar Park Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2035 N 63rd St", "LATITUDE": 39.986565, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 67.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 13.0, "Total Spend": 3449.0, "Total Transactions": 157.0, "Total Customers": 137.0, "Median Spend per Transaction": 19.28, "Median Spend per Customer": 23.86 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "Name": "Dragon City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "923 Levick St", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 141.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 22.0, "Total Spend": 829.0, "Total Transactions": 44.0, "Total Customers": 38.0, "Median Spend per Transaction": 13.21, "Median Spend per Customer": 18.3 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-835", "Name": "Nanee's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953311, "LONGITUDE": -75.158833, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 378.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.158833, 39.953311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-zs5", "Name": "Golden Triangle", "Category": "Restaurants and Other Eating Places", "Address": "610 S 5th St", "LATITUDE": 39.94154, "LONGITUDE": -75.15097, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 75.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 2.0, "Total Spend": 4290.0, "Total Transactions": 117.0, "Total Customers": 89.0, "Median Spend per Transaction": 34.08, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.15097, 39.94154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-pvz", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "3680 Aramingo Ave", "LATITUDE": 39.994647, "LONGITUDE": -75.095265, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 189.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 7.0, "Total Spend": 4821.0, "Total Transactions": 198.0, "Total Customers": 177.0, "Median Spend per Transaction": 22.24, "Median Spend per Customer": 24.11 }, "geometry": { "type": "Point", "coordinates": [ -75.095265, 39.994647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-4vz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "9201 Roosevelt Blvd", "LATITUDE": 40.077481, "LONGITUDE": -75.031225, "DATE_RANGE_START": 2020, "Total Visits": 135.0, "Total Visitors": 121.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 3012.0, "Total Transactions": 200.0, "Total Customers": 183.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 13.59 }, "geometry": { "type": "Point", "coordinates": [ -75.031225, 40.077481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Henry Ave", "LATITUDE": 40.063794, "LONGITUDE": -75.238861, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 218.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 7.0, "Total Spend": 20804.0, "Total Transactions": 1977.0, "Total Customers": 1189.0, "Median Spend per Transaction": 8.71, "Median Spend per Customer": 11.76 }, "geometry": { "type": "Point", "coordinates": [ -75.238861, 40.063794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "Name": "Barbuzzo", "Category": "Restaurants and Other Eating Places", "Address": "110 S 13th St", "LATITUDE": 39.950022, "LONGITUDE": -75.162126, "DATE_RANGE_START": 2020, "Total Visits": 959.0, "Total Visitors": 683.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 26.0, "Total Spend": 7541.0, "Total Transactions": 89.0, "Total Customers": 79.0, "Median Spend per Transaction": 60.36, "Median Spend per Customer": 68.41 }, "geometry": { "type": "Point", "coordinates": [ -75.162126, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-d35", "Name": "Thomas'", "Category": "Restaurants and Other Eating Places", "Address": "447 E Girard Ave", "LATITUDE": 39.970627, "LONGITUDE": -75.128561, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 115.0, "POI_CBG": 421010143002.0, "Median Dwell Time": 74.0, "Total Spend": 9819.0, "Total Transactions": 44.0, "Total Customers": 40.0, "Median Spend per Transaction": 54.61, "Median Spend per Customer": 77.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128561, 39.970627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "3348 Grant Ave", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 216.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 9.0, "Total Spend": 1986.0, "Total Transactions": 69.0, "Total Customers": 62.0, "Median Spend per Transaction": 27.65, "Median Spend per Customer": 33.15 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-qmk", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030627, "LONGITUDE": -75.102315, "DATE_RANGE_START": 2020, "Total Visits": 665.0, "Total Visitors": 609.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 18.0, "Total Spend": 17636.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 1375.0, "Median Spend per Customer": 1375.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102315, 40.030627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-dd9", "Name": "Diamond Tool", "Category": "Building Material and Supplies Dealers", "Address": "2800 Grays Ferry Ave", "LATITUDE": 39.93863, "LONGITUDE": -75.191022, "DATE_RANGE_START": 2020, "Total Visits": 137.0, "Total Visitors": 69.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 331.0, "Total Spend": 2289.0, "Total Transactions": 28.0, "Total Customers": 4.0, "Median Spend per Transaction": 87.63, "Median Spend per Customer": 576.58 }, "geometry": { "type": "Point", "coordinates": [ -75.191022, 39.93863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "Name": "Pac A Deli", "Category": "Grocery Stores", "Address": "1200 Walnut St", "LATITUDE": 39.948693, "LONGITUDE": -75.160788, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 153.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 17.0, "Total Spend": 17938.0, "Total Transactions": 963.0, "Total Customers": 407.0, "Median Spend per Transaction": 16.49, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160788, 39.948693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1500 Spruce St", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2020, "Total Visits": 881.0, "Total Visitors": 472.0, "POI_CBG": 421010012021.0, "Median Dwell Time": 29.0, "Total Spend": 25657.0, "Total Transactions": 1316.0, "Total Customers": 605.0, "Median Spend per Transaction": 13.08, "Median Spend per Customer": 24.56 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "180 W Duncannon Ave", "LATITUDE": 40.029081, "LONGITUDE": -75.125232, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 161.0, "POI_CBG": 421010286001.0, "Median Dwell Time": 15.0, "Total Spend": 21798.0, "Total Transactions": 413.0, "Total Customers": 337.0, "Median Spend per Transaction": 32.64, "Median Spend per Customer": 40.21 }, "geometry": { "type": "Point", "coordinates": [ -75.125232, 40.029081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2535 Aramingo Ave", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2020, "Total Visits": 859.0, "Total Visitors": 649.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 4.0, "Total Spend": 140226.0, "Total Transactions": 8218.0, "Total Customers": 4381.0, "Median Spend per Transaction": 13.68, "Median Spend per Customer": 22.44 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7261 Roosevelt Blvd", "LATITUDE": 40.043988, "LONGITUDE": -75.054077, "DATE_RANGE_START": 2020, "Total Visits": 3886.0, "Total Visitors": 2876.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 4.0, "Total Spend": 1392.0, "Total Transactions": 54.0, "Total Customers": 48.0, "Median Spend per Transaction": 24.41, "Median Spend per Customer": 24.36 }, "geometry": { "type": "Point", "coordinates": [ -75.054077, 40.043988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-94v", "Name": "Torrid", "Category": "Clothing Stores", "Address": "1001 Market St Unit 2030", "LATITUDE": 39.952222, "LONGITUDE": -75.156836, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 3073.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 56.1, "Median Spend per Customer": 56.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156836, 39.952222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "Name": "Uniqlo", "Category": "Clothing Stores", "Address": "1608 Chestnut St", "LATITUDE": 39.951014, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2020, "Total Visits": 246.0, "Total Visitors": 119.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 137.0, "Total Spend": 24418.0, "Total Transactions": 464.0, "Total Customers": 385.0, "Median Spend per Transaction": 42.6, "Median Spend per Customer": 52.6 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.951014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "Name": "Nautica", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087648, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 322.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 6908.0, "Total Transactions": 123.0, "Total Customers": 105.0, "Median Spend per Transaction": 41.74, "Median Spend per Customer": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "Name": "Xiandu Thai", "Category": "Restaurants and Other Eating Places", "Address": "1119 Walnut St", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2020, "Total Visits": 1765.0, "Total Visitors": 1086.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 167.0, "Total Spend": 6425.0, "Total Transactions": 153.0, "Total Customers": 127.0, "Median Spend per Transaction": 33.08, "Median Spend per Customer": 38.44 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "Name": "Buffalo Wild Wings", "Category": "Restaurants and Other Eating Places", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.082615, "LONGITUDE": -75.025718, "DATE_RANGE_START": 2020, "Total Visits": 1570.0, "Total Visitors": 1441.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 9.0, "Total Spend": 7756.0, "Total Transactions": 274.0, "Total Customers": 250.0, "Median Spend per Transaction": 24.31, "Median Spend per Customer": 24.87 }, "geometry": { "type": "Point", "coordinates": [ -75.025718, 40.082615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-jgk", "Name": "The Happy Rooster", "Category": "Restaurants and Other Eating Places", "Address": "118 S 16th St", "LATITUDE": 39.950462, "LONGITUDE": -75.16756, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 133.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 1517.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 41.86, "Median Spend per Customer": 41.86 }, "geometry": { "type": "Point", "coordinates": [ -75.16756, 39.950462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pjf-kvf", "Name": "Bijoux Fine Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "8615 Germantown Ave", "LATITUDE": 40.076914, "LONGITUDE": -75.207677, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 18.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 82.0, "Total Spend": 118.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 29.7, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.207677, 40.076914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pgg-b8v", "Name": "Shrimp Express II", "Category": "Restaurants and Other Eating Places", "Address": "2205 W Indiana Ave", "LATITUDE": 40.000369, "LONGITUDE": -75.16696, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010172013.0, "Median Dwell Time": 1.0, "Total Spend": 470.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16696, 40.000369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2201 South St", "LATITUDE": 39.945401, "LONGITUDE": -75.178709, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 99.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 1.0, "Total Spend": 4687.0, "Total Transactions": 425.0, "Total Customers": 260.0, "Median Spend per Transaction": 7.31, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178709, 39.945401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "4600 City Ave", "LATITUDE": 40.002693, "LONGITUDE": -75.222651, "DATE_RANGE_START": 2020, "Total Visits": 435.0, "Total Visitors": 375.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 3.0, "Total Spend": 12570.0, "Total Transactions": 1270.0, "Total Customers": 810.0, "Median Spend per Transaction": 8.21, "Median Spend per Customer": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.222651, 40.002693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "2120 S Broad St", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 34.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 20.0, "Total Spend": 857.0, "Total Transactions": 36.0, "Total Customers": 24.0, "Median Spend per Transaction": 20.28, "Median Spend per Customer": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-75z", "Name": "Pizza Brain", "Category": "Restaurants and Other Eating Places", "Address": "2313 Frankford Ave", "LATITUDE": 39.980599, "LONGITUDE": -75.128225, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 40.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 268.0, "Total Spend": 5247.0, "Total Transactions": 153.0, "Total Customers": 133.0, "Median Spend per Transaction": 29.33, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128225, 39.980599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "704 E Passyunk Ave # 20", "LATITUDE": 39.940142, "LONGITUDE": -75.151529, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 42.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 11.0, "Total Spend": 15619.0, "Total Transactions": 770.0, "Total Customers": 329.0, "Median Spend per Transaction": 13.95, "Median Spend per Customer": 22.58 }, "geometry": { "type": "Point", "coordinates": [ -75.151529, 39.940142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfv-8vz", "Name": "Weavers Way Mercantile", "Category": "Grocery Stores", "Address": "542 Carpenter Ln", "LATITUDE": 40.046585, "LONGITUDE": -75.195343, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 1.0, "Total Spend": 38.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.54, "Median Spend per Customer": 9.54 }, "geometry": { "type": "Point", "coordinates": [ -75.195343, 40.046585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "Name": "Oneals Pub", "Category": "Restaurants and Other Eating Places", "Address": "611 S 3rd St", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 42.0, "Total Spend": 4608.0, "Total Transactions": 143.0, "Total Customers": 85.0, "Median Spend per Transaction": 23.3, "Median Spend per Customer": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "Name": "Stateside", "Category": "Restaurants and Other Eating Places", "Address": "1536 E Passyunk Ave", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 1.0, "Total Spend": 3323.0, "Total Transactions": 87.0, "Total Customers": 79.0, "Median Spend per Transaction": 30.42, "Median Spend per Customer": 31.45 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "Name": "Talula's Garden", "Category": "Restaurants and Other Eating Places", "Address": "210 W Washington Sq", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2020, "Total Visits": 294.0, "Total Visitors": 252.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 21.0, "Total Spend": 45438.0, "Total Transactions": 1074.0, "Total Customers": 611.0, "Median Spend per Transaction": 14.96, "Median Spend per Customer": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "Name": "Balducci's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.875709, "LONGITUDE": -75.241464, "DATE_RANGE_START": 2020, "Total Visits": 166655.0, "Total Visitors": 88708.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 65.0, "Total Spend": 1214.0, "Total Transactions": 71.0, "Total Customers": 69.0, "Median Spend per Transaction": 12.99, "Median Spend per Customer": 14.78 }, "geometry": { "type": "Point", "coordinates": [ -75.241464, 39.875709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914434, "LONGITUDE": -75.156267, "DATE_RANGE_START": 2020, "Total Visits": 377.0, "Total Visitors": 276.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 3.0, "Total Spend": 4308.0, "Total Transactions": 724.0, "Total Customers": 349.0, "Median Spend per Transaction": 4.56, "Median Spend per Customer": 6.47 }, "geometry": { "type": "Point", "coordinates": [ -75.156267, 39.914434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmb-xyv", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "216 N 10th St", "LATITUDE": 39.955915, "LONGITUDE": -75.155905, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 121.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 2.0, "Total Spend": 289.0, "Total Transactions": 46.0, "Total Customers": 42.0, "Median Spend per Transaction": 5.13, "Median Spend per Customer": 6.21 }, "geometry": { "type": "Point", "coordinates": [ -75.155905, 39.955915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7601 Lindbergh Blvd", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2020, "Total Visits": 476.0, "Total Visitors": 298.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 3.0, "Total Spend": 3040.0, "Total Transactions": 490.0, "Total Customers": 298.0, "Median Spend per Transaction": 4.95, "Median Spend per Customer": 6.81 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 129.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 74.0, "Total Spend": 9903.0, "Total Transactions": 653.0, "Total Customers": 492.0, "Median Spend per Transaction": 13.26, "Median Spend per Customer": 15.95 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "Name": "Chew Deli", "Category": "Restaurants and Other Eating Places", "Address": "6302 Chew Ave", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2020, "Total Visits": 189.0, "Total Visitors": 87.0, "POI_CBG": 421010252007.0, "Median Dwell Time": 171.0, "Total Spend": 3225.0, "Total Transactions": 210.0, "Total Customers": 101.0, "Median Spend per Transaction": 12.21, "Median Spend per Customer": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p74-n5z", "Name": "Uniform Gear", "Category": "Clothing Stores", "Address": "8063 Walker St", "LATITUDE": 40.039579, "LONGITUDE": -75.024137, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 16.0, "POI_CBG": 421010329002.0, "Median Dwell Time": 7.0, "Total Spend": 2001.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024137, 40.039579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7nq", "Name": "Bodega Bar", "Category": "Restaurants and Other Eating Places", "Address": "1223 Walnut St", "LATITUDE": 39.949277, "LONGITUDE": -75.161669, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 171.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 291.0, "Total Spend": 9648.0, "Total Transactions": 157.0, "Total Customers": 127.0, "Median Spend per Transaction": 49.6, "Median Spend per Customer": 58.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161669, 39.949277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-w49", "Name": "Sweet Lucy's Smokehouse", "Category": "Restaurants and Other Eating Places", "Address": "7500 State Rd", "LATITUDE": 40.028508, "LONGITUDE": -75.027023, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 187.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 122.0, "Total Spend": 356.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 24.84, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.027023, 40.028508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm7-nwk", "Name": "Point Crab's & Seafood", "Category": "Specialty Food Stores", "Address": "1324 S 21st St", "LATITUDE": 39.934951, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 7.0, "Total Spend": 440.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 45.06, "Median Spend per Customer": 50.25 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.934951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1912 Liacouras Walk", "LATITUDE": 39.982036, "LONGITUDE": -75.156118, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 58.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 17.0, "Total Spend": 1081.0, "Total Transactions": 169.0, "Total Customers": 60.0, "Median Spend per Transaction": 4.53, "Median Spend per Customer": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156118, 39.982036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "Name": "LKQ", "Category": "Miscellaneous Durable Goods Merchant Wholesalers", "Address": "3350 S 61st St", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 238.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 253.0, "Total Spend": 10836.0, "Total Transactions": 44.0, "Total Customers": 24.0, "Median Spend per Transaction": 164.97, "Median Spend per Customer": 409.91 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-835", "Name": "Iovine Brothers Produce", "Category": "Grocery Stores", "Address": "1136 Arch St", "LATITUDE": 39.952988, "LONGITUDE": -75.158802, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 7344.0, "Total Transactions": 409.0, "Total Customers": 280.0, "Median Spend per Transaction": 12.21, "Median Spend per Customer": 16.96 }, "geometry": { "type": "Point", "coordinates": [ -75.158802, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6506 Frankford Ave", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2020, "Total Visits": 1687.0, "Total Visitors": 957.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 5.0, "Total Spend": 26600.0, "Total Transactions": 2360.0, "Total Customers": 1068.0, "Median Spend per Transaction": 9.65, "Median Spend per Customer": 12.34 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2131 South St", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2020, "Total Visits": 312.0, "Total Visitors": 234.0, "POI_CBG": 421010012013.0, "Median Dwell Time": 5.0, "Total Spend": 34152.0, "Total Transactions": 3750.0, "Total Customers": 1790.0, "Median Spend per Transaction": 7.86, "Median Spend per Customer": 11.43 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "Name": "Butcher Bar", "Category": "Restaurants and Other Eating Places", "Address": "2034 Chestnut St", "LATITUDE": 39.95199, "LONGITUDE": -75.174938, "DATE_RANGE_START": 2020, "Total Visits": 788.0, "Total Visitors": 484.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 61.0, "Total Spend": 7685.0, "Total Transactions": 115.0, "Total Customers": 109.0, "Median Spend per Transaction": 56.75, "Median Spend per Customer": 60.01 }, "geometry": { "type": "Point", "coordinates": [ -75.174938, 39.95199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "Name": "New London Pizza", "Category": "Restaurants and Other Eating Places", "Address": "500 E Wyoming Ave", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010289013.0, "Median Dwell Time": null, "Total Spend": 4744.0, "Total Transactions": 197.0, "Total Customers": 143.0, "Median Spend per Transaction": 20.84, "Median Spend per Customer": 26.68 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "Name": "Lazos Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "2533 Poplar St", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 562.0, "Total Spend": 3467.0, "Total Transactions": 159.0, "Total Customers": 117.0, "Median Spend per Transaction": 19.18, "Median Spend per Customer": 23.32 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p83-zcq", "Name": "Kuttanadu Super Market", "Category": "Grocery Stores", "Address": "8923 Krewstown Rd", "LATITUDE": 40.083172, "LONGITUDE": -75.048353, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 67.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 5.0, "Total Spend": 3044.0, "Total Transactions": 109.0, "Total Customers": 73.0, "Median Spend per Transaction": 18.58, "Median Spend per Customer": 25.19 }, "geometry": { "type": "Point", "coordinates": [ -75.048353, 40.083172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-92k", "Name": "Beef Jerky Outlet", "Category": "Specialty Food Stores", "Address": "901 Market St Unit C100", "LATITUDE": 39.951616, "LONGITUDE": -75.155729, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 49.0, "Total Spend": 608.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155729, 39.951616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "Name": "Bistrot La Minette", "Category": "Restaurants and Other Eating Places", "Address": "623 S 6th St", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 32.0, "Total Spend": 1092.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 134.33, "Median Spend per Customer": 134.33 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9280 Krewstown Rd", "LATITUDE": 40.085969, "LONGITUDE": -75.04681, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 326.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 5.0, "Total Spend": 2186.0, "Total Transactions": 107.0, "Total Customers": 69.0, "Median Spend per Transaction": 10.06, "Median Spend per Customer": 14.26 }, "geometry": { "type": "Point", "coordinates": [ -75.04681, 40.085969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1115 Cottman Ave", "LATITUDE": 40.060462, "LONGITUDE": -75.081398, "DATE_RANGE_START": 2020, "Total Visits": 649.0, "Total Visitors": 502.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 4.0, "Total Spend": 699.0, "Total Transactions": 40.0, "Total Customers": 30.0, "Median Spend per Transaction": 12.3, "Median Spend per Customer": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.081398, 40.060462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-3wk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10950 E Roosevelt Blvd", "LATITUDE": 40.09991, "LONGITUDE": -75.009414, "DATE_RANGE_START": 2020, "Total Visits": 2124.0, "Total Visitors": 1471.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 4.0, "Total Spend": 897.0, "Total Transactions": 44.0, "Total Customers": 32.0, "Median Spend per Transaction": 18.29, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.009414, 40.09991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "Name": "Anthropologie", "Category": "Clothing Stores", "Address": "1801 Walnut St", "LATITUDE": 39.950352, "LONGITUDE": -75.170778, "DATE_RANGE_START": 2020, "Total Visits": 2344.0, "Total Visitors": 1366.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 48.0, "Total Spend": 176255.0, "Total Transactions": 1771.0, "Total Customers": 1169.0, "Median Spend per Transaction": 54.01, "Median Spend per Customer": 68.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170778, 39.950352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnz-xyv", "Name": "Hong Kong Deli", "Category": "Restaurants and Other Eating Places", "Address": "3294 Gaul St", "LATITUDE": 39.988418, "LONGITUDE": -75.102851, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 26.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 1.0, "Total Spend": 48.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 12.04, "Median Spend per Customer": 12.04 }, "geometry": { "type": "Point", "coordinates": [ -75.102851, 39.988418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "Name": "Steak 'Em Up", "Category": "Restaurants and Other Eating Places", "Address": "2600 S 11th St", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 30.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 26.0, "Total Spend": 3648.0, "Total Transactions": 153.0, "Total Customers": 105.0, "Median Spend per Transaction": 21.69, "Median Spend per Customer": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pzn-zj9", "Name": "La Casa Di Lucias", "Category": "Special Food Services", "Address": "14425 Bustleton Ave", "LATITUDE": 40.132324, "LONGITUDE": -75.010926, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 32.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 103.0, "Total Spend": 582.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 35.77, "Median Spend per Customer": 42.07 }, "geometry": { "type": "Point", "coordinates": [ -75.010926, 40.132324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj6-fj9", "Name": "Sparks Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "199 Sparks St", "LATITUDE": 40.04458, "LONGITUDE": -75.123446, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 48.0, "POI_CBG": 421010274025.0, "Median Dwell Time": 99.0, "Total Spend": 985.0, "Total Transactions": 44.0, "Total Customers": 18.0, "Median Spend per Transaction": 18.98, "Median Spend per Customer": 44.27 }, "geometry": { "type": "Point", "coordinates": [ -75.123446, 40.04458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-m8v", "Name": "Ooh LaLa Salads", "Category": "Restaurants and Other Eating Places", "Address": "1238 W Girard Ave", "LATITUDE": 39.970924, "LONGITUDE": -75.156972, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 54.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 6.0, "Total Spend": 1027.0, "Total Transactions": 54.0, "Total Customers": 50.0, "Median Spend per Transaction": 15.1, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.156972, 39.970924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6401 Roosevelt Blvd", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 254.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 2.0, "Total Spend": 2270.0, "Total Transactions": 349.0, "Total Customers": 226.0, "Median Spend per Transaction": 5.51, "Median Spend per Customer": 7.51 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-rkz", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028707, "LONGITUDE": -75.099267, "DATE_RANGE_START": 2020, "Total Visits": 1882.0, "Total Visitors": 1602.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 17.0, "Total Spend": 1568.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 41.41, "Median Spend per Customer": 41.41 }, "geometry": { "type": "Point", "coordinates": [ -75.099267, 40.028707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6137 Frankford Ave", "LATITUDE": 40.027117, "LONGITUDE": -75.0631, "DATE_RANGE_START": 2020, "Total Visits": 818.0, "Total Visitors": 677.0, "POI_CBG": 421010319001.0, "Median Dwell Time": 9.0, "Total Spend": 15151.0, "Total Transactions": 369.0, "Total Customers": 288.0, "Median Spend per Transaction": 23.48, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.0631, 40.027117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-2ff", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6200 Stenton Ave", "LATITUDE": 40.057857, "LONGITUDE": -75.164182, "DATE_RANGE_START": 2020, "Total Visits": 474.0, "Total Visitors": 318.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 100.0, "Total Spend": 2591.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 41.45, "Median Spend per Customer": 53.83 }, "geometry": { "type": "Point", "coordinates": [ -75.164182, 40.057857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-7bk", "Name": "VIP Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "1312 Walnut St # 1314", "LATITUDE": 39.94892, "LONGITUDE": -75.162809, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 66.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 283.0, "Total Spend": 22802.0, "Total Transactions": 1193.0, "Total Customers": 532.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 22.02 }, "geometry": { "type": "Point", "coordinates": [ -75.162809, 39.94892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4156 Ridge Ave # 78", "LATITUDE": 40.008575, "LONGITUDE": -75.193866, "DATE_RANGE_START": 2020, "Total Visits": 1862.0, "Total Visitors": 1399.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 4.0, "Total Spend": 2406.0, "Total Transactions": 115.0, "Total Customers": 85.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.94 }, "geometry": { "type": "Point", "coordinates": [ -75.193866, 40.008575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vvf", "Name": "Champion", "Category": "Clothing Stores", "Address": "1519 Franklin Mills Cir Ste 313", "LATITUDE": 40.089655, "LONGITUDE": -74.961736, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 371.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 16.0, "Total Spend": 319.0, "Total Transactions": 38.0, "Total Customers": 26.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 11.89 }, "geometry": { "type": "Point", "coordinates": [ -74.961736, 40.089655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "Name": "Saks Off Fifth", "Category": "Department Stores", "Address": "1618 Franklin Mills Cir", "LATITUDE": 40.088158, "LONGITUDE": -74.961632, "DATE_RANGE_START": 2020, "Total Visits": 1308.0, "Total Visitors": 1056.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 21.0, "Total Spend": 32272.0, "Total Transactions": 179.0, "Total Customers": 155.0, "Median Spend per Transaction": 96.85, "Median Spend per Customer": 108.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961632, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "Name": "Mid Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2800 W Dauphin St Ste 420", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2020, "Total Visits": 264.0, "Total Visitors": 85.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 207.0, "Total Spend": 790.0, "Total Transactions": 32.0, "Total Customers": 22.0, "Median Spend per Transaction": 20.22, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "Name": "Paisas Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4263 Frankford Ave", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2020, "Total Visits": 2126.0, "Total Visitors": 1405.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 9.0, "Total Spend": 922.0, "Total Transactions": 44.0, "Total Customers": 32.0, "Median Spend per Transaction": 15.17, "Median Spend per Customer": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2524 Aramingo Ave", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2020, "Total Visits": 320.0, "Total Visitors": 270.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 7.0, "Total Spend": 14500.0, "Total Transactions": 351.0, "Total Customers": 276.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "Name": "Rittenhouse Market", "Category": "Grocery Stores", "Address": "1733 Spruce St", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2020, "Total Visits": 1612.0, "Total Visitors": 994.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 10.0, "Total Spend": 47084.0, "Total Transactions": 1657.0, "Total Customers": 627.0, "Median Spend per Transaction": 18.97, "Median Spend per Customer": 40.32 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "Name": "J&J Super Market", "Category": "Grocery Stores", "Address": "1839 S 7th St", "LATITUDE": 39.925365, "LONGITUDE": -75.157449, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 131.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 7.0, "Total Spend": 8818.0, "Total Transactions": 593.0, "Total Customers": 240.0, "Median Spend per Transaction": 11.69, "Median Spend per Customer": 20.89 }, "geometry": { "type": "Point", "coordinates": [ -75.157449, 39.925365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg9-vs5", "Name": "The Fairview", "Category": "Restaurants and Other Eating Places", "Address": "601 N 21st St", "LATITUDE": 39.965375, "LONGITUDE": -75.172387, "DATE_RANGE_START": 2020, "Total Visits": 333.0, "Total Visitors": 125.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 733.0, "Total Spend": 5891.0, "Total Transactions": 103.0, "Total Customers": 87.0, "Median Spend per Transaction": 43.71, "Median Spend per Customer": 44.48 }, "geometry": { "type": "Point", "coordinates": [ -75.172387, 39.965375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029917, "LONGITUDE": -75.0978, "DATE_RANGE_START": 2020, "Total Visits": 8021.0, "Total Visitors": 4807.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 21.0, "Total Spend": 162364.0, "Total Transactions": 1163.0, "Total Customers": 770.0, "Median Spend per Transaction": 54.71, "Median Spend per Customer": 76.03 }, "geometry": { "type": "Point", "coordinates": [ -75.0978, 40.029917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjk-rff", "Name": "The Cedars House", "Category": "Restaurants and Other Eating Places", "Address": "200 W Northwestern Ave", "LATITUDE": 40.083003, "LONGITUDE": -75.232456, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 73.0, "POI_CBG": 421010384001.0, "Median Dwell Time": 21.0, "Total Spend": 1598.0, "Total Transactions": 105.0, "Total Customers": 85.0, "Median Spend per Transaction": 12.53, "Median Spend per Customer": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.232456, 40.083003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "Name": "Philadelphia Pharmacy", "Category": "Health and Personal Care Stores", "Address": "101 E Lehigh Ave # 03", "LATITUDE": 39.991113, "LONGITUDE": -75.130735, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 145.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 6.0, "Total Spend": 4277.0, "Total Transactions": 14.0, "Total Customers": 6.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 300.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130735, 39.991113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1000 E Erie Ave", "LATITUDE": 40.005166, "LONGITUDE": -75.108882, "DATE_RANGE_START": 2020, "Total Visits": 1963.0, "Total Visitors": 1296.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 5.0, "Total Spend": 25845.0, "Total Transactions": 1151.0, "Total Customers": 657.0, "Median Spend per Transaction": 20.06, "Median Spend per Customer": 29.19 }, "geometry": { "type": "Point", "coordinates": [ -75.108882, 40.005166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmb-66k", "Name": "uBreakiFix", "Category": "Electronics and Appliance Stores", "Address": "1128 Walnut St # 100B", "LATITUDE": 39.948576, "LONGITUDE": -75.160424, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 58.0, "Total Spend": 1016.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 31.39, "Median Spend per Customer": 31.39 }, "geometry": { "type": "Point", "coordinates": [ -75.160424, 39.948576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "901 Levick St", "LATITUDE": 40.044581, "LONGITUDE": -75.086995, "DATE_RANGE_START": 2020, "Total Visits": 641.0, "Total Visitors": 542.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 6.0, "Total Spend": 262.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 28.34, "Median Spend per Customer": 28.34 }, "geometry": { "type": "Point", "coordinates": [ -75.086995, 40.044581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-ffz", "Name": "D'jakarta Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1540 W Ritner St", "LATITUDE": 39.920881, "LONGITUDE": -75.173653, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 36.0, "POI_CBG": 421010039021.0, "Median Dwell Time": 232.0, "Total Spend": 905.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 33.71, "Median Spend per Customer": 33.71 }, "geometry": { "type": "Point", "coordinates": [ -75.173653, 39.920881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "Name": "Riverwards Produce", "Category": "Grocery Stores", "Address": "2200 E Norris St", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 73.0, "POI_CBG": 421010158001.0, "Median Dwell Time": 8.0, "Total Spend": 46534.0, "Total Transactions": 1169.0, "Total Customers": 669.0, "Median Spend per Transaction": 32.97, "Median Spend per Customer": 43.48 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "1575 N 52nd St", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2020, "Total Visits": 486.0, "Total Visitors": 405.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 14.0, "Total Spend": 793.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 52.67, "Median Spend per Customer": 52.67 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-wc5", "Name": "Renzis Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "6300 Battersby St", "LATITUDE": 40.029921, "LONGITUDE": -75.062595, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 38.0, "POI_CBG": 421010316004.0, "Median Dwell Time": 395.0, "Total Spend": 461.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 19.38, "Median Spend per Customer": 22.97 }, "geometry": { "type": "Point", "coordinates": [ -75.062595, 40.029921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "Name": "Cafe Lift", "Category": "Restaurants and Other Eating Places", "Address": "428 N 13th St", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 22.0, "POI_CBG": 421010376002.0, "Median Dwell Time": null, "Total Spend": 5582.0, "Total Transactions": 171.0, "Total Customers": 155.0, "Median Spend per Transaction": 32.01, "Median Spend per Customer": 36.54 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2000 Hamilton St", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2020, "Total Visits": 329.0, "Total Visitors": 238.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 5.0, "Total Spend": 55823.0, "Total Transactions": 5615.0, "Total Customers": 2759.0, "Median Spend per Transaction": 8.58, "Median Spend per Customer": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2200 Wheatsheaf Ln Ste E3", "LATITUDE": 39.999174, "LONGITUDE": -75.093264, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 50.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 1.0, "Total Spend": 422.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 23.73, "Median Spend per Customer": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.093264, 39.999174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "Name": "Beer Express", "Category": "Beer, Wine, and Liquor Stores", "Address": "11718 Bustleton Ave", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2020, "Total Visits": 381.0, "Total Visitors": 304.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 2.0, "Total Spend": 14978.0, "Total Transactions": 466.0, "Total Customers": 320.0, "Median Spend per Transaction": 27.72, "Median Spend per Customer": 33.15 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "Name": "3 Brothers Pizza & Pasta", "Category": "Restaurants and Other Eating Places", "Address": "2621 E Ontario St", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010379002.0, "Median Dwell Time": 5.0, "Total Spend": 2184.0, "Total Transactions": 177.0, "Total Customers": 97.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pp5-kpv", "Name": "Port Richmond Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2512 E Clearfield St", "LATITUDE": 39.985432, "LONGITUDE": -75.107476, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 99.0, "POI_CBG": 421010180023.0, "Median Dwell Time": 7.0, "Total Spend": 1024.0, "Total Transactions": 81.0, "Total Customers": 32.0, "Median Spend per Transaction": 8.04, "Median Spend per Customer": 19.96 }, "geometry": { "type": "Point", "coordinates": [ -75.107476, 39.985432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "314 S 5th St", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2020, "Total Visits": 395.0, "Total Visitors": 208.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 66.0, "Total Spend": 9794.0, "Total Transactions": 403.0, "Total Customers": 216.0, "Median Spend per Transaction": 12.11, "Median Spend per Customer": 24.96 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3655 Aramingo Ave", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2020, "Total Visits": 677.0, "Total Visitors": 552.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 6.0, "Total Spend": 1312.0, "Total Transactions": 89.0, "Total Customers": 79.0, "Median Spend per Transaction": 12.52, "Median Spend per Customer": 14.41 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4133 G St", "LATITUDE": 40.011535, "LONGITUDE": -75.111695, "DATE_RANGE_START": 2020, "Total Visits": 721.0, "Total Visitors": 534.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 5.0, "Total Spend": 3263.0, "Total Transactions": 179.0, "Total Customers": 143.0, "Median Spend per Transaction": 12.14, "Median Spend per Customer": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.111695, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-j7q", "Name": "Flowers & Company", "Category": "Florists", "Address": "267 S 19th St", "LATITUDE": 39.948248, "LONGITUDE": -75.172462, "DATE_RANGE_START": 2020, "Total Visits": 1205.0, "Total Visitors": 732.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 149.0, "Total Spend": 2294.0, "Total Transactions": 40.0, "Total Customers": 40.0, "Median Spend per Transaction": 43.53, "Median Spend per Customer": 43.53 }, "geometry": { "type": "Point", "coordinates": [ -75.172462, 39.948248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "Name": "Super Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7340 Frankford Ave", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 34.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 51.0, "Total Spend": 2223.0, "Total Transactions": 73.0, "Total Customers": 54.0, "Median Spend per Transaction": 28.27, "Median Spend per Customer": 31.51 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "102 E Chelten Ave", "LATITUDE": 40.037208, "LONGITUDE": -75.172767, "DATE_RANGE_START": 2020, "Total Visits": 1175.0, "Total Visitors": 730.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 6.0, "Total Spend": 15002.0, "Total Transactions": 675.0, "Total Customers": 459.0, "Median Spend per Transaction": 20.03, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172767, 40.037208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "Name": "Knead Bagels", "Category": "Restaurants and Other Eating Places", "Address": "725 Walnut St", "LATITUDE": 39.948165, "LONGITUDE": -75.153606, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 1885.0, "Total Transactions": 131.0, "Total Customers": 109.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 12.58 }, "geometry": { "type": "Point", "coordinates": [ -75.153606, 39.948165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "Name": "Taco Loco", "Category": "Restaurants and Other Eating Places", "Address": "400 Washington Ave", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010025004.0, "Median Dwell Time": null, "Total Spend": 1770.0, "Total Transactions": 105.0, "Total Customers": 77.0, "Median Spend per Transaction": 13.55, "Median Spend per Customer": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "Name": "Ganaan Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5909 N 5th St", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010274011.0, "Median Dwell Time": null, "Total Spend": 6283.0, "Total Transactions": 197.0, "Total Customers": 159.0, "Median Spend per Transaction": 28.5, "Median Spend per Customer": 34.15 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-y5f", "Name": "Southside Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "917 S 20th St", "LATITUDE": 39.940448, "LONGITUDE": -75.17585, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 11.0, "Total Spend": 268.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 36.26, "Median Spend per Customer": 36.26 }, "geometry": { "type": "Point", "coordinates": [ -75.17585, 39.940448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pm9-wtv", "Name": "Ross Stores", "Category": "Department Stores", "Address": "701 Market St", "LATITUDE": 39.951286, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 49.0, "Total Spend": 12938.0, "Total Transactions": 294.0, "Total Customers": 204.0, "Median Spend per Transaction": 32.97, "Median Spend per Customer": 43.02 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.951286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "Name": "Tap Room On 19th", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2400 S 19th St", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010038001.0, "Median Dwell Time": null, "Total Spend": 3493.0, "Total Transactions": 56.0, "Total Customers": 32.0, "Median Spend per Transaction": 56.38, "Median Spend per Customer": 56.75 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-rzf", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2400 E Butler St", "LATITUDE": 39.995312, "LONGITUDE": -75.092003, "DATE_RANGE_START": 2020, "Total Visits": 423.0, "Total Visitors": 377.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 4.0, "Total Spend": 252.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 21.3, "Median Spend per Customer": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.092003, 39.995312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "Name": "University City Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4300 Walnut St", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 62.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 760.0, "Total Spend": 3540.0, "Total Transactions": 135.0, "Total Customers": 83.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "Name": "Marine Layer", "Category": "Clothing Stores", "Address": "1604 Walnut St", "LATITUDE": 39.949625, "LONGITUDE": -75.16782, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 443.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 13.0, "Total Spend": 1200.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 108.0, "Median Spend per Customer": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16782, 39.949625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "Name": "Dollar Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7578 Haverford Ave", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2020, "Total Visits": 554.0, "Total Visitors": 367.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 9.0, "Total Spend": 7716.0, "Total Transactions": 268.0, "Total Customers": 224.0, "Median Spend per Transaction": 18.65, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945313, "LONGITUDE": -75.238538, "DATE_RANGE_START": 2020, "Total Visits": 651.0, "Total Visitors": 484.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 11.0, "Total Spend": 2183.0, "Total Transactions": 242.0, "Total Customers": 157.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 8.24 }, "geometry": { "type": "Point", "coordinates": [ -75.238538, 39.945313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-kfz", "Name": "Machi Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "209 S 20th St", "LATITUDE": 39.950008, "LONGITUDE": -75.173818, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010008034.0, "Median Dwell Time": null, "Total Spend": 163.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.173818, 39.950008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-sbk", "Name": "Faulkner Hyundai", "Category": "Automobile Dealers", "Address": "11500 Roosevelt Blvd", "LATITUDE": 40.102704, "LONGITUDE": -75.006021, "DATE_RANGE_START": 2020, "Total Visits": 4164.0, "Total Visitors": 2926.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 49.0, "Total Spend": 43355.0, "Total Transactions": 105.0, "Total Customers": 93.0, "Median Spend per Transaction": 131.64, "Median Spend per Customer": 136.54 }, "geometry": { "type": "Point", "coordinates": [ -75.006021, 40.102704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2701 N 2nd St", "LATITUDE": 39.991624, "LONGITUDE": -75.134387, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 236.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 7.0, "Total Spend": 12058.0, "Total Transactions": 226.0, "Total Customers": 193.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 37.66 }, "geometry": { "type": "Point", "coordinates": [ -75.134387, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm4-grk", "Name": "AmeriThai", "Category": "Restaurants and Other Eating Places", "Address": "1244 Snyder Ave", "LATITUDE": 39.923914, "LONGITUDE": -75.167514, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 8.0, "Total Spend": 1421.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 35.65, "Median Spend per Customer": 40.79 }, "geometry": { "type": "Point", "coordinates": [ -75.167514, 39.923914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgj-9xq", "Name": "Brothers Food Market", "Category": "Grocery Stores", "Address": "2101 W York St", "LATITUDE": 39.990985, "LONGITUDE": -75.167059, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010168006.0, "Median Dwell Time": null, "Total Spend": 78.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 15.28, "Median Spend per Customer": 15.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167059, 39.990985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "Name": "Lucha Cartel", "Category": "Restaurants and Other Eating Places", "Address": "207 Chestnut St", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 28.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 334.0, "Total Spend": 539.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 42.73, "Median Spend per Customer": 42.73 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-f9f", "Name": "Dimension Latin Grill", "Category": "Restaurants and Other Eating Places", "Address": "7312 Castor Ave", "LATITUDE": 40.052647, "LONGITUDE": -75.065236, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 46.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 34.0, "Total Spend": 3919.0, "Total Transactions": 50.0, "Total Customers": 44.0, "Median Spend per Transaction": 65.16, "Median Spend per Customer": 88.5 }, "geometry": { "type": "Point", "coordinates": [ -75.065236, 40.052647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f9f", "Name": "El Balconcito II", "Category": "Restaurants and Other Eating Places", "Address": "7326 Castor Ave", "LATITUDE": 40.052956, "LONGITUDE": -75.064913, "DATE_RANGE_START": 2020, "Total Visits": 830.0, "Total Visitors": 464.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 80.0, "Total Spend": 2908.0, "Total Transactions": 64.0, "Total Customers": 60.0, "Median Spend per Transaction": 44.66, "Median Spend per Customer": 43.38 }, "geometry": { "type": "Point", "coordinates": [ -75.064913, 40.052956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-k75", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "9916 Roosevelt Blvd", "LATITUDE": 40.094473, "LONGITUDE": -75.018339, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 81.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 5.0, "Total Spend": 611.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 25.3, "Median Spend per Customer": 25.3 }, "geometry": { "type": "Point", "coordinates": [ -75.018339, 40.094473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-n3q", "Name": "Naya Market St", "Category": "Restaurants and Other Eating Places", "Address": "1601 Market St", "LATITUDE": 39.953238, "LONGITUDE": -75.167055, "DATE_RANGE_START": 2020, "Total Visits": 189.0, "Total Visitors": 143.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 126.0, "Total Spend": 154.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 12.24 }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.953238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3032 N Broad St", "LATITUDE": 39.999771, "LONGITUDE": -75.153727, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 109.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 8.0, "Total Spend": 991.0, "Total Transactions": 81.0, "Total Customers": 67.0, "Median Spend per Transaction": 10.65, "Median Spend per Customer": 12.54 }, "geometry": { "type": "Point", "coordinates": [ -75.153727, 39.999771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "634 Market St", "LATITUDE": 39.950691, "LONGITUDE": -75.151871, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 97.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 178.0, "Total Spend": 2694.0, "Total Transactions": 455.0, "Total Customers": 270.0, "Median Spend per Transaction": 5.05, "Median Spend per Customer": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.950691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-n3q", "Name": "Pete's Clown House", "Category": "Restaurants and Other Eating Places", "Address": "3878 Frankford Ave", "LATITUDE": 40.003738, "LONGITUDE": -75.094646, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 64.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 12.0, "Total Spend": 1568.0, "Total Transactions": 71.0, "Total Customers": 56.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 26.53 }, "geometry": { "type": "Point", "coordinates": [ -75.094646, 40.003738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-cqz", "Name": "Pita Chip", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St Ste 7", "LATITUDE": 39.977951, "LONGITUDE": -75.158444, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 377.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 16.0, "Total Spend": 1142.0, "Total Transactions": 89.0, "Total Customers": 79.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 10.19 }, "geometry": { "type": "Point", "coordinates": [ -75.158444, 39.977951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8f-djv", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "4710 Oxford Ave", "LATITUDE": 40.017133, "LONGITUDE": -75.084023, "DATE_RANGE_START": 2020, "Total Visits": 540.0, "Total Visitors": 361.0, "POI_CBG": 421010300006.0, "Median Dwell Time": 14.0, "Total Spend": 603.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 21.22, "Median Spend per Customer": 32.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084023, 40.017133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "575 Adams Ave", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 60.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 4.0, "Total Spend": 3389.0, "Total Transactions": 141.0, "Total Customers": 91.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 28.45 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-9pv", "Name": "The Buffalo House", "Category": "Restaurants and Other Eating Places", "Address": "8439 Frankford Ave", "LATITUDE": 40.043677, "LONGITUDE": -75.017847, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 69.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 7.0, "Total Spend": 3659.0, "Total Transactions": 145.0, "Total Customers": 93.0, "Median Spend per Transaction": 24.85, "Median Spend per Customer": 29.4 }, "geometry": { "type": "Point", "coordinates": [ -75.017847, 40.043677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-kcq", "Name": "Cosmic Cafe and Ciderhouse", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1 Boathouse Row", "LATITUDE": 39.969067, "LONGITUDE": -75.185279, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 99.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 147.0, "Total Spend": 928.0, "Total Transactions": 87.0, "Total Customers": 73.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185279, 39.969067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-9j9", "Name": "ALDI", "Category": "Grocery Stores", "Address": "7900 Roosevelt Blvd", "LATITUDE": 40.055278, "LONGITUDE": -75.049853, "DATE_RANGE_START": 2020, "Total Visits": 474.0, "Total Visitors": 397.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 9.0, "Total Spend": 304.0, "Total Transactions": 14.0, "Total Customers": 8.0, "Median Spend per Transaction": 16.28, "Median Spend per Customer": 31.79 }, "geometry": { "type": "Point", "coordinates": [ -75.049853, 40.055278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgm-3qz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4168 Ridge Ave", "LATITUDE": 40.008377, "LONGITUDE": -75.193545, "DATE_RANGE_START": 2020, "Total Visits": 294.0, "Total Visitors": 248.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 2.0, "Total Spend": 2275.0, "Total Transactions": 234.0, "Total Customers": 149.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 8.01 }, "geometry": { "type": "Point", "coordinates": [ -75.193545, 40.008377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "Name": "J & P Seafood", "Category": "Restaurants and Other Eating Places", "Address": "4820 Spruce St", "LATITUDE": 39.953491, "LONGITUDE": -75.218951, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 99.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 20.0, "Total Spend": 8290.0, "Total Transactions": 216.0, "Total Customers": 171.0, "Median Spend per Transaction": 33.97, "Median Spend per Customer": 37.15 }, "geometry": { "type": "Point", "coordinates": [ -75.218951, 39.953491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8220 Bartram Ave", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2020, "Total Visits": 909.0, "Total Visitors": 794.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 2.0, "Total Spend": 119547.0, "Total Transactions": 7553.0, "Total Customers": 4541.0, "Median Spend per Transaction": 11.97, "Median Spend per Customer": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-p9q-tn5", "Name": "Hibachi Express", "Category": "Restaurants and Other Eating Places", "Address": "1900 Grant Ave", "LATITUDE": 40.08417, "LONGITUDE": -75.035832, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 66.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 9.0, "Total Spend": 1728.0, "Total Transactions": 71.0, "Total Customers": 56.0, "Median Spend per Transaction": 19.59, "Median Spend per Customer": 20.38 }, "geometry": { "type": "Point", "coordinates": [ -75.035832, 40.08417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "Name": "Parkway Corner Deli", "Category": "Restaurants and Other Eating Places", "Address": "2201 Pennsylvania Ave", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 101.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 71.0, "Total Spend": 2663.0, "Total Transactions": 169.0, "Total Customers": 103.0, "Median Spend per Transaction": 14.52, "Median Spend per Customer": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pmb-7qz", "Name": "Little Nonna's", "Category": "Restaurants and Other Eating Places", "Address": "1234 Locust St", "LATITUDE": 39.94777, "LONGITUDE": -75.162061, "DATE_RANGE_START": 2020, "Total Visits": 629.0, "Total Visitors": 357.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 101.0, "Total Spend": 461.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 74.0, "Median Spend per Customer": 74.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162061, 39.94777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "Name": "Spring Garden Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "400 Spring Garden St", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2020, "Total Visits": 496.0, "Total Visitors": 389.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 11.0, "Total Spend": 3586.0, "Total Transactions": 200.0, "Total Customers": 107.0, "Median Spend per Transaction": 11.51, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "Name": "Cleavers", "Category": "Restaurants and Other Eating Places", "Address": "108 S 18th St", "LATITUDE": 39.951397, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 75.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 5.0, "Total Spend": 14495.0, "Total Transactions": 536.0, "Total Customers": 455.0, "Median Spend per Transaction": 21.87, "Median Spend per Customer": 28.73 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 39.951397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-73q", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "121 S Broad St", "LATITUDE": 39.950321, "LONGITUDE": -75.163776, "DATE_RANGE_START": 2020, "Total Visits": 758.0, "Total Visitors": 552.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 24.0, "Total Spend": 4364.0, "Total Transactions": 222.0, "Total Customers": 191.0, "Median Spend per Transaction": 16.09, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.163776, 39.950321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-y7q", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "1701 Welsh Rd Ste 3", "LATITUDE": 40.085978, "LONGITUDE": -75.039162, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 81.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 2.0, "Total Spend": 316.0, "Total Transactions": 26.0, "Total Customers": 20.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.039162, 40.085978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-xwk", "Name": "Hive Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1444 S Broad St", "LATITUDE": 39.931826, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 81.0, "POI_CBG": 421010030021.0, "Median Dwell Time": 26.0, "Total Spend": 52.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 13.1, "Median Spend per Customer": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.931826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2025 S Broad St", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2020, "Total Visits": 1411.0, "Total Visitors": 859.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 13.0, "Total Spend": 140.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 7.58, "Median Spend per Customer": 8.02 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pjf-kvf", "Name": "Tailored Home", "Category": "Home Furnishings Stores", "Address": "8528 Germantown Ave", "LATITUDE": 40.076272, "LONGITUDE": -75.207332, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 218.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 21.0, "Total Spend": 90.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.207332, 40.076272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "1900 N 5th St", "LATITUDE": 39.980937, "LONGITUDE": -75.144152, "DATE_RANGE_START": 2020, "Total Visits": 1923.0, "Total Visitors": 1344.0, "POI_CBG": 421010156002.0, "Median Dwell Time": 18.0, "Total Spend": 11287.0, "Total Transactions": 266.0, "Total Customers": 165.0, "Median Spend per Transaction": 23.98, "Median Spend per Customer": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.144152, 39.980937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "Name": "S & S Foods", "Category": "Grocery Stores", "Address": "1800 S Columbus Blvd", "LATITUDE": 39.924738, "LONGITUDE": -75.144356, "DATE_RANGE_START": 2020, "Total Visits": 413.0, "Total Visitors": 258.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 38.0, "Total Spend": 9523.0, "Total Transactions": 48.0, "Total Customers": 30.0, "Median Spend per Transaction": 201.2, "Median Spend per Customer": 244.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144356, 39.924738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-649", "Name": "Quaker Valley Foods", "Category": "Specialty Food Stores", "Address": "2701 Red Lion Rd", "LATITUDE": 40.094265, "LONGITUDE": -75.010029, "DATE_RANGE_START": 2020, "Total Visits": 306.0, "Total Visitors": 101.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 182.0, "Total Spend": 166394.0, "Total Transactions": 62.0, "Total Customers": 8.0, "Median Spend per Transaction": 2841.35, "Median Spend per Customer": 6946.65 }, "geometry": { "type": "Point", "coordinates": [ -75.010029, 40.094265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "Name": "Brewer's Outlet", "Category": "Beer, Wine, and Liquor Stores", "Address": "309 S 48th St", "LATITUDE": 39.953078, "LONGITUDE": -75.217954, "DATE_RANGE_START": 2020, "Total Visits": 335.0, "Total Visitors": 240.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 12.0, "Total Spend": 8271.0, "Total Transactions": 234.0, "Total Customers": 187.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 31.85 }, "geometry": { "type": "Point", "coordinates": [ -75.217954, 39.953078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1100 S 10th St", "LATITUDE": 39.936469, "LONGITUDE": -75.160327, "DATE_RANGE_START": 2020, "Total Visits": 1882.0, "Total Visitors": 1385.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 5.0, "Total Spend": 4016.0, "Total Transactions": 145.0, "Total Customers": 103.0, "Median Spend per Transaction": 25.24, "Median Spend per Customer": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.160327, 39.936469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "Name": "Banana Republic Outlet", "Category": "Clothing Stores", "Address": "1911 Chestnut St", "LATITUDE": 39.952113, "LONGITUDE": -75.172438, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 167.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 23.0, "Total Spend": 3908.0, "Total Transactions": 69.0, "Total Customers": 56.0, "Median Spend per Transaction": 39.38, "Median Spend per Customer": 64.72 }, "geometry": { "type": "Point", "coordinates": [ -75.172438, 39.952113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvp-qmk", "Name": "Caribbean Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "6045 Baltimore Ave", "LATITUDE": 39.94382, "LONGITUDE": -75.246381, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 101.0, "POI_CBG": 421010082004.0, "Median Dwell Time": 11.0, "Total Spend": 241.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.246381, 39.94382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj8-2c5", "Name": "US1 Car Stereo", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4331 E Roosevelt Blvd", "LATITUDE": 40.029189, "LONGITUDE": -75.103473, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 81.0, "POI_CBG": 421010292002.0, "Median Dwell Time": 10.0, "Total Spend": 6542.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 350.0, "Median Spend per Customer": 350.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103473, 40.029189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "Name": "Evo Brickoven Pizza", "Category": "Restaurants and Other Eating Places", "Address": "277 W Mount Pleasant Ave", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 36.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 5.0, "Total Spend": 4060.0, "Total Transactions": 185.0, "Total Customers": 143.0, "Median Spend per Transaction": 12.75, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-mzf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1601 John F Kennedy Blvd", "LATITUDE": 39.954224, "LONGITUDE": -75.167482, "DATE_RANGE_START": 2020, "Total Visits": 2549.0, "Total Visitors": 1453.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 252.0, "Total Spend": 763.0, "Total Transactions": 149.0, "Total Customers": 32.0, "Median Spend per Transaction": 4.47, "Median Spend per Customer": 8.84 }, "geometry": { "type": "Point", "coordinates": [ -75.167482, 39.954224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "Name": "Castle Roxx", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "105 Shurs Ln", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 42.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 585.0, "Total Spend": 3414.0, "Total Transactions": 83.0, "Total Customers": 58.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "Name": "Cry Baby Pasta", "Category": "Restaurants and Other Eating Places", "Address": "627 S 3rd St", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 335.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 50.0, "Total Spend": 3999.0, "Total Transactions": 48.0, "Total Customers": 48.0, "Median Spend per Transaction": 83.56, "Median Spend per Customer": 83.56 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-3bk", "Name": "Nopco", "Category": "Health and Personal Care Stores", "Address": "3550 Market St Ste 110", "LATITUDE": 39.95597, "LONGITUDE": -75.194088, "DATE_RANGE_START": 2020, "Total Visits": 1350.0, "Total Visitors": 822.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 81.0, "Total Spend": 288.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194088, 39.95597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 48.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 5.0, "Total Spend": 3240.0, "Total Transactions": 56.0, "Total Customers": 54.0, "Median Spend per Transaction": 31.92, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-vvf", "Name": "Pret A Manger", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955744, "LONGITUDE": -75.181965, "DATE_RANGE_START": 2020, "Total Visits": 10482.0, "Total Visitors": 6602.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 22.0, "Total Spend": 1168.0, "Total Transactions": 171.0, "Total Customers": 157.0, "Median Spend per Transaction": 5.26, "Median Spend per Customer": 5.72 }, "geometry": { "type": "Point", "coordinates": [ -75.181965, 39.955744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-p7q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1955 W Hunting Park Ave", "LATITUDE": 40.01382, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2020, "Total Visits": 87.0, "Total Visitors": 56.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 21.0, "Total Spend": 1064.0, "Total Transactions": 99.0, "Total Customers": 71.0, "Median Spend per Transaction": 8.02, "Median Spend per Customer": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 40.01382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1300 N Broad St", "LATITUDE": 39.973475, "LONGITUDE": -75.159323, "DATE_RANGE_START": 2020, "Total Visits": 369.0, "Total Visitors": 294.0, "POI_CBG": 421010140003.0, "Median Dwell Time": 3.0, "Total Spend": 1678.0, "Total Transactions": 71.0, "Total Customers": 56.0, "Median Spend per Transaction": 20.61, "Median Spend per Customer": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159323, 39.973475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "Name": "Liberty Time", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2020, "Total Visits": 1491.0, "Total Visitors": 1245.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 1622.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 40.5, "Median Spend per Customer": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7400 Bustleton Ave", "LATITUDE": 40.051082, "LONGITUDE": -75.059668, "DATE_RANGE_START": 2020, "Total Visits": 6943.0, "Total Visitors": 4716.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 20.0, "Total Spend": 337971.0, "Total Transactions": 6475.0, "Total Customers": 3936.0, "Median Spend per Transaction": 31.81, "Median Spend per Customer": 52.11 }, "geometry": { "type": "Point", "coordinates": [ -75.059668, 40.051082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-grk", "Name": "Bargain world", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4839 Woodland Ave", "LATITUDE": 39.941099, "LONGITUDE": -75.21263, "DATE_RANGE_START": 2020, "Total Visits": 212.0, "Total Visitors": 151.0, "POI_CBG": 421010074002.0, "Median Dwell Time": 8.0, "Total Spend": 475.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 18.98, "Median Spend per Customer": 54.86 }, "geometry": { "type": "Point", "coordinates": [ -75.21263, 39.941099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "Name": "Vapordelphia", "Category": "Other Miscellaneous Store Retailers", "Address": "603 S 9th St", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2020, "Total Visits": 669.0, "Total Visitors": 476.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 35.0, "Total Spend": 4729.0, "Total Transactions": 89.0, "Total Customers": 73.0, "Median Spend per Transaction": 47.52, "Median Spend per Customer": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3670 Richmond St", "LATITUDE": 39.989253, "LONGITUDE": -75.090212, "DATE_RANGE_START": 2020, "Total Visits": 2435.0, "Total Visitors": 1411.0, "POI_CBG": 421010379006.0, "Median Dwell Time": 5.0, "Total Spend": 861.0, "Total Transactions": 46.0, "Total Customers": 38.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.090212, 39.989253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w49", "Name": "Sam Ash Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1887 Franklin Mills Cir", "LATITUDE": 40.087105, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 121.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 26427.0, "Total Transactions": 129.0, "Total Customers": 91.0, "Median Spend per Transaction": 104.76, "Median Spend per Customer": 132.15 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "801 E Cathedral Rd. Store #24", "LATITUDE": 40.064353, "LONGITUDE": -75.238205, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 135.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 7.0, "Total Spend": 378.0, "Total Transactions": 26.0, "Total Customers": 20.0, "Median Spend per Transaction": 7.99, "Median Spend per Customer": 18.82 }, "geometry": { "type": "Point", "coordinates": [ -75.238205, 40.064353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "1500 N 50th St", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2020, "Total Visits": 681.0, "Total Visitors": 320.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 437.0, "Total Spend": 810.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6151 N Broad St", "LATITUDE": 40.0471, "LONGITUDE": -75.142281, "DATE_RANGE_START": 2020, "Total Visits": 3501.0, "Total Visitors": 2334.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 6.0, "Total Spend": 23317.0, "Total Transactions": 1022.0, "Total Customers": 693.0, "Median Spend per Transaction": 21.01, "Median Spend per Customer": 26.67 }, "geometry": { "type": "Point", "coordinates": [ -75.142281, 40.0471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-225@628-pmf-sqz", "Name": "Rag & Bone", "Category": "Clothing Stores", "Address": "1601 Walnut St", "LATITUDE": 39.950021, "LONGITUDE": -75.167636, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 71.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 31.0, "Total Spend": 6021.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 203.0, "Median Spend per Customer": 203.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167636, 39.950021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgh-6p9", "Name": "New Station Pizza 8", "Category": "Restaurants and Other Eating Places", "Address": "2206 W Hunting Park Ave", "LATITUDE": 40.010722, "LONGITUDE": -75.164603, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 46.0, "POI_CBG": 421010202004.0, "Median Dwell Time": 5.0, "Total Spend": 4197.0, "Total Transactions": 210.0, "Total Customers": 141.0, "Median Spend per Transaction": 17.86, "Median Spend per Customer": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164603, 40.010722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "Name": "Stenton Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7171 Stenton Ave", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 24.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 319.0, "Total Spend": 2460.0, "Total Transactions": 127.0, "Total Customers": 91.0, "Median Spend per Transaction": 17.7, "Median Spend per Customer": 19.67 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-ht9", "Name": "Medical Guardian", "Category": "Health and Personal Care Stores", "Address": "1818 Market St Ste 1200", "LATITUDE": 39.952886, "LONGITUDE": -75.170883, "DATE_RANGE_START": 2020, "Total Visits": 564.0, "Total Visitors": 329.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 86.0, "Total Spend": 178.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 29.95, "Median Spend per Customer": 44.93 }, "geometry": { "type": "Point", "coordinates": [ -75.170883, 39.952886 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.037065, "LONGITUDE": -75.118922, "DATE_RANGE_START": 2020, "Total Visits": 230.0, "Total Visitors": 197.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 11.0, "Total Spend": 16019.0, "Total Transactions": 393.0, "Total Customers": 349.0, "Median Spend per Transaction": 27.98, "Median Spend per Customer": 30.99 }, "geometry": { "type": "Point", "coordinates": [ -75.118922, 40.037065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "Name": "New Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2800 W Dauphin St", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2020, "Total Visits": 965.0, "Total Visitors": 482.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 91.0, "Total Spend": 1144.0, "Total Transactions": 73.0, "Total Customers": 44.0, "Median Spend per Transaction": 11.81, "Median Spend per Customer": 23.08 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5801 Roosevelt Blvd", "LATITUDE": 40.031321, "LONGITUDE": -75.083478, "DATE_RANGE_START": 2020, "Total Visits": 2007.0, "Total Visitors": 1346.0, "POI_CBG": 421010318004.0, "Median Dwell Time": 5.0, "Total Spend": 505.0, "Total Transactions": 32.0, "Total Customers": 24.0, "Median Spend per Transaction": 16.31, "Median Spend per Customer": 21.35 }, "geometry": { "type": "Point", "coordinates": [ -75.083478, 40.031321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-6ff", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "10188 Bustleton Ave", "LATITUDE": 40.107593, "LONGITUDE": -75.02698, "DATE_RANGE_START": 2020, "Total Visits": 1028.0, "Total Visitors": 766.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 5.0, "Total Spend": 1201.0, "Total Transactions": 83.0, "Total Customers": 64.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 12.21 }, "geometry": { "type": "Point", "coordinates": [ -75.02698, 40.107593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmd-w49", "Name": "Twenty Manning", "Category": "Restaurants and Other Eating Places", "Address": "261 S 20th St", "LATITUDE": 39.948622, "LONGITUDE": -75.17407, "DATE_RANGE_START": 2020, "Total Visits": 312.0, "Total Visitors": 105.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 904.0, "Total Spend": 1520.0, "Total Transactions": 48.0, "Total Customers": 42.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17407, 39.948622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "Name": "Tokyo Sushi & Catering", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd Ste C120", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2020, "Total Visits": 1030.0, "Total Visitors": 572.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 287.0, "Total Spend": 1953.0, "Total Transactions": 121.0, "Total Customers": 83.0, "Median Spend per Transaction": 16.48, "Median Spend per Customer": 16.51 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "Name": "Local 44", "Category": "Restaurants and Other Eating Places", "Address": "4333 Spruce St", "LATITUDE": 39.952832, "LONGITUDE": -75.210325, "DATE_RANGE_START": 2020, "Total Visits": 331.0, "Total Visitors": 226.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 134.0, "Total Spend": 1116.0, "Total Transactions": 32.0, "Total Customers": 24.0, "Median Spend per Transaction": 31.51, "Median Spend per Customer": 37.73 }, "geometry": { "type": "Point", "coordinates": [ -75.210325, 39.952832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-xwk", "Name": "Walnut Street Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2929 Walnut St", "LATITUDE": 39.952066, "LONGITUDE": -75.183753, "DATE_RANGE_START": 2020, "Total Visits": 3295.0, "Total Visitors": 2062.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 115.0, "Total Spend": 162.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 40.7, "Median Spend per Customer": 40.7 }, "geometry": { "type": "Point", "coordinates": [ -75.183753, 39.952066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "Name": "Ocean Harbor", "Category": "Restaurants and Other Eating Places", "Address": "1023 Race St", "LATITUDE": 39.95567, "LONGITUDE": -75.156821, "DATE_RANGE_START": 2020, "Total Visits": 2092.0, "Total Visitors": 1475.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 8.0, "Total Spend": 181.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 45.5, "Median Spend per Customer": 45.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156821, 39.95567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5814 Woodland Ave", "LATITUDE": 39.931302, "LONGITUDE": -75.225599, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 212.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 8.0, "Total Spend": 1209.0, "Total Transactions": 117.0, "Total Customers": 103.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 8.33 }, "geometry": { "type": "Point", "coordinates": [ -75.225599, 39.931302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "3619 Aramingo Ave", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2020, "Total Visits": 655.0, "Total Visitors": 524.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 6.0, "Total Spend": 13879.0, "Total Transactions": 899.0, "Total Customers": 665.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p9j-zj9", "Name": "Kabobi", "Category": "Restaurants and Other Eating Places", "Address": "10600 Roosevelt Blvd", "LATITUDE": 40.0995, "LONGITUDE": -75.010461, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 99.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 7.0, "Total Spend": 1933.0, "Total Transactions": 66.0, "Total Customers": 60.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.010461, 40.0995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "Name": "Linden Italian Market", "Category": "Restaurants and Other Eating Places", "Address": "4011 Linden Ave", "LATITUDE": 40.054575, "LONGITUDE": -75.004237, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 206.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 5.0, "Total Spend": 1211.0, "Total Transactions": 93.0, "Total Customers": 56.0, "Median Spend per Transaction": 11.48, "Median Spend per Customer": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.004237, 40.054575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "101 E Olney Ave", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2020, "Total Visits": 314.0, "Total Visitors": 268.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 5.0, "Total Spend": 10307.0, "Total Transactions": 834.0, "Total Customers": 548.0, "Median Spend per Transaction": 10.22, "Median Spend per Customer": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5001 Rising Sun Ave", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2020, "Total Visits": 431.0, "Total Visitors": 310.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 4.0, "Total Spend": 6811.0, "Total Transactions": 1016.0, "Total Customers": 389.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4160 Monument Rd", "LATITUDE": 40.002692, "LONGITUDE": -75.214454, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 210.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 6.0, "Total Spend": 5179.0, "Total Transactions": 810.0, "Total Customers": 445.0, "Median Spend per Transaction": 5.27, "Median Spend per Customer": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.214454, 40.002692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St # 08", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 185.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 4.0, "Total Spend": 6745.0, "Total Transactions": 520.0, "Total Customers": 417.0, "Median Spend per Transaction": 10.96, "Median Spend per Customer": 12.54 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2805 S Front St # 2809", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2020, "Total Visits": 1036.0, "Total Visitors": 730.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 8.0, "Total Spend": 13206.0, "Total Transactions": 1822.0, "Total Customers": 770.0, "Median Spend per Transaction": 6.07, "Median Spend per Customer": 9.77 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-835", "Name": "3J's Food Market", "Category": "Grocery Stores", "Address": "801 N 2nd St", "LATITUDE": 39.963054, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010367001.0, "Median Dwell Time": null, "Total Spend": 250.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 22.59 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg2-4qf", "Name": "Phu Fha Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "355 Lyceum Ave", "LATITUDE": 40.029908, "LONGITUDE": -75.218798, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010213004.0, "Median Dwell Time": 1.0, "Total Spend": 1629.0, "Total Transactions": 54.0, "Total Customers": 52.0, "Median Spend per Transaction": 27.97, "Median Spend per Customer": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.218798, 40.029908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm4-d35", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2217 S Broad St", "LATITUDE": 39.922429, "LONGITUDE": -75.169649, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 8.0, "Total Spend": 1347.0, "Total Transactions": 115.0, "Total Customers": 87.0, "Median Spend per Transaction": 10.82, "Median Spend per Customer": 11.05 }, "geometry": { "type": "Point", "coordinates": [ -75.169649, 39.922429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "Name": "New Quality Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "105 E Allegheny Ave", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010195012.0, "Median Dwell Time": null, "Total Spend": 470.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 17.42, "Median Spend per Customer": 24.74 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-r49", "Name": "Jade Palace", "Category": "Restaurants and Other Eating Places", "Address": "1714 S 5th St", "LATITUDE": 39.926873, "LONGITUDE": -75.154236, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 14.0, "POI_CBG": 421010027012.0, "Median Dwell Time": 1.0, "Total Spend": 104.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154236, 39.926873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "Name": "Little Fish", "Category": "Restaurants and Other Eating Places", "Address": "746 S 6th St", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010018001.0, "Median Dwell Time": 172.0, "Total Spend": 198.0, "Total Transactions": 24.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmc-qcq", "Name": "2 Street Pub", "Category": "Restaurants and Other Eating Places", "Address": "1400 S 2nd St", "LATITUDE": 39.930224, "LONGITUDE": -75.148223, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 85.0, "Total Spend": 216.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148223, 39.930224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-w8v", "Name": "Main Street Madness", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3791 Main St", "LATITUDE": 40.018, "LONGITUDE": -75.213362, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 24.0, "POI_CBG": 421010209003.0, "Median Dwell Time": 7.0, "Total Spend": 3908.0, "Total Transactions": 32.0, "Total Customers": 26.0, "Median Spend per Transaction": 92.5, "Median Spend per Customer": 106.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213362, 40.018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "3212 N Broad St", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 28.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 96.0, "Total Spend": 530.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 49.5, "Median Spend per Customer": 38.25 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgk-z9f", "Name": "Beauty & Fashion City", "Category": "Health and Personal Care Stores", "Address": "3985 Ford Rd", "LATITUDE": 39.999963, "LONGITUDE": -75.209335, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010122041.0, "Median Dwell Time": 1.0, "Total Spend": 218.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.16, "Median Spend per Customer": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.209335, 39.999963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnz-yy9", "Name": "Perri's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2347 E Clearfield St", "LATITUDE": 39.987227, "LONGITUDE": -75.108511, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010179002.0, "Median Dwell Time": 11.0, "Total Spend": 1073.0, "Total Transactions": 50.0, "Total Customers": 30.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108511, 39.987227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "Name": "Cafe Square One", "Category": "Restaurants and Other Eating Places", "Address": "50 S 3rd St", "LATITUDE": 39.948829, "LONGITUDE": -75.146095, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 56.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 224.0, "Total Spend": 1572.0, "Total Transactions": 125.0, "Total Customers": 83.0, "Median Spend per Transaction": 10.53, "Median Spend per Customer": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.146095, 39.948829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "9000 Tinicum Blvd", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2020, "Total Visits": 1640.0, "Total Visitors": 959.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 506.0, "Total Spend": 23429.0, "Total Transactions": 91.0, "Total Customers": 56.0, "Median Spend per Transaction": 127.98, "Median Spend per Customer": 127.98 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "Name": "No 1 Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2731 E Allegheny Ave", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 75.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 125.0, "Total Spend": 406.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 14.74, "Median Spend per Customer": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd Unit 22", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 208.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 55.0, "Total Spend": 3005.0, "Total Transactions": 99.0, "Total Customers": 93.0, "Median Spend per Transaction": 26.64, "Median Spend per Customer": 27.76 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "Name": "New Star Express Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5202 Lancaster Ave", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 93.0, "POI_CBG": 421010111004.0, "Median Dwell Time": 14.0, "Total Spend": 1720.0, "Total Transactions": 71.0, "Total Customers": 60.0, "Median Spend per Transaction": 21.33, "Median Spend per Customer": 21.26 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "2946 Island Ave", "LATITUDE": 39.899825, "LONGITUDE": -75.241379, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 318.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 21.0, "Total Spend": 157.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 15.64, "Median Spend per Customer": 15.64 }, "geometry": { "type": "Point", "coordinates": [ -75.241379, 39.899825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22g@628-pmb-92k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "901 Market St", "LATITUDE": 39.951633, "LONGITUDE": -75.155742, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 49.0, "Total Spend": 258.0, "Total Transactions": 56.0, "Total Customers": 30.0, "Median Spend per Transaction": 3.66, "Median Spend per Customer": 3.66 }, "geometry": { "type": "Point", "coordinates": [ -75.155742, 39.951633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-rzf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2300 E Butler St", "LATITUDE": 39.996049, "LONGITUDE": -75.092849, "DATE_RANGE_START": 2020, "Total Visits": 996.0, "Total Visitors": 584.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 7.0, "Total Spend": 1713.0, "Total Transactions": 262.0, "Total Customers": 165.0, "Median Spend per Transaction": 4.95, "Median Spend per Customer": 7.71 }, "geometry": { "type": "Point", "coordinates": [ -75.092849, 39.996049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmd-zcq", "Name": "Los Camaradas", "Category": "Restaurants and Other Eating Places", "Address": "918 S 22nd St", "LATITUDE": 39.940826, "LONGITUDE": -75.179816, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010013003.0, "Median Dwell Time": 1.0, "Total Spend": 8417.0, "Total Transactions": 157.0, "Total Customers": 147.0, "Median Spend per Transaction": 45.23, "Median Spend per Customer": 45.38 }, "geometry": { "type": "Point", "coordinates": [ -75.179816, 39.940826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgf-52k", "Name": "Chengdu Famous Food", "Category": "Restaurants and Other Eating Places", "Address": "3635 Lancaster Ave", "LATITUDE": 39.959245, "LONGITUDE": -75.194556, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 10.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 924.0, "Total Spend": 1518.0, "Total Transactions": 40.0, "Total Customers": 32.0, "Median Spend per Transaction": 33.75, "Median Spend per Customer": 37.57 }, "geometry": { "type": "Point", "coordinates": [ -75.194556, 39.959245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5536 Torresdale Ave", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010298002.0, "Median Dwell Time": 2.0, "Total Spend": 714.0, "Total Transactions": 32.0, "Total Customers": 32.0, "Median Spend per Transaction": 17.88, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "Name": "Trattoria Carina", "Category": "Restaurants and Other Eating Places", "Address": "2201 Spruce St", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010008011.0, "Median Dwell Time": null, "Total Spend": 2677.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 82.02, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "9717 Roosevelt Blvd", "LATITUDE": 40.08158, "LONGITUDE": -75.02629, "DATE_RANGE_START": 2020, "Total Visits": 528.0, "Total Visitors": 474.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 10.0, "Total Spend": 22195.0, "Total Transactions": 451.0, "Total Customers": 355.0, "Median Spend per Transaction": 39.13, "Median Spend per Customer": 47.48 }, "geometry": { "type": "Point", "coordinates": [ -75.02629, 40.08158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg8-ks5", "Name": "SPOT Gourmet Burgers", "Category": "Restaurants and Other Eating Places", "Address": "2821 W Girard Ave", "LATITUDE": 39.974624, "LONGITUDE": -75.182611, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 2.0, "Total Spend": 157.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 17.62, "Median Spend per Customer": 19.28 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.974624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "Name": "Revolution Taco", "Category": "Restaurants and Other Eating Places", "Address": "2015 Walnut St", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 490.0, "Total Spend": 1892.0, "Total Transactions": 101.0, "Total Customers": 87.0, "Median Spend per Transaction": 13.53, "Median Spend per Customer": 18.46 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "Name": "Garden Court Eatery & Beer", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4725 Pine St", "LATITUDE": 39.952636, "LONGITUDE": -75.21767, "DATE_RANGE_START": 2020, "Total Visits": 335.0, "Total Visitors": 240.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 12.0, "Total Spend": 16266.0, "Total Transactions": 760.0, "Total Customers": 320.0, "Median Spend per Transaction": 16.95, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21767, 39.952636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-y5f", "Name": "Neighborhood Ramen", "Category": "Restaurants and Other Eating Places", "Address": "617 S 3rd St", "LATITUDE": 39.9409, "LONGITUDE": -75.147453, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 335.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 50.0, "Total Spend": 45.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.147453, 39.9409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6x5", "Name": "Amma's South Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1518 Chestnut St", "LATITUDE": 39.950885, "LONGITUDE": -75.166421, "DATE_RANGE_START": 2020, "Total Visits": 3543.0, "Total Visitors": 2235.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 42.0, "Total Spend": 2395.0, "Total Transactions": 67.0, "Total Customers": 60.0, "Median Spend per Transaction": 30.13, "Median Spend per Customer": 36.61 }, "geometry": { "type": "Point", "coordinates": [ -75.166421, 39.950885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-p35", "Name": "Fiore Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2608 Kensington Ave", "LATITUDE": 39.989223, "LONGITUDE": -75.127044, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 83.0, "POI_CBG": 421010163001.0, "Median Dwell Time": 10.0, "Total Spend": 1243.0, "Total Transactions": 58.0, "Total Customers": 34.0, "Median Spend per Transaction": 20.16, "Median Spend per Customer": 23.18 }, "geometry": { "type": "Point", "coordinates": [ -75.127044, 39.989223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qmk", "Name": "Sea Soul", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.038264, "LONGITUDE": -75.11969, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 42.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 13.0, "Total Spend": 1757.0, "Total Transactions": 50.0, "Total Customers": 40.0, "Median Spend per Transaction": 27.97, "Median Spend per Customer": 29.92 }, "geometry": { "type": "Point", "coordinates": [ -75.11969, 40.038264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "Name": "Rosario's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1256 S 15th St Fl 1", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 46.0, "POI_CBG": 421010022002.0, "Median Dwell Time": 316.0, "Total Spend": 1194.0, "Total Transactions": 46.0, "Total Customers": 42.0, "Median Spend per Transaction": 24.57, "Median Spend per Customer": 24.57 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "Name": "House of Kosher", "Category": "Restaurants and Other Eating Places", "Address": "9806 Bustleton Ave", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2020, "Total Visits": 449.0, "Total Visitors": 210.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 13.0, "Total Spend": 24144.0, "Total Transactions": 347.0, "Total Customers": 161.0, "Median Spend per Transaction": 46.85, "Median Spend per Customer": 92.34 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-649", "Name": "The Barn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4901 Catharine St", "LATITUDE": 39.948417, "LONGITUDE": -75.22137, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 56.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 50.0, "Total Spend": 5784.0, "Total Transactions": 246.0, "Total Customers": 137.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22137, 39.948417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "Name": "Castor Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6038 Castor Ave", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 56.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 430.0, "Total Spend": 1619.0, "Total Transactions": 81.0, "Total Customers": 67.0, "Median Spend per Transaction": 19.47, "Median Spend per Customer": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5020 City Ave", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2020, "Total Visits": 536.0, "Total Visitors": 482.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 4.0, "Total Spend": 20003.0, "Total Transactions": 1860.0, "Total Customers": 1403.0, "Median Spend per Transaction": 8.99, "Median Spend per Customer": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "31 Snyder Ave", "LATITUDE": 39.921808, "LONGITUDE": -75.146286, "DATE_RANGE_START": 2020, "Total Visits": 250.0, "Total Visitors": 226.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 5.0, "Total Spend": 3498.0, "Total Transactions": 185.0, "Total Customers": 157.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.146286, 39.921808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4211 N Broad St", "LATITUDE": 40.017737, "LONGITUDE": -75.148813, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 79.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 15.0, "Total Spend": 5479.0, "Total Transactions": 320.0, "Total Customers": 262.0, "Median Spend per Transaction": 14.67, "Median Spend per Customer": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.148813, 40.017737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "3208 Red Lion Rd", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 121.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 6.0, "Total Spend": 6140.0, "Total Transactions": 236.0, "Total Customers": 214.0, "Median Spend per Transaction": 23.05, "Median Spend per Customer": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-zs5", "Name": "Kilimandjaro Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4519 Baltimore Ave", "LATITUDE": 39.949245, "LONGITUDE": -75.213733, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 71.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 10.0, "Total Spend": 67.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213733, 39.949245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1511 Locust St", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2020, "Total Visits": 171.0, "Total Visitors": 121.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 36.0, "Total Spend": 14587.0, "Total Transactions": 294.0, "Total Customers": 240.0, "Median Spend per Transaction": 37.1, "Median Spend per Customer": 40.58 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-ygk", "Name": "Pho Cali", "Category": "Restaurants and Other Eating Places", "Address": "1000 Arch St", "LATITUDE": 39.953422, "LONGITUDE": -75.156467, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 91.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 787.0, "Total Transactions": 34.0, "Total Customers": 28.0, "Median Spend per Transaction": 23.6, "Median Spend per Customer": 23.21 }, "geometry": { "type": "Point", "coordinates": [ -75.156467, 39.953422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992769, "LONGITUDE": -75.100237, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 147.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 73.0, "Total Spend": 10210.0, "Total Transactions": 363.0, "Total Customers": 304.0, "Median Spend per Transaction": 26.09, "Median Spend per Customer": 30.1 }, "geometry": { "type": "Point", "coordinates": [ -75.100237, 39.992769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "Name": "Macaroni's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "9315 Old Bustleton Ave", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 165.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 249.0, "Total Spend": 14849.0, "Total Transactions": 125.0, "Total Customers": 115.0, "Median Spend per Transaction": 105.64, "Median Spend per Customer": 108.85 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "Name": "Capital Beer", "Category": "Restaurants and Other Eating Places", "Address": "2661 E Cumberland St", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 69.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 1.0, "Total Spend": 2122.0, "Total Transactions": 69.0, "Total Customers": 62.0, "Median Spend per Transaction": 27.92, "Median Spend per Customer": 27.92 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dwg-cbk", "Name": "Hot Spot Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7000 Elmwood Ave", "LATITUDE": 39.916984, "LONGITUDE": -75.237394, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 77.0, "POI_CBG": 421010060005.0, "Median Dwell Time": 8.0, "Total Spend": 3256.0, "Total Transactions": 119.0, "Total Customers": 97.0, "Median Spend per Transaction": 24.53, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237394, 39.916984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2020, "Total Visits": 508.0, "Total Visitors": 423.0, "POI_CBG": 421010098011.0, "Median Dwell Time": 4.0, "Total Spend": 12419.0, "Total Transactions": 1153.0, "Total Customers": 836.0, "Median Spend per Transaction": 9.27, "Median Spend per Customer": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "7700 City Ave", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 181.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 4.0, "Total Spend": 342.0, "Total Transactions": 22.0, "Total Customers": 4.0, "Median Spend per Transaction": 15.87, "Median Spend per Customer": 86.27 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "Name": "Aldo Lamberti Trattoria", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.874852, "LONGITUDE": -75.241162, "DATE_RANGE_START": 2020, "Total Visits": 5923.0, "Total Visitors": 4825.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 39.0, "Total Spend": 103.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.03, "Median Spend per Customer": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.241162, 39.874852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph6-whq", "Name": "Italian Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2035 N 63rd St", "LATITUDE": 39.986561, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 67.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 13.0, "Total Spend": 1993.0, "Total Transactions": 79.0, "Total Customers": 48.0, "Median Spend per Transaction": 24.2, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "Name": "DaMo Pasta Lab", "Category": "Restaurants and Other Eating Places", "Address": "105 S 12th St", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2020, "Total Visits": 171.0, "Total Visitors": 161.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 2972.0, "Total Transactions": 125.0, "Total Customers": 83.0, "Median Spend per Transaction": 18.9, "Median Spend per Customer": 25.57 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6608 Frankford Ave", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 248.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 3.0, "Total Spend": 3193.0, "Total Transactions": 439.0, "Total Customers": 228.0, "Median Spend per Transaction": 6.57, "Median Spend per Customer": 9.93 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-tvz", "Name": "Via Locusta", "Category": "Restaurants and Other Eating Places", "Address": "1723 Locust St", "LATITUDE": 39.949069, "LONGITUDE": -75.170305, "DATE_RANGE_START": 2020, "Total Visits": 820.0, "Total Visitors": 365.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 223.0, "Total Spend": 7283.0, "Total Transactions": 79.0, "Total Customers": 77.0, "Median Spend per Transaction": 82.94, "Median Spend per Customer": 84.89 }, "geometry": { "type": "Point", "coordinates": [ -75.170305, 39.949069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "Name": "NO 1 China", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2020, "Total Visits": 639.0, "Total Visitors": 526.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 11.0, "Total Spend": 1930.0, "Total Transactions": 75.0, "Total Customers": 69.0, "Median Spend per Transaction": 21.1, "Median Spend per Customer": 20.45 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "Name": "Romeo Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1608 W Passyunk Ave", "LATITUDE": 39.924602, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 167.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 30.0, "Total Spend": 943.0, "Total Transactions": 46.0, "Total Customers": 22.0, "Median Spend per Transaction": 13.88, "Median Spend per Customer": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.924602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "Name": "Front Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1253 N Front St", "LATITUDE": 39.970159, "LONGITUDE": -75.135552, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 254.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 42.0, "Total Spend": 56386.0, "Total Transactions": 1086.0, "Total Customers": 891.0, "Median Spend per Transaction": 45.04, "Median Spend per Customer": 53.16 }, "geometry": { "type": "Point", "coordinates": [ -75.135552, 39.970159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "Name": "Standard Tap", "Category": "Restaurants and Other Eating Places", "Address": "901 N 2nd St", "LATITUDE": 39.964257, "LONGITUDE": -75.140401, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 12.0, "Total Spend": 4894.0, "Total Transactions": 137.0, "Total Customers": 101.0, "Median Spend per Transaction": 32.6, "Median Spend per Customer": 39.68 }, "geometry": { "type": "Point", "coordinates": [ -75.140401, 39.964257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp5-ct9", "Name": "Crispy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1858 E Allegheny Ave", "LATITUDE": 39.995185, "LONGITUDE": -75.112579, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010178001.0, "Median Dwell Time": 71.0, "Total Spend": 1255.0, "Total Transactions": 46.0, "Total Customers": 38.0, "Median Spend per Transaction": 28.7, "Median Spend per Customer": 32.43 }, "geometry": { "type": "Point", "coordinates": [ -75.112579, 39.995185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm4-b8v", "Name": "Hyon's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1320 S 21st St", "LATITUDE": 39.935029, "LONGITUDE": -75.179358, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 11.0, "Total Spend": 469.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 17.1, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179358, 39.935029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pj2-d35", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1050 E Hunting Park Ave", "LATITUDE": 40.010891, "LONGITUDE": -75.107156, "DATE_RANGE_START": 2020, "Total Visits": 290.0, "Total Visitors": 191.0, "POI_CBG": 421010191006.0, "Median Dwell Time": 22.0, "Total Spend": 2278.0, "Total Transactions": 26.0, "Total Customers": 22.0, "Median Spend per Transaction": 33.45, "Median Spend per Customer": 33.45 }, "geometry": { "type": "Point", "coordinates": [ -75.107156, 40.010891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "715 S 2nd St", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 69.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 67.0, "Total Spend": 3157.0, "Total Transactions": 83.0, "Total Customers": 69.0, "Median Spend per Transaction": 26.74, "Median Spend per Customer": 29.54 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-kpv", "Name": "Sophy Curson", "Category": "Clothing Stores", "Address": "19th St And Sansom St", "LATITUDE": 39.951064, "LONGITUDE": -75.172395, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 175.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 4656.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 153.9, "Median Spend per Customer": 1172.95 }, "geometry": { "type": "Point", "coordinates": [ -75.172395, 39.951064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "Name": "Curran's Irish Inn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6900 State Rd", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 177.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 34.0, "Total Spend": 3775.0, "Total Transactions": 67.0, "Total Customers": 56.0, "Median Spend per Transaction": 52.1, "Median Spend per Customer": 58.65 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-75z", "Name": "Ninja Bao", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd Ste 6", "LATITUDE": 39.953417, "LONGITUDE": -75.165928, "DATE_RANGE_START": 2020, "Total Visits": 1663.0, "Total Visitors": 1076.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 90.0, "Total Spend": 58.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.165928, 39.953417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6738 Bustleton Ave", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 67.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 2.0, "Total Spend": 2820.0, "Total Transactions": 109.0, "Total Customers": 103.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 22.93 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5272 Frankford Ave", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2020, "Total Visits": 288.0, "Total Visitors": 189.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 3.0, "Total Spend": 2529.0, "Total Transactions": 486.0, "Total Customers": 208.0, "Median Spend per Transaction": 4.62, "Median Spend per Customer": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6409 Torresdale Ave # 13", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2020, "Total Visits": 272.0, "Total Visitors": 161.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 2.0, "Total Spend": 5458.0, "Total Transactions": 721.0, "Total Customers": 328.0, "Median Spend per Transaction": 6.53, "Median Spend per Customer": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "Name": "Asia On the Parkway", "Category": "Restaurants and Other Eating Places", "Address": "1700 Benjamin Franklin Pkwy", "LATITUDE": 39.95574, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2020, "Total Visits": 992.0, "Total Visitors": 532.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 320.0, "Total Spend": 3559.0, "Total Transactions": 97.0, "Total Customers": 73.0, "Median Spend per Transaction": 33.5, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.95574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "Name": "Sampan", "Category": "Traveler Accommodation", "Address": "124 S 13th St", "LATITUDE": 39.949535, "LONGITUDE": -75.16221, "DATE_RANGE_START": 2020, "Total Visits": 2209.0, "Total Visitors": 1516.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 32.0, "Total Spend": 10595.0, "Total Transactions": 99.0, "Total Customers": 99.0, "Median Spend per Transaction": 86.64, "Median Spend per Customer": 86.64 }, "geometry": { "type": "Point", "coordinates": [ -75.16221, 39.949535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-phy-rc5", "Name": "TABU Hookah Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4535 N 5th St", "LATITUDE": 40.02058, "LONGITUDE": -75.133817, "DATE_RANGE_START": 2020, "Total Visits": 288.0, "Total Visitors": 161.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 404.0, "Total Spend": 11360.0, "Total Transactions": 204.0, "Total Customers": 147.0, "Median Spend per Transaction": 49.38, "Median Spend per Customer": 58.05 }, "geometry": { "type": "Point", "coordinates": [ -75.133817, 40.02058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-v75", "Name": "Oishii", "Category": "Restaurants and Other Eating Places", "Address": "138 Chestnut St", "LATITUDE": 39.948105, "LONGITUDE": -75.143866, "DATE_RANGE_START": 2020, "Total Visits": 852.0, "Total Visitors": 480.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 183.0, "Total Spend": 987.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 35.82, "Median Spend per Customer": 35.82 }, "geometry": { "type": "Point", "coordinates": [ -75.143866, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6391 Oxford Ave", "LATITUDE": 40.045014, "LONGITUDE": -75.08777, "DATE_RANGE_START": 2020, "Total Visits": 574.0, "Total Visitors": 383.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 3.0, "Total Spend": 11859.0, "Total Transactions": 1606.0, "Total Customers": 713.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 9.49 }, "geometry": { "type": "Point", "coordinates": [ -75.08777, 40.045014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1440 E Erie Ave", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 159.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 2.0, "Total Spend": 16492.0, "Total Transactions": 341.0, "Total Customers": 282.0, "Median Spend per Transaction": 30.89, "Median Spend per Customer": 32.2 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3300 Market St", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2020, "Total Visits": 1644.0, "Total Visitors": 911.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 10.0, "Total Spend": 42821.0, "Total Transactions": 5113.0, "Total Customers": 2400.0, "Median Spend per Transaction": 6.95, "Median Spend per Customer": 9.78 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "Name": "Four Seasons Market", "Category": "Specialty Food Stores", "Address": "6130 Woodland Ave", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 69.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 8.0, "Total Spend": 545.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 44.36 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pfy-brk", "Name": "Morrison Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6113 Ridge Ave", "LATITUDE": 40.033993, "LONGITUDE": -75.215651, "DATE_RANGE_START": 2020, "Total Visits": 480.0, "Total Visitors": 268.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 9.0, "Total Spend": 265.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 18.19, "Median Spend per Customer": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.215651, 40.033993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "Name": "Colonial Pizza", "Category": "Restaurants and Other Eating Places", "Address": "400 S 43rd St", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 12.0, "POI_CBG": 421010087011.0, "Median Dwell Time": 631.0, "Total Spend": 2817.0, "Total Transactions": 139.0, "Total Customers": 97.0, "Median Spend per Transaction": 19.88, "Median Spend per Customer": 23.55 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvw-jgk", "Name": "Sun Ray Drugs", "Category": "Health and Personal Care Stores", "Address": "142 S 52nd St", "LATITUDE": 39.957136, "LONGITUDE": -75.22573, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 83.0, "POI_CBG": 421010085006.0, "Median Dwell Time": 125.0, "Total Spend": 1351.0, "Total Transactions": 73.0, "Total Customers": 48.0, "Median Spend per Transaction": 9.2, "Median Spend per Customer": 7.72 }, "geometry": { "type": "Point", "coordinates": [ -75.22573, 39.957136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "1851 S Columbus Blvd Ste 7", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 1.0, "Total Spend": 36090.0, "Total Transactions": 528.0, "Total Customers": 455.0, "Median Spend per Transaction": 45.34, "Median Spend per Customer": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6865 Rising Sun Ave", "LATITUDE": 40.055372, "LONGITUDE": -75.089592, "DATE_RANGE_START": 2020, "Total Visits": 1038.0, "Total Visitors": 689.0, "POI_CBG": 421010307002.0, "Median Dwell Time": 4.0, "Total Spend": 677.0, "Total Transactions": 46.0, "Total Customers": 24.0, "Median Spend per Transaction": 12.62, "Median Spend per Customer": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.089592, 40.055372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pg2-hdv", "Name": "Trattoria Moma", "Category": "Restaurants and Other Eating Places", "Address": "7131 Germantown Ave", "LATITUDE": 40.059314, "LONGITUDE": -75.190082, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 20.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 42.0, "Total Spend": 1087.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 109.92, "Median Spend per Customer": 109.92 }, "geometry": { "type": "Point", "coordinates": [ -75.190082, 40.059314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "Name": "Michaels Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "9739 Roosevelt Blvd", "LATITUDE": 40.082446, "LONGITUDE": -75.023342, "DATE_RANGE_START": 2020, "Total Visits": 1356.0, "Total Visitors": 1151.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 15.0, "Total Spend": 32770.0, "Total Transactions": 875.0, "Total Customers": 748.0, "Median Spend per Transaction": 25.88, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023342, 40.082446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1529 Chestnut St", "LATITUDE": 39.95137, "LONGITUDE": -75.166677, "DATE_RANGE_START": 2020, "Total Visits": 834.0, "Total Visitors": 665.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 20.0, "Total Spend": 14286.0, "Total Transactions": 879.0, "Total Customers": 683.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 16.84 }, "geometry": { "type": "Point", "coordinates": [ -75.166677, 39.95137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5945 Woodland Ave", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2020, "Total Visits": 617.0, "Total Visitors": 441.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 4.0, "Total Spend": 8209.0, "Total Transactions": 697.0, "Total Customers": 472.0, "Median Spend per Transaction": 9.34, "Median Spend per Customer": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1801 Spruce St", "LATITUDE": 39.947944, "LONGITUDE": -75.171288, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 91.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 239.0, "Total Spend": 2836.0, "Total Transactions": 415.0, "Total Customers": 252.0, "Median Spend per Transaction": 5.13, "Median Spend per Customer": 6.91 }, "geometry": { "type": "Point", "coordinates": [ -75.171288, 39.947944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "Name": "Brickbat Books", "Category": "Used Merchandise Stores", "Address": "709 S 4th St", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010016001.0, "Median Dwell Time": null, "Total Spend": 935.0, "Total Transactions": 30.0, "Total Customers": 26.0, "Median Spend per Transaction": 27.97, "Median Spend per Customer": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@63s-dvy-xwk", "Name": "Lil' Pop Shop", "Category": "Restaurants and Other Eating Places", "Address": "265 S 44th St", "LATITUDE": 39.953164, "LONGITUDE": -75.210265, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 2.0, "POI_CBG": 421010087013.0, "Median Dwell Time": null, "Total Spend": 857.0, "Total Transactions": 105.0, "Total Customers": 103.0, "Median Spend per Transaction": 7.99, "Median Spend per Customer": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.210265, 39.953164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "Name": "The Bottle Shop", "Category": "Beer, Wine, and Liquor Stores", "Address": "1616 E Passyunk Ave", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 41.0, "Total Spend": 4042.0, "Total Transactions": 171.0, "Total Customers": 127.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.24 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm3-xh5", "Name": "Stephanie's Flowers", "Category": "Florists", "Address": "1430 S 9th St", "LATITUDE": 39.931071, "LONGITUDE": -75.159796, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 7.0, "Total Spend": 132.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.83, "Median Spend per Customer": 33.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159796, 39.931071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-bp9", "Name": "Brown Street Coffee & Banhery", "Category": "Restaurants and Other Eating Places", "Address": "2545 Brown St", "LATITUDE": 39.970469, "LONGITUDE": -75.179503, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 3.0, "Total Spend": 1417.0, "Total Transactions": 125.0, "Total Customers": 81.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.179503, 39.970469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "Name": "Evan's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4311 Locust St", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 6.0, "Total Spend": 2003.0, "Total Transactions": 117.0, "Total Customers": 81.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 21.86 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012072, "LONGITUDE": -75.115243, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 3.0, "Total Spend": 737.0, "Total Transactions": 34.0, "Total Customers": 34.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.115243, 40.012072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "Name": "The Ranchito", "Category": "Restaurants and Other Eating Places", "Address": "4745 Rising Sun Ave", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 7.0, "Total Spend": 671.0, "Total Transactions": 36.0, "Total Customers": 28.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-89z", "Name": "Dasiwa", "Category": "Restaurants and Other Eating Places", "Address": "735 N 26th St", "LATITUDE": 39.969169, "LONGITUDE": -75.179702, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 18.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 98.0, "Total Spend": 3745.0, "Total Transactions": 69.0, "Total Customers": 58.0, "Median Spend per Transaction": 48.62, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.969169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "Name": "Red Poke Express", "Category": "Restaurants and Other Eating Places", "Address": "135 South St", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 3.0, "Total Spend": 1392.0, "Total Transactions": 73.0, "Total Customers": 66.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5700 Baltimore Ave", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 115.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 9.0, "Total Spend": 772.0, "Total Transactions": 52.0, "Total Customers": 48.0, "Median Spend per Transaction": 10.84, "Median Spend per Customer": 11.16 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8901 Franford Ave", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2020, "Total Visits": 373.0, "Total Visitors": 310.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 3.0, "Total Spend": 24906.0, "Total Transactions": 2588.0, "Total Customers": 1447.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 11.21 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "200 W Washington Sq", "LATITUDE": 39.94797, "LONGITUDE": -75.154128, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 208.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 59.0, "Total Spend": 2378.0, "Total Transactions": 363.0, "Total Customers": 302.0, "Median Spend per Transaction": 4.81, "Median Spend per Customer": 5.67 }, "geometry": { "type": "Point", "coordinates": [ -75.154128, 39.94797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8j-bff", "Name": "Mayfair Diner", "Category": "Restaurants and Other Eating Places", "Address": "7373 Frankford Ave", "LATITUDE": 40.037436, "LONGITUDE": -75.038227, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 38.0, "POI_CBG": 421010330003.0, "Median Dwell Time": 406.0, "Total Spend": 649.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 27.31, "Median Spend per Customer": 31.91 }, "geometry": { "type": "Point", "coordinates": [ -75.038227, 40.037436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pg8-nwk", "Name": "Oxford Food Shop", "Category": "Grocery Stores", "Address": "2801 W Oxford St", "LATITUDE": 39.980357, "LONGITUDE": -75.18068, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010149004.0, "Median Dwell Time": 3.0, "Total Spend": 3781.0, "Total Transactions": 109.0, "Total Customers": 87.0, "Median Spend per Transaction": 28.06, "Median Spend per Customer": 39.95 }, "geometry": { "type": "Point", "coordinates": [ -75.18068, 39.980357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "Name": "Wadsworth Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Wadsworth Ave", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 50.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 4.0, "Total Spend": 4815.0, "Total Transactions": 218.0, "Total Customers": 143.0, "Median Spend per Transaction": 20.62, "Median Spend per Customer": 27.71 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6919 Castor Ave # 6935", "LATITUDE": 40.045974, "LONGITUDE": -75.070637, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 58.0, "POI_CBG": 421010314015.0, "Median Dwell Time": 14.0, "Total Spend": 11808.0, "Total Transactions": 1278.0, "Total Customers": 730.0, "Median Spend per Transaction": 7.68, "Median Spend per Customer": 10.95 }, "geometry": { "type": "Point", "coordinates": [ -75.070637, 40.045974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "Name": "YOLO Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1632 W Susquehanna Ave # 1662", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010167024.0, "Median Dwell Time": 321.0, "Total Spend": 1651.0, "Total Transactions": 32.0, "Total Customers": 22.0, "Median Spend per Transaction": 39.5, "Median Spend per Customer": 83.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7w-wc5", "Name": "McNally's Tavern Mayfair", "Category": "Restaurants and Other Eating Places", "Address": "3300 Brighton St", "LATITUDE": 40.035746, "LONGITUDE": -75.049243, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 16.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 3.0, "Total Spend": 710.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 34.02, "Median Spend per Customer": 34.02 }, "geometry": { "type": "Point", "coordinates": [ -75.049243, 40.035746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "Name": "Jj Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "2028 Chestnut St", "LATITUDE": 39.951963, "LONGITUDE": -75.174719, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 2.0, "Total Spend": 3205.0, "Total Transactions": 101.0, "Total Customers": 81.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174719, 39.951963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.991664, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 83.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 80.0, "Total Spend": 1493.0, "Total Transactions": 54.0, "Total Customers": 32.0, "Median Spend per Transaction": 12.44, "Median Spend per Customer": 25.77 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.991664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1707 Arch St", "LATITUDE": 39.95521, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 121.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 6.0, "Total Spend": 19730.0, "Total Transactions": 2134.0, "Total Customers": 1020.0, "Median Spend per Transaction": 7.74, "Median Spend per Customer": 10.96 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.95521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7520 City Ave", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2020, "Total Visits": 1044.0, "Total Visitors": 752.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 5.0, "Total Spend": 10114.0, "Total Transactions": 367.0, "Total Customers": 278.0, "Median Spend per Transaction": 17.03, "Median Spend per Customer": 19.25 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6701 Ridge Ave", "LATITUDE": 40.040962, "LONGITUDE": -75.223848, "DATE_RANGE_START": 2020, "Total Visits": 1133.0, "Total Visitors": 772.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 11.0, "Total Spend": 13954.0, "Total Transactions": 629.0, "Total Customers": 445.0, "Median Spend per Transaction": 15.69, "Median Spend per Customer": 22.91 }, "geometry": { "type": "Point", "coordinates": [ -75.223848, 40.040962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-vvf", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "2951 Market St", "LATITUDE": 39.955606, "LONGITUDE": -75.181993, "DATE_RANGE_START": 2020, "Total Visits": 10482.0, "Total Visitors": 6602.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 22.0, "Total Spend": 259.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.9, "Median Spend per Customer": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.181993, 39.955606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-rkz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6600 Essington Ave", "LATITUDE": 39.914686, "LONGITUDE": -75.220838, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 206.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 15.0, "Total Spend": 305.0, "Total Transactions": 54.0, "Total Customers": 36.0, "Median Spend per Transaction": 5.07, "Median Spend per Customer": 6.34 }, "geometry": { "type": "Point", "coordinates": [ -75.220838, 39.914686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-j9z", "Name": "Ferguson", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "3445 S Front St", "LATITUDE": 39.903643, "LONGITUDE": -75.151223, "DATE_RANGE_START": 2020, "Total Visits": 1030.0, "Total Visitors": 891.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 10.0, "Total Spend": 864.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 82.01, "Median Spend per Customer": 34.86 }, "geometry": { "type": "Point", "coordinates": [ -75.151223, 39.903643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4900 City Ave", "LATITUDE": 40.000779, "LONGITUDE": -75.226852, "DATE_RANGE_START": 2020, "Total Visits": 2906.0, "Total Visitors": 2271.0, "POI_CBG": 421010121002.0, "Median Dwell Time": 4.0, "Total Spend": 2987.0, "Total Transactions": 119.0, "Total Customers": 81.0, "Median Spend per Transaction": 24.73, "Median Spend per Customer": 29.96 }, "geometry": { "type": "Point", "coordinates": [ -75.226852, 40.000779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "3621 Walnut St", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 54.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 310.0, "Total Spend": 5075.0, "Total Transactions": 147.0, "Total Customers": 101.0, "Median Spend per Transaction": 12.83, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvz-2x5", "Name": "Daleng Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4653 Walnut St", "LATITUDE": 39.955999, "LONGITUDE": -75.215415, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 19.0, "Total Spend": 1696.0, "Total Transactions": 64.0, "Total Customers": 58.0, "Median Spend per Transaction": 23.91, "Median Spend per Customer": 24.73 }, "geometry": { "type": "Point", "coordinates": [ -75.215415, 39.955999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-ph8-qmk", "Name": "Blue Lagoon", "Category": "Restaurants and Other Eating Places", "Address": "7548 Haverford Ave", "LATITUDE": 39.977926, "LONGITUDE": -75.26739, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010098012.0, "Median Dwell Time": null, "Total Spend": 161.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 18.9, "Median Spend per Customer": 17.01 }, "geometry": { "type": "Point", "coordinates": [ -75.26739, 39.977926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "Name": "HKS pharmacy", "Category": "Health and Personal Care Stores", "Address": "3357 N Front St", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 18.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 288.0, "Total Spend": 14434.0, "Total Transactions": 423.0, "Total Customers": 328.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "Name": "Chubby's Fox Chase Deli", "Category": "Restaurants and Other Eating Places", "Address": "537 Hoffnagle St", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 69.0, "POI_CBG": 421010341006.0, "Median Dwell Time": 363.0, "Total Spend": 682.0, "Total Transactions": 36.0, "Total Customers": 32.0, "Median Spend per Transaction": 19.23, "Median Spend per Customer": 16.46 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "Name": "Sprouts Farmers Market", "Category": "Grocery Stores", "Address": "1000 S Broad St", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2020, "Total Visits": 2326.0, "Total Visitors": 1276.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 20.0, "Total Spend": 405757.0, "Total Transactions": 8753.0, "Total Customers": 4131.0, "Median Spend per Transaction": 32.33, "Median Spend per Customer": 59.47 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm3-wff", "Name": "Passyunk Market", "Category": "Grocery Stores", "Address": "1407 E Passyunk Ave", "LATITUDE": 39.931424, "LONGITUDE": -75.161293, "DATE_RANGE_START": 2020, "Total Visits": 665.0, "Total Visitors": 461.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 26.0, "Total Spend": 224.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 11.91, "Median Spend per Customer": 11.93 }, "geometry": { "type": "Point", "coordinates": [ -75.161293, 39.931424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "5632 Ridge Ave", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2020, "Total Visits": 359.0, "Total Visitors": 218.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 3.0, "Total Spend": 1329.0, "Total Transactions": 161.0, "Total Customers": 83.0, "Median Spend per Transaction": 5.1, "Median Spend per Customer": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3440 Market St", "LATITUDE": 39.955622, "LONGITUDE": -75.192214, "DATE_RANGE_START": 2020, "Total Visits": 1350.0, "Total Visitors": 822.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 81.0, "Total Spend": 397.0, "Total Transactions": 58.0, "Total Customers": 50.0, "Median Spend per Transaction": 4.38, "Median Spend per Customer": 5.22 }, "geometry": { "type": "Point", "coordinates": [ -75.192214, 39.955622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9377 Krewstown Rd", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2020, "Total Visits": 1116.0, "Total Visitors": 754.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 3.0, "Total Spend": 79158.0, "Total Transactions": 4857.0, "Total Customers": 2114.0, "Median Spend per Transaction": 11.84, "Median Spend per Customer": 22.88 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "Name": "Crab Shack", "Category": "Specialty Food Stores", "Address": "4800 N 16th St", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2020, "Total Visits": 135.0, "Total Visitors": 115.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 11.0, "Total Spend": 4594.0, "Total Transactions": 133.0, "Total Customers": 85.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 40.46 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2503 Welsh Rd # 05", "LATITUDE": 40.070297, "LONGITUDE": -75.030572, "DATE_RANGE_START": 2020, "Total Visits": 601.0, "Total Visitors": 381.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 4926.0, "Total Transactions": 206.0, "Total Customers": 143.0, "Median Spend per Transaction": 15.95, "Median Spend per Customer": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -75.030572, 40.070297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phj-rp9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7900 Ogontz Ave", "LATITUDE": 40.07278, "LONGITUDE": -75.15833, "DATE_RANGE_START": 2020, "Total Visits": 1806.0, "Total Visitors": 1286.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 7.0, "Total Spend": 668.0, "Total Transactions": 22.0, "Total Customers": 14.0, "Median Spend per Transaction": 29.0, "Median Spend per Customer": 44.43 }, "geometry": { "type": "Point", "coordinates": [ -75.15833, 40.07278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6201 N Front St", "LATITUDE": 40.045678, "LONGITUDE": -75.11816, "DATE_RANGE_START": 2020, "Total Visits": 212.0, "Total Visitors": 157.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 11.0, "Total Spend": 1864.0, "Total Transactions": 216.0, "Total Customers": 177.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.11816, 40.045678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-yd9", "Name": "Somerton Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "13510 Bustleton Ave", "LATITUDE": 40.129213, "LONGITUDE": -75.014014, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 413.0, "POI_CBG": 421010365013.0, "Median Dwell Time": 2.0, "Total Spend": 392.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 34.55, "Median Spend per Customer": 47.62 }, "geometry": { "type": "Point", "coordinates": [ -75.014014, 40.129213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-sqz", "Name": "Holts Cigar Company", "Category": "Other Miscellaneous Store Retailers", "Address": "1522 Walnut St", "LATITUDE": 39.949481, "LONGITUDE": -75.167107, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 208.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 12.0, "Total Spend": 2840.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 131.35, "Median Spend per Customer": 137.69 }, "geometry": { "type": "Point", "coordinates": [ -75.167107, 39.949481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8b-cbk", "Name": "Smoker's Palace", "Category": "Other Miscellaneous Store Retailers", "Address": "6301 Keystone St", "LATITUDE": 40.017474, "LONGITUDE": -75.051228, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 79.0, "POI_CBG": 421010323001.0, "Median Dwell Time": null, "Total Spend": 4993.0, "Total Transactions": 177.0, "Total Customers": 103.0, "Median Spend per Transaction": 18.33, "Median Spend per Customer": 28.74 }, "geometry": { "type": "Point", "coordinates": [ -75.051228, 40.017474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm6-389", "Name": "Best Buy", "Category": "Electronics and Appliance Stores", "Address": "2300 S Columbus Blvd", "LATITUDE": 39.915668, "LONGITUDE": -75.138943, "DATE_RANGE_START": 2020, "Total Visits": 1062.0, "Total Visitors": 879.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 16.0, "Total Spend": 16247.0, "Total Transactions": 81.0, "Total Customers": 66.0, "Median Spend per Transaction": 85.38, "Median Spend per Customer": 120.08 }, "geometry": { "type": "Point", "coordinates": [ -75.138943, 39.915668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph8-qcq", "Name": "ALDI", "Category": "Grocery Stores", "Address": "1911 N 76th St", "LATITUDE": 39.978749, "LONGITUDE": -75.270239, "DATE_RANGE_START": 2020, "Total Visits": 901.0, "Total Visitors": 615.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 11.0, "Total Spend": 161.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 18.39, "Median Spend per Customer": 18.39 }, "geometry": { "type": "Point", "coordinates": [ -75.270239, 39.978749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-php-6tv", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "2385 Cheltenham Avenue", "LATITUDE": 40.075237, "LONGITUDE": -75.156957, "DATE_RANGE_START": 2020, "Total Visits": 14119.0, "Total Visitors": 7511.0, "POI_CBG": 420912025001.0, "Median Dwell Time": 23.0, "Total Spend": 45.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 11.46, "Median Spend per Customer": 11.46 }, "geometry": { "type": "Point", "coordinates": [ -75.156957, 40.075237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmd-zfz", "Name": "Springfield Beer Distributor", "Category": "Beer, Wine, and Liquor Stores", "Address": "2206 Washington Ave", "LATITUDE": 39.939186, "LONGITUDE": -75.180299, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 286.0, "POI_CBG": 421010020001.0, "Median Dwell Time": 4.0, "Total Spend": 13765.0, "Total Transactions": 252.0, "Total Customers": 159.0, "Median Spend per Transaction": 43.09, "Median Spend per Customer": 46.33 }, "geometry": { "type": "Point", "coordinates": [ -75.180299, 39.939186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp5-qxq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "338 E Allegheny Ave Ste 80", "LATITUDE": 39.997222, "LONGITUDE": -75.123675, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 171.0, "POI_CBG": 421010177025.0, "Median Dwell Time": 9.0, "Total Spend": 590.0, "Total Transactions": 50.0, "Total Customers": 14.0, "Median Spend per Transaction": 5.31, "Median Spend per Customer": 46.46 }, "geometry": { "type": "Point", "coordinates": [ -75.123675, 39.997222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2201 W Allegheny Ave Ste 5", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 191.0, "POI_CBG": 421010171003.0, "Median Dwell Time": 11.0, "Total Spend": 930.0, "Total Transactions": 42.0, "Total Customers": 30.0, "Median Spend per Transaction": 22.42, "Median Spend per Customer": 26.34 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6c5", "Name": "Jefferson Apothecary", "Category": "Health and Personal Care Stores", "Address": "111 S 11th St Ste 1850", "LATITUDE": 39.949825, "LONGITUDE": -75.158415, "DATE_RANGE_START": 2020, "Total Visits": 12836.0, "Total Visitors": 4823.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 382.0, "Total Spend": 4228.0, "Total Transactions": 157.0, "Total Customers": 135.0, "Median Spend per Transaction": 9.66, "Median Spend per Customer": 12.31 }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.949825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "201 W Lehigh Ave", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2020, "Total Visits": 635.0, "Total Visitors": 451.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 7.0, "Total Spend": 3036.0, "Total Transactions": 145.0, "Total Customers": 117.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029566, "LONGITUDE": -75.100398, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 187.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 7.0, "Total Spend": 4957.0, "Total Transactions": 113.0, "Total Customers": 97.0, "Median Spend per Transaction": 42.64, "Median Spend per Customer": 43.69 }, "geometry": { "type": "Point", "coordinates": [ -75.100398, 40.029566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028739, "LONGITUDE": -75.099173, "DATE_RANGE_START": 2020, "Total Visits": 1882.0, "Total Visitors": 1602.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 17.0, "Total Spend": 16461.0, "Total Transactions": 691.0, "Total Customers": 586.0, "Median Spend per Transaction": 16.39, "Median Spend per Customer": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.099173, 40.028739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-qs5", "Name": "Flying Fish Seafood", "Category": "Specialty Food Stores", "Address": "2652 S 9th St", "LATITUDE": 39.91592, "LONGITUDE": -75.163019, "DATE_RANGE_START": 2020, "Total Visits": 534.0, "Total Visitors": 177.0, "POI_CBG": 421010041023.0, "Median Dwell Time": 670.0, "Total Spend": 1419.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 45.5, "Median Spend per Customer": 45.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163019, 39.91592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "300 N 63rd St", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 67.0, "POI_CBG": 421010096001.0, "Median Dwell Time": 432.0, "Total Spend": 640.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "Name": "Calvin Klein", "Category": "Clothing Stores", "Address": "1889 Franklin Mills Cir", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 119.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 10137.0, "Total Transactions": 175.0, "Total Customers": 147.0, "Median Spend per Transaction": 44.06, "Median Spend per Customer": 46.25 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992425, "LONGITUDE": -75.101329, "DATE_RANGE_START": 2020, "Total Visits": 1046.0, "Total Visitors": 863.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 20.0, "Total Spend": 7242.0, "Total Transactions": 155.0, "Total Customers": 115.0, "Median Spend per Transaction": 30.53, "Median Spend per Customer": 42.33 }, "geometry": { "type": "Point", "coordinates": [ -75.101329, 39.992425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p9w-4sq", "Name": "Victoria Flower", "Category": "Florists", "Address": "10869 Bustleton Ave", "LATITUDE": 40.110694, "LONGITUDE": -75.023832, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 179.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 3.0, "Total Spend": 565.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 75.6, "Median Spend per Customer": 86.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023832, 40.110694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-835", "Name": "Little Thai Market", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953099, "LONGITUDE": -75.159123, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 6619.0, "Total Transactions": 379.0, "Total Customers": 268.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159123, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "10740 Roosevelt Blvd", "LATITUDE": 40.099643, "LONGITUDE": -75.010101, "DATE_RANGE_START": 2020, "Total Visits": 568.0, "Total Visitors": 492.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 5.0, "Total Spend": 5147.0, "Total Transactions": 177.0, "Total Customers": 153.0, "Median Spend per Transaction": 30.84, "Median Spend per Customer": 29.43 }, "geometry": { "type": "Point", "coordinates": [ -75.010101, 40.099643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2940 Fox St", "LATITUDE": 40.010746, "LONGITUDE": -75.175382, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 171.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 1.0, "Total Spend": 1205.0, "Total Transactions": 75.0, "Total Customers": 66.0, "Median Spend per Transaction": 15.05, "Median Spend per Customer": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.175382, 40.010746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave # B", "LATITUDE": 39.913456, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 46.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 8.0, "Total Spend": 2992.0, "Total Transactions": 91.0, "Total Customers": 62.0, "Median Spend per Transaction": 28.46, "Median Spend per Customer": 42.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-kj9", "Name": "Sassafras Market", "Category": "Grocery Stores", "Address": "163 N 3rd St", "LATITUDE": 39.953897, "LONGITUDE": -75.14465, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 85.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 9.0, "Total Spend": 12458.0, "Total Transactions": 709.0, "Total Customers": 286.0, "Median Spend per Transaction": 14.29, "Median Spend per Customer": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -75.14465, 39.953897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "Name": "Trader Joe's", "Category": "Grocery Stores", "Address": "2121 Market St", "LATITUDE": 39.954199, "LONGITUDE": -75.176054, "DATE_RANGE_START": 2020, "Total Visits": 1171.0, "Total Visitors": 772.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 18.0, "Total Spend": 727508.0, "Total Transactions": 11739.0, "Total Customers": 6644.0, "Median Spend per Transaction": 51.81, "Median Spend per Customer": 84.34 }, "geometry": { "type": "Point", "coordinates": [ -75.176054, 39.954199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnx-9s5", "Name": "Interstate Drafthouse", "Category": "Restaurants and Other Eating Places", "Address": "1235 E Palmer St", "LATITUDE": 39.971824, "LONGITUDE": -75.128675, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 12.0, "Total Spend": 764.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128675, 39.971824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "Name": "Arctic Scoop", "Category": "Restaurants and Other Eating Places", "Address": "1812 E Passyunk Ave", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 2.0, "Total Spend": 3231.0, "Total Transactions": 228.0, "Total Customers": 208.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-syv", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "2000 Germantown Ave", "LATITUDE": 39.981631, "LONGITUDE": -75.144038, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 18.0, "POI_CBG": 421010156002.0, "Median Dwell Time": 128.0, "Total Spend": 406.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 31.8, "Median Spend per Customer": 21.65 }, "geometry": { "type": "Point", "coordinates": [ -75.144038, 39.981631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pfy-f9f", "Name": "Dream House Asian Bistro", "Category": "Restaurants and Other Eating Places", "Address": "6127 Ridge Ave", "LATITUDE": 40.034459, "LONGITUDE": -75.215866, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 74.0, "Total Spend": 158.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 39.81, "Median Spend per Customer": 39.81 }, "geometry": { "type": "Point", "coordinates": [ -75.215866, 40.034459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@63s-dvy-8y9", "Name": "48th Street Grille", "Category": "Restaurants and Other Eating Places", "Address": "310 S 48th St", "LATITUDE": 39.953128, "LONGITUDE": -75.218509, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 40.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 23.0, "Total Spend": 409.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 46.44, "Median Spend per Customer": 46.44 }, "geometry": { "type": "Point", "coordinates": [ -75.218509, 39.953128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-z75", "Name": "Johnstone Supply", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "455 N 7th St", "LATITUDE": 39.960021, "LONGITUDE": -75.149706, "DATE_RANGE_START": 2020, "Total Visits": 248.0, "Total Visitors": 177.0, "POI_CBG": 421010376001.0, "Median Dwell Time": 24.0, "Total Spend": 1445.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 106.49, "Median Spend per Customer": 364.1 }, "geometry": { "type": "Point", "coordinates": [ -75.149706, 39.960021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-wx5", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7720 Lindbergh Blvd", "LATITUDE": 39.903669, "LONGITUDE": -75.238891, "DATE_RANGE_START": 2020, "Total Visits": 415.0, "Total Visitors": 292.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 11.0, "Total Spend": 2764.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 67.32, "Median Spend per Customer": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.238891, 39.903669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "Name": "John's Diner", "Category": "Restaurants and Other Eating Places", "Address": "119 E Chelten Ave", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 52.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 1.0, "Total Spend": 389.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 16.11, "Median Spend per Customer": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "1243 S Broad St", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2020, "Total Visits": 975.0, "Total Visitors": 685.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 4.0, "Total Spend": 32851.0, "Total Transactions": 1574.0, "Total Customers": 1028.0, "Median Spend per Transaction": 20.05, "Median Spend per Customer": 26.67 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dvw-mx5", "Name": "Sunshine Super Market", "Category": "Grocery Stores", "Address": "5228 Market St", "LATITUDE": 39.960055, "LONGITUDE": -75.226746, "DATE_RANGE_START": 2020, "Total Visits": 12743.0, "Total Visitors": 5913.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 16.0, "Total Spend": 80.0, "Total Transactions": 10.0, "Total Customers": 4.0, "Median Spend per Transaction": 6.66, "Median Spend per Customer": 20.09 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.960055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgg-9xq", "Name": "Boss Furniture", "Category": "Furniture Stores", "Address": "2359 W Allegheny Ave", "LATITUDE": 40.003922, "LONGITUDE": -75.168399, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 141.0, "POI_CBG": 421010171003.0, "Median Dwell Time": 67.0, "Total Spend": 8681.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 404.72, "Median Spend per Customer": 712.26 }, "geometry": { "type": "Point", "coordinates": [ -75.168399, 40.003922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-94v", "Name": "Journeys", "Category": "Shoe Stores", "Address": "1001 Market St", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 407.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 75.0, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-94v", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "901 Market St", "LATITUDE": 39.952447, "LONGITUDE": -75.157077, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 52.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 13.13, "Median Spend per Customer": 13.13 }, "geometry": { "type": "Point", "coordinates": [ -75.157077, 39.952447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "4201 N Broad St", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2020, "Total Visits": 748.0, "Total Visitors": 538.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 9.0, "Total Spend": 3290.0, "Total Transactions": 216.0, "Total Customers": 111.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 17.33 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "490 N Broad St", "LATITUDE": 39.962319, "LONGITUDE": -75.162376, "DATE_RANGE_START": 2020, "Total Visits": 324.0, "Total Visitors": 181.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 175.0, "Total Spend": 9251.0, "Total Transactions": 566.0, "Total Customers": 274.0, "Median Spend per Transaction": 11.04, "Median Spend per Customer": 19.16 }, "geometry": { "type": "Point", "coordinates": [ -75.162376, 39.962319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p82-4jv", "Name": "Queen Nails Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "6129 Colgate St", "LATITUDE": 40.046418, "LONGITUDE": -75.098417, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 165.0, "POI_CBG": 421010305011.0, "Median Dwell Time": 20.0, "Total Spend": 1531.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 30.85, "Median Spend per Customer": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.098417, 40.046418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rx5", "Name": "Hair Hair", "Category": "Health and Personal Care Stores", "Address": "7618 City Ave", "LATITUDE": 39.978114, "LONGITUDE": -75.271405, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 125.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 21.0, "Total Spend": 20752.0, "Total Transactions": 566.0, "Total Customers": 472.0, "Median Spend per Transaction": 28.03, "Median Spend per Customer": 34.24 }, "geometry": { "type": "Point", "coordinates": [ -75.271405, 39.978114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "Name": "Walnut Supermarket", "Category": "Grocery Stores", "Address": "5131 Walnut St", "LATITUDE": 39.957098, "LONGITUDE": -75.224484, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 123.0, "POI_CBG": 421010085002.0, "Median Dwell Time": 8.0, "Total Spend": 10924.0, "Total Transactions": 248.0, "Total Customers": 204.0, "Median Spend per Transaction": 28.22, "Median Spend per Customer": 31.91 }, "geometry": { "type": "Point", "coordinates": [ -75.224484, 39.957098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "929 South St", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2020, "Total Visits": 1431.0, "Total Visitors": 838.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 26.0, "Total Spend": 86420.0, "Total Transactions": 1626.0, "Total Customers": 822.0, "Median Spend per Transaction": 35.72, "Median Spend per Customer": 65.96 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmf-sqz", "Name": "Bauman Rare Books", "Category": "Book Stores and News Dealers", "Address": "1608 Walnut St Fl 19", "LATITUDE": 39.949546, "LONGITUDE": -75.168146, "DATE_RANGE_START": 2020, "Total Visits": 617.0, "Total Visitors": 393.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 31.0, "Total Spend": 38607.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 6900.0, "Median Spend per Customer": 9725.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168146, 39.949546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1207 Franklin Mills Cir", "LATITUDE": 40.084661, "LONGITUDE": -74.961825, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 413.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 5789.0, "Total Transactions": 103.0, "Total Customers": 87.0, "Median Spend per Transaction": 39.48, "Median Spend per Customer": 50.48 }, "geometry": { "type": "Point", "coordinates": [ -74.961825, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5700 Oxford Ave", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 220.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 9.0, "Total Spend": 934.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 21.21, "Median Spend per Customer": 15.61 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9163 Roosevelt Blvd & Welsh Rd", "LATITUDE": 40.074794, "LONGITUDE": -75.032684, "DATE_RANGE_START": 2020, "Total Visits": 935.0, "Total Visitors": 719.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 11.0, "Total Spend": 4685.0, "Total Transactions": 480.0, "Total Customers": 322.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 10.82 }, "geometry": { "type": "Point", "coordinates": [ -75.032684, 40.074794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgh-cwk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1925 W Allegheny Ave", "LATITUDE": 40.003103, "LONGITUDE": -75.162138, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 135.0, "POI_CBG": 421010202001.0, "Median Dwell Time": 13.0, "Total Spend": 775.0, "Total Transactions": 56.0, "Total Customers": 46.0, "Median Spend per Transaction": 7.23, "Median Spend per Customer": 7.29 }, "geometry": { "type": "Point", "coordinates": [ -75.162138, 40.003103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5715 N Broad St", "LATITUDE": 40.040308, "LONGITUDE": -75.143944, "DATE_RANGE_START": 2020, "Total Visits": 756.0, "Total Visitors": 459.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 13.0, "Total Spend": 3797.0, "Total Transactions": 185.0, "Total Customers": 127.0, "Median Spend per Transaction": 11.4, "Median Spend per Customer": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -75.143944, 40.040308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5214 Baltimore Ave # 30", "LATITUDE": 39.947336, "LONGITUDE": -75.228833, "DATE_RANGE_START": 2020, "Total Visits": 665.0, "Total Visitors": 486.0, "POI_CBG": 421010073004.0, "Median Dwell Time": 8.0, "Total Spend": 5950.0, "Total Transactions": 181.0, "Total Customers": 131.0, "Median Spend per Transaction": 14.97, "Median Spend per Customer": 20.23 }, "geometry": { "type": "Point", "coordinates": [ -75.228833, 39.947336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "Name": "Warwick Hotel Rittenhouse Square", "Category": "Traveler Accommodation", "Address": "220 S 17th St", "LATITUDE": 39.949172, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2020, "Total Visits": 1159.0, "Total Visitors": 740.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 234.0, "Total Spend": 8454.0, "Total Transactions": 46.0, "Total Customers": 40.0, "Median Spend per Transaction": 173.22, "Median Spend per Customer": 170.52 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.949172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "Name": "Spring Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3739 Lancaster Ave", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 81.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 151.0, "Total Spend": 2933.0, "Total Transactions": 145.0, "Total Customers": 117.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-h89", "Name": "Gyu-Kaku", "Category": "Restaurants and Other Eating Places", "Address": "1901 Callowhill St", "LATITUDE": 39.960773, "LONGITUDE": -75.170117, "DATE_RANGE_START": 2020, "Total Visits": 411.0, "Total Visitors": 169.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 639.0, "Total Spend": 274.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 30.11, "Median Spend per Customer": 30.11 }, "geometry": { "type": "Point", "coordinates": [ -75.170117, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-jjv", "Name": "Copabanana", "Category": "Restaurants and Other Eating Places", "Address": "4000 Spruce St", "LATITUDE": 39.951555, "LONGITUDE": -75.203266, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 103.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 20.0, "Total Spend": 2188.0, "Total Transactions": 46.0, "Total Customers": 46.0, "Median Spend per Transaction": 37.0, "Median Spend per Customer": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203266, 39.951555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-68v", "Name": "J'aime French Bakery", "Category": "Restaurants and Other Eating Places", "Address": "212 S 12th St", "LATITUDE": 39.948054, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 95.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 546.0, "Total Spend": 345.0, "Total Transactions": 26.0, "Total Customers": 16.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.948054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "Name": "Ruckus Gallery", "Category": "Other Miscellaneous Store Retailers", "Address": "27 N 2nd St", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 183.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 41.0, "Total Spend": 7708.0, "Total Transactions": 141.0, "Total Customers": 109.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 61.44 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-pmd-skf", "Name": "Social House", "Category": "Restaurants and Other Eating Places", "Address": "2100 South St", "LATITUDE": 39.944966, "LONGITUDE": -75.177113, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 58.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 17.0, "Total Spend": 795.0, "Total Transactions": 111.0, "Total Customers": 52.0, "Median Spend per Transaction": 5.43, "Median Spend per Customer": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.177113, 39.944966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-gtv", "Name": "Greenstreet Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1101 Spruce St", "LATITUDE": 39.946471, "LONGITUDE": -75.159628, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 87.0, "Total Spend": 253.0, "Total Transactions": 26.0, "Total Customers": 20.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 5.75 }, "geometry": { "type": "Point", "coordinates": [ -75.159628, 39.946471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6429 Rising Sun Ave", "LATITUDE": 40.050364, "LONGITUDE": -75.094508, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 26.0, "POI_CBG": 421010306003.0, "Median Dwell Time": 41.0, "Total Spend": 1791.0, "Total Transactions": 135.0, "Total Customers": 83.0, "Median Spend per Transaction": 8.23, "Median Spend per Customer": 8.52 }, "geometry": { "type": "Point", "coordinates": [ -75.094508, 40.050364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p8j-cqz", "Name": "Infinity Jewelers", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "3528 Cottman Ave", "LATITUDE": 40.03712, "LONGITUDE": -75.041991, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 10.0, "Total Spend": 91.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.041991, 40.03712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "Name": "The Tasty", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 12th St", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 2.0, "Total Spend": 7335.0, "Total Transactions": 222.0, "Total Customers": 183.0, "Median Spend per Transaction": 33.28, "Median Spend per Customer": 39.39 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7v-gkz", "Name": "Villagio Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1817 Cottman Ave", "LATITUDE": 40.053089, "LONGITUDE": -75.068847, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 46.0, "POI_CBG": 421010335003.0, "Median Dwell Time": 11.0, "Total Spend": 2223.0, "Total Transactions": 101.0, "Total Customers": 75.0, "Median Spend per Transaction": 20.06, "Median Spend per Customer": 27.37 }, "geometry": { "type": "Point", "coordinates": [ -75.068847, 40.053089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-rp9", "Name": "Mattress Firm", "Category": "Furniture Stores", "Address": "2304 W Oregon Ave", "LATITUDE": 39.917324, "LONGITUDE": -75.186656, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 99.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 9.0, "Total Spend": 1286.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 324.0, "Median Spend per Customer": 324.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186656, 39.917324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2539 Castor Ave", "LATITUDE": 39.991689, "LONGITUDE": -75.090963, "DATE_RANGE_START": 2020, "Total Visits": 5308.0, "Total Visitors": 3480.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 16.0, "Total Spend": 113437.0, "Total Transactions": 1256.0, "Total Customers": 701.0, "Median Spend per Transaction": 40.8, "Median Spend per Customer": 66.19 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 39.991689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-sbk", "Name": "Spruce Market", "Category": "Grocery Stores", "Address": "1523 Spruce St", "LATITUDE": 39.947568, "LONGITUDE": -75.167428, "DATE_RANGE_START": 2020, "Total Visits": 260.0, "Total Visitors": 153.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 468.0, "Total Spend": 23853.0, "Total Transactions": 850.0, "Total Customers": 407.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167428, 39.947568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2900 S 70th St", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2020, "Total Visits": 842.0, "Total Visitors": 540.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 4.0, "Total Spend": 319.0, "Total Transactions": 28.0, "Total Customers": 22.0, "Median Spend per Transaction": 10.43, "Median Spend per Customer": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "Name": "Theory", "Category": "Clothing Stores", "Address": "1616 Walnut St", "LATITUDE": 39.949699, "LONGITUDE": -75.168323, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 103.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 114.0, "Total Spend": 4943.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 1017.0, "Median Spend per Customer": 1017.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168323, 39.949699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "Name": "Finish Line", "Category": "Shoe Stores", "Address": "1449 Franklin Mills Cir", "LATITUDE": 40.086808, "LONGITUDE": -74.961767, "DATE_RANGE_START": 2020, "Total Visits": 230.0, "Total Visitors": 195.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 18.0, "Total Spend": 1143.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 150.0, "Median Spend per Customer": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961767, 40.086808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9s-92k", "Name": "House Of Beauty", "Category": "Health and Personal Care Stores", "Address": "2191 Hornig Rd", "LATITUDE": 40.114993, "LONGITUDE": -74.997145, "DATE_RANGE_START": 2020, "Total Visits": 258.0, "Total Visitors": 105.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 32.0, "Total Spend": 263.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 66.29, "Median Spend per Customer": 66.29 }, "geometry": { "type": "Point", "coordinates": [ -74.997145, 40.114993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "500 W Erie Ave", "LATITUDE": 40.007189, "LONGITUDE": -75.137271, "DATE_RANGE_START": 2020, "Total Visits": 1596.0, "Total Visitors": 1114.0, "POI_CBG": 421010199001.0, "Median Dwell Time": 5.0, "Total Spend": 642.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.007189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4424 N Broad St", "LATITUDE": 40.021226, "LONGITUDE": -75.14987, "DATE_RANGE_START": 2020, "Total Visits": 975.0, "Total Visitors": 584.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 17.0, "Total Spend": 439.0, "Total Transactions": 40.0, "Total Customers": 30.0, "Median Spend per Transaction": 7.4, "Median Spend per Customer": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.14987, 40.021226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2601 Penrose Ave", "LATITUDE": 39.907673, "LONGITUDE": -75.189086, "DATE_RANGE_START": 2020, "Total Visits": 3162.0, "Total Visitors": 1981.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 5.0, "Total Spend": 2176.0, "Total Transactions": 119.0, "Total Customers": 93.0, "Median Spend per Transaction": 15.13, "Median Spend per Customer": 22.11 }, "geometry": { "type": "Point", "coordinates": [ -75.189086, 39.907673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvw-wzf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5701 Walnut St", "LATITUDE": 39.958527, "LONGITUDE": -75.235976, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 197.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 14.0, "Total Spend": 2047.0, "Total Transactions": 238.0, "Total Customers": 121.0, "Median Spend per Transaction": 6.44, "Median Spend per Customer": 9.33 }, "geometry": { "type": "Point", "coordinates": [ -75.235976, 39.958527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "Name": "Circle Thrift", "Category": "Used Merchandise Stores", "Address": "2233 Frankford Ave", "LATITUDE": 39.980269, "LONGITUDE": -75.128616, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 143.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 31.0, "Total Spend": 2023.0, "Total Transactions": 73.0, "Total Customers": 50.0, "Median Spend per Transaction": 17.4, "Median Spend per Customer": 21.04 }, "geometry": { "type": "Point", "coordinates": [ -75.128616, 39.980269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-ph6-gkz", "Name": "Habeeb's Convenience Store", "Category": "Grocery Stores", "Address": "1803 N 54th St", "LATITUDE": 39.98437, "LONGITUDE": -75.230985, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 9.0, "Total Spend": 325.0, "Total Transactions": 34.0, "Total Customers": 28.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.230985, 39.98437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-php-s3q", "Name": "Tejade Grocery", "Category": "Grocery Stores", "Address": "1601 E Tulpehocken St", "LATITUDE": 40.060966, "LONGITUDE": -75.161233, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010264004.0, "Median Dwell Time": 4.0, "Total Spend": 1584.0, "Total Transactions": 139.0, "Total Customers": 75.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 14.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161233, 40.060966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "Name": "Cafe La Maude", "Category": "Restaurants and Other Eating Places", "Address": "816 N 4th St", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010367002.0, "Median Dwell Time": 8.0, "Total Spend": 20222.0, "Total Transactions": 417.0, "Total Customers": 357.0, "Median Spend per Transaction": 49.14, "Median Spend per Customer": 54.86 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "4037 N 5th St", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2020, "Total Visits": 1735.0, "Total Visitors": 1008.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 16.0, "Total Spend": 4546.0, "Total Transactions": 111.0, "Total Customers": 97.0, "Median Spend per Transaction": 24.97, "Median Spend per Customer": 32.88 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgm-3qz", "Name": "LeBus East Falls", "Category": "Restaurants and Other Eating Places", "Address": "4201 Ridge Ave", "LATITUDE": 40.00891, "LONGITUDE": -75.193713, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 193.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 41.0, "Total Spend": 927.0, "Total Transactions": 38.0, "Total Customers": 30.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.193713, 40.00891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "2104 Market St", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 139.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 202.0, "Total Spend": 324.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "Name": "Crazy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1837 Chestnut St", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 101.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 100.0, "Total Spend": 2218.0, "Total Transactions": 77.0, "Total Customers": 60.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 27.81 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "9173 Roosevelt Blvd Ste 10", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2020, "Total Visits": 496.0, "Total Visitors": 433.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 14.0, "Total Spend": 28714.0, "Total Transactions": 524.0, "Total Customers": 462.0, "Median Spend per Transaction": 39.96, "Median Spend per Customer": 46.44 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-djv", "Name": "Pastificio", "Category": "Restaurants and Other Eating Places", "Address": "1528 Packer Ave", "LATITUDE": 39.911498, "LONGITUDE": -75.174639, "DATE_RANGE_START": 2020, "Total Visits": 574.0, "Total Visitors": 443.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 47.0, "Total Spend": 7686.0, "Total Transactions": 296.0, "Total Customers": 198.0, "Median Spend per Transaction": 18.36, "Median Spend per Customer": 22.85 }, "geometry": { "type": "Point", "coordinates": [ -75.174639, 39.911498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "145 N 11th St", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2020, "Total Visits": 2001.0, "Total Visitors": 1358.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 31.0, "Total Spend": 4243.0, "Total Transactions": 200.0, "Total Customers": 159.0, "Median Spend per Transaction": 17.39, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-b49", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5000 Ogontz Ave", "LATITUDE": 40.030422, "LONGITUDE": -75.153419, "DATE_RANGE_START": 2020, "Total Visits": 1068.0, "Total Visitors": 736.0, "POI_CBG": 421010280003.0, "Median Dwell Time": 5.0, "Total Spend": 792.0, "Total Transactions": 42.0, "Total Customers": 26.0, "Median Spend per Transaction": 17.49, "Median Spend per Customer": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153419, 40.030422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "Name": "Burlington", "Category": "Clothing Stores", "Address": "833 Market St", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2020, "Total Visits": 5635.0, "Total Visitors": 3148.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 6023.0, "Total Transactions": 153.0, "Total Customers": 127.0, "Median Spend per Transaction": 27.45, "Median Spend per Customer": 33.63 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2800 Fox St", "LATITUDE": 40.008821, "LONGITUDE": -75.175673, "DATE_RANGE_START": 2020, "Total Visits": 506.0, "Total Visitors": 413.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 12.0, "Total Spend": 847.0, "Total Transactions": 46.0, "Total Customers": 46.0, "Median Spend per Transaction": 16.79, "Median Spend per Customer": 16.79 }, "geometry": { "type": "Point", "coordinates": [ -75.175673, 40.008821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pnt-3wk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2495 Aramingo Ave", "LATITUDE": 39.974268, "LONGITUDE": -75.119829, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 175.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 4.0, "Total Spend": 2874.0, "Total Transactions": 127.0, "Total Customers": 87.0, "Median Spend per Transaction": 17.81, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.119829, 39.974268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1851 S Columbus Blvd Ste 3", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 50.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 35.0, "Total Spend": 8260.0, "Total Transactions": 574.0, "Total Customers": 451.0, "Median Spend per Transaction": 12.34, "Median Spend per Customer": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfz-bzf", "Name": "Chabaa Thai Bistro", "Category": "Restaurants and Other Eating Places", "Address": "4343 Main St", "LATITUDE": 40.025611, "LONGITUDE": -75.223488, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 56.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 2688.0, "Total Transactions": 66.0, "Total Customers": 56.0, "Median Spend per Transaction": 39.72, "Median Spend per Customer": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.223488, 40.025611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfx-kxq", "Name": "Funny Monk Emporium", "Category": "Other Miscellaneous Store Retailers", "Address": "4369 Cresson St", "LATITUDE": 40.026687, "LONGITUDE": -75.224098, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 60.0, "POI_CBG": 421010214003.0, "Median Dwell Time": 1.0, "Total Spend": 14689.0, "Total Transactions": 405.0, "Total Customers": 274.0, "Median Spend per Transaction": 25.65, "Median Spend per Customer": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224098, 40.026687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj7-k75", "Name": "Got The Look", "Category": "Clothing Stores", "Address": "825 Adams Ave # 27", "LATITUDE": 40.03117, "LONGITUDE": -75.103826, "DATE_RANGE_START": 2020, "Total Visits": 2878.0, "Total Visitors": 2189.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 11.0, "Total Spend": 4109.0, "Total Transactions": 83.0, "Total Customers": 75.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 33.98 }, "geometry": { "type": "Point", "coordinates": [ -75.103826, 40.03117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "35 S 13th St", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2020, "Total Visits": 210.0, "Total Visitors": 121.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 292.0, "Total Spend": 147.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 21.68, "Median Spend per Customer": 21.68 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave Ste 5", "LATITUDE": 40.087324, "LONGITUDE": -75.039996, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 93.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 4.0, "Total Spend": 818.0, "Total Transactions": 119.0, "Total Customers": 73.0, "Median Spend per Transaction": 4.74, "Median Spend per Customer": 8.08 }, "geometry": { "type": "Point", "coordinates": [ -75.039996, 40.087324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-py9", "Name": "Colomy Paint & Decorating Llc", "Category": "Building Material and Supplies Dealers", "Address": "210 W Girard Ave", "LATITUDE": 39.969376, "LONGITUDE": -75.140197, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 121.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 12.0, "Total Spend": 580.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 46.43, "Median Spend per Customer": 46.43 }, "geometry": { "type": "Point", "coordinates": [ -75.140197, 39.969376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.037805, "LONGITUDE": -75.117796, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 93.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 20.0, "Total Spend": 177.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 44.6, "Median Spend per Customer": 44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.117796, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2800 Fox St", "LATITUDE": 40.008742, "LONGITUDE": -75.17653, "DATE_RANGE_START": 2020, "Total Visits": 318.0, "Total Visitors": 278.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 7.0, "Total Spend": 11044.0, "Total Transactions": 234.0, "Total Customers": 193.0, "Median Spend per Transaction": 34.3, "Median Spend per Customer": 40.97 }, "geometry": { "type": "Point", "coordinates": [ -75.17653, 40.008742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-j7q", "Name": "Smokin Stogies N Stuff", "Category": "Other Miscellaneous Store Retailers", "Address": "102 S 18th St", "LATITUDE": 39.951529, "LONGITUDE": -75.170525, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 95.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 4.0, "Total Spend": 10643.0, "Total Transactions": 329.0, "Total Customers": 232.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.170525, 39.951529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmf-jgk", "Name": "Dizengoff", "Category": "Restaurants and Other Eating Places", "Address": "1625 Sansom St", "LATITUDE": 39.950806, "LONGITUDE": -75.168528, "DATE_RANGE_START": 2020, "Total Visits": 331.0, "Total Visitors": 272.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 213.0, "Total Spend": 924.0, "Total Transactions": 46.0, "Total Customers": 44.0, "Median Spend per Transaction": 18.88, "Median Spend per Customer": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.168528, 39.950806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "120 W Oregon Ave", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2020, "Total Visits": 298.0, "Total Visitors": 218.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 155.0, "Total Spend": 14308.0, "Total Transactions": 1157.0, "Total Customers": 730.0, "Median Spend per Transaction": 10.44, "Median Spend per Customer": 14.62 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "Name": "New Wave Cafe", "Category": "Restaurants and Other Eating Places", "Address": "784 S 3rd St", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 26.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 12.0, "Total Spend": 5719.0, "Total Transactions": 141.0, "Total Customers": 113.0, "Median Spend per Transaction": 33.25, "Median Spend per Customer": 33.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "Name": "Atomic City Comics", "Category": "Book Stores and News Dealers", "Address": "638 South St", "LATITUDE": 39.942034, "LONGITUDE": -75.153458, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 44.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 6.0, "Total Spend": 4132.0, "Total Transactions": 46.0, "Total Customers": 40.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.153458, 39.942034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "Name": "Champ's Diner", "Category": "Restaurants and Other Eating Places", "Address": "1539 Cecil B Moore Ave", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 60.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 7.0, "Total Spend": 9562.0, "Total Transactions": 482.0, "Total Customers": 349.0, "Median Spend per Transaction": 16.09, "Median Spend per Customer": 23.08 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "809 S Broad St", "LATITUDE": 39.94013, "LONGITUDE": -75.165831, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 62.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 2.0, "Total Spend": 3824.0, "Total Transactions": 540.0, "Total Customers": 326.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 7.81 }, "geometry": { "type": "Point", "coordinates": [ -75.165831, 39.94013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-btv", "Name": "Kraftwork", "Category": "Restaurants and Other Eating Places", "Address": "541 E Girard Ave", "LATITUDE": 39.971499, "LONGITUDE": -75.127358, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010158003.0, "Median Dwell Time": null, "Total Spend": 5040.0, "Total Transactions": 113.0, "Total Customers": 75.0, "Median Spend per Transaction": 43.0, "Median Spend per Customer": 51.3 }, "geometry": { "type": "Point", "coordinates": [ -75.127358, 39.971499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-6ff", "Name": "Lighthouse Thrift Shop", "Category": "Used Merchandise Stores", "Address": "398 E Godfrey Ave", "LATITUDE": 40.041347, "LONGITUDE": -75.107276, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010291001.0, "Median Dwell Time": null, "Total Spend": 591.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 30.13, "Median Spend per Customer": 31.74 }, "geometry": { "type": "Point", "coordinates": [ -75.107276, 40.041347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-4d9", "Name": "Americas Quality Tire", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5915 Harbison Ave", "LATITUDE": 40.020793, "LONGITUDE": -75.063071, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010319003.0, "Median Dwell Time": null, "Total Spend": 6724.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 125.0, "Median Spend per Customer": 112.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063071, 40.020793 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj3-b8v", "Name": "The Stand", "Category": "Restaurants and Other Eating Places", "Address": "1844 W Hunting Park Ave", "LATITUDE": 40.01377, "LONGITUDE": -75.15794, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010202005.0, "Median Dwell Time": 7.0, "Total Spend": 1715.0, "Total Transactions": 60.0, "Total Customers": 52.0, "Median Spend per Transaction": 25.63, "Median Spend per Customer": 35.88 }, "geometry": { "type": "Point", "coordinates": [ -75.15794, 40.01377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-d35", "Name": "Saqqara Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1356 South St", "LATITUDE": 39.943438, "LONGITUDE": -75.165102, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 14.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 118.0, "Total Spend": 1075.0, "Total Transactions": 26.0, "Total Customers": 22.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165102, 39.943438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pfy-b6k", "Name": "Barry's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "471 Leverington Ave", "LATITUDE": 40.035119, "LONGITUDE": -75.217909, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 30.0, "POI_CBG": 421010213001.0, "Median Dwell Time": 103.0, "Total Spend": 1729.0, "Total Transactions": 77.0, "Total Customers": 71.0, "Median Spend per Transaction": 20.49, "Median Spend per Customer": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.217909, 40.035119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-n5z", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St", "LATITUDE": 39.954145, "LONGITUDE": -75.201008, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 71.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 221.0, "Total Spend": 2945.0, "Total Transactions": 147.0, "Total Customers": 133.0, "Median Spend per Transaction": 17.39, "Median Spend per Customer": 18.51 }, "geometry": { "type": "Point", "coordinates": [ -75.201008, 39.954145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9900 Frankford Ave", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2020, "Total Visits": 264.0, "Total Visitors": 165.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 4.0, "Total Spend": 5587.0, "Total Transactions": 909.0, "Total Customers": 373.0, "Median Spend per Transaction": 4.96, "Median Spend per Customer": 7.81 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-x89", "Name": "Kim's Seafood", "Category": "Specialty Food Stores", "Address": "1336 Windrim Ave", "LATITUDE": 40.029599, "LONGITUDE": -75.146407, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 107.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 9.0, "Total Spend": 1079.0, "Total Transactions": 54.0, "Total Customers": 46.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146407, 40.029599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "Name": "Monde Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "100 S 21st St", "LATITUDE": 39.952049, "LONGITUDE": -75.175756, "DATE_RANGE_START": 2020, "Total Visits": 407.0, "Total Visitors": 286.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 5.0, "Total Spend": 18603.0, "Total Transactions": 1147.0, "Total Customers": 546.0, "Median Spend per Transaction": 13.66, "Median Spend per Customer": 18.58 }, "geometry": { "type": "Point", "coordinates": [ -75.175756, 39.952049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-sbk", "Name": "The Igloo", "Category": "Restaurants and Other Eating Places", "Address": "2223 Grays Ferry Ave", "LATITUDE": 39.945135, "LONGITUDE": -75.179463, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 9.0, "Total Spend": 2576.0, "Total Transactions": 264.0, "Total Customers": 242.0, "Median Spend per Transaction": 9.27, "Median Spend per Customer": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.179463, 39.945135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-psq", "Name": "Pho House Thang Long", "Category": "Restaurants and Other Eating Places", "Address": "177 W Girard Ave", "LATITUDE": 39.969594, "LONGITUDE": -75.138911, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 40.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 77.0, "Total Spend": 761.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138911, 39.969594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "106 S 40th St", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 42.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 71.0, "Total Spend": 1496.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 42.72, "Median Spend per Customer": 43.99 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "Name": "Prince Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 E Wyoming Ave", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 50.0, "POI_CBG": 421010288002.0, "Median Dwell Time": 11.0, "Total Spend": 13207.0, "Total Transactions": 498.0, "Total Customers": 314.0, "Median Spend per Transaction": 24.93, "Median Spend per Customer": 29.65 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "3800 Aramingo Ave", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2020, "Total Visits": 5391.0, "Total Visitors": 3531.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 17.0, "Total Spend": 256194.0, "Total Transactions": 2991.0, "Total Customers": 2003.0, "Median Spend per Transaction": 35.97, "Median Spend per Customer": 46.45 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7w-pvz", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "7300 Roosevelt Blvd", "LATITUDE": 40.044968, "LONGITUDE": -75.054721, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 260.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 4.0, "Total Spend": 1875.0, "Total Transactions": 113.0, "Total Customers": 95.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.054721, 40.044968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1601 Market St", "LATITUDE": 39.954256, "LONGITUDE": -75.167978, "DATE_RANGE_START": 2020, "Total Visits": 2549.0, "Total Visitors": 1453.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 252.0, "Total Spend": 30.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 7.44, "Median Spend per Customer": 7.44 }, "geometry": { "type": "Point", "coordinates": [ -75.167978, 39.954256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "138 W Chelten Ave", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2020, "Total Visits": 750.0, "Total Visitors": 502.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 13.0, "Total Spend": 334.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "Name": "R.E. Michel", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "333 E Hunting Park Ave", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 105.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 20.0, "Total Spend": 909.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 83.18, "Median Spend per Customer": 166.36 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2620 Cottman Ave", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2020, "Total Visits": 824.0, "Total Visitors": 685.0, "POI_CBG": 421010314021.0, "Median Dwell Time": 8.0, "Total Spend": 10966.0, "Total Transactions": 228.0, "Total Customers": 187.0, "Median Spend per Transaction": 24.81, "Median Spend per Customer": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pnx-6rk", "Name": "Spring Garden Market", "Category": "Grocery Stores", "Address": "400 Spring Garden St", "LATITUDE": 39.960581, "LONGITUDE": -75.14553, "DATE_RANGE_START": 2020, "Total Visits": 464.0, "Total Visitors": 361.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 11.0, "Total Spend": 1137.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 30.19, "Median Spend per Customer": 30.19 }, "geometry": { "type": "Point", "coordinates": [ -75.14553, 39.960581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "Name": "Golden Nugget Jewelers III", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "800 Chestnut St", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2020, "Total Visits": 1677.0, "Total Visitors": 1268.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 14.0, "Total Spend": 89773.0, "Total Transactions": 67.0, "Total Customers": 56.0, "Median Spend per Transaction": 1000.0, "Median Spend per Customer": 1050.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9920 Bustleton Ave", "LATITUDE": 40.101484, "LONGITUDE": -75.030277, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 181.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 4.0, "Total Spend": 1614.0, "Total Transactions": 20.0, "Total Customers": 12.0, "Median Spend per Transaction": 75.05, "Median Spend per Customer": 124.72 }, "geometry": { "type": "Point", "coordinates": [ -75.030277, 40.101484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "Name": "Old Nelson Food Market", "Category": "Grocery Stores", "Address": "2000 Chestnut St", "LATITUDE": 39.951893, "LONGITUDE": -75.173688, "DATE_RANGE_START": 2020, "Total Visits": 320.0, "Total Visitors": 175.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 274.0, "Total Spend": 26496.0, "Total Transactions": 2114.0, "Total Customers": 1062.0, "Median Spend per Transaction": 9.94, "Median Spend per Customer": 13.29 }, "geometry": { "type": "Point", "coordinates": [ -75.173688, 39.951893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "Name": "Guzman Grocery", "Category": "Grocery Stores", "Address": "3100 E St", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 75.0, "POI_CBG": 421010177023.0, "Median Dwell Time": 9.0, "Total Spend": 198.0, "Total Transactions": 18.0, "Total Customers": 8.0, "Median Spend per Transaction": 10.34, "Median Spend per Customer": 19.45 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvw-cdv", "Name": "Monica Restaurat", "Category": "Restaurants and Other Eating Places", "Address": "5501 Vine St", "LATITUDE": 39.965596, "LONGITUDE": -75.230016, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 4.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 638.0, "Total Spend": 69.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230016, 39.965596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-2hq", "Name": "Las Cazuelas Restaurant BYOB", "Category": "Restaurants and Other Eating Places", "Address": "426 W Girard Ave", "LATITUDE": 39.969878, "LONGITUDE": -75.143998, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 5.0, "Total Spend": 5354.0, "Total Transactions": 99.0, "Total Customers": 95.0, "Median Spend per Transaction": 49.39, "Median Spend per Customer": 50.44 }, "geometry": { "type": "Point", "coordinates": [ -75.143998, 39.969878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-whq", "Name": "Pho Xe Lua Viet Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "907 Race St", "LATITUDE": 39.955481, "LONGITUDE": -75.154675, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 28.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 32.0, "Total Spend": 606.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 25.87, "Median Spend per Customer": 25.87 }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "Name": "Pho Don", "Category": "Restaurants and Other Eating Places", "Address": "3528 Germantown Ave", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 80.0, "Total Spend": 363.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pg2-zj9", "Name": "Panda Garden", "Category": "Restaurants and Other Eating Places", "Address": "275 W Mount Pleasant Ave", "LATITUDE": 40.054638, "LONGITUDE": -75.193918, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 38.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 10.0, "Total Spend": 1190.0, "Total Transactions": 66.0, "Total Customers": 52.0, "Median Spend per Transaction": 14.2, "Median Spend per Customer": 15.87 }, "geometry": { "type": "Point", "coordinates": [ -75.193918, 40.054638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p74-wzf", "Name": "Vista Auto Group", "Category": "Automobile Dealers", "Address": "7418 Frankford Ave", "LATITUDE": 40.038451, "LONGITUDE": -75.03703, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 54.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 273.0, "Total Spend": 7249.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 1826.0, "Median Spend per Customer": 1826.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03703, 40.038451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "Name": "Wooden Shoe Books", "Category": "Book Stores and News Dealers", "Address": "704 South St", "LATITUDE": 39.942084, "LONGITUDE": -75.154166, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 27.0, "Total Spend": 511.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 18.62 }, "geometry": { "type": "Point", "coordinates": [ -75.154166, 39.942084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg9-ty9", "Name": "Brandywine Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1501 Spring Garden St", "LATITUDE": 39.962927, "LONGITUDE": -75.163263, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 112.0, "Total Spend": 130.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 27.09, "Median Spend per Customer": 27.09 }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.962927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "Name": "A& A Grocery Store", "Category": "Grocery Stores", "Address": "5030 Haverford Ave", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 34.0, "POI_CBG": 421010093001.0, "Median Dwell Time": 6.0, "Total Spend": 1392.0, "Total Transactions": 111.0, "Total Customers": 42.0, "Median Spend per Transaction": 8.43, "Median Spend per Customer": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm3-syv", "Name": "Bing Bing Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "1648 E Passyunk Ave", "LATITUDE": 39.928965, "LONGITUDE": -75.164747, "DATE_RANGE_START": 2020, "Total Visits": 87.0, "Total Visitors": 77.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 35.0, "Total Spend": 5486.0, "Total Transactions": 75.0, "Total Customers": 67.0, "Median Spend per Transaction": 66.96, "Median Spend per Customer": 70.36 }, "geometry": { "type": "Point", "coordinates": [ -75.164747, 39.928965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfw-g6k", "Name": "Apollo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3542 Conrad St", "LATITUDE": 40.012812, "LONGITUDE": -75.190541, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010207003.0, "Median Dwell Time": 10.0, "Total Spend": 1047.0, "Total Transactions": 44.0, "Total Customers": 36.0, "Median Spend per Transaction": 17.38, "Median Spend per Customer": 17.34 }, "geometry": { "type": "Point", "coordinates": [ -75.190541, 40.012812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-pn5", "Name": "Luna Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1700 N 3rd St", "LATITUDE": 39.976619, "LONGITUDE": -75.140834, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010156001.0, "Median Dwell Time": null, "Total Spend": 131.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 32.94, "Median Spend per Customer": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.140834, 39.976619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp5-g49", "Name": "Aramingo's Best Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2885 Aramingo Ave", "LATITUDE": 39.984627, "LONGITUDE": -75.113365, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010179003.0, "Median Dwell Time": 3.0, "Total Spend": 2889.0, "Total Transactions": 99.0, "Total Customers": 69.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.113365, 39.984627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "Name": "Lets Grub", "Category": "Restaurants and Other Eating Places", "Address": "4040 Lancaster Ave", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 7.0, "Total Spend": 650.0, "Total Transactions": 48.0, "Total Customers": 34.0, "Median Spend per Transaction": 11.14, "Median Spend per Customer": 17.55 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-2c5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.073477, "LONGITUDE": -75.033695, "DATE_RANGE_START": 2020, "Total Visits": 480.0, "Total Visitors": 333.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 1.0, "Total Spend": 6300.0, "Total Transactions": 883.0, "Total Customers": 437.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.033695, 40.073477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7512 Bustleton Ave", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2020, "Total Visits": 435.0, "Total Visitors": 274.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 17.0, "Total Spend": 8638.0, "Total Transactions": 1080.0, "Total Customers": 544.0, "Median Spend per Transaction": 6.64, "Median Spend per Customer": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "1501 E Susquehanna Ave", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 2.0, "Total Spend": 349.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 14.07, "Median Spend per Customer": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-cbk", "Name": "Torres", "Category": "Restaurants and Other Eating Places", "Address": "5434 Torresdale Ave", "LATITUDE": 40.01446, "LONGITUDE": -75.065885, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 1.0, "Total Spend": 1399.0, "Total Transactions": 64.0, "Total Customers": 40.0, "Median Spend per Transaction": 19.7, "Median Spend per Customer": 25.55 }, "geometry": { "type": "Point", "coordinates": [ -75.065885, 40.01446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-v2k", "Name": "Mario's Motors", "Category": "Automobile Dealers", "Address": "3001 Vare Ave", "LATITUDE": 39.928559, "LONGITUDE": -75.195809, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 89.0, "POI_CBG": 421010036002.0, "Median Dwell Time": 11.0, "Total Spend": 1741.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 438.53, "Median Spend per Customer": 438.53 }, "geometry": { "type": "Point", "coordinates": [ -75.195809, 39.928559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8n-6kz", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6301 Frankford Ave", "LATITUDE": 40.027244, "LONGITUDE": -75.059172, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 202.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 13.0, "Total Spend": 1050.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 46.74, "Median Spend per Customer": 68.02 }, "geometry": { "type": "Point", "coordinates": [ -75.059172, 40.027244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-kxq", "Name": "Pennsylvania China Farm", "Category": "Grocery Stores", "Address": "3650 S Galloway St", "LATITUDE": 39.901129, "LONGITUDE": -75.157248, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 95.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 144.0, "Total Spend": 886.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 202.0, "Median Spend per Customer": 223.13 }, "geometry": { "type": "Point", "coordinates": [ -75.157248, 39.901129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "Name": "Kennedy Food Garden", "Category": "Grocery Stores", "Address": "1901 John F Kennedy Blvd", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 163.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 21.0, "Total Spend": 3040.0, "Total Transactions": 173.0, "Total Customers": 83.0, "Median Spend per Transaction": 14.6, "Median Spend per Customer": 26.83 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1923 N 54th St", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 28.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 199.0, "Total Spend": 116.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pm9-wc5", "Name": "Renaissance Hotels", "Category": "Traveler Accommodation", "Address": "401 Chestnut St", "LATITUDE": 39.949053, "LONGITUDE": -75.147888, "DATE_RANGE_START": 2020, "Total Visits": 314.0, "Total Visitors": 276.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 37.0, "Total Spend": 4965.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 184.84, "Median Spend per Customer": 184.84 }, "geometry": { "type": "Point", "coordinates": [ -75.147888, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phm-8sq", "Name": "Oak Lane Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6724 Old York Rd", "LATITUDE": 40.055908, "LONGITUDE": -75.140617, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 34.0, "POI_CBG": 421010268003.0, "Median Dwell Time": 6.0, "Total Spend": 387.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 32.43, "Median Spend per Customer": 30.35 }, "geometry": { "type": "Point", "coordinates": [ -75.140617, 40.055908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "Name": "VaporFi", "Category": "Other Miscellaneous Store Retailers", "Address": "1240 South St Unit B", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2020, "Total Visits": 887.0, "Total Visitors": 468.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 399.0, "Total Spend": 2284.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 32.38, "Median Spend per Customer": 66.81 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "337 Spring Garden St", "LATITUDE": 39.961453, "LONGITUDE": -75.144571, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 97.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 12.0, "Total Spend": 5825.0, "Total Transactions": 252.0, "Total Customers": 204.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144571, 39.961453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfy-zj9", "Name": "Mike's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4111 Main St", "LATITUDE": 40.022539, "LONGITUDE": -75.218415, "DATE_RANGE_START": 2020, "Total Visits": 762.0, "Total Visitors": 635.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 41.0, "Total Spend": 2410.0, "Total Transactions": 165.0, "Total Customers": 119.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 14.16 }, "geometry": { "type": "Point", "coordinates": [ -75.218415, 40.022539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phq-gff", "Name": "Takka Grill & Shrimpie's", "Category": "Restaurants and Other Eating Places", "Address": "1910 W Cheltenham Ave", "LATITUDE": 40.067474, "LONGITUDE": -75.147141, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 139.0, "POI_CBG": 421010266003.0, "Median Dwell Time": 1414.0, "Total Spend": 2756.0, "Total Transactions": 109.0, "Total Customers": 69.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.147141, 40.067474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "6470 Torresdale Ave", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 429.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 6.0, "Total Spend": 11069.0, "Total Transactions": 802.0, "Total Customers": 564.0, "Median Spend per Transaction": 12.14, "Median Spend per Customer": 15.69 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg9-7h5", "Name": "Hair Town", "Category": "Health and Personal Care Stores", "Address": "2301 N 29th St", "LATITUDE": 39.991198, "LONGITUDE": -75.177954, "DATE_RANGE_START": 2020, "Total Visits": 151.0, "Total Visitors": 56.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 220.0, "Total Spend": 7851.0, "Total Transactions": 208.0, "Total Customers": 151.0, "Median Spend per Transaction": 25.87, "Median Spend per Customer": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.177954, 39.991198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "4670 E Roosevelt Blvd", "LATITUDE": 40.029034, "LONGITUDE": -75.099595, "DATE_RANGE_START": 2020, "Total Visits": 836.0, "Total Visitors": 554.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 9.0, "Total Spend": 63321.0, "Total Transactions": 3567.0, "Total Customers": 2285.0, "Median Spend per Transaction": 14.8, "Median Spend per Customer": 20.63 }, "geometry": { "type": "Point", "coordinates": [ -75.099595, 40.029034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "Name": "Oyster House", "Category": "Restaurants and Other Eating Places", "Address": "1516 Sansom St", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 58.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 10267.0, "Total Transactions": 107.0, "Total Customers": 99.0, "Median Spend per Transaction": 79.3, "Median Spend per Customer": 79.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6110 Woodland Ave", "LATITUDE": 39.928851, "LONGITUDE": -75.229354, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 145.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 5.0, "Total Spend": 1399.0, "Total Transactions": 206.0, "Total Customers": 127.0, "Median Spend per Transaction": 5.9, "Median Spend per Customer": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.229354, 39.928851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-skf", "Name": "Elixr Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "207 S Sydenham St", "LATITUDE": 39.949308, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2020, "Total Visits": 2289.0, "Total Visitors": 1465.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 57.0, "Total Spend": 87.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 9.34, "Median Spend per Customer": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pj8-pgk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd # 5103", "LATITUDE": 40.031694, "LONGITUDE": -75.099517, "DATE_RANGE_START": 2020, "Total Visits": 7096.0, "Total Visitors": 4843.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 24.0, "Total Spend": 1910.0, "Total Transactions": 185.0, "Total Customers": 119.0, "Median Spend per Transaction": 9.31, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099517, 40.031694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "101 S 52nd St", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2020, "Total Visits": 1153.0, "Total Visitors": 744.0, "POI_CBG": 421010085001.0, "Median Dwell Time": 21.0, "Total Spend": 10039.0, "Total Transactions": 730.0, "Total Customers": 496.0, "Median Spend per Transaction": 12.07, "Median Spend per Customer": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pjf-zvf", "Name": "Chestnut Hill Coffee Company", "Category": "Restaurants and Other Eating Places", "Address": "8620 Germantown Ave", "LATITUDE": 40.076935, "LONGITUDE": -75.208429, "DATE_RANGE_START": 2020, "Total Visits": 345.0, "Total Visitors": 187.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 80.0, "Total Spend": 257.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 21.75, "Median Spend per Customer": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.208429, 40.076935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pg9-vpv", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "2100 Fairmount Ave", "LATITUDE": 39.967164, "LONGITUDE": -75.172278, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 113.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 29.0, "Total Spend": 1121.0, "Total Transactions": 139.0, "Total Customers": 119.0, "Median Spend per Transaction": 8.12, "Median Spend per Customer": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172278, 39.967164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "9990 Roosevelt Blvd", "LATITUDE": 40.094236, "LONGITUDE": -75.016653, "DATE_RANGE_START": 2020, "Total Visits": 401.0, "Total Visitors": 349.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 2.0, "Total Spend": 11999.0, "Total Transactions": 885.0, "Total Customers": 647.0, "Median Spend per Transaction": 11.58, "Median Spend per Customer": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.016653, 40.094236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "1708 N Broad St", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2020, "Total Visits": 258.0, "Total Visitors": 208.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 8.0, "Total Spend": 166.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 7.55, "Median Spend per Customer": 7.55 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5401 N 5th St", "LATITUDE": 40.033486, "LONGITUDE": -75.130876, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 159.0, "POI_CBG": 421010274013.0, "Median Dwell Time": 3.0, "Total Spend": 6506.0, "Total Transactions": 855.0, "Total Customers": 351.0, "Median Spend per Transaction": 6.77, "Median Spend per Customer": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.130876, 40.033486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7065 Lincoln Dr", "LATITUDE": 40.054006, "LONGITUDE": -75.193227, "DATE_RANGE_START": 2020, "Total Visits": 373.0, "Total Visitors": 270.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 7.0, "Total Spend": 10355.0, "Total Transactions": 411.0, "Total Customers": 276.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 23.26 }, "geometry": { "type": "Point", "coordinates": [ -75.193227, 40.054006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p8m-syv", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1607 Bridge St", "LATITUDE": 40.02299, "LONGITUDE": -75.075925, "DATE_RANGE_START": 2020, "Total Visits": 987.0, "Total Visitors": 659.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 9.0, "Total Spend": 3281.0, "Total Transactions": 256.0, "Total Customers": 99.0, "Median Spend per Transaction": 6.39, "Median Spend per Customer": 17.19 }, "geometry": { "type": "Point", "coordinates": [ -75.075925, 40.02299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "1711 Walnut St", "LATITUDE": 39.950226, "LONGITUDE": -75.169589, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 143.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 3.0, "Total Spend": 6839.0, "Total Transactions": 202.0, "Total Customers": 129.0, "Median Spend per Transaction": 14.2, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169589, 39.950226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3366 Grant Ave", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2020, "Total Visits": 1524.0, "Total Visitors": 998.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 11.0, "Total Spend": 555.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 15.94, "Median Spend per Customer": 23.36 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "Name": "New Deck Tavern", "Category": "Restaurants and Other Eating Places", "Address": "3408 Sansom St", "LATITUDE": 39.953506, "LONGITUDE": -75.192591, "DATE_RANGE_START": 2020, "Total Visits": 1356.0, "Total Visitors": 951.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 16.0, "Total Spend": 2307.0, "Total Transactions": 60.0, "Total Customers": 52.0, "Median Spend per Transaction": 33.96, "Median Spend per Customer": 35.44 }, "geometry": { "type": "Point", "coordinates": [ -75.192591, 39.953506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8d-kpv", "Name": "Best Buy Imports", "Category": "Automobile Dealers", "Address": "4060 Frankford Ave", "LATITUDE": 40.006235, "LONGITUDE": -75.092056, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 22.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 88.0, "Total Spend": 1991.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 335.46, "Median Spend per Customer": 335.46 }, "geometry": { "type": "Point", "coordinates": [ -75.092056, 40.006235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1142 Crease St", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 24.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 148.0, "Total Spend": 6895.0, "Total Transactions": 165.0, "Total Customers": 143.0, "Median Spend per Transaction": 38.3, "Median Spend per Customer": 42.75 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-kmk", "Name": "Philly Sunnyside Diner", "Category": "Restaurants and Other Eating Places", "Address": "2801 W Girard Ave", "LATITUDE": 39.974534, "LONGITUDE": -75.181976, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 30.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 3.0, "Total Spend": 63.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 11.79, "Median Spend per Customer": 11.79 }, "geometry": { "type": "Point", "coordinates": [ -75.181976, 39.974534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-kcq", "Name": "Holme Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2907 Holme Ave", "LATITUDE": 40.056893, "LONGITUDE": -75.027632, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 36.0, "POI_CBG": 421010347021.0, "Median Dwell Time": 9.0, "Total Spend": 417.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 13.67, "Median Spend per Customer": 14.49 }, "geometry": { "type": "Point", "coordinates": [ -75.027632, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "Name": "Axis Pizza", "Category": "Restaurants and Other Eating Places", "Address": "20 S 36th St", "LATITUDE": 39.95523, "LONGITUDE": -75.194652, "DATE_RANGE_START": 2020, "Total Visits": 324.0, "Total Visitors": 228.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 11.0, "Total Spend": 4580.0, "Total Transactions": 210.0, "Total Customers": 141.0, "Median Spend per Transaction": 13.77, "Median Spend per Customer": 18.04 }, "geometry": { "type": "Point", "coordinates": [ -75.194652, 39.95523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "1037 Chestnut St", "LATITUDE": 39.950371, "LONGITUDE": -75.158373, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 85.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 60.0, "Total Spend": 1823.0, "Total Transactions": 202.0, "Total Customers": 157.0, "Median Spend per Transaction": 8.41, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.158373, 39.950371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-cyv", "Name": "Holmesburg Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8039 Frankford Ave", "LATITUDE": 40.041745, "LONGITUDE": -75.026513, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 52.0, "POI_CBG": 421010329001.0, "Median Dwell Time": 8.0, "Total Spend": 93.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.026513, 40.041745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rp9", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2308 W Oregon Ave", "LATITUDE": 39.917838, "LONGITUDE": -75.186989, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 89.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 1.0, "Total Spend": 10000.0, "Total Transactions": 375.0, "Total Customers": 284.0, "Median Spend per Transaction": 24.2, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186989, 39.917838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 304.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 4.0, "Total Spend": 6211.0, "Total Transactions": 415.0, "Total Customers": 343.0, "Median Spend per Transaction": 13.18, "Median Spend per Customer": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2550 Welsh Rd", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2020, "Total Visits": 258.0, "Total Visitors": 210.0, "POI_CBG": 421010347013.0, "Median Dwell Time": 4.0, "Total Spend": 1429.0, "Total Transactions": 127.0, "Total Customers": 75.0, "Median Spend per Transaction": 9.14, "Median Spend per Customer": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "710 Adams Ave", "LATITUDE": 40.032391, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2020, "Total Visits": 514.0, "Total Visitors": 347.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 8.0, "Total Spend": 13846.0, "Total Transactions": 985.0, "Total Customers": 717.0, "Median Spend per Transaction": 11.62, "Median Spend per Customer": 15.72 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.032391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3200 Red Lion Rd", "LATITUDE": 40.081241, "LONGITUDE": -74.99492, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 183.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 3.0, "Total Spend": 2507.0, "Total Transactions": 393.0, "Total Customers": 185.0, "Median Spend per Transaction": 4.73, "Median Spend per Customer": 6.47 }, "geometry": { "type": "Point", "coordinates": [ -74.99492, 40.081241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-73q", "Name": "Dr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.947797, "LONGITUDE": -75.193456, "DATE_RANGE_START": 2020, "Total Visits": 15310.0, "Total Visitors": 7291.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 133.0, "Total Spend": 2992.0, "Total Transactions": 593.0, "Total Customers": 258.0, "Median Spend per Transaction": 4.66, "Median Spend per Customer": 7.28 }, "geometry": { "type": "Point", "coordinates": [ -75.193456, 39.947797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-223@628-phy-rc5", "Name": "Tierra Colombiana Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4535 N 5th St", "LATITUDE": 40.020572, "LONGITUDE": -75.133736, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 60.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 259.0, "Total Spend": 589.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 57.0, "Median Spend per Customer": 63.74 }, "geometry": { "type": "Point", "coordinates": [ -75.133736, 40.020572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgj-pgk", "Name": "Arthurs Dog House", "Category": "Restaurants and Other Eating Places", "Address": "2650 Germantown Ave", "LATITUDE": 39.992823, "LONGITUDE": -75.148113, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010165003.0, "Median Dwell Time": 3.0, "Total Spend": 140.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 17.56, "Median Spend per Customer": 17.56 }, "geometry": { "type": "Point", "coordinates": [ -75.148113, 39.992823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-pqf", "Name": "Tico's Tacos Tex Mex", "Category": "Restaurants and Other Eating Places", "Address": "1627 South St", "LATITUDE": 39.944355, "LONGITUDE": -75.169738, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 437.0, "Total Spend": 962.0, "Total Transactions": 52.0, "Total Customers": 40.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 16.35 }, "geometry": { "type": "Point", "coordinates": [ -75.169738, 39.944355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pmb-yqf", "Name": "Vivi Bubble Tea", "Category": "Restaurants and Other Eating Places", "Address": "145 N 10th St", "LATITUDE": 39.954838, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 2.0, "Total Spend": 2825.0, "Total Transactions": 278.0, "Total Customers": 236.0, "Median Spend per Transaction": 9.12, "Median Spend per Customer": 10.53 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.954838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-rtv", "Name": "Takka Grill and Pizza", "Category": "Restaurants and Other Eating Places", "Address": "324 W Chelten Ave", "LATITUDE": 40.029529, "LONGITUDE": -75.180791, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 18.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 432.0, "Total Spend": 1296.0, "Total Transactions": 64.0, "Total Customers": 46.0, "Median Spend per Transaction": 15.68, "Median Spend per Customer": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180791, 40.029529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "Name": "Ibis Lounge", "Category": "Restaurants and Other Eating Places", "Address": "5420 Lancaster Ave", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010113002.0, "Median Dwell Time": 192.0, "Total Spend": 1456.0, "Total Transactions": 64.0, "Total Customers": 36.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 34.34 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-zvf", "Name": "Emmy Squared Pizza Queen Village", "Category": "Restaurants and Other Eating Places", "Address": "632 S 5th St", "LATITUDE": 39.941047, "LONGITUDE": -75.151101, "DATE_RANGE_START": 2020, "Total Visits": 296.0, "Total Visitors": 260.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 7.0, "Total Spend": 2615.0, "Total Transactions": 42.0, "Total Customers": 38.0, "Median Spend per Transaction": 48.38, "Median Spend per Customer": 53.72 }, "geometry": { "type": "Point", "coordinates": [ -75.151101, 39.941047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "Name": "Sahara Grill", "Category": "Restaurants and Other Eating Places", "Address": "1334 Walnut St", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2020, "Total Visits": 4145.0, "Total Visitors": 2634.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 135.0, "Total Spend": 630.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 24.82, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "Name": "Station Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9319 Krewstown Rd", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 113.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 93.0, "Total Spend": 6110.0, "Total Transactions": 294.0, "Total Customers": 175.0, "Median Spend per Transaction": 18.24, "Median Spend per Customer": 24.64 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "Name": "Khyber Pass Pub", "Category": "Restaurants and Other Eating Places", "Address": "56 S 2nd St", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 77.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 116.0, "Total Spend": 4301.0, "Total Transactions": 105.0, "Total Customers": 85.0, "Median Spend per Transaction": 33.8, "Median Spend per Customer": 46.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pm5-2ff", "Name": "Wokano", "Category": "Restaurants and Other Eating Places", "Address": "1100 Washington Ave", "LATITUDE": 39.937057, "LONGITUDE": -75.161863, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 99.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 21.0, "Total Spend": 1087.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 44.5, "Median Spend per Customer": 44.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161863, 39.937057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-hh5", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "1821 Chestnut St", "LATITUDE": 39.951987, "LONGITUDE": -75.171121, "DATE_RANGE_START": 2020, "Total Visits": 181.0, "Total Visitors": 119.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 80.0, "Total Spend": 469.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 23.38, "Median Spend per Customer": 23.38 }, "geometry": { "type": "Point", "coordinates": [ -75.171121, 39.951987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "Name": "Jetro Cash & Carry", "Category": "Grocery and Related Product Merchant Wholesalers", "Address": "700 Pattison Ave", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2020, "Total Visits": 1882.0, "Total Visitors": 1080.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 29.0, "Total Spend": 601034.0, "Total Transactions": 977.0, "Total Customers": 314.0, "Median Spend per Transaction": 374.62, "Median Spend per Customer": 478.97 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 18th St", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2020, "Total Visits": 462.0, "Total Visitors": 280.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 3403.0, "Total Transactions": 568.0, "Total Customers": 298.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "245 N Broad St", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 73.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 4.0, "Total Spend": 3509.0, "Total Transactions": 26.0, "Total Customers": 18.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-t7q", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "2900 Island Ave Ste 2946", "LATITUDE": 39.901479, "LONGITUDE": -75.241623, "DATE_RANGE_START": 2020, "Total Visits": 2652.0, "Total Visitors": 1495.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 16.0, "Total Spend": 1638.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 110.26, "Median Spend per Customer": 141.55 }, "geometry": { "type": "Point", "coordinates": [ -75.241623, 39.901479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-3yv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4701 N Mascher St", "LATITUDE": 40.022096, "LONGITUDE": -75.125775, "DATE_RANGE_START": 2020, "Total Visits": 558.0, "Total Visitors": 391.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 5.0, "Total Spend": 919.0, "Total Transactions": 58.0, "Total Customers": 42.0, "Median Spend per Transaction": 10.98, "Median Spend per Customer": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.125775, 40.022096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pmf-jd9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1628 Chestnut St # 36", "LATITUDE": 39.9512, "LONGITUDE": -75.168586, "DATE_RANGE_START": 2020, "Total Visits": 711.0, "Total Visitors": 548.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 11.0, "Total Spend": 9854.0, "Total Transactions": 538.0, "Total Customers": 347.0, "Median Spend per Transaction": 11.98, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.168586, 39.9512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp4-r49", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "2401 2499 Aramingo Ave Space 2499 D", "LATITUDE": 39.975637, "LONGITUDE": -75.119836, "DATE_RANGE_START": 2020, "Total Visits": 2864.0, "Total Visitors": 1614.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 14.0, "Total Spend": 4701.0, "Total Transactions": 95.0, "Total Customers": 58.0, "Median Spend per Transaction": 38.85, "Median Spend per Customer": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -75.119836, 39.975637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pm9-wc5", "Name": "Pinch Dumplings", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949677, "LONGITUDE": -75.147569, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 224.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 64.0, "Total Spend": 1174.0, "Total Transactions": 69.0, "Total Customers": 60.0, "Median Spend per Transaction": 14.63, "Median Spend per Customer": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.147569, 39.949677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7911 Ogontz Ave # 17", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2020, "Total Visits": 641.0, "Total Visitors": 500.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 3.0, "Total Spend": 27552.0, "Total Transactions": 2259.0, "Total Customers": 1520.0, "Median Spend per Transaction": 9.84, "Median Spend per Customer": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6000 N Broad St Store A", "LATITUDE": 40.045011, "LONGITUDE": -75.144262, "DATE_RANGE_START": 2020, "Total Visits": 383.0, "Total Visitors": 278.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 8.0, "Total Spend": 558.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 18.24, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.144262, 40.045011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-835", "Name": "Pennsylvania General Store", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "51 N 12th St", "LATITUDE": 39.953203, "LONGITUDE": -75.159393, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 188.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 5.87, "Median Spend per Customer": 14.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159393, 39.953203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "117 S 16th St", "LATITUDE": 39.950584, "LONGITUDE": -75.167188, "DATE_RANGE_START": 2020, "Total Visits": 193.0, "Total Visitors": 139.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 475.0, "Total Spend": 2315.0, "Total Transactions": 443.0, "Total Customers": 230.0, "Median Spend per Transaction": 4.3, "Median Spend per Customer": 5.54 }, "geometry": { "type": "Point", "coordinates": [ -75.167188, 39.950584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dqf", "Name": "Five Brothers", "Category": "Restaurants and Other Eating Places", "Address": "5851 Loretto Ave", "LATITUDE": 40.033693, "LONGITUDE": -75.084934, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010311023.0, "Median Dwell Time": null, "Total Spend": 1924.0, "Total Transactions": 185.0, "Total Customers": 79.0, "Median Spend per Transaction": 9.9, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084934, 40.033693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3854 Morrell Ave", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2020, "Total Visits": 516.0, "Total Visitors": 381.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 7.0, "Total Spend": 903.0, "Total Transactions": 54.0, "Total Customers": 36.0, "Median Spend per Transaction": 10.72, "Median Spend per Customer": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "11701 Bustleton Ave", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2020, "Total Visits": 3898.0, "Total Visitors": 2213.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 14.0, "Total Spend": 65088.0, "Total Transactions": 1312.0, "Total Customers": 798.0, "Median Spend per Transaction": 30.97, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "Name": "Cantinho Brasileiro Restaurante", "Category": "Restaurants and Other Eating Places", "Address": "7536 Castor Ave", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 30.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 8.0, "Total Spend": 136.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-8y9", "Name": "Accu Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4802 Spruce St", "LATITUDE": 39.953369, "LONGITUDE": -75.218457, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 50.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 9.0, "Total Spend": 826.0, "Total Transactions": 20.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.72, "Median Spend per Customer": 63.44 }, "geometry": { "type": "Point", "coordinates": [ -75.218457, 39.953369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "Name": "Hilltown Tavern", "Category": "Restaurants and Other Eating Places", "Address": "326 Roxborough Ave", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 58.0, "POI_CBG": 421010213004.0, "Median Dwell Time": 188.0, "Total Spend": 25743.0, "Total Transactions": 584.0, "Total Customers": 377.0, "Median Spend per Transaction": 36.46, "Median Spend per Customer": 48.3 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "Name": "Thai Square Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2521 Christian St", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 8.0, "POI_CBG": 421010013005.0, "Median Dwell Time": 111.0, "Total Spend": 3317.0, "Total Transactions": 85.0, "Total Customers": 79.0, "Median Spend per Transaction": 32.97, "Median Spend per Customer": 34.51 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph6-vvf", "Name": "Debreaux's", "Category": "Restaurants and Other Eating Places", "Address": "2135 N 63rd St", "LATITUDE": 39.989238, "LONGITUDE": -75.24979, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 1.0, "Total Spend": 324.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 51.18, "Median Spend per Customer": 51.18 }, "geometry": { "type": "Point", "coordinates": [ -75.24979, 39.989238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-phq-nbk", "Name": "Reyes Grocery Store", "Category": "Grocery Stores", "Address": "6560 N 18th St", "LATITUDE": 40.054327, "LONGITUDE": -75.148175, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 14.0, "POI_CBG": 421010267004.0, "Median Dwell Time": 1055.0, "Total Spend": 777.0, "Total Transactions": 85.0, "Total Customers": 42.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 10.49 }, "geometry": { "type": "Point", "coordinates": [ -75.148175, 40.054327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "Name": "Miller's Ale House", "Category": "Restaurants and Other Eating Places", "Address": "9495 Roosevelt Blvd", "LATITUDE": 40.079795, "LONGITUDE": -75.028682, "DATE_RANGE_START": 2020, "Total Visits": 675.0, "Total Visitors": 597.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 59.0, "Total Spend": 22857.0, "Total Transactions": 445.0, "Total Customers": 381.0, "Median Spend per Transaction": 46.21, "Median Spend per Customer": 51.45 }, "geometry": { "type": "Point", "coordinates": [ -75.028682, 40.079795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-3kf", "Name": "Mirage Lounge", "Category": "Restaurants and Other Eating Places", "Address": "119 South St", "LATITUDE": 39.941399, "LONGITUDE": -75.144795, "DATE_RANGE_START": 2020, "Total Visits": 760.0, "Total Visitors": 629.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 33.0, "Total Spend": 1358.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 58.43, "Median Spend per Customer": 66.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144795, 39.941399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "Name": "Ruby Tuesday", "Category": "Restaurants and Other Eating Places", "Address": "8680 Bartram Ave", "LATITUDE": 39.887819, "LONGITUDE": -75.247004, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 95.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 10.0, "Total Spend": 3822.0, "Total Transactions": 101.0, "Total Customers": 87.0, "Median Spend per Transaction": 33.31, "Median Spend per Customer": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -75.247004, 39.887819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-8d9", "Name": "Bee Natural", "Category": "Specialty Food Stores", "Address": "1136 Arch St", "LATITUDE": 39.952966, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 1236.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.952966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "Name": "Main Street Pho", "Category": "Restaurants and Other Eating Places", "Address": "4307 Main St", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 39.0, "Total Spend": 3917.0, "Total Transactions": 105.0, "Total Customers": 99.0, "Median Spend per Transaction": 26.92, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm4-g8v", "Name": "V Marks the Shop", "Category": "Clothing Stores", "Address": "1515 McKean St", "LATITUDE": 39.926043, "LONGITUDE": -75.171734, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 875.0, "Total Spend": 394.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 20.49, "Median Spend per Customer": 29.45 }, "geometry": { "type": "Point", "coordinates": [ -75.171734, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "Name": "Street Side", "Category": "Restaurants and Other Eating Places", "Address": "165 W Girard Ave", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 143.0, "Total Spend": 757.0, "Total Transactions": 44.0, "Total Customers": 38.0, "Median Spend per Transaction": 14.42, "Median Spend per Customer": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25q-222@628-pm9-tn5", "Name": "Superhots By George", "Category": "Specialty Food Stores", "Address": "740 Sansom St Ste 601", "LATITUDE": 39.948564, "LONGITUDE": -75.153931, "DATE_RANGE_START": 2020, "Total Visits": 1911.0, "Total Visitors": 1233.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 53.0, "Total Spend": 320.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.13, "Median Spend per Customer": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.153931, 39.948564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-bhq", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "29 N 52nd St", "LATITUDE": 39.960816, "LONGITUDE": -75.224417, "DATE_RANGE_START": 2020, "Total Visits": 461.0, "Total Visitors": 349.0, "POI_CBG": 421010093003.0, "Median Dwell Time": 10.0, "Total Spend": 1942.0, "Total Transactions": 202.0, "Total Customers": 129.0, "Median Spend per Transaction": 7.92, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224417, 39.960816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pnw-psq", "Name": "Unleashed by Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "180 W Girard Ave Ste 7", "LATITUDE": 39.969106, "LONGITUDE": -75.139264, "DATE_RANGE_START": 2020, "Total Visits": 875.0, "Total Visitors": 629.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 10.0, "Total Spend": 1613.0, "Total Transactions": 50.0, "Total Customers": 42.0, "Median Spend per Transaction": 26.82, "Median Spend per Customer": 31.22 }, "geometry": { "type": "Point", "coordinates": [ -75.139264, 39.969106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "Name": "El Camino Real", "Category": "Restaurants and Other Eating Places", "Address": "1040 N 2nd St", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 34.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 5.0, "Total Spend": 751.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 36.52, "Median Spend per Customer": 37.39 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj2-7bk", "Name": "Pizza House Express", "Category": "Restaurants and Other Eating Places", "Address": "529 E Allegheny Ave", "LATITUDE": 39.997808, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 60.0, "POI_CBG": 421010177023.0, "Median Dwell Time": 5.0, "Total Spend": 569.0, "Total Transactions": 26.0, "Total Customers": 18.0, "Median Spend per Transaction": 13.2, "Median Spend per Customer": 32.57 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.997808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-87q", "Name": "Kabuki Sushi", "Category": "Restaurants and Other Eating Places", "Address": "45 N 13th St", "LATITUDE": 39.953616, "LONGITUDE": -75.160916, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 30.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 203.0, "Total Spend": 114.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 28.79 }, "geometry": { "type": "Point", "coordinates": [ -75.160916, 39.953616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phy-wx5", "Name": "Brother's Pizza House II", "Category": "Restaurants and Other Eating Places", "Address": "4948 Rising Sun Ave", "LATITUDE": 40.026513, "LONGITUDE": -75.12182, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 4.0, "Total Spend": 24.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 6.15, "Median Spend per Customer": 6.15 }, "geometry": { "type": "Point", "coordinates": [ -75.12182, 40.026513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2132 E Lehigh Ave", "LATITUDE": 39.984509, "LONGITUDE": -75.121352, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 202.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 11.0, "Total Spend": 1834.0, "Total Transactions": 93.0, "Total Customers": 36.0, "Median Spend per Transaction": 14.45, "Median Spend per Customer": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.121352, 39.984509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6858 Rising Sun Ave", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2020, "Total Visits": 899.0, "Total Visitors": 665.0, "POI_CBG": 421010307003.0, "Median Dwell Time": 4.0, "Total Spend": 90716.0, "Total Transactions": 5818.0, "Total Customers": 2624.0, "Median Spend per Transaction": 12.05, "Median Spend per Customer": 21.81 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6771 N 5th St", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 189.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 2.0, "Total Spend": 171.0, "Total Transactions": 28.0, "Total Customers": 20.0, "Median Spend per Transaction": 6.23, "Median Spend per Customer": 7.48 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-t7q", "Name": "Maria's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4058 N 5th St", "LATITUDE": 40.013401, "LONGITUDE": -75.135844, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421010197002.0, "Median Dwell Time": 5.0, "Total Spend": 719.0, "Total Transactions": 48.0, "Total Customers": 28.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.135844, 40.013401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-tsq", "Name": "Chaes Food LLC", "Category": "Specialty Food Stores", "Address": "2100 N American St", "LATITUDE": 39.983616, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 87.0, "POI_CBG": 421010162002.0, "Median Dwell Time": 252.0, "Total Spend": 722.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 101.99, "Median Spend per Customer": 101.99 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.983616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-yd9", "Name": "Essene Market & Cafe", "Category": "Health and Personal Care Stores", "Address": "719 S 4th St", "LATITUDE": 39.940035, "LONGITUDE": -75.149067, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 58.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 3.0, "Total Spend": 81.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg4-47q", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "100 W Queen Ln", "LATITUDE": 40.030031, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2020, "Total Visits": 695.0, "Total Visitors": 492.0, "POI_CBG": 421010242001.0, "Median Dwell Time": 4.0, "Total Spend": 1384.0, "Total Transactions": 67.0, "Total Customers": 30.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 41.51 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 40.030031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "Name": "Nordstrom Rack", "Category": "Clothing Stores", "Address": "1700 Chestnut St", "LATITUDE": 39.951246, "LONGITUDE": -75.168975, "DATE_RANGE_START": 2020, "Total Visits": 848.0, "Total Visitors": 726.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 15.0, "Total Spend": 47545.0, "Total Transactions": 752.0, "Total Customers": 649.0, "Median Spend per Transaction": 43.11, "Median Spend per Customer": 48.75 }, "geometry": { "type": "Point", "coordinates": [ -75.168975, 39.951246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-w8v", "Name": "Aéropostale", "Category": "Clothing Stores", "Address": "1434 Franklin Mills Cir # 717A", "LATITUDE": 40.086851, "LONGITUDE": -74.962597, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 105.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 1611.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 23.91, "Median Spend per Customer": 23.31 }, "geometry": { "type": "Point", "coordinates": [ -74.962597, 40.086851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "Name": "Not Just Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2240 S 11th St", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 24.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 219.0, "Total Spend": 153.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 12.29, "Median Spend per Customer": 19.76 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "Name": "Gaffney Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "5401 Germantown Ave", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2020, "Total Visits": 141.0, "Total Visitors": 125.0, "POI_CBG": 421010246001.0, "Median Dwell Time": 5.0, "Total Spend": 6124.0, "Total Transactions": 123.0, "Total Customers": 101.0, "Median Spend per Transaction": 28.92, "Median Spend per Customer": 32.53 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 W Hunting Park Ave", "LATITUDE": 40.008154, "LONGITUDE": -75.17322, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 373.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 8.0, "Total Spend": 2525.0, "Total Transactions": 218.0, "Total Customers": 167.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 9.06 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 40.008154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "56 Snyder Ave Spc 25", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2020, "Total Visits": 248.0, "Total Visitors": 208.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 5.0, "Total Spend": 1412.0, "Total Transactions": 115.0, "Total Customers": 85.0, "Median Spend per Transaction": 9.24, "Median Spend per Customer": 12.72 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "Name": "Liberty Smokes", "Category": "Other Miscellaneous Store Retailers", "Address": "2740 S Front St", "LATITUDE": 39.912433, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 234.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 1340.0, "Total Transactions": 40.0, "Total Customers": 24.0, "Median Spend per Transaction": 25.46, "Median Spend per Customer": 53.41 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.912433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "Name": "Skyline Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "505 Washington Ave", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 151.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 1238.0, "Total Spend": 8380.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 189.41, "Median Spend per Customer": 139.46 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1812 W Cheltenham Ave", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2020, "Total Visits": 520.0, "Total Visitors": 401.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 8.0, "Total Spend": 2395.0, "Total Transactions": 274.0, "Total Customers": 157.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.031655, "LONGITUDE": -75.099529, "DATE_RANGE_START": 2020, "Total Visits": 6800.0, "Total Visitors": 4663.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 23.0, "Total Spend": 684.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 10.7, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.099529, 40.031655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4113 G St", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 232.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 6.0, "Total Spend": 2241.0, "Total Transactions": 208.0, "Total Customers": 187.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 7.92 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.031024, "LONGITUDE": -75.099091, "DATE_RANGE_START": 2020, "Total Visits": 969.0, "Total Visitors": 786.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 14.0, "Total Spend": 22606.0, "Total Transactions": 429.0, "Total Customers": 329.0, "Median Spend per Transaction": 24.05, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.099091, 40.031024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2204 S Columbus Blvd", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2020, "Total Visits": 728.0, "Total Visitors": 564.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 14.0, "Total Spend": 76847.0, "Total Transactions": 4565.0, "Total Customers": 3178.0, "Median Spend per Transaction": 14.47, "Median Spend per Customer": 18.29 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7x-5zz", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2118 Cottman Ave Ste 4", "LATITUDE": 40.048936, "LONGITUDE": -75.06319, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 208.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 6.0, "Total Spend": 588.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 30.89, "Median Spend per Customer": 30.89 }, "geometry": { "type": "Point", "coordinates": [ -75.06319, 40.048936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "Name": "H&M (Hennes & Mauritz)", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.088823, "LONGITUDE": -74.961811, "DATE_RANGE_START": 2020, "Total Visits": 528.0, "Total Visitors": 490.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 24249.0, "Total Transactions": 522.0, "Total Customers": 466.0, "Median Spend per Transaction": 32.98, "Median Spend per Customer": 35.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961811, 40.088823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-jjv", "Name": "House of Our Own Books", "Category": "Book Stores and News Dealers", "Address": "3920 Spruce St", "LATITUDE": 39.951372, "LONGITUDE": -75.201884, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 290.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 85.0, "Total Spend": 59.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.83, "Median Spend per Customer": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.201884, 39.951372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2020, "Total Visits": 643.0, "Total Visitors": 603.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 11.0, "Total Spend": 66557.0, "Total Transactions": 1302.0, "Total Customers": 1086.0, "Median Spend per Transaction": 39.19, "Median Spend per Customer": 42.39 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pg4-j9z", "Name": "Boss Furniture", "Category": "Furniture Stores", "Address": "5607 Germantown Ave", "LATITUDE": 40.035423, "LONGITUDE": -75.173956, "DATE_RANGE_START": 2020, "Total Visits": 1254.0, "Total Visitors": 830.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 9.0, "Total Spend": 34149.0, "Total Transactions": 36.0, "Total Customers": 22.0, "Median Spend per Transaction": 1000.0, "Median Spend per Customer": 1238.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173956, 40.035423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "Name": "Grace Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2229 Grays Ferry Ave", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 1.0, "Total Spend": 3186.0, "Total Transactions": 73.0, "Total Customers": 54.0, "Median Spend per Transaction": 29.52, "Median Spend per Customer": 39.72 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@63s-dvy-8sq", "Name": "MK Food Service Equipment", "Category": "Gasoline Stations", "Address": "4700 Pine St", "LATITUDE": 39.95219, "LONGITUDE": -75.216689, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 22.0, "POI_CBG": 421010079001.0, "Median Dwell Time": 228.0, "Total Spend": 259.0, "Total Transactions": 42.0, "Total Customers": 18.0, "Median Spend per Transaction": 4.73, "Median Spend per Customer": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.216689, 39.95219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjf-jy9", "Name": "Bredenbeck's Bakery & Ice Cream Parlor", "Category": "Restaurants and Other Eating Places", "Address": "8126 Germantown Ave", "LATITUDE": 40.072481, "LONGITUDE": -75.202392, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 1.0, "Total Spend": 19542.0, "Total Transactions": 901.0, "Total Customers": 691.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.202392, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pg5-2tv", "Name": "Morton Food Market", "Category": "Grocery Stores", "Address": "6201 Morton St", "LATITUDE": 40.04563, "LONGITUDE": -75.176218, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 36.0, "POI_CBG": 421010252004.0, "Median Dwell Time": 3.0, "Total Spend": 289.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 23.64, "Median Spend per Customer": 72.84 }, "geometry": { "type": "Point", "coordinates": [ -75.176218, 40.04563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm9-5cq", "Name": "Friends Convenience Store", "Category": "Grocery Stores", "Address": "2652 S Warnock St", "LATITUDE": 39.91628, "LONGITUDE": -75.165627, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 4.0, "Total Spend": 95.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 10.26, "Median Spend per Customer": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.165627, 39.91628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj3-3nq", "Name": "Mora Mini Market", "Category": "Grocery Stores", "Address": "4501 N 19th St", "LATITUDE": 40.022573, "LONGITUDE": -75.156258, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 16.0, "POI_CBG": 421010280001.0, "Median Dwell Time": 334.0, "Total Spend": 174.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 8.8, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.156258, 40.022573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-kvf", "Name": "The Wellness Refinery", "Category": "Restaurants and Other Eating Places", "Address": "216 Church St", "LATITUDE": 39.950375, "LONGITUDE": -75.144624, "DATE_RANGE_START": 2020, "Total Visits": 838.0, "Total Visitors": 550.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 13.0, "Total Spend": 809.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 49.0, "Median Spend per Customer": 49.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144624, 39.950375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "Name": "Fairmount Pizza and Grill", "Category": "Restaurants and Other Eating Places", "Address": "2000 Fairmount Ave", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 62.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 8.0, "Total Spend": 15589.0, "Total Transactions": 885.0, "Total Customers": 621.0, "Median Spend per Transaction": 14.53, "Median Spend per Customer": 18.85 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-jqf", "Name": "Brewers Outlet Of Mt Airy & Chestnut Hill", "Category": "Beer, Wine, and Liquor Stores", "Address": "7401 Germantown Ave", "LATITUDE": 40.063253, "LONGITUDE": -75.192693, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 193.0, "POI_CBG": 421010256003.0, "Median Dwell Time": 5.0, "Total Spend": 45317.0, "Total Transactions": 1114.0, "Total Customers": 657.0, "Median Spend per Transaction": 32.38, "Median Spend per Customer": 46.78 }, "geometry": { "type": "Point", "coordinates": [ -75.192693, 40.063253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-x3q", "Name": "Manakeesh Cafe Bakery & Grill", "Category": "Restaurants and Other Eating Places", "Address": "4420 Walnut St", "LATITUDE": 39.95498, "LONGITUDE": -75.211488, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 161.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 827.0, "Total Spend": 5873.0, "Total Transactions": 240.0, "Total Customers": 204.0, "Median Spend per Transaction": 19.49, "Median Spend per Customer": 24.26 }, "geometry": { "type": "Point", "coordinates": [ -75.211488, 39.95498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22q@628-pmb-835", "Name": "Pearl's Oyster Bar", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.95321, "LONGITUDE": -75.159401, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 340.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.159401, 39.95321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "Name": "Maggiano's Little Italy", "Category": "Restaurants and Other Eating Places", "Address": "1201 Filbert St", "LATITUDE": 39.953256, "LONGITUDE": -75.160263, "DATE_RANGE_START": 2020, "Total Visits": 151.0, "Total Visitors": 131.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 19111.0, "Total Transactions": 298.0, "Total Customers": 264.0, "Median Spend per Transaction": 33.94, "Median Spend per Customer": 38.18 }, "geometry": { "type": "Point", "coordinates": [ -75.160263, 39.953256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phd-h89", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "4600 City Ave", "LATITUDE": 40.002639, "LONGITUDE": -75.222769, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 135.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 5.0, "Total Spend": 6819.0, "Total Transactions": 314.0, "Total Customers": 256.0, "Median Spend per Transaction": 20.02, "Median Spend per Customer": 22.85 }, "geometry": { "type": "Point", "coordinates": [ -75.222769, 40.002639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2044 Red Lion Rd.", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2020, "Total Visits": 7580.0, "Total Visitors": 4722.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 23.0, "Total Spend": 69020.0, "Total Transactions": 693.0, "Total Customers": 472.0, "Median Spend per Transaction": 72.14, "Median Spend per Customer": 103.59 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pfx-kzz", "Name": "Haggerty Deli", "Category": "Grocery Stores", "Address": "4528 Wilde St", "LATITUDE": 40.029098, "LONGITUDE": -75.225579, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010214004.0, "Median Dwell Time": 168.0, "Total Spend": 1009.0, "Total Transactions": 73.0, "Total Customers": 34.0, "Median Spend per Transaction": 10.63, "Median Spend per Customer": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -75.225579, 40.029098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-d5f", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3141 Frankford Ave # 59", "LATITUDE": 39.992273, "LONGITUDE": -75.110947, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 220.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 10.0, "Total Spend": 1418.0, "Total Transactions": 91.0, "Total Customers": 46.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.110947, 39.992273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1161 Franklin Mills Cir", "LATITUDE": 40.084266, "LONGITUDE": -74.961834, "DATE_RANGE_START": 2020, "Total Visits": 248.0, "Total Visitors": 246.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 11978.0, "Total Transactions": 782.0, "Total Customers": 667.0, "Median Spend per Transaction": 11.27, "Median Spend per Customer": 12.86 }, "geometry": { "type": "Point", "coordinates": [ -74.961834, 40.084266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2201 Cottman Ave", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 185.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 8.0, "Total Spend": 3058.0, "Total Transactions": 95.0, "Total Customers": 83.0, "Median Spend per Transaction": 26.58, "Median Spend per Customer": 28.59 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "Name": "Xian Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "902 Arch St", "LATITUDE": 39.9532, "LONGITUDE": -75.154945, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 26.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 183.0, "Total Spend": 360.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154945, 39.9532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "Name": "Pho Palace", "Category": "Restaurants and Other Eating Places", "Address": "15501 Bustleton Ave", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 1.0, "Total Spend": 4623.0, "Total Transactions": 149.0, "Total Customers": 123.0, "Median Spend per Transaction": 28.78, "Median Spend per Customer": 30.1 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pg4-w49", "Name": "Pauline's Deli", "Category": "Restaurants and Other Eating Places", "Address": "2145 Elkins Ave", "LATITUDE": 40.040848, "LONGITUDE": -75.157522, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 38.0, "POI_CBG": 421010279022.0, "Median Dwell Time": 40.0, "Total Spend": 974.0, "Total Transactions": 77.0, "Total Customers": 36.0, "Median Spend per Transaction": 11.67, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.157522, 40.040848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "839 N Broad St", "LATITUDE": 39.969391, "LONGITUDE": -75.159457, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 44.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 2.0, "Total Spend": 4412.0, "Total Transactions": 641.0, "Total Customers": 369.0, "Median Spend per Transaction": 6.14, "Median Spend per Customer": 7.68 }, "geometry": { "type": "Point", "coordinates": [ -75.159457, 39.969391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "Name": "The Fresh Market", "Category": "Grocery Stores", "Address": "8208 Germantown Ave # 18", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2020, "Total Visits": 883.0, "Total Visitors": 494.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 22.0, "Total Spend": 48638.0, "Total Transactions": 957.0, "Total Customers": 568.0, "Median Spend per Transaction": 36.08, "Median Spend per Customer": 45.1 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-28v", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "780 Adams Ave", "LATITUDE": 40.030475, "LONGITUDE": -75.104415, "DATE_RANGE_START": 2020, "Total Visits": 1959.0, "Total Visitors": 1360.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 5.0, "Total Spend": 770.0, "Total Transactions": 42.0, "Total Customers": 30.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104415, 40.030475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "Name": "Brandy Melville", "Category": "Clothing Stores", "Address": "1527 Walnut St", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 177.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 42.0, "Total Spend": 5962.0, "Total Transactions": 93.0, "Total Customers": 83.0, "Median Spend per Transaction": 48.0, "Median Spend per Customer": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph8-q75", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7564 Haverford Ave", "LATITUDE": 39.978744, "LONGITUDE": -75.268394, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 69.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 5.0, "Total Spend": 925.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 29.84, "Median Spend per Customer": 29.43 }, "geometry": { "type": "Point", "coordinates": [ -75.268394, 39.978744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8m-6rk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6101 Frankford Ave", "LATITUDE": 40.026735, "LONGITUDE": -75.064295, "DATE_RANGE_START": 2020, "Total Visits": 639.0, "Total Visitors": 472.0, "POI_CBG": 421010319001.0, "Median Dwell Time": 10.0, "Total Spend": 958.0, "Total Transactions": 73.0, "Total Customers": 46.0, "Median Spend per Transaction": 8.16, "Median Spend per Customer": 17.16 }, "geometry": { "type": "Point", "coordinates": [ -75.064295, 40.026735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7938 Dungan Rd", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2020, "Total Visits": 899.0, "Total Visitors": 649.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 9.0, "Total Spend": 1674.0, "Total Transactions": 115.0, "Total Customers": 91.0, "Median Spend per Transaction": 11.43, "Median Spend per Customer": 15.22 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5719 Oxford Ave", "LATITUDE": 40.033268, "LONGITUDE": -75.084729, "DATE_RANGE_START": 2020, "Total Visits": 649.0, "Total Visitors": 459.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 9.0, "Total Spend": 2047.0, "Total Transactions": 220.0, "Total Customers": 153.0, "Median Spend per Transaction": 7.4, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.084729, 40.033268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "Name": "SouthHouse", "Category": "Restaurants and Other Eating Places", "Address": "2535 S 13th St", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 119.0, "POI_CBG": 421010040023.0, "Median Dwell Time": 456.0, "Total Spend": 1583.0, "Total Transactions": 40.0, "Total Customers": 34.0, "Median Spend per Transaction": 33.35, "Median Spend per Customer": 41.04 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-yqf", "Name": "Shiao Lan Kung", "Category": "Restaurants and Other Eating Places", "Address": "930 Race St", "LATITUDE": 39.955257, "LONGITUDE": -75.155387, "DATE_RANGE_START": 2020, "Total Visits": 3823.0, "Total Visitors": 2293.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 47.0, "Total Spend": 261.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 20.79, "Median Spend per Customer": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.955257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "Name": "Penang", "Category": "Restaurants and Other Eating Places", "Address": "117 N 10th St", "LATITUDE": 39.954047, "LONGITUDE": -75.155868, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 67.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 2.0, "Total Spend": 3620.0, "Total Transactions": 85.0, "Total Customers": 73.0, "Median Spend per Transaction": 40.72, "Median Spend per Customer": 40.88 }, "geometry": { "type": "Point", "coordinates": [ -75.155868, 39.954047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "Name": "Luke's Lobster", "Category": "Restaurants and Other Eating Places", "Address": "130 S 17th St", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 69.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 228.0, "Total Spend": 2917.0, "Total Transactions": 73.0, "Total Customers": 69.0, "Median Spend per Transaction": 31.05, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6001 Ridge Ave", "LATITUDE": 40.032001, "LONGITUDE": -75.213304, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 93.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 14.0, "Total Spend": 6360.0, "Total Transactions": 264.0, "Total Customers": 197.0, "Median Spend per Transaction": 23.96, "Median Spend per Customer": 29.21 }, "geometry": { "type": "Point", "coordinates": [ -75.213304, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8v-7nq", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "189 Franklin Mills Blvd", "LATITUDE": 40.088588, "LONGITUDE": -74.965931, "DATE_RANGE_START": 2020, "Total Visits": 478.0, "Total Visitors": 393.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 952.0, "Total Transactions": 109.0, "Total Customers": 103.0, "Median Spend per Transaction": 8.91, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -74.965931, 40.088588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "Name": "Sweet Creations Unlimited", "Category": "Specialty Food Stores", "Address": "5940 Torresdale Ave", "LATITUDE": 40.017723, "LONGITUDE": -75.059702, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010321003.0, "Median Dwell Time": 4.0, "Total Spend": 333.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 24.33, "Median Spend per Customer": 24.33 }, "geometry": { "type": "Point", "coordinates": [ -75.059702, 40.017723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p7x-dsq", "Name": "Angelos Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6920 Bustleton Ave", "LATITUDE": 40.042556, "LONGITUDE": -75.063892, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 6.0, "Total Spend": 728.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 19.81, "Median Spend per Customer": 19.81 }, "geometry": { "type": "Point", "coordinates": [ -75.063892, 40.042556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6201 Ridge Ave", "LATITUDE": 40.035916, "LONGITUDE": -75.217328, "DATE_RANGE_START": 2020, "Total Visits": 1044.0, "Total Visitors": 655.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 4.0, "Total Spend": 1174.0, "Total Transactions": 52.0, "Total Customers": 42.0, "Median Spend per Transaction": 24.78, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217328, 40.035916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-p9z", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4160 N American St", "LATITUDE": 40.014187, "LONGITUDE": -75.131595, "DATE_RANGE_START": 2020, "Total Visits": 758.0, "Total Visitors": 530.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 5.0, "Total Spend": 616.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 20.02, "Median Spend per Customer": 20.03 }, "geometry": { "type": "Point", "coordinates": [ -75.131595, 40.014187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "Name": "Ginza", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Front St", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010025002.0, "Median Dwell Time": null, "Total Spend": 4209.0, "Total Transactions": 107.0, "Total Customers": 85.0, "Median Spend per Transaction": 34.9, "Median Spend per Customer": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnz-yjv", "Name": "Allegheny Apothecary", "Category": "Health and Personal Care Stores", "Address": "2244 E Allegheny Ave", "LATITUDE": 39.989902, "LONGITUDE": -75.107971, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 32.0, "POI_CBG": 421010179002.0, "Median Dwell Time": 340.0, "Total Spend": 132.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 4.76, "Median Spend per Customer": 4.76 }, "geometry": { "type": "Point", "coordinates": [ -75.107971, 39.989902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmb-ce5", "Name": "Ralphs Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "760 S 9th St", "LATITUDE": 39.940063, "LONGITUDE": -75.157832, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 36.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 335.0, "Total Spend": 320.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 80.5, "Median Spend per Customer": 80.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157832, 39.940063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm9-yn5", "Name": "Bluebond Guitars", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "511 S 4th St", "LATITUDE": 39.94235, "LONGITUDE": -75.148924, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 175.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 2.0, "Total Spend": 522.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 45.9, "Median Spend per Customer": 45.9 }, "geometry": { "type": "Point", "coordinates": [ -75.148924, 39.94235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "1130 Market St", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2020, "Total Visits": 4897.0, "Total Visitors": 3356.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 15.0, "Total Spend": 8651.0, "Total Transactions": 256.0, "Total Customers": 202.0, "Median Spend per Transaction": 22.33, "Median Spend per Customer": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "Name": "Scrub Pro", "Category": "Clothing Stores", "Address": "817 Adams Ave # 819", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2020, "Total Visits": 2878.0, "Total Visitors": 2189.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 11.0, "Total Spend": 10272.0, "Total Transactions": 129.0, "Total Customers": 119.0, "Median Spend per Transaction": 65.15, "Median Spend per Customer": 66.05 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-7qz", "Name": "Wax Downtown", "Category": "Specialty Food Stores", "Address": "740 Sansom St Ste 505F", "LATITUDE": 39.948559, "LONGITUDE": -75.153964, "DATE_RANGE_START": 2020, "Total Visits": 1911.0, "Total Visitors": 1233.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 53.0, "Total Spend": 413.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 53.41, "Median Spend per Customer": 53.41 }, "geometry": { "type": "Point", "coordinates": [ -75.153964, 39.948559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "801 S 9th St", "LATITUDE": 39.93927, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 359.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 6.0, "Total Spend": 9635.0, "Total Transactions": 502.0, "Total Customers": 260.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.93927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "Name": "Academy Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10101 Academy Rd Ste 105", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 73.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 78.0, "Total Spend": 549.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 16.25, "Median Spend per Customer": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2132 South Street Philadelphia", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2020, "Total Visits": 578.0, "Total Visitors": 312.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 11.0, "Total Spend": 31109.0, "Total Transactions": 1340.0, "Total Customers": 631.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 26.82 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "2800 Fox St Ste 110 Unit D", "LATITUDE": 40.008773, "LONGITUDE": -75.176588, "DATE_RANGE_START": 2020, "Total Visits": 318.0, "Total Visitors": 278.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 7.0, "Total Spend": 52608.0, "Total Transactions": 1296.0, "Total Customers": 1149.0, "Median Spend per Transaction": 25.87, "Median Spend per Customer": 29.12 }, "geometry": { "type": "Point", "coordinates": [ -75.176588, 40.008773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "Name": "ALDO", "Category": "Shoe Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952094, "LONGITUDE": -75.167619, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 153.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 59.0, "Total Spend": 2999.0, "Total Transactions": 56.0, "Total Customers": 54.0, "Median Spend per Transaction": 36.75, "Median Spend per Customer": 38.52 }, "geometry": { "type": "Point", "coordinates": [ -75.167619, 39.952094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvq-5cq", "Name": "Sanchez Tire Shop", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5417 Baltimore Ave", "LATITUDE": 39.947772, "LONGITUDE": -75.232413, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 62.0, "POI_CBG": 421010081011.0, "Median Dwell Time": 11.0, "Total Spend": 165.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 31.2, "Median Spend per Customer": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232413, 39.947772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-6zf", "Name": "Danis Auto", "Category": "Automobile Dealers", "Address": "6250 Harbison Ave", "LATITUDE": 40.02883, "LONGITUDE": -75.063054, "DATE_RANGE_START": 2020, "Total Visits": 133.0, "Total Visitors": 101.0, "POI_CBG": 421010317003.0, "Median Dwell Time": 151.0, "Total Spend": 48033.0, "Total Transactions": 24.0, "Total Customers": 20.0, "Median Spend per Transaction": 2000.0, "Median Spend per Customer": 1799.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063054, 40.02883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmf-kvf", "Name": "Village Whiskey", "Category": "Specialty Food Stores", "Address": "118 S 20th St", "LATITUDE": 39.951382, "LONGITUDE": -75.173791, "DATE_RANGE_START": 2020, "Total Visits": 788.0, "Total Visitors": 484.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 61.0, "Total Spend": 453.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 114.1, "Median Spend per Customer": 114.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173791, 39.951382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1600 E Wadsworth Ave", "LATITUDE": 40.080322, "LONGITUDE": -75.171913, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 306.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 10.0, "Total Spend": 1628.0, "Total Transactions": 95.0, "Total Customers": 69.0, "Median Spend per Transaction": 10.59, "Median Spend per Customer": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.171913, 40.080322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-zxq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3260 N Broad St Ste 5", "LATITUDE": 40.002963, "LONGITUDE": -75.152983, "DATE_RANGE_START": 2020, "Total Visits": 365.0, "Total Visitors": 270.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 9.0, "Total Spend": 2709.0, "Total Transactions": 145.0, "Total Customers": 97.0, "Median Spend per Transaction": 11.32, "Median Spend per Customer": 18.57 }, "geometry": { "type": "Point", "coordinates": [ -75.152983, 40.002963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4314 Locust St", "LATITUDE": 39.953381, "LONGITUDE": -75.209698, "DATE_RANGE_START": 2020, "Total Visits": 977.0, "Total Visitors": 605.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 9.0, "Total Spend": 33672.0, "Total Transactions": 1604.0, "Total Customers": 766.0, "Median Spend per Transaction": 14.38, "Median Spend per Customer": 28.16 }, "geometry": { "type": "Point", "coordinates": [ -75.209698, 39.953381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6501 Harbison Ave", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2020, "Total Visits": 2519.0, "Total Visitors": 1832.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 9.0, "Total Spend": 17171.0, "Total Transactions": 687.0, "Total Customers": 506.0, "Median Spend per Transaction": 16.54, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgg-rc5", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "3130 W Hunting Park Ave", "LATITUDE": 40.003796, "LONGITUDE": -75.180647, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 179.0, "POI_CBG": 421010171004.0, "Median Dwell Time": 4.0, "Total Spend": 4478.0, "Total Transactions": 264.0, "Total Customers": 204.0, "Median Spend per Transaction": 15.01, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180647, 40.003796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm3-vzz", "Name": "LaScala's Birra", "Category": "Restaurants and Other Eating Places", "Address": "1700 E Passyunk Ave", "LATITUDE": 39.928592, "LONGITUDE": -75.165123, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 304.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 27.0, "Total Spend": 6226.0, "Total Transactions": 95.0, "Total Customers": 95.0, "Median Spend per Transaction": 49.39, "Median Spend per Customer": 49.39 }, "geometry": { "type": "Point", "coordinates": [ -75.165123, 39.928592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7qz", "Name": "Wishbone", "Category": "Restaurants and Other Eating Places", "Address": "210 S 13th St", "LATITUDE": 39.948376, "LONGITUDE": -75.162398, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 79.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 12.0, "Total Spend": 1075.0, "Total Transactions": 89.0, "Total Customers": 66.0, "Median Spend per Transaction": 10.41, "Median Spend per Customer": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.162398, 39.948376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave Ste A", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2020, "Total Visits": 212.0, "Total Visitors": 195.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 3.0, "Total Spend": 8393.0, "Total Transactions": 625.0, "Total Customers": 449.0, "Median Spend per Transaction": 11.73, "Median Spend per Customer": 14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "Name": "Greek Lady", "Category": "Restaurants and Other Eating Places", "Address": "222 S 40th St", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 77.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 21.0, "Total Spend": 16350.0, "Total Transactions": 1000.0, "Total Customers": 595.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "Name": "El Coqui Panaderia", "Category": "Restaurants and Other Eating Places", "Address": "3528 I St", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 109.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 5.0, "Total Spend": 4557.0, "Total Transactions": 179.0, "Total Customers": 145.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 29.01 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-p9q-hqz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079591, "LONGITUDE": -75.027394, "DATE_RANGE_START": 2020, "Total Visits": 200.0, "Total Visitors": 151.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 28.0, "Total Spend": 1824.0, "Total Transactions": 129.0, "Total Customers": 91.0, "Median Spend per Transaction": 12.06, "Median Spend per Customer": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.027394, 40.079591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "Name": "Repo Records", "Category": "Electronics and Appliance Stores", "Address": "506 South St", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2020, "Total Visits": 887.0, "Total Visitors": 607.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 48.0, "Total Spend": 12238.0, "Total Transactions": 292.0, "Total Customers": 258.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 33.44 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-jgk", "Name": "AM Food Market", "Category": "Grocery Stores", "Address": "1200 N 52nd St", "LATITUDE": 39.971594, "LONGITUDE": -75.225601, "DATE_RANGE_START": 2020, "Total Visits": 367.0, "Total Visitors": 254.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 7.0, "Total Spend": 1486.0, "Total Transactions": 143.0, "Total Customers": 97.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225601, 39.971594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kxq", "Name": "Benjamin Lovell Shoes", "Category": "Shoe Stores", "Address": "60 N 3rd St", "LATITUDE": 39.951787, "LONGITUDE": -75.145456, "DATE_RANGE_START": 2020, "Total Visits": 236.0, "Total Visitors": 143.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 465.0, "Total Spend": 2540.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 99.95, "Median Spend per Customer": 99.95 }, "geometry": { "type": "Point", "coordinates": [ -75.145456, 39.951787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2300 W Oregon Ave", "LATITUDE": 39.916033, "LONGITUDE": -75.188037, "DATE_RANGE_START": 2020, "Total Visits": 3962.0, "Total Visitors": 2765.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 22.0, "Total Spend": 49698.0, "Total Transactions": 425.0, "Total Customers": 302.0, "Median Spend per Transaction": 79.99, "Median Spend per Customer": 101.45 }, "geometry": { "type": "Point", "coordinates": [ -75.188037, 39.916033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "Name": "Dollar Value", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2007 S Broad St", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 175.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 12.0, "Total Spend": 7226.0, "Total Transactions": 331.0, "Total Customers": 250.0, "Median Spend per Transaction": 16.68, "Median Spend per Customer": 17.24 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6800 Bustleton Ave", "LATITUDE": 40.040921, "LONGITUDE": -75.065658, "DATE_RANGE_START": 2020, "Total Visits": 482.0, "Total Visitors": 308.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 4.0, "Total Spend": 157.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.79, "Median Spend per Customer": 9.56 }, "geometry": { "type": "Point", "coordinates": [ -75.065658, 40.040921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "260 W Lehigh Ave Ste 80", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2020, "Total Visits": 788.0, "Total Visitors": 470.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 11.0, "Total Spend": 3769.0, "Total Transactions": 85.0, "Total Customers": 69.0, "Median Spend per Transaction": 18.88, "Median Spend per Customer": 22.85 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3331 Grant Ave", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2020, "Total Visits": 2164.0, "Total Visitors": 1356.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 8.0, "Total Spend": 6516.0, "Total Transactions": 284.0, "Total Customers": 183.0, "Median Spend per Transaction": 12.81, "Median Spend per Customer": 16.91 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-92k", "Name": "Sephora", "Category": "Health and Personal Care Stores", "Address": "901 Market St Unit 1155", "LATITUDE": 39.951634, "LONGITUDE": -75.155721, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 49.0, "Total Spend": 14413.0, "Total Transactions": 179.0, "Total Customers": 173.0, "Median Spend per Transaction": 61.02, "Median Spend per Customer": 61.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155721, 39.951634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1100 W Girard Ave", "LATITUDE": 39.970561, "LONGITUDE": -75.155313, "DATE_RANGE_START": 2020, "Total Visits": 171.0, "Total Visitors": 153.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 3.0, "Total Spend": 450.0, "Total Transactions": 54.0, "Total Customers": 44.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 7.05 }, "geometry": { "type": "Point", "coordinates": [ -75.155313, 39.970561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "Name": "Pizzeria Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1925 S Broad St", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 1.0, "Total Spend": 1069.0, "Total Transactions": 52.0, "Total Customers": 48.0, "Median Spend per Transaction": 16.87, "Median Spend per Customer": 21.56 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "602 Carpenter Ln", "LATITUDE": 40.04622, "LONGITUDE": -75.195937, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 22.0, "POI_CBG": 421010236003.0, "Median Dwell Time": 3.0, "Total Spend": 1712.0, "Total Transactions": 103.0, "Total Customers": 60.0, "Median Spend per Transaction": 14.07, "Median Spend per Customer": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.195937, 40.04622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1100 S Delaware Ave", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 24.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 7.0, "Total Spend": 6868.0, "Total Transactions": 119.0, "Total Customers": 97.0, "Median Spend per Transaction": 47.99, "Median Spend per Customer": 54.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-phz-tgk", "Name": "Av Pharmacy", "Category": "Health and Personal Care Stores", "Address": "3237 Kensington Ave", "LATITUDE": 39.996949, "LONGITUDE": -75.112156, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010188005.0, "Median Dwell Time": 1.0, "Total Spend": 161.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112156, 39.996949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "1356 Franklin Mills Cir", "LATITUDE": 40.085814, "LONGITUDE": -74.963569, "DATE_RANGE_START": 2020, "Total Visits": 3146.0, "Total Visitors": 2441.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 26.0, "Total Spend": 24623.0, "Total Transactions": 369.0, "Total Customers": 296.0, "Median Spend per Transaction": 44.08, "Median Spend per Customer": 58.95 }, "geometry": { "type": "Point", "coordinates": [ -74.963569, 40.085814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6337 N Broad St", "LATITUDE": 40.050125, "LONGITUDE": -75.141867, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 181.0, "POI_CBG": 421010268004.0, "Median Dwell Time": 6.0, "Total Spend": 1587.0, "Total Transactions": 147.0, "Total Customers": 107.0, "Median Spend per Transaction": 8.36, "Median Spend per Customer": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.141867, 40.050125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "Name": "Le Viet Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1019 S 11th St", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 135.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 11.0, "Total Spend": 664.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 32.35, "Median Spend per Customer": 29.79 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dw2-7yv", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 S 60th St", "LATITUDE": 39.958784, "LONGITUDE": -75.241349, "DATE_RANGE_START": 2020, "Total Visits": 449.0, "Total Visitors": 163.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 484.0, "Total Spend": 600.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 15.6, "Median Spend per Customer": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.241349, 39.958784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-r49", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6391 Oxford Ave", "LATITUDE": 40.044228, "LONGITUDE": -75.087251, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 60.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 60.0, "Total Spend": 7295.0, "Total Transactions": 268.0, "Total Customers": 220.0, "Median Spend per Transaction": 25.12, "Median Spend per Customer": 28.52 }, "geometry": { "type": "Point", "coordinates": [ -75.087251, 40.044228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2211 Stenton Ave", "LATITUDE": 40.055857, "LONGITUDE": -75.157863, "DATE_RANGE_START": 2020, "Total Visits": 828.0, "Total Visitors": 564.0, "POI_CBG": 421010265006.0, "Median Dwell Time": 5.0, "Total Spend": 7251.0, "Total Transactions": 607.0, "Total Customers": 480.0, "Median Spend per Transaction": 9.93, "Median Spend per Customer": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.157863, 40.055857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4200 N Broad St", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2020, "Total Visits": 542.0, "Total Visitors": 496.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 4.0, "Total Spend": 5894.0, "Total Transactions": 480.0, "Total Customers": 391.0, "Median Spend per Transaction": 10.68, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3313 Wharton St", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 113.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 5.0, "Total Spend": 7039.0, "Total Transactions": 955.0, "Total Customers": 526.0, "Median Spend per Transaction": 6.7, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7325 Castor Ave", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 60.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 2.0, "Total Spend": 8627.0, "Total Transactions": 341.0, "Total Customers": 244.0, "Median Spend per Transaction": 22.64, "Median Spend per Customer": 28.95 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9440 State Rd", "LATITUDE": 40.049354, "LONGITUDE": -74.989522, "DATE_RANGE_START": 2020, "Total Visits": 1125.0, "Total Visitors": 687.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 4.0, "Total Spend": 18207.0, "Total Transactions": 1923.0, "Total Customers": 788.0, "Median Spend per Transaction": 7.76, "Median Spend per Customer": 11.97 }, "geometry": { "type": "Point", "coordinates": [ -74.989522, 40.049354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-fvf", "Name": "Jennifer Grocery", "Category": "Grocery Stores", "Address": "4824 Chester Ave", "LATITUDE": 39.944398, "LONGITUDE": -75.216558, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 89.0, "POI_CBG": 421010078002.0, "Median Dwell Time": 6.0, "Total Spend": 344.0, "Total Transactions": 28.0, "Total Customers": 16.0, "Median Spend per Transaction": 12.9, "Median Spend per Customer": 11.63 }, "geometry": { "type": "Point", "coordinates": [ -75.216558, 39.944398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm3-vpv", "Name": "Mesh Vintage", "Category": "Clothing Stores", "Address": "1820 E Passyunk Ave", "LATITUDE": 39.927333, "LONGITUDE": -75.166704, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 146.0, "Total Spend": 399.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166704, 39.927333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-phz-tjv", "Name": "Pizza express", "Category": "Restaurants and Other Eating Places", "Address": "3324 Kensington Ave", "LATITUDE": 39.998436, "LONGITUDE": -75.110266, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010192004.0, "Median Dwell Time": 2.0, "Total Spend": 1191.0, "Total Transactions": 69.0, "Total Customers": 54.0, "Median Spend per Transaction": 14.42, "Median Spend per Customer": 15.88 }, "geometry": { "type": "Point", "coordinates": [ -75.110266, 39.998436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-rhq", "Name": "Moonshine Philly", "Category": "Restaurants and Other Eating Places", "Address": "1825 E Moyamensing Ave", "LATITUDE": 39.925012, "LONGITUDE": -75.151601, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 32.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 31.0, "Total Spend": 13579.0, "Total Transactions": 214.0, "Total Customers": 171.0, "Median Spend per Transaction": 55.69, "Median Spend per Customer": 65.15 }, "geometry": { "type": "Point", "coordinates": [ -75.151601, 39.925012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7001 Roosevelt Blvd", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2020, "Total Visits": 848.0, "Total Visitors": 687.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 3.0, "Total Spend": 83554.0, "Total Transactions": 4988.0, "Total Customers": 2666.0, "Median Spend per Transaction": 13.3, "Median Spend per Customer": 20.69 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7901 Frankford Ave", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2020, "Total Visits": 312.0, "Total Visitors": 181.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 3.0, "Total Spend": 1242.0, "Total Transactions": 153.0, "Total Customers": 20.0, "Median Spend per Transaction": 6.84, "Median Spend per Customer": 12.63 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "Name": "Luigi's Pizza Fresca", "Category": "Restaurants and Other Eating Places", "Address": "2401 Fairmount Ave", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2020, "Total Visits": 308.0, "Total Visitors": 244.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 16.0, "Total Spend": 1978.0, "Total Transactions": 75.0, "Total Customers": 44.0, "Median Spend per Transaction": 18.52, "Median Spend per Customer": 26.32 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "1230 Arch St", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 155.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 280.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6602 Frankford Ave @ Magee Avenue", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 67.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 6.0, "Total Spend": 2443.0, "Total Transactions": 117.0, "Total Customers": 107.0, "Median Spend per Transaction": 15.72, "Median Spend per Customer": 17.46 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.067745, "LONGITUDE": -75.198, "DATE_RANGE_START": 2020, "Total Visits": 353.0, "Total Visitors": 294.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 10.0, "Total Spend": 10603.0, "Total Transactions": 403.0, "Total Customers": 242.0, "Median Spend per Transaction": 18.48, "Median Spend per Customer": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.198, 40.067745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "Name": "Drinkers Pub", "Category": "Restaurants and Other Eating Places", "Address": "1903 Chestnut St", "LATITUDE": 39.952101, "LONGITUDE": -75.17208, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 123.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 26.0, "Total Spend": 4463.0, "Total Transactions": 95.0, "Total Customers": 83.0, "Median Spend per Transaction": 35.34, "Median Spend per Customer": 34.34 }, "geometry": { "type": "Point", "coordinates": [ -75.17208, 39.952101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm7-qj9", "Name": "Cafe y Chocolate", "Category": "Restaurants and Other Eating Places", "Address": "1532 Snyder Ave", "LATITUDE": 39.924573, "LONGITUDE": -75.172685, "DATE_RANGE_START": 2020, "Total Visits": 304.0, "Total Visitors": 165.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 1273.0, "Total Spend": 1711.0, "Total Transactions": 52.0, "Total Customers": 46.0, "Median Spend per Transaction": 31.78, "Median Spend per Customer": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172685, 39.924573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6417 Harbison Ave", "LATITUDE": 40.032699, "LONGITUDE": -75.063191, "DATE_RANGE_START": 2020, "Total Visits": 494.0, "Total Visitors": 385.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 7.0, "Total Spend": 1391.0, "Total Transactions": 97.0, "Total Customers": 77.0, "Median Spend per Transaction": 12.35, "Median Spend per Customer": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.063191, 40.032699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "Name": "Crown Deli", "Category": "Restaurants and Other Eating Places", "Address": "3806 Morrell Ave", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2020, "Total Visits": 780.0, "Total Visitors": 488.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 9.0, "Total Spend": 1938.0, "Total Transactions": 66.0, "Total Customers": 58.0, "Median Spend per Transaction": 33.54, "Median Spend per Customer": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "Name": "Bleu Martini", "Category": "Restaurants and Other Eating Places", "Address": "24 S 2nd St", "LATITUDE": 39.949349, "LONGITUDE": -75.144205, "DATE_RANGE_START": 2020, "Total Visits": 782.0, "Total Visitors": 526.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 46.0, "Total Spend": 8956.0, "Total Transactions": 129.0, "Total Customers": 119.0, "Median Spend per Transaction": 45.76, "Median Spend per Customer": 54.63 }, "geometry": { "type": "Point", "coordinates": [ -75.144205, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-q75", "Name": "Stacy's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7856 Haverford Ave", "LATITUDE": 39.979079, "LONGITUDE": -75.268686, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 69.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 9.0, "Total Spend": 449.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 23.18, "Median Spend per Customer": 35.28 }, "geometry": { "type": "Point", "coordinates": [ -75.268686, 39.979079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "Name": "Penrose Diner", "Category": "Restaurants and Other Eating Places", "Address": "2016 Penrose Ave", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2020, "Total Visits": 601.0, "Total Visitors": 472.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 37.0, "Total Spend": 9968.0, "Total Transactions": 296.0, "Total Customers": 230.0, "Median Spend per Transaction": 31.29, "Median Spend per Customer": 36.24 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-mzf", "Name": "4 Seasons", "Category": "Restaurants and Other Eating Places", "Address": "3503 B St", "LATITUDE": 40.003248, "LONGITUDE": -75.124064, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 3.0, "Total Spend": 2327.0, "Total Transactions": 187.0, "Total Customers": 147.0, "Median Spend per Transaction": 6.61, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124064, 40.003248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "Name": "Tio Flores", "Category": "Restaurants and Other Eating Places", "Address": "1600 South St", "LATITUDE": 39.94381, "LONGITUDE": -75.168972, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 147.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 13.0, "Total Spend": 22206.0, "Total Transactions": 459.0, "Total Customers": 377.0, "Median Spend per Transaction": 43.95, "Median Spend per Customer": 48.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168972, 39.94381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9p-pvz", "Name": "Da Franco Pizzeria & Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "742 Red Lion Rd", "LATITUDE": 40.105135, "LONGITUDE": -75.033737, "DATE_RANGE_START": 2020, "Total Visits": 373.0, "Total Visitors": 262.0, "POI_CBG": 421010356022.0, "Median Dwell Time": 19.0, "Total Spend": 929.0, "Total Transactions": 38.0, "Total Customers": 24.0, "Median Spend per Transaction": 22.95, "Median Spend per Customer": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.033737, 40.105135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-zvf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "800 S Broad St", "LATITUDE": 39.940697, "LONGITUDE": -75.166565, "DATE_RANGE_START": 2020, "Total Visits": 1582.0, "Total Visitors": 1175.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 8.0, "Total Spend": 13290.0, "Total Transactions": 895.0, "Total Customers": 689.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.166565, 39.940697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "942 Market St", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 145.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 8.0, "Total Spend": 4907.0, "Total Transactions": 387.0, "Total Customers": 286.0, "Median Spend per Transaction": 10.54, "Median Spend per Customer": 11.48 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-k75", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9745 Roosevelt Blvd # 5130", "LATITUDE": 40.08259, "LONGITUDE": -75.022988, "DATE_RANGE_START": 2020, "Total Visits": 14526.0, "Total Visitors": 9359.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 22.0, "Total Spend": 1149.0, "Total Transactions": 129.0, "Total Customers": 105.0, "Median Spend per Transaction": 7.78, "Median Spend per Customer": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.022988, 40.08259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-tgk", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "5520 Whitaker Ave Ste 10", "LATITUDE": 40.035436, "LONGITUDE": -75.099754, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 73.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 4.0, "Total Spend": 91.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 5.35, "Median Spend per Customer": 5.35 }, "geometry": { "type": "Point", "coordinates": [ -75.099754, 40.035436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "Name": "Main Street Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4444 Main St", "LATITUDE": 40.026391, "LONGITUDE": -75.226268, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 89.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 20.0, "Total Spend": 2651.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 61.54, "Median Spend per Customer": 83.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226268, 40.026391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "Name": "A Z Budget", "Category": "Department Stores", "Address": "2914 N Broad St", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 75.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 14.0, "Total Spend": 72.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3141 Frankford Ave Spc 41", "LATITUDE": 39.992401, "LONGITUDE": -75.110955, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 220.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 10.0, "Total Spend": 145.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 6.44, "Median Spend per Customer": 6.44 }, "geometry": { "type": "Point", "coordinates": [ -75.110955, 39.992401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pm9-tqf", "Name": "Jefferson Pharmacy", "Category": "Health and Personal Care Stores", "Address": "833 Chestnut St Ste 125", "LATITUDE": 39.949885, "LONGITUDE": -75.154967, "DATE_RANGE_START": 2020, "Total Visits": 3676.0, "Total Visitors": 2269.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 85.0, "Total Spend": 4623.0, "Total Transactions": 163.0, "Total Customers": 143.0, "Median Spend per Transaction": 14.01, "Median Spend per Customer": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154967, 39.949885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "Name": "Johns Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "128 W Chelten Ave", "LATITUDE": 40.03316, "LONGITUDE": -75.177034, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 135.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 7.0, "Total Spend": 8346.0, "Total Transactions": 282.0, "Total Customers": 214.0, "Median Spend per Transaction": 21.72, "Median Spend per Customer": 27.67 }, "geometry": { "type": "Point", "coordinates": [ -75.177034, 40.03316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-s89", "Name": "SuitSupply", "Category": "Clothing Stores", "Address": "1601 Locust St", "LATITUDE": 39.948725, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2020, "Total Visits": 385.0, "Total Visitors": 304.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 2.0, "Total Spend": 2825.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 99.0, "Median Spend per Customer": 99.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.948725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "Name": "Tommy Hilfiger", "Category": "Clothing Stores", "Address": "1800 Franklin Mills Cir", "LATITUDE": 40.089952, "LONGITUDE": -74.962035, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 71.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 9082.0, "Total Transactions": 137.0, "Total Customers": 117.0, "Median Spend per Transaction": 56.97, "Median Spend per Customer": 59.25 }, "geometry": { "type": "Point", "coordinates": [ -74.962035, 40.089952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-5xq", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8920 Frankford Ave", "LATITUDE": 40.051379, "LONGITUDE": -75.010945, "DATE_RANGE_START": 2020, "Total Visits": 514.0, "Total Visitors": 381.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 7.0, "Total Spend": 507.0, "Total Transactions": 40.0, "Total Customers": 36.0, "Median Spend per Transaction": 11.84, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010945, 40.051379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "Name": "Crunchik'n", "Category": "Restaurants and Other Eating Places", "Address": "1428 Cecil B Moore Ave", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2020, "Total Visits": 981.0, "Total Visitors": 683.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 12.0, "Total Spend": 167.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 11.48, "Median Spend per Customer": 11.48 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-5zz", "Name": "The Dining Car & Market", "Category": "Restaurants and Other Eating Places", "Address": "8826 Frankford Ave", "LATITUDE": 40.050127, "LONGITUDE": -75.01115, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 173.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 222.0, "Total Spend": 1226.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 42.71, "Median Spend per Customer": 42.71 }, "geometry": { "type": "Point", "coordinates": [ -75.01115, 40.050127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "Name": "Sky Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1122 38 Washington Ave Ste B", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 87.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 5.0, "Total Spend": 3204.0, "Total Transactions": 81.0, "Total Customers": 71.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2715 S Front St", "LATITUDE": 39.91305, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2020, "Total Visits": 459.0, "Total Visitors": 357.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 9.0, "Total Spend": 1757.0, "Total Transactions": 99.0, "Total Customers": 66.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 14.64 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.91305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "Name": "Kitchen Kapers", "Category": "Home Furnishings Stores", "Address": "8530 Germantown Ave", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 218.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 21.0, "Total Spend": 626.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1032 Pine St", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2020, "Total Visits": 1173.0, "Total Visitors": 715.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 382.0, "Total Spend": 3423.0, "Total Transactions": 77.0, "Total Customers": 75.0, "Median Spend per Transaction": 28.31, "Median Spend per Customer": 30.35 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "300 E Erie Ave", "LATITUDE": 40.006873, "LONGITUDE": -75.123103, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 149.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 3.0, "Total Spend": 4481.0, "Total Transactions": 607.0, "Total Customers": 306.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.123103, 40.006873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "Name": "Pizza Boli's", "Category": "Restaurants and Other Eating Places", "Address": "3883 Glendale St", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010190001.0, "Median Dwell Time": 1.0, "Total Spend": 343.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 16.72, "Median Spend per Customer": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm6-gkz", "Name": "South View Pizza", "Category": "Restaurants and Other Eating Places", "Address": "367 Durfor St", "LATITUDE": 39.919441, "LONGITUDE": -75.153896, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 20.0, "POI_CBG": 421010042024.0, "Median Dwell Time": 48.0, "Total Spend": 893.0, "Total Transactions": 44.0, "Total Customers": 28.0, "Median Spend per Transaction": 10.45, "Median Spend per Customer": 27.15 }, "geometry": { "type": "Point", "coordinates": [ -75.153896, 39.919441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmb-gkz", "Name": "Effie's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1127 Pine St", "LATITUDE": 39.945113, "LONGITUDE": -75.160611, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 34.0, "Total Spend": 4249.0, "Total Transactions": 54.0, "Total Customers": 54.0, "Median Spend per Transaction": 78.96, "Median Spend per Customer": 78.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160611, 39.945113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgm-68v", "Name": "Foghorn", "Category": "Restaurants and Other Eating Places", "Address": "4213 Ridge Ave", "LATITUDE": 40.009232, "LONGITUDE": -75.194181, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 24.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 1.0, "Total Spend": 1843.0, "Total Transactions": 73.0, "Total Customers": 64.0, "Median Spend per Transaction": 24.84, "Median Spend per Customer": 26.73 }, "geometry": { "type": "Point", "coordinates": [ -75.194181, 40.009232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "Name": "Hoagie Factory", "Category": "Restaurants and Other Eating Places", "Address": "2121 72nd Ave", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 24.0, "POI_CBG": 421010266007.0, "Median Dwell Time": 207.0, "Total Spend": 2743.0, "Total Transactions": 159.0, "Total Customers": 107.0, "Median Spend per Transaction": 13.77, "Median Spend per Customer": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-p9z", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "214 S 40th St", "LATITUDE": 39.953614, "LONGITUDE": -75.202983, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 26.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 1.0, "Total Spend": 2786.0, "Total Transactions": 147.0, "Total Customers": 131.0, "Median Spend per Transaction": 16.09, "Median Spend per Customer": 16.09 }, "geometry": { "type": "Point", "coordinates": [ -75.202983, 39.953614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pgg-qs5", "Name": "32nd Street Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3200 W Allegheny Ave", "LATITUDE": 40.005082, "LONGITUDE": -75.181898, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 28.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 90.0, "Total Spend": 291.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.181898, 40.005082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-w8v", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955482, "LONGITUDE": -75.18177, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 54.0, "Total Spend": 7034.0, "Total Transactions": 746.0, "Total Customers": 625.0, "Median Spend per Transaction": 8.41, "Median Spend per Customer": 9.28 }, "geometry": { "type": "Point", "coordinates": [ -75.18177, 39.955482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pgb-tsq", "Name": "Spring Garden Flowers", "Category": "Florists", "Address": "1209 Ridge Ave", "LATITUDE": 39.962555, "LONGITUDE": -75.157889, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 113.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 2.0, "Total Spend": 4897.0, "Total Transactions": 69.0, "Total Customers": 66.0, "Median Spend per Transaction": 42.07, "Median Spend per Customer": 42.07 }, "geometry": { "type": "Point", "coordinates": [ -75.157889, 39.962555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2290 W Oregon Ave", "LATITUDE": 39.91709, "LONGITUDE": -75.185434, "DATE_RANGE_START": 2020, "Total Visits": 633.0, "Total Visitors": 548.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 11.0, "Total Spend": 12259.0, "Total Transactions": 335.0, "Total Customers": 296.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 26.82 }, "geometry": { "type": "Point", "coordinates": [ -75.185434, 39.91709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "Name": "Love Vape", "Category": "Other Miscellaneous Store Retailers", "Address": "608 S 5th St", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 77.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 4.0, "Total Spend": 2185.0, "Total Transactions": 64.0, "Total Customers": 52.0, "Median Spend per Transaction": 26.13, "Median Spend per Customer": 40.48 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1501 N 52nd St", "LATITUDE": 39.977256, "LONGITUDE": -75.226088, "DATE_RANGE_START": 2020, "Total Visits": 212.0, "Total Visitors": 165.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 5.0, "Total Spend": 1809.0, "Total Transactions": 282.0, "Total Customers": 171.0, "Median Spend per Transaction": 6.03, "Median Spend per Customer": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226088, 39.977256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "Name": "Alexa Pharmacy", "Category": "Health and Personal Care Stores", "Address": "919 Tyson Ave", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010308003.0, "Median Dwell Time": 5.0, "Total Spend": 2052.0, "Total Transactions": 60.0, "Total Customers": 54.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "Name": "Ristorante Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1915 S Broad St", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 1.0, "Total Spend": 2496.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 78.4, "Median Spend per Customer": 95.85 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "Name": "Boostin' Bowls", "Category": "Restaurants and Other Eating Places", "Address": "100 Levering St", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 41.0, "Total Spend": 4758.0, "Total Transactions": 286.0, "Total Customers": 206.0, "Median Spend per Transaction": 12.68, "Median Spend per Customer": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7w-59f", "Name": "Espresso Cafe & Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "7814 Castor Ave", "LATITUDE": 40.058604, "LONGITUDE": -75.059473, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010336002.0, "Median Dwell Time": 2.0, "Total Spend": 498.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 125.5, "Median Spend per Customer": 125.5 }, "geometry": { "type": "Point", "coordinates": [ -75.059473, 40.058604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "Name": "Morimoto", "Category": "Restaurants and Other Eating Places", "Address": "723 Chestnut St", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 77.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 148.0, "Total Spend": 6326.0, "Total Transactions": 48.0, "Total Customers": 42.0, "Median Spend per Transaction": 96.69, "Median Spend per Customer": 102.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-f75", "Name": "Beer City", "Category": "Grocery Stores", "Address": "701 E Girard Ave", "LATITUDE": 39.972301, "LONGITUDE": -75.125884, "DATE_RANGE_START": 2020, "Total Visits": 399.0, "Total Visitors": 210.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 67.0, "Total Spend": 21257.0, "Total Transactions": 754.0, "Total Customers": 472.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 30.72 }, "geometry": { "type": "Point", "coordinates": [ -75.125884, 39.972301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4530 N 5th St", "LATITUDE": 40.02088, "LONGITUDE": -75.134701, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 220.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 5.0, "Total Spend": 1260.0, "Total Transactions": 66.0, "Total Customers": 44.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 18.81 }, "geometry": { "type": "Point", "coordinates": [ -75.134701, 40.02088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2020, "Total Visits": 1882.0, "Total Visitors": 1602.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 17.0, "Total Spend": 44454.0, "Total Transactions": 1193.0, "Total Customers": 1044.0, "Median Spend per Transaction": 24.27, "Median Spend per Customer": 27.92 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9990 Bustleton Ave", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2020, "Total Visits": 647.0, "Total Visitors": 570.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 6.0, "Total Spend": 12407.0, "Total Transactions": 248.0, "Total Customers": 183.0, "Median Spend per Transaction": 34.52, "Median Spend per Customer": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9k-t9z", "Name": "Millevoi Brothers", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2075 Byberry Rd", "LATITUDE": 40.108397, "LONGITUDE": -75.000602, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 197.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 10.0, "Total Spend": 6315.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 381.58, "Median Spend per Customer": 320.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000602, 40.108397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-yjv", "Name": "LL Flooring", "Category": "Home Furnishings Stores", "Address": "1530 S Columbus Blvd", "LATITUDE": 39.927832, "LONGITUDE": -75.145672, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 250.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 2.0, "Total Spend": 1838.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 22.66, "Median Spend per Customer": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.145672, 39.927832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "Name": "S and J Seafood", "Category": "Specialty Food Stores", "Address": "713 S 52nd St", "LATITUDE": 39.948539, "LONGITUDE": -75.227093, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 101.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 20.0, "Total Spend": 3389.0, "Total Transactions": 73.0, "Total Customers": 64.0, "Median Spend per Transaction": 34.54, "Median Spend per Customer": 36.88 }, "geometry": { "type": "Point", "coordinates": [ -75.227093, 39.948539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22n@63s-dw9-7nq", "Name": "Sunglass Hut", "Category": "Health and Personal Care Stores", "Address": "8500 Essington Ave Spc M 22", "LATITUDE": 39.873547, "LONGITUDE": -75.247282, "DATE_RANGE_START": 2020, "Total Visits": 2126.0, "Total Visitors": 1949.0, "POI_CBG": 420459800001.0, "Median Dwell Time": 36.0, "Total Spend": 1309.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 329.82, "Median Spend per Customer": 329.82 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.873547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7v-skf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1560 Cottman Ave", "LATITUDE": 40.055128, "LONGITUDE": -75.073724, "DATE_RANGE_START": 2020, "Total Visits": 1395.0, "Total Visitors": 939.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 4.0, "Total Spend": 1777.0, "Total Transactions": 93.0, "Total Customers": 56.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 25.14 }, "geometry": { "type": "Point", "coordinates": [ -75.073724, 40.055128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "Name": "Express Fuel", "Category": "Gasoline Stations", "Address": "5201 Oxford Ave", "LATITUDE": 40.026572, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2020, "Total Visits": 193.0, "Total Visitors": 149.0, "POI_CBG": 421010302004.0, "Median Dwell Time": 3.0, "Total Spend": 3981.0, "Total Transactions": 278.0, "Total Customers": 189.0, "Median Spend per Transaction": 12.28, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "Name": "Burlington", "Category": "Clothing Stores", "Address": "3401 Aramingo Ave", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2020, "Total Visits": 889.0, "Total Visitors": 756.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 14.0, "Total Spend": 3595.0, "Total Transactions": 66.0, "Total Customers": 46.0, "Median Spend per Transaction": 41.95, "Median Spend per Customer": 56.92 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1020 S Broad St", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 351.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 6.0, "Total Spend": 51299.0, "Total Transactions": 1606.0, "Total Customers": 929.0, "Median Spend per Transaction": 19.78, "Median Spend per Customer": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-gkz", "Name": "Nifty Fifty's", "Category": "Restaurants and Other Eating Places", "Address": "2491 Grant Ave", "LATITUDE": 40.079457, "LONGITUDE": -75.025402, "DATE_RANGE_START": 2020, "Total Visits": 351.0, "Total Visitors": 304.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 37.0, "Total Spend": 3939.0, "Total Transactions": 129.0, "Total Customers": 121.0, "Median Spend per Transaction": 25.57, "Median Spend per Customer": 25.57 }, "geometry": { "type": "Point", "coordinates": [ -75.025402, 40.079457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-33q", "Name": "Capital Auto Auction", "Category": "Automobile Dealers", "Address": "5135 Bleigh Ave", "LATITUDE": 40.025317, "LONGITUDE": -75.026634, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 83.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 44.0, "Total Spend": 1399.0, "Total Transactions": 34.0, "Total Customers": 32.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.026634, 40.025317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgf-kj9", "Name": "Wheel Fun Rentals Boathouse Row", "Category": "Other Motor Vehicle Dealers", "Address": "1 Boathouse Row", "LATITUDE": 39.969459, "LONGITUDE": -75.187508, "DATE_RANGE_START": 2020, "Total Visits": 87.0, "Total Visitors": 79.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 11.0, "Total Spend": 5876.0, "Total Transactions": 181.0, "Total Customers": 165.0, "Median Spend per Transaction": 29.16, "Median Spend per Customer": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.187508, 39.969459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3301 Aramingo Ave", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 77.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 522.0, "Total Spend": 4017.0, "Total Transactions": 99.0, "Total Customers": 77.0, "Median Spend per Transaction": 23.53, "Median Spend per Customer": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7v-f2k", "Name": "Bob's Discount Furniture", "Category": "Furniture Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051318, "LONGITUDE": -75.065293, "DATE_RANGE_START": 2020, "Total Visits": 2882.0, "Total Visitors": 2354.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 21.0, "Total Spend": 21782.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 1115.1, "Median Spend per Customer": 1115.1 }, "geometry": { "type": "Point", "coordinates": [ -75.065293, 40.051318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dy9", "Name": "Firestone Complete Auto Care", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7320 Elgin Ave", "LATITUDE": 40.052472, "LONGITUDE": -75.06646, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 95.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 58.0, "Total Spend": 1281.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 19.3, "Median Spend per Customer": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.06646, 40.052472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwg-f4v", "Name": "Lucky Star Food Market", "Category": "Grocery Stores", "Address": "7329 Elmwood Ave", "LATITUDE": 39.913515, "LONGITUDE": -75.242295, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 157.0, "POI_CBG": 421010060004.0, "Median Dwell Time": 4.0, "Total Spend": 3072.0, "Total Transactions": 272.0, "Total Customers": 145.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 11.79 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.913515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6900 Lindbergh Blvd", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2020, "Total Visits": 488.0, "Total Visitors": 375.0, "POI_CBG": 421010061001.0, "Median Dwell Time": 7.0, "Total Spend": 2949.0, "Total Transactions": 198.0, "Total Customers": 79.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2001 Pennsylvania Ave", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2020, "Total Visits": 2108.0, "Total Visitors": 1276.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 11.0, "Total Spend": 250419.0, "Total Transactions": 6765.0, "Total Customers": 3706.0, "Median Spend per Transaction": 24.93, "Median Spend per Customer": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1500 Chestnut St", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2020, "Total Visits": 1213.0, "Total Visitors": 768.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 94.0, "Total Spend": 20204.0, "Total Transactions": 407.0, "Total Customers": 345.0, "Median Spend per Transaction": 29.03, "Median Spend per Customer": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Spring Garden St", "LATITUDE": 39.962408, "LONGITUDE": -75.163643, "DATE_RANGE_START": 2020, "Total Visits": 240.0, "Total Visitors": 131.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 13.0, "Total Spend": 5647.0, "Total Transactions": 996.0, "Total Customers": 427.0, "Median Spend per Transaction": 4.71, "Median Spend per Customer": 7.96 }, "geometry": { "type": "Point", "coordinates": [ -75.163643, 39.962408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8000 Pine Rd", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2020, "Total Visits": 492.0, "Total Visitors": 375.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 2.0, "Total Spend": 9830.0, "Total Transactions": 1489.0, "Total Customers": 673.0, "Median Spend per Transaction": 5.29, "Median Spend per Customer": 8.72 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5mk", "Name": "Fogo de Chão", "Category": "Restaurants and Other Eating Places", "Address": "1337 Chestnut St", "LATITUDE": 39.950928, "LONGITUDE": -75.162963, "DATE_RANGE_START": 2020, "Total Visits": 9637.0, "Total Visitors": 6374.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 28.0, "Total Spend": 5138.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 116.11, "Median Spend per Customer": 116.11 }, "geometry": { "type": "Point", "coordinates": [ -75.162963, 39.950928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9w-q4v", "Name": "Cafe Michelangelo", "Category": "Restaurants and Other Eating Places", "Address": "11901 Bustleton Ave", "LATITUDE": 40.12143, "LONGITUDE": -75.016007, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 141.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 51.0, "Total Spend": 7373.0, "Total Transactions": 143.0, "Total Customers": 113.0, "Median Spend per Transaction": 38.91, "Median Spend per Customer": 50.22 }, "geometry": { "type": "Point", "coordinates": [ -75.016007, 40.12143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "Name": "Rice & Mix", "Category": "Restaurants and Other Eating Places", "Address": "128 S 12th St", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 87.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 5.0, "Total Spend": 1848.0, "Total Transactions": 101.0, "Total Customers": 64.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "Name": "DiNapoli Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Front St", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 171.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 10.0, "Total Spend": 1789.0, "Total Transactions": 62.0, "Total Customers": 48.0, "Median Spend per Transaction": 27.88, "Median Spend per Customer": 27.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1000 S Broad St", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2020, "Total Visits": 552.0, "Total Visitors": 443.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 7.0, "Total Spend": 7510.0, "Total Transactions": 582.0, "Total Customers": 385.0, "Median Spend per Transaction": 11.73, "Median Spend per Customer": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "161 W Chelten Ave", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 111.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 4.0, "Total Spend": 390.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 9.98, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "322 N Broad St", "LATITUDE": 39.959088, "LONGITUDE": -75.1625, "DATE_RANGE_START": 2020, "Total Visits": 1280.0, "Total Visitors": 570.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 297.0, "Total Spend": 5859.0, "Total Transactions": 373.0, "Total Customers": 240.0, "Median Spend per Transaction": 12.45, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.1625, 39.959088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "8743 Frankford Ave", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 87.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 296.0, "Total Spend": 431.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 37.25, "Median Spend per Customer": 37.25 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-t7q", "Name": "Paprica Modern Mediterranean Grill", "Category": "Restaurants and Other Eating Places", "Address": "811 Sansom St", "LATITUDE": 39.949133, "LONGITUDE": -75.154633, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 105.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 58.0, "Total Spend": 411.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 25.15, "Median Spend per Customer": 50.29 }, "geometry": { "type": "Point", "coordinates": [ -75.154633, 39.949133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5750 Baltimore Ave", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2020, "Total Visits": 189.0, "Total Visitors": 161.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 10.0, "Total Spend": 897.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 43.18, "Median Spend per Customer": 46.84 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p72-5s5", "Name": "Three Monkeys Cafe", "Category": "Restaurants and Other Eating Places", "Address": "9645 James St", "LATITUDE": 40.053948, "LONGITUDE": -74.983889, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 177.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 41.0, "Total Spend": 344.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 56.39, "Median Spend per Customer": 56.39 }, "geometry": { "type": "Point", "coordinates": [ -74.983889, 40.053948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6114 Lancaster Ave", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 167.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 5.0, "Total Spend": 756.0, "Total Transactions": 54.0, "Total Customers": 46.0, "Median Spend per Transaction": 11.97, "Median Spend per Customer": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1512 Walnut St", "LATITUDE": 39.949499, "LONGITUDE": -75.166653, "DATE_RANGE_START": 2020, "Total Visits": 447.0, "Total Visitors": 361.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 8.0, "Total Spend": 6144.0, "Total Transactions": 518.0, "Total Customers": 381.0, "Median Spend per Transaction": 10.7, "Median Spend per Customer": 11.62 }, "geometry": { "type": "Point", "coordinates": [ -75.166653, 39.949499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956616, "LONGITUDE": -75.194139, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 131.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 5.0, "Total Spend": 7618.0, "Total Transactions": 1256.0, "Total Customers": 536.0, "Median Spend per Transaction": 4.74, "Median Spend per Customer": 7.92 }, "geometry": { "type": "Point", "coordinates": [ -75.194139, 39.956616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6620 N Broad St", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 222.0, "POI_CBG": 421010268003.0, "Median Dwell Time": 2.0, "Total Spend": 4485.0, "Total Transactions": 657.0, "Total Customers": 282.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm9-y9z", "Name": "Lil' Pop Shop", "Category": "Restaurants and Other Eating Places", "Address": "534 S 4th St", "LATITUDE": 39.94178, "LONGITUDE": -75.149245, "DATE_RANGE_START": 2020, "Total Visits": 464.0, "Total Visitors": 437.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 5.0, "Total Spend": 739.0, "Total Transactions": 83.0, "Total Customers": 75.0, "Median Spend per Transaction": 7.99, "Median Spend per Customer": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.94178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg2-zs5", "Name": "Mount Airy Tap Room", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "300 W Mount Pleasant Ave", "LATITUDE": 40.053904, "LONGITUDE": -75.194197, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010388004.0, "Median Dwell Time": 6.0, "Total Spend": 9402.0, "Total Transactions": 157.0, "Total Customers": 107.0, "Median Spend per Transaction": 54.92, "Median Spend per Customer": 72.32 }, "geometry": { "type": "Point", "coordinates": [ -75.194197, 40.053904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-w49", "Name": "The Royal Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "272 S 20th St", "LATITUDE": 39.948373, "LONGITUDE": -75.174503, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 12.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 577.0, "Total Spend": 181.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 45.7, "Median Spend per Customer": 45.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174503, 39.948373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-ph6-gzf", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1913 N 54th St", "LATITUDE": 39.986348, "LONGITUDE": -75.231742, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 14.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 109.0, "Total Spend": 3328.0, "Total Transactions": 131.0, "Total Customers": 117.0, "Median Spend per Transaction": 24.52, "Median Spend per Customer": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.231742, 39.986348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "Name": "Sunglass Hut", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 258", "LATITUDE": 39.952036, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 5.0, "Total Spend": 821.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 206.82, "Median Spend per Customer": 206.82 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p9w-dvz", "Name": "Angelo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "11036 Rennard St", "LATITUDE": 40.121593, "LONGITUDE": -75.03516, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010358002.0, "Median Dwell Time": 4.0, "Total Spend": 4776.0, "Total Transactions": 175.0, "Total Customers": 143.0, "Median Spend per Transaction": 24.48, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03516, 40.121593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-7t9", "Name": "Rybread", "Category": "Restaurants and Other Eating Places", "Address": "1711 Fairmount Ave", "LATITUDE": 39.967542, "LONGITUDE": -75.176022, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 12.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 4.0, "Total Spend": 150.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176022, 39.967542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-t5f", "Name": "Golden Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "679 N Broad St", "LATITUDE": 39.965831, "LONGITUDE": -75.160375, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 26.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 21.0, "Total Spend": 973.0, "Total Transactions": 38.0, "Total Customers": 30.0, "Median Spend per Transaction": 21.12, "Median Spend per Customer": 21.12 }, "geometry": { "type": "Point", "coordinates": [ -75.160375, 39.965831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8m-v2k", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6438 Sackett St Unit 19", "LATITUDE": 40.029571, "LONGITUDE": -75.058564, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 1.0, "Total Spend": 1576.0, "Total Transactions": 177.0, "Total Customers": 115.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 9.32 }, "geometry": { "type": "Point", "coordinates": [ -75.058564, 40.029571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pp2-47q", "Name": "Tinys Bottle Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "3124 Richmond St", "LATITUDE": 39.982331, "LONGITUDE": -75.103167, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 36.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 350.0, "Total Spend": 2222.0, "Total Transactions": 46.0, "Total Customers": 36.0, "Median Spend per Transaction": 53.5, "Median Spend per Customer": 49.61 }, "geometry": { "type": "Point", "coordinates": [ -75.103167, 39.982331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "Name": "King Food Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7426 Frankford Ave", "LATITUDE": 40.038528, "LONGITUDE": -75.036845, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 44.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 33.0, "Total Spend": 943.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 22.85, "Median Spend per Customer": 16.96 }, "geometry": { "type": "Point", "coordinates": [ -75.036845, 40.038528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-k75", "Name": "Lendy's Food Market", "Category": "Grocery Stores", "Address": "617 W York St", "LATITUDE": 39.988027, "LONGITUDE": -75.143801, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010164004.0, "Median Dwell Time": 1.0, "Total Spend": 245.0, "Total Transactions": 16.0, "Total Customers": 10.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.143801, 39.988027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-4gk", "Name": "I Heart Cambodia", "Category": "Restaurants and Other Eating Places", "Address": "2207 S 7th St", "LATITUDE": 39.921392, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010041012.0, "Median Dwell Time": 27.0, "Total Spend": 455.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 25.81, "Median Spend per Customer": 33.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.921392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "Name": "Menagerie Coffee", "Category": "Restaurants and Other Eating Places", "Address": "18 S 3rd St", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 14.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 48.0, "Total Spend": 2401.0, "Total Transactions": 276.0, "Total Customers": 145.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6001 Lancaster Ave", "LATITUDE": 39.983085, "LONGITUDE": -75.241704, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 32.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 66.0, "Total Spend": 14923.0, "Total Transactions": 578.0, "Total Customers": 429.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 27.95 }, "geometry": { "type": "Point", "coordinates": [ -75.241704, 39.983085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "Name": "City View Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1434 Cecil B Moore Ave", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 48.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 14.0, "Total Spend": 28306.0, "Total Transactions": 1219.0, "Total Customers": 873.0, "Median Spend per Transaction": 19.21, "Median Spend per Customer": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "Name": "Bottle Bar East", "Category": "Restaurants and Other Eating Places", "Address": "1308 Frankford Ave", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 50.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 5.0, "Total Spend": 36392.0, "Total Transactions": 1000.0, "Total Customers": 584.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "Name": "Lombard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "542 Lombard St", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010010012.0, "Median Dwell Time": null, "Total Spend": 851.0, "Total Transactions": 141.0, "Total Customers": 85.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-wzf", "Name": "Mayfair Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7424 Frankford Ave", "LATITUDE": 40.038525, "LONGITUDE": -75.036899, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 3.0, "Total Spend": 243.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 18.65, "Median Spend per Customer": 18.73 }, "geometry": { "type": "Point", "coordinates": [ -75.036899, 40.038525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-j35", "Name": "Paddy's Old City Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "228 Race St", "LATITUDE": 39.95373, "LONGITUDE": -75.143964, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 40.0, "Total Spend": 1191.0, "Total Transactions": 34.0, "Total Customers": 16.0, "Median Spend per Transaction": 32.08, "Median Spend per Customer": 30.46 }, "geometry": { "type": "Point", "coordinates": [ -75.143964, 39.95373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p9p-z2k", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9979 Bustleton Ave", "LATITUDE": 40.101427, "LONGITUDE": -75.028593, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 1.0, "Total Spend": 145.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 25.89, "Median Spend per Customer": 36.42 }, "geometry": { "type": "Point", "coordinates": [ -75.028593, 40.101427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "Name": "Le Meridien", "Category": "Traveler Accommodation", "Address": "1421 Arch St", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2020, "Total Visits": 653.0, "Total Visitors": 316.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 115.0, "Total Spend": 6717.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 217.81, "Median Spend per Customer": 207.34 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pnx-c89", "Name": "Cheu Fishtown", "Category": "Restaurants and Other Eating Places", "Address": "1416 Frankford Ave", "LATITUDE": 39.972312, "LONGITUDE": -75.134585, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 252.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 51.0, "Total Spend": 528.0, "Total Transactions": 22.0, "Total Customers": 4.0, "Median Spend per Transaction": 20.28, "Median Spend per Customer": 133.06 }, "geometry": { "type": "Point", "coordinates": [ -75.134585, 39.972312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-3bk", "Name": "Founded Coffee & Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3300 Henry Ave", "LATITUDE": 40.012531, "LONGITUDE": -75.183909, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010207003.0, "Median Dwell Time": 337.0, "Total Spend": 2801.0, "Total Transactions": 159.0, "Total Customers": 107.0, "Median Spend per Transaction": 13.26, "Median Spend per Customer": 21.19 }, "geometry": { "type": "Point", "coordinates": [ -75.183909, 40.012531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "Name": "Pasqually's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "200 S 43rd St", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 44.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 5.0, "Total Spend": 35231.0, "Total Transactions": 1407.0, "Total Customers": 744.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 32.66 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tn5", "Name": "Unclaimed Diamonds", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "113 S 8th St", "LATITUDE": 39.949045, "LONGITUDE": -75.153751, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 62.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 31.0, "Total Spend": 22404.0, "Total Transactions": 40.0, "Total Customers": 34.0, "Median Spend per Transaction": 400.0, "Median Spend per Customer": 400.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153751, 39.949045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pj6-6hq", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "300 E Godfrey Ave", "LATITUDE": 40.042687, "LONGITUDE": -75.109486, "DATE_RANGE_START": 2020, "Total Visits": 181.0, "Total Visitors": 87.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 90.0, "Total Spend": 3277.0, "Total Transactions": 46.0, "Total Customers": 46.0, "Median Spend per Transaction": 60.35, "Median Spend per Customer": 60.35 }, "geometry": { "type": "Point", "coordinates": [ -75.109486, 40.042687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3675 Market St", "LATITUDE": 39.956525, "LONGITUDE": -75.195111, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 36.0, "Total Spend": 1507.0, "Total Transactions": 175.0, "Total Customers": 129.0, "Median Spend per Transaction": 6.73, "Median Spend per Customer": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.195111, 39.956525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1201 S Broad St", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 66.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 211.0, "Total Spend": 3722.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 66.48, "Median Spend per Customer": 127.35 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6801 Frankford Ave", "LATITUDE": 40.032157, "LONGITUDE": -75.050449, "DATE_RANGE_START": 2020, "Total Visits": 613.0, "Total Visitors": 482.0, "POI_CBG": 421010325001.0, "Median Dwell Time": 9.0, "Total Spend": 3715.0, "Total Transactions": 206.0, "Total Customers": 133.0, "Median Spend per Transaction": 11.56, "Median Spend per Customer": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.050449, 40.032157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-5vf", "Name": "Wellcare Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2220 Cottman Ave Fl 1", "LATITUDE": 40.048598, "LONGITUDE": -75.061857, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 101.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 6.0, "Total Spend": 1135.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 20.29, "Median Spend per Customer": 62.6 }, "geometry": { "type": "Point", "coordinates": [ -75.061857, 40.048598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y7q", "Name": "Day N Nite", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "908 Cherry St", "LATITUDE": 39.954252, "LONGITUDE": -75.1549, "DATE_RANGE_START": 2020, "Total Visits": 2451.0, "Total Visitors": 1481.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 201.0, "Total Spend": 1763.0, "Total Transactions": 30.0, "Total Customers": 22.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1549, 39.954252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgj-cbk", "Name": "Pazzo Pazzo", "Category": "Restaurants and Other Eating Places", "Address": "1614 Cecil B Moore Ave", "LATITUDE": 39.979011, "LONGITUDE": -75.161757, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 147.0, "POI_CBG": 421010147001.0, "Median Dwell Time": 185.0, "Total Spend": 2727.0, "Total Transactions": 193.0, "Total Customers": 151.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 12.92 }, "geometry": { "type": "Point", "coordinates": [ -75.161757, 39.979011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pgb-s5z", "Name": "Angry Deekin Ribs", "Category": "Restaurants and Other Eating Places", "Address": "1019 Spring Garden St", "LATITUDE": 39.961929, "LONGITUDE": -75.155204, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 244.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 86.0, "Total Spend": 248.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 62.58, "Median Spend per Customer": 62.58 }, "geometry": { "type": "Point", "coordinates": [ -75.155204, 39.961929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "Name": "Burlington", "Category": "Clothing Stores", "Address": "1563 Franklin Mills Cir", "LATITUDE": 40.087035, "LONGITUDE": -74.960571, "DATE_RANGE_START": 2020, "Total Visits": 1878.0, "Total Visitors": 1532.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 20.0, "Total Spend": 5764.0, "Total Transactions": 107.0, "Total Customers": 99.0, "Median Spend per Transaction": 37.35, "Median Spend per Customer": 37.85 }, "geometry": { "type": "Point", "coordinates": [ -74.960571, 40.087035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "Name": "Zumiez", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1441 Franklin Mills Cir", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 381.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 13039.0, "Total Transactions": 230.0, "Total Customers": 204.0, "Median Spend per Transaction": 47.82, "Median Spend per Customer": 54.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "Name": "Mission BBQ", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2020, "Total Visits": 802.0, "Total Visitors": 701.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 11.0, "Total Spend": 1109.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 20.61, "Median Spend per Customer": 21.63 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4301 Market St", "LATITUDE": 39.958195, "LONGITUDE": -75.208247, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 157.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 4.0, "Total Spend": 6693.0, "Total Transactions": 854.0, "Total Customers": 409.0, "Median Spend per Transaction": 6.8, "Median Spend per Customer": 8.87 }, "geometry": { "type": "Point", "coordinates": [ -75.208247, 39.958195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "329 Spring Garden St", "LATITUDE": 39.96142, "LONGITUDE": -75.144288, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 117.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 5.0, "Total Spend": 3859.0, "Total Transactions": 623.0, "Total Customers": 278.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.144288, 39.96142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@63s-dw9-7dv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "Philadelphia Int. Airport Terminal D Concourse B", "LATITUDE": 39.877241, "LONGITUDE": -75.244155, "DATE_RANGE_START": 2020, "Total Visits": 1104.0, "Total Visitors": 977.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 2.0, "Total Spend": 7522.0, "Total Transactions": 927.0, "Total Customers": 830.0, "Median Spend per Transaction": 6.97, "Median Spend per Customer": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.244155, 39.877241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-n5z", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3901 Walnut St", "LATITUDE": 39.954037, "LONGITUDE": -75.200292, "DATE_RANGE_START": 2020, "Total Visits": 592.0, "Total Visitors": 482.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 3.0, "Total Spend": 3148.0, "Total Transactions": 492.0, "Total Customers": 322.0, "Median Spend per Transaction": 5.06, "Median Spend per Customer": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.200292, 39.954037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "Name": "Higher Grounds", "Category": "Restaurants and Other Eating Places", "Address": "631 N 3rd St", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010367001.0, "Median Dwell Time": null, "Total Spend": 361.0, "Total Transactions": 36.0, "Total Customers": 26.0, "Median Spend per Transaction": 7.92, "Median Spend per Customer": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "Name": "Paradise Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1363 E Lycoming St", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010190004.0, "Median Dwell Time": 6.0, "Total Spend": 1927.0, "Total Transactions": 71.0, "Total Customers": 46.0, "Median Spend per Transaction": 26.61, "Median Spend per Customer": 35.39 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-2hq", "Name": "O Sole Mio", "Category": "Restaurants and Other Eating Places", "Address": "824 S 8th St", "LATITUDE": 39.937827, "LONGITUDE": -75.148269, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 14.0, "POI_CBG": 421010017001.0, "Median Dwell Time": 284.0, "Total Spend": 3197.0, "Total Transactions": 75.0, "Total Customers": 54.0, "Median Spend per Transaction": 41.41, "Median Spend per Customer": 49.09 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 39.937827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-28v", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1717 N 12th St", "LATITUDE": 39.978491, "LONGITUDE": -75.153508, "DATE_RANGE_START": 2020, "Total Visits": 490.0, "Total Visitors": 351.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 11.0, "Total Spend": 8368.0, "Total Transactions": 597.0, "Total Customers": 302.0, "Median Spend per Transaction": 9.52, "Median Spend per Customer": 15.34 }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.978491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pp5-ht9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2750 Aramingo Ave", "LATITUDE": 39.983672, "LONGITUDE": -75.115989, "DATE_RANGE_START": 2020, "Total Visits": 917.0, "Total Visitors": 590.0, "POI_CBG": 421010179005.0, "Median Dwell Time": 4.0, "Total Spend": 988.0, "Total Transactions": 32.0, "Total Customers": 26.0, "Median Spend per Transaction": 30.41, "Median Spend per Customer": 37.53 }, "geometry": { "type": "Point", "coordinates": [ -75.115989, 39.983672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "3000 Island Ave", "LATITUDE": 39.902552, "LONGITUDE": -75.240445, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 379.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 4.0, "Total Spend": 2368.0, "Total Transactions": 64.0, "Total Customers": 48.0, "Median Spend per Transaction": 23.73, "Median Spend per Customer": 31.46 }, "geometry": { "type": "Point", "coordinates": [ -75.240445, 39.902552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hnq", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "24 S 20th St", "LATITUDE": 39.952468, "LONGITUDE": -75.173535, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 20.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 17.0, "Total Spend": 1062.0, "Total Transactions": 58.0, "Total Customers": 56.0, "Median Spend per Transaction": 17.96, "Median Spend per Customer": 17.22 }, "geometry": { "type": "Point", "coordinates": [ -75.173535, 39.952468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "Name": "Muslim Fashion", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "5210 Chestnut St", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2020, "Total Visits": 1040.0, "Total Visitors": 782.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 13.0, "Total Spend": 1348.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6430 Castor Ave", "LATITUDE": 40.040673, "LONGITUDE": -75.076835, "DATE_RANGE_START": 2020, "Total Visits": 359.0, "Total Visitors": 280.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 6.0, "Total Spend": 1439.0, "Total Transactions": 149.0, "Total Customers": 95.0, "Median Spend per Transaction": 7.4, "Median Spend per Customer": 8.92 }, "geometry": { "type": "Point", "coordinates": [ -75.076835, 40.040673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2815 Ridge Ave Ste A", "LATITUDE": 39.986359, "LONGITUDE": -75.179573, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 93.0, "POI_CBG": 421010151021.0, "Median Dwell Time": 19.0, "Total Spend": 255.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.179573, 39.986359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp4-kfz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2459 Kensington Ave", "LATITUDE": 39.987233, "LONGITUDE": -75.129676, "DATE_RANGE_START": 2020, "Total Visits": 189.0, "Total Visitors": 137.0, "POI_CBG": 421010161004.0, "Median Dwell Time": 4.0, "Total Spend": 1146.0, "Total Transactions": 105.0, "Total Customers": 60.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 11.71 }, "geometry": { "type": "Point", "coordinates": [ -75.129676, 39.987233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmd-vj9", "Name": "Nature's Gallery Florist", "Category": "Florists", "Address": "2124 Walnut St", "LATITUDE": 39.950794, "LONGITUDE": -75.177008, "DATE_RANGE_START": 2020, "Total Visits": 1296.0, "Total Visitors": 764.0, "POI_CBG": 421010008031.0, "Median Dwell Time": 345.0, "Total Spend": 2499.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177008, 39.950794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pfz-bhq", "Name": "Bendi", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4333 Main St", "LATITUDE": 40.025401, "LONGITUDE": -75.22307, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 44.0, "Total Spend": 695.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 87.5, "Median Spend per Customer": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22307, 40.025401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-mzf", "Name": "Cantina Dos Segundos", "Category": "Restaurants and Other Eating Places", "Address": "931 N 2nd St", "LATITUDE": 39.964821, "LONGITUDE": -75.140233, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 32.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 175.0, "Total Spend": 5934.0, "Total Transactions": 145.0, "Total Customers": 129.0, "Median Spend per Transaction": 35.84, "Median Spend per Customer": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.140233, 39.964821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-tn5", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "721 Walnut St", "LATITUDE": 39.948145, "LONGITUDE": -75.153461, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 474.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 11.96, "Median Spend per Customer": 11.96 }, "geometry": { "type": "Point", "coordinates": [ -75.153461, 39.948145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-tn5", "Name": "Fat Salmon Sushi", "Category": "Restaurants and Other Eating Places", "Address": "719 Walnut St", "LATITUDE": 39.948136, "LONGITUDE": -75.153395, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 2.0, "Total Spend": 4456.0, "Total Transactions": 87.0, "Total Customers": 62.0, "Median Spend per Transaction": 48.11, "Median Spend per Customer": 70.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153395, 39.948136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj7-2p9", "Name": "Jerusalem Furniture", "Category": "Furniture Stores", "Address": "5691 Rising Sun Ave", "LATITUDE": 40.040423, "LONGITUDE": -75.107572, "DATE_RANGE_START": 2020, "Total Visits": 383.0, "Total Visitors": 298.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 22.0, "Total Spend": 7350.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 452.0, "Median Spend per Customer": 452.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107572, 40.040423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2200 W Oregon Ave", "LATITUDE": 39.916081, "LONGITUDE": -75.185496, "DATE_RANGE_START": 2020, "Total Visits": 6094.0, "Total Visitors": 3619.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 20.0, "Total Spend": 141400.0, "Total Transactions": 1582.0, "Total Customers": 953.0, "Median Spend per Transaction": 44.81, "Median Spend per Customer": 62.06 }, "geometry": { "type": "Point", "coordinates": [ -75.185496, 39.916081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-ty9", "Name": "Sakura Japanese Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1521 Spring Garden St", "LATITUDE": 39.962988, "LONGITUDE": -75.163765, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 8.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 464.0, "Total Spend": 1757.0, "Total Transactions": 58.0, "Total Customers": 54.0, "Median Spend per Transaction": 26.49, "Median Spend per Customer": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.163765, 39.962988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-nnq", "Name": "M & M Food Market", "Category": "Grocery Stores", "Address": "458 Markle St", "LATITUDE": 40.02486, "LONGITUDE": -75.210261, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 14.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 8.0, "Total Spend": 281.0, "Total Transactions": 34.0, "Total Customers": 20.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.210261, 40.02486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-wrk", "Name": "Lulu Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4508 Walnut St", "LATITUDE": 39.955024, "LONGITUDE": -75.212218, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 14.0, "POI_CBG": 421010086012.0, "Median Dwell Time": 516.0, "Total Spend": 243.0, "Total Transactions": 24.0, "Total Customers": 12.0, "Median Spend per Transaction": 8.7, "Median Spend per Customer": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.212218, 39.955024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@63s-dvw-f2k", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "5143 Haverford Ave", "LATITUDE": 39.964788, "LONGITUDE": -75.22346, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 16.0, "POI_CBG": 421010103002.0, "Median Dwell Time": 1.0, "Total Spend": 186.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 20.95, "Median Spend per Customer": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.22346, 39.964788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pm6-f2k", "Name": "Bobs Food Market", "Category": "Specialty Food Stores", "Address": "2200 S 3rd St", "LATITUDE": 39.920704, "LONGITUDE": -75.15184, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010042012.0, "Median Dwell Time": 960.0, "Total Spend": 338.0, "Total Transactions": 30.0, "Total Customers": 16.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.15184, 39.920704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp5-k2k", "Name": "Momentos Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2317 E Clearfield St", "LATITUDE": 39.988005, "LONGITUDE": -75.109231, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010179002.0, "Median Dwell Time": 17.0, "Total Spend": 575.0, "Total Transactions": 32.0, "Total Customers": 12.0, "Median Spend per Transaction": 15.63, "Median Spend per Customer": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.109231, 39.988005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfz-bx5", "Name": "Manayunk Tavern", "Category": "Restaurants and Other Eating Places", "Address": "4247 Main St", "LATITUDE": 40.024589, "LONGITUDE": -75.221155, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 60.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 1.0, "Total Spend": 3602.0, "Total Transactions": 105.0, "Total Customers": 67.0, "Median Spend per Transaction": 24.8, "Median Spend per Customer": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.221155, 40.024589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "Name": "Tires Plus", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "800 Franklin Mills Cir", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 165.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 134.0, "Total Spend": 5157.0, "Total Transactions": 42.0, "Total Customers": 40.0, "Median Spend per Transaction": 71.04, "Median Spend per Customer": 83.71 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pgg-w8v", "Name": "Shop Mark Supermarket", "Category": "Grocery Stores", "Address": "2522 W Lehigh Ave", "LATITUDE": 39.996139, "LONGITUDE": -75.173204, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 123.0, "POI_CBG": 421010169011.0, "Median Dwell Time": 21.0, "Total Spend": 306.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 76.98, "Median Spend per Customer": 76.98 }, "geometry": { "type": "Point", "coordinates": [ -75.173204, 39.996139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2300 S Broad St", "LATITUDE": 39.921823, "LONGITUDE": -75.170522, "DATE_RANGE_START": 2020, "Total Visits": 691.0, "Total Visitors": 347.0, "POI_CBG": 421010039012.0, "Median Dwell Time": 13.0, "Total Spend": 832.0, "Total Transactions": 117.0, "Total Customers": 64.0, "Median Spend per Transaction": 6.3, "Median Spend per Customer": 10.52 }, "geometry": { "type": "Point", "coordinates": [ -75.170522, 39.921823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2301 W Passyunk Ave", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2020, "Total Visits": 580.0, "Total Visitors": 411.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 3.0, "Total Spend": 710.0, "Total Transactions": 60.0, "Total Customers": 50.0, "Median Spend per Transaction": 11.48, "Median Spend per Customer": 11.84 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p74-vs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7830 Frankford Ave", "LATITUDE": 40.040935, "LONGITUDE": -75.030449, "DATE_RANGE_START": 2020, "Total Visits": 1532.0, "Total Visitors": 865.0, "POI_CBG": 421010331023.0, "Median Dwell Time": 5.0, "Total Spend": 914.0, "Total Transactions": 50.0, "Total Customers": 22.0, "Median Spend per Transaction": 15.63, "Median Spend per Customer": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.030449, 40.040935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgg-dy9", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "2044 W Allegheny Ave", "LATITUDE": 40.00283, "LONGITUDE": -75.164018, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 89.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 5.0, "Total Spend": 2842.0, "Total Transactions": 171.0, "Total Customers": 145.0, "Median Spend per Transaction": 12.04, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164018, 40.00283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2149 Catharine St", "LATITUDE": 39.942567, "LONGITUDE": -75.179023, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010013002.0, "Median Dwell Time": null, "Total Spend": 677.0, "Total Transactions": 83.0, "Total Customers": 66.0, "Median Spend per Transaction": 5.86, "Median Spend per Customer": 8.55 }, "geometry": { "type": "Point", "coordinates": [ -75.179023, 39.942567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-dd9", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "3084 Frankford Ave", "LATITUDE": 39.991806, "LONGITUDE": -75.113116, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010178003.0, "Median Dwell Time": 4.0, "Total Spend": 649.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 19.3, "Median Spend per Customer": 13.54 }, "geometry": { "type": "Point", "coordinates": [ -75.113116, 39.991806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "Name": "La Calaca Feliz", "Category": "Restaurants and Other Eating Places", "Address": "2321 Fairmount Ave", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 6.0, "Total Spend": 14088.0, "Total Transactions": 282.0, "Total Customers": 248.0, "Median Spend per Transaction": 46.08, "Median Spend per Customer": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "Name": "Aya Asian Fusion", "Category": "Restaurants and Other Eating Places", "Address": "7313 Frankford Ave # 15", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010330006.0, "Median Dwell Time": 7.0, "Total Spend": 2631.0, "Total Transactions": 87.0, "Total Customers": 71.0, "Median Spend per Transaction": 27.95, "Median Spend per Customer": 27.95 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnw-mzf", "Name": "Once Worn Consignment", "Category": "Used Merchandise Stores", "Address": "906 N 2nd St", "LATITUDE": 39.964394, "LONGITUDE": -75.140857, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010142002.0, "Median Dwell Time": null, "Total Spend": 1125.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140857, 39.964394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "Name": "Bleu Sushi", "Category": "Restaurants and Other Eating Places", "Address": "262 S 10th St", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 16.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 718.0, "Total Spend": 1199.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 41.43, "Median Spend per Customer": 33.71 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-gp9", "Name": "Umai Umai", "Category": "Restaurants and Other Eating Places", "Address": "533 N 22nd St", "LATITUDE": 39.964683, "LONGITUDE": -75.174102, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 18.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 2.0, "Total Spend": 609.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 153.42, "Median Spend per Customer": 153.42 }, "geometry": { "type": "Point", "coordinates": [ -75.174102, 39.964683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-psq", "Name": "Magic Noodles", "Category": "Restaurants and Other Eating Places", "Address": "2833 Cottman Ave", "LATITUDE": 40.043529, "LONGITUDE": -75.052298, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 3.0, "Total Spend": 426.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 21.77, "Median Spend per Customer": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.052298, 40.043529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "713 W Girard Ave", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 30.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 1407.0, "Total Spend": 14321.0, "Total Transactions": 536.0, "Total Customers": 413.0, "Median Spend per Transaction": 24.72, "Median Spend per Customer": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "Name": "Quetzally", "Category": "Restaurants and Other Eating Places", "Address": "1225 Fitzwater St", "LATITUDE": 39.941598, "LONGITUDE": -75.163087, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 148.0, "Total Spend": 1055.0, "Total Transactions": 48.0, "Total Customers": 36.0, "Median Spend per Transaction": 15.81, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.163087, 39.941598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "237 S 10th St", "LATITUDE": 39.947166, "LONGITUDE": -75.157345, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 28.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 17.0, "Total Spend": 2128.0, "Total Transactions": 73.0, "Total Customers": 66.0, "Median Spend per Transaction": 19.46, "Median Spend per Customer": 19.46 }, "geometry": { "type": "Point", "coordinates": [ -75.157345, 39.947166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phy-mff", "Name": "Rivas Monica", "Category": "Grocery Stores", "Address": "1025 W Ruscomb St", "LATITUDE": 40.028515, "LONGITUDE": -75.140923, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010283001.0, "Median Dwell Time": 1.0, "Total Spend": 1403.0, "Total Transactions": 24.0, "Total Customers": 20.0, "Median Spend per Transaction": 49.57, "Median Spend per Customer": 65.16 }, "geometry": { "type": "Point", "coordinates": [ -75.140923, 40.028515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "4421 Main St", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 41.0, "Total Spend": 837.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 68.04, "Median Spend per Customer": 68.04 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pp4-rp9", "Name": "Garrisons Grocery Store", "Category": "Grocery Stores", "Address": "2315 Memphis St", "LATITUDE": 39.978687, "LONGITUDE": -75.126187, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 24.0, "POI_CBG": 421010160002.0, "Median Dwell Time": 5.0, "Total Spend": 1333.0, "Total Transactions": 38.0, "Total Customers": 6.0, "Median Spend per Transaction": 34.5, "Median Spend per Customer": 141.88 }, "geometry": { "type": "Point", "coordinates": [ -75.126187, 39.978687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "Name": "Vientiane Bistro", "Category": "Restaurants and Other Eating Places", "Address": "2537 Kensington Ave", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010161003.0, "Median Dwell Time": null, "Total Spend": 1406.0, "Total Transactions": 24.0, "Total Customers": 20.0, "Median Spend per Transaction": 59.2, "Median Spend per Customer": 70.41 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p82-nqz", "Name": "Matz Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "6520 Castor Ave", "LATITUDE": 40.04141, "LONGITUDE": -75.075896, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 32.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 226.0, "Total Spend": 192.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 48.28, "Median Spend per Customer": 48.28 }, "geometry": { "type": "Point", "coordinates": [ -75.075896, 40.04141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "Name": "Hadramout", "Category": "Restaurants and Other Eating Places", "Address": "136 S 45th St", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 42.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 37.0, "Total Spend": 2861.0, "Total Transactions": 71.0, "Total Customers": 46.0, "Median Spend per Transaction": 33.46, "Median Spend per Customer": 62.6 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "2237 Cecil B Moore Ave", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 52.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 14.0, "Total Spend": 388.0, "Total Transactions": 40.0, "Total Customers": 30.0, "Median Spend per Transaction": 9.63, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2801 W Dauphin St", "LATITUDE": 39.991985, "LONGITUDE": -75.178334, "DATE_RANGE_START": 2020, "Total Visits": 736.0, "Total Visitors": 457.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 12.0, "Total Spend": 1938.0, "Total Transactions": 64.0, "Total Customers": 36.0, "Median Spend per Transaction": 25.7, "Median Spend per Customer": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.178334, 39.991985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmd-sbk", "Name": "Bicycle Therapy", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2211 South St", "LATITUDE": 39.945493, "LONGITUDE": -75.178987, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 54.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 254.0, "Total Spend": 269.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 30.8, "Median Spend per Customer": 30.8 }, "geometry": { "type": "Point", "coordinates": [ -75.178987, 39.945493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3341 Grant Ave", "LATITUDE": 40.068776, "LONGITUDE": -75.005362, "DATE_RANGE_START": 2020, "Total Visits": 800.0, "Total Visitors": 647.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 3.0, "Total Spend": 8551.0, "Total Transactions": 534.0, "Total Customers": 274.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 20.55 }, "geometry": { "type": "Point", "coordinates": [ -75.005362, 40.068776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1826 30 Chestnut Street Philadelphia", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2020, "Total Visits": 792.0, "Total Visitors": 526.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 11.0, "Total Spend": 20887.0, "Total Transactions": 1012.0, "Total Customers": 584.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 18.67 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "2101 S 11th St", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2020, "Total Visits": 1542.0, "Total Visitors": 826.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 4.0, "Total Spend": 21291.0, "Total Transactions": 893.0, "Total Customers": 498.0, "Median Spend per Transaction": 20.18, "Median Spend per Customer": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4160 Monument Rd", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2020, "Total Visits": 639.0, "Total Visitors": 502.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 10.0, "Total Spend": 1524.0, "Total Transactions": 109.0, "Total Customers": 85.0, "Median Spend per Transaction": 9.64, "Median Spend per Customer": 10.64 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-p8f-9pv", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "4454 Penn St", "LATITUDE": 40.014668, "LONGITUDE": -75.088538, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 7.0, "Total Spend": 1466.0, "Total Transactions": 67.0, "Total Customers": 66.0, "Median Spend per Transaction": 16.73, "Median Spend per Customer": 16.97 }, "geometry": { "type": "Point", "coordinates": [ -75.088538, 40.014668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-3dv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "810 S Broad St", "LATITUDE": 39.940442, "LONGITUDE": -75.166876, "DATE_RANGE_START": 2020, "Total Visits": 427.0, "Total Visitors": 306.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 5.0, "Total Spend": 5831.0, "Total Transactions": 268.0, "Total Customers": 173.0, "Median Spend per Transaction": 17.17, "Median Spend per Customer": 23.77 }, "geometry": { "type": "Point", "coordinates": [ -75.166876, 39.940442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6240 Stenton Ave", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 143.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 5.0, "Total Spend": 916.0, "Total Transactions": 54.0, "Total Customers": 48.0, "Median Spend per Transaction": 12.35, "Median Spend per Customer": 15.36 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "4030 City Ave", "LATITUDE": 40.007477, "LONGITUDE": -75.212304, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 185.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 41.0, "Total Spend": 827.0, "Total Transactions": 58.0, "Total Customers": 58.0, "Median Spend per Transaction": 11.53, "Median Spend per Customer": 11.53 }, "geometry": { "type": "Point", "coordinates": [ -75.212304, 40.007477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pgh-v2k", "Name": "Crown Chicken and Biscuit", "Category": "Restaurants and Other Eating Places", "Address": "2201 N Broad St", "LATITUDE": 39.986364, "LONGITUDE": -75.1559, "DATE_RANGE_START": 2020, "Total Visits": 333.0, "Total Visitors": 250.0, "POI_CBG": 421010166002.0, "Median Dwell Time": 10.0, "Total Spend": 56.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 9.8, "Median Spend per Customer": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.1559, 39.986364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-94v", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1001 Market St Unit C065", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 3794.0, "Total Transactions": 75.0, "Total Customers": 64.0, "Median Spend per Transaction": 47.27, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2145 W Allegheny Ave", "LATITUDE": 40.003544, "LONGITUDE": -75.165622, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 107.0, "POI_CBG": 421010202001.0, "Median Dwell Time": 5.0, "Total Spend": 2195.0, "Total Transactions": 298.0, "Total Customers": 206.0, "Median Spend per Transaction": 6.52, "Median Spend per Customer": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165622, 40.003544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2901 Abbottsford Ave", "LATITUDE": 40.015127, "LONGITUDE": -75.178214, "DATE_RANGE_START": 2020, "Total Visits": 395.0, "Total Visitors": 331.0, "POI_CBG": 421010206001.0, "Median Dwell Time": 3.0, "Total Spend": 1881.0, "Total Transactions": 300.0, "Total Customers": 163.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 8.05 }, "geometry": { "type": "Point", "coordinates": [ -75.178214, 40.015127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-bp9", "Name": "Hidden River Yarns", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4358B Main St", "LATITUDE": 40.025483, "LONGITUDE": -75.223994, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 287.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 44.95, "Median Spend per Customer": 72.3 }, "geometry": { "type": "Point", "coordinates": [ -75.223994, 40.025483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "1930 Chestnut St", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2020, "Total Visits": 842.0, "Total Visitors": 671.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 6.0, "Total Spend": 1059.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 33.48, "Median Spend per Customer": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp2-q75", "Name": "Kensington Pub", "Category": "Restaurants and Other Eating Places", "Address": "2116 E Tioga St", "LATITUDE": 39.995547, "LONGITUDE": -75.102511, "DATE_RANGE_START": 2020, "Total Visits": 240.0, "Total Visitors": 127.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 80.0, "Total Spend": 4128.0, "Total Transactions": 133.0, "Total Customers": 69.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 44.72 }, "geometry": { "type": "Point", "coordinates": [ -75.102511, 39.995547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "1521 S Columbus Blvd", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2020, "Total Visits": 401.0, "Total Visitors": 300.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 13.0, "Total Spend": 14877.0, "Total Transactions": 1143.0, "Total Customers": 832.0, "Median Spend per Transaction": 11.22, "Median Spend per Customer": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dvy-mx5", "Name": "Tea Do", "Category": "Restaurants and Other Eating Places", "Address": "3816 Chestnut St", "LATITUDE": 39.95462, "LONGITUDE": -75.199919, "DATE_RANGE_START": 2020, "Total Visits": 871.0, "Total Visitors": 625.0, "POI_CBG": 421010088012.0, "Median Dwell Time": 51.0, "Total Spend": 1901.0, "Total Transactions": 167.0, "Total Customers": 151.0, "Median Spend per Transaction": 9.26, "Median Spend per Customer": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.199919, 39.95462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "Name": "Mammoth Coffee", "Category": "Restaurants and Other Eating Places", "Address": "534 W Girard Ave", "LATITUDE": 39.969701, "LONGITUDE": -75.146132, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 66.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 40.0, "Total Spend": 1920.0, "Total Transactions": 242.0, "Total Customers": 91.0, "Median Spend per Transaction": 6.36, "Median Spend per Customer": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.146132, 39.969701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4268 Ridge Ave", "LATITUDE": 40.009408, "LONGITUDE": -75.196533, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 145.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 1.0, "Total Spend": 4883.0, "Total Transactions": 772.0, "Total Customers": 425.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 7.53 }, "geometry": { "type": "Point", "coordinates": [ -75.196533, 40.009408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-hbk", "Name": "Jyoti Indian Bistro", "Category": "Restaurants and Other Eating Places", "Address": "7220 Germantown Ave", "LATITUDE": 40.060418, "LONGITUDE": -75.191506, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 8.0, "Total Spend": 614.0, "Total Transactions": 26.0, "Total Customers": 22.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.191506, 40.060418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgk-z9f", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "3977 Ford Rd", "LATITUDE": 39.999874, "LONGITUDE": -75.209033, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010122041.0, "Median Dwell Time": 5.0, "Total Spend": 1311.0, "Total Transactions": 54.0, "Total Customers": 50.0, "Median Spend per Transaction": 24.92, "Median Spend per Customer": 24.92 }, "geometry": { "type": "Point", "coordinates": [ -75.209033, 39.999874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "Name": "Buddakan", "Category": "Restaurants and Other Eating Places", "Address": "325 Chestnut St", "LATITUDE": 39.948922, "LONGITUDE": -75.147091, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 15.0, "Total Spend": 15406.0, "Total Transactions": 125.0, "Total Customers": 117.0, "Median Spend per Transaction": 110.0, "Median Spend per Customer": 120.96 }, "geometry": { "type": "Point", "coordinates": [ -75.147091, 39.948922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-47q", "Name": "Kid City", "Category": "Clothing Stores", "Address": "2419 S 24th St", "LATITUDE": 39.921142, "LONGITUDE": -75.185929, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 38.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 7.0, "Total Spend": 2972.0, "Total Transactions": 87.0, "Total Customers": 83.0, "Median Spend per Transaction": 23.02, "Median Spend per Customer": 23.02 }, "geometry": { "type": "Point", "coordinates": [ -75.185929, 39.921142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "Name": "Mulberry Market", "Category": "Grocery Stores", "Address": "236 Arch St", "LATITUDE": 39.951945, "LONGITUDE": -75.144635, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 52.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 6.0, "Total Spend": 15332.0, "Total Transactions": 715.0, "Total Customers": 306.0, "Median Spend per Transaction": 17.6, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144635, 39.951945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-789", "Name": "The Wine Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5019 Baltimore Ave", "LATITUDE": 39.948078, "LONGITUDE": -75.224261, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 71.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 190.0, "Total Spend": 5444.0, "Total Transactions": 212.0, "Total Customers": 161.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 28.32 }, "geometry": { "type": "Point", "coordinates": [ -75.224261, 39.948078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "Name": "The Cheesecake Factory", "Category": "Restaurants and Other Eating Places", "Address": "1430 Walnut St", "LATITUDE": 39.949381, "LONGITUDE": -75.165741, "DATE_RANGE_START": 2020, "Total Visits": 816.0, "Total Visitors": 558.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 55.0, "Total Spend": 12337.0, "Total Transactions": 296.0, "Total Customers": 268.0, "Median Spend per Transaction": 33.97, "Median Spend per Customer": 36.18 }, "geometry": { "type": "Point", "coordinates": [ -75.165741, 39.949381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "Name": "Nifty Fifty's", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 145.0, "POI_CBG": 421010372003.0, "Median Dwell Time": 5.0, "Total Spend": 7249.0, "Total Transactions": 270.0, "Total Customers": 228.0, "Median Spend per Transaction": 25.03, "Median Spend per Customer": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-vcq", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "400 W Allegheny Ave Ste C2", "LATITUDE": 39.998344, "LONGITUDE": -75.136151, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 159.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 10.0, "Total Spend": 150.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 37.67, "Median Spend per Customer": 37.67 }, "geometry": { "type": "Point", "coordinates": [ -75.136151, 39.998344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 64.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 224.0, "Total Spend": 7334.0, "Total Transactions": 260.0, "Total Customers": 222.0, "Median Spend per Transaction": 25.74, "Median Spend per Customer": 25.47 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "9001 Frankford Ave", "LATITUDE": 40.051659, "LONGITUDE": -75.008179, "DATE_RANGE_START": 2020, "Total Visits": 494.0, "Total Visitors": 361.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 3.0, "Total Spend": 3612.0, "Total Transactions": 163.0, "Total Customers": 93.0, "Median Spend per Transaction": 22.62, "Median Spend per Customer": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.008179, 40.051659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8m-v2k", "Name": "Hung Vuong Food Market", "Category": "Grocery Stores", "Address": "6499 Sackett St", "LATITUDE": 40.030075, "LONGITUDE": -75.057846, "DATE_RANGE_START": 2020, "Total Visits": 744.0, "Total Visitors": 534.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 15.0, "Total Spend": 49308.0, "Total Transactions": 629.0, "Total Customers": 401.0, "Median Spend per Transaction": 53.59, "Median Spend per Customer": 59.37 }, "geometry": { "type": "Point", "coordinates": [ -75.057846, 40.030075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pgh-v2k", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2131 59 North Broad Street Ste 5", "LATITUDE": 39.985827, "LONGITUDE": -75.15577, "DATE_RANGE_START": 2020, "Total Visits": 405.0, "Total Visitors": 296.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 10.0, "Total Spend": 5863.0, "Total Transactions": 391.0, "Total Customers": 232.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 19.34 }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.985827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "Name": "Athleta", "Category": "Clothing Stores", "Address": "1722 Walnut St", "LATITUDE": 39.94988, "LONGITUDE": -75.170326, "DATE_RANGE_START": 2020, "Total Visits": 306.0, "Total Visitors": 218.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 94.0, "Total Spend": 15112.0, "Total Transactions": 141.0, "Total Customers": 131.0, "Median Spend per Transaction": 93.1, "Median Spend per Customer": 93.79 }, "geometry": { "type": "Point", "coordinates": [ -75.170326, 39.94988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p8t-6kz", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4301 Byberry Rd", "LATITUDE": 40.083264, "LONGITUDE": -74.962395, "DATE_RANGE_START": 2020, "Total Visits": 13890.0, "Total Visitors": 8712.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 26.0, "Total Spend": 367867.0, "Total Transactions": 6197.0, "Total Customers": 3716.0, "Median Spend per Transaction": 38.27, "Median Spend per Customer": 59.62 }, "geometry": { "type": "Point", "coordinates": [ -74.962395, 40.083264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "Name": "Villavillekula", "Category": "Clothing Stores", "Address": "8419 Germantown Ave", "LATITUDE": 40.075713, "LONGITUDE": -75.205415, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 30.0, "Total Spend": 1757.0, "Total Transactions": 32.0, "Total Customers": 22.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205415, 40.075713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-5mk", "Name": "West Elm", "Category": "Home Furnishings Stores", "Address": "1330 Chestnut St # 873", "LATITUDE": 39.950642, "LONGITUDE": -75.163094, "DATE_RANGE_START": 2020, "Total Visits": 232.0, "Total Visitors": 129.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 288.0, "Total Spend": 33019.0, "Total Transactions": 67.0, "Total Customers": 52.0, "Median Spend per Transaction": 59.4, "Median Spend per Customer": 62.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163094, 39.950642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7607 Ridge Ave", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 115.0, "POI_CBG": 421010218002.0, "Median Dwell Time": 3.0, "Total Spend": 447.0, "Total Transactions": 56.0, "Total Customers": 40.0, "Median Spend per Transaction": 5.33, "Median Spend per Customer": 8.78 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj9-zmk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5612 N 5th St", "LATITUDE": 40.036925, "LONGITUDE": -75.130756, "DATE_RANGE_START": 2020, "Total Visits": 264.0, "Total Visitors": 177.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 12.0, "Total Spend": 510.0, "Total Transactions": 42.0, "Total Customers": 24.0, "Median Spend per Transaction": 11.55, "Median Spend per Customer": 15.83 }, "geometry": { "type": "Point", "coordinates": [ -75.130756, 40.036925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p8d-rp9", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2200 Wheatsheaf Ln", "LATITUDE": 39.998893, "LONGITUDE": -75.091892, "DATE_RANGE_START": 2020, "Total Visits": 6179.0, "Total Visitors": 4103.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 24.0, "Total Spend": 196181.0, "Total Transactions": 3168.0, "Total Customers": 2072.0, "Median Spend per Transaction": 38.47, "Median Spend per Customer": 57.69 }, "geometry": { "type": "Point", "coordinates": [ -75.091892, 39.998893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pm3-vpv", "Name": "Philadelphia Scooters", "Category": "Other Motor Vehicle Dealers", "Address": "2501 Wharton St Ste G", "LATITUDE": 39.936705, "LONGITUDE": -75.186573, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 81.0, "POI_CBG": 421010020002.0, "Median Dwell Time": 164.0, "Total Spend": 421.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 106.01, "Median Spend per Customer": 106.01 }, "geometry": { "type": "Point", "coordinates": [ -75.186573, 39.936705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "555 Adams Ave", "LATITUDE": 40.036515, "LONGITUDE": -75.108096, "DATE_RANGE_START": 2020, "Total Visits": 337.0, "Total Visitors": 240.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 18.0, "Total Spend": 14776.0, "Total Transactions": 296.0, "Total Customers": 224.0, "Median Spend per Transaction": 19.41, "Median Spend per Customer": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.108096, 40.036515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.080948, "LONGITUDE": -75.025099, "DATE_RANGE_START": 2020, "Total Visits": 11923.0, "Total Visitors": 7737.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 19.0, "Total Spend": 269752.0, "Total Transactions": 3636.0, "Total Customers": 2237.0, "Median Spend per Transaction": 33.44, "Median Spend per Customer": 43.56 }, "geometry": { "type": "Point", "coordinates": [ -75.025099, 40.080948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.962963, "LONGITUDE": -75.174058, "DATE_RANGE_START": 2020, "Total Visits": 3100.0, "Total Visitors": 1753.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 19.0, "Total Spend": 237222.0, "Total Transactions": 4879.0, "Total Customers": 2118.0, "Median Spend per Transaction": 29.18, "Median Spend per Customer": 62.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174058, 39.962963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "Name": "Weavers Way Co Op", "Category": "Grocery Stores", "Address": "559 Carpenter Ln", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2020, "Total Visits": 135.0, "Total Visitors": 95.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 5.0, "Total Spend": 114132.0, "Total Transactions": 2878.0, "Total Customers": 1121.0, "Median Spend per Transaction": 26.4, "Median Spend per Customer": 49.26 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "10901C Bustleton Ave", "LATITUDE": 40.112307, "LONGITUDE": -75.022895, "DATE_RANGE_START": 2020, "Total Visits": 1330.0, "Total Visitors": 883.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 8.0, "Total Spend": 4115.0, "Total Transactions": 202.0, "Total Customers": 149.0, "Median Spend per Transaction": 12.41, "Median Spend per Customer": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.022895, 40.112307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-3bk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1500 W Moyamensing Ave", "LATITUDE": 39.916261, "LONGITUDE": -75.173391, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 200.0, "POI_CBG": 421010039022.0, "Median Dwell Time": 2.0, "Total Spend": 1557.0, "Total Transactions": 99.0, "Total Customers": 50.0, "Median Spend per Transaction": 11.19, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173391, 39.916261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1240 W Erie Ave", "LATITUDE": 40.004616, "LONGITUDE": -75.104425, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 197.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 10.0, "Total Spend": 421.0, "Total Transactions": 18.0, "Total Customers": 10.0, "Median Spend per Transaction": 23.65, "Median Spend per Customer": 39.02 }, "geometry": { "type": "Point", "coordinates": [ -75.104425, 40.004616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "2360 W Oregon Ave", "LATITUDE": 39.918005, "LONGITUDE": -75.188849, "DATE_RANGE_START": 2020, "Total Visits": 679.0, "Total Visitors": 544.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 10.0, "Total Spend": 16260.0, "Total Transactions": 312.0, "Total Customers": 238.0, "Median Spend per Transaction": 37.32, "Median Spend per Customer": 44.38 }, "geometry": { "type": "Point", "coordinates": [ -75.188849, 39.918005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-ch5", "Name": "La Roca", "Category": "Restaurants and Other Eating Places", "Address": "4161 Main St", "LATITUDE": 40.023561, "LONGITUDE": -75.219763, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 91.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 89.0, "Total Spend": 16043.0, "Total Transactions": 320.0, "Total Customers": 288.0, "Median Spend per Transaction": 36.12, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219763, 40.023561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "Name": "Keller Market", "Category": "Restaurants and Other Eating Places", "Address": "7964 Verree Rd", "LATITUDE": 40.072481, "LONGITUDE": -75.076705, "DATE_RANGE_START": 2020, "Total Visits": 200.0, "Total Visitors": 149.0, "POI_CBG": 421010341002.0, "Median Dwell Time": 6.0, "Total Spend": 6344.0, "Total Transactions": 222.0, "Total Customers": 149.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 31.81 }, "geometry": { "type": "Point", "coordinates": [ -75.076705, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "Name": "Open House", "Category": "Home Furnishings Stores", "Address": "107 S 13th St", "LATITUDE": 39.950268, "LONGITUDE": -75.161745, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 2.0, "Total Spend": 8943.0, "Total Transactions": 167.0, "Total Customers": 157.0, "Median Spend per Transaction": 36.99, "Median Spend per Customer": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.161745, 39.950268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8h-5mk", "Name": "Benz Automotive", "Category": "Electronics and Appliance Stores", "Address": "4941 Princeton Ave", "LATITUDE": 40.024738, "LONGITUDE": -75.035725, "DATE_RANGE_START": 2020, "Total Visits": 270.0, "Total Visitors": 222.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 3.0, "Total Spend": 1661.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035725, 40.024738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5834 Pulaski Ave", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2020, "Total Visits": 967.0, "Total Visitors": 609.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 11.0, "Total Spend": 3931.0, "Total Transactions": 165.0, "Total Customers": 81.0, "Median Spend per Transaction": 16.17, "Median Spend per Customer": 21.16 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p83-wzf", "Name": "Beautyland", "Category": "Health and Personal Care Stores", "Address": "1124 Gregg St", "LATITUDE": 40.086398, "LONGITUDE": -75.046895, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 71.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 2.0, "Total Spend": 666.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 42.73, "Median Spend per Customer": 42.73 }, "geometry": { "type": "Point", "coordinates": [ -75.046895, 40.086398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-p7b-qs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "9200 Ashton Rd", "LATITUDE": 40.063609, "LONGITUDE": -75.021861, "DATE_RANGE_START": 2020, "Total Visits": 1830.0, "Total Visitors": 1042.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 1672.0, "Total Transactions": 64.0, "Total Customers": 42.0, "Median Spend per Transaction": 20.47, "Median Spend per Customer": 30.14 }, "geometry": { "type": "Point", "coordinates": [ -75.021861, 40.063609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Knights Rd", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2020, "Total Visits": 1385.0, "Total Visitors": 723.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 4.0, "Total Spend": 6880.0, "Total Transactions": 337.0, "Total Customers": 212.0, "Median Spend per Transaction": 19.81, "Median Spend per Customer": 24.85 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-gff", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2920 Roberts Ave Ste 1040", "LATITUDE": 40.011075, "LONGITUDE": -75.176591, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 21.0, "Total Spend": 1853.0, "Total Transactions": 198.0, "Total Customers": 147.0, "Median Spend per Transaction": 8.41, "Median Spend per Customer": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.176591, 40.011075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "Name": "Blick Art Materials", "Category": "Other Miscellaneous Store Retailers", "Address": "1330 Chestnut St", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 36.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 393.0, "Total Spend": 806.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 88.35, "Median Spend per Customer": 76.74 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-vxq", "Name": "Crown Drugs", "Category": "Health and Personal Care Stores", "Address": "6519 Frankford Ave", "LATITUDE": 40.029725, "LONGITUDE": -75.055436, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 52.0, "POI_CBG": 421010320007.0, "Median Dwell Time": 6.0, "Total Spend": 951.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 111.94, "Median Spend per Customer": 111.94 }, "geometry": { "type": "Point", "coordinates": [ -75.055436, 40.029725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-j7q", "Name": "Byblos", "Category": "Restaurants and Other Eating Places", "Address": "116 S 18th St", "LATITUDE": 39.951257, "LONGITUDE": -75.170681, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 52.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 17.0, "Total Spend": 3489.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 64.08, "Median Spend per Customer": 75.26 }, "geometry": { "type": "Point", "coordinates": [ -75.170681, 39.951257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2726 S Front St", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 175.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 6422.0, "Total Transactions": 218.0, "Total Customers": 181.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "Name": "Dragon Phoenix House", "Category": "Restaurants and Other Eating Places", "Address": "2839 Tyson Ave", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 60.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 233.0, "Total Spend": 1621.0, "Total Transactions": 46.0, "Total Customers": 36.0, "Median Spend per Transaction": 29.87, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phn-qmk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "8235 Stenton Ave", "LATITUDE": 40.068844, "LONGITUDE": -75.18088, "DATE_RANGE_START": 2020, "Total Visits": 343.0, "Total Visitors": 230.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 6.0, "Total Spend": 1728.0, "Total Transactions": 77.0, "Total Customers": 58.0, "Median Spend per Transaction": 18.07, "Median Spend per Customer": 25.69 }, "geometry": { "type": "Point", "coordinates": [ -75.18088, 40.068844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p8j-6hq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7383 State Rd & Bleigh St", "LATITUDE": 40.026851, "LONGITUDE": -75.028938, "DATE_RANGE_START": 2020, "Total Visits": 506.0, "Total Visitors": 395.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 4.0, "Total Spend": 838.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 25.81, "Median Spend per Customer": 26.54 }, "geometry": { "type": "Point", "coordinates": [ -75.028938, 40.026851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "Name": "Burlington", "Category": "Clothing Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051298, "LONGITUDE": -75.065323, "DATE_RANGE_START": 2020, "Total Visits": 2819.0, "Total Visitors": 2303.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 21.0, "Total Spend": 5445.0, "Total Transactions": 115.0, "Total Customers": 97.0, "Median Spend per Transaction": 33.58, "Median Spend per Customer": 36.67 }, "geometry": { "type": "Point", "coordinates": [ -75.065323, 40.051298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "Name": "Roses Florist", "Category": "Florists", "Address": "3551 Chestnut St", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 218.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 156.0, "Total Spend": 499.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 32.34, "Median Spend per Customer": 32.34 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-hqz", "Name": "Halal Gyro Express", "Category": "Restaurants and Other Eating Places", "Address": "1880 John F Kennedy Blvd", "LATITUDE": 39.954112, "LONGITUDE": -75.171018, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 171.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 95.0, "Total Spend": 26.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171018, 39.954112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "Name": "Pho Cyclo Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2124 S Broad St", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2020, "Total Visits": 1145.0, "Total Visitors": 663.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 232.0, "Total Spend": 666.0, "Total Transactions": 28.0, "Total Customers": 20.0, "Median Spend per Transaction": 15.09, "Median Spend per Customer": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1324 Walnut St", "LATITUDE": 39.949164, "LONGITUDE": -75.163217, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 81.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 20.0, "Total Spend": 1152.0, "Total Transactions": 220.0, "Total Customers": 115.0, "Median Spend per Transaction": 4.2, "Median Spend per Customer": 6.24 }, "geometry": { "type": "Point", "coordinates": [ -75.163217, 39.949164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "Name": "Royal Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4200 Baltimore Ave", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 1.0, "Total Spend": 2493.0, "Total Transactions": 131.0, "Total Customers": 87.0, "Median Spend per Transaction": 14.72, "Median Spend per Customer": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "Name": "Weavers Way Co op", "Category": "Grocery Stores", "Address": "8424 Germantown Ave", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 32.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 75.0, "Total Spend": 59145.0, "Total Transactions": 1330.0, "Total Customers": 697.0, "Median Spend per Transaction": 30.59, "Median Spend per Customer": 45.17 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-kpv", "Name": "Foreign Bazaar", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1921 Chestnut St", "LATITUDE": 39.952092, "LONGITUDE": -75.172676, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 16.0, "Total Spend": 1427.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 56.42, "Median Spend per Customer": 59.38 }, "geometry": { "type": "Point", "coordinates": [ -75.172676, 39.952092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "Name": "Nova Star Pharmacy", "Category": "Health and Personal Care Stores", "Address": "301 E Girard Ave", "LATITUDE": 39.969977, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 3.0, "Total Spend": 827.0, "Total Transactions": 44.0, "Total Customers": 32.0, "Median Spend per Transaction": 13.63, "Median Spend per Customer": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "Name": "Tavern On Camac", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "243 S Camac St", "LATITUDE": 39.947272, "LONGITUDE": -75.161618, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010009011.0, "Median Dwell Time": null, "Total Spend": 3251.0, "Total Transactions": 179.0, "Total Customers": 87.0, "Median Spend per Transaction": 13.25, "Median Spend per Customer": 25.53 }, "geometry": { "type": "Point", "coordinates": [ -75.161618, 39.947272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-q2k", "Name": "Que Chula Es Puebla", "Category": "Restaurants and Other Eating Places", "Address": "1356 N 2nd St", "LATITUDE": 39.972362, "LONGITUDE": -75.139125, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 8.0, "Total Spend": 262.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 39.39, "Median Spend per Customer": 39.39 }, "geometry": { "type": "Point", "coordinates": [ -75.139125, 39.972362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-224@628-pg9-ty9", "Name": "Mangia Macaroni", "Category": "Restaurants and Other Eating Places", "Address": "1543 Spring Garden St", "LATITUDE": 39.963054, "LONGITUDE": -75.16434, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 26.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 1225.0, "Total Spend": 333.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 18.56, "Median Spend per Customer": 18.56 }, "geometry": { "type": "Point", "coordinates": [ -75.16434, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "Name": "Sonnys Famous Steaks", "Category": "Restaurants and Other Eating Places", "Address": "228 Market St", "LATITUDE": 39.949796, "LONGITUDE": -75.144721, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 4350.0, "Total Transactions": 141.0, "Total Customers": 137.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144721, 39.949796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-p8d-8y9", "Name": "T & J Food Market", "Category": "Grocery Stores", "Address": "1900 Church St", "LATITUDE": 40.00933, "LONGITUDE": -75.084903, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 28.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 2.0, "Total Spend": 1156.0, "Total Transactions": 103.0, "Total Customers": 66.0, "Median Spend per Transaction": 9.43, "Median Spend per Customer": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084903, 40.00933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "Name": "Palm Tree Gourmet", "Category": "Grocery Stores", "Address": "1940 Pine St", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 42.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 577.0, "Total Spend": 8575.0, "Total Transactions": 530.0, "Total Customers": 331.0, "Median Spend per Transaction": 12.97, "Median Spend per Customer": 16.29 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "Name": "Shing Kee", "Category": "Restaurants and Other Eating Places", "Address": "600 Washington Ave Ste 18A", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 42.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 61.0, "Total Spend": 1219.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 32.2, "Median Spend per Customer": 32.05 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phn-9fz", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "1503 E Wadsworth Ave Ste A", "LATITUDE": 40.079281, "LONGITUDE": -75.174174, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 44.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 6.0, "Total Spend": 148.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 17.7, "Median Spend per Customer": 17.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174174, 40.079281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-4sq", "Name": "Potbelly Sandwich Works", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave", "LATITUDE": 39.979564, "LONGITUDE": -75.153441, "DATE_RANGE_START": 2020, "Total Visits": 133.0, "Total Visitors": 58.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 845.0, "Total Spend": 1567.0, "Total Transactions": 123.0, "Total Customers": 87.0, "Median Spend per Transaction": 11.55, "Median Spend per Customer": 12.52 }, "geometry": { "type": "Point", "coordinates": [ -75.153441, 39.979564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgc-zvf", "Name": "Got The Look", "Category": "Clothing Stores", "Address": "5101 Lancaster Ave", "LATITUDE": 39.976469, "LONGITUDE": -75.224485, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 62.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 1.0, "Total Spend": 20829.0, "Total Transactions": 381.0, "Total Customers": 329.0, "Median Spend per Transaction": 39.98, "Median Spend per Customer": 46.57 }, "geometry": { "type": "Point", "coordinates": [ -75.224485, 39.976469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-7nq", "Name": "Yards brewing", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8500 Essington Ave Terminal A", "LATITUDE": 39.876036, "LONGITUDE": -75.242976, "DATE_RANGE_START": 2020, "Total Visits": 93781.0, "Total Visitors": 57624.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 53.0, "Total Spend": 129.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 20.98, "Median Spend per Customer": 20.98 }, "geometry": { "type": "Point", "coordinates": [ -75.242976, 39.876036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "Name": "Gallo's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "8101 Roosevelt Blvd", "LATITUDE": 40.057623, "LONGITUDE": -75.044487, "DATE_RANGE_START": 2020, "Total Visits": 343.0, "Total Visitors": 302.0, "POI_CBG": 421010333001.0, "Median Dwell Time": 10.0, "Total Spend": 454.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 75.2, "Median Spend per Customer": 75.2 }, "geometry": { "type": "Point", "coordinates": [ -75.044487, 40.057623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj5-3yv", "Name": "Bravo Seafood", "Category": "Restaurants and Other Eating Places", "Address": "3742 Germantown Ave", "LATITUDE": 40.010478, "LONGITUDE": -75.151556, "DATE_RANGE_START": 2020, "Total Visits": 447.0, "Total Visitors": 329.0, "POI_CBG": 421010201021.0, "Median Dwell Time": 10.0, "Total Spend": 348.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 34.82, "Median Spend per Customer": 35.09 }, "geometry": { "type": "Point", "coordinates": [ -75.151556, 40.010478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "Name": "Sang Kee Peking Duck House", "Category": "Restaurants and Other Eating Places", "Address": "238 N 9th St", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 111.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 5862.0, "Total Transactions": 193.0, "Total Customers": 185.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-835", "Name": "Molly Malloy's", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953325, "LONGITUDE": -75.158702, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 64.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 16.18, "Median Spend per Customer": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.158702, 39.953325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "Name": "China Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "2842 Saint Vincent St", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 103.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 4.0, "Total Spend": 2603.0, "Total Transactions": 58.0, "Total Customers": 44.0, "Median Spend per Transaction": 33.64, "Median Spend per Customer": 49.84 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgf-dvz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4301 Market St", "LATITUDE": 39.958338, "LONGITUDE": -75.208218, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 101.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 7.0, "Total Spend": 767.0, "Total Transactions": 56.0, "Total Customers": 42.0, "Median Spend per Transaction": 12.08, "Median Spend per Customer": 14.11 }, "geometry": { "type": "Point", "coordinates": [ -75.208218, 39.958338 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1801 Torresdale Ave", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2020, "Total Visits": 518.0, "Total Visitors": 385.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 5.0, "Total Spend": 8565.0, "Total Transactions": 629.0, "Total Customers": 433.0, "Median Spend per Transaction": 11.38, "Median Spend per Customer": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "Name": "Yakitori Boy", "Category": "Restaurants and Other Eating Places", "Address": "211 N 11th St", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 32.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 132.0, "Total Spend": 4388.0, "Total Transactions": 67.0, "Total Customers": 64.0, "Median Spend per Transaction": 61.24, "Median Spend per Customer": 62.22 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfx-ks5", "Name": "Gregs Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4460 Main St", "LATITUDE": 40.026584, "LONGITUDE": -75.226738, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 6.0, "Total Spend": 2503.0, "Total Transactions": 139.0, "Total Customers": 93.0, "Median Spend per Transaction": 15.77, "Median Spend per Customer": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226738, 40.026584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "331 S 22nd St", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 54.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 1.0, "Total Spend": 2662.0, "Total Transactions": 349.0, "Total Customers": 222.0, "Median Spend per Transaction": 5.78, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-fcq", "Name": "Kanella", "Category": "Restaurants and Other Eating Places", "Address": "1001 Spruce St", "LATITUDE": 39.946359, "LONGITUDE": -75.157966, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 93.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 1.0, "Total Spend": 829.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 33.08, "Median Spend per Customer": 33.08 }, "geometry": { "type": "Point", "coordinates": [ -75.157966, 39.946359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-66k", "Name": "Hatch and choop", "Category": "Restaurants and Other Eating Places", "Address": "122 S 12th St", "LATITUDE": 39.94951, "LONGITUDE": -75.160766, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 185.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 214.0, "Total Transactions": 22.0, "Total Customers": 4.0, "Median Spend per Transaction": 7.78, "Median Spend per Customer": 53.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160766, 39.94951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-5s5", "Name": "Halal Gyro King", "Category": "Restaurants and Other Eating Places", "Address": "1 S 12th St", "LATITUDE": 39.951797, "LONGITUDE": -75.15974, "DATE_RANGE_START": 2020, "Total Visits": 1999.0, "Total Visitors": 1227.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 148.0, "Total Spend": 1155.0, "Total Transactions": 107.0, "Total Customers": 81.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15974, 39.951797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-tjv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "808 Chestnut St", "LATITUDE": 39.949514, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 147.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 1947.0, "Total Transactions": 314.0, "Total Customers": 191.0, "Median Spend per Transaction": 5.87, "Median Spend per Customer": 6.52 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 Walnut St", "LATITUDE": 39.948446, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2020, "Total Visits": 403.0, "Total Visitors": 222.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 184.0, "Total Spend": 3705.0, "Total Transactions": 655.0, "Total Customers": 286.0, "Median Spend per Transaction": 4.73, "Median Spend per Customer": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.948446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "1234 Locust St", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2020, "Total Visits": 629.0, "Total Visitors": 357.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 101.0, "Total Spend": 12372.0, "Total Transactions": 169.0, "Total Customers": 161.0, "Median Spend per Transaction": 58.0, "Median Spend per Customer": 62.16 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "Name": "Honey Bee Gourmet Deli", "Category": "Restaurants and Other Eating Places", "Address": "1034 Spruce St", "LATITUDE": 39.945912, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 107.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 2.0, "Total Spend": 145.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 9.89 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 39.945912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1901 W Oregon Ave", "LATITUDE": 39.918299, "LONGITUDE": -75.180698, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 99.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 10.0, "Total Spend": 10218.0, "Total Transactions": 492.0, "Total Customers": 329.0, "Median Spend per Transaction": 14.22, "Median Spend per Customer": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.180698, 39.918299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph6-p5f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5201 Lancaster Ave", "LATITUDE": 39.977589, "LONGITUDE": -75.227009, "DATE_RANGE_START": 2020, "Total Visits": 1526.0, "Total Visitors": 1121.0, "POI_CBG": 421010118003.0, "Median Dwell Time": 4.0, "Total Spend": 869.0, "Total Transactions": 42.0, "Total Customers": 36.0, "Median Spend per Transaction": 18.58, "Median Spend per Customer": 19.67 }, "geometry": { "type": "Point", "coordinates": [ -75.227009, 39.977589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8n5", "Name": "Columbia Sportswear", "Category": "Clothing Stores", "Address": "1001 Market St Unit C205", "LATITUDE": 39.951969, "LONGITUDE": -75.157009, "DATE_RANGE_START": 2020, "Total Visits": 875.0, "Total Visitors": 605.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 27.0, "Total Spend": 807.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 63.97, "Median Spend per Customer": 63.97 }, "geometry": { "type": "Point", "coordinates": [ -75.157009, 39.951969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "Name": "Yummy Pho", "Category": "Restaurants and Other Eating Places", "Address": "2012 N Broad St", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 1.0, "Total Spend": 2934.0, "Total Transactions": 165.0, "Total Customers": 135.0, "Median Spend per Transaction": 15.42, "Median Spend per Customer": 15.19 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pp2-sdv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3829 Aramingo Ave", "LATITUDE": 39.995956, "LONGITUDE": -75.09064, "DATE_RANGE_START": 2020, "Total Visits": 397.0, "Total Visitors": 343.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 8.0, "Total Spend": 862.0, "Total Transactions": 50.0, "Total Customers": 46.0, "Median Spend per Transaction": 12.88, "Median Spend per Customer": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.09064, 39.995956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "321 E Allegheny Ave # 25", "LATITUDE": 39.998177, "LONGITUDE": -75.124544, "DATE_RANGE_START": 2020, "Total Visits": 306.0, "Total Visitors": 210.0, "POI_CBG": 421010177025.0, "Median Dwell Time": 21.0, "Total Spend": 601.0, "Total Transactions": 89.0, "Total Customers": 46.0, "Median Spend per Transaction": 6.87, "Median Spend per Customer": 9.56 }, "geometry": { "type": "Point", "coordinates": [ -75.124544, 39.998177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4061 Lancaster Ave", "LATITUDE": 39.964853, "LONGITUDE": -75.204438, "DATE_RANGE_START": 2020, "Total Visits": 451.0, "Total Visitors": 296.0, "POI_CBG": 421010107002.0, "Median Dwell Time": 9.0, "Total Spend": 1326.0, "Total Transactions": 115.0, "Total Customers": 93.0, "Median Spend per Transaction": 7.9, "Median Spend per Customer": 9.09 }, "geometry": { "type": "Point", "coordinates": [ -75.204438, 39.964853 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "Name": "Malelani Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6734 Germantown Ave", "LATITUDE": 40.05294, "LONGITUDE": -75.186129, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 82.0, "Total Spend": 1806.0, "Total Transactions": 62.0, "Total Customers": 44.0, "Median Spend per Transaction": 19.95, "Median Spend per Customer": 36.86 }, "geometry": { "type": "Point", "coordinates": [ -75.186129, 40.05294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-y9z", "Name": "Alyan's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "603 S 4th St", "LATITUDE": 39.941428, "LONGITUDE": -75.149062, "DATE_RANGE_START": 2020, "Total Visits": 798.0, "Total Visitors": 651.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 7.0, "Total Spend": 1782.0, "Total Transactions": 69.0, "Total Customers": 62.0, "Median Spend per Transaction": 20.36, "Median Spend per Customer": 22.03 }, "geometry": { "type": "Point", "coordinates": [ -75.149062, 39.941428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p75-9vf", "Name": "Ashburner Inn", "Category": "Restaurants and Other Eating Places", "Address": "8400 Torresdale Ave", "LATITUDE": 40.040603, "LONGITUDE": -75.015474, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 115.0, "POI_CBG": 421010349003.0, "Median Dwell Time": 50.0, "Total Spend": 2286.0, "Total Transactions": 38.0, "Total Customers": 34.0, "Median Spend per Transaction": 58.4, "Median Spend per Customer": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.015474, 40.040603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "Name": "Alaska King Crab House", "Category": "Restaurants and Other Eating Places", "Address": "4834 Lancaster Ave", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 389.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 9.0, "Total Spend": 7783.0, "Total Transactions": 133.0, "Total Customers": 125.0, "Median Spend per Transaction": 48.74, "Median Spend per Customer": 52.8 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "Name": "Ruby Buffet", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2020, "Total Visits": 347.0, "Total Visitors": 326.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 11.0, "Total Spend": 1569.0, "Total Transactions": 52.0, "Total Customers": 34.0, "Median Spend per Transaction": 23.22, "Median Spend per Customer": 47.74 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "Name": "T cafe", "Category": "Restaurants and Other Eating Places", "Address": "108 Chestnut St", "LATITUDE": 39.947904, "LONGITUDE": -75.142953, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 71.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 102.0, "Total Spend": 18562.0, "Total Transactions": 1558.0, "Total Customers": 796.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.142953, 39.947904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pp5-5vf", "Name": "Buzz Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1800 N Howard St", "LATITUDE": 39.977401, "LONGITUDE": -75.135043, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010157002.0, "Median Dwell Time": 12.0, "Total Spend": 159.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 40.14, "Median Spend per Customer": 40.14 }, "geometry": { "type": "Point", "coordinates": [ -75.135043, 39.977401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "Name": "Broad Street Diner", "Category": "Restaurants and Other Eating Places", "Address": "1135 S Broad St", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 18.0, "POI_CBG": 421010023001.0, "Median Dwell Time": 28.0, "Total Spend": 992.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 23.73, "Median Spend per Customer": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "Name": "Sunny Side Diner", "Category": "Restaurants and Other Eating Places", "Address": "5948 Market St", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 105.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 4.0, "Total Spend": 788.0, "Total Transactions": 46.0, "Total Customers": 40.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 19.13 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "Name": "Allegro Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3942 Spruce St", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 113.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 30.0, "Total Spend": 20723.0, "Total Transactions": 1306.0, "Total Customers": 726.0, "Median Spend per Transaction": 12.47, "Median Spend per Customer": 20.71 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1801 John F Kennedy Blvd", "LATITUDE": 39.954574, "LONGITUDE": -75.169932, "DATE_RANGE_START": 2020, "Total Visits": 478.0, "Total Visitors": 302.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 101.0, "Total Spend": 8714.0, "Total Transactions": 175.0, "Total Customers": 147.0, "Median Spend per Transaction": 40.17, "Median Spend per Customer": 42.44 }, "geometry": { "type": "Point", "coordinates": [ -75.169932, 39.954574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.991684, "LONGITUDE": -75.154551, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 83.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 80.0, "Total Spend": 2813.0, "Total Transactions": 274.0, "Total Customers": 224.0, "Median Spend per Transaction": 8.51, "Median Spend per Customer": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.154551, 39.991684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "Name": "Thunderbird Salvage", "Category": "Used Merchandise Stores", "Address": "2441 Frankford Ave", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 5.0, "Total Spend": 1402.0, "Total Transactions": 16.0, "Total Customers": 10.0, "Median Spend per Transaction": 54.54, "Median Spend per Customer": 81.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-jjv", "Name": "Sweet Treat Hut", "Category": "Restaurants and Other Eating Places", "Address": "1240 N 50th St", "LATITUDE": 39.973199, "LONGITUDE": -75.222994, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 2.0, "Total Spend": 178.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222994, 39.973199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "Name": "Polo Ralph Lauren Factory Store", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Ste 92", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 50.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 10218.0, "Total Transactions": 127.0, "Total Customers": 99.0, "Median Spend per Transaction": 59.48, "Median Spend per Customer": 72.73 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p74-wtv", "Name": "Naryan Auto Group", "Category": "Automobile Dealers", "Address": "7525 Frankford Ave", "LATITUDE": 40.038499, "LONGITUDE": -75.035061, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 56.0, "POI_CBG": 421010330001.0, "Median Dwell Time": 69.0, "Total Spend": 43861.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 3048.5, "Median Spend per Customer": 3597.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035061, 40.038499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "Name": "Locust Rendezvous", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1415 Locust St", "LATITUDE": 39.948535, "LONGITUDE": -75.165879, "DATE_RANGE_START": 2020, "Total Visits": 861.0, "Total Visitors": 552.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 106.0, "Total Spend": 760.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 15.9, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165879, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.979849, "LONGITUDE": -75.269293, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 337.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 3.0, "Total Spend": 18309.0, "Total Transactions": 1247.0, "Total Customers": 1026.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.269293, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St Ste 103", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2020, "Total Visits": 10482.0, "Total Visitors": 6602.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 22.0, "Total Spend": 27522.0, "Total Transactions": 2023.0, "Total Customers": 1151.0, "Median Spend per Transaction": 11.35, "Median Spend per Customer": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "Name": "Scoop Deville", "Category": "Restaurants and Other Eating Places", "Address": "1315 Walnut St", "LATITUDE": 39.949429, "LONGITUDE": -75.162851, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 135.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 44.0, "Total Spend": 1489.0, "Total Transactions": 129.0, "Total Customers": 125.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.162851, 39.949429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2998A Welsh Rd", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2020, "Total Visits": 349.0, "Total Visitors": 228.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 1.0, "Total Spend": 5114.0, "Total Transactions": 732.0, "Total Customers": 320.0, "Median Spend per Transaction": 6.27, "Median Spend per Customer": 9.33 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@63s-dw9-7nq", "Name": "LeBus Bakery", "Category": "Restaurants and Other Eating Places", "Address": "Terminal C Philadelphia Airport", "LATITUDE": 39.877284, "LONGITUDE": -75.241546, "DATE_RANGE_START": 2020, "Total Visits": 166655.0, "Total Visitors": 88708.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 65.0, "Total Spend": 640.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 11.02, "Median Spend per Customer": 11.89 }, "geometry": { "type": "Point", "coordinates": [ -75.241546, 39.877284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pmb-fpv", "Name": "Shaking Seafood", "Category": "Restaurants and Other Eating Places", "Address": "243 S 10th St", "LATITUDE": 39.946982, "LONGITUDE": -75.157365, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 4.0, "Total Spend": 6726.0, "Total Transactions": 133.0, "Total Customers": 115.0, "Median Spend per Transaction": 46.44, "Median Spend per Customer": 49.06 }, "geometry": { "type": "Point", "coordinates": [ -75.157365, 39.946982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.038624, "LONGITUDE": -75.106851, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 2.0, "Total Spend": 8172.0, "Total Transactions": 451.0, "Total Customers": 373.0, "Median Spend per Transaction": 15.75, "Median Spend per Customer": 18.87 }, "geometry": { "type": "Point", "coordinates": [ -75.106851, 40.038624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "Name": "Independence Prime", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 3308.0, "Total Transactions": 123.0, "Total Customers": 109.0, "Median Spend per Transaction": 25.45, "Median Spend per Customer": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-p9s-2tv", "Name": "Momma Mia's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "15002 Endicott St", "LATITUDE": 40.12023, "LONGITUDE": -74.995203, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 46.0, "POI_CBG": 421010365021.0, "Median Dwell Time": 30.0, "Total Spend": 1979.0, "Total Transactions": 60.0, "Total Customers": 46.0, "Median Spend per Transaction": 32.52, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -74.995203, 40.12023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvq-kzz", "Name": "Spruce Super Mini Market", "Category": "Grocery Stores", "Address": "284 S 60th St", "LATITUDE": 39.956724, "LONGITUDE": -75.242101, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 60.0, "POI_CBG": 421010083023.0, "Median Dwell Time": 9.0, "Total Spend": 43.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 5.49, "Median Spend per Customer": 5.49 }, "geometry": { "type": "Point", "coordinates": [ -75.242101, 39.956724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-gc5", "Name": "Salmon Beer Distributor", "Category": "Beer, Wine, and Liquor Stores", "Address": "4571 Aramingo Ave", "LATITUDE": 40.002806, "LONGITUDE": -75.078717, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 105.0, "POI_CBG": 421010183003.0, "Median Dwell Time": 2.0, "Total Spend": 3308.0, "Total Transactions": 85.0, "Total Customers": 46.0, "Median Spend per Transaction": 34.54, "Median Spend per Customer": 43.72 }, "geometry": { "type": "Point", "coordinates": [ -75.078717, 40.002806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-p8j-9mk", "Name": "Capriotti Bros", "Category": "Specialty Food Stores", "Address": "7132 Frankford Ave", "LATITUDE": 40.035466, "LONGITUDE": -75.044048, "DATE_RANGE_START": 2020, "Total Visits": 403.0, "Total Visitors": 260.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 11.0, "Total Spend": 1366.0, "Total Transactions": 60.0, "Total Customers": 46.0, "Median Spend per Transaction": 18.98, "Median Spend per Customer": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.044048, 40.035466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6601 N Broad St", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2020, "Total Visits": 508.0, "Total Visitors": 347.0, "POI_CBG": 421010268002.0, "Median Dwell Time": 8.0, "Total Spend": 2357.0, "Total Transactions": 89.0, "Total Customers": 73.0, "Median Spend per Transaction": 14.38, "Median Spend per Customer": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "Name": "Navy Exchange", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 Robbins St Bldg NO5", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2020, "Total Visits": 437.0, "Total Visitors": 147.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 177.0, "Total Spend": 22951.0, "Total Transactions": 331.0, "Total Customers": 161.0, "Median Spend per Transaction": 25.05, "Median Spend per Customer": 63.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8m-snq", "Name": "Station Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "1609 Pratt St", "LATITUDE": 40.022297, "LONGITUDE": -75.077816, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 427.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 10.0, "Total Spend": 1425.0, "Total Transactions": 46.0, "Total Customers": 44.0, "Median Spend per Transaction": 15.42, "Median Spend per Customer": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.077816, 40.022297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2400 Castor Ave", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2020, "Total Visits": 4297.0, "Total Visitors": 3098.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 5.0, "Total Spend": 17050.0, "Total Transactions": 744.0, "Total Customers": 588.0, "Median Spend per Transaction": 20.26, "Median Spend per Customer": 22.38 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4200 G St", "LATITUDE": 40.012396, "LONGITUDE": -75.112446, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 214.0, "POI_CBG": 421010289012.0, "Median Dwell Time": 4.0, "Total Spend": 13998.0, "Total Transactions": 792.0, "Total Customers": 399.0, "Median Spend per Transaction": 15.06, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112446, 40.012396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-xqz", "Name": "Kinky Choices", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1299 N 7th St", "LATITUDE": 39.971585, "LONGITUDE": -75.147595, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 147.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 17.0, "Total Spend": 2309.0, "Total Transactions": 44.0, "Total Customers": 40.0, "Median Spend per Transaction": 33.44, "Median Spend per Customer": 24.85 }, "geometry": { "type": "Point", "coordinates": [ -75.147595, 39.971585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-zvf", "Name": "South Street Magic", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "519 S 4th St", "LATITUDE": 39.941265, "LONGITUDE": -75.150408, "DATE_RANGE_START": 2020, "Total Visits": 643.0, "Total Visitors": 534.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 11.0, "Total Spend": 894.0, "Total Transactions": 12.0, "Total Customers": 4.0, "Median Spend per Transaction": 61.75, "Median Spend per Customer": 225.25 }, "geometry": { "type": "Point", "coordinates": [ -75.150408, 39.941265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-rp9", "Name": "Sunrise Breakfast", "Category": "Restaurants and Other Eating Places", "Address": "1916 E Washington Ln", "LATITUDE": 40.066142, "LONGITUDE": -75.158748, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010263022.0, "Median Dwell Time": null, "Total Spend": 1307.0, "Total Transactions": 66.0, "Total Customers": 56.0, "Median Spend per Transaction": 18.68, "Median Spend per Customer": 19.57 }, "geometry": { "type": "Point", "coordinates": [ -75.158748, 40.066142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 10th St", "LATITUDE": 39.931641, "LONGITUDE": -75.160608, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 36.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 73.0, "Total Spend": 3860.0, "Total Transactions": 629.0, "Total Customers": 270.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 7.55 }, "geometry": { "type": "Point", "coordinates": [ -75.160608, 39.931641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgf-7kf", "Name": "Lavish", "Category": "Restaurants and Other Eating Places", "Address": "4308 Lancaster Ave", "LATITUDE": 39.967761, "LONGITUDE": -75.210086, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010106001.0, "Median Dwell Time": 163.0, "Total Spend": 2102.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 61.0, "Median Spend per Customer": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210086, 39.967761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-brk", "Name": "East Coast Wings + Grill", "Category": "Restaurants and Other Eating Places", "Address": "2539 Castor Ave", "LATITUDE": 39.993916, "LONGITUDE": -75.091363, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 9.0, "Total Spend": 2604.0, "Total Transactions": 69.0, "Total Customers": 64.0, "Median Spend per Transaction": 35.04, "Median Spend per Customer": 36.29 }, "geometry": { "type": "Point", "coordinates": [ -75.091363, 39.993916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "1544 Christian St", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 4.0, "Total Spend": 1355.0, "Total Transactions": 113.0, "Total Customers": 64.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 11.47 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm4-pjv", "Name": "Cardenas Oil & Vinegar Taproom", "Category": "Specialty Food Stores", "Address": "942 S 9th St", "LATITUDE": 39.937768, "LONGITUDE": -75.158238, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 14.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 250.0, "Total Spend": 859.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 47.9, "Median Spend per Customer": 49.85 }, "geometry": { "type": "Point", "coordinates": [ -75.158238, 39.937768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-pvz", "Name": "12 Steps Down", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "831 Christian St", "LATITUDE": 39.939056, "LONGITUDE": -75.157629, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 56.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 1.0, "Total Spend": 1521.0, "Total Transactions": 36.0, "Total Customers": 30.0, "Median Spend per Transaction": 38.25, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157629, 39.939056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgf-33q", "Name": "Ochatto", "Category": "Restaurants and Other Eating Places", "Address": "3608 Chestnut St", "LATITUDE": 39.954494, "LONGITUDE": -75.195113, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 56.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 16.0, "Total Spend": 1391.0, "Total Transactions": 52.0, "Total Customers": 42.0, "Median Spend per Transaction": 23.98, "Median Spend per Customer": 27.17 }, "geometry": { "type": "Point", "coordinates": [ -75.195113, 39.954494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "Name": "Old English Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6015 N 5th St", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2020, "Total Visits": 87.0, "Total Visitors": 62.0, "POI_CBG": 421010274011.0, "Median Dwell Time": 3.0, "Total Spend": 1494.0, "Total Transactions": 46.0, "Total Customers": 24.0, "Median Spend per Transaction": 26.3, "Median Spend per Customer": 44.37 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-kvf", "Name": "20th Street Pizza", "Category": "Restaurants and Other Eating Places", "Address": "108 S 20th St", "LATITUDE": 39.951712, "LONGITUDE": -75.173725, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 30.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 758.0, "Total Spend": 543.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 35.4, "Median Spend per Customer": 35.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173725, 39.951712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-ks5", "Name": "Born Yesterday", "Category": "Clothing Stores", "Address": "1901 Walnut St", "LATITUDE": 39.950495, "LONGITUDE": -75.17265, "DATE_RANGE_START": 2020, "Total Visits": 1082.0, "Total Visitors": 647.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 297.0, "Total Spend": 6264.0, "Total Transactions": 69.0, "Total Customers": 60.0, "Median Spend per Transaction": 64.8, "Median Spend per Customer": 76.62 }, "geometry": { "type": "Point", "coordinates": [ -75.17265, 39.950495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "Name": "Rittenhouse Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2001 Pine St", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 40.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 322.0, "Total Spend": 1722.0, "Total Transactions": 81.0, "Total Customers": 66.0, "Median Spend per Transaction": 15.33, "Median Spend per Customer": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-g8v", "Name": "Khaamar Baari Supermarket", "Category": "Grocery Stores", "Address": "6919 Castor Ave", "LATITUDE": 40.046044, "LONGITUDE": -75.070773, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 42.0, "POI_CBG": 421010314015.0, "Median Dwell Time": 7.0, "Total Spend": 2603.0, "Total Transactions": 81.0, "Total Customers": 40.0, "Median Spend per Transaction": 19.94, "Median Spend per Customer": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.070773, 40.046044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7715 Frankford Ave", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2020, "Total Visits": 721.0, "Total Visitors": 518.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 4.0, "Total Spend": 24354.0, "Total Transactions": 2259.0, "Total Customers": 937.0, "Median Spend per Transaction": 9.07, "Median Spend per Customer": 11.96 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-r49", "Name": "The Richmond Bottle Shop", "Category": "Beer, Wine, and Liquor Stores", "Address": "2497 Aramingo Ave", "LATITUDE": 39.975358, "LONGITUDE": -75.119619, "DATE_RANGE_START": 2020, "Total Visits": 1798.0, "Total Visitors": 959.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 13.0, "Total Spend": 366.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 35.38, "Median Spend per Customer": 35.38 }, "geometry": { "type": "Point", "coordinates": [ -75.119619, 39.975358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "10000 Bustleton Ave", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2020, "Total Visits": 1040.0, "Total Visitors": 794.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 6.0, "Total Spend": 6101.0, "Total Transactions": 328.0, "Total Customers": 212.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-6hq", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1186 Franklin Mills Cir", "LATITUDE": 40.087733, "LONGITUDE": -74.961181, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 322.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 362.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 91.1, "Median Spend per Customer": 91.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961181, 40.087733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-zmk", "Name": "Touch of Gold", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "640 South St Ste A", "LATITUDE": 39.941921, "LONGITUDE": -75.153483, "DATE_RANGE_START": 2020, "Total Visits": 836.0, "Total Visitors": 617.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 40.0, "Total Spend": 2342.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 270.0, "Median Spend per Customer": 424.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153483, 39.941921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "Name": "Sam's Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1000 Franklin Mills Cir", "LATITUDE": 40.093002, "LONGITUDE": -74.958736, "DATE_RANGE_START": 2020, "Total Visits": 7638.0, "Total Visitors": 4680.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 21.0, "Total Spend": 308307.0, "Total Transactions": 4444.0, "Total Customers": 2100.0, "Median Spend per Transaction": 35.46, "Median Spend per Customer": 83.62 }, "geometry": { "type": "Point", "coordinates": [ -74.958736, 40.093002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-bp9", "Name": "Sang Kee Noodle House", "Category": "Restaurants and Other Eating Places", "Address": "900 Packer Ave", "LATITUDE": 39.909183, "LONGITUDE": -75.16467, "DATE_RANGE_START": 2020, "Total Visits": 877.0, "Total Visitors": 153.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 332.0, "Total Spend": 3866.0, "Total Transactions": 149.0, "Total Customers": 66.0, "Median Spend per Transaction": 16.15, "Median Spend per Customer": 39.43 }, "geometry": { "type": "Point", "coordinates": [ -75.16467, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3yv", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.101772, "LONGITUDE": -75.007116, "DATE_RANGE_START": 2020, "Total Visits": 2171.0, "Total Visitors": 1812.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 47.0, "Total Spend": 111.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 20.57, "Median Spend per Customer": 20.57 }, "geometry": { "type": "Point", "coordinates": [ -75.007116, 40.101772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "Name": "Vernick Food & Drink", "Category": "Restaurants and Other Eating Places", "Address": "2031 Walnut St", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2020, "Total Visits": 1499.0, "Total Visitors": 917.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 96.0, "Total Spend": 2924.0, "Total Transactions": 56.0, "Total Customers": 28.0, "Median Spend per Transaction": 44.62, "Median Spend per Customer": 104.35 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "Name": "Moshulu", "Category": "Restaurants and Other Eating Places", "Address": "401 S Columbus Blvd", "LATITUDE": 39.941589, "LONGITUDE": -75.141261, "DATE_RANGE_START": 2020, "Total Visits": 699.0, "Total Visitors": 580.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 27.0, "Total Spend": 77701.0, "Total Transactions": 592.0, "Total Customers": 564.0, "Median Spend per Transaction": 105.52, "Median Spend per Customer": 110.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141261, 39.941589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmb-835", "Name": "Beck's Cajun Cafe", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953182, "LONGITUDE": -75.159431, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 1422.0, "Total Transactions": 73.0, "Total Customers": 67.0, "Median Spend per Transaction": 15.99, "Median Spend per Customer": 16.88 }, "geometry": { "type": "Point", "coordinates": [ -75.159431, 39.953182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "Name": "New Delhi Indian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4004 Chestnut St", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 79.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 12.0, "Total Spend": 2013.0, "Total Transactions": 67.0, "Total Customers": 44.0, "Median Spend per Transaction": 26.65, "Median Spend per Customer": 41.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "Name": "El Punto", "Category": "Restaurants and Other Eating Places", "Address": "4460 Whitaker Ave", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 71.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 33.0, "Total Spend": 5614.0, "Total Transactions": 242.0, "Total Customers": 206.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 24.38 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St Ste 5", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 36.0, "Total Spend": 2550.0, "Total Transactions": 204.0, "Total Customers": 97.0, "Median Spend per Transaction": 11.2, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-8d9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1038 Arch St", "LATITUDE": 39.953621, "LONGITUDE": -75.157784, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 179.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 1843.0, "Total Transactions": 288.0, "Total Customers": 179.0, "Median Spend per Transaction": 5.01, "Median Spend per Customer": 6.17 }, "geometry": { "type": "Point", "coordinates": [ -75.157784, 39.953621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-4n5", "Name": "Shoe Factory", "Category": "Shoe Stores", "Address": "7000 Castor Ave", "LATITUDE": 40.047111, "LONGITUDE": -75.070347, "DATE_RANGE_START": 2020, "Total Visits": 236.0, "Total Visitors": 159.0, "POI_CBG": 421010310003.0, "Median Dwell Time": 18.0, "Total Spend": 3443.0, "Total Transactions": 111.0, "Total Customers": 109.0, "Median Spend per Transaction": 23.98, "Median Spend per Customer": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.070347, 40.047111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1 Mifflin St", "LATITUDE": 39.92482, "LONGITUDE": -75.146253, "DATE_RANGE_START": 2020, "Total Visits": 9649.0, "Total Visitors": 5927.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 21.0, "Total Spend": 571918.0, "Total Transactions": 10252.0, "Total Customers": 6471.0, "Median Spend per Transaction": 37.23, "Median Spend per Customer": 56.94 }, "geometry": { "type": "Point", "coordinates": [ -75.146253, 39.92482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "Name": "Loco Dollar", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "201 E Allegheny Ave", "LATITUDE": 39.998868, "LONGITUDE": -75.126992, "DATE_RANGE_START": 2020, "Total Visits": 584.0, "Total Visitors": 328.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 12.0, "Total Spend": 1589.0, "Total Transactions": 77.0, "Total Customers": 64.0, "Median Spend per Transaction": 16.6, "Median Spend per Customer": 22.21 }, "geometry": { "type": "Point", "coordinates": [ -75.126992, 39.998868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "Name": "Produce Junction", "Category": "Florists", "Address": "2241 Bryn Mawr Ave", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2020, "Total Visits": 365.0, "Total Visitors": 266.0, "POI_CBG": 421010120001.0, "Median Dwell Time": 7.0, "Total Spend": 81.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p7x-6tv", "Name": "Artifax", "Category": "Other Miscellaneous Store Retailers", "Address": "2446 Cottman Ave", "LATITUDE": 40.046392, "LONGITUDE": -75.058077, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 26.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 3.0, "Total Spend": 10262.0, "Total Transactions": 189.0, "Total Customers": 141.0, "Median Spend per Transaction": 38.61, "Median Spend per Customer": 47.63 }, "geometry": { "type": "Point", "coordinates": [ -75.058077, 40.046392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "Name": "Garden's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1902 W Girard Ave", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 26.0, "POI_CBG": 421010139003.0, "Median Dwell Time": 344.0, "Total Spend": 896.0, "Total Transactions": 64.0, "Total Customers": 50.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 16.29 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4100 Chester Ave", "LATITUDE": 39.94836, "LONGITUDE": -75.206367, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 30.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 11.0, "Total Spend": 5701.0, "Total Transactions": 846.0, "Total Customers": 314.0, "Median Spend per Transaction": 5.92, "Median Spend per Customer": 9.03 }, "geometry": { "type": "Point", "coordinates": [ -75.206367, 39.94836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj9-grk", "Name": "Nedro Food Market", "Category": "Grocery Stores", "Address": "5900 N 21st St", "LATITUDE": 40.043815, "LONGITUDE": -75.156105, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 48.0, "POI_CBG": 421010279014.0, "Median Dwell Time": 294.0, "Total Spend": 245.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 7.98, "Median Spend per Customer": 10.34 }, "geometry": { "type": "Point", "coordinates": [ -75.156105, 40.043815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "Name": "Cappuccio's Meats", "Category": "Specialty Food Stores", "Address": "1019 S 9th St", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 48.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 3.0, "Total Spend": 2469.0, "Total Transactions": 58.0, "Total Customers": 54.0, "Median Spend per Transaction": 36.09, "Median Spend per Customer": 36.09 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-mff", "Name": "Con Murphy's", "Category": "Restaurants and Other Eating Places", "Address": "1700 Benjamin Franklin Pkwy", "LATITUDE": 39.955696, "LONGITUDE": -75.167996, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 58.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 403.0, "Total Spend": 5562.0, "Total Transactions": 105.0, "Total Customers": 101.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167996, 39.955696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "Name": "Dolce Carini Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1929 Chestnut St", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 58.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 183.0, "Total Spend": 1606.0, "Total Transactions": 111.0, "Total Customers": 81.0, "Median Spend per Transaction": 10.72, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-t7q", "Name": "Robert Lance Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "803 Sansom St", "LATITUDE": 39.949012, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 24.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 30.0, "Total Spend": 3714.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 935.5, "Median Spend per Customer": 935.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm4-k2k", "Name": "Cellular 2000 LLC", "Category": "Electronics and Appliance Stores", "Address": "649 Washington Ave", "LATITUDE": 39.93569, "LONGITUDE": -75.155206, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 56.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 2.0, "Total Spend": 387.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155206, 39.93569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "6842 Bustleton Ave", "LATITUDE": 40.041625, "LONGITUDE": -75.064814, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 58.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 289.0, "Total Spend": 3218.0, "Total Transactions": 133.0, "Total Customers": 119.0, "Median Spend per Transaction": 20.63, "Median Spend per Customer": 23.57 }, "geometry": { "type": "Point", "coordinates": [ -75.064814, 40.041625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pfz-ch5", "Name": "Pilgrim Roasters", "Category": "Restaurants and Other Eating Places", "Address": "4120 Main St", "LATITUDE": 40.022764, "LONGITUDE": -75.219439, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 58.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 32.0, "Total Spend": 221.0, "Total Transactions": 30.0, "Total Customers": 20.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219439, 40.022764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1100 Pattison Ave", "LATITUDE": 39.904365, "LONGITUDE": -75.169382, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 111.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 6.0, "Total Spend": 4596.0, "Total Transactions": 254.0, "Total Customers": 246.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.169382, 39.904365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "Name": "Cafe Soho", "Category": "Restaurants and Other Eating Places", "Address": "468 W Cheltenham Ave", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 73.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 292.0, "Total Spend": 18588.0, "Total Transactions": 506.0, "Total Customers": 441.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 36.67 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-tvz", "Name": "Devon Seafood Grill", "Category": "Restaurants and Other Eating Places", "Address": "225 S 18th St", "LATITUDE": 39.949401, "LONGITUDE": -75.170553, "DATE_RANGE_START": 2020, "Total Visits": 820.0, "Total Visitors": 365.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 223.0, "Total Spend": 14259.0, "Total Transactions": 195.0, "Total Customers": 175.0, "Median Spend per Transaction": 55.48, "Median Spend per Customer": 64.11 }, "geometry": { "type": "Point", "coordinates": [ -75.170553, 39.949401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm8-djv", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "1526 Packer Ave", "LATITUDE": 39.911588, "LONGITUDE": -75.17455, "DATE_RANGE_START": 2020, "Total Visits": 496.0, "Total Visitors": 389.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 52.0, "Total Spend": 126.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17455, 39.911588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "910 Chestnut St", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2020, "Total Visits": 409.0, "Total Visitors": 274.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 4.0, "Total Spend": 1860.0, "Total Transactions": 202.0, "Total Customers": 141.0, "Median Spend per Transaction": 7.98, "Median Spend per Customer": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "Name": "Crown Chicken and Grill", "Category": "Restaurants and Other Eating Places", "Address": "7275 Rising Sun Ave", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 93.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 102.0, "Total Spend": 6513.0, "Total Transactions": 542.0, "Total Customers": 363.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-zfz", "Name": "Sweet Treat Hut", "Category": "Restaurants and Other Eating Places", "Address": "1221 S Broad St", "LATITUDE": 39.934878, "LONGITUDE": -75.167189, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 105.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 50.0, "Total Spend": 228.0, "Total Transactions": 22.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 14.95 }, "geometry": { "type": "Point", "coordinates": [ -75.167189, 39.934878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-9cq", "Name": "Federal Donuts West", "Category": "Restaurants and Other Eating Places", "Address": "3428 Sansom St", "LATITUDE": 39.953537, "LONGITUDE": -75.193139, "DATE_RANGE_START": 2020, "Total Visits": 1356.0, "Total Visitors": 951.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 16.0, "Total Spend": 168.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 14.38, "Median Spend per Customer": 14.38 }, "geometry": { "type": "Point", "coordinates": [ -75.193139, 39.953537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1002 S Broad St", "LATITUDE": 39.938246, "LONGITUDE": -75.166948, "DATE_RANGE_START": 2020, "Total Visits": 6479.0, "Total Visitors": 3698.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 19.0, "Total Spend": 3484.0, "Total Transactions": 441.0, "Total Customers": 333.0, "Median Spend per Transaction": 6.64, "Median Spend per Customer": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.938246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "Name": "Stargazy", "Category": "Restaurants and Other Eating Places", "Address": "1838 E Passyunk Ave", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010029001.0, "Median Dwell Time": null, "Total Spend": 180.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 21.51, "Median Spend per Customer": 21.51 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "Name": "Oregon Express", "Category": "Restaurants and Other Eating Places", "Address": "2700 S Marvine St", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 10.0, "POI_CBG": 421010372001.0, "Median Dwell Time": 20.0, "Total Spend": 229.0, "Total Transactions": 36.0, "Total Customers": 24.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 8.27 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "Name": "Fairdale Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4019 Fairdale Rd", "LATITUDE": 40.084494, "LONGITUDE": -74.972673, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 48.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 25.0, "Total Spend": 181.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -74.972673, 40.084494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmd-snq", "Name": "Pure Design", "Category": "Florists", "Address": "500 S 22nd St", "LATITUDE": 39.946224, "LONGITUDE": -75.178525, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 52.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 1.0, "Total Spend": 1136.0, "Total Transactions": 26.0, "Total Customers": 20.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178525, 39.946224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "Name": "Lebel Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5601 W Girard Ave", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 62.0, "POI_CBG": 421010112003.0, "Median Dwell Time": 6.0, "Total Spend": 2086.0, "Total Transactions": 97.0, "Total Customers": 79.0, "Median Spend per Transaction": 20.73, "Median Spend per Customer": 22.73 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "Name": "La Rosa Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2106 S Broad St", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 62.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 12.0, "Total Spend": 1375.0, "Total Transactions": 73.0, "Total Customers": 58.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "7129 Frankford Ave", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 46.0, "Total Spend": 10592.0, "Total Transactions": 492.0, "Total Customers": 413.0, "Median Spend per Transaction": 18.33, "Median Spend per Customer": 21.45 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmd-xqz", "Name": "Cafe Ynez", "Category": "Restaurants and Other Eating Places", "Address": "2025 Washington Ave", "LATITUDE": 39.939765, "LONGITUDE": -75.177339, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 21.0, "Total Spend": 252.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 63.58, "Median Spend per Customer": 63.58 }, "geometry": { "type": "Point", "coordinates": [ -75.177339, 39.939765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "Name": "Italian Express", "Category": "Restaurants and Other Eating Places", "Address": "2641 W Girard Ave", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2020, "Total Visits": 157.0, "Total Visitors": 48.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 607.0, "Total Spend": 2026.0, "Total Transactions": 95.0, "Total Customers": 71.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 18.61 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pg9-k75", "Name": "Panda Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3024 W York St", "LATITUDE": 39.9926, "LONGITUDE": -75.181975, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010169023.0, "Median Dwell Time": 76.0, "Total Spend": 3863.0, "Total Transactions": 159.0, "Total Customers": 113.0, "Median Spend per Transaction": 22.78, "Median Spend per Customer": 26.78 }, "geometry": { "type": "Point", "coordinates": [ -75.181975, 39.9926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "Name": "Dancewear On Broad LLC", "Category": "Clothing Stores", "Address": "1129 S Broad St", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 8.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 111.0, "Total Spend": 716.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 156.38, "Median Spend per Customer": 156.38 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "Name": "Christies Deli", "Category": "Restaurants and Other Eating Places", "Address": "1822 Spring Garden St", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 10.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 25.0, "Total Spend": 5971.0, "Total Transactions": 389.0, "Total Customers": 204.0, "Median Spend per Transaction": 12.56, "Median Spend per Customer": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgj-cqz", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St Ste 5", "LATITUDE": 39.977801, "LONGITUDE": -75.158494, "DATE_RANGE_START": 2020, "Total Visits": 3176.0, "Total Visitors": 2314.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 12.0, "Total Spend": 256.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 16.48, "Median Spend per Customer": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158494, 39.977801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "Name": "Unit Su Vege", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 106", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 99.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 23.0, "Total Spend": 3551.0, "Total Transactions": 103.0, "Total Customers": 83.0, "Median Spend per Transaction": 24.45, "Median Spend per Customer": 28.23 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 173.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 2.0, "Total Spend": 763.0, "Total Transactions": 52.0, "Total Customers": 44.0, "Median Spend per Transaction": 12.92, "Median Spend per Customer": 16.33 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1425 Locust St", "LATITUDE": 39.948525, "LONGITUDE": -75.166014, "DATE_RANGE_START": 2020, "Total Visits": 345.0, "Total Visitors": 248.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 132.0, "Total Spend": 4763.0, "Total Transactions": 911.0, "Total Customers": 419.0, "Median Spend per Transaction": 4.45, "Median Spend per Customer": 6.14 }, "geometry": { "type": "Point", "coordinates": [ -75.166014, 39.948525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "Name": "City Pizza", "Category": "Restaurants and Other Eating Places", "Address": "100 Snyder Ave", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2020, "Total Visits": 593.0, "Total Visitors": 318.0, "POI_CBG": 421010042013.0, "Median Dwell Time": 197.0, "Total Spend": 487.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "320 W Oregon Ave Ste 1", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2020, "Total Visits": 1010.0, "Total Visitors": 675.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 14.0, "Total Spend": 1534.0, "Total Transactions": 66.0, "Total Customers": 60.0, "Median Spend per Transaction": 20.82, "Median Spend per Customer": 22.83 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1434 E Washington Ln", "LATITUDE": 40.060394, "LONGITUDE": -75.164248, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 143.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 7.0, "Total Spend": 25039.0, "Total Transactions": 502.0, "Total Customers": 399.0, "Median Spend per Transaction": 30.99, "Median Spend per Customer": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.164248, 40.060394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-435", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "2110 S Columbus Blvd", "LATITUDE": 39.918945, "LONGITUDE": -75.143088, "DATE_RANGE_START": 2020, "Total Visits": 794.0, "Total Visitors": 595.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 42.0, "Total Spend": 61658.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 688.5, "Median Spend per Customer": 688.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143088, 39.918945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-75z", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "1500 Market St", "LATITUDE": 39.952267, "LONGITUDE": -75.166533, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 191.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 145.0, "Total Spend": 1886.0, "Total Transactions": 121.0, "Total Customers": 117.0, "Median Spend per Transaction": 12.58, "Median Spend per Customer": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166533, 39.952267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pg8-z2k", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1701 N 33rd St", "LATITUDE": 39.982802, "LONGITUDE": -75.187818, "DATE_RANGE_START": 2020, "Total Visits": 2074.0, "Total Visitors": 1489.0, "POI_CBG": 421010149006.0, "Median Dwell Time": 6.0, "Total Spend": 1162.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187818, 39.982802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2751 W Passyunk Ave", "LATITUDE": 39.921602, "LONGITUDE": -75.193164, "DATE_RANGE_START": 2020, "Total Visits": 2650.0, "Total Visitors": 1788.0, "POI_CBG": 421010036003.0, "Median Dwell Time": 5.0, "Total Spend": 773.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 21.01, "Median Spend per Customer": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.193164, 39.921602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4140 N Broad St", "LATITUDE": 40.016586, "LONGITUDE": -75.149894, "DATE_RANGE_START": 2020, "Total Visits": 1731.0, "Total Visitors": 1203.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 6.0, "Total Spend": 1076.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 27.24, "Median Spend per Customer": 36.61 }, "geometry": { "type": "Point", "coordinates": [ -75.149894, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "199 Franklin Mills Blvd Ste A", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2020, "Total Visits": 842.0, "Total Visitors": 717.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 2727.0, "Total Transactions": 34.0, "Total Customers": 32.0, "Median Spend per Transaction": 24.4, "Median Spend per Customer": 25.16 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-qs5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3501 Cedar St", "LATITUDE": 39.991422, "LONGITUDE": -75.097766, "DATE_RANGE_START": 2020, "Total Visits": 379.0, "Total Visitors": 268.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 10.0, "Total Spend": 1459.0, "Total Transactions": 46.0, "Total Customers": 26.0, "Median Spend per Transaction": 20.25, "Median Spend per Customer": 63.01 }, "geometry": { "type": "Point", "coordinates": [ -75.097766, 39.991422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "Name": "OfficeMax", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7231 Roosevelt Blvd", "LATITUDE": 40.043545, "LONGITUDE": -75.054368, "DATE_RANGE_START": 2020, "Total Visits": 1715.0, "Total Visitors": 1366.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 9.0, "Total Spend": 14636.0, "Total Transactions": 383.0, "Total Customers": 318.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.054368, 40.043545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-tvz", "Name": "Material Culture", "Category": "Used Merchandise Stores", "Address": "4700 Wissahickon Ave Ste 101", "LATITUDE": 40.01529, "LONGITUDE": -75.173584, "DATE_RANGE_START": 2020, "Total Visits": 832.0, "Total Visitors": 496.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 120.0, "Total Spend": 6644.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 332.58, "Median Spend per Customer": 332.58 }, "geometry": { "type": "Point", "coordinates": [ -75.173584, 40.01529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1635 Spruce St", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 125.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 92.0, "Total Spend": 2169.0, "Total Transactions": 52.0, "Total Customers": 52.0, "Median Spend per Transaction": 31.84, "Median Spend per Customer": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-ht9", "Name": "Vapor Hut", "Category": "Other Miscellaneous Store Retailers", "Address": "2550 Grant Ave Ste 340", "LATITUDE": 40.0786, "LONGITUDE": -75.027064, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 179.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 4695.0, "Total Transactions": 119.0, "Total Customers": 73.0, "Median Spend per Transaction": 27.13, "Median Spend per Customer": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.027064, 40.0786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmc-qmk", "Name": "Federal Donuts 2nd Street", "Category": "Restaurants and Other Eating Places", "Address": "1219 S 2nd St", "LATITUDE": 39.932221, "LONGITUDE": -75.147485, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010025002.0, "Median Dwell Time": null, "Total Spend": 543.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147485, 39.932221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "Name": "Claudio's Specialty Foods", "Category": "Specialty Food Stores", "Address": "924 S 9th St # 26", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 11.0, "Total Spend": 4053.0, "Total Transactions": 66.0, "Total Customers": 52.0, "Median Spend per Transaction": 50.09, "Median Spend per Customer": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pj2-tsq", "Name": "Beijing", "Category": "Restaurants and Other Eating Places", "Address": "909 E Cayuga St", "LATITUDE": 40.015027, "LONGITUDE": -75.108817, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010191004.0, "Median Dwell Time": 1.0, "Total Spend": 283.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 19.15, "Median Spend per Customer": 38.2 }, "geometry": { "type": "Point", "coordinates": [ -75.108817, 40.015027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-7yv", "Name": "Carnival Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4222 Lancaster Ave", "LATITUDE": 39.967096, "LONGITUDE": -75.208944, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010106001.0, "Median Dwell Time": null, "Total Spend": 333.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 39.47, "Median Spend per Customer": 39.47 }, "geometry": { "type": "Point", "coordinates": [ -75.208944, 39.967096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9p-tgk", "Name": "Maxi Gastronome", "Category": "Restaurants and Other Eating Places", "Address": "10155 Verree Rd", "LATITUDE": 40.10649, "LONGITUDE": -75.029058, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010357011.0, "Median Dwell Time": null, "Total Spend": 280.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 24.16, "Median Spend per Customer": 43.41 }, "geometry": { "type": "Point", "coordinates": [ -75.029058, 40.10649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7b-kpv", "Name": "China City", "Category": "Restaurants and Other Eating Places", "Address": "9200 Frankford Ave", "LATITUDE": 40.055685, "LONGITUDE": -75.004529, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 1.0, "Total Spend": 108.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 27.13, "Median Spend per Customer": 27.13 }, "geometry": { "type": "Point", "coordinates": [ -75.004529, 40.055685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-3wk", "Name": "Christian Food Market", "Category": "Grocery Stores", "Address": "2243 Christian St", "LATITUDE": 39.942022, "LONGITUDE": -75.180801, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 50.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 12.0, "Total Spend": 2006.0, "Total Transactions": 175.0, "Total Customers": 77.0, "Median Spend per Transaction": 9.35, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180801, 39.942022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg4-grk", "Name": "1beautysupplypa", "Category": "Health and Personal Care Stores", "Address": "301 W Chelten Ave Ste C", "LATITUDE": 40.030533, "LONGITUDE": -75.181364, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 260.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 11.0, "Total Spend": 9160.0, "Total Transactions": 212.0, "Total Customers": 177.0, "Median Spend per Transaction": 24.28, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.181364, 40.030533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "265 S Broad St", "LATITUDE": 39.947387, "LONGITUDE": -75.16433, "DATE_RANGE_START": 2020, "Total Visits": 2531.0, "Total Visitors": 1260.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 366.0, "Total Spend": 1602.0, "Total Transactions": 220.0, "Total Customers": 147.0, "Median Spend per Transaction": 5.9, "Median Spend per Customer": 9.82 }, "geometry": { "type": "Point", "coordinates": [ -75.16433, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "Name": "New Zem Zem Pizza", "Category": "Restaurants and Other Eating Places", "Address": "117 E Chelten Ave", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 75.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 8.0, "Total Spend": 1062.0, "Total Transactions": 50.0, "Total Customers": 42.0, "Median Spend per Transaction": 22.17, "Median Spend per Customer": 25.43 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "22 W Girard Ave", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 187.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 9.0, "Total Spend": 17139.0, "Total Transactions": 1608.0, "Total Customers": 1026.0, "Median Spend per Transaction": 9.62, "Median Spend per Customer": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5601 Lancaster Ave", "LATITUDE": 39.980352, "LONGITUDE": -75.234957, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 58.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 5.0, "Total Spend": 6254.0, "Total Transactions": 397.0, "Total Customers": 318.0, "Median Spend per Transaction": 13.09, "Median Spend per Customer": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.234957, 39.980352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954762, "LONGITUDE": -75.202149, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 127.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 184.0, "Total Spend": 5073.0, "Total Transactions": 854.0, "Total Customers": 385.0, "Median Spend per Transaction": 5.16, "Median Spend per Customer": 8.19 }, "geometry": { "type": "Point", "coordinates": [ -75.202149, 39.954762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7000 Chester Ave", "LATITUDE": 39.923566, "LONGITUDE": -75.245262, "DATE_RANGE_START": 2020, "Total Visits": 1002.0, "Total Visitors": 762.0, "POI_CBG": 421010064003.0, "Median Dwell Time": 9.0, "Total Spend": 4209.0, "Total Transactions": 590.0, "Total Customers": 329.0, "Median Spend per Transaction": 6.02, "Median Spend per Customer": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.245262, 39.923566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "Name": "Annies Seafood", "Category": "Specialty Food Stores", "Address": "6600 Haverford Ave", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010100004.0, "Median Dwell Time": 9.0, "Total Spend": 122.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 30.61, "Median Spend per Customer": 30.61 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-z9f", "Name": "Rosarios Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1501 Wharton St", "LATITUDE": 39.934489, "LONGITUDE": -75.169442, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 38.0, "POI_CBG": 421010022002.0, "Median Dwell Time": 353.0, "Total Spend": 1946.0, "Total Transactions": 60.0, "Total Customers": 50.0, "Median Spend per Transaction": 27.1, "Median Spend per Customer": 34.53 }, "geometry": { "type": "Point", "coordinates": [ -75.169442, 39.934489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-j35", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "127 S 18th St", "LATITUDE": 39.950756, "LONGITUDE": -75.17035, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 3982.0, "Total Transactions": 189.0, "Total Customers": 165.0, "Median Spend per Transaction": 18.25, "Median Spend per Customer": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.17035, 39.950756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-7nq", "Name": "Jam Rock", "Category": "Restaurants and Other Eating Places", "Address": "6155 Woodland Ave", "LATITUDE": 39.928385, "LONGITUDE": -75.230768, "DATE_RANGE_START": 2020, "Total Visits": 1028.0, "Total Visitors": 657.0, "POI_CBG": 421010066004.0, "Median Dwell Time": 114.0, "Total Spend": 526.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 20.79, "Median Spend per Customer": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.230768, 39.928385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvq-649", "Name": "Three Sister Grocery", "Category": "Grocery Stores", "Address": "5356 Delancey St", "LATITUDE": 39.954366, "LONGITUDE": -75.229741, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010085004.0, "Median Dwell Time": null, "Total Spend": 356.0, "Total Transactions": 32.0, "Total Customers": 18.0, "Median Spend per Transaction": 10.7, "Median Spend per Customer": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.229741, 39.954366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "9220 Frankford Ave", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2020, "Total Visits": 572.0, "Total Visitors": 433.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 3.0, "Total Spend": 49.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 12.22, "Median Spend per Customer": 12.22 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23c@628-pmf-mrk", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 204", "LATITUDE": 39.952393, "LONGITUDE": -75.168002, "DATE_RANGE_START": 2020, "Total Visits": 6123.0, "Total Visitors": 3702.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 70.0, "Total Spend": 2002.0, "Total Transactions": 91.0, "Total Customers": 81.0, "Median Spend per Transaction": 15.2, "Median Spend per Customer": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.168002, 39.952393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgy-ks5", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "701 E Cathedral Rd", "LATITUDE": 40.064334, "LONGITUDE": -75.23681, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 137.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 28.0, "Total Spend": 5954.0, "Total Transactions": 443.0, "Total Customers": 329.0, "Median Spend per Transaction": 11.13, "Median Spend per Customer": 13.04 }, "geometry": { "type": "Point", "coordinates": [ -75.23681, 40.064334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "Name": "Jamba", "Category": "Restaurants and Other Eating Places", "Address": "Philadelphia Int L Airport Space C 9a", "LATITUDE": 39.87525, "LONGITUDE": -75.241494, "DATE_RANGE_START": 2020, "Total Visits": 93781.0, "Total Visitors": 57624.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 53.0, "Total Spend": 1883.0, "Total Transactions": 171.0, "Total Customers": 163.0, "Median Spend per Transaction": 8.62, "Median Spend per Customer": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -75.241494, 39.87525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-8sq", "Name": "Cinnabon", "Category": "Restaurants and Other Eating Places", "Address": "1101 Market St", "LATITUDE": 39.952174, "LONGITUDE": -75.158425, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 1591.0, "Total Transactions": 173.0, "Total Customers": 151.0, "Median Spend per Transaction": 7.37, "Median Spend per Customer": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158425, 39.952174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pp5-d9z", "Name": "SBKH Moto", "Category": "Other Motor Vehicle Dealers", "Address": "2014 E Clementine St", "LATITUDE": 39.99283, "LONGITUDE": -75.1131, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 10.0, "Total Spend": 1147.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 289.04, "Median Spend per Customer": 289.04 }, "geometry": { "type": "Point", "coordinates": [ -75.1131, 39.99283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-y5f", "Name": "Mineralistic", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "319 South St", "LATITUDE": 39.941629, "LONGITUDE": -75.148231, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 3702.0, "Total Transactions": 73.0, "Total Customers": 67.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 45.17 }, "geometry": { "type": "Point", "coordinates": [ -75.148231, 39.941629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-33q", "Name": "LOFT", "Category": "Clothing Stores", "Address": "120 S 36th St", "LATITUDE": 39.953717, "LONGITUDE": -75.195101, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 21.0, "Total Spend": 960.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 38.99, "Median Spend per Customer": 38.99 }, "geometry": { "type": "Point", "coordinates": [ -75.195101, 39.953717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "Name": "Tomo Sushi & Ramen", "Category": "Restaurants and Other Eating Places", "Address": "228 Arch St", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010001001.0, "Median Dwell Time": null, "Total Spend": 9597.0, "Total Transactions": 212.0, "Total Customers": 145.0, "Median Spend per Transaction": 38.88, "Median Spend per Customer": 50.76 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "Name": "Sam's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5450 Rutland St", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 32.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 13.0, "Total Spend": 964.0, "Total Transactions": 38.0, "Total Customers": 26.0, "Median Spend per Transaction": 23.24, "Median Spend per Customer": 30.09 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-33q", "Name": "Urban Outfitters", "Category": "Clothing Stores", "Address": "110 S 36th St", "LATITUDE": 39.953788, "LONGITUDE": -75.194952, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 46.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 9.0, "Total Spend": 2891.0, "Total Transactions": 44.0, "Total Customers": 42.0, "Median Spend per Transaction": 37.32, "Median Spend per Customer": 37.32 }, "geometry": { "type": "Point", "coordinates": [ -75.194952, 39.953788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-td9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave Ste 2936", "LATITUDE": 39.902269, "LONGITUDE": -75.241997, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 44.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 6.0, "Total Spend": 2947.0, "Total Transactions": 197.0, "Total Customers": 139.0, "Median Spend per Transaction": 12.83, "Median Spend per Customer": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.241997, 39.902269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "Name": "Nom Nom Ramen", "Category": "Restaurants and Other Eating Places", "Address": "20 S 18th St", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 26.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 67.0, "Total Spend": 706.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 25.92, "Median Spend per Customer": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7x-b6k", "Name": "New England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6728 Bustleton Ave", "LATITUDE": 40.040059, "LONGITUDE": -75.066331, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 30.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 125.0, "Total Spend": 919.0, "Total Transactions": 42.0, "Total Customers": 40.0, "Median Spend per Transaction": 22.25, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.066331, 40.040059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "Name": "Fiesta Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "600 Jamestown St", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 36.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 332.0, "Total Spend": 2134.0, "Total Transactions": 107.0, "Total Customers": 81.0, "Median Spend per Transaction": 14.7, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "Name": "Ryan's Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4301 Main St", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 64.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 30.0, "Total Spend": 10186.0, "Total Transactions": 202.0, "Total Customers": 177.0, "Median Spend per Transaction": 35.29, "Median Spend per Customer": 38.22 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "Name": "The Flavor Spot", "Category": "Restaurants and Other Eating Places", "Address": "5013 N Broad St", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 89.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 14.0, "Total Spend": 3581.0, "Total Transactions": 171.0, "Total Customers": 145.0, "Median Spend per Transaction": 19.15, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pmf-jgk", "Name": "Abe Fisher", "Category": "Restaurants and Other Eating Places", "Address": "1623 Sansom St", "LATITUDE": 39.950786, "LONGITUDE": -75.168347, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 232.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 121.0, "Total Spend": 1694.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 125.62, "Median Spend per Customer": 125.62 }, "geometry": { "type": "Point", "coordinates": [ -75.168347, 39.950786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-st9", "Name": "Cantina Los Caballitos", "Category": "Restaurants and Other Eating Places", "Address": "1651 E Passyunk Ave", "LATITUDE": 39.928871, "LONGITUDE": -75.16446, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 95.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 61.0, "Total Spend": 14722.0, "Total Transactions": 302.0, "Total Customers": 254.0, "Median Spend per Transaction": 42.64, "Median Spend per Customer": 50.79 }, "geometry": { "type": "Point", "coordinates": [ -75.16446, 39.928871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pm9-tqf", "Name": "Wetzel's Pretzels", "Category": "Restaurants and Other Eating Places", "Address": "1101 Market St Spc 2025", "LATITUDE": 39.952391, "LONGITUDE": -75.157424, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 218.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 9.0, "Total Spend": 2229.0, "Total Transactions": 252.0, "Total Customers": 153.0, "Median Spend per Transaction": 7.66, "Median Spend per Customer": 11.42 }, "geometry": { "type": "Point", "coordinates": [ -75.157424, 39.952391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-rkz", "Name": "Zahav", "Category": "Restaurants and Other Eating Places", "Address": "237 Saint James Pl", "LATITUDE": 39.946194, "LONGITUDE": -75.145279, "DATE_RANGE_START": 2020, "Total Visits": 353.0, "Total Visitors": 185.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 82.0, "Total Spend": 16095.0, "Total Transactions": 81.0, "Total Customers": 75.0, "Median Spend per Transaction": 205.36, "Median Spend per Customer": 216.58 }, "geometry": { "type": "Point", "coordinates": [ -75.145279, 39.946194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgb-s89", "Name": "The Lucky Well Spring Arts", "Category": "Restaurants and Other Eating Places", "Address": "990 Spring Garden St", "LATITUDE": 39.961294, "LONGITUDE": -75.154234, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 75.0, "POI_CBG": 421010376001.0, "Median Dwell Time": 212.0, "Total Spend": 1892.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 62.1, "Median Spend per Customer": 62.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154234, 39.961294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "Name": "Saigon Noodle Bar", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074096, "LONGITUDE": -75.202561, "DATE_RANGE_START": 2020, "Total Visits": 399.0, "Total Visitors": 282.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 13.0, "Total Spend": 1520.0, "Total Transactions": 64.0, "Total Customers": 58.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 18.02 }, "geometry": { "type": "Point", "coordinates": [ -75.202561, 40.074096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg9-59f", "Name": "Charlies Country Ribs", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2528 W Diamond St", "LATITUDE": 39.98708, "LONGITUDE": -75.175955, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010151021.0, "Median Dwell Time": null, "Total Spend": 248.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 29.54 }, "geometry": { "type": "Point", "coordinates": [ -75.175955, 39.98708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1820 Torresdale Ave", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010382003.0, "Median Dwell Time": null, "Total Spend": 118.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 6.17, "Median Spend per Customer": 6.21 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-tsq", "Name": "Charlie's Roast Pork", "Category": "Restaurants and Other Eating Places", "Address": "1301 S 3rd St", "LATITUDE": 39.931451, "LONGITUDE": -75.149656, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 1.0, "Total Spend": 1781.0, "Total Transactions": 66.0, "Total Customers": 56.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 27.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 39.931451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj6-8y9", "Name": "El Rinconcito", "Category": "Restaurants and Other Eating Places", "Address": "734 Adams Ave", "LATITUDE": 40.031782, "LONGITUDE": -75.107117, "DATE_RANGE_START": 2020, "Total Visits": 179.0, "Total Visitors": 145.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 3.0, "Total Spend": 991.0, "Total Transactions": 54.0, "Total Customers": 40.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 24.97 }, "geometry": { "type": "Point", "coordinates": [ -75.107117, 40.031782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "Name": "Philly Tacos", "Category": "Restaurants and Other Eating Places", "Address": "2011 Reed St", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 39.0, "Total Spend": 5065.0, "Total Transactions": 54.0, "Total Customers": 48.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "Name": "Nori Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1636 South St", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 26.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 340.0, "Total Spend": 2703.0, "Total Transactions": 66.0, "Total Customers": 56.0, "Median Spend per Transaction": 39.0, "Median Spend per Customer": 39.34 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-vcq", "Name": "The Dolphin Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1539 S Broad St", "LATITUDE": 39.930579, "LONGITUDE": -75.167937, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 34.0, "POI_CBG": 421010029002.0, "Median Dwell Time": 5.0, "Total Spend": 1848.0, "Total Transactions": 95.0, "Total Customers": 58.0, "Median Spend per Transaction": 17.98, "Median Spend per Customer": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.167937, 39.930579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "Name": "Museum Deli", "Category": "Restaurants and Other Eating Places", "Address": "333 Spring Garden St", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 42.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 5.0, "Total Spend": 2267.0, "Total Transactions": 185.0, "Total Customers": 111.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 15.05 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1646 N 29th St", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 56.0, "POI_CBG": 421010149005.0, "Median Dwell Time": 5.0, "Total Spend": 741.0, "Total Transactions": 60.0, "Total Customers": 44.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "Name": "Barcade", "Category": "Restaurants and Other Eating Places", "Address": "1114 Frankford Ave", "LATITUDE": 39.96746, "LONGITUDE": -75.134594, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 208.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 173.0, "Total Spend": 8901.0, "Total Transactions": 161.0, "Total Customers": 105.0, "Median Spend per Transaction": 39.27, "Median Spend per Customer": 42.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134594, 39.96746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-54v", "Name": "Tyson Bees", "Category": "Restaurants and Other Eating Places", "Address": "Spruce St & S 33rd St", "LATITUDE": 39.950018, "LONGITUDE": -75.191759, "DATE_RANGE_START": 2020, "Total Visits": 7584.0, "Total Visitors": 3819.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 234.0, "Total Spend": 449.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 15.69, "Median Spend per Customer": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.191759, 39.950018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj4-3qz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4229 N Broad St", "LATITUDE": 40.017536, "LONGITUDE": -75.148496, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 66.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 8.0, "Total Spend": 11300.0, "Total Transactions": 381.0, "Total Customers": 294.0, "Median Spend per Transaction": 26.61, "Median Spend per Customer": 30.51 }, "geometry": { "type": "Point", "coordinates": [ -75.148496, 40.017536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7901 Oxford Ave", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2020, "Total Visits": 621.0, "Total Visitors": 472.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 3.0, "Total Spend": 15953.0, "Total Transactions": 1423.0, "Total Customers": 832.0, "Median Spend per Transaction": 9.51, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "327 Spring Garden St", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2020, "Total Visits": 151.0, "Total Visitors": 129.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 5.0, "Total Spend": 5166.0, "Total Transactions": 425.0, "Total Customers": 329.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pg8-jjv", "Name": "Deborah's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2608 W Girard Ave", "LATITUDE": 39.97383, "LONGITUDE": -75.179259, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 16.0, "Total Spend": 585.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 36.72, "Median Spend per Customer": 44.01 }, "geometry": { "type": "Point", "coordinates": [ -75.179259, 39.97383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914447, "LONGITUDE": -75.156842, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 38.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 8.0, "Total Spend": 276.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 13.64, "Median Spend per Customer": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.156842, 39.914447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-7wk", "Name": "Fuel", "Category": "Restaurants and Other Eating Places", "Address": "3200 Chestnut St", "LATITUDE": 39.953562, "LONGITUDE": -75.188092, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 56.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 26.0, "Total Spend": 4991.0, "Total Transactions": 252.0, "Total Customers": 177.0, "Median Spend per Transaction": 19.25, "Median Spend per Customer": 23.38 }, "geometry": { "type": "Point", "coordinates": [ -75.188092, 39.953562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "Name": "Einstein Brothers", "Category": "Restaurants and Other Eating Places", "Address": "5600 City Ave", "LATITUDE": 39.994394, "LONGITUDE": -75.238422, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 60.0, "POI_CBG": 421010117001.0, "Median Dwell Time": 5.0, "Total Spend": 715.0, "Total Transactions": 75.0, "Total Customers": 56.0, "Median Spend per Transaction": 4.77, "Median Spend per Customer": 7.29 }, "geometry": { "type": "Point", "coordinates": [ -75.238422, 39.994394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-94v", "Name": "Mood Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4618 Baltimore Ave", "LATITUDE": 39.948631, "LONGITUDE": -75.215805, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010078005.0, "Median Dwell Time": null, "Total Spend": 2720.0, "Total Transactions": 85.0, "Total Customers": 64.0, "Median Spend per Transaction": 23.49, "Median Spend per Customer": 31.08 }, "geometry": { "type": "Point", "coordinates": [ -75.215805, 39.948631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j7q", "Name": "J Mclaughlin", "Category": "Clothing Stores", "Address": "8401 Germantown Ave", "LATITUDE": 40.075451, "LONGITUDE": -75.204853, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010387001.0, "Median Dwell Time": null, "Total Spend": 883.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 170.64, "Median Spend per Customer": 222.32 }, "geometry": { "type": "Point", "coordinates": [ -75.204853, 40.075451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vfz", "Name": "Four Worlds Bakery", "Category": "Restaurants and Other Eating Places", "Address": "4634 Woodland Ave", "LATITUDE": 39.94341, "LONGITUDE": -75.210507, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 8.0, "POI_CBG": 421010074001.0, "Median Dwell Time": 291.0, "Total Spend": 55.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 13.94, "Median Spend per Customer": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.210507, 39.94341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "Name": "Philadelphia Bikesmith", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1822 Spring Garden St", "LATITUDE": 39.962935, "LONGITUDE": -75.169326, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 16.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 41.0, "Total Spend": 12014.0, "Total Transactions": 125.0, "Total Customers": 117.0, "Median Spend per Transaction": 51.4, "Median Spend per Customer": 51.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169326, 39.962935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "Name": "Palm Tree Market", "Category": "Restaurants and Other Eating Places", "Address": "717 N 2nd St", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 8.0, "Total Spend": 14139.0, "Total Transactions": 863.0, "Total Customers": 443.0, "Median Spend per Transaction": 13.97, "Median Spend per Customer": 19.97 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "Name": "The Gold Standard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4800 Baltimore Ave", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 1.0, "Total Spend": 3035.0, "Total Transactions": 171.0, "Total Customers": 113.0, "Median Spend per Transaction": 14.3, "Median Spend per Customer": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-nqz", "Name": "Thanal Indian Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1939 Arch St", "LATITUDE": 39.955758, "LONGITUDE": -75.172555, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 28.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 366.0, "Total Spend": 4742.0, "Total Transactions": 93.0, "Total Customers": 54.0, "Median Spend per Transaction": 48.59, "Median Spend per Customer": 60.17 }, "geometry": { "type": "Point", "coordinates": [ -75.172555, 39.955758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "Name": "Apricot Stone", "Category": "Restaurants and Other Eating Places", "Address": "1040 N American St Ste 601", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 6.0, "Total Spend": 5538.0, "Total Transactions": 115.0, "Total Customers": 103.0, "Median Spend per Transaction": 49.44, "Median Spend per Customer": 47.96 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-tgk", "Name": "Southside Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5043 Wissahickon Ave", "LATITUDE": 40.019691, "LONGITUDE": -75.174271, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 32.0, "POI_CBG": 421010243002.0, "Median Dwell Time": 513.0, "Total Spend": 83.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.174271, 40.019691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-vj9", "Name": "Fairmount Pet Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "2024 Fairmount Ave", "LATITUDE": 39.967037, "LONGITUDE": -75.17115, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 6.0, "Total Spend": 1306.0, "Total Transactions": 26.0, "Total Customers": 20.0, "Median Spend per Transaction": 34.55, "Median Spend per Customer": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.17115, 39.967037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-fs5", "Name": "Gold Star Auto Sales", "Category": "Automobile Dealers", "Address": "6920 State Rd", "LATITUDE": 40.021542, "LONGITUDE": -75.038736, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 165.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 5.0, "Total Spend": 1469.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 370.0, "Median Spend per Customer": 370.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038736, 40.021542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3101 W Allegheny Ave", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 83.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 5.0, "Total Spend": 11221.0, "Total Transactions": 222.0, "Total Customers": 197.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p89-nt9", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "5597 Tulip St # 99", "LATITUDE": 40.012783, "LONGITUDE": -75.06594, "DATE_RANGE_START": 2020, "Total Visits": 2005.0, "Total Visitors": 1231.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 10.0, "Total Spend": 1176.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 296.31, "Median Spend per Customer": 296.31 }, "geometry": { "type": "Point", "coordinates": [ -75.06594, 40.012783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "Name": "The Beer Peddlers", "Category": "Beer, Wine, and Liquor Stores", "Address": "1942 S Columbus Blvd", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2020, "Total Visits": 226.0, "Total Visitors": 175.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 19892.0, "Total Transactions": 550.0, "Total Customers": 427.0, "Median Spend per Transaction": 30.21, "Median Spend per Customer": 34.53 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6515 Castor Ave", "LATITUDE": 40.040851, "LONGITUDE": -75.075239, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 328.0, "POI_CBG": 421010313004.0, "Median Dwell Time": 7.0, "Total Spend": 1183.0, "Total Transactions": 64.0, "Total Customers": 46.0, "Median Spend per Transaction": 12.04, "Median Spend per Customer": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.075239, 40.040851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6399 Oxford Ave", "LATITUDE": 40.045071, "LONGITUDE": -75.088214, "DATE_RANGE_START": 2020, "Total Visits": 1385.0, "Total Visitors": 988.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 5.0, "Total Spend": 18693.0, "Total Transactions": 782.0, "Total Customers": 506.0, "Median Spend per Transaction": 22.06, "Median Spend per Customer": 29.62 }, "geometry": { "type": "Point", "coordinates": [ -75.088214, 40.045071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "Name": "Seorabol Korean Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5734 Old Second St", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 42.0, "POI_CBG": 421010274023.0, "Median Dwell Time": 638.0, "Total Spend": 929.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 59.24, "Median Spend per Customer": 59.24 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "Name": "Windsor", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Spc 731", "LATITUDE": 40.08613, "LONGITUDE": -74.962864, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 177.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 17.0, "Total Spend": 5233.0, "Total Transactions": 89.0, "Total Customers": 85.0, "Median Spend per Transaction": 48.49, "Median Spend per Customer": 48.49 }, "geometry": { "type": "Point", "coordinates": [ -74.962864, 40.08613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-5zz", "Name": "Crunchik'n", "Category": "Restaurants and Other Eating Places", "Address": "212 S 11th St", "LATITUDE": 39.948207, "LONGITUDE": -75.159314, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 69.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 140.0, "Total Spend": 370.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 18.85, "Median Spend per Customer": 32.41 }, "geometry": { "type": "Point", "coordinates": [ -75.159314, 39.948207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7bk", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "1320 Walnut St", "LATITUDE": 39.948987, "LONGITUDE": -75.16307, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 220.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 187.0, "Total Spend": 3473.0, "Total Transactions": 123.0, "Total Customers": 105.0, "Median Spend per Transaction": 24.82, "Median Spend per Customer": 26.86 }, "geometry": { "type": "Point", "coordinates": [ -75.16307, 39.948987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-x5z", "Name": "Essen Bakery", "Category": "Restaurants and Other Eating Places", "Address": "1437 E Passyunk Ave", "LATITUDE": 39.931036, "LONGITUDE": -75.161763, "DATE_RANGE_START": 2020, "Total Visits": 665.0, "Total Visitors": 461.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 26.0, "Total Spend": 3092.0, "Total Transactions": 193.0, "Total Customers": 153.0, "Median Spend per Transaction": 14.78, "Median Spend per Customer": 15.35 }, "geometry": { "type": "Point", "coordinates": [ -75.161763, 39.931036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1509 Chestnut St", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 81.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 11.0, "Total Spend": 3190.0, "Total Transactions": 546.0, "Total Customers": 206.0, "Median Spend per Transaction": 5.07, "Median Spend per Customer": 6.54 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-whq", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7422 Bustleton Ave", "LATITUDE": 40.051934, "LONGITUDE": -75.058717, "DATE_RANGE_START": 2020, "Total Visits": 834.0, "Total Visitors": 667.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 10.0, "Total Spend": 5419.0, "Total Transactions": 60.0, "Total Customers": 48.0, "Median Spend per Transaction": 38.41, "Median Spend per Customer": 60.68 }, "geometry": { "type": "Point", "coordinates": [ -75.058717, 40.051934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4601 Walnut St", "LATITUDE": 39.955786, "LONGITUDE": -75.214102, "DATE_RANGE_START": 2020, "Total Visits": 1596.0, "Total Visitors": 1121.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 5.0, "Total Spend": 1344.0, "Total Transactions": 64.0, "Total Customers": 48.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.214102, 39.955786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3951 E Roosevelt Blvd", "LATITUDE": 40.027243, "LONGITUDE": -75.110271, "DATE_RANGE_START": 2020, "Total Visits": 1570.0, "Total Visitors": 1165.0, "POI_CBG": 421010292001.0, "Median Dwell Time": 4.0, "Total Spend": 955.0, "Total Transactions": 34.0, "Total Customers": 28.0, "Median Spend per Transaction": 30.94, "Median Spend per Customer": 30.47 }, "geometry": { "type": "Point", "coordinates": [ -75.110271, 40.027243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "7210 Cresheim Rd", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 10.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 10.0, "Total Spend": 1188.0, "Total Transactions": 75.0, "Total Customers": 40.0, "Median Spend per Transaction": 12.55, "Median Spend per Customer": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmc-vzz", "Name": "Little Sicily 2", "Category": "Restaurants and Other Eating Places", "Address": "1608 S Columbus Blvd", "LATITUDE": 39.926486, "LONGITUDE": -75.145689, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 254.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 57.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.31, "Median Spend per Customer": 14.31 }, "geometry": { "type": "Point", "coordinates": [ -75.145689, 39.926486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-hkf", "Name": "The Coventry Deli", "Category": "Restaurants and Other Eating Places", "Address": "2000 Market St", "LATITUDE": 39.953273, "LONGITUDE": -75.173676, "DATE_RANGE_START": 2020, "Total Visits": 1622.0, "Total Visitors": 766.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 240.0, "Total Spend": 2034.0, "Total Transactions": 236.0, "Total Customers": 89.0, "Median Spend per Transaction": 8.91, "Median Spend per Customer": 13.18 }, "geometry": { "type": "Point", "coordinates": [ -75.173676, 39.953273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1851 S Columbus Blvd Ste G", "LATITUDE": 39.923624, "LONGITUDE": -75.139475, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 502.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 16.0, "Total Spend": 10742.0, "Total Transactions": 191.0, "Total Customers": 171.0, "Median Spend per Transaction": 35.13, "Median Spend per Customer": 43.62 }, "geometry": { "type": "Point", "coordinates": [ -75.139475, 39.923624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "Name": "Mostly Books", "Category": "Book Stores and News Dealers", "Address": "529 Bainbridge St", "LATITUDE": 39.94129, "LONGITUDE": -75.151876, "DATE_RANGE_START": 2020, "Total Visits": 139.0, "Total Visitors": 99.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 43.0, "Total Spend": 1065.0, "Total Transactions": 52.0, "Total Customers": 44.0, "Median Spend per Transaction": 16.9, "Median Spend per Customer": 20.38 }, "geometry": { "type": "Point", "coordinates": [ -75.151876, 39.94129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgd-z9f", "Name": "UrHomeInPhilly", "Category": "Traveler Accommodation", "Address": "3601 Market St", "LATITUDE": 39.956628, "LONGITUDE": -75.194459, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 36.0, "Total Spend": 446.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 43.18, "Median Spend per Customer": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.194459, 39.956628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-pn5", "Name": "Yiro Yiro", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St # 29", "LATITUDE": 39.954699, "LONGITUDE": -75.202157, "DATE_RANGE_START": 2020, "Total Visits": 232.0, "Total Visitors": 131.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 114.0, "Total Spend": 4719.0, "Total Transactions": 204.0, "Total Customers": 177.0, "Median Spend per Transaction": 20.6, "Median Spend per Customer": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202157, 39.954699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "Name": "House of Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "3520 Cottman Ave", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2020, "Total Visits": 1141.0, "Total Visitors": 774.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 34.0, "Total Spend": 1145.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 30.92, "Median Spend per Customer": 31.21 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "Name": "Morgan's Pier", "Category": "Restaurants and Other Eating Places", "Address": "221 N Columbus Blvd", "LATITUDE": 39.955033, "LONGITUDE": -75.13891, "DATE_RANGE_START": 2020, "Total Visits": 429.0, "Total Visitors": 298.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 83.0, "Total Spend": 157530.0, "Total Transactions": 1786.0, "Total Customers": 1644.0, "Median Spend per Transaction": 64.41, "Median Spend per Customer": 69.07 }, "geometry": { "type": "Point", "coordinates": [ -75.13891, 39.955033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-p85-p35", "Name": "The Fresh Works", "Category": "Restaurants and Other Eating Places", "Address": "2863 Holme Ave", "LATITUDE": 40.057189, "LONGITUDE": -75.030329, "DATE_RANGE_START": 2020, "Total Visits": 852.0, "Total Visitors": 613.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 20.0, "Total Spend": 165.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 22.3, "Median Spend per Customer": 25.11 }, "geometry": { "type": "Point", "coordinates": [ -75.030329, 40.057189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5840 Old York Rd", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 204.0, "POI_CBG": 421010278002.0, "Median Dwell Time": 656.0, "Total Spend": 1478.0, "Total Transactions": 99.0, "Total Customers": 73.0, "Median Spend per Transaction": 13.38, "Median Spend per Customer": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3725 Aramingo Ave", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2020, "Total Visits": 570.0, "Total Visitors": 484.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 6.0, "Total Spend": 15953.0, "Total Transactions": 1153.0, "Total Customers": 875.0, "Median Spend per Transaction": 11.92, "Median Spend per Customer": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmb-49z", "Name": "Dottie's Donuts", "Category": "Restaurants and Other Eating Places", "Address": "509 S 6th St", "LATITUDE": 39.942841, "LONGITUDE": -75.151914, "DATE_RANGE_START": 2020, "Total Visits": 808.0, "Total Visitors": 568.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 25.0, "Total Spend": 127.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 31.95, "Median Spend per Customer": 31.95 }, "geometry": { "type": "Point", "coordinates": [ -75.151914, 39.942841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1600 John F Kennedy Blvd", "LATITUDE": 39.953718, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 89.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 6.0, "Total Spend": 2053.0, "Total Transactions": 387.0, "Total Customers": 171.0, "Median Spend per Transaction": 4.74, "Median Spend per Customer": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.953718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5801 Oxford Ave", "LATITUDE": 40.032682, "LONGITUDE": -75.084504, "DATE_RANGE_START": 2020, "Total Visits": 445.0, "Total Visitors": 286.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 5.0, "Total Spend": 2255.0, "Total Transactions": 298.0, "Total Customers": 173.0, "Median Spend per Transaction": 7.13, "Median Spend per Customer": 8.61 }, "geometry": { "type": "Point", "coordinates": [ -75.084504, 40.032682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg8-kzz", "Name": "2637brew", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2637 W Girard Ave", "LATITUDE": 39.974293, "LONGITUDE": -75.180147, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 49.0, "Total Spend": 463.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.48, "Median Spend per Customer": 40.48 }, "geometry": { "type": "Point", "coordinates": [ -75.180147, 39.974293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvw-9pv", "Name": "52nd Convenience Store", "Category": "Grocery Stores", "Address": "204 N 52nd St", "LATITUDE": 39.963376, "LONGITUDE": -75.224566, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010093005.0, "Median Dwell Time": 219.0, "Total Spend": 1549.0, "Total Transactions": 101.0, "Total Customers": 50.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.224566, 39.963376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "Name": "A Lin Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1942 S 9th St", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 1.0, "Total Spend": 809.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 18.46, "Median Spend per Customer": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "Name": "Overbrook Pizza Shop", "Category": "Restaurants and Other Eating Places", "Address": "2099 N 63rd St", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 9.0, "Total Spend": 6270.0, "Total Transactions": 262.0, "Total Customers": 193.0, "Median Spend per Transaction": 20.09, "Median Spend per Customer": 25.87 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "Name": "A Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "135 S 18th St", "LATITUDE": 39.950427, "LONGITUDE": -75.170427, "DATE_RANGE_START": 2020, "Total Visits": 466.0, "Total Visitors": 369.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 71.0, "Total Spend": 10277.0, "Total Transactions": 228.0, "Total Customers": 195.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 45.43 }, "geometry": { "type": "Point", "coordinates": [ -75.170427, 39.950427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "Name": "Fuel", "Category": "Restaurants and Other Eating Places", "Address": "1917 E Passyunk Ave", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 30.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 39.0, "Total Spend": 2869.0, "Total Transactions": 123.0, "Total Customers": 99.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 26.77 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "Name": "Prohibition Taproom", "Category": "Restaurants and Other Eating Places", "Address": "501 N 13th St", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 58.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 6.0, "Total Spend": 4506.0, "Total Transactions": 89.0, "Total Customers": 69.0, "Median Spend per Transaction": 44.0, "Median Spend per Customer": 52.9 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg8-ks5", "Name": "Blue Jay Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2900 W Girard Ave", "LATITUDE": 39.974422, "LONGITUDE": -75.183713, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 1.0, "Total Spend": 1592.0, "Total Transactions": 77.0, "Total Customers": 62.0, "Median Spend per Transaction": 21.55, "Median Spend per Customer": 23.27 }, "geometry": { "type": "Point", "coordinates": [ -75.183713, 39.974422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@63s-dvw-j5f", "Name": "Montego Grill", "Category": "Restaurants and Other Eating Places", "Address": "5222 Walnut St", "LATITUDE": 39.956818, "LONGITUDE": -75.226326, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010085006.0, "Median Dwell Time": 9.0, "Total Spend": 119.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.226326, 39.956818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "Name": "Beer Stop", "Category": "Beer, Wine, and Liquor Stores", "Address": "4252 Rising Sun Ave", "LATITUDE": 40.015837, "LONGITUDE": -75.130275, "DATE_RANGE_START": 2020, "Total Visits": 439.0, "Total Visitors": 262.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 270.0, "Total Spend": 6657.0, "Total Transactions": 218.0, "Total Customers": 141.0, "Median Spend per Transaction": 27.75, "Median Spend per Customer": 34.51 }, "geometry": { "type": "Point", "coordinates": [ -75.130275, 40.015837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-vzz", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "1600 S Columbus Blvd", "LATITUDE": 39.926515, "LONGITUDE": -75.145923, "DATE_RANGE_START": 2020, "Total Visits": 333.0, "Total Visitors": 306.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 13.0, "Total Spend": 1977.0, "Total Transactions": 81.0, "Total Customers": 67.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 31.11 }, "geometry": { "type": "Point", "coordinates": [ -75.145923, 39.926515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "Name": "Olive Garden", "Category": "Restaurants and Other Eating Places", "Address": "9280 Roosevelt Blvd", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 69.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 298.0, "Total Spend": 14954.0, "Total Transactions": 333.0, "Total Customers": 300.0, "Median Spend per Transaction": 44.77, "Median Spend per Customer": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "Name": "Pizzeria Stella", "Category": "Restaurants and Other Eating Places", "Address": "420 S 2nd St", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 153.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 10.0, "Total Spend": 21695.0, "Total Transactions": 341.0, "Total Customers": 288.0, "Median Spend per Transaction": 52.12, "Median Spend per Customer": 61.68 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-jjv", "Name": "The Continental Mid Town", "Category": "Restaurants and Other Eating Places", "Address": "1801 Chestnut St", "LATITUDE": 39.951903, "LONGITUDE": -75.170452, "DATE_RANGE_START": 2020, "Total Visits": 466.0, "Total Visitors": 373.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 20.0, "Total Spend": 12876.0, "Total Transactions": 220.0, "Total Customers": 189.0, "Median Spend per Transaction": 45.32, "Median Spend per Customer": 51.44 }, "geometry": { "type": "Point", "coordinates": [ -75.170452, 39.951903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "Name": "Mac Mart Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "104 S 18th St", "LATITUDE": 39.951438, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 95.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 4.0, "Total Spend": 3037.0, "Total Transactions": 153.0, "Total Customers": 141.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-qfz", "Name": "Workshop Underground", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1544 South St", "LATITUDE": 39.943884, "LONGITUDE": -75.16864, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 139.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 5.0, "Total Spend": 639.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 160.92, "Median Spend per Customer": 160.92 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 39.943884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3320 Grant Ave Unit 18B", "LATITUDE": 40.068041, "LONGITUDE": -75.007034, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 95.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 7.0, "Total Spend": 578.0, "Total Transactions": 91.0, "Total Customers": 64.0, "Median Spend per Transaction": 4.98, "Median Spend per Customer": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.007034, 40.068041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "3300 Aramingo Ave", "LATITUDE": 39.990629, "LONGITUDE": -75.10302, "DATE_RANGE_START": 2020, "Total Visits": 584.0, "Total Visitors": 514.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 9.0, "Total Spend": 39824.0, "Total Transactions": 768.0, "Total Customers": 595.0, "Median Spend per Transaction": 37.76, "Median Spend per Customer": 50.72 }, "geometry": { "type": "Point", "coordinates": [ -75.10302, 39.990629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "Name": "Beijing Garden", "Category": "Restaurants and Other Eating Places", "Address": "5911 Ridge Ave", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 8.0, "Total Spend": 1740.0, "Total Transactions": 77.0, "Total Customers": 69.0, "Median Spend per Transaction": 20.55, "Median Spend per Customer": 23.71 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-p35", "Name": "Jhoandra Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3661 N 6th St", "LATITUDE": 40.007461, "LONGITUDE": -75.138722, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 36.0, "POI_CBG": 421010199001.0, "Median Dwell Time": 5.0, "Total Spend": 316.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 20.8, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.138722, 40.007461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "Name": "Moore Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "601 Moore St", "LATITUDE": 39.926601, "LONGITUDE": -75.156132, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 167.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 11.0, "Total Spend": 20428.0, "Total Transactions": 548.0, "Total Customers": 290.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 38.85 }, "geometry": { "type": "Point", "coordinates": [ -75.156132, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "Name": "Destination XL", "Category": "Clothing Stores", "Address": "2329 Cottman Ave Spc 51", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2020, "Total Visits": 226.0, "Total Visitors": 181.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 14.0, "Total Spend": 7406.0, "Total Transactions": 54.0, "Total Customers": 44.0, "Median Spend per Transaction": 108.0, "Median Spend per Customer": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "Name": "Jo-Ann Fabric and Craft Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2020, "Total Visits": 361.0, "Total Visitors": 333.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 7.0, "Total Spend": 22817.0, "Total Transactions": 641.0, "Total Customers": 461.0, "Median Spend per Transaction": 24.23, "Median Spend per Customer": 30.67 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "Name": "SquareBurger", "Category": "Restaurants and Other Eating Places", "Address": "200 N 6th St", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 85.0, "Total Spend": 197.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5711 Ridge Ave", "LATITUDE": 40.027472, "LONGITUDE": -75.209408, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 36.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 8.0, "Total Spend": 14752.0, "Total Transactions": 597.0, "Total Customers": 453.0, "Median Spend per Transaction": 24.37, "Median Spend per Customer": 26.84 }, "geometry": { "type": "Point", "coordinates": [ -75.209408, 40.027472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-7yv", "Name": "Bee Natural", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "51 N 12th St", "LATITUDE": 39.953663, "LONGITUDE": -75.158929, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 505.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 13.19, "Median Spend per Customer": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.158929, 39.953663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1601 S Columbus Blvd", "LATITUDE": 39.923962, "LONGITUDE": -75.142554, "DATE_RANGE_START": 2020, "Total Visits": 580.0, "Total Visitors": 508.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 14163.0, "Total Transactions": 1387.0, "Total Customers": 1119.0, "Median Spend per Transaction": 8.47, "Median Spend per Customer": 9.74 }, "geometry": { "type": "Point", "coordinates": [ -75.142554, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1700 Jfk Blvd 6 Penn Ctr Concourse", "LATITUDE": 39.953617, "LONGITUDE": -75.167012, "DATE_RANGE_START": 2020, "Total Visits": 1328.0, "Total Visitors": 955.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 11.0, "Total Spend": 2247.0, "Total Transactions": 347.0, "Total Customers": 216.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 7.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167012, 39.953617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-t7q", "Name": "Craftsman Row Saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "112 S 8th St", "LATITUDE": 39.949101, "LONGITUDE": -75.154283, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 151.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 49.0, "Total Spend": 2016.0, "Total Transactions": 66.0, "Total Customers": 60.0, "Median Spend per Transaction": 24.9, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.154283, 39.949101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgb-3dv", "Name": "Rex Pizza & Beer", "Category": "Restaurants and Other Eating Places", "Address": "1526 Race St", "LATITUDE": 39.956427, "LONGITUDE": -75.165441, "DATE_RANGE_START": 2020, "Total Visits": 455.0, "Total Visitors": 276.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 218.0, "Total Spend": 928.0, "Total Transactions": 62.0, "Total Customers": 52.0, "Median Spend per Transaction": 9.51, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.165441, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "3551 Aramingo Ave", "LATITUDE": 39.992457, "LONGITUDE": -75.097895, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 367.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 9.0, "Total Spend": 8743.0, "Total Transactions": 570.0, "Total Customers": 429.0, "Median Spend per Transaction": 12.1, "Median Spend per Customer": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.097895, 39.992457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm9-5zz", "Name": "Caffe Chicco", "Category": "Restaurants and Other Eating Places", "Address": "2532 S Broad St", "LATITUDE": 39.918638, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 6.0, "POI_CBG": 421010039021.0, "Median Dwell Time": 2.0, "Total Spend": 254.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 63.91, "Median Spend per Customer": 63.91 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.918638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "Name": "Sue's Market", "Category": "Grocery Stores", "Address": "275 Saint James Pl", "LATITUDE": 39.946236, "LONGITUDE": -75.145477, "DATE_RANGE_START": 2020, "Total Visits": 353.0, "Total Visitors": 185.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 82.0, "Total Spend": 14850.0, "Total Transactions": 677.0, "Total Customers": 159.0, "Median Spend per Transaction": 16.65, "Median Spend per Customer": 33.97 }, "geometry": { "type": "Point", "coordinates": [ -75.145477, 39.946236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "3745 Aramingo Ave", "LATITUDE": 39.99445, "LONGITUDE": -75.09179, "DATE_RANGE_START": 2020, "Total Visits": 4508.0, "Total Visitors": 2580.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 21.0, "Total Spend": 10074.0, "Total Transactions": 67.0, "Total Customers": 46.0, "Median Spend per Transaction": 138.14, "Median Spend per Customer": 170.37 }, "geometry": { "type": "Point", "coordinates": [ -75.09179, 39.99445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993511, "LONGITUDE": -75.143942, "DATE_RANGE_START": 2020, "Total Visits": 603.0, "Total Visitors": 349.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 13.0, "Total Spend": 655.0, "Total Transactions": 38.0, "Total Customers": 30.0, "Median Spend per Transaction": 9.19, "Median Spend per Customer": 18.51 }, "geometry": { "type": "Point", "coordinates": [ -75.143942, 39.993511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "Name": "CLo", "Category": "Shoe Stores", "Address": "3511 N Lee St", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010195022.0, "Median Dwell Time": null, "Total Spend": 11835.0, "Total Transactions": 99.0, "Total Customers": 85.0, "Median Spend per Transaction": 88.02, "Median Spend per Customer": 102.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4201 N Marshall St", "LATITUDE": 40.015701, "LONGITUDE": -75.13771, "DATE_RANGE_START": 2020, "Total Visits": 298.0, "Total Visitors": 240.0, "POI_CBG": 421010197004.0, "Median Dwell Time": 7.0, "Total Spend": 14737.0, "Total Transactions": 312.0, "Total Customers": 226.0, "Median Spend per Transaction": 30.23, "Median Spend per Customer": 34.97 }, "geometry": { "type": "Point", "coordinates": [ -75.13771, 40.015701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "Name": "Gia Pronto", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 5.0, "Total Spend": 4789.0, "Total Transactions": 544.0, "Total Customers": 343.0, "Median Spend per Transaction": 7.22, "Median Spend per Customer": 9.57 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pj8-tgk", "Name": "New Ben City Supermarket", "Category": "Grocery Stores", "Address": "5520 Whitaker Ave", "LATITUDE": 40.035691, "LONGITUDE": -75.100546, "DATE_RANGE_START": 2020, "Total Visits": 1135.0, "Total Visitors": 667.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 14.0, "Total Spend": 4522.0, "Total Transactions": 421.0, "Total Customers": 145.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100546, 40.035691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "3899 Aramingo Ave", "LATITUDE": 39.996676, "LONGITUDE": -75.089544, "DATE_RANGE_START": 2020, "Total Visits": 987.0, "Total Visitors": 814.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 11.0, "Total Spend": 26067.0, "Total Transactions": 629.0, "Total Customers": 486.0, "Median Spend per Transaction": 24.19, "Median Spend per Customer": 32.64 }, "geometry": { "type": "Point", "coordinates": [ -75.089544, 39.996676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6301 Chew Ave", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2020, "Total Visits": 673.0, "Total Visitors": 439.0, "POI_CBG": 421010389003.0, "Median Dwell Time": 10.0, "Total Spend": 2352.0, "Total Transactions": 107.0, "Total Customers": 77.0, "Median Spend per Transaction": 17.49, "Median Spend per Customer": 18.43 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-mx5", "Name": "ALDI", "Category": "Grocery Stores", "Address": "3975 Castor Ave", "LATITUDE": 40.006784, "LONGITUDE": -75.097559, "DATE_RANGE_START": 2020, "Total Visits": 387.0, "Total Visitors": 312.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 6.0, "Total Spend": 465.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 38.13, "Median Spend per Customer": 38.13 }, "geometry": { "type": "Point", "coordinates": [ -75.097559, 40.006784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj3-47q", "Name": "Noeliza Mini Market", "Category": "Grocery Stores", "Address": "4300 N 16th St", "LATITUDE": 40.019025, "LONGITUDE": -75.152627, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 18.0, "POI_CBG": 421010204004.0, "Median Dwell Time": 13.0, "Total Spend": 37.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.39, "Median Spend per Customer": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.152627, 40.019025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-c3q", "Name": "Yarnphoria", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1020 Pine St", "LATITUDE": 39.944703, "LONGITUDE": -75.159061, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 73.0, "Total Spend": 975.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 131.2, "Median Spend per Customer": 131.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159061, 39.944703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-cyv", "Name": "Jaggie's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6220 Lansdowne Ave", "LATITUDE": 39.975337, "LONGITUDE": -75.244317, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010101006.0, "Median Dwell Time": 11.0, "Total Spend": 440.0, "Total Transactions": 24.0, "Total Customers": 14.0, "Median Spend per Transaction": 14.75, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244317, 39.975337 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-x3q", "Name": "Medina mini market", "Category": "Grocery Stores", "Address": "804 W Susquehanna Ave", "LATITUDE": 39.984945, "LONGITUDE": -75.147239, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 12.0, "POI_CBG": 421010377003.0, "Median Dwell Time": 530.0, "Total Spend": 67.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 8.38, "Median Spend per Customer": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.147239, 39.984945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "Name": "Trio", "Category": "Restaurants and Other Eating Places", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.968734, "LONGITUDE": -75.180754, "DATE_RANGE_START": 2020, "Total Visits": 369.0, "Total Visitors": 159.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 148.0, "Total Spend": 1795.0, "Total Transactions": 115.0, "Total Customers": 85.0, "Median Spend per Transaction": 14.27, "Median Spend per Customer": 18.53 }, "geometry": { "type": "Point", "coordinates": [ -75.180754, 39.968734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-vj9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3780 Main St", "LATITUDE": 40.018604, "LONGITUDE": -75.214313, "DATE_RANGE_START": 2020, "Total Visits": 431.0, "Total Visitors": 320.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 7.0, "Total Spend": 13200.0, "Total Transactions": 593.0, "Total Customers": 451.0, "Median Spend per Transaction": 14.54, "Median Spend per Customer": 18.93 }, "geometry": { "type": "Point", "coordinates": [ -75.214313, 40.018604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-cyv", "Name": "El Provocon", "Category": "Restaurants and Other Eating Places", "Address": "2843 Tyson Ave", "LATITUDE": 40.039466, "LONGITUDE": -75.056309, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 113.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 7.0, "Total Spend": 373.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056309, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7241 Torresdale Ave", "LATITUDE": 40.029702, "LONGITUDE": -75.035384, "DATE_RANGE_START": 2020, "Total Visits": 1370.0, "Total Visitors": 947.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 5.0, "Total Spend": 1167.0, "Total Transactions": 46.0, "Total Customers": 42.0, "Median Spend per Transaction": 20.25, "Median Spend per Customer": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.035384, 40.029702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "Name": "Golden Crust Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "3732 Midvale Ave", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 34.0, "Total Spend": 3101.0, "Total Transactions": 153.0, "Total Customers": 107.0, "Median Spend per Transaction": 18.19, "Median Spend per Customer": 24.46 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-wzf", "Name": "Firestone Complete Auto Care", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9602 Bustleton Ave", "LATITUDE": 40.087378, "LONGITUDE": -75.035984, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 28.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 7.0, "Total Spend": 5201.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 193.23, "Median Spend per Customer": 193.23 }, "geometry": { "type": "Point", "coordinates": [ -75.035984, 40.087378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "400 W Allegheny Ave", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 129.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 288.0, "Total Spend": 890.0, "Total Transactions": 42.0, "Total Customers": 32.0, "Median Spend per Transaction": 20.66, "Median Spend per Customer": 24.03 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p7w-gc5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7965 Verree Rd", "LATITUDE": 40.072472, "LONGITUDE": -75.075745, "DATE_RANGE_START": 2020, "Total Visits": 810.0, "Total Visitors": 540.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 4.0, "Total Spend": 417.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.075745, 40.072472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnw-mzf", "Name": "The Foodery", "Category": "Restaurants and Other Eating Places", "Address": "837 N 2nd St", "LATITUDE": 39.963893, "LONGITUDE": -75.14043, "DATE_RANGE_START": 2020, "Total Visits": 937.0, "Total Visitors": 685.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 201.0, "Total Spend": 6150.0, "Total Transactions": 306.0, "Total Customers": 171.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 26.59 }, "geometry": { "type": "Point", "coordinates": [ -75.14043, 39.963893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm4-b6k", "Name": "Two Eagles Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 20th St", "LATITUDE": 39.934031, "LONGITUDE": -75.177208, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 30.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 124.0, "Total Spend": 647.0, "Total Transactions": 66.0, "Total Customers": 50.0, "Median Spend per Transaction": 9.64, "Median Spend per Customer": 11.26 }, "geometry": { "type": "Point", "coordinates": [ -75.177208, 39.934031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "Name": "Ross Stores", "Category": "Department Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.912498, "LONGITUDE": -75.15633, "DATE_RANGE_START": 2020, "Total Visits": 1681.0, "Total Visitors": 1407.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 17.0, "Total Spend": 6530.0, "Total Transactions": 147.0, "Total Customers": 117.0, "Median Spend per Transaction": 35.61, "Median Spend per Customer": 34.32 }, "geometry": { "type": "Point", "coordinates": [ -75.15633, 39.912498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5200 Germantown Ave", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2020, "Total Visits": 409.0, "Total Visitors": 242.0, "POI_CBG": 421010242001.0, "Median Dwell Time": 10.0, "Total Spend": 1477.0, "Total Transactions": 167.0, "Total Customers": 117.0, "Median Spend per Transaction": 6.49, "Median Spend per Customer": 7.51 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-j7q", "Name": "Frecon Farms", "Category": "Specialty Food Stores", "Address": "1819 Walnut St", "LATITUDE": 39.950808, "LONGITUDE": -75.171348, "DATE_RANGE_START": 2020, "Total Visits": 2344.0, "Total Visitors": 1366.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 48.0, "Total Spend": 582.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171348, 39.950808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "Name": "Mariposa Food Co op", "Category": "Grocery Stores", "Address": "4824 Baltimore Ave", "LATITUDE": 39.947933, "LONGITUDE": -75.220657, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 52.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 6.0, "Total Spend": 71627.0, "Total Transactions": 1550.0, "Total Customers": 836.0, "Median Spend per Transaction": 37.87, "Median Spend per Customer": 55.18 }, "geometry": { "type": "Point", "coordinates": [ -75.220657, 39.947933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "Name": "Arch Pharmacy", "Category": "Health and Personal Care Stores", "Address": "933 Arch St", "LATITUDE": 39.953757, "LONGITUDE": -75.15607, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 73.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 116.0, "Total Spend": 586.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15607, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8t-vvf", "Name": "Hanesbrands", "Category": "Clothing Stores", "Address": "1519 Franklin Mills Cir Ste 313", "LATITUDE": 40.089656, "LONGITUDE": -74.961738, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 371.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 1119.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 32.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961738, 40.089656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2201 W Oregon Ave", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2020, "Total Visits": 423.0, "Total Visitors": 349.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 7.0, "Total Spend": 1763.0, "Total Transactions": 64.0, "Total Customers": 48.0, "Median Spend per Transaction": 17.03, "Median Spend per Customer": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "Name": "Kostas Bar", "Category": "Restaurants and Other Eating Places", "Address": "15 W Girard Ave", "LATITUDE": 39.96897, "LONGITUDE": -75.134955, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 48.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 32.0, "Total Spend": 6097.0, "Total Transactions": 95.0, "Total Customers": 83.0, "Median Spend per Transaction": 51.18, "Median Spend per Customer": 52.42 }, "geometry": { "type": "Point", "coordinates": [ -75.134955, 39.96897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "Name": "Rieker's Prime Meats", "Category": "Specialty Food Stores", "Address": "7979 Oxford Ave", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 236.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 7.0, "Total Spend": 6730.0, "Total Transactions": 117.0, "Total Customers": 103.0, "Median Spend per Transaction": 51.6, "Median Spend per Customer": 54.38 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "Name": "Quails", "Category": "Clothing Stores", "Address": "1428 Franklin Mills Cir", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2020, "Total Visits": 135.0, "Total Visitors": 121.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 605.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfy-d35", "Name": "Something Different", "Category": "Florists", "Address": "399 Leverington Ave", "LATITUDE": 40.033667, "LONGITUDE": -75.220915, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 20.0, "POI_CBG": 421010213005.0, "Median Dwell Time": 93.0, "Total Spend": 742.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.220915, 40.033667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvw-hwk", "Name": "Quick & Quality", "Category": "Restaurants and Other Eating Places", "Address": "4836 Spruce St", "LATITUDE": 39.953576, "LONGITUDE": -75.219432, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 22.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 417.0, "Total Spend": 413.0, "Total Transactions": 14.0, "Total Customers": 4.0, "Median Spend per Transaction": 33.0, "Median Spend per Customer": 104.13 }, "geometry": { "type": "Point", "coordinates": [ -75.219432, 39.953576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "Name": "Royal's Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "7802 Limekiln Pike", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 22.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 7.0, "Total Spend": 5939.0, "Total Transactions": 204.0, "Total Customers": 151.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-5pv", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2703 E Clearfield St", "LATITUDE": 39.982882, "LONGITUDE": -75.10466, "DATE_RANGE_START": 2020, "Total Visits": 139.0, "Total Visitors": 32.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 517.0, "Total Spend": 322.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 14.48, "Median Spend per Customer": 14.48 }, "geometry": { "type": "Point", "coordinates": [ -75.10466, 39.982882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5800 Woodland Ave", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2020, "Total Visits": 943.0, "Total Visitors": 635.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 11.0, "Total Spend": 2416.0, "Total Transactions": 143.0, "Total Customers": 73.0, "Median Spend per Transaction": 12.31, "Median Spend per Customer": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "Name": "Evergreen Deli", "Category": "Grocery Stores", "Address": "46 S 4th St", "LATITUDE": 39.949185, "LONGITUDE": -75.147628, "DATE_RANGE_START": 2020, "Total Visits": 449.0, "Total Visitors": 318.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 6.0, "Total Spend": 1749.0, "Total Transactions": 179.0, "Total Customers": 64.0, "Median Spend per Transaction": 9.77, "Median Spend per Customer": 14.15 }, "geometry": { "type": "Point", "coordinates": [ -75.147628, 39.949185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm4-mc5", "Name": "Meat Market El Pueblo", "Category": "Specialty Food Stores", "Address": "1141 S 9th St", "LATITUDE": 39.935181, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 64.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 1.0, "Total Spend": 908.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 27.99, "Median Spend per Customer": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.935181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1602 S Delaware Ave # 04", "LATITUDE": 39.926446, "LONGITUDE": -75.145402, "DATE_RANGE_START": 2020, "Total Visits": 721.0, "Total Visitors": 590.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 2.0, "Total Spend": 62120.0, "Total Transactions": 5526.0, "Total Customers": 3035.0, "Median Spend per Transaction": 9.32, "Median Spend per Customer": 12.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yd9", "Name": "Tea Do", "Category": "Restaurants and Other Eating Places", "Address": "132 N 10th St", "LATITUDE": 39.954609, "LONGITUDE": -75.156246, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 64.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 2.0, "Total Spend": 4952.0, "Total Transactions": 457.0, "Total Customers": 421.0, "Median Spend per Transaction": 9.98, "Median Spend per Customer": 10.34 }, "geometry": { "type": "Point", "coordinates": [ -75.156246, 39.954609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-psq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "11750 Bustleton Ave", "LATITUDE": 40.120378, "LONGITUDE": -75.018088, "DATE_RANGE_START": 2020, "Total Visits": 659.0, "Total Visitors": 480.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 5.0, "Total Spend": 1592.0, "Total Transactions": 111.0, "Total Customers": 71.0, "Median Spend per Transaction": 9.36, "Median Spend per Customer": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.018088, 40.120378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pm9-whq", "Name": "Kurry Shack", "Category": "Restaurants and Other Eating Places", "Address": "6 N 3rd St", "LATITUDE": 39.950437, "LONGITUDE": -75.145824, "DATE_RANGE_START": 2020, "Total Visits": 1235.0, "Total Visitors": 788.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 108.0, "Total Spend": 248.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 62.59, "Median Spend per Customer": 62.59 }, "geometry": { "type": "Point", "coordinates": [ -75.145824, 39.950437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kj9", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "2100 Walnut St", "LATITUDE": 39.950618, "LONGITUDE": -75.175914, "DATE_RANGE_START": 2020, "Total Visits": 1296.0, "Total Visitors": 764.0, "POI_CBG": 421010008031.0, "Median Dwell Time": 345.0, "Total Spend": 49.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 4.86, "Median Spend per Customer": 4.86 }, "geometry": { "type": "Point", "coordinates": [ -75.175914, 39.950618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1128 Walnut St", "LATITUDE": 39.948761, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2020, "Total Visits": 210.0, "Total Visitors": 193.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 1.0, "Total Spend": 2578.0, "Total Transactions": 433.0, "Total Customers": 230.0, "Median Spend per Transaction": 5.29, "Median Spend per Customer": 5.89 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.948761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-nwk", "Name": "One Pound Cheesesteaks", "Category": "Restaurants and Other Eating Places", "Address": "2661 Kensington Ave", "LATITUDE": 39.989593, "LONGITUDE": -75.125509, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 19.0, "Total Spend": 766.0, "Total Transactions": 34.0, "Total Customers": 34.0, "Median Spend per Transaction": 20.75, "Median Spend per Customer": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.125509, 39.989593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "Name": "Tandoori bakery", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd Store 17", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2020, "Total Visits": 405.0, "Total Visitors": 246.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 6.0, "Total Spend": 4274.0, "Total Transactions": 147.0, "Total Customers": 87.0, "Median Spend per Transaction": 23.02, "Median Spend per Customer": 34.75 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "Name": "Bistro SouthEast", "Category": "Restaurants and Other Eating Places", "Address": "1824 South St", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2020, "Total Visits": 865.0, "Total Visitors": 320.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 490.0, "Total Spend": 3373.0, "Total Transactions": 79.0, "Total Customers": 58.0, "Median Spend per Transaction": 24.79, "Median Spend per Customer": 35.48 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-phy-6kz", "Name": "La Casa Del Sandwich", "Category": "Restaurants and Other Eating Places", "Address": "101 E Rockland St", "LATITUDE": 40.024809, "LONGITUDE": -75.123343, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 270.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 4.0, "Total Spend": 112.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123343, 40.024809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "7855 Oxford Ave", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 292.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 5.0, "Total Spend": 8923.0, "Total Transactions": 637.0, "Total Customers": 482.0, "Median Spend per Transaction": 11.93, "Median Spend per Customer": 14.02 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978087, "LONGITUDE": -75.11955, "DATE_RANGE_START": 2020, "Total Visits": 1159.0, "Total Visitors": 659.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 4.0, "Total Spend": 15205.0, "Total Transactions": 2019.0, "Total Customers": 947.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.11955, 39.978087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmb-5pv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1201 Market St", "LATITUDE": 39.952298, "LONGITUDE": -75.160846, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 103.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 2608.0, "Total Transactions": 248.0, "Total Customers": 179.0, "Median Spend per Transaction": 6.59, "Median Spend per Customer": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160846, 39.952298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-k75", "Name": "Ross Stores", "Category": "Department Stores", "Address": "9906 Roosevelt Blvd", "LATITUDE": 40.094502, "LONGITUDE": -75.018223, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 85.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 11.0, "Total Spend": 6138.0, "Total Transactions": 125.0, "Total Customers": 113.0, "Median Spend per Transaction": 35.02, "Median Spend per Customer": 37.96 }, "geometry": { "type": "Point", "coordinates": [ -75.018223, 40.094502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4501 Castor Ave", "LATITUDE": 40.016881, "LONGITUDE": -75.096377, "DATE_RANGE_START": 2020, "Total Visits": 387.0, "Total Visitors": 331.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 8.0, "Total Spend": 1365.0, "Total Transactions": 135.0, "Total Customers": 107.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.096377, 40.016881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1434 Frankford Ave", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 252.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 51.0, "Total Spend": 578.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 34.69, "Median Spend per Customer": 34.69 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-9vf", "Name": "Soul Boat", "Category": "Restaurants and Other Eating Places", "Address": "1422 Dickinson St", "LATITUDE": 39.931707, "LONGITUDE": -75.169132, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010030024.0, "Median Dwell Time": null, "Total Spend": 471.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 21.06, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.169132, 39.931707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6701 Ridge Ave", "LATITUDE": 40.040652, "LONGITUDE": -75.223499, "DATE_RANGE_START": 2020, "Total Visits": 2199.0, "Total Visitors": 1247.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 5.0, "Total Spend": 157636.0, "Total Transactions": 10320.0, "Total Customers": 4545.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 22.94 }, "geometry": { "type": "Point", "coordinates": [ -75.223499, 40.040652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4849 Market St", "LATITUDE": 39.959641, "LONGITUDE": -75.218508, "DATE_RANGE_START": 2020, "Total Visits": 524.0, "Total Visitors": 423.0, "POI_CBG": 421010104004.0, "Median Dwell Time": 8.0, "Total Spend": 2455.0, "Total Transactions": 139.0, "Total Customers": 101.0, "Median Spend per Transaction": 13.18, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.218508, 39.959641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6344 Stenton Ave", "LATITUDE": 40.059864, "LONGITUDE": -75.166534, "DATE_RANGE_START": 2020, "Total Visits": 476.0, "Total Visitors": 351.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 6.0, "Total Spend": 1943.0, "Total Transactions": 135.0, "Total Customers": 87.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 18.66 }, "geometry": { "type": "Point", "coordinates": [ -75.166534, 40.059864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-td9", "Name": "Milano's Pizzeria and Grill", "Category": "Restaurants and Other Eating Places", "Address": "127 S 10th St", "LATITUDE": 39.948998, "LONGITUDE": -75.157083, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 109.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 28.0, "Total Spend": 1837.0, "Total Transactions": 127.0, "Total Customers": 89.0, "Median Spend per Transaction": 11.05, "Median Spend per Customer": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157083, 39.948998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4163 Whitaker Ave", "LATITUDE": 40.012435, "LONGITUDE": -75.119008, "DATE_RANGE_START": 2020, "Total Visits": 542.0, "Total Visitors": 455.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 5.0, "Total Spend": 13562.0, "Total Transactions": 937.0, "Total Customers": 667.0, "Median Spend per Transaction": 12.34, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.119008, 40.012435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pj2-94v", "Name": "Hoagies Plus", "Category": "Restaurants and Other Eating Places", "Address": "752 E Tioga St", "LATITUDE": 40.0012, "LONGITUDE": -75.114597, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 73.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 1141.0, "Total Spend": 577.0, "Total Transactions": 32.0, "Total Customers": 24.0, "Median Spend per Transaction": 17.65, "Median Spend per Customer": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.114597, 40.0012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd # 4", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2020, "Total Visits": 15310.0, "Total Visitors": 7291.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 133.0, "Total Spend": 11818.0, "Total Transactions": 1062.0, "Total Customers": 530.0, "Median Spend per Transaction": 9.9, "Median Spend per Customer": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg9-vzz", "Name": "Fairmount Bicycles", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2015 Fairmount Ave", "LATITUDE": 39.967501, "LONGITUDE": -75.170829, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010135002.0, "Median Dwell Time": 3.0, "Total Spend": 5326.0, "Total Transactions": 69.0, "Total Customers": 64.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170829, 39.967501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg3-jqf", "Name": "Jansen", "Category": "Restaurants and Other Eating Places", "Address": "7402 Germantown Ave", "LATITUDE": 40.062669, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 20.0, "POI_CBG": 421010388001.0, "Median Dwell Time": 82.0, "Total Spend": 5514.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 213.84, "Median Spend per Customer": 206.92 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 40.062669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnx-dsq", "Name": "Cedar Point Bar and Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2370 E Norris St", "LATITUDE": 39.976851, "LONGITUDE": -75.127783, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 11.0, "Total Spend": 9676.0, "Total Transactions": 204.0, "Total Customers": 155.0, "Median Spend per Transaction": 42.1, "Median Spend per Customer": 51.35 }, "geometry": { "type": "Point", "coordinates": [ -75.127783, 39.976851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2001 Chestnut St", "LATITUDE": 39.952185, "LONGITUDE": -75.173618, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 97.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 7.0, "Total Spend": 4498.0, "Total Transactions": 903.0, "Total Customers": 365.0, "Median Spend per Transaction": 4.2, "Median Spend per Customer": 6.16 }, "geometry": { "type": "Point", "coordinates": [ -75.173618, 39.952185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "Name": "Function Coffee Labs", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 10th St", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2020, "Total Visits": 1276.0, "Total Visitors": 961.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 15.0, "Total Spend": 938.0, "Total Transactions": 81.0, "Total Customers": 48.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pm4-pvz", "Name": "Pit Stop HQ", "Category": "Other Miscellaneous Store Retailers", "Address": "838 Christian St # 842", "LATITUDE": 39.938787, "LONGITUDE": -75.157591, "DATE_RANGE_START": 2020, "Total Visits": 784.0, "Total Visitors": 361.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 777.0, "Total Spend": 825.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 25.36, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.157591, 39.938787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "Name": "Fiesta Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "8339 Germantown Ave", "LATITUDE": 40.075222, "LONGITUDE": -75.204582, "DATE_RANGE_START": 2020, "Total Visits": 181.0, "Total Visitors": 157.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 16.0, "Total Spend": 2224.0, "Total Transactions": 93.0, "Total Customers": 69.0, "Median Spend per Transaction": 19.55, "Median Spend per Customer": 22.82 }, "geometry": { "type": "Point", "coordinates": [ -75.204582, 40.075222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1528 Walnut St", "LATITUDE": 39.949521, "LONGITUDE": -75.167452, "DATE_RANGE_START": 2020, "Total Visits": 911.0, "Total Visitors": 705.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 34.0, "Total Spend": 5244.0, "Total Transactions": 705.0, "Total Customers": 486.0, "Median Spend per Transaction": 5.67, "Median Spend per Customer": 5.89 }, "geometry": { "type": "Point", "coordinates": [ -75.167452, 39.949521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p7z-x89", "Name": "Don Pedro Meats and Market", "Category": "Specialty Food Stores", "Address": "6010 Castor Ave", "LATITUDE": 40.035069, "LONGITUDE": -75.082126, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 318.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 18.0, "Total Spend": 12611.0, "Total Transactions": 185.0, "Total Customers": 161.0, "Median Spend per Transaction": 51.74, "Median Spend per Customer": 72.28 }, "geometry": { "type": "Point", "coordinates": [ -75.082126, 40.035069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-mp9", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "1600 John F Kennedy Blvd", "LATITUDE": 39.9536, "LONGITUDE": -75.167205, "DATE_RANGE_START": 2020, "Total Visits": 1328.0, "Total Visitors": 955.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 11.0, "Total Spend": 126.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 7.32, "Median Spend per Customer": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167205, 39.9536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "Name": "Total Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "2431 Castor Ave Ste A", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2020, "Total Visits": 590.0, "Total Visitors": 457.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 59.0, "Total Spend": 6847.0, "Total Transactions": 252.0, "Total Customers": 177.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 25.51 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7b-qpv", "Name": "Alfreds Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "9218 Ashton Rd", "LATITUDE": 40.064373, "LONGITUDE": -75.02133, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 131.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 18.0, "Total Spend": 1035.0, "Total Transactions": 42.0, "Total Customers": 30.0, "Median Spend per Transaction": 29.0, "Median Spend per Customer": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.02133, 40.064373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "Name": "Bloomingdale's Outlet Philadelphia", "Category": "Department Stores", "Address": "1625 Chestnut St Ste 240 248", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2020, "Total Visits": 6123.0, "Total Visitors": 3702.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 70.0, "Total Spend": 2578.0, "Total Transactions": 58.0, "Total Customers": 38.0, "Median Spend per Transaction": 28.68, "Median Spend per Customer": 28.68 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnt-3wk", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2491 Aramingo Ave", "LATITUDE": 39.974634, "LONGITUDE": -75.119239, "DATE_RANGE_START": 2020, "Total Visits": 437.0, "Total Visitors": 373.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 18.0, "Total Spend": 2530.0, "Total Transactions": 50.0, "Total Customers": 38.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 51.82 }, "geometry": { "type": "Point", "coordinates": [ -75.119239, 39.974634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-rff", "Name": "Montana Grill", "Category": "Restaurants and Other Eating Places", "Address": "6651 Castor Ave", "LATITUDE": 40.042892, "LONGITUDE": -75.073677, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010313004.0, "Median Dwell Time": 51.0, "Total Spend": 215.0, "Total Transactions": 14.0, "Total Customers": 8.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 23.98 }, "geometry": { "type": "Point", "coordinates": [ -75.073677, 40.042892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "Name": "Chillin Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6545 Elmwood Ave", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 48.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 10.0, "Total Spend": 1132.0, "Total Transactions": 85.0, "Total Customers": 71.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 11.11 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7w-c89", "Name": "Philly's Finest Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7962 Dungan Rd", "LATITUDE": 40.068215, "LONGITUDE": -75.06872, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 75.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 21.0, "Total Spend": 2079.0, "Total Transactions": 48.0, "Total Customers": 22.0, "Median Spend per Transaction": 44.43, "Median Spend per Customer": 61.55 }, "geometry": { "type": "Point", "coordinates": [ -75.06872, 40.068215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmf-zj9", "Name": "Arch Brunch", "Category": "Restaurants and Other Eating Places", "Address": "2200 Arch St Ste 103", "LATITUDE": 39.955759, "LONGITUDE": -75.17646, "DATE_RANGE_START": 2020, "Total Visits": 1739.0, "Total Visitors": 1048.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 231.0, "Total Spend": 173.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17646, 39.955759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2201 Walnut St", "LATITUDE": 39.951277, "LONGITUDE": -75.177618, "DATE_RANGE_START": 2020, "Total Visits": 1814.0, "Total Visitors": 1469.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 5.0, "Total Spend": 3071.0, "Total Transactions": 143.0, "Total Customers": 127.0, "Median Spend per Transaction": 21.26, "Median Spend per Customer": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.177618, 39.951277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "Name": "Finn Mccools Ale House", "Category": "Restaurants and Other Eating Places", "Address": "118 S 12th St", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 169.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 7178.0, "Total Transactions": 161.0, "Total Customers": 123.0, "Median Spend per Transaction": 40.67, "Median Spend per Customer": 49.9 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "Name": "Hatville Deli", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 189.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 11.0, "Total Spend": 2461.0, "Total Transactions": 161.0, "Total Customers": 135.0, "Median Spend per Transaction": 11.63, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6p9", "Name": "DelFrisco's Double Eagle Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "1428 Chestnut St # 1432", "LATITUDE": 39.950881, "LONGITUDE": -75.165456, "DATE_RANGE_START": 2020, "Total Visits": 1461.0, "Total Visitors": 1131.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 11.0, "Total Spend": 8714.0, "Total Transactions": 87.0, "Total Customers": 77.0, "Median Spend per Transaction": 82.58, "Median Spend per Customer": 84.24 }, "geometry": { "type": "Point", "coordinates": [ -75.165456, 39.950881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1675 S Columbus Blvd", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2020, "Total Visits": 10492.0, "Total Visitors": 6983.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 31.0, "Total Spend": 2299.0, "Total Transactions": 322.0, "Total Customers": 191.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 7.88 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-y35", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "11725 Bustleton Ave", "LATITUDE": 40.119184, "LONGITUDE": -75.01709, "DATE_RANGE_START": 2020, "Total Visits": 582.0, "Total Visitors": 447.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 2.0, "Total Spend": 8450.0, "Total Transactions": 1157.0, "Total Customers": 484.0, "Median Spend per Transaction": 6.1, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.01709, 40.119184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-y9z", "Name": "Bella Boutique", "Category": "Clothing Stores", "Address": "527 S 4th St", "LATITUDE": 39.941863, "LONGITUDE": -75.148989, "DATE_RANGE_START": 2020, "Total Visits": 1066.0, "Total Visitors": 838.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 19.0, "Total Spend": 828.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 52.06, "Median Spend per Customer": 62.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148989, 39.941863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "8920 Frankford Ave", "LATITUDE": 40.05212, "LONGITUDE": -75.010353, "DATE_RANGE_START": 2020, "Total Visits": 1437.0, "Total Visitors": 919.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 11.0, "Total Spend": 71832.0, "Total Transactions": 1727.0, "Total Customers": 1137.0, "Median Spend per Transaction": 25.23, "Median Spend per Customer": 36.28 }, "geometry": { "type": "Point", "coordinates": [ -75.010353, 40.05212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-r49", "Name": "IGA", "Category": "Grocery Stores", "Address": "2497 Aramingo Ave", "LATITUDE": 39.975356, "LONGITUDE": -75.119618, "DATE_RANGE_START": 2020, "Total Visits": 1820.0, "Total Visitors": 971.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 13.0, "Total Spend": 2864.0, "Total Transactions": 83.0, "Total Customers": 69.0, "Median Spend per Transaction": 25.98, "Median Spend per Customer": 27.22 }, "geometry": { "type": "Point", "coordinates": [ -75.119618, 39.975356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5680 Rising Sun Ave", "LATITUDE": 40.039167, "LONGITUDE": -75.110538, "DATE_RANGE_START": 2020, "Total Visits": 1834.0, "Total Visitors": 1354.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 5.0, "Total Spend": 1312.0, "Total Transactions": 54.0, "Total Customers": 46.0, "Median Spend per Transaction": 22.34, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110538, 40.039167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvw-bhq", "Name": "Top Taste", "Category": "Restaurants and Other Eating Places", "Address": "40 N 52nd St", "LATITUDE": 39.961231, "LONGITUDE": -75.224868, "DATE_RANGE_START": 2020, "Total Visits": 69.0, "Total Visitors": 64.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 5.0, "Total Spend": 226.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.5, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224868, 39.961231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj4-7wk", "Name": "Vernie's Soul Food", "Category": "Restaurants and Other Eating Places", "Address": "1800 W Eleanor St", "LATITUDE": 40.027362, "LONGITUDE": -75.153997, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010280003.0, "Median Dwell Time": null, "Total Spend": 1400.0, "Total Transactions": 58.0, "Total Customers": 48.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.153997, 40.027362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "Name": "Sumo Sushi", "Category": "Restaurants and Other Eating Places", "Address": "401 S 13th St", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010011014.0, "Median Dwell Time": null, "Total Spend": 1817.0, "Total Transactions": 62.0, "Total Customers": 52.0, "Median Spend per Transaction": 22.01, "Median Spend per Customer": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj7-kmk", "Name": "No 1 Waterice", "Category": "Restaurants and Other Eating Places", "Address": "4657 Castor Ave", "LATITUDE": 40.021183, "LONGITUDE": -75.094108, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010301004.0, "Median Dwell Time": null, "Total Spend": 92.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094108, 40.021183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgb-c3q", "Name": "Lucky Goat Coffeehouse", "Category": "Restaurants and Other Eating Places", "Address": "888 N 26th St", "LATITUDE": 39.972559, "LONGITUDE": -75.179343, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 1.0, "Total Spend": 3277.0, "Total Transactions": 443.0, "Total Customers": 167.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.179343, 39.972559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp5-gff", "Name": "Stop One Supermarket", "Category": "Grocery Stores", "Address": "2971 Aramingo Ave", "LATITUDE": 39.985559, "LONGITUDE": -75.111594, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 22.0, "POI_CBG": 421010179003.0, "Median Dwell Time": 21.0, "Total Spend": 23.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 5.75 }, "geometry": { "type": "Point", "coordinates": [ -75.111594, 39.985559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "Name": "M & M Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2736 E Allegheny Ave", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 22.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 13.0, "Total Spend": 563.0, "Total Transactions": 34.0, "Total Customers": 20.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-hdv", "Name": "The Juice Room", "Category": "Restaurants and Other Eating Places", "Address": "7127 Germantown Ave", "LATITUDE": 40.0592, "LONGITUDE": -75.189995, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 5.0, "Total Spend": 937.0, "Total Transactions": 71.0, "Total Customers": 52.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.189995, 40.0592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-bzf", "Name": "Penn City Auto Stores", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7116 Elmwood Ave", "LATITUDE": 39.915656, "LONGITUDE": -75.239326, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 48.0, "POI_CBG": 421010060004.0, "Median Dwell Time": 37.0, "Total Spend": 7808.0, "Total Transactions": 64.0, "Total Customers": 58.0, "Median Spend per Transaction": 77.6, "Median Spend per Customer": 90.4 }, "geometry": { "type": "Point", "coordinates": [ -75.239326, 39.915656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pgf-fj9", "Name": "Cleopatra Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4145 Chestnut St", "LATITUDE": 39.956516, "LONGITUDE": -75.206034, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 67.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 294.0, "Total Spend": 701.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206034, 39.956516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "Name": "Giovani's Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "1533 Chestnut St", "LATITUDE": 39.951522, "LONGITUDE": -75.166746, "DATE_RANGE_START": 2020, "Total Visits": 625.0, "Total Visitors": 490.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 12.0, "Total Spend": 4588.0, "Total Transactions": 226.0, "Total Customers": 175.0, "Median Spend per Transaction": 12.46, "Median Spend per Customer": 16.65 }, "geometry": { "type": "Point", "coordinates": [ -75.166746, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "Name": "Barclay Prime", "Category": "Restaurants and Other Eating Places", "Address": "237 S 18th St", "LATITUDE": 39.948498, "LONGITUDE": -75.170757, "DATE_RANGE_START": 2020, "Total Visits": 343.0, "Total Visitors": 258.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 24.0, "Total Spend": 9842.0, "Total Transactions": 42.0, "Total Customers": 40.0, "Median Spend per Transaction": 219.92, "Median Spend per Customer": 220.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170757, 39.948498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg9-x5z", "Name": "Vineyards Cafe", "Category": "Restaurants and Other Eating Places", "Address": "847 N 16th St", "LATITUDE": 39.96989, "LONGITUDE": -75.162961, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010133002.0, "Median Dwell Time": null, "Total Spend": 3459.0, "Total Transactions": 431.0, "Total Customers": 171.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 12.71 }, "geometry": { "type": "Point", "coordinates": [ -75.162961, 39.96989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26j-222@628-pgb-6x5", "Name": "The Black Taxi", "Category": "Restaurants and Other Eating Places", "Address": "745 N 25th St # 747", "LATITUDE": 39.968738, "LONGITUDE": -75.178186, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010136011.0, "Median Dwell Time": null, "Total Spend": 12082.0, "Total Transactions": 355.0, "Total Customers": 278.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 31.7 }, "geometry": { "type": "Point", "coordinates": [ -75.178186, 39.968738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "1622 South St", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 5.0, "Total Spend": 1363.0, "Total Transactions": 73.0, "Total Customers": 64.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-pvz", "Name": "Midnight Iris", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1708 Lombard St", "LATITUDE": 39.945191, "LONGITUDE": -75.170462, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 18.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 97.0, "Total Spend": 1535.0, "Total Transactions": 32.0, "Total Customers": 24.0, "Median Spend per Transaction": 23.55, "Median Spend per Customer": 42.82 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-8jv", "Name": "Newmans Grill", "Category": "Restaurants and Other Eating Places", "Address": "5946 Germantown Ave", "LATITUDE": 40.038927, "LONGITUDE": -75.177558, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010238003.0, "Median Dwell Time": 125.0, "Total Spend": 332.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 19.94, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.177558, 40.038927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St", "LATITUDE": 40.024672, "LONGITUDE": -75.147508, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 91.0, "POI_CBG": 421010283003.0, "Median Dwell Time": 2.0, "Total Spend": 2041.0, "Total Transactions": 326.0, "Total Customers": 187.0, "Median Spend per Transaction": 5.54, "Median Spend per Customer": 7.64 }, "geometry": { "type": "Point", "coordinates": [ -75.147508, 40.024672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "Name": "The Little Apple", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4361 Main St", "LATITUDE": 40.025728, "LONGITUDE": -75.223969, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 50.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 97.0, "Total Spend": 2226.0, "Total Transactions": 52.0, "Total Customers": 48.0, "Median Spend per Transaction": 27.46, "Median Spend per Customer": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.223969, 40.025728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032059, "LONGITUDE": -75.213927, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 171.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 3.0, "Total Spend": 2333.0, "Total Transactions": 298.0, "Total Customers": 214.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.213927, 40.032059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-g6k", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2101 W Oregon Ave", "LATITUDE": 39.918591, "LONGITUDE": -75.183167, "DATE_RANGE_START": 2020, "Total Visits": 480.0, "Total Visitors": 423.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 8.0, "Total Spend": 11263.0, "Total Transactions": 208.0, "Total Customers": 179.0, "Median Spend per Transaction": 25.88, "Median Spend per Customer": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.183167, 39.918591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "4424 N Broad St", "LATITUDE": 40.021127, "LONGITUDE": -75.149781, "DATE_RANGE_START": 2020, "Total Visits": 717.0, "Total Visitors": 447.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 14.0, "Total Spend": 2082.0, "Total Transactions": 73.0, "Total Customers": 52.0, "Median Spend per Transaction": 13.95, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149781, 40.021127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-brk", "Name": "North Penn Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "2241 W Clearfield St", "LATITUDE": 40.002096, "LONGITUDE": -75.167568, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 121.0, "POI_CBG": 421010172013.0, "Median Dwell Time": 5.0, "Total Spend": 311.0, "Total Transactions": 18.0, "Total Customers": 10.0, "Median Spend per Transaction": 12.01, "Median Spend per Customer": 34.03 }, "geometry": { "type": "Point", "coordinates": [ -75.167568, 40.002096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 W Cheltenham Ave", "LATITUDE": 40.081571, "LONGITUDE": -75.172058, "DATE_RANGE_START": 2020, "Total Visits": 1022.0, "Total Visitors": 730.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 4.0, "Total Spend": 1516.0, "Total Transactions": 69.0, "Total Customers": 67.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.42 }, "geometry": { "type": "Point", "coordinates": [ -75.172058, 40.081571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pm4-ckf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2101 S 17th St", "LATITUDE": 39.924823, "LONGITUDE": -75.17424, "DATE_RANGE_START": 2020, "Total Visits": 1114.0, "Total Visitors": 816.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 4.0, "Total Spend": 1683.0, "Total Transactions": 73.0, "Total Customers": 40.0, "Median Spend per Transaction": 19.69, "Median Spend per Customer": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17424, 39.924823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5650 Ridge Ave", "LATITUDE": 40.026583, "LONGITUDE": -75.209516, "DATE_RANGE_START": 2020, "Total Visits": 1187.0, "Total Visitors": 796.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 5.0, "Total Spend": 1045.0, "Total Transactions": 42.0, "Total Customers": 38.0, "Median Spend per Transaction": 26.51, "Median Spend per Customer": 27.01 }, "geometry": { "type": "Point", "coordinates": [ -75.209516, 40.026583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-6tv", "Name": "Gold Heart Direct", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1293 Franklin Mills Cir", "LATITUDE": 40.085488, "LONGITUDE": -74.962122, "DATE_RANGE_START": 2020, "Total Visits": 161.0, "Total Visitors": 137.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 997.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 251.1, "Median Spend per Customer": 251.1 }, "geometry": { "type": "Point", "coordinates": [ -74.962122, 40.085488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm3-vzz", "Name": "A Novel Idea", "Category": "Book Stores and News Dealers", "Address": "1726 E Passyunk Ave", "LATITUDE": 39.928207, "LONGITUDE": -75.165695, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 304.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 27.0, "Total Spend": 238.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.165695, 39.928207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "Name": "Walmart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd Bldg G", "LATITUDE": 40.031276, "LONGITUDE": -75.099634, "DATE_RANGE_START": 2020, "Total Visits": 7096.0, "Total Visitors": 4843.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 24.0, "Total Spend": 265644.0, "Total Transactions": 3976.0, "Total Customers": 2751.0, "Median Spend per Transaction": 41.26, "Median Spend per Customer": 58.34 }, "geometry": { "type": "Point", "coordinates": [ -75.099634, 40.031276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj5-435", "Name": "1 Stop Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3701 Germantown Ave", "LATITUDE": 40.009415, "LONGITUDE": -75.15067, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 2.0, "Total Spend": 788.0, "Total Transactions": 40.0, "Total Customers": 32.0, "Median Spend per Transaction": 16.37, "Median Spend per Customer": 19.05 }, "geometry": { "type": "Point", "coordinates": [ -75.15067, 40.009415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "Name": "Beck's Cajun Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2020, "Total Visits": 10482.0, "Total Visitors": 6602.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 22.0, "Total Spend": 2150.0, "Total Transactions": 133.0, "Total Customers": 119.0, "Median Spend per Transaction": 13.8, "Median Spend per Customer": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "7350 Oxford Ave", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 210.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 2.0, "Total Spend": 1279.0, "Total Transactions": 73.0, "Total Customers": 62.0, "Median Spend per Transaction": 16.01, "Median Spend per Customer": 20.29 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "527 Franklin Mills Cir", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2020, "Total Visits": 405.0, "Total Visitors": 391.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 1931.0, "Total Transactions": 123.0, "Total Customers": 95.0, "Median Spend per Transaction": 11.13, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2109 N Broad St", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2020, "Total Visits": 770.0, "Total Visitors": 550.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 9.0, "Total Spend": 16401.0, "Total Transactions": 1455.0, "Total Customers": 1034.0, "Median Spend per Transaction": 9.36, "Median Spend per Customer": 12.41 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "Name": "Shot Tower Coffee", "Category": "Restaurants and Other Eating Places", "Address": "542 Christian St", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 83.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 2.0, "Total Spend": 2766.0, "Total Transactions": 333.0, "Total Customers": 165.0, "Median Spend per Transaction": 5.88, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-yqf", "Name": "M Kee", "Category": "Restaurants and Other Eating Places", "Address": "1002 Race St", "LATITUDE": 39.955229, "LONGITUDE": -75.156117, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 44.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1281.0, "Total Spend": 1324.0, "Total Transactions": 26.0, "Total Customers": 20.0, "Median Spend per Transaction": 37.94, "Median Spend per Customer": 51.52 }, "geometry": { "type": "Point", "coordinates": [ -75.156117, 39.955229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw4-rzf", "Name": "LOVE Grille", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895174, "LONGITUDE": -75.227972, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 24583.0, "Total Transactions": 1346.0, "Total Customers": 1133.0, "Median Spend per Transaction": 15.36, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.227972, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-g49", "Name": "Ham Bone", "Category": "Other Miscellaneous Store Retailers", "Address": "1824 Frankford Ave", "LATITUDE": 39.977503, "LONGITUDE": -75.13156, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 52.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 108.0, "Total Spend": 5119.0, "Total Transactions": 105.0, "Total Customers": 79.0, "Median Spend per Transaction": 38.15, "Median Spend per Customer": 56.87 }, "geometry": { "type": "Point", "coordinates": [ -75.13156, 39.977503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p74-z75", "Name": "Seafood Bay Inc", "Category": "Restaurants and Other Eating Places", "Address": "8006 Frankford Ave", "LATITUDE": 40.041659, "LONGITUDE": -75.028001, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 58.0, "POI_CBG": 421010331022.0, "Median Dwell Time": 4.0, "Total Spend": 818.0, "Total Transactions": 30.0, "Total Customers": 20.0, "Median Spend per Transaction": 30.23, "Median Spend per Customer": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.028001, 40.041659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-835", "Name": "The Green Remedy", "Category": "Drugs and Druggists' Sundries Merchant Wholesalers", "Address": "7215 Rising Sun Ave Unit B", "LATITUDE": 40.059866, "LONGITUDE": -75.085231, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 1.0, "Total Spend": 744.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 125.0, "Median Spend per Customer": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.085231, 40.059866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmd-yjv", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "2001 Federal St", "LATITUDE": 39.937442, "LONGITUDE": -75.176792, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 3.0, "Total Spend": 4547.0, "Total Transactions": 461.0, "Total Customers": 355.0, "Median Spend per Transaction": 7.99, "Median Spend per Customer": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.176792, 39.937442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012073, "LONGITUDE": -75.115248, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 3.0, "Total Spend": 439.0, "Total Transactions": 32.0, "Total Customers": 26.0, "Median Spend per Transaction": 10.66, "Median Spend per Customer": 13.33 }, "geometry": { "type": "Point", "coordinates": [ -75.115248, 40.012073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm4-8sq", "Name": "Olivares Food Market", "Category": "Grocery Stores", "Address": "1718 Wharton St", "LATITUDE": 39.934795, "LONGITUDE": -75.173301, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010030023.0, "Median Dwell Time": null, "Total Spend": 21.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 5.25, "Median Spend per Customer": 5.25 }, "geometry": { "type": "Point", "coordinates": [ -75.173301, 39.934795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9w-zmk", "Name": "Hendrix Pharmacy", "Category": "Health and Personal Care Stores", "Address": "11685 Bustleton Ave", "LATITUDE": 40.118281, "LONGITUDE": -75.017944, "DATE_RANGE_START": 2020, "Total Visits": 562.0, "Total Visitors": 389.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 4.0, "Total Spend": 333.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.017944, 40.118281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "9875 Bustleton Ave", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2020, "Total Visits": 820.0, "Total Visitors": 633.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 6.0, "Total Spend": 6499.0, "Total Transactions": 268.0, "Total Customers": 179.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3300 10 South Broad Street Philadelphia", "LATITUDE": 39.909224, "LONGITUDE": -75.174004, "DATE_RANGE_START": 2020, "Total Visits": 683.0, "Total Visitors": 453.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 5.0, "Total Spend": 3914.0, "Total Transactions": 204.0, "Total Customers": 123.0, "Median Spend per Transaction": 11.78, "Median Spend per Customer": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.174004, 39.909224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "501 W Lehigh Ave", "LATITUDE": 39.992376, "LONGITUDE": -75.140508, "DATE_RANGE_START": 2020, "Total Visits": 1078.0, "Total Visitors": 810.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 5.0, "Total Spend": 10076.0, "Total Transactions": 459.0, "Total Customers": 349.0, "Median Spend per Transaction": 20.16, "Median Spend per Customer": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.140508, 39.992376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "6100 Frankford Ave", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2020, "Total Visits": 369.0, "Total Visitors": 280.0, "POI_CBG": 421010317003.0, "Median Dwell Time": 5.0, "Total Spend": 11303.0, "Total Transactions": 840.0, "Total Customers": 625.0, "Median Spend per Transaction": 11.04, "Median Spend per Customer": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-vs5", "Name": "Ys Market", "Category": "Restaurants and Other Eating Places", "Address": "3468 Kensington Ave", "LATITUDE": 40.000195, "LONGITUDE": -75.106917, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 218.0, "POI_CBG": 421010192004.0, "Median Dwell Time": 3.0, "Total Spend": 620.0, "Total Transactions": 32.0, "Total Customers": 18.0, "Median Spend per Transaction": 21.83, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.106917, 40.000195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p85-2hq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8298 Bustleton Ave", "LATITUDE": 40.066275, "LONGITUDE": -75.051537, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 159.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 12.0, "Total Spend": 986.0, "Total Transactions": 206.0, "Total Customers": 83.0, "Median Spend per Transaction": 3.55, "Median Spend per Customer": 6.88 }, "geometry": { "type": "Point", "coordinates": [ -75.051537, 40.066275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pj6-k4v", "Name": "Pelicana Chicken", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.04453, "LONGITUDE": -75.117658, "DATE_RANGE_START": 2020, "Total Visits": 679.0, "Total Visitors": 449.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 37.0, "Total Spend": 88.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.117658, 40.04453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-z75", "Name": "Pierogi Factory", "Category": "Restaurants and Other Eating Places", "Address": "9965 Bustleton Ave", "LATITUDE": 40.101174, "LONGITUDE": -75.028995, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 69.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 1.0, "Total Spend": 389.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.028995, 40.101174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgd-z9f", "Name": "Bombay Dhabba Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956797, "LONGITUDE": -75.194135, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 36.0, "Total Spend": 1865.0, "Total Transactions": 95.0, "Total Customers": 60.0, "Median Spend per Transaction": 13.93, "Median Spend per Customer": 20.53 }, "geometry": { "type": "Point", "coordinates": [ -75.194135, 39.956797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pmb-7t9", "Name": "Jeans Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1334 Walnut St", "LATITUDE": 39.949139, "LONGITUDE": -75.163554, "DATE_RANGE_START": 2020, "Total Visits": 139.0, "Total Visitors": 83.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 110.0, "Total Spend": 1394.0, "Total Transactions": 117.0, "Total Customers": 67.0, "Median Spend per Transaction": 11.23, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.163554, 39.949139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-5mk", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "313 Spring Garden St", "LATITUDE": 39.961178, "LONGITUDE": -75.143721, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 179.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 402.0, "Total Spend": 652.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 74.97, "Median Spend per Customer": 74.97 }, "geometry": { "type": "Point", "coordinates": [ -75.143721, 39.961178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St Ste 128", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2020, "Total Visits": 206.0, "Total Visitors": 161.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 8.0, "Total Spend": 3548.0, "Total Transactions": 278.0, "Total Customers": 224.0, "Median Spend per Transaction": 10.65, "Median Spend per Customer": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmf-n5z", "Name": "Di Bruno Bros", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd", "LATITUDE": 39.954896, "LONGITUDE": -75.168695, "DATE_RANGE_START": 2020, "Total Visits": 1030.0, "Total Visitors": 572.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 287.0, "Total Spend": 86799.0, "Total Transactions": 3210.0, "Total Customers": 1649.0, "Median Spend per Transaction": 15.35, "Median Spend per Customer": 27.38 }, "geometry": { "type": "Point", "coordinates": [ -75.168695, 39.954896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-tn5", "Name": "Koto Sushi", "Category": "Restaurants and Other Eating Places", "Address": "719 Sansom St", "LATITUDE": 39.948858, "LONGITUDE": -75.153256, "DATE_RANGE_START": 2020, "Total Visits": 937.0, "Total Visitors": 552.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 248.0, "Total Spend": 3062.0, "Total Transactions": 73.0, "Total Customers": 46.0, "Median Spend per Transaction": 24.79, "Median Spend per Customer": 24.73 }, "geometry": { "type": "Point", "coordinates": [ -75.153256, 39.948858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "499 Franklin Mills Cir", "LATITUDE": 40.087623, "LONGITUDE": -74.965267, "DATE_RANGE_START": 2020, "Total Visits": 1723.0, "Total Visitors": 1457.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 14744.0, "Total Transactions": 981.0, "Total Customers": 744.0, "Median Spend per Transaction": 13.38, "Median Spend per Customer": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -74.965267, 40.087623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-ysq", "Name": "C & R Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "1601 S 49th St", "LATITUDE": 39.93947, "LONGITUDE": -75.209529, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 151.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 11.0, "Total Spend": 7606.0, "Total Transactions": 56.0, "Total Customers": 38.0, "Median Spend per Transaction": 48.52, "Median Spend per Customer": 64.21 }, "geometry": { "type": "Point", "coordinates": [ -75.209529, 39.93947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "Name": "King Wok's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Torresdale Ave", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010321001.0, "Median Dwell Time": null, "Total Spend": 1437.0, "Total Transactions": 54.0, "Total Customers": 46.0, "Median Spend per Transaction": 25.06, "Median Spend per Customer": 24.57 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "Name": "Fair Mart", "Category": "Grocery Stores", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.968488, "LONGITUDE": -75.180495, "DATE_RANGE_START": 2020, "Total Visits": 369.0, "Total Visitors": 274.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 37.0, "Total Spend": 8064.0, "Total Transactions": 611.0, "Total Customers": 165.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 27.49 }, "geometry": { "type": "Point", "coordinates": [ -75.180495, 39.968488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "Name": "Mega Mart", "Category": "Grocery Stores", "Address": "6340 Ogontz Ave", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 91.0, "POI_CBG": 421010277003.0, "Median Dwell Time": 7.0, "Total Spend": 1773.0, "Total Transactions": 75.0, "Total Customers": 66.0, "Median Spend per Transaction": 14.52, "Median Spend per Customer": 15.83 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pmf-qs5", "Name": "Wine Dive", "Category": "Beer, Wine, and Liquor Stores", "Address": "1506 South St", "LATITUDE": 39.943689, "LONGITUDE": -75.167525, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 143.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 95.0, "Total Spend": 1200.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 24.74, "Median Spend per Customer": 24.19 }, "geometry": { "type": "Point", "coordinates": [ -75.167525, 39.943689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "8525 Frankford Ave", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2020, "Total Visits": 558.0, "Total Visitors": 405.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 6.0, "Total Spend": 3729.0, "Total Transactions": 187.0, "Total Customers": 111.0, "Median Spend per Transaction": 11.74, "Median Spend per Customer": 24.09 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-gc5", "Name": "Verree Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7960 Verree Rd", "LATITUDE": 40.072408, "LONGITUDE": -75.076041, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 77.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 10.0, "Total Spend": 879.0, "Total Transactions": 34.0, "Total Customers": 26.0, "Median Spend per Transaction": 21.38, "Median Spend per Customer": 30.05 }, "geometry": { "type": "Point", "coordinates": [ -75.076041, 40.072408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-yd9", "Name": "Art of Perfume", "Category": "Health and Personal Care Stores", "Address": "11801 Bustleton Ave", "LATITUDE": 40.120391, "LONGITUDE": -75.016185, "DATE_RANGE_START": 2020, "Total Visits": 324.0, "Total Visitors": 284.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 5.0, "Total Spend": 355.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 89.55, "Median Spend per Customer": 89.55 }, "geometry": { "type": "Point", "coordinates": [ -75.016185, 40.120391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "1556 E Wadsworth Ave", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 28.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 6.0, "Total Spend": 1316.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 25.27, "Median Spend per Customer": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "Name": "Forever 21", "Category": "Clothing Stores", "Address": "1706 Franklin Mills Cir", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 270.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 15812.0, "Total Transactions": 421.0, "Total Customers": 367.0, "Median Spend per Transaction": 27.47, "Median Spend per Customer": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wc5", "Name": "Kids Foot Locker", "Category": "Shoe Stores", "Address": "1376 Franklin Mills Cir Spc 729", "LATITUDE": 40.08622, "LONGITUDE": -74.962809, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 809.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 93.79, "Median Spend per Customer": 93.79 }, "geometry": { "type": "Point", "coordinates": [ -74.962809, 40.08622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "Name": "El Rey", "Category": "Restaurants and Other Eating Places", "Address": "2013 Chestnut St", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 91.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 43.0, "Total Spend": 5309.0, "Total Transactions": 73.0, "Total Customers": 66.0, "Median Spend per Transaction": 52.0, "Median Spend per Customer": 68.68 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "Name": "Marcello's Pizza Grill", "Category": "Restaurants and Other Eating Places", "Address": "10849 Bustleton Ave", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2020, "Total Visits": 1489.0, "Total Visitors": 1108.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 4.0, "Total Spend": 539.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 25.29, "Median Spend per Customer": 26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgf-fpv", "Name": "Kabobeesh", "Category": "Restaurants and Other Eating Places", "Address": "4201 Chestnut St", "LATITUDE": 39.956522, "LONGITUDE": -75.206506, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 81.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 31.0, "Total Spend": 5519.0, "Total Transactions": 165.0, "Total Customers": 129.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 28.61 }, "geometry": { "type": "Point", "coordinates": [ -75.206506, 39.956522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "2106 S Columbus Blvd", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2020, "Total Visits": 5127.0, "Total Visitors": 3452.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 19.0, "Total Spend": 414387.0, "Total Transactions": 6036.0, "Total Customers": 4172.0, "Median Spend per Transaction": 32.8, "Median Spend per Customer": 41.92 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3925 Walnut St", "LATITUDE": 39.95427, "LONGITUDE": -75.201494, "DATE_RANGE_START": 2020, "Total Visits": 1749.0, "Total Visitors": 1010.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 115.0, "Total Spend": 19657.0, "Total Transactions": 1247.0, "Total Customers": 607.0, "Median Spend per Transaction": 10.65, "Median Spend per Customer": 20.24 }, "geometry": { "type": "Point", "coordinates": [ -75.201494, 39.95427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1825 W Oregon Ave # 33", "LATITUDE": 39.91807, "LONGITUDE": -75.17894, "DATE_RANGE_START": 2020, "Total Visits": 1769.0, "Total Visitors": 1181.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 676.0, "Total Transactions": 30.0, "Total Customers": 20.0, "Median Spend per Transaction": 16.13, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17894, 39.91807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "Name": "Macy's", "Category": "Department Stores", "Address": "2399 Cottman Ave", "LATITUDE": 40.04687, "LONGITUDE": -75.054304, "DATE_RANGE_START": 2020, "Total Visits": 2553.0, "Total Visitors": 2066.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 24.0, "Total Spend": 21930.0, "Total Transactions": 159.0, "Total Customers": 129.0, "Median Spend per Transaction": 53.0, "Median Spend per Customer": 65.02 }, "geometry": { "type": "Point", "coordinates": [ -75.054304, 40.04687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-8sq", "Name": "Edible Arrangements", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "120 S 12th St", "LATITUDE": 39.949551, "LONGITUDE": -75.160537, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 185.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 13.0, "Total Spend": 99.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 24.99, "Median Spend per Customer": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160537, 39.949551 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "Name": "Monster Pets", "Category": "Other Miscellaneous Store Retailers", "Address": "1946 S Columbus Blvd", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2020, "Total Visits": 512.0, "Total Visitors": 399.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 18804.0, "Total Transactions": 462.0, "Total Customers": 413.0, "Median Spend per Transaction": 32.38, "Median Spend per Customer": 34.52 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1034 Washington Ave # 38", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2020, "Total Visits": 528.0, "Total Visitors": 304.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 4.0, "Total Spend": 2774.0, "Total Transactions": 266.0, "Total Customers": 133.0, "Median Spend per Transaction": 8.04, "Median Spend per Customer": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "Name": "BP", "Category": "Gasoline Stations", "Address": "5801 Oxford Ave", "LATITUDE": 40.032516, "LONGITUDE": -75.084558, "DATE_RANGE_START": 2020, "Total Visits": 1969.0, "Total Visitors": 1292.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 5.0, "Total Spend": 1757.0, "Total Transactions": 44.0, "Total Customers": 36.0, "Median Spend per Transaction": 17.1, "Median Spend per Customer": 20.37 }, "geometry": { "type": "Point", "coordinates": [ -75.084558, 40.032516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6215 Roosevelt Blvd", "LATITUDE": 40.033829, "LONGITUDE": -75.072583, "DATE_RANGE_START": 2020, "Total Visits": 707.0, "Total Visitors": 576.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 4.0, "Total Spend": 10603.0, "Total Transactions": 453.0, "Total Customers": 339.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.072583, 40.033829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-92k", "Name": "Francesca's", "Category": "Clothing Stores", "Address": "901 Market St # 2045", "LATITUDE": 39.952109, "LONGITUDE": -75.155803, "DATE_RANGE_START": 2020, "Total Visits": 117.0, "Total Visitors": 93.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 12.0, "Total Spend": 3952.0, "Total Transactions": 121.0, "Total Customers": 95.0, "Median Spend per Transaction": 24.3, "Median Spend per Customer": 34.48 }, "geometry": { "type": "Point", "coordinates": [ -75.155803, 39.952109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-xnq", "Name": "LIDS", "Category": "Clothing Stores", "Address": "8500 Essington Ave Ste DE7", "LATITUDE": 39.87811, "LONGITUDE": -75.239425, "DATE_RANGE_START": 2020, "Total Visits": 93781.0, "Total Visitors": 57624.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 53.0, "Total Spend": 188.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 47.36, "Median Spend per Customer": 47.36 }, "geometry": { "type": "Point", "coordinates": [ -75.239425, 39.87811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgf-3bk", "Name": "Old Nelson Food", "Category": "Restaurants and Other Eating Places", "Address": "3600 Market St", "LATITUDE": 39.956093, "LONGITUDE": -75.194408, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 81.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 1.0, "Total Spend": 140.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 30.97, "Median Spend per Customer": 30.97 }, "geometry": { "type": "Point", "coordinates": [ -75.194408, 39.956093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-5j9", "Name": "Dollar Up & Gifts", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "10833 Bustleton Ave", "LATITUDE": 40.10998, "LONGITUDE": -75.024237, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 177.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 3.0, "Total Spend": 1062.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 15.13, "Median Spend per Customer": 18.54 }, "geometry": { "type": "Point", "coordinates": [ -75.024237, 40.10998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp4-tvz", "Name": "Best Deli II", "Category": "Restaurants and Other Eating Places", "Address": "2616 E Lehigh Ave", "LATITUDE": 39.978727, "LONGITUDE": -75.115372, "DATE_RANGE_START": 2020, "Total Visits": 324.0, "Total Visitors": 133.0, "POI_CBG": 421010378003.0, "Median Dwell Time": 1070.0, "Total Spend": 1351.0, "Total Transactions": 95.0, "Total Customers": 60.0, "Median Spend per Transaction": 13.04, "Median Spend per Customer": 15.84 }, "geometry": { "type": "Point", "coordinates": [ -75.115372, 39.978727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "Name": "Trio Delight Cafe", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.037587, "LONGITUDE": -75.118044, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 95.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 12.0, "Total Spend": 1173.0, "Total Transactions": 66.0, "Total Customers": 52.0, "Median Spend per Transaction": 16.69, "Median Spend per Customer": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.118044, 40.037587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "29 Snyder Ave", "LATITUDE": 39.923331, "LONGITUDE": -75.144837, "DATE_RANGE_START": 2020, "Total Visits": 2277.0, "Total Visitors": 1358.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 15.0, "Total Spend": 38.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.56, "Median Spend per Customer": 9.56 }, "geometry": { "type": "Point", "coordinates": [ -75.144837, 39.923331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "Name": "Spice C", "Category": "Restaurants and Other Eating Places", "Address": "131 N 10th St", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 79.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 115.0, "Total Spend": 400.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 17.98, "Median Spend per Customer": 27.66 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hh5", "Name": "Square on Square", "Category": "Restaurants and Other Eating Places", "Address": "274 S 20th St", "LATITUDE": 39.94849, "LONGITUDE": -75.174456, "DATE_RANGE_START": 2020, "Total Visits": 848.0, "Total Visitors": 470.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 81.0, "Total Spend": 883.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 16.74, "Median Spend per Customer": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174456, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-54v", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "2875 W Dauphin St", "LATITUDE": 39.991295, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2020, "Total Visits": 240.0, "Total Visitors": 161.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 41.0, "Total Spend": 207.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 9.61, "Median Spend per Customer": 9.61 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "Name": "Schmear It", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956751, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 36.0, "Total Spend": 1102.0, "Total Transactions": 109.0, "Total Customers": 97.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "Name": "Stock", "Category": "Restaurants and Other Eating Places", "Address": "308 E Girard Ave", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 69.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 104.0, "Total Spend": 86948.0, "Total Transactions": 240.0, "Total Customers": 193.0, "Median Spend per Transaction": 229.57, "Median Spend per Customer": 265.91 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-j5f", "Name": "Poppy's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8229 Germantown Ave", "LATITUDE": 40.074185, "LONGITUDE": -75.202466, "DATE_RANGE_START": 2020, "Total Visits": 399.0, "Total Visitors": 282.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 13.0, "Total Spend": 139.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 5.93, "Median Spend per Customer": 5.93 }, "geometry": { "type": "Point", "coordinates": [ -75.202466, 40.074185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 Richmond St", "LATITUDE": 39.983382, "LONGITUDE": -75.10116, "DATE_RANGE_START": 2020, "Total Visits": 2789.0, "Total Visitors": 1802.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 7.0, "Total Spend": 1189.0, "Total Transactions": 52.0, "Total Customers": 48.0, "Median Spend per Transaction": 20.19, "Median Spend per Customer": 20.88 }, "geometry": { "type": "Point", "coordinates": [ -75.10116, 39.983382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "Name": "Fleishman Fabrics & Supplies", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "737 S 4th St", "LATITUDE": 39.93943, "LONGITUDE": -75.149516, "DATE_RANGE_START": 2020, "Total Visits": 272.0, "Total Visitors": 155.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 217.0, "Total Spend": 2664.0, "Total Transactions": 40.0, "Total Customers": 38.0, "Median Spend per Transaction": 47.5, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149516, 39.93943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "Name": "Ross Stores", "Category": "Department Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029581, "LONGITUDE": -75.100406, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 187.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 7.0, "Total Spend": 13142.0, "Total Transactions": 228.0, "Total Customers": 183.0, "Median Spend per Transaction": 36.68, "Median Spend per Customer": 38.55 }, "geometry": { "type": "Point", "coordinates": [ -75.100406, 40.029581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "701 W Lehigh Ave", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2020, "Total Visits": 242.0, "Total Visitors": 220.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 9.0, "Total Spend": 2512.0, "Total Transactions": 191.0, "Total Customers": 169.0, "Median Spend per Transaction": 10.57, "Median Spend per Customer": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8113 Stenton Ave", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 145.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 2.0, "Total Spend": 6893.0, "Total Transactions": 943.0, "Total Customers": 518.0, "Median Spend per Transaction": 6.06, "Median Spend per Customer": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwb-pvz", "Name": "TMK Produce", "Category": "Grocery Stores", "Address": "6700 Essington Ave Unit A1A6", "LATITUDE": 39.91064, "LONGITUDE": -75.220471, "DATE_RANGE_START": 2020, "Total Visits": 629.0, "Total Visitors": 195.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 192.0, "Total Spend": 3848.0, "Total Transactions": 181.0, "Total Customers": 137.0, "Median Spend per Transaction": 8.68, "Median Spend per Customer": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.220471, 39.91064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2901 N Broad St", "LATITUDE": 39.99726, "LONGITUDE": -75.153396, "DATE_RANGE_START": 2020, "Total Visits": 1830.0, "Total Visitors": 1435.0, "POI_CBG": 421010174002.0, "Median Dwell Time": 5.0, "Total Spend": 11468.0, "Total Transactions": 474.0, "Total Customers": 375.0, "Median Spend per Transaction": 21.87, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153396, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "Name": "Walmart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9745 Roosevelt Blvd Ste A", "LATITUDE": 40.083037, "LONGITUDE": -75.022233, "DATE_RANGE_START": 2020, "Total Visits": 14526.0, "Total Visitors": 9359.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 22.0, "Total Spend": 331448.0, "Total Transactions": 5830.0, "Total Customers": 3970.0, "Median Spend per Transaction": 35.63, "Median Spend per Customer": 50.75 }, "geometry": { "type": "Point", "coordinates": [ -75.022233, 40.083037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "Name": "Accent On Animals", "Category": "Other Miscellaneous Store Retailers", "Address": "804 South St", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2020, "Total Visits": 669.0, "Total Visitors": 476.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 35.0, "Total Spend": 1364.0, "Total Transactions": 52.0, "Total Customers": 32.0, "Median Spend per Transaction": 18.89, "Median Spend per Customer": 26.37 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-mrk", "Name": "Jerry's Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "129 W Laurel St", "LATITUDE": 39.965113, "LONGITUDE": -75.138904, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 722.0, "Total Spend": 1224.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 42.21, "Median Spend per Customer": 42.66 }, "geometry": { "type": "Point", "coordinates": [ -75.138904, 39.965113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-tsq", "Name": "Pennsport Beer Boutique", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "242 Wharton St", "LATITUDE": 39.931601, "LONGITUDE": -75.149607, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 11.0, "Total Spend": 803.0, "Total Transactions": 38.0, "Total Customers": 36.0, "Median Spend per Transaction": 15.8, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.149607, 39.931601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "Name": "Fishtown Social", "Category": "Restaurants and Other Eating Places", "Address": "1525 Frankford Ave", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 40.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 1.0, "Total Spend": 11304.0, "Total Transactions": 165.0, "Total Customers": 125.0, "Median Spend per Transaction": 57.24, "Median Spend per Customer": 73.12 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfx-kmk", "Name": "Tsaocaa", "Category": "Restaurants and Other Eating Places", "Address": "4415 Main St", "LATITUDE": 40.02624, "LONGITUDE": -75.225272, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 42.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 283.0, "Total Spend": 486.0, "Total Transactions": 34.0, "Total Customers": 34.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225272, 40.02624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "Name": "El Poquito", "Category": "Restaurants and Other Eating Places", "Address": "8201 Germantown Ave", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 48.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 5.0, "Total Spend": 33942.0, "Total Transactions": 478.0, "Total Customers": 429.0, "Median Spend per Transaction": 62.8, "Median Spend per Customer": 69.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "Name": "Bar Bombon", "Category": "Restaurants and Other Eating Places", "Address": "133 S 18th St", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 58.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1224.0, "Total Spend": 20919.0, "Total Transactions": 466.0, "Total Customers": 417.0, "Median Spend per Transaction": 38.48, "Median Spend per Customer": 42.27 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "3901 M St # 29", "LATITUDE": 40.006521, "LONGITUDE": -75.100325, "DATE_RANGE_START": 2020, "Total Visits": 1018.0, "Total Visitors": 673.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 14.0, "Total Spend": 3620.0, "Total Transactions": 105.0, "Total Customers": 66.0, "Median Spend per Transaction": 14.36, "Median Spend per Customer": 26.58 }, "geometry": { "type": "Point", "coordinates": [ -75.100325, 40.006521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "Name": "Harbison Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "5725 Harbison Ave", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2020, "Total Visits": 226.0, "Total Visitors": 123.0, "POI_CBG": 421010321003.0, "Median Dwell Time": 6.0, "Total Spend": 4856.0, "Total Transactions": 155.0, "Total Customers": 117.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-35z", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4641 Chestnut St # 51", "LATITUDE": 39.957614, "LONGITUDE": -75.214932, "DATE_RANGE_START": 2020, "Total Visits": 326.0, "Total Visitors": 252.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 6.0, "Total Spend": 5090.0, "Total Transactions": 236.0, "Total Customers": 129.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214932, 39.957614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5901 Wissahickon Ave", "LATITUDE": 40.02991, "LONGITUDE": -75.186134, "DATE_RANGE_START": 2020, "Total Visits": 2299.0, "Total Visitors": 1469.0, "POI_CBG": 421010239002.0, "Median Dwell Time": 5.0, "Total Spend": 4146.0, "Total Transactions": 193.0, "Total Customers": 109.0, "Median Spend per Transaction": 19.46, "Median Spend per Customer": 32.68 }, "geometry": { "type": "Point", "coordinates": [ -75.186134, 40.02991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pp4-jd9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2685 Frankford Ave", "LATITUDE": 39.986516, "LONGITUDE": -75.12253, "DATE_RANGE_START": 2020, "Total Visits": 977.0, "Total Visitors": 744.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 4.0, "Total Spend": 435.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 19.34, "Median Spend per Customer": 20.06 }, "geometry": { "type": "Point", "coordinates": [ -75.12253, 39.986516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5690 Rising Sun Ave", "LATITUDE": 40.039629, "LONGITUDE": -75.109938, "DATE_RANGE_START": 2020, "Total Visits": 657.0, "Total Visitors": 504.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 4.0, "Total Spend": 12850.0, "Total Transactions": 538.0, "Total Customers": 365.0, "Median Spend per Transaction": 24.15, "Median Spend per Customer": 29.85 }, "geometry": { "type": "Point", "coordinates": [ -75.109938, 40.039629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "143 W Fisher Ave", "LATITUDE": 40.031206, "LONGITUDE": -75.124676, "DATE_RANGE_START": 2020, "Total Visits": 1034.0, "Total Visitors": 717.0, "POI_CBG": 421010286005.0, "Median Dwell Time": 4.0, "Total Spend": 926.0, "Total Transactions": 48.0, "Total Customers": 32.0, "Median Spend per Transaction": 17.81, "Median Spend per Customer": 23.43 }, "geometry": { "type": "Point", "coordinates": [ -75.124676, 40.031206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-mp9", "Name": "Jay Butler", "Category": "Shoe Stores", "Address": "1635 Market St Ste 1600", "LATITUDE": 39.953253, "LONGITUDE": -75.16804, "DATE_RANGE_START": 2020, "Total Visits": 401.0, "Total Visitors": 268.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 147.0, "Total Spend": 85.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16804, 39.953253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "Name": "Journeys", "Category": "Shoe Stores", "Address": "1559 Franklin Mills Cir", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 66.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 16.0, "Total Spend": 6678.0, "Total Transactions": 95.0, "Total Customers": 87.0, "Median Spend per Transaction": 59.99, "Median Spend per Customer": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjj-wzf", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9101 Ridge Ave # 15", "LATITUDE": 40.073365, "LONGITUDE": -75.241949, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 157.0, "POI_CBG": 421010384001.0, "Median Dwell Time": 17.0, "Total Spend": 12812.0, "Total Transactions": 93.0, "Total Customers": 69.0, "Median Spend per Transaction": 63.51, "Median Spend per Customer": 67.37 }, "geometry": { "type": "Point", "coordinates": [ -75.241949, 40.073365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "2417 Welsh Rd", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2020, "Total Visits": 1459.0, "Total Visitors": 907.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 11.0, "Total Spend": 70683.0, "Total Transactions": 1334.0, "Total Customers": 788.0, "Median Spend per Transaction": 31.22, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "Name": "Convenient Food Mart", "Category": "Grocery Stores", "Address": "7101 Frankford Ave", "LATITUDE": 40.034523, "LONGITUDE": -75.044217, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 71.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 7.0, "Total Spend": 8297.0, "Total Transactions": 532.0, "Total Customers": 185.0, "Median Spend per Transaction": 12.6, "Median Spend per Customer": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.044217, 40.034523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvz-2p9", "Name": "Chestnut Deli", "Category": "Grocery Stores", "Address": "4630 Chestnut St", "LATITUDE": 39.956923, "LONGITUDE": -75.214531, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 169.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 7.0, "Total Spend": 165.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214531, 39.956923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-hbk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2121 W Lehigh Ave Ste 5", "LATITUDE": 39.996353, "LONGITUDE": -75.165984, "DATE_RANGE_START": 2020, "Total Visits": 462.0, "Total Visitors": 270.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 17.0, "Total Spend": 531.0, "Total Transactions": 38.0, "Total Customers": 24.0, "Median Spend per Transaction": 13.12, "Median Spend per Customer": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165984, 39.996353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "Name": "Hair Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4160 Monument Rd", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2020, "Total Visits": 3420.0, "Total Visitors": 1917.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 18.0, "Total Spend": 8712.0, "Total Transactions": 270.0, "Total Customers": 246.0, "Median Spend per Transaction": 21.55, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm9-zxq", "Name": "Vintage Julz", "Category": "Used Merchandise Stores", "Address": "625 South St", "LATITUDE": 39.942335, "LONGITUDE": -75.153335, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 73.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 11.0, "Total Spend": 3066.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 507.6, "Median Spend per Customer": 507.6 }, "geometry": { "type": "Point", "coordinates": [ -75.153335, 39.942335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "Name": "George's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 W Girard Ave", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 97.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 11.0, "Total Spend": 1926.0, "Total Transactions": 123.0, "Total Customers": 75.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-vmk", "Name": "E Frank Hopkins", "Category": "Restaurants and Other Eating Places", "Address": "3120 S 3rd St", "LATITUDE": 39.906965, "LONGITUDE": -75.154623, "DATE_RANGE_START": 2020, "Total Visits": 308.0, "Total Visitors": 149.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 168.0, "Total Spend": 1592.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 98.44, "Median Spend per Customer": 98.44 }, "geometry": { "type": "Point", "coordinates": [ -75.154623, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y9z", "Name": "Copabanana", "Category": "Restaurants and Other Eating Places", "Address": "344 South St", "LATITUDE": 39.941497, "LONGITUDE": -75.14907, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 7.0, "Total Spend": 12712.0, "Total Transactions": 329.0, "Total Customers": 250.0, "Median Spend per Transaction": 35.81, "Median Spend per Customer": 40.83 }, "geometry": { "type": "Point", "coordinates": [ -75.14907, 39.941497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "4371 Richmond St", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2020, "Total Visits": 1550.0, "Total Visitors": 705.0, "POI_CBG": 421010183001.0, "Median Dwell Time": 4.0, "Total Spend": 20026.0, "Total Transactions": 2021.0, "Total Customers": 560.0, "Median Spend per Transaction": 8.34, "Median Spend per Customer": 15.89 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-7t9", "Name": "Wawa", "Category": "Grocery Stores", "Address": "10901A Bustleton Ave", "LATITUDE": 40.11156, "LONGITUDE": -75.023472, "DATE_RANGE_START": 2020, "Total Visits": 2201.0, "Total Visitors": 1391.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 3.0, "Total Spend": 1062.0, "Total Transactions": 28.0, "Total Customers": 18.0, "Median Spend per Transaction": 21.97, "Median Spend per Customer": 30.99 }, "geometry": { "type": "Point", "coordinates": [ -75.023472, 40.11156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "Name": "Bloomsday Cafe", "Category": "Restaurants and Other Eating Places", "Address": "414 S 2nd St", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 2.0, "Total Spend": 2543.0, "Total Transactions": 40.0, "Total Customers": 32.0, "Median Spend per Transaction": 58.56, "Median Spend per Customer": 63.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "Name": "El Balconcito", "Category": "Restaurants and Other Eating Places", "Address": "658 E Godfrey Ave", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 145.0, "Total Spend": 2741.0, "Total Transactions": 56.0, "Total Customers": 46.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgd-xdv", "Name": "Smoked and Chopped", "Category": "Specialty Food Stores", "Address": "3300 Fairmount Ave", "LATITUDE": 39.96613, "LONGITUDE": -75.191051, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010109001.0, "Median Dwell Time": 120.0, "Total Spend": 130.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 13.25, "Median Spend per Customer": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.191051, 39.96613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8t-4qf", "Name": "Speedy's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4013 Fairdale Rd", "LATITUDE": 40.084571, "LONGITUDE": -74.972797, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 44.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 277.0, "Total Spend": 567.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 20.25, "Median Spend per Customer": 19.55 }, "geometry": { "type": "Point", "coordinates": [ -74.972797, 40.084571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "Name": "Amada", "Category": "Restaurants and Other Eating Places", "Address": "217 Chestnut St", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 48.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 28.0, "Total Spend": 16693.0, "Total Transactions": 135.0, "Total Customers": 127.0, "Median Spend per Transaction": 98.64, "Median Spend per Customer": 99.28 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pp5-49z", "Name": "Minnow Lane", "Category": "Clothing Stores", "Address": "2029 Frankford Ave", "LATITUDE": 39.97911, "LONGITUDE": -75.129647, "DATE_RANGE_START": 2020, "Total Visits": 214.0, "Total Visitors": 105.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 368.0, "Total Spend": 437.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 110.09, "Median Spend per Customer": 110.09 }, "geometry": { "type": "Point", "coordinates": [ -75.129647, 39.97911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-j35", "Name": "18th Street Apothecary", "Category": "Health and Personal Care Stores", "Address": "113 S 18th St", "LATITUDE": 39.951252, "LONGITUDE": -75.170272, "DATE_RANGE_START": 2020, "Total Visits": 383.0, "Total Visitors": 210.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 469.0, "Total Spend": 243.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170272, 39.951252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2640 E Cumberland St", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2020, "Total Visits": 836.0, "Total Visitors": 554.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 5.0, "Total Spend": 17875.0, "Total Transactions": 788.0, "Total Customers": 518.0, "Median Spend per Transaction": 16.23, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "8828 Frankford Ave", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2020, "Total Visits": 580.0, "Total Visitors": 449.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 7.0, "Total Spend": 2921.0, "Total Transactions": 155.0, "Total Customers": 93.0, "Median Spend per Transaction": 11.27, "Median Spend per Customer": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-wkz", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "2000 S Swanson St", "LATITUDE": 39.922348, "LONGITUDE": -75.146462, "DATE_RANGE_START": 2020, "Total Visits": 1139.0, "Total Visitors": 961.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 16.0, "Total Spend": 12459.0, "Total Transactions": 246.0, "Total Customers": 220.0, "Median Spend per Transaction": 39.48, "Median Spend per Customer": 43.96 }, "geometry": { "type": "Point", "coordinates": [ -75.146462, 39.922348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2419 S 24th St", "LATITUDE": 39.921672, "LONGITUDE": -75.186144, "DATE_RANGE_START": 2020, "Total Visits": 1266.0, "Total Visitors": 983.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 18.0, "Total Spend": 9015.0, "Total Transactions": 197.0, "Total Customers": 159.0, "Median Spend per Transaction": 38.39, "Median Spend per Customer": 40.28 }, "geometry": { "type": "Point", "coordinates": [ -75.186144, 39.921672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p8m-v2k", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6429 Sackett St", "LATITUDE": 40.029763, "LONGITUDE": -75.058989, "DATE_RANGE_START": 2020, "Total Visits": 421.0, "Total Visitors": 349.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 8.0, "Total Spend": 68.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.058989, 40.029763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-pvz", "Name": "Triple Play Sports", "Category": "Clothing Stores", "Address": "827 S 9th St", "LATITUDE": 39.939041, "LONGITUDE": -75.157707, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 359.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 6.0, "Total Spend": 1362.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 62.5, "Median Spend per Customer": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157707, 39.939041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-6tv", "Name": "Eternity Fashion", "Category": "Clothing Stores", "Address": "1410 Chestnut St", "LATITUDE": 39.951034, "LONGITUDE": -75.166595, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 101.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 5.0, "Total Spend": 7841.0, "Total Transactions": 145.0, "Total Customers": 117.0, "Median Spend per Transaction": 44.98, "Median Spend per Customer": 49.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166595, 39.951034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1730 Washington Ave", "LATITUDE": 39.938146, "LONGITUDE": -75.172721, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 93.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 12.0, "Total Spend": 14313.0, "Total Transactions": 290.0, "Total Customers": 246.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 30.76 }, "geometry": { "type": "Point", "coordinates": [ -75.172721, 39.938146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8d-m8v", "Name": "Quicky Mart Express", "Category": "Grocery Stores", "Address": "4346 Frankford Ave", "LATITUDE": 40.012599, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 161.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 14.0, "Total Spend": 2854.0, "Total Transactions": 220.0, "Total Customers": 101.0, "Median Spend per Transaction": 12.2, "Median Spend per Customer": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.012599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-syv", "Name": "Snyder Supermarket", "Category": "Grocery Stores", "Address": "2700 Snyder Ave", "LATITUDE": 39.926819, "LONGITUDE": -75.191169, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 141.0, "POI_CBG": 421010036003.0, "Median Dwell Time": 21.0, "Total Spend": 34.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191169, 39.926819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-y9z", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "3020 Market St", "LATITUDE": 39.954522, "LONGITUDE": -75.184483, "DATE_RANGE_START": 2020, "Total Visits": 1217.0, "Total Visitors": 607.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 264.0, "Total Spend": 8006.0, "Total Transactions": 597.0, "Total Customers": 453.0, "Median Spend per Transaction": 10.97, "Median Spend per Customer": 13.19 }, "geometry": { "type": "Point", "coordinates": [ -75.184483, 39.954522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "Name": "Drury Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1311 Sansom St", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 44.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 39.0, "Total Spend": 9978.0, "Total Transactions": 197.0, "Total Customers": 177.0, "Median Spend per Transaction": 44.81, "Median Spend per Customer": 46.66 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "Name": "Petrovsky Market", "Category": "Specialty Food Stores", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2020, "Total Visits": 927.0, "Total Visitors": 601.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 8.0, "Total Spend": 36175.0, "Total Transactions": 1014.0, "Total Customers": 506.0, "Median Spend per Transaction": 25.48, "Median Spend per Customer": 40.93 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "Name": "Jini Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "1319 Franklin Mills Cir", "LATITUDE": 40.085837, "LONGITUDE": -74.962154, "DATE_RANGE_START": 2020, "Total Visits": 401.0, "Total Visitors": 270.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 34.0, "Total Spend": 1545.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -74.962154, 40.085837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "Name": "Bardot Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "447 Poplar St", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2020, "Total Visits": 266.0, "Total Visitors": 149.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 416.0, "Total Spend": 4719.0, "Total Transactions": 145.0, "Total Customers": 93.0, "Median Spend per Transaction": 29.3, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "Name": "Bok Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "800 Mifflin St", "LATITUDE": 39.925217, "LONGITUDE": -75.160024, "DATE_RANGE_START": 2020, "Total Visits": 570.0, "Total Visitors": 318.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 130.0, "Total Spend": 615.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160024, 39.925217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8f-9xq", "Name": "Leandro's Pizza House", "Category": "Restaurants and Other Eating Places", "Address": "4501 Frankford Ave", "LATITUDE": 40.013813, "LONGITUDE": -75.08597, "DATE_RANGE_START": 2020, "Total Visits": 179.0, "Total Visitors": 157.0, "POI_CBG": 421010294003.0, "Median Dwell Time": 11.0, "Total Spend": 295.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 23.5, "Median Spend per Customer": 20.16 }, "geometry": { "type": "Point", "coordinates": [ -75.08597, 40.013813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "Name": "Asian Chopsticks", "Category": "Restaurants and Other Eating Places", "Address": "4044 Woodhaven Rd", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 75.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 3.0, "Total Spend": 1645.0, "Total Transactions": 62.0, "Total Customers": 54.0, "Median Spend per Transaction": 21.17, "Median Spend per Customer": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "Name": "Real Food Eatery", "Category": "Restaurants and Other Eating Places", "Address": "207 S 16th St", "LATITUDE": 39.949409, "LONGITUDE": -75.167315, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 191.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 165.0, "Total Spend": 453.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 12.37, "Median Spend per Customer": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.167315, 39.949409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "Name": "Vintage Wine Bar", "Category": "Restaurants and Other Eating Places", "Address": "129 S 13th St", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 73.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 5712.0, "Total Transactions": 87.0, "Total Customers": 77.0, "Median Spend per Transaction": 48.78, "Median Spend per Customer": 50.45 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1219 S 9th St", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2020, "Total Visits": 1076.0, "Total Visitors": 998.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 10.0, "Total Spend": 5474.0, "Total Transactions": 329.0, "Total Customers": 314.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "Name": "Soy Cafe", "Category": "Restaurants and Other Eating Places", "Address": "630 N 2nd St", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2020, "Total Visits": 304.0, "Total Visitors": 133.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1368.0, "Total Spend": 2800.0, "Total Transactions": 175.0, "Total Customers": 105.0, "Median Spend per Transaction": 12.86, "Median Spend per Customer": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2020, "Total Visits": 651.0, "Total Visitors": 532.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 10878.0, "Total Transactions": 1693.0, "Total Customers": 715.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 8.39 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "Name": "Little Italy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "901 South St", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 83.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 5.0, "Total Spend": 1376.0, "Total Transactions": 99.0, "Total Customers": 73.0, "Median Spend per Transaction": 13.07, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "Name": "Little Pete's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2401 Pennsylvania Ave", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2020, "Total Visits": 2263.0, "Total Visitors": 967.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 196.0, "Total Spend": 1313.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 48.03, "Median Spend per Customer": 49.48 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-6x5", "Name": "Polka Deli", "Category": "Restaurants and Other Eating Places", "Address": "2719 E Allegheny Ave", "LATITUDE": 39.983781, "LONGITUDE": -75.101812, "DATE_RANGE_START": 2020, "Total Visits": 459.0, "Total Visitors": 193.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 771.0, "Total Spend": 74.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 18.69, "Median Spend per Customer": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.101812, 39.983781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "9970 Bustleton Ave", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2020, "Total Visits": 852.0, "Total Visitors": 669.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 6.0, "Total Spend": 18096.0, "Total Transactions": 1852.0, "Total Customers": 1119.0, "Median Spend per Transaction": 8.24, "Median Spend per Customer": 11.04 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-8y9", "Name": "Dollar Days Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "309 S 48th St", "LATITUDE": 39.952899, "LONGITUDE": -75.218099, "DATE_RANGE_START": 2020, "Total Visits": 335.0, "Total Visitors": 240.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 12.0, "Total Spend": 5083.0, "Total Transactions": 284.0, "Total Customers": 206.0, "Median Spend per Transaction": 14.47, "Median Spend per Customer": 17.09 }, "geometry": { "type": "Point", "coordinates": [ -75.218099, 39.952899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pmb-cwk", "Name": "Sushi Poke", "Category": "Restaurants and Other Eating Places", "Address": "1310 South St", "LATITUDE": 39.943263, "LONGITUDE": -75.163741, "DATE_RANGE_START": 2020, "Total Visits": 200.0, "Total Visitors": 167.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 470.0, "Total Spend": 3476.0, "Total Transactions": 103.0, "Total Customers": 71.0, "Median Spend per Transaction": 30.42, "Median Spend per Customer": 46.28 }, "geometry": { "type": "Point", "coordinates": [ -75.163741, 39.943263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9240 State Rd", "LATITUDE": 40.047033, "LONGITUDE": -74.993404, "DATE_RANGE_START": 2020, "Total Visits": 381.0, "Total Visitors": 224.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 2.0, "Total Spend": 2998.0, "Total Transactions": 417.0, "Total Customers": 250.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -74.993404, 40.047033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "717 E Girard Ave", "LATITUDE": 39.972318, "LONGITUDE": -75.125675, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 93.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 209.0, "Total Spend": 5932.0, "Total Transactions": 830.0, "Total Customers": 359.0, "Median Spend per Transaction": 5.69, "Median Spend per Customer": 8.24 }, "geometry": { "type": "Point", "coordinates": [ -75.125675, 39.972318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "171 W Chelten Ave", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 353.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 3.0, "Total Spend": 375.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 8.55, "Median Spend per Customer": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "Name": "South Square Market", "Category": "Grocery Stores", "Address": "2221 South St", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2020, "Total Visits": 607.0, "Total Visitors": 318.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 10.0, "Total Spend": 101354.0, "Total Transactions": 3358.0, "Total Customers": 1290.0, "Median Spend per Transaction": 20.31, "Median Spend per Customer": 38.16 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3617 Lancaster Ave Fl 1", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 109.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 357.0, "Total Spend": 1110.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 37.26, "Median Spend per Customer": 44.28 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-kvf", "Name": "Long In the Tooth", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2027 Sansom St", "LATITUDE": 39.951536, "LONGITUDE": -75.174727, "DATE_RANGE_START": 2020, "Total Visits": 788.0, "Total Visitors": 484.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 61.0, "Total Spend": 122.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 18.36, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.174727, 39.951536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "Name": "King of Wings", "Category": "Restaurants and Other Eating Places", "Address": "2233 S Woodstock St", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 4.0, "POI_CBG": 421010037021.0, "Median Dwell Time": null, "Total Spend": 160.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 26.94, "Median Spend per Customer": 40.41 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "Name": "Galaxy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1239 Cottman Ave", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010338004.0, "Median Dwell Time": 1.0, "Total Spend": 641.0, "Total Transactions": 32.0, "Total Customers": 26.0, "Median Spend per Transaction": 21.76, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-y7q", "Name": "Siu Kee Duck House", "Category": "Restaurants and Other Eating Places", "Address": "111 N 10th St", "LATITUDE": 39.953918, "LONGITUDE": -75.155876, "DATE_RANGE_START": 2020, "Total Visits": 2451.0, "Total Visitors": 1481.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 201.0, "Total Spend": 259.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 46.44, "Median Spend per Customer": 46.44 }, "geometry": { "type": "Point", "coordinates": [ -75.155876, 39.953918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "Name": "Dannys Wok 3", "Category": "Restaurants and Other Eating Places", "Address": "4322 N Broad St", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2020, "Total Visits": 87.0, "Total Visitors": 81.0, "POI_CBG": 421010204002.0, "Median Dwell Time": 8.0, "Total Spend": 1706.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 38.98 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "Name": "CAVA", "Category": "Restaurants and Other Eating Places", "Address": "1713 Chestnut St", "LATITUDE": 39.95186, "LONGITUDE": -75.16924, "DATE_RANGE_START": 2020, "Total Visits": 155.0, "Total Visitors": 121.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 10.0, "Total Spend": 6838.0, "Total Transactions": 435.0, "Total Customers": 328.0, "Median Spend per Transaction": 12.87, "Median Spend per Customer": 14.37 }, "geometry": { "type": "Point", "coordinates": [ -75.16924, 39.95186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pm9-wc5", "Name": "Scoop DeVille", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949779, "LONGITUDE": -75.148514, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 270.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 28.0, "Total Spend": 1880.0, "Total Transactions": 173.0, "Total Customers": 163.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.63 }, "geometry": { "type": "Point", "coordinates": [ -75.148514, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market Street Concourse", "LATITUDE": 39.952204, "LONGITUDE": -75.166371, "DATE_RANGE_START": 2020, "Total Visits": 4232.0, "Total Visitors": 2656.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 96.0, "Total Spend": 2845.0, "Total Transactions": 522.0, "Total Customers": 167.0, "Median Spend per Transaction": 4.83, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166371, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "Name": "Bourbon & Branch", "Category": "Restaurants and Other Eating Places", "Address": "705 N 2nd St", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 22.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 7.0, "Total Spend": 668.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 44.56, "Median Spend per Customer": 49.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-v75", "Name": "W P Cooke", "Category": "Other Motor Vehicle Dealers", "Address": "4731 N Broad St", "LATITUDE": 40.025446, "LONGITUDE": -75.147136, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010283003.0, "Median Dwell Time": 30.0, "Total Spend": 3029.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 402.06, "Median Spend per Customer": 402.06 }, "geometry": { "type": "Point", "coordinates": [ -75.147136, 40.025446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfy-h3q", "Name": "Mr P Pizza & Pasta", "Category": "Restaurants and Other Eating Places", "Address": "7138 Ridge Ave", "LATITUDE": 40.044177, "LONGITUDE": -75.231987, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 44.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 187.0, "Total Spend": 1223.0, "Total Transactions": 77.0, "Total Customers": 60.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.231987, 40.044177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "Name": "Cook and Shaker", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Albert St", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 50.0, "POI_CBG": 421010160001.0, "Median Dwell Time": 1320.0, "Total Spend": 6922.0, "Total Transactions": 137.0, "Total Customers": 95.0, "Median Spend per Transaction": 43.22, "Median Spend per Customer": 57.07 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@628-pmb-835", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "28 N 11th St", "LATITUDE": 39.95246, "LONGITUDE": -75.158356, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 857.0, "Total Transactions": 36.0, "Total Customers": 24.0, "Median Spend per Transaction": 15.64, "Median Spend per Customer": 24.29 }, "geometry": { "type": "Point", "coordinates": [ -75.158356, 39.95246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "Name": "Mr Sushi", "Category": "Restaurants and Other Eating Places", "Address": "7324 Oxford Ave", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 56.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 3.0, "Total Spend": 7870.0, "Total Transactions": 191.0, "Total Customers": 145.0, "Median Spend per Transaction": 34.51, "Median Spend per Customer": 38.18 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "Name": "Easy Pickins", "Category": "Clothing Stores", "Address": "1207 Chestnut St", "LATITUDE": 39.950651, "LONGITUDE": -75.160672, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 119.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 9.0, "Total Spend": 10974.0, "Total Transactions": 264.0, "Total Customers": 226.0, "Median Spend per Transaction": 29.98, "Median Spend per Customer": 31.47 }, "geometry": { "type": "Point", "coordinates": [ -75.160672, 39.950651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7z-qs5", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "6301 Oxford Ave", "LATITUDE": 40.043867, "LONGITUDE": -75.088282, "DATE_RANGE_START": 2020, "Total Visits": 3867.0, "Total Visitors": 2223.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 21.0, "Total Spend": 720.0, "Total Transactions": 26.0, "Total Customers": 16.0, "Median Spend per Transaction": 21.16, "Median Spend per Customer": 24.6 }, "geometry": { "type": "Point", "coordinates": [ -75.088282, 40.043867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5200 Woodland Ave", "LATITUDE": 39.938259, "LONGITUDE": -75.21557, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 143.0, "POI_CBG": 421010074005.0, "Median Dwell Time": 179.0, "Total Spend": 8714.0, "Total Transactions": 484.0, "Total Customers": 391.0, "Median Spend per Transaction": 15.42, "Median Spend per Customer": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.21557, 39.938259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "3901 Chestnut St", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 195.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 11.0, "Total Spend": 5505.0, "Total Transactions": 252.0, "Total Customers": 224.0, "Median Spend per Transaction": 17.56, "Median Spend per Customer": 19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23h@628-pmf-sqz", "Name": "LUSH", "Category": "Health and Personal Care Stores", "Address": "1525 Walnut St", "LATITUDE": 39.949954, "LONGITUDE": -75.167065, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 137.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 29.0, "Total Spend": 6116.0, "Total Transactions": 195.0, "Total Customers": 179.0, "Median Spend per Transaction": 23.65, "Median Spend per Customer": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167065, 39.949954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "9499 Roosevelt Blvd", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2020, "Total Visits": 1183.0, "Total Visitors": 1052.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 4186.0, "Total Transactions": 212.0, "Total Customers": 183.0, "Median Spend per Transaction": 17.55, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7434 Ogontz Ave", "LATITUDE": 40.068237, "LONGITUDE": -75.156911, "DATE_RANGE_START": 2020, "Total Visits": 2162.0, "Total Visitors": 1522.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 5.0, "Total Spend": 1432.0, "Total Transactions": 62.0, "Total Customers": 52.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156911, 40.068237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "Name": "Gap Factory Store", "Category": "Clothing Stores", "Address": "2123 25 Cottman Avenue Space #40 & 41", "LATITUDE": 40.050036, "LONGITUDE": -75.06262, "DATE_RANGE_START": 2020, "Total Visits": 715.0, "Total Visitors": 619.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 18.0, "Total Spend": 5365.0, "Total Transactions": 73.0, "Total Customers": 66.0, "Median Spend per Transaction": 52.17, "Median Spend per Customer": 64.15 }, "geometry": { "type": "Point", "coordinates": [ -75.06262, 40.050036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-389", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "30 Franklin Mills Blvd", "LATITUDE": 40.084522, "LONGITUDE": -74.967251, "DATE_RANGE_START": 2020, "Total Visits": 294.0, "Total Visitors": 222.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 39.0, "Total Spend": 5084.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 510.62, "Median Spend per Customer": 510.62 }, "geometry": { "type": "Point", "coordinates": [ -74.967251, 40.084522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1700 Washington Ave", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 264.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 6.0, "Total Spend": 3145.0, "Total Transactions": 381.0, "Total Customers": 220.0, "Median Spend per Transaction": 5.95, "Median Spend per Customer": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1190 E Luzerne St", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 125.0, "POI_CBG": 421010191003.0, "Median Dwell Time": 2.0, "Total Spend": 162.0, "Total Transactions": 28.0, "Total Customers": 8.0, "Median Spend per Transaction": 4.23, "Median Spend per Customer": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3724 Spruce St # 3744", "LATITUDE": 39.950972, "LONGITUDE": -75.198395, "DATE_RANGE_START": 2020, "Total Visits": 1290.0, "Total Visitors": 838.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 10.0, "Total Spend": 34940.0, "Total Transactions": 4071.0, "Total Customers": 1860.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 10.74 }, "geometry": { "type": "Point", "coordinates": [ -75.198395, 39.950972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-xkf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4500 Baltimore Ave", "LATITUDE": 39.94872, "LONGITUDE": -75.21312, "DATE_RANGE_START": 2020, "Total Visits": 2199.0, "Total Visitors": 1423.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 5.0, "Total Spend": 2488.0, "Total Transactions": 129.0, "Total Customers": 75.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 30.04 }, "geometry": { "type": "Point", "coordinates": [ -75.21312, 39.94872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-92k", "Name": "Kate Spade", "Category": "Clothing Stores", "Address": "901 Market St Unit 1065", "LATITUDE": 39.952238, "LONGITUDE": -75.155945, "DATE_RANGE_START": 2020, "Total Visits": 464.0, "Total Visitors": 357.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 35.0, "Total Spend": 3171.0, "Total Transactions": 34.0, "Total Customers": 34.0, "Median Spend per Transaction": 68.77, "Median Spend per Customer": 68.77 }, "geometry": { "type": "Point", "coordinates": [ -75.155945, 39.952238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm9-t7q", "Name": "Harry Merrill & Son", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "124 S 8th St", "LATITUDE": 39.94877, "LONGITUDE": -75.154332, "DATE_RANGE_START": 2020, "Total Visits": 1665.0, "Total Visitors": 1229.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 189.0, "Total Spend": 407.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 102.6, "Median Spend per Customer": 102.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154332, 39.94877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "301 W Chelten Ave Ste F", "LATITUDE": 40.030538, "LONGITUDE": -75.181434, "DATE_RANGE_START": 2020, "Total Visits": 260.0, "Total Visitors": 222.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 11.0, "Total Spend": 4329.0, "Total Transactions": 304.0, "Total Customers": 202.0, "Median Spend per Transaction": 8.72, "Median Spend per Customer": 13.08 }, "geometry": { "type": "Point", "coordinates": [ -75.181434, 40.030538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "52 E Jefferson St", "LATITUDE": 39.97281, "LONGITUDE": -75.134837, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 252.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 51.0, "Total Spend": 11374.0, "Total Transactions": 1048.0, "Total Customers": 707.0, "Median Spend per Transaction": 9.14, "Median Spend per Customer": 10.84 }, "geometry": { "type": "Point", "coordinates": [ -75.134837, 39.97281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "Name": "Cottman Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "7544 Frankford Ave", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2020, "Total Visits": 298.0, "Total Visitors": 218.0, "POI_CBG": 421010331013.0, "Median Dwell Time": 2.0, "Total Spend": 7086.0, "Total Transactions": 276.0, "Total Customers": 165.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 33.2 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-zzz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1315 E Washington Ln", "LATITUDE": 40.058549, "LONGITUDE": -75.166373, "DATE_RANGE_START": 2020, "Total Visits": 411.0, "Total Visitors": 298.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 7.0, "Total Spend": 2172.0, "Total Transactions": 111.0, "Total Customers": 85.0, "Median Spend per Transaction": 13.31, "Median Spend per Customer": 17.73 }, "geometry": { "type": "Point", "coordinates": [ -75.166373, 40.058549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvx-jd9", "Name": "Song's Capital Discount", "Category": "Health and Personal Care Stores", "Address": "1237 N 52nd St", "LATITUDE": 39.972561, "LONGITUDE": -75.225887, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 89.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 23.0, "Total Spend": 503.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 51.71, "Median Spend per Customer": 51.71 }, "geometry": { "type": "Point", "coordinates": [ -75.225887, 39.972561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "Name": "Beauty Point", "Category": "Health and Personal Care Stores", "Address": "5610 Lancaster Ave", "LATITUDE": 39.980086, "LONGITUDE": -75.235032, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 97.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 11.0, "Total Spend": 5131.0, "Total Transactions": 135.0, "Total Customers": 113.0, "Median Spend per Transaction": 24.81, "Median Spend per Customer": 33.44 }, "geometry": { "type": "Point", "coordinates": [ -75.235032, 39.980086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-wkz", "Name": "rue21", "Category": "Clothing Stores", "Address": "1259 Franklin Mills Cir", "LATITUDE": 40.088728, "LONGITUDE": -74.961198, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 93.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 574533.0, "Total Transactions": 10943.0, "Total Customers": 9919.0, "Median Spend per Transaction": 40.19, "Median Spend per Customer": 43.78 }, "geometry": { "type": "Point", "coordinates": [ -74.961198, 40.088728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phz-2c5", "Name": "New Supermarket", "Category": "Restaurants and Other Eating Places", "Address": "4764 Rorer St", "LATITUDE": 40.021812, "LONGITUDE": -75.114561, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 30.0, "POI_CBG": 421010289022.0, "Median Dwell Time": 254.0, "Total Spend": 484.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 121.88, "Median Spend per Customer": 121.88 }, "geometry": { "type": "Point", "coordinates": [ -75.114561, 40.021812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-y5f", "Name": "Haagen Dazs", "Category": "Restaurants and Other Eating Places", "Address": "242 South St", "LATITUDE": 39.941281, "LONGITUDE": -75.147232, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 1.0, "Total Spend": 3191.0, "Total Transactions": 286.0, "Total Customers": 256.0, "Median Spend per Transaction": 8.95, "Median Spend per Customer": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.147232, 39.941281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "Name": "Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1309 Sansom St", "LATITUDE": 39.95002, "LONGITUDE": -75.162328, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 14.0, "Total Spend": 47508.0, "Total Transactions": 826.0, "Total Customers": 715.0, "Median Spend per Transaction": 38.14, "Median Spend per Customer": 42.79 }, "geometry": { "type": "Point", "coordinates": [ -75.162328, 39.95002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pjf-kvf", "Name": "The Bone Appetite", "Category": "Other Miscellaneous Store Retailers", "Address": "8517 Germantown Ave", "LATITUDE": 40.076504, "LONGITUDE": -75.206829, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 38.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 279.0, "Total Spend": 5402.0, "Total Transactions": 93.0, "Total Customers": 83.0, "Median Spend per Transaction": 44.67, "Median Spend per Customer": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206829, 40.076504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-gzf", "Name": "Romano Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4712 N 5th St", "LATITUDE": 40.023038, "LONGITUDE": -75.133728, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 55.0, "Total Spend": 5351.0, "Total Transactions": 34.0, "Total Customers": 34.0, "Median Spend per Transaction": 75.0, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133728, 40.023038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8045 Frankford Ave Ste 1", "LATITUDE": 40.041766, "LONGITUDE": -75.026083, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 159.0, "POI_CBG": 421010329001.0, "Median Dwell Time": 8.0, "Total Spend": 568.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 12.03, "Median Spend per Customer": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.026083, 40.041766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm8-kxq", "Name": "NBC Sports Arena", "Category": "Restaurants and Other Eating Places", "Address": "1100 Pattison Ave", "LATITUDE": 39.904477, "LONGITUDE": -75.169135, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 111.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 6.0, "Total Spend": 2932.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 66.85, "Median Spend per Customer": 66.85 }, "geometry": { "type": "Point", "coordinates": [ -75.169135, 39.904477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-225@628-p8m-vs5", "Name": "Wholesale Direct Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6410 Frankford Ave", "LATITUDE": 40.029181, "LONGITUDE": -75.05776, "DATE_RANGE_START": 2020, "Total Visits": 1516.0, "Total Visitors": 1024.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 29.0, "Total Spend": 7673.0, "Total Transactions": 169.0, "Total Customers": 123.0, "Median Spend per Transaction": 31.19, "Median Spend per Customer": 36.91 }, "geometry": { "type": "Point", "coordinates": [ -75.05776, 40.029181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "Name": "Grossman Furniture", "Category": "Furniture Stores", "Address": "206 Arch St", "LATITUDE": 39.951777, "LONGITUDE": -75.14359, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 153.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 78.0, "Total Spend": 3877.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 286.2, "Median Spend per Customer": 976.66 }, "geometry": { "type": "Point", "coordinates": [ -75.14359, 39.951777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "Name": "C Town Supermarkets", "Category": "Grocery Stores", "Address": "2438 W Lehigh Ave", "LATITUDE": 39.99594, "LONGITUDE": -75.172136, "DATE_RANGE_START": 2020, "Total Visits": 216.0, "Total Visitors": 123.0, "POI_CBG": 421010169011.0, "Median Dwell Time": 11.0, "Total Spend": 1005.0, "Total Transactions": 81.0, "Total Customers": 38.0, "Median Spend per Transaction": 10.14, "Median Spend per Customer": 19.37 }, "geometry": { "type": "Point", "coordinates": [ -75.172136, 39.99594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "Name": "Royal Farms", "Category": "Grocery Stores", "Address": "2501 Church St", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2020, "Total Visits": 1155.0, "Total Visitors": 816.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 8.0, "Total Spend": 43347.0, "Total Transactions": 2566.0, "Total Customers": 1219.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 20.16 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "Name": "Suburban Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10875 Bustleton Ave", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 171.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 5.0, "Total Spend": 144.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 9.73, "Median Spend per Customer": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-225@628-pjf-j7q", "Name": "All The Way Live", "Category": "Restaurants and Other Eating Places", "Address": "8419 Germantown Ave", "LATITUDE": 40.075711, "LONGITUDE": -75.205375, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 30.0, "Total Spend": 699.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 30.74, "Median Spend per Customer": 29.06 }, "geometry": { "type": "Point", "coordinates": [ -75.205375, 40.075711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "Name": "American Sardine Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1800 Federal St", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 285.0, "Total Spend": 824.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 42.38, "Median Spend per Customer": 48.66 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "Name": "Davis Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4523 Baltimore Ave", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 32.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 22.0, "Total Spend": 1754.0, "Total Transactions": 77.0, "Total Customers": 69.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.78 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pjf-kvf", "Name": "Hideaway Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "8232 Germantown Ave", "LATITUDE": 40.076825, "LONGITUDE": -75.208128, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 32.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 212.0, "Total Spend": 1632.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208128, 40.076825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmb-grk", "Name": "Yellowtail", "Category": "Restaurants and Other Eating Places", "Address": "1218 Pine St", "LATITUDE": 39.945044, "LONGITUDE": -75.161951, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 34.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 825.0, "Total Spend": 3222.0, "Total Transactions": 81.0, "Total Customers": 66.0, "Median Spend per Transaction": 38.37, "Median Spend per Customer": 38.37 }, "geometry": { "type": "Point", "coordinates": [ -75.161951, 39.945044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "Name": "Crash Bang Boom", "Category": "Clothing Stores", "Address": "528 S 4th St", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2020, "Total Visits": 464.0, "Total Visitors": 437.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 5.0, "Total Spend": 94.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 23.6, "Median Spend per Customer": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j9z", "Name": "Lovesac", "Category": "Furniture Stores", "Address": "1724 Walnut St", "LATITUDE": 39.949786, "LONGITUDE": -75.170367, "DATE_RANGE_START": 2020, "Total Visits": 899.0, "Total Visitors": 457.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 200.0, "Total Spend": 13114.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 688.5, "Median Spend per Customer": 3303.43 }, "geometry": { "type": "Point", "coordinates": [ -75.170367, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7236 Germantown Ave # 40", "LATITUDE": 40.060844, "LONGITUDE": -75.192031, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 343.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 3.0, "Total Spend": 45260.0, "Total Transactions": 3716.0, "Total Customers": 1874.0, "Median Spend per Transaction": 8.15, "Median Spend per Customer": 12.25 }, "geometry": { "type": "Point", "coordinates": [ -75.192031, 40.060844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "15500 Bustleton Ave", "LATITUDE": 40.134399, "LONGITUDE": -75.01003, "DATE_RANGE_START": 2020, "Total Visits": 780.0, "Total Visitors": 572.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 5.0, "Total Spend": 4920.0, "Total Transactions": 187.0, "Total Customers": 107.0, "Median Spend per Transaction": 15.86, "Median Spend per Customer": 27.82 }, "geometry": { "type": "Point", "coordinates": [ -75.01003, 40.134399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7616 City Line Avenue Route 1 & 76th St", "LATITUDE": 39.978487, "LONGITUDE": -75.271145, "DATE_RANGE_START": 2020, "Total Visits": 433.0, "Total Visitors": 371.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 15.0, "Total Spend": 17009.0, "Total Transactions": 312.0, "Total Customers": 280.0, "Median Spend per Transaction": 39.54, "Median Spend per Customer": 40.02 }, "geometry": { "type": "Point", "coordinates": [ -75.271145, 39.978487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "Name": "Pizza & Steak Master", "Category": "Restaurants and Other Eating Places", "Address": "6627 Chew Ave", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 12.0, "POI_CBG": 421010253001.0, "Median Dwell Time": 1227.0, "Total Spend": 455.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 17.06, "Median Spend per Customer": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-z75", "Name": "LL Flooring", "Category": "Home Furnishings Stores", "Address": "10500 Roosevelt Blvd", "LATITUDE": 40.099015, "LONGITUDE": -75.011125, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 17.0, "Total Spend": 25640.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 658.88, "Median Spend per Customer": 811.8 }, "geometry": { "type": "Point", "coordinates": [ -75.011125, 40.099015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "Name": "The Plough & the Stars", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 50.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 89.0, "Total Spend": 1266.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 61.38, "Median Spend per Customer": 62.24 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnx-c89", "Name": "Lokal Hotel", "Category": "Traveler Accommodation", "Address": "1421 N Front St", "LATITUDE": 39.972336, "LONGITUDE": -75.134776, "DATE_RANGE_START": 2020, "Total Visits": 453.0, "Total Visitors": 252.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 51.0, "Total Spend": 1009.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 254.24, "Median Spend per Customer": 254.24 }, "geometry": { "type": "Point", "coordinates": [ -75.134776, 39.972336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmb-gzf", "Name": "Cloud Factory Hookah Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1201 Spruce St", "LATITUDE": 39.946776, "LONGITUDE": -75.161155, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 75.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 243.0, "Total Spend": 170.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 22.65, "Median Spend per Customer": 24.78 }, "geometry": { "type": "Point", "coordinates": [ -75.161155, 39.946776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-5xq", "Name": "Liberty Choice", "Category": "Restaurants and Other Eating Places", "Address": "1939 N Front St", "LATITUDE": 39.979685, "LONGITUDE": -75.132953, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 67.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 9.0, "Total Spend": 14502.0, "Total Transactions": 911.0, "Total Customers": 413.0, "Median Spend per Transaction": 12.74, "Median Spend per Customer": 21.77 }, "geometry": { "type": "Point", "coordinates": [ -75.132953, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-3wk", "Name": "Cavanaughs Headhouse", "Category": "Restaurants and Other Eating Places", "Address": "421 S 2nd St", "LATITUDE": 39.942292, "LONGITUDE": -75.144972, "DATE_RANGE_START": 2020, "Total Visits": 504.0, "Total Visitors": 367.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 5.0, "Total Spend": 10118.0, "Total Transactions": 183.0, "Total Customers": 139.0, "Median Spend per Transaction": 48.74, "Median Spend per Customer": 45.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 39.942292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6543 Roosevelt Blvd Unit 18A", "LATITUDE": 40.034799, "LONGITUDE": -75.06613, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 115.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 263.0, "Total Spend": 3903.0, "Total Transactions": 147.0, "Total Customers": 117.0, "Median Spend per Transaction": 26.04, "Median Spend per Customer": 26.13 }, "geometry": { "type": "Point", "coordinates": [ -75.06613, 40.034799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2340 W Oregon Ave", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2020, "Total Visits": 534.0, "Total Visitors": 468.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 1584.0, "Total Transactions": 97.0, "Total Customers": 66.0, "Median Spend per Transaction": 14.49, "Median Spend per Customer": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "Name": "DJ Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4040 City Ave", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2020, "Total Visits": 679.0, "Total Visitors": 542.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 19.0, "Total Spend": 3432.0, "Total Transactions": 81.0, "Total Customers": 60.0, "Median Spend per Transaction": 38.68, "Median Spend per Customer": 41.96 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "Name": "Thai Singha House", "Category": "Restaurants and Other Eating Places", "Address": "3906B Chestnut St", "LATITUDE": 39.95527, "LONGITUDE": -75.20037, "DATE_RANGE_START": 2020, "Total Visits": 1129.0, "Total Visitors": 635.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 355.0, "Total Spend": 310.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 28.87, "Median Spend per Customer": 28.87 }, "geometry": { "type": "Point", "coordinates": [ -75.20037, 39.95527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp4-syv", "Name": "Memphis Market & Grill", "Category": "Restaurants and Other Eating Places", "Address": "2327 E Huntingdon St", "LATITUDE": 39.98172, "LONGITUDE": -75.120871, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 81.0, "POI_CBG": 421010160001.0, "Median Dwell Time": 7.0, "Total Spend": 1541.0, "Total Transactions": 147.0, "Total Customers": 71.0, "Median Spend per Transaction": 9.3, "Median Spend per Customer": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.120871, 39.98172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5733 N Broad St", "LATITUDE": 40.040654, "LONGITUDE": -75.144015, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 117.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 31.0, "Total Spend": 7100.0, "Total Transactions": 272.0, "Total Customers": 185.0, "Median Spend per Transaction": 24.57, "Median Spend per Customer": 31.38 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.040654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "401 N 21st St", "LATITUDE": 39.962306, "LONGITUDE": -75.172957, "DATE_RANGE_START": 2020, "Total Visits": 270.0, "Total Visitors": 200.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 6.0, "Total Spend": 19754.0, "Total Transactions": 780.0, "Total Customers": 619.0, "Median Spend per Transaction": 22.86, "Median Spend per Customer": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.172957, 39.962306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "Name": "Checkers Drive-In Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "3500 Aramingo Ave", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2020, "Total Visits": 155.0, "Total Visitors": 129.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 7.0, "Total Spend": 5485.0, "Total Transactions": 367.0, "Total Customers": 310.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 15.38 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2201 Penrose Ave", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 337.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 2.0, "Total Spend": 12135.0, "Total Transactions": 1834.0, "Total Customers": 744.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "551 Franklin Mills Cir", "LATITUDE": 40.089385, "LONGITUDE": -74.964383, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 232.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 4508.0, "Total Transactions": 643.0, "Total Customers": 381.0, "Median Spend per Transaction": 5.7, "Median Spend per Customer": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -74.964383, 40.089385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-tgk", "Name": "Phoenix Cafe", "Category": "Restaurants and Other Eating Places", "Address": "861 E Allegheny Ave", "LATITUDE": 39.996785, "LONGITUDE": -75.113541, "DATE_RANGE_START": 2020, "Total Visits": 1237.0, "Total Visitors": 901.0, "POI_CBG": 421010177012.0, "Median Dwell Time": 109.0, "Total Spend": 79.0, "Total Transactions": 20.0, "Total Customers": 4.0, "Median Spend per Transaction": 3.23, "Median Spend per Customer": 19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113541, 39.996785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4501 Castor Ave", "LATITUDE": 40.016586, "LONGITUDE": -75.096388, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 193.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 5.0, "Total Spend": 5051.0, "Total Transactions": 298.0, "Total Customers": 250.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.096388, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pm5-bzf", "Name": "Mr Wish USA", "Category": "Restaurants and Other Eating Places", "Address": "320 W Oregon Ave", "LATITUDE": 39.912953, "LONGITUDE": -75.153917, "DATE_RANGE_START": 2020, "Total Visits": 171.0, "Total Visitors": 163.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 13.0, "Total Spend": 382.0, "Total Transactions": 52.0, "Total Customers": 52.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.912953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "8515 Germantown Ave", "LATITUDE": 40.076409, "LONGITUDE": -75.206721, "DATE_RANGE_START": 2020, "Total Visits": 149.0, "Total Visitors": 99.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 4.0, "Total Spend": 2669.0, "Total Transactions": 292.0, "Total Customers": 197.0, "Median Spend per Transaction": 7.45, "Median Spend per Customer": 9.07 }, "geometry": { "type": "Point", "coordinates": [ -75.206721, 40.076409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-rc5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2545 Aramingo Ave Ste 80", "LATITUDE": 39.977844, "LONGITUDE": -75.118479, "DATE_RANGE_START": 2020, "Total Visits": 1391.0, "Total Visitors": 967.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 9.0, "Total Spend": 8165.0, "Total Transactions": 415.0, "Total Customers": 234.0, "Median Spend per Transaction": 13.64, "Median Spend per Customer": 23.44 }, "geometry": { "type": "Point", "coordinates": [ -75.118479, 39.977844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2014 S Broad St", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2020, "Total Visits": 1572.0, "Total Visitors": 897.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 14.0, "Total Spend": 5645.0, "Total Transactions": 280.0, "Total Customers": 187.0, "Median Spend per Transaction": 15.64, "Median Spend per Customer": 21.54 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "Name": "Tony's Luke", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 16.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 10.0, "Total Spend": 6802.0, "Total Transactions": 296.0, "Total Customers": 274.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "Name": "China Royal", "Category": "Restaurants and Other Eating Places", "Address": "2620 Rhawn St", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 28.0, "POI_CBG": 421010333003.0, "Median Dwell Time": 14.0, "Total Spend": 1657.0, "Total Transactions": 60.0, "Total Customers": 52.0, "Median Spend per Transaction": 29.95, "Median Spend per Customer": 29.95 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "Name": "Uncle Oogie's", "Category": "Restaurants and Other Eating Places", "Address": "36 Snyder Ave", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 4325.0, "Total Transactions": 208.0, "Total Customers": 129.0, "Median Spend per Transaction": 13.26, "Median Spend per Customer": 28.16 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "3914 Lancaster Ave", "LATITUDE": 39.962152, "LONGITUDE": -75.2011, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010108004.0, "Median Dwell Time": null, "Total Spend": 134.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 6.55 }, "geometry": { "type": "Point", "coordinates": [ -75.2011, 39.962152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "848 S 2nd St", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010017001.0, "Median Dwell Time": 9.0, "Total Spend": 8320.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 312.12, "Median Spend per Customer": 237.06 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "Name": "Platinum", "Category": "Clothing Stores", "Address": "526 South St", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 1.0, "Total Spend": 11564.0, "Total Transactions": 40.0, "Total Customers": 40.0, "Median Spend per Transaction": 234.0, "Median Spend per Customer": 234.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmc-vzz", "Name": "Chopstick House", "Category": "Restaurants and Other Eating Places", "Address": "1626 S Columbus Blvd", "LATITUDE": 39.926547, "LONGITUDE": -75.14612, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 56.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 1.0, "Total Spend": 1994.0, "Total Transactions": 77.0, "Total Customers": 67.0, "Median Spend per Transaction": 24.65, "Median Spend per Customer": 25.13 }, "geometry": { "type": "Point", "coordinates": [ -75.14612, 39.926547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm9-yd9", "Name": "Famous 4th Street Delicatessen", "Category": "Restaurants and Other Eating Places", "Address": "700 S 4th St", "LATITUDE": 39.940489, "LONGITUDE": -75.149633, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 62.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 7.0, "Total Spend": 11160.0, "Total Transactions": 345.0, "Total Customers": 294.0, "Median Spend per Transaction": 24.74, "Median Spend per Customer": 26.33 }, "geometry": { "type": "Point", "coordinates": [ -75.149633, 39.940489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "Name": "Varga Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "941 Spruce St", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 83.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 2.0, "Total Spend": 7650.0, "Total Transactions": 127.0, "Total Customers": 109.0, "Median Spend per Transaction": 45.31, "Median Spend per Customer": 48.08 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5zz", "Name": "Top Tomato Pizza Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1107 Walnut St", "LATITUDE": 39.948971, "LONGITUDE": -75.159389, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 93.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 123.0, "Total Spend": 6811.0, "Total Transactions": 230.0, "Total Customers": 179.0, "Median Spend per Transaction": 22.06, "Median Spend per Customer": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159389, 39.948971 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "Name": "Cafe Saigon", "Category": "Restaurants and Other Eating Places", "Address": "827 Adams Ave", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 222.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 11.0, "Total Spend": 3082.0, "Total Transactions": 97.0, "Total Customers": 77.0, "Median Spend per Transaction": 27.54, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "51 Bethlehem Pike", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2020, "Total Visits": 139.0, "Total Visitors": 73.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 62.0, "Total Spend": 1624.0, "Total Transactions": 99.0, "Total Customers": 93.0, "Median Spend per Transaction": 13.85, "Median Spend per Customer": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfy-zfz", "Name": "The Rook Manayunk", "Category": "Restaurants and Other Eating Places", "Address": "4001 Cresson St", "LATITUDE": 40.021721, "LONGITUDE": -75.215726, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 99.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 51.0, "Total Spend": 13323.0, "Total Transactions": 230.0, "Total Customers": 177.0, "Median Spend per Transaction": 47.46, "Median Spend per Customer": 52.9 }, "geometry": { "type": "Point", "coordinates": [ -75.215726, 40.021721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "1200 N Broad St", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 252.0, "POI_CBG": 421010140001.0, "Median Dwell Time": 4.0, "Total Spend": 661.0, "Total Transactions": 44.0, "Total Customers": 40.0, "Median Spend per Transaction": 10.16, "Median Spend per Customer": 10.86 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phk-yvz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "440 W Cheltenham Ave", "LATITUDE": 40.054755, "LONGITUDE": -75.125732, "DATE_RANGE_START": 2020, "Total Visits": 1266.0, "Total Visitors": 895.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 5.0, "Total Spend": 1065.0, "Total Transactions": 54.0, "Total Customers": 36.0, "Median Spend per Transaction": 12.52, "Median Spend per Customer": 26.13 }, "geometry": { "type": "Point", "coordinates": [ -75.125732, 40.054755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "630 Walnut Ln", "LATITUDE": 40.028872, "LONGITUDE": -75.206199, "DATE_RANGE_START": 2020, "Total Visits": 2171.0, "Total Visitors": 1624.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 5.0, "Total Spend": 5914.0, "Total Transactions": 200.0, "Total Customers": 155.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 27.17 }, "geometry": { "type": "Point", "coordinates": [ -75.206199, 40.028872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "Name": "Kohl's", "Category": "Department Stores", "Address": "8500 Henry Ave", "LATITUDE": 40.062537, "LONGITUDE": -75.235162, "DATE_RANGE_START": 2020, "Total Visits": 1334.0, "Total Visitors": 998.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 21.0, "Total Spend": 43107.0, "Total Transactions": 719.0, "Total Customers": 544.0, "Median Spend per Transaction": 43.19, "Median Spend per Customer": 52.24 }, "geometry": { "type": "Point", "coordinates": [ -75.235162, 40.062537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2500 Wharton St", "LATITUDE": 39.935654, "LONGITUDE": -75.186436, "DATE_RANGE_START": 2020, "Total Visits": 173.0, "Total Visitors": 101.0, "POI_CBG": 421010032004.0, "Median Dwell Time": 331.0, "Total Spend": 326.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 5.94, "Median Spend per Customer": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.186436, 39.935654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7620 Lindbergh Blvd Ste B", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 349.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 9.0, "Total Spend": 315.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1600 E Wadsworth Ave Ste B", "LATITUDE": 40.080365, "LONGITUDE": -75.171922, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 151.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 7.0, "Total Spend": 1984.0, "Total Transactions": 177.0, "Total Customers": 157.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.171922, 40.080365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "11500 Roosevelt Blvd", "LATITUDE": 40.104996, "LONGITUDE": -75.007889, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 38.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 448.0, "Total Spend": 98688.0, "Total Transactions": 117.0, "Total Customers": 26.0, "Median Spend per Transaction": 446.04, "Median Spend per Customer": 927.74 }, "geometry": { "type": "Point", "coordinates": [ -75.007889, 40.104996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8j-cyv", "Name": "Apex Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7200 Frankford Ave", "LATITUDE": 40.035775, "LONGITUDE": -75.04334, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 5.0, "Total Spend": 677.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 44.5, "Median Spend per Customer": 44.5 }, "geometry": { "type": "Point", "coordinates": [ -75.04334, 40.035775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-rzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895169, "LONGITUDE": -75.227984, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 314.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 13.47, "Median Spend per Customer": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.227984, 39.895169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9q-ht9", "Name": "Bubbakoo's Burritos", "Category": "Restaurants and Other Eating Places", "Address": "2550 Grant Ave", "LATITUDE": 40.078769, "LONGITUDE": -75.027229, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 2621.0, "Total Transactions": 141.0, "Total Customers": 111.0, "Median Spend per Transaction": 16.99, "Median Spend per Customer": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.027229, 40.078769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "Name": "Hibiscus Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4907 Catharine St", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 7.0, "Total Spend": 3430.0, "Total Transactions": 165.0, "Total Customers": 117.0, "Median Spend per Transaction": 17.81, "Median Spend per Customer": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pp4-zxq", "Name": "M R Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2510 N Front St", "LATITUDE": 39.988165, "LONGITUDE": -75.131689, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010163003.0, "Median Dwell Time": 28.0, "Total Spend": 973.0, "Total Transactions": 54.0, "Total Customers": 52.0, "Median Spend per Transaction": 8.76, "Median Spend per Customer": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.131689, 39.988165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pm3-vpv", "Name": "Flannel", "Category": "Restaurants and Other Eating Places", "Address": "1819 E Passyunk Ave", "LATITUDE": 39.927129, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 32.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 398.0, "Total Spend": 1178.0, "Total Transactions": 34.0, "Total Customers": 20.0, "Median Spend per Transaction": 20.28, "Median Spend per Customer": 26.24 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.927129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm3-zpv", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "2354 S 7th St", "LATITUDE": 39.919286, "LONGITUDE": -75.159152, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010041021.0, "Median Dwell Time": 2.0, "Total Spend": 117.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 16.09, "Median Spend per Customer": 16.09 }, "geometry": { "type": "Point", "coordinates": [ -75.159152, 39.919286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-m49", "Name": "Lincoln Chicken & Burger", "Category": "Restaurants and Other Eating Places", "Address": "801 E Chelten Ave", "LATITUDE": 40.045702, "LONGITUDE": -75.164907, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010248002.0, "Median Dwell Time": 3.0, "Total Spend": 40.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 8.37, "Median Spend per Customer": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.164907, 40.045702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pfz-bzf", "Name": "Gary Mann Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4349 Main St", "LATITUDE": 40.025665, "LONGITUDE": -75.223674, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 4.0, "Total Spend": 257.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 64.8, "Median Spend per Customer": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223674, 40.025665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-223@628-p7x-7dv", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "2060 Cottman Ave", "LATITUDE": 40.050189, "LONGITUDE": -75.064815, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 71.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 11.0, "Total Spend": 124.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.064815, 40.050189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "4700 N 15th St", "LATITUDE": 40.025459, "LONGITUDE": -75.149625, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 95.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 8.0, "Total Spend": 355.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 8.05, "Median Spend per Customer": 8.35 }, "geometry": { "type": "Point", "coordinates": [ -75.149625, 40.025459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "Name": "Greene Street", "Category": "Clothing Stores", "Address": "8524 Germantown Ave", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2020, "Total Visits": 286.0, "Total Visitors": 218.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 21.0, "Total Spend": 5259.0, "Total Transactions": 95.0, "Total Customers": 85.0, "Median Spend per Transaction": 38.04, "Median Spend per Customer": 37.07 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-y5f", "Name": "ALDI", "Category": "Grocery Stores", "Address": "9303 Krewstown Rd", "LATITUDE": 40.085283, "LONGITUDE": -75.045679, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 258.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 5.0, "Total Spend": 209.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.045679, 40.085283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "Name": "Somerset Splits", "Category": "Restaurants and Other Eating Places", "Address": "2600 E Somerset St", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 14.0, "POI_CBG": 421010180013.0, "Median Dwell Time": 4.0, "Total Spend": 1761.0, "Total Transactions": 149.0, "Total Customers": 115.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6401 Oxford Ave Ste 11", "LATITUDE": 40.045558, "LONGITUDE": -75.087582, "DATE_RANGE_START": 2020, "Total Visits": 818.0, "Total Visitors": 540.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 21.0, "Total Spend": 3228.0, "Total Transactions": 159.0, "Total Customers": 117.0, "Median Spend per Transaction": 15.37, "Median Spend per Customer": 21.48 }, "geometry": { "type": "Point", "coordinates": [ -75.087582, 40.045558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6240 Germantown Ave", "LATITUDE": 40.042819, "LONGITUDE": -75.181027, "DATE_RANGE_START": 2020, "Total Visits": 1596.0, "Total Visitors": 931.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 6.0, "Total Spend": 1180.0, "Total Transactions": 67.0, "Total Customers": 50.0, "Median Spend per Transaction": 15.28, "Median Spend per Customer": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.181027, 40.042819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "301 S 52nd St", "LATITUDE": 39.9542, "LONGITUDE": -75.225712, "DATE_RANGE_START": 2020, "Total Visits": 1683.0, "Total Visitors": 1084.0, "POI_CBG": 421010085003.0, "Median Dwell Time": 5.0, "Total Spend": 921.0, "Total Transactions": 48.0, "Total Customers": 40.0, "Median Spend per Transaction": 16.12, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225712, 39.9542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-vvf", "Name": "Steve Madden", "Category": "Shoe Stores", "Address": "1455 Franklin Mills Cir Spc 155", "LATITUDE": 40.089544, "LONGITUDE": -74.961668, "DATE_RANGE_START": 2020, "Total Visits": 353.0, "Total Visitors": 339.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 402.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 59.96, "Median Spend per Customer": 59.96 }, "geometry": { "type": "Point", "coordinates": [ -74.961668, 40.089544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "Name": "Cafe Thanh Truc", "Category": "Restaurants and Other Eating Places", "Address": "1037 S 8th St", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 30.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 644.0, "Total Spend": 223.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 25.68, "Median Spend per Customer": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-q9f", "Name": "BEL Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "10101 Verree Rd Ste C", "LATITUDE": 40.105145, "LONGITUDE": -75.032134, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 73.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 9.0, "Total Spend": 4116.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 124.74, "Median Spend per Customer": 124.74 }, "geometry": { "type": "Point", "coordinates": [ -75.032134, 40.105145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "Name": "Abyssinia", "Category": "Restaurants and Other Eating Places", "Address": "229 S 45th St", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 44.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 99.0, "Total Spend": 2839.0, "Total Transactions": 105.0, "Total Customers": 81.0, "Median Spend per Transaction": 25.85, "Median Spend per Customer": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-28v", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "9159 Roosevelt Blvd", "LATITUDE": 40.074524, "LONGITUDE": -75.032955, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 50.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 2262.0, "Total Transactions": 42.0, "Total Customers": 40.0, "Median Spend per Transaction": 44.1, "Median Spend per Customer": 47.05 }, "geometry": { "type": "Point", "coordinates": [ -75.032955, 40.074524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "Name": "Sorrento's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1624 W Olney Ave", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 56.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 349.0, "Total Spend": 3345.0, "Total Transactions": 129.0, "Total Customers": 89.0, "Median Spend per Transaction": 24.4, "Median Spend per Customer": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pjf-kcq", "Name": "Style Camp", "Category": "Clothing Stores", "Address": "8232 Germantown Ave", "LATITUDE": 40.074035, "LONGITUDE": -75.203588, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 64.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 97.0, "Total Spend": 145.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 36.5, "Median Spend per Customer": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -75.203588, 40.074035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-pvz", "Name": "Furniture Mecca", "Category": "Furniture Stores", "Address": "5648 Lancaster Ave", "LATITUDE": 39.980517, "LONGITUDE": -75.235459, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 64.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 4.0, "Total Spend": 3835.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 500.0, "Median Spend per Customer": 500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.235459, 39.980517 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "Name": "Mustard Greens Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "622 S 2nd St", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 75.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 42.0, "Total Spend": 1544.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 57.6, "Median Spend per Customer": 57.6 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-qzz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "3600 Aramingo Ave", "LATITUDE": 39.993907, "LONGITUDE": -75.096856, "DATE_RANGE_START": 2020, "Total Visits": 534.0, "Total Visitors": 474.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 4.0, "Total Spend": 91.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.096856, 39.993907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "Name": "Cold Stone Creamery", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978153, "LONGITUDE": -75.119499, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 159.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 2.0, "Total Spend": 5700.0, "Total Transactions": 417.0, "Total Customers": 333.0, "Median Spend per Transaction": 11.98, "Median Spend per Customer": 13.14 }, "geometry": { "type": "Point", "coordinates": [ -75.119499, 39.978153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "917 W Girard Ave # 31", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2020, "Total Visits": 522.0, "Total Visitors": 318.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 6.0, "Total Spend": 13701.0, "Total Transactions": 2033.0, "Total Customers": 911.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 9.46 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1630 E Wadsworth Ave", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2020, "Total Visits": 381.0, "Total Visitors": 290.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 5.0, "Total Spend": 5943.0, "Total Transactions": 830.0, "Total Customers": 534.0, "Median Spend per Transaction": 5.92, "Median Spend per Customer": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "Name": "Fairfield Inn & Suites by Marriott", "Category": "Traveler Accommodation", "Address": "8800 Bartram Ave", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2020, "Total Visits": 1219.0, "Total Visitors": 758.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 492.0, "Total Spend": 15270.0, "Total Transactions": 66.0, "Total Customers": 44.0, "Median Spend per Transaction": 161.59, "Median Spend per Customer": 161.59 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "2141 Cottman Ave Unit D", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2020, "Total Visits": 304.0, "Total Visitors": 274.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 11.0, "Total Spend": 10808.0, "Total Transactions": 147.0, "Total Customers": 141.0, "Median Spend per Transaction": 54.54, "Median Spend per Customer": 56.16 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-phy-kcq", "Name": "La Calenita Bakery Cafe", "Category": "Restaurants and Other Eating Places", "Address": "5034 N 5th St", "LATITUDE": 40.028172, "LONGITUDE": -75.132562, "DATE_RANGE_START": 2020, "Total Visits": 897.0, "Total Visitors": 451.0, "POI_CBG": 421010285001.0, "Median Dwell Time": 337.0, "Total Spend": 72.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 18.06, "Median Spend per Customer": 18.06 }, "geometry": { "type": "Point", "coordinates": [ -75.132562, 40.028172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.029744, "LONGITUDE": -75.099335, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 268.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 8.0, "Total Spend": 551.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 27.79, "Median Spend per Customer": 37.88 }, "geometry": { "type": "Point", "coordinates": [ -75.099335, 40.029744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5100 City Ave", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2020, "Total Visits": 470.0, "Total Visitors": 361.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 2.0, "Total Spend": 10883.0, "Total Transactions": 1435.0, "Total Customers": 840.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-tqf", "Name": "Passeros Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "834 Chestnut St", "LATITUDE": 39.949637, "LONGITUDE": -75.155037, "DATE_RANGE_START": 2020, "Total Visits": 417.0, "Total Visitors": 292.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 62.0, "Total Spend": 1488.0, "Total Transactions": 177.0, "Total Customers": 101.0, "Median Spend per Transaction": 6.56, "Median Spend per Customer": 10.64 }, "geometry": { "type": "Point", "coordinates": [ -75.155037, 39.949637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "Name": "Oregon Steaks", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 50.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 1.0, "Total Spend": 8323.0, "Total Transactions": 667.0, "Total Customers": 316.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfv-94v", "Name": "The Nesting House", "Category": "Clothing Stores", "Address": "542 Carpenter Ln", "LATITUDE": 40.04661, "LONGITUDE": -75.195379, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 8.0, "Total Spend": 23387.0, "Total Transactions": 48.0, "Total Customers": 44.0, "Median Spend per Transaction": 26.7, "Median Spend per Customer": 30.69 }, "geometry": { "type": "Point", "coordinates": [ -75.195379, 40.04661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-zcq", "Name": "Savas", "Category": "Restaurants and Other Eating Places", "Address": "3505 Lancaster Ave", "LATITUDE": 39.958284, "LONGITUDE": -75.192713, "DATE_RANGE_START": 2020, "Total Visits": 423.0, "Total Visitors": 181.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 490.0, "Total Spend": 186.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.63, "Median Spend per Customer": 13.63 }, "geometry": { "type": "Point", "coordinates": [ -75.192713, 39.958284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-xkf", "Name": "Vietnam Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "221 N 11th St", "LATITUDE": 39.956332, "LONGITUDE": -75.157056, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 83.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 113.0, "Total Spend": 1479.0, "Total Transactions": 40.0, "Total Customers": 32.0, "Median Spend per Transaction": 34.85, "Median Spend per Customer": 36.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.956332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1615 Chancellor St", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 187.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 426.0, "Total Spend": 4343.0, "Total Transactions": 95.0, "Total Customers": 93.0, "Median Spend per Transaction": 38.14, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "Name": "Capriccio Cafe and Bar", "Category": "Restaurants and Other Eating Places", "Address": "110 N 16th St", "LATITUDE": 39.955464, "LONGITUDE": -75.166555, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 69.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 10.0, "Total Spend": 2482.0, "Total Transactions": 204.0, "Total Customers": 141.0, "Median Spend per Transaction": 9.62, "Median Spend per Customer": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.166555, 39.955464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "3711 Market St", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2020, "Total Visits": 8303.0, "Total Visitors": 5018.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 81.0, "Total Spend": 2541.0, "Total Transactions": 83.0, "Total Customers": 79.0, "Median Spend per Transaction": 25.01, "Median Spend per Customer": 26.17 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "Name": "Ruth's Chris Steak House", "Category": "Restaurants and Other Eating Places", "Address": "1800 Market St", "LATITUDE": 39.952962, "LONGITUDE": -75.170263, "DATE_RANGE_START": 2020, "Total Visits": 397.0, "Total Visitors": 318.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 21.0, "Total Spend": 10184.0, "Total Transactions": 60.0, "Total Customers": 56.0, "Median Spend per Transaction": 160.8, "Median Spend per Customer": 164.16 }, "geometry": { "type": "Point", "coordinates": [ -75.170263, 39.952962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-236@628-pm9-wc5", "Name": "Grubhouse", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949649, "LONGITUDE": -75.147584, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 224.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 64.0, "Total Spend": 111.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.01, "Median Spend per Customer": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.147584, 39.949649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2043 Chestnut St", "LATITUDE": 39.95261, "LONGITUDE": -75.174957, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 125.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 3.0, "Total Spend": 662.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 13.68, "Median Spend per Customer": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.174957, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvy-kfz", "Name": "Ahmad Gyro King", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.951086, "LONGITUDE": -75.19875, "DATE_RANGE_START": 2020, "Total Visits": 1290.0, "Total Visitors": 838.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 10.0, "Total Spend": 432.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.19875, 39.951086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1420 Cecil B Moore Ave", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2020, "Total Visits": 981.0, "Total Visitors": 683.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 12.0, "Total Spend": 10637.0, "Total Transactions": 1804.0, "Total Customers": 903.0, "Median Spend per Transaction": 4.62, "Median Spend per Customer": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kfz", "Name": "The Rittenhouse Hotel", "Category": "Traveler Accommodation", "Address": "210 W Rittenhouse Sq", "LATITUDE": 39.949841, "LONGITUDE": -75.173264, "DATE_RANGE_START": 2020, "Total Visits": 675.0, "Total Visitors": 312.0, "POI_CBG": 421010008034.0, "Median Dwell Time": 212.0, "Total Spend": 1062.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 267.61, "Median Spend per Customer": 267.61 }, "geometry": { "type": "Point", "coordinates": [ -75.173264, 39.949841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pg9-td9", "Name": "Tela's Market & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1833 Fairmount Ave", "LATITUDE": 39.967388, "LONGITUDE": -75.168391, "DATE_RANGE_START": 2020, "Total Visits": 363.0, "Total Visitors": 206.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 266.0, "Total Spend": 39093.0, "Total Transactions": 1931.0, "Total Customers": 871.0, "Median Spend per Transaction": 14.15, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168391, 39.967388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-wrk", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2628 N Broad St", "LATITUDE": 39.993383, "LONGITUDE": -75.155194, "DATE_RANGE_START": 2020, "Total Visits": 197.0, "Total Visitors": 97.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 1189.0, "Total Spend": 12570.0, "Total Transactions": 464.0, "Total Customers": 373.0, "Median Spend per Transaction": 23.33, "Median Spend per Customer": 26.07 }, "geometry": { "type": "Point", "coordinates": [ -75.155194, 39.993383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zpv", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "2820 W. Oregon Ave.", "LATITUDE": 39.917091, "LONGITUDE": -75.187282, "DATE_RANGE_START": 2020, "Total Visits": 27170.0, "Total Visitors": 12888.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 24.0, "Total Spend": 2542.0, "Total Transactions": 42.0, "Total Customers": 38.0, "Median Spend per Transaction": 64.95, "Median Spend per Customer": 60.21 }, "geometry": { "type": "Point", "coordinates": [ -75.187282, 39.917091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2951 Market St", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2020, "Total Visits": 10482.0, "Total Visitors": 6602.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 22.0, "Total Spend": 2235.0, "Total Transactions": 466.0, "Total Customers": 238.0, "Median Spend per Transaction": 4.31, "Median Spend per Customer": 4.74 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-225@628-pjk-3nq", "Name": "Lucky Star Asian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "8919 Ridge Ave", "LATITUDE": 40.069778, "LONGITUDE": -75.239531, "DATE_RANGE_START": 2020, "Total Visits": 405.0, "Total Visitors": 264.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 37.0, "Total Spend": 358.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 32.49, "Median Spend per Customer": 32.49 }, "geometry": { "type": "Point", "coordinates": [ -75.239531, 40.069778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-5zz", "Name": "Panda Garden", "Category": "Restaurants and Other Eating Places", "Address": "130 S 11th St", "LATITUDE": 39.949206, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2020, "Total Visits": 179.0, "Total Visitors": 89.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 337.0, "Total Spend": 827.0, "Total Transactions": 38.0, "Total Customers": 36.0, "Median Spend per Transaction": 15.49, "Median Spend per Customer": 13.91 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.949206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "501 Franklin Mills Cir", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2020, "Total Visits": 534.0, "Total Visitors": 395.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 15230.0, "Total Transactions": 1372.0, "Total Customers": 931.0, "Median Spend per Transaction": 9.26, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "Name": "Arby's", "Category": "Restaurants and Other Eating Places", "Address": "577 Franklin Mills Cir", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 175.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 4168.0, "Total Transactions": 292.0, "Total Customers": 244.0, "Median Spend per Transaction": 12.08, "Median Spend per Customer": 14.29 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-225@628-p85-p35", "Name": "Cafe Carmela", "Category": "Restaurants and Other Eating Places", "Address": "2859 Holme Ave", "LATITUDE": 40.05717, "LONGITUDE": -75.030373, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 97.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 28.0, "Total Spend": 622.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 42.12, "Median Spend per Customer": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.030373, 40.05717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "Name": "Kaffa Crossing", "Category": "Restaurants and Other Eating Places", "Address": "4423 Chestnut St", "LATITUDE": 39.956859, "LONGITUDE": -75.210414, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 14.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 339.0, "Total Spend": 2476.0, "Total Transactions": 79.0, "Total Customers": 69.0, "Median Spend per Transaction": 28.26, "Median Spend per Customer": 29.57 }, "geometry": { "type": "Point", "coordinates": [ -75.210414, 39.956859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfy-wkz", "Name": "Dawson Street Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 Dawson St", "LATITUDE": 40.018548, "LONGITUDE": -75.21277, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 16.0, "POI_CBG": 421010209004.0, "Median Dwell Time": 76.0, "Total Spend": 339.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 20.28, "Median Spend per Customer": 20.28 }, "geometry": { "type": "Point", "coordinates": [ -75.21277, 40.018548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-223@628-pnx-7qz", "Name": "Dolce & Caffe", "Category": "Restaurants and Other Eating Places", "Address": "708 N 2nd St", "LATITUDE": 39.962218, "LONGITUDE": -75.141391, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 16.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 42.0, "Total Spend": 4355.0, "Total Transactions": 355.0, "Total Customers": 232.0, "Median Spend per Transaction": 9.94, "Median Spend per Customer": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.141391, 39.962218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "Name": "Ritz Diner", "Category": "Restaurants and Other Eating Places", "Address": "8000 Roosevelt Blvd", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2020, "Total Visits": 588.0, "Total Visitors": 512.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 15.0, "Total Spend": 2642.0, "Total Transactions": 105.0, "Total Customers": 91.0, "Median Spend per Transaction": 24.07, "Median Spend per Customer": 24.76 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1345 W Olney Ave", "LATITUDE": 40.039133, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 77.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 11.0, "Total Spend": 2528.0, "Total Transactions": 504.0, "Total Customers": 246.0, "Median Spend per Transaction": 4.37, "Median Spend per Customer": 7.37 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 40.039133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5601 Vine St", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 244.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 3.0, "Total Spend": 6452.0, "Total Transactions": 542.0, "Total Customers": 393.0, "Median Spend per Transaction": 9.69, "Median Spend per Customer": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "10000 Roosevelt Blvd", "LATITUDE": 40.095264, "LONGITUDE": -75.015635, "DATE_RANGE_START": 2020, "Total Visits": 2237.0, "Total Visitors": 1471.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 4.0, "Total Spend": 6852.0, "Total Transactions": 693.0, "Total Customers": 437.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.015635, 40.095264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5901 Rising Sun Ave", "LATITUDE": 40.044029, "LONGITUDE": -75.102175, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 69.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 1.0, "Total Spend": 4286.0, "Total Transactions": 679.0, "Total Customers": 200.0, "Median Spend per Transaction": 4.54, "Median Spend per Customer": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.102175, 40.044029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "Name": "Lee's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "930 N 29th St", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 17.0, "Total Spend": 1868.0, "Total Transactions": 103.0, "Total Customers": 81.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 19.25 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7w-psq", "Name": "England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2840 Cottman Ave", "LATITUDE": 40.043231, "LONGITUDE": -75.052729, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010315022.0, "Median Dwell Time": null, "Total Spend": 1575.0, "Total Transactions": 66.0, "Total Customers": 46.0, "Median Spend per Transaction": 21.42, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052729, 40.043231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "Name": "Head House Books", "Category": "Book Stores and News Dealers", "Address": "619 S 2nd St", "LATITUDE": 39.940599, "LONGITUDE": -75.145587, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 10.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 757.0, "Total Spend": 460.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 30.51 }, "geometry": { "type": "Point", "coordinates": [ -75.145587, 39.940599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp2-8d9", "Name": "Bee Flowers", "Category": "Florists", "Address": "2637 E Allegheny Ave", "LATITUDE": 39.984969, "LONGITUDE": -75.102796, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 10.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 480.0, "Total Spend": 208.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 52.5, "Median Spend per Customer": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102796, 39.984969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvr-9mk", "Name": "60th Street Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5956 Chester Ave", "LATITUDE": 39.93354, "LONGITUDE": -75.231211, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010065001.0, "Median Dwell Time": 3.0, "Total Spend": 179.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231211, 39.93354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "Name": "Bookhaven", "Category": "Book Stores and News Dealers", "Address": "2202 Fairmount Ave", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 229.0, "Total Spend": 1751.0, "Total Transactions": 42.0, "Total Customers": 38.0, "Median Spend per Transaction": 25.92, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-dvz", "Name": "Pietro Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1501 Packer Ave", "LATITUDE": 39.912309, "LONGITUDE": -75.174217, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 136.0, "Total Spend": 859.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174217, 39.912309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "Name": "The Sidecar Bar & Grille", "Category": "Restaurants and Other Eating Places", "Address": "2201 Christian St", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 1.0, "Total Spend": 2373.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 66.34, "Median Spend per Customer": 73.63 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "Name": "Jack's place", "Category": "Restaurants and Other Eating Places", "Address": "7167 Hegerman St", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010326007.0, "Median Dwell Time": 1.0, "Total Spend": 467.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgg-yvz", "Name": "Favors", "Category": "Restaurants and Other Eating Places", "Address": "2867 N Taylor St", "LATITUDE": 39.9991, "LONGITUDE": -75.171017, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010172024.0, "Median Dwell Time": 8.0, "Total Spend": 665.0, "Total Transactions": 30.0, "Total Customers": 20.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.171017, 39.9991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2nd Lehigh Ave", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2020, "Total Visits": 403.0, "Total Visitors": 345.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 5.0, "Total Spend": 7017.0, "Total Transactions": 526.0, "Total Customers": 419.0, "Median Spend per Transaction": 11.11, "Median Spend per Customer": 12.19 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "Name": "Menchie's", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd Unit 4", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 143.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 262.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-qpv", "Name": "New York Bagel Bakery", "Category": "Restaurants and Other Eating Places", "Address": "7555 Haverford Ave", "LATITUDE": 39.97966, "LONGITUDE": -75.268066, "DATE_RANGE_START": 2020, "Total Visits": 296.0, "Total Visitors": 228.0, "POI_CBG": 421010098011.0, "Median Dwell Time": 17.0, "Total Spend": 23270.0, "Total Transactions": 605.0, "Total Customers": 464.0, "Median Spend per Transaction": 27.8, "Median Spend per Customer": 32.55 }, "geometry": { "type": "Point", "coordinates": [ -75.268066, 39.97966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pm3-vs5", "Name": "Mike & Matt's Italian Market", "Category": "Grocery Stores", "Address": "1206 Mifflin St", "LATITUDE": 39.926268, "LONGITUDE": -75.165968, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 22.0, "Total Spend": 617.0, "Total Transactions": 64.0, "Total Customers": 38.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165968, 39.926268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "Name": "El Taco", "Category": "Restaurants and Other Eating Places", "Address": "3233 Powelton Ave", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 183.0, "Total Spend": 2266.0, "Total Transactions": 149.0, "Total Customers": 83.0, "Median Spend per Transaction": 12.9, "Median Spend per Customer": 17.65 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-rhq", "Name": "Singh Tire Center", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "240 Diamond St", "LATITUDE": 39.982111, "LONGITUDE": -75.138488, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 18.0, "POI_CBG": 421010156001.0, "Median Dwell Time": 54.0, "Total Spend": 495.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 54.5, "Median Spend per Customer": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138488, 39.982111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-r6k", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "310 W Master St", "LATITUDE": 39.97237, "LONGITUDE": -75.140976, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 197.0, "Total Spend": 69.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.09, "Median Spend per Customer": 6.09 }, "geometry": { "type": "Point", "coordinates": [ -75.140976, 39.97237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj9-5j9", "Name": "D & D Mini Market", "Category": "Grocery Stores", "Address": "5900 N 12th St", "LATITUDE": 40.042578, "LONGITUDE": -75.140373, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 34.0, "POI_CBG": 421010276003.0, "Median Dwell Time": 5.0, "Total Spend": 99.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 13.25, "Median Spend per Customer": 15.08 }, "geometry": { "type": "Point", "coordinates": [ -75.140373, 40.042578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-yn5", "Name": "Encore", "Category": "Restaurants and Other Eating Places", "Address": "4002 W Girard Ave", "LATITUDE": 39.973824, "LONGITUDE": -75.204593, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 34.0, "POI_CBG": 421010110003.0, "Median Dwell Time": 114.0, "Total Spend": 167.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204593, 39.973824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "Name": "Munchies Cafe", "Category": "Restaurants and Other Eating Places", "Address": "728 Chestnut St", "LATITUDE": 39.949457, "LONGITUDE": -75.153676, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 34.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 40.0, "Total Spend": 1670.0, "Total Transactions": 175.0, "Total Customers": 107.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.153676, 39.949457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "Name": "Aura", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "628 N Front St", "LATITUDE": 39.961228, "LONGITUDE": -75.138826, "DATE_RANGE_START": 2020, "Total Visits": 151.0, "Total Visitors": 125.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 190.0, "Total Spend": 86122.0, "Total Transactions": 1540.0, "Total Customers": 1338.0, "Median Spend per Transaction": 36.29, "Median Spend per Customer": 40.73 }, "geometry": { "type": "Point", "coordinates": [ -75.138826, 39.961228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phy-v9f", "Name": "The Crab Shack 2", "Category": "Restaurants and Other Eating Places", "Address": "5305 Rising Sun Ave", "LATITUDE": 40.030196, "LONGITUDE": -75.117947, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 165.0, "POI_CBG": 421010290004.0, "Median Dwell Time": 7.0, "Total Spend": 5548.0, "Total Transactions": 109.0, "Total Customers": 85.0, "Median Spend per Transaction": 40.13, "Median Spend per Customer": 48.41 }, "geometry": { "type": "Point", "coordinates": [ -75.117947, 40.030196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-47q", "Name": "Halal Food", "Category": "Restaurants and Other Eating Places", "Address": "SE Corner of Spring Garden 15th St", "LATITUDE": 39.962366, "LONGITUDE": -75.162749, "DATE_RANGE_START": 2020, "Total Visits": 202.0, "Total Visitors": 135.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 39.0, "Total Spend": 1102.0, "Total Transactions": 109.0, "Total Customers": 71.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162749, 39.962366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "6350 Roosevelt Blvd", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2020, "Total Visits": 189.0, "Total Visitors": 163.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 8.0, "Total Spend": 6978.0, "Total Transactions": 288.0, "Total Customers": 230.0, "Median Spend per Transaction": 22.97, "Median Spend per Customer": 24.37 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "Name": "Chill On the Hill", "Category": "Restaurants and Other Eating Places", "Address": "5 E Highland Ave", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 1.0, "Total Spend": 947.0, "Total Transactions": 69.0, "Total Customers": 60.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-tsq", "Name": "N & E Agora Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "917 Tyson Ave", "LATITUDE": 40.052622, "LONGITUDE": -75.080131, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010308003.0, "Median Dwell Time": 9.0, "Total Spend": 201.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 50.63, "Median Spend per Customer": 50.63 }, "geometry": { "type": "Point", "coordinates": [ -75.080131, 40.052622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-8jv", "Name": "The Nile Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6008 Germantown Ave", "LATITUDE": 40.039401, "LONGITUDE": -75.177975, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010238002.0, "Median Dwell Time": null, "Total Spend": 1453.0, "Total Transactions": 54.0, "Total Customers": 50.0, "Median Spend per Transaction": 23.7, "Median Spend per Customer": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.177975, 40.039401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-qmk", "Name": "Yeeroh", "Category": "Restaurants and Other Eating Places", "Address": "1412 South St", "LATITUDE": 39.943614, "LONGITUDE": -75.166117, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 45.0, "Total Spend": 3385.0, "Total Transactions": 135.0, "Total Customers": 105.0, "Median Spend per Transaction": 17.1, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166117, 39.943614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p7x-dsq", "Name": "Rib Rack", "Category": "Restaurants and Other Eating Places", "Address": "2100 Tyson Ave", "LATITUDE": 40.042525, "LONGITUDE": -75.063219, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 30.0, "POI_CBG": 421010314022.0, "Median Dwell Time": 1.0, "Total Spend": 924.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 46.0, "Median Spend per Customer": 45.72 }, "geometry": { "type": "Point", "coordinates": [ -75.063219, 40.042525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pmb-ygk", "Name": "Oishii Poke", "Category": "Restaurants and Other Eating Places", "Address": "938 Arch St Fl Rear", "LATITUDE": 39.953252, "LONGITUDE": -75.15618, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 36.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 2436.0, "Total Transactions": 109.0, "Total Customers": 89.0, "Median Spend per Transaction": 18.04, "Median Spend per Customer": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.15618, 39.953252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pm4-pjv", "Name": "Di Bruno Bros", "Category": "Specialty Food Stores", "Address": "930 S 9th St", "LATITUDE": 39.938055, "LONGITUDE": -75.158145, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 260.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 21.0, "Total Spend": 18315.0, "Total Transactions": 645.0, "Total Customers": 466.0, "Median Spend per Transaction": 17.11, "Median Spend per Customer": 25.23 }, "geometry": { "type": "Point", "coordinates": [ -75.158145, 39.938055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "10 Snyder Ave", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2020, "Total Visits": 685.0, "Total Visitors": 536.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 7.0, "Total Spend": 3043.0, "Total Transactions": 127.0, "Total Customers": 107.0, "Median Spend per Transaction": 18.34, "Median Spend per Customer": 18.78 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2300 Fairmount Ave # 16", "LATITUDE": 39.96715, "LONGITUDE": -75.175689, "DATE_RANGE_START": 2020, "Total Visits": 562.0, "Total Visitors": 453.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 5.0, "Total Spend": 1581.0, "Total Transactions": 83.0, "Total Customers": 69.0, "Median Spend per Transaction": 16.04, "Median Spend per Customer": 24.68 }, "geometry": { "type": "Point", "coordinates": [ -75.175689, 39.96715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Frankford Ave", "LATITUDE": 40.065, "LONGITUDE": -74.981932, "DATE_RANGE_START": 2020, "Total Visits": 4970.0, "Total Visitors": 2686.0, "POI_CBG": 421010362033.0, "Median Dwell Time": 4.0, "Total Spend": 967.0, "Total Transactions": 50.0, "Total Customers": 32.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -74.981932, 40.065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj9-6p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5810 N Broad St", "LATITUDE": 40.042256, "LONGITUDE": -75.144223, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 145.0, "POI_CBG": 421010278002.0, "Median Dwell Time": 4.0, "Total Spend": 603.0, "Total Transactions": 36.0, "Total Customers": 28.0, "Median Spend per Transaction": 12.49, "Median Spend per Customer": 16.66 }, "geometry": { "type": "Point", "coordinates": [ -75.144223, 40.042256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1500 E Erie Ave", "LATITUDE": 40.005384, "LONGITUDE": -75.097837, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 252.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 6.0, "Total Spend": 792.0, "Total Transactions": 113.0, "Total Customers": 66.0, "Median Spend per Transaction": 6.29, "Median Spend per Customer": 8.36 }, "geometry": { "type": "Point", "coordinates": [ -75.097837, 40.005384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pgj-pgk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2649 Germantown Ave", "LATITUDE": 39.992811, "LONGITUDE": -75.147675, "DATE_RANGE_START": 2020, "Total Visits": 353.0, "Total Visitors": 254.0, "POI_CBG": 421010164003.0, "Median Dwell Time": 10.0, "Total Spend": 546.0, "Total Transactions": 38.0, "Total Customers": 30.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.147675, 39.992811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-4y9", "Name": "Ez Dollar Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1013 Snyder Ave", "LATITUDE": 39.923795, "LONGITUDE": -75.163033, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 99.0, "POI_CBG": 421010040011.0, "Median Dwell Time": 6.0, "Total Spend": 235.0, "Total Transactions": 16.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.47, "Median Spend per Customer": 59.24 }, "geometry": { "type": "Point", "coordinates": [ -75.163033, 39.923795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phz-ch5", "Name": "Cafe Liz", "Category": "Restaurants and Other Eating Places", "Address": "5437 N Lawrence St", "LATITUDE": 40.034261, "LONGITUDE": -75.129795, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 64.0, "POI_CBG": 421010274013.0, "Median Dwell Time": 37.0, "Total Spend": 2387.0, "Total Transactions": 42.0, "Total Customers": 30.0, "Median Spend per Transaction": 51.0, "Median Spend per Customer": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129795, 40.034261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "Name": "Tattooed Mom", "Category": "Restaurants and Other Eating Places", "Address": "530 South St", "LATITUDE": 39.941873, "LONGITUDE": -75.151859, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 1.0, "Total Spend": 10937.0, "Total Transactions": 347.0, "Total Customers": 286.0, "Median Spend per Transaction": 31.2, "Median Spend per Customer": 33.44 }, "geometry": { "type": "Point", "coordinates": [ -75.151859, 39.941873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phz-wkz", "Name": "Steve's Old Pizza London", "Category": "Restaurants and Other Eating Places", "Address": "3573 Frankford Ave", "LATITUDE": 39.997988, "LONGITUDE": -75.101209, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 40.0, "POI_CBG": 421010188002.0, "Median Dwell Time": 801.0, "Total Spend": 1816.0, "Total Transactions": 77.0, "Total Customers": 56.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.101209, 39.997988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "Name": "Four Seasons Hotels and Resorts", "Category": "Traveler Accommodation", "Address": "1 N 19th St", "LATITUDE": 39.955061, "LONGITUDE": -75.170762, "DATE_RANGE_START": 2020, "Total Visits": 1602.0, "Total Visitors": 730.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 293.0, "Total Spend": 2577.0, "Total Transactions": 62.0, "Total Customers": 56.0, "Median Spend per Transaction": 21.25, "Median Spend per Customer": 22.17 }, "geometry": { "type": "Point", "coordinates": [ -75.170762, 39.955061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "Name": "Makkah Market", "Category": "Restaurants and Other Eating Places", "Address": "4249 Walnut St", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2020, "Total Visits": 296.0, "Total Visitors": 222.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 7.0, "Total Spend": 16127.0, "Total Transactions": 740.0, "Total Customers": 439.0, "Median Spend per Transaction": 13.85, "Median Spend per Customer": 23.11 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-snq", "Name": "Alice Pizza", "Category": "Restaurants and Other Eating Places", "Address": "235 S 15th St", "LATITUDE": 39.948159, "LONGITUDE": -75.166048, "DATE_RANGE_START": 2020, "Total Visits": 3029.0, "Total Visitors": 1594.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 200.0, "Total Spend": 2157.0, "Total Transactions": 111.0, "Total Customers": 81.0, "Median Spend per Transaction": 11.72, "Median Spend per Customer": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.166048, 39.948159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3230 Richmond St", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2020, "Total Visits": 1227.0, "Total Visitors": 726.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 3.0, "Total Spend": 22966.0, "Total Transactions": 2245.0, "Total Customers": 992.0, "Median Spend per Transaction": 8.3, "Median Spend per Customer": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-92k", "Name": "Eddie Bauer Outlet", "Category": "Clothing Stores", "Address": "901 Market St Unit 2050", "LATITUDE": 39.951639, "LONGITUDE": -75.155758, "DATE_RANGE_START": 2020, "Total Visits": 22999.0, "Total Visitors": 12644.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 49.0, "Total Spend": 1207.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 17.99, "Median Spend per Customer": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155758, 39.951639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "10500 Roosevelt Blvd", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 365.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 17.0, "Total Spend": 2315.0, "Total Transactions": 66.0, "Total Customers": 52.0, "Median Spend per Transaction": 27.64, "Median Spend per Customer": 35.34 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgf-575", "Name": "Crackn Crabs", "Category": "Restaurants and Other Eating Places", "Address": "3800 Lancaster Ave", "LATITUDE": 39.960125, "LONGITUDE": -75.197142, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 101.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 1.0, "Total Spend": 4881.0, "Total Transactions": 97.0, "Total Customers": 81.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.197142, 39.960125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-t5f", "Name": "Pho Viet", "Category": "Restaurants and Other Eating Places", "Address": "5520 Whitaker Ave", "LATITUDE": 40.035248, "LONGITUDE": -75.100976, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 121.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 8.0, "Total Spend": 1603.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 28.82, "Median Spend per Customer": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.100976, 40.035248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "Name": "Tradesman's", "Category": "Restaurants and Other Eating Places", "Address": "1322 Chestnut St", "LATITUDE": 39.950487, "LONGITUDE": -75.162708, "DATE_RANGE_START": 2020, "Total Visits": 224.0, "Total Visitors": 193.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 28.0, "Total Spend": 23518.0, "Total Transactions": 421.0, "Total Customers": 367.0, "Median Spend per Transaction": 41.35, "Median Spend per Customer": 50.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162708, 39.950487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm4-4gk", "Name": "El Sabor Catracho", "Category": "Restaurants and Other Eating Places", "Address": "2201 S 7th St", "LATITUDE": 39.92144, "LONGITUDE": -75.158323, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 107.0, "POI_CBG": 421010041012.0, "Median Dwell Time": 533.0, "Total Spend": 163.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 41.04, "Median Spend per Customer": 41.04 }, "geometry": { "type": "Point", "coordinates": [ -75.158323, 39.92144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9r-4y9", "Name": "Chuck E. Cheese's", "Category": "Restaurants and Other Eating Places", "Address": "9175 Roosevelt Blvd Ste 2", "LATITUDE": 40.076158, "LONGITUDE": -75.031371, "DATE_RANGE_START": 2020, "Total Visits": 163.0, "Total Visitors": 143.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 347.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 29.1, "Median Spend per Customer": 46.55 }, "geometry": { "type": "Point", "coordinates": [ -75.031371, 40.076158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1325 E Washington Ln", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 179.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 3.0, "Total Spend": 5551.0, "Total Transactions": 786.0, "Total Customers": 437.0, "Median Spend per Transaction": 6.17, "Median Spend per Customer": 9.07 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5753 Wayne Ave", "LATITUDE": 40.032663, "LONGITUDE": -75.179788, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 294.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 4.0, "Total Spend": 12319.0, "Total Transactions": 1790.0, "Total Customers": 857.0, "Median Spend per Transaction": 5.96, "Median Spend per Customer": 9.19 }, "geometry": { "type": "Point", "coordinates": [ -75.179788, 40.032663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "3900 City Ave", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2020, "Total Visits": 1594.0, "Total Visitors": 1147.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 18.0, "Total Spend": 23255.0, "Total Transactions": 1501.0, "Total Customers": 915.0, "Median Spend per Transaction": 13.05, "Median Spend per Customer": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "3939 Chestnut St Fl 2", "LATITUDE": 39.955756, "LONGITUDE": -75.201691, "DATE_RANGE_START": 2020, "Total Visits": 1302.0, "Total Visitors": 740.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 303.0, "Total Spend": 1991.0, "Total Transactions": 48.0, "Total Customers": 44.0, "Median Spend per Transaction": 32.2, "Median Spend per Customer": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.201691, 39.955756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnz-jgk", "Name": "Bonks Bar", "Category": "Restaurants and Other Eating Places", "Address": "3467 Richmond St", "LATITUDE": 39.986368, "LONGITUDE": -75.094326, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 159.0, "POI_CBG": 421010378002.0, "Median Dwell Time": 7.0, "Total Spend": 505.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 51.0, "Median Spend per Customer": 51.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094326, 39.986368 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2749 W Hunting Park Ave Ste 130", "LATITUDE": 40.00769, "LONGITUDE": -75.17457, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 91.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 2.0, "Total Spend": 5273.0, "Total Transactions": 752.0, "Total Customers": 427.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 8.92 }, "geometry": { "type": "Point", "coordinates": [ -75.17457, 40.00769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7350 Oxford Ave", "LATITUDE": 40.062718, "LONGITUDE": -75.083858, "DATE_RANGE_START": 2020, "Total Visits": 794.0, "Total Visitors": 592.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 8.0, "Total Spend": 13648.0, "Total Transactions": 326.0, "Total Customers": 270.0, "Median Spend per Transaction": 25.62, "Median Spend per Customer": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.083858, 40.062718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "Name": "Wilson's Market", "Category": "Grocery Stores", "Address": "1337 W Olney Ave", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 171.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 10.0, "Total Spend": 707.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 11.26, "Median Spend per Customer": 11.26 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pmb-btv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1051 South St", "LATITUDE": 39.943154, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2020, "Total Visits": 2350.0, "Total Visitors": 1247.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 13.0, "Total Spend": 14002.0, "Total Transactions": 689.0, "Total Customers": 427.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 23.38 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.943154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p7w-gc5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7965 Verree Rd", "LATITUDE": 40.072485, "LONGITUDE": -75.075778, "DATE_RANGE_START": 2020, "Total Visits": 752.0, "Total Visitors": 528.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 3.0, "Total Spend": 980.0, "Total Transactions": 42.0, "Total Customers": 34.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 22.01 }, "geometry": { "type": "Point", "coordinates": [ -75.075778, 40.072485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6140 Woodland Ave", "LATITUDE": 39.928169, "LONGITUDE": -75.230056, "DATE_RANGE_START": 2020, "Total Visits": 633.0, "Total Visitors": 478.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 15.0, "Total Spend": 48.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 4.38, "Median Spend per Customer": 12.18 }, "geometry": { "type": "Point", "coordinates": [ -75.230056, 39.928169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "Name": "Comfort & Floyd", "Category": "Restaurants and Other Eating Places", "Address": "1301 S 11th St", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010029003.0, "Median Dwell Time": null, "Total Spend": 1177.0, "Total Transactions": 42.0, "Total Customers": 38.0, "Median Spend per Transaction": 27.32, "Median Spend per Customer": 33.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yqf", "Name": "T Swirl Crepe", "Category": "Restaurants and Other Eating Places", "Address": "150 N 10th St", "LATITUDE": 39.955094, "LONGITUDE": -75.156151, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 22.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 867.0, "Total Spend": 1588.0, "Total Transactions": 93.0, "Total Customers": 83.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 16.31 }, "geometry": { "type": "Point", "coordinates": [ -75.156151, 39.955094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "Name": "Primal Nutrition", "Category": "Health and Personal Care Stores", "Address": "8114 Roosevelt Blvd", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 4.0, "Total Spend": 3831.0, "Total Transactions": 54.0, "Total Customers": 42.0, "Median Spend per Transaction": 50.49, "Median Spend per Customer": 69.75 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3nq", "Name": "Nick's Roast Beef", "Category": "Restaurants and Other Eating Places", "Address": "4501 Woodhaven Rd", "LATITUDE": 40.083763, "LONGITUDE": -74.966105, "DATE_RANGE_START": 2020, "Total Visits": 736.0, "Total Visitors": 592.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 62.0, "Total Spend": 5267.0, "Total Transactions": 60.0, "Total Customers": 56.0, "Median Spend per Transaction": 53.94, "Median Spend per Customer": 58.39 }, "geometry": { "type": "Point", "coordinates": [ -74.966105, 40.083763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-zfz", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "60 N 23rd St", "LATITUDE": 39.956578, "LONGITUDE": -75.177927, "DATE_RANGE_START": 2020, "Total Visits": 296.0, "Total Visitors": 161.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 199.0, "Total Spend": 330.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 13.58, "Median Spend per Customer": 15.41 }, "geometry": { "type": "Point", "coordinates": [ -75.177927, 39.956578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-c89", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "100 W Erie Ave", "LATITUDE": 40.007079, "LONGITUDE": -75.128063, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 195.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 419.0, "Total Spend": 32.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 8.17, "Median Spend per Customer": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.128063, 40.007079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phy-skf", "Name": "Phoenix Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4417 N 6th St", "LATITUDE": 40.018943, "LONGITUDE": -75.136372, "DATE_RANGE_START": 2020, "Total Visits": 187.0, "Total Visitors": 87.0, "POI_CBG": 421010197001.0, "Median Dwell Time": 82.0, "Total Spend": 8.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 2.08, "Median Spend per Customer": 2.08 }, "geometry": { "type": "Point", "coordinates": [ -75.136372, 40.018943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "Name": "Brick House Bar & Grille", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3334 Grant Ave", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2020, "Total Visits": 417.0, "Total Visitors": 238.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 79.0, "Total Spend": 2464.0, "Total Transactions": 64.0, "Total Customers": 50.0, "Median Spend per Transaction": 27.95, "Median Spend per Customer": 44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "Name": "Triple Joy", "Category": "Restaurants and Other Eating Places", "Address": "2301 N 29th St", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 85.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 6.0, "Total Spend": 1478.0, "Total Transactions": 107.0, "Total Customers": 52.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 19.27 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-y9z", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "5818 Woodland Ave", "LATITUDE": 39.93105, "LONGITUDE": -75.226248, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 329.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 5.0, "Total Spend": 98.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 7.34, "Median Spend per Customer": 7.34 }, "geometry": { "type": "Point", "coordinates": [ -75.226248, 39.93105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3218 Willits Rd", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2020, "Total Visits": 461.0, "Total Visitors": 270.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 4.0, "Total Spend": 1314.0, "Total Transactions": 244.0, "Total Customers": 123.0, "Median Spend per Transaction": 3.87, "Median Spend per Customer": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1 Penn Sq E", "LATITUDE": 39.952459, "LONGITUDE": -75.162267, "DATE_RANGE_START": 2020, "Total Visits": 1391.0, "Total Visitors": 1030.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 257.0, "Total Spend": 2332.0, "Total Transactions": 427.0, "Total Customers": 187.0, "Median Spend per Transaction": 5.05, "Median Spend per Customer": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.162267, 39.952459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4017 N 5th St # 59", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 133.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 3.0, "Total Spend": 1220.0, "Total Transactions": 167.0, "Total Customers": 119.0, "Median Spend per Transaction": 6.06, "Median Spend per Customer": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-bp9", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "9910 Frankford Ave", "LATITUDE": 40.064931, "LONGITUDE": -74.985003, "DATE_RANGE_START": 2020, "Total Visits": 3990.0, "Total Visitors": 1826.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 19.0, "Total Spend": 1368.0, "Total Transactions": 30.0, "Total Customers": 20.0, "Median Spend per Transaction": 40.1, "Median Spend per Customer": 53.27 }, "geometry": { "type": "Point", "coordinates": [ -74.985003, 40.064931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5s5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1201 Chestnut St", "LATITUDE": 39.950566, "LONGITUDE": -75.160281, "DATE_RANGE_START": 2020, "Total Visits": 498.0, "Total Visitors": 417.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 558.0, "Total Transactions": 52.0, "Total Customers": 42.0, "Median Spend per Transaction": 8.66, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.160281, 39.950566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phj-rp9", "Name": "Crab & Claw Seafood", "Category": "Specialty Food Stores", "Address": "7801 Ogontz Ave", "LATITUDE": 40.071965, "LONGITUDE": -75.157348, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 181.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 9.0, "Total Spend": 948.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 72.0, "Median Spend per Customer": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157348, 40.071965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1101 Locust St", "LATITUDE": 39.947798, "LONGITUDE": -75.1598, "DATE_RANGE_START": 2020, "Total Visits": 1227.0, "Total Visitors": 740.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 97.0, "Total Spend": 12289.0, "Total Transactions": 691.0, "Total Customers": 381.0, "Median Spend per Transaction": 10.54, "Median Spend per Customer": 15.73 }, "geometry": { "type": "Point", "coordinates": [ -75.1598, 39.947798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "2047 Cottman Ave", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 101.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 4.0, "Total Spend": 3954.0, "Total Transactions": 67.0, "Total Customers": 64.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 64.78 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "Name": "Carter's", "Category": "Clothing Stores", "Address": "9171 Roosevelt Blvd Ste C", "LATITUDE": 40.075968, "LONGITUDE": -75.031512, "DATE_RANGE_START": 2020, "Total Visits": 331.0, "Total Visitors": 310.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 9.0, "Total Spend": 6845.0, "Total Transactions": 93.0, "Total Customers": 85.0, "Median Spend per Transaction": 50.59, "Median Spend per Customer": 62.89 }, "geometry": { "type": "Point", "coordinates": [ -75.031512, 40.075968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3359 Kensington Ave", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 113.0, "POI_CBG": 421010188007.0, "Median Dwell Time": 3.0, "Total Spend": 103.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 6.98, "Median Spend per Customer": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-qj9", "Name": "Evergreen Young's Market", "Category": "Specialty Food Stores", "Address": "7500 Verree Rd", "LATITUDE": 40.065852, "LONGITUDE": -75.083408, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 83.0, "POI_CBG": 421010339001.0, "Median Dwell Time": 4.0, "Total Spend": 6749.0, "Total Transactions": 40.0, "Total Customers": 36.0, "Median Spend per Transaction": 145.0, "Median Spend per Customer": 167.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083408, 40.065852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7v-f2k", "Name": "Raymour & Flanigan Outlet", "Category": "Furniture Stores", "Address": "2045 Cottman Ave", "LATITUDE": 40.051034, "LONGITUDE": -75.064888, "DATE_RANGE_START": 2020, "Total Visits": 776.0, "Total Visitors": 679.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 16.0, "Total Spend": 39186.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 1207.27, "Median Spend per Customer": 1207.27 }, "geometry": { "type": "Point", "coordinates": [ -75.064888, 40.051034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "11725 Bustleton Ave", "LATITUDE": 40.119147, "LONGITUDE": -75.015143, "DATE_RANGE_START": 2020, "Total Visits": 6310.0, "Total Visitors": 3613.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 15.0, "Total Spend": 93593.0, "Total Transactions": 987.0, "Total Customers": 584.0, "Median Spend per Transaction": 39.37, "Median Spend per Customer": 46.93 }, "geometry": { "type": "Point", "coordinates": [ -75.015143, 40.119147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1700 W Cheltenham Ave", "LATITUDE": 40.065814, "LONGITUDE": -75.144222, "DATE_RANGE_START": 2020, "Total Visits": 736.0, "Total Visitors": 496.0, "POI_CBG": 421010266001.0, "Median Dwell Time": 5.0, "Total Spend": 587.0, "Total Transactions": 34.0, "Total Customers": 26.0, "Median Spend per Transaction": 17.88, "Median Spend per Customer": 20.62 }, "geometry": { "type": "Point", "coordinates": [ -75.144222, 40.065814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "Name": "Burlington", "Category": "Clothing Stores", "Address": "9940 Roosevelt Blvd", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2020, "Total Visits": 863.0, "Total Visitors": 724.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 20.0, "Total Spend": 5843.0, "Total Transactions": 115.0, "Total Customers": 93.0, "Median Spend per Transaction": 34.19, "Median Spend per Customer": 37.81 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2250 S Columbus Blvd", "LATITUDE": 39.917114, "LONGITUDE": -75.139852, "DATE_RANGE_START": 2020, "Total Visits": 1147.0, "Total Visitors": 992.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 13.0, "Total Spend": 28028.0, "Total Transactions": 1114.0, "Total Customers": 979.0, "Median Spend per Transaction": 19.28, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139852, 39.917114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "Name": "The Love", "Category": "Restaurants and Other Eating Places", "Address": "130 S 18th St", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2020, "Total Visits": 2344.0, "Total Visitors": 1366.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 48.0, "Total Spend": 14820.0, "Total Transactions": 125.0, "Total Customers": 119.0, "Median Spend per Transaction": 110.46, "Median Spend per Customer": 120.81 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "Name": "El Vez", "Category": "Restaurants and Other Eating Places", "Address": "121 S 13th St", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2020, "Total Visits": 419.0, "Total Visitors": 347.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 38.0, "Total Spend": 49657.0, "Total Transactions": 804.0, "Total Customers": 691.0, "Median Spend per Transaction": 52.28, "Median Spend per Customer": 59.04 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pm8-pgk", "Name": "Kasumi Sushi", "Category": "Restaurants and Other Eating Places", "Address": "2201 Penrose Ave Ste 3", "LATITUDE": 39.910232, "LONGITUDE": -75.186866, "DATE_RANGE_START": 2020, "Total Visits": 1159.0, "Total Visitors": 633.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 5.0, "Total Spend": 4393.0, "Total Transactions": 127.0, "Total Customers": 83.0, "Median Spend per Transaction": 34.7, "Median Spend per Customer": 42.19 }, "geometry": { "type": "Point", "coordinates": [ -75.186866, 39.910232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7104 Ridge Ave", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 210.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 4.0, "Total Spend": 13312.0, "Total Transactions": 1947.0, "Total Customers": 903.0, "Median Spend per Transaction": 6.16, "Median Spend per Customer": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-qpv", "Name": "Sunrise Pizza", "Category": "Restaurants and Other Eating Places", "Address": "528 W Butler St", "LATITUDE": 40.009015, "LONGITUDE": -75.137692, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010198006.0, "Median Dwell Time": null, "Total Spend": 1441.0, "Total Transactions": 48.0, "Total Customers": 30.0, "Median Spend per Transaction": 32.2, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137692, 40.009015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "Name": "All The Way Live", "Category": "Restaurants and Other Eating Places", "Address": "6108 Germantown Ave", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 20.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 11.0, "Total Spend": 132.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 33.18, "Median Spend per Customer": 33.18 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "Name": "The Book Trader", "Category": "Book Stores and News Dealers", "Address": "7 N 2nd St", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 33.0, "Total Spend": 1382.0, "Total Transactions": 44.0, "Total Customers": 44.0, "Median Spend per Transaction": 33.23, "Median Spend per Customer": 33.23 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4jv", "Name": "Embroidery King", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "6190 Rising Sun Ave", "LATITUDE": 40.046955, "LONGITUDE": -75.098445, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 28.0, "POI_CBG": 421010305021.0, "Median Dwell Time": 297.0, "Total Spend": 6088.0, "Total Transactions": 22.0, "Total Customers": 16.0, "Median Spend per Transaction": 193.0, "Median Spend per Customer": 243.75 }, "geometry": { "type": "Point", "coordinates": [ -75.098445, 40.046955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-j7q", "Name": "Sues Produce Market", "Category": "Grocery Stores", "Address": "114 S 18th St", "LATITUDE": 39.951234, "LONGITUDE": -75.170685, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 123.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 2499.0, "Total Transactions": 149.0, "Total Customers": 97.0, "Median Spend per Transaction": 13.52, "Median Spend per Customer": 14.79 }, "geometry": { "type": "Point", "coordinates": [ -75.170685, 39.951234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg9-ty9", "Name": "I Tea", "Category": "Restaurants and Other Eating Places", "Address": "1537 Spring Garden St", "LATITUDE": 39.963033, "LONGITUDE": -75.164167, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 10.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 802.0, "Total Spend": 1432.0, "Total Transactions": 69.0, "Total Customers": 50.0, "Median Spend per Transaction": 15.93, "Median Spend per Customer": 25.33 }, "geometry": { "type": "Point", "coordinates": [ -75.164167, 39.963033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "Name": "Mr Wings", "Category": "Restaurants and Other Eating Places", "Address": "500 W Oregon Ave", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 2.0, "Total Spend": 2781.0, "Total Transactions": 119.0, "Total Customers": 75.0, "Median Spend per Transaction": 24.36, "Median Spend per Customer": 33.45 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-d5f", "Name": "Allen Tire & Service", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4410 E Howell St", "LATITUDE": 40.019598, "LONGITUDE": -75.06328, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010319003.0, "Median Dwell Time": 41.0, "Total Spend": 10844.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 288.23, "Median Spend per Customer": 263.32 }, "geometry": { "type": "Point", "coordinates": [ -75.06328, 40.019598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj4-v4v", "Name": "Taqueria La Raza", "Category": "Restaurants and Other Eating Places", "Address": "227 W Allegheny Ave", "LATITUDE": 39.999423, "LONGITUDE": -75.134255, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 16.0, "Total Spend": 695.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 24.91, "Median Spend per Customer": 29.29 }, "geometry": { "type": "Point", "coordinates": [ -75.134255, 39.999423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-v75", "Name": "JJ Bootleggers", "Category": "Restaurants and Other Eating Places", "Address": "35 S 2nd St", "LATITUDE": 39.94896, "LONGITUDE": -75.143844, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 2298.0, "Total Transactions": 36.0, "Total Customers": 30.0, "Median Spend per Transaction": 45.34, "Median Spend per Customer": 67.73 }, "geometry": { "type": "Point", "coordinates": [ -75.143844, 39.94896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-ks5", "Name": "Oxford Pharmacy", "Category": "Health and Personal Care Stores", "Address": "3254 N Front St", "LATITUDE": 39.999792, "LONGITUDE": -75.129213, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 137.0, "POI_CBG": 421010195013.0, "Median Dwell Time": 16.0, "Total Spend": 6804.0, "Total Transactions": 189.0, "Total Customers": 137.0, "Median Spend per Transaction": 32.71, "Median Spend per Customer": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.129213, 39.999792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-y7q", "Name": "E Mei Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "915 Arch St", "LATITUDE": 39.953596, "LONGITUDE": -75.155422, "DATE_RANGE_START": 2020, "Total Visits": 2451.0, "Total Visitors": 1481.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 201.0, "Total Spend": 1669.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 41.45, "Median Spend per Customer": 41.45 }, "geometry": { "type": "Point", "coordinates": [ -75.155422, 39.953596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-nnq", "Name": "Square Pie", "Category": "Restaurants and Other Eating Places", "Address": "600 Catharine St", "LATITUDE": 39.938609, "LONGITUDE": -75.152665, "DATE_RANGE_START": 2020, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010017002.0, "Median Dwell Time": null, "Total Spend": 2869.0, "Total Transactions": 89.0, "Total Customers": 77.0, "Median Spend per Transaction": 24.84, "Median Spend per Customer": 36.02 }, "geometry": { "type": "Point", "coordinates": [ -75.152665, 39.938609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2100 Market St", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2020, "Total Visits": 234.0, "Total Visitors": 187.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 3.0, "Total Spend": 2385.0, "Total Transactions": 401.0, "Total Customers": 206.0, "Median Spend per Transaction": 5.02, "Median Spend per Customer": 7.59 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-d35", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2201 2219 South Broad Street Commerce Plaza", "LATITUDE": 39.922445, "LONGITUDE": -75.169848, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 77.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 2.0, "Total Spend": 3018.0, "Total Transactions": 333.0, "Total Customers": 222.0, "Median Spend per Transaction": 7.6, "Median Spend per Customer": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.169848, 39.922445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "Name": "Papa Nick's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "199 W Godfrey Ave", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 8.0, "POI_CBG": 421010272003.0, "Median Dwell Time": 306.0, "Total Spend": 3229.0, "Total Transactions": 139.0, "Total Customers": 91.0, "Median Spend per Transaction": 19.9, "Median Spend per Customer": 26.55 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "Name": "Wah Gi Wah Halal", "Category": "Restaurants and Other Eating Places", "Address": "4447 Chestnut St", "LATITUDE": 39.956965, "LONGITUDE": -75.211135, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 12.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 217.0, "Total Spend": 3595.0, "Total Transactions": 73.0, "Total Customers": 58.0, "Median Spend per Transaction": 41.29, "Median Spend per Customer": 48.03 }, "geometry": { "type": "Point", "coordinates": [ -75.211135, 39.956965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pmf-pvz", "Name": "Bistro La Baia", "Category": "Restaurants and Other Eating Places", "Address": "1700 Lombard St", "LATITUDE": 39.945165, "LONGITUDE": -75.170267, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 1.0, "Total Spend": 2168.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 60.76, "Median Spend per Customer": 69.12 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.945165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "Name": "Smiley's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4251 Main St", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 83.0, "Total Spend": 1465.0, "Total Transactions": 77.0, "Total Customers": 62.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "Name": "Claire's", "Category": "Clothing Stores", "Address": "2329 Cottman Ave", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 44.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 4.0, "Total Spend": 5145.0, "Total Transactions": 107.0, "Total Customers": 103.0, "Median Spend per Transaction": 39.98, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Girard Ave", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 56.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 7.0, "Total Spend": 9051.0, "Total Transactions": 595.0, "Total Customers": 464.0, "Median Spend per Transaction": 12.83, "Median Spend per Customer": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp4-zfz", "Name": "Liberty Gas Station", "Category": "Gasoline Stations", "Address": "101 W Lehigh Ave", "LATITUDE": 39.991196, "LONGITUDE": -75.131119, "DATE_RANGE_START": 2020, "Total Visits": 236.0, "Total Visitors": 175.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 4.0, "Total Spend": 9298.0, "Total Transactions": 234.0, "Total Customers": 173.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 25.73 }, "geometry": { "type": "Point", "coordinates": [ -75.131119, 39.991196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "Name": "Tiffany & Co.", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1715 Walnut St", "LATITUDE": 39.950223, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2020, "Total Visits": 381.0, "Total Visitors": 298.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 77.0, "Total Spend": 32011.0, "Total Transactions": 52.0, "Total Customers": 50.0, "Median Spend per Transaction": 232.01, "Median Spend per Customer": 224.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.950223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pfv-649", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6555 Greene St", "LATITUDE": 40.043396, "LONGITUDE": -75.190646, "DATE_RANGE_START": 2020, "Total Visits": 349.0, "Total Visitors": 216.0, "POI_CBG": 421010237001.0, "Median Dwell Time": 6.0, "Total Spend": 3921.0, "Total Transactions": 447.0, "Total Customers": 244.0, "Median Spend per Transaction": 7.29, "Median Spend per Customer": 9.63 }, "geometry": { "type": "Point", "coordinates": [ -75.190646, 40.043396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-qs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2500 Island Ave & Elmwood Ave", "LATITUDE": 39.912518, "LONGITUDE": -75.243563, "DATE_RANGE_START": 2020, "Total Visits": 1038.0, "Total Visitors": 744.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 4.0, "Total Spend": 1053.0, "Total Transactions": 46.0, "Total Customers": 44.0, "Median Spend per Transaction": 21.05, "Median Spend per Customer": 22.51 }, "geometry": { "type": "Point", "coordinates": [ -75.243563, 39.912518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "Name": "Off Broadway Shoe Warehouse", "Category": "Shoe Stores", "Address": "1477 Franklin Mills Cir", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2020, "Total Visits": 929.0, "Total Visitors": 824.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 17.0, "Total Spend": 2089.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 60.78, "Median Spend per Customer": 56.49 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmf-j35", "Name": "Benjamin Lovell Shoes", "Category": "Shoe Stores", "Address": "1728 Chestnut St", "LATITUDE": 39.95135, "LONGITUDE": -75.169937, "DATE_RANGE_START": 2020, "Total Visits": 1274.0, "Total Visitors": 806.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 23.0, "Total Spend": 4261.0, "Total Transactions": 44.0, "Total Customers": 36.0, "Median Spend per Transaction": 99.97, "Median Spend per Customer": 129.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169937, 39.95135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "Name": "Buffalo Exchange", "Category": "Used Merchandise Stores", "Address": "1520 Chestnut St", "LATITUDE": 39.951062, "LONGITUDE": -75.166599, "DATE_RANGE_START": 2020, "Total Visits": 3543.0, "Total Visitors": 2235.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 42.0, "Total Spend": 12925.0, "Total Transactions": 322.0, "Total Customers": 238.0, "Median Spend per Transaction": 30.5, "Median Spend per Customer": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.166599, 39.951062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-87q", "Name": "Rittenhouse Needlepoint", "Category": "Other Miscellaneous Store Retailers", "Address": "1216 Arch St Ste 2A", "LATITUDE": 39.953747, "LONGITUDE": -75.160369, "DATE_RANGE_START": 2020, "Total Visits": 1973.0, "Total Visitors": 1413.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 435.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 52.6, "Median Spend per Customer": 52.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160369, 39.953747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "Name": "Fairmart", "Category": "Grocery Stores", "Address": "623 Fairmount Ave", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010131001.0, "Median Dwell Time": 2.0, "Total Spend": 3480.0, "Total Transactions": 268.0, "Total Customers": 137.0, "Median Spend per Transaction": 8.07, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8j-ct9", "Name": "New London Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7230 Frankford Ave", "LATITUDE": 40.036249, "LONGITUDE": -75.042416, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 5.0, "Total Spend": 1711.0, "Total Transactions": 62.0, "Total Customers": 58.0, "Median Spend per Transaction": 28.25, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.042416, 40.036249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "Name": "Frame Fatale", "Category": "Home Furnishings Stores", "Address": "1813 E Passyunk Ave", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2020, "Total Visits": 621.0, "Total Visitors": 353.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 446.0, "Total Spend": 1427.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 244.88, "Median Spend per Customer": 244.88 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "Name": "CHAPMAN NISSAN", "Category": "Automobile Dealers", "Address": "6723 Essington Ave", "LATITUDE": 39.910684, "LONGITUDE": -75.224285, "DATE_RANGE_START": 2020, "Total Visits": 1050.0, "Total Visitors": 597.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 73.0, "Total Spend": 31288.0, "Total Transactions": 97.0, "Total Customers": 87.0, "Median Spend per Transaction": 111.53, "Median Spend per Customer": 143.52 }, "geometry": { "type": "Point", "coordinates": [ -75.224285, 39.910684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "Name": "The Capital Grille", "Category": "Restaurants and Other Eating Places", "Address": "1338 Chestnut St # 46", "LATITUDE": 39.950707, "LONGITUDE": -75.163622, "DATE_RANGE_START": 2020, "Total Visits": 367.0, "Total Visitors": 226.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1208.0, "Total Spend": 9031.0, "Total Transactions": 93.0, "Total Customers": 71.0, "Median Spend per Transaction": 92.07, "Median Spend per Customer": 125.49 }, "geometry": { "type": "Point", "coordinates": [ -75.163622, 39.950707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pmf-hh5", "Name": "Koreana", "Category": "Restaurants and Other Eating Places", "Address": "37 S 19th St", "LATITUDE": 39.952324, "LONGITUDE": -75.171634, "DATE_RANGE_START": 2020, "Total Visits": 133.0, "Total Visitors": 111.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 98.0, "Total Spend": 718.0, "Total Transactions": 40.0, "Total Customers": 34.0, "Median Spend per Transaction": 12.83, "Median Spend per Customer": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.171634, 39.952324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "2552 Grant Ave", "LATITUDE": 40.079208, "LONGITUDE": -75.02664, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 264.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 7706.0, "Total Transactions": 329.0, "Total Customers": 284.0, "Median Spend per Transaction": 19.38, "Median Spend per Customer": 23.53 }, "geometry": { "type": "Point", "coordinates": [ -75.02664, 40.079208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7520 City Ave", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2020, "Total Visits": 425.0, "Total Visitors": 318.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 2.0, "Total Spend": 6730.0, "Total Transactions": 965.0, "Total Customers": 568.0, "Median Spend per Transaction": 5.88, "Median Spend per Customer": 8.22 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "Name": "iMunch Cafe", "Category": "Health and Personal Care Stores", "Address": "1233 N 31st St", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 8.0, "POI_CBG": 421010137005.0, "Median Dwell Time": 2.0, "Total Spend": 3105.0, "Total Transactions": 177.0, "Total Customers": 145.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 16.47 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-zmk", "Name": "Hip Hemp Cafe", "Category": "Restaurants and Other Eating Places", "Address": "607 S 7th St", "LATITUDE": 39.94189, "LONGITUDE": -75.153788, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 232.0, "Total Spend": 3091.0, "Total Transactions": 77.0, "Total Customers": 64.0, "Median Spend per Transaction": 24.59, "Median Spend per Customer": 32.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153788, 39.94189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5601 Vine St # 55", "LATITUDE": 39.966061, "LONGITUDE": -75.233588, "DATE_RANGE_START": 2020, "Total Visits": 411.0, "Total Visitors": 359.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 8.0, "Total Spend": 21356.0, "Total Transactions": 407.0, "Total Customers": 343.0, "Median Spend per Transaction": 31.3, "Median Spend per Customer": 38.83 }, "geometry": { "type": "Point", "coordinates": [ -75.233588, 39.966061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22h@628-pmb-7yv", "Name": "Sweet As Fudge Candy Shoppe", "Category": "Specialty Food Stores", "Address": "12th & Arch St Reading Terminal Market", "LATITUDE": 39.954075, "LONGITUDE": -75.15933, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 25.0, "Total Spend": 505.0, "Total Transactions": 44.0, "Total Customers": 40.0, "Median Spend per Transaction": 9.66, "Median Spend per Customer": 10.51 }, "geometry": { "type": "Point", "coordinates": [ -75.15933, 39.954075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7700 Crittenden St", "LATITUDE": 40.072233, "LONGITUDE": -75.194825, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 208.0, "POI_CBG": 421010257001.0, "Median Dwell Time": 7.0, "Total Spend": 3795.0, "Total Transactions": 193.0, "Total Customers": 125.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.194825, 40.072233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "Name": "Jomici Apothecary", "Category": "Health and Personal Care Stores", "Address": "273 S 15th St", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2020, "Total Visits": 159.0, "Total Visitors": 135.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 4.0, "Total Spend": 482.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 56.95, "Median Spend per Customer": 50.67 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm5-fj9", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "80 E Oregon Ave", "LATITUDE": 39.913638, "LONGITUDE": -75.149864, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 224.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 1092.0, "Total Transactions": 42.0, "Total Customers": 40.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149864, 39.913638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1801 W Hunting Park Ave", "LATITUDE": 40.014555, "LONGITUDE": -75.15728, "DATE_RANGE_START": 2020, "Total Visits": 1516.0, "Total Visitors": 1209.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 4.0, "Total Spend": 9165.0, "Total Transactions": 435.0, "Total Customers": 318.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 23.47 }, "geometry": { "type": "Point", "coordinates": [ -75.15728, 40.014555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "8261 Stenton Ave", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2020, "Total Visits": 1778.0, "Total Visitors": 1256.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 5.0, "Total Spend": 2696.0, "Total Transactions": 109.0, "Total Customers": 87.0, "Median Spend per Transaction": 20.78, "Median Spend per Customer": 26.48 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7615 Lindbergh Blvd", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2020, "Total Visits": 621.0, "Total Visitors": 425.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 8.0, "Total Spend": 4031.0, "Total Transactions": 139.0, "Total Customers": 91.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 22.02 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p7w-x3q", "Name": "Mobil", "Category": "Gasoline Stations", "Address": "3301 Tyson Ave", "LATITUDE": 40.035465, "LONGITUDE": -75.049236, "DATE_RANGE_START": 2020, "Total Visits": 1826.0, "Total Visitors": 973.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 5.0, "Total Spend": 839.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 60.46, "Median Spend per Customer": 60.46 }, "geometry": { "type": "Point", "coordinates": [ -75.049236, 40.035465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "Name": "Pitchers Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4326 Main St", "LATITUDE": 40.025059, "LONGITUDE": -75.223033, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 51.0, "Total Spend": 3558.0, "Total Transactions": 87.0, "Total Customers": 54.0, "Median Spend per Transaction": 36.35, "Median Spend per Customer": 36.4 }, "geometry": { "type": "Point", "coordinates": [ -75.223033, 40.025059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4000 Monument Rd", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2020, "Total Visits": 4851.0, "Total Visitors": 3533.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 19.0, "Total Spend": 733734.0, "Total Transactions": 12426.0, "Total Customers": 7461.0, "Median Spend per Transaction": 36.91, "Median Spend per Customer": 62.01 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "Name": "Green Leaf Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7520 Haverford Ave", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 26.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 79.0, "Total Spend": 793.0, "Total Transactions": 56.0, "Total Customers": 36.0, "Median Spend per Transaction": 11.67, "Median Spend per Customer": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmd-rx5", "Name": "Cotoletta Fitler Square", "Category": "Restaurants and Other Eating Places", "Address": "2227 Pine St", "LATITUDE": 39.947447, "LONGITUDE": -75.179191, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 240.0, "Total Spend": 690.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 46.33, "Median Spend per Customer": 46.33 }, "geometry": { "type": "Point", "coordinates": [ -75.179191, 39.947447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "Name": "Dim Sum & Noodle", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 104", "LATITUDE": 39.962276, "LONGITUDE": -75.172659, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 50.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 5.0, "Total Spend": 4223.0, "Total Transactions": 153.0, "Total Customers": 109.0, "Median Spend per Transaction": 24.25, "Median Spend per Customer": 37.64 }, "geometry": { "type": "Point", "coordinates": [ -75.172659, 39.962276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "Name": "Melograno", "Category": "Restaurants and Other Eating Places", "Address": "2012 Sansom St", "LATITUDE": 39.951247, "LONGITUDE": -75.174115, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010007001.0, "Median Dwell Time": null, "Total Spend": 433.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 38.4, "Median Spend per Customer": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174115, 39.951247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-8gk", "Name": "Colinas Mini Market", "Category": "Grocery Stores", "Address": "130 S 60th St", "LATITUDE": 39.95962, "LONGITUDE": -75.241489, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010083022.0, "Median Dwell Time": null, "Total Spend": 487.0, "Total Transactions": 56.0, "Total Customers": 26.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241489, 39.95962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pgb-6tv", "Name": "Fairmount Framing", "Category": "Home Furnishings Stores", "Address": "754 N 25th St", "LATITUDE": 39.968987, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 14.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 2.0, "Total Spend": 1086.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 164.0, "Median Spend per Customer": 164.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.968987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "Name": "The Ritz-Carlton", "Category": "Traveler Accommodation", "Address": "10 Avenue of the Arts", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2020, "Total Visits": 4895.0, "Total Visitors": 3674.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 57.0, "Total Spend": 18078.0, "Total Transactions": 40.0, "Total Customers": 36.0, "Median Spend per Transaction": 394.14, "Median Spend per Customer": 367.63 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmb-5fz", "Name": "1225Raw Sushi and Sake Lounge", "Category": "Restaurants and Other Eating Places", "Address": "1225 Sansom St", "LATITUDE": 39.950027, "LONGITUDE": -75.161491, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 67.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 3413.0, "Total Transactions": 38.0, "Total Customers": 28.0, "Median Spend per Transaction": 107.2, "Median Spend per Customer": 60.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161491, 39.950027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "Name": "Bruno's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1838 W Cheltenham Ave", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2020, "Total Visits": 111.0, "Total Visitors": 105.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 38.0, "Total Spend": 1166.0, "Total Transactions": 67.0, "Total Customers": 52.0, "Median Spend per Transaction": 13.61, "Median Spend per Customer": 20.63 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "Name": "Revolution House", "Category": "Restaurants and Other Eating Places", "Address": "200 Market St", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 95.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 2.0, "Total Spend": 11008.0, "Total Transactions": 167.0, "Total Customers": 153.0, "Median Spend per Transaction": 57.22, "Median Spend per Customer": 57.95 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "Name": "TGI Fridays", "Category": "Restaurants and Other Eating Places", "Address": "4000 City Ave", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2020, "Total Visits": 615.0, "Total Visitors": 472.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 26.0, "Total Spend": 11761.0, "Total Transactions": 316.0, "Total Customers": 274.0, "Median Spend per Transaction": 34.85, "Median Spend per Customer": 41.05 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "Name": "Dairy Queen", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave", "LATITUDE": 40.087375, "LONGITUDE": -75.039949, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 107.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 2.0, "Total Spend": 2800.0, "Total Transactions": 200.0, "Total Customers": 193.0, "Median Spend per Transaction": 10.56, "Median Spend per Customer": 11.21 }, "geometry": { "type": "Point", "coordinates": [ -75.039949, 40.087375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "90 Franklin Mills Blvd", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2020, "Total Visits": 411.0, "Total Visitors": 316.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 7.0, "Total Spend": 6086.0, "Total Transactions": 431.0, "Total Customers": 335.0, "Median Spend per Transaction": 11.51, "Median Spend per Customer": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "416 N 63rd St # 36", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2020, "Total Visits": 413.0, "Total Visitors": 248.0, "POI_CBG": 421010101005.0, "Median Dwell Time": 2.0, "Total Spend": 4240.0, "Total Transactions": 562.0, "Total Customers": 371.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfz-ch5", "Name": "Craft Manayunk", "Category": "Restaurants and Other Eating Places", "Address": "4141 Main St", "LATITUDE": 40.022994, "LONGITUDE": -75.219064, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 15.0, "Total Spend": 15269.0, "Total Transactions": 274.0, "Total Customers": 202.0, "Median Spend per Transaction": 46.74, "Median Spend per Customer": 48.44 }, "geometry": { "type": "Point", "coordinates": [ -75.219064, 40.022994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-sdv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "411 W Oregon Ave", "LATITUDE": 39.915109, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2020, "Total Visits": 212.0, "Total Visitors": 185.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 3.0, "Total Spend": 551.0, "Total Transactions": 34.0, "Total Customers": 32.0, "Median Spend per Transaction": 13.59, "Median Spend per Customer": 15.05 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.915109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-jgk", "Name": "DanDan", "Category": "Restaurants and Other Eating Places", "Address": "126 S 16th St", "LATITUDE": 39.950263, "LONGITUDE": -75.1676, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 85.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 39.0, "Total Spend": 4737.0, "Total Transactions": 157.0, "Total Customers": 115.0, "Median Spend per Transaction": 27.2, "Median Spend per Customer": 34.36 }, "geometry": { "type": "Point", "coordinates": [ -75.1676, 39.950263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-7yv", "Name": "Old City Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953757, "LONGITUDE": -75.158885, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 231.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 5.8, "Median Spend per Customer": 5.25 }, "geometry": { "type": "Point", "coordinates": [ -75.158885, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5506 Chestnut St # 12", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2020, "Total Visits": 466.0, "Total Visitors": 337.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 3.0, "Total Spend": 5844.0, "Total Transactions": 798.0, "Total Customers": 457.0, "Median Spend per Transaction": 5.9, "Median Spend per Customer": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgb-47q", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "1500 Spring Garden St", "LATITUDE": 39.962439, "LONGITUDE": -75.1634, "DATE_RANGE_START": 2020, "Total Visits": 1348.0, "Total Visitors": 677.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 200.0, "Total Spend": 166.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 11.4, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1634, 39.962439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "801 S Broad St", "LATITUDE": 39.940581, "LONGITUDE": -75.165835, "DATE_RANGE_START": 2020, "Total Visits": 1312.0, "Total Visitors": 782.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 6.0, "Total Spend": 1696.0, "Total Transactions": 87.0, "Total Customers": 62.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165835, 39.940581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-2hq", "Name": "Venus Video", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "6307 Passyunk Ave", "LATITUDE": 39.917066, "LONGITUDE": -75.216791, "DATE_RANGE_START": 2020, "Total Visits": 1274.0, "Total Visitors": 921.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 21.0, "Total Spend": 2630.0, "Total Transactions": 62.0, "Total Customers": 60.0, "Median Spend per Transaction": 37.77, "Median Spend per Customer": 40.7 }, "geometry": { "type": "Point", "coordinates": [ -75.216791, 39.917066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "Name": "Four Seasons Diner", "Category": "Restaurants and Other Eating Places", "Address": "2811 Cottman Ave", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2020, "Total Visits": 298.0, "Total Visitors": 228.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 34.0, "Total Spend": 4815.0, "Total Transactions": 157.0, "Total Customers": 127.0, "Median Spend per Transaction": 26.79, "Median Spend per Customer": 31.35 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-6p9", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "1515 Chestnut St", "LATITUDE": 39.951312, "LONGITUDE": -75.166086, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 198.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 713.0, "Total Spend": 115.0, "Total Transactions": 16.0, "Total Customers": 4.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 28.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166086, 39.951312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-k4v", "Name": "Kisso Sushi", "Category": "Restaurants and Other Eating Places", "Address": "205 N 4th St", "LATITUDE": 39.954278, "LONGITUDE": -75.146239, "DATE_RANGE_START": 2020, "Total Visits": 1108.0, "Total Visitors": 732.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 158.0, "Total Spend": 875.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 74.45, "Median Spend per Customer": 84.49 }, "geometry": { "type": "Point", "coordinates": [ -75.146239, 39.954278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "Name": "Yummy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1807 John F Kennedy Blvd", "LATITUDE": 39.954519, "LONGITUDE": -75.170234, "DATE_RANGE_START": 2020, "Total Visits": 248.0, "Total Visitors": 127.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 118.0, "Total Spend": 959.0, "Total Transactions": 38.0, "Total Customers": 28.0, "Median Spend per Transaction": 17.58, "Median Spend per Customer": 22.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170234, 39.954519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "Name": "Nam Phuong", "Category": "Restaurants and Other Eating Places", "Address": "1100 Washington Ave", "LATITUDE": 39.936493, "LONGITUDE": -75.162002, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 179.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 13.0, "Total Spend": 4112.0, "Total Transactions": 103.0, "Total Customers": 89.0, "Median Spend per Transaction": 33.03, "Median Spend per Customer": 32.62 }, "geometry": { "type": "Point", "coordinates": [ -75.162002, 39.936493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "314 W Lehigh Ave", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 151.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 6.0, "Total Spend": 6257.0, "Total Transactions": 320.0, "Total Customers": 274.0, "Median Spend per Transaction": 17.26, "Median Spend per Customer": 18.86 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mzf", "Name": "Passero's Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "1601 John F Kennedy Blvd", "LATITUDE": 39.954206, "LONGITUDE": -75.167446, "DATE_RANGE_START": 2020, "Total Visits": 2549.0, "Total Visitors": 1453.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 252.0, "Total Spend": 816.0, "Total Transactions": 107.0, "Total Customers": 67.0, "Median Spend per Transaction": 6.2, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167446, 39.954206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-4jv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "490 N Broad St", "LATITUDE": 39.962295, "LONGITUDE": -75.162022, "DATE_RANGE_START": 2020, "Total Visits": 824.0, "Total Visitors": 584.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 6.0, "Total Spend": 2077.0, "Total Transactions": 298.0, "Total Customers": 183.0, "Median Spend per Transaction": 5.56, "Median Spend per Customer": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.162022, 39.962295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "10050 Roosevelt Blvd", "LATITUDE": 40.095685, "LONGITUDE": -75.015058, "DATE_RANGE_START": 2020, "Total Visits": 268.0, "Total Visitors": 236.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 4.0, "Total Spend": 1538.0, "Total Transactions": 258.0, "Total Customers": 119.0, "Median Spend per Transaction": 4.98, "Median Spend per Customer": 7.86 }, "geometry": { "type": "Point", "coordinates": [ -75.015058, 40.095685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.933087, "LONGITUDE": -75.144618, "DATE_RANGE_START": 2020, "Total Visits": 955.0, "Total Visitors": 593.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 2.0, "Total Spend": 18379.0, "Total Transactions": 2662.0, "Total Customers": 1250.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -75.144618, 39.933087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "Name": "Sawatdee Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "534 S 15th St", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 66.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 208.0, "Total Spend": 900.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 40.91, "Median Spend per Customer": 40.91 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-pn5", "Name": "Hummus Grill", "Category": "Restaurants and Other Eating Places", "Address": "3931 Walnut St", "LATITUDE": 39.954342, "LONGITUDE": -75.202153, "DATE_RANGE_START": 2020, "Total Visits": 193.0, "Total Visitors": 151.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 11.0, "Total Spend": 2757.0, "Total Transactions": 183.0, "Total Customers": 137.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 15.38 }, "geometry": { "type": "Point", "coordinates": [ -75.202153, 39.954342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "Name": "King Wok Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "13631 Philmont Ave", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2020, "Total Visits": 107.0, "Total Visitors": 73.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 8.0, "Total Spend": 1035.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 36.45, "Median Spend per Customer": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pjf-ks5", "Name": "Threadwell", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "8432 Germantown Ave", "LATITUDE": 40.075533, "LONGITUDE": -75.206071, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 16.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 2.0, "Total Spend": 463.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206071, 40.075533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8h-5xq", "Name": "New Station Pizza Iv", "Category": "Restaurants and Other Eating Places", "Address": "6904 Torresdale Ave", "LATITUDE": 40.026249, "LONGITUDE": -75.043153, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 16.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 237.0, "Total Spend": 627.0, "Total Transactions": 40.0, "Total Customers": 38.0, "Median Spend per Transaction": 14.77, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.043153, 40.026249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "Name": "The Twisted Tail", "Category": "Restaurants and Other Eating Places", "Address": "509 S 2nd St", "LATITUDE": 39.941828, "LONGITUDE": -75.145203, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 16.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 17.0, "Total Spend": 11874.0, "Total Transactions": 171.0, "Total Customers": 151.0, "Median Spend per Transaction": 57.84, "Median Spend per Customer": 66.09 }, "geometry": { "type": "Point", "coordinates": [ -75.145203, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "Name": "Kei Sushi Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1711 South St", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 3.0, "Total Spend": 5657.0, "Total Transactions": 109.0, "Total Customers": 93.0, "Median Spend per Transaction": 43.88, "Median Spend per Customer": 57.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-gff", "Name": "AAA Distributor", "Category": "Home Furnishings Stores", "Address": "2501 Grant Ave", "LATITUDE": 40.079352, "LONGITUDE": -75.023999, "DATE_RANGE_START": 2020, "Total Visits": 586.0, "Total Visitors": 474.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 27.0, "Total Spend": 7013.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 352.62, "Median Spend per Customer": 533.52 }, "geometry": { "type": "Point", "coordinates": [ -75.023999, 40.079352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2017 S Broad St # 2023", "LATITUDE": 39.924926, "LONGITUDE": -75.169063, "DATE_RANGE_START": 2020, "Total Visits": 1411.0, "Total Visitors": 859.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 13.0, "Total Spend": 5379.0, "Total Transactions": 306.0, "Total Customers": 177.0, "Median Spend per Transaction": 12.59, "Median Spend per Customer": 23.52 }, "geometry": { "type": "Point", "coordinates": [ -75.169063, 39.924926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dwf-bhq", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2910 S 70th St Unit 3B", "LATITUDE": 39.912436, "LONGITUDE": -75.233807, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 228.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 5.0, "Total Spend": 566.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 10.94, "Median Spend per Customer": 18.48 }, "geometry": { "type": "Point", "coordinates": [ -75.233807, 39.912436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11749 Bustleton Ave Ste 14", "LATITUDE": 40.120348, "LONGITUDE": -75.015989, "DATE_RANGE_START": 2020, "Total Visits": 723.0, "Total Visitors": 580.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 8.0, "Total Spend": 892.0, "Total Transactions": 64.0, "Total Customers": 38.0, "Median Spend per Transaction": 12.25, "Median Spend per Customer": 12.06 }, "geometry": { "type": "Point", "coordinates": [ -75.015989, 40.120348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2634 N Broad St # 44", "LATITUDE": 39.993791, "LONGITUDE": -75.155151, "DATE_RANGE_START": 2020, "Total Visits": 1886.0, "Total Visitors": 1163.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 8.0, "Total Spend": 558.0, "Total Transactions": 26.0, "Total Customers": 22.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.02 }, "geometry": { "type": "Point", "coordinates": [ -75.155151, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8t-w8v", "Name": "jasmine Inc", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087715, "LONGITUDE": -74.961773, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 66.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 16.0, "Total Spend": 909.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 21.94, "Median Spend per Customer": 21.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961773, 40.087715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2327 Cottman Ave", "LATITUDE": 40.048258, "LONGITUDE": -75.056175, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 135.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 16.0, "Total Spend": 12334.0, "Total Transactions": 216.0, "Total Customers": 185.0, "Median Spend per Transaction": 42.95, "Median Spend per Customer": 45.33 }, "geometry": { "type": "Point", "coordinates": [ -75.056175, 40.048258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2417 Welsh Rd", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2020, "Total Visits": 264.0, "Total Visitors": 185.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 6.0, "Total Spend": 1501.0, "Total Transactions": 77.0, "Total Customers": 56.0, "Median Spend per Transaction": 17.93, "Median Spend per Customer": 16.77 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wtv", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "701 Market St", "LATITUDE": 39.951227, "LONGITUDE": -75.152425, "DATE_RANGE_START": 2020, "Total Visits": 625.0, "Total Visitors": 429.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 28.0, "Total Spend": 13600.0, "Total Transactions": 828.0, "Total Customers": 588.0, "Median Spend per Transaction": 9.99, "Median Spend per Customer": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152425, 39.951227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-47q", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2298 W Ritner St", "LATITUDE": 39.921468, "LONGITUDE": -75.184708, "DATE_RANGE_START": 2020, "Total Visits": 314.0, "Total Visitors": 244.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 11.0, "Total Spend": 4923.0, "Total Transactions": 44.0, "Total Customers": 40.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.184708, 39.921468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5201 Rising Sun Ave", "LATITUDE": 40.029093, "LONGITUDE": -75.118871, "DATE_RANGE_START": 2020, "Total Visits": 496.0, "Total Visitors": 326.0, "POI_CBG": 421010290004.0, "Median Dwell Time": 10.0, "Total Spend": 565.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 11.61, "Median Spend per Customer": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.118871, 40.029093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7913 Oxford Ave # 29", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2020, "Total Visits": 820.0, "Total Visitors": 582.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 3.0, "Total Spend": 73392.0, "Total Transactions": 4665.0, "Total Customers": 2146.0, "Median Spend per Transaction": 11.93, "Median Spend per Customer": 22.86 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "Name": "Somerton Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "10853 Bustleton Ave", "LATITUDE": 40.110353, "LONGITUDE": -75.024095, "DATE_RANGE_START": 2020, "Total Visits": 1489.0, "Total Visitors": 1108.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 4.0, "Total Spend": 586.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 147.5, "Median Spend per Customer": 147.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024095, 40.110353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "229 W Allegheny Ave", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2020, "Total Visits": 592.0, "Total Visitors": 427.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 32.0, "Total Spend": 1228.0, "Total Transactions": 149.0, "Total Customers": 79.0, "Median Spend per Transaction": 6.64, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-7yv", "Name": "7 Brothers Supermarket", "Category": "Grocery Stores", "Address": "180 W Duncannon Ave", "LATITUDE": 40.027871, "LONGITUDE": -75.125835, "DATE_RANGE_START": 2020, "Total Visits": 707.0, "Total Visitors": 520.0, "POI_CBG": 421010286001.0, "Median Dwell Time": 17.0, "Total Spend": 816.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 22.34, "Median Spend per Customer": 23.46 }, "geometry": { "type": "Point", "coordinates": [ -75.125835, 40.027871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-f4v", "Name": "Q The Tire Doctor", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1961 N 29th St", "LATITUDE": 39.986136, "LONGITUDE": -75.180823, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 54.0, "POI_CBG": 421010151022.0, "Median Dwell Time": 1.0, "Total Spend": 719.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 181.0, "Median Spend per Customer": 181.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180823, 39.986136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "1850 E Sedgley Ave", "LATITUDE": 40.002434, "LONGITUDE": -75.100336, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 58.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 2.0, "Total Spend": 69313.0, "Total Transactions": 69.0, "Total Customers": 24.0, "Median Spend per Transaction": 491.15, "Median Spend per Customer": 720.93 }, "geometry": { "type": "Point", "coordinates": [ -75.100336, 40.002434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "Name": "Just To Serve You", "Category": "Restaurants and Other Eating Places", "Address": "5622 W Girard Ave", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010102001.0, "Median Dwell Time": 47.0, "Total Spend": 1983.0, "Total Transactions": 73.0, "Total Customers": 60.0, "Median Spend per Transaction": 27.54, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "Name": "Rays Cafe & Tea House", "Category": "Restaurants and Other Eating Places", "Address": "141 N 9th St", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 22.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 58.0, "Total Spend": 306.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 28.84, "Median Spend per Customer": 40.32 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg9-xh5", "Name": "Coffee Cream & Dreams", "Category": "Restaurants and Other Eating Places", "Address": "1500 Fairmount Ave", "LATITUDE": 39.966924, "LONGITUDE": -75.162284, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 121.0, "Total Spend": 39.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 5.25, "Median Spend per Customer": 5.25 }, "geometry": { "type": "Point", "coordinates": [ -75.162284, 39.966924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-b49", "Name": "E Cigs International", "Category": "Other Miscellaneous Store Retailers", "Address": "6212 Ridge Ave", "LATITUDE": 40.03586, "LONGITUDE": -75.217916, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 20.0, "POI_CBG": 421010213001.0, "Median Dwell Time": 130.0, "Total Spend": 992.0, "Total Transactions": 22.0, "Total Customers": 16.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 35.36 }, "geometry": { "type": "Point", "coordinates": [ -75.217916, 40.03586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-fs5", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2201 W Oregon Ave", "LATITUDE": 39.919174, "LONGITUDE": -75.184979, "DATE_RANGE_START": 2020, "Total Visits": 1479.0, "Total Visitors": 1086.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 11.0, "Total Spend": 213.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.184979, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nyv", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1000 S Columbus Blvd", "LATITUDE": 39.931469, "LONGITUDE": -75.144907, "DATE_RANGE_START": 2020, "Total Visits": 512.0, "Total Visitors": 411.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 22.0, "Total Spend": 16677.0, "Total Transactions": 87.0, "Total Customers": 71.0, "Median Spend per Transaction": 63.07, "Median Spend per Customer": 66.29 }, "geometry": { "type": "Point", "coordinates": [ -75.144907, 39.931469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5158 Haverford Ave", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 28.0, "POI_CBG": 421010093005.0, "Median Dwell Time": 4.0, "Total Spend": 2382.0, "Total Transactions": 103.0, "Total Customers": 91.0, "Median Spend per Transaction": 16.85, "Median Spend per Customer": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "Name": "El Fuego", "Category": "Restaurants and Other Eating Places", "Address": "723 Walnut St", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 36.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 579.0, "Total Transactions": 52.0, "Total Customers": 34.0, "Median Spend per Transaction": 10.62, "Median Spend per Customer": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "Name": "Xi'an Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "4000 Chestnut St", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 55.0, "Total Spend": 1480.0, "Total Transactions": 42.0, "Total Customers": 42.0, "Median Spend per Transaction": 31.27, "Median Spend per Customer": 31.27 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1900 Welsh Rd # 10", "LATITUDE": 40.08189, "LONGITUDE": -75.037804, "DATE_RANGE_START": 2020, "Total Visits": 409.0, "Total Visitors": 266.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 3.0, "Total Spend": 569.0, "Total Transactions": 67.0, "Total Customers": 30.0, "Median Spend per Transaction": 7.32, "Median Spend per Customer": 11.27 }, "geometry": { "type": "Point", "coordinates": [ -75.037804, 40.08189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-y5f", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "1687 Grant Ave", "LATITUDE": 40.086763, "LONGITUDE": -75.038776, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 87.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 1.0, "Total Spend": 29.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 7.36, "Median Spend per Customer": 7.36 }, "geometry": { "type": "Point", "coordinates": [ -75.038776, 40.086763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1215 Filbert St", "LATITUDE": 39.953206, "LONGITUDE": -75.160514, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 52.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 424.0, "Total Transactions": 56.0, "Total Customers": 40.0, "Median Spend per Transaction": 7.15, "Median Spend per Customer": 7.15 }, "geometry": { "type": "Point", "coordinates": [ -75.160514, 39.953206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-gzf", "Name": "U Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1220 Locust St", "LATITUDE": 39.947628, "LONGITUDE": -75.161514, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 34.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 5.0, "Total Spend": 12479.0, "Total Transactions": 758.0, "Total Customers": 268.0, "Median Spend per Transaction": 13.13, "Median Spend per Customer": 26.45 }, "geometry": { "type": "Point", "coordinates": [ -75.161514, 39.947628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "4356 Main St", "LATITUDE": 40.025386, "LONGITUDE": -75.223869, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 92.0, "Total Spend": 5032.0, "Total Transactions": 127.0, "Total Customers": 117.0, "Median Spend per Transaction": 35.53, "Median Spend per Customer": 39.74 }, "geometry": { "type": "Point", "coordinates": [ -75.223869, 40.025386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-3qz", "Name": "Jana Pharmacy", "Category": "Health and Personal Care Stores", "Address": "413 E Wyoming Ave", "LATITUDE": 40.020931, "LONGITUDE": -75.117668, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010289011.0, "Median Dwell Time": 7.0, "Total Spend": 271.0, "Total Transactions": 18.0, "Total Customers": 10.0, "Median Spend per Transaction": 13.64, "Median Spend per Customer": 22.47 }, "geometry": { "type": "Point", "coordinates": [ -75.117668, 40.020931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm6-jn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "49 Snyder Ave", "LATITUDE": 39.921871, "LONGITUDE": -75.14714, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 38.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 750.0, "Total Transactions": 105.0, "Total Customers": 66.0, "Median Spend per Transaction": 7.11, "Median Spend per Customer": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.14714, 39.921871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-xqz", "Name": "Ambassador", "Category": "Restaurants and Other Eating Places", "Address": "635 W Girard Ave", "LATITUDE": 39.97078, "LONGITUDE": -75.147954, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 71.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 21.0, "Total Spend": 1338.0, "Total Transactions": 36.0, "Total Customers": 24.0, "Median Spend per Transaction": 22.44, "Median Spend per Customer": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.147954, 39.97078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "4430 N Broad St", "LATITUDE": 40.021282, "LONGITUDE": -75.14902, "DATE_RANGE_START": 2020, "Total Visits": 873.0, "Total Visitors": 639.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 7.0, "Total Spend": 4342.0, "Total Transactions": 314.0, "Total Customers": 274.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 12.44 }, "geometry": { "type": "Point", "coordinates": [ -75.14902, 40.021282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "716 Adams Ave", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 127.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 2.0, "Total Spend": 4235.0, "Total Transactions": 284.0, "Total Customers": 242.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgc-wzf", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "1575 N 52nd St Ste 400", "LATITUDE": 39.977954, "LONGITUDE": -75.224016, "DATE_RANGE_START": 2020, "Total Visits": 4192.0, "Total Visitors": 2082.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 21.0, "Total Spend": 1236.0, "Total Transactions": 91.0, "Total Customers": 83.0, "Median Spend per Transaction": 12.46, "Median Spend per Customer": 12.51 }, "geometry": { "type": "Point", "coordinates": [ -75.224016, 39.977954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-3nq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2640 S Carlisle St", "LATITUDE": 39.917267, "LONGITUDE": -75.172584, "DATE_RANGE_START": 2020, "Total Visits": 1020.0, "Total Visitors": 470.0, "POI_CBG": 421010039022.0, "Median Dwell Time": 555.0, "Total Spend": 55.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 4.62, "Median Spend per Customer": 4.62 }, "geometry": { "type": "Point", "coordinates": [ -75.172584, 39.917267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvq-dvz", "Name": "Third Auto Sales Inc", "Category": "Automobile Dealers", "Address": "5347 Whitby Ave", "LATITUDE": 39.94602, "LONGITUDE": -75.229173, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 208.0, "POI_CBG": 421010072002.0, "Median Dwell Time": 8.0, "Total Spend": 1044.0, "Total Transactions": 40.0, "Total Customers": 20.0, "Median Spend per Transaction": 21.65, "Median Spend per Customer": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229173, 39.94602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2034 N Broad St", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2020, "Total Visits": 665.0, "Total Visitors": 433.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 5.0, "Total Spend": 1266.0, "Total Transactions": 149.0, "Total Customers": 109.0, "Median Spend per Transaction": 8.38, "Median Spend per Customer": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5911 Ridge Ave # 5933", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2020, "Total Visits": 518.0, "Total Visitors": 371.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 6.0, "Total Spend": 7046.0, "Total Transactions": 347.0, "Total Customers": 204.0, "Median Spend per Transaction": 16.51, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-cdv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5338 N 5th St", "LATITUDE": 40.033248, "LONGITUDE": -75.131604, "DATE_RANGE_START": 2020, "Total Visits": 790.0, "Total Visitors": 542.0, "POI_CBG": 421010275003.0, "Median Dwell Time": 4.0, "Total Spend": 335.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131604, 40.033248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-qpv", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "800 W Erie Ave", "LATITUDE": 40.007797, "LONGITUDE": -75.141965, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010199002.0, "Median Dwell Time": 7.0, "Total Spend": 334.0, "Total Transactions": 16.0, "Total Customers": 10.0, "Median Spend per Transaction": 22.25, "Median Spend per Customer": 21.95 }, "geometry": { "type": "Point", "coordinates": [ -75.141965, 40.007797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093157, "LONGITUDE": -75.032901, "DATE_RANGE_START": 2020, "Total Visits": 220.0, "Total Visitors": 191.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 6.0, "Total Spend": 1288.0, "Total Transactions": 64.0, "Total Customers": 48.0, "Median Spend per Transaction": 10.91, "Median Spend per Customer": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.032901, 40.093157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-ks5", "Name": "Seasons Flowers", "Category": "Florists", "Address": "211 Arch St", "LATITUDE": 39.952087, "LONGITUDE": -75.143763, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 276.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 379.0, "Total Spend": 514.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 129.6, "Median Spend per Customer": 129.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143763, 39.952087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1919 Market St Ste 150", "LATITUDE": 39.953745, "LONGITUDE": -75.172854, "DATE_RANGE_START": 2020, "Total Visits": 1630.0, "Total Visitors": 975.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 89.0, "Total Spend": 11395.0, "Total Transactions": 546.0, "Total Customers": 308.0, "Median Spend per Transaction": 10.3, "Median Spend per Customer": 18.62 }, "geometry": { "type": "Point", "coordinates": [ -75.172854, 39.953745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-6tv", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "2901 Abbottsford Ave", "LATITUDE": 40.015035, "LONGITUDE": -75.178463, "DATE_RANGE_START": 2020, "Total Visits": 605.0, "Total Visitors": 516.0, "POI_CBG": 421010206001.0, "Median Dwell Time": 4.0, "Total Spend": 840.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 30.11, "Median Spend per Customer": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178463, 40.015035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "Name": "Solly Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8108 Bustleton Ave", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 20.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 35.0, "Total Spend": 1216.0, "Total Transactions": 54.0, "Total Customers": 40.0, "Median Spend per Transaction": 19.12, "Median Spend per Customer": 26.86 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4813 Tacony St # 25", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2020, "Total Visits": 1292.0, "Total Visitors": 1036.0, "POI_CBG": 421010380002.0, "Median Dwell Time": 4.0, "Total Spend": 12109.0, "Total Transactions": 611.0, "Total Customers": 466.0, "Median Spend per Transaction": 19.69, "Median Spend per Customer": 21.76 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "Name": "Frankford Hall", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1210 Frankford Ave", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 250.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 45.0, "Total Spend": 36061.0, "Total Transactions": 1096.0, "Total Customers": 800.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 34.4 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-8n5", "Name": "ALDI", "Category": "Grocery Stores", "Address": "4421 Market St", "LATITUDE": 39.959397, "LONGITUDE": -75.213118, "DATE_RANGE_START": 2020, "Total Visits": 445.0, "Total Visitors": 391.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 6.0, "Total Spend": 54.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 13.66, "Median Spend per Customer": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.213118, 39.959397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912981, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 6.0, "Total Spend": 6352.0, "Total Transactions": 85.0, "Total Customers": 64.0, "Median Spend per Transaction": 25.9, "Median Spend per Customer": 48.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.912981 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030253, "LONGITUDE": -75.101415, "DATE_RANGE_START": 2020, "Total Visits": 772.0, "Total Visitors": 645.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 20.0, "Total Spend": 1883.0, "Total Transactions": 34.0, "Total Customers": 32.0, "Median Spend per Transaction": 31.98, "Median Spend per Customer": 36.62 }, "geometry": { "type": "Point", "coordinates": [ -75.101415, 40.030253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm4-hnq", "Name": "Los Cuatro Soles", "Category": "Restaurants and Other Eating Places", "Address": "1801 S Chadwick St", "LATITUDE": 39.928485, "LONGITUDE": -75.173061, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 26.0, "POI_CBG": 421010030013.0, "Median Dwell Time": 6.0, "Total Spend": 1899.0, "Total Transactions": 50.0, "Total Customers": 40.0, "Median Spend per Transaction": 28.51, "Median Spend per Customer": 46.68 }, "geometry": { "type": "Point", "coordinates": [ -75.173061, 39.928485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "Name": "Shoe Carnival", "Category": "Shoe Stores", "Address": "2135 Cottman Ave", "LATITUDE": 40.049924, "LONGITUDE": -75.062397, "DATE_RANGE_START": 2020, "Total Visits": 1250.0, "Total Visitors": 983.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 18.0, "Total Spend": 15906.0, "Total Transactions": 210.0, "Total Customers": 197.0, "Median Spend per Transaction": 68.49, "Median Spend per Customer": 68.0 }, "geometry": { "type": "Point", "coordinates": [ -75.062397, 40.049924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3301 Tyson Ave", "LATITUDE": 40.035458, "LONGITUDE": -75.049099, "DATE_RANGE_START": 2020, "Total Visits": 407.0, "Total Visitors": 218.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 3.0, "Total Spend": 4988.0, "Total Transactions": 246.0, "Total Customers": 147.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -75.049099, 40.035458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-94v", "Name": "Skechers", "Category": "Shoe Stores", "Address": "1001 Market St Unit C215", "LATITUDE": 39.951985, "LONGITUDE": -75.157156, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 439.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 55.5, "Median Spend per Customer": 55.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157156, 39.951985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6919 Torresdale Ave # 27", "LATITUDE": 40.026137, "LONGITUDE": -75.042321, "DATE_RANGE_START": 2020, "Total Visits": 502.0, "Total Visitors": 250.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 6.0, "Total Spend": 383.0, "Total Transactions": 38.0, "Total Customers": 14.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 5.59 }, "geometry": { "type": "Point", "coordinates": [ -75.042321, 40.026137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "2335 Cottman Ave Spc 10", "LATITUDE": 40.048384, "LONGITUDE": -75.056563, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 197.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 23.0, "Total Spend": 1761.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 80.0, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056563, 40.048384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kcq", "Name": "Tselaine", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1927 Walnut St", "LATITUDE": 39.950645, "LONGITUDE": -75.173695, "DATE_RANGE_START": 2020, "Total Visits": 1121.0, "Total Visitors": 707.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 293.0, "Total Spend": 349.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 51.42, "Median Spend per Customer": 51.42 }, "geometry": { "type": "Point", "coordinates": [ -75.173695, 39.950645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3668 Aramingo Ave Ste 9A", "LATITUDE": 39.995094, "LONGITUDE": -75.095646, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 385.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 10.0, "Total Spend": 1126.0, "Total Transactions": 52.0, "Total Customers": 36.0, "Median Spend per Transaction": 19.2, "Median Spend per Customer": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 39.995094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2120 S 23rd St", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2020, "Total Visits": 437.0, "Total Visitors": 286.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 9.0, "Total Spend": 487.0, "Total Transactions": 38.0, "Total Customers": 30.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-7h5", "Name": "Estia", "Category": "Restaurants and Other Eating Places", "Address": "1405 Locust St", "LATITUDE": 39.948448, "LONGITUDE": -75.165269, "DATE_RANGE_START": 2020, "Total Visits": 306.0, "Total Visitors": 202.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 192.0, "Total Spend": 8902.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 175.13, "Median Spend per Customer": 162.75 }, "geometry": { "type": "Point", "coordinates": [ -75.165269, 39.948448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-c5z", "Name": "Maple Star", "Category": "Restaurants and Other Eating Places", "Address": "1521 Cecil B Moore Ave", "LATITUDE": 39.97918, "LONGITUDE": -75.160433, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 36.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 48.0, "Total Spend": 40.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160433, 39.97918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "Name": "Double Knot", "Category": "Health and Personal Care Stores", "Address": "120 S 13th St", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 89.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 193.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 37.7, "Median Spend per Customer": 37.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1200 Walnut St Ste B", "LATITUDE": 39.948772, "LONGITUDE": -75.160716, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 197.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 4.0, "Total Spend": 6345.0, "Total Transactions": 512.0, "Total Customers": 399.0, "Median Spend per Transaction": 10.65, "Median Spend per Customer": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.160716, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4400 City Ave", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2020, "Total Visits": 3047.0, "Total Visitors": 2362.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 6.0, "Total Spend": 46416.0, "Total Transactions": 2352.0, "Total Customers": 1594.0, "Median Spend per Transaction": 18.32, "Median Spend per Customer": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-mrk", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "1601 Market St", "LATITUDE": 39.953042, "LONGITUDE": -75.167502, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 107.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 253.0, "Total Spend": 257.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 18.83, "Median Spend per Customer": 18.83 }, "geometry": { "type": "Point", "coordinates": [ -75.167502, 39.953042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-grk", "Name": "Federal Donuts", "Category": "Restaurants and Other Eating Places", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.963015, "LONGITUDE": -75.174167, "DATE_RANGE_START": 2020, "Total Visits": 3100.0, "Total Visitors": 1753.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 19.0, "Total Spend": 31.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 3.9, "Median Spend per Customer": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.174167, 39.963015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "221 W Hunting Park Ave", "LATITUDE": 40.014677, "LONGITUDE": -75.130343, "DATE_RANGE_START": 2020, "Total Visits": 298.0, "Total Visitors": 238.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 4.0, "Total Spend": 4926.0, "Total Transactions": 677.0, "Total Customers": 371.0, "Median Spend per Transaction": 6.47, "Median Spend per Customer": 8.93 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.014677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm3-vpv", "Name": "Passyunk Avenue Philly Bagels", "Category": "Restaurants and Other Eating Places", "Address": "1742 E Passyunk Ave", "LATITUDE": 39.927906, "LONGITUDE": -75.166004, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010029001.0, "Median Dwell Time": null, "Total Spend": 5129.0, "Total Transactions": 341.0, "Total Customers": 230.0, "Median Spend per Transaction": 13.24, "Median Spend per Customer": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166004, 39.927906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1945 Callowhill St", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 147.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 6.0, "Total Spend": 3733.0, "Total Transactions": 480.0, "Total Customers": 320.0, "Median Spend per Transaction": 5.73, "Median Spend per Customer": 9.13 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "Name": "San Lucas Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2000 S Bouvier St", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 64.0, "Total Spend": 784.0, "Total Transactions": 48.0, "Total Customers": 34.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-975", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.953036, "LONGITUDE": -75.192281, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 54.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 1.0, "Total Spend": 2425.0, "Total Transactions": 355.0, "Total Customers": 226.0, "Median Spend per Transaction": 4.81, "Median Spend per Customer": 7.13 }, "geometry": { "type": "Point", "coordinates": [ -75.192281, 39.953036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "Name": "Angelo's Pizza House", "Category": "Restaurants and Other Eating Places", "Address": "3901 Frankford Ave", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 22.0, "Total Spend": 1446.0, "Total Transactions": 85.0, "Total Customers": 44.0, "Median Spend per Transaction": 15.02, "Median Spend per Customer": 20.44 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044956, "LONGITUDE": -75.143877, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 18.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 183.0, "Total Spend": 5790.0, "Total Transactions": 218.0, "Total Customers": 161.0, "Median Spend per Transaction": 22.78, "Median Spend per Customer": 27.87 }, "geometry": { "type": "Point", "coordinates": [ -75.143877, 40.044956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-bhq", "Name": "Pet Friendly Dog Bakery", "Category": "Other Miscellaneous Store Retailers", "Address": "4324 Main St", "LATITUDE": 40.025005, "LONGITUDE": -75.222997, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 25.0, "Total Spend": 79.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 19.95, "Median Spend per Customer": 19.95 }, "geometry": { "type": "Point", "coordinates": [ -75.222997, 40.025005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "Name": "Triangle Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1338 S 10th St", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 1.0, "Total Spend": 2938.0, "Total Transactions": 99.0, "Total Customers": 83.0, "Median Spend per Transaction": 26.68, "Median Spend per Customer": 28.46 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3604 Chestnut St", "LATITUDE": 39.954547, "LONGITUDE": -75.194897, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 83.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 5.0, "Total Spend": 22955.0, "Total Transactions": 2662.0, "Total Customers": 1372.0, "Median Spend per Transaction": 7.11, "Median Spend per Customer": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -75.194897, 39.954547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "Name": "Bassetts Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "45 N 12th St", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 50.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 1381.0, "Total Transactions": 139.0, "Total Customers": 133.0, "Median Spend per Transaction": 8.66, "Median Spend per Customer": 8.66 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "Name": "Claire's", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952045, "LONGITUDE": -75.16824, "DATE_RANGE_START": 2020, "Total Visits": 6123.0, "Total Visitors": 3702.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 70.0, "Total Spend": 3663.0, "Total Transactions": 111.0, "Total Customers": 95.0, "Median Spend per Transaction": 30.54, "Median Spend per Customer": 34.36 }, "geometry": { "type": "Point", "coordinates": [ -75.16824, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "Name": "P.C. Richard & Son", "Category": "Electronics and Appliance Stores", "Address": "2420 Cottman Ave", "LATITUDE": 40.046246, "LONGITUDE": -75.059899, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 419.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 21.0, "Total Spend": 61679.0, "Total Transactions": 79.0, "Total Customers": 73.0, "Median Spend per Transaction": 350.92, "Median Spend per Customer": 356.27 }, "geometry": { "type": "Point", "coordinates": [ -75.059899, 40.046246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9200 Frankford Ave Ste 250", "LATITUDE": 40.055425, "LONGITUDE": -75.00482, "DATE_RANGE_START": 2020, "Total Visits": 784.0, "Total Visitors": 572.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 6.0, "Total Spend": 849.0, "Total Transactions": 40.0, "Total Customers": 32.0, "Median Spend per Transaction": 17.67, "Median Spend per Customer": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.00482, 40.055425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-223@628-p8n-389", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6327 Torresdale Ave # 43", "LATITUDE": 40.02098, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2020, "Total Visits": 278.0, "Total Visitors": 224.0, "POI_CBG": 421010323001.0, "Median Dwell Time": 6.0, "Total Spend": 2124.0, "Total Transactions": 127.0, "Total Customers": 71.0, "Median Spend per Transaction": 14.41, "Median Spend per Customer": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.02098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2320 26 Fairmount Avenue Philadelphia", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2020, "Total Visits": 518.0, "Total Visitors": 365.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 12.0, "Total Spend": 20793.0, "Total Transactions": 919.0, "Total Customers": 524.0, "Median Spend per Transaction": 14.66, "Median Spend per Customer": 22.92 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "Name": "Vince.", "Category": "Clothing Stores", "Address": "1701 Walnut St", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2020, "Total Visits": 2044.0, "Total Visitors": 1530.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 19.0, "Total Spend": 510.0, "Total Transactions": 12.0, "Total Customers": 6.0, "Median Spend per Transaction": 1.0, "Median Spend per Customer": 66.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044593, "LONGITUDE": -75.101222, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 198.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 7.0, "Total Spend": 1254.0, "Total Transactions": 64.0, "Total Customers": 44.0, "Median Spend per Transaction": 17.91, "Median Spend per Customer": 30.21 }, "geometry": { "type": "Point", "coordinates": [ -75.101222, 40.044593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvx-59f", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4701 W Girard Ave", "LATITUDE": 39.972941, "LONGITUDE": -75.217366, "DATE_RANGE_START": 2020, "Total Visits": 371.0, "Total Visitors": 302.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 7.0, "Total Spend": 1582.0, "Total Transactions": 179.0, "Total Customers": 135.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 7.57 }, "geometry": { "type": "Point", "coordinates": [ -75.217366, 39.972941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-975", "Name": "Avril 50", "Category": "Other Miscellaneous Store Retailers", "Address": "3406 Sansom St", "LATITUDE": 39.953493, "LONGITUDE": -75.192528, "DATE_RANGE_START": 2020, "Total Visits": 1356.0, "Total Visitors": 951.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 16.0, "Total Spend": 907.0, "Total Transactions": 32.0, "Total Customers": 18.0, "Median Spend per Transaction": 22.75, "Median Spend per Customer": 30.44 }, "geometry": { "type": "Point", "coordinates": [ -75.192528, 39.953493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-68v", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8914 Frankford Ave", "LATITUDE": 40.051732, "LONGITUDE": -75.010927, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 1.0, "Total Spend": 8241.0, "Total Transactions": 290.0, "Total Customers": 228.0, "Median Spend per Transaction": 26.68, "Median Spend per Customer": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.010927, 40.051732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "Name": "Smokey Joes", "Category": "Restaurants and Other Eating Places", "Address": "210 S 40th St", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 28.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 6.0, "Total Spend": 853.0, "Total Transactions": 26.0, "Total Customers": 22.0, "Median Spend per Transaction": 27.96, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "Name": "Jack B Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "748 S 4th St", "LATITUDE": 39.939115, "LONGITUDE": -75.149838, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 36.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 11.0, "Total Spend": 2257.0, "Total Transactions": 40.0, "Total Customers": 36.0, "Median Spend per Transaction": 40.5, "Median Spend per Customer": 47.25 }, "geometry": { "type": "Point", "coordinates": [ -75.149838, 39.939115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "315 Market St", "LATITUDE": 39.950471, "LONGITUDE": -75.146166, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 19.0, "Total Spend": 140.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 35.21, "Median Spend per Customer": 35.21 }, "geometry": { "type": "Point", "coordinates": [ -75.146166, 39.950471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pjf-jvz", "Name": "Bahia Bowls Chestnut Hill", "Category": "Restaurants and Other Eating Places", "Address": "8136 Germantown Ave", "LATITUDE": 40.072819, "LONGITUDE": -75.202597, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 26.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 4.0, "Total Spend": 1772.0, "Total Transactions": 171.0, "Total Customers": 97.0, "Median Spend per Transaction": 8.59, "Median Spend per Customer": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.202597, 40.072819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p8d-fmk", "Name": "Renzi's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2728 Orthodox St", "LATITUDE": 39.998034, "LONGITUDE": -75.074418, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 30.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 377.0, "Total Spend": 140.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 19.16, "Median Spend per Customer": 25.67 }, "geometry": { "type": "Point", "coordinates": [ -75.074418, 39.998034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "Name": "Quaker Diner", "Category": "Restaurants and Other Eating Places", "Address": "7241 Rising Sun Ave", "LATITUDE": 40.060542, "LONGITUDE": -75.084471, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 17.0, "Total Spend": 1922.0, "Total Transactions": 81.0, "Total Customers": 54.0, "Median Spend per Transaction": 23.66, "Median Spend per Customer": 30.97 }, "geometry": { "type": "Point", "coordinates": [ -75.084471, 40.060542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "Name": "Banana Leaf", "Category": "Restaurants and Other Eating Places", "Address": "1009 Arch St", "LATITUDE": 39.953737, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2020, "Total Visits": 71.0, "Total Visitors": 46.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 12.0, "Total Spend": 1684.0, "Total Transactions": 60.0, "Total Customers": 50.0, "Median Spend per Transaction": 26.4, "Median Spend per Customer": 32.06 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.953737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pm4-nh5", "Name": "The Chilly Banana", "Category": "Restaurants and Other Eating Places", "Address": "932 E Passyunk Ave", "LATITUDE": 39.937277, "LONGITUDE": -75.154779, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 54.0, "POI_CBG": 421010024001.0, "Median Dwell Time": 1262.0, "Total Spend": 526.0, "Total Transactions": 46.0, "Total Customers": 44.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154779, 39.937277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pmb-c3q", "Name": "Kin Boutique", "Category": "Clothing Stores", "Address": "1010 Pine St", "LATITUDE": 39.944553, "LONGITUDE": -75.158728, "DATE_RANGE_START": 2020, "Total Visits": 1173.0, "Total Visitors": 715.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 382.0, "Total Spend": 4670.0, "Total Transactions": 18.0, "Total Customers": 10.0, "Median Spend per Transaction": 166.32, "Median Spend per Customer": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158728, 39.944553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "Name": "Frank's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3600 Fisk Ave", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 4.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 429.0, "Total Spend": 3317.0, "Total Transactions": 129.0, "Total Customers": 87.0, "Median Spend per Transaction": 24.05, "Median Spend per Customer": 25.51 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "Name": "Volo Coffeehouse", "Category": "Restaurants and Other Eating Places", "Address": "4360 Main St", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 248.0, "Total Spend": 16222.0, "Total Transactions": 1507.0, "Total Customers": 635.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "Name": "Fishtown Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1802 Frankford Ave", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 4.0, "Total Spend": 208.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 9.9, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.91267, "LONGITUDE": -75.154671, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 62.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 3.0, "Total Spend": 1025.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 36.71, "Median Spend per Customer": 34.38 }, "geometry": { "type": "Point", "coordinates": [ -75.154671, 39.91267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-249", "Name": "On Point Bistro", "Category": "Restaurants and Other Eating Places", "Address": "1200 Point Breeze Ave", "LATITUDE": 39.937259, "LONGITUDE": -75.177106, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 7.0, "Total Spend": 3074.0, "Total Transactions": 58.0, "Total Customers": 56.0, "Median Spend per Transaction": 47.88, "Median Spend per Customer": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.177106, 39.937259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-td9", "Name": "NY Bagel & Deli Shop", "Category": "Restaurants and Other Eating Places", "Address": "1120 Buttonwood St", "LATITUDE": 39.96081, "LONGITUDE": -75.157392, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 28.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 413.0, "Total Spend": 1988.0, "Total Transactions": 153.0, "Total Customers": 107.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 14.16 }, "geometry": { "type": "Point", "coordinates": [ -75.157392, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "Name": "Giovanni's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "5604 Greene St", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 42.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 145.0, "Total Spend": 3622.0, "Total Transactions": 99.0, "Total Customers": 77.0, "Median Spend per Transaction": 23.49, "Median Spend per Customer": 23.92 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "Name": "Baltimore Pet Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "4532 Baltimore Ave", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 63.0, "Total Spend": 1646.0, "Total Transactions": 38.0, "Total Customers": 34.0, "Median Spend per Transaction": 41.03, "Median Spend per Customer": 53.99 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "Name": "Asia Express", "Category": "Restaurants and Other Eating Places", "Address": "7246 Castor Ave", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010310001.0, "Median Dwell Time": 3.0, "Total Spend": 628.0, "Total Transactions": 32.0, "Total Customers": 26.0, "Median Spend per Transaction": 19.1, "Median Spend per Customer": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-ph6-cdv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6375 Lebanon Ave", "LATITUDE": 39.979947, "LONGITUDE": -75.248732, "DATE_RANGE_START": 2020, "Total Visits": 455.0, "Total Visitors": 290.0, "POI_CBG": 421010114001.0, "Median Dwell Time": 4.0, "Total Spend": 5337.0, "Total Transactions": 56.0, "Total Customers": 36.0, "Median Spend per Transaction": 9.61, "Median Spend per Customer": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.248732, 39.979947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4201 Walnut St # 59", "LATITUDE": 39.954892, "LONGITUDE": -75.206728, "DATE_RANGE_START": 2020, "Total Visits": 339.0, "Total Visitors": 206.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 5.0, "Total Spend": 1726.0, "Total Transactions": 197.0, "Total Customers": 111.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.206728, 39.954892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-tjv", "Name": "Children's Hospital Of Philadelphia", "Category": "Health and Personal Care Stores", "Address": "3401 Civic Center Blvd", "LATITUDE": 39.94747, "LONGITUDE": -75.195382, "DATE_RANGE_START": 2020, "Total Visits": 2481.0, "Total Visitors": 1090.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 178.0, "Total Spend": 2100.0, "Total Transactions": 417.0, "Total Customers": 337.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195382, 39.94747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj2-btv", "Name": "Bentoulis Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1226 E Hunting Park Ave", "LATITUDE": 40.01065, "LONGITUDE": -75.102956, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 16.0, "POI_CBG": 421010191002.0, "Median Dwell Time": 348.0, "Total Spend": 1890.0, "Total Transactions": 66.0, "Total Customers": 56.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 30.11 }, "geometry": { "type": "Point", "coordinates": [ -75.102956, 40.01065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "Name": "Neighborhood Books", "Category": "Book Stores and News Dealers", "Address": "1906 South St", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2020, "Total Visits": 278.0, "Total Visitors": 159.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 163.0, "Total Spend": 196.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 20.36, "Median Spend per Customer": 20.36 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8m-b8v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5807 Torresdale Ave", "LATITUDE": 40.016255, "LONGITUDE": -75.061394, "DATE_RANGE_START": 2020, "Total Visits": 294.0, "Total Visitors": 161.0, "POI_CBG": 421010321001.0, "Median Dwell Time": 26.0, "Total Spend": 791.0, "Total Transactions": 87.0, "Total Customers": 71.0, "Median Spend per Transaction": 6.91, "Median Spend per Customer": 7.58 }, "geometry": { "type": "Point", "coordinates": [ -75.061394, 40.016255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-4vz", "Name": "Cafe Tinto", "Category": "Restaurants and Other Eating Places", "Address": "143 E Wyoming Ave", "LATITUDE": 40.02153, "LONGITUDE": -75.122622, "DATE_RANGE_START": 2020, "Total Visits": 173.0, "Total Visitors": 48.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 1420.0, "Total Spend": 634.0, "Total Transactions": 38.0, "Total Customers": 30.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.122622, 40.02153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-gtv", "Name": "Bruno's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7362 N 19th St", "LATITUDE": 40.067212, "LONGITUDE": -75.146516, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 54.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 49.0, "Total Spend": 1142.0, "Total Transactions": 62.0, "Total Customers": 52.0, "Median Spend per Transaction": 16.09, "Median Spend per Customer": 17.71 }, "geometry": { "type": "Point", "coordinates": [ -75.146516, 40.067212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "Name": "Tavares Grocery", "Category": "Grocery Stores", "Address": "364 E Chelten Ave", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 60.0, "POI_CBG": 421010247005.0, "Median Dwell Time": 328.0, "Total Spend": 68.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 12.25, "Median Spend per Customer": 12.25 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3900 N Broad St", "LATITUDE": 40.012783, "LONGITUDE": -75.150904, "DATE_RANGE_START": 2020, "Total Visits": 1183.0, "Total Visitors": 842.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 15.0, "Total Spend": 22701.0, "Total Transactions": 314.0, "Total Customers": 266.0, "Median Spend per Transaction": 37.5, "Median Spend per Customer": 46.69 }, "geometry": { "type": "Point", "coordinates": [ -75.150904, 40.012783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-j5f", "Name": "Kitchen Kapers", "Category": "Electronics and Appliance Stores", "Address": "213 S 17th St", "LATITUDE": 39.949485, "LONGITUDE": -75.169064, "DATE_RANGE_START": 2020, "Total Visits": 135.0, "Total Visitors": 109.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 3.0, "Total Spend": 1849.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 28.06, "Median Spend per Customer": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.169064, 39.949485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-sqz", "Name": "A Plus Pharmacy", "Category": "Health and Personal Care Stores", "Address": "13023 Bustleton Ave Ste 1C", "LATITUDE": 40.124072, "LONGITUDE": -75.01455, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 123.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 190.0, "Total Spend": 154.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01455, 40.124072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6150 N 5th St", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2020, "Total Visits": 788.0, "Total Visitors": 484.0, "POI_CBG": 421010275001.0, "Median Dwell Time": 10.0, "Total Spend": 3510.0, "Total Transactions": 183.0, "Total Customers": 129.0, "Median Spend per Transaction": 12.09, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-zxq", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "608 South St", "LATITUDE": 39.941838, "LONGITUDE": -75.152721, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 157.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 20.0, "Total Spend": 11166.0, "Total Transactions": 87.0, "Total Customers": 85.0, "Median Spend per Transaction": 104.99, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152721, 39.941838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7106 Ridge Ave", "LATITUDE": 40.043955, "LONGITUDE": -75.231236, "DATE_RANGE_START": 2020, "Total Visits": 379.0, "Total Visitors": 272.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 10.0, "Total Spend": 1248.0, "Total Transactions": 71.0, "Total Customers": 46.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.231236, 40.043955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2200 Wheatsheaf Ln Ste E6", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2020, "Total Visits": 284.0, "Total Visitors": 270.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 3.0, "Total Spend": 20970.0, "Total Transactions": 768.0, "Total Customers": 631.0, "Median Spend per Transaction": 21.2, "Median Spend per Customer": 24.89 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3000 Island Ave Ste M P", "LATITUDE": 39.898752, "LONGITUDE": -75.240579, "DATE_RANGE_START": 2020, "Total Visits": 840.0, "Total Visitors": 586.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 14.0, "Total Spend": 415.0, "Total Transactions": 34.0, "Total Customers": 20.0, "Median Spend per Transaction": 6.4, "Median Spend per Customer": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.240579, 39.898752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "Name": "Bubblefish", "Category": "Restaurants and Other Eating Places", "Address": "909 Arch St", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2020, "Total Visits": 2451.0, "Total Visitors": 1481.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 201.0, "Total Spend": 2886.0, "Total Transactions": 87.0, "Total Customers": 79.0, "Median Spend per Transaction": 31.59, "Median Spend per Customer": 35.26 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pnx-4vz", "Name": "The Abbaye", "Category": "Restaurants and Other Eating Places", "Address": "637 N 3rd St", "LATITUDE": 39.962216, "LONGITUDE": -75.142919, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010367001.0, "Median Dwell Time": null, "Total Spend": 5202.0, "Total Transactions": 91.0, "Total Customers": 77.0, "Median Spend per Transaction": 49.98, "Median Spend per Customer": 50.76 }, "geometry": { "type": "Point", "coordinates": [ -75.142919, 39.962216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-p82-nqz", "Name": "On Charcoal", "Category": "Restaurants and Other Eating Places", "Address": "6516 Castor Ave", "LATITUDE": 40.041319, "LONGITUDE": -75.075986, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 10.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 99.0, "Total Spend": 997.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 132.57, "Median Spend per Customer": 132.57 }, "geometry": { "type": "Point", "coordinates": [ -75.075986, 40.041319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "Name": "Giorgio On Pine", "Category": "Restaurants and Other Eating Places", "Address": "1328 Pine St", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 30.0, "Total Spend": 7177.0, "Total Transactions": 119.0, "Total Customers": 105.0, "Median Spend per Transaction": 50.49, "Median Spend per Customer": 50.76 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-gkz", "Name": "Ristorante Aroma", "Category": "Restaurants and Other Eating Places", "Address": "1245 S 3rd St", "LATITUDE": 39.944903, "LONGITUDE": -75.160742, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 16.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 996.0, "Total Spend": 867.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 96.94, "Median Spend per Customer": 96.94 }, "geometry": { "type": "Point", "coordinates": [ -75.160742, 39.944903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "Name": "Canto House", "Category": "Restaurants and Other Eating Places", "Address": "941 Race St", "LATITUDE": 39.955533, "LONGITUDE": -75.155568, "DATE_RANGE_START": 2020, "Total Visits": 3823.0, "Total Visitors": 2293.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 47.0, "Total Spend": 2215.0, "Total Transactions": 73.0, "Total Customers": 60.0, "Median Spend per Transaction": 24.84, "Median Spend per Customer": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.155568, 39.955533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "Name": "Red Lobster", "Category": "Restaurants and Other Eating Places", "Address": "9140 Roosevelt Blvd", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2020, "Total Visits": 264.0, "Total Visitors": 204.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 44.0, "Total Spend": 9479.0, "Total Transactions": 143.0, "Total Customers": 131.0, "Median Spend per Transaction": 60.86, "Median Spend per Customer": 61.39 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.99223, "LONGITUDE": -75.09972, "DATE_RANGE_START": 2020, "Total Visits": 486.0, "Total Visitors": 445.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 2.0, "Total Spend": 229.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 31.22, "Median Spend per Customer": 31.22 }, "geometry": { "type": "Point", "coordinates": [ -75.09972, 39.99223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "24th & Oregon St", "LATITUDE": 39.919412, "LONGITUDE": -75.187304, "DATE_RANGE_START": 2020, "Total Visits": 1080.0, "Total Visitors": 804.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 16167.0, "Total Transactions": 1405.0, "Total Customers": 927.0, "Median Spend per Transaction": 9.88, "Median Spend per Customer": 12.71 }, "geometry": { "type": "Point", "coordinates": [ -75.187304, 39.919412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwd-v9f", "Name": "RevZilla", "Category": "Other Motor Vehicle Dealers", "Address": "4020 S 26th St", "LATITUDE": 39.900369, "LONGITUDE": -75.195065, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 26.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 9.0, "Total Spend": 46587.0, "Total Transactions": 189.0, "Total Customers": 149.0, "Median Spend per Transaction": 172.22, "Median Spend per Customer": 211.99 }, "geometry": { "type": "Point", "coordinates": [ -75.195065, 39.900369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmf-qfz", "Name": "Entree Byob", "Category": "Restaurants and Other Eating Places", "Address": "1608 South St", "LATITUDE": 39.943935, "LONGITUDE": -75.169156, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 149.0, "Total Spend": 3871.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 72.33, "Median Spend per Customer": 63.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169156, 39.943935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-9mk", "Name": "Bravo Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3748 Germantown Ave", "LATITUDE": 40.010647, "LONGITUDE": -75.151533, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 44.0, "POI_CBG": 421010201021.0, "Median Dwell Time": 7.0, "Total Spend": 4898.0, "Total Transactions": 195.0, "Total Customers": 131.0, "Median Spend per Transaction": 19.76, "Median Spend per Customer": 24.08 }, "geometry": { "type": "Point", "coordinates": [ -75.151533, 40.010647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "Name": "Pat's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "12317 Academy Rd", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 58.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 6926.0, "Total Transactions": 351.0, "Total Customers": 244.0, "Median Spend per Transaction": 16.39, "Median Spend per Customer": 21.63 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-mrk", "Name": "Elixr Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "1600 Market St", "LATITUDE": 39.952527, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2020, "Total Visits": 893.0, "Total Visitors": 576.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 165.0, "Total Spend": 269.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 8.67 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.952527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7221 Torresdale Ave", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2020, "Total Visits": 389.0, "Total Visitors": 268.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 2.0, "Total Spend": 6672.0, "Total Transactions": 943.0, "Total Customers": 449.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 10.38 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2344 N Broad St", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2020, "Total Visits": 379.0, "Total Visitors": 250.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 5.0, "Total Spend": 11154.0, "Total Transactions": 1495.0, "Total Customers": 786.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 9.46 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "Name": "Desi Village", "Category": "Restaurants and Other Eating Places", "Address": "4527 Baltimore Ave", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 12.0, "Total Spend": 750.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 30.08, "Median Spend per Customer": 32.43 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "Name": "Domenic's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "14258 Bustleton Ave", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 29.0, "Total Spend": 2224.0, "Total Transactions": 66.0, "Total Customers": 36.0, "Median Spend per Transaction": 29.65, "Median Spend per Customer": 30.97 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@63s-dw4-rzf", "Name": "Local Tavern", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave Gate F11", "LATITUDE": 39.895174, "LONGITUDE": -75.227977, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 13709.0, "Total Transactions": 820.0, "Total Customers": 609.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 17.61 }, "geometry": { "type": "Point", "coordinates": [ -75.227977, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj5-jqf", "Name": "Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3366 N 2nd St", "LATITUDE": 40.002083, "LONGITUDE": -75.132811, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 1.0, "Total Spend": 484.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 28.49, "Median Spend per Customer": 28.49 }, "geometry": { "type": "Point", "coordinates": [ -75.132811, 40.002083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "Name": "CB2", "Category": "Furniture Stores", "Address": "1422 Walnut St", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2020, "Total Visits": 814.0, "Total Visitors": 524.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 30.0, "Total Spend": 15630.0, "Total Transactions": 89.0, "Total Customers": 66.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 38.67 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "Name": "A Plus", "Category": "Grocery Stores", "Address": "5240 Torresdale Ave", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2020, "Total Visits": 310.0, "Total Visitors": 185.0, "POI_CBG": 421010298005.0, "Median Dwell Time": 8.0, "Total Spend": 5311.0, "Total Transactions": 248.0, "Total Customers": 145.0, "Median Spend per Transaction": 14.6, "Median Spend per Customer": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1405 S 10th St", "LATITUDE": 39.931453, "LONGITUDE": -75.160518, "DATE_RANGE_START": 2020, "Total Visits": 1056.0, "Total Visitors": 597.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 9.0, "Total Spend": 19509.0, "Total Transactions": 988.0, "Total Customers": 466.0, "Median Spend per Transaction": 10.73, "Median Spend per Customer": 25.97 }, "geometry": { "type": "Point", "coordinates": [ -75.160518, 39.931453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmd-tvz", "Name": "The Indie Shelf", "Category": "Health and Personal Care Stores", "Address": "2247 Grays Ferry Ave", "LATITUDE": 39.944748, "LONGITUDE": -75.180225, "DATE_RANGE_START": 2020, "Total Visits": 242.0, "Total Visitors": 183.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 40.0, "Total Spend": 975.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180225, 39.944748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Roosevelt Blvd", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2020, "Total Visits": 3809.0, "Total Visitors": 2813.0, "POI_CBG": 421010361002.0, "Median Dwell Time": 7.0, "Total Spend": 6096.0, "Total Transactions": 314.0, "Total Customers": 226.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "Name": "Burlington", "Category": "Clothing Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.912374, "LONGITUDE": -75.156918, "DATE_RANGE_START": 2020, "Total Visits": 2384.0, "Total Visitors": 1927.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 20.0, "Total Spend": 2962.0, "Total Transactions": 85.0, "Total Customers": 69.0, "Median Spend per Transaction": 24.99, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.156918, 39.912374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8j-bkz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7310 Frankford Ave # 14", "LATITUDE": 40.037321, "LONGITUDE": -75.040337, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 212.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 13.0, "Total Spend": 673.0, "Total Transactions": 67.0, "Total Customers": 64.0, "Median Spend per Transaction": 8.17, "Median Spend per Customer": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.040337, 40.037321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-pqf", "Name": "Senoj Clothing", "Category": "Clothing Stores", "Address": "1609 South St", "LATITUDE": 39.944292, "LONGITUDE": -75.169204, "DATE_RANGE_START": 2020, "Total Visits": 726.0, "Total Visitors": 381.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 140.0, "Total Spend": 196.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 49.44, "Median Spend per Customer": 49.44 }, "geometry": { "type": "Point", "coordinates": [ -75.169204, 39.944292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "Name": "Suit Corner", "Category": "Clothing Stores", "Address": "302 Market St", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2020, "Total Visits": 280.0, "Total Visitors": 242.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 6.0, "Total Spend": 1229.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 114.82, "Median Spend per Customer": 114.82 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "35 E Chelten Ave", "LATITUDE": 40.037244, "LONGITUDE": -75.17465, "DATE_RANGE_START": 2020, "Total Visits": 333.0, "Total Visitors": 226.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 22.0, "Total Spend": 14242.0, "Total Transactions": 220.0, "Total Customers": 159.0, "Median Spend per Transaction": 28.05, "Median Spend per Customer": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.17465, 40.037244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1334 Windrim Ave", "LATITUDE": 40.029597, "LONGITUDE": -75.145391, "DATE_RANGE_START": 2020, "Total Visits": 373.0, "Total Visitors": 250.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 11.0, "Total Spend": 3406.0, "Total Transactions": 129.0, "Total Customers": 54.0, "Median Spend per Transaction": 21.39, "Median Spend per Customer": 21.29 }, "geometry": { "type": "Point", "coordinates": [ -75.145391, 40.029597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-6p9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6101 N Broad St", "LATITUDE": 40.046097, "LONGITUDE": -75.142598, "DATE_RANGE_START": 2020, "Total Visits": 599.0, "Total Visitors": 472.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 6.0, "Total Spend": 2788.0, "Total Transactions": 163.0, "Total Customers": 101.0, "Median Spend per Transaction": 11.97, "Median Spend per Customer": 17.33 }, "geometry": { "type": "Point", "coordinates": [ -75.142598, 40.046097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-229@628-p85-hkf", "Name": "Bluegrass Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2417 Welsh Rd", "LATITUDE": 40.071403, "LONGITUDE": -75.030673, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 99.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 19.0, "Total Spend": 568.0, "Total Transactions": 18.0, "Total Customers": 8.0, "Median Spend per Transaction": 33.16, "Median Spend per Customer": 22.72 }, "geometry": { "type": "Point", "coordinates": [ -75.030673, 40.071403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-ysq", "Name": "Kerrs Building Materials", "Category": "Building Material and Supplies Dealers", "Address": "1528 Washington Ave", "LATITUDE": 39.9379, "LONGITUDE": -75.169536, "DATE_RANGE_START": 2020, "Total Visits": 282.0, "Total Visitors": 91.0, "POI_CBG": 421010022001.0, "Median Dwell Time": 337.0, "Total Spend": 259.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 65.25, "Median Spend per Customer": 65.25 }, "geometry": { "type": "Point", "coordinates": [ -75.169536, 39.9379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-x89", "Name": "Twin Smoke Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "1537 S 10th St", "LATITUDE": 39.929672, "LONGITUDE": -75.161301, "DATE_RANGE_START": 2020, "Total Visits": 294.0, "Total Visitors": 193.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 94.0, "Total Spend": 175.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 11.04, "Median Spend per Customer": 11.04 }, "geometry": { "type": "Point", "coordinates": [ -75.161301, 39.929672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "701 Chestnut St", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 9519.0, "Total Transactions": 629.0, "Total Customers": 526.0, "Median Spend per Transaction": 12.66, "Median Spend per Customer": 14.19 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "Name": "Peddler Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2100 Spring St", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 26.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 1268.0, "Total Spend": 1767.0, "Total Transactions": 228.0, "Total Customers": 101.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-gzf", "Name": "Bar X", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "255 S Camac St", "LATITUDE": 39.946786, "LONGITUDE": -75.161663, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 52.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 15.0, "Total Spend": 7406.0, "Total Transactions": 320.0, "Total Customers": 141.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161663, 39.946786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-whq", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "304 Market St", "LATITUDE": 39.949985, "LONGITUDE": -75.146017, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 56.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 111.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 17.77, "Median Spend per Customer": 17.77 }, "geometry": { "type": "Point", "coordinates": [ -75.146017, 39.949985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "Name": "South", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "600 N Broad St", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 52.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 192.0, "Total Spend": 4060.0, "Total Transactions": 119.0, "Total Customers": 89.0, "Median Spend per Transaction": 16.6, "Median Spend per Customer": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "Name": "Wyndham", "Category": "Traveler Accommodation", "Address": "400 Arch St", "LATITUDE": 39.952204, "LONGITUDE": -75.146959, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 234.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 4536.0, "Total Transactions": 28.0, "Total Customers": 22.0, "Median Spend per Transaction": 174.32, "Median Spend per Customer": 220.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146959, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-sdv", "Name": "Independence Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 S Independence Mall W", "LATITUDE": 39.950376, "LONGITUDE": -75.15103, "DATE_RANGE_START": 2020, "Total Visits": 724.0, "Total Visitors": 552.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 73.0, "Total Spend": 8584.0, "Total Transactions": 480.0, "Total Customers": 206.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 30.83 }, "geometry": { "type": "Point", "coordinates": [ -75.15103, 39.950376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j9z", "Name": "Rouge", "Category": "Restaurants and Other Eating Places", "Address": "205 S 18th St", "LATITUDE": 39.949689, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 171.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 223.0, "Total Spend": 8535.0, "Total Transactions": 113.0, "Total Customers": 81.0, "Median Spend per Transaction": 44.0, "Median Spend per Customer": 55.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.949689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "Name": "Georgian Bread Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "10865 Bustleton Ave", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2020, "Total Visits": 270.0, "Total Visitors": 224.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 2.0, "Total Spend": 551.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 18.27, "Median Spend per Customer": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "Name": "Sang Kee Noodle House", "Category": "Restaurants and Other Eating Places", "Address": "3549 Chestnut St", "LATITUDE": 39.954847, "LONGITUDE": -75.193677, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 244.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 321.0, "Total Spend": 1693.0, "Total Transactions": 50.0, "Total Customers": 34.0, "Median Spend per Transaction": 19.23, "Median Spend per Customer": 32.29 }, "geometry": { "type": "Point", "coordinates": [ -75.193677, 39.954847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "Name": "Spasso Italian Grill", "Category": "Restaurants and Other Eating Places", "Address": "34 S Front St", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2020, "Total Visits": 318.0, "Total Visitors": 282.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 40.0, "Total Spend": 5042.0, "Total Transactions": 67.0, "Total Customers": 66.0, "Median Spend per Transaction": 58.03, "Median Spend per Customer": 66.87 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "600 S 9th St", "LATITUDE": 39.942532, "LONGITUDE": -75.157241, "DATE_RANGE_START": 2020, "Total Visits": 228.0, "Total Visitors": 202.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 1.0, "Total Spend": 3017.0, "Total Transactions": 413.0, "Total Customers": 284.0, "Median Spend per Transaction": 5.45, "Median Spend per Customer": 7.24 }, "geometry": { "type": "Point", "coordinates": [ -75.157241, 39.942532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 46.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 11923.0, "Total Transactions": 177.0, "Total Customers": 175.0, "Median Spend per Transaction": 61.04, "Median Spend per Customer": 61.04 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "Name": "Secret Garden", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "7631 Ridge Ave", "LATITUDE": 40.051859, "LONGITUDE": -75.235556, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 50.0, "POI_CBG": 421010218002.0, "Median Dwell Time": 277.0, "Total Spend": 3934.0, "Total Transactions": 117.0, "Total Customers": 97.0, "Median Spend per Transaction": 28.06, "Median Spend per Customer": 30.22 }, "geometry": { "type": "Point", "coordinates": [ -75.235556, 40.051859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pjk-3nq", "Name": "Pina's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8919 Ridge Ave", "LATITUDE": 40.069435, "LONGITUDE": -75.239981, "DATE_RANGE_START": 2020, "Total Visits": 405.0, "Total Visitors": 264.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 37.0, "Total Spend": 3164.0, "Total Transactions": 125.0, "Total Customers": 101.0, "Median Spend per Transaction": 23.05, "Median Spend per Customer": 24.6 }, "geometry": { "type": "Point", "coordinates": [ -75.239981, 40.069435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "1527 Chestnut St", "LATITUDE": 39.951369, "LONGITUDE": -75.166562, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 145.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 1422.0, "Total Transactions": 77.0, "Total Customers": 62.0, "Median Spend per Transaction": 15.7, "Median Spend per Customer": 17.21 }, "geometry": { "type": "Point", "coordinates": [ -75.166562, 39.951369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2100 Red Lion Rd", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 272.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 3.0, "Total Spend": 1616.0, "Total Transactions": 119.0, "Total Customers": 89.0, "Median Spend per Transaction": 12.63, "Median Spend per Customer": 14.96 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5fz", "Name": "Cogito Coffee", "Category": "Restaurants and Other Eating Places", "Address": "105 S 12th St", "LATITUDE": 39.949868, "LONGITUDE": -75.160219, "DATE_RANGE_START": 2020, "Total Visits": 4127.0, "Total Visitors": 2549.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 17.0, "Total Spend": 268.0, "Total Transactions": 34.0, "Total Customers": 8.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 27.29 }, "geometry": { "type": "Point", "coordinates": [ -75.160219, 39.949868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "Name": "Reyes Food Market", "Category": "Grocery Stores", "Address": "6161 Chestnut St", "LATITUDE": 39.961179, "LONGITUDE": -75.244847, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010083011.0, "Median Dwell Time": 213.0, "Total Spend": 727.0, "Total Transactions": 99.0, "Total Customers": 44.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -75.244847, 39.961179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgd-z9f", "Name": "Pita Chip", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956634, "LONGITUDE": -75.194194, "DATE_RANGE_START": 2020, "Total Visits": 4944.0, "Total Visitors": 2977.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 36.0, "Total Spend": 3449.0, "Total Transactions": 288.0, "Total Customers": 230.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 11.33 }, "geometry": { "type": "Point", "coordinates": [ -75.194194, 39.956634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-73q", "Name": "Byrne's Tavern", "Category": "Restaurants and Other Eating Places", "Address": "3301 Richmond St", "LATITUDE": 39.984147, "LONGITUDE": -75.098754, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 105.0, "POI_CBG": 421010378002.0, "Median Dwell Time": 1.0, "Total Spend": 4514.0, "Total Transactions": 87.0, "Total Customers": 71.0, "Median Spend per Transaction": 44.73, "Median Spend per Customer": 47.04 }, "geometry": { "type": "Point", "coordinates": [ -75.098754, 39.984147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-jsq", "Name": "Danny's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.045112, "LONGITUDE": -75.117134, "DATE_RANGE_START": 2020, "Total Visits": 679.0, "Total Visitors": 449.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 37.0, "Total Spend": 6476.0, "Total Transactions": 149.0, "Total Customers": 137.0, "Median Spend per Transaction": 38.0, "Median Spend per Customer": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117134, 40.045112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgy-r6k", "Name": "Hopkins Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7700 Ridge Ave", "LATITUDE": 40.051828, "LONGITUDE": -75.236578, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010219001.0, "Median Dwell Time": 2.0, "Total Spend": 594.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 13.95, "Median Spend per Customer": 10.73 }, "geometry": { "type": "Point", "coordinates": [ -75.236578, 40.051828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-s5z", "Name": "Restaurant Depot", "Category": "Grocery and Related Product Merchant Wholesalers", "Address": "2950 Roberts Ave", "LATITUDE": 40.009243, "LONGITUDE": -75.177699, "DATE_RANGE_START": 2020, "Total Visits": 1927.0, "Total Visitors": 1006.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 20.0, "Total Spend": 413.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 103.95, "Median Spend per Customer": 103.95 }, "geometry": { "type": "Point", "coordinates": [ -75.177699, 40.009243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "Name": "East Coast Tropicals", "Category": "Grocery Stores", "Address": "1615 N Hancock St", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2020, "Total Visits": 139.0, "Total Visitors": 77.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 11.0, "Total Spend": 5840.0, "Total Transactions": 40.0, "Total Customers": 38.0, "Median Spend per Transaction": 147.58, "Median Spend per Customer": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6101 Ridge Ave", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2020, "Total Visits": 302.0, "Total Visitors": 169.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 3.0, "Total Spend": 828.0, "Total Transactions": 87.0, "Total Customers": 60.0, "Median Spend per Transaction": 6.88, "Median Spend per Customer": 10.57 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5400 Rising Sun Ave Ste 11", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2020, "Total Visits": 468.0, "Total Visitors": 300.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 9.0, "Total Spend": 1136.0, "Total Transactions": 48.0, "Total Customers": 42.0, "Median Spend per Transaction": 22.73, "Median Spend per Customer": 26.67 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1924 Fairmount Ave", "LATITUDE": 39.967006, "LONGITUDE": -75.169701, "DATE_RANGE_START": 2020, "Total Visits": 457.0, "Total Visitors": 302.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 6.0, "Total Spend": 11427.0, "Total Transactions": 723.0, "Total Customers": 411.0, "Median Spend per Transaction": 10.98, "Median Spend per Customer": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169701, 39.967006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd Ste F2", "LATITUDE": 40.031542, "LONGITUDE": -75.100256, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 193.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 40.0, "Total Spend": 6110.0, "Total Transactions": 99.0, "Total Customers": 91.0, "Median Spend per Transaction": 50.85, "Median Spend per Customer": 53.99 }, "geometry": { "type": "Point", "coordinates": [ -75.100256, 40.031542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmf-389", "Name": "Ferguson", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "1821 Washington Ave", "LATITUDE": 39.939235, "LONGITUDE": -75.174446, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 133.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 5.0, "Total Spend": 6184.0, "Total Transactions": 42.0, "Total Customers": 16.0, "Median Spend per Transaction": 50.35, "Median Spend per Customer": 71.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.939235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "Name": "Tandy Leather Factory", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "11000 Roosevelt Blvd Ste 300", "LATITUDE": 40.102565, "LONGITUDE": -75.008773, "DATE_RANGE_START": 2020, "Total Visits": 179.0, "Total Visitors": 159.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 5.0, "Total Spend": 1367.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 59.77, "Median Spend per Customer": 24.58 }, "geometry": { "type": "Point", "coordinates": [ -75.008773, 40.102565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tqf", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1675 S Columbus Blvd", "LATITUDE": 39.926373, "LONGITUDE": -75.141555, "DATE_RANGE_START": 2020, "Total Visits": 10492.0, "Total Visitors": 6983.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 31.0, "Total Spend": 428024.0, "Total Transactions": 6427.0, "Total Customers": 4617.0, "Median Spend per Transaction": 43.7, "Median Spend per Customer": 56.47 }, "geometry": { "type": "Point", "coordinates": [ -75.141555, 39.926373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7162 Ridge Ave", "LATITUDE": 40.0441, "LONGITUDE": -75.232794, "DATE_RANGE_START": 2020, "Total Visits": 1118.0, "Total Visitors": 742.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 12.0, "Total Spend": 198488.0, "Total Transactions": 4651.0, "Total Customers": 2739.0, "Median Spend per Transaction": 28.67, "Median Spend per Customer": 46.34 }, "geometry": { "type": "Point", "coordinates": [ -75.232794, 40.0441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "Name": "IKEA", "Category": "Furniture Stores", "Address": "2206 S Columbus Blvd", "LATITUDE": 39.917106, "LONGITUDE": -75.141639, "DATE_RANGE_START": 2020, "Total Visits": 7898.0, "Total Visitors": 6659.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 45.0, "Total Spend": 614704.0, "Total Transactions": 3946.0, "Total Customers": 3025.0, "Median Spend per Transaction": 74.1, "Median Spend per Customer": 99.6 }, "geometry": { "type": "Point", "coordinates": [ -75.141639, 39.917106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1900 Chestnut St", "LATITUDE": 39.951643, "LONGITUDE": -75.17217, "DATE_RANGE_START": 2020, "Total Visits": 1185.0, "Total Visitors": 838.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 10.0, "Total Spend": 86335.0, "Total Transactions": 2882.0, "Total Customers": 1780.0, "Median Spend per Transaction": 19.69, "Median Spend per Customer": 31.23 }, "geometry": { "type": "Point", "coordinates": [ -75.17217, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25g-222@628-pm6-h89", "Name": "Tony's Market", "Category": "Grocery Stores", "Address": "153 W Porter St", "LATITUDE": 39.91706, "LONGITUDE": -75.150829, "DATE_RANGE_START": 2020, "Total Visits": 409.0, "Total Visitors": 165.0, "POI_CBG": 421010042021.0, "Median Dwell Time": 420.0, "Total Spend": 53.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 7.02 }, "geometry": { "type": "Point", "coordinates": [ -75.150829, 39.91706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-t9z", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "804 Walnut St", "LATITUDE": 39.947992, "LONGITUDE": -75.154441, "DATE_RANGE_START": 2020, "Total Visits": 1094.0, "Total Visitors": 762.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 53.0, "Total Spend": 984.0, "Total Transactions": 109.0, "Total Customers": 66.0, "Median Spend per Transaction": 7.4, "Median Spend per Customer": 10.16 }, "geometry": { "type": "Point", "coordinates": [ -75.154441, 39.947992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@63s-dw9-7nq", "Name": "Jack Duggan's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8500 Essington Ave", "LATITUDE": 39.874756, "LONGITUDE": -75.24707, "DATE_RANGE_START": 2020, "Total Visits": 93781.0, "Total Visitors": 57624.0, "POI_CBG": 420459800001.0, "Median Dwell Time": 53.0, "Total Spend": 549.0, "Total Transactions": 24.0, "Total Customers": 16.0, "Median Spend per Transaction": 16.84, "Median Spend per Customer": 22.76 }, "geometry": { "type": "Point", "coordinates": [ -75.24707, 39.874756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3100 W Allegheny Ave", "LATITUDE": 40.004821, "LONGITUDE": -75.179811, "DATE_RANGE_START": 2020, "Total Visits": 361.0, "Total Visitors": 260.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 9.0, "Total Spend": 7795.0, "Total Transactions": 734.0, "Total Customers": 586.0, "Median Spend per Transaction": 8.7, "Median Spend per Customer": 10.31 }, "geometry": { "type": "Point", "coordinates": [ -75.179811, 40.004821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-rx5", "Name": "The Original Hot Dog Factory", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949641, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 224.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 64.0, "Total Spend": 82.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 15.42, "Median Spend per Customer": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-hnq", "Name": "Stock", "Category": "Restaurants and Other Eating Places", "Address": "1935 Chestnut St", "LATITUDE": 39.952182, "LONGITUDE": -75.173159, "DATE_RANGE_START": 2020, "Total Visits": 2900.0, "Total Visitors": 1669.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 85.0, "Total Spend": 33402.0, "Total Transactions": 143.0, "Total Customers": 111.0, "Median Spend per Transaction": 186.53, "Median Spend per Customer": 196.77 }, "geometry": { "type": "Point", "coordinates": [ -75.173159, 39.952182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "8101 Oxford Ave", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2020, "Total Visits": 347.0, "Total Visitors": 228.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 2.0, "Total Spend": 66.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 4.05, "Median Spend per Customer": 4.79 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1301 Rhawn St", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2020, "Total Visits": 891.0, "Total Visitors": 649.0, "POI_CBG": 421010337022.0, "Median Dwell Time": 6.0, "Total Spend": 8333.0, "Total Transactions": 351.0, "Total Customers": 195.0, "Median Spend per Transaction": 10.57, "Median Spend per Customer": 26.63 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgm-hwk", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "4268 Ridge Ave", "LATITUDE": 40.009599, "LONGITUDE": -75.196284, "DATE_RANGE_START": 2020, "Total Visits": 361.0, "Total Visitors": 322.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 4.0, "Total Spend": 701.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 30.75, "Median Spend per Customer": 30.75 }, "geometry": { "type": "Point", "coordinates": [ -75.196284, 40.009599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-p7w-v4v", "Name": "The Children's Place", "Category": "Clothing Stores", "Address": "2349 Cottman Ave", "LATITUDE": 40.047874, "LONGITUDE": -75.055616, "DATE_RANGE_START": 2020, "Total Visits": 244.0, "Total Visitors": 216.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 20.0, "Total Spend": 180.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 45.25, "Median Spend per Customer": 45.25 }, "geometry": { "type": "Point", "coordinates": [ -75.055616, 40.047874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-zs5", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "508 South St", "LATITUDE": 39.941661, "LONGITUDE": -75.151237, "DATE_RANGE_START": 2020, "Total Visits": 887.0, "Total Visitors": 607.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 48.0, "Total Spend": 994.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 32.76, "Median Spend per Customer": 35.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151237, 39.941661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wc5", "Name": "Abunai Poke", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949658, "LONGITUDE": -75.147567, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 224.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 64.0, "Total Spend": 588.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 15.51, "Median Spend per Customer": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.147567, 39.949658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ygk", "Name": "QT Vietnamese Sandwich", "Category": "Restaurants and Other Eating Places", "Address": "48 N 10th St", "LATITUDE": 39.953408, "LONGITUDE": -75.156559, "DATE_RANGE_START": 2020, "Total Visits": 476.0, "Total Visitors": 365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 17.0, "Total Spend": 317.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 20.2, "Median Spend per Customer": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156559, 39.953408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "Name": "Spice 28", "Category": "Restaurants and Other Eating Places", "Address": "1228 Chestnut St", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 87.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 2065.0, "Total Transactions": 73.0, "Total Customers": 62.0, "Median Spend per Transaction": 17.82, "Median Spend per Customer": 26.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2445 N Broad St", "LATITUDE": 39.990666, "LONGITUDE": -75.154886, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 105.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 23.0, "Total Spend": 14969.0, "Total Transactions": 383.0, "Total Customers": 284.0, "Median Spend per Transaction": 22.13, "Median Spend per Customer": 27.51 }, "geometry": { "type": "Point", "coordinates": [ -75.154886, 39.990666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2101 S 10th St", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2020, "Total Visits": 335.0, "Total Visitors": 226.0, "POI_CBG": 421010041013.0, "Median Dwell Time": 2.0, "Total Spend": 968.0, "Total Transactions": 81.0, "Total Customers": 32.0, "Median Spend per Transaction": 9.66, "Median Spend per Customer": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2310 W Oregon Ave", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2020, "Total Visits": 1278.0, "Total Visitors": 923.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 9.0, "Total Spend": 7680.0, "Total Transactions": 395.0, "Total Customers": 250.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8445 Frankford Ave Ste C", "LATITUDE": 40.043781, "LONGITUDE": -75.017638, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 216.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 7.0, "Total Spend": 784.0, "Total Transactions": 28.0, "Total Customers": 22.0, "Median Spend per Transaction": 14.76, "Median Spend per Customer": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.017638, 40.043781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7770 Dungan Rd", "LATITUDE": 40.065575, "LONGITUDE": -75.072105, "DATE_RANGE_START": 2020, "Total Visits": 524.0, "Total Visitors": 316.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 9.0, "Total Spend": 887.0, "Total Transactions": 48.0, "Total Customers": 40.0, "Median Spend per Transaction": 17.74, "Median Spend per Customer": 21.73 }, "geometry": { "type": "Point", "coordinates": [ -75.072105, 40.065575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9212 Frankford Ave", "LATITUDE": 40.055974, "LONGITUDE": -75.005102, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 216.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 5.0, "Total Spend": 441.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 19.39 }, "geometry": { "type": "Point", "coordinates": [ -75.005102, 40.055974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "8500 Henry Ave Ste 10", "LATITUDE": 40.063003, "LONGITUDE": -75.237723, "DATE_RANGE_START": 2020, "Total Visits": 326.0, "Total Visitors": 218.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 18.0, "Total Spend": 28831.0, "Total Transactions": 592.0, "Total Customers": 488.0, "Median Spend per Transaction": 37.58, "Median Spend per Customer": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 40.063003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100724, "LONGITUDE": -75.010588, "DATE_RANGE_START": 2020, "Total Visits": 792.0, "Total Visitors": 607.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 11.0, "Total Spend": 5940.0, "Total Transactions": 133.0, "Total Customers": 121.0, "Median Spend per Transaction": 30.99, "Median Spend per Customer": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.010588, 40.100724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6zf", "Name": "Royal Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1369 Franklin Mills Cir", "LATITUDE": 40.085942, "LONGITUDE": -74.962636, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 81.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 47.0, "Total Spend": 504.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -74.962636, 40.085942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "Name": "Gallelli Formal Wear", "Category": "Clothing Stores", "Address": "904 Cottman Ave", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 161.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 18.0, "Total Spend": 1389.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 130.0, "Median Spend per Customer": 155.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phc-pd9", "Name": "Bala Inn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5004 City Ave", "LATITUDE": 40.000031, "LONGITUDE": -75.228413, "DATE_RANGE_START": 2020, "Total Visits": 208.0, "Total Visitors": 181.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 102.0, "Total Spend": 431.0, "Total Transactions": 18.0, "Total Customers": 10.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.228413, 40.000031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgd-zfz", "Name": "Ramen Bar", "Category": "Restaurants and Other Eating Places", "Address": "3400 Lancaster Ave", "LATITUDE": 39.957167, "LONGITUDE": -75.192099, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 12.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 652.0, "Total Spend": 1439.0, "Total Transactions": 30.0, "Total Customers": 26.0, "Median Spend per Transaction": 33.7, "Median Spend per Customer": 33.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192099, 39.957167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "Name": "Brauhaus Schmitz", "Category": "Restaurants and Other Eating Places", "Address": "718 South St", "LATITUDE": 39.942007, "LONGITUDE": -75.154702, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 99.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 48.0, "Total Spend": 10891.0, "Total Transactions": 173.0, "Total Customers": 141.0, "Median Spend per Transaction": 50.02, "Median Spend per Customer": 63.24 }, "geometry": { "type": "Point", "coordinates": [ -75.154702, 39.942007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-p7v-gff", "Name": "Pupuseria y Taqueria Sabor Latino", "Category": "Restaurants and Other Eating Places", "Address": "1871 Cottman Ave", "LATITUDE": 40.052618, "LONGITUDE": -75.068059, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 93.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 11.0, "Total Spend": 99.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 25.06, "Median Spend per Customer": 25.06 }, "geometry": { "type": "Point", "coordinates": [ -75.068059, 40.052618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3110 W Cheltenham Ave", "LATITUDE": 40.081002, "LONGITUDE": -75.170911, "DATE_RANGE_START": 2020, "Total Visits": 470.0, "Total Visitors": 379.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 8.0, "Total Spend": 12125.0, "Total Transactions": 760.0, "Total Customers": 613.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 14.98 }, "geometry": { "type": "Point", "coordinates": [ -75.170911, 40.081002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3541 Aramingo Ave", "LATITUDE": 39.992778, "LONGITUDE": -75.097644, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 230.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 7.0, "Total Spend": 7875.0, "Total Transactions": 455.0, "Total Customers": 399.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.097644, 39.992778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-ht9", "Name": "Marc Rossi Auto Sales", "Category": "Automobile Dealers", "Address": "3759 Kensington Ave", "LATITUDE": 40.003612, "LONGITUDE": -75.099938, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 7.0, "Total Spend": 43986.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 8900.0, "Median Spend per Customer": 8900.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099938, 40.003612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7500 Frankford Ave", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2020, "Total Visits": 520.0, "Total Visitors": 324.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 2.0, "Total Spend": 8121.0, "Total Transactions": 1129.0, "Total Customers": 417.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 9.15 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-xdv", "Name": "Tiffin", "Category": "Restaurants and Other Eating Places", "Address": "710 W Girard Ave", "LATITUDE": 39.970151, "LONGITUDE": -75.148856, "DATE_RANGE_START": 2020, "Total Visits": 143.0, "Total Visitors": 62.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 366.0, "Total Spend": 6250.0, "Total Transactions": 129.0, "Total Customers": 107.0, "Median Spend per Transaction": 43.74, "Median Spend per Customer": 48.3 }, "geometry": { "type": "Point", "coordinates": [ -75.148856, 39.970151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-54v", "Name": "United Fried Chicken", "Category": "Restaurants and Other Eating Places", "Address": "1339 W Olney Ave", "LATITUDE": 40.039073, "LONGITUDE": -75.143922, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 66.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 2.0, "Total Spend": 944.0, "Total Transactions": 77.0, "Total Customers": 54.0, "Median Spend per Transaction": 9.3, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.143922, 40.039073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "8966 Frankford Ave", "LATITUDE": 40.052422, "LONGITUDE": -75.00877, "DATE_RANGE_START": 2020, "Total Visits": 560.0, "Total Visitors": 468.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 5.0, "Total Spend": 18154.0, "Total Transactions": 385.0, "Total Customers": 268.0, "Median Spend per Transaction": 28.05, "Median Spend per Customer": 43.71 }, "geometry": { "type": "Point", "coordinates": [ -75.00877, 40.052422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phq-k75", "Name": "Rodriguez Mini Market", "Category": "Grocery Stores", "Address": "6731 Ogontz Ave", "LATITUDE": 40.057192, "LONGITUDE": -75.148867, "DATE_RANGE_START": 2020, "Total Visits": 125.0, "Total Visitors": 103.0, "POI_CBG": 421010267007.0, "Median Dwell Time": 4.0, "Total Spend": 488.0, "Total Transactions": 54.0, "Total Customers": 30.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148867, 40.057192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "Name": "Girard Meat Market", "Category": "Specialty Food Stores", "Address": "4725 W Girard Ave", "LATITUDE": 39.972943, "LONGITUDE": -75.217427, "DATE_RANGE_START": 2020, "Total Visits": 643.0, "Total Visitors": 520.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 9.0, "Total Spend": 5510.0, "Total Transactions": 135.0, "Total Customers": 93.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 34.95 }, "geometry": { "type": "Point", "coordinates": [ -75.217427, 39.972943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "Name": "Northeast Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "7324 Castor Ave", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 131.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 301.0, "Total Spend": 6553.0, "Total Transactions": 204.0, "Total Customers": 137.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-435", "Name": "State Liquor Stores", "Category": "Beer, Wine, and Liquor Stores", "Address": "2401 Vare Ave", "LATITUDE": 39.920248, "LONGITUDE": -75.188384, "DATE_RANGE_START": 2020, "Total Visits": 1022.0, "Total Visitors": 772.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 7.0, "Total Spend": 594.0, "Total Transactions": 18.0, "Total Customers": 6.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 69.08 }, "geometry": { "type": "Point", "coordinates": [ -75.188384, 39.920248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8j-bp9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4011 Cottman Ave", "LATITUDE": 40.035986, "LONGITUDE": -75.039532, "DATE_RANGE_START": 2020, "Total Visits": 429.0, "Total Visitors": 272.0, "POI_CBG": 421010330006.0, "Median Dwell Time": 12.0, "Total Spend": 5466.0, "Total Transactions": 200.0, "Total Customers": 81.0, "Median Spend per Transaction": 19.96, "Median Spend per Customer": 28.4 }, "geometry": { "type": "Point", "coordinates": [ -75.039532, 40.035986 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jsq", "Name": "Patient Care Pharmacy", "Category": "Health and Personal Care Stores", "Address": "801 Washington Ave # 21", "LATITUDE": 39.936332, "LONGITUDE": -75.157296, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 81.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 22.0, "Total Spend": 371.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 26.82, "Median Spend per Customer": 41.82 }, "geometry": { "type": "Point", "coordinates": [ -75.157296, 39.936332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "259 Market St", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 79.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 3.0, "Total Spend": 14660.0, "Total Transactions": 863.0, "Total Customers": 447.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1046 Market St", "LATITUDE": 39.951447, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2020, "Total Visits": 786.0, "Total Visitors": 566.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 13.0, "Total Spend": 12184.0, "Total Transactions": 633.0, "Total Customers": 343.0, "Median Spend per Transaction": 10.99, "Median Spend per Customer": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.951447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p86-hbk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7941 Oxford Ave", "LATITUDE": 40.075694, "LONGITUDE": -75.084798, "DATE_RANGE_START": 2020, "Total Visits": 347.0, "Total Visitors": 240.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 10.0, "Total Spend": 2428.0, "Total Transactions": 119.0, "Total Customers": 66.0, "Median Spend per Transaction": 13.7, "Median Spend per Customer": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084798, 40.075694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pjk-3bk", "Name": "Posh", "Category": "Gasoline Stations", "Address": "8901 Ridge Ave", "LATITUDE": 40.068847, "LONGITUDE": -75.240209, "DATE_RANGE_START": 2020, "Total Visits": 288.0, "Total Visitors": 218.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 3.0, "Total Spend": 2198.0, "Total Transactions": 46.0, "Total Customers": 38.0, "Median Spend per Transaction": 37.0, "Median Spend per Customer": 43.48 }, "geometry": { "type": "Point", "coordinates": [ -75.240209, 40.068847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4001 Woodhaven Rd", "LATITUDE": 40.087401, "LONGITUDE": -74.970519, "DATE_RANGE_START": 2020, "Total Visits": 1489.0, "Total Visitors": 1080.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 1290.0, "Total Transactions": 54.0, "Total Customers": 38.0, "Median Spend per Transaction": 24.73, "Median Spend per Customer": 25.54 }, "geometry": { "type": "Point", "coordinates": [ -74.970519, 40.087401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2743 S Front St", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2020, "Total Visits": 252.0, "Total Visitors": 230.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 3.0, "Total Spend": 10314.0, "Total Transactions": 717.0, "Total Customers": 534.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 15.97 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "Name": "Ross Stores", "Category": "Department Stores", "Address": "7720 City Ave", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2020, "Total Visits": 1141.0, "Total Visitors": 875.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 20.0, "Total Spend": 16034.0, "Total Transactions": 417.0, "Total Customers": 258.0, "Median Spend per Transaction": 24.29, "Median Spend per Customer": 38.92 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "Name": "Stanley's Hardware", "Category": "Building Material and Supplies Dealers", "Address": "5555 Ridge Ave", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2020, "Total Visits": 854.0, "Total Visitors": 619.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 9.0, "Total Spend": 104223.0, "Total Transactions": 2517.0, "Total Customers": 1590.0, "Median Spend per Transaction": 26.96, "Median Spend per Customer": 35.58 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "942 Race St", "LATITUDE": 39.955218, "LONGITUDE": -75.155815, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 91.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 351.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 40.95, "Median Spend per Customer": 40.95 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 39.955218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-6hq", "Name": "Wrap Shack", "Category": "Restaurants and Other Eating Places", "Address": "112 S 11th St", "LATITUDE": 39.949717, "LONGITUDE": -75.158951, "DATE_RANGE_START": 2020, "Total Visits": 258.0, "Total Visitors": 198.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 8.0, "Total Spend": 3765.0, "Total Transactions": 91.0, "Total Customers": 81.0, "Median Spend per Transaction": 35.53, "Median Spend per Customer": 42.29 }, "geometry": { "type": "Point", "coordinates": [ -75.158951, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 191.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 6.0, "Total Spend": 6870.0, "Total Transactions": 457.0, "Total Customers": 369.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 14.89 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5534 Wayne Ave", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2020, "Total Visits": 407.0, "Total Visitors": 347.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 3.0, "Total Spend": 1095.0, "Total Transactions": 67.0, "Total Customers": 62.0, "Median Spend per Transaction": 13.9, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "Name": "Park Manor Deli", "Category": "Restaurants and Other Eating Places", "Address": "240 W Chelten Ave", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 161.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 365.0, "Total Spend": 5856.0, "Total Transactions": 453.0, "Total Customers": 193.0, "Median Spend per Transaction": 10.91, "Median Spend per Customer": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-yd9", "Name": "C & R Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "1600 Washington Ave", "LATITUDE": 39.938173, "LONGITUDE": -75.170563, "DATE_RANGE_START": 2020, "Total Visits": 836.0, "Total Visitors": 441.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 72.0, "Total Spend": 8516.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 107.57, "Median Spend per Customer": 253.53 }, "geometry": { "type": "Point", "coordinates": [ -75.170563, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-hdv", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "2800 Fox St", "LATITUDE": 40.009459, "LONGITUDE": -75.174254, "DATE_RANGE_START": 2020, "Total Visits": 4601.0, "Total Visitors": 2481.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 22.0, "Total Spend": 2548.0, "Total Transactions": 30.0, "Total Customers": 20.0, "Median Spend per Transaction": 67.08, "Median Spend per Customer": 109.36 }, "geometry": { "type": "Point", "coordinates": [ -75.174254, 40.009459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-v4v", "Name": "Olde City Food Market", "Category": "Grocery Stores", "Address": "202 Market St", "LATITUDE": 39.949709, "LONGITUDE": -75.144055, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 69.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 10.0, "Total Spend": 564.0, "Total Transactions": 38.0, "Total Customers": 24.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 11.62 }, "geometry": { "type": "Point", "coordinates": [ -75.144055, 39.949709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "Name": "Balducci's", "Category": "Grocery Stores", "Address": "1 Garage Access Rd Terminal C", "LATITUDE": 39.878244, "LONGITUDE": -75.24235, "DATE_RANGE_START": 2020, "Total Visits": 21350.0, "Total Visitors": 16814.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 10.0, "Total Spend": 4540.0, "Total Transactions": 326.0, "Total Customers": 314.0, "Median Spend per Transaction": 12.38, "Median Spend per Customer": 12.65 }, "geometry": { "type": "Point", "coordinates": [ -75.24235, 39.878244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7912 Roosevelt Blvd", "LATITUDE": 40.055662, "LONGITUDE": -75.049241, "DATE_RANGE_START": 2020, "Total Visits": 2439.0, "Total Visitors": 1649.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 5.0, "Total Spend": 67007.0, "Total Transactions": 4156.0, "Total Customers": 2195.0, "Median Spend per Transaction": 12.77, "Median Spend per Customer": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -75.049241, 40.055662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp5-7wk", "Name": "Friendly Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2258 N Front St", "LATITUDE": 39.984702, "LONGITUDE": -75.132436, "DATE_RANGE_START": 2020, "Total Visits": 6816.0, "Total Visitors": 2795.0, "POI_CBG": 421010162001.0, "Median Dwell Time": 154.0, "Total Spend": 20.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132436, 39.984702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "800 E Washington Ln", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2020, "Total Visits": 1098.0, "Total Visitors": 734.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 5.0, "Total Spend": 9622.0, "Total Transactions": 562.0, "Total Customers": 367.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "Name": "Nike Factory Store", "Category": "Shoe Stores", "Address": "901 Market St Unit 1095", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2020, "Total Visits": 145.0, "Total Visitors": 91.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 124.0, "Total Spend": 52787.0, "Total Transactions": 572.0, "Total Customers": 462.0, "Median Spend per Transaction": 63.97, "Median Spend per Customer": 80.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-t7q", "Name": "TNS Diamonds", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "136 S 8th St Unit A", "LATITUDE": 39.94842, "LONGITUDE": -75.154396, "DATE_RANGE_START": 2020, "Total Visits": 1665.0, "Total Visitors": 1229.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 189.0, "Total Spend": 9043.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 86.4, "Median Spend per Customer": 97.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154396, 39.94842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4334 Frankford Ave", "LATITUDE": 40.012134, "LONGITUDE": -75.088896, "DATE_RANGE_START": 2020, "Total Visits": 115.0, "Total Visitors": 83.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 9.0, "Total Spend": 598.0, "Total Transactions": 58.0, "Total Customers": 36.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 10.51 }, "geometry": { "type": "Point", "coordinates": [ -75.088896, 40.012134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj8-hwk", "Name": "Oxford Food Market", "Category": "Grocery Stores", "Address": "4820 Oxford Ave", "LATITUDE": 40.019429, "LONGITUDE": -75.084382, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010301002.0, "Median Dwell Time": 95.0, "Total Spend": 2569.0, "Total Transactions": 64.0, "Total Customers": 58.0, "Median Spend per Transaction": 32.28, "Median Spend per Customer": 33.19 }, "geometry": { "type": "Point", "coordinates": [ -75.084382, 40.019429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pgg-j7q", "Name": "B & R Grocery", "Category": "Grocery Stores", "Address": "2601 N 23rd St", "LATITUDE": 39.994344, "LONGITUDE": -75.169339, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010168005.0, "Median Dwell Time": null, "Total Spend": 203.0, "Total Transactions": 20.0, "Total Customers": 8.0, "Median Spend per Transaction": 9.29, "Median Spend per Customer": 27.79 }, "geometry": { "type": "Point", "coordinates": [ -75.169339, 39.994344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "917 Filbert St", "LATITUDE": 39.952664, "LONGITUDE": -75.15622, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 539.0, "Total Spend": 721.0, "Total Transactions": 58.0, "Total Customers": 52.0, "Median Spend per Transaction": 5.06, "Median Spend per Customer": 5.28 }, "geometry": { "type": "Point", "coordinates": [ -75.15622, 39.952664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p8j-94v", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "7107 Frankford Ave", "LATITUDE": 40.034583, "LONGITUDE": -75.044102, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 5.0, "Total Spend": 94.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.044102, 40.034583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-hwk", "Name": "Mr Bar Stool", "Category": "Furniture Stores", "Address": "167 N 2nd St", "LATITUDE": 39.953666, "LONGITUDE": -75.142763, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 1.0, "Total Spend": 1007.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 253.7, "Median Spend per Customer": 253.7 }, "geometry": { "type": "Point", "coordinates": [ -75.142763, 39.953666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "4358 Main St", "LATITUDE": 40.025431, "LONGITUDE": -75.223871, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 34.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 12837.0, "Total Transactions": 437.0, "Total Customers": 262.0, "Median Spend per Transaction": 13.2, "Median Spend per Customer": 21.78 }, "geometry": { "type": "Point", "coordinates": [ -75.223871, 40.025431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnt-tgk", "Name": "Hinge Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2652 E Somerset St", "LATITUDE": 39.979226, "LONGITUDE": -75.112172, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010180011.0, "Median Dwell Time": 1.0, "Total Spend": 1407.0, "Total Transactions": 62.0, "Total Customers": 46.0, "Median Spend per Transaction": 18.2, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.112172, 39.979226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dwg-f75", "Name": "Aya's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7144 Elmwood Ave", "LATITUDE": 39.915076, "LONGITUDE": -75.240053, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010060004.0, "Median Dwell Time": null, "Total Spend": 1339.0, "Total Transactions": 36.0, "Total Customers": 30.0, "Median Spend per Transaction": 35.1, "Median Spend per Customer": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.240053, 39.915076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "5717 Rising Sun Ave", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 1.0, "Total Spend": 28753.0, "Total Transactions": 401.0, "Total Customers": 361.0, "Median Spend per Transaction": 58.86, "Median Spend per Customer": 68.58 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7941 Bustleton Av & Loney St", "LATITUDE": 40.058164, "LONGITUDE": -75.052414, "DATE_RANGE_START": 2020, "Total Visits": 488.0, "Total Visitors": 383.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 4.0, "Total Spend": 3325.0, "Total Transactions": 149.0, "Total Customers": 67.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 40.82 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.058164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-vxq", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "7300 Algon Ave", "LATITUDE": 40.055747, "LONGITUDE": -75.073256, "DATE_RANGE_START": 2020, "Total Visits": 504.0, "Total Visitors": 423.0, "POI_CBG": 421010338002.0, "Median Dwell Time": 6.0, "Total Spend": 320.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073256, 40.055747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-9fz", "Name": "D M Food Market", "Category": "Grocery Stores", "Address": "2201 W Oxford St", "LATITUDE": 39.979141, "LONGITUDE": -75.171311, "DATE_RANGE_START": 2020, "Total Visits": 75.0, "Total Visitors": 48.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 10.0, "Total Spend": 289.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 10.19, "Median Spend per Customer": 20.17 }, "geometry": { "type": "Point", "coordinates": [ -75.171311, 39.979141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-nwk", "Name": "Centro Musical", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "464 W Lehigh Ave", "LATITUDE": 39.991818, "LONGITUDE": -75.139984, "DATE_RANGE_START": 2020, "Total Visits": 657.0, "Total Visitors": 429.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 86.0, "Total Spend": 1074.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 143.1 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 39.991818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "15501 Bustleton Ave Ste A", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2020, "Total Visits": 1649.0, "Total Visitors": 1141.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 23.0, "Total Spend": 1892.0, "Total Transactions": 75.0, "Total Customers": 38.0, "Median Spend per Transaction": 9.76, "Median Spend per Customer": 30.99 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-b8v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1325 Point Breeze Ave", "LATITUDE": 39.934826, "LONGITUDE": -75.178911, "DATE_RANGE_START": 2020, "Total Visits": 234.0, "Total Visitors": 167.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 10.0, "Total Spend": 1960.0, "Total Transactions": 167.0, "Total Customers": 81.0, "Median Spend per Transaction": 8.62, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178911, 39.934826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6587 Roosevelt Blvd", "LATITUDE": 40.035295, "LONGITUDE": -75.065039, "DATE_RANGE_START": 2020, "Total Visits": 494.0, "Total Visitors": 413.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 8.0, "Total Spend": 1507.0, "Total Transactions": 60.0, "Total Customers": 54.0, "Median Spend per Transaction": 19.24, "Median Spend per Customer": 22.41 }, "geometry": { "type": "Point", "coordinates": [ -75.065039, 40.035295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmf-s3q", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "1745 South St", "LATITUDE": 39.944594, "LONGITUDE": -75.171766, "DATE_RANGE_START": 2020, "Total Visits": 66.0, "Total Visitors": 58.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 22.0, "Total Spend": 3883.0, "Total Transactions": 417.0, "Total Customers": 288.0, "Median Spend per Transaction": 7.27, "Median Spend per Customer": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171766, 39.944594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "Name": "John's Place", "Category": "Restaurants and Other Eating Places", "Address": "1529 Spring Garden St", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 18.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 12.0, "Total Spend": 361.0, "Total Transactions": 28.0, "Total Customers": 16.0, "Median Spend per Transaction": 10.64, "Median Spend per Customer": 21.41 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj6-bx5", "Name": "Nam Vang Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "571 Adams Ave", "LATITUDE": 40.037327, "LONGITUDE": -75.108009, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 46.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 6.0, "Total Spend": 397.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 42.23, "Median Spend per Customer": 42.23 }, "geometry": { "type": "Point", "coordinates": [ -75.108009, 40.037327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Susquehanna Ave", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2020, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010158002.0, "Median Dwell Time": null, "Total Spend": 40.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 10.03, "Median Spend per Customer": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5040 City Ave", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2020, "Total Visits": 484.0, "Total Visitors": 379.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 6.0, "Total Spend": 6915.0, "Total Transactions": 367.0, "Total Customers": 240.0, "Median Spend per Transaction": 11.98, "Median Spend per Customer": 19.37 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9w-sbk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "13000 Bustleton Ave", "LATITUDE": 40.124225, "LONGITUDE": -75.015653, "DATE_RANGE_START": 2020, "Total Visits": 1753.0, "Total Visitors": 1241.0, "POI_CBG": 421010365013.0, "Median Dwell Time": 4.0, "Total Spend": 4994.0, "Total Transactions": 191.0, "Total Customers": 97.0, "Median Spend per Transaction": 26.62, "Median Spend per Customer": 29.02 }, "geometry": { "type": "Point", "coordinates": [ -75.015653, 40.124225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-x89", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5017 N Broad St # 25", "LATITUDE": 40.030078, "LONGITUDE": -75.146229, "DATE_RANGE_START": 2020, "Total Visits": 3142.0, "Total Visitors": 1931.0, "POI_CBG": 421010282001.0, "Median Dwell Time": 6.0, "Total Spend": 484.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.18 }, "geometry": { "type": "Point", "coordinates": [ -75.146229, 40.030078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pp5-k4v", "Name": "Ho Le Chan", "Category": "Restaurants and Other Eating Places", "Address": "2344 E Clearfield St", "LATITUDE": 39.987263, "LONGITUDE": -75.109046, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010179002.0, "Median Dwell Time": 10.0, "Total Spend": 324.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109046, 39.987263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pnx-sh5", "Name": "The International", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1624 N Front St", "LATITUDE": 39.974951, "LONGITUDE": -75.134534, "DATE_RANGE_START": 2020, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010157003.0, "Median Dwell Time": null, "Total Spend": 4473.0, "Total Transactions": 153.0, "Total Customers": 117.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134534, 39.974951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8318 Bustleton Ave", "LATITUDE": 40.069743, "LONGITUDE": -75.051689, "DATE_RANGE_START": 2020, "Total Visits": 482.0, "Total Visitors": 373.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 6.0, "Total Spend": 845.0, "Total Transactions": 89.0, "Total Customers": 58.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.051689, 40.069743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2116 S Columbus Blvd", "LATITUDE": 39.915644, "LONGITUDE": -75.139656, "DATE_RANGE_START": 2020, "Total Visits": 744.0, "Total Visitors": 582.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 14.0, "Total Spend": 3281.0, "Total Transactions": 240.0, "Total Customers": 197.0, "Median Spend per Transaction": 9.48, "Median Spend per Customer": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.139656, 39.915644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912527, "LONGITUDE": -75.154627, "DATE_RANGE_START": 2020, "Total Visits": 288.0, "Total Visitors": 244.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 15.0, "Total Spend": 2768.0, "Total Transactions": 56.0, "Total Customers": 52.0, "Median Spend per Transaction": 40.94, "Median Spend per Customer": 36.65 }, "geometry": { "type": "Point", "coordinates": [ -75.154627, 39.912527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-8y9", "Name": "The Pharmacy", "Category": "Restaurants and Other Eating Places", "Address": "1300 S 18th St", "LATITUDE": 39.934901, "LONGITUDE": -75.174223, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 32.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 2.0, "Total Spend": 1971.0, "Total Transactions": 56.0, "Total Customers": 52.0, "Median Spend per Transaction": 15.65, "Median Spend per Customer": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174223, 39.934901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "Name": "My Thai", "Category": "Restaurants and Other Eating Places", "Address": "2200 South St", "LATITUDE": 39.945111, "LONGITUDE": -75.178763, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 7.0, "Total Spend": 664.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 34.9, "Median Spend per Customer": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178763, 39.945111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-mx5", "Name": "Real Food Eatery", "Category": "Restaurants and Other Eating Places", "Address": "1700 Market St", "LATITUDE": 39.952907, "LONGITUDE": -75.169077, "DATE_RANGE_START": 2020, "Total Visits": 2388.0, "Total Visitors": 1348.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 189.0, "Total Spend": 781.0, "Total Transactions": 66.0, "Total Customers": 54.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169077, 39.952907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "Name": "Big Ben Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7266 Rising Sun Ave", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 62.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 3.0, "Total Spend": 8276.0, "Total Transactions": 318.0, "Total Customers": 193.0, "Median Spend per Transaction": 22.74, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "Name": "Javies Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "4901 Umbria St", "LATITUDE": 40.034848, "LONGITUDE": -75.234562, "DATE_RANGE_START": 2020, "Total Visits": 204.0, "Total Visitors": 175.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 3.0, "Total Spend": 67412.0, "Total Transactions": 1945.0, "Total Customers": 1151.0, "Median Spend per Transaction": 27.25, "Median Spend per Customer": 38.09 }, "geometry": { "type": "Point", "coordinates": [ -75.234562, 40.034848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "Name": "Beer Love", "Category": "Beer, Wine, and Liquor Stores", "Address": "714 S 4th St", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 135.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 5.0, "Total Spend": 3074.0, "Total Transactions": 109.0, "Total Customers": 87.0, "Median Spend per Transaction": 26.15, "Median Spend per Customer": 28.58 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6363 Frankford Ave", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2020, "Total Visits": 570.0, "Total Visitors": 379.0, "POI_CBG": 421010320003.0, "Median Dwell Time": 9.0, "Total Spend": 2382.0, "Total Transactions": 87.0, "Total Customers": 56.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "12311 Academy Rd Ste 250", "LATITUDE": 40.095101, "LONGITUDE": -74.975911, "DATE_RANGE_START": 2020, "Total Visits": 222.0, "Total Visitors": 183.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 9046.0, "Total Transactions": 314.0, "Total Customers": 222.0, "Median Spend per Transaction": 17.13, "Median Spend per Customer": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -74.975911, 40.095101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "Name": "Cafe Old Nelson", "Category": "Restaurants and Other Eating Places", "Address": "1435 Arch St", "LATITUDE": 39.954761, "LONGITUDE": -75.164691, "DATE_RANGE_START": 2020, "Total Visits": 151.0, "Total Visitors": 101.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 48.0, "Total Spend": 1034.0, "Total Transactions": 105.0, "Total Customers": 62.0, "Median Spend per Transaction": 9.48, "Median Spend per Customer": 10.05 }, "geometry": { "type": "Point", "coordinates": [ -75.164691, 39.954761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-ks5", "Name": "Zama", "Category": "Restaurants and Other Eating Places", "Address": "128 S 19th St", "LATITUDE": 39.950901, "LONGITUDE": -75.172392, "DATE_RANGE_START": 2020, "Total Visits": 328.0, "Total Visitors": 165.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 615.0, "Total Spend": 12569.0, "Total Transactions": 191.0, "Total Customers": 161.0, "Median Spend per Transaction": 46.4, "Median Spend per Customer": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172392, 39.950901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgj-2ff", "Name": "Pita & Co", "Category": "Restaurants and Other Eating Places", "Address": "1755 N 13th St", "LATITUDE": 39.979339, "LONGITUDE": -75.155043, "DATE_RANGE_START": 2020, "Total Visits": 343.0, "Total Visitors": 222.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 73.0, "Total Spend": 1435.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 55.0, "Median Spend per Customer": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155043, 39.979339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj7-5fz", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "5843 45 Rising Sun Avenue Philadelphia", "LATITUDE": 40.043629, "LONGITUDE": -75.102849, "DATE_RANGE_START": 2020, "Total Visits": 399.0, "Total Visitors": 270.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 8.0, "Total Spend": 848.0, "Total Transactions": 79.0, "Total Customers": 52.0, "Median Spend per Transaction": 8.01, "Median Spend per Customer": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.102849, 40.043629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "Name": "Hair Fashion & Beyond", "Category": "Health and Personal Care Stores", "Address": "1600 N Broad St Ste 9", "LATITUDE": 39.978135, "LONGITUDE": -75.158545, "DATE_RANGE_START": 2020, "Total Visits": 639.0, "Total Visitors": 556.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 7.0, "Total Spend": 6251.0, "Total Transactions": 181.0, "Total Customers": 171.0, "Median Spend per Transaction": 25.88, "Median Spend per Customer": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.158545, 39.978135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-g8v", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "1923 Middleton St", "LATITUDE": 40.06232, "LONGITUDE": -75.152136, "DATE_RANGE_START": 2020, "Total Visits": 431.0, "Total Visitors": 337.0, "POI_CBG": 421010265001.0, "Median Dwell Time": 6.0, "Total Spend": 7005.0, "Total Transactions": 183.0, "Total Customers": 145.0, "Median Spend per Transaction": 24.27, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152136, 40.06232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6758 Ridge Ave", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2020, "Total Visits": 242.0, "Total Visitors": 155.0, "POI_CBG": 421010215001.0, "Median Dwell Time": 9.0, "Total Spend": 9629.0, "Total Transactions": 308.0, "Total Customers": 224.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5726 Baltimore Ave # 46", "LATITUDE": 39.945629, "LONGITUDE": -75.237997, "DATE_RANGE_START": 2020, "Total Visits": 387.0, "Total Visitors": 282.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 10.0, "Total Spend": 14042.0, "Total Transactions": 337.0, "Total Customers": 286.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 30.76 }, "geometry": { "type": "Point", "coordinates": [ -75.237997, 39.945629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "Name": "Harbor Freight Tools", "Category": "Building Material and Supplies Dealers", "Address": "151 Franklin Mills Blvd", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2020, "Total Visits": 1215.0, "Total Visitors": 1064.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 53770.0, "Total Transactions": 740.0, "Total Customers": 595.0, "Median Spend per Transaction": 36.37, "Median Spend per Customer": 44.35 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmb-7yv", "Name": "John Yi Fish Market", "Category": "Specialty Food Stores", "Address": "51 N 12th St", "LATITUDE": 39.953479, "LONGITUDE": -75.159041, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 3738.0, "Total Transactions": 107.0, "Total Customers": 89.0, "Median Spend per Transaction": 24.92, "Median Spend per Customer": 27.85 }, "geometry": { "type": "Point", "coordinates": [ -75.159041, 39.953479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@63s-dvv-rx5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6731 Woodland Ave", "LATITUDE": 39.923209, "LONGITUDE": -75.238375, "DATE_RANGE_START": 2020, "Total Visits": 447.0, "Total Visitors": 328.0, "POI_CBG": 421010063003.0, "Median Dwell Time": 11.0, "Total Spend": 1751.0, "Total Transactions": 95.0, "Total Customers": 50.0, "Median Spend per Transaction": 9.57, "Median Spend per Customer": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.238375, 39.923209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "42 W Chelten Ave", "LATITUDE": 40.034612, "LONGITUDE": -75.175438, "DATE_RANGE_START": 2020, "Total Visits": 2652.0, "Total Visitors": 1602.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 23.0, "Total Spend": 1701.0, "Total Transactions": 206.0, "Total Customers": 73.0, "Median Spend per Transaction": 4.66, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.175438, 40.034612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5601 Vine St", "LATITUDE": 39.96694, "LONGITUDE": -75.233446, "DATE_RANGE_START": 2020, "Total Visits": 445.0, "Total Visitors": 383.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 6.0, "Total Spend": 1738.0, "Total Transactions": 143.0, "Total Customers": 119.0, "Median Spend per Transaction": 7.83, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.233446, 39.96694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-wx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "701 Market St", "LATITUDE": 39.950748, "LONGITUDE": -75.151909, "DATE_RANGE_START": 2020, "Total Visits": 191.0, "Total Visitors": 161.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 6.0, "Total Spend": 1897.0, "Total Transactions": 373.0, "Total Customers": 117.0, "Median Spend per Transaction": 4.4, "Median Spend per Customer": 9.78 }, "geometry": { "type": "Point", "coordinates": [ -75.151909, 39.950748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6190 N Front St", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 262.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 5.0, "Total Spend": 5530.0, "Total Transactions": 711.0, "Total Customers": 353.0, "Median Spend per Transaction": 6.39, "Median Spend per Customer": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "12375 Academy Rd", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2020, "Total Visits": 629.0, "Total Visitors": 365.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 36.0, "Total Spend": 8194.0, "Total Transactions": 1207.0, "Total Customers": 480.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-zxq", "Name": "Federal Donuts South Street", "Category": "Restaurants and Other Eating Places", "Address": "540 South St", "LATITUDE": 39.94181, "LONGITUDE": -75.152224, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 81.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 2.0, "Total Spend": 1977.0, "Total Transactions": 169.0, "Total Customers": 143.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.152224, 39.94181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3501 Aramingo Ave", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2020, "Total Visits": 1201.0, "Total Visitors": 834.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 3.0, "Total Spend": 9439.0, "Total Transactions": 1254.0, "Total Customers": 667.0, "Median Spend per Transaction": 6.34, "Median Spend per Customer": 8.72 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmd-w49", "Name": "Cook", "Category": "Home Furnishings Stores", "Address": "253 S 20th St", "LATITUDE": 39.94873, "LONGITUDE": -75.174113, "DATE_RANGE_START": 2020, "Total Visits": 1177.0, "Total Visitors": 572.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 200.0, "Total Spend": 1104.0, "Total Transactions": 30.0, "Total Customers": 18.0, "Median Spend per Transaction": 34.98, "Median Spend per Customer": 41.85 }, "geometry": { "type": "Point", "coordinates": [ -75.174113, 39.94873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "242 Market St # 244", "LATITUDE": 39.949907, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 240.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 18.0, "Total Spend": 1703.0, "Total Transactions": 151.0, "Total Customers": 87.0, "Median Spend per Transaction": 8.34, "Median Spend per Customer": 5.58 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.949907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "12301 Academy Rd", "LATITUDE": 40.095744, "LONGITUDE": -74.976099, "DATE_RANGE_START": 2020, "Total Visits": 1445.0, "Total Visitors": 915.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 92299.0, "Total Transactions": 6074.0, "Total Customers": 2142.0, "Median Spend per Transaction": 10.69, "Median Spend per Customer": 24.66 }, "geometry": { "type": "Point", "coordinates": [ -74.976099, 40.095744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pgb-nh5", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "827 N Broad St", "LATITUDE": 39.969197, "LONGITUDE": -75.159372, "DATE_RANGE_START": 2020, "Total Visits": 355.0, "Total Visitors": 268.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 185.0, "Total Spend": 2827.0, "Total Transactions": 40.0, "Total Customers": 36.0, "Median Spend per Transaction": 55.61, "Median Spend per Customer": 55.87 }, "geometry": { "type": "Point", "coordinates": [ -75.159372, 39.969197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qcq", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.039147, "LONGITUDE": -75.118804, "DATE_RANGE_START": 2020, "Total Visits": 3487.0, "Total Visitors": 1975.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 19.0, "Total Spend": 2177.0, "Total Transactions": 22.0, "Total Customers": 10.0, "Median Spend per Transaction": 96.56, "Median Spend per Customer": 31.16 }, "geometry": { "type": "Point", "coordinates": [ -75.118804, 40.039147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "Name": "Medical Tower Pharmacy", "Category": "Health and Personal Care Stores", "Address": "255 S 17th St", "LATITUDE": 39.948045, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2020, "Total Visits": 1030.0, "Total Visitors": 659.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 113.0, "Total Spend": 1796.0, "Total Transactions": 66.0, "Total Customers": 38.0, "Median Spend per Transaction": 8.22, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.948045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3000 Reed St # 02", "LATITUDE": 39.936229, "LONGITUDE": -75.194533, "DATE_RANGE_START": 2020, "Total Visits": 127.0, "Total Visitors": 81.0, "POI_CBG": 421010033006.0, "Median Dwell Time": 14.0, "Total Spend": 1774.0, "Total Transactions": 73.0, "Total Customers": 54.0, "Median Spend per Transaction": 17.7, "Median Spend per Customer": 21.14 }, "geometry": { "type": "Point", "coordinates": [ -75.194533, 39.936229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7972 Castor Ave", "LATITUDE": 40.061568, "LONGITUDE": -75.05681, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 198.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 6.0, "Total Spend": 2085.0, "Total Transactions": 95.0, "Total Customers": 66.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 20.85 }, "geometry": { "type": "Point", "coordinates": [ -75.05681, 40.061568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5700 Roosevelt Blvd", "LATITUDE": 40.032503, "LONGITUDE": -75.08527, "DATE_RANGE_START": 2020, "Total Visits": 1606.0, "Total Visitors": 1137.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 5.0, "Total Spend": 706.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 20.08, "Median Spend per Customer": 20.16 }, "geometry": { "type": "Point", "coordinates": [ -75.08527, 40.032503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1618 Chestnut St # 22", "LATITUDE": 39.951061, "LONGITUDE": -75.168264, "DATE_RANGE_START": 2020, "Total Visits": 131.0, "Total Visitors": 103.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 5.0, "Total Spend": 412.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 20.56, "Median Spend per Customer": 27.38 }, "geometry": { "type": "Point", "coordinates": [ -75.168264, 39.951061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pmf-j35", "Name": "Head Start Shoes", "Category": "Shoe Stores", "Address": "126 S 17th St", "LATITUDE": 39.950646, "LONGITUDE": -75.169071, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 91.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 4.0, "Total Spend": 1476.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 371.75, "Median Spend per Customer": 371.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 39.950646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5s5", "Name": "ROOST East Market", "Category": "Traveler Accommodation", "Address": "1199 Ludlow St", "LATITUDE": 39.951349, "LONGITUDE": -75.159655, "DATE_RANGE_START": 2020, "Total Visits": 1999.0, "Total Visitors": 1227.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 148.0, "Total Spend": 3934.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 642.01, "Median Spend per Customer": 642.01 }, "geometry": { "type": "Point", "coordinates": [ -75.159655, 39.951349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dtm-v75", "Name": "Delta Hotels", "Category": "Traveler Accommodation", "Address": "500 Stevens Dr", "LATITUDE": 39.873088, "LONGITUDE": -75.27466, "DATE_RANGE_START": 2020, "Total Visits": 1163.0, "Total Visitors": 786.0, "POI_CBG": 420454037012.0, "Median Dwell Time": 414.0, "Total Spend": 6991.0, "Total Transactions": 34.0, "Total Customers": 28.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27466, 39.873088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "Name": "Thai Kuu", "Category": "Restaurants and Other Eating Places", "Address": "35 Bethlehem Pike Ste 109A", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2020, "Total Visits": 129.0, "Total Visitors": 89.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 15.0, "Total Spend": 3942.0, "Total Transactions": 89.0, "Total Customers": 66.0, "Median Spend per Transaction": 37.16, "Median Spend per Customer": 52.44 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "6001 N Broad St", "LATITUDE": 40.044629, "LONGITUDE": -75.142895, "DATE_RANGE_START": 2020, "Total Visits": 530.0, "Total Visitors": 423.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 7.0, "Total Spend": 3037.0, "Total Transactions": 244.0, "Total Customers": 151.0, "Median Spend per Transaction": 9.4, "Median Spend per Customer": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.142895, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-vxq", "Name": "Jersey Mike's", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955112, "LONGITUDE": -75.18233, "DATE_RANGE_START": 2020, "Total Visits": 274.0, "Total Visitors": 200.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 44.0, "Total Spend": 4060.0, "Total Transactions": 310.0, "Total Customers": 248.0, "Median Spend per Transaction": 11.64, "Median Spend per Customer": 12.73 }, "geometry": { "type": "Point", "coordinates": [ -75.18233, 39.955112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5051 Wissahickon Ave", "LATITUDE": 40.019964, "LONGITUDE": -75.174488, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 163.0, "POI_CBG": 421010243002.0, "Median Dwell Time": 3.0, "Total Spend": 2692.0, "Total Transactions": 437.0, "Total Customers": 212.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.174488, 40.019964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "Name": "Heng Fa Food Market", "Category": "Grocery Stores", "Address": "130 N 10th St", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2020, "Total Visits": 373.0, "Total Visitors": 260.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 6.0, "Total Spend": 39738.0, "Total Transactions": 752.0, "Total Customers": 522.0, "Median Spend per Transaction": 21.93, "Median Spend per Customer": 25.39 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6412 Castor Ave # 6422", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2020, "Total Visits": 641.0, "Total Visitors": 461.0, "POI_CBG": 421010311013.0, "Median Dwell Time": 9.0, "Total Spend": 1803.0, "Total Transactions": 69.0, "Total Customers": 46.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 21.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg4-bx5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6201 Germantown Ave", "LATITUDE": 40.042838, "LONGITUDE": -75.179833, "DATE_RANGE_START": 2020, "Total Visits": 365.0, "Total Visitors": 242.0, "POI_CBG": 421010252002.0, "Median Dwell Time": 9.0, "Total Spend": 3146.0, "Total Transactions": 141.0, "Total Customers": 89.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 25.35 }, "geometry": { "type": "Point", "coordinates": [ -75.179833, 40.042838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "164 W Chelten Ave", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2020, "Total Visits": 1338.0, "Total Visitors": 885.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 44.0, "Total Spend": 3847.0, "Total Transactions": 202.0, "Total Customers": 107.0, "Median Spend per Transaction": 11.63, "Median Spend per Customer": 18.44 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-6tv", "Name": "Allen Tire & Service", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6301 Rising Sun Ave", "LATITUDE": 40.048405, "LONGITUDE": -75.096529, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010306003.0, "Median Dwell Time": null, "Total Spend": 2710.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 129.5, "Median Spend per Customer": 129.5 }, "geometry": { "type": "Point", "coordinates": [ -75.096529, 40.048405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pp4-vfz", "Name": "Franco's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2573 Tulip St", "LATITUDE": 39.982045, "LONGITUDE": -75.121584, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 14.0, "POI_CBG": 421010160004.0, "Median Dwell Time": 141.0, "Total Spend": 3542.0, "Total Transactions": 129.0, "Total Customers": 79.0, "Median Spend per Transaction": 26.3, "Median Spend per Customer": 33.38 }, "geometry": { "type": "Point", "coordinates": [ -75.121584, 39.982045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "Name": "Reggae Reggae Vibes", "Category": "Restaurants and Other Eating Places", "Address": "517 W Girard Ave", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010144003.0, "Median Dwell Time": 49.0, "Total Spend": 2229.0, "Total Transactions": 129.0, "Total Customers": 97.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "Name": "Monk's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "264 S 16th St", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 105.0, "Total Spend": 8533.0, "Total Transactions": 167.0, "Total Customers": 151.0, "Median Spend per Transaction": 34.14, "Median Spend per Customer": 37.56 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "7422 Bustleton Ave", "LATITUDE": 40.052515, "LONGITUDE": -75.058505, "DATE_RANGE_START": 2020, "Total Visits": 909.0, "Total Visitors": 734.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 11.0, "Total Spend": 5227.0, "Total Transactions": 133.0, "Total Customers": 123.0, "Median Spend per Transaction": 33.47, "Median Spend per Customer": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.058505, 40.052515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj6-99f", "Name": "Red Wine Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "701 Adams Ave", "LATITUDE": 40.033146, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 38.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 4.0, "Total Spend": 500.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 56.69, "Median Spend per Customer": 56.69 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.033146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "Name": "The Bayou Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "4245 Main St", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2020, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 21.0, "Total Spend": 5740.0, "Total Transactions": 197.0, "Total Customers": 157.0, "Median Spend per Transaction": 20.4, "Median Spend per Customer": 26.85 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "Name": "Pickwick Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1700 Market St", "LATITUDE": 39.952852, "LONGITUDE": -75.169574, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 44.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 1513.0, "Total Transactions": 60.0, "Total Customers": 40.0, "Median Spend per Transaction": 11.66, "Median Spend per Customer": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169574, 39.952852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pfz-bhq", "Name": "Valerio Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "4373 Main St", "LATITUDE": 40.025342, "LONGITUDE": -75.222719, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 46.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 18.0, "Total Spend": 2988.0, "Total Transactions": 276.0, "Total Customers": 224.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 11.02 }, "geometry": { "type": "Point", "coordinates": [ -75.222719, 40.025342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "1651 S Columbus Blvd", "LATITUDE": 39.925864, "LONGITUDE": -75.142894, "DATE_RANGE_START": 2020, "Total Visits": 5887.0, "Total Visitors": 4083.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 18.0, "Total Spend": 212101.0, "Total Transactions": 2100.0, "Total Customers": 1431.0, "Median Spend per Transaction": 44.74, "Median Spend per Customer": 56.02 }, "geometry": { "type": "Point", "coordinates": [ -75.142894, 39.925864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1617 John F Kennedy Blvd", "LATITUDE": 39.954271, "LONGITUDE": -75.167991, "DATE_RANGE_START": 2020, "Total Visits": 2549.0, "Total Visitors": 1453.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 252.0, "Total Spend": 5272.0, "Total Transactions": 173.0, "Total Customers": 129.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 14.78 }, "geometry": { "type": "Point", "coordinates": [ -75.167991, 39.954271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8n5", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "1021 Market St # 1175", "LATITUDE": 39.951999, "LONGITUDE": -75.157711, "DATE_RANGE_START": 2020, "Total Visits": 8462.0, "Total Visitors": 5091.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 24766.0, "Total Transactions": 480.0, "Total Customers": 413.0, "Median Spend per Transaction": 37.26, "Median Spend per Customer": 42.64 }, "geometry": { "type": "Point", "coordinates": [ -75.157711, 39.951999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951608, "LONGITUDE": -75.168943, "DATE_RANGE_START": 2020, "Total Visits": 619.0, "Total Visitors": 554.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 5.0, "Total Spend": 766.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168943, 39.951608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "9000 Roosevelt Blvd", "LATITUDE": 40.074942, "LONGITUDE": -75.035038, "DATE_RANGE_START": 2020, "Total Visits": 2168.0, "Total Visitors": 1461.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 5.0, "Total Spend": 1432.0, "Total Transactions": 66.0, "Total Customers": 52.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 24.21 }, "geometry": { "type": "Point", "coordinates": [ -75.035038, 40.074942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "Name": "East Falls Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4024 Ridge Ave", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010170001.0, "Median Dwell Time": 9.0, "Total Spend": 19851.0, "Total Transactions": 651.0, "Total Customers": 373.0, "Median Spend per Transaction": 24.45, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-7h5", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "861 N 3rd St", "LATITUDE": 39.964803, "LONGITUDE": -75.14238, "DATE_RANGE_START": 2020, "Total Visits": 566.0, "Total Visitors": 304.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 404.0, "Total Spend": 4567.0, "Total Transactions": 91.0, "Total Customers": 83.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 42.08 }, "geometry": { "type": "Point", "coordinates": [ -75.14238, 39.964803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "Name": "Venu", "Category": "Restaurants and Other Eating Places", "Address": "13th & Packer Ave", "LATITUDE": 39.911404, "LONGITUDE": -75.170366, "DATE_RANGE_START": 2020, "Total Visits": 2064.0, "Total Visitors": 1665.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 1.0, "Total Spend": 16755.0, "Total Transactions": 538.0, "Total Customers": 331.0, "Median Spend per Transaction": 21.73, "Median Spend per Customer": 32.56 }, "geometry": { "type": "Point", "coordinates": [ -75.170366, 39.911404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032189, "LONGITUDE": -75.214079, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 133.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 82.0, "Total Spend": 8580.0, "Total Transactions": 326.0, "Total Customers": 256.0, "Median Spend per Transaction": 23.14, "Median Spend per Customer": 25.51 }, "geometry": { "type": "Point", "coordinates": [ -75.214079, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "129 S 30th St", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2020, "Total Visits": 621.0, "Total Visitors": 451.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 20.0, "Total Spend": 9740.0, "Total Transactions": 711.0, "Total Customers": 572.0, "Median Spend per Transaction": 11.15, "Median Spend per Customer": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yjv", "Name": "Zio Pizza Palace & Grill", "Category": "Restaurants and Other Eating Places", "Address": "157 N 9th St", "LATITUDE": 39.955076, "LONGITUDE": -75.154189, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 77.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 63.0, "Total Spend": 1615.0, "Total Transactions": 111.0, "Total Customers": 83.0, "Median Spend per Transaction": 13.18, "Median Spend per Customer": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.154189, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-r49", "Name": "PA Auto Sales com", "Category": "Automobile Dealers", "Address": "11600 Roosevelt Blvd", "LATITUDE": 40.104341, "LONGITUDE": -75.003284, "DATE_RANGE_START": 2020, "Total Visits": 2263.0, "Total Visitors": 1747.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 18.0, "Total Spend": 5410.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 538.33, "Median Spend per Customer": 538.33 }, "geometry": { "type": "Point", "coordinates": [ -75.003284, 40.104341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "Name": "Yamitsuki Ramen", "Category": "Restaurants and Other Eating Places", "Address": "1028 Arch St", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2020, "Total Visits": 161.0, "Total Visitors": 107.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 1503.0, "Total Transactions": 48.0, "Total Customers": 44.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 31.88 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "177 W Allegheny Ave", "LATITUDE": 39.999351, "LONGITUDE": -75.132987, "DATE_RANGE_START": 2020, "Total Visits": 83.0, "Total Visitors": 79.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 2.0, "Total Spend": 365.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.38, "Median Spend per Customer": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.132987, 39.999351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste F6", "LATITUDE": 39.952029, "LONGITUDE": -75.167533, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 226.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 16.0, "Total Spend": 1813.0, "Total Transactions": 167.0, "Total Customers": 153.0, "Median Spend per Transaction": 10.65, "Median Spend per Customer": 10.65 }, "geometry": { "type": "Point", "coordinates": [ -75.167533, 39.952029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "Name": "Tampopo", "Category": "Restaurants and Other Eating Places", "Address": "269 S 44th St", "LATITUDE": 39.953009, "LONGITUDE": -75.210311, "DATE_RANGE_START": 2020, "Total Visits": 331.0, "Total Visitors": 226.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 134.0, "Total Spend": 1188.0, "Total Transactions": 60.0, "Total Customers": 44.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.210311, 39.953009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-k75", "Name": "Angela's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "9918 Roosevelt Blvd", "LATITUDE": 40.0945, "LONGITUDE": -75.018316, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 93.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 6.0, "Total Spend": 1044.0, "Total Transactions": 56.0, "Total Customers": 48.0, "Median Spend per Transaction": 16.73, "Median Spend per Customer": 22.22 }, "geometry": { "type": "Point", "coordinates": [ -75.018316, 40.0945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2027 S Broad St", "LATITUDE": 39.924749, "LONGITUDE": -75.169152, "DATE_RANGE_START": 2020, "Total Visits": 101.0, "Total Visitors": 93.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 5.0, "Total Spend": 4113.0, "Total Transactions": 337.0, "Total Customers": 220.0, "Median Spend per Transaction": 10.12, "Median Spend per Customer": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169152, 39.924749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.029727, "LONGITUDE": -75.09938, "DATE_RANGE_START": 2020, "Total Visits": 592.0, "Total Visitors": 478.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 13.0, "Total Spend": 6948.0, "Total Transactions": 415.0, "Total Customers": 351.0, "Median Spend per Transaction": 12.58, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.09938, 40.029727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1516 Chestnut St", "LATITUDE": 39.950896, "LONGITUDE": -75.166342, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 64.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 162.0, "Total Spend": 4228.0, "Total Transactions": 403.0, "Total Customers": 318.0, "Median Spend per Transaction": 9.47, "Median Spend per Customer": 10.36 }, "geometry": { "type": "Point", "coordinates": [ -75.166342, 39.950896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-c3q", "Name": "Foodery", "Category": "Restaurants and Other Eating Places", "Address": "324 S 10th St", "LATITUDE": 39.944856, "LONGITUDE": -75.158469, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 91.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 3.0, "Total Spend": 18347.0, "Total Transactions": 1016.0, "Total Customers": 492.0, "Median Spend per Transaction": 14.59, "Median Spend per Customer": 24.75 }, "geometry": { "type": "Point", "coordinates": [ -75.158469, 39.944856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2020, "Total Visits": 165.0, "Total Visitors": 143.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 2.0, "Total Spend": 2928.0, "Total Transactions": 312.0, "Total Customers": 274.0, "Median Spend per Transaction": 8.41, "Median Spend per Customer": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8902 Frankford Ave", "LATITUDE": 40.050984, "LONGITUDE": -75.010119, "DATE_RANGE_START": 2020, "Total Visits": 1284.0, "Total Visitors": 655.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 2.0, "Total Spend": 6116.0, "Total Transactions": 776.0, "Total Customers": 391.0, "Median Spend per Transaction": 6.9, "Median Spend per Customer": 9.32 }, "geometry": { "type": "Point", "coordinates": [ -75.010119, 40.050984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmf-tvz", "Name": "Aurora Grace", "Category": "Restaurants and Other Eating Places", "Address": "225 S 18th St", "LATITUDE": 39.949402, "LONGITUDE": -75.170471, "DATE_RANGE_START": 2020, "Total Visits": 820.0, "Total Visitors": 365.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 223.0, "Total Spend": 349.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 12.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170471, 39.949402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.046202, "LONGITUDE": -75.056569, "DATE_RANGE_START": 2020, "Total Visits": 1383.0, "Total Visitors": 990.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 4.0, "Total Spend": 14191.0, "Total Transactions": 2066.0, "Total Customers": 957.0, "Median Spend per Transaction": 5.6, "Median Spend per Customer": 9.61 }, "geometry": { "type": "Point", "coordinates": [ -75.056569, 40.046202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market St", "LATITUDE": 39.952606, "LONGITUDE": -75.16665, "DATE_RANGE_START": 2020, "Total Visits": 1114.0, "Total Visitors": 867.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 35.0, "Total Spend": 2297.0, "Total Transactions": 377.0, "Total Customers": 224.0, "Median Spend per Transaction": 5.13, "Median Spend per Customer": 6.38 }, "geometry": { "type": "Point", "coordinates": [ -75.16665, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5233 Torresdale Ave # 45", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2020, "Total Visits": 198.0, "Total Visitors": 151.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 3.0, "Total Spend": 2280.0, "Total Transactions": 365.0, "Total Customers": 202.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 7.05 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmd-zfz", "Name": "Small Oven Pastry Shop", "Category": "Restaurants and Other Eating Places", "Address": "2204 Washington Ave", "LATITUDE": 39.939225, "LONGITUDE": -75.180201, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 139.0, "POI_CBG": 421010020001.0, "Median Dwell Time": 2.0, "Total Spend": 546.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180201, 39.939225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "Name": "Milkcrate Cafe", "Category": "Restaurants and Other Eating Places", "Address": "400 E Girard Ave", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2020, "Total Visits": 445.0, "Total Visitors": 240.0, "POI_CBG": 421010143002.0, "Median Dwell Time": 357.0, "Total Spend": 12787.0, "Total Transactions": 965.0, "Total Customers": 443.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8144 Castor Ave # 8152", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2020, "Total Visits": 935.0, "Total Visitors": 597.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 3.0, "Total Spend": 18068.0, "Total Transactions": 1896.0, "Total Customers": 877.0, "Median Spend per Transaction": 7.6, "Median Spend per Customer": 11.26 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-s89", "Name": "Best Buy Furniture", "Category": "Furniture Stores", "Address": "2558 Grant Ave", "LATITUDE": 40.078011, "LONGITUDE": -75.024952, "DATE_RANGE_START": 2020, "Total Visits": 2322.0, "Total Visitors": 1874.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 21.0, "Total Spend": 3507.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 335.0, "Median Spend per Customer": 356.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024952, 40.078011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-7qz", "Name": "Vedge", "Category": "Restaurants and Other Eating Places", "Address": "1221 Locust St", "LATITUDE": 39.947987, "LONGITUDE": -75.161387, "DATE_RANGE_START": 2020, "Total Visits": 62.0, "Total Visitors": 58.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 136.0, "Total Spend": 1351.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 86.2, "Median Spend per Customer": 86.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161387, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "Name": "Penn Hardware", "Category": "Building Material and Supplies Dealers", "Address": "7404 Frankford Ave", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 89.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 3.0, "Total Spend": 2572.0, "Total Transactions": 103.0, "Total Customers": 77.0, "Median Spend per Transaction": 19.96, "Median Spend per Customer": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6138 Ridge Ave", "LATITUDE": 40.034271, "LONGITUDE": -75.216406, "DATE_RANGE_START": 2020, "Total Visits": 335.0, "Total Visitors": 220.0, "POI_CBG": 421010213002.0, "Median Dwell Time": 6.0, "Total Spend": 2001.0, "Total Transactions": 165.0, "Total Customers": 117.0, "Median Spend per Transaction": 7.83, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.216406, 40.034271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "Name": "Popi's Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3120 S 20th St", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010373002.0, "Median Dwell Time": null, "Total Spend": 659.0, "Total Transactions": 14.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 75.08 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pnw-mx5", "Name": "Stump", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "956 N 2nd St", "LATITUDE": 39.96557, "LONGITUDE": -75.14068, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 21.0, "Total Spend": 326.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 82.08, "Median Spend per Customer": 82.08 }, "geometry": { "type": "Point", "coordinates": [ -75.14068, 39.96557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1501 Cecil B Moore Ave", "LATITUDE": 39.979068, "LONGITUDE": -75.159667, "DATE_RANGE_START": 2020, "Total Visits": 276.0, "Total Visitors": 177.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 5.0, "Total Spend": 1923.0, "Total Transactions": 248.0, "Total Customers": 137.0, "Median Spend per Transaction": 7.47, "Median Spend per Customer": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.159667, 39.979068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-qfz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5440 Lansdowne Ave", "LATITUDE": 39.976667, "LONGITUDE": -75.231099, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 123.0, "POI_CBG": 421010112001.0, "Median Dwell Time": 14.0, "Total Spend": 818.0, "Total Transactions": 42.0, "Total Customers": 20.0, "Median Spend per Transaction": 18.19, "Median Spend per Customer": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.231099, 39.976667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "1575 N 52nd St Ste 704", "LATITUDE": 39.978284, "LONGITUDE": -75.224461, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 173.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 338.0, "Total Spend": 35483.0, "Total Transactions": 804.0, "Total Customers": 717.0, "Median Spend per Transaction": 29.13, "Median Spend per Customer": 31.77 }, "geometry": { "type": "Point", "coordinates": [ -75.224461, 39.978284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "Delaware Ave & Spring Garden St", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2020, "Total Visits": 1816.0, "Total Visitors": 1326.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 4.0, "Total Spend": 37973.0, "Total Transactions": 2033.0, "Total Customers": 1249.0, "Median Spend per Transaction": 15.18, "Median Spend per Customer": 20.93 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pgj-grk", "Name": "Mexican Grill Stand", "Category": "Restaurants and Other Eating Places", "Address": "1736 N 13th St", "LATITUDE": 39.979558, "LONGITUDE": -75.155335, "DATE_RANGE_START": 2020, "Total Visits": 343.0, "Total Visitors": 222.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 73.0, "Total Spend": 130.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.155335, 39.979558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "Name": "China Gate", "Category": "Restaurants and Other Eating Places", "Address": "3822 Morrell Ave", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2020, "Total Visits": 780.0, "Total Visitors": 488.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 9.0, "Total Spend": 1934.0, "Total Transactions": 67.0, "Total Customers": 56.0, "Median Spend per Transaction": 27.34, "Median Spend per Customer": 31.12 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "Name": "Moy Fong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7411 Stenton Ave", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2020, "Total Visits": 89.0, "Total Visitors": 85.0, "POI_CBG": 421010264005.0, "Median Dwell Time": 4.0, "Total Spend": 2679.0, "Total Transactions": 129.0, "Total Customers": 107.0, "Median Spend per Transaction": 18.85, "Median Spend per Customer": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6191 Ridge Ave", "LATITUDE": 40.035531, "LONGITUDE": -75.217119, "DATE_RANGE_START": 2020, "Total Visits": 183.0, "Total Visitors": 127.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 8.0, "Total Spend": 5079.0, "Total Transactions": 760.0, "Total Customers": 375.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.217119, 40.035531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-tn5", "Name": "The Fresh Works", "Category": "Restaurants and Other Eating Places", "Address": "2634 Belgrade St", "LATITUDE": 39.979613, "LONGITUDE": -75.11764, "DATE_RANGE_START": 2020, "Total Visits": 768.0, "Total Visitors": 349.0, "POI_CBG": 421010378003.0, "Median Dwell Time": 547.0, "Total Spend": 52.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 13.06, "Median Spend per Customer": 13.06 }, "geometry": { "type": "Point", "coordinates": [ -75.11764, 39.979613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "Name": "Southgate", "Category": "Restaurants and Other Eating Places", "Address": "1801 Lombard St", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2020, "Total Visits": 399.0, "Total Visitors": 246.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 326.0, "Total Spend": 1592.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 71.56, "Median Spend per Customer": 71.56 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.913861, "LONGITUDE": -75.154438, "DATE_RANGE_START": 2020, "Total Visits": 4343.0, "Total Visitors": 2249.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 21.0, "Total Spend": 6903.0, "Total Transactions": 60.0, "Total Customers": 46.0, "Median Spend per Transaction": 86.16, "Median Spend per Customer": 106.96 }, "geometry": { "type": "Point", "coordinates": [ -75.154438, 39.913861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "Name": "Clarkville", "Category": "Restaurants and Other Eating Places", "Address": "4301 Baltimore Ave", "LATITUDE": 39.949731, "LONGITUDE": -75.209453, "DATE_RANGE_START": 2020, "Total Visits": 123.0, "Total Visitors": 67.0, "POI_CBG": 421010087011.0, "Median Dwell Time": 416.0, "Total Spend": 9158.0, "Total Transactions": 324.0, "Total Customers": 256.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.209453, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-835", "Name": "Down Home Diner", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.952864, "LONGITUDE": -75.159035, "DATE_RANGE_START": 2020, "Total Visits": 24893.0, "Total Visitors": 14035.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 1911.0, "Total Transactions": 87.0, "Total Customers": 75.0, "Median Spend per Transaction": 18.88, "Median Spend per Customer": 23.13 }, "geometry": { "type": "Point", "coordinates": [ -75.159035, 39.952864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "Name": "South Street Souvlaki", "Category": "Restaurants and Other Eating Places", "Address": "509 South St", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2020, "Total Visits": 568.0, "Total Visitors": 417.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 30.0, "Total Spend": 966.0, "Total Transactions": 36.0, "Total Customers": 28.0, "Median Spend per Transaction": 29.62, "Median Spend per Customer": 31.12 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "Name": "Davids Mai Lai Wah", "Category": "Restaurants and Other Eating Places", "Address": "1001 Race St", "LATITUDE": 39.955591, "LONGITUDE": -75.155966, "DATE_RANGE_START": 2020, "Total Visits": 367.0, "Total Visitors": 262.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 217.0, "Total Spend": 6622.0, "Total Transactions": 195.0, "Total Customers": 163.0, "Median Spend per Transaction": 30.63, "Median Spend per Customer": 39.18 }, "geometry": { "type": "Point", "coordinates": [ -75.155966, 39.955591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "532 W Lehigh Ave # 46", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 89.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 6.0, "Total Spend": 2748.0, "Total Transactions": 387.0, "Total Customers": 242.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 7.49 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7300 Rising Sun Ave", "LATITUDE": 40.061832, "LONGITUDE": -75.084015, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 95.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 5.0, "Total Spend": 1980.0, "Total Transactions": 337.0, "Total Customers": 175.0, "Median Spend per Transaction": 5.19, "Median Spend per Customer": 6.95 }, "geometry": { "type": "Point", "coordinates": [ -75.084015, 40.061832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.011206, "LONGITUDE": -75.113008, "DATE_RANGE_START": 2020, "Total Visits": 629.0, "Total Visitors": 474.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 4.0, "Total Spend": 11000.0, "Total Transactions": 1431.0, "Total Customers": 631.0, "Median Spend per Transaction": 6.45, "Median Spend per Customer": 11.02 }, "geometry": { "type": "Point", "coordinates": [ -75.113008, 40.011206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-qzz", "Name": "Fortune Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1828 South St", "LATITUDE": 39.944339, "LONGITUDE": -75.172891, "DATE_RANGE_START": 2020, "Total Visits": 865.0, "Total Visitors": 320.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 490.0, "Total Spend": 279.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 21.06, "Median Spend per Customer": 21.18 }, "geometry": { "type": "Point", "coordinates": [ -75.172891, 39.944339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "Name": "Joes Pizza", "Category": "Restaurants and Other Eating Places", "Address": "122 S 16th St", "LATITUDE": 39.95039, "LONGITUDE": -75.167575, "DATE_RANGE_START": 2020, "Total Visits": 195.0, "Total Visitors": 149.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 623.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 18.23, "Median Spend per Customer": 21.93 }, "geometry": { "type": "Point", "coordinates": [ -75.167575, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgj-cqz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "1601 N Broad St", "LATITUDE": 39.977899, "LONGITUDE": -75.158476, "DATE_RANGE_START": 2020, "Total Visits": 234.0, "Total Visitors": 200.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 382.0, "Total Spend": 396.0, "Total Transactions": 26.0, "Total Customers": 20.0, "Median Spend per Transaction": 8.74, "Median Spend per Customer": 8.28 }, "geometry": { "type": "Point", "coordinates": [ -75.158476, 39.977899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6017 N Broad St", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2020, "Total Visits": 584.0, "Total Visitors": 423.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 3.0, "Total Spend": 14221.0, "Total Transactions": 2066.0, "Total Customers": 885.0, "Median Spend per Transaction": 5.71, "Median Spend per Customer": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@628-pmf-n3q", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953446, "LONGITUDE": -75.165892, "DATE_RANGE_START": 2020, "Total Visits": 1663.0, "Total Visitors": 1076.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 90.0, "Total Spend": 121.0, "Total Transactions": 16.0, "Total Customers": 8.0, "Median Spend per Transaction": 7.61, "Median Spend per Customer": 14.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165892, 39.953446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7700 Island Ave", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2020, "Total Visits": 300.0, "Total Visitors": 246.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 15438.0, "Total Transactions": 1443.0, "Total Customers": 923.0, "Median Spend per Transaction": 9.07, "Median Spend per Customer": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4046 Woodhaven Rd", "LATITUDE": 40.086321, "LONGITUDE": -74.971748, "DATE_RANGE_START": 2020, "Total Visits": 1755.0, "Total Visitors": 1135.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 2.0, "Total Spend": 11956.0, "Total Transactions": 1659.0, "Total Customers": 590.0, "Median Spend per Transaction": 5.82, "Median Spend per Customer": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -74.971748, 40.086321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "315 N 12th St", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2020, "Total Visits": 254.0, "Total Visitors": 149.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 60.0, "Total Spend": 2061.0, "Total Transactions": 262.0, "Total Customers": 183.0, "Median Spend per Transaction": 5.78, "Median Spend per Customer": 8.71 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.067993, "LONGITUDE": -75.198422, "DATE_RANGE_START": 2020, "Total Visits": 200.0, "Total Visitors": 195.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 10.0, "Total Spend": 15941.0, "Total Transactions": 355.0, "Total Customers": 286.0, "Median Spend per Transaction": 26.76, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.198422, 40.067993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg9-wc5", "Name": "Fairmount Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1900 Green St", "LATITUDE": 39.964685, "LONGITUDE": -75.169302, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010134023.0, "Median Dwell Time": 8.0, "Total Spend": 506.0, "Total Transactions": 46.0, "Total Customers": 38.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.169302, 39.964685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "Name": "China City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6612 Castor Ave", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2020, "Total Visits": 167.0, "Total Visitors": 30.0, "POI_CBG": 421010311011.0, "Median Dwell Time": 948.0, "Total Spend": 863.0, "Total Transactions": 40.0, "Total Customers": 24.0, "Median Spend per Transaction": 16.55, "Median Spend per Customer": 29.68 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032491, "LONGITUDE": -75.214429, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 125.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 5.0, "Total Spend": 3202.0, "Total Transactions": 133.0, "Total Customers": 125.0, "Median Spend per Transaction": 15.38, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.214429, 40.032491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pft-yjv", "Name": "Murphy's Tavern", "Category": "Restaurants and Other Eating Places", "Address": "5892 Henry Ave", "LATITUDE": 40.031371, "LONGITUDE": -75.207978, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 42.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 28.0, "Total Spend": 564.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 44.88 }, "geometry": { "type": "Point", "coordinates": [ -75.207978, 40.031371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "Name": "Union Tap House", "Category": "Restaurants and Other Eating Places", "Address": "4801 Umbria St", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 1.0, "Total Spend": 800.0, "Total Transactions": 20.0, "Total Customers": 12.0, "Median Spend per Transaction": 34.45, "Median Spend per Customer": 44.44 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "Name": "Best In Town Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7971 Castor Ave", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 75.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 23.0, "Total Spend": 3224.0, "Total Transactions": 95.0, "Total Customers": 75.0, "Median Spend per Transaction": 34.01, "Median Spend per Customer": 34.01 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2400 Castor Ave", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2020, "Total Visits": 461.0, "Total Visitors": 282.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 202.0, "Total Spend": 982.0, "Total Transactions": 93.0, "Total Customers": 75.0, "Median Spend per Transaction": 9.19, "Median Spend per Customer": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "Name": "Fishtown Pizza", "Category": "Restaurants and Other Eating Places", "Address": "607 E Girard Ave", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 30.0, "Total Spend": 1203.0, "Total Transactions": 62.0, "Total Customers": 38.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 21.96 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phz-s89", "Name": "Torres Food Market", "Category": "Grocery Stores", "Address": "1872 E Schiller St", "LATITUDE": 39.998232, "LONGITUDE": -75.106593, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010188007.0, "Median Dwell Time": 1.0, "Total Spend": 80.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 9.84, "Median Spend per Customer": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.106593, 39.998232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "Name": "Falafel Time", "Category": "Restaurants and Other Eating Places", "Address": "2214 South St", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010013001.0, "Median Dwell Time": null, "Total Spend": 2985.0, "Total Transactions": 159.0, "Total Customers": 125.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@63s-dvw-bhq", "Name": "Pm Food Market", "Category": "Grocery Stores", "Address": "61 N 52nd St", "LATITUDE": 39.961425, "LONGITUDE": -75.224249, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010093003.0, "Median Dwell Time": null, "Total Spend": 236.0, "Total Transactions": 28.0, "Total Customers": 20.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 13.59 }, "geometry": { "type": "Point", "coordinates": [ -75.224249, 39.961425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1018 N 2nd St", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 38.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 445.0, "Total Spend": 2414.0, "Total Transactions": 312.0, "Total Customers": 216.0, "Median Spend per Transaction": 6.05, "Median Spend per Customer": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pgd-v75", "Name": "7P Mini Market", "Category": "Grocery Stores", "Address": "641 N 39th St", "LATITUDE": 39.964658, "LONGITUDE": -75.199734, "DATE_RANGE_START": 2020, "Total Visits": 91.0, "Total Visitors": 50.0, "POI_CBG": 421010108005.0, "Median Dwell Time": 22.0, "Total Spend": 114.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 8.05 }, "geometry": { "type": "Point", "coordinates": [ -75.199734, 39.964658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p75-9pv", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "8423 8445 Frankford Ave Ste A", "LATITUDE": 40.044008, "LONGITUDE": -75.017305, "DATE_RANGE_START": 2020, "Total Visits": 193.0, "Total Visitors": 143.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 5.0, "Total Spend": 718.0, "Total Transactions": 18.0, "Total Customers": 12.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.017305, 40.044008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "Name": "1 Stop Mini Market", "Category": "Grocery Stores", "Address": "700 S 8th St", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2020, "Total Visits": 175.0, "Total Visitors": 115.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 3.0, "Total Spend": 8539.0, "Total Transactions": 387.0, "Total Customers": 153.0, "Median Spend per Transaction": 17.04, "Median Spend per Customer": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1 Franklin Town Blvd", "LATITUDE": 39.960173, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 67.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 6.0, "Total Spend": 1940.0, "Total Transactions": 320.0, "Total Customers": 97.0, "Median Spend per Transaction": 4.88, "Median Spend per Customer": 12.46 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.960173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7201 Castor Ave", "LATITUDE": 40.050139, "LONGITUDE": -75.066802, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 324.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 8.0, "Total Spend": 3953.0, "Total Transactions": 193.0, "Total Customers": 101.0, "Median Spend per Transaction": 10.53, "Median Spend per Customer": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -75.066802, 40.050139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4421 N Broad St", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2020, "Total Visits": 1312.0, "Total Visitors": 913.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 8.0, "Total Spend": 4223.0, "Total Transactions": 222.0, "Total Customers": 177.0, "Median Spend per Transaction": 13.05, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-gzf", "Name": "AnM Gas", "Category": "Gasoline Stations", "Address": "536 W Roosevelt Blvd", "LATITUDE": 40.023031, "LONGITUDE": -75.134802, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 99.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 3.0, "Total Spend": 3168.0, "Total Transactions": 242.0, "Total Customers": 133.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134802, 40.023031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "Name": "10 Spot/MadRag", "Category": "Clothing Stores", "Address": "2250 W Oregon Ave", "LATITUDE": 39.917816, "LONGITUDE": -75.185164, "DATE_RANGE_START": 2020, "Total Visits": 147.0, "Total Visitors": 139.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 3.0, "Total Spend": 23731.0, "Total Transactions": 597.0, "Total Customers": 514.0, "Median Spend per Transaction": 28.06, "Median Spend per Customer": 30.43 }, "geometry": { "type": "Point", "coordinates": [ -75.185164, 39.917816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-p9q-yn5", "Name": "Dolce Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave", "LATITUDE": 40.088053, "LONGITUDE": -75.037654, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 12.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 12.0, "Total Spend": 653.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 27.58, "Median Spend per Customer": 32.98 }, "geometry": { "type": "Point", "coordinates": [ -75.037654, 40.088053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgg-p5f", "Name": "Mimmo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3000 W Allegheny Ave", "LATITUDE": 40.004649, "LONGITUDE": -75.17882, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010171004.0, "Median Dwell Time": null, "Total Spend": 1342.0, "Total Transactions": 52.0, "Total Customers": 44.0, "Median Spend per Transaction": 24.44, "Median Spend per Customer": 19.63 }, "geometry": { "type": "Point", "coordinates": [ -75.17882, 40.004649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "Name": "Academy Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "3091 Holme Ave", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2020, "Total Visits": 28.0, "Total Visitors": 18.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 2.0, "Total Spend": 438.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-pgk", "Name": "Best Sunny Diner", "Category": "Restaurants and Other Eating Places", "Address": "2650 Germantown Ave", "LATITUDE": 39.992784, "LONGITUDE": -75.148123, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010165003.0, "Median Dwell Time": 104.0, "Total Spend": 422.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 22.39, "Median Spend per Customer": 26.44 }, "geometry": { "type": "Point", "coordinates": [ -75.148123, 39.992784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-52k", "Name": "Indian Sizzler", "Category": "Restaurants and Other Eating Places", "Address": "3651 Lancaster Ave", "LATITUDE": 39.959458, "LONGITUDE": -75.194962, "DATE_RANGE_START": 2020, "Total Visits": 40.0, "Total Visitors": 30.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 158.0, "Total Spend": 522.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 27.49, "Median Spend per Customer": 27.49 }, "geometry": { "type": "Point", "coordinates": [ -75.194962, 39.959458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Broad St", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2020, "Total Visits": 377.0, "Total Visitors": 322.0, "POI_CBG": 421010200001.0, "Median Dwell Time": 5.0, "Total Spend": 5167.0, "Total Transactions": 486.0, "Total Customers": 383.0, "Median Spend per Transaction": 8.62, "Median Spend per Customer": 9.85 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "Name": "Suraya", "Category": "Restaurants and Other Eating Places", "Address": "1528 Frankford Ave", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 46.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 28.0, "Total Spend": 2353.0, "Total Transactions": 30.0, "Total Customers": 20.0, "Median Spend per Transaction": 70.11, "Median Spend per Customer": 109.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "Name": "Palm Tree Market", "Category": "Grocery Stores", "Address": "4368 Cresson St", "LATITUDE": 40.026206, "LONGITUDE": -75.22393, "DATE_RANGE_START": 2020, "Total Visits": 119.0, "Total Visitors": 48.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 283.0, "Total Spend": 2519.0, "Total Transactions": 139.0, "Total Customers": 105.0, "Median Spend per Transaction": 13.68, "Median Spend per Customer": 18.12 }, "geometry": { "type": "Point", "coordinates": [ -75.22393, 40.026206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "Name": "Asian Bamboo House", "Category": "Restaurants and Other Eating Places", "Address": "9456 State Rd", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 64.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 4.0, "Total Spend": 3923.0, "Total Transactions": 111.0, "Total Customers": 93.0, "Median Spend per Transaction": 23.9, "Median Spend per Customer": 32.51 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dw2-c3q", "Name": "Tony Boys Breakfast", "Category": "Restaurants and Other Eating Places", "Address": "5951 Market St", "LATITUDE": 39.962196, "LONGITUDE": -75.240563, "DATE_RANGE_START": 2020, "Total Visits": 907.0, "Total Visitors": 576.0, "POI_CBG": 421010095003.0, "Median Dwell Time": 12.0, "Total Spend": 580.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 42.39, "Median Spend per Customer": 42.39 }, "geometry": { "type": "Point", "coordinates": [ -75.240563, 39.962196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-zmk", "Name": "Colney Deli", "Category": "Restaurants and Other Eating Places", "Address": "5610 N 5th St", "LATITUDE": 40.036792, "LONGITUDE": -75.130653, "DATE_RANGE_START": 2020, "Total Visits": 1102.0, "Total Visitors": 673.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 30.0, "Total Spend": 5769.0, "Total Transactions": 272.0, "Total Customers": 163.0, "Median Spend per Transaction": 18.85, "Median Spend per Customer": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.130653, 40.036792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2054 Red Lion Rd", "LATITUDE": 40.099554, "LONGITUDE": -75.024268, "DATE_RANGE_START": 2020, "Total Visits": 2515.0, "Total Visitors": 2042.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 11.0, "Total Spend": 1017.0, "Total Transactions": 177.0, "Total Customers": 127.0, "Median Spend per Transaction": 4.31, "Median Spend per Customer": 6.74 }, "geometry": { "type": "Point", "coordinates": [ -75.024268, 40.099554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "9430 Academy Rd", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2020, "Total Visits": 689.0, "Total Visitors": 552.0, "POI_CBG": 421010348022.0, "Median Dwell Time": 2.0, "Total Spend": 7256.0, "Total Transactions": 798.0, "Total Customers": 470.0, "Median Spend per Transaction": 7.67, "Median Spend per Customer": 9.99 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2020, "Total Visits": 320.0, "Total Visitors": 256.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 2.0, "Total Spend": 7013.0, "Total Transactions": 951.0, "Total Customers": 373.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 9.06 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pnw-x89", "Name": "Pretty Girls Cook", "Category": "Restaurants and Other Eating Places", "Address": "1016 N Marshall St", "LATITUDE": 39.97001, "LONGITUDE": -75.147605, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 82.0, "Total Spend": 4495.0, "Total Transactions": 183.0, "Total Customers": 151.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.147605, 39.97001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "Name": "El Merkury", "Category": "Restaurants and Other Eating Places", "Address": "2104 Chestnut St", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 28.0, "Total Spend": 526.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 26.12, "Median Spend per Customer": 26.12 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-syv", "Name": "Tony's Auto Service", "Category": "Gasoline Stations", "Address": "711 W Oregon Ave", "LATITUDE": 39.915674, "LONGITUDE": -75.160462, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 30.0, "POI_CBG": 421010041022.0, "Median Dwell Time": 9.0, "Total Spend": 519.0, "Total Transactions": 30.0, "Total Customers": 26.0, "Median Spend per Transaction": 14.48, "Median Spend per Customer": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.160462, 39.915674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "Name": "Dfti Boutique", "Category": "Clothing Stores", "Address": "2026 Chestnut St", "LATITUDE": 39.95206, "LONGITUDE": -75.174572, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 1.0, "Total Spend": 7524.0, "Total Transactions": 89.0, "Total Customers": 75.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 74.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174572, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "Name": "Charlie Was a Sinner", "Category": "Restaurants and Other Eating Places", "Address": "131 S 13th St", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 46.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 21126.0, "Total Transactions": 308.0, "Total Customers": 282.0, "Median Spend per Transaction": 55.08, "Median Spend per Customer": 58.26 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p7c-fcq", "Name": "Don Panchito Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3180 Grant Ave", "LATITUDE": 40.069404, "LONGITUDE": -75.008583, "DATE_RANGE_START": 2020, "Total Visits": 58.0, "Total Visitors": 56.0, "POI_CBG": 421010348022.0, "Median Dwell Time": 4.0, "Total Spend": 242.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.008583, 40.069404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-rx5", "Name": "Shanks Original", "Category": "Restaurants and Other Eating Places", "Address": "901 S Columbus Blvd Pier 40", "LATITUDE": 39.934821, "LONGITUDE": -75.142056, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 49.0, "Total Spend": 129.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 32.5, "Median Spend per Customer": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142056, 39.934821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg9-k4v", "Name": "Mom's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "2312 N 29th St", "LATITUDE": 39.991401, "LONGITUDE": -75.180066, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 16.0, "POI_CBG": 421010169022.0, "Median Dwell Time": 2.0, "Total Spend": 1334.0, "Total Transactions": 40.0, "Total Customers": 30.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.180066, 39.991401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "Name": "Pinoy Groseri", "Category": "Grocery Stores", "Address": "7925 Bustleton Ave", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 30.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 889.0, "Total Spend": 3127.0, "Total Transactions": 67.0, "Total Customers": 50.0, "Median Spend per Transaction": 33.65, "Median Spend per Customer": 44.63 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "Name": "Vic Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "2035 Sansom St", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2020, "Total Visits": 81.0, "Total Visitors": 38.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 28.0, "Total Spend": 13719.0, "Total Transactions": 310.0, "Total Customers": 236.0, "Median Spend per Transaction": 35.12, "Median Spend per Customer": 42.39 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-qs5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "813 Adams Ave", "LATITUDE": 40.031776, "LONGITUDE": -75.104312, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 40.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 93.0, "Total Spend": 2021.0, "Total Transactions": 252.0, "Total Customers": 147.0, "Median Spend per Transaction": 7.12, "Median Spend per Customer": 8.67 }, "geometry": { "type": "Point", "coordinates": [ -75.104312, 40.031776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-fvf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "122 W Chelten Ave", "LATITUDE": 40.033336, "LONGITUDE": -75.176853, "DATE_RANGE_START": 2020, "Total Visits": 240.0, "Total Visitors": 193.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 8.0, "Total Spend": 1175.0, "Total Transactions": 66.0, "Total Customers": 48.0, "Median Spend per Transaction": 18.73, "Median Spend per Customer": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.176853, 40.033336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-h5z", "Name": "Buena Onda", "Category": "Restaurants and Other Eating Places", "Address": "1901 Callowhill St", "LATITUDE": 39.960932, "LONGITUDE": -75.170707, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 117.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 200.0, "Total Spend": 9953.0, "Total Transactions": 381.0, "Total Customers": 316.0, "Median Spend per Transaction": 23.3, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.170707, 39.960932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "Name": "Perkins Restaurant & Bakery", "Category": "Restaurants and Other Eating Places", "Address": "1681 Grant Ave", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2020, "Total Visits": 109.0, "Total Visitors": 99.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 3.0, "Total Spend": 1185.0, "Total Transactions": 52.0, "Total Customers": 50.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 20.57 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-5s5", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "2201 Cottman Ave", "LATITUDE": 40.049399, "LONGITUDE": -75.061192, "DATE_RANGE_START": 2020, "Total Visits": 572.0, "Total Visitors": 462.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 9.0, "Total Spend": 2149.0, "Total Transactions": 151.0, "Total Customers": 133.0, "Median Spend per Transaction": 11.97, "Median Spend per Customer": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.061192, 40.049399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-kfz", "Name": "SoBol UCity", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.951073, "LONGITUDE": -75.198726, "DATE_RANGE_START": 2020, "Total Visits": 1290.0, "Total Visitors": 838.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 10.0, "Total Spend": 655.0, "Total Transactions": 54.0, "Total Customers": 52.0, "Median Spend per Transaction": 10.69, "Median Spend per Customer": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.198726, 39.951073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9834 Bustleton Ave", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2020, "Total Visits": 570.0, "Total Visitors": 387.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 3.0, "Total Spend": 6387.0, "Total Transactions": 927.0, "Total Customers": 433.0, "Median Spend per Transaction": 5.83, "Median Spend per Customer": 8.08 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7x-dgk", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "6846 Bustleton Ave", "LATITUDE": 40.04172, "LONGITUDE": -75.064728, "DATE_RANGE_START": 2020, "Total Visits": 113.0, "Total Visitors": 64.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 3.0, "Total Spend": 416.0, "Total Transactions": 56.0, "Total Customers": 50.0, "Median Spend per Transaction": 5.51, "Median Spend per Customer": 5.94 }, "geometry": { "type": "Point", "coordinates": [ -75.064728, 40.04172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1900 Market Street 20th & Market", "LATITUDE": 39.953365, "LONGITUDE": -75.173088, "DATE_RANGE_START": 2020, "Total Visits": 256.0, "Total Visitors": 232.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 7.0, "Total Spend": 2240.0, "Total Transactions": 324.0, "Total Customers": 216.0, "Median Spend per Transaction": 5.02, "Median Spend per Customer": 6.59 }, "geometry": { "type": "Point", "coordinates": [ -75.173088, 39.953365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-5vf", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "2226 Cottman Ave", "LATITUDE": 40.048428, "LONGITUDE": -75.061751, "DATE_RANGE_START": 2020, "Total Visits": 79.0, "Total Visitors": 64.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 35.0, "Total Spend": 2768.0, "Total Transactions": 173.0, "Total Customers": 141.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061751, 40.048428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2501 S 70th St", "LATITUDE": 39.916923, "LONGITUDE": -75.236784, "DATE_RANGE_START": 2020, "Total Visits": 262.0, "Total Visitors": 206.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 8.0, "Total Spend": 10001.0, "Total Transactions": 216.0, "Total Customers": 189.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.236784, 39.916923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3901 Aramingo Ave", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2020, "Total Visits": 699.0, "Total Visitors": 542.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 2.0, "Total Spend": 11778.0, "Total Transactions": 506.0, "Total Customers": 328.0, "Median Spend per Transaction": 14.22, "Median Spend per Customer": 20.26 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phk-yvz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6744 N 5th St # 46", "LATITUDE": 40.054784, "LONGITUDE": -75.126802, "DATE_RANGE_START": 2020, "Total Visits": 316.0, "Total Visitors": 220.0, "POI_CBG": 421010269001.0, "Median Dwell Time": 5.0, "Total Spend": 1780.0, "Total Transactions": 93.0, "Total Customers": 64.0, "Median Spend per Transaction": 11.55, "Median Spend per Customer": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126802, 40.054784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5756 Baltimore Ave # 74", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2020, "Total Visits": 1455.0, "Total Visitors": 1052.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 4.0, "Total Spend": 7670.0, "Total Transactions": 453.0, "Total Customers": 359.0, "Median Spend per Transaction": 15.06, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "Name": "Cambria Suites", "Category": "Traveler Accommodation", "Address": "219 S Broad St", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2020, "Total Visits": 3533.0, "Total Visitors": 2578.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 102.0, "Total Spend": 5853.0, "Total Transactions": 28.0, "Total Customers": 22.0, "Median Spend per Transaction": 201.03, "Median Spend per Customer": 176.82 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w49", "Name": "The Children's Place", "Category": "Clothing Stores", "Address": "1575 Franklin Mills Cir", "LATITUDE": 40.087614, "LONGITUDE": -74.96103, "DATE_RANGE_START": 2020, "Total Visits": 393.0, "Total Visitors": 322.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 148.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 12.76, "Median Spend per Customer": 12.76 }, "geometry": { "type": "Point", "coordinates": [ -74.96103, 40.087614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "1464 Philadelphia Mills", "LATITUDE": 40.087098, "LONGITUDE": -74.962333, "DATE_RANGE_START": 2020, "Total Visits": 218.0, "Total Visitors": 187.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 1440.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 60.71, "Median Spend per Customer": 54.97 }, "geometry": { "type": "Point", "coordinates": [ -74.962333, 40.087098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmd-zfz", "Name": "Porco's Porchetteria", "Category": "Restaurants and Other Eating Places", "Address": "2204 Washington Ave", "LATITUDE": 39.939344, "LONGITUDE": -75.180082, "DATE_RANGE_START": 2020, "Total Visits": 341.0, "Total Visitors": 286.0, "POI_CBG": 421010020001.0, "Median Dwell Time": 4.0, "Total Spend": 35.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 8.7, "Median Spend per Customer": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.180082, 39.939344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "Name": "Dollar Mart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4902 Baltimore Ave", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2020, "Total Visits": 802.0, "Total Visitors": 445.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 184.0, "Total Spend": 1610.0, "Total Transactions": 79.0, "Total Customers": 46.0, "Median Spend per Transaction": 15.41, "Median Spend per Customer": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1300 S Columbus Blvd", "LATITUDE": 39.930175, "LONGITUDE": -75.144763, "DATE_RANGE_START": 2020, "Total Visits": 1499.0, "Total Visitors": 1254.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 8.0, "Total Spend": 35463.0, "Total Transactions": 617.0, "Total Customers": 530.0, "Median Spend per Transaction": 29.16, "Median Spend per Customer": 35.02 }, "geometry": { "type": "Point", "coordinates": [ -75.144763, 39.930175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgc-zzz", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "5050 Parkside Ave", "LATITUDE": 39.979858, "LONGITUDE": -75.220169, "DATE_RANGE_START": 2020, "Total Visits": 586.0, "Total Visitors": 389.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 23.0, "Total Spend": 161.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 11.66, "Median Spend per Customer": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.220169, 39.979858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "401 Spring Garden St", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2020, "Total Visits": 947.0, "Total Visitors": 593.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 10.0, "Total Spend": 17506.0, "Total Transactions": 697.0, "Total Customers": 459.0, "Median Spend per Transaction": 14.87, "Median Spend per Customer": 19.62 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "Name": "Gennaro's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1315 Bainbridge St", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 34.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 185.0, "Total Spend": 1176.0, "Total Transactions": 77.0, "Total Customers": 62.0, "Median Spend per Transaction": 14.63, "Median Spend per Customer": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3750 W Girard Ave", "LATITUDE": 39.974361, "LONGITUDE": -75.199089, "DATE_RANGE_START": 2020, "Total Visits": 1818.0, "Total Visitors": 1318.0, "POI_CBG": 421010110001.0, "Median Dwell Time": 5.0, "Total Spend": 1487.0, "Total Transactions": 64.0, "Total Customers": 60.0, "Median Spend per Transaction": 21.92, "Median Spend per Customer": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.199089, 39.974361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "Name": "The Bagel Place", "Category": "Restaurants and Other Eating Places", "Address": "404 Queen St", "LATITUDE": 39.937457, "LONGITUDE": -75.15033, "DATE_RANGE_START": 2020, "Total Visits": 67.0, "Total Visitors": 48.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 21.0, "Total Spend": 6058.0, "Total Transactions": 387.0, "Total Customers": 171.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 21.97 }, "geometry": { "type": "Point", "coordinates": [ -75.15033, 39.937457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "Name": "Apple Retail Store", "Category": "Electronics and Appliance Stores", "Address": "1607 Walnut St", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 236.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 71.0, "Total Spend": 70316.0, "Total Transactions": 268.0, "Total Customers": 244.0, "Median Spend per Transaction": 93.96, "Median Spend per Customer": 106.92 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "Name": "Hong Kong Supermarket", "Category": "Grocery Stores", "Address": "571 Adams Ave Ste 4", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2020, "Total Visits": 824.0, "Total Visitors": 593.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 14.0, "Total Spend": 4737.0, "Total Transactions": 81.0, "Total Customers": 71.0, "Median Spend per Transaction": 41.1, "Median Spend per Customer": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-ckf", "Name": "Tran Beer Dist", "Category": "Beer, Wine, and Liquor Stores", "Address": "1616 W Passyunk Ave", "LATITUDE": 39.924541, "LONGITUDE": -75.173565, "DATE_RANGE_START": 2020, "Total Visits": 238.0, "Total Visitors": 167.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 30.0, "Total Spend": 2856.0, "Total Transactions": 97.0, "Total Customers": 62.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.173565, 39.924541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1334 Bainbridge St", "LATITUDE": 39.942529, "LONGITUDE": -75.164834, "DATE_RANGE_START": 2020, "Total Visits": 403.0, "Total Visitors": 117.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 544.0, "Total Spend": 1458.0, "Total Transactions": 81.0, "Total Customers": 69.0, "Median Spend per Transaction": 15.98, "Median Spend per Customer": 17.01 }, "geometry": { "type": "Point", "coordinates": [ -75.164834, 39.942529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-wtv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7720 Bustleton Ave", "LATITUDE": 40.054812, "LONGITUDE": -75.054903, "DATE_RANGE_START": 2020, "Total Visits": 407.0, "Total Visitors": 270.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 12.0, "Total Spend": 4544.0, "Total Transactions": 226.0, "Total Customers": 95.0, "Median Spend per Transaction": 7.29, "Median Spend per Customer": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.054903, 40.054812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm9-zs5", "Name": "Condom Kingdom", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "437 South St", "LATITUDE": 39.942054, "LONGITUDE": -75.150455, "DATE_RANGE_START": 2020, "Total Visits": 1006.0, "Total Visitors": 838.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 16.0, "Total Spend": 997.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 20.47, "Median Spend per Customer": 20.47 }, "geometry": { "type": "Point", "coordinates": [ -75.150455, 39.942054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "Name": "Fat Tuesday", "Category": "Specialty Food Stores", "Address": "431 South St", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2020, "Total Visits": 73.0, "Total Visitors": 62.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 86.0, "Total Spend": 14944.0, "Total Transactions": 838.0, "Total Customers": 651.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "Name": "1 Stop Smoke Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "10103 Verree Rd Unit C", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 64.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 9.0, "Total Spend": 2750.0, "Total Transactions": 103.0, "Total Customers": 85.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnw-yvz", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "901 W Girard Ave Ste 1B", "LATITUDE": 39.97112, "LONGITUDE": -75.151073, "DATE_RANGE_START": 2020, "Total Visits": 568.0, "Total Visitors": 355.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 15.0, "Total Spend": 1070.0, "Total Transactions": 46.0, "Total Customers": 36.0, "Median Spend per Transaction": 16.04, "Median Spend per Customer": 20.17 }, "geometry": { "type": "Point", "coordinates": [ -75.151073, 39.97112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "2000 Hamilton St", "LATITUDE": 39.9622, "LONGITUDE": -75.172139, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 9.0, "Total Spend": 1471.0, "Total Transactions": 56.0, "Total Customers": 52.0, "Median Spend per Transaction": 24.27, "Median Spend per Customer": 24.27 }, "geometry": { "type": "Point", "coordinates": [ -75.172139, 39.9622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-8n5", "Name": "Federal Donuts North", "Category": "Restaurants and Other Eating Places", "Address": "701 N 7th St", "LATITUDE": 39.964219, "LONGITUDE": -75.14909, "DATE_RANGE_START": 2020, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010131001.0, "Median Dwell Time": 2.0, "Total Spend": 710.0, "Total Transactions": 42.0, "Total Customers": 42.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 9.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14909, 39.964219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w8v", "Name": "Pro Image Sports", "Category": "Clothing Stores", "Address": "1491 Franklin Mills Cir", "LATITUDE": 40.087124, "LONGITUDE": -74.961763, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 4928.0, "Total Transactions": 81.0, "Total Customers": 71.0, "Median Spend per Transaction": 47.5, "Median Spend per Customer": 62.79 }, "geometry": { "type": "Point", "coordinates": [ -74.961763, 40.087124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7b-kj9", "Name": "Villagio Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9233 Frankford Ave", "LATITUDE": 40.055388, "LONGITUDE": -75.003512, "DATE_RANGE_START": 2020, "Total Visits": 169.0, "Total Visitors": 46.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 387.0, "Total Spend": 2858.0, "Total Transactions": 105.0, "Total Customers": 67.0, "Median Spend per Transaction": 24.01, "Median Spend per Customer": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.003512, 40.055388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "Name": "Mr. Tire", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6740 Frankford Ave", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2020, "Total Visits": 105.0, "Total Visitors": 52.0, "POI_CBG": 421010316006.0, "Median Dwell Time": 405.0, "Total Spend": 2648.0, "Total Transactions": 30.0, "Total Customers": 22.0, "Median Spend per Transaction": 36.76, "Median Spend per Customer": 73.02 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-qpv", "Name": "Via Bicycle", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "622 S Broad St", "LATITUDE": 39.943026, "LONGITUDE": -75.166002, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 54.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 13.0, "Total Spend": 2327.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 97.33, "Median Spend per Customer": 117.53 }, "geometry": { "type": "Point", "coordinates": [ -75.166002, 39.943026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "Name": "Tacodelphia", "Category": "Restaurants and Other Eating Places", "Address": "427 S Broad St", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2020, "Total Visits": 60.0, "Total Visitors": 58.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1.0, "Total Spend": 1828.0, "Total Transactions": 135.0, "Total Customers": 111.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "Name": "Old Nelson Food Company", "Category": "Beer, Wine, and Liquor Stores", "Address": "1100 W Montgomery Ave Ste D", "LATITUDE": 39.979391, "LONGITUDE": -75.152636, "DATE_RANGE_START": 2020, "Total Visits": 1413.0, "Total Visitors": 705.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 134.0, "Total Spend": 18905.0, "Total Transactions": 1298.0, "Total Customers": 917.0, "Median Spend per Transaction": 11.74, "Median Spend per Customer": 14.64 }, "geometry": { "type": "Point", "coordinates": [ -75.152636, 39.979391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4390 Richmond St", "LATITUDE": 39.997473, "LONGITUDE": -75.074081, "DATE_RANGE_START": 2020, "Total Visits": 345.0, "Total Visitors": 189.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 5.0, "Total Spend": 7781.0, "Total Transactions": 329.0, "Total Customers": 99.0, "Median Spend per Transaction": 14.86, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.074081, 39.997473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "Name": "LIDS", "Category": "Clothing Stores", "Address": "1301 Franklin Mills Cir", "LATITUDE": 40.085593, "LONGITUDE": -74.962215, "DATE_RANGE_START": 2020, "Total Visits": 153.0, "Total Visitors": 115.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 4736.0, "Total Transactions": 99.0, "Total Customers": 97.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962215, 40.085593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1268 Franklin Mills Cir", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2020, "Total Visits": 480.0, "Total Visitors": 345.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 41.0, "Total Spend": 2272.0, "Total Transactions": 62.0, "Total Customers": 44.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 35.57 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "Name": "Roses", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "501 Adams Ave", "LATITUDE": 40.039098, "LONGITUDE": -75.107749, "DATE_RANGE_START": 2020, "Total Visits": 1449.0, "Total Visitors": 1088.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 21.0, "Total Spend": 34584.0, "Total Transactions": 717.0, "Total Customers": 572.0, "Median Spend per Transaction": 31.16, "Median Spend per Customer": 38.51 }, "geometry": { "type": "Point", "coordinates": [ -75.107749, 40.039098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "6863 Bustleton Ave", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010314022.0, "Median Dwell Time": null, "Total Spend": 190.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 24.2, "Median Spend per Customer": 24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-2zf", "Name": "Helm", "Category": "Restaurants and Other Eating Places", "Address": "1303 N 5th St", "LATITUDE": 39.971556, "LONGITUDE": -75.144508, "DATE_RANGE_START": 2020, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010144001.0, "Median Dwell Time": null, "Total Spend": 776.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 57.3, "Median Spend per Customer": 57.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144508, 39.971556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pj5-3nq", "Name": "Erie Mini Market", "Category": "Grocery Stores", "Address": "1413 W Erie Ave", "LATITUDE": 40.009145, "LONGITUDE": -75.152232, "DATE_RANGE_START": 2020, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010201022.0, "Median Dwell Time": 5.0, "Total Spend": 946.0, "Total Transactions": 89.0, "Total Customers": 34.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152232, 40.009145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pm3-st9", "Name": "Laurel", "Category": "Restaurants and Other Eating Places", "Address": "1617 E Passyunk Ave", "LATITUDE": 39.929472, "LONGITUDE": -75.163723, "DATE_RANGE_START": 2020, "Total Visits": 8.0, "Total Visitors": 4.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 6.0, "Total Spend": 2286.0, "Total Transactions": 46.0, "Total Customers": 44.0, "Median Spend per Transaction": 42.11, "Median Spend per Customer": 42.66 }, "geometry": { "type": "Point", "coordinates": [ -75.163723, 39.929472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "5901 Wayne Ave", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010238003.0, "Median Dwell Time": null, "Total Spend": 5469.0, "Total Transactions": 723.0, "Total Customers": 415.0, "Median Spend per Transaction": 5.56, "Median Spend per Customer": 8.55 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjf-zvf", "Name": "McNally's Tavern Chestnut Hill", "Category": "Restaurants and Other Eating Places", "Address": "8634 Germantown Ave", "LATITUDE": 40.077129, "LONGITUDE": -75.208866, "DATE_RANGE_START": 2020, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010385002.0, "Median Dwell Time": null, "Total Spend": 6543.0, "Total Transactions": 127.0, "Total Customers": 105.0, "Median Spend per Transaction": 47.33, "Median Spend per Customer": 50.48 }, "geometry": { "type": "Point", "coordinates": [ -75.208866, 40.077129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "Name": "Windfall Gallery", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7944 Germantown Ave", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2020, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 1.0, "Total Spend": 165.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 41.54 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3705 Germantown Ave", "LATITUDE": 40.009461, "LONGITUDE": -75.150639, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 5.0, "Total Spend": 1051.0, "Total Transactions": 159.0, "Total Customers": 95.0, "Median Spend per Transaction": 5.8, "Median Spend per Customer": 6.31 }, "geometry": { "type": "Point", "coordinates": [ -75.150639, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "Name": "Talk of the Town", "Category": "Restaurants and Other Eating Places", "Address": "7804 Limekiln Pike", "LATITUDE": 40.071911, "LONGITUDE": -75.161398, "DATE_RANGE_START": 2020, "Total Visits": 77.0, "Total Visitors": 28.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 324.0, "Total Spend": 2283.0, "Total Transactions": 89.0, "Total Customers": 69.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 31.08 }, "geometry": { "type": "Point", "coordinates": [ -75.161398, 40.071911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "104 S 40th St", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2020, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 21.0, "Total Spend": 6574.0, "Total Transactions": 300.0, "Total Customers": 218.0, "Median Spend per Transaction": 19.47, "Median Spend per Customer": 26.32 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-phc-rkz", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "5022 City Ave # 24", "LATITUDE": 39.999213, "LONGITUDE": -75.22984, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 1.0, "Total Spend": 178.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 9.03, "Median Spend per Customer": 9.03 }, "geometry": { "type": "Point", "coordinates": [ -75.22984, 39.999213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "Name": "La Tienda MiniMarket", "Category": "Restaurants and Other Eating Places", "Address": "1247 Snyder Ave", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2020, "Total Visits": 48.0, "Total Visitors": 26.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 224.0, "Total Spend": 109.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 27.39, "Median Spend per Customer": 27.39 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "238 S 20th St", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 32.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 830.0, "Total Spend": 2044.0, "Total Transactions": 310.0, "Total Customers": 218.0, "Median Spend per Transaction": 5.54, "Median Spend per Customer": 6.94 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "Name": "Girard Mini Market", "Category": "Grocery Stores", "Address": "2901 W Girard Ave", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2020, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 1.0, "Total Spend": 307.0, "Total Transactions": 34.0, "Total Customers": 32.0, "Median Spend per Transaction": 8.74, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "266-222@628-pm4-sh5", "Name": "Ramayana Store", "Category": "Specialty Food Stores", "Address": "1543 S 7th St", "LATITUDE": 39.929048, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2020, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010028011.0, "Median Dwell Time": 2.0, "Total Spend": 194.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 48.75, "Median Spend per Customer": 48.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.929048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-rkz", "Name": "Cafe Lutecia", "Category": "Restaurants and Other Eating Places", "Address": "2301 Lombard St", "LATITUDE": 39.946587, "LONGITUDE": -75.179627, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 44.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 121.0, "Total Spend": 3017.0, "Total Transactions": 103.0, "Total Customers": 60.0, "Median Spend per Transaction": 23.56, "Median Spend per Customer": 37.94 }, "geometry": { "type": "Point", "coordinates": [ -75.179627, 39.946587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "Name": "Bellini", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "220 S 16th St", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2020, "Total Visits": 52.0, "Total Visitors": 46.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 10.0, "Total Spend": 3860.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 107.12, "Median Spend per Customer": 107.12 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26h-222@628-pm3-zmk", "Name": "Wendy's Deli", "Category": "Restaurants and Other Eating Places", "Address": "2312 S 7th St", "LATITUDE": 39.920091, "LONGITUDE": -75.159002, "DATE_RANGE_START": 2020, "Total Visits": 18.0, "Total Visitors": 12.0, "POI_CBG": 421010041021.0, "Median Dwell Time": 10.0, "Total Spend": 122.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 21.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159002, 39.920091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-fcq", "Name": "Yeager Hardware", "Category": "Building Material and Supplies Dealers", "Address": "1232 N 52nd St", "LATITUDE": 39.97236, "LONGITUDE": -75.226332, "DATE_RANGE_START": 2020, "Total Visits": 93.0, "Total Visitors": 18.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 460.0, "Total Spend": 42381.0, "Total Transactions": 1332.0, "Total Customers": 967.0, "Median Spend per Transaction": 18.07, "Median Spend per Customer": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.226332, 39.97236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "Name": "Vietnam Cafe", "Category": "Restaurants and Other Eating Places", "Address": "816 S 47th St", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2020, "Total Visits": 54.0, "Total Visitors": 50.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 1.0, "Total Spend": 5632.0, "Total Transactions": 143.0, "Total Customers": 125.0, "Median Spend per Transaction": 36.75, "Median Spend per Customer": 40.61 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992304, "LONGITUDE": -75.099808, "DATE_RANGE_START": 2020, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 10.0, "Total Spend": 199.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 22.11, "Median Spend per Customer": 22.11 }, "geometry": { "type": "Point", "coordinates": [ -75.099808, 39.992304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj2-mrk", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "3960 Kensington Ave # 80", "LATITUDE": 40.006514, "LONGITUDE": -75.095617, "DATE_RANGE_START": 2020, "Total Visits": 185.0, "Total Visitors": 163.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 4.0, "Total Spend": 4867.0, "Total Transactions": 345.0, "Total Customers": 264.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.095617, 40.006514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5s5", "Name": "Federal Donuts East Market", "Category": "Restaurants and Other Eating Places", "Address": "21 S 12th St", "LATITUDE": 39.951076, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2020, "Total Visits": 717.0, "Total Visitors": 522.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 24.0, "Total Spend": 113.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.951076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "Name": "Spice Finch", "Category": "Restaurants and Other Eating Places", "Address": "220 S 17th St", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2020, "Total Visits": 1159.0, "Total Visitors": 740.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 234.0, "Total Spend": 172.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 43.29, "Median Spend per Customer": 43.29 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "Name": "Chicko Tako", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2020, "Total Visits": 95.0, "Total Visitors": 77.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 8.0, "Total Spend": 2642.0, "Total Transactions": 135.0, "Total Customers": 113.0, "Median Spend per Transaction": 14.67, "Median Spend per Customer": 19.97 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-xnq", "Name": "Dae Bak", "Category": "Restaurants and Other Eating Places", "Address": "1016 Race St Fl 2", "LATITUDE": 39.955289, "LONGITUDE": -75.156637, "DATE_RANGE_START": 2020, "Total Visits": 2001.0, "Total Visitors": 1358.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 31.0, "Total Spend": 550.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 31.8, "Median Spend per Customer": 31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156637, 39.955289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Ridge Ave", "LATITUDE": 40.030371, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2020, "Total Visits": 246.0, "Total Visitors": 214.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 5.0, "Total Spend": 2218.0, "Total Transactions": 169.0, "Total Customers": 111.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 14.39 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "29 E Chelten Ave", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2020, "Total Visits": 490.0, "Total Visitors": 383.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 4.0, "Total Spend": 9128.0, "Total Transactions": 850.0, "Total Customers": 615.0, "Median Spend per Transaction": 9.01, "Median Spend per Customer": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-5pv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1113 Market St", "LATITUDE": 39.952074, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 81.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 10.0, "Total Spend": 2084.0, "Total Transactions": 423.0, "Total Customers": 165.0, "Median Spend per Transaction": 3.55, "Median Spend per Customer": 5.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.952074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2020, "Total Visits": 441.0, "Total Visitors": 272.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 3.0, "Total Spend": 5072.0, "Total Transactions": 677.0, "Total Customers": 369.0, "Median Spend per Transaction": 6.15, "Median Spend per Customer": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm4-mkz", "Name": "Benna's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8th And Wharton St", "LATITUDE": 39.93273, "LONGITUDE": -75.157747, "DATE_RANGE_START": 2020, "Total Visits": 234.0, "Total Visitors": 125.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 614.0, "Total Spend": 84.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157747, 39.93273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-c89", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7970 Dungan Rd # 80", "LATITUDE": 40.068373, "LONGITUDE": -75.068436, "DATE_RANGE_START": 2020, "Total Visits": 1040.0, "Total Visitors": 500.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 3.0, "Total Spend": 6072.0, "Total Transactions": 887.0, "Total Customers": 373.0, "Median Spend per Transaction": 6.04, "Median Spend per Customer": 8.72 }, "geometry": { "type": "Point", "coordinates": [ -75.068436, 40.068373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "537 Adams Ave", "LATITUDE": 40.038428, "LONGITUDE": -75.106684, "DATE_RANGE_START": 2020, "Total Visits": 133.0, "Total Visitors": 115.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 5.0, "Total Spend": 20803.0, "Total Transactions": 516.0, "Total Customers": 391.0, "Median Spend per Transaction": 23.2, "Median Spend per Customer": 30.85 }, "geometry": { "type": "Point", "coordinates": [ -75.106684, 40.038428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "Name": "Race Supermarket", "Category": "Grocery Stores", "Address": "156 N 52nd St", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2020, "Total Visits": 97.0, "Total Visitors": 67.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 7.0, "Total Spend": 1518.0, "Total Transactions": 200.0, "Total Customers": 109.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3900 Castor Ave", "LATITUDE": 40.00641, "LONGITUDE": -75.099483, "DATE_RANGE_START": 2020, "Total Visits": 99.0, "Total Visitors": 97.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 5.0, "Total Spend": 2681.0, "Total Transactions": 133.0, "Total Customers": 81.0, "Median Spend per Transaction": 14.88, "Median Spend per Customer": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.099483, 40.00641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-b8v", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "8130 Roosevelt Blvd", "LATITUDE": 40.059227, "LONGITUDE": -75.045575, "DATE_RANGE_START": 2020, "Total Visits": 419.0, "Total Visitors": 292.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 7.0, "Total Spend": 1765.0, "Total Transactions": 87.0, "Total Customers": 60.0, "Median Spend per Transaction": 13.9, "Median Spend per Customer": 19.77 }, "geometry": { "type": "Point", "coordinates": [ -75.045575, 40.059227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "Name": "Kiehl's", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2020, "Total Visits": 161.0, "Total Visitors": 119.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 11.0, "Total Spend": 2227.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 48.6, "Median Spend per Customer": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3850 Lancaster Ave", "LATITUDE": 39.961276, "LONGITUDE": -75.199304, "DATE_RANGE_START": 2020, "Total Visits": 177.0, "Total Visitors": 123.0, "POI_CBG": 421010091003.0, "Median Dwell Time": 21.0, "Total Spend": 494.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 124.5, "Median Spend per Customer": 124.5 }, "geometry": { "type": "Point", "coordinates": [ -75.199304, 39.961276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "919A Levick St", "LATITUDE": 40.045256, "LONGITUDE": -75.086611, "DATE_RANGE_START": 2020, "Total Visits": 292.0, "Total Visitors": 240.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 8.0, "Total Spend": 349.0, "Total Transactions": 20.0, "Total Customers": 12.0, "Median Spend per Transaction": 9.01, "Median Spend per Customer": 10.74 }, "geometry": { "type": "Point", "coordinates": [ -75.086611, 40.045256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3400 Lancaster Ave Ste 10", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2020, "Total Visits": 121.0, "Total Visitors": 97.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 2.0, "Total Spend": 5039.0, "Total Transactions": 419.0, "Total Customers": 355.0, "Median Spend per Transaction": 10.65, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7613 Castor Ave", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2020, "Total Visits": 546.0, "Total Visitors": 361.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 5.0, "Total Spend": 13965.0, "Total Transactions": 1254.0, "Total Customers": 746.0, "Median Spend per Transaction": 9.77, "Median Spend per Customer": 14.69 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "Name": "Desi Chaat House", "Category": "Restaurants and Other Eating Places", "Address": "501 S 42nd St", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2020, "Total Visits": 103.0, "Total Visitors": 10.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 731.0, "Total Spend": 1261.0, "Total Transactions": 97.0, "Total Customers": 67.0, "Median Spend per Transaction": 12.07, "Median Spend per Customer": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-bc5", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "100 N Edgewood St", "LATITUDE": 39.963748, "LONGITUDE": -75.241226, "DATE_RANGE_START": 2020, "Total Visits": 30.0, "Total Visitors": 12.0, "POI_CBG": 421010096002.0, "Median Dwell Time": 16.0, "Total Spend": 1061.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 20.36, "Median Spend per Customer": 19.96 }, "geometry": { "type": "Point", "coordinates": [ -75.241226, 39.963748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1100 Tasker St", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010028024.0, "Median Dwell Time": null, "Total Spend": 2115.0, "Total Transactions": 252.0, "Total Customers": 185.0, "Median Spend per Transaction": 5.25, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "Name": "Henry James Saloon", "Category": "Restaurants and Other Eating Places", "Address": "577 Jamestown St", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2020, "Total Visits": 56.0, "Total Visitors": 24.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 202.0, "Total Spend": 177.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 44.65, "Median Spend per Customer": 44.65 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "Name": "Friendship Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "3300 Cottman Ave", "LATITUDE": 40.03925, "LONGITUDE": -75.04588, "DATE_RANGE_START": 2020, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 1.0, "Total Spend": 2186.0, "Total Transactions": 24.0, "Total Customers": 14.0, "Median Spend per Transaction": 34.87, "Median Spend per Customer": 96.32 }, "geometry": { "type": "Point", "coordinates": [ -75.04588, 40.03925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "Name": "Bad Brother", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "726 N 24th St", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2020, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 7.0, "Total Spend": 5969.0, "Total Transactions": 145.0, "Total Customers": 89.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pj4-s89", "Name": "Marv Loves Too", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2762 N 2nd St", "LATITUDE": 39.992943, "LONGITUDE": -75.134756, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 63.0, "Total Spend": 439.0, "Total Transactions": 14.0, "Total Customers": 8.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134756, 39.992943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-dqf", "Name": "Good Neighbor Mini Market", "Category": "Specialty Food Stores", "Address": "5131 Chester Ave", "LATITUDE": 39.941908, "LONGITUDE": -75.220217, "DATE_RANGE_START": 2020, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010073001.0, "Median Dwell Time": 7.0, "Total Spend": 355.0, "Total Transactions": 38.0, "Total Customers": 28.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.220217, 39.941908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "Name": "Pub On Passyunk East", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1501 E Passyunk Ave", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2020, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010028024.0, "Median Dwell Time": null, "Total Spend": 351.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 17.29, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "Name": "RIM Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1172 S 9th St", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2020, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 41.0, "Total Spend": 648.0, "Total Transactions": 38.0, "Total Customers": 36.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "Name": "2nd Street Brew House", "Category": "Restaurants and Other Eating Places", "Address": "1700 S 2nd St", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2020, "Total Visits": 32.0, "Total Visitors": 30.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 130.0, "Total Spend": 5222.0, "Total Transactions": 147.0, "Total Customers": 58.0, "Median Spend per Transaction": 32.5, "Median Spend per Customer": 33.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dwg-g6k", "Name": "United", "Category": "Gasoline Stations", "Address": "6901 Buist Ave", "LATITUDE": 39.917055, "LONGITUDE": -75.235223, "DATE_RANGE_START": 2020, "Total Visits": 50.0, "Total Visitors": 40.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 2.0, "Total Spend": 12034.0, "Total Transactions": 306.0, "Total Customers": 177.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 27.43 }, "geometry": { "type": "Point", "coordinates": [ -75.235223, 39.917055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "Name": "Two Brothers", "Category": "Grocery Stores", "Address": "5400 Willows Ave", "LATITUDE": 39.943904, "LONGITUDE": -75.228136, "DATE_RANGE_START": 2020, "Total Visits": 85.0, "Total Visitors": 54.0, "POI_CBG": 421010071024.0, "Median Dwell Time": 11.0, "Total Spend": 226.0, "Total Transactions": 42.0, "Total Customers": 24.0, "Median Spend per Transaction": 4.75, "Median Spend per Customer": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.228136, 39.943904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "Name": "In Riva", "Category": "Restaurants and Other Eating Places", "Address": "4116 Ridge Ave", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2020, "Total Visits": 558.0, "Total Visitors": 397.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 99.0, "Total Spend": 36085.0, "Total Transactions": 550.0, "Total Customers": 461.0, "Median Spend per Transaction": 53.58, "Median Spend per Customer": 58.3 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } } +] +} diff --git a/assets/data/data_2021.geojson b/assets/data/data_2021.geojson new file mode 100644 index 0000000..c04b339 --- /dev/null +++ b/assets/data/data_2021.geojson @@ -0,0 +1,2867 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "Name": "Stenton Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7171 Stenton Ave", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 5.0, "Total Spend": 2865.0, "Total Transactions": 153.0, "Total Customers": 105.0, "Median Spend per Transaction": 15.1, "Median Spend per Customer": 18.08 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1700 N 28th St", "LATITUDE": 39.981705, "LONGITUDE": -75.180442, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010149004.0, "Median Dwell Time": 5.0, "Total Spend": 1087.0, "Total Transactions": 103.0, "Total Customers": 72.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 8.39 }, "geometry": { "type": "Point", "coordinates": [ -75.180442, 39.981705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phn-9fz", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "1503 E Wadsworth Ave Ste A", "LATITUDE": 40.079281, "LONGITUDE": -75.174174, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 3.0, "Total Spend": 866.0, "Total Transactions": 41.0, "Total Customers": 38.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174174, 40.079281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfx-ks5", "Name": "Gregs Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4460 Main St", "LATITUDE": 40.026584, "LONGITUDE": -75.226738, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 6258.0, "Total Transactions": 258.0, "Total Customers": 217.0, "Median Spend per Transaction": 21.2, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.226738, 40.026584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg9-ty9", "Name": "Brandywine Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1501 Spring Garden St", "LATITUDE": 39.962927, "LONGITUDE": -75.163263, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 6.0, "Total Spend": 1191.0, "Total Transactions": 45.0, "Total Customers": 31.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.962927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phy-wx5", "Name": "Brother's Pizza House II", "Category": "Restaurants and Other Eating Places", "Address": "4948 Rising Sun Ave", "LATITUDE": 40.026513, "LONGITUDE": -75.12182, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 3.0, "Total Spend": 141.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 13.79, "Median Spend per Customer": 19.06 }, "geometry": { "type": "Point", "coordinates": [ -75.12182, 40.026513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "Name": "Pickwick Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1700 Market St", "LATITUDE": 39.952852, "LONGITUDE": -75.169574, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 67.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 2084.0, "Total Transactions": 67.0, "Total Customers": 48.0, "Median Spend per Transaction": 14.31, "Median Spend per Customer": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.169574, 39.952852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pj2-tsq", "Name": "Beijing", "Category": "Restaurants and Other Eating Places", "Address": "909 E Cayuga St", "LATITUDE": 40.015027, "LONGITUDE": -75.108817, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010191004.0, "Median Dwell Time": null, "Total Spend": 686.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 26.2, "Median Spend per Customer": 30.55 }, "geometry": { "type": "Point", "coordinates": [ -75.108817, 40.015027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-8jv", "Name": "The Nile Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6008 Germantown Ave", "LATITUDE": 40.039401, "LONGITUDE": -75.177975, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 70.0, "Total Spend": 150.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 19.14, "Median Spend per Customer": 19.14 }, "geometry": { "type": "Point", "coordinates": [ -75.177975, 40.039401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvw-mx5", "Name": "Gaetano's", "Category": "Restaurants and Other Eating Places", "Address": "53rd Market St", "LATITUDE": 39.960076, "LONGITUDE": -75.226758, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010085007.0, "Median Dwell Time": null, "Total Spend": 438.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 17.49, "Median Spend per Customer": 17.49 }, "geometry": { "type": "Point", "coordinates": [ -75.226758, 39.960076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg9-xh5", "Name": "Coffee Cream & Dreams", "Category": "Restaurants and Other Eating Places", "Address": "1500 Fairmount Ave", "LATITUDE": 39.966924, "LONGITUDE": -75.162284, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 15.0, "Total Spend": 1013.0, "Total Transactions": 138.0, "Total Customers": 26.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162284, 39.966924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "3000 B St", "LATITUDE": 39.995073, "LONGITUDE": -75.126158, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 29.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 6.0, "Total Spend": 1155.0, "Total Transactions": 117.0, "Total Customers": 64.0, "Median Spend per Transaction": 9.99, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.126158, 39.995073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-x3q", "Name": "Medina mini market", "Category": "Grocery Stores", "Address": "804 W Susquehanna Ave", "LATITUDE": 39.984945, "LONGITUDE": -75.147239, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 12.0, "POI_CBG": 421010377003.0, "Median Dwell Time": 1440.0, "Total Spend": 89.0, "Total Transactions": 19.0, "Total Customers": 12.0, "Median Spend per Transaction": 4.94, "Median Spend per Customer": 6.64 }, "geometry": { "type": "Point", "coordinates": [ -75.147239, 39.984945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1646 N 29th St", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010149005.0, "Median Dwell Time": 2.0, "Total Spend": 213.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 11.9, "Median Spend per Customer": 13.42 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "Name": "Chillin Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6545 Elmwood Ave", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 24.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 2.0, "Total Spend": 2911.0, "Total Transactions": 84.0, "Total Customers": 67.0, "Median Spend per Transaction": 29.27, "Median Spend per Customer": 47.32 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "Name": "Uncle Oogie's", "Category": "Restaurants and Other Eating Places", "Address": "36 Snyder Ave", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 2.0, "Total Spend": 4621.0, "Total Transactions": 167.0, "Total Customers": 138.0, "Median Spend per Transaction": 19.9, "Median Spend per Customer": 25.51 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6429 Rising Sun Ave", "LATITUDE": 40.050364, "LONGITUDE": -75.094508, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010306003.0, "Median Dwell Time": 4.0, "Total Spend": 702.0, "Total Transactions": 57.0, "Total Customers": 43.0, "Median Spend per Transaction": 6.32, "Median Spend per Customer": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.094508, 40.050364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-4vz", "Name": "Cafe Tinto", "Category": "Restaurants and Other Eating Places", "Address": "143 E Wyoming Ave", "LATITUDE": 40.02153, "LONGITUDE": -75.122622, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 43.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 3.0, "Total Spend": 6177.0, "Total Transactions": 396.0, "Total Customers": 69.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.122622, 40.02153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "Name": "Champ's Diner", "Category": "Restaurants and Other Eating Places", "Address": "1539 Cecil B Moore Ave", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 50.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 403.0, "Total Spend": 6702.0, "Total Transactions": 379.0, "Total Customers": 270.0, "Median Spend per Transaction": 14.26, "Median Spend per Customer": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-gzf", "Name": "Romano Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4712 N 5th St", "LATITUDE": 40.023038, "LONGITUDE": -75.133728, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010287001.0, "Median Dwell Time": null, "Total Spend": 3816.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 120.0, "Median Spend per Customer": 100.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133728, 40.023038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "Name": "Kei Sushi Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1711 South St", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010012022.0, "Median Dwell Time": null, "Total Spend": 5168.0, "Total Transactions": 148.0, "Total Customers": 141.0, "Median Spend per Transaction": 33.28, "Median Spend per Customer": 31.46 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "Name": "Vapordelphia", "Category": "Other Miscellaneous Store Retailers", "Address": "603 S 9th St", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2021, "Total Visits": 683.0, "Total Visitors": 494.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 287.0, "Total Spend": 8325.0, "Total Transactions": 172.0, "Total Customers": 148.0, "Median Spend per Transaction": 38.88, "Median Spend per Customer": 43.09 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-p7w-v4v", "Name": "The Children's Place", "Category": "Clothing Stores", "Address": "2349 Cottman Ave", "LATITUDE": 40.047874, "LONGITUDE": -75.055616, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 229.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 8.0, "Total Spend": 374.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 61.0, "Median Spend per Customer": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055616, 40.047874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "Name": "Nike Factory Store", "Category": "Shoe Stores", "Address": "901 Market St Unit 1095", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 138.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 19.0, "Total Spend": 72870.0, "Total Transactions": 924.0, "Total Customers": 778.0, "Median Spend per Transaction": 59.97, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2715 S Front St", "LATITUDE": 39.91305, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 212.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 2083.0, "Total Transactions": 88.0, "Total Customers": 36.0, "Median Spend per Transaction": 33.37, "Median Spend per Customer": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.91305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "3300 Aramingo Ave", "LATITUDE": 39.990629, "LONGITUDE": -75.10302, "DATE_RANGE_START": 2021, "Total Visits": 537.0, "Total Visitors": 451.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 7.0, "Total Spend": 46423.0, "Total Transactions": 955.0, "Total Customers": 740.0, "Median Spend per Transaction": 32.99, "Median Spend per Customer": 43.16 }, "geometry": { "type": "Point", "coordinates": [ -75.10302, 39.990629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p9j-zj9", "Name": "Kabobi", "Category": "Restaurants and Other Eating Places", "Address": "10600 Roosevelt Blvd", "LATITUDE": 40.0995, "LONGITUDE": -75.010461, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 100.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 3.0, "Total Spend": 3230.0, "Total Transactions": 69.0, "Total Customers": 43.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 49.77 }, "geometry": { "type": "Point", "coordinates": [ -75.010461, 40.0995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "1930 Chestnut St", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2021, "Total Visits": 1205.0, "Total Visitors": 933.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 5.0, "Total Spend": 18096.0, "Total Transactions": 310.0, "Total Customers": 274.0, "Median Spend per Transaction": 42.29, "Median Spend per Customer": 54.22 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9q-zfz", "Name": "Applebee's", "Category": "Restaurants and Other Eating Places", "Address": "9142 Roosevelt Blvd", "LATITUDE": 40.076701, "LONGITUDE": -75.033636, "DATE_RANGE_START": 2021, "Total Visits": 618.0, "Total Visitors": 530.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 59.0, "Total Spend": 488.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 55.6, "Median Spend per Customer": 15.34 }, "geometry": { "type": "Point", "coordinates": [ -75.033636, 40.076701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8sq", "Name": "District Taco", "Category": "Restaurants and Other Eating Places", "Address": "1140 Market St", "LATITUDE": 39.95167, "LONGITUDE": -75.159171, "DATE_RANGE_START": 2021, "Total Visits": 7485.0, "Total Visitors": 5687.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 21.0, "Total Spend": 7518.0, "Total Transactions": 477.0, "Total Customers": 353.0, "Median Spend per Transaction": 13.76, "Median Spend per Customer": 14.86 }, "geometry": { "type": "Point", "coordinates": [ -75.159171, 39.95167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-68v", "Name": "Kinme", "Category": "Restaurants and Other Eating Places", "Address": "1117 Locust St", "LATITUDE": 39.947803, "LONGITUDE": -75.160062, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 79.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 956.0, "Total Spend": 3082.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 60.6, "Median Spend per Customer": 62.92 }, "geometry": { "type": "Point", "coordinates": [ -75.160062, 39.947803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6110 Woodland Ave", "LATITUDE": 39.928851, "LONGITUDE": -75.229354, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 119.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 2.0, "Total Spend": 3079.0, "Total Transactions": 387.0, "Total Customers": 153.0, "Median Spend per Transaction": 7.65, "Median Spend per Customer": 8.59 }, "geometry": { "type": "Point", "coordinates": [ -75.229354, 39.928851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kj9", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "2100 Walnut St", "LATITUDE": 39.950618, "LONGITUDE": -75.175914, "DATE_RANGE_START": 2021, "Total Visits": 1482.0, "Total Visitors": 1005.0, "POI_CBG": 421010008031.0, "Median Dwell Time": 347.0, "Total Spend": 517.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 13.33, "Median Spend per Customer": 13.33 }, "geometry": { "type": "Point", "coordinates": [ -75.175914, 39.950618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-x5z", "Name": "Essen Bakery", "Category": "Restaurants and Other Eating Places", "Address": "1437 E Passyunk Ave", "LATITUDE": 39.931036, "LONGITUDE": -75.161763, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 220.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 421.0, "Total Spend": 4662.0, "Total Transactions": 298.0, "Total Customers": 248.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.161763, 39.931036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pnw-pjv", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "115 E Girard Ave", "LATITUDE": 39.969267, "LONGITUDE": -75.133945, "DATE_RANGE_START": 2021, "Total Visits": 212.0, "Total Visitors": 191.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 15.0, "Total Spend": 278.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.88, "Median Spend per Customer": 18.64 }, "geometry": { "type": "Point", "coordinates": [ -75.133945, 39.969267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dy9", "Name": "Firestone Complete Auto Care", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7320 Elgin Ave", "LATITUDE": 40.052472, "LONGITUDE": -75.06646, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 76.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 98.0, "Total Spend": 377.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 79.06, "Median Spend per Customer": 79.06 }, "geometry": { "type": "Point", "coordinates": [ -75.06646, 40.052472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pm4-pjv", "Name": "Di Bruno Bros", "Category": "Specialty Food Stores", "Address": "930 S 9th St", "LATITUDE": 39.938055, "LONGITUDE": -75.158145, "DATE_RANGE_START": 2021, "Total Visits": 592.0, "Total Visitors": 449.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 82.0, "Total Spend": 47815.0, "Total Transactions": 2088.0, "Total Customers": 1422.0, "Median Spend per Transaction": 13.2, "Median Spend per Customer": 19.7 }, "geometry": { "type": "Point", "coordinates": [ -75.158145, 39.938055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "Name": "Harbison Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "5725 Harbison Ave", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 122.0, "POI_CBG": 421010321003.0, "Median Dwell Time": 2.0, "Total Spend": 3315.0, "Total Transactions": 95.0, "Total Customers": 84.0, "Median Spend per Transaction": 26.5, "Median Spend per Customer": 38.38 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-2kz", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "9169 Roosevelt Blvd", "LATITUDE": 40.075387, "LONGITUDE": -75.03207, "DATE_RANGE_START": 2021, "Total Visits": 1138.0, "Total Visitors": 976.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 14.0, "Total Spend": 215.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 22.72, "Median Spend per Customer": 26.37 }, "geometry": { "type": "Point", "coordinates": [ -75.03207, 40.075387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "Name": "Kohl's", "Category": "Department Stores", "Address": "8500 Henry Ave", "LATITUDE": 40.062537, "LONGITUDE": -75.235162, "DATE_RANGE_START": 2021, "Total Visits": 1048.0, "Total Visitors": 807.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 20.0, "Total Spend": 61516.0, "Total Transactions": 976.0, "Total Customers": 838.0, "Median Spend per Transaction": 43.7, "Median Spend per Customer": 45.35 }, "geometry": { "type": "Point", "coordinates": [ -75.235162, 40.062537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2417 Welsh Rd", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2021, "Total Visits": 284.0, "Total Visitors": 169.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 1107.0, "Total Transactions": 53.0, "Total Customers": 36.0, "Median Spend per Transaction": 16.04, "Median Spend per Customer": 19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "Name": "Tony's Luke", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 6916.0, "Total Transactions": 279.0, "Total Customers": 265.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "Name": "Love Vape", "Category": "Other Miscellaneous Store Retailers", "Address": "608 S 5th St", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 131.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 8.0, "Total Spend": 5853.0, "Total Transactions": 165.0, "Total Customers": 138.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "Name": "Pub & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1946 Lombard St", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 33.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 20.0, "Total Spend": 6995.0, "Total Transactions": 72.0, "Total Customers": 64.0, "Median Spend per Transaction": 82.84, "Median Spend per Customer": 89.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-vzz", "Name": "Barcelona Wine Bar & Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1709 E Passyunk Ave", "LATITUDE": 39.928118, "LONGITUDE": -75.165293, "DATE_RANGE_START": 2021, "Total Visits": 296.0, "Total Visitors": 177.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 286.0, "Total Spend": 1207.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 54.35, "Median Spend per Customer": 54.35 }, "geometry": { "type": "Point", "coordinates": [ -75.165293, 39.928118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "4001 N 5th St", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2021, "Total Visits": 224.0, "Total Visitors": 158.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 6.0, "Total Spend": 512.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 9.28, "Median Spend per Customer": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zpv", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "2820 W. Oregon Ave.", "LATITUDE": 39.917091, "LONGITUDE": -75.187282, "DATE_RANGE_START": 2021, "Total Visits": 21251.0, "Total Visitors": 9943.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 25.0, "Total Spend": 615.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.187282, 39.917091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1425 Locust St", "LATITUDE": 39.948525, "LONGITUDE": -75.166014, "DATE_RANGE_START": 2021, "Total Visits": 604.0, "Total Visitors": 427.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 201.0, "Total Spend": 9931.0, "Total Transactions": 1649.0, "Total Customers": 690.0, "Median Spend per Transaction": 5.09, "Median Spend per Customer": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166014, 39.948525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvy-kfz", "Name": "Al Waha Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "3800 Spruce St", "LATITUDE": 39.951192, "LONGITUDE": -75.200055, "DATE_RANGE_START": 2021, "Total Visits": 1210.0, "Total Visitors": 449.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 427.0, "Total Spend": 137.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.200055, 39.951192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "Name": "Tokyo Sushi & Catering", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd Ste C120", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2021, "Total Visits": 1539.0, "Total Visitors": 988.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 204.0, "Total Spend": 2185.0, "Total Transactions": 105.0, "Total Customers": 81.0, "Median Spend per Transaction": 20.76, "Median Spend per Customer": 21.37 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-5mk", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "313 Spring Garden St", "LATITUDE": 39.961178, "LONGITUDE": -75.143721, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 141.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 49.0, "Total Spend": 5707.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 100.49, "Median Spend per Customer": 90.26 }, "geometry": { "type": "Point", "coordinates": [ -75.143721, 39.961178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-5s5", "Name": "Canopy By Hilton", "Category": "Traveler Accommodation", "Address": "1180 Ludlow St", "LATITUDE": 39.951115, "LONGITUDE": -75.159793, "DATE_RANGE_START": 2021, "Total Visits": 2551.0, "Total Visitors": 1716.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 276.0, "Total Spend": 13088.0, "Total Transactions": 36.0, "Total Customers": 31.0, "Median Spend per Transaction": 313.88, "Median Spend per Customer": 385.96 }, "geometry": { "type": "Point", "coordinates": [ -75.159793, 39.951115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "Name": "Crunchik'n", "Category": "Restaurants and Other Eating Places", "Address": "1428 Cecil B Moore Ave", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2021, "Total Visits": 1396.0, "Total Visitors": 842.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 261.0, "Total Spend": 252.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.35, "Median Spend per Customer": 32.35 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2204 S Columbus Blvd", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2021, "Total Visits": 811.0, "Total Visitors": 635.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 99951.0, "Total Transactions": 5895.0, "Total Customers": 4026.0, "Median Spend per Transaction": 14.1, "Median Spend per Customer": 18.97 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2021, "Total Visits": 382.0, "Total Visitors": 339.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 5.0, "Total Spend": 9768.0, "Total Transactions": 819.0, "Total Customers": 630.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5272 Frankford Ave", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2021, "Total Visits": 480.0, "Total Visitors": 234.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 1.0, "Total Spend": 4470.0, "Total Transactions": 871.0, "Total Customers": 274.0, "Median Spend per Transaction": 4.54, "Median Spend per Customer": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6190 N Front St", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2021, "Total Visits": 468.0, "Total Visitors": 291.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 2.0, "Total Spend": 6470.0, "Total Transactions": 838.0, "Total Customers": 482.0, "Median Spend per Transaction": 6.78, "Median Spend per Customer": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4268 Ridge Ave", "LATITUDE": 40.009408, "LONGITUDE": -75.196533, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 119.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 5.0, "Total Spend": 10649.0, "Total Transactions": 1375.0, "Total Customers": 780.0, "Median Spend per Transaction": 6.73, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196533, 40.009408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-c89", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7970 Dungan Rd # 80", "LATITUDE": 40.068373, "LONGITUDE": -75.068436, "DATE_RANGE_START": 2021, "Total Visits": 1475.0, "Total Visitors": 680.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 3.0, "Total Spend": 7896.0, "Total Transactions": 1007.0, "Total Customers": 442.0, "Median Spend per Transaction": 6.62, "Median Spend per Customer": 10.56 }, "geometry": { "type": "Point", "coordinates": [ -75.068436, 40.068373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-ks5", "Name": "The Spice Rack", "Category": "Specialty Food Stores", "Address": "8428 Germantown Ave", "LATITUDE": 40.075333, "LONGITUDE": -75.206122, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010385001.0, "Median Dwell Time": null, "Total Spend": 747.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206122, 40.075333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgk-z9f", "Name": "Beauty & Fashion City", "Category": "Health and Personal Care Stores", "Address": "3985 Ford Rd", "LATITUDE": 39.999963, "LONGITUDE": -75.209335, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010122041.0, "Median Dwell Time": 4.0, "Total Spend": 494.0, "Total Transactions": 36.0, "Total Customers": 29.0, "Median Spend per Transaction": 12.94, "Median Spend per Customer": 11.93 }, "geometry": { "type": "Point", "coordinates": [ -75.209335, 39.999963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "Name": "New London Pizza", "Category": "Restaurants and Other Eating Places", "Address": "500 E Wyoming Ave", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010289013.0, "Median Dwell Time": 165.0, "Total Spend": 3266.0, "Total Transactions": 110.0, "Total Customers": 81.0, "Median Spend per Transaction": 23.7, "Median Spend per Customer": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-224@628-pgb-n5z", "Name": "Crab Du Jour Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "822 N Broad St", "LATITUDE": 39.968792, "LONGITUDE": -75.16057, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 12.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 946.0, "Total Spend": 15834.0, "Total Transactions": 284.0, "Total Customers": 251.0, "Median Spend per Transaction": 48.73, "Median Spend per Customer": 51.18 }, "geometry": { "type": "Point", "coordinates": [ -75.16057, 39.968792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "1622 South St", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010014003.0, "Median Dwell Time": null, "Total Spend": 4880.0, "Total Transactions": 205.0, "Total Customers": 186.0, "Median Spend per Transaction": 19.87, "Median Spend per Customer": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "Name": "Aya Asian Fusion", "Category": "Restaurants and Other Eating Places", "Address": "7313 Frankford Ave # 15", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010330006.0, "Median Dwell Time": 182.0, "Total Spend": 2540.0, "Total Transactions": 110.0, "Total Customers": 84.0, "Median Spend per Transaction": 22.41, "Median Spend per Customer": 26.19 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pg9-t9z", "Name": "A&A Food Market", "Category": "Grocery Stores", "Address": "1700 Wallace St", "LATITUDE": 39.965619, "LONGITUDE": -75.165824, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 26.0, "POI_CBG": 421010134022.0, "Median Dwell Time": 60.0, "Total Spend": 16.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 3.25, "Median Spend per Customer": 3.25 }, "geometry": { "type": "Point", "coordinates": [ -75.165824, 39.965619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "Name": "Abyssinia", "Category": "Restaurants and Other Eating Places", "Address": "229 S 45th St", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 26.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 41.0, "Total Spend": 7613.0, "Total Transactions": 224.0, "Total Customers": 191.0, "Median Spend per Transaction": 31.24, "Median Spend per Customer": 35.5 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-phz-tjv", "Name": "Pizza express", "Category": "Restaurants and Other Eating Places", "Address": "3324 Kensington Ave", "LATITUDE": 39.998436, "LONGITUDE": -75.110266, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010192004.0, "Median Dwell Time": 33.0, "Total Spend": 1143.0, "Total Transactions": 45.0, "Total Customers": 36.0, "Median Spend per Transaction": 24.52, "Median Spend per Customer": 28.46 }, "geometry": { "type": "Point", "coordinates": [ -75.110266, 39.998436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7z-6tv", "Name": "Dollar Discount", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6812 Rising Sun Ave", "LATITUDE": 40.055124, "LONGITUDE": -75.090736, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 74.0, "POI_CBG": 421010307003.0, "Median Dwell Time": 135.0, "Total Spend": 109.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 8.77, "Median Spend per Customer": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.090736, 40.055124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "129 S 30th St", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2021, "Total Visits": 1298.0, "Total Visitors": 926.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 36.0, "Total Spend": 27046.0, "Total Transactions": 1900.0, "Total Customers": 1344.0, "Median Spend per Transaction": 11.17, "Median Spend per Customer": 14.84 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-835", "Name": "Down Home Diner", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.952864, "LONGITUDE": -75.159035, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 7557.0, "Total Transactions": 303.0, "Total Customers": 272.0, "Median Spend per Transaction": 23.55, "Median Spend per Customer": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159035, 39.952864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "1234 Locust St", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2021, "Total Visits": 850.0, "Total Visitors": 599.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 61.0, "Total Spend": 13665.0, "Total Transactions": 215.0, "Total Customers": 205.0, "Median Spend per Transaction": 48.7, "Median Spend per Customer": 48.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St Ste 103", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2021, "Total Visits": 22380.0, "Total Visitors": 15420.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 12.0, "Total Spend": 18159.0, "Total Transactions": 1439.0, "Total Customers": 1057.0, "Median Spend per Transaction": 10.56, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p74-wtv", "Name": "Oteri's Italian Bakery Frankford Ave", "Category": "Restaurants and Other Eating Places", "Address": "7518 Frankford Ave", "LATITUDE": 40.038952, "LONGITUDE": -75.035677, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 100.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 24.0, "Total Spend": 361.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 37.75, "Median Spend per Customer": 37.75 }, "geometry": { "type": "Point", "coordinates": [ -75.035677, 40.038952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvy-kfz", "Name": "Ahmad Gyro King", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.951086, "LONGITUDE": -75.19875, "DATE_RANGE_START": 2021, "Total Visits": 1131.0, "Total Visitors": 802.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 7.0, "Total Spend": 124.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 26.01, "Median Spend per Customer": 26.01 }, "geometry": { "type": "Point", "coordinates": [ -75.19875, 39.951086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "4030 City Ave", "LATITUDE": 40.007477, "LONGITUDE": -75.212304, "DATE_RANGE_START": 2021, "Total Visits": 179.0, "Total Visitors": 150.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 4.0, "Total Spend": 22244.0, "Total Transactions": 1456.0, "Total Customers": 1189.0, "Median Spend per Transaction": 13.12, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.212304, 40.007477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-qpv", "Name": "New York Bagel Bakery", "Category": "Restaurants and Other Eating Places", "Address": "7555 Haverford Ave", "LATITUDE": 39.97966, "LONGITUDE": -75.268066, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 165.0, "POI_CBG": 421010098011.0, "Median Dwell Time": 15.0, "Total Spend": 16227.0, "Total Transactions": 568.0, "Total Customers": 461.0, "Median Spend per Transaction": 21.93, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.268066, 39.97966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-3nq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2640 S Carlisle St", "LATITUDE": 39.917267, "LONGITUDE": -75.172584, "DATE_RANGE_START": 2021, "Total Visits": 1200.0, "Total Visitors": 477.0, "POI_CBG": 421010039022.0, "Median Dwell Time": 641.0, "Total Spend": 248.0, "Total Transactions": 48.0, "Total Customers": 31.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 5.81 }, "geometry": { "type": "Point", "coordinates": [ -75.172584, 39.917267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-kj9", "Name": "The Pleasure Chest", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "2039 Walnut St", "LATITUDE": 39.950864, "LONGITUDE": -75.175215, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 72.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 385.0, "Total Spend": 3560.0, "Total Transactions": 69.0, "Total Customers": 62.0, "Median Spend per Transaction": 42.5, "Median Spend per Customer": 47.93 }, "geometry": { "type": "Point", "coordinates": [ -75.175215, 39.950864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-389", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "30 Franklin Mills Blvd", "LATITUDE": 40.084522, "LONGITUDE": -74.967251, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 253.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 34.0, "Total Spend": 1770.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 370.8, "Median Spend per Customer": 370.8 }, "geometry": { "type": "Point", "coordinates": [ -74.967251, 40.084522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-mrk", "Name": "Elixr Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "1600 Market St", "LATITUDE": 39.952527, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2021, "Total Visits": 1432.0, "Total Visitors": 1012.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 299.0, "Total Spend": 260.0, "Total Transactions": 33.0, "Total Customers": 26.0, "Median Spend per Transaction": 5.46, "Median Spend per Customer": 5.59 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.952527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "Name": "Bubblefish", "Category": "Restaurants and Other Eating Places", "Address": "909 Arch St", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2021, "Total Visits": 4516.0, "Total Visitors": 3222.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 51.0, "Total Spend": 16137.0, "Total Transactions": 337.0, "Total Customers": 303.0, "Median Spend per Transaction": 41.47, "Median Spend per Customer": 50.67 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pm5-2ff", "Name": "Wokano", "Category": "Restaurants and Other Eating Places", "Address": "1100 Washington Ave", "LATITUDE": 39.937057, "LONGITUDE": -75.161863, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 260.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 36.0, "Total Spend": 2513.0, "Total Transactions": 50.0, "Total Customers": 50.0, "Median Spend per Transaction": 46.62, "Median Spend per Customer": 46.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161863, 39.937057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3nq", "Name": "Nick's Roast Beef", "Category": "Restaurants and Other Eating Places", "Address": "4501 Woodhaven Rd", "LATITUDE": 40.083763, "LONGITUDE": -74.966105, "DATE_RANGE_START": 2021, "Total Visits": 661.0, "Total Visitors": 482.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 84.0, "Total Spend": 8135.0, "Total Transactions": 141.0, "Total Customers": 100.0, "Median Spend per Transaction": 43.08, "Median Spend per Customer": 54.93 }, "geometry": { "type": "Point", "coordinates": [ -74.966105, 40.083763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "Name": "Fishtown Pizza", "Category": "Restaurants and Other Eating Places", "Address": "607 E Girard Ave", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 1.0, "Total Spend": 1930.0, "Total Transactions": 76.0, "Total Customers": 53.0, "Median Spend per Transaction": 21.23, "Median Spend per Customer": 26.55 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "Name": "General Tso", "Category": "Restaurants and Other Eating Places", "Address": "2350 Orthodox St", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 20.0, "Total Spend": 2352.0, "Total Transactions": 81.0, "Total Customers": 45.0, "Median Spend per Transaction": 29.86, "Median Spend per Customer": 47.82 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "Name": "Italian Express", "Category": "Restaurants and Other Eating Places", "Address": "2641 W Girard Ave", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 2.0, "Total Spend": 2517.0, "Total Transactions": 177.0, "Total Customers": 131.0, "Median Spend per Transaction": 13.34, "Median Spend per Customer": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "Name": "Falafel Time", "Category": "Restaurants and Other Eating Places", "Address": "2214 South St", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 11.0, "Total Spend": 1388.0, "Total Transactions": 79.0, "Total Customers": 57.0, "Median Spend per Transaction": 17.1, "Median Spend per Customer": 14.49 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.038624, "LONGITUDE": -75.106851, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 4.0, "Total Spend": 10246.0, "Total Transactions": 582.0, "Total Customers": 461.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.106851, 40.038624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "Name": "1 Stop Mini Market", "Category": "Grocery Stores", "Address": "700 S 8th St", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 72.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 4.0, "Total Spend": 5880.0, "Total Transactions": 322.0, "Total Customers": 129.0, "Median Spend per Transaction": 14.29, "Median Spend per Customer": 26.21 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "Name": "Evan's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4311 Locust St", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 7.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 41.0, "Total Spend": 2343.0, "Total Transactions": 126.0, "Total Customers": 100.0, "Median Spend per Transaction": 15.8, "Median Spend per Customer": 16.11 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-435", "Name": "Fresh Gulf Seafood", "Category": "Specialty Food Stores", "Address": "2528 S 24th St", "LATITUDE": 39.920683, "LONGITUDE": -75.187828, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 2.0, "Total Spend": 1406.0, "Total Transactions": 72.0, "Total Customers": 53.0, "Median Spend per Transaction": 17.59, "Median Spend per Customer": 22.12 }, "geometry": { "type": "Point", "coordinates": [ -75.187828, 39.920683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "Name": "Just To Serve You", "Category": "Restaurants and Other Eating Places", "Address": "5622 W Girard Ave", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 12.0, "POI_CBG": 421010102001.0, "Median Dwell Time": 143.0, "Total Spend": 1843.0, "Total Transactions": 62.0, "Total Customers": 60.0, "Median Spend per Transaction": 25.46, "Median Spend per Customer": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "Name": "Pizza & Steak Master", "Category": "Restaurants and Other Eating Places", "Address": "6627 Chew Ave", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 12.0, "POI_CBG": 421010253001.0, "Median Dwell Time": 920.0, "Total Spend": 696.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 17.76, "Median Spend per Customer": 27.34 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-dvz", "Name": "Pietro Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1501 Packer Ave", "LATITUDE": 39.912309, "LONGITUDE": -75.174217, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 73.0, "Total Spend": 1691.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 64.8, "Median Spend per Customer": 187.38 }, "geometry": { "type": "Point", "coordinates": [ -75.174217, 39.912309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p74-wtv", "Name": "Naryan Auto Group", "Category": "Automobile Dealers", "Address": "7525 Frankford Ave", "LATITUDE": 40.038499, "LONGITUDE": -75.035061, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010330001.0, "Median Dwell Time": 56.0, "Total Spend": 34845.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 2300.0, "Median Spend per Customer": 2300.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035061, 40.038499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm4-pjv", "Name": "Cardenas Oil & Vinegar Taproom", "Category": "Specialty Food Stores", "Address": "942 S 9th St", "LATITUDE": 39.937768, "LONGITUDE": -75.158238, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 53.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 51.0, "Total Spend": 1382.0, "Total Transactions": 31.0, "Total Customers": 31.0, "Median Spend per Transaction": 37.9, "Median Spend per Customer": 37.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158238, 39.937768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "Name": "Tommy Hilfiger", "Category": "Clothing Stores", "Address": "1800 Franklin Mills Cir", "LATITUDE": 40.089952, "LONGITUDE": -74.962035, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 6870.0, "Total Transactions": 91.0, "Total Customers": 88.0, "Median Spend per Transaction": 56.52, "Median Spend per Customer": 57.12 }, "geometry": { "type": "Point", "coordinates": [ -74.962035, 40.089952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-dqf", "Name": "Convenience food mart", "Category": "Restaurants and Other Eating Places", "Address": "1101 N 66th St", "LATITUDE": 39.979848, "LONGITUDE": -75.253605, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010375002.0, "Median Dwell Time": 5.0, "Total Spend": 50.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.38, "Median Spend per Customer": 10.38 }, "geometry": { "type": "Point", "coordinates": [ -75.253605, 39.979848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-vcq", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "400 W Allegheny Ave Ste C2", "LATITUDE": 39.998344, "LONGITUDE": -75.136151, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 55.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 4.0, "Total Spend": 1130.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 44.58, "Median Spend per Customer": 44.58 }, "geometry": { "type": "Point", "coordinates": [ -75.136151, 39.998344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "Name": "Green Leaf Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7520 Haverford Ave", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 62.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 20.0, "Total Spend": 2192.0, "Total Transactions": 143.0, "Total Customers": 81.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@63s-dw2-7t9", "Name": "62nd Kim's Market", "Category": "Restaurants and Other Eating Places", "Address": "6201 Market St", "LATITUDE": 39.962693, "LONGITUDE": -75.2448, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 64.0, "POI_CBG": 421010096003.0, "Median Dwell Time": 9.0, "Total Spend": 2016.0, "Total Transactions": 119.0, "Total Customers": 105.0, "Median Spend per Transaction": 14.18, "Median Spend per Customer": 17.09 }, "geometry": { "type": "Point", "coordinates": [ -75.2448, 39.962693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-zvf", "Name": "Tavern On the Hill", "Category": "Restaurants and Other Eating Places", "Address": "8636 Germantown Ave", "LATITUDE": 40.077151, "LONGITUDE": -75.208916, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 45.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 80.0, "Total Spend": 3863.0, "Total Transactions": 55.0, "Total Customers": 50.0, "Median Spend per Transaction": 65.86, "Median Spend per Customer": 68.12 }, "geometry": { "type": "Point", "coordinates": [ -75.208916, 40.077151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "942 Market St", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 200.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 10589.0, "Total Transactions": 797.0, "Total Customers": 611.0, "Median Spend per Transaction": 10.92, "Median Spend per Customer": 13.34 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "9711 Roosevelt Blvd", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2021, "Total Visits": 1329.0, "Total Visitors": 1069.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 6.0, "Total Spend": 63324.0, "Total Transactions": 3539.0, "Total Customers": 2353.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 20.1 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgd-z9f", "Name": "UrHomeInPhilly", "Category": "Traveler Accommodation", "Address": "3601 Market St", "LATITUDE": 39.956628, "LONGITUDE": -75.194459, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 64.0, "Total Spend": 472.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 48.58, "Median Spend per Customer": 48.58 }, "geometry": { "type": "Point", "coordinates": [ -75.194459, 39.956628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmc-qcq", "Name": "2 Street Pub", "Category": "Restaurants and Other Eating Places", "Address": "1400 S 2nd St", "LATITUDE": 39.930224, "LONGITUDE": -75.148223, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 10.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 228.0, "Total Spend": 797.0, "Total Transactions": 38.0, "Total Customers": 29.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148223, 39.930224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p7x-dsq", "Name": "Angelos Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6920 Bustleton Ave", "LATITUDE": 40.042556, "LONGITUDE": -75.063892, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 12.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 2.0, "Total Spend": 1392.0, "Total Transactions": 45.0, "Total Customers": 45.0, "Median Spend per Transaction": 24.5, "Median Spend per Customer": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.063892, 40.042556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgb-3dv", "Name": "Rex Pizza & Beer", "Category": "Restaurants and Other Eating Places", "Address": "1526 Race St", "LATITUDE": 39.956427, "LONGITUDE": -75.165441, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 286.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 3.0, "Total Spend": 3815.0, "Total Transactions": 229.0, "Total Customers": 179.0, "Median Spend per Transaction": 13.87, "Median Spend per Customer": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -75.165441, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "Name": "Monk's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "264 S 16th St", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2021, "Total Visits": 255.0, "Total Visitors": 239.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 76.0, "Total Spend": 29989.0, "Total Transactions": 492.0, "Total Customers": 430.0, "Median Spend per Transaction": 51.32, "Median Spend per Customer": 54.05 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hh5", "Name": "Square on Square", "Category": "Restaurants and Other Eating Places", "Address": "274 S 20th St", "LATITUDE": 39.94849, "LONGITUDE": -75.174456, "DATE_RANGE_START": 2021, "Total Visits": 1282.0, "Total Visitors": 747.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 109.0, "Total Spend": 1452.0, "Total Transactions": 64.0, "Total Customers": 60.0, "Median Spend per Transaction": 21.82, "Median Spend per Customer": 22.95 }, "geometry": { "type": "Point", "coordinates": [ -75.174456, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3032 N Broad St", "LATITUDE": 39.999771, "LONGITUDE": -75.153727, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 131.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 3.0, "Total Spend": 816.0, "Total Transactions": 76.0, "Total Customers": 55.0, "Median Spend per Transaction": 8.35, "Median Spend per Customer": 13.38 }, "geometry": { "type": "Point", "coordinates": [ -75.153727, 39.999771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-zmk", "Name": "The Good King Tavern", "Category": "Restaurants and Other Eating Places", "Address": "614 S 7th St", "LATITUDE": 39.941737, "LONGITUDE": -75.15419, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010015001.0, "Median Dwell Time": null, "Total Spend": 1797.0, "Total Transactions": 31.0, "Total Customers": 12.0, "Median Spend per Transaction": 57.8, "Median Spend per Customer": 113.66 }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 39.941737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-mrk", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "1601 Market St", "LATITUDE": 39.953042, "LONGITUDE": -75.167502, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 215.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 271.0, "Total Spend": 554.0, "Total Transactions": 31.0, "Total Customers": 31.0, "Median Spend per Transaction": 13.56, "Median Spend per Customer": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.167502, 39.953042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p7c-3dv", "Name": "Marathon", "Category": "Gasoline Stations", "Address": "9451 Academy Rd", "LATITUDE": 40.06844, "LONGITUDE": -75.007839, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 36.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 5.0, "Total Spend": 1129.0, "Total Transactions": 43.0, "Total Customers": 38.0, "Median Spend per Transaction": 18.18, "Median Spend per Customer": 22.34 }, "geometry": { "type": "Point", "coordinates": [ -75.007839, 40.06844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "331 S 22nd St", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 45.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 20.0, "Total Spend": 5688.0, "Total Transactions": 597.0, "Total Customers": 432.0, "Median Spend per Transaction": 8.39, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "Name": "Fairmount Pizza and Grill", "Category": "Restaurants and Other Eating Places", "Address": "2000 Fairmount Ave", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 55.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 32.0, "Total Spend": 21865.0, "Total Transactions": 1298.0, "Total Customers": 854.0, "Median Spend per Transaction": 13.29, "Median Spend per Customer": 18.93 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-9cq", "Name": "Flame House Grill", "Category": "Restaurants and Other Eating Places", "Address": "7930 Bustleton Ave", "LATITUDE": 40.058738, "LONGITUDE": -75.052763, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 55.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 86.0, "Total Spend": 141.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.052763, 40.058738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-r6k", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "310 W Master St", "LATITUDE": 39.97237, "LONGITUDE": -75.140976, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 57.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 42.0, "Total Spend": 194.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140976, 39.97237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-68v", "Name": "The Bike Stop", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "206 S Quince St", "LATITUDE": 39.948357, "LONGITUDE": -75.159979, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 60.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 37.0, "Total Spend": 17099.0, "Total Transactions": 995.0, "Total Customers": 317.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 26.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159979, 39.948357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "4424 N Broad St", "LATITUDE": 40.021127, "LONGITUDE": -75.149781, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 279.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 14.0, "Total Spend": 888.0, "Total Transactions": 41.0, "Total Customers": 41.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.149781, 40.021127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "8101 Oxford Ave", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2021, "Total Visits": 365.0, "Total Visitors": 236.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 2.0, "Total Spend": 227.0, "Total Transactions": 24.0, "Total Customers": 12.0, "Median Spend per Transaction": 9.49, "Median Spend per Customer": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "Name": "Athleta", "Category": "Clothing Stores", "Address": "1722 Walnut St", "LATITUDE": 39.94988, "LONGITUDE": -75.170326, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 351.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 5.0, "Total Spend": 25105.0, "Total Transactions": 282.0, "Total Customers": 253.0, "Median Spend per Transaction": 74.38, "Median Spend per Customer": 75.99 }, "geometry": { "type": "Point", "coordinates": [ -75.170326, 39.94988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "Name": "lululemon athletica", "Category": "Clothing Stores", "Address": "1720 Walnut St", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2021, "Total Visits": 363.0, "Total Visitors": 341.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 7.0, "Total Spend": 26975.0, "Total Transactions": 251.0, "Total Customers": 215.0, "Median Spend per Transaction": 87.0, "Median Spend per Customer": 104.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-vvf", "Name": "Steve Madden", "Category": "Shoe Stores", "Address": "1455 Franklin Mills Cir Spc 155", "LATITUDE": 40.089544, "LONGITUDE": -74.961668, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 167.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 1698.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 38.73, "Median Spend per Customer": 38.73 }, "geometry": { "type": "Point", "coordinates": [ -74.961668, 40.089544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7106 Ridge Ave", "LATITUDE": 40.043955, "LONGITUDE": -75.231236, "DATE_RANGE_START": 2021, "Total Visits": 332.0, "Total Visitors": 246.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 10.0, "Total Spend": 351.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 7.32, "Median Spend per Customer": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.231236, 40.043955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-sbk", "Name": "Coffee House Too", "Category": "Restaurants and Other Eating Places", "Address": "2514 E York St", "LATITUDE": 39.97675, "LONGITUDE": -75.123708, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 55.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 58.0, "Total Spend": 348.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 72.99, "Median Spend per Customer": 72.99 }, "geometry": { "type": "Point", "coordinates": [ -75.123708, 39.97675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "Name": "Drury Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1311 Sansom St", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 62.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 22557.0, "Total Transactions": 544.0, "Total Customers": 442.0, "Median Spend per Transaction": 28.25, "Median Spend per Customer": 33.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "Name": "Aura", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "628 N Front St", "LATITUDE": 39.961228, "LONGITUDE": -75.138826, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 126.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 42.0, "Total Spend": 187156.0, "Total Transactions": 2663.0, "Total Customers": 2251.0, "Median Spend per Transaction": 44.36, "Median Spend per Customer": 51.58 }, "geometry": { "type": "Point", "coordinates": [ -75.138826, 39.961228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-sbk", "Name": "Izzy's 33", "Category": "Restaurants and Other Eating Places", "Address": "1703 S 9th St", "LATITUDE": 39.927844, "LONGITUDE": -75.159073, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 165.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 267.0, "Total Spend": 1998.0, "Total Transactions": 43.0, "Total Customers": 43.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159073, 39.927844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-8vz", "Name": "Dizengoff", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.953032, "LONGITUDE": -75.192553, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 42.0, "Total Spend": 2288.0, "Total Transactions": 88.0, "Total Customers": 88.0, "Median Spend per Transaction": 20.29, "Median Spend per Customer": 20.29 }, "geometry": { "type": "Point", "coordinates": [ -75.192553, 39.953032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "Name": "Crown Chicken and Grill", "Category": "Restaurants and Other Eating Places", "Address": "7275 Rising Sun Ave", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 103.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 8.0, "Total Spend": 9495.0, "Total Transactions": 752.0, "Total Customers": 513.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 14.14 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3655 Aramingo Ave", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 263.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 2.0, "Total Spend": 1471.0, "Total Transactions": 79.0, "Total Customers": 72.0, "Median Spend per Transaction": 16.58, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914434, "LONGITUDE": -75.156267, "DATE_RANGE_START": 2021, "Total Visits": 356.0, "Total Visitors": 227.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 4916.0, "Total Transactions": 766.0, "Total Customers": 377.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.156267, 39.914434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-zj9", "Name": "Pantry I Food Mart", "Category": "Grocery Stores", "Address": "5240 Torresdale Ave", "LATITUDE": 40.013698, "LONGITUDE": -75.069042, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 141.0, "POI_CBG": 421010298005.0, "Median Dwell Time": 2.0, "Total Spend": 69.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.069042, 40.013698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-gc5", "Name": "Verree Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7960 Verree Rd", "LATITUDE": 40.072408, "LONGITUDE": -75.076041, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 86.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 10.0, "Total Spend": 212.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 24.95 }, "geometry": { "type": "Point", "coordinates": [ -75.076041, 40.072408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-54v", "Name": "United Fried Chicken", "Category": "Restaurants and Other Eating Places", "Address": "1339 W Olney Ave", "LATITUDE": 40.039073, "LONGITUDE": -75.143922, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 57.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 1.0, "Total Spend": 968.0, "Total Transactions": 88.0, "Total Customers": 55.0, "Median Spend per Transaction": 8.84, "Median Spend per Customer": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.143922, 40.039073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnw-nt9", "Name": "Fishtown Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1301 Frankford Ave", "LATITUDE": 39.970532, "LONGITUDE": -75.134266, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 62.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 25.0, "Total Spend": 28185.0, "Total Transactions": 890.0, "Total Customers": 592.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134266, 39.970532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "Name": "Open House", "Category": "Home Furnishings Stores", "Address": "107 S 13th St", "LATITUDE": 39.950268, "LONGITUDE": -75.161745, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 64.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 20841.0, "Total Transactions": 444.0, "Total Customers": 382.0, "Median Spend per Transaction": 34.99, "Median Spend per Customer": 41.04 }, "geometry": { "type": "Point", "coordinates": [ -75.161745, 39.950268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-b8v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1325 Point Breeze Ave", "LATITUDE": 39.934826, "LONGITUDE": -75.178911, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 64.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 10.0, "Total Spend": 446.0, "Total Transactions": 36.0, "Total Customers": 31.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178911, 39.934826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-zvf", "Name": "South Street Magic", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "519 S 4th St", "LATITUDE": 39.941265, "LONGITUDE": -75.150408, "DATE_RANGE_START": 2021, "Total Visits": 656.0, "Total Visitors": 473.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 39.0, "Total Spend": 1053.0, "Total Transactions": 41.0, "Total Customers": 38.0, "Median Spend per Transaction": 21.89, "Median Spend per Customer": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150408, 39.941265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3000 Reed St # 02", "LATITUDE": 39.936229, "LONGITUDE": -75.194533, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 69.0, "POI_CBG": 421010033006.0, "Median Dwell Time": 2.0, "Total Spend": 8342.0, "Total Transactions": 523.0, "Total Customers": 265.0, "Median Spend per Transaction": 11.98, "Median Spend per Customer": 20.94 }, "geometry": { "type": "Point", "coordinates": [ -75.194533, 39.936229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2027 S Broad St", "LATITUDE": 39.924749, "LONGITUDE": -75.169152, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 72.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 1.0, "Total Spend": 4115.0, "Total Transactions": 389.0, "Total Customers": 313.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 10.67 }, "geometry": { "type": "Point", "coordinates": [ -75.169152, 39.924749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1600 E Wadsworth Ave Ste B", "LATITUDE": 40.080365, "LONGITUDE": -75.171922, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 122.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 4.0, "Total Spend": 1289.0, "Total Transactions": 79.0, "Total Customers": 53.0, "Median Spend per Transaction": 10.96, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.171922, 40.080365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "Name": "VaporFi", "Category": "Other Miscellaneous Store Retailers", "Address": "1240 South St Unit B", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2021, "Total Visits": 749.0, "Total Visitors": 461.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 184.0, "Total Spend": 4643.0, "Total Transactions": 86.0, "Total Customers": 57.0, "Median Spend per Transaction": 49.66, "Median Spend per Customer": 57.22 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "Name": "The Pizza Store", "Category": "Restaurants and Other Eating Places", "Address": "2727 E Allegheny Ave", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 24.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 263.0, "Total Spend": 1910.0, "Total Transactions": 60.0, "Total Customers": 48.0, "Median Spend per Transaction": 27.54, "Median Spend per Customer": 26.73 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-4d9", "Name": "Americas Quality Tire", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5915 Harbison Ave", "LATITUDE": 40.020793, "LONGITUDE": -75.063071, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 31.0, "POI_CBG": 421010319003.0, "Median Dwell Time": 10.0, "Total Spend": 4243.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 160.0, "Median Spend per Customer": 168.9 }, "geometry": { "type": "Point", "coordinates": [ -75.063071, 40.020793 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-phn-87q", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1616 E Wadsworth Ave", "LATITUDE": 40.080555, "LONGITUDE": -75.171342, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 39.0, "Total Spend": 6367.0, "Total Transactions": 62.0, "Total Customers": 55.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171342, 40.080555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "2047 Cottman Ave", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 6.0, "Total Spend": 2892.0, "Total Transactions": 53.0, "Total Customers": 48.0, "Median Spend per Transaction": 38.74, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "9475 Roosevelt Blvd Ste 8", "LATITUDE": 40.079117, "LONGITUDE": -75.027659, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 72.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 181.0, "Total Spend": 3450.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 59.25, "Median Spend per Customer": 59.25 }, "geometry": { "type": "Point", "coordinates": [ -75.027659, 40.079117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1018 N 2nd St", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 72.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 85.0, "Total Spend": 7227.0, "Total Transactions": 1000.0, "Total Customers": 556.0, "Median Spend per Transaction": 5.79, "Median Spend per Customer": 9.92 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "Name": "Pat's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "12317 Academy Rd", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2021, "Total Visits": 112.0, "Total Visitors": 98.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 6.0, "Total Spend": 4593.0, "Total Transactions": 298.0, "Total Customers": 212.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm3-vxq", "Name": "Noir Restaurant & Bar", "Category": "Restaurants and Other Eating Places", "Address": "1909 E Passyunk Ave", "LATITUDE": 39.926292, "LONGITUDE": -75.16736, "DATE_RANGE_START": 2021, "Total Visits": 735.0, "Total Visitors": 432.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 80.0, "Total Spend": 7904.0, "Total Transactions": 107.0, "Total Customers": 84.0, "Median Spend per Transaction": 74.5, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16736, 39.926292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.99223, "LONGITUDE": -75.09972, "DATE_RANGE_START": 2021, "Total Visits": 391.0, "Total Visitors": 270.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 47.0, "Total Spend": 9793.0, "Total Transactions": 255.0, "Total Customers": 222.0, "Median Spend per Transaction": 35.52, "Median Spend per Customer": 38.94 }, "geometry": { "type": "Point", "coordinates": [ -75.09972, 39.99223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "Name": "Little Pete's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2401 Pennsylvania Ave", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2021, "Total Visits": 1936.0, "Total Visitors": 1198.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 107.0, "Total Spend": 3428.0, "Total Transactions": 69.0, "Total Customers": 57.0, "Median Spend per Transaction": 45.51, "Median Spend per Customer": 48.27 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "4421 Main St", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2021, "Total Visits": 189.0, "Total Visitors": 174.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 35.0, "Total Spend": 6161.0, "Total Transactions": 72.0, "Total Customers": 55.0, "Median Spend per Transaction": 57.0, "Median Spend per Customer": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmb-8sq", "Name": "South Fellini", "Category": "Clothing Stores", "Address": "1100 Market St", "LATITUDE": 39.951564, "LONGITUDE": -75.158766, "DATE_RANGE_START": 2021, "Total Visits": 7485.0, "Total Visitors": 5687.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 21.0, "Total Spend": 415.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158766, 39.951564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "Name": "A Plus", "Category": "Grocery Stores", "Address": "5240 Torresdale Ave", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 131.0, "POI_CBG": 421010298005.0, "Median Dwell Time": 2.0, "Total Spend": 3024.0, "Total Transactions": 263.0, "Total Customers": 136.0, "Median Spend per Transaction": 10.83, "Median Spend per Customer": 11.94 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6601 N Broad St", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2021, "Total Visits": 403.0, "Total Visitors": 308.0, "POI_CBG": 421010268002.0, "Median Dwell Time": 5.0, "Total Spend": 3600.0, "Total Transactions": 272.0, "Total Customers": 146.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6337 N Broad St", "LATITUDE": 40.050125, "LONGITUDE": -75.141867, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 88.0, "POI_CBG": 421010268004.0, "Median Dwell Time": 5.0, "Total Spend": 695.0, "Total Transactions": 67.0, "Total Customers": 38.0, "Median Spend per Transaction": 8.2, "Median Spend per Customer": 9.51 }, "geometry": { "type": "Point", "coordinates": [ -75.141867, 40.050125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9212 Frankford Ave", "LATITUDE": 40.055974, "LONGITUDE": -75.005102, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 215.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 4.0, "Total Spend": 942.0, "Total Transactions": 41.0, "Total Customers": 31.0, "Median Spend per Transaction": 20.03, "Median Spend per Customer": 27.35 }, "geometry": { "type": "Point", "coordinates": [ -75.005102, 40.055974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvw-wzf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5701 Walnut St", "LATITUDE": 39.958527, "LONGITUDE": -75.235976, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 134.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 5.0, "Total Spend": 1479.0, "Total Transactions": 146.0, "Total Customers": 50.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 23.33 }, "geometry": { "type": "Point", "coordinates": [ -75.235976, 39.958527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-ht9", "Name": "Vapor Hut", "Category": "Other Miscellaneous Store Retailers", "Address": "2550 Grant Ave Ste 340", "LATITUDE": 40.0786, "LONGITUDE": -75.027064, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 167.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 9869.0, "Total Transactions": 258.0, "Total Customers": 184.0, "Median Spend per Transaction": 29.42, "Median Spend per Customer": 40.49 }, "geometry": { "type": "Point", "coordinates": [ -75.027064, 40.0786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-6zf", "Name": "American Freight", "Category": "Furniture Stores", "Address": "1357 Franklin Mills Cir", "LATITUDE": 40.085479, "LONGITUDE": -74.963644, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 148.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 7831.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 1430.43, "Median Spend per Customer": 1430.43 }, "geometry": { "type": "Point", "coordinates": [ -74.963644, 40.085479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3230 Richmond St", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2021, "Total Visits": 1232.0, "Total Visitors": 757.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 3.0, "Total Spend": 33837.0, "Total Transactions": 3107.0, "Total Customers": 1506.0, "Median Spend per Transaction": 9.2, "Median Spend per Customer": 11.95 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-yd9", "Name": "Somerton Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "13510 Bustleton Ave", "LATITUDE": 40.129213, "LONGITUDE": -75.014014, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 210.0, "POI_CBG": 421010365013.0, "Median Dwell Time": 4.0, "Total Spend": 964.0, "Total Transactions": 41.0, "Total Customers": 21.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 50.62 }, "geometry": { "type": "Point", "coordinates": [ -75.014014, 40.129213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1501 Cecil B Moore Ave", "LATITUDE": 39.979068, "LONGITUDE": -75.159667, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 143.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 2.0, "Total Spend": 2711.0, "Total Transactions": 274.0, "Total Customers": 193.0, "Median Spend per Transaction": 7.58, "Median Spend per Customer": 10.22 }, "geometry": { "type": "Point", "coordinates": [ -75.159667, 39.979068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6101 Ridge Ave", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 184.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 2.0, "Total Spend": 2613.0, "Total Transactions": 212.0, "Total Customers": 91.0, "Median Spend per Transaction": 10.19, "Median Spend per Customer": 12.01 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4140 N Broad St", "LATITUDE": 40.016586, "LONGITUDE": -75.149894, "DATE_RANGE_START": 2021, "Total Visits": 1339.0, "Total Visitors": 1014.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 5.0, "Total Spend": 1498.0, "Total Transactions": 57.0, "Total Customers": 53.0, "Median Spend per Transaction": 24.51, "Median Spend per Customer": 25.41 }, "geometry": { "type": "Point", "coordinates": [ -75.149894, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012072, "LONGITUDE": -75.115243, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 105.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 13.0, "Total Spend": 603.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 10.44 }, "geometry": { "type": "Point", "coordinates": [ -75.115243, 40.012072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5536 Torresdale Ave", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010298002.0, "Median Dwell Time": 10.0, "Total Spend": 521.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 18.84, "Median Spend per Customer": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pgb-7t9", "Name": "Plants Etc", "Category": "Florists", "Address": "2313 Fairmount Ave", "LATITUDE": 39.967525, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010136011.0, "Median Dwell Time": null, "Total Spend": 400.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.967525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "Name": "The Tasty", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 12th St", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 169.0, "Total Spend": 9826.0, "Total Transactions": 282.0, "Total Customers": 229.0, "Median Spend per Transaction": 32.64, "Median Spend per Customer": 36.82 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-phq-nbk", "Name": "Reyes Grocery Store", "Category": "Grocery Stores", "Address": "6560 N 18th St", "LATITUDE": 40.054327, "LONGITUDE": -75.148175, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 24.0, "POI_CBG": 421010267004.0, "Median Dwell Time": 5.0, "Total Spend": 344.0, "Total Transactions": 57.0, "Total Customers": 26.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148175, 40.054327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "Name": "Mega Mart", "Category": "Grocery Stores", "Address": "6340 Ogontz Ave", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010277003.0, "Median Dwell Time": 6.0, "Total Spend": 1945.0, "Total Transactions": 81.0, "Total Customers": 74.0, "Median Spend per Transaction": 19.2, "Median Spend per Customer": 19.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "Name": "Cafe La Maude", "Category": "Restaurants and Other Eating Places", "Address": "816 N 4th St", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010367002.0, "Median Dwell Time": 31.0, "Total Spend": 32809.0, "Total Transactions": 542.0, "Total Customers": 499.0, "Median Spend per Transaction": 60.86, "Median Spend per Customer": 61.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "2552 Grant Ave", "LATITUDE": 40.079208, "LONGITUDE": -75.02664, "DATE_RANGE_START": 2021, "Total Visits": 401.0, "Total Visitors": 327.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 12037.0, "Total Transactions": 563.0, "Total Customers": 439.0, "Median Spend per Transaction": 18.19, "Median Spend per Customer": 20.39 }, "geometry": { "type": "Point", "coordinates": [ -75.02664, 40.079208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave Ste A", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 272.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 5.0, "Total Spend": 34513.0, "Total Transactions": 2652.0, "Total Customers": 1857.0, "Median Spend per Transaction": 11.61, "Median Spend per Customer": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 124.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 3.0, "Total Spend": 2632.0, "Total Transactions": 267.0, "Total Customers": 227.0, "Median Spend per Transaction": 9.14, "Median Spend per Customer": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "600 S 9th St", "LATITUDE": 39.942532, "LONGITUDE": -75.157241, "DATE_RANGE_START": 2021, "Total Visits": 406.0, "Total Visitors": 370.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 3.0, "Total Spend": 7107.0, "Total Transactions": 1010.0, "Total Customers": 630.0, "Median Spend per Transaction": 5.79, "Median Spend per Customer": 6.77 }, "geometry": { "type": "Point", "coordinates": [ -75.157241, 39.942532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-7yv", "Name": "Home2 Suites", "Category": "Traveler Accommodation", "Address": "1200 Arch St", "LATITUDE": 39.953662, "LONGITUDE": -75.15975, "DATE_RANGE_START": 2021, "Total Visits": 4091.0, "Total Visitors": 2833.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 263.0, "Total Spend": 10714.0, "Total Transactions": 31.0, "Total Customers": 31.0, "Median Spend per Transaction": 352.52, "Median Spend per Customer": 352.52 }, "geometry": { "type": "Point", "coordinates": [ -75.15975, 39.953662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "1575 N 52nd St", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 184.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 5.0, "Total Spend": 486.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 101.75, "Median Spend per Customer": 101.75 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "Name": "Brandy Melville", "Category": "Clothing Stores", "Address": "1527 Walnut St", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2021, "Total Visits": 735.0, "Total Visitors": 637.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 21.0, "Total Spend": 35303.0, "Total Transactions": 673.0, "Total Customers": 601.0, "Median Spend per Transaction": 39.2, "Median Spend per Customer": 42.18 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 Castor Ave", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2021, "Total Visits": 6950.0, "Total Visitors": 4026.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 21.0, "Total Spend": 347315.0, "Total Transactions": 6341.0, "Total Customers": 3730.0, "Median Spend per Transaction": 35.09, "Median Spend per Customer": 56.33 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4424 N Broad St", "LATITUDE": 40.021226, "LONGITUDE": -75.14987, "DATE_RANGE_START": 2021, "Total Visits": 666.0, "Total Visitors": 363.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 16.0, "Total Spend": 334.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 15.96, "Median Spend per Customer": 17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.14987, 40.021226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8m-6rk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6101 Frankford Ave", "LATITUDE": 40.026735, "LONGITUDE": -75.064295, "DATE_RANGE_START": 2021, "Total Visits": 406.0, "Total Visitors": 332.0, "POI_CBG": 421010319001.0, "Median Dwell Time": 8.0, "Total Spend": 555.0, "Total Transactions": 48.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.98, "Median Spend per Customer": 20.32 }, "geometry": { "type": "Point", "coordinates": [ -75.064295, 40.026735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "Name": "Microtel Inn and Suites", "Category": "Traveler Accommodation", "Address": "8840 Tinicum Blvd", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2021, "Total Visits": 587.0, "Total Visitors": 346.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 450.0, "Total Spend": 15020.0, "Total Transactions": 100.0, "Total Customers": 81.0, "Median Spend per Transaction": 133.67, "Median Spend per Customer": 150.72 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "Name": "Warwick Hotel Rittenhouse Square", "Category": "Traveler Accommodation", "Address": "220 S 17th St", "LATITUDE": 39.949172, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2021, "Total Visits": 2551.0, "Total Visitors": 1592.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 363.0, "Total Spend": 7840.0, "Total Transactions": 48.0, "Total Customers": 45.0, "Median Spend per Transaction": 46.0, "Median Spend per Customer": 92.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.949172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "Name": "Garden Court Eatery & Beer", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4725 Pine St", "LATITUDE": 39.952636, "LONGITUDE": -75.21767, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 8.0, "Total Spend": 10581.0, "Total Transactions": 594.0, "Total Customers": 253.0, "Median Spend per Transaction": 14.25, "Median Spend per Customer": 24.54 }, "geometry": { "type": "Point", "coordinates": [ -75.21767, 39.952636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phd-h89", "Name": "El Limon", "Category": "Restaurants and Other Eating Places", "Address": "4514 City Ave", "LATITUDE": 40.002787, "LONGITUDE": -75.222273, "DATE_RANGE_START": 2021, "Total Visits": 711.0, "Total Visitors": 575.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 6.0, "Total Spend": 2848.0, "Total Transactions": 93.0, "Total Customers": 76.0, "Median Spend per Transaction": 27.68, "Median Spend per Customer": 33.17 }, "geometry": { "type": "Point", "coordinates": [ -75.222273, 40.002787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "Name": "Morgan's Pier", "Category": "Restaurants and Other Eating Places", "Address": "221 N Columbus Blvd", "LATITUDE": 39.955033, "LONGITUDE": -75.13891, "DATE_RANGE_START": 2021, "Total Visits": 742.0, "Total Visitors": 632.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 30.0, "Total Spend": 275746.0, "Total Transactions": 6745.0, "Total Customers": 3979.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13891, 39.955033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p83-xdv", "Name": "Mayura Indian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "9321 Krewstown Rd # 23", "LATITUDE": 40.086185, "LONGITUDE": -75.045124, "DATE_RANGE_START": 2021, "Total Visits": 2291.0, "Total Visitors": 1110.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 40.0, "Total Spend": 337.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 34.52, "Median Spend per Customer": 70.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045124, 40.086185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "Name": "Banana Leaf", "Category": "Restaurants and Other Eating Places", "Address": "1009 Arch St", "LATITUDE": 39.953737, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 129.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 13.0, "Total Spend": 5595.0, "Total Transactions": 136.0, "Total Customers": 131.0, "Median Spend per Transaction": 35.53, "Median Spend per Customer": 35.65 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.953737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2327 Cottman Ave", "LATITUDE": 40.048258, "LONGITUDE": -75.056175, "DATE_RANGE_START": 2021, "Total Visits": 289.0, "Total Visitors": 224.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 27.0, "Total Spend": 11569.0, "Total Transactions": 229.0, "Total Customers": 198.0, "Median Spend per Transaction": 32.63, "Median Spend per Customer": 39.96 }, "geometry": { "type": "Point", "coordinates": [ -75.056175, 40.048258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "314 W Lehigh Ave", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2021, "Total Visits": 289.0, "Total Visitors": 196.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 5.0, "Total Spend": 7480.0, "Total Transactions": 439.0, "Total Customers": 379.0, "Median Spend per Transaction": 15.06, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p7v-qj9", "Name": "Oxford Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "7517 Oxford Ave", "LATITUDE": 40.066404, "LONGITUDE": -75.083593, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 153.0, "POI_CBG": 421010339001.0, "Median Dwell Time": 1.0, "Total Spend": 545.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.083593, 40.066404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "9173 Roosevelt Blvd Ste 10", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2021, "Total Visits": 556.0, "Total Visitors": 496.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 10.0, "Total Spend": 40365.0, "Total Transactions": 675.0, "Total Customers": 611.0, "Median Spend per Transaction": 41.02, "Median Spend per Customer": 45.57 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2535 Aramingo Ave", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2021, "Total Visits": 1566.0, "Total Visitors": 1088.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 4.0, "Total Spend": 201188.0, "Total Transactions": 10069.0, "Total Customers": 5556.0, "Median Spend per Transaction": 15.1, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-6x5", "Name": "Brooks Brothers", "Category": "Clothing Stores", "Address": "1513 Walnut St", "LATITUDE": 39.949887, "LONGITUDE": -75.166618, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 239.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 32.0, "Total Spend": 11684.0, "Total Transactions": 38.0, "Total Customers": 29.0, "Median Spend per Transaction": 99.01, "Median Spend per Customer": 109.01 }, "geometry": { "type": "Point", "coordinates": [ -75.166618, 39.949887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2021, "Total Visits": 852.0, "Total Visitors": 656.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 9.0, "Total Spend": 48506.0, "Total Transactions": 1098.0, "Total Customers": 912.0, "Median Spend per Transaction": 36.03, "Median Spend per Customer": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.067993, "LONGITUDE": -75.198422, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 100.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 6.0, "Total Spend": 14953.0, "Total Transactions": 425.0, "Total Customers": 346.0, "Median Spend per Transaction": 22.78, "Median Spend per Customer": 29.41 }, "geometry": { "type": "Point", "coordinates": [ -75.198422, 40.067993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7162 Ridge Ave", "LATITUDE": 40.0441, "LONGITUDE": -75.232794, "DATE_RANGE_START": 2021, "Total Visits": 1100.0, "Total Visitors": 749.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 10.0, "Total Spend": 245267.0, "Total Transactions": 6081.0, "Total Customers": 3437.0, "Median Spend per Transaction": 25.29, "Median Spend per Customer": 44.49 }, "geometry": { "type": "Point", "coordinates": [ -75.232794, 40.0441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993729, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 103.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 21.0, "Total Spend": 1857.0, "Total Transactions": 86.0, "Total Customers": 29.0, "Median Spend per Transaction": 10.64, "Median Spend per Customer": 21.07 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.993729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pmb-7t9", "Name": "Jeans Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1334 Walnut St", "LATITUDE": 39.949139, "LONGITUDE": -75.163554, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 119.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 3.0, "Total Spend": 1990.0, "Total Transactions": 165.0, "Total Customers": 119.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.163554, 39.949139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj6-bx5", "Name": "Nam Vang Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "571 Adams Ave", "LATITUDE": 40.037327, "LONGITUDE": -75.108009, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 84.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 5.0, "Total Spend": 8378.0, "Total Transactions": 117.0, "Total Customers": 115.0, "Median Spend per Transaction": 75.0, "Median Spend per Customer": 75.99 }, "geometry": { "type": "Point", "coordinates": [ -75.108009, 40.037327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7911 Ogontz Ave # 17", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2021, "Total Visits": 745.0, "Total Visitors": 499.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 3.0, "Total Spend": 33468.0, "Total Transactions": 2740.0, "Total Customers": 1957.0, "Median Spend per Transaction": 10.13, "Median Spend per Customer": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-zfz", "Name": "Sweet Treat Hut", "Category": "Restaurants and Other Eating Places", "Address": "1221 S Broad St", "LATITUDE": 39.934878, "LONGITUDE": -75.167189, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 112.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 349.0, "Total Spend": 1257.0, "Total Transactions": 110.0, "Total Customers": 76.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.38 }, "geometry": { "type": "Point", "coordinates": [ -75.167189, 39.934878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1002 S Broad St", "LATITUDE": 39.938246, "LONGITUDE": -75.166948, "DATE_RANGE_START": 2021, "Total Visits": 6308.0, "Total Visitors": 3668.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 22.0, "Total Spend": 8441.0, "Total Transactions": 1115.0, "Total Customers": 742.0, "Median Spend per Transaction": 5.89, "Median Spend per Customer": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.938246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2951 Market St", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2021, "Total Visits": 22380.0, "Total Visitors": 15420.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 12.0, "Total Spend": 2294.0, "Total Transactions": 504.0, "Total Customers": 305.0, "Median Spend per Transaction": 3.99, "Median Spend per Customer": 5.97 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9s-j9z", "Name": "Room Service 360", "Category": "Furniture Stores", "Address": "2031 Byberry Rd", "LATITUDE": 40.111182, "LONGITUDE": -75.003163, "DATE_RANGE_START": 2021, "Total Visits": 807.0, "Total Visitors": 558.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 234.0, "Total Spend": 4325.0, "Total Transactions": 115.0, "Total Customers": 69.0, "Median Spend per Transaction": 33.7, "Median Spend per Customer": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003163, 40.111182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmb-7yv", "Name": "John Yi Fish Market", "Category": "Specialty Food Stores", "Address": "51 N 12th St", "LATITUDE": 39.953479, "LONGITUDE": -75.159041, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 5039.0, "Total Transactions": 141.0, "Total Customers": 117.0, "Median Spend per Transaction": 23.99, "Median Spend per Customer": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.159041, 39.953479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "259 Market St", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 255.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 6.0, "Total Spend": 22645.0, "Total Transactions": 1446.0, "Total Customers": 764.0, "Median Spend per Transaction": 10.3, "Median Spend per Customer": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjb-6ff", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "6200 N Broad St", "LATITUDE": 40.04808, "LONGITUDE": -75.143086, "DATE_RANGE_START": 2021, "Total Visits": 1107.0, "Total Visitors": 766.0, "POI_CBG": 421010277001.0, "Median Dwell Time": 5.0, "Total Spend": 167.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.51, "Median Spend per Customer": 20.01 }, "geometry": { "type": "Point", "coordinates": [ -75.143086, 40.04808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-sbk", "Name": "King Seafood", "Category": "Specialty Food Stores", "Address": "4429 N American St", "LATITUDE": 40.018597, "LONGITUDE": -75.129931, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010383002.0, "Median Dwell Time": null, "Total Spend": 1135.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 37.03, "Median Spend per Customer": 37.03 }, "geometry": { "type": "Point", "coordinates": [ -75.129931, 40.018597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "Name": "Head House Books", "Category": "Book Stores and News Dealers", "Address": "619 S 2nd St", "LATITUDE": 39.940599, "LONGITUDE": -75.145587, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 5.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 582.0, "Total Spend": 2768.0, "Total Transactions": 84.0, "Total Customers": 74.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 32.35 }, "geometry": { "type": "Point", "coordinates": [ -75.145587, 39.940599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "456 N 5th St", "LATITUDE": 39.959702, "LONGITUDE": -75.147615, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 248.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 5.0, "Total Spend": 401783.0, "Total Transactions": 9852.0, "Total Customers": 5599.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 45.42 }, "geometry": { "type": "Point", "coordinates": [ -75.147615, 39.959702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvw-bhq", "Name": "Top Taste", "Category": "Restaurants and Other Eating Places", "Address": "40 N 52nd St", "LATITUDE": 39.961231, "LONGITUDE": -75.224868, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 8.0, "Total Spend": 754.0, "Total Transactions": 33.0, "Total Customers": 24.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224868, 39.961231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p9w-dvz", "Name": "Angelo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "11036 Rennard St", "LATITUDE": 40.121593, "LONGITUDE": -75.03516, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010358002.0, "Median Dwell Time": 4.0, "Total Spend": 5506.0, "Total Transactions": 267.0, "Total Customers": 241.0, "Median Spend per Transaction": 19.21, "Median Spend per Customer": 20.43 }, "geometry": { "type": "Point", "coordinates": [ -75.03516, 40.121593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-6zf", "Name": "Petes Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4074 Lancaster Ave", "LATITUDE": 39.964375, "LONGITUDE": -75.204736, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 5.0, "Total Spend": 1196.0, "Total Transactions": 57.0, "Total Customers": 55.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 18.79 }, "geometry": { "type": "Point", "coordinates": [ -75.204736, 39.964375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "Name": "Revolution Taco", "Category": "Restaurants and Other Eating Places", "Address": "2015 Walnut St", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 36.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 36.0, "Total Spend": 5775.0, "Total Transactions": 279.0, "Total Customers": 246.0, "Median Spend per Transaction": 15.99, "Median Spend per Customer": 21.44 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p8j-94v", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "7107 Frankford Ave", "LATITUDE": 40.034583, "LONGITUDE": -75.044102, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 1.0, "Total Spend": 110.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.044102, 40.034583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj4-3qz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4229 N Broad St", "LATITUDE": 40.017536, "LONGITUDE": -75.148496, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 9.0, "Total Spend": 10025.0, "Total Transactions": 365.0, "Total Customers": 260.0, "Median Spend per Transaction": 25.35, "Median Spend per Customer": 33.06 }, "geometry": { "type": "Point", "coordinates": [ -75.148496, 40.017536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-68v", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8914 Frankford Ave", "LATITUDE": 40.051732, "LONGITUDE": -75.010927, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 3.0, "Total Spend": 4465.0, "Total Transactions": 172.0, "Total Customers": 150.0, "Median Spend per Transaction": 24.09, "Median Spend per Customer": 26.51 }, "geometry": { "type": "Point", "coordinates": [ -75.010927, 40.051732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "Name": "New Star Express Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5202 Lancaster Ave", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010111004.0, "Median Dwell Time": 5.0, "Total Spend": 2946.0, "Total Transactions": 112.0, "Total Customers": 95.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 29.65 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm7-nwk", "Name": "The Fresh Works", "Category": "Restaurants and Other Eating Places", "Address": "2101 Reed St", "LATITUDE": 39.934521, "LONGITUDE": -75.179405, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 444.0, "Total Spend": 12.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 2.5, "Median Spend per Customer": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179405, 39.934521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Knights Rd", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2021, "Total Visits": 1506.0, "Total Visitors": 838.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 4.0, "Total Spend": 8381.0, "Total Transactions": 446.0, "Total Customers": 243.0, "Median Spend per Transaction": 15.23, "Median Spend per Customer": 25.03 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "Name": "Burlington", "Category": "Clothing Stores", "Address": "3401 Aramingo Ave", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2021, "Total Visits": 914.0, "Total Visitors": 730.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 26.0, "Total Spend": 4335.0, "Total Transactions": 88.0, "Total Customers": 79.0, "Median Spend per Transaction": 36.82, "Median Spend per Customer": 44.94 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-xnq", "Name": "LIDS", "Category": "Clothing Stores", "Address": "8500 Essington Ave Ste DE7", "LATITUDE": 39.87811, "LONGITUDE": -75.239425, "DATE_RANGE_START": 2021, "Total Visits": 232048.0, "Total Visitors": 147833.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 57.0, "Total Spend": 5006.0, "Total Transactions": 95.0, "Total Customers": 95.0, "Median Spend per Transaction": 39.19, "Median Spend per Customer": 39.19 }, "geometry": { "type": "Point", "coordinates": [ -75.239425, 39.87811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6zf", "Name": "Royal Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1369 Franklin Mills Cir", "LATITUDE": 40.085942, "LONGITUDE": -74.962636, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 81.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 2162.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 122.0, "Median Spend per Customer": 122.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962636, 40.085942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4061 Lancaster Ave", "LATITUDE": 39.964853, "LONGITUDE": -75.204438, "DATE_RANGE_START": 2021, "Total Visits": 325.0, "Total Visitors": 193.0, "POI_CBG": 421010107002.0, "Median Dwell Time": 12.0, "Total Spend": 527.0, "Total Transactions": 50.0, "Total Customers": 45.0, "Median Spend per Transaction": 7.22, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.204438, 39.964853 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-2zf", "Name": "Vapor Funky Monkey", "Category": "Other Miscellaneous Store Retailers", "Address": "4221 Main St", "LATITUDE": 40.024206, "LONGITUDE": -75.220514, "DATE_RANGE_START": 2021, "Total Visits": 494.0, "Total Visitors": 389.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 64.0, "Total Spend": 401.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 84.07, "Median Spend per Customer": 84.07 }, "geometry": { "type": "Point", "coordinates": [ -75.220514, 40.024206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "Name": "Sumo Sushi", "Category": "Restaurants and Other Eating Places", "Address": "401 S 13th St", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010011014.0, "Median Dwell Time": null, "Total Spend": 1774.0, "Total Transactions": 57.0, "Total Customers": 50.0, "Median Spend per Transaction": 24.01, "Median Spend per Customer": 31.22 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "Name": "Cafe Lift", "Category": "Restaurants and Other Eating Places", "Address": "428 N 13th St", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 26.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 518.0, "Total Spend": 27080.0, "Total Transactions": 625.0, "Total Customers": 585.0, "Median Spend per Transaction": 40.4, "Median Spend per Customer": 41.64 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "Name": "Ibis Lounge", "Category": "Restaurants and Other Eating Places", "Address": "5420 Lancaster Ave", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010113002.0, "Median Dwell Time": 6.0, "Total Spend": 2656.0, "Total Transactions": 98.0, "Total Customers": 48.0, "Median Spend per Transaction": 22.55, "Median Spend per Customer": 45.1 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm4-d35", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2217 S Broad St", "LATITUDE": 39.922429, "LONGITUDE": -75.169649, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 3.0, "Total Spend": 2323.0, "Total Transactions": 162.0, "Total Customers": 112.0, "Median Spend per Transaction": 11.84, "Median Spend per Customer": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.169649, 39.922429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "315 Market St", "LATITUDE": 39.950471, "LONGITUDE": -75.146166, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 38.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 324.0, "Total Spend": 2216.0, "Total Transactions": 81.0, "Total Customers": 81.0, "Median Spend per Transaction": 21.05, "Median Spend per Customer": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -75.146166, 39.950471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmb-fpv", "Name": "Locust Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "235 S 10th St", "LATITUDE": 39.947233, "LONGITUDE": -75.157426, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 57.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 291.0, "Total Spend": 11923.0, "Total Transactions": 305.0, "Total Customers": 210.0, "Median Spend per Transaction": 27.02, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157426, 39.947233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "8525 Frankford Ave", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2021, "Total Visits": 568.0, "Total Visitors": 408.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 4.0, "Total Spend": 6740.0, "Total Transactions": 212.0, "Total Customers": 146.0, "Median Spend per Transaction": 19.98, "Median Spend per Customer": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "3000 Island Ave", "LATITUDE": 39.902552, "LONGITUDE": -75.240445, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 289.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 4.0, "Total Spend": 7784.0, "Total Transactions": 212.0, "Total Customers": 141.0, "Median Spend per Transaction": 21.55, "Median Spend per Customer": 28.97 }, "geometry": { "type": "Point", "coordinates": [ -75.240445, 39.902552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-rp9", "Name": "Sunrise Breakfast", "Category": "Restaurants and Other Eating Places", "Address": "1916 E Washington Ln", "LATITUDE": 40.066142, "LONGITUDE": -75.158748, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 125.0, "Total Spend": 1108.0, "Total Transactions": 53.0, "Total Customers": 29.0, "Median Spend per Transaction": 19.2, "Median Spend per Customer": 26.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158748, 40.066142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "801 E Cathedral Rd. Store #24", "LATITUDE": 40.064353, "LONGITUDE": -75.238205, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 95.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 4.0, "Total Spend": 419.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 11.72, "Median Spend per Customer": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.238205, 40.064353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6140 Woodland Ave", "LATITUDE": 39.928169, "LONGITUDE": -75.230056, "DATE_RANGE_START": 2021, "Total Visits": 544.0, "Total Visitors": 394.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 9.0, "Total Spend": 892.0, "Total Transactions": 33.0, "Total Customers": 19.0, "Median Spend per Transaction": 15.19, "Median Spend per Customer": 40.62 }, "geometry": { "type": "Point", "coordinates": [ -75.230056, 39.928169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "Name": "Produce Junction", "Category": "Florists", "Address": "2241 Bryn Mawr Ave", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2021, "Total Visits": 425.0, "Total Visitors": 325.0, "POI_CBG": 421010120001.0, "Median Dwell Time": 6.0, "Total Spend": 1259.0, "Total Transactions": 24.0, "Total Customers": 17.0, "Median Spend per Transaction": 36.25, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-syv", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "2000 Germantown Ave", "LATITUDE": 39.981631, "LONGITUDE": -75.144038, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010156002.0, "Median Dwell Time": null, "Total Spend": 2056.0, "Total Transactions": 119.0, "Total Customers": 115.0, "Median Spend per Transaction": 13.35, "Median Spend per Customer": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144038, 39.981631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-w6k", "Name": "Food & Friends", "Category": "Grocery Stores", "Address": "1933 Spruce St", "LATITUDE": 39.948295, "LONGITUDE": -75.174192, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 155.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 2.0, "Total Spend": 22685.0, "Total Transactions": 1150.0, "Total Customers": 690.0, "Median Spend per Transaction": 15.95, "Median Spend per Customer": 23.04 }, "geometry": { "type": "Point", "coordinates": [ -75.174192, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "Name": "Arch Pharmacy", "Category": "Health and Personal Care Stores", "Address": "933 Arch St", "LATITUDE": 39.953757, "LONGITUDE": -75.15607, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 146.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 3.0, "Total Spend": 1165.0, "Total Transactions": 36.0, "Total Customers": 29.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15607, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-hh5", "Name": "Seulanga", "Category": "Restaurants and Other Eating Places", "Address": "1838 S 18th St", "LATITUDE": 39.927765, "LONGITUDE": -75.175722, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010037011.0, "Median Dwell Time": 9.0, "Total Spend": 113.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.175722, 39.927765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5756 Baltimore Ave # 74", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2021, "Total Visits": 1768.0, "Total Visitors": 1129.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 5.0, "Total Spend": 12514.0, "Total Transactions": 597.0, "Total Customers": 446.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1801 W Hunting Park Ave", "LATITUDE": 40.014555, "LONGITUDE": -75.15728, "DATE_RANGE_START": 2021, "Total Visits": 1186.0, "Total Visitors": 842.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 5.0, "Total Spend": 29368.0, "Total Transactions": 1122.0, "Total Customers": 594.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 30.04 }, "geometry": { "type": "Point", "coordinates": [ -75.15728, 40.014555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "Name": "1 Tippling Place", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2006 Chestnut St", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 43.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 8.0, "Total Spend": 3298.0, "Total Transactions": 62.0, "Total Customers": 60.0, "Median Spend per Transaction": 37.5, "Median Spend per Customer": 39.7 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-xkf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4500 Baltimore Ave", "LATITUDE": 39.94872, "LONGITUDE": -75.21312, "DATE_RANGE_START": 2021, "Total Visits": 1971.0, "Total Visitors": 1229.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 5.0, "Total Spend": 1705.0, "Total Transactions": 76.0, "Total Customers": 60.0, "Median Spend per Transaction": 21.56, "Median Spend per Customer": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.21312, 39.94872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bzf", "Name": "Ramen", "Category": "Restaurants and Other Eating Places", "Address": "4357 Main St", "LATITUDE": 40.025762, "LONGITUDE": -75.22385, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 2.0, "Total Spend": 3917.0, "Total Transactions": 105.0, "Total Customers": 98.0, "Median Spend per Transaction": 36.07, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22385, 40.025762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "Name": "Allegro Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3942 Spruce St", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 98.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 45.0, "Total Spend": 22231.0, "Total Transactions": 1375.0, "Total Customers": 890.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 17.98 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "910 Chestnut St", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2021, "Total Visits": 632.0, "Total Visitors": 451.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 3146.0, "Total Transactions": 308.0, "Total Customers": 232.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "Name": "Engimono Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1811 Fairmount Ave", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2021, "Total Visits": 198.0, "Total Visitors": 110.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 370.0, "Total Spend": 11116.0, "Total Transactions": 267.0, "Total Customers": 217.0, "Median Spend per Transaction": 34.63, "Median Spend per Customer": 44.15 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7520 City Ave", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2021, "Total Visits": 573.0, "Total Visitors": 413.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 3.0, "Total Spend": 10854.0, "Total Transactions": 1411.0, "Total Customers": 778.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 8.57 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-tvz", "Name": "Via Locusta", "Category": "Restaurants and Other Eating Places", "Address": "1723 Locust St", "LATITUDE": 39.949069, "LONGITUDE": -75.170305, "DATE_RANGE_START": 2021, "Total Visits": 1310.0, "Total Visitors": 632.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 263.0, "Total Spend": 12962.0, "Total Transactions": 103.0, "Total Customers": 100.0, "Median Spend per Transaction": 103.0, "Median Spend per Customer": 99.78 }, "geometry": { "type": "Point", "coordinates": [ -75.170305, 39.949069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@63s-dvr-hyv", "Name": "Taste Africa", "Category": "Restaurants and Other Eating Places", "Address": "6518 Woodland Ave", "LATITUDE": 39.925131, "LONGITUDE": -75.234583, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010063001.0, "Median Dwell Time": 26.0, "Total Spend": 60.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.234583, 39.925131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "Name": "Ruby Tuesday", "Category": "Restaurants and Other Eating Places", "Address": "8680 Bartram Ave", "LATITUDE": 39.887819, "LONGITUDE": -75.247004, "DATE_RANGE_START": 2021, "Total Visits": 630.0, "Total Visitors": 582.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 41.0, "Total Spend": 22295.0, "Total Transactions": 425.0, "Total Customers": 363.0, "Median Spend per Transaction": 48.29, "Median Spend per Customer": 51.05 }, "geometry": { "type": "Point", "coordinates": [ -75.247004, 39.887819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-6ff", "Name": "Barra Rossa Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "929 Walnut St", "LATITUDE": 39.948634, "LONGITUDE": -75.157218, "DATE_RANGE_START": 2021, "Total Visits": 1368.0, "Total Visitors": 1115.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 22.0, "Total Spend": 1929.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 116.32, "Median Spend per Customer": 116.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157218, 39.948634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "1037 Chestnut St", "LATITUDE": 39.950371, "LONGITUDE": -75.158373, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 136.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 61.0, "Total Spend": 9414.0, "Total Transactions": 869.0, "Total Customers": 671.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.158373, 39.950371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2550 Welsh Rd", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 234.0, "POI_CBG": 421010347013.0, "Median Dwell Time": 4.0, "Total Spend": 1056.0, "Total Transactions": 88.0, "Total Customers": 86.0, "Median Spend per Transaction": 8.74, "Median Spend per Customer": 9.01 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "Name": "Rosario's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1256 S 15th St Fl 1", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 24.0, "POI_CBG": 421010022002.0, "Median Dwell Time": 1.0, "Total Spend": 270.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 28.15, "Median Spend per Customer": 28.15 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-pvz", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "3680 Aramingo Ave", "LATITUDE": 39.994647, "LONGITUDE": -75.095265, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 107.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 8.0, "Total Spend": 5301.0, "Total Transactions": 270.0, "Total Customers": 222.0, "Median Spend per Transaction": 14.66, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.095265, 39.994647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "Name": "South Square Market", "Category": "Grocery Stores", "Address": "2221 South St", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2021, "Total Visits": 434.0, "Total Visitors": 234.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 5.0, "Total Spend": 73996.0, "Total Transactions": 3031.0, "Total Customers": 1255.0, "Median Spend per Transaction": 17.94, "Median Spend per Customer": 28.28 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "Name": "The Fresh Market", "Category": "Grocery Stores", "Address": "8208 Germantown Ave # 18", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2021, "Total Visits": 699.0, "Total Visitors": 360.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 14.0, "Total Spend": 53198.0, "Total Transactions": 1095.0, "Total Customers": 649.0, "Median Spend per Transaction": 35.35, "Median Spend per Customer": 48.79 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "Name": "Menagerie Coffee", "Category": "Restaurants and Other Eating Places", "Address": "18 S 3rd St", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 27.0, "Total Spend": 10971.0, "Total Transactions": 1251.0, "Total Customers": 866.0, "Median Spend per Transaction": 6.69, "Median Spend per Customer": 8.48 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7607 Ridge Ave", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2021, "Total Visits": 284.0, "Total Visitors": 196.0, "POI_CBG": 421010218002.0, "Median Dwell Time": 2.0, "Total Spend": 1531.0, "Total Transactions": 172.0, "Total Customers": 50.0, "Median Spend per Transaction": 8.38, "Median Spend per Customer": 21.39 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7236 Germantown Ave # 40", "LATITUDE": 40.060844, "LONGITUDE": -75.192031, "DATE_RANGE_START": 2021, "Total Visits": 776.0, "Total Visitors": 537.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 4.0, "Total Spend": 81396.0, "Total Transactions": 9370.0, "Total Customers": 2709.0, "Median Spend per Transaction": 6.27, "Median Spend per Customer": 12.03 }, "geometry": { "type": "Point", "coordinates": [ -75.192031, 40.060844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9910 Frankford Ave Ste 250", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2021, "Total Visits": 580.0, "Total Visitors": 351.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 11.0, "Total Spend": 11567.0, "Total Transactions": 494.0, "Total Customers": 296.0, "Median Spend per Transaction": 15.96, "Median Spend per Customer": 24.47 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "Name": "China City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6612 Castor Ave", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 50.0, "POI_CBG": 421010311011.0, "Median Dwell Time": 695.0, "Total Spend": 786.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 22.75, "Median Spend per Customer": 24.13 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3750 W Girard Ave", "LATITUDE": 39.974361, "LONGITUDE": -75.199089, "DATE_RANGE_START": 2021, "Total Visits": 1764.0, "Total Visitors": 1473.0, "POI_CBG": 421010110001.0, "Median Dwell Time": 4.0, "Total Spend": 1668.0, "Total Transactions": 72.0, "Total Customers": 55.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.03 }, "geometry": { "type": "Point", "coordinates": [ -75.199089, 39.974361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-2ff", "Name": "Wyoming Mini market", "Category": "Other Miscellaneous Store Retailers", "Address": "555 E Wyoming Ave", "LATITUDE": 40.020508, "LONGITUDE": -75.11429, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 57.0, "POI_CBG": 421010289022.0, "Median Dwell Time": 2.0, "Total Spend": 548.0, "Total Transactions": 67.0, "Total Customers": 26.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.11429, 40.020508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4813 Tacony St # 25", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2021, "Total Visits": 1625.0, "Total Visitors": 1279.0, "POI_CBG": 421010380002.0, "Median Dwell Time": 4.0, "Total Spend": 24213.0, "Total Transactions": 979.0, "Total Customers": 652.0, "Median Spend per Transaction": 20.34, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w49", "Name": "Sam Ash Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1887 Franklin Mills Cir", "LATITUDE": 40.087105, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 165.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 8179.0, "Total Transactions": 76.0, "Total Customers": 64.0, "Median Spend per Transaction": 31.99, "Median Spend per Customer": 39.93 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1434 Frankford Ave", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2021, "Total Visits": 905.0, "Total Visitors": 387.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 81.0, "Total Spend": 17724.0, "Total Transactions": 492.0, "Total Customers": 451.0, "Median Spend per Transaction": 26.01, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-s89", "Name": "Gyro Hut Halal Food", "Category": "Restaurants and Other Eating Places", "Address": "2699 S 4th St", "LATITUDE": 39.915175, "LONGITUDE": -75.155379, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 69.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 3.0, "Total Spend": 119.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155379, 39.915175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "Name": "Frame Fatale", "Category": "Home Furnishings Stores", "Address": "1813 E Passyunk Ave", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2021, "Total Visits": 826.0, "Total Visitors": 475.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 197.0, "Total Spend": 2042.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 260.73, "Median Spend per Customer": 260.73 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "Name": "Adobe Cafe", "Category": "Restaurants and Other Eating Places", "Address": "736 S 8th St", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 24.0, "Total Spend": 8941.0, "Total Transactions": 136.0, "Total Customers": 115.0, "Median Spend per Transaction": 52.8, "Median Spend per Customer": 60.15 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "Name": "Thunderbird Salvage", "Category": "Used Merchandise Stores", "Address": "2441 Frankford Ave", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 1.0, "Total Spend": 11320.0, "Total Transactions": 363.0, "Total Customers": 305.0, "Median Spend per Transaction": 19.06, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgg-yvz", "Name": "Favors", "Category": "Restaurants and Other Eating Places", "Address": "2867 N Taylor St", "LATITUDE": 39.9991, "LONGITUDE": -75.171017, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 19.0, "POI_CBG": 421010172024.0, "Median Dwell Time": 1117.0, "Total Spend": 484.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 18.57 }, "geometry": { "type": "Point", "coordinates": [ -75.171017, 39.9991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-pmd-skf", "Name": "Social House", "Category": "Restaurants and Other Eating Places", "Address": "2100 South St", "LATITUDE": 39.944966, "LONGITUDE": -75.177113, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010013001.0, "Median Dwell Time": null, "Total Spend": 1304.0, "Total Transactions": 184.0, "Total Customers": 122.0, "Median Spend per Transaction": 5.86, "Median Spend per Customer": 7.69 }, "geometry": { "type": "Point", "coordinates": [ -75.177113, 39.944966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-yqf", "Name": "Shiao Lan Kung", "Category": "Restaurants and Other Eating Places", "Address": "930 Race St", "LATITUDE": 39.955257, "LONGITUDE": -75.155387, "DATE_RANGE_START": 2021, "Total Visits": 10434.0, "Total Visitors": 6952.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 26.0, "Total Spend": 711.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 42.43, "Median Spend per Customer": 48.04 }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.955257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "Name": "Southgate", "Category": "Restaurants and Other Eating Places", "Address": "1801 Lombard St", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 279.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 5.0, "Total Spend": 3477.0, "Total Transactions": 55.0, "Total Customers": 53.0, "Median Spend per Transaction": 55.36, "Median Spend per Customer": 68.54 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-234@628-pmf-jd9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste F1", "LATITUDE": 39.95159, "LONGITUDE": -75.168235, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 99.0, "Total Spend": 3467.0, "Total Transactions": 346.0, "Total Customers": 270.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168235, 39.95159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "Name": "The Ranchito", "Category": "Restaurants and Other Eating Places", "Address": "4745 Rising Sun Ave", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 53.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 5.0, "Total Spend": 2426.0, "Total Transactions": 95.0, "Total Customers": 81.0, "Median Spend per Transaction": 18.5, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914447, "LONGITUDE": -75.156842, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 93.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 17.0, "Total Spend": 1363.0, "Total Transactions": 112.0, "Total Customers": 88.0, "Median Spend per Transaction": 11.78, "Median Spend per Customer": 11.78 }, "geometry": { "type": "Point", "coordinates": [ -75.156842, 39.914447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "Name": "Einstein Brothers", "Category": "Restaurants and Other Eating Places", "Address": "5600 City Ave", "LATITUDE": 39.994394, "LONGITUDE": -75.238422, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 105.0, "POI_CBG": 421010117001.0, "Median Dwell Time": 20.0, "Total Spend": 905.0, "Total Transactions": 45.0, "Total Customers": 41.0, "Median Spend per Transaction": 16.1, "Median Spend per Customer": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.238422, 39.994394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22m@63s-dw4-rzf", "Name": "Currito", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895176, "LONGITUDE": -75.227955, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 62.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.89, "Median Spend per Customer": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.227955, 39.895176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2145 W Allegheny Ave", "LATITUDE": 40.003544, "LONGITUDE": -75.165622, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 98.0, "POI_CBG": 421010202001.0, "Median Dwell Time": 2.0, "Total Spend": 2982.0, "Total Transactions": 439.0, "Total Customers": 313.0, "Median Spend per Transaction": 5.61, "Median Spend per Customer": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.165622, 40.003544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7104 Ridge Ave", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 224.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 2.0, "Total Spend": 18654.0, "Total Transactions": 2451.0, "Total Customers": 1122.0, "Median Spend per Transaction": 6.34, "Median Spend per Customer": 10.58 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6017 N Broad St", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2021, "Total Visits": 453.0, "Total Visitors": 310.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 2.0, "Total Spend": 16751.0, "Total Transactions": 2227.0, "Total Customers": 1055.0, "Median Spend per Transaction": 6.28, "Median Spend per Customer": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-8n5", "Name": "Federal Donuts North", "Category": "Restaurants and Other Eating Places", "Address": "701 N 7th St", "LATITUDE": 39.964219, "LONGITUDE": -75.14909, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 100.0, "POI_CBG": 421010131001.0, "Median Dwell Time": 15.0, "Total Spend": 3731.0, "Total Transactions": 272.0, "Total Customers": 246.0, "Median Spend per Transaction": 10.95, "Median Spend per Customer": 12.11 }, "geometry": { "type": "Point", "coordinates": [ -75.14909, 39.964219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "Name": "Brauhaus Schmitz", "Category": "Restaurants and Other Eating Places", "Address": "718 South St", "LATITUDE": 39.942007, "LONGITUDE": -75.154702, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 205.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 62.0, "Total Spend": 9140.0, "Total Transactions": 129.0, "Total Customers": 107.0, "Median Spend per Transaction": 59.72, "Median Spend per Customer": 65.28 }, "geometry": { "type": "Point", "coordinates": [ -75.154702, 39.942007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23b@63s-dw4-rzf", "Name": "Bar Symon", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave Level 2 Terminal D Gate D9", "LATITUDE": 39.87555, "LONGITUDE": -75.238035, "DATE_RANGE_START": 2021, "Total Visits": 324922.0, "Total Visitors": 185623.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 66.0, "Total Spend": 192.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 18.74, "Median Spend per Customer": 22.36 }, "geometry": { "type": "Point", "coordinates": [ -75.238035, 39.87555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pm9-wc5", "Name": "Rebel Taco", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949731, "LONGITUDE": -75.148051, "DATE_RANGE_START": 2021, "Total Visits": 4597.0, "Total Visitors": 3914.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 30.0, "Total Spend": 258.0, "Total Transactions": 24.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.93, "Median Spend per Customer": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.148051, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-4y9", "Name": "Vino Volo", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8500 Essington Ave # 8800", "LATITUDE": 39.875903, "LONGITUDE": -75.243029, "DATE_RANGE_START": 2021, "Total Visits": 324922.0, "Total Visitors": 185623.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 66.0, "Total Spend": 432.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 55.2, "Median Spend per Customer": 55.2 }, "geometry": { "type": "Point", "coordinates": [ -75.243029, 39.875903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-y9z", "Name": "Alyan's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "603 S 4th St", "LATITUDE": 39.941428, "LONGITUDE": -75.149062, "DATE_RANGE_START": 2021, "Total Visits": 1158.0, "Total Visitors": 833.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 105.0, "Total Spend": 1928.0, "Total Transactions": 74.0, "Total Customers": 62.0, "Median Spend per Transaction": 27.3, "Median Spend per Customer": 29.09 }, "geometry": { "type": "Point", "coordinates": [ -75.149062, 39.941428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "Name": "The Plough & the Stars", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2021, "Total Visits": 411.0, "Total Visitors": 289.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 70.0, "Total Spend": 8033.0, "Total Transactions": 146.0, "Total Customers": 129.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 45.96 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "327 Spring Garden St", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 103.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 5.0, "Total Spend": 10307.0, "Total Transactions": 716.0, "Total Customers": 468.0, "Median Spend per Transaction": 10.42, "Median Spend per Customer": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7700 Island Ave", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2021, "Total Visits": 356.0, "Total Visitors": 296.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 2.0, "Total Spend": 20986.0, "Total Transactions": 1847.0, "Total Customers": 1234.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 11.71 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pjf-zvf", "Name": "Chestnut Hill Coffee Company", "Category": "Restaurants and Other Eating Places", "Address": "8620 Germantown Ave", "LATITUDE": 40.076935, "LONGITUDE": -75.208429, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 189.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 69.0, "Total Spend": 356.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 55.99, "Median Spend per Customer": 55.99 }, "geometry": { "type": "Point", "coordinates": [ -75.208429, 40.076935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1801 Spruce St", "LATITUDE": 39.947944, "LONGITUDE": -75.171288, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 112.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 2.0, "Total Spend": 9246.0, "Total Transactions": 1344.0, "Total Customers": 728.0, "Median Spend per Transaction": 5.35, "Median Spend per Customer": 8.86 }, "geometry": { "type": "Point", "coordinates": [ -75.171288, 39.947944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St", "LATITUDE": 40.024672, "LONGITUDE": -75.147508, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 91.0, "POI_CBG": 421010283003.0, "Median Dwell Time": 3.0, "Total Spend": 4256.0, "Total Transactions": 594.0, "Total Customers": 329.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 8.04 }, "geometry": { "type": "Point", "coordinates": [ -75.147508, 40.024672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm4-ckf", "Name": "A Plus Mini Market", "Category": "Grocery Stores", "Address": "2101 S 17th St", "LATITUDE": 39.924818, "LONGITUDE": -75.174415, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 100.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 2.0, "Total Spend": 256.0, "Total Transactions": 55.0, "Total Customers": 24.0, "Median Spend per Transaction": 3.12, "Median Spend per Customer": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174415, 39.924818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "4371 Richmond St", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2021, "Total Visits": 1563.0, "Total Visitors": 654.0, "POI_CBG": 421010183001.0, "Median Dwell Time": 4.0, "Total Spend": 24984.0, "Total Transactions": 2427.0, "Total Customers": 785.0, "Median Spend per Transaction": 9.14, "Median Spend per Customer": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pg8-z2k", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1701 N 33rd St", "LATITUDE": 39.982802, "LONGITUDE": -75.187818, "DATE_RANGE_START": 2021, "Total Visits": 1699.0, "Total Visitors": 1196.0, "POI_CBG": 421010149006.0, "Median Dwell Time": 5.0, "Total Spend": 214.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 20.01 }, "geometry": { "type": "Point", "coordinates": [ -75.187818, 39.982802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pfv-649", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6555 Greene St", "LATITUDE": 40.043396, "LONGITUDE": -75.190646, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 148.0, "POI_CBG": 421010237001.0, "Median Dwell Time": 5.0, "Total Spend": 2713.0, "Total Transactions": 191.0, "Total Customers": 107.0, "Median Spend per Transaction": 7.45, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.190646, 40.043396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3141 Frankford Ave Spc 41", "LATITUDE": 39.992401, "LONGITUDE": -75.110955, "DATE_RANGE_START": 2021, "Total Visits": 363.0, "Total Visitors": 177.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 24.0, "Total Spend": 115.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 5.24, "Median Spend per Customer": 5.24 }, "geometry": { "type": "Point", "coordinates": [ -75.110955, 39.992401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1812 W Cheltenham Ave", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 258.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 7.0, "Total Spend": 850.0, "Total Transactions": 146.0, "Total Customers": 50.0, "Median Spend per Transaction": 4.16, "Median Spend per Customer": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qcq", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.039147, "LONGITUDE": -75.118804, "DATE_RANGE_START": 2021, "Total Visits": 2811.0, "Total Visitors": 1499.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 20.0, "Total Spend": 49.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.29, "Median Spend per Customer": 10.29 }, "geometry": { "type": "Point", "coordinates": [ -75.118804, 40.039147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phq-k75", "Name": "Rodriguez Mini Market", "Category": "Grocery Stores", "Address": "6731 Ogontz Ave", "LATITUDE": 40.057192, "LONGITUDE": -75.148867, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 177.0, "POI_CBG": 421010267007.0, "Median Dwell Time": 4.0, "Total Spend": 822.0, "Total Transactions": 88.0, "Total Customers": 45.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 7.28 }, "geometry": { "type": "Point", "coordinates": [ -75.148867, 40.057192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1919 Market St Ste 150", "LATITUDE": 39.953745, "LONGITUDE": -75.172854, "DATE_RANGE_START": 2021, "Total Visits": 2179.0, "Total Visitors": 1432.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 35.0, "Total Spend": 12366.0, "Total Transactions": 752.0, "Total Customers": 420.0, "Median Spend per Transaction": 9.09, "Median Spend per Customer": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.172854, 39.953745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5690 Rising Sun Ave", "LATITUDE": 40.039629, "LONGITUDE": -75.109938, "DATE_RANGE_START": 2021, "Total Visits": 580.0, "Total Visitors": 449.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 3.0, "Total Spend": 12800.0, "Total Transactions": 482.0, "Total Customers": 365.0, "Median Spend per Transaction": 25.57, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109938, 40.039629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pm4-ckf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2101 S 17th St", "LATITUDE": 39.924823, "LONGITUDE": -75.17424, "DATE_RANGE_START": 2021, "Total Visits": 993.0, "Total Visitors": 778.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 4.0, "Total Spend": 735.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 26.55 }, "geometry": { "type": "Point", "coordinates": [ -75.17424, 39.924823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3854 Morrell Ave", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2021, "Total Visits": 508.0, "Total Visitors": 387.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 6.0, "Total Spend": 874.0, "Total Transactions": 55.0, "Total Customers": 41.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pfx-kzz", "Name": "Haggerty Deli", "Category": "Grocery Stores", "Address": "4528 Wilde St", "LATITUDE": 40.029098, "LONGITUDE": -75.225579, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010214004.0, "Median Dwell Time": null, "Total Spend": 2675.0, "Total Transactions": 246.0, "Total Customers": 91.0, "Median Spend per Transaction": 10.06, "Median Spend per Customer": 15.74 }, "geometry": { "type": "Point", "coordinates": [ -75.225579, 40.029098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "Name": "Taco Loco", "Category": "Restaurants and Other Eating Places", "Address": "400 Washington Ave", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 204.0, "Total Spend": 3367.0, "Total Transactions": 189.0, "Total Customers": 153.0, "Median Spend per Transaction": 13.93, "Median Spend per Customer": 18.41 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-hbk", "Name": "Fox Street Auto", "Category": "Automobile Dealers", "Address": "2633 W Hunting Park Ave", "LATITUDE": 40.008217, "LONGITUDE": -75.172147, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 228.0, "Total Spend": 14038.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 2941.0, "Median Spend per Customer": 2941.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172147, 40.008217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-75z", "Name": "North Third", "Category": "Restaurants and Other Eating Places", "Address": "801 N 3rd St", "LATITUDE": 39.963481, "LONGITUDE": -75.142676, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 68.0, "Total Spend": 1216.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 59.72, "Median Spend per Customer": 59.72 }, "geometry": { "type": "Point", "coordinates": [ -75.142676, 39.963481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "150 N Broad St", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2021, "Total Visits": 484.0, "Total Visitors": 394.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 7.0, "Total Spend": 2215.0, "Total Transactions": 141.0, "Total Customers": 74.0, "Median Spend per Transaction": 9.08, "Median Spend per Customer": 7.58 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-975", "Name": "Avril 50", "Category": "Other Miscellaneous Store Retailers", "Address": "3406 Sansom St", "LATITUDE": 39.953493, "LONGITUDE": -75.192528, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 42.0, "Total Spend": 1538.0, "Total Transactions": 60.0, "Total Customers": 50.0, "Median Spend per Transaction": 20.94, "Median Spend per Customer": 20.94 }, "geometry": { "type": "Point", "coordinates": [ -75.192528, 39.953493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-wtv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7720 Bustleton Ave", "LATITUDE": 40.054812, "LONGITUDE": -75.054903, "DATE_RANGE_START": 2021, "Total Visits": 442.0, "Total Visitors": 348.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 8.0, "Total Spend": 4332.0, "Total Transactions": 251.0, "Total Customers": 119.0, "Median Spend per Transaction": 8.06, "Median Spend per Customer": 26.54 }, "geometry": { "type": "Point", "coordinates": [ -75.054903, 40.054812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-j5f", "Name": "Indochino", "Category": "Clothing Stores", "Address": "1718 Walnut St", "LATITUDE": 39.949824, "LONGITUDE": -75.170127, "DATE_RANGE_START": 2021, "Total Visits": 1098.0, "Total Visitors": 842.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 22.0, "Total Spend": 2255.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 438.0, "Median Spend per Customer": 438.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170127, 39.949824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-6x5", "Name": "Bonobos", "Category": "Clothing Stores", "Address": "1519 Walnut St", "LATITUDE": 39.949913, "LONGITUDE": -75.166858, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 224.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 21.0, "Total Spend": 6980.0, "Total Transactions": 38.0, "Total Customers": 36.0, "Median Spend per Transaction": 99.0, "Median Spend per Customer": 158.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166858, 39.949913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "Name": "Burlington", "Category": "Clothing Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051298, "LONGITUDE": -75.065323, "DATE_RANGE_START": 2021, "Total Visits": 2802.0, "Total Visitors": 2021.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 29.0, "Total Spend": 6390.0, "Total Transactions": 126.0, "Total Customers": 103.0, "Median Spend per Transaction": 39.41, "Median Spend per Customer": 46.96 }, "geometry": { "type": "Point", "coordinates": [ -75.065323, 40.051298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "Name": "Le Meridien", "Category": "Traveler Accommodation", "Address": "1421 Arch St", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2021, "Total Visits": 1079.0, "Total Visitors": 554.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 441.0, "Total Spend": 32920.0, "Total Transactions": 160.0, "Total Customers": 124.0, "Median Spend per Transaction": 179.21, "Median Spend per Customer": 211.38 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "Name": "Quaker Diner", "Category": "Restaurants and Other Eating Places", "Address": "7241 Rising Sun Ave", "LATITUDE": 40.060542, "LONGITUDE": -75.084471, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 119.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 21.0, "Total Spend": 5430.0, "Total Transactions": 181.0, "Total Customers": 160.0, "Median Spend per Transaction": 25.74, "Median Spend per Customer": 29.57 }, "geometry": { "type": "Point", "coordinates": [ -75.084471, 40.060542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xkf", "Name": "Lee How Fook", "Category": "Restaurants and Other Eating Places", "Address": "219 N 11th St", "LATITUDE": 39.956286, "LONGITUDE": -75.157078, "DATE_RANGE_START": 2021, "Total Visits": 494.0, "Total Visitors": 344.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 63.0, "Total Spend": 1003.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 50.74, "Median Spend per Customer": 50.74 }, "geometry": { "type": "Point", "coordinates": [ -75.157078, 39.956286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "Name": "Bleu Sushi", "Category": "Restaurants and Other Eating Places", "Address": "262 S 10th St", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 124.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 68.0, "Total Spend": 3565.0, "Total Transactions": 57.0, "Total Customers": 57.0, "Median Spend per Transaction": 51.58, "Median Spend per Customer": 51.58 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8f-djv", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "4710 Oxford Ave", "LATITUDE": 40.017133, "LONGITUDE": -75.084023, "DATE_RANGE_START": 2021, "Total Visits": 430.0, "Total Visitors": 282.0, "POI_CBG": 421010300006.0, "Median Dwell Time": 7.0, "Total Spend": 1557.0, "Total Transactions": 86.0, "Total Customers": 74.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.084023, 40.017133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "Name": "Mustard Greens Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "622 S 2nd St", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 81.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 13.0, "Total Spend": 4722.0, "Total Transactions": 48.0, "Total Customers": 41.0, "Median Spend per Transaction": 81.8, "Median Spend per Customer": 115.04 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pmb-cwk", "Name": "Sushi Poke", "Category": "Restaurants and Other Eating Places", "Address": "1310 South St", "LATITUDE": 39.943263, "LONGITUDE": -75.163741, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 210.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 1077.0, "Total Spend": 2227.0, "Total Transactions": 98.0, "Total Customers": 81.0, "Median Spend per Transaction": 15.93, "Median Spend per Customer": 19.15 }, "geometry": { "type": "Point", "coordinates": [ -75.163741, 39.943263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1675 S Columbus Blvd", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2021, "Total Visits": 8112.0, "Total Visitors": 5668.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 31.0, "Total Spend": 3806.0, "Total Transactions": 487.0, "Total Customers": 298.0, "Median Spend per Transaction": 7.21, "Median Spend per Customer": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-4sq", "Name": "Potbelly Sandwich Works", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave", "LATITUDE": 39.979564, "LONGITUDE": -75.153441, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 76.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 834.0, "Total Spend": 7852.0, "Total Transactions": 570.0, "Total Customers": 384.0, "Median Spend per Transaction": 12.28, "Median Spend per Customer": 14.76 }, "geometry": { "type": "Point", "coordinates": [ -75.153441, 39.979564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-djv", "Name": "Pastificio", "Category": "Restaurants and Other Eating Places", "Address": "1528 Packer Ave", "LATITUDE": 39.911498, "LONGITUDE": -75.174639, "DATE_RANGE_START": 2021, "Total Visits": 2635.0, "Total Visitors": 2208.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 52.0, "Total Spend": 11010.0, "Total Transactions": 439.0, "Total Customers": 325.0, "Median Spend per Transaction": 20.18, "Median Spend per Customer": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.174639, 39.911498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7601 Lindbergh Blvd", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2021, "Total Visits": 754.0, "Total Visitors": 504.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 5.0, "Total Spend": 8261.0, "Total Transactions": 1000.0, "Total Customers": 551.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pnw-nh5", "Name": "Johnny Brenda's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1201 Frankford Ave", "LATITUDE": 39.969072, "LONGITUDE": -75.134263, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 86.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 34.0, "Total Spend": 1808.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 49.33, "Median Spend per Customer": 49.33 }, "geometry": { "type": "Point", "coordinates": [ -75.134263, 39.969072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "Name": "Shing Kee", "Category": "Restaurants and Other Eating Places", "Address": "600 Washington Ave Ste 18A", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 107.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 40.0, "Total Spend": 1379.0, "Total Transactions": 38.0, "Total Customers": 31.0, "Median Spend per Transaction": 29.71, "Median Spend per Customer": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj6-8y9", "Name": "El Rinconcito", "Category": "Restaurants and Other Eating Places", "Address": "734 Adams Ave", "LATITUDE": 40.031782, "LONGITUDE": -75.107117, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 105.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 2.0, "Total Spend": 331.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 14.56 }, "geometry": { "type": "Point", "coordinates": [ -75.107117, 40.031782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-4sq", "Name": "NOTO Philadelphia", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1209 Vine St", "LATITUDE": 39.957795, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 158.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 3.0, "Total Spend": 6704.0, "Total Transactions": 91.0, "Total Customers": 64.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.957795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "Name": "Maggiano's Little Italy", "Category": "Restaurants and Other Eating Places", "Address": "1201 Filbert St", "LATITUDE": 39.953256, "LONGITUDE": -75.160263, "DATE_RANGE_START": 2021, "Total Visits": 754.0, "Total Visitors": 594.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 55.0, "Total Spend": 42930.0, "Total Transactions": 573.0, "Total Customers": 482.0, "Median Spend per Transaction": 37.15, "Median Spend per Customer": 48.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160263, 39.953256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6391 Oxford Ave", "LATITUDE": 40.045014, "LONGITUDE": -75.08777, "DATE_RANGE_START": 2021, "Total Visits": 508.0, "Total Visitors": 344.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 2.0, "Total Spend": 16752.0, "Total Transactions": 2057.0, "Total Customers": 874.0, "Median Spend per Transaction": 6.96, "Median Spend per Customer": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -75.08777, 40.045014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2340 W Oregon Ave", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2021, "Total Visits": 499.0, "Total Visitors": 411.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 1127.0, "Total Transactions": 69.0, "Total Customers": 53.0, "Median Spend per Transaction": 12.94, "Median Spend per Customer": 15.98 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "1200 N Broad St", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 143.0, "POI_CBG": 421010140001.0, "Median Dwell Time": 4.0, "Total Spend": 482.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 13.02, "Median Spend per Customer": 13.02 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-vj9", "Name": "Baker Street Bread Co", "Category": "Restaurants and Other Eating Places", "Address": "8009 Germantown Ave", "LATITUDE": 40.071164, "LONGITUDE": -75.200774, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 117.0, "POI_CBG": 421010257003.0, "Median Dwell Time": 4.0, "Total Spend": 42.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.200774, 40.071164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2100 Market St", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 215.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 2.0, "Total Spend": 6702.0, "Total Transactions": 1119.0, "Total Customers": 446.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 7.01 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "2946 Island Ave", "LATITUDE": 39.899825, "LONGITUDE": -75.241379, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 255.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 15.0, "Total Spend": 315.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.241379, 39.899825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "Name": "Pizza Boli's", "Category": "Restaurants and Other Eating Places", "Address": "3883 Glendale St", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 10.0, "POI_CBG": 421010190001.0, "Median Dwell Time": 443.0, "Total Spend": 251.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 13.09, "Median Spend per Customer": 14.17 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "1527 Chestnut St", "LATITUDE": 39.951369, "LONGITUDE": -75.166562, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 234.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 12.0, "Total Spend": 10745.0, "Total Transactions": 644.0, "Total Customers": 525.0, "Median Spend per Transaction": 15.16, "Median Spend per Customer": 17.32 }, "geometry": { "type": "Point", "coordinates": [ -75.166562, 39.951369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p74-cyv", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "8016 Frankford Ave", "LATITUDE": 40.041879, "LONGITUDE": -75.027519, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010331022.0, "Median Dwell Time": 13.0, "Total Spend": 340.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 15.34, "Median Spend per Customer": 15.34 }, "geometry": { "type": "Point", "coordinates": [ -75.027519, 40.041879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-w49", "Name": "The Royal Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "272 S 20th St", "LATITUDE": 39.948373, "LONGITUDE": -75.174503, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 21.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 136.0, "Total Spend": 1153.0, "Total Transactions": 24.0, "Total Customers": 17.0, "Median Spend per Transaction": 34.06, "Median Spend per Customer": 35.3 }, "geometry": { "type": "Point", "coordinates": [ -75.174503, 39.948373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-rhq", "Name": "Moonshine Philly", "Category": "Restaurants and Other Eating Places", "Address": "1825 E Moyamensing Ave", "LATITUDE": 39.925012, "LONGITUDE": -75.151601, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 31.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 60.0, "Total Spend": 11763.0, "Total Transactions": 184.0, "Total Customers": 158.0, "Median Spend per Transaction": 56.37, "Median Spend per Customer": 62.52 }, "geometry": { "type": "Point", "coordinates": [ -75.151601, 39.925012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "3212 N Broad St", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 38.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 1.0, "Total Spend": 1247.0, "Total Transactions": 50.0, "Total Customers": 45.0, "Median Spend per Transaction": 13.9, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22g@628-pmb-92k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "901 Market St", "LATITUDE": 39.951633, "LONGITUDE": -75.155742, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 594.0, "Total Transactions": 100.0, "Total Customers": 67.0, "Median Spend per Transaction": 5.3, "Median Spend per Customer": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.155742, 39.951633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-224@628-pmb-yd9", "Name": "Tiger Sugar", "Category": "Restaurants and Other Eating Places", "Address": "122 N 10th St", "LATITUDE": 39.954258, "LONGITUDE": -75.156401, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 234.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 12.0, "Total Spend": 5750.0, "Total Transactions": 513.0, "Total Customers": 425.0, "Median Spend per Transaction": 7.49, "Median Spend per Customer": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.156401, 39.954258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-2zf", "Name": "Taco Riendo", "Category": "Restaurants and Other Eating Places", "Address": "1301 N 5th St", "LATITUDE": 39.971515, "LONGITUDE": -75.144515, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 17.0, "POI_CBG": 421010144001.0, "Median Dwell Time": 1.0, "Total Spend": 439.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 91.98, "Median Spend per Customer": 91.98 }, "geometry": { "type": "Point", "coordinates": [ -75.144515, 39.971515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1100 Tasker St", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 1.0, "Total Spend": 9953.0, "Total Transactions": 874.0, "Total Customers": 597.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pgd-v75", "Name": "7P Mini Market", "Category": "Grocery Stores", "Address": "641 N 39th St", "LATITUDE": 39.964658, "LONGITUDE": -75.199734, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 38.0, "POI_CBG": 421010108005.0, "Median Dwell Time": 5.0, "Total Spend": 105.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 5.93, "Median Spend per Customer": 6.14 }, "geometry": { "type": "Point", "coordinates": [ -75.199734, 39.964658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-yd9", "Name": "C & R Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "1600 Washington Ave", "LATITUDE": 39.938173, "LONGITUDE": -75.170563, "DATE_RANGE_START": 2021, "Total Visits": 442.0, "Total Visitors": 277.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 15.0, "Total Spend": 3367.0, "Total Transactions": 29.0, "Total Customers": 17.0, "Median Spend per Transaction": 73.57, "Median Spend per Customer": 170.64 }, "geometry": { "type": "Point", "coordinates": [ -75.170563, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "Name": "Hong Kong Supermarket", "Category": "Grocery Stores", "Address": "571 Adams Ave Ste 4", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2021, "Total Visits": 716.0, "Total Visitors": 566.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 13.0, "Total Spend": 3738.0, "Total Transactions": 74.0, "Total Customers": 55.0, "Median Spend per Transaction": 39.97, "Median Spend per Customer": 59.72 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-6x5", "Name": "Su Xing House", "Category": "Restaurants and Other Eating Places", "Address": "1508 Sansom St", "LATITUDE": 39.950249, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 11.0, "Total Spend": 5502.0, "Total Transactions": 141.0, "Total Customers": 134.0, "Median Spend per Transaction": 31.87, "Median Spend per Customer": 32.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2310 W Oregon Ave", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2021, "Total Visits": 1057.0, "Total Visitors": 637.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 7.0, "Total Spend": 10365.0, "Total Transactions": 625.0, "Total Customers": 372.0, "Median Spend per Transaction": 10.43, "Median Spend per Customer": 18.93 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "Name": "Kiehl's", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 212.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 8083.0, "Total Transactions": 126.0, "Total Customers": 117.0, "Median Spend per Transaction": 47.52, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7w-pvz", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "7300 Roosevelt Blvd", "LATITUDE": 40.044968, "LONGITUDE": -75.054721, "DATE_RANGE_START": 2021, "Total Visits": 372.0, "Total Visitors": 289.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 3.0, "Total Spend": 4517.0, "Total Transactions": 224.0, "Total Customers": 169.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054721, 40.044968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-vxq", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "7300 Algon Ave", "LATITUDE": 40.055747, "LONGITUDE": -75.073256, "DATE_RANGE_START": 2021, "Total Visits": 351.0, "Total Visitors": 232.0, "POI_CBG": 421010338002.0, "Median Dwell Time": 21.0, "Total Spend": 621.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073256, 40.055747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfv-94v", "Name": "Big Blue Marble Bookstore", "Category": "Book Stores and News Dealers", "Address": "551 Carpenter Ln", "LATITUDE": 40.046676, "LONGITUDE": -75.195832, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 8.0, "Total Spend": 264.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 55.31, "Median Spend per Customer": 55.31 }, "geometry": { "type": "Point", "coordinates": [ -75.195832, 40.046676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pm9-tjv", "Name": "Eden Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "800 Chestnut St", "LATITUDE": 39.949548, "LONGITUDE": -75.154292, "DATE_RANGE_START": 2021, "Total Visits": 1745.0, "Total Visitors": 1394.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 1775.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 209.0, "Median Spend per Customer": 209.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154292, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "Name": "Roses", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "501 Adams Ave", "LATITUDE": 40.039098, "LONGITUDE": -75.107749, "DATE_RANGE_START": 2021, "Total Visits": 668.0, "Total Visitors": 516.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 15.0, "Total Spend": 30996.0, "Total Transactions": 702.0, "Total Customers": 539.0, "Median Spend per Transaction": 31.76, "Median Spend per Customer": 38.57 }, "geometry": { "type": "Point", "coordinates": [ -75.107749, 40.039098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2524 Aramingo Ave", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 93.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 2.0, "Total Spend": 17340.0, "Total Transactions": 370.0, "Total Customers": 303.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "Name": "Two Brothers", "Category": "Grocery Stores", "Address": "5400 Willows Ave", "LATITUDE": 39.943904, "LONGITUDE": -75.228136, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 21.0, "POI_CBG": 421010071024.0, "Median Dwell Time": 78.0, "Total Spend": 1001.0, "Total Transactions": 69.0, "Total Customers": 48.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.74 }, "geometry": { "type": "Point", "coordinates": [ -75.228136, 39.943904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3440 Market St", "LATITUDE": 39.955622, "LONGITUDE": -75.192214, "DATE_RANGE_START": 2021, "Total Visits": 2112.0, "Total Visitors": 1391.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 73.0, "Total Spend": 1499.0, "Total Transactions": 184.0, "Total Customers": 72.0, "Median Spend per Transaction": 6.57, "Median Spend per Customer": 11.97 }, "geometry": { "type": "Point", "coordinates": [ -75.192214, 39.955622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-v4v", "Name": "Food Point Deli", "Category": "Grocery Stores", "Address": "1711 S Broad St", "LATITUDE": 39.928702, "LONGITUDE": -75.168281, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 117.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 667.0, "Total Spend": 792.0, "Total Transactions": 41.0, "Total Customers": 21.0, "Median Spend per Transaction": 20.89, "Median Spend per Customer": 22.42 }, "geometry": { "type": "Point", "coordinates": [ -75.168281, 39.928702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2000 Hamilton St", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 200.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 5.0, "Total Spend": 86464.0, "Total Transactions": 7845.0, "Total Customers": 3778.0, "Median Spend per Transaction": 9.33, "Median Spend per Customer": 12.08 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-92k", "Name": "Beef Jerky Outlet", "Category": "Specialty Food Stores", "Address": "901 Market St Unit C100", "LATITUDE": 39.951616, "LONGITUDE": -75.155729, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 1425.0, "Total Transactions": 91.0, "Total Customers": 84.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155729, 39.951616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7v-f2k", "Name": "Bob's Discount Furniture", "Category": "Furniture Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051318, "LONGITUDE": -75.065293, "DATE_RANGE_START": 2021, "Total Visits": 2857.0, "Total Visitors": 2067.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 29.0, "Total Spend": 9796.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 1310.4, "Median Spend per Customer": 1310.4 }, "geometry": { "type": "Point", "coordinates": [ -75.065293, 40.051318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-r49", "Name": "IGA", "Category": "Grocery Stores", "Address": "2497 Aramingo Ave", "LATITUDE": 39.975356, "LONGITUDE": -75.119618, "DATE_RANGE_START": 2021, "Total Visits": 1582.0, "Total Visitors": 723.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 13.0, "Total Spend": 1927.0, "Total Transactions": 57.0, "Total Customers": 43.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 35.13 }, "geometry": { "type": "Point", "coordinates": [ -75.119618, 39.975356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "Name": "Brewer's Outlet", "Category": "Beer, Wine, and Liquor Stores", "Address": "309 S 48th St", "LATITUDE": 39.953078, "LONGITUDE": -75.217954, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 8.0, "Total Spend": 15391.0, "Total Transactions": 401.0, "Total Customers": 329.0, "Median Spend per Transaction": 33.04, "Median Spend per Customer": 36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.217954, 39.953078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9m-gtv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3200 92 Red Lion Road Suite 250", "LATITUDE": 40.080307, "LONGITUDE": -74.99459, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 222.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 4.0, "Total Spend": 7606.0, "Total Transactions": 353.0, "Total Customers": 224.0, "Median Spend per Transaction": 12.66, "Median Spend per Customer": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -74.99459, 40.080307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4530 N 5th St", "LATITUDE": 40.02088, "LONGITUDE": -75.134701, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 258.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 2.0, "Total Spend": 13473.0, "Total Transactions": 895.0, "Total Customers": 351.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 22.72 }, "geometry": { "type": "Point", "coordinates": [ -75.134701, 40.02088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2901 N Broad St", "LATITUDE": 39.99726, "LONGITUDE": -75.153396, "DATE_RANGE_START": 2021, "Total Visits": 1344.0, "Total Visitors": 983.0, "POI_CBG": 421010174002.0, "Median Dwell Time": 4.0, "Total Spend": 21207.0, "Total Transactions": 800.0, "Total Customers": 589.0, "Median Spend per Transaction": 22.33, "Median Spend per Customer": 29.01 }, "geometry": { "type": "Point", "coordinates": [ -75.153396, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "Name": "Higher Grounds", "Category": "Restaurants and Other Eating Places", "Address": "631 N 3rd St", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 50.0, "Total Spend": 3131.0, "Total Transactions": 348.0, "Total Customers": 236.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-rhq", "Name": "Tina's tacos", "Category": "Restaurants and Other Eating Places", "Address": "2327 E York St", "LATITUDE": 39.979315, "LONGITUDE": -75.125407, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010160007.0, "Median Dwell Time": 1.0, "Total Spend": 186.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.125407, 39.979315 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "Name": "Kitchen Kapers", "Category": "Home Furnishings Stores", "Address": "8530 Germantown Ave", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 289.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 29.0, "Total Spend": 3171.0, "Total Transactions": 67.0, "Total Customers": 64.0, "Median Spend per Transaction": 35.63, "Median Spend per Customer": 43.15 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-n3q", "Name": "Double Connect", "Category": "Electronics and Appliance Stores", "Address": "5130 Market St", "LATITUDE": 39.959668, "LONGITUDE": -75.224073, "DATE_RANGE_START": 2021, "Total Visits": 16831.0, "Total Visitors": 6680.0, "POI_CBG": 421010085001.0, "Median Dwell Time": 29.0, "Total Spend": 847.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 177.5, "Median Spend per Customer": 177.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224073, 39.959668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-cbk", "Name": "Oregon Diner", "Category": "Restaurants and Other Eating Places", "Address": "302 W Oregon Ave", "LATITUDE": 39.913868, "LONGITUDE": -75.152939, "DATE_RANGE_START": 2021, "Total Visits": 1277.0, "Total Visitors": 757.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 41.0, "Total Spend": 811.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 41.64, "Median Spend per Customer": 41.64 }, "geometry": { "type": "Point", "coordinates": [ -75.152939, 39.913868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5834 Pulaski Ave", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 358.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 7.0, "Total Spend": 3253.0, "Total Transactions": 169.0, "Total Customers": 129.0, "Median Spend per Transaction": 13.15, "Median Spend per Customer": 14.22 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-7qz", "Name": "Vedge", "Category": "Restaurants and Other Eating Places", "Address": "1221 Locust St", "LATITUDE": 39.947987, "LONGITUDE": -75.161387, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 112.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 20.0, "Total Spend": 21208.0, "Total Transactions": 172.0, "Total Customers": 155.0, "Median Spend per Transaction": 116.03, "Median Spend per Customer": 136.53 }, "geometry": { "type": "Point", "coordinates": [ -75.161387, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "Name": "Weavers Way Co Op", "Category": "Grocery Stores", "Address": "559 Carpenter Ln", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 88.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 8.0, "Total Spend": 128653.0, "Total Transactions": 3446.0, "Total Customers": 1401.0, "Median Spend per Transaction": 25.76, "Median Spend per Customer": 48.41 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "Name": "Tacodelphia", "Category": "Restaurants and Other Eating Places", "Address": "427 S Broad St", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 107.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1.0, "Total Spend": 4800.0, "Total Transactions": 344.0, "Total Customers": 255.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-ygk", "Name": "Shaxian Delicacies", "Category": "Restaurants and Other Eating Places", "Address": "106 N 10th St", "LATITUDE": 39.953861, "LONGITUDE": -75.156353, "DATE_RANGE_START": 2021, "Total Visits": 260.0, "Total Visitors": 253.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 356.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 15.59, "Median Spend per Customer": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.156353, 39.953861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-435", "Name": "Atlas Pizza & Steaks", "Category": "Restaurants and Other Eating Places", "Address": "736 S 52nd St", "LATITUDE": 39.947544, "LONGITUDE": -75.227506, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010073004.0, "Median Dwell Time": 1.0, "Total Spend": 275.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 28.48, "Median Spend per Customer": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.227506, 39.947544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2034 N Broad St", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 322.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 4.0, "Total Spend": 3146.0, "Total Transactions": 279.0, "Total Customers": 153.0, "Median Spend per Transaction": 8.83, "Median Spend per Customer": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "Name": "HKS pharmacy", "Category": "Health and Personal Care Stores", "Address": "3357 N Front St", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 38.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 374.0, "Total Spend": 11134.0, "Total Transactions": 399.0, "Total Customers": 332.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phn-qmk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "8235 Stenton Ave", "LATITUDE": 40.068844, "LONGITUDE": -75.18088, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 134.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 4.0, "Total Spend": 8211.0, "Total Transactions": 475.0, "Total Customers": 351.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 15.51 }, "geometry": { "type": "Point", "coordinates": [ -75.18088, 40.068844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "Name": "Prince Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 E Wyoming Ave", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 21.0, "POI_CBG": 421010288002.0, "Median Dwell Time": 2.0, "Total Spend": 4534.0, "Total Transactions": 210.0, "Total Customers": 172.0, "Median Spend per Transaction": 18.77, "Median Spend per Customer": 20.85 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "9875 Bustleton Ave", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2021, "Total Visits": 1072.0, "Total Visitors": 773.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 6.0, "Total Spend": 7345.0, "Total Transactions": 449.0, "Total Customers": 236.0, "Median Spend per Transaction": 9.24, "Median Spend per Customer": 15.07 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@63s-dvv-rx5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6731 Woodland Ave", "LATITUDE": 39.923209, "LONGITUDE": -75.238375, "DATE_RANGE_START": 2021, "Total Visits": 365.0, "Total Visitors": 263.0, "POI_CBG": 421010063003.0, "Median Dwell Time": 8.0, "Total Spend": 8782.0, "Total Transactions": 461.0, "Total Customers": 310.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 22.84 }, "geometry": { "type": "Point", "coordinates": [ -75.238375, 39.923209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "Name": "In Riva", "Category": "Restaurants and Other Eating Places", "Address": "4116 Ridge Ave", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2021, "Total Visits": 427.0, "Total Visitors": 389.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 53.0, "Total Spend": 41312.0, "Total Transactions": 592.0, "Total Customers": 527.0, "Median Spend per Transaction": 59.13, "Median Spend per Customer": 63.79 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7613 Castor Ave", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2021, "Total Visits": 733.0, "Total Visitors": 506.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 3.0, "Total Spend": 20819.0, "Total Transactions": 1566.0, "Total Customers": 964.0, "Median Spend per Transaction": 11.22, "Median Spend per Customer": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "Name": "Jj Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "2028 Chestnut St", "LATITUDE": 39.951963, "LONGITUDE": -75.174719, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 31.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 3.0, "Total Spend": 6380.0, "Total Transactions": 167.0, "Total Customers": 141.0, "Median Spend per Transaction": 33.36, "Median Spend per Customer": 35.94 }, "geometry": { "type": "Point", "coordinates": [ -75.174719, 39.951963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p74-n5z", "Name": "Uniform Gear", "Category": "Clothing Stores", "Address": "8063 Walker St", "LATITUDE": 40.039579, "LONGITUDE": -75.024137, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 33.0, "POI_CBG": 421010329002.0, "Median Dwell Time": 8.0, "Total Spend": 2592.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 62.95, "Median Spend per Customer": 62.95 }, "geometry": { "type": "Point", "coordinates": [ -75.024137, 40.039579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dwf-td9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2934 Island Ave", "LATITUDE": 39.902299, "LONGITUDE": -75.242062, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 57.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 2.0, "Total Spend": 9823.0, "Total Transactions": 687.0, "Total Customers": 527.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.242062, 39.902299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "322 N Broad St", "LATITUDE": 39.959088, "LONGITUDE": -75.1625, "DATE_RANGE_START": 2021, "Total Visits": 1315.0, "Total Visitors": 611.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 322.0, "Total Spend": 16316.0, "Total Transactions": 1220.0, "Total Customers": 742.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.1625, 39.959088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "Name": "Mission BBQ", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 322.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 16.0, "Total Spend": 1054.0, "Total Transactions": 41.0, "Total Customers": 33.0, "Median Spend per Transaction": 17.81, "Median Spend per Customer": 21.37 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p7x-6tv", "Name": "Artifax", "Category": "Other Miscellaneous Store Retailers", "Address": "2446 Cottman Ave", "LATITUDE": 40.046392, "LONGITUDE": -75.058077, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 69.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 4.0, "Total Spend": 10716.0, "Total Transactions": 224.0, "Total Customers": 150.0, "Median Spend per Transaction": 32.6, "Median Spend per Customer": 51.68 }, "geometry": { "type": "Point", "coordinates": [ -75.058077, 40.046392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-y7q", "Name": "E Mei Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "915 Arch St", "LATITUDE": 39.953596, "LONGITUDE": -75.155422, "DATE_RANGE_START": 2021, "Total Visits": 4516.0, "Total Visitors": 3222.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 51.0, "Total Spend": 7930.0, "Total Transactions": 122.0, "Total Customers": 117.0, "Median Spend per Transaction": 53.04, "Median Spend per Customer": 56.51 }, "geometry": { "type": "Point", "coordinates": [ -75.155422, 39.953596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "9001 Frankford Ave", "LATITUDE": 40.051659, "LONGITUDE": -75.008179, "DATE_RANGE_START": 2021, "Total Visits": 415.0, "Total Visitors": 322.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 3.0, "Total Spend": 8112.0, "Total Transactions": 251.0, "Total Customers": 162.0, "Median Spend per Transaction": 30.02, "Median Spend per Customer": 33.26 }, "geometry": { "type": "Point", "coordinates": [ -75.008179, 40.051659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "Name": "Talula's Garden", "Category": "Restaurants and Other Eating Places", "Address": "210 W Washington Sq", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2021, "Total Visits": 790.0, "Total Visitors": 649.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 62.0, "Total Spend": 78292.0, "Total Transactions": 1807.0, "Total Customers": 1107.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 33.36 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6919 Torresdale Ave # 27", "LATITUDE": 40.026137, "LONGITUDE": -75.042321, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 186.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 5.0, "Total Spend": 899.0, "Total Transactions": 84.0, "Total Customers": 26.0, "Median Spend per Transaction": 9.81, "Median Spend per Customer": 7.38 }, "geometry": { "type": "Point", "coordinates": [ -75.042321, 40.026137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "Name": "Girard Meat Market", "Category": "Specialty Food Stores", "Address": "4725 W Girard Ave", "LATITUDE": 39.972943, "LONGITUDE": -75.217427, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 274.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 5.0, "Total Spend": 481.0, "Total Transactions": 36.0, "Total Customers": 29.0, "Median Spend per Transaction": 9.84, "Median Spend per Customer": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.217427, 39.972943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5233 Torresdale Ave # 45", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 158.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 3.0, "Total Spend": 3437.0, "Total Transactions": 547.0, "Total Customers": 274.0, "Median Spend per Transaction": 4.31, "Median Spend per Customer": 8.03 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "Name": "Charley's", "Category": "Restaurants and Other Eating Places", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 5733.0, "Total Transactions": 322.0, "Total Customers": 253.0, "Median Spend per Transaction": 13.48, "Median Spend per Customer": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-7t9", "Name": "The Kettle Black", "Category": "Restaurants and Other Eating Places", "Address": "631 N 2nd St", "LATITUDE": 39.961646, "LONGITUDE": -75.140921, "DATE_RANGE_START": 2021, "Total Visits": 663.0, "Total Visitors": 594.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 7.0, "Total Spend": 3311.0, "Total Transactions": 217.0, "Total Customers": 153.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.140921, 39.961646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5400 Rising Sun Ave Ste 11", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 224.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 8.0, "Total Spend": 11805.0, "Total Transactions": 604.0, "Total Customers": 408.0, "Median Spend per Transaction": 13.59, "Median Spend per Customer": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1512 Walnut St", "LATITUDE": 39.949499, "LONGITUDE": -75.166653, "DATE_RANGE_START": 2021, "Total Visits": 501.0, "Total Visitors": 434.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 4.0, "Total Spend": 21893.0, "Total Transactions": 1759.0, "Total Customers": 1167.0, "Median Spend per Transaction": 11.61, "Median Spend per Customer": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -75.166653, 39.949499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6401 Harbison Ave", "LATITUDE": 40.032146, "LONGITUDE": -75.063064, "DATE_RANGE_START": 2021, "Total Visits": 974.0, "Total Visitors": 640.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 4.0, "Total Spend": 18514.0, "Total Transactions": 866.0, "Total Customers": 418.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.063064, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmc-v2k", "Name": "HomeGoods", "Category": "Home Furnishings Stores", "Address": "1851 S Columbus Blvd", "LATITUDE": 39.923473, "LONGITUDE": -75.140935, "DATE_RANGE_START": 2021, "Total Visits": 456.0, "Total Visitors": 389.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 140.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 29.25, "Median Spend per Customer": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.140935, 39.923473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993511, "LONGITUDE": -75.143942, "DATE_RANGE_START": 2021, "Total Visits": 499.0, "Total Visitors": 272.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 19.0, "Total Spend": 469.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143942, 39.993511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 W Hunting Park Ave", "LATITUDE": 40.008154, "LONGITUDE": -75.17322, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 110.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 4.0, "Total Spend": 1229.0, "Total Transactions": 53.0, "Total Customers": 45.0, "Median Spend per Transaction": 12.01, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 40.008154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm3-vzz", "Name": "Sermania Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1719 E Passyunk Ave", "LATITUDE": 39.928072, "LONGITUDE": -75.165393, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010028022.0, "Median Dwell Time": null, "Total Spend": 229.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 47.9, "Median Spend per Customer": 47.9 }, "geometry": { "type": "Point", "coordinates": [ -75.165393, 39.928072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-225@628-pjf-j7q", "Name": "All The Way Live", "Category": "Restaurants and Other Eating Places", "Address": "8419 Germantown Ave", "LATITUDE": 40.075711, "LONGITUDE": -75.205375, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 50.0, "Total Spend": 3128.0, "Total Transactions": 81.0, "Total Customers": 62.0, "Median Spend per Transaction": 26.59, "Median Spend per Customer": 32.22 }, "geometry": { "type": "Point", "coordinates": [ -75.205375, 40.075711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "Name": "Beijing Garden", "Category": "Restaurants and Other Eating Places", "Address": "5911 Ridge Ave", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 2.0, "Total Spend": 1961.0, "Total Transactions": 79.0, "Total Customers": 67.0, "Median Spend per Transaction": 22.2, "Median Spend per Customer": 27.55 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-229@628-p85-hkf", "Name": "Bluegrass Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2417 Welsh Rd", "LATITUDE": 40.071403, "LONGITUDE": -75.030673, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 69.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 106.0, "Total Spend": 588.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 47.39 }, "geometry": { "type": "Point", "coordinates": [ -75.030673, 40.071403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8f-9cq", "Name": "D & R Food Market", "Category": "Grocery Stores", "Address": "1801 Orthodox St", "LATITUDE": 40.012762, "LONGITUDE": -75.081478, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 24.0, "POI_CBG": 421010300005.0, "Median Dwell Time": 2.0, "Total Spend": 85.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 17.87, "Median Spend per Customer": 17.87 }, "geometry": { "type": "Point", "coordinates": [ -75.081478, 40.012762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2301 W Passyunk Ave", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2021, "Total Visits": 461.0, "Total Visitors": 305.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 3.0, "Total Spend": 1339.0, "Total Transactions": 86.0, "Total Customers": 48.0, "Median Spend per Transaction": 8.18, "Median Spend per Customer": 8.08 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-66k", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1201 Walnut St", "LATITUDE": 39.949053, "LONGITUDE": -75.160719, "DATE_RANGE_START": 2021, "Total Visits": 4979.0, "Total Visitors": 3599.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 13.0, "Total Spend": 5640.0, "Total Transactions": 353.0, "Total Customers": 227.0, "Median Spend per Transaction": 9.65, "Median Spend per Customer": 12.08 }, "geometry": { "type": "Point", "coordinates": [ -75.160719, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1100 S Delaware Ave", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 72.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 4.0, "Total Spend": 12731.0, "Total Transactions": 198.0, "Total Customers": 155.0, "Median Spend per Transaction": 58.98, "Median Spend per Customer": 67.49 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "Name": "Trio Delight Cafe", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.037587, "LONGITUDE": -75.118044, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 15.0, "Total Spend": 978.0, "Total Transactions": 64.0, "Total Customers": 50.0, "Median Spend per Transaction": 12.69, "Median Spend per Customer": 15.88 }, "geometry": { "type": "Point", "coordinates": [ -75.118044, 40.037587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4400 City Ave", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2021, "Total Visits": 2518.0, "Total Visitors": 2053.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 4.0, "Total Spend": 75115.0, "Total Transactions": 3060.0, "Total Customers": 2143.0, "Median Spend per Transaction": 21.01, "Median Spend per Customer": 27.42 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "Name": "The Gold Standard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4800 Baltimore Ave", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 45.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 31.0, "Total Spend": 1677.0, "Total Transactions": 95.0, "Total Customers": 64.0, "Median Spend per Transaction": 13.08, "Median Spend per Customer": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "Name": "Calvin Klein", "Category": "Clothing Stores", "Address": "1889 Franklin Mills Cir", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 122.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 129.0, "Total Spend": 9253.0, "Total Transactions": 141.0, "Total Customers": 100.0, "Median Spend per Transaction": 42.49, "Median Spend per Customer": 60.92 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "Name": "Little Italy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "901 South St", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 72.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 2.0, "Total Spend": 872.0, "Total Transactions": 41.0, "Total Customers": 38.0, "Median Spend per Transaction": 24.63, "Median Spend per Customer": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "Name": "Pizzeria Stella", "Category": "Restaurants and Other Eating Places", "Address": "420 S 2nd St", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 248.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 26.0, "Total Spend": 29442.0, "Total Transactions": 408.0, "Total Customers": 372.0, "Median Spend per Transaction": 65.08, "Median Spend per Customer": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1161 Franklin Mills Cir", "LATITUDE": 40.084266, "LONGITUDE": -74.961834, "DATE_RANGE_START": 2021, "Total Visits": 621.0, "Total Visitors": 511.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 20.0, "Total Spend": 20623.0, "Total Transactions": 1344.0, "Total Customers": 1086.0, "Median Spend per Transaction": 10.7, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -74.961834, 40.084266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "Name": "Cafe Saigon", "Category": "Restaurants and Other Eating Places", "Address": "827 Adams Ave", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2021, "Total Visits": 325.0, "Total Visitors": 227.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 22.0, "Total Spend": 4041.0, "Total Transactions": 112.0, "Total Customers": 88.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 36.18 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dw2-7yv", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 S 60th St", "LATITUDE": 39.958784, "LONGITUDE": -75.241349, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 100.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 538.0, "Total Spend": 123.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 25.67, "Median Spend per Customer": 25.67 }, "geometry": { "type": "Point", "coordinates": [ -75.241349, 39.958784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "Name": "Barclay Prime", "Category": "Restaurants and Other Eating Places", "Address": "237 S 18th St", "LATITUDE": 39.948498, "LONGITUDE": -75.170757, "DATE_RANGE_START": 2021, "Total Visits": 504.0, "Total Visitors": 399.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 32.0, "Total Spend": 57614.0, "Total Transactions": 200.0, "Total Customers": 191.0, "Median Spend per Transaction": 263.87, "Median Spend per Customer": 269.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170757, 39.948498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y9z", "Name": "Copabanana", "Category": "Restaurants and Other Eating Places", "Address": "344 South St", "LATITUDE": 39.941497, "LONGITUDE": -75.14907, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 93.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 2.0, "Total Spend": 18426.0, "Total Transactions": 334.0, "Total Customers": 294.0, "Median Spend per Transaction": 41.58, "Median Spend per Customer": 50.58 }, "geometry": { "type": "Point", "coordinates": [ -75.14907, 39.941497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgy-ks5", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "701 E Cathedral Rd", "LATITUDE": 40.064334, "LONGITUDE": -75.23681, "DATE_RANGE_START": 2021, "Total Visits": 897.0, "Total Visitors": 248.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 60.0, "Total Spend": 14054.0, "Total Transactions": 971.0, "Total Customers": 742.0, "Median Spend per Transaction": 11.83, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.23681, 40.064334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "22 W Girard Ave", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 205.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 3.0, "Total Spend": 22651.0, "Total Transactions": 2131.0, "Total Customers": 1346.0, "Median Spend per Transaction": 9.11, "Median Spend per Customer": 13.24 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave Ste 5", "LATITUDE": 40.087324, "LONGITUDE": -75.039996, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 224.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 3.0, "Total Spend": 2493.0, "Total Transactions": 379.0, "Total Customers": 191.0, "Median Spend per Transaction": 5.93, "Median Spend per Customer": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.039996, 40.087324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "Name": "Apple Retail Store", "Category": "Electronics and Appliance Stores", "Address": "1607 Walnut St", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2021, "Total Visits": 704.0, "Total Visitors": 551.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 28.0, "Total Spend": 295751.0, "Total Transactions": 1019.0, "Total Customers": 862.0, "Median Spend per Transaction": 96.02, "Median Spend per Customer": 115.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3601 Midvale Ave", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 112.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 4.0, "Total Spend": 38512.0, "Total Transactions": 1737.0, "Total Customers": 924.0, "Median Spend per Transaction": 14.78, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1826 30 Chestnut Street Philadelphia", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2021, "Total Visits": 921.0, "Total Visitors": 558.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 62.0, "Total Spend": 26557.0, "Total Transactions": 1585.0, "Total Customers": 1074.0, "Median Spend per Transaction": 10.59, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-bp9", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "9910 Frankford Ave", "LATITUDE": 40.064931, "LONGITUDE": -74.985003, "DATE_RANGE_START": 2021, "Total Visits": 3375.0, "Total Visitors": 1516.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 17.0, "Total Spend": 840.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 41.62, "Median Spend per Customer": 41.62 }, "geometry": { "type": "Point", "coordinates": [ -74.985003, 40.064931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "9499 Roosevelt Blvd", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2021, "Total Visits": 1134.0, "Total Visitors": 976.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 6514.0, "Total Transactions": 265.0, "Total Customers": 224.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.2 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1825 W Oregon Ave # 33", "LATITUDE": 39.91807, "LONGITUDE": -75.17894, "DATE_RANGE_START": 2021, "Total Visits": 1998.0, "Total Visitors": 1253.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 280.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 27.52, "Median Spend per Customer": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -75.17894, 39.91807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-3wk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10950 E Roosevelt Blvd", "LATITUDE": 40.09991, "LONGITUDE": -75.009414, "DATE_RANGE_START": 2021, "Total Visits": 2530.0, "Total Visitors": 1780.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 4.0, "Total Spend": 882.0, "Total Transactions": 33.0, "Total Customers": 26.0, "Median Spend per Transaction": 24.01, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009414, 40.09991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "Name": "Boss Outlet", "Category": "Clothing Stores", "Address": "1613 Franklin Mills Cir", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 119.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 22.0, "Total Spend": 29843.0, "Total Transactions": 434.0, "Total Customers": 403.0, "Median Spend per Transaction": 48.98, "Median Spend per Customer": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "Name": "Gaffney Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "5401 Germantown Ave", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 95.0, "POI_CBG": 421010246001.0, "Median Dwell Time": 11.0, "Total Spend": 7357.0, "Total Transactions": 148.0, "Total Customers": 122.0, "Median Spend per Transaction": 24.71, "Median Spend per Customer": 25.47 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnw-yvz", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "901 W Girard Ave Ste 1B", "LATITUDE": 39.97112, "LONGITUDE": -75.151073, "DATE_RANGE_START": 2021, "Total Visits": 492.0, "Total Visitors": 389.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 6.0, "Total Spend": 1161.0, "Total Transactions": 43.0, "Total Customers": 36.0, "Median Spend per Transaction": 20.92, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151073, 39.97112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "Name": "Tuna Bar", "Category": "Restaurants and Other Eating Places", "Address": "205 Race St", "LATITUDE": 39.954087, "LONGITUDE": -75.143167, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 100.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 41.0, "Total Spend": 42258.0, "Total Transactions": 377.0, "Total Customers": 322.0, "Median Spend per Transaction": 76.87, "Median Spend per Customer": 81.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143167, 39.954087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp5-k2k", "Name": "Momentos Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2317 E Clearfield St", "LATITUDE": 39.988005, "LONGITUDE": -75.109231, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010179002.0, "Median Dwell Time": 3.0, "Total Spend": 535.0, "Total Transactions": 29.0, "Total Customers": 14.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109231, 39.988005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-whq", "Name": "Pho Xe Lua Viet Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "907 Race St", "LATITUDE": 39.955481, "LONGITUDE": -75.154675, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 5134.0, "Total Transactions": 153.0, "Total Customers": 141.0, "Median Spend per Transaction": 31.87, "Median Spend per Customer": 32.89 }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj8-2c5", "Name": "US1 Car Stereo", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4331 E Roosevelt Blvd", "LATITUDE": 40.029189, "LONGITUDE": -75.103473, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010292002.0, "Median Dwell Time": 9.0, "Total Spend": 4521.0, "Total Transactions": 19.0, "Total Customers": 12.0, "Median Spend per Transaction": 180.0, "Median Spend per Customer": 260.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103473, 40.029189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-52k", "Name": "Indian Sizzler", "Category": "Restaurants and Other Eating Places", "Address": "3651 Lancaster Ave", "LATITUDE": 39.959458, "LONGITUDE": -75.194962, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 36.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 6.0, "Total Spend": 1955.0, "Total Transactions": 79.0, "Total Customers": 57.0, "Median Spend per Transaction": 21.57, "Median Spend per Customer": 23.19 }, "geometry": { "type": "Point", "coordinates": [ -75.194962, 39.959458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-mzf", "Name": "Tir na nOg Irish Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1600 Arch St", "LATITUDE": 39.954415, "LONGITUDE": -75.16676, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 41.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 76.0, "Total Spend": 2819.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 91.98, "Median Spend per Customer": 91.08 }, "geometry": { "type": "Point", "coordinates": [ -75.16676, 39.954415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p8m-syv", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1607 Bridge St", "LATITUDE": 40.02299, "LONGITUDE": -75.075925, "DATE_RANGE_START": 2021, "Total Visits": 847.0, "Total Visitors": 518.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 9.0, "Total Spend": 4340.0, "Total Transactions": 298.0, "Total Customers": 143.0, "Median Spend per Transaction": 7.78, "Median Spend per Customer": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.075925, 40.02299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2132 South Street Philadelphia", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2021, "Total Visits": 411.0, "Total Visitors": 241.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 262.0, "Total Spend": 29368.0, "Total Transactions": 1511.0, "Total Customers": 831.0, "Median Spend per Transaction": 12.49, "Median Spend per Customer": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "Name": "Buddakan", "Category": "Restaurants and Other Eating Places", "Address": "325 Chestnut St", "LATITUDE": 39.948922, "LONGITUDE": -75.147091, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 274.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 77.0, "Total Spend": 69176.0, "Total Transactions": 442.0, "Total Customers": 391.0, "Median Spend per Transaction": 118.46, "Median Spend per Customer": 132.99 }, "geometry": { "type": "Point", "coordinates": [ -75.147091, 39.948922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-pn5", "Name": "Yiro Yiro", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St # 29", "LATITUDE": 39.954699, "LONGITUDE": -75.202157, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 191.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 43.0, "Total Spend": 3311.0, "Total Transactions": 136.0, "Total Customers": 119.0, "Median Spend per Transaction": 20.95, "Median Spend per Customer": 25.47 }, "geometry": { "type": "Point", "coordinates": [ -75.202157, 39.954699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pjf-kvf", "Name": "Bijoux Fine Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "8615 Germantown Ave", "LATITUDE": 40.076914, "LONGITUDE": -75.207677, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 147.0, "Total Spend": 619.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 108.0, "Median Spend per Customer": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.207677, 40.076914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8vz", "Name": "Cosi", "Category": "Restaurants and Other Eating Places", "Address": "1035 Chestnut St", "LATITUDE": 39.950388, "LONGITUDE": -75.158367, "DATE_RANGE_START": 2021, "Total Visits": 1208.0, "Total Visitors": 900.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 30.0, "Total Spend": 3124.0, "Total Transactions": 229.0, "Total Customers": 155.0, "Median Spend per Transaction": 11.07, "Median Spend per Customer": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.158367, 39.950388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "10500 Roosevelt Blvd", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2021, "Total Visits": 578.0, "Total Visitors": 422.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 11.0, "Total Spend": 2349.0, "Total Transactions": 64.0, "Total Customers": 55.0, "Median Spend per Transaction": 26.91, "Median Spend per Customer": 36.36 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pgh-8vz", "Name": "Jaquez Mini Market", "Category": "Grocery Stores", "Address": "3061 N 16th St", "LATITUDE": 40.000296, "LONGITUDE": -75.156196, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 29.0, "POI_CBG": 421010201013.0, "Median Dwell Time": 30.0, "Total Spend": 183.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 16.48, "Median Spend per Customer": 28.77 }, "geometry": { "type": "Point", "coordinates": [ -75.156196, 40.000296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "Name": "Race Supermarket", "Category": "Grocery Stores", "Address": "156 N 52nd St", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 29.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 10.0, "Total Spend": 936.0, "Total Transactions": 93.0, "Total Customers": 55.0, "Median Spend per Transaction": 7.87, "Median Spend per Customer": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfv-94v", "Name": "Wild Hand", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "606 Carpenter Ln", "LATITUDE": 40.046119, "LONGITUDE": -75.195912, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010236003.0, "Median Dwell Time": 2.0, "Total Spend": 325.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.195912, 40.046119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pp5-k4v", "Name": "Ho Le Chan", "Category": "Restaurants and Other Eating Places", "Address": "2344 E Clearfield St", "LATITUDE": 39.987263, "LONGITUDE": -75.109046, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 14.0, "POI_CBG": 421010179002.0, "Median Dwell Time": null, "Total Spend": 286.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 28.25 }, "geometry": { "type": "Point", "coordinates": [ -75.109046, 39.987263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-ph6-whq", "Name": "Cedar Park Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2035 N 63rd St", "LATITUDE": 39.986565, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 3.0, "Total Spend": 4478.0, "Total Transactions": 222.0, "Total Customers": 174.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "Name": "Villavillekula", "Category": "Clothing Stores", "Address": "8419 Germantown Ave", "LATITUDE": 40.075713, "LONGITUDE": -75.205415, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 50.0, "Total Spend": 2519.0, "Total Transactions": 41.0, "Total Customers": 38.0, "Median Spend per Transaction": 67.44, "Median Spend per Customer": 67.44 }, "geometry": { "type": "Point", "coordinates": [ -75.205415, 40.075713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-mzf", "Name": "Cantina Dos Segundos", "Category": "Restaurants and Other Eating Places", "Address": "931 N 2nd St", "LATITUDE": 39.964821, "LONGITUDE": -75.140233, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 33.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 134.0, "Total Spend": 20732.0, "Total Transactions": 305.0, "Total Customers": 284.0, "Median Spend per Transaction": 54.31, "Median Spend per Customer": 54.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140233, 39.964821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmf-kzz", "Name": "City Tap House", "Category": "Restaurants and Other Eating Places", "Address": "100 N 18th St", "LATITUDE": 39.95591, "LONGITUDE": -75.169553, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 43.0, "Total Spend": 2383.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 61.45, "Median Spend per Customer": 61.45 }, "geometry": { "type": "Point", "coordinates": [ -75.169553, 39.95591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p83-wzf", "Name": "Beautyland", "Category": "Health and Personal Care Stores", "Address": "1124 Gregg St", "LATITUDE": 40.086398, "LONGITUDE": -75.046895, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 53.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 2.0, "Total Spend": 519.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 34.86 }, "geometry": { "type": "Point", "coordinates": [ -75.046895, 40.086398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgf-575", "Name": "Crackn Crabs", "Category": "Restaurants and Other Eating Places", "Address": "3800 Lancaster Ave", "LATITUDE": 39.960125, "LONGITUDE": -75.197142, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 69.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 655.0, "Total Spend": 6653.0, "Total Transactions": 126.0, "Total Customers": 112.0, "Median Spend per Transaction": 45.36, "Median Spend per Customer": 46.28 }, "geometry": { "type": "Point", "coordinates": [ -75.197142, 39.960125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "1651 S Columbus Blvd", "LATITUDE": 39.925864, "LONGITUDE": -75.142894, "DATE_RANGE_START": 2021, "Total Visits": 3733.0, "Total Visitors": 2630.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 17.0, "Total Spend": 207571.0, "Total Transactions": 1819.0, "Total Customers": 1074.0, "Median Spend per Transaction": 46.36, "Median Spend per Customer": 64.79 }, "geometry": { "type": "Point", "coordinates": [ -75.142894, 39.925864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "Name": "Trader Joe's", "Category": "Grocery Stores", "Address": "2121 Market St", "LATITUDE": 39.954199, "LONGITUDE": -75.176054, "DATE_RANGE_START": 2021, "Total Visits": 1511.0, "Total Visitors": 1162.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 16.0, "Total Spend": 811629.0, "Total Transactions": 16315.0, "Total Customers": 9551.0, "Median Spend per Transaction": 38.27, "Median Spend per Customer": 63.08 }, "geometry": { "type": "Point", "coordinates": [ -75.176054, 39.954199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "Name": "Balducci's", "Category": "Grocery Stores", "Address": "1 Garage Access Rd Terminal C", "LATITUDE": 39.878244, "LONGITUDE": -75.24235, "DATE_RANGE_START": 2021, "Total Visits": 56783.0, "Total Visitors": 47866.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 10.0, "Total Spend": 11733.0, "Total Transactions": 740.0, "Total Customers": 697.0, "Median Spend per Transaction": 13.35, "Median Spend per Customer": 13.71 }, "geometry": { "type": "Point", "coordinates": [ -75.24235, 39.878244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7v-nnq", "Name": "Tano's Deli", "Category": "Restaurants and Other Eating Places", "Address": "7401 Bingham St", "LATITUDE": 40.062163, "LONGITUDE": -75.080393, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 38.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 8.0, "Total Spend": 409.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 17.78, "Median Spend per Customer": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.080393, 40.062163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-8d9", "Name": "Bee Natural", "Category": "Specialty Food Stores", "Address": "1136 Arch St", "LATITUDE": 39.952966, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 2319.0, "Total Transactions": 122.0, "Total Customers": 122.0, "Median Spend per Transaction": 13.69, "Median Spend per Customer": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.952966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-7bk", "Name": "VIP Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "1312 Walnut St # 1314", "LATITUDE": 39.94892, "LONGITUDE": -75.162809, "DATE_RANGE_START": 2021, "Total Visits": 212.0, "Total Visitors": 131.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 152.0, "Total Spend": 32543.0, "Total Transactions": 1988.0, "Total Customers": 1007.0, "Median Spend per Transaction": 12.75, "Median Spend per Customer": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.162809, 39.94892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-47q", "Name": "Beauty Time", "Category": "Health and Personal Care Stores", "Address": "5694 Rising Sun Ave Ste 9", "LATITUDE": 40.040779, "LONGITUDE": -75.109561, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 119.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 7.0, "Total Spend": 5814.0, "Total Transactions": 177.0, "Total Customers": 158.0, "Median Spend per Transaction": 26.44, "Median Spend per Customer": 27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.109561, 40.040779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "715 S 2nd St", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 67.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 21.0, "Total Spend": 13715.0, "Total Transactions": 411.0, "Total Customers": 365.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 29.55 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "Name": "Dick's Sporting Goods", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "20 Franklin Mills Blvd", "LATITUDE": 40.085609, "LONGITUDE": -74.967208, "DATE_RANGE_START": 2021, "Total Visits": 592.0, "Total Visitors": 530.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 3492.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 81.14, "Median Spend per Customer": 81.14 }, "geometry": { "type": "Point", "coordinates": [ -74.967208, 40.085609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2021, "Total Visits": 232.0, "Total Visitors": 203.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 13974.0, "Total Transactions": 893.0, "Total Customers": 678.0, "Median Spend per Transaction": 13.35, "Median Spend per Customer": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "Name": "Ocean Harbor", "Category": "Restaurants and Other Eating Places", "Address": "1023 Race St", "LATITUDE": 39.95567, "LONGITUDE": -75.156821, "DATE_RANGE_START": 2021, "Total Visits": 5360.0, "Total Visitors": 4019.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 20.0, "Total Spend": 11459.0, "Total Transactions": 146.0, "Total Customers": 138.0, "Median Spend per Transaction": 62.9, "Median Spend per Customer": 66.88 }, "geometry": { "type": "Point", "coordinates": [ -75.156821, 39.95567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "5717 Rising Sun Ave", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 84.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 47.0, "Total Spend": 23370.0, "Total Transactions": 389.0, "Total Customers": 325.0, "Median Spend per Transaction": 48.6, "Median Spend per Customer": 54.71 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pfz-bhq", "Name": "Valerio Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "4373 Main St", "LATITUDE": 40.025342, "LONGITUDE": -75.222719, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 91.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 45.0, "Total Spend": 9540.0, "Total Transactions": 773.0, "Total Customers": 532.0, "Median Spend per Transaction": 11.02, "Median Spend per Customer": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.222719, 40.025342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "Name": "Aldo Lamberti Trattoria", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.874852, "LONGITUDE": -75.241162, "DATE_RANGE_START": 2021, "Total Visits": 12234.0, "Total Visitors": 11215.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 41.0, "Total Spend": 434.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 13.72, "Median Spend per Customer": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.241162, 39.874852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmf-tvz", "Name": "Aurora Grace", "Category": "Restaurants and Other Eating Places", "Address": "225 S 18th St", "LATITUDE": 39.949402, "LONGITUDE": -75.170471, "DATE_RANGE_START": 2021, "Total Visits": 1310.0, "Total Visitors": 632.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 263.0, "Total Spend": 637.0, "Total Transactions": 45.0, "Total Customers": 38.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170471, 39.949402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6401 Roosevelt Blvd", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2021, "Total Visits": 621.0, "Total Visitors": 286.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 2.0, "Total Spend": 5477.0, "Total Transactions": 768.0, "Total Customers": 322.0, "Median Spend per Transaction": 6.09, "Median Spend per Customer": 9.11 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "Name": "Sang Kee Peking Duck House", "Category": "Restaurants and Other Eating Places", "Address": "238 N 9th St", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 322.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 4.0, "Total Spend": 19082.0, "Total Transactions": 487.0, "Total Customers": 446.0, "Median Spend per Transaction": 21.82, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "Name": "Bleu Martini", "Category": "Restaurants and Other Eating Places", "Address": "24 S 2nd St", "LATITUDE": 39.949349, "LONGITUDE": -75.144205, "DATE_RANGE_START": 2021, "Total Visits": 1625.0, "Total Visitors": 1327.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 49.0, "Total Spend": 44703.0, "Total Transactions": 601.0, "Total Customers": 408.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144205, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-7qz", "Name": "Wax Downtown", "Category": "Specialty Food Stores", "Address": "740 Sansom St Ste 505F", "LATITUDE": 39.948559, "LONGITUDE": -75.153964, "DATE_RANGE_START": 2021, "Total Visits": 1950.0, "Total Visitors": 1370.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 97.0, "Total Spend": 987.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 66.0, "Median Spend per Customer": 66.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153964, 39.948559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgh-vmk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1936 Liacouras Walk", "LATITUDE": 39.982434, "LONGITUDE": -75.155908, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 203.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 117.0, "Total Spend": 4121.0, "Total Transactions": 344.0, "Total Customers": 229.0, "Median Spend per Transaction": 11.7, "Median Spend per Customer": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.155908, 39.982434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "Name": "Chuck E. Cheese's", "Category": "Restaurants and Other Eating Places", "Address": "9 Snyder Ave. Corner of Front & Snyder", "LATITUDE": 39.921782, "LONGITUDE": -75.1449, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 110.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 18.0, "Total Spend": 6870.0, "Total Transactions": 122.0, "Total Customers": 31.0, "Median Spend per Transaction": 69.97, "Median Spend per Customer": 25.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1449, 39.921782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "238 S 20th St", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 81.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 1193.0, "Total Spend": 10259.0, "Total Transactions": 1227.0, "Total Customers": 788.0, "Median Spend per Transaction": 6.32, "Median Spend per Customer": 8.52 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pmb-btv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1051 South St", "LATITUDE": 39.943154, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2021, "Total Visits": 2518.0, "Total Visitors": 1370.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 13.0, "Total Spend": 20408.0, "Total Transactions": 988.0, "Total Customers": 589.0, "Median Spend per Transaction": 11.14, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.943154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6344 Stenton Ave", "LATITUDE": 40.059864, "LONGITUDE": -75.166534, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 248.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 7.0, "Total Spend": 2935.0, "Total Transactions": 174.0, "Total Customers": 93.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 20.69 }, "geometry": { "type": "Point", "coordinates": [ -75.166534, 40.059864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6191 Ridge Ave", "LATITUDE": 40.035531, "LONGITUDE": -75.217119, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 165.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 3.0, "Total Spend": 7837.0, "Total Transactions": 1117.0, "Total Customers": 566.0, "Median Spend per Transaction": 6.11, "Median Spend per Customer": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.217119, 40.035531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "Name": "Somerton Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "10853 Bustleton Ave", "LATITUDE": 40.110353, "LONGITUDE": -75.024095, "DATE_RANGE_START": 2021, "Total Visits": 1695.0, "Total Visitors": 1286.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 5.0, "Total Spend": 5392.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 200.0, "Median Spend per Customer": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024095, 40.110353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "Name": "Michaels Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "9739 Roosevelt Blvd", "LATITUDE": 40.082446, "LONGITUDE": -75.023342, "DATE_RANGE_START": 2021, "Total Visits": 907.0, "Total Visitors": 797.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 10.0, "Total Spend": 73556.0, "Total Transactions": 2076.0, "Total Customers": 1714.0, "Median Spend per Transaction": 24.37, "Median Spend per Customer": 27.46 }, "geometry": { "type": "Point", "coordinates": [ -75.023342, 40.082446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "Name": "Ross Stores", "Category": "Department Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029581, "LONGITUDE": -75.100406, "DATE_RANGE_START": 2021, "Total Visits": 566.0, "Total Visitors": 511.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 36.0, "Total Spend": 16558.0, "Total Transactions": 344.0, "Total Customers": 248.0, "Median Spend per Transaction": 34.37, "Median Spend per Customer": 41.17 }, "geometry": { "type": "Point", "coordinates": [ -75.100406, 40.029581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmd-s5z", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "2101 South St # 102", "LATITUDE": 39.945275, "LONGITUDE": -75.177239, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 74.0, "POI_CBG": 421010012013.0, "Median Dwell Time": 1.0, "Total Spend": 8449.0, "Total Transactions": 210.0, "Total Customers": 203.0, "Median Spend per Transaction": 32.38, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.177239, 39.945275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-psq", "Name": "Pho House Thang Long", "Category": "Restaurants and Other Eating Places", "Address": "177 W Girard Ave", "LATITUDE": 39.969594, "LONGITUDE": -75.138911, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 50.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 1.0, "Total Spend": 3002.0, "Total Transactions": 93.0, "Total Customers": 81.0, "Median Spend per Transaction": 27.32, "Median Spend per Customer": 27.59 }, "geometry": { "type": "Point", "coordinates": [ -75.138911, 39.969594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvw-hwk", "Name": "Quick & Quality", "Category": "Restaurants and Other Eating Places", "Address": "4836 Spruce St", "LATITUDE": 39.953576, "LONGITUDE": -75.219432, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 26.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 8.0, "Total Spend": 32.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 1.5, "Median Spend per Customer": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.219432, 39.953576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-gzf", "Name": "U Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1220 Locust St", "LATITUDE": 39.947628, "LONGITUDE": -75.161514, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 29.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 711.0, "Total Spend": 36723.0, "Total Transactions": 1411.0, "Total Customers": 675.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 31.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161514, 39.947628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "Name": "The Bottle Shop", "Category": "Beer, Wine, and Liquor Stores", "Address": "1616 E Passyunk Ave", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 75.0, "Total Spend": 21075.0, "Total Transactions": 864.0, "Total Customers": 580.0, "Median Spend per Transaction": 20.42, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgy-r6k", "Name": "Hopkins Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7700 Ridge Ave", "LATITUDE": 40.051828, "LONGITUDE": -75.236578, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 36.0, "POI_CBG": 421010219001.0, "Median Dwell Time": 4.0, "Total Spend": 635.0, "Total Transactions": 21.0, "Total Customers": 12.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 36.99 }, "geometry": { "type": "Point", "coordinates": [ -75.236578, 40.051828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "Name": "Bassetts Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "45 N 12th St", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 67.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 129.0, "Total Spend": 7814.0, "Total Transactions": 718.0, "Total Customers": 666.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "Name": "Palm Tree Gourmet", "Category": "Grocery Stores", "Address": "1940 Pine St", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 43.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 492.0, "Total Spend": 9842.0, "Total Transactions": 735.0, "Total Customers": 499.0, "Median Spend per Transaction": 11.22, "Median Spend per Customer": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "Name": "SquareBurger", "Category": "Restaurants and Other Eating Places", "Address": "200 N 6th St", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 69.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 69.0, "Total Spend": 1412.0, "Total Transactions": 112.0, "Total Customers": 79.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5733 N Broad St", "LATITUDE": 40.040654, "LONGITUDE": -75.144015, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 48.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 16.0, "Total Spend": 4582.0, "Total Transactions": 186.0, "Total Customers": 162.0, "Median Spend per Transaction": 23.62, "Median Spend per Customer": 25.79 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.040654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-t5f", "Name": "Golden Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "679 N Broad St", "LATITUDE": 39.965831, "LONGITUDE": -75.160375, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 323.0, "Total Spend": 1389.0, "Total Transactions": 57.0, "Total Customers": 50.0, "Median Spend per Transaction": 22.1, "Median Spend per Customer": 21.85 }, "geometry": { "type": "Point", "coordinates": [ -75.160375, 39.965831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-pn5", "Name": "U Town", "Category": "Restaurants and Other Eating Places", "Address": "110 S 40th St", "LATITUDE": 39.954979, "LONGITUDE": -75.202634, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 72.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 29.0, "Total Spend": 2560.0, "Total Transactions": 88.0, "Total Customers": 79.0, "Median Spend per Transaction": 25.16, "Median Spend per Customer": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.202634, 39.954979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Susquehanna Ave", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 6.0, "Total Spend": 295.0, "Total Transactions": 38.0, "Total Customers": 17.0, "Median Spend per Transaction": 5.32, "Median Spend per Customer": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "Name": "Frankford Hall", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1210 Frankford Ave", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2021, "Total Visits": 764.0, "Total Visitors": 675.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 63.0, "Total Spend": 96885.0, "Total Transactions": 3585.0, "Total Customers": 2484.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 28.99 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "942 Race St", "LATITUDE": 39.955218, "LONGITUDE": -75.155815, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 232.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 6212.0, "Total Transactions": 105.0, "Total Customers": 103.0, "Median Spend per Transaction": 49.12, "Median Spend per Customer": 51.51 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 39.955218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-xnq", "Name": "Dim Sum Garden", "Category": "Restaurants and Other Eating Places", "Address": "1020 Race St", "LATITUDE": 39.955197, "LONGITUDE": -75.156774, "DATE_RANGE_START": 2021, "Total Visits": 260.0, "Total Visitors": 234.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 20.0, "Total Spend": 773.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 161.85, "Median Spend per Customer": 161.85 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 39.955197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "Name": "New Delhi Indian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4004 Chestnut St", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 203.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 31.0, "Total Spend": 8694.0, "Total Transactions": 267.0, "Total Customers": 212.0, "Median Spend per Transaction": 21.06, "Median Spend per Customer": 36.57 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "Name": "Chicko Tako", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 115.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 11.0, "Total Spend": 3612.0, "Total Transactions": 174.0, "Total Customers": 146.0, "Median Spend per Transaction": 14.6, "Median Spend per Customer": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "Name": "Greek Lady", "Category": "Restaurants and Other Eating Places", "Address": "222 S 40th St", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2021, "Total Visits": 255.0, "Total Visitors": 208.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 106.0, "Total Spend": 21121.0, "Total Transactions": 1148.0, "Total Customers": 835.0, "Median Spend per Transaction": 13.66, "Median Spend per Customer": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4046 Woodhaven Rd", "LATITUDE": 40.086321, "LONGITUDE": -74.971748, "DATE_RANGE_START": 2021, "Total Visits": 1685.0, "Total Visitors": 967.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 2.0, "Total Spend": 18814.0, "Total Transactions": 2317.0, "Total Customers": 761.0, "Median Spend per Transaction": 6.71, "Median Spend per Customer": 9.06 }, "geometry": { "type": "Point", "coordinates": [ -74.971748, 40.086321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pj2-d9z", "Name": "T&S Express Market", "Category": "Automobile Dealers", "Address": "1200 E Hunting Park Ave", "LATITUDE": 40.010871, "LONGITUDE": -75.104013, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010191002.0, "Median Dwell Time": 3.0, "Total Spend": 123.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104013, 40.010871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-psq", "Name": "Magic Noodles", "Category": "Restaurants and Other Eating Places", "Address": "2833 Cottman Ave", "LATITUDE": 40.043529, "LONGITUDE": -75.052298, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 38.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 10.0, "Total Spend": 866.0, "Total Transactions": 29.0, "Total Customers": 29.0, "Median Spend per Transaction": 31.05, "Median Spend per Customer": 31.05 }, "geometry": { "type": "Point", "coordinates": [ -75.052298, 40.043529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phz-2ff", "Name": "Wyoming Pizza", "Category": "Restaurants and Other Eating Places", "Address": "601 E Wyoming Ave", "LATITUDE": 40.020426, "LONGITUDE": -75.113704, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 50.0, "POI_CBG": 421010289022.0, "Median Dwell Time": 1.0, "Total Spend": 338.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 13.8, "Median Spend per Customer": 15.86 }, "geometry": { "type": "Point", "coordinates": [ -75.113704, 40.020426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfz-ch5", "Name": "Craft Manayunk", "Category": "Restaurants and Other Eating Places", "Address": "4141 Main St", "LATITUDE": 40.022994, "LONGITUDE": -75.219064, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 109.0, "Total Spend": 18389.0, "Total Transactions": 308.0, "Total Customers": 270.0, "Median Spend per Transaction": 43.78, "Median Spend per Customer": 52.6 }, "geometry": { "type": "Point", "coordinates": [ -75.219064, 40.022994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "Name": "Moy Fong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7411 Stenton Ave", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 69.0, "POI_CBG": 421010264005.0, "Median Dwell Time": 3.0, "Total Spend": 4210.0, "Total Transactions": 193.0, "Total Customers": 146.0, "Median Spend per Transaction": 17.32, "Median Spend per Customer": 22.07 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "Name": "Blue Corn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "940 S 9th St", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2021, "Total Visits": 592.0, "Total Visitors": 449.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 82.0, "Total Spend": 3340.0, "Total Transactions": 119.0, "Total Customers": 86.0, "Median Spend per Transaction": 22.52, "Median Spend per Customer": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "Name": "Vernick Food & Drink", "Category": "Restaurants and Other Eating Places", "Address": "2031 Walnut St", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2021, "Total Visits": 2547.0, "Total Visitors": 1465.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 226.0, "Total Spend": 12232.0, "Total Transactions": 88.0, "Total Customers": 76.0, "Median Spend per Transaction": 89.38, "Median Spend per Customer": 120.52 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-54v", "Name": "Wood Street Pizza", "Category": "Restaurants and Other Eating Places", "Address": "325 N 12th St", "LATITUDE": 39.958437, "LONGITUDE": -75.158269, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 93.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 1105.0, "Total Spend": 11668.0, "Total Transactions": 358.0, "Total Customers": 267.0, "Median Spend per Transaction": 29.52, "Median Spend per Customer": 40.42 }, "geometry": { "type": "Point", "coordinates": [ -75.158269, 39.958437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-5zz", "Name": "Panda Garden", "Category": "Restaurants and Other Eating Places", "Address": "130 S 11th St", "LATITUDE": 39.949206, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2021, "Total Visits": 391.0, "Total Visitors": 177.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 228.0, "Total Spend": 971.0, "Total Transactions": 62.0, "Total Customers": 53.0, "Median Spend per Transaction": 13.45, "Median Spend per Customer": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.949206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2100 Red Lion Rd", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 251.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 2.0, "Total Spend": 1614.0, "Total Transactions": 124.0, "Total Customers": 72.0, "Median Spend per Transaction": 11.63, "Median Spend per Customer": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-zfz", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "60 N 23rd St", "LATITUDE": 39.956578, "LONGITUDE": -75.177927, "DATE_RANGE_START": 2021, "Total Visits": 437.0, "Total Visitors": 260.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 83.0, "Total Spend": 987.0, "Total Transactions": 74.0, "Total Customers": 29.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.177927, 39.956578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm7-qj9", "Name": "Cafe y Chocolate", "Category": "Restaurants and Other Eating Places", "Address": "1532 Snyder Ave", "LATITUDE": 39.924573, "LONGITUDE": -75.172685, "DATE_RANGE_START": 2021, "Total Visits": 325.0, "Total Visitors": 200.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 383.0, "Total Spend": 5425.0, "Total Transactions": 105.0, "Total Customers": 95.0, "Median Spend per Transaction": 45.88, "Median Spend per Customer": 51.12 }, "geometry": { "type": "Point", "coordinates": [ -75.172685, 39.924573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7901 Oxford Ave", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2021, "Total Visits": 780.0, "Total Visitors": 556.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 3.0, "Total Spend": 22661.0, "Total Transactions": 1883.0, "Total Customers": 1179.0, "Median Spend per Transaction": 10.18, "Median Spend per Customer": 13.24 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2344 N Broad St", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2021, "Total Visits": 272.0, "Total Visitors": 179.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 3.0, "Total Spend": 13754.0, "Total Transactions": 1742.0, "Total Customers": 900.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 9.28 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg9-ty9", "Name": "I Tea", "Category": "Restaurants and Other Eating Places", "Address": "1537 Spring Garden St", "LATITUDE": 39.963033, "LONGITUDE": -75.164167, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010133001.0, "Median Dwell Time": null, "Total Spend": 3646.0, "Total Transactions": 198.0, "Total Customers": 155.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.164167, 39.963033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1500 Spruce St", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2021, "Total Visits": 1053.0, "Total Visitors": 659.0, "POI_CBG": 421010012021.0, "Median Dwell Time": 37.0, "Total Spend": 35773.0, "Total Transactions": 2289.0, "Total Customers": 1014.0, "Median Spend per Transaction": 9.88, "Median Spend per Customer": 17.51 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1301 Rhawn St", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2021, "Total Visits": 1064.0, "Total Visitors": 754.0, "POI_CBG": 421010337022.0, "Median Dwell Time": 6.0, "Total Spend": 9606.0, "Total Transactions": 489.0, "Total Customers": 284.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 20.39 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5801 Roosevelt Blvd", "LATITUDE": 40.031321, "LONGITUDE": -75.083478, "DATE_RANGE_START": 2021, "Total Visits": 1437.0, "Total Visitors": 914.0, "POI_CBG": 421010318004.0, "Median Dwell Time": 5.0, "Total Spend": 651.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 26.76, "Median Spend per Customer": 26.76 }, "geometry": { "type": "Point", "coordinates": [ -75.083478, 40.031321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phj-rp9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7900 Ogontz Ave", "LATITUDE": 40.07278, "LONGITUDE": -75.15833, "DATE_RANGE_START": 2021, "Total Visits": 1788.0, "Total Visitors": 1076.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 7.0, "Total Spend": 1524.0, "Total Transactions": 50.0, "Total Customers": 29.0, "Median Spend per Transaction": 26.11, "Median Spend per Customer": 41.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15833, 40.07278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-8y9", "Name": "Forever 21", "Category": "Clothing Stores", "Address": "907 937a Market St #2175", "LATITUDE": 39.951978, "LONGITUDE": -75.155812, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 28988.0, "Total Transactions": 907.0, "Total Customers": 790.0, "Median Spend per Transaction": 24.02, "Median Spend per Customer": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155812, 39.951978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "Name": "Ritz Diner", "Category": "Restaurants and Other Eating Places", "Address": "8000 Roosevelt Blvd", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2021, "Total Visits": 905.0, "Total Visitors": 726.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 44.0, "Total Spend": 12103.0, "Total Transactions": 360.0, "Total Customers": 296.0, "Median Spend per Transaction": 30.64, "Median Spend per Customer": 36.91 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-jjv", "Name": "MAC Cosmetics", "Category": "Health and Personal Care Stores", "Address": "1734 Chestnut St Spc # Unit A", "LATITUDE": 39.951489, "LONGITUDE": -75.170193, "DATE_RANGE_START": 2021, "Total Visits": 2017.0, "Total Visitors": 1434.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 62.0, "Total Spend": 896.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 43.26, "Median Spend per Customer": 43.26 }, "geometry": { "type": "Point", "coordinates": [ -75.170193, 39.951489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100724, "LONGITUDE": -75.010588, "DATE_RANGE_START": 2021, "Total Visits": 881.0, "Total Visitors": 616.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 15.0, "Total Spend": 7597.0, "Total Transactions": 205.0, "Total Customers": 174.0, "Median Spend per Transaction": 26.86, "Median Spend per Customer": 26.86 }, "geometry": { "type": "Point", "coordinates": [ -75.010588, 40.100724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p8m-v2k", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6429 Sackett St", "LATITUDE": 40.029763, "LONGITUDE": -75.058989, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 265.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 4.0, "Total Spend": 991.0, "Total Transactions": 41.0, "Total Customers": 38.0, "Median Spend per Transaction": 22.88, "Median Spend per Customer": 23.34 }, "geometry": { "type": "Point", "coordinates": [ -75.058989, 40.029763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2290 W Oregon Ave", "LATITUDE": 39.91709, "LONGITUDE": -75.185434, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 291.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 7.0, "Total Spend": 16237.0, "Total Transactions": 368.0, "Total Customers": 334.0, "Median Spend per Transaction": 31.7, "Median Spend per Customer": 36.04 }, "geometry": { "type": "Point", "coordinates": [ -75.185434, 39.91709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-qs5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "813 Adams Ave", "LATITUDE": 40.031776, "LONGITUDE": -75.104312, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 55.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 18.0, "Total Spend": 4526.0, "Total Transactions": 580.0, "Total Customers": 301.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 9.46 }, "geometry": { "type": "Point", "coordinates": [ -75.104312, 40.031776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "Name": "A& A Grocery Store", "Category": "Grocery Stores", "Address": "5030 Haverford Ave", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 10.0, "POI_CBG": 421010093001.0, "Median Dwell Time": 8.0, "Total Spend": 1690.0, "Total Transactions": 146.0, "Total Customers": 84.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-gp9", "Name": "Umai Umai", "Category": "Restaurants and Other Eating Places", "Address": "533 N 22nd St", "LATITUDE": 39.964683, "LONGITUDE": -75.174102, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 5.0, "Total Spend": 302.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174102, 39.964683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "Name": "La Tienda MiniMarket", "Category": "Restaurants and Other Eating Places", "Address": "1247 Snyder Ave", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 2.0, "Total Spend": 31.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.56, "Median Spend per Customer": 6.56 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-zmk", "Name": "Hip Hemp Cafe", "Category": "Restaurants and Other Eating Places", "Address": "607 S 7th St", "LATITUDE": 39.94189, "LONGITUDE": -75.153788, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010015001.0, "Median Dwell Time": null, "Total Spend": 3684.0, "Total Transactions": 124.0, "Total Customers": 98.0, "Median Spend per Transaction": 28.26, "Median Spend per Customer": 39.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153788, 39.94189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-w8v", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "30th Street Station Market Street", "LATITUDE": 39.955679, "LONGITUDE": -75.181735, "DATE_RANGE_START": 2021, "Total Visits": 22380.0, "Total Visitors": 15420.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 12.0, "Total Spend": 362.0, "Total Transactions": 41.0, "Total Customers": 38.0, "Median Spend per Transaction": 9.98, "Median Spend per Customer": 9.99 }, "geometry": { "type": "Point", "coordinates": [ -75.181735, 39.955679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p7v-vxq", "Name": "Algon Auto Clinic", "Category": "Gasoline Stations", "Address": "7300 Algon Ave", "LATITUDE": 40.055758, "LONGITUDE": -75.073258, "DATE_RANGE_START": 2021, "Total Visits": 325.0, "Total Visitors": 205.0, "POI_CBG": 421010338002.0, "Median Dwell Time": 21.0, "Total Spend": 773.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073258, 40.055758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-qs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2500 Island Ave & Elmwood Ave", "LATITUDE": 39.912518, "LONGITUDE": -75.243563, "DATE_RANGE_START": 2021, "Total Visits": 1248.0, "Total Visitors": 842.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 4.0, "Total Spend": 783.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 23.45, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.243563, 39.912518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "Name": "Asia Express", "Category": "Restaurants and Other Eating Places", "Address": "7246 Castor Ave", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 60.0, "POI_CBG": 421010310001.0, "Median Dwell Time": 2.0, "Total Spend": 1508.0, "Total Transactions": 81.0, "Total Customers": 67.0, "Median Spend per Transaction": 15.2, "Median Spend per Customer": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "Name": "Mulberry Market", "Category": "Grocery Stores", "Address": "236 Arch St", "LATITUDE": 39.951945, "LONGITUDE": -75.144635, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 69.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 19108.0, "Total Transactions": 955.0, "Total Customers": 403.0, "Median Spend per Transaction": 16.63, "Median Spend per Customer": 25.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144635, 39.951945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "Name": "Nautica", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087648, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 3648.0, "Total Transactions": 105.0, "Total Customers": 86.0, "Median Spend per Transaction": 27.5, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2419 S 24th St", "LATITUDE": 39.921672, "LONGITUDE": -75.186144, "DATE_RANGE_START": 2021, "Total Visits": 1243.0, "Total Visitors": 943.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 20.0, "Total Spend": 20302.0, "Total Transactions": 408.0, "Total Customers": 353.0, "Median Spend per Transaction": 35.58, "Median Spend per Customer": 41.36 }, "geometry": { "type": "Point", "coordinates": [ -75.186144, 39.921672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p8d-rp9", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2200 Wheatsheaf Ln", "LATITUDE": 39.998893, "LONGITUDE": -75.091892, "DATE_RANGE_START": 2021, "Total Visits": 6353.0, "Total Visitors": 3866.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 27.0, "Total Spend": 226658.0, "Total Transactions": 4394.0, "Total Customers": 2673.0, "Median Spend per Transaction": 31.49, "Median Spend per Customer": 51.68 }, "geometry": { "type": "Point", "coordinates": [ -75.091892, 39.998893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8j-bkz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7310 Frankford Ave # 14", "LATITUDE": 40.037321, "LONGITUDE": -75.040337, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 186.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 8.0, "Total Spend": 541.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 15.05, "Median Spend per Customer": 15.05 }, "geometry": { "type": "Point", "coordinates": [ -75.040337, 40.037321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-ch5", "Name": "Fishtown Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1617 Frankford Ave", "LATITUDE": 39.974427, "LONGITUDE": -75.132999, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 5.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 350.0, "Total Spend": 7233.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 56.16, "Median Spend per Customer": 56.16 }, "geometry": { "type": "Point", "coordinates": [ -75.132999, 39.974427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1923 N 54th St", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 45.0, "Total Spend": 203.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 22.9, "Median Spend per Customer": 25.32 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pnx-sh5", "Name": "The International", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1624 N Front St", "LATITUDE": 39.974951, "LONGITUDE": -75.134534, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010157003.0, "Median Dwell Time": null, "Total Spend": 2723.0, "Total Transactions": 48.0, "Total Customers": 43.0, "Median Spend per Transaction": 33.71, "Median Spend per Customer": 58.79 }, "geometry": { "type": "Point", "coordinates": [ -75.134534, 39.974951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-vxq", "Name": "Discount Shop", "Category": "Grocery Stores", "Address": "6534 Frankford Ave", "LATITUDE": 40.029541, "LONGITUDE": -75.055611, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 26.0, "POI_CBG": 421010320003.0, "Median Dwell Time": 205.0, "Total Spend": 2030.0, "Total Transactions": 186.0, "Total Customers": 84.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.055611, 40.029541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8n-6kz", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6301 Frankford Ave", "LATITUDE": 40.027244, "LONGITUDE": -75.059172, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 100.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 215.0, "Total Spend": 2026.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 45.59, "Median Spend per Customer": 74.91 }, "geometry": { "type": "Point", "coordinates": [ -75.059172, 40.027244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "1500 N 50th St", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2021, "Total Visits": 2635.0, "Total Visitors": 1609.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 14.0, "Total Spend": 375908.0, "Total Transactions": 4905.0, "Total Customers": 2718.0, "Median Spend per Transaction": 34.46, "Median Spend per Customer": 44.43 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3901 Aramingo Ave", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2021, "Total Visits": 1196.0, "Total Visitors": 792.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 2.0, "Total Spend": 10310.0, "Total Transactions": 468.0, "Total Customers": 298.0, "Median Spend per Transaction": 11.36, "Median Spend per Customer": 20.94 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1105 N 63rd St # 09", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 162.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 5.0, "Total Spend": 20476.0, "Total Transactions": 795.0, "Total Customers": 525.0, "Median Spend per Transaction": 13.94, "Median Spend per Customer": 22.01 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "Name": "Bloomingdale's Outlet Philadelphia", "Category": "Department Stores", "Address": "1625 Chestnut St Ste 240 248", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 99.0, "Total Spend": 13030.0, "Total Transactions": 203.0, "Total Customers": 169.0, "Median Spend per Transaction": 43.17, "Median Spend per Customer": 46.58 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6430 Castor Ave", "LATITUDE": 40.040673, "LONGITUDE": -75.076835, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 205.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 16.0, "Total Spend": 350.0, "Total Transactions": 29.0, "Total Customers": 19.0, "Median Spend per Transaction": 5.15, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.076835, 40.040673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4617 N 5th St", "LATITUDE": 40.021323, "LONGITUDE": -75.133522, "DATE_RANGE_START": 2021, "Total Visits": 296.0, "Total Visitors": 191.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 10.0, "Total Spend": 319.0, "Total Transactions": 21.0, "Total Customers": 12.0, "Median Spend per Transaction": 15.88, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133522, 40.021323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "Name": "Cottman Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "7544 Frankford Ave", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2021, "Total Visits": 301.0, "Total Visitors": 167.0, "POI_CBG": 421010331013.0, "Median Dwell Time": 5.0, "Total Spend": 8396.0, "Total Transactions": 325.0, "Total Customers": 181.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 34.27 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-qvf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.03237, "LONGITUDE": -75.101559, "DATE_RANGE_START": 2021, "Total Visits": 301.0, "Total Visitors": 282.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 8.0, "Total Spend": 5163.0, "Total Transactions": 84.0, "Total Customers": 76.0, "Median Spend per Transaction": 53.99, "Median Spend per Customer": 56.36 }, "geometry": { "type": "Point", "coordinates": [ -75.101559, 40.03237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9q-ht9", "Name": "Vince's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2550 Grant Ave Ste 350", "LATITUDE": 40.078713, "LONGITUDE": -75.027145, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 88.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 808.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 26.07, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027145, 40.078713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St Ste 5", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 64.0, "Total Spend": 5388.0, "Total Transactions": 332.0, "Total Customers": 243.0, "Median Spend per Transaction": 12.33, "Median Spend per Customer": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.011206, "LONGITUDE": -75.113008, "DATE_RANGE_START": 2021, "Total Visits": 556.0, "Total Visitors": 332.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 4.0, "Total Spend": 12755.0, "Total Transactions": 1379.0, "Total Customers": 628.0, "Median Spend per Transaction": 7.84, "Median Spend per Customer": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.113008, 40.011206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8902 Frankford Ave", "LATITUDE": 40.050984, "LONGITUDE": -75.010119, "DATE_RANGE_START": 2021, "Total Visits": 1544.0, "Total Visitors": 742.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 2.0, "Total Spend": 8530.0, "Total Transactions": 1172.0, "Total Customers": 561.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 8.61 }, "geometry": { "type": "Point", "coordinates": [ -75.010119, 40.050984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "Name": "Shot Tower Coffee", "Category": "Restaurants and Other Eating Places", "Address": "542 Christian St", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 84.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 362.0, "Total Spend": 8796.0, "Total Transactions": 1038.0, "Total Customers": 516.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 9.93 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-75z", "Name": "Ninja Bao", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd Ste 6", "LATITUDE": 39.953417, "LONGITUDE": -75.165928, "DATE_RANGE_START": 2021, "Total Visits": 1909.0, "Total Visitors": 1301.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 91.0, "Total Spend": 1032.0, "Total Transactions": 48.0, "Total Customers": 36.0, "Median Spend per Transaction": 16.43, "Median Spend per Customer": 22.04 }, "geometry": { "type": "Point", "coordinates": [ -75.165928, 39.953417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7w-c89", "Name": "Philly's Finest Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7962 Dungan Rd", "LATITUDE": 40.068215, "LONGITUDE": -75.06872, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 138.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 55.0, "Total Spend": 1374.0, "Total Transactions": 41.0, "Total Customers": 17.0, "Median Spend per Transaction": 30.22, "Median Spend per Customer": 58.13 }, "geometry": { "type": "Point", "coordinates": [ -75.06872, 40.068215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-y5f", "Name": "Mineralistic", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "319 South St", "LATITUDE": 39.941629, "LONGITUDE": -75.148231, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 72.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 4410.0, "Total Transactions": 107.0, "Total Customers": 100.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.148231, 39.941629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-jd9", "Name": "Watch Co", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952246, "LONGITUDE": -75.168308, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 99.0, "Total Spend": 1363.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168308, 39.952246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7b-kpv", "Name": "China City", "Category": "Restaurants and Other Eating Places", "Address": "9200 Frankford Ave", "LATITUDE": 40.055685, "LONGITUDE": -75.004529, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010348031.0, "Median Dwell Time": null, "Total Spend": 141.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 18.77, "Median Spend per Customer": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.004529, 40.055685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "Name": "Quetzally", "Category": "Restaurants and Other Eating Places", "Address": "1225 Fitzwater St", "LATITUDE": 39.941598, "LONGITUDE": -75.163087, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 4.0, "Total Spend": 1310.0, "Total Transactions": 50.0, "Total Customers": 43.0, "Median Spend per Transaction": 28.62, "Median Spend per Customer": 29.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163087, 39.941598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-mp9", "Name": "Concourse Dance Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1635 Market St", "LATITUDE": 39.95318, "LONGITUDE": -75.167893, "DATE_RANGE_START": 2021, "Total Visits": 1055.0, "Total Visitors": 718.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 70.0, "Total Spend": 63385.0, "Total Transactions": 2663.0, "Total Customers": 1434.0, "Median Spend per Transaction": 18.95, "Median Spend per Customer": 34.98 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 39.95318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-snq", "Name": "Alice Pizza", "Category": "Restaurants and Other Eating Places", "Address": "235 S 15th St", "LATITUDE": 39.948159, "LONGITUDE": -75.166048, "DATE_RANGE_START": 2021, "Total Visits": 4076.0, "Total Visitors": 2654.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 98.0, "Total Spend": 9108.0, "Total Transactions": 456.0, "Total Customers": 389.0, "Median Spend per Transaction": 11.66, "Median Spend per Customer": 13.63 }, "geometry": { "type": "Point", "coordinates": [ -75.166048, 39.948159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-fcq", "Name": "Kanella", "Category": "Restaurants and Other Eating Places", "Address": "1001 Spruce St", "LATITUDE": 39.946359, "LONGITUDE": -75.157966, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 148.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 5.0, "Total Spend": 1979.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 51.84, "Median Spend per Customer": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.157966, 39.946359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "Name": "El Vez", "Category": "Restaurants and Other Eating Places", "Address": "121 S 13th St", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2021, "Total Visits": 525.0, "Total Visitors": 382.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 47.0, "Total Spend": 175519.0, "Total Transactions": 2117.0, "Total Customers": 1945.0, "Median Spend per Transaction": 65.21, "Median Spend per Customer": 68.16 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-7nq", "Name": "Jam Rock", "Category": "Restaurants and Other Eating Places", "Address": "6155 Woodland Ave", "LATITUDE": 39.928385, "LONGITUDE": -75.230768, "DATE_RANGE_START": 2021, "Total Visits": 819.0, "Total Visitors": 589.0, "POI_CBG": 421010066004.0, "Median Dwell Time": 10.0, "Total Spend": 1495.0, "Total Transactions": 72.0, "Total Customers": 48.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.230768, 39.928385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pj2-94v", "Name": "Hoagies Plus", "Category": "Restaurants and Other Eating Places", "Address": "752 E Tioga St", "LATITUDE": 40.0012, "LONGITUDE": -75.114597, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 86.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 60.0, "Total Spend": 1304.0, "Total Transactions": 53.0, "Total Customers": 41.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 21.28 }, "geometry": { "type": "Point", "coordinates": [ -75.114597, 40.0012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7yv", "Name": "Hunger Burger", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953665, "LONGITUDE": -75.159753, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 174.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 8.0, "Total Spend": 570.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 19.78, "Median Spend per Customer": 19.78 }, "geometry": { "type": "Point", "coordinates": [ -75.159753, 39.953665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-fmk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "1624 Cottman Ave", "LATITUDE": 40.054375, "LONGITUDE": -75.072167, "DATE_RANGE_START": 2021, "Total Visits": 425.0, "Total Visitors": 329.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 6.0, "Total Spend": 40.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.47, "Median Spend per Customer": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.072167, 40.054375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-kcq", "Name": "Sushi Ya", "Category": "Restaurants and Other Eating Places", "Address": "1418 W Girard Ave", "LATITUDE": 39.973653, "LONGITUDE": -75.177969, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 91.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 515.0, "Total Spend": 895.0, "Total Transactions": 38.0, "Total Customers": 29.0, "Median Spend per Transaction": 15.99, "Median Spend per Customer": 33.07 }, "geometry": { "type": "Point", "coordinates": [ -75.177969, 39.973653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2021, "Total Visits": 506.0, "Total Visitors": 313.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 4.0, "Total Spend": 7901.0, "Total Transactions": 1043.0, "Total Customers": 504.0, "Median Spend per Transaction": 6.26, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@63s-dvy-wtv", "Name": "Don Barriga Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "4443 Spruce St Apt 1", "LATITUDE": 39.953099, "LONGITUDE": -75.211951, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 26.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 21.0, "Total Spend": 7690.0, "Total Transactions": 253.0, "Total Customers": 205.0, "Median Spend per Transaction": 29.96, "Median Spend per Customer": 31.39 }, "geometry": { "type": "Point", "coordinates": [ -75.211951, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-tgk", "Name": "Southside Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5043 Wissahickon Ave", "LATITUDE": 40.019691, "LONGITUDE": -75.174271, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 33.0, "POI_CBG": 421010243002.0, "Median Dwell Time": 520.0, "Total Spend": 245.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174271, 40.019691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6114 Lancaster Ave", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 62.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 2.0, "Total Spend": 1148.0, "Total Transactions": 74.0, "Total Customers": 55.0, "Median Spend per Transaction": 15.75, "Median Spend per Customer": 16.27 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "161 W Chelten Ave", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 64.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 3.0, "Total Spend": 576.0, "Total Transactions": 43.0, "Total Customers": 38.0, "Median Spend per Transaction": 9.65, "Median Spend per Customer": 10.29 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4000 Woodhaven Rd Ste 250", "LATITUDE": 40.084825, "LONGITUDE": -74.9723, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 126.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 3.0, "Total Spend": 16377.0, "Total Transactions": 716.0, "Total Customers": 430.0, "Median Spend per Transaction": 13.61, "Median Spend per Customer": 20.21 }, "geometry": { "type": "Point", "coordinates": [ -74.9723, 40.084825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-vcq", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "1851 S Columbus Blvd", "LATITUDE": 39.923962, "LONGITUDE": -75.139231, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 177.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 8.0, "Total Spend": 3383.0, "Total Transactions": 33.0, "Total Customers": 31.0, "Median Spend per Transaction": 109.49, "Median Spend per Customer": 114.98 }, "geometry": { "type": "Point", "coordinates": [ -75.139231, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-qpv", "Name": "Via Bicycle", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "622 S Broad St", "LATITUDE": 39.943026, "LONGITUDE": -75.166002, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 72.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 56.0, "Total Spend": 4781.0, "Total Transactions": 67.0, "Total Customers": 62.0, "Median Spend per Transaction": 59.75, "Median Spend per Customer": 68.07 }, "geometry": { "type": "Point", "coordinates": [ -75.166002, 39.943026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8045 Frankford Ave Ste 1", "LATITUDE": 40.041766, "LONGITUDE": -75.026083, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 119.0, "POI_CBG": 421010329001.0, "Median Dwell Time": 8.0, "Total Spend": 428.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 16.31, "Median Spend per Customer": 14.51 }, "geometry": { "type": "Point", "coordinates": [ -75.026083, 40.041766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7620 Lindbergh Blvd Ste B", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 272.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 6.0, "Total Spend": 865.0, "Total Transactions": 53.0, "Total Customers": 48.0, "Median Spend per Transaction": 13.8, "Median Spend per Customer": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5700 Roosevelt Blvd", "LATITUDE": 40.032503, "LONGITUDE": -75.08527, "DATE_RANGE_START": 2021, "Total Visits": 1482.0, "Total Visitors": 1014.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 4.0, "Total Spend": 254.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 25.1, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08527, 40.032503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "500 W Erie Ave", "LATITUDE": 40.007189, "LONGITUDE": -75.137271, "DATE_RANGE_START": 2021, "Total Visits": 990.0, "Total Visitors": 728.0, "POI_CBG": 421010199001.0, "Median Dwell Time": 5.0, "Total Spend": 549.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 24.12, "Median Spend per Customer": 38.61 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.007189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "800 E Washington Ln", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2021, "Total Visits": 979.0, "Total Visitors": 616.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 5.0, "Total Spend": 17295.0, "Total Transactions": 821.0, "Total Customers": 516.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 27.51 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-x89", "Name": "Twin Smoke Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "1537 S 10th St", "LATITUDE": 39.929672, "LONGITUDE": -75.161301, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 220.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 3.0, "Total Spend": 1289.0, "Total Transactions": 57.0, "Total Customers": 53.0, "Median Spend per Transaction": 20.51, "Median Spend per Customer": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.161301, 39.929672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg3-jqf", "Name": "Jansen", "Category": "Restaurants and Other Eating Places", "Address": "7402 Germantown Ave", "LATITUDE": 40.062669, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 45.0, "POI_CBG": 421010388001.0, "Median Dwell Time": 203.0, "Total Spend": 15383.0, "Total Transactions": 48.0, "Total Customers": 41.0, "Median Spend per Transaction": 252.33, "Median Spend per Customer": 265.26 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 40.062669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "Name": "Triangle Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1338 S 10th St", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 50.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 61.0, "Total Spend": 33543.0, "Total Transactions": 673.0, "Total Customers": 549.0, "Median Spend per Transaction": 39.12, "Median Spend per Customer": 44.86 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "Name": "El Fuego", "Category": "Restaurants and Other Eating Places", "Address": "723 Walnut St", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 57.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 20.0, "Total Spend": 1061.0, "Total Transactions": 93.0, "Total Customers": 74.0, "Median Spend per Transaction": 9.35, "Median Spend per Customer": 13.75 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "Name": "Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1309 Sansom St", "LATITUDE": 39.95002, "LONGITUDE": -75.162328, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 67.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 27.0, "Total Spend": 128067.0, "Total Transactions": 2570.0, "Total Customers": 2141.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162328, 39.95002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "Name": "Four Seasons Hotels and Resorts", "Category": "Traveler Accommodation", "Address": "1 N 19th St", "LATITUDE": 39.955061, "LONGITUDE": -75.170762, "DATE_RANGE_START": 2021, "Total Visits": 3081.0, "Total Visitors": 1745.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 299.0, "Total Spend": 39715.0, "Total Transactions": 267.0, "Total Customers": 236.0, "Median Spend per Transaction": 38.53, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170762, 39.955061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "Name": "Dolce Carini Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1929 Chestnut St", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 93.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 98.0, "Total Spend": 3125.0, "Total Transactions": 220.0, "Total Customers": 112.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 18.32 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pj6-k4v", "Name": "Mari Mari", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St Ste 124", "LATITUDE": 40.04511, "LONGITUDE": -75.117199, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 21.0, "Total Spend": 314.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.117199, 40.04511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgm-3qz", "Name": "LeBus East Falls", "Category": "Restaurants and Other Eating Places", "Address": "4201 Ridge Ave", "LATITUDE": 40.00891, "LONGITUDE": -75.193713, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 282.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 16.0, "Total Spend": 1236.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 38.33, "Median Spend per Customer": 34.09 }, "geometry": { "type": "Point", "coordinates": [ -75.193713, 40.00891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-kcq", "Name": "Sweet Charlie's", "Category": "Restaurants and Other Eating Places", "Address": "1921 Walnut St", "LATITUDE": 39.95076, "LONGITUDE": -75.173342, "DATE_RANGE_START": 2021, "Total Visits": 1353.0, "Total Visitors": 988.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 81.0, "Total Spend": 2773.0, "Total Transactions": 246.0, "Total Customers": 232.0, "Median Spend per Transaction": 8.69, "Median Spend per Customer": 9.07 }, "geometry": { "type": "Point", "coordinates": [ -75.173342, 39.95076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2211 Stenton Ave", "LATITUDE": 40.055857, "LONGITUDE": -75.157863, "DATE_RANGE_START": 2021, "Total Visits": 606.0, "Total Visitors": 413.0, "POI_CBG": 421010265006.0, "Median Dwell Time": 4.0, "Total Spend": 10605.0, "Total Transactions": 902.0, "Total Customers": 604.0, "Median Spend per Transaction": 9.35, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157863, 40.055857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-7yv", "Name": "Old City Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953757, "LONGITUDE": -75.158885, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 1899.0, "Total Transactions": 234.0, "Total Customers": 191.0, "Median Spend per Transaction": 5.35, "Median Spend per Customer": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158885, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-8sq", "Name": "Cinnabon", "Category": "Restaurants and Other Eating Places", "Address": "1101 Market St", "LATITUDE": 39.952174, "LONGITUDE": -75.158425, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 2776.0, "Total Transactions": 317.0, "Total Customers": 267.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 8.15 }, "geometry": { "type": "Point", "coordinates": [ -75.158425, 39.952174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6738 Bustleton Ave", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 3.0, "Total Spend": 7907.0, "Total Transactions": 298.0, "Total Customers": 227.0, "Median Spend per Transaction": 21.37, "Median Spend per Customer": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pp4-vfz", "Name": "Franco's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2573 Tulip St", "LATITUDE": 39.982045, "LONGITUDE": -75.121584, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010160004.0, "Median Dwell Time": null, "Total Spend": 2937.0, "Total Transactions": 124.0, "Total Customers": 95.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 23.07 }, "geometry": { "type": "Point", "coordinates": [ -75.121584, 39.982045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "6863 Bustleton Ave", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010314022.0, "Median Dwell Time": 20.0, "Total Spend": 3232.0, "Total Transactions": 64.0, "Total Customers": 64.0, "Median Spend per Transaction": 39.97, "Median Spend per Customer": 39.97 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pgg-qs5", "Name": "32nd Street Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3200 W Allegheny Ave", "LATITUDE": 40.005082, "LONGITUDE": -75.181898, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 21.0, "Total Spend": 1139.0, "Total Transactions": 48.0, "Total Customers": 29.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181898, 40.005082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-ph6-q4v", "Name": "Lucky Garden", "Category": "Restaurants and Other Eating Places", "Address": "5528 Lansdowne Ave", "LATITUDE": 39.976559, "LONGITUDE": -75.232622, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010112007.0, "Median Dwell Time": null, "Total Spend": 123.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 13.11, "Median Spend per Customer": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.232622, 39.976559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-45f", "Name": "Md Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1641 N Franklin St", "LATITUDE": 39.977208, "LONGITUDE": -75.147273, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 17.0, "POI_CBG": 421010145001.0, "Median Dwell Time": 313.0, "Total Spend": 1226.0, "Total Transactions": 100.0, "Total Customers": 98.0, "Median Spend per Transaction": 5.19, "Median Spend per Customer": 5.19 }, "geometry": { "type": "Point", "coordinates": [ -75.147273, 39.977208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-w8v", "Name": "Main Street Madness", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3791 Main St", "LATITUDE": 40.018, "LONGITUDE": -75.213362, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 17.0, "POI_CBG": 421010209003.0, "Median Dwell Time": 399.0, "Total Spend": 1678.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 63.0, "Median Spend per Customer": 74.5 }, "geometry": { "type": "Point", "coordinates": [ -75.213362, 40.018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7b-kj9", "Name": "Villagio Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9233 Frankford Ave", "LATITUDE": 40.055388, "LONGITUDE": -75.003512, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 43.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 488.0, "Total Spend": 1479.0, "Total Transactions": 53.0, "Total Customers": 45.0, "Median Spend per Transaction": 25.47, "Median Spend per Customer": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.003512, 40.055388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "4700 N 15th St", "LATITUDE": 40.025459, "LONGITUDE": -75.149625, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 45.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 119.0, "Total Spend": 402.0, "Total Transactions": 43.0, "Total Customers": 36.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.149625, 40.025459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1901 W Oregon Ave", "LATITUDE": 39.918299, "LONGITUDE": -75.180698, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 60.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 7.0, "Total Spend": 15316.0, "Total Transactions": 685.0, "Total Customers": 391.0, "Median Spend per Transaction": 12.05, "Median Spend per Customer": 19.86 }, "geometry": { "type": "Point", "coordinates": [ -75.180698, 39.918299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "Name": "Fat Tuesday", "Category": "Specialty Food Stores", "Address": "431 South St", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 62.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 70.0, "Total Spend": 20729.0, "Total Transactions": 1093.0, "Total Customers": 895.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph6-whq", "Name": "Italian Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2035 N 63rd St", "LATITUDE": 39.986561, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 37.0, "Total Spend": 1284.0, "Total Transactions": 57.0, "Total Customers": 36.0, "Median Spend per Transaction": 16.95, "Median Spend per Customer": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "Name": "Volo Coffeehouse", "Category": "Restaurants and Other Eating Places", "Address": "4360 Main St", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 25374.0, "Total Transactions": 2212.0, "Total Customers": 1036.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-kcq", "Name": "Holme Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2907 Holme Ave", "LATITUDE": 40.056893, "LONGITUDE": -75.027632, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010347021.0, "Median Dwell Time": 5.0, "Total Spend": 642.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 18.01, "Median Spend per Customer": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.027632, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-gp9", "Name": "Mercato BYOB", "Category": "Restaurants and Other Eating Places", "Address": "1216 Spruce St", "LATITUDE": 39.946499, "LONGITUDE": -75.161768, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 1038.0, "Total Spend": 4263.0, "Total Transactions": 55.0, "Total Customers": 53.0, "Median Spend per Transaction": 60.62, "Median Spend per Customer": 60.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161768, 39.946499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "Name": "China Royal", "Category": "Restaurants and Other Eating Places", "Address": "2620 Rhawn St", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010333003.0, "Median Dwell Time": null, "Total Spend": 1978.0, "Total Transactions": 93.0, "Total Customers": 72.0, "Median Spend per Transaction": 18.5, "Median Spend per Customer": 22.95 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "Name": "Hoagie Factory", "Category": "Restaurants and Other Eating Places", "Address": "2121 72nd Ave", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010266007.0, "Median Dwell Time": 3.0, "Total Spend": 2960.0, "Total Transactions": 124.0, "Total Customers": 95.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.22 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "Name": "Jack B Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "748 S 4th St", "LATITUDE": 39.939115, "LONGITUDE": -75.149838, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 4.0, "Total Spend": 6509.0, "Total Transactions": 60.0, "Total Customers": 50.0, "Median Spend per Transaction": 48.6, "Median Spend per Customer": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149838, 39.939115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "Name": "Bellini", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "220 S 16th St", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 212.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 21.0, "Total Spend": 7184.0, "Total Transactions": 41.0, "Total Customers": 41.0, "Median Spend per Transaction": 116.8, "Median Spend per Customer": 116.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "Name": "City Pizza", "Category": "Restaurants and Other Eating Places", "Address": "100 Snyder Ave", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2021, "Total Visits": 401.0, "Total Visitors": 272.0, "POI_CBG": 421010042013.0, "Median Dwell Time": 24.0, "Total Spend": 6469.0, "Total Transactions": 267.0, "Total Customers": 234.0, "Median Spend per Transaction": 20.85, "Median Spend per Customer": 22.45 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgk-2rk", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "1601 W Lehigh Ave", "LATITUDE": 39.994689, "LONGITUDE": -75.158268, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 60.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 3.0, "Total Spend": 54.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.26, "Median Spend per Customer": 11.26 }, "geometry": { "type": "Point", "coordinates": [ -75.158268, 39.994689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "Name": "Tio Flores", "Category": "Restaurants and Other Eating Places", "Address": "1600 South St", "LATITUDE": 39.94381, "LONGITUDE": -75.168972, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 146.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 28.0, "Total Spend": 5438.0, "Total Transactions": 107.0, "Total Customers": 84.0, "Median Spend per Transaction": 36.7, "Median Spend per Customer": 54.69 }, "geometry": { "type": "Point", "coordinates": [ -75.168972, 39.94381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pmb-v75", "Name": "Mei Mei Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "33 S 2nd St", "LATITUDE": 39.948931, "LONGITUDE": -75.143532, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 215.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 60.0, "Total Spend": 1484.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 84.25, "Median Spend per Customer": 84.25 }, "geometry": { "type": "Point", "coordinates": [ -75.143532, 39.948931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg9-vs5", "Name": "The Fairview", "Category": "Restaurants and Other Eating Places", "Address": "601 N 21st St", "LATITUDE": 39.965375, "LONGITUDE": -75.172387, "DATE_RANGE_START": 2021, "Total Visits": 284.0, "Total Visitors": 103.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 461.0, "Total Spend": 4134.0, "Total Transactions": 62.0, "Total Customers": 57.0, "Median Spend per Transaction": 51.97, "Median Spend per Customer": 46.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172387, 39.965375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-224@628-pg2-cdv", "Name": "Cherish Philly", "Category": "Restaurants and Other Eating Places", "Address": "7060 Germantown Ave", "LATITUDE": 40.058226, "LONGITUDE": -75.189354, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 88.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 102.0, "Total Spend": 216.0, "Total Transactions": 21.0, "Total Customers": 12.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.189354, 40.058226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "Name": "DiNapoli Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Front St", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 69.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 3.0, "Total Spend": 1054.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 20.1, "Median Spend per Customer": 36.14 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-djv", "Name": "Quality Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6438 Rising Sun Ave", "LATITUDE": 40.050855, "LONGITUDE": -75.094676, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 72.0, "POI_CBG": 421010306007.0, "Median Dwell Time": 3.0, "Total Spend": 1060.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 23.13, "Median Spend per Customer": 27.27 }, "geometry": { "type": "Point", "coordinates": [ -75.094676, 40.050855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "6350 Roosevelt Blvd", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 124.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 6.0, "Total Spend": 9348.0, "Total Transactions": 415.0, "Total Customers": 337.0, "Median Spend per Transaction": 21.29, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Ridge Ave", "LATITUDE": 40.030371, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 279.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 4.0, "Total Spend": 2252.0, "Total Transactions": 150.0, "Total Customers": 124.0, "Median Spend per Transaction": 13.26, "Median Spend per Customer": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6506 Frankford Ave", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2021, "Total Visits": 1692.0, "Total Visitors": 1057.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 4.0, "Total Spend": 36902.0, "Total Transactions": 3442.0, "Total Customers": 1487.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9440 State Rd", "LATITUDE": 40.049354, "LONGITUDE": -74.989522, "DATE_RANGE_START": 2021, "Total Visits": 1513.0, "Total Visitors": 916.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 3.0, "Total Spend": 29024.0, "Total Transactions": 2842.0, "Total Customers": 1086.0, "Median Spend per Transaction": 8.77, "Median Spend per Customer": 13.28 }, "geometry": { "type": "Point", "coordinates": [ -74.989522, 40.049354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "Name": "Eye Encounters", "Category": "Health and Personal Care Stores", "Address": "1925 Chestnut St", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2021, "Total Visits": 4212.0, "Total Visitors": 2685.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 51.0, "Total Spend": 1456.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 79.0, "Median Spend per Customer": 79.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-st9", "Name": "Osteria", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "640 N Broad St", "LATITUDE": 39.965046, "LONGITUDE": -75.161654, "DATE_RANGE_START": 2021, "Total Visits": 823.0, "Total Visitors": 537.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 200.0, "Total Spend": 27845.0, "Total Transactions": 222.0, "Total Customers": 220.0, "Median Spend per Transaction": 82.08, "Median Spend per Customer": 84.38 }, "geometry": { "type": "Point", "coordinates": [ -75.161654, 39.965046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5726 Baltimore Ave # 46", "LATITUDE": 39.945629, "LONGITUDE": -75.237997, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 200.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 11.0, "Total Spend": 14845.0, "Total Transactions": 277.0, "Total Customers": 241.0, "Median Spend per Transaction": 27.18, "Median Spend per Customer": 29.69 }, "geometry": { "type": "Point", "coordinates": [ -75.237997, 39.945629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pj2-d35", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1050 E Hunting Park Ave", "LATITUDE": 40.010891, "LONGITUDE": -75.107156, "DATE_RANGE_START": 2021, "Total Visits": 174.0, "Total Visitors": 141.0, "POI_CBG": 421010191006.0, "Median Dwell Time": 6.0, "Total Spend": 3530.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 89.65, "Median Spend per Customer": 89.65 }, "geometry": { "type": "Point", "coordinates": [ -75.107156, 40.010891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-jgk", "Name": "AM Food Market", "Category": "Grocery Stores", "Address": "1200 N 52nd St", "LATITUDE": 39.971594, "LONGITUDE": -75.225601, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 215.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 1.0, "Total Spend": 2962.0, "Total Transactions": 294.0, "Total Customers": 165.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.225601, 39.971594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22h@628-pmb-7yv", "Name": "Sweet As Fudge Candy Shoppe", "Category": "Specialty Food Stores", "Address": "12th & Arch St Reading Terminal Market", "LATITUDE": 39.954075, "LONGITUDE": -75.15933, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 62.0, "Total Spend": 3204.0, "Total Transactions": 243.0, "Total Customers": 222.0, "Median Spend per Transaction": 11.81, "Median Spend per Customer": 12.34 }, "geometry": { "type": "Point", "coordinates": [ -75.15933, 39.954075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2200 Wheatsheaf Ln Ste E3", "LATITUDE": 39.999174, "LONGITUDE": -75.093264, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 126.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 3.0, "Total Spend": 1329.0, "Total Transactions": 48.0, "Total Customers": 43.0, "Median Spend per Transaction": 18.3, "Median Spend per Customer": 22.99 }, "geometry": { "type": "Point", "coordinates": [ -75.093264, 39.999174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2601 Penrose Ave", "LATITUDE": 39.907673, "LONGITUDE": -75.189086, "DATE_RANGE_START": 2021, "Total Visits": 2800.0, "Total Visitors": 1974.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 5.0, "Total Spend": 1736.0, "Total Transactions": 57.0, "Total Customers": 48.0, "Median Spend per Transaction": 20.59, "Median Spend per Customer": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.189086, 39.907673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029566, "LONGITUDE": -75.100398, "DATE_RANGE_START": 2021, "Total Visits": 566.0, "Total Visitors": 511.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 36.0, "Total Spend": 5626.0, "Total Transactions": 146.0, "Total Customers": 107.0, "Median Spend per Transaction": 24.6, "Median Spend per Customer": 32.11 }, "geometry": { "type": "Point", "coordinates": [ -75.100398, 40.029566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pp2-sdv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3829 Aramingo Ave", "LATITUDE": 39.995956, "LONGITUDE": -75.09064, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 93.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 3.0, "Total Spend": 330.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 8.56, "Median Spend per Customer": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.09064, 39.995956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "Name": "Circle Thrift", "Category": "Used Merchandise Stores", "Address": "2233 Frankford Ave", "LATITUDE": 39.980269, "LONGITUDE": -75.128616, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 196.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 63.0, "Total Spend": 3297.0, "Total Transactions": 203.0, "Total Customers": 167.0, "Median Spend per Transaction": 12.64, "Median Spend per Customer": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.128616, 39.980269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "Name": "Northeast Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "7324 Castor Ave", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 134.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 468.0, "Total Spend": 7716.0, "Total Transactions": 248.0, "Total Customers": 184.0, "Median Spend per Transaction": 29.13, "Median Spend per Customer": 35.45 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pp5-5vf", "Name": "Buzz Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1800 N Howard St", "LATITUDE": 39.977401, "LONGITUDE": -75.135043, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010157002.0, "Median Dwell Time": null, "Total Spend": 90.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.8, "Median Spend per Customer": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.135043, 39.977401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pjf-ks5", "Name": "Threadwell", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "8432 Germantown Ave", "LATITUDE": 40.075533, "LONGITUDE": -75.206071, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 50.0, "Total Spend": 707.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 77.13, "Median Spend per Customer": 77.13 }, "geometry": { "type": "Point", "coordinates": [ -75.206071, 40.075533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "Name": "Friendship Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "3300 Cottman Ave", "LATITUDE": 40.03925, "LONGITUDE": -75.04588, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 1.0, "Total Spend": 2030.0, "Total Transactions": 29.0, "Total Customers": 21.0, "Median Spend per Transaction": 25.49, "Median Spend per Customer": 30.62 }, "geometry": { "type": "Point", "coordinates": [ -75.04588, 40.03925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pgf-gkz", "Name": "J & S Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4029 Lancaster Ave", "LATITUDE": 39.963865, "LONGITUDE": -75.203063, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010107002.0, "Median Dwell Time": 102.0, "Total Spend": 4029.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 844.0, "Median Spend per Customer": 844.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203063, 39.963865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "2237 Cecil B Moore Ave", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 3.0, "Total Spend": 1018.0, "Total Transactions": 112.0, "Total Customers": 95.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm3-zfz", "Name": "Los Charales", "Category": "Restaurants and Other Eating Places", "Address": "2100 S 9th St", "LATITUDE": 39.923202, "LONGITUDE": -75.161541, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 29.0, "POI_CBG": 421010041013.0, "Median Dwell Time": 340.0, "Total Spend": 138.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161541, 39.923202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "Name": "Giorgio On Pine", "Category": "Restaurants and Other Eating Places", "Address": "1328 Pine St", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 41.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1344.0, "Total Spend": 16047.0, "Total Transactions": 205.0, "Total Customers": 193.0, "Median Spend per Transaction": 65.82, "Median Spend per Customer": 70.05 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-3kf", "Name": "Sheraton Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "201 N 17th St", "LATITUDE": 39.957083, "LONGITUDE": -75.167351, "DATE_RANGE_START": 2021, "Total Visits": 2129.0, "Total Visitors": 1043.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 462.0, "Total Spend": 3600.0, "Total Transactions": 24.0, "Total Customers": 12.0, "Median Spend per Transaction": 79.18, "Median Spend per Customer": 296.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167351, 39.957083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-225@628-pjk-3nq", "Name": "Lucky Star Asian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "8919 Ridge Ave", "LATITUDE": 40.069778, "LONGITUDE": -75.239531, "DATE_RANGE_START": 2021, "Total Visits": 578.0, "Total Visitors": 413.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 39.0, "Total Spend": 23.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 1.5, "Median Spend per Customer": 4.75 }, "geometry": { "type": "Point", "coordinates": [ -75.239531, 40.069778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "7350 Oxford Ave", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 167.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 2.0, "Total Spend": 1500.0, "Total Transactions": 95.0, "Total Customers": 72.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yqf", "Name": "T Swirl Crepe", "Category": "Restaurants and Other Eating Places", "Address": "150 N 10th St", "LATITUDE": 39.955094, "LONGITUDE": -75.156151, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 88.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 184.0, "Total Spend": 6788.0, "Total Transactions": 387.0, "Total Customers": 356.0, "Median Spend per Transaction": 15.61, "Median Spend per Customer": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.156151, 39.955094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "Name": "3 Brothers Pizza & Pasta", "Category": "Restaurants and Other Eating Places", "Address": "2621 E Ontario St", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010379002.0, "Median Dwell Time": null, "Total Spend": 3657.0, "Total Transactions": 279.0, "Total Customers": 134.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-dqf", "Name": "Good Neighbor Mini Market", "Category": "Specialty Food Stores", "Address": "5131 Chester Ave", "LATITUDE": 39.941908, "LONGITUDE": -75.220217, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010073001.0, "Median Dwell Time": null, "Total Spend": 687.0, "Total Transactions": 76.0, "Total Customers": 41.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.220217, 39.941908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnw-m49", "Name": "One Shot Coffee", "Category": "Restaurants and Other Eating Places", "Address": "217 W George St", "LATITUDE": 39.96771, "LONGITUDE": -75.140654, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 1.0, "Total Spend": 15676.0, "Total Transactions": 1002.0, "Total Customers": 613.0, "Median Spend per Transaction": 11.91, "Median Spend per Customer": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.140654, 39.96771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 10th St", "LATITUDE": 39.931641, "LONGITUDE": -75.160608, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 45.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 2.0, "Total Spend": 5843.0, "Total Transactions": 976.0, "Total Customers": 437.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 7.74 }, "geometry": { "type": "Point", "coordinates": [ -75.160608, 39.931641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5643 Ridge Ave", "LATITUDE": 40.026858, "LONGITUDE": -75.208809, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 69.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 2.0, "Total Spend": 14673.0, "Total Transactions": 2081.0, "Total Customers": 885.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.208809, 40.026858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1440 E Erie Ave", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 129.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 3.0, "Total Spend": 19256.0, "Total Transactions": 449.0, "Total Customers": 341.0, "Median Spend per Transaction": 27.29, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-j5f", "Name": "Kitchen Kapers", "Category": "Electronics and Appliance Stores", "Address": "213 S 17th St", "LATITUDE": 39.949485, "LONGITUDE": -75.169064, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 220.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 2.0, "Total Spend": 7403.0, "Total Transactions": 126.0, "Total Customers": 119.0, "Median Spend per Transaction": 32.34, "Median Spend per Customer": 33.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169064, 39.949485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8d-m8v", "Name": "Quicky Mart Express", "Category": "Grocery Stores", "Address": "4346 Frankford Ave", "LATITUDE": 40.012599, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 103.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 20.0, "Total Spend": 3009.0, "Total Transactions": 162.0, "Total Customers": 69.0, "Median Spend per Transaction": 14.83, "Median Spend per Customer": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.012599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "Name": "Sam's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5450 Rutland St", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 53.0, "Total Spend": 274.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 24.02, "Median Spend per Customer": 24.02 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-dvz", "Name": "Lighthouse Thrift Shop", "Category": "Used Merchandise Stores", "Address": "6515 Rising Sun Ave", "LATITUDE": 40.051415, "LONGITUDE": -75.093615, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 31.0, "POI_CBG": 421010306007.0, "Median Dwell Time": 8.0, "Total Spend": 651.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 8.91, "Median Spend per Customer": 10.16 }, "geometry": { "type": "Point", "coordinates": [ -75.093615, 40.051415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pgg-p9z", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3118 W Allegheny Ave", "LATITUDE": 40.004888, "LONGITUDE": -75.180206, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 33.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 129.0, "Total Spend": 3121.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 335.54, "Median Spend per Customer": 335.54 }, "geometry": { "type": "Point", "coordinates": [ -75.180206, 40.004888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "Name": "Xian Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "902 Arch St", "LATITUDE": 39.9532, "LONGITUDE": -75.154945, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 98.0, "Total Spend": 260.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 23.36, "Median Spend per Customer": 23.36 }, "geometry": { "type": "Point", "coordinates": [ -75.154945, 39.9532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pmb-yqf", "Name": "Vivi Bubble Tea", "Category": "Restaurants and Other Eating Places", "Address": "145 N 10th St", "LATITUDE": 39.954838, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 205.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 3.0, "Total Spend": 7207.0, "Total Transactions": 838.0, "Total Customers": 726.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.954838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1800 South St", "LATITUDE": 39.944289, "LONGITUDE": -75.17218, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 274.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 5.0, "Total Spend": 24684.0, "Total Transactions": 1391.0, "Total Customers": 742.0, "Median Spend per Transaction": 12.14, "Median Spend per Customer": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.17218, 39.944289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "704 E Passyunk Ave # 20", "LATITUDE": 39.940142, "LONGITUDE": -75.151529, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 119.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 4.0, "Total Spend": 50701.0, "Total Transactions": 2709.0, "Total Customers": 1313.0, "Median Spend per Transaction": 12.49, "Median Spend per Customer": 22.33 }, "geometry": { "type": "Point", "coordinates": [ -75.151529, 39.940142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3301 Tyson Ave", "LATITUDE": 40.035458, "LONGITUDE": -75.049099, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 184.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 117.0, "Total Spend": 6956.0, "Total Transactions": 260.0, "Total Customers": 167.0, "Median Spend per Transaction": 25.7, "Median Spend per Customer": 27.58 }, "geometry": { "type": "Point", "coordinates": [ -75.049099, 40.035458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6150 N 5th St", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2021, "Total Visits": 516.0, "Total Visitors": 325.0, "POI_CBG": 421010275001.0, "Median Dwell Time": 9.0, "Total Spend": 6592.0, "Total Transactions": 327.0, "Total Customers": 232.0, "Median Spend per Transaction": 13.77, "Median Spend per Customer": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-223@628-p8n-389", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6327 Torresdale Ave # 43", "LATITUDE": 40.02098, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2021, "Total Visits": 260.0, "Total Visitors": 198.0, "POI_CBG": 421010323001.0, "Median Dwell Time": 4.0, "Total Spend": 14703.0, "Total Transactions": 630.0, "Total Customers": 322.0, "Median Spend per Transaction": 15.1, "Median Spend per Customer": 25.86 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.02098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-225@628-pp5-dgk", "Name": "A & F Pharmacy", "Category": "Health and Personal Care Stores", "Address": "3200 Frankford Ave", "LATITUDE": 39.993258, "LONGITUDE": -75.110206, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 129.0, "POI_CBG": 421010188005.0, "Median Dwell Time": 67.0, "Total Spend": 541.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 113.35, "Median Spend per Customer": 113.35 }, "geometry": { "type": "Point", "coordinates": [ -75.110206, 39.993258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 387.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 7.0, "Total Spend": 40335.0, "Total Transactions": 998.0, "Total Customers": 907.0, "Median Spend per Transaction": 27.34, "Median Spend per Customer": 30.2 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-zxq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3260 N Broad St Ste 5", "LATITUDE": 40.002963, "LONGITUDE": -75.152983, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 229.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 6.0, "Total Spend": 27345.0, "Total Transactions": 1294.0, "Total Customers": 685.0, "Median Spend per Transaction": 11.36, "Median Spend per Customer": 17.87 }, "geometry": { "type": "Point", "coordinates": [ -75.152983, 40.002963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6501 Harbison Ave", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2021, "Total Visits": 2527.0, "Total Visitors": 1773.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 9.0, "Total Spend": 25499.0, "Total Transactions": 1184.0, "Total Customers": 814.0, "Median Spend per Transaction": 12.71, "Median Spend per Customer": 18.52 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p7v-ffz", "Name": "E Z Gas", "Category": "Gasoline Stations", "Address": "1701 Cottman Ave", "LATITUDE": 40.054304, "LONGITUDE": -75.070914, "DATE_RANGE_START": 2021, "Total Visits": 604.0, "Total Visitors": 327.0, "POI_CBG": 421010335003.0, "Median Dwell Time": 5.0, "Total Spend": 17414.0, "Total Transactions": 833.0, "Total Customers": 427.0, "Median Spend per Transaction": 17.89, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.070914, 40.054304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vvf", "Name": "Champion", "Category": "Clothing Stores", "Address": "1519 Franklin Mills Cir Ste 313", "LATITUDE": 40.089655, "LONGITUDE": -74.961736, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 217.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 28.0, "Total Spend": 329.0, "Total Transactions": 57.0, "Total Customers": 29.0, "Median Spend per Transaction": 5.98, "Median Spend per Customer": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961736, 40.089655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgj-n5z", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993397, "LONGITUDE": -75.144129, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 239.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 42.0, "Total Spend": 2276.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 97.5, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144129, 39.993397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-6x5", "Name": "The North Face", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1515 Walnut St", "LATITUDE": 39.949894, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 160.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 3.0, "Total Spend": 7969.0, "Total Transactions": 72.0, "Total Customers": 62.0, "Median Spend per Transaction": 75.62, "Median Spend per Customer": 75.62 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmd-yjv", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "2001 Federal St", "LATITUDE": 39.937442, "LONGITUDE": -75.176792, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 1.0, "Total Spend": 9057.0, "Total Transactions": 902.0, "Total Customers": 632.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.176792, 39.937442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pg8-ks5", "Name": "Rybrew", "Category": "Restaurants and Other Eating Places", "Address": "2816 W Girard Ave", "LATITUDE": 39.974204, "LONGITUDE": -75.182529, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 17.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 1.0, "Total Spend": 24006.0, "Total Transactions": 1394.0, "Total Customers": 754.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 23.24 }, "geometry": { "type": "Point", "coordinates": [ -75.182529, 39.974204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-vmk", "Name": "Maxi's Pizza Subs and Bar", "Category": "Restaurants and Other Eating Places", "Address": "1926 Liacouras Walk", "LATITUDE": 39.982213, "LONGITUDE": -75.15602, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 21.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 38.0, "Total Spend": 2451.0, "Total Transactions": 81.0, "Total Customers": 60.0, "Median Spend per Transaction": 27.7, "Median Spend per Customer": 27.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15602, 39.982213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "Name": "Super Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7340 Frankford Ave", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 1.0, "Total Spend": 1893.0, "Total Transactions": 69.0, "Total Customers": 55.0, "Median Spend per Transaction": 24.63, "Median Spend per Customer": 33.11 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "Name": "King Wok Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "13631 Philmont Ave", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 36.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 30.0, "Total Spend": 1921.0, "Total Transactions": 76.0, "Total Customers": 67.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 26.75 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "Name": "Frieda", "Category": "Restaurants and Other Eating Places", "Address": "320 Walnut St", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 20.0, "Total Spend": 7292.0, "Total Transactions": 341.0, "Total Customers": 229.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "Name": "S and J Seafood", "Category": "Specialty Food Stores", "Address": "713 S 52nd St", "LATITUDE": 39.948539, "LONGITUDE": -75.227093, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 67.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 5.0, "Total Spend": 3083.0, "Total Transactions": 86.0, "Total Customers": 76.0, "Median Spend per Transaction": 25.31, "Median Spend per Customer": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -75.227093, 39.948539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "Name": "South Street Souvlaki", "Category": "Restaurants and Other Eating Places", "Address": "509 South St", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2021, "Total Visits": 616.0, "Total Visitors": 477.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 581.0, "Total Spend": 2451.0, "Total Transactions": 69.0, "Total Customers": 67.0, "Median Spend per Transaction": 28.4, "Median Spend per Customer": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7124 Ridge Ave # 62", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 138.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 3.0, "Total Spend": 13217.0, "Total Transactions": 962.0, "Total Customers": 802.0, "Median Spend per Transaction": 10.68, "Median Spend per Customer": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pg9-td9", "Name": "Tela's Market & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1833 Fairmount Ave", "LATITUDE": 39.967388, "LONGITUDE": -75.168391, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 229.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 239.0, "Total Spend": 24512.0, "Total Transactions": 1597.0, "Total Customers": 881.0, "Median Spend per Transaction": 10.74, "Median Spend per Customer": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168391, 39.967388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "Name": "Capriccio Cafe and Bar", "Category": "Restaurants and Other Eating Places", "Address": "110 N 16th St", "LATITUDE": 39.955464, "LONGITUDE": -75.166555, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 148.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 57.0, "Total Spend": 8264.0, "Total Transactions": 618.0, "Total Customers": 401.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.166555, 39.955464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1420 Cecil B Moore Ave", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2021, "Total Visits": 1396.0, "Total Visitors": 842.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 261.0, "Total Spend": 16130.0, "Total Transactions": 2587.0, "Total Customers": 1332.0, "Median Spend per Transaction": 5.19, "Median Spend per Customer": 8.22 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-rzf", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2400 E Butler St", "LATITUDE": 39.995312, "LONGITUDE": -75.092003, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 308.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 5.0, "Total Spend": 745.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.092003, 39.995312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-g6k", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2101 W Oregon Ave", "LATITUDE": 39.918591, "LONGITUDE": -75.183167, "DATE_RANGE_START": 2021, "Total Visits": 396.0, "Total Visitors": 344.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 8657.0, "Total Transactions": 241.0, "Total Customers": 210.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 22.55 }, "geometry": { "type": "Point", "coordinates": [ -75.183167, 39.918591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "Name": "Academy Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10101 Academy Rd Ste 105", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 95.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 123.0, "Total Spend": 348.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 14.51, "Median Spend per Customer": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7v-f2k", "Name": "Raymour & Flanigan Outlet", "Category": "Furniture Stores", "Address": "2045 Cottman Ave", "LATITUDE": 40.051034, "LONGITUDE": -75.064888, "DATE_RANGE_START": 2021, "Total Visits": 551.0, "Total Visitors": 430.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 15.0, "Total Spend": 88842.0, "Total Transactions": 41.0, "Total Customers": 38.0, "Median Spend per Transaction": 1760.32, "Median Spend per Customer": 1880.16 }, "geometry": { "type": "Point", "coordinates": [ -75.064888, 40.051034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "Name": "Grossman Furniture", "Category": "Furniture Stores", "Address": "206 Arch St", "LATITUDE": 39.951777, "LONGITUDE": -75.14359, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 208.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 402.0, "Total Spend": 23616.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 4597.56, "Median Spend per Customer": 4947.56 }, "geometry": { "type": "Point", "coordinates": [ -75.14359, 39.951777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg4-bx5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6201 Germantown Ave", "LATITUDE": 40.042838, "LONGITUDE": -75.179833, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 167.0, "POI_CBG": 421010252002.0, "Median Dwell Time": 5.0, "Total Spend": 18431.0, "Total Transactions": 874.0, "Total Customers": 558.0, "Median Spend per Transaction": 13.33, "Median Spend per Customer": 17.05 }, "geometry": { "type": "Point", "coordinates": [ -75.179833, 40.042838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj7-5fz", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "5843 45 Rising Sun Avenue Philadelphia", "LATITUDE": 40.043629, "LONGITUDE": -75.102849, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 263.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 8.0, "Total Spend": 2881.0, "Total Transactions": 141.0, "Total Customers": 95.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.102849, 40.043629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pjk-3bk", "Name": "Posh", "Category": "Gasoline Stations", "Address": "8901 Ridge Ave", "LATITUDE": 40.068847, "LONGITUDE": -75.240209, "DATE_RANGE_START": 2021, "Total Visits": 625.0, "Total Visitors": 494.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 4.0, "Total Spend": 677.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 22.51, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240209, 40.068847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-92k", "Name": "Eddie Bauer Outlet", "Category": "Clothing Stores", "Address": "901 Market St Unit 2050", "LATITUDE": 39.951639, "LONGITUDE": -75.155758, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 2525.0, "Total Transactions": 60.0, "Total Customers": 55.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155758, 39.951639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4334 Frankford Ave", "LATITUDE": 40.012134, "LONGITUDE": -75.088896, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 136.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 5.0, "Total Spend": 426.0, "Total Transactions": 31.0, "Total Customers": 21.0, "Median Spend per Transaction": 11.84, "Median Spend per Customer": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.088896, 40.012134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1601 Market St", "LATITUDE": 39.954256, "LONGITUDE": -75.167978, "DATE_RANGE_START": 2021, "Total Visits": 3017.0, "Total Visitors": 2002.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 160.0, "Total Spend": 77.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 8.56, "Median Spend per Customer": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.167978, 39.954256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-5j9", "Name": "Dollar Up & Gifts", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "10833 Bustleton Ave", "LATITUDE": 40.10998, "LONGITUDE": -75.024237, "DATE_RANGE_START": 2021, "Total Visits": 217.0, "Total Visitors": 191.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 5.0, "Total Spend": 874.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 21.56, "Median Spend per Customer": 26.31 }, "geometry": { "type": "Point", "coordinates": [ -75.024237, 40.10998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11749 Bustleton Ave Ste 14", "LATITUDE": 40.120348, "LONGITUDE": -75.015989, "DATE_RANGE_START": 2021, "Total Visits": 747.0, "Total Visitors": 544.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 10.0, "Total Spend": 409.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 11.21, "Median Spend per Customer": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.015989, 40.120348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "56 Snyder Ave Spc 25", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 105.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 7.0, "Total Spend": 2279.0, "Total Transactions": 158.0, "Total Customers": 124.0, "Median Spend per Transaction": 10.05, "Median Spend per Customer": 11.74 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "Name": "Four Seasons Diner", "Category": "Restaurants and Other Eating Places", "Address": "2811 Cottman Ave", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 396.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 38.0, "Total Spend": 21650.0, "Total Transactions": 461.0, "Total Customers": 427.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.96 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9p-pvz", "Name": "Da Franco Pizzeria & Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "742 Red Lion Rd", "LATITUDE": 40.105135, "LONGITUDE": -75.033737, "DATE_RANGE_START": 2021, "Total Visits": 508.0, "Total Visitors": 391.0, "POI_CBG": 421010356022.0, "Median Dwell Time": 26.0, "Total Spend": 357.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 16.02, "Median Spend per Customer": 23.08 }, "geometry": { "type": "Point", "coordinates": [ -75.033737, 40.105135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2440 Grant Ave", "LATITUDE": 40.079147, "LONGITUDE": -75.02653, "DATE_RANGE_START": 2021, "Total Visits": 518.0, "Total Visitors": 456.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 18208.0, "Total Transactions": 1212.0, "Total Customers": 893.0, "Median Spend per Transaction": 12.23, "Median Spend per Customer": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.02653, 40.079147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2130 S Columbus Blvd", "LATITUDE": 39.918938, "LONGITUDE": -75.140855, "DATE_RANGE_START": 2021, "Total Visits": 465.0, "Total Visitors": 444.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 128.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 7.87, "Median Spend per Customer": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 39.918938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.029744, "LONGITUDE": -75.099335, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 203.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 9.0, "Total Spend": 483.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 19.33, "Median Spend per Customer": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.099335, 40.029744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "499 Franklin Mills Cir", "LATITUDE": 40.087623, "LONGITUDE": -74.965267, "DATE_RANGE_START": 2021, "Total Visits": 1325.0, "Total Visitors": 1115.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 17216.0, "Total Transactions": 1279.0, "Total Customers": 969.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -74.965267, 40.087623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1516 Chestnut St", "LATITUDE": 39.950896, "LONGITUDE": -75.166342, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 112.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 403.0, "Total Spend": 11503.0, "Total Transactions": 1038.0, "Total Customers": 790.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -75.166342, 39.950896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@628-pmf-mrk", "Name": "Bain's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St", "LATITUDE": 39.952412, "LONGITUDE": -75.168016, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 99.0, "Total Spend": 348.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.168016, 39.952412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-4jv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "490 N Broad St", "LATITUDE": 39.962295, "LONGITUDE": -75.162022, "DATE_RANGE_START": 2021, "Total Visits": 656.0, "Total Visitors": 563.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 6.0, "Total Spend": 9752.0, "Total Transactions": 1329.0, "Total Customers": 656.0, "Median Spend per Transaction": 5.89, "Median Spend per Customer": 9.82 }, "geometry": { "type": "Point", "coordinates": [ -75.162022, 39.962295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-6tv", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "2901 Abbottsford Ave", "LATITUDE": 40.015035, "LONGITUDE": -75.178463, "DATE_RANGE_START": 2021, "Total Visits": 895.0, "Total Visitors": 726.0, "POI_CBG": 421010206001.0, "Median Dwell Time": 4.0, "Total Spend": 439.0, "Total Transactions": 29.0, "Total Customers": 14.0, "Median Spend per Transaction": 12.67, "Median Spend per Customer": 27.62 }, "geometry": { "type": "Point", "coordinates": [ -75.178463, 40.015035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.037805, "LONGITUDE": -75.117796, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 84.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 6.0, "Total Spend": 1296.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 127.25, "Median Spend per Customer": 160.1 }, "geometry": { "type": "Point", "coordinates": [ -75.117796, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "Name": "Eyes Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "402 South St", "LATITUDE": 39.941491, "LONGITUDE": -75.149374, "DATE_RANGE_START": 2021, "Total Visits": 387.0, "Total Visitors": 377.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 3.0, "Total Spend": 5691.0, "Total Transactions": 112.0, "Total Customers": 110.0, "Median Spend per Transaction": 28.62, "Median Spend per Customer": 29.43 }, "geometry": { "type": "Point", "coordinates": [ -75.149374, 39.941491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "8500 Henry Ave Ste 10", "LATITUDE": 40.063003, "LONGITUDE": -75.237723, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 234.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 5.0, "Total Spend": 48796.0, "Total Transactions": 1000.0, "Total Customers": 730.0, "Median Spend per Transaction": 37.58, "Median Spend per Customer": 47.33 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 40.063003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "901 Levick St", "LATITUDE": 40.044581, "LONGITUDE": -75.086995, "DATE_RANGE_START": 2021, "Total Visits": 418.0, "Total Visitors": 387.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 8.0, "Total Spend": 755.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 38.87, "Median Spend per Customer": 75.56 }, "geometry": { "type": "Point", "coordinates": [ -75.086995, 40.044581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmd-vfz", "Name": "Tri State Computech", "Category": "Electronics and Appliance Stores", "Address": "121 S 22nd St", "LATITUDE": 39.951755, "LONGITUDE": -75.176893, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 124.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 11.0, "Total Spend": 1077.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 56.16, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.176893, 39.951755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwg-f4v", "Name": "Lucky Star Food Market", "Category": "Grocery Stores", "Address": "7329 Elmwood Ave", "LATITUDE": 39.913515, "LONGITUDE": -75.242295, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 105.0, "POI_CBG": 421010060004.0, "Median Dwell Time": 3.0, "Total Spend": 6156.0, "Total Transactions": 616.0, "Total Customers": 205.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 14.12 }, "geometry": { "type": "Point", "coordinates": [ -75.242295, 39.913515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7901 Frankford Ave", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2021, "Total Visits": 310.0, "Total Visitors": 167.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 6.0, "Total Spend": 338.0, "Total Transactions": 45.0, "Total Customers": 19.0, "Median Spend per Transaction": 10.07, "Median Spend per Customer": 4.39 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5627 Chestnut St # 99", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2021, "Total Visits": 606.0, "Total Visitors": 453.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 7.0, "Total Spend": 27577.0, "Total Transactions": 1356.0, "Total Customers": 759.0, "Median Spend per Transaction": 11.14, "Median Spend per Customer": 20.84 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7001 Frankford Ave", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2021, "Total Visits": 668.0, "Total Visitors": 482.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 8.0, "Total Spend": 8362.0, "Total Transactions": 499.0, "Total Customers": 246.0, "Median Spend per Transaction": 10.59, "Median Spend per Customer": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7615 Lindbergh Blvd", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 332.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 12.0, "Total Spend": 11324.0, "Total Transactions": 575.0, "Total Customers": 375.0, "Median Spend per Transaction": 12.56, "Median Spend per Customer": 19.18 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "630 Walnut Ln", "LATITUDE": 40.028872, "LONGITUDE": -75.206199, "DATE_RANGE_START": 2021, "Total Visits": 1957.0, "Total Visitors": 1563.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 4.0, "Total Spend": 3267.0, "Total Transactions": 93.0, "Total Customers": 76.0, "Median Spend per Transaction": 25.96, "Median Spend per Customer": 27.09 }, "geometry": { "type": "Point", "coordinates": [ -75.206199, 40.028872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-phm-5s5", "Name": "Marathon", "Category": "Gasoline Stations", "Address": "1440 W Cheltenham Ave", "LATITUDE": 40.063884, "LONGITUDE": -75.140696, "DATE_RANGE_START": 2021, "Total Visits": 372.0, "Total Visitors": 298.0, "POI_CBG": 421010268001.0, "Median Dwell Time": 4.0, "Total Spend": 4821.0, "Total Transactions": 160.0, "Total Customers": 117.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.38 }, "geometry": { "type": "Point", "coordinates": [ -75.140696, 40.063884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-st9", "Name": "Cantina Los Caballitos", "Category": "Restaurants and Other Eating Places", "Address": "1651 E Passyunk Ave", "LATITUDE": 39.928871, "LONGITUDE": -75.16446, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 200.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 42.0, "Total Spend": 69630.0, "Total Transactions": 1138.0, "Total Customers": 983.0, "Median Spend per Transaction": 51.16, "Median Spend per Customer": 55.82 }, "geometry": { "type": "Point", "coordinates": [ -75.16446, 39.928871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 153.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 62.0, "Total Spend": 10232.0, "Total Transactions": 255.0, "Total Customers": 246.0, "Median Spend per Transaction": 32.7, "Median Spend per Customer": 35.13 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "Name": "El Camino Real", "Category": "Restaurants and Other Eating Places", "Address": "1040 N 2nd St", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 98.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 92.0, "Total Spend": 6316.0, "Total Transactions": 74.0, "Total Customers": 72.0, "Median Spend per Transaction": 87.04, "Median Spend per Customer": 89.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "Name": "Thai Singha House", "Category": "Restaurants and Other Eating Places", "Address": "3906B Chestnut St", "LATITUDE": 39.95527, "LONGITUDE": -75.20037, "DATE_RANGE_START": 2021, "Total Visits": 981.0, "Total Visitors": 573.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 251.0, "Total Spend": 1148.0, "Total Transactions": 36.0, "Total Customers": 31.0, "Median Spend per Transaction": 22.58, "Median Spend per Customer": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.20037, 39.95527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "Name": "Asia On the Parkway", "Category": "Restaurants and Other Eating Places", "Address": "1700 Benjamin Franklin Pkwy", "LATITUDE": 39.95574, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2021, "Total Visits": 1628.0, "Total Visitors": 952.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 319.0, "Total Spend": 6726.0, "Total Transactions": 177.0, "Total Customers": 146.0, "Median Spend per Transaction": 30.38, "Median Spend per Customer": 45.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.95574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2021, "Total Visits": 568.0, "Total Visitors": 425.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 17.0, "Total Spend": 7153.0, "Total Transactions": 456.0, "Total Customers": 401.0, "Median Spend per Transaction": 13.45, "Median Spend per Customer": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pm9-wc5", "Name": "Scoop DeVille", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949779, "LONGITUDE": -75.148514, "DATE_RANGE_START": 2021, "Total Visits": 2076.0, "Total Visitors": 1905.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 23.0, "Total Spend": 2593.0, "Total Transactions": 232.0, "Total Customers": 208.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148514, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "Name": "Function Coffee Labs", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 10th St", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2021, "Total Visits": 1002.0, "Total Visitors": 766.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 25.0, "Total Spend": 2445.0, "Total Transactions": 234.0, "Total Customers": 93.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.046202, "LONGITUDE": -75.056569, "DATE_RANGE_START": 2021, "Total Visits": 1434.0, "Total Visitors": 811.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 3.0, "Total Spend": 22506.0, "Total Transactions": 2790.0, "Total Customers": 1368.0, "Median Spend per Transaction": 6.69, "Median Spend per Customer": 9.54 }, "geometry": { "type": "Point", "coordinates": [ -75.056569, 40.046202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-grk", "Name": "Federal Donuts", "Category": "Restaurants and Other Eating Places", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.963015, "LONGITUDE": -75.174167, "DATE_RANGE_START": 2021, "Total Visits": 3095.0, "Total Visitors": 1835.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 20.0, "Total Spend": 5693.0, "Total Transactions": 368.0, "Total Customers": 332.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.174167, 39.963015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg4-2rk", "Name": "Maker artisan pizza", "Category": "Restaurants and Other Eating Places", "Address": "5301 Germantown Ave", "LATITUDE": 40.032925, "LONGITUDE": -75.168806, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010246001.0, "Median Dwell Time": 76.0, "Total Spend": 504.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 9.83, "Median Spend per Customer": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.168806, 40.032925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp5-g49", "Name": "Aramingo's Best Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2885 Aramingo Ave", "LATITUDE": 39.984627, "LONGITUDE": -75.113365, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010179003.0, "Median Dwell Time": 1043.0, "Total Spend": 4284.0, "Total Transactions": 141.0, "Total Customers": 107.0, "Median Spend per Transaction": 29.11, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113365, 39.984627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8h-hyv", "Name": "Philly's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "6802 Torresdale Ave", "LATITUDE": 40.025465, "LONGITUDE": -75.044676, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010325003.0, "Median Dwell Time": null, "Total Spend": 297.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 62.24, "Median Spend per Customer": 62.24 }, "geometry": { "type": "Point", "coordinates": [ -75.044676, 40.025465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-6tv", "Name": "Gold Heart Direct", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1293 Franklin Mills Cir", "LATITUDE": 40.085488, "LONGITUDE": -74.962122, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 6.0, "Total Spend": 1501.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 314.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962122, 40.085488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7x-5zz", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2118 Cottman Ave Ste 4", "LATITUDE": 40.048936, "LONGITUDE": -75.06319, "DATE_RANGE_START": 2021, "Total Visits": 406.0, "Total Visitors": 272.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 12.0, "Total Spend": 961.0, "Total Transactions": 33.0, "Total Customers": 31.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.06319, 40.048936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-s89", "Name": "SuitSupply", "Category": "Clothing Stores", "Address": "1601 Locust St", "LATITUDE": 39.948725, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2021, "Total Visits": 628.0, "Total Visitors": 504.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 5.0, "Total Spend": 22538.0, "Total Transactions": 76.0, "Total Customers": 55.0, "Median Spend per Transaction": 158.5, "Median Spend per Customer": 231.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.948725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-y7q", "Name": "K & A Gift Shop", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "911 Arch St", "LATITUDE": 39.953734, "LONGITUDE": -75.155203, "DATE_RANGE_START": 2021, "Total Visits": 4516.0, "Total Visitors": 3222.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 51.0, "Total Spend": 255.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.155203, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-td9", "Name": "Watkins Drinkery", "Category": "Restaurants and Other Eating Places", "Address": "1712 S 10th St", "LATITUDE": 39.927952, "LONGITUDE": -75.162075, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 17.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 26.0, "Total Spend": 179.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 37.59, "Median Spend per Customer": 37.59 }, "geometry": { "type": "Point", "coordinates": [ -75.162075, 39.927952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-pn5", "Name": "Luna Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1700 N 3rd St", "LATITUDE": 39.976619, "LONGITUDE": -75.140834, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 21.0, "POI_CBG": 421010156001.0, "Median Dwell Time": 6.0, "Total Spend": 408.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 49.6, "Median Spend per Customer": 49.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140834, 39.976619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tn5", "Name": "Unclaimed Diamonds", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "113 S 8th St", "LATITUDE": 39.949045, "LONGITUDE": -75.153751, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 29.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 17315.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 1175.0, "Median Spend per Customer": 1175.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153751, 39.949045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgj-cbk", "Name": "Pazzo Pazzo", "Category": "Restaurants and Other Eating Places", "Address": "1614 Cecil B Moore Ave", "LATITUDE": 39.979011, "LONGITUDE": -75.161757, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 136.0, "POI_CBG": 421010147001.0, "Median Dwell Time": 448.0, "Total Spend": 1221.0, "Total Transactions": 69.0, "Total Customers": 64.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.161757, 39.979011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "Name": "Cafe Soho", "Category": "Restaurants and Other Eating Places", "Address": "468 W Cheltenham Ave", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2021, "Total Visits": 248.0, "Total Visitors": 181.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 53.0, "Total Spend": 28239.0, "Total Transactions": 544.0, "Total Customers": 453.0, "Median Spend per Transaction": 45.25, "Median Spend per Customer": 46.63 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "Name": "Cafe Old Nelson", "Category": "Restaurants and Other Eating Places", "Address": "1435 Arch St", "LATITUDE": 39.954761, "LONGITUDE": -75.164691, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 212.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 102.0, "Total Spend": 2594.0, "Total Transactions": 217.0, "Total Customers": 110.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 14.62 }, "geometry": { "type": "Point", "coordinates": [ -75.164691, 39.954761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pj6-k4v", "Name": "Mirim", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St Ste 124", "LATITUDE": 40.044989, "LONGITUDE": -75.117489, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 21.0, "Total Spend": 3407.0, "Total Transactions": 189.0, "Total Customers": 165.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.117489, 40.044989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "Name": "Linden Italian Market", "Category": "Restaurants and Other Eating Places", "Address": "4011 Linden Ave", "LATITUDE": 40.054575, "LONGITUDE": -75.004237, "DATE_RANGE_START": 2021, "Total Visits": 212.0, "Total Visitors": 160.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 3.0, "Total Spend": 3519.0, "Total Transactions": 274.0, "Total Customers": 210.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.004237, 40.054575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3725 Aramingo Ave", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 456.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 3.0, "Total Spend": 24782.0, "Total Transactions": 1640.0, "Total Customers": 1232.0, "Median Spend per Transaction": 11.9, "Median Spend per Customer": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1801 Torresdale Ave", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 301.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 3.0, "Total Spend": 10521.0, "Total Transactions": 778.0, "Total Customers": 554.0, "Median Spend per Transaction": 11.83, "Median Spend per Customer": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "6470 Torresdale Ave", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 348.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 4.0, "Total Spend": 19256.0, "Total Transactions": 1384.0, "Total Customers": 876.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-phq-v75", "Name": "Paradise Flowers", "Category": "Florists", "Address": "7603 Ogontz Ave", "LATITUDE": 40.070199, "LONGITUDE": -75.156873, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 13.0, "Total Spend": 453.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 64.6, "Median Spend per Customer": 64.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156873, 40.070199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-zpv", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1575 N 52nd St Ste 707", "LATITUDE": 39.97922, "LONGITUDE": -75.22266, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 79.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 13.0, "Total Spend": 8294.0, "Total Transactions": 110.0, "Total Customers": 105.0, "Median Spend per Transaction": 43.19, "Median Spend per Customer": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.22266, 39.97922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "Name": "Apricot Stone", "Category": "Restaurants and Other Eating Places", "Address": "1040 N American St Ste 601", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 89.0, "Total Spend": 7714.0, "Total Transactions": 107.0, "Total Customers": 100.0, "Median Spend per Transaction": 56.38, "Median Spend per Customer": 53.14 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "Name": "Royal Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4200 Baltimore Ave", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 36.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 166.0, "Total Spend": 2857.0, "Total Transactions": 138.0, "Total Customers": 67.0, "Median Spend per Transaction": 14.6, "Median Spend per Customer": 27.26 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pm4-nh5", "Name": "The Chilly Banana", "Category": "Restaurants and Other Eating Places", "Address": "932 E Passyunk Ave", "LATITUDE": 39.937277, "LONGITUDE": -75.154779, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010024001.0, "Median Dwell Time": 20.0, "Total Spend": 2176.0, "Total Transactions": 229.0, "Total Customers": 184.0, "Median Spend per Transaction": 8.01, "Median Spend per Customer": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.154779, 39.937277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Girard Ave", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 1.0, "Total Spend": 11069.0, "Total Transactions": 790.0, "Total Customers": 578.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 12.83 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "8880 Bartram Ave", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 134.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 945.0, "Total Spend": 75513.0, "Total Transactions": 141.0, "Total Customers": 24.0, "Median Spend per Transaction": 560.0, "Median Spend per Customer": 251.26 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y7q", "Name": "Day N Nite", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "908 Cherry St", "LATITUDE": 39.954252, "LONGITUDE": -75.1549, "DATE_RANGE_START": 2021, "Total Visits": 4516.0, "Total Visitors": 3222.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 51.0, "Total Spend": 2188.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 55.5, "Median Spend per Customer": 55.5 }, "geometry": { "type": "Point", "coordinates": [ -75.1549, 39.954252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6602 Frankford Ave @ Magee Avenue", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 103.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 4.0, "Total Spend": 2485.0, "Total Transactions": 100.0, "Total Customers": 88.0, "Median Spend per Transaction": 14.3, "Median Spend per Customer": 15.34 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "Name": "Sky Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1122 38 Washington Ave Ste B", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2021, "Total Visits": 301.0, "Total Visitors": 263.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 38.0, "Total Spend": 5712.0, "Total Transactions": 119.0, "Total Customers": 100.0, "Median Spend per Transaction": 37.59, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phq-gff", "Name": "Takka Grill & Shrimpie's", "Category": "Restaurants and Other Eating Places", "Address": "1910 W Cheltenham Ave", "LATITUDE": 40.067474, "LONGITUDE": -75.147141, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 69.0, "POI_CBG": 421010266003.0, "Median Dwell Time": 5.0, "Total Spend": 1650.0, "Total Transactions": 67.0, "Total Customers": 50.0, "Median Spend per Transaction": 19.45, "Median Spend per Customer": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.147141, 40.067474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3qz", "Name": "Grand China Buffet", "Category": "Restaurants and Other Eating Places", "Address": "29 Franklin Mills Blvd", "LATITUDE": 40.085175, "LONGITUDE": -74.967524, "DATE_RANGE_START": 2021, "Total Visits": 1437.0, "Total Visitors": 1200.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 39.0, "Total Spend": 20381.0, "Total Transactions": 434.0, "Total Customers": 363.0, "Median Spend per Transaction": 37.55, "Median Spend per Customer": 41.49 }, "geometry": { "type": "Point", "coordinates": [ -74.967524, 40.085175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd # 4", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2021, "Total Visits": 18897.0, "Total Visitors": 9649.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 127.0, "Total Spend": 24472.0, "Total Transactions": 1869.0, "Total Customers": 1007.0, "Median Spend per Transaction": 11.85, "Median Spend per Customer": 15.51 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2021, "Total Visits": 558.0, "Total Visitors": 384.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 3.0, "Total Spend": 7852.0, "Total Transactions": 1160.0, "Total Customers": 468.0, "Median Spend per Transaction": 5.78, "Median Spend per Customer": 8.81 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-ks5", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "218 Arch St", "LATITUDE": 39.951718, "LONGITUDE": -75.144312, "DATE_RANGE_START": 2021, "Total Visits": 492.0, "Total Visitors": 356.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 102.0, "Total Spend": 636.0, "Total Transactions": 31.0, "Total Customers": 31.0, "Median Spend per Transaction": 15.25, "Median Spend per Customer": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 39.951718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "Name": "Sampan", "Category": "Traveler Accommodation", "Address": "124 S 13th St", "LATITUDE": 39.949535, "LONGITUDE": -75.16221, "DATE_RANGE_START": 2021, "Total Visits": 4924.0, "Total Visitors": 3408.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 29.0, "Total Spend": 25780.0, "Total Transactions": 337.0, "Total Customers": 289.0, "Median Spend per Transaction": 49.49, "Median Spend per Customer": 64.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16221, 39.949535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmf-jgk", "Name": "Dizengoff", "Category": "Restaurants and Other Eating Places", "Address": "1625 Sansom St", "LATITUDE": 39.950806, "LONGITUDE": -75.168528, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 298.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 246.0, "Total Spend": 3876.0, "Total Transactions": 155.0, "Total Customers": 136.0, "Median Spend per Transaction": 20.49, "Median Spend per Customer": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.168528, 39.950806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p75-9vf", "Name": "Ashburner Inn", "Category": "Restaurants and Other Eating Places", "Address": "8400 Torresdale Ave", "LATITUDE": 40.040603, "LONGITUDE": -75.015474, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 289.0, "POI_CBG": 421010349003.0, "Median Dwell Time": 80.0, "Total Spend": 3612.0, "Total Transactions": 69.0, "Total Customers": 64.0, "Median Spend per Transaction": 44.0, "Median Spend per Customer": 42.95 }, "geometry": { "type": "Point", "coordinates": [ -75.015474, 40.040603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "Name": "City View Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1434 Cecil B Moore Ave", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 86.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 26.0, "Total Spend": 33081.0, "Total Transactions": 1590.0, "Total Customers": 1174.0, "Median Spend per Transaction": 16.74, "Median Spend per Customer": 20.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-v75", "Name": "Oishii", "Category": "Restaurants and Other Eating Places", "Address": "138 Chestnut St", "LATITUDE": 39.948105, "LONGITUDE": -75.143866, "DATE_RANGE_START": 2021, "Total Visits": 2050.0, "Total Visitors": 1570.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 80.0, "Total Spend": 4525.0, "Total Transactions": 86.0, "Total Customers": 86.0, "Median Spend per Transaction": 50.2, "Median Spend per Customer": 50.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143866, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "Name": "Macaroni's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "9315 Old Bustleton Ave", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2021, "Total Visits": 418.0, "Total Visitors": 270.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 141.0, "Total Spend": 19084.0, "Total Transactions": 126.0, "Total Customers": 117.0, "Median Spend per Transaction": 83.0, "Median Spend per Customer": 91.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-c3q", "Name": "Foodery", "Category": "Restaurants and Other Eating Places", "Address": "324 S 10th St", "LATITUDE": 39.944856, "LONGITUDE": -75.158469, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 224.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 1.0, "Total Spend": 24501.0, "Total Transactions": 1294.0, "Total Customers": 630.0, "Median Spend per Transaction": 15.4, "Median Spend per Customer": 23.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158469, 39.944856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-47q", "Name": "Halal Food", "Category": "Restaurants and Other Eating Places", "Address": "SE Corner of Spring Garden 15th St", "LATITUDE": 39.962366, "LONGITUDE": -75.162749, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 105.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 174.0, "Total Spend": 910.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.7, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162749, 39.962366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9834 Bustleton Ave", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2021, "Total Visits": 883.0, "Total Visitors": 558.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 3.0, "Total Spend": 8629.0, "Total Transactions": 1117.0, "Total Customers": 609.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2998A Welsh Rd", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2021, "Total Visits": 527.0, "Total Visitors": 339.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 2.0, "Total Spend": 7707.0, "Total Transactions": 974.0, "Total Customers": 384.0, "Median Spend per Transaction": 7.01, "Median Spend per Customer": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9920 Bustleton Ave", "LATITUDE": 40.101484, "LONGITUDE": -75.030277, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 215.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 7.0, "Total Spend": 514.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.030277, 40.101484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-fs5", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2201 W Oregon Ave", "LATITUDE": 39.919174, "LONGITUDE": -75.184979, "DATE_RANGE_START": 2021, "Total Visits": 1026.0, "Total Visitors": 749.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 7.0, "Total Spend": 81.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.184979, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "701 Chestnut St", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 8782.0, "Total Transactions": 733.0, "Total Customers": 609.0, "Median Spend per Transaction": 10.47, "Median Spend per Customer": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "8920 Frankford Ave", "LATITUDE": 40.05212, "LONGITUDE": -75.010353, "DATE_RANGE_START": 2021, "Total Visits": 1401.0, "Total Visitors": 831.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 10.0, "Total Spend": 73496.0, "Total Transactions": 1792.0, "Total Customers": 1301.0, "Median Spend per Transaction": 24.08, "Median Spend per Customer": 26.97 }, "geometry": { "type": "Point", "coordinates": [ -75.010353, 40.05212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7201 Castor Ave", "LATITUDE": 40.050139, "LONGITUDE": -75.066802, "DATE_RANGE_START": 2021, "Total Visits": 611.0, "Total Visitors": 341.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 33.0, "Total Spend": 2361.0, "Total Transactions": 186.0, "Total Customers": 112.0, "Median Spend per Transaction": 7.61, "Median Spend per Customer": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.066802, 40.050139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8n-cqz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6400 Roosevelt Blvd", "LATITUDE": 40.03577, "LONGITUDE": -75.069964, "DATE_RANGE_START": 2021, "Total Visits": 940.0, "Total Visitors": 761.0, "POI_CBG": 421010313002.0, "Median Dwell Time": 4.0, "Total Spend": 574.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 25.06, "Median Spend per Customer": 25.06 }, "geometry": { "type": "Point", "coordinates": [ -75.069964, 40.03577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4113 G St", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 236.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 7.0, "Total Spend": 484.0, "Total Transactions": 57.0, "Total Customers": 36.0, "Median Spend per Transaction": 4.55, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-33q", "Name": "Hello World", "Category": "Home Furnishings Stores", "Address": "3610 Sansom St", "LATITUDE": 39.953792, "LONGITUDE": -75.195373, "DATE_RANGE_START": 2021, "Total Visits": 699.0, "Total Visitors": 563.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 146.0, "Total Spend": 6822.0, "Total Transactions": 174.0, "Total Customers": 155.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.195373, 39.953792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm4-grk", "Name": "AmeriThai", "Category": "Restaurants and Other Eating Places", "Address": "1244 Snyder Ave", "LATITUDE": 39.923914, "LONGITUDE": -75.167514, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 1.0, "Total Spend": 2284.0, "Total Transactions": 60.0, "Total Customers": 48.0, "Median Spend per Transaction": 35.25, "Median Spend per Customer": 42.23 }, "geometry": { "type": "Point", "coordinates": [ -75.167514, 39.923914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-6zf", "Name": "Danis Auto", "Category": "Automobile Dealers", "Address": "6250 Harbison Ave", "LATITUDE": 40.02883, "LONGITUDE": -75.063054, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010317003.0, "Median Dwell Time": 57.0, "Total Spend": 18616.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 2000.0, "Median Spend per Customer": 2000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063054, 40.02883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2201 Cottman Ave", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 177.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 8.0, "Total Spend": 3607.0, "Total Transactions": 107.0, "Total Customers": 91.0, "Median Spend per Transaction": 29.11, "Median Spend per Customer": 30.71 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "Name": "Capital Beer", "Category": "Restaurants and Other Eating Places", "Address": "2661 E Cumberland St", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 69.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 43.0, "Total Spend": 3151.0, "Total Transactions": 119.0, "Total Customers": 88.0, "Median Spend per Transaction": 22.38, "Median Spend per Customer": 26.07 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2445 N Broad St", "LATITUDE": 39.990666, "LONGITUDE": -75.154886, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 72.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 6.0, "Total Spend": 17567.0, "Total Transactions": 403.0, "Total Customers": 322.0, "Median Spend per Transaction": 22.12, "Median Spend per Customer": 29.68 }, "geometry": { "type": "Point", "coordinates": [ -75.154886, 39.990666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "337 Spring Garden St", "LATITUDE": 39.961453, "LONGITUDE": -75.144571, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 72.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 2.0, "Total Spend": 4497.0, "Total Transactions": 179.0, "Total Customers": 138.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 26.17 }, "geometry": { "type": "Point", "coordinates": [ -75.144571, 39.961453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "Name": "Spice 28", "Category": "Restaurants and Other Eating Places", "Address": "1228 Chestnut St", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2021, "Total Visits": 174.0, "Total Visitors": 129.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 409.0, "Total Spend": 5641.0, "Total Transactions": 167.0, "Total Customers": 138.0, "Median Spend per Transaction": 24.42, "Median Spend per Customer": 28.83 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pmf-jgk", "Name": "Abe Fisher", "Category": "Restaurants and Other Eating Places", "Address": "1623 Sansom St", "LATITUDE": 39.950786, "LONGITUDE": -75.168347, "DATE_RANGE_START": 2021, "Total Visits": 477.0, "Total Visitors": 251.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 314.0, "Total Spend": 15600.0, "Total Transactions": 100.0, "Total Customers": 93.0, "Median Spend per Transaction": 141.38, "Median Spend per Customer": 158.64 }, "geometry": { "type": "Point", "coordinates": [ -75.168347, 39.950786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yjv", "Name": "Zio Pizza Palace & Grill", "Category": "Restaurants and Other Eating Places", "Address": "157 N 9th St", "LATITUDE": 39.955076, "LONGITUDE": -75.154189, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 153.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 936.0, "Total Spend": 4570.0, "Total Transactions": 339.0, "Total Customers": 224.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 13.13 }, "geometry": { "type": "Point", "coordinates": [ -75.154189, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "6842 Bustleton Ave", "LATITUDE": 40.041625, "LONGITUDE": -75.064814, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 86.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 14.0, "Total Spend": 9803.0, "Total Transactions": 320.0, "Total Customers": 274.0, "Median Spend per Transaction": 27.16, "Median Spend per Customer": 28.7 }, "geometry": { "type": "Point", "coordinates": [ -75.064814, 40.041625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6x5", "Name": "Amma's South Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1518 Chestnut St", "LATITUDE": 39.950885, "LONGITUDE": -75.166421, "DATE_RANGE_START": 2021, "Total Visits": 5251.0, "Total Visitors": 3716.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 59.0, "Total Spend": 13960.0, "Total Transactions": 267.0, "Total Customers": 229.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 47.55 }, "geometry": { "type": "Point", "coordinates": [ -75.166421, 39.950885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-dqf", "Name": "Asian Palace", "Category": "Restaurants and Other Eating Places", "Address": "2001 W Oregon Ave", "LATITUDE": 39.918335, "LONGITUDE": -75.181058, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 100.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 132.0, "Total Spend": 1467.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 62.66, "Median Spend per Customer": 76.05 }, "geometry": { "type": "Point", "coordinates": [ -75.181058, 39.918335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "Name": "Cafe Square One", "Category": "Restaurants and Other Eating Places", "Address": "50 S 3rd St", "LATITUDE": 39.948829, "LONGITUDE": -75.146095, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 153.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 6002.0, "Total Transactions": 425.0, "Total Customers": 258.0, "Median Spend per Transaction": 12.19, "Median Spend per Customer": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.146095, 39.948829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "Name": "Checkers Drive-In Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "3500 Aramingo Ave", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 86.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 248.0, "Total Spend": 6090.0, "Total Transactions": 413.0, "Total Customers": 358.0, "Median Spend per Transaction": 11.64, "Median Spend per Customer": 14.19 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9900 Frankford Ave", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 251.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 13.0, "Total Spend": 5749.0, "Total Transactions": 819.0, "Total Customers": 370.0, "Median Spend per Transaction": 5.66, "Median Spend per Customer": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2201 Penrose Ave", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2021, "Total Visits": 489.0, "Total Visitors": 325.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 2.0, "Total Spend": 14614.0, "Total Transactions": 1983.0, "Total Customers": 876.0, "Median Spend per Transaction": 6.4, "Median Spend per Customer": 9.68 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5301 Chew Ave", "LATITUDE": 40.043491, "LONGITUDE": -75.159296, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 184.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 3.0, "Total Spend": 8376.0, "Total Transactions": 1055.0, "Total Customers": 563.0, "Median Spend per Transaction": 6.74, "Median Spend per Customer": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.159296, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2149 Catharine St", "LATITUDE": 39.942567, "LONGITUDE": -75.179023, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010013002.0, "Median Dwell Time": null, "Total Spend": 4541.0, "Total Transactions": 496.0, "Total Customers": 372.0, "Median Spend per Transaction": 7.47, "Median Spend per Customer": 8.18 }, "geometry": { "type": "Point", "coordinates": [ -75.179023, 39.942567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5100 City Ave", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2021, "Total Visits": 470.0, "Total Visitors": 346.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 2.0, "Total Spend": 16085.0, "Total Transactions": 2088.0, "Total Customers": 1131.0, "Median Spend per Transaction": 6.57, "Median Spend per Customer": 9.26 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "Name": "My Thai", "Category": "Restaurants and Other Eating Places", "Address": "2200 South St", "LATITUDE": 39.945111, "LONGITUDE": -75.178763, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 6.0, "Total Spend": 1568.0, "Total Transactions": 41.0, "Total Customers": 36.0, "Median Spend per Transaction": 31.8, "Median Spend per Customer": 35.25 }, "geometry": { "type": "Point", "coordinates": [ -75.178763, 39.945111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8m-v2k", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "6406 Sackett St", "LATITUDE": 40.029454, "LONGITUDE": -75.058288, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 64.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 5.0, "Total Spend": 4182.0, "Total Transactions": 86.0, "Total Customers": 67.0, "Median Spend per Transaction": 28.88, "Median Spend per Customer": 36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.058288, 40.029454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4201 N Marshall St", "LATITUDE": 40.015701, "LONGITUDE": -75.13771, "DATE_RANGE_START": 2021, "Total Visits": 158.0, "Total Visitors": 126.0, "POI_CBG": 421010197004.0, "Median Dwell Time": 6.0, "Total Spend": 16851.0, "Total Transactions": 315.0, "Total Customers": 227.0, "Median Spend per Transaction": 31.31, "Median Spend per Customer": 39.34 }, "geometry": { "type": "Point", "coordinates": [ -75.13771, 40.015701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2101 S 10th St", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2021, "Total Visits": 325.0, "Total Visitors": 186.0, "POI_CBG": 421010041013.0, "Median Dwell Time": 3.0, "Total Spend": 1426.0, "Total Transactions": 115.0, "Total Customers": 55.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "Name": "University City Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4300 Walnut St", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 74.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 2.0, "Total Spend": 3114.0, "Total Transactions": 100.0, "Total Customers": 74.0, "Median Spend per Transaction": 23.21, "Median Spend per Customer": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "15500 Bustleton Ave", "LATITUDE": 40.134399, "LONGITUDE": -75.01003, "DATE_RANGE_START": 2021, "Total Visits": 699.0, "Total Visitors": 585.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 4.0, "Total Spend": 6911.0, "Total Transactions": 303.0, "Total Customers": 203.0, "Median Spend per Transaction": 11.51, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.01003, 40.134399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "Name": "Skyline Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "505 Washington Ave", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 150.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 646.0, "Total Spend": 1275.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 46.98, "Median Spend per Customer": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4900 City Ave", "LATITUDE": 40.000779, "LONGITUDE": -75.226852, "DATE_RANGE_START": 2021, "Total Visits": 2477.0, "Total Visitors": 1962.0, "POI_CBG": 421010121002.0, "Median Dwell Time": 4.0, "Total Spend": 3192.0, "Total Transactions": 98.0, "Total Customers": 53.0, "Median Spend per Transaction": 30.05, "Median Spend per Customer": 48.05 }, "geometry": { "type": "Point", "coordinates": [ -75.226852, 40.000779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgj-8qf", "Name": "Delgado Grocery", "Category": "Grocery Stores", "Address": "2368 N Cleveland St", "LATITUDE": 39.990198, "LONGITUDE": -75.162651, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010167013.0, "Median Dwell Time": null, "Total Spend": 35.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 7.25 }, "geometry": { "type": "Point", "coordinates": [ -75.162651, 39.990198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "Name": "Macy's", "Category": "Department Stores", "Address": "1300 Market St", "LATITUDE": 39.951926, "LONGITUDE": -75.161906, "DATE_RANGE_START": 2021, "Total Visits": 5310.0, "Total Visitors": 4243.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 14.0, "Total Spend": 12555.0, "Total Transactions": 169.0, "Total Customers": 148.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 55.98 }, "geometry": { "type": "Point", "coordinates": [ -75.161906, 39.951926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2601 W Girard Ave", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 177.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 5.0, "Total Spend": 544.0, "Total Transactions": 57.0, "Total Customers": 38.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 11.06 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-f2k", "Name": "Nick's Famous Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5810 Greene St", "LATITUDE": 40.035181, "LONGITUDE": -75.178754, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 38.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 4.0, "Total Spend": 94.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 19.73 }, "geometry": { "type": "Point", "coordinates": [ -75.178754, 40.035181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvx-jd9", "Name": "Song's Capital Discount", "Category": "Health and Personal Care Stores", "Address": "1237 N 52nd St", "LATITUDE": 39.972561, "LONGITUDE": -75.225887, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 43.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 5.0, "Total Spend": 268.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 56.09, "Median Spend per Customer": 56.09 }, "geometry": { "type": "Point", "coordinates": [ -75.225887, 39.972561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "Name": "Popi's Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3120 S 20th St", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 60.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 66.0, "Total Spend": 7135.0, "Total Transactions": 143.0, "Total Customers": 72.0, "Median Spend per Transaction": 19.16, "Median Spend per Customer": 60.62 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwd-pjv", "Name": "Urban Shop 543", "Category": "Restaurants and Other Eating Places", "Address": "5000 S Broad St", "LATITUDE": 39.889355, "LONGITUDE": -75.175351, "DATE_RANGE_START": 2021, "Total Visits": 189.0, "Total Visitors": 67.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 272.0, "Total Spend": 302.0, "Total Transactions": 33.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.58, "Median Spend per Customer": 63.37 }, "geometry": { "type": "Point", "coordinates": [ -75.175351, 39.889355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "Name": "Royal Farms", "Category": "Grocery Stores", "Address": "2501 Church St", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2021, "Total Visits": 740.0, "Total Visitors": 544.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 5.0, "Total Spend": 55077.0, "Total Transactions": 2790.0, "Total Customers": 1451.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 24.53 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3925 Walnut St", "LATITUDE": 39.95427, "LONGITUDE": -75.201494, "DATE_RANGE_START": 2021, "Total Visits": 2618.0, "Total Visitors": 1320.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 514.0, "Total Spend": 24355.0, "Total Transactions": 1554.0, "Total Customers": 807.0, "Median Spend per Transaction": 9.48, "Median Spend per Customer": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.201494, 39.95427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pm9-wc5", "Name": "Renaissance Hotels", "Category": "Traveler Accommodation", "Address": "401 Chestnut St", "LATITUDE": 39.949053, "LONGITUDE": -75.147888, "DATE_RANGE_START": 2021, "Total Visits": 1172.0, "Total Visitors": 1031.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 12.0, "Total Spend": 29647.0, "Total Transactions": 191.0, "Total Customers": 160.0, "Median Spend per Transaction": 79.07, "Median Spend per Customer": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147888, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-syv", "Name": "Snyder Supermarket", "Category": "Grocery Stores", "Address": "2700 Snyder Ave", "LATITUDE": 39.926819, "LONGITUDE": -75.191169, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 105.0, "POI_CBG": 421010036003.0, "Median Dwell Time": 7.0, "Total Spend": 181.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191169, 39.926819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6301 Chew Ave", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2021, "Total Visits": 449.0, "Total Visitors": 291.0, "POI_CBG": 421010389003.0, "Median Dwell Time": 8.0, "Total Spend": 3618.0, "Total Transactions": 100.0, "Total Customers": 84.0, "Median Spend per Transaction": 22.86, "Median Spend per Customer": 22.86 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3604 Chestnut St", "LATITUDE": 39.954547, "LONGITUDE": -75.194897, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 186.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 4.0, "Total Spend": 44729.0, "Total Transactions": 4642.0, "Total Customers": 2117.0, "Median Spend per Transaction": 8.15, "Median Spend per Customer": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.194897, 39.954547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2900 S 70th St", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 305.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 2.0, "Total Spend": 361.0, "Total Transactions": 31.0, "Total Customers": 21.0, "Median Spend per Transaction": 10.77, "Median Spend per Customer": 11.61 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "Name": "Alaska King Crab House", "Category": "Restaurants and Other Eating Places", "Address": "4834 Lancaster Ave", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 112.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 7.0, "Total Spend": 751.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ygk", "Name": "QT Vietnamese Sandwich", "Category": "Restaurants and Other Eating Places", "Address": "48 N 10th St", "LATITUDE": 39.953408, "LONGITUDE": -75.156559, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 224.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 81.0, "Total Spend": 601.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 14.05, "Median Spend per Customer": 14.05 }, "geometry": { "type": "Point", "coordinates": [ -75.156559, 39.953408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p77-pvz", "Name": "Artigiano Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3804 Morrell Ave", "LATITUDE": 40.064629, "LONGITUDE": -74.987146, "DATE_RANGE_START": 2021, "Total Visits": 232.0, "Total Visitors": 186.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 5.0, "Total Spend": 171.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 14.07, "Median Spend per Customer": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -74.987146, 40.064629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-gff", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2920 Roberts Ave Ste 1040", "LATITUDE": 40.011075, "LONGITUDE": -75.176591, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 115.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 13.0, "Total Spend": 3616.0, "Total Transactions": 289.0, "Total Customers": 203.0, "Median Spend per Transaction": 11.64, "Median Spend per Customer": 14.37 }, "geometry": { "type": "Point", "coordinates": [ -75.176591, 40.011075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8000 Pine Rd", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2021, "Total Visits": 723.0, "Total Visitors": 468.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 2.0, "Total Spend": 13477.0, "Total Transactions": 1869.0, "Total Customers": 835.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 9.22 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-t35", "Name": "Suprema Coffee Roastery", "Category": "Restaurants and Other Eating Places", "Address": "1511 Pine St", "LATITUDE": 39.945926, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2021, "Total Visits": 1936.0, "Total Visitors": 1215.0, "POI_CBG": 421010012021.0, "Median Dwell Time": 24.0, "Total Spend": 438.0, "Total Transactions": 60.0, "Total Customers": 38.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.945926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "10000 Bustleton Ave", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2021, "Total Visits": 976.0, "Total Visitors": 740.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 4.0, "Total Spend": 10315.0, "Total Transactions": 360.0, "Total Customers": 246.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 18.71 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-p9z", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4160 N American St", "LATITUDE": 40.014187, "LONGITUDE": -75.131595, "DATE_RANGE_START": 2021, "Total Visits": 833.0, "Total Visitors": 568.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 4.0, "Total Spend": 564.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 29.63, "Median Spend per Customer": 29.63 }, "geometry": { "type": "Point", "coordinates": [ -75.131595, 40.014187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-w8v", "Name": "Aéropostale", "Category": "Clothing Stores", "Address": "1434 Franklin Mills Cir # 717A", "LATITUDE": 40.086851, "LONGITUDE": -74.962597, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 16.0, "Total Spend": 4540.0, "Total Transactions": 91.0, "Total Customers": 86.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 28.53 }, "geometry": { "type": "Point", "coordinates": [ -74.962597, 40.086851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "Name": "Sam's Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1000 Franklin Mills Cir", "LATITUDE": 40.093002, "LONGITUDE": -74.958736, "DATE_RANGE_START": 2021, "Total Visits": 6160.0, "Total Visitors": 4010.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 21.0, "Total Spend": 360409.0, "Total Transactions": 5019.0, "Total Customers": 2370.0, "Median Spend per Transaction": 41.0, "Median Spend per Customer": 79.01 }, "geometry": { "type": "Point", "coordinates": [ -74.958736, 40.093002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "Name": "European Republic", "Category": "Restaurants and Other Eating Places", "Address": "213 Chestnut St", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2021, "Total Visits": 3150.0, "Total Visitors": 2341.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 45.0, "Total Spend": 1140.0, "Total Transactions": 91.0, "Total Customers": 67.0, "Median Spend per Transaction": 11.32, "Median Spend per Customer": 14.17 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-zs5", "Name": "Golden Triangle", "Category": "Restaurants and Other Eating Places", "Address": "610 S 5th St", "LATITUDE": 39.94154, "LONGITUDE": -75.15097, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 115.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 578.0, "Total Spend": 1776.0, "Total Transactions": 64.0, "Total Customers": 55.0, "Median Spend per Transaction": 25.76, "Median Spend per Customer": 32.24 }, "geometry": { "type": "Point", "coordinates": [ -75.15097, 39.94154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pmf-hh5", "Name": "Koreana", "Category": "Restaurants and Other Eating Places", "Address": "37 S 19th St", "LATITUDE": 39.952324, "LONGITUDE": -75.171634, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 198.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 843.0, "Total Spend": 260.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.171634, 39.952324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "501 Franklin Mills Cir", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2021, "Total Visits": 623.0, "Total Visitors": 537.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 15465.0, "Total Transactions": 1601.0, "Total Customers": 1091.0, "Median Spend per Transaction": 8.39, "Median Spend per Customer": 9.98 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5fz", "Name": "Cogito Coffee", "Category": "Restaurants and Other Eating Places", "Address": "105 S 12th St", "LATITUDE": 39.949868, "LONGITUDE": -75.160219, "DATE_RANGE_START": 2021, "Total Visits": 5516.0, "Total Visitors": 3508.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 22.0, "Total Spend": 215.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160219, 39.949868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6001 Lancaster Ave", "LATITUDE": 39.983085, "LONGITUDE": -75.241704, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 2.0, "Total Spend": 10943.0, "Total Transactions": 420.0, "Total Customers": 334.0, "Median Spend per Transaction": 23.29, "Median Spend per Customer": 25.95 }, "geometry": { "type": "Point", "coordinates": [ -75.241704, 39.983085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "Name": "Grace Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2229 Grays Ferry Ave", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 46.0, "Total Spend": 8785.0, "Total Transactions": 177.0, "Total Customers": 153.0, "Median Spend per Transaction": 41.23, "Median Spend per Customer": 44.49 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7w-psq", "Name": "England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2840 Cottman Ave", "LATITUDE": 40.043231, "LONGITUDE": -75.052729, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 10.0, "Total Spend": 727.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 28.91, "Median Spend per Customer": 31.33 }, "geometry": { "type": "Point", "coordinates": [ -75.052729, 40.043231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "Name": "King Food Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7426 Frankford Ave", "LATITUDE": 40.038528, "LONGITUDE": -75.036845, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 33.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 2.0, "Total Spend": 1225.0, "Total Transactions": 43.0, "Total Customers": 36.0, "Median Spend per Transaction": 29.94, "Median Spend per Customer": 29.94 }, "geometry": { "type": "Point", "coordinates": [ -75.036845, 40.038528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p82-3wk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "700 Robbins St", "LATITUDE": 40.039012, "LONGITUDE": -75.097789, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 36.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 141.0, "Total Spend": 1875.0, "Total Transactions": 134.0, "Total Customers": 86.0, "Median Spend per Transaction": 13.1, "Median Spend per Customer": 16.03 }, "geometry": { "type": "Point", "coordinates": [ -75.097789, 40.039012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "Name": "Triple Joy", "Category": "Restaurants and Other Eating Places", "Address": "2301 N 29th St", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 45.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 5.0, "Total Spend": 2388.0, "Total Transactions": 134.0, "Total Customers": 79.0, "Median Spend per Transaction": 14.45, "Median Spend per Customer": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7z-6x5", "Name": "Rising Sun Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6919 Rising Sun Ave", "LATITUDE": 40.056616, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 45.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 336.0, "Total Spend": 277.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 21.81, "Median Spend per Customer": 21.41 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.056616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8t-w8v", "Name": "jasmine Inc", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087715, "LONGITUDE": -74.961773, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 148.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 408.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.97, "Median Spend per Customer": 32.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961773, 40.087715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "Name": "Easy Pickins", "Category": "Clothing Stores", "Address": "1207 Chestnut St", "LATITUDE": 39.950651, "LONGITUDE": -75.160672, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 215.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 18236.0, "Total Transactions": 489.0, "Total Customers": 451.0, "Median Spend per Transaction": 30.37, "Median Spend per Customer": 32.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160672, 39.950651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj3-b8v", "Name": "The Stand", "Category": "Restaurants and Other Eating Places", "Address": "1844 W Hunting Park Ave", "LATITUDE": 40.01377, "LONGITUDE": -75.15794, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010202005.0, "Median Dwell Time": 90.0, "Total Spend": 22108.0, "Total Transactions": 387.0, "Total Customers": 329.0, "Median Spend per Transaction": 44.02, "Median Spend per Customer": 49.92 }, "geometry": { "type": "Point", "coordinates": [ -75.15794, 40.01377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-qpv", "Name": "Sunrise Pizza", "Category": "Restaurants and Other Eating Places", "Address": "528 W Butler St", "LATITUDE": 40.009015, "LONGITUDE": -75.137692, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 17.0, "POI_CBG": 421010198006.0, "Median Dwell Time": 1.0, "Total Spend": 1873.0, "Total Transactions": 64.0, "Total Customers": 45.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 40.6 }, "geometry": { "type": "Point", "coordinates": [ -75.137692, 40.009015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "Name": "Wilson's Market", "Category": "Grocery Stores", "Address": "1337 W Olney Ave", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 169.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 5.0, "Total Spend": 338.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 12.55, "Median Spend per Customer": 12.55 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-j7q", "Name": "Sues Produce Market", "Category": "Grocery Stores", "Address": "114 S 18th St", "LATITUDE": 39.951234, "LONGITUDE": -75.170685, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 179.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 3065.0, "Total Transactions": 320.0, "Total Customers": 136.0, "Median Spend per Transaction": 8.91, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.170685, 39.951234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "Name": "Total Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "2431 Castor Ave Ste A", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2021, "Total Visits": 422.0, "Total Visitors": 332.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 62.0, "Total Spend": 4758.0, "Total Transactions": 179.0, "Total Customers": 129.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 27.99 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5901 Wissahickon Ave", "LATITUDE": 40.02991, "LONGITUDE": -75.186134, "DATE_RANGE_START": 2021, "Total Visits": 1745.0, "Total Visitors": 1055.0, "POI_CBG": 421010239002.0, "Median Dwell Time": 4.0, "Total Spend": 3209.0, "Total Transactions": 129.0, "Total Customers": 74.0, "Median Spend per Transaction": 24.31, "Median Spend per Customer": 24.4 }, "geometry": { "type": "Point", "coordinates": [ -75.186134, 40.02991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm3-xh5", "Name": "Stephanie's Flowers", "Category": "Florists", "Address": "1430 S 9th St", "LATITUDE": 39.931071, "LONGITUDE": -75.159796, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 33.0, "Total Spend": 229.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 9.65 }, "geometry": { "type": "Point", "coordinates": [ -75.159796, 39.931071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "Name": "King Wok's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Torresdale Ave", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010321001.0, "Median Dwell Time": 9.0, "Total Spend": 2015.0, "Total Transactions": 74.0, "Total Customers": 64.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 28.2 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "104 S 40th St", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 21.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 4.0, "Total Spend": 8121.0, "Total Transactions": 387.0, "Total Customers": 270.0, "Median Spend per Transaction": 18.23, "Median Spend per Customer": 25.59 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjk-rff", "Name": "The Cedars House", "Category": "Restaurants and Other Eating Places", "Address": "200 W Northwestern Ave", "LATITUDE": 40.083003, "LONGITUDE": -75.232456, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010384001.0, "Median Dwell Time": 42.0, "Total Spend": 4151.0, "Total Transactions": 210.0, "Total Customers": 167.0, "Median Spend per Transaction": 15.93, "Median Spend per Customer": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.232456, 40.083003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-k9f", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8500 Henry Ave Ste 40A", "LATITUDE": 40.063455, "LONGITUDE": -75.236411, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 39.0, "Total Spend": 1828.0, "Total Transactions": 86.0, "Total Customers": 76.0, "Median Spend per Transaction": 18.3, "Median Spend per Customer": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.236411, 40.063455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-b49", "Name": "E Cigs International", "Category": "Other Miscellaneous Store Retailers", "Address": "6212 Ridge Ave", "LATITUDE": 40.03586, "LONGITUDE": -75.217916, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010213001.0, "Median Dwell Time": 7.0, "Total Spend": 515.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 53.17, "Median Spend per Customer": 53.17 }, "geometry": { "type": "Point", "coordinates": [ -75.217916, 40.03586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-v4v", "Name": "Olde City Food Market", "Category": "Grocery Stores", "Address": "202 Market St", "LATITUDE": 39.949709, "LONGITUDE": -75.144055, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 117.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 143.0, "Total Spend": 1215.0, "Total Transactions": 36.0, "Total Customers": 26.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144055, 39.949709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7b-qpv", "Name": "Alfreds Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "9218 Ashton Rd", "LATITUDE": 40.064373, "LONGITUDE": -75.02133, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 107.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 1148.0, "Total Transactions": 36.0, "Total Customers": 12.0, "Median Spend per Transaction": 29.13, "Median Spend per Customer": 56.66 }, "geometry": { "type": "Point", "coordinates": [ -75.02133, 40.064373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pgh-v2k", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2131 59 North Broad Street Ste 5", "LATITUDE": 39.985827, "LONGITUDE": -75.15577, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 155.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 5.0, "Total Spend": 29019.0, "Total Transactions": 1802.0, "Total Customers": 1062.0, "Median Spend per Transaction": 11.96, "Median Spend per Customer": 19.41 }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.985827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9200 Frankford Ave Ste 250", "LATITUDE": 40.055425, "LONGITUDE": -75.00482, "DATE_RANGE_START": 2021, "Total Visits": 988.0, "Total Visitors": 690.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 7.0, "Total Spend": 12955.0, "Total Transactions": 516.0, "Total Customers": 298.0, "Median Spend per Transaction": 15.71, "Median Spend per Customer": 22.32 }, "geometry": { "type": "Point", "coordinates": [ -75.00482, 40.055425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-92k", "Name": "Sephora", "Category": "Health and Personal Care Stores", "Address": "901 Market St Unit 1155", "LATITUDE": 39.951634, "LONGITUDE": -75.155721, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 374.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.155721, 39.951634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5200 Germantown Ave", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 160.0, "POI_CBG": 421010242001.0, "Median Dwell Time": 9.0, "Total Spend": 557.0, "Total Transactions": 62.0, "Total Customers": 41.0, "Median Spend per Transaction": 6.65, "Median Spend per Customer": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2800 Fox St", "LATITUDE": 40.008821, "LONGITUDE": -75.175673, "DATE_RANGE_START": 2021, "Total Visits": 561.0, "Total Visitors": 432.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 9.0, "Total Spend": 2215.0, "Total Transactions": 122.0, "Total Customers": 105.0, "Median Spend per Transaction": 11.99, "Median Spend per Customer": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.175673, 40.008821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p83-zcq", "Name": "Kuttanadu Super Market", "Category": "Grocery Stores", "Address": "8923 Krewstown Rd", "LATITUDE": 40.083172, "LONGITUDE": -75.048353, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 74.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 6.0, "Total Spend": 1634.0, "Total Transactions": 64.0, "Total Customers": 55.0, "Median Spend per Transaction": 12.51, "Median Spend per Customer": 14.96 }, "geometry": { "type": "Point", "coordinates": [ -75.048353, 40.083172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw4-q75", "Name": "Aloft Hotels", "Category": "Traveler Accommodation", "Address": "4301 Island Ave", "LATITUDE": 39.891128, "LONGITUDE": -75.233821, "DATE_RANGE_START": 2021, "Total Visits": 1141.0, "Total Visitors": 673.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 278.0, "Total Spend": 1099.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 24.95, "Median Spend per Customer": 116.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233821, 39.891128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-kcq", "Name": "Cosmic Cafe and Ciderhouse", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1 Boathouse Row", "LATITUDE": 39.969067, "LONGITUDE": -75.185279, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 136.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 2.0, "Total Spend": 506.0, "Total Transactions": 29.0, "Total Customers": 29.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185279, 39.969067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "Name": "Good Day Deli", "Category": "Restaurants and Other Eating Places", "Address": "37 S 20th St", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 115.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 4.0, "Total Spend": 1849.0, "Total Transactions": 136.0, "Total Customers": 79.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph6-vvf", "Name": "Debreaux's", "Category": "Restaurants and Other Eating Places", "Address": "2135 N 63rd St", "LATITUDE": 39.989238, "LONGITUDE": -75.24979, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 1.0, "Total Spend": 262.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 54.86, "Median Spend per Customer": 54.86 }, "geometry": { "type": "Point", "coordinates": [ -75.24979, 39.989238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-8d9", "Name": "Hilton Garden Inn", "Category": "Traveler Accommodation", "Address": "1100 Arch St", "LATITUDE": 39.953445, "LONGITUDE": -75.157985, "DATE_RANGE_START": 2021, "Total Visits": 15430.0, "Total Visitors": 10007.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 68.0, "Total Spend": 46026.0, "Total Transactions": 210.0, "Total Customers": 172.0, "Median Spend per Transaction": 199.12, "Median Spend per Customer": 212.27 }, "geometry": { "type": "Point", "coordinates": [ -75.157985, 39.953445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg9-7h5", "Name": "Hair Town", "Category": "Health and Personal Care Stores", "Address": "2301 N 29th St", "LATITUDE": 39.991198, "LONGITUDE": -75.177954, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 26.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 174.0, "Total Spend": 14268.0, "Total Transactions": 313.0, "Total Customers": 205.0, "Median Spend per Transaction": 26.94, "Median Spend per Customer": 37.15 }, "geometry": { "type": "Point", "coordinates": [ -75.177954, 39.991198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "Name": "Moshulu", "Category": "Restaurants and Other Eating Places", "Address": "401 S Columbus Blvd", "LATITUDE": 39.941589, "LONGITUDE": -75.141261, "DATE_RANGE_START": 2021, "Total Visits": 1632.0, "Total Visitors": 1482.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 4.0, "Total Spend": 117018.0, "Total Transactions": 1568.0, "Total Customers": 1148.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 62.18 }, "geometry": { "type": "Point", "coordinates": [ -75.141261, 39.941589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "Name": "China Gate", "Category": "Restaurants and Other Eating Places", "Address": "3822 Morrell Ave", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2021, "Total Visits": 1153.0, "Total Visitors": 709.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 10.0, "Total Spend": 2833.0, "Total Transactions": 117.0, "Total Customers": 81.0, "Median Spend per Transaction": 24.65, "Median Spend per Customer": 25.42 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5711 Ridge Ave", "LATITUDE": 40.027472, "LONGITUDE": -75.209408, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 9.0, "Total Spend": 23391.0, "Total Transactions": 854.0, "Total Customers": 666.0, "Median Spend per Transaction": 23.66, "Median Spend per Customer": 28.21 }, "geometry": { "type": "Point", "coordinates": [ -75.209408, 40.027472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qmk", "Name": "Sea Soul", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.038264, "LONGITUDE": -75.11969, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 41.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 5.0, "Total Spend": 2011.0, "Total Transactions": 76.0, "Total Customers": 60.0, "Median Spend per Transaction": 22.78, "Median Spend per Customer": 26.97 }, "geometry": { "type": "Point", "coordinates": [ -75.11969, 40.038264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5911 Ridge Ave # 5933", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 246.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 5.0, "Total Spend": 35598.0, "Total Transactions": 1537.0, "Total Customers": 976.0, "Median Spend per Transaction": 17.06, "Median Spend per Customer": 22.96 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-6p9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6101 N Broad St", "LATITUDE": 40.046097, "LONGITUDE": -75.142598, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 212.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 5.0, "Total Spend": 17645.0, "Total Transactions": 905.0, "Total Customers": 616.0, "Median Spend per Transaction": 13.22, "Median Spend per Customer": 20.35 }, "geometry": { "type": "Point", "coordinates": [ -75.142598, 40.046097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "Name": "Hair Fashion & Beyond", "Category": "Health and Personal Care Stores", "Address": "1600 N Broad St Ste 9", "LATITUDE": 39.978135, "LONGITUDE": -75.158545, "DATE_RANGE_START": 2021, "Total Visits": 425.0, "Total Visitors": 382.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 9.0, "Total Spend": 9142.0, "Total Transactions": 339.0, "Total Customers": 294.0, "Median Spend per Transaction": 17.86, "Median Spend per Customer": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.158545, 39.978135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "1711 Walnut St", "LATITUDE": 39.950226, "LONGITUDE": -75.169589, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 119.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 17333.0, "Total Transactions": 489.0, "Total Customers": 329.0, "Median Spend per Transaction": 14.16, "Median Spend per Customer": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.169589, 39.950226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "7210 Cresheim Rd", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 19.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 6.0, "Total Spend": 907.0, "Total Transactions": 93.0, "Total Customers": 74.0, "Median Spend per Transaction": 7.15, "Median Spend per Customer": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pp4-zxq", "Name": "M R Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2510 N Front St", "LATITUDE": 39.988165, "LONGITUDE": -75.131689, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010163003.0, "Median Dwell Time": 39.0, "Total Spend": 1408.0, "Total Transactions": 95.0, "Total Customers": 93.0, "Median Spend per Transaction": 12.99, "Median Spend per Customer": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.131689, 39.988165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phy-mff", "Name": "Rivas Monica", "Category": "Grocery Stores", "Address": "1025 W Ruscomb St", "LATITUDE": 40.028515, "LONGITUDE": -75.140923, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010283001.0, "Median Dwell Time": null, "Total Spend": 193.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 40.47, "Median Spend per Customer": 40.47 }, "geometry": { "type": "Point", "coordinates": [ -75.140923, 40.028515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "Name": "Ristorante Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1915 S Broad St", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 5.0, "Total Spend": 5433.0, "Total Transactions": 53.0, "Total Customers": 48.0, "Median Spend per Transaction": 99.25, "Median Spend per Customer": 101.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p7x-dsq", "Name": "Rib Rack", "Category": "Restaurants and Other Eating Places", "Address": "2100 Tyson Ave", "LATITUDE": 40.042525, "LONGITUDE": -75.063219, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 33.0, "POI_CBG": 421010314022.0, "Median Dwell Time": 38.0, "Total Spend": 1253.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 48.86, "Median Spend per Customer": 48.86 }, "geometry": { "type": "Point", "coordinates": [ -75.063219, 40.042525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "Name": "Sorrento's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1624 W Olney Ave", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 38.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 462.0, "Total Spend": 4311.0, "Total Transactions": 158.0, "Total Customers": 100.0, "Median Spend per Transaction": 23.37, "Median Spend per Customer": 29.85 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-vfz", "Name": "Philly Homebrew Outlet West", "Category": "Electronics and Appliance Stores", "Address": "1314 S 47th St", "LATITUDE": 39.942809, "LONGITUDE": -75.210442, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 12.0, "POI_CBG": 421010074002.0, "Median Dwell Time": 41.0, "Total Spend": 351.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.210442, 39.942809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "Name": "The Little Apple", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4361 Main St", "LATITUDE": 40.025728, "LONGITUDE": -75.223969, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 43.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 72.0, "Total Spend": 4708.0, "Total Transactions": 115.0, "Total Customers": 110.0, "Median Spend per Transaction": 23.85, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.223969, 40.025728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "Name": "Museum Deli", "Category": "Restaurants and Other Eating Places", "Address": "333 Spring Garden St", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 2.0, "Total Spend": 3607.0, "Total Transactions": 310.0, "Total Customers": 146.0, "Median Spend per Transaction": 10.77, "Median Spend per Customer": 18.16 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-syv", "Name": "Sushi Garden & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "425 S Broad St", "LATITUDE": 39.944749, "LONGITUDE": -75.164917, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 60.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1.0, "Total Spend": 1663.0, "Total Transactions": 45.0, "Total Customers": 43.0, "Median Spend per Transaction": 32.23, "Median Spend per Customer": 32.08 }, "geometry": { "type": "Point", "coordinates": [ -75.164917, 39.944749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "Name": "Solly Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8108 Bustleton Ave", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 33.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 3.0, "Total Spend": 1212.0, "Total Transactions": 45.0, "Total Customers": 41.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 26.06 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "Name": "R.E. Michel", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "333 E Hunting Park Ave", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 76.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 9.0, "Total Spend": 14479.0, "Total Transactions": 64.0, "Total Customers": 19.0, "Median Spend per Transaction": 76.18, "Median Spend per Customer": 103.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph8-qcq", "Name": "ALDI", "Category": "Grocery Stores", "Address": "1911 N 76th St", "LATITUDE": 39.978749, "LONGITUDE": -75.270239, "DATE_RANGE_START": 2021, "Total Visits": 816.0, "Total Visitors": 556.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 9.0, "Total Spend": 309.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.9, "Median Spend per Customer": 64.68 }, "geometry": { "type": "Point", "coordinates": [ -75.270239, 39.978749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "35 S 13th St", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 179.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 123.0, "Total Spend": 23376.0, "Total Transactions": 1621.0, "Total Customers": 1212.0, "Median Spend per Transaction": 11.58, "Median Spend per Customer": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-yvz", "Name": "Girard Beer Distributors", "Category": "Beer, Wine, and Liquor Stores", "Address": "820 W Girard Ave", "LATITUDE": 39.970277, "LONGITUDE": -75.150793, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 100.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 3.0, "Total Spend": 370.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.59, "Median Spend per Customer": 46.51 }, "geometry": { "type": "Point", "coordinates": [ -75.150793, 39.970277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-vj9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3780 Main St", "LATITUDE": 40.018604, "LONGITUDE": -75.214313, "DATE_RANGE_START": 2021, "Total Visits": 449.0, "Total Visitors": 337.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 9.0, "Total Spend": 19747.0, "Total Transactions": 909.0, "Total Customers": 630.0, "Median Spend per Transaction": 13.58, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214313, 40.018604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "501 W Lehigh Ave", "LATITUDE": 39.992376, "LONGITUDE": -75.140508, "DATE_RANGE_START": 2021, "Total Visits": 1084.0, "Total Visitors": 647.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 4.0, "Total Spend": 13876.0, "Total Transactions": 535.0, "Total Customers": 384.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140508, 39.992376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p74-vs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7830 Frankford Ave", "LATITUDE": 40.040935, "LONGITUDE": -75.030449, "DATE_RANGE_START": 2021, "Total Visits": 1702.0, "Total Visitors": 938.0, "POI_CBG": 421010331023.0, "Median Dwell Time": 4.0, "Total Spend": 637.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 20.09, "Median Spend per Customer": 22.55 }, "geometry": { "type": "Point", "coordinates": [ -75.030449, 40.040935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-qxq", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "3451 Aramingo Ave", "LATITUDE": 39.991716, "LONGITUDE": -75.09926, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 103.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 3.0, "Total Spend": 1554.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09926, 39.991716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "9717 Roosevelt Blvd", "LATITUDE": 40.08158, "LONGITUDE": -75.02629, "DATE_RANGE_START": 2021, "Total Visits": 489.0, "Total Visitors": 449.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 6.0, "Total Spend": 24697.0, "Total Transactions": 520.0, "Total Customers": 430.0, "Median Spend per Transaction": 35.63, "Median Spend per Customer": 43.39 }, "geometry": { "type": "Point", "coordinates": [ -75.02629, 40.08158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmb-5pv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1201 Market St", "LATITUDE": 39.952298, "LONGITUDE": -75.160846, "DATE_RANGE_START": 2021, "Total Visits": 709.0, "Total Visitors": 461.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 100.0, "Total Spend": 6013.0, "Total Transactions": 764.0, "Total Customers": 532.0, "Median Spend per Transaction": 5.91, "Median Spend per Customer": 7.35 }, "geometry": { "type": "Point", "coordinates": [ -75.160846, 39.952298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-rkz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6600 Essington Ave", "LATITUDE": 39.914686, "LONGITUDE": -75.220838, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 134.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 5.0, "Total Spend": 1124.0, "Total Transactions": 186.0, "Total Customers": 103.0, "Median Spend per Transaction": 5.63, "Median Spend per Customer": 7.41 }, "geometry": { "type": "Point", "coordinates": [ -75.220838, 39.914686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "Name": "Locust Rendezvous", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1415 Locust St", "LATITUDE": 39.948535, "LONGITUDE": -75.165879, "DATE_RANGE_START": 2021, "Total Visits": 1298.0, "Total Visitors": 926.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 108.0, "Total Spend": 16921.0, "Total Transactions": 384.0, "Total Customers": 296.0, "Median Spend per Transaction": 33.1, "Median Spend per Customer": 36.91 }, "geometry": { "type": "Point", "coordinates": [ -75.165879, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-8d9", "Name": "Sky Club", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1025 Arch St", "LATITUDE": 39.953909, "LONGITUDE": -75.15735, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 215.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 62.0, "Total Spend": 6383.0, "Total Transactions": 64.0, "Total Customers": 48.0, "Median Spend per Transaction": 29.7, "Median Spend per Customer": 65.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15735, 39.953909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "Name": "Mr Sushi", "Category": "Restaurants and Other Eating Places", "Address": "7324 Oxford Ave", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 76.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 80.0, "Total Spend": 6644.0, "Total Transactions": 203.0, "Total Customers": 122.0, "Median Spend per Transaction": 27.92, "Median Spend per Customer": 34.02 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-975", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.953036, "LONGITUDE": -75.192281, "DATE_RANGE_START": 2021, "Total Visits": 272.0, "Total Visitors": 198.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 252.0, "Total Spend": 9528.0, "Total Transactions": 1401.0, "Total Customers": 859.0, "Median Spend per Transaction": 5.35, "Median Spend per Customer": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.192281, 39.953036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "245 N Broad St", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 88.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 6.0, "Total Spend": 494.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p83-d9z", "Name": "Bells Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8508 Bustleton Ave", "LATITUDE": 40.071547, "LONGITUDE": -75.049648, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 84.0, "POI_CBG": 421010337011.0, "Median Dwell Time": 2.0, "Total Spend": 68.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 14.23, "Median Spend per Customer": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -75.049648, 40.071547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4160 Monument Rd", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2021, "Total Visits": 473.0, "Total Visitors": 382.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 7.0, "Total Spend": 919.0, "Total Transactions": 84.0, "Total Customers": 76.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 7.68 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "15501 Bustleton Ave Ste A", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2021, "Total Visits": 4110.0, "Total Visitors": 1453.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 45.0, "Total Spend": 2433.0, "Total Transactions": 74.0, "Total Customers": 45.0, "Median Spend per Transaction": 25.99, "Median Spend per Customer": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-y9z", "Name": "Bella Boutique", "Category": "Clothing Stores", "Address": "527 S 4th St", "LATITUDE": 39.941863, "LONGITUDE": -75.148989, "DATE_RANGE_START": 2021, "Total Visits": 1258.0, "Total Visitors": 1081.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 8.0, "Total Spend": 2204.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 190.0, "Median Spend per Customer": 190.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148989, 39.941863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "Name": "Riverwards Produce", "Category": "Grocery Stores", "Address": "2200 E Norris St", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 74.0, "POI_CBG": 421010158001.0, "Median Dwell Time": 11.0, "Total Spend": 79576.0, "Total Transactions": 2854.0, "Total Customers": 1329.0, "Median Spend per Transaction": 19.91, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3359 Kensington Ave", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 169.0, "POI_CBG": 421010188007.0, "Median Dwell Time": 4.0, "Total Spend": 318.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 3.44, "Median Spend per Customer": 2.69 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6800 Bustleton Ave", "LATITUDE": 40.040921, "LONGITUDE": -75.065658, "DATE_RANGE_START": 2021, "Total Visits": 411.0, "Total Visitors": 246.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 2.0, "Total Spend": 224.0, "Total Transactions": 24.0, "Total Customers": 14.0, "Median Spend per Transaction": 10.39, "Median Spend per Customer": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -75.065658, 40.040921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.037065, "LONGITUDE": -75.118922, "DATE_RANGE_START": 2021, "Total Visits": 418.0, "Total Visitors": 320.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 11.0, "Total Spend": 76670.0, "Total Transactions": 1979.0, "Total Customers": 1716.0, "Median Spend per Transaction": 25.66, "Median Spend per Customer": 29.66 }, "geometry": { "type": "Point", "coordinates": [ -75.118922, 40.037065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Roosevelt Blvd", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2021, "Total Visits": 4303.0, "Total Visitors": 2916.0, "POI_CBG": 421010361002.0, "Median Dwell Time": 6.0, "Total Spend": 12626.0, "Total Transactions": 420.0, "Total Customers": 294.0, "Median Spend per Transaction": 28.41, "Median Spend per Customer": 30.15 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgm-hwk", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "4268 Ridge Ave", "LATITUDE": 40.009599, "LONGITUDE": -75.196284, "DATE_RANGE_START": 2021, "Total Visits": 506.0, "Total Visitors": 389.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 3.0, "Total Spend": 327.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 22.31 }, "geometry": { "type": "Point", "coordinates": [ -75.196284, 40.009599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "59 E Oregon Ave", "LATITUDE": 39.914298, "LONGITUDE": -75.149292, "DATE_RANGE_START": 2021, "Total Visits": 3912.0, "Total Visitors": 2566.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 5.0, "Total Spend": 1740.0, "Total Transactions": 60.0, "Total Customers": 43.0, "Median Spend per Transaction": 27.36, "Median Spend per Customer": 28.8 }, "geometry": { "type": "Point", "coordinates": [ -75.149292, 39.914298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-p5f", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5165 Lancaster Ave", "LATITUDE": 39.977232, "LONGITUDE": -75.226077, "DATE_RANGE_START": 2021, "Total Visits": 470.0, "Total Visitors": 310.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 4.0, "Total Spend": 323.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 8.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226077, 39.977232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-phy-835", "Name": "Metro Auto Sales", "Category": "Automobile Dealers", "Address": "211 W Roosevelt Blvd # 13", "LATITUDE": 40.025151, "LONGITUDE": -75.129374, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010286002.0, "Median Dwell Time": 72.0, "Total Spend": 2387.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 500.0, "Median Spend per Customer": 500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129374, 40.025151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-5pv", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2703 E Clearfield St", "LATITUDE": 39.982882, "LONGITUDE": -75.10466, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 24.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 138.0, "Total Spend": 1239.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.10466, 39.982882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "Name": "Fairmart", "Category": "Grocery Stores", "Address": "623 Fairmount Ave", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 29.0, "POI_CBG": 421010131001.0, "Median Dwell Time": 124.0, "Total Spend": 4245.0, "Total Transactions": 379.0, "Total Customers": 155.0, "Median Spend per Transaction": 9.67, "Median Spend per Customer": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "Name": "All The Way Live", "Category": "Restaurants and Other Eating Places", "Address": "6108 Germantown Ave", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 14.0, "Total Spend": 1464.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 42.43, "Median Spend per Customer": 42.43 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-hdv", "Name": "The Juice Room", "Category": "Restaurants and Other Eating Places", "Address": "7127 Germantown Ave", "LATITUDE": 40.0592, "LONGITUDE": -75.189995, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 2.0, "Total Spend": 962.0, "Total Transactions": 76.0, "Total Customers": 41.0, "Median Spend per Transaction": 10.59, "Median Spend per Customer": 11.07 }, "geometry": { "type": "Point", "coordinates": [ -75.189995, 40.0592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p85-7nq", "Name": "Tuscany Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "2418 Rhawn St", "LATITUDE": 40.056919, "LONGITUDE": -75.047895, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 36.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 476.0, "Total Spend": 189.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 39.68, "Median Spend per Customer": 39.68 }, "geometry": { "type": "Point", "coordinates": [ -75.047895, 40.056919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "Name": "Lets Grub", "Category": "Restaurants and Other Eating Places", "Address": "4040 Lancaster Ave", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 10.0, "Total Spend": 789.0, "Total Transactions": 55.0, "Total Customers": 33.0, "Median Spend per Transaction": 11.6, "Median Spend per Customer": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmd-w49", "Name": "Cook", "Category": "Home Furnishings Stores", "Address": "253 S 20th St", "LATITUDE": 39.94873, "LONGITUDE": -75.174113, "DATE_RANGE_START": 2021, "Total Visits": 1169.0, "Total Visitors": 613.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 181.0, "Total Spend": 145.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 20.53, "Median Spend per Customer": 20.53 }, "geometry": { "type": "Point", "coordinates": [ -75.174113, 39.94873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "Name": "Rays Cafe & Tea House", "Category": "Restaurants and Other Eating Places", "Address": "141 N 9th St", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 123.0, "Total Spend": 285.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "Name": "Rittenhouse Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2001 Pine St", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 53.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 262.0, "Total Spend": 1339.0, "Total Transactions": 57.0, "Total Customers": 41.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 11.21 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9q-ht9", "Name": "Bubbakoo's Burritos", "Category": "Restaurants and Other Eating Places", "Address": "2550 Grant Ave", "LATITUDE": 40.078769, "LONGITUDE": -75.027229, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 55.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 3388.0, "Total Transactions": 189.0, "Total Customers": 148.0, "Median Spend per Transaction": 14.88, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.027229, 40.078769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-225@628-pm9-zs5", "Name": "Aurora Grace", "Category": "Specialty Food Stores", "Address": "517 S 5th St", "LATITUDE": 39.942077, "LONGITUDE": -75.150507, "DATE_RANGE_START": 2021, "Total Visits": 1530.0, "Total Visitors": 1351.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 15.0, "Total Spend": 181.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150507, 39.942077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "2383 Cottman Ave Ste 38B", "LATITUDE": 40.046821, "LONGITUDE": -75.055507, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 215.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 148.0, "Total Spend": 2687.0, "Total Transactions": 110.0, "Total Customers": 55.0, "Median Spend per Transaction": 13.48, "Median Spend per Customer": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.055507, 40.046821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-6hq", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1186 Franklin Mills Cir", "LATITUDE": 40.087733, "LONGITUDE": -74.961181, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 745.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 32.99, "Median Spend per Customer": 35.74 }, "geometry": { "type": "Point", "coordinates": [ -74.961181, 40.087733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8m-v2k", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6438 Sackett St Unit 19", "LATITUDE": 40.029571, "LONGITUDE": -75.058564, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 103.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 6.0, "Total Spend": 726.0, "Total Transactions": 53.0, "Total Customers": 41.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058564, 40.029571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgc-zzz", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "5050 Parkside Ave", "LATITUDE": 39.979858, "LONGITUDE": -75.220169, "DATE_RANGE_START": 2021, "Total Visits": 578.0, "Total Visitors": 315.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 22.0, "Total Spend": 1046.0, "Total Transactions": 50.0, "Total Customers": 38.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220169, 39.979858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfx-kxq", "Name": "Funny Monk Emporium", "Category": "Other Miscellaneous Store Retailers", "Address": "4369 Cresson St", "LATITUDE": 40.026687, "LONGITUDE": -75.224098, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 53.0, "POI_CBG": 421010214003.0, "Median Dwell Time": 6.0, "Total Spend": 19326.0, "Total Transactions": 418.0, "Total Customers": 303.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -75.224098, 40.026687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jy9", "Name": "The Dive Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "947 E Passyunk Ave", "LATITUDE": 39.936867, "LONGITUDE": -75.154753, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 74.0, "POI_CBG": 421010024001.0, "Median Dwell Time": 12.0, "Total Spend": 110.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154753, 39.936867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pnx-cbk", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "1451 E Columbia Ave", "LATITUDE": 39.97443, "LONGITUDE": -75.13265, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010158005.0, "Median Dwell Time": null, "Total Spend": 129.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 11.56, "Median Spend per Customer": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.13265, 39.97443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgf-7kf", "Name": "Lavish", "Category": "Restaurants and Other Eating Places", "Address": "4308 Lancaster Ave", "LATITUDE": 39.967761, "LONGITUDE": -75.210086, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010106001.0, "Median Dwell Time": 301.0, "Total Spend": 3377.0, "Total Transactions": 48.0, "Total Customers": 45.0, "Median Spend per Transaction": 82.5, "Median Spend per Customer": 81.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210086, 39.967761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "Name": "Pho Don", "Category": "Restaurants and Other Eating Places", "Address": "3528 Germantown Ave", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 33.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 168.0, "Total Spend": 2187.0, "Total Transactions": 110.0, "Total Customers": 57.0, "Median Spend per Transaction": 14.45, "Median Spend per Customer": 31.06 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-wrk", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2628 N Broad St", "LATITUDE": 39.993383, "LONGITUDE": -75.155194, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 36.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 30.0, "Total Spend": 14770.0, "Total Transactions": 511.0, "Total Customers": 418.0, "Median Spend per Transaction": 26.01, "Median Spend per Customer": 27.17 }, "geometry": { "type": "Point", "coordinates": [ -75.155194, 39.993383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "Name": "Heng Fa Food Market", "Category": "Grocery Stores", "Address": "130 N 10th St", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2021, "Total Visits": 652.0, "Total Visitors": 430.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 6.0, "Total Spend": 95768.0, "Total Transactions": 1131.0, "Total Customers": 649.0, "Median Spend per Transaction": 13.55, "Median Spend per Customer": 20.21 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4314 Locust St", "LATITUDE": 39.953381, "LONGITUDE": -75.209698, "DATE_RANGE_START": 2021, "Total Visits": 933.0, "Total Visitors": 592.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 9.0, "Total Spend": 40654.0, "Total Transactions": 2387.0, "Total Customers": 1069.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 22.45 }, "geometry": { "type": "Point", "coordinates": [ -75.209698, 39.953381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "Name": "Uniqlo", "Category": "Clothing Stores", "Address": "1608 Chestnut St", "LATITUDE": 39.951014, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2021, "Total Visits": 368.0, "Total Visitors": 236.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 237.0, "Total Spend": 26342.0, "Total Transactions": 418.0, "Total Customers": 348.0, "Median Spend per Transaction": 39.91, "Median Spend per Customer": 49.81 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.951014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "Name": "Mostly Books", "Category": "Book Stores and News Dealers", "Address": "529 Bainbridge St", "LATITUDE": 39.94129, "LONGITUDE": -75.151876, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 76.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 12.0, "Total Spend": 1783.0, "Total Transactions": 95.0, "Total Customers": 88.0, "Median Spend per Transaction": 14.15, "Median Spend per Customer": 16.04 }, "geometry": { "type": "Point", "coordinates": [ -75.151876, 39.94129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "Name": "Buffalo Exchange", "Category": "Used Merchandise Stores", "Address": "1520 Chestnut St", "LATITUDE": 39.951062, "LONGITUDE": -75.166599, "DATE_RANGE_START": 2021, "Total Visits": 5251.0, "Total Visitors": 3716.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 59.0, "Total Spend": 59148.0, "Total Transactions": 1535.0, "Total Customers": 1332.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166599, 39.951062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-cyv", "Name": "El Provocon", "Category": "Restaurants and Other Eating Places", "Address": "2843 Tyson Ave", "LATITUDE": 40.039466, "LONGITUDE": -75.056309, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 88.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 6.0, "Total Spend": 802.0, "Total Transactions": 62.0, "Total Customers": 48.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056309, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "Name": "DaMo Pasta Lab", "Category": "Restaurants and Other Eating Places", "Address": "105 S 12th St", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 205.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 5530.0, "Total Transactions": 263.0, "Total Customers": 210.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 19.64 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pg2-zj9", "Name": "Panda Garden", "Category": "Restaurants and Other Eating Places", "Address": "275 W Mount Pleasant Ave", "LATITUDE": 40.054638, "LONGITUDE": -75.193918, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 59.0, "Total Spend": 2562.0, "Total Transactions": 165.0, "Total Customers": 110.0, "Median Spend per Transaction": 12.47, "Median Spend per Customer": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.193918, 40.054638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-phj-rrk", "Name": "BBQ Town", "Category": "Restaurants and Other Eating Places", "Address": "7711 Ogontz Ave", "LATITUDE": 40.071208, "LONGITUDE": -75.157221, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 26.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 305.0, "Total Spend": 549.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 14.54, "Median Spend per Customer": 30.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157221, 40.071208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "Name": "Mr. Tire", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6740 Frankford Ave", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010316006.0, "Median Dwell Time": 116.0, "Total Spend": 8647.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 164.06, "Median Spend per Customer": 164.06 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9377 Krewstown Rd", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2021, "Total Visits": 1592.0, "Total Visitors": 1088.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 3.0, "Total Spend": 127480.0, "Total Transactions": 7050.0, "Total Customers": 2866.0, "Median Spend per Transaction": 12.03, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-k75", "Name": "Ross Stores", "Category": "Department Stores", "Address": "9906 Roosevelt Blvd", "LATITUDE": 40.094502, "LONGITUDE": -75.018223, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 1.0, "Total Spend": 10331.0, "Total Transactions": 241.0, "Total Customers": 162.0, "Median Spend per Transaction": 28.9, "Median Spend per Customer": 37.7 }, "geometry": { "type": "Point", "coordinates": [ -75.018223, 40.094502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "Name": "Suburban Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10875 Bustleton Ave", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 126.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 4.0, "Total Spend": 95.0, "Total Transactions": 17.0, "Total Customers": 7.0, "Median Spend per Transaction": 3.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2320 26 Fairmount Avenue Philadelphia", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2021, "Total Visits": 489.0, "Total Visitors": 365.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 7.0, "Total Spend": 23290.0, "Total Transactions": 1198.0, "Total Customers": 659.0, "Median Spend per Transaction": 12.92, "Median Spend per Customer": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "537 Adams Ave", "LATITUDE": 40.038428, "LONGITUDE": -75.106684, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 57.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 7.0, "Total Spend": 31522.0, "Total Transactions": 778.0, "Total Customers": 618.0, "Median Spend per Transaction": 24.81, "Median Spend per Customer": 25.97 }, "geometry": { "type": "Point", "coordinates": [ -75.106684, 40.038428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-td9", "Name": "Milano's Pizzeria and Grill", "Category": "Restaurants and Other Eating Places", "Address": "127 S 10th St", "LATITUDE": 39.948998, "LONGITUDE": -75.157083, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 69.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 2.0, "Total Spend": 233.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 20.7, "Median Spend per Customer": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157083, 39.948998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p9q-w8v", "Name": "Big Daddy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1916 Welsh Rd Ste 14", "LATITUDE": 40.081036, "LONGITUDE": -75.038535, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 74.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 5.0, "Total Spend": 4445.0, "Total Transactions": 117.0, "Total Customers": 91.0, "Median Spend per Transaction": 40.48, "Median Spend per Customer": 40.61 }, "geometry": { "type": "Point", "coordinates": [ -75.038535, 40.081036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgy-kj9", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "701 E Cathedral Rd Ste 7", "LATITUDE": 40.062824, "LONGITUDE": -75.237514, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 48.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 5.0, "Total Spend": 5347.0, "Total Transactions": 119.0, "Total Customers": 84.0, "Median Spend per Transaction": 21.88, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.237514, 40.062824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "Name": "South", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "600 N Broad St", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2021, "Total Visits": 227.0, "Total Visitors": 174.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 110.0, "Total Spend": 10235.0, "Total Transactions": 277.0, "Total Customers": 203.0, "Median Spend per Transaction": 17.63, "Median Spend per Customer": 31.51 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-223@628-pm4-mc5", "Name": "Casa Mexico", "Category": "Restaurants and Other Eating Places", "Address": "1134 S 9th St", "LATITUDE": 39.935496, "LONGITUDE": -75.15875, "DATE_RANGE_START": 2021, "Total Visits": 1315.0, "Total Visitors": 902.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 39.0, "Total Spend": 3621.0, "Total Transactions": 69.0, "Total Customers": 67.0, "Median Spend per Transaction": 47.25, "Median Spend per Customer": 48.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15875, 39.935496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-yqf", "Name": "M Kee", "Category": "Restaurants and Other Eating Places", "Address": "1002 Race St", "LATITUDE": 39.955229, "LONGITUDE": -75.156117, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 155.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 34.0, "Total Spend": 911.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 26.06, "Median Spend per Customer": 29.92 }, "geometry": { "type": "Point", "coordinates": [ -75.156117, 39.955229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "Name": "Red Lobster", "Category": "Restaurants and Other Eating Places", "Address": "9140 Roosevelt Blvd", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2021, "Total Visits": 439.0, "Total Visitors": 401.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 54.0, "Total Spend": 20852.0, "Total Transactions": 310.0, "Total Customers": 272.0, "Median Spend per Transaction": 60.02, "Median Spend per Customer": 65.41 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "Name": "Joes Pizza", "Category": "Restaurants and Other Eating Places", "Address": "122 S 16th St", "LATITUDE": 39.95039, "LONGITUDE": -75.167575, "DATE_RANGE_START": 2021, "Total Visits": 265.0, "Total Visitors": 217.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 41.0, "Total Spend": 222.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 18.55, "Median Spend per Customer": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.167575, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1528 Walnut St", "LATITUDE": 39.949521, "LONGITUDE": -75.167452, "DATE_RANGE_START": 2021, "Total Visits": 1625.0, "Total Visitors": 1246.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 62.0, "Total Spend": 12160.0, "Total Transactions": 1704.0, "Total Customers": 1179.0, "Median Spend per Transaction": 5.73, "Median Spend per Customer": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167452, 39.949521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phq-g8v", "Name": "M & J Market & Gas", "Category": "Gasoline Stations", "Address": "7100 Ogontz Ave", "LATITUDE": 40.062316, "LONGITUDE": -75.152128, "DATE_RANGE_START": 2021, "Total Visits": 890.0, "Total Visitors": 640.0, "POI_CBG": 421010265001.0, "Median Dwell Time": 6.0, "Total Spend": 1071.0, "Total Transactions": 48.0, "Total Customers": 36.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.152128, 40.062316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "Name": "Hair Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4160 Monument Rd", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2021, "Total Visits": 2442.0, "Total Visitors": 1465.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 15.0, "Total Spend": 12605.0, "Total Transactions": 363.0, "Total Customers": 291.0, "Median Spend per Transaction": 24.81, "Median Spend per Customer": 27.4 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "2360 W Oregon Ave", "LATITUDE": 39.918005, "LONGITUDE": -75.188849, "DATE_RANGE_START": 2021, "Total Visits": 487.0, "Total Visitors": 420.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 8.0, "Total Spend": 20041.0, "Total Transactions": 382.0, "Total Customers": 291.0, "Median Spend per Transaction": 37.79, "Median Spend per Customer": 52.9 }, "geometry": { "type": "Point", "coordinates": [ -75.188849, 39.918005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-f2k", "Name": "New Eli", "Category": "Restaurants and Other Eating Places", "Address": "2956 Kensington Ave Ste 2", "LATITUDE": 39.993812, "LONGITUDE": -75.118652, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 181.0, "POI_CBG": 421010177011.0, "Median Dwell Time": 6.0, "Total Spend": 360.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 47.17, "Median Spend per Customer": 47.17 }, "geometry": { "type": "Point", "coordinates": [ -75.118652, 39.993812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgf-fpv", "Name": "Kabobeesh", "Category": "Restaurants and Other Eating Places", "Address": "4201 Chestnut St", "LATITUDE": 39.956522, "LONGITUDE": -75.206506, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 134.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 20.0, "Total Spend": 7211.0, "Total Transactions": 236.0, "Total Customers": 172.0, "Median Spend per Transaction": 17.57, "Median Spend per Customer": 26.67 }, "geometry": { "type": "Point", "coordinates": [ -75.206506, 39.956522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-xkf", "Name": "Vietnam Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "221 N 11th St", "LATITUDE": 39.956332, "LONGITUDE": -75.157056, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 126.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 302.0, "Total Spend": 160.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 33.56, "Median Spend per Customer": 33.56 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.956332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-j7q", "Name": "Cavanaugh's Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "1823 Sansom St", "LATITUDE": 39.951128, "LONGITUDE": -75.171573, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 172.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 54.0, "Total Spend": 1768.0, "Total Transactions": 64.0, "Total Customers": 19.0, "Median Spend per Transaction": 25.04, "Median Spend per Customer": 78.47 }, "geometry": { "type": "Point", "coordinates": [ -75.171573, 39.951128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-4vz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "9201 Roosevelt Blvd", "LATITUDE": 40.077481, "LONGITUDE": -75.031225, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 198.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 1.0, "Total Spend": 69.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 14.43, "Median Spend per Customer": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.031225, 40.077481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25d-223@628-pm6-hyv", "Name": "Dolores", "Category": "Restaurants and Other Eating Places", "Address": "1841 S 2nd St", "LATITUDE": 39.924509, "LONGITUDE": -75.149814, "DATE_RANGE_START": 2021, "Total Visits": 871.0, "Total Visitors": 461.0, "POI_CBG": 421010027022.0, "Median Dwell Time": 215.0, "Total Spend": 788.0, "Total Transactions": 41.0, "Total Customers": 31.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.75 }, "geometry": { "type": "Point", "coordinates": [ -75.149814, 39.924509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "5901 Wayne Ave", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 7.0, "POI_CBG": 421010238003.0, "Median Dwell Time": 232.0, "Total Spend": 5081.0, "Total Transactions": 628.0, "Total Customers": 425.0, "Median Spend per Transaction": 5.66, "Median Spend per Customer": 8.14 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-nnq", "Name": "Square Pie", "Category": "Restaurants and Other Eating Places", "Address": "600 Catharine St", "LATITUDE": 39.938609, "LONGITUDE": -75.152665, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 19.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 1.0, "Total Spend": 1346.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 31.46, "Median Spend per Customer": 31.46 }, "geometry": { "type": "Point", "coordinates": [ -75.152665, 39.938609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-3qz", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4229 N Broad St Unit 35", "LATITUDE": 40.017784, "LONGITUDE": -75.148619, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 5.0, "Total Spend": 5327.0, "Total Transactions": 38.0, "Total Customers": 29.0, "Median Spend per Transaction": 70.19, "Median Spend per Customer": 78.82 }, "geometry": { "type": "Point", "coordinates": [ -75.148619, 40.017784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "Name": "Chubby's Fox Chase Deli", "Category": "Restaurants and Other Eating Places", "Address": "537 Hoffnagle St", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 48.0, "POI_CBG": 421010341006.0, "Median Dwell Time": 1200.0, "Total Spend": 1638.0, "Total Transactions": 79.0, "Total Customers": 62.0, "Median Spend per Transaction": 17.09, "Median Spend per Customer": 23.53 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmf-s3q", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "1745 South St", "LATITUDE": 39.944594, "LONGITUDE": -75.171766, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 2.0, "Total Spend": 9749.0, "Total Transactions": 926.0, "Total Customers": 668.0, "Median Spend per Transaction": 9.15, "Median Spend per Customer": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.171766, 39.944594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "Name": "Claire's", "Category": "Clothing Stores", "Address": "2329 Cottman Ave", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 60.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 20.0, "Total Spend": 6320.0, "Total Transactions": 165.0, "Total Customers": 155.0, "Median Spend per Transaction": 28.06, "Median Spend per Customer": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "Name": "Standard Tap", "Category": "Restaurants and Other Eating Places", "Address": "901 N 2nd St", "LATITUDE": 39.964257, "LONGITUDE": -75.140401, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 60.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 76.0, "Total Spend": 5457.0, "Total Transactions": 76.0, "Total Customers": 69.0, "Median Spend per Transaction": 52.9, "Median Spend per Customer": 55.1 }, "geometry": { "type": "Point", "coordinates": [ -75.140401, 39.964257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "Name": "Ginza", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Front St", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 15.0, "Total Spend": 7223.0, "Total Transactions": 117.0, "Total Customers": 112.0, "Median Spend per Transaction": 57.95, "Median Spend per Customer": 58.7 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "Name": "Convenient Food Mart", "Category": "Grocery Stores", "Address": "7101 Frankford Ave", "LATITUDE": 40.034523, "LONGITUDE": -75.044217, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 38.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 6.0, "Total Spend": 8137.0, "Total Transactions": 539.0, "Total Customers": 251.0, "Median Spend per Transaction": 11.63, "Median Spend per Customer": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.044217, 40.034523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp2-q75", "Name": "Kensington Pub", "Category": "Restaurants and Other Eating Places", "Address": "2116 E Tioga St", "LATITUDE": 39.995547, "LONGITUDE": -75.102511, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 60.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 123.0, "Total Spend": 320.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102511, 39.995547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "Name": "Main Street Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4444 Main St", "LATITUDE": 40.026391, "LONGITUDE": -75.226268, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 67.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 7.0, "Total Spend": 11872.0, "Total Transactions": 107.0, "Total Customers": 84.0, "Median Spend per Transaction": 82.0, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226268, 40.026391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "716 South St", "LATITUDE": 39.942147, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 158.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 77.0, "Total Spend": 23244.0, "Total Transactions": 876.0, "Total Customers": 675.0, "Median Spend per Transaction": 25.75, "Median Spend per Customer": 28.93 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.942147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-6ff", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "924 Walnut St", "LATITUDE": 39.948341, "LONGITUDE": -75.157035, "DATE_RANGE_START": 2021, "Total Visits": 969.0, "Total Visitors": 606.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 161.0, "Total Spend": 301.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157035, 39.948341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-gp9", "Name": "Jay's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1228 Spruce St", "LATITUDE": 39.946457, "LONGITUDE": -75.162475, "DATE_RANGE_START": 2021, "Total Visits": 561.0, "Total Visitors": 408.0, "POI_CBG": 421010011014.0, "Median Dwell Time": 20.0, "Total Spend": 95.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.09, "Median Spend per Customer": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.162475, 39.946457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1000 S Broad St", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2021, "Total Visits": 513.0, "Total Visitors": 439.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 7.0, "Total Spend": 21829.0, "Total Transactions": 1506.0, "Total Customers": 1055.0, "Median Spend per Transaction": 12.27, "Median Spend per Customer": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2nd Lehigh Ave", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2021, "Total Visits": 735.0, "Total Visitors": 496.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 4.0, "Total Spend": 22026.0, "Total Transactions": 1516.0, "Total Customers": 838.0, "Median Spend per Transaction": 13.13, "Median Spend per Customer": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-ysq", "Name": "C & R Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "1601 S 49th St", "LATITUDE": 39.93947, "LONGITUDE": -75.209529, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 155.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 13.0, "Total Spend": 21156.0, "Total Transactions": 55.0, "Total Customers": 36.0, "Median Spend per Transaction": 67.66, "Median Spend per Customer": 125.66 }, "geometry": { "type": "Point", "coordinates": [ -75.209529, 39.93947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "Name": "Fair Mart", "Category": "Grocery Stores", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.968488, "LONGITUDE": -75.180495, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 217.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 711.0, "Total Spend": 4561.0, "Total Transactions": 353.0, "Total Customers": 148.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.180495, 39.968488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-wkz", "Name": "rue21", "Category": "Clothing Stores", "Address": "1259 Franklin Mills Cir", "LATITUDE": 40.088728, "LONGITUDE": -74.961198, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 334.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 686759.0, "Total Transactions": 15086.0, "Total Customers": 12201.0, "Median Spend per Transaction": 32.23, "Median Spend per Customer": 39.54 }, "geometry": { "type": "Point", "coordinates": [ -74.961198, 40.088728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2201 W Oregon Ave", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2021, "Total Visits": 411.0, "Total Visitors": 337.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 1058.0, "Total Transactions": 79.0, "Total Customers": 41.0, "Median Spend per Transaction": 9.94, "Median Spend per Customer": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "Name": "1 Stop Smoke Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "10103 Verree Rd Unit C", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 110.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 11.0, "Total Spend": 3052.0, "Total Transactions": 122.0, "Total Customers": 103.0, "Median Spend per Transaction": 22.5, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "Name": "Papa Nick's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "199 W Godfrey Ave", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 14.0, "POI_CBG": 421010272003.0, "Median Dwell Time": 273.0, "Total Spend": 1252.0, "Total Transactions": 50.0, "Total Customers": 29.0, "Median Spend per Transaction": 19.74, "Median Spend per Customer": 34.62 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-zmk", "Name": "Thank God Grocery Store", "Category": "Grocery Stores", "Address": "420 W Olney Ave Ste A", "LATITUDE": 40.036218, "LONGITUDE": -75.129732, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 21.0, "POI_CBG": 421010274013.0, "Median Dwell Time": 4.0, "Total Spend": 86.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129732, 40.036218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rx5", "Name": "Hair Hair", "Category": "Health and Personal Care Stores", "Address": "7618 City Ave", "LATITUDE": 39.978114, "LONGITUDE": -75.271405, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 55.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 4.0, "Total Spend": 32373.0, "Total Transactions": 874.0, "Total Customers": 695.0, "Median Spend per Transaction": 26.16, "Median Spend per Customer": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.271405, 39.978114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-g49", "Name": "Ham Bone", "Category": "Other Miscellaneous Store Retailers", "Address": "1824 Frankford Ave", "LATITUDE": 39.977503, "LONGITUDE": -75.13156, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 67.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 8.0, "Total Spend": 9858.0, "Total Transactions": 177.0, "Total Customers": 124.0, "Median Spend per Transaction": 33.9, "Median Spend per Customer": 56.14 }, "geometry": { "type": "Point", "coordinates": [ -75.13156, 39.977503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "Name": "Lee's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "930 N 29th St", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010137004.0, "Median Dwell Time": null, "Total Spend": 4632.0, "Total Transactions": 232.0, "Total Customers": 136.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnz-yy9", "Name": "Perri's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2347 E Clearfield St", "LATITUDE": 39.987227, "LONGITUDE": -75.108511, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010179002.0, "Median Dwell Time": null, "Total Spend": 2734.0, "Total Transactions": 141.0, "Total Customers": 74.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.108511, 39.987227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3401 Walnut St", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 42.0, "Total Spend": 36877.0, "Total Transactions": 2024.0, "Total Customers": 1255.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w8v", "Name": "Pro Image Sports", "Category": "Clothing Stores", "Address": "1491 Franklin Mills Cir", "LATITUDE": 40.087124, "LONGITUDE": -74.961763, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 95.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 8250.0, "Total Transactions": 138.0, "Total Customers": 91.0, "Median Spend per Transaction": 45.5, "Median Spend per Customer": 45.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961763, 40.087124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "Name": "Bruno's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1838 W Cheltenham Ave", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 62.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 2.0, "Total Spend": 2066.0, "Total Transactions": 112.0, "Total Customers": 110.0, "Median Spend per Transaction": 14.83, "Median Spend per Customer": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-j7q", "Name": "Flowers & Company", "Category": "Florists", "Address": "267 S 19th St", "LATITUDE": 39.948248, "LONGITUDE": -75.172462, "DATE_RANGE_START": 2021, "Total Visits": 1449.0, "Total Visitors": 1072.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 22.0, "Total Spend": 1196.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 35.73 }, "geometry": { "type": "Point", "coordinates": [ -75.172462, 39.948248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pnw-psq", "Name": "Unleashed by Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "180 W Girard Ave Ste 7", "LATITUDE": 39.969106, "LONGITUDE": -75.139264, "DATE_RANGE_START": 2021, "Total Visits": 854.0, "Total Visitors": 587.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 6.0, "Total Spend": 2575.0, "Total Transactions": 84.0, "Total Customers": 69.0, "Median Spend per Transaction": 29.13, "Median Spend per Customer": 33.61 }, "geometry": { "type": "Point", "coordinates": [ -75.139264, 39.969106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-4gk", "Name": "I Heart Cambodia", "Category": "Restaurants and Other Eating Places", "Address": "2207 S 7th St", "LATITUDE": 39.921392, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010041012.0, "Median Dwell Time": 1.0, "Total Spend": 993.0, "Total Transactions": 31.0, "Total Customers": 26.0, "Median Spend per Transaction": 28.51, "Median Spend per Customer": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.921392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25p-222@628-pm4-cwk", "Name": "Station Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "1550 McKean St", "LATITUDE": 39.925815, "LONGITUDE": -75.172603, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 29.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 79.0, "Total Spend": 270.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 56.64, "Median Spend per Customer": 56.64 }, "geometry": { "type": "Point", "coordinates": [ -75.172603, 39.925815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "Name": "El Taco", "Category": "Restaurants and Other Eating Places", "Address": "3233 Powelton Ave", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 33.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 4.0, "Total Spend": 4203.0, "Total Transactions": 246.0, "Total Customers": 198.0, "Median Spend per Transaction": 15.01, "Median Spend per Customer": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm7-nwk", "Name": "Point Crab's & Seafood", "Category": "Specialty Food Stores", "Address": "1324 S 21st St", "LATITUDE": 39.934951, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 11.0, "Total Spend": 147.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 21.72, "Median Spend per Customer": 21.72 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.934951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6399 Oxford Ave", "LATITUDE": 40.045071, "LONGITUDE": -75.088214, "DATE_RANGE_START": 2021, "Total Visits": 1320.0, "Total Visitors": 928.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 4.0, "Total Spend": 24611.0, "Total Transactions": 912.0, "Total Customers": 609.0, "Median Spend per Transaction": 25.01, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.088214, 40.045071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-btv", "Name": "Ridge Gas & Minimart", "Category": "Gasoline Stations", "Address": "2300 Ridge Ave", "LATITUDE": 39.980802, "LONGITUDE": -75.173001, "DATE_RANGE_START": 2021, "Total Visits": 322.0, "Total Visitors": 232.0, "POI_CBG": 421010149001.0, "Median Dwell Time": 4.0, "Total Spend": 2796.0, "Total Transactions": 169.0, "Total Customers": 119.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173001, 39.980802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "Name": "Dragon Phoenix House", "Category": "Restaurants and Other Eating Places", "Address": "2839 Tyson Ave", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 62.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 88.0, "Total Spend": 2000.0, "Total Transactions": 53.0, "Total Customers": 48.0, "Median Spend per Transaction": 36.67, "Median Spend per Customer": 36.67 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "Name": "Marine Layer", "Category": "Clothing Stores", "Address": "1604 Walnut St", "LATITUDE": 39.949625, "LONGITUDE": -75.16782, "DATE_RANGE_START": 2021, "Total Visits": 1208.0, "Total Visitors": 931.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 15.0, "Total Spend": 4329.0, "Total Transactions": 53.0, "Total Customers": 48.0, "Median Spend per Transaction": 77.5, "Median Spend per Customer": 95.35 }, "geometry": { "type": "Point", "coordinates": [ -75.16782, 39.949625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wtv", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "701 Market St", "LATITUDE": 39.951227, "LONGITUDE": -75.152425, "DATE_RANGE_START": 2021, "Total Visits": 823.0, "Total Visitors": 628.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 16.0, "Total Spend": 20143.0, "Total Transactions": 1322.0, "Total Customers": 1038.0, "Median Spend per Transaction": 10.15, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152425, 39.951227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7w-tn5", "Name": "Way Out", "Category": "Clothing Stores", "Address": "2327 Cottman Ave", "LATITUDE": 40.047236, "LONGITUDE": -75.055695, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 143.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 71.0, "Total Spend": 2290.0, "Total Transactions": 57.0, "Total Customers": 50.0, "Median Spend per Transaction": 31.74, "Median Spend per Customer": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.055695, 40.047236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7b-vmk", "Name": "Out Of Wack Jack", "Category": "Restaurants and Other Eating Places", "Address": "3156 Willits Rd", "LATITUDE": 40.057001, "LONGITUDE": -75.014587, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 79.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 63.0, "Total Spend": 914.0, "Total Transactions": 29.0, "Total Customers": 19.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.014587, 40.057001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "717 E Girard Ave", "LATITUDE": 39.972318, "LONGITUDE": -75.125675, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 131.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 8.0, "Total Spend": 7457.0, "Total Transactions": 1069.0, "Total Customers": 530.0, "Median Spend per Transaction": 5.7, "Median Spend per Customer": 9.34 }, "geometry": { "type": "Point", "coordinates": [ -75.125675, 39.972318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-mff", "Name": "Jerusalem Furniture", "Category": "Furniture Stores", "Address": "1509 E Erie Ave", "LATITUDE": 40.006026, "LONGITUDE": -75.097718, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 236.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 17.0, "Total Spend": 9709.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 2034.05, "Median Spend per Customer": 2034.05 }, "geometry": { "type": "Point", "coordinates": [ -75.097718, 40.006026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "3800 Aramingo Ave", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2021, "Total Visits": 2924.0, "Total Visitors": 1869.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 17.0, "Total Spend": 196820.0, "Total Transactions": 2609.0, "Total Customers": 1671.0, "Median Spend per Transaction": 34.46, "Median Spend per Customer": 44.86 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-j7q", "Name": "Frecon Farms", "Category": "Specialty Food Stores", "Address": "1819 Walnut St", "LATITUDE": 39.950808, "LONGITUDE": -75.171348, "DATE_RANGE_START": 2021, "Total Visits": 4434.0, "Total Visitors": 3162.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 41.0, "Total Spend": 1153.0, "Total Transactions": 79.0, "Total Customers": 67.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.171348, 39.950808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmd-zfz", "Name": "Springfield Beer Distributor", "Category": "Beer, Wine, and Liquor Stores", "Address": "2206 Washington Ave", "LATITUDE": 39.939186, "LONGITUDE": -75.180299, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 167.0, "POI_CBG": 421010020001.0, "Median Dwell Time": 7.0, "Total Spend": 14211.0, "Total Transactions": 286.0, "Total Customers": 165.0, "Median Spend per Transaction": 39.95, "Median Spend per Customer": 47.46 }, "geometry": { "type": "Point", "coordinates": [ -75.180299, 39.939186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "Name": "H&M (Hennes & Mauritz)", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.088823, "LONGITUDE": -74.961811, "DATE_RANGE_START": 2021, "Total Visits": 470.0, "Total Visitors": 434.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 17724.0, "Total Transactions": 422.0, "Total Customers": 391.0, "Median Spend per Transaction": 30.98, "Median Spend per Customer": 32.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961811, 40.088823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "Name": "El Rey", "Category": "Restaurants and Other Eating Places", "Address": "2013 Chestnut St", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 193.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 34.0, "Total Spend": 25695.0, "Total Transactions": 413.0, "Total Customers": 377.0, "Median Spend per Transaction": 50.46, "Median Spend per Customer": 54.38 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-jsq", "Name": "Danny's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.045112, "LONGITUDE": -75.117134, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 21.0, "Total Spend": 805.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117134, 40.045112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "145 N 11th St", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2021, "Total Visits": 4088.0, "Total Visitors": 3143.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 9572.0, "Total Transactions": 413.0, "Total Customers": 365.0, "Median Spend per Transaction": 17.39, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-xwk", "Name": "Walnut Street Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2929 Walnut St", "LATITUDE": 39.952066, "LONGITUDE": -75.183753, "DATE_RANGE_START": 2021, "Total Visits": 4735.0, "Total Visitors": 3215.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 198.0, "Total Spend": 4677.0, "Total Transactions": 64.0, "Total Customers": 64.0, "Median Spend per Transaction": 57.24, "Median Spend per Customer": 57.24 }, "geometry": { "type": "Point", "coordinates": [ -75.183753, 39.952066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "Name": "Brick House Bar & Grille", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3334 Grant Ave", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2021, "Total Visits": 504.0, "Total Visitors": 351.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 73.0, "Total Spend": 8192.0, "Total Transactions": 172.0, "Total Customers": 136.0, "Median Spend per Transaction": 40.62, "Median Spend per Customer": 50.25 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "Name": "The Twisted Tail", "Category": "Restaurants and Other Eating Places", "Address": "509 S 2nd St", "LATITUDE": 39.941828, "LONGITUDE": -75.145203, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 100.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 82.0, "Total Spend": 32232.0, "Total Transactions": 475.0, "Total Customers": 403.0, "Median Spend per Transaction": 59.68, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145203, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-s89", "Name": "Blume", "Category": "Restaurants and Other Eating Places", "Address": "1500 Locust St", "LATITUDE": 39.948455, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2021, "Total Visits": 305.0, "Total Visitors": 248.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 7.0, "Total Spend": 9726.0, "Total Transactions": 155.0, "Total Customers": 146.0, "Median Spend per Transaction": 51.39, "Median Spend per Customer": 51.66 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 39.948455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pmb-7yv", "Name": "Umi Sushi And Seafood", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.95348, "LONGITUDE": -75.159046, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 2398.0, "Total Transactions": 138.0, "Total Customers": 124.0, "Median Spend per Transaction": 15.36, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159046, 39.95348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "3711 Market St", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2021, "Total Visits": 10210.0, "Total Visitors": 5926.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 82.0, "Total Spend": 9071.0, "Total Transactions": 232.0, "Total Customers": 208.0, "Median Spend per Transaction": 26.12, "Median Spend per Customer": 28.09 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4163 Whitaker Ave", "LATITUDE": 40.012435, "LONGITUDE": -75.119008, "DATE_RANGE_START": 2021, "Total Visits": 611.0, "Total Visitors": 508.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 2.0, "Total Spend": 17789.0, "Total Transactions": 1251.0, "Total Customers": 919.0, "Median Spend per Transaction": 12.43, "Median Spend per Customer": 15.26 }, "geometry": { "type": "Point", "coordinates": [ -75.119008, 40.012435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6409 Torresdale Ave # 13", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2021, "Total Visits": 332.0, "Total Visitors": 186.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 3.0, "Total Spend": 11626.0, "Total Transactions": 1346.0, "Total Customers": 449.0, "Median Spend per Transaction": 7.16, "Median Spend per Customer": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "532 W Lehigh Ave # 46", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 81.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 2.0, "Total Spend": 4124.0, "Total Transactions": 499.0, "Total Customers": 327.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 9.69 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "809 S Broad St", "LATITUDE": 39.94013, "LONGITUDE": -75.165831, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 3.0, "Total Spend": 5371.0, "Total Transactions": 895.0, "Total Customers": 530.0, "Median Spend per Transaction": 5.37, "Median Spend per Customer": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.165831, 39.94013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029917, "LONGITUDE": -75.0978, "DATE_RANGE_START": 2021, "Total Visits": 5453.0, "Total Visitors": 3134.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 20.0, "Total Spend": 119164.0, "Total Transactions": 976.0, "Total Customers": 642.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 74.1 }, "geometry": { "type": "Point", "coordinates": [ -75.0978, 40.029917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6701 Ridge Ave", "LATITUDE": 40.040652, "LONGITUDE": -75.223499, "DATE_RANGE_START": 2021, "Total Visits": 2007.0, "Total Visitors": 1215.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 5.0, "Total Spend": 244974.0, "Total Transactions": 12893.0, "Total Customers": 5766.0, "Median Spend per Transaction": 13.68, "Median Spend per Customer": 28.58 }, "geometry": { "type": "Point", "coordinates": [ -75.223499, 40.040652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 Richmond St", "LATITUDE": 39.983382, "LONGITUDE": -75.10116, "DATE_RANGE_START": 2021, "Total Visits": 3124.0, "Total Visitors": 2107.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 5.0, "Total Spend": 1238.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 23.44, "Median Spend per Customer": 29.35 }, "geometry": { "type": "Point", "coordinates": [ -75.10116, 39.983382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "143 W Fisher Ave", "LATITUDE": 40.031206, "LONGITUDE": -75.124676, "DATE_RANGE_START": 2021, "Total Visits": 1253.0, "Total Visitors": 737.0, "POI_CBG": 421010286005.0, "Median Dwell Time": 4.0, "Total Spend": 452.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 15.99, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124676, 40.031206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vfz", "Name": "Four Worlds Bakery", "Category": "Restaurants and Other Eating Places", "Address": "4634 Woodland Ave", "LATITUDE": 39.94341, "LONGITUDE": -75.210507, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010074001.0, "Median Dwell Time": 894.0, "Total Spend": 181.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 5.18, "Median Spend per Customer": 5.25 }, "geometry": { "type": "Point", "coordinates": [ -75.210507, 39.94341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pm3-vs5", "Name": "Mike & Matt's Italian Market", "Category": "Grocery Stores", "Address": "1206 Mifflin St", "LATITUDE": 39.926268, "LONGITUDE": -75.165968, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 10.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 3.0, "Total Spend": 764.0, "Total Transactions": 79.0, "Total Customers": 60.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165968, 39.926268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "713 W Girard Ave", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 12.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 342.0, "Total Spend": 16279.0, "Total Transactions": 597.0, "Total Customers": 473.0, "Median Spend per Transaction": 25.88, "Median Spend per Customer": 30.41 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "Name": "Bok Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "800 Mifflin St", "LATITUDE": 39.925217, "LONGITUDE": -75.160024, "DATE_RANGE_START": 2021, "Total Visits": 847.0, "Total Visitors": 585.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 109.0, "Total Spend": 48620.0, "Total Transactions": 1375.0, "Total Customers": 916.0, "Median Spend per Transaction": 23.4, "Median Spend per Customer": 34.43 }, "geometry": { "type": "Point", "coordinates": [ -75.160024, 39.925217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-bzf", "Name": "Potato Corner", "Category": "Restaurants and Other Eating Places", "Address": "901 Market St", "LATITUDE": 39.95172, "LONGITUDE": -75.155706, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 4151.0, "Total Transactions": 437.0, "Total Customers": 284.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155706, 39.95172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvv-249", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2210 Island Ave", "LATITUDE": 39.916025, "LONGITUDE": -75.24632, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 5.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 31.0, "Total Spend": 6198.0, "Total Transactions": 57.0, "Total Customers": 55.0, "Median Spend per Transaction": 80.19, "Median Spend per Customer": 78.47 }, "geometry": { "type": "Point", "coordinates": [ -75.24632, 39.916025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "Name": "Tomo Sushi & Ramen", "Category": "Restaurants and Other Eating Places", "Address": "228 Arch St", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 7.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 47.0, "Total Spend": 2013.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 57.24, "Median Spend per Customer": 57.24 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "Name": "Christies Deli", "Category": "Restaurants and Other Eating Places", "Address": "1822 Spring Garden St", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010125002.0, "Median Dwell Time": null, "Total Spend": 9203.0, "Total Transactions": 652.0, "Total Customers": 344.0, "Median Spend per Transaction": 12.6, "Median Spend per Customer": 17.79 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "Name": "The Sidecar Bar & Grille", "Category": "Restaurants and Other Eating Places", "Address": "2201 Christian St", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 1.0, "Total Spend": 1794.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 48.19, "Median Spend per Customer": 48.92 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8h-789", "Name": "Palm Tree Deli", "Category": "Restaurants and Other Eating Places", "Address": "7201 Torresdale Ave", "LATITUDE": 40.029254, "LONGITUDE": -75.03641, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 19.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 2.0, "Total Spend": 3455.0, "Total Transactions": 251.0, "Total Customers": 184.0, "Median Spend per Transaction": 9.92, "Median Spend per Customer": 11.54 }, "geometry": { "type": "Point", "coordinates": [ -75.03641, 40.029254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-m8v", "Name": "Furniture Mecca", "Category": "Furniture Stores", "Address": "101 E Venango St", "LATITUDE": 40.004624, "LONGITUDE": -75.127638, "DATE_RANGE_START": 2021, "Total Visits": 363.0, "Total Visitors": 303.0, "POI_CBG": 421010195022.0, "Median Dwell Time": 12.0, "Total Spend": 3697.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 259.0, "Median Spend per Customer": 259.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127638, 40.004624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "4037 N 5th St", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2021, "Total Visits": 1337.0, "Total Visitors": 878.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 16.0, "Total Spend": 3494.0, "Total Transactions": 107.0, "Total Customers": 79.0, "Median Spend per Transaction": 18.14, "Median Spend per Customer": 26.61 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1 Franklin Town Blvd", "LATITUDE": 39.960173, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 136.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 5.0, "Total Spend": 3362.0, "Total Transactions": 282.0, "Total Customers": 158.0, "Median Spend per Transaction": 7.9, "Median Spend per Customer": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.960173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "Delaware Ave & Spring Garden St", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2021, "Total Visits": 2575.0, "Total Visitors": 2002.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 4.0, "Total Spend": 113760.0, "Total Transactions": 4761.0, "Total Customers": 3117.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 26.85 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pnt-3wk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2495 Aramingo Ave", "LATITUDE": 39.974268, "LONGITUDE": -75.119829, "DATE_RANGE_START": 2021, "Total Visits": 360.0, "Total Visitors": 289.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 7.0, "Total Spend": 997.0, "Total Transactions": 55.0, "Total Customers": 36.0, "Median Spend per Transaction": 18.09, "Median Spend per Customer": 19.75 }, "geometry": { "type": "Point", "coordinates": [ -75.119829, 39.974268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgk-z9f", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "3977 Ford Rd", "LATITUDE": 39.999874, "LONGITUDE": -75.209033, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010122041.0, "Median Dwell Time": 1.0, "Total Spend": 600.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 15.15, "Median Spend per Customer": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.209033, 39.999874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp4-zfz", "Name": "Liberty Gas Station", "Category": "Gasoline Stations", "Address": "101 W Lehigh Ave", "LATITUDE": 39.991196, "LONGITUDE": -75.131119, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 217.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 4.0, "Total Spend": 25128.0, "Total Transactions": 788.0, "Total Customers": 575.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131119, 39.991196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028739, "LONGITUDE": -75.099173, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 387.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 7.0, "Total Spend": 22055.0, "Total Transactions": 1048.0, "Total Customers": 893.0, "Median Spend per Transaction": 15.8, "Median Spend per Customer": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.099173, 40.028739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "Name": "Mid Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2800 W Dauphin St Ste 420", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 41.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 289.0, "Total Spend": 634.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 15.09, "Median Spend per Customer": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgg-jsq", "Name": "BBQ Town", "Category": "Restaurants and Other Eating Places", "Address": "2150 W Sedge Ave", "LATITUDE": 39.995114, "LONGITUDE": -75.167387, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 55.0, "POI_CBG": 421010168006.0, "Median Dwell Time": 3.0, "Total Spend": 588.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 15.71, "Median Spend per Customer": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167387, 39.995114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pm3-vpv", "Name": "Philadelphia Scooters", "Category": "Other Motor Vehicle Dealers", "Address": "2501 Wharton St Ste G", "LATITUDE": 39.936705, "LONGITUDE": -75.186573, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 57.0, "POI_CBG": 421010020002.0, "Median Dwell Time": 164.0, "Total Spend": 1400.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 106.92, "Median Spend per Customer": 106.92 }, "geometry": { "type": "Point", "coordinates": [ -75.186573, 39.936705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "Name": "Clarkville", "Category": "Restaurants and Other Eating Places", "Address": "4301 Baltimore Ave", "LATITUDE": 39.949731, "LONGITUDE": -75.209453, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 57.0, "POI_CBG": 421010087011.0, "Median Dwell Time": 71.0, "Total Spend": 22593.0, "Total Transactions": 597.0, "Total Customers": 494.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 36.24 }, "geometry": { "type": "Point", "coordinates": [ -75.209453, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-nwk", "Name": "One Pound Cheesesteaks", "Category": "Restaurants and Other Eating Places", "Address": "2661 Kensington Ave", "LATITUDE": 39.989593, "LONGITUDE": -75.125509, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 62.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 9.0, "Total Spend": 1195.0, "Total Transactions": 69.0, "Total Customers": 62.0, "Median Spend per Transaction": 14.75, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.125509, 39.989593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "Name": "Dannys Wok 3", "Category": "Restaurants and Other Eating Places", "Address": "4322 N Broad St", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010204002.0, "Median Dwell Time": 3.0, "Total Spend": 630.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 41.16, "Median Spend per Customer": 41.16 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "Name": "New Wave Cafe", "Category": "Restaurants and Other Eating Places", "Address": "784 S 3rd St", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 53.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 360.0, "Total Spend": 9843.0, "Total Transactions": 208.0, "Total Customers": 179.0, "Median Spend per Transaction": 35.05, "Median Spend per Customer": 37.4 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-2kz", "Name": "Digital Underground", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "732 S 4th St", "LATITUDE": 39.939663, "LONGITUDE": -75.149717, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 64.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 1252.0, "Total Spend": 1123.0, "Total Transactions": 29.0, "Total Customers": 10.0, "Median Spend per Transaction": 39.64, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149717, 39.939663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm9-5zz", "Name": "Caffe Chicco", "Category": "Restaurants and Other Eating Places", "Address": "2532 S Broad St", "LATITUDE": 39.918638, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010039021.0, "Median Dwell Time": null, "Total Spend": 170.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 24.8, "Median Spend per Customer": 35.53 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.918638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-94v", "Name": "Mood Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4618 Baltimore Ave", "LATITUDE": 39.948631, "LONGITUDE": -75.215805, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010078005.0, "Median Dwell Time": null, "Total Spend": 1718.0, "Total Transactions": 60.0, "Total Customers": 60.0, "Median Spend per Transaction": 26.73, "Median Spend per Customer": 26.73 }, "geometry": { "type": "Point", "coordinates": [ -75.215805, 39.948631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "Name": "Vientiane Bistro", "Category": "Restaurants and Other Eating Places", "Address": "2537 Kensington Ave", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010161003.0, "Median Dwell Time": 78.0, "Total Spend": 997.0, "Total Transactions": 33.0, "Total Customers": 26.0, "Median Spend per Transaction": 28.24, "Median Spend per Customer": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 3.0, "Total Spend": 2468.0, "Total Transactions": 55.0, "Total Customers": 53.0, "Median Spend per Transaction": 39.96, "Median Spend per Customer": 40.56 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "Name": "Henry James Saloon", "Category": "Restaurants and Other Eating Places", "Address": "577 Jamestown St", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 53.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 114.0, "Total Spend": 1110.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 43.24, "Median Spend per Customer": 45.64 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-bhq", "Name": "Lloyd Whiskey Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "529 E Girard Ave", "LATITUDE": 39.971373, "LONGITUDE": -75.127654, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 179.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 36.0, "Total Spend": 14647.0, "Total Transactions": 200.0, "Total Customers": 146.0, "Median Spend per Transaction": 62.29, "Median Spend per Customer": 70.95 }, "geometry": { "type": "Point", "coordinates": [ -75.127654, 39.971373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "Name": "Lucha Cartel", "Category": "Restaurants and Other Eating Places", "Address": "207 Chestnut St", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 138.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 42.0, "Total Spend": 8532.0, "Total Transactions": 236.0, "Total Customers": 198.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmb-djv", "Name": "Hawthornes Biercafe", "Category": "Restaurants and Other Eating Places", "Address": "738 S 11th St", "LATITUDE": 39.941057, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 88.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 37.0, "Total Spend": 669.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 64.92, "Median Spend per Customer": 64.92 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.941057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-snq", "Name": "Motel 6", "Category": "Traveler Accommodation", "Address": "11580 Roosevelt Blvd", "LATITUDE": 40.103426, "LONGITUDE": -75.005145, "DATE_RANGE_START": 2021, "Total Visits": 439.0, "Total Visitors": 294.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 273.0, "Total Spend": 5909.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 124.96, "Median Spend per Customer": 156.92 }, "geometry": { "type": "Point", "coordinates": [ -75.005145, 40.103426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@63s-dw4-rzf", "Name": "Local Tavern", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave Gate F11", "LATITUDE": 39.895174, "LONGITUDE": -75.227977, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 82985.0, "Total Transactions": 3372.0, "Total Customers": 2709.0, "Median Spend per Transaction": 20.63, "Median Spend per Customer": 24.76 }, "geometry": { "type": "Point", "coordinates": [ -75.227977, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "101 S 52nd St", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2021, "Total Visits": 733.0, "Total Visitors": 470.0, "POI_CBG": 421010085001.0, "Median Dwell Time": 5.0, "Total Spend": 13783.0, "Total Transactions": 1014.0, "Total Customers": 733.0, "Median Spend per Transaction": 11.37, "Median Spend per Customer": 13.36 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22f@628-pmf-n5z", "Name": "La Scala's", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd Ste C100", "LATITUDE": 39.954543, "LONGITUDE": -75.168458, "DATE_RANGE_START": 2021, "Total Visits": 1539.0, "Total Visitors": 988.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 204.0, "Total Spend": 769.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 74.62, "Median Spend per Customer": 58.87 }, "geometry": { "type": "Point", "coordinates": [ -75.168458, 39.954543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2805 S Front St # 2809", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2021, "Total Visits": 1055.0, "Total Visitors": 764.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 2.0, "Total Spend": 12578.0, "Total Transactions": 1792.0, "Total Customers": 912.0, "Median Spend per Transaction": 5.9, "Median Spend per Customer": 9.42 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-y5f", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "1687 Grant Ave", "LATITUDE": 40.086763, "LONGITUDE": -75.038776, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 162.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 1.0, "Total Spend": 547.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 7.32, "Median Spend per Customer": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.038776, 40.086763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-cdv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5338 N 5th St", "LATITUDE": 40.033248, "LONGITUDE": -75.131604, "DATE_RANGE_START": 2021, "Total Visits": 842.0, "Total Visitors": 508.0, "POI_CBG": 421010275003.0, "Median Dwell Time": 4.0, "Total Spend": 1339.0, "Total Transactions": 36.0, "Total Customers": 29.0, "Median Spend per Transaction": 22.29, "Median Spend per Customer": 30.09 }, "geometry": { "type": "Point", "coordinates": [ -75.131604, 40.033248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2634 N Broad St # 44", "LATITUDE": 39.993791, "LONGITUDE": -75.155151, "DATE_RANGE_START": 2021, "Total Visits": 1487.0, "Total Visitors": 971.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 5.0, "Total Spend": 469.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 20.01 }, "geometry": { "type": "Point", "coordinates": [ -75.155151, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "Name": "Burlington", "Category": "Clothing Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.912374, "LONGITUDE": -75.156918, "DATE_RANGE_START": 2021, "Total Visits": 1771.0, "Total Visitors": 1432.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 23.0, "Total Spend": 4858.0, "Total Transactions": 112.0, "Total Customers": 103.0, "Median Spend per Transaction": 27.78, "Median Spend per Customer": 27.78 }, "geometry": { "type": "Point", "coordinates": [ -75.156918, 39.912374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-kj9", "Name": "Ace Hardware", "Category": "Building Material and Supplies Dealers", "Address": "153 N 3rd St", "LATITUDE": 39.953745, "LONGITUDE": -75.144691, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010001002.0, "Median Dwell Time": null, "Total Spend": 607.0, "Total Transactions": 29.0, "Total Customers": 29.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 14.56 }, "geometry": { "type": "Point", "coordinates": [ -75.144691, 39.953745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-52k", "Name": "Orient Express", "Category": "Restaurants and Other Eating Places", "Address": "1835 N 12th St Ste 7", "LATITUDE": 39.980968, "LONGITUDE": -75.15329, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 33.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 173.0, "Total Spend": 1665.0, "Total Transactions": 172.0, "Total Customers": 126.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15329, 39.980968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-sbk", "Name": "Frankinstien Bike Worx", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1529 Spruce St", "LATITUDE": 39.947579, "LONGITUDE": -75.167633, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 38.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 820.0, "Total Spend": 3861.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 219.24, "Median Spend per Customer": 79.92 }, "geometry": { "type": "Point", "coordinates": [ -75.167633, 39.947579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "Name": "Stateside", "Category": "Restaurants and Other Eating Places", "Address": "1536 E Passyunk Ave", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 14.0, "Total Spend": 8273.0, "Total Transactions": 205.0, "Total Customers": 189.0, "Median Spend per Transaction": 34.71, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7v-gkz", "Name": "Villagio Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1817 Cottman Ave", "LATITUDE": 40.053089, "LONGITUDE": -75.068847, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010335003.0, "Median Dwell Time": 3.0, "Total Spend": 1938.0, "Total Transactions": 84.0, "Total Customers": 62.0, "Median Spend per Transaction": 22.63, "Median Spend per Customer": 21.77 }, "geometry": { "type": "Point", "coordinates": [ -75.068847, 40.053089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm9-y5f", "Name": "Metalworks", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "315 South St", "LATITUDE": 39.941674, "LONGITUDE": -75.148121, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 28.0, "Total Spend": 258.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 53.95, "Median Spend per Customer": 53.95 }, "geometry": { "type": "Point", "coordinates": [ -75.148121, 39.941674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj9-5j9", "Name": "D & D Mini Market", "Category": "Grocery Stores", "Address": "5900 N 12th St", "LATITUDE": 40.042578, "LONGITUDE": -75.140373, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 12.0, "POI_CBG": 421010276003.0, "Median Dwell Time": 71.0, "Total Spend": 248.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 7.03, "Median Spend per Customer": 7.65 }, "geometry": { "type": "Point", "coordinates": [ -75.140373, 40.042578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "Name": "The Book Trader", "Category": "Book Stores and News Dealers", "Address": "7 N 2nd St", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 160.0, "Total Spend": 1242.0, "Total Transactions": 64.0, "Total Customers": 60.0, "Median Spend per Transaction": 19.22, "Median Spend per Customer": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "Name": "Old English Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6015 N 5th St", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010274011.0, "Median Dwell Time": 3.0, "Total Spend": 1807.0, "Total Transactions": 53.0, "Total Customers": 26.0, "Median Spend per Transaction": 30.41, "Median Spend per Customer": 34.78 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "Name": "Four Seasons Market", "Category": "Specialty Food Stores", "Address": "6130 Woodland Ave", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 62.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 7.0, "Total Spend": 1063.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 21.55, "Median Spend per Customer": 21.55 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "Name": "C Town Supermarkets", "Category": "Grocery Stores", "Address": "2438 W Lehigh Ave", "LATITUDE": 39.99594, "LONGITUDE": -75.172136, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 69.0, "POI_CBG": 421010169011.0, "Median Dwell Time": 233.0, "Total Spend": 995.0, "Total Transactions": 84.0, "Total Customers": 48.0, "Median Spend per Transaction": 8.58, "Median Spend per Customer": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.172136, 39.99594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1601 S Columbus Blvd", "LATITUDE": 39.923962, "LONGITUDE": -75.142554, "DATE_RANGE_START": 2021, "Total Visits": 757.0, "Total Visitors": 609.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 18207.0, "Total Transactions": 1766.0, "Total Customers": 1418.0, "Median Spend per Transaction": 8.81, "Median Spend per Customer": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.142554, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "Name": "Big Ben Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7266 Rising Sun Ave", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 50.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 11.0, "Total Spend": 9405.0, "Total Transactions": 303.0, "Total Customers": 227.0, "Median Spend per Transaction": 29.59, "Median Spend per Customer": 34.84 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-r49", "Name": "PA Auto Sales com", "Category": "Automobile Dealers", "Address": "11600 Roosevelt Blvd", "LATITUDE": 40.104341, "LONGITUDE": -75.003284, "DATE_RANGE_START": 2021, "Total Visits": 504.0, "Total Visitors": 425.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 20.0, "Total Spend": 16706.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 1000.0, "Median Spend per Customer": 1000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003284, 40.104341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2620 Cottman Ave", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2021, "Total Visits": 470.0, "Total Visitors": 382.0, "POI_CBG": 421010314021.0, "Median Dwell Time": 6.0, "Total Spend": 16833.0, "Total Transactions": 325.0, "Total Customers": 258.0, "Median Spend per Transaction": 34.88, "Median Spend per Customer": 38.82 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "Name": "Best Buy Furniture", "Category": "Furniture Stores", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.078042, "LONGITUDE": -75.024894, "DATE_RANGE_START": 2021, "Total Visits": 3227.0, "Total Visitors": 2298.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 63.0, "Total Spend": 1635.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 342.5, "Median Spend per Customer": 342.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024894, 40.078042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm3-wff", "Name": "Passyunk Market", "Category": "Grocery Stores", "Address": "1407 E Passyunk Ave", "LATITUDE": 39.931424, "LONGITUDE": -75.161293, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 220.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 421.0, "Total Spend": 741.0, "Total Transactions": 53.0, "Total Customers": 26.0, "Median Spend per Transaction": 15.48, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161293, 39.931424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-249", "Name": "Orthopedic Supply Inc", "Category": "Health and Personal Care Stores", "Address": "9150 Marshall St Ste 7", "LATITUDE": 40.073911, "LONGITUDE": -75.031195, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 74.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 13.0, "Total Spend": 668.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031195, 40.073911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "Name": "Sue's Market", "Category": "Grocery Stores", "Address": "275 Saint James Pl", "LATITUDE": 39.946236, "LONGITUDE": -75.145477, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 308.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 136.0, "Total Spend": 16232.0, "Total Transactions": 990.0, "Total Customers": 243.0, "Median Spend per Transaction": 11.58, "Median Spend per Customer": 30.74 }, "geometry": { "type": "Point", "coordinates": [ -75.145477, 39.946236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "11701 Bustleton Ave", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2021, "Total Visits": 3043.0, "Total Visitors": 1683.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 15.0, "Total Spend": 25351.0, "Total Transactions": 501.0, "Total Customers": 379.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 43.66 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "Name": "Lombard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "542 Lombard St", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010010012.0, "Median Dwell Time": null, "Total Spend": 1310.0, "Total Transactions": 193.0, "Total Customers": 119.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-kpv", "Name": "Artisans On the Avenue", "Category": "Clothing Stores", "Address": "8440 Germantown Ave", "LATITUDE": 40.075688, "LONGITUDE": -75.206238, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 7.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 97.0, "Total Spend": 570.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 81.0, "Median Spend per Customer": 81.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206238, 40.075688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgb-c3q", "Name": "Lucky Goat Coffeehouse", "Category": "Restaurants and Other Eating Places", "Address": "888 N 26th St", "LATITUDE": 39.972559, "LONGITUDE": -75.179343, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010136023.0, "Median Dwell Time": null, "Total Spend": 4739.0, "Total Transactions": 640.0, "Total Customers": 301.0, "Median Spend per Transaction": 5.97, "Median Spend per Customer": 9.87 }, "geometry": { "type": "Point", "coordinates": [ -75.179343, 39.972559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfv-94v", "Name": "The Nesting House", "Category": "Clothing Stores", "Address": "542 Carpenter Ln", "LATITUDE": 40.04661, "LONGITUDE": -75.195379, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 10.0, "Total Spend": 32376.0, "Total Transactions": 191.0, "Total Customers": 165.0, "Median Spend per Transaction": 36.14, "Median Spend per Customer": 37.37 }, "geometry": { "type": "Point", "coordinates": [ -75.195379, 40.04661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pg2-hdv", "Name": "Trattoria Moma", "Category": "Restaurants and Other Eating Places", "Address": "7131 Germantown Ave", "LATITUDE": 40.059314, "LONGITUDE": -75.190082, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 31.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 4.0, "Total Spend": 1076.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 81.69, "Median Spend per Customer": 81.69 }, "geometry": { "type": "Point", "coordinates": [ -75.190082, 40.059314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "Name": "New Zem Zem Pizza", "Category": "Restaurants and Other Eating Places", "Address": "117 E Chelten Ave", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 41.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 4.0, "Total Spend": 895.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 19.16, "Median Spend per Customer": 24.78 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pp2-47q", "Name": "Tinys Bottle Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "3124 Richmond St", "LATITUDE": 39.982331, "LONGITUDE": -75.103167, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 43.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 2.0, "Total Spend": 6769.0, "Total Transactions": 117.0, "Total Customers": 93.0, "Median Spend per Transaction": 47.76, "Median Spend per Customer": 60.34 }, "geometry": { "type": "Point", "coordinates": [ -75.103167, 39.982331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-kpv", "Name": "Foreign Bazaar", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1921 Chestnut St", "LATITUDE": 39.952092, "LONGITUDE": -75.172676, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 48.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 21.0, "Total Spend": 1486.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 53.16, "Median Spend per Customer": 62.58 }, "geometry": { "type": "Point", "coordinates": [ -75.172676, 39.952092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pm3-t5f", "Name": "River Twice", "Category": "Restaurants and Other Eating Places", "Address": "1601 E Passyunk Ave", "LATITUDE": 39.929748, "LONGITUDE": -75.163402, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 43.0, "Total Spend": 1921.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 311.76, "Median Spend per Customer": 311.76 }, "geometry": { "type": "Point", "coordinates": [ -75.163402, 39.929748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "Name": "Mr Wings", "Category": "Restaurants and Other Eating Places", "Address": "500 W Oregon Ave", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 1.0, "Total Spend": 2993.0, "Total Transactions": 107.0, "Total Customers": 98.0, "Median Spend per Transaction": 23.27, "Median Spend per Customer": 27.34 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "Name": "Suit Corner", "Category": "Clothing Stores", "Address": "302 Market St", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2021, "Total Visits": 933.0, "Total Visitors": 814.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 27.0, "Total Spend": 8291.0, "Total Transactions": 53.0, "Total Customers": 33.0, "Median Spend per Transaction": 127.5, "Median Spend per Customer": 199.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "1850 E Sedgley Ave", "LATITUDE": 40.002434, "LONGITUDE": -75.100336, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 86.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 3.0, "Total Spend": 265984.0, "Total Transactions": 169.0, "Total Customers": 24.0, "Median Spend per Transaction": 694.21, "Median Spend per Customer": 708.77 }, "geometry": { "type": "Point", "coordinates": [ -75.100336, 40.002434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnt-3wk", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2491 Aramingo Ave", "LATITUDE": 39.974634, "LONGITUDE": -75.119239, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 155.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 48.0, "Total Spend": 9129.0, "Total Transactions": 48.0, "Total Customers": 45.0, "Median Spend per Transaction": 97.63, "Median Spend per Customer": 97.63 }, "geometry": { "type": "Point", "coordinates": [ -75.119239, 39.974634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "5632 Ridge Ave", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2021, "Total Visits": 413.0, "Total Visitors": 241.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 2.0, "Total Spend": 3061.0, "Total Transactions": 255.0, "Total Customers": 105.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2201 Walnut St", "LATITUDE": 39.951277, "LONGITUDE": -75.177618, "DATE_RANGE_START": 2021, "Total Visits": 2093.0, "Total Visitors": 1714.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 4.0, "Total Spend": 2541.0, "Total Transactions": 91.0, "Total Customers": 81.0, "Median Spend per Transaction": 22.37, "Median Spend per Customer": 22.37 }, "geometry": { "type": "Point", "coordinates": [ -75.177618, 39.951277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1115 Cottman Ave", "LATITUDE": 40.060462, "LONGITUDE": -75.081398, "DATE_RANGE_START": 2021, "Total Visits": 585.0, "Total Visitors": 413.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 4.0, "Total Spend": 834.0, "Total Transactions": 36.0, "Total Customers": 19.0, "Median Spend per Transaction": 15.61, "Median Spend per Customer": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.081398, 40.060462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-wx5", "Name": "Gap Factory Store", "Category": "Clothing Stores", "Address": "1875 Franklin Mills Cir Spc NO163", "LATITUDE": 40.090197, "LONGITUDE": -74.960879, "DATE_RANGE_START": 2021, "Total Visits": 198.0, "Total Visitors": 193.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 3276.0, "Total Transactions": 60.0, "Total Customers": 60.0, "Median Spend per Transaction": 41.99, "Median Spend per Customer": 41.99 }, "geometry": { "type": "Point", "coordinates": [ -74.960879, 40.090197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "8743 Frankford Ave", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 124.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 152.0, "Total Spend": 1279.0, "Total Transactions": 41.0, "Total Customers": 41.0, "Median Spend per Transaction": 26.41, "Median Spend per Customer": 26.41 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "1130 Market St", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2021, "Total Visits": 7485.0, "Total Visitors": 5687.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 21.0, "Total Spend": 21946.0, "Total Transactions": 740.0, "Total Customers": 544.0, "Median Spend per Transaction": 18.25, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p9k-r8v", "Name": "The Union Tap", "Category": "Restaurants and Other Eating Places", "Address": "2711 Comly Rd", "LATITUDE": 40.10443, "LONGITUDE": -75.000432, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 150.0, "POI_CBG": 421010361002.0, "Median Dwell Time": 67.0, "Total Spend": 302.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.000432, 40.10443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "Name": "Walmart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9745 Roosevelt Blvd Ste A", "LATITUDE": 40.083037, "LONGITUDE": -75.022233, "DATE_RANGE_START": 2021, "Total Visits": 12146.0, "Total Visitors": 8024.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 22.0, "Total Spend": 393497.0, "Total Transactions": 7666.0, "Total Customers": 4823.0, "Median Spend per Transaction": 30.14, "Median Spend per Customer": 49.94 }, "geometry": { "type": "Point", "coordinates": [ -75.022233, 40.083037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-nwk", "Name": "Hiroki", "Category": "Restaurants and Other Eating Places", "Address": "1335 N Front St", "LATITUDE": 39.971334, "LONGITUDE": -75.135176, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 76.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 1.0, "Total Spend": 4281.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 489.02, "Median Spend per Customer": 489.02 }, "geometry": { "type": "Point", "coordinates": [ -75.135176, 39.971334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-jjv", "Name": "Copabanana", "Category": "Restaurants and Other Eating Places", "Address": "4000 Spruce St", "LATITUDE": 39.951555, "LONGITUDE": -75.203266, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 177.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 33.0, "Total Spend": 15082.0, "Total Transactions": 258.0, "Total Customers": 217.0, "Median Spend per Transaction": 42.82, "Median Spend per Customer": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203266, 39.951555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-2c5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.073477, "LONGITUDE": -75.033695, "DATE_RANGE_START": 2021, "Total Visits": 554.0, "Total Visitors": 358.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 1.0, "Total Spend": 9371.0, "Total Transactions": 1265.0, "Total Customers": 621.0, "Median Spend per Transaction": 6.42, "Median Spend per Customer": 9.69 }, "geometry": { "type": "Point", "coordinates": [ -75.033695, 40.073477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "Name": "Menchie's", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd Unit 4", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 317.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 737.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 12.65, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "Name": "Ox Coffee", "Category": "Restaurants and Other Eating Places", "Address": "616 S 3rd St", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2021, "Total Visits": 1158.0, "Total Visitors": 833.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 105.0, "Total Spend": 3837.0, "Total Transactions": 332.0, "Total Customers": 186.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3705 Germantown Ave", "LATITUDE": 40.009461, "LONGITUDE": -75.150639, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 1.0, "Total Spend": 3274.0, "Total Transactions": 501.0, "Total Customers": 212.0, "Median Spend per Transaction": 5.44, "Median Spend per Customer": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.150639, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8f-9mk", "Name": "Frankford Hardware", "Category": "Building Material and Supplies Dealers", "Address": "4444 Frankford Ave", "LATITUDE": 40.013624, "LONGITUDE": -75.08702, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 74.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 2.0, "Total Spend": 163.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 20.82, "Median Spend per Customer": 20.82 }, "geometry": { "type": "Point", "coordinates": [ -75.08702, 40.013624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pnx-6rk", "Name": "Spring Garden Market", "Category": "Grocery Stores", "Address": "400 Spring Garden St", "LATITUDE": 39.960581, "LONGITUDE": -75.14553, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 332.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 7.0, "Total Spend": 1727.0, "Total Transactions": 55.0, "Total Customers": 53.0, "Median Spend per Transaction": 33.35, "Median Spend per Customer": 33.35 }, "geometry": { "type": "Point", "coordinates": [ -75.14553, 39.960581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2400 Castor Ave", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2021, "Total Visits": 3002.0, "Total Visitors": 2057.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 4.0, "Total Spend": 22787.0, "Total Transactions": 857.0, "Total Customers": 628.0, "Median Spend per Transaction": 25.01, "Median Spend per Customer": 25.12 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2308 W Oregon Ave Ste A", "LATITUDE": 39.91784, "LONGITUDE": -75.186842, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 95.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 14.0, "Total Spend": 7410.0, "Total Transactions": 112.0, "Total Customers": 98.0, "Median Spend per Transaction": 52.91, "Median Spend per Customer": 52.91 }, "geometry": { "type": "Point", "coordinates": [ -75.186842, 39.91784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-j7q", "Name": "Vango Lounge And Skybar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "116 S 18th St", "LATITUDE": 39.951206, "LONGITUDE": -75.170692, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 91.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 26.0, "Total Spend": 34535.0, "Total Transactions": 358.0, "Total Customers": 267.0, "Median Spend per Transaction": 57.51, "Median Spend per Customer": 82.87 }, "geometry": { "type": "Point", "coordinates": [ -75.170692, 39.951206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "256-222@628-pm4-nqz", "Name": "Saloon Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "750 S 7th St", "LATITUDE": 39.939873, "LONGITUDE": -75.154572, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010018001.0, "Median Dwell Time": 82.0, "Total Spend": 255.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 53.41, "Median Spend per Customer": 53.41 }, "geometry": { "type": "Point", "coordinates": [ -75.154572, 39.939873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "Name": "Dairy Queen", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave", "LATITUDE": 40.087375, "LONGITUDE": -75.039949, "DATE_RANGE_START": 2021, "Total Visits": 403.0, "Total Visitors": 291.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 5.0, "Total Spend": 2208.0, "Total Transactions": 165.0, "Total Customers": 143.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.039949, 40.087375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "9000 Tinicum Blvd", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2021, "Total Visits": 1112.0, "Total Visitors": 735.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 791.0, "Total Spend": 13327.0, "Total Transactions": 43.0, "Total Customers": 29.0, "Median Spend per Transaction": 215.8, "Median Spend per Customer": 286.16 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "527 Franklin Mills Cir", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2021, "Total Visits": 403.0, "Total Visitors": 382.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 929.0, "Total Transactions": 57.0, "Total Customers": 57.0, "Median Spend per Transaction": 12.83, "Median Spend per Customer": 12.83 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5001 Rising Sun Ave", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 200.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 4.0, "Total Spend": 9135.0, "Total Transactions": 1043.0, "Total Customers": 492.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 9.98 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7000 Chester Ave", "LATITUDE": 39.923566, "LONGITUDE": -75.245262, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 267.0, "POI_CBG": 421010064003.0, "Median Dwell Time": 4.0, "Total Spend": 3820.0, "Total Transactions": 525.0, "Total Customers": 308.0, "Median Spend per Transaction": 5.94, "Median Spend per Customer": 8.41 }, "geometry": { "type": "Point", "coordinates": [ -75.245262, 39.923566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "Name": "Nifty Fifty's", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 105.0, "POI_CBG": 421010372003.0, "Median Dwell Time": 5.0, "Total Spend": 11127.0, "Total Transactions": 382.0, "Total Customers": 260.0, "Median Spend per Transaction": 29.63, "Median Spend per Customer": 26.23 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "Name": "Spice C", "Category": "Restaurants and Other Eating Places", "Address": "131 N 10th St", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 119.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 259.0, "Total Spend": 3444.0, "Total Transactions": 79.0, "Total Customers": 79.0, "Median Spend per Transaction": 38.67, "Median Spend per Customer": 38.67 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-brk", "Name": "East Coast Wings + Grill", "Category": "Restaurants and Other Eating Places", "Address": "2539 Castor Ave", "LATITUDE": 39.993916, "LONGITUDE": -75.091363, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 122.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 10.0, "Total Spend": 7322.0, "Total Transactions": 148.0, "Total Customers": 129.0, "Median Spend per Transaction": 41.55, "Median Spend per Customer": 49.25 }, "geometry": { "type": "Point", "coordinates": [ -75.091363, 39.993916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7nq", "Name": "Bodega Bar", "Category": "Restaurants and Other Eating Places", "Address": "1223 Walnut St", "LATITUDE": 39.949277, "LONGITUDE": -75.161669, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 234.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 242.0, "Total Spend": 17105.0, "Total Transactions": 291.0, "Total Customers": 217.0, "Median Spend per Transaction": 41.88, "Median Spend per Customer": 56.08 }, "geometry": { "type": "Point", "coordinates": [ -75.161669, 39.949277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "24th & Oregon St", "LATITUDE": 39.919412, "LONGITUDE": -75.187304, "DATE_RANGE_START": 2021, "Total Visits": 1007.0, "Total Visitors": 840.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 6.0, "Total Spend": 16360.0, "Total Transactions": 1463.0, "Total Customers": 1000.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 11.84 }, "geometry": { "type": "Point", "coordinates": [ -75.187304, 39.919412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "Name": "Cold Stone Creamery", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978153, "LONGITUDE": -75.119499, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 246.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 2.0, "Total Spend": 7427.0, "Total Transactions": 511.0, "Total Customers": 411.0, "Median Spend per Transaction": 13.36, "Median Spend per Customer": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -75.119499, 39.978153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1551 Washington Ave", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 119.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 5.0, "Total Spend": 6092.0, "Total Transactions": 907.0, "Total Customers": 566.0, "Median Spend per Transaction": 5.84, "Median Spend per Customer": 7.34 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "Name": "Evo Brickoven Pizza", "Category": "Restaurants and Other Eating Places", "Address": "277 W Mount Pleasant Ave", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 36.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 59.0, "Total Spend": 7150.0, "Total Transactions": 480.0, "Total Customers": 322.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "Name": "Red Poke Express", "Category": "Restaurants and Other Eating Places", "Address": "135 South St", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 8.0, "Total Spend": 1423.0, "Total Transactions": 79.0, "Total Customers": 72.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "Name": "2nd Street Brew House", "Category": "Restaurants and Other Eating Places", "Address": "1700 S 2nd St", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 48.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 79.0, "Total Spend": 7501.0, "Total Transactions": 236.0, "Total Customers": 91.0, "Median Spend per Transaction": 25.5, "Median Spend per Customer": 32.25 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "Name": "Crab Shack", "Category": "Specialty Food Stores", "Address": "4800 N 16th St", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 55.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 183.0, "Total Spend": 3907.0, "Total Transactions": 98.0, "Total Customers": 72.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 49.55 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-p8m-mp9", "Name": "Great Awakenings Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1466 E Cheltenham Ave", "LATITUDE": 40.029451, "LONGITUDE": -75.081188, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 18.0, "Total Spend": 84.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.05, "Median Spend per Customer": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.081188, 40.029451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@63s-dvr-hyv", "Name": "Woodland and Conveince", "Category": "Grocery Stores", "Address": "6524 Woodland Ave", "LATITUDE": 39.925089, "LONGITUDE": -75.23477, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 19.0, "POI_CBG": 421010063001.0, "Median Dwell Time": 8.0, "Total Spend": 286.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23477, 39.925089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1345 W Olney Ave", "LATITUDE": 40.039133, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 74.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 2.0, "Total Spend": 4662.0, "Total Transactions": 866.0, "Total Customers": 360.0, "Median Spend per Transaction": 4.63, "Median Spend per Customer": 8.78 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 40.039133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "Name": "Desi Village", "Category": "Restaurants and Other Eating Places", "Address": "4527 Baltimore Ave", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 7.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 31.0, "Total Spend": 1316.0, "Total Transactions": 41.0, "Total Customers": 38.0, "Median Spend per Transaction": 31.1, "Median Spend per Customer": 30.59 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "Name": "Spasso Italian Grill", "Category": "Restaurants and Other Eating Places", "Address": "34 S Front St", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2021, "Total Visits": 525.0, "Total Visitors": 487.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 59.0, "Total Spend": 21376.0, "Total Transactions": 220.0, "Total Customers": 191.0, "Median Spend per Transaction": 73.12, "Median Spend per Customer": 77.08 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "Name": "Marcello's Pizza Grill", "Category": "Restaurants and Other Eating Places", "Address": "10849 Bustleton Ave", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2021, "Total Visits": 1695.0, "Total Visitors": 1286.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 5.0, "Total Spend": 640.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 19.74, "Median Spend per Customer": 17.65 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-pn5", "Name": "Hummus Grill", "Category": "Restaurants and Other Eating Places", "Address": "3931 Walnut St", "LATITUDE": 39.954342, "LONGITUDE": -75.202153, "DATE_RANGE_START": 2021, "Total Visits": 332.0, "Total Visitors": 272.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 13.0, "Total Spend": 5224.0, "Total Transactions": 286.0, "Total Customers": 227.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202153, 39.954342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-w8v", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955482, "LONGITUDE": -75.18177, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 181.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 13.0, "Total Spend": 16439.0, "Total Transactions": 1754.0, "Total Customers": 1458.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.18177, 39.955482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "Name": "Tattooed Mom", "Category": "Restaurants and Other Eating Places", "Address": "530 South St", "LATITUDE": 39.941873, "LONGITUDE": -75.151859, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 131.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 41.0, "Total Spend": 32135.0, "Total Transactions": 1038.0, "Total Customers": 852.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151859, 39.941873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "Name": "Arctic Scoop", "Category": "Restaurants and Other Eating Places", "Address": "1812 E Passyunk Ave", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010029001.0, "Median Dwell Time": null, "Total Spend": 5413.0, "Total Transactions": 520.0, "Total Customers": 458.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "Name": "Not Just Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2240 S 11th St", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2021, "Total Visits": 112.0, "Total Visitors": 24.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 343.0, "Total Spend": 580.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 20.28, "Median Spend per Customer": 27.79 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "Name": "Fiorino", "Category": "Restaurants and Other Eating Places", "Address": "3572 Indian Queen Ln", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 45.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 41.0, "Total Spend": 6999.0, "Total Transactions": 55.0, "Total Customers": 55.0, "Median Spend per Transaction": 103.14, "Median Spend per Customer": 103.14 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "Name": "Kennedy Food Garden", "Category": "Grocery Stores", "Address": "1901 John F Kennedy Blvd", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 200.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 8.0, "Total Spend": 3329.0, "Total Transactions": 229.0, "Total Customers": 158.0, "Median Spend per Transaction": 12.53, "Median Spend per Customer": 17.01 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "12301 Academy Rd", "LATITUDE": 40.095744, "LONGITUDE": -74.976099, "DATE_RANGE_START": 2021, "Total Visits": 1986.0, "Total Visitors": 1232.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 142499.0, "Total Transactions": 8232.0, "Total Customers": 2986.0, "Median Spend per Transaction": 12.39, "Median Spend per Customer": 26.01 }, "geometry": { "type": "Point", "coordinates": [ -74.976099, 40.095744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "Name": "Beer Stop", "Category": "Beer, Wine, and Liquor Stores", "Address": "4252 Rising Sun Ave", "LATITUDE": 40.015837, "LONGITUDE": -75.130275, "DATE_RANGE_START": 2021, "Total Visits": 260.0, "Total Visitors": 95.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 320.0, "Total Spend": 6568.0, "Total Transactions": 203.0, "Total Customers": 103.0, "Median Spend per Transaction": 28.95, "Median Spend per Customer": 35.74 }, "geometry": { "type": "Point", "coordinates": [ -75.130275, 40.015837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-5vf", "Name": "Wellcare Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2220 Cottman Ave Fl 1", "LATITUDE": 40.048598, "LONGITUDE": -75.061857, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 129.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 5.0, "Total Spend": 536.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 9.99, "Median Spend per Customer": 12.82 }, "geometry": { "type": "Point", "coordinates": [ -75.061857, 40.048598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1617 John F Kennedy Blvd", "LATITUDE": 39.954271, "LONGITUDE": -75.167991, "DATE_RANGE_START": 2021, "Total Visits": 3017.0, "Total Visitors": 2002.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 160.0, "Total Spend": 6052.0, "Total Transactions": 451.0, "Total Customers": 325.0, "Median Spend per Transaction": 8.17, "Median Spend per Customer": 10.71 }, "geometry": { "type": "Point", "coordinates": [ -75.167991, 39.954271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951608, "LONGITUDE": -75.168943, "DATE_RANGE_START": 2021, "Total Visits": 1215.0, "Total Visitors": 1045.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 11.0, "Total Spend": 783.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 41.49, "Median Spend per Customer": 53.48 }, "geometry": { "type": "Point", "coordinates": [ -75.168943, 39.951608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-vzz", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "1600 S Columbus Blvd", "LATITUDE": 39.926515, "LONGITUDE": -75.145923, "DATE_RANGE_START": 2021, "Total Visits": 296.0, "Total Visitors": 248.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 67.0, "Total Spend": 293.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 61.46, "Median Spend per Customer": 61.46 }, "geometry": { "type": "Point", "coordinates": [ -75.145923, 39.926515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8t-vvf", "Name": "Hanesbrands", "Category": "Clothing Stores", "Address": "1519 Franklin Mills Cir Ste 313", "LATITUDE": 40.089656, "LONGITUDE": -74.961738, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 212.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 28.0, "Total Spend": 1187.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 56.78, "Median Spend per Customer": 56.78 }, "geometry": { "type": "Point", "coordinates": [ -74.961738, 40.089656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-wkz", "Name": "VIP Fashion", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1455 Franklin Mills Cir Unit 217", "LATITUDE": 40.087669, "LONGITUDE": -74.96104, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 6726.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 82.4, "Median Spend per Customer": 123.42 }, "geometry": { "type": "Point", "coordinates": [ -74.96104, 40.087669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1101 Locust St", "LATITUDE": 39.947798, "LONGITUDE": -75.1598, "DATE_RANGE_START": 2021, "Total Visits": 1745.0, "Total Visitors": 1444.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 11.0, "Total Spend": 15666.0, "Total Transactions": 1053.0, "Total Customers": 511.0, "Median Spend per Transaction": 7.99, "Median Spend per Customer": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.1598, 39.947798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7v-skf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1560 Cottman Ave", "LATITUDE": 40.055128, "LONGITUDE": -75.073724, "DATE_RANGE_START": 2021, "Total Visits": 1351.0, "Total Visitors": 931.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 4.0, "Total Spend": 1466.0, "Total Transactions": 67.0, "Total Customers": 43.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 24.56 }, "geometry": { "type": "Point", "coordinates": [ -75.073724, 40.055128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "Name": "Vince.", "Category": "Clothing Stores", "Address": "1701 Walnut St", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2021, "Total Visits": 2575.0, "Total Visitors": 2012.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 6958.0, "Total Transactions": 36.0, "Total Customers": 31.0, "Median Spend per Transaction": 147.0, "Median Spend per Customer": 220.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-94v", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1001 Market St Unit C065", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2021, "Total Visits": 16496.0, "Total Visitors": 10990.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 11774.0, "Total Transactions": 179.0, "Total Customers": 162.0, "Median Spend per Transaction": 37.79, "Median Spend per Customer": 40.49 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-r6k", "Name": "Loop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1914 South St", "LATITUDE": 39.944579, "LONGITUDE": -75.174065, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 181.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 62.0, "Total Spend": 1807.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 45.49, "Median Spend per Customer": 49.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174065, 39.944579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "Name": "Dollar Mart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4902 Baltimore Ave", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2021, "Total Visits": 592.0, "Total Visitors": 391.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 55.0, "Total Spend": 1597.0, "Total Transactions": 84.0, "Total Customers": 72.0, "Median Spend per Transaction": 12.77, "Median Spend per Customer": 13.67 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-835", "Name": "Pennsylvania General Store", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "51 N 12th St", "LATITUDE": 39.953203, "LONGITUDE": -75.159393, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 275.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 12.32 }, "geometry": { "type": "Point", "coordinates": [ -75.159393, 39.953203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7x-b6k", "Name": "New England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6728 Bustleton Ave", "LATITUDE": 40.040059, "LONGITUDE": -75.066331, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 1.0, "Total Spend": 720.0, "Total Transactions": 36.0, "Total Customers": 29.0, "Median Spend per Transaction": 15.23, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.066331, 40.040059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "1544 Christian St", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 29.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 720.0, "Total Spend": 1258.0, "Total Transactions": 155.0, "Total Customers": 84.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "Name": "Butcher Bar", "Category": "Restaurants and Other Eating Places", "Address": "2034 Chestnut St", "LATITUDE": 39.95199, "LONGITUDE": -75.174938, "DATE_RANGE_START": 2021, "Total Visits": 1408.0, "Total Visitors": 981.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 96.0, "Total Spend": 27659.0, "Total Transactions": 337.0, "Total Customers": 294.0, "Median Spend per Transaction": 66.13, "Median Spend per Customer": 80.37 }, "geometry": { "type": "Point", "coordinates": [ -75.174938, 39.95199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-3bk", "Name": "Founded Coffee & Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3300 Henry Ave", "LATITUDE": 40.012531, "LONGITUDE": -75.183909, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 36.0, "POI_CBG": 421010207003.0, "Median Dwell Time": 25.0, "Total Spend": 4145.0, "Total Transactions": 134.0, "Total Customers": 93.0, "Median Spend per Transaction": 32.14, "Median Spend per Customer": 40.73 }, "geometry": { "type": "Point", "coordinates": [ -75.183909, 40.012531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7520 City Ave", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2021, "Total Visits": 802.0, "Total Visitors": 585.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 5.0, "Total Spend": 8803.0, "Total Transactions": 494.0, "Total Customers": 341.0, "Median Spend per Transaction": 11.36, "Median Spend per Customer": 16.58 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8n5", "Name": "Columbia Sportswear", "Category": "Clothing Stores", "Address": "1001 Market St Unit C205", "LATITUDE": 39.951969, "LONGITUDE": -75.157009, "DATE_RANGE_START": 2021, "Total Visits": 1690.0, "Total Visitors": 1406.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 4833.0, "Total Transactions": 95.0, "Total Customers": 88.0, "Median Spend per Transaction": 37.0, "Median Spend per Customer": 41.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157009, 39.951969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2300 W Oregon Ave", "LATITUDE": 39.916033, "LONGITUDE": -75.188037, "DATE_RANGE_START": 2021, "Total Visits": 3093.0, "Total Visitors": 2279.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 21.0, "Total Spend": 41627.0, "Total Transactions": 384.0, "Total Customers": 301.0, "Median Spend per Transaction": 72.5, "Median Spend per Customer": 96.85 }, "geometry": { "type": "Point", "coordinates": [ -75.188037, 39.916033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8318 Bustleton Ave", "LATITUDE": 40.069743, "LONGITUDE": -75.051689, "DATE_RANGE_START": 2021, "Total Visits": 523.0, "Total Visitors": 403.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 8.0, "Total Spend": 675.0, "Total Transactions": 79.0, "Total Customers": 48.0, "Median Spend per Transaction": 5.16, "Median Spend per Customer": 10.44 }, "geometry": { "type": "Point", "coordinates": [ -75.051689, 40.069743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "Name": "Ruckus Gallery", "Category": "Other Miscellaneous Store Retailers", "Address": "27 N 2nd St", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 277.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 30.0, "Total Spend": 18968.0, "Total Transactions": 542.0, "Total Customers": 332.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 37.22 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-789", "Name": "The Wine Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5019 Baltimore Ave", "LATITUDE": 39.948078, "LONGITUDE": -75.224261, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 103.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 69.0, "Total Spend": 620.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 28.12, "Median Spend per Customer": 69.77 }, "geometry": { "type": "Point", "coordinates": [ -75.224261, 39.948078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3675 Market St", "LATITUDE": 39.956525, "LONGITUDE": -75.195111, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 64.0, "Total Spend": 10930.0, "Total Transactions": 1356.0, "Total Customers": 840.0, "Median Spend per Transaction": 5.86, "Median Spend per Customer": 8.34 }, "geometry": { "type": "Point", "coordinates": [ -75.195111, 39.956525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4017 N 5th St # 59", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 119.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 2.0, "Total Spend": 2863.0, "Total Transactions": 332.0, "Total Customers": 222.0, "Median Spend per Transaction": 7.01, "Median Spend per Customer": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4301 Market St", "LATITUDE": 39.958195, "LONGITUDE": -75.208247, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 241.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 3.0, "Total Spend": 8610.0, "Total Transactions": 1239.0, "Total Customers": 687.0, "Median Spend per Transaction": 6.26, "Median Spend per Customer": 8.71 }, "geometry": { "type": "Point", "coordinates": [ -75.208247, 39.958195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3218 Willits Rd", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2021, "Total Visits": 406.0, "Total Visitors": 272.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 2.0, "Total Spend": 1574.0, "Total Transactions": 258.0, "Total Customers": 134.0, "Median Spend per Transaction": 4.95, "Median Spend per Customer": 7.63 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-235@628-pmf-jd9", "Name": "The Men's Wearhouse", "Category": "Clothing Stores", "Address": "1624 Chestnut St # 1626", "LATITUDE": 39.951253, "LONGITUDE": -75.168383, "DATE_RANGE_START": 2021, "Total Visits": 644.0, "Total Visitors": 446.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 223.0, "Total Spend": 9160.0, "Total Transactions": 48.0, "Total Customers": 48.0, "Median Spend per Transaction": 148.0, "Median Spend per Customer": 148.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168383, 39.951253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-p8f-9pv", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "4454 Penn St", "LATITUDE": 40.014668, "LONGITUDE": -75.088538, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 181.0, "Total Spend": 2663.0, "Total Transactions": 165.0, "Total Customers": 158.0, "Median Spend per Transaction": 12.98, "Median Spend per Customer": 13.22 }, "geometry": { "type": "Point", "coordinates": [ -75.088538, 40.014668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "Name": "YOLO Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1632 W Susquehanna Ave # 1662", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010167024.0, "Median Dwell Time": null, "Total Spend": 1847.0, "Total Transactions": 57.0, "Total Customers": 38.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-wzf", "Name": "Mayfair Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7424 Frankford Ave", "LATITUDE": 40.038525, "LONGITUDE": -75.036899, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 1.0, "Total Spend": 1113.0, "Total Transactions": 41.0, "Total Customers": 26.0, "Median Spend per Transaction": 26.75, "Median Spend per Customer": 39.1 }, "geometry": { "type": "Point", "coordinates": [ -75.036899, 40.038525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-vj9", "Name": "Fairmount Pet Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "2024 Fairmount Ave", "LATITUDE": 39.967037, "LONGITUDE": -75.17115, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 1.0, "Total Spend": 2137.0, "Total Transactions": 74.0, "Total Customers": 45.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 29.66 }, "geometry": { "type": "Point", "coordinates": [ -75.17115, 39.967037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "301 W Chelten Ave Ste F", "LATITUDE": 40.030538, "LONGITUDE": -75.181434, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 129.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 5.0, "Total Spend": 3741.0, "Total Transactions": 210.0, "Total Customers": 177.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 14.17 }, "geometry": { "type": "Point", "coordinates": [ -75.181434, 40.030538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dwf-bhq", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2910 S 70th St Unit 3B", "LATITUDE": 39.912436, "LONGITUDE": -75.233807, "DATE_RANGE_START": 2021, "Total Visits": 518.0, "Total Visitors": 310.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 7.0, "Total Spend": 710.0, "Total Transactions": 41.0, "Total Customers": 24.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.233807, 39.912436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-bhq", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "29 N 52nd St", "LATITUDE": 39.960816, "LONGITUDE": -75.224417, "DATE_RANGE_START": 2021, "Total Visits": 198.0, "Total Visitors": 136.0, "POI_CBG": 421010093003.0, "Median Dwell Time": 5.0, "Total Spend": 349.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.57, "Median Spend per Customer": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.224417, 39.960816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "Name": "El Merkury", "Category": "Restaurants and Other Eating Places", "Address": "2104 Chestnut St", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 3.0, "Total Spend": 5102.0, "Total Transactions": 310.0, "Total Customers": 265.0, "Median Spend per Transaction": 15.04, "Median Spend per Customer": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2021, "Total Visits": 702.0, "Total Visitors": 537.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 12574.0, "Total Transactions": 1771.0, "Total Customers": 802.0, "Median Spend per Transaction": 6.36, "Median Spend per Customer": 8.38 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032189, "LONGITUDE": -75.214079, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 131.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 24.0, "Total Spend": 9105.0, "Total Transactions": 377.0, "Total Customers": 286.0, "Median Spend per Transaction": 19.45, "Median Spend per Customer": 26.34 }, "geometry": { "type": "Point", "coordinates": [ -75.214079, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phy-v9f", "Name": "The Crab Shack 2", "Category": "Restaurants and Other Eating Places", "Address": "5305 Rising Sun Ave", "LATITUDE": 40.030196, "LONGITUDE": -75.117947, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 100.0, "POI_CBG": 421010290004.0, "Median Dwell Time": 9.0, "Total Spend": 2051.0, "Total Transactions": 57.0, "Total Customers": 48.0, "Median Spend per Transaction": 33.53, "Median Spend per Customer": 33.53 }, "geometry": { "type": "Point", "coordinates": [ -75.117947, 40.030196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-k4v", "Name": "Kisso Sushi", "Category": "Restaurants and Other Eating Places", "Address": "205 N 4th St", "LATITUDE": 39.954278, "LONGITUDE": -75.146239, "DATE_RANGE_START": 2021, "Total Visits": 1439.0, "Total Visitors": 1167.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 319.0, "Total Spend": 929.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 104.24, "Median Spend per Customer": 139.05 }, "geometry": { "type": "Point", "coordinates": [ -75.146239, 39.954278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "Name": "Yakitori Boy", "Category": "Restaurants and Other Eating Places", "Address": "211 N 11th St", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 167.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 64.0, "Total Spend": 46925.0, "Total Transactions": 434.0, "Total Customers": 384.0, "Median Spend per Transaction": 67.69, "Median Spend per Customer": 74.62 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Butler St", "LATITUDE": 39.9973, "LONGITUDE": -75.092737, "DATE_RANGE_START": 2021, "Total Visits": 1103.0, "Total Visitors": 785.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 3.0, "Total Spend": 49353.0, "Total Transactions": 2766.0, "Total Customers": 1857.0, "Median Spend per Transaction": 15.46, "Median Spend per Customer": 19.61 }, "geometry": { "type": "Point", "coordinates": [ -75.092737, 39.9973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-ygk", "Name": "Snow Show", "Category": "Restaurants and Other Eating Places", "Address": "1001 Arch St", "LATITUDE": 39.953739, "LONGITUDE": -75.15638, "DATE_RANGE_START": 2021, "Total Visits": 179.0, "Total Visitors": 174.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 3110.0, "Total Transactions": 260.0, "Total Customers": 248.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.15638, 39.953739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgd-zs5", "Name": "The Study at University City", "Category": "Traveler Accommodation", "Address": "20 S 33rd St", "LATITUDE": 39.954404, "LONGITUDE": -75.19003, "DATE_RANGE_START": 2021, "Total Visits": 800.0, "Total Visitors": 523.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 405.0, "Total Spend": 326.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.19003, 39.954404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-n3q", "Name": "Naya Market St", "Category": "Restaurants and Other Eating Places", "Address": "1601 Market St", "LATITUDE": 39.953238, "LONGITUDE": -75.167055, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 198.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 63.0, "Total Spend": 541.0, "Total Transactions": 45.0, "Total Customers": 41.0, "Median Spend per Transaction": 11.39, "Median Spend per Customer": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.953238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pft-ygk", "Name": "Chubbys Steaks", "Category": "Restaurants and Other Eating Places", "Address": "5826 Henry Ave", "LATITUDE": 40.029131, "LONGITUDE": -75.206304, "DATE_RANGE_START": 2021, "Total Visits": 382.0, "Total Visitors": 353.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 9.0, "Total Spend": 30628.0, "Total Transactions": 721.0, "Total Customers": 508.0, "Median Spend per Transaction": 30.54, "Median Spend per Customer": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.206304, 40.029131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-phy-6kz", "Name": "La Casa Del Sandwich", "Category": "Restaurants and Other Eating Places", "Address": "101 E Rockland St", "LATITUDE": 40.024809, "LONGITUDE": -75.123343, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 200.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 8.0, "Total Spend": 1447.0, "Total Transactions": 86.0, "Total Customers": 67.0, "Median Spend per Transaction": 14.25, "Median Spend per Customer": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.123343, 40.024809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3400 Lancaster Ave Ste 10", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2021, "Total Visits": 809.0, "Total Visitors": 325.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 991.0, "Total Spend": 21464.0, "Total Transactions": 1706.0, "Total Customers": 1095.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-fvf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "122 W Chelten Ave", "LATITUDE": 40.033336, "LONGITUDE": -75.176853, "DATE_RANGE_START": 2021, "Total Visits": 217.0, "Total Visitors": 189.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 4.0, "Total Spend": 303.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 20.79, "Median Spend per Customer": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.176853, 40.033336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8v-7nq", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "189 Franklin Mills Blvd", "LATITUDE": 40.088588, "LONGITUDE": -74.965931, "DATE_RANGE_START": 2021, "Total Visits": 749.0, "Total Visitors": 453.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 20.0, "Total Spend": 594.0, "Total Transactions": 41.0, "Total Customers": 36.0, "Median Spend per Transaction": 12.78, "Median Spend per Customer": 12.78 }, "geometry": { "type": "Point", "coordinates": [ -74.965931, 40.088588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p8n-92k", "Name": "The Taste of Brazil Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "6222 Bustleton Ave", "LATITUDE": 40.033699, "LONGITUDE": -75.072078, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 131.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 20.0, "Total Spend": 1508.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 53.03, "Median Spend per Customer": 53.03 }, "geometry": { "type": "Point", "coordinates": [ -75.072078, 40.033699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-qs5", "Name": "Jet Wine Bar", "Category": "Restaurants and Other Eating Places", "Address": "1525 South St", "LATITUDE": 39.944107, "LONGITUDE": -75.168005, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 279.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 457.0, "Total Spend": 7382.0, "Total Transactions": 143.0, "Total Customers": 129.0, "Median Spend per Transaction": 35.5, "Median Spend per Customer": 36.25 }, "geometry": { "type": "Point", "coordinates": [ -75.168005, 39.944107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6240 Stenton Ave", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 100.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 65.0, "Total Spend": 1109.0, "Total Transactions": 67.0, "Total Customers": 60.0, "Median Spend per Transaction": 14.61, "Median Spend per Customer": 15.2 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "701 W Lehigh Ave", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 131.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 282.0, "Total Spend": 5644.0, "Total Transactions": 368.0, "Total Customers": 239.0, "Median Spend per Transaction": 13.12, "Median Spend per Customer": 11.23 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1700 Jfk Blvd 6 Penn Ctr Concourse", "LATITUDE": 39.953617, "LONGITUDE": -75.167012, "DATE_RANGE_START": 2021, "Total Visits": 2229.0, "Total Visitors": 1683.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 9.0, "Total Spend": 5695.0, "Total Transactions": 1050.0, "Total Customers": 516.0, "Median Spend per Transaction": 4.1, "Median Spend per Customer": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.167012, 39.953617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "555 Adams Ave", "LATITUDE": 40.036515, "LONGITUDE": -75.108096, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 110.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 122.0, "Total Spend": 13462.0, "Total Transactions": 296.0, "Total Customers": 234.0, "Median Spend per Transaction": 22.98, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.108096, 40.036515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2501 S 70th St", "LATITUDE": 39.916923, "LONGITUDE": -75.236784, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 112.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 5.0, "Total Spend": 10883.0, "Total Transactions": 224.0, "Total Customers": 205.0, "Median Spend per Transaction": 30.23, "Median Spend per Customer": 31.71 }, "geometry": { "type": "Point", "coordinates": [ -75.236784, 39.916923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2801 W Dauphin St", "LATITUDE": 39.991985, "LONGITUDE": -75.178334, "DATE_RANGE_START": 2021, "Total Visits": 413.0, "Total Visitors": 251.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 9.0, "Total Spend": 632.0, "Total Transactions": 38.0, "Total Customers": 29.0, "Median Spend per Transaction": 13.36, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.178334, 39.991985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-835", "Name": "Iovine Brothers Produce", "Category": "Grocery Stores", "Address": "1136 Arch St", "LATITUDE": 39.952988, "LONGITUDE": -75.158802, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 8151.0, "Total Transactions": 611.0, "Total Customers": 415.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.158802, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm6-jn5", "Name": "Kyoto Japan", "Category": "Restaurants and Other Eating Places", "Address": "37 Snyder Ave", "LATITUDE": 39.921763, "LONGITUDE": -75.14657, "DATE_RANGE_START": 2021, "Total Visits": 189.0, "Total Visitors": 150.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 12.0, "Total Spend": 3060.0, "Total Transactions": 186.0, "Total Customers": 115.0, "Median Spend per Transaction": 12.77, "Median Spend per Customer": 24.13 }, "geometry": { "type": "Point", "coordinates": [ -75.14657, 39.921763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd Unit 22", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2021, "Total Visits": 420.0, "Total Visitors": 365.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 24.0, "Total Spend": 10012.0, "Total Transactions": 301.0, "Total Customers": 255.0, "Median Spend per Transaction": 25.29, "Median Spend per Customer": 31.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "255-222@628-pm9-y9z", "Name": "Milkboy", "Category": "Restaurants and Other Eating Places", "Address": "401 South St", "LATITUDE": 39.941731, "LONGITUDE": -75.1493, "DATE_RANGE_START": 2021, "Total Visits": 1165.0, "Total Visitors": 1112.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 8.0, "Total Spend": 3026.0, "Total Transactions": 57.0, "Total Customers": 43.0, "Median Spend per Transaction": 41.08, "Median Spend per Customer": 61.76 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.941731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6hq", "Name": "Sueno", "Category": "Restaurants and Other Eating Places", "Address": "114 S 12th St", "LATITUDE": 39.949738, "LONGITUDE": -75.16012, "DATE_RANGE_START": 2021, "Total Visits": 5516.0, "Total Visitors": 3508.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 22.0, "Total Spend": 45591.0, "Total Transactions": 475.0, "Total Customers": 425.0, "Median Spend per Transaction": 75.28, "Median Spend per Customer": 83.65 }, "geometry": { "type": "Point", "coordinates": [ -75.16012, 39.949738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "Name": "Unit Su Vege", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 106", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 86.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 23.0, "Total Spend": 8512.0, "Total Transactions": 208.0, "Total Customers": 165.0, "Median Spend per Transaction": 34.96, "Median Spend per Customer": 34.78 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "Name": "Medical Tower Pharmacy", "Category": "Health and Personal Care Stores", "Address": "255 S 17th St", "LATITUDE": 39.948045, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2021, "Total Visits": 1527.0, "Total Visitors": 1057.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 86.0, "Total Spend": 1164.0, "Total Transactions": 76.0, "Total Customers": 67.0, "Median Spend per Transaction": 9.65, "Median Spend per Customer": 9.68 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.948045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1334 Windrim Ave", "LATITUDE": 40.029597, "LONGITUDE": -75.145391, "DATE_RANGE_START": 2021, "Total Visits": 353.0, "Total Visitors": 232.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 6.0, "Total Spend": 19263.0, "Total Transactions": 807.0, "Total Customers": 451.0, "Median Spend per Transaction": 13.33, "Median Spend per Customer": 24.04 }, "geometry": { "type": "Point", "coordinates": [ -75.145391, 40.029597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5040 City Ave", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2021, "Total Visits": 542.0, "Total Visitors": 396.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 11.0, "Total Spend": 30145.0, "Total Transactions": 1644.0, "Total Customers": 924.0, "Median Spend per Transaction": 12.55, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-d5f", "Name": "Allen Tire & Service", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4410 E Howell St", "LATITUDE": 40.019598, "LONGITUDE": -75.06328, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 19.0, "POI_CBG": 421010319003.0, "Median Dwell Time": 81.0, "Total Spend": 4433.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 134.99, "Median Spend per Customer": 134.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06328, 40.019598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3670 Richmond St", "LATITUDE": 39.989253, "LONGITUDE": -75.090212, "DATE_RANGE_START": 2021, "Total Visits": 2649.0, "Total Visitors": 1473.0, "POI_CBG": 421010379006.0, "Median Dwell Time": 4.0, "Total Spend": 908.0, "Total Transactions": 41.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 36.48 }, "geometry": { "type": "Point", "coordinates": [ -75.090212, 39.989253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm5-fj9", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "80 E Oregon Ave", "LATITUDE": 39.913638, "LONGITUDE": -75.149864, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 406.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 3.0, "Total Spend": 2452.0, "Total Transactions": 117.0, "Total Customers": 105.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.74 }, "geometry": { "type": "Point", "coordinates": [ -75.149864, 39.913638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-223@628-pnx-7qz", "Name": "Dolce & Caffe", "Category": "Restaurants and Other Eating Places", "Address": "708 N 2nd St", "LATITUDE": 39.962218, "LONGITUDE": -75.141391, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 24.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 8.0, "Total Spend": 6704.0, "Total Transactions": 554.0, "Total Customers": 360.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 12.74 }, "geometry": { "type": "Point", "coordinates": [ -75.141391, 39.962218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1207 Franklin Mills Cir", "LATITUDE": 40.084661, "LONGITUDE": -74.961825, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 370.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 28.0, "Total Spend": 5374.0, "Total Transactions": 81.0, "Total Customers": 79.0, "Median Spend per Transaction": 44.33, "Median Spend per Customer": 43.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961825, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "Name": "John's Diner", "Category": "Restaurants and Other Eating Places", "Address": "119 E Chelten Ave", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 2.0, "Total Spend": 757.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 16.46, "Median Spend per Customer": 21.53 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8j-ct9", "Name": "New London Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7230 Frankford Ave", "LATITUDE": 40.036249, "LONGITUDE": -75.042416, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 3.0, "Total Spend": 3644.0, "Total Transactions": 136.0, "Total Customers": 100.0, "Median Spend per Transaction": 25.82, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.042416, 40.036249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-tsq", "Name": "Charlie's Roast Pork", "Category": "Restaurants and Other Eating Places", "Address": "1301 S 3rd St", "LATITUDE": 39.931451, "LONGITUDE": -75.149656, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 1.0, "Total Spend": 3132.0, "Total Transactions": 143.0, "Total Customers": 110.0, "Median Spend per Transaction": 20.44, "Median Spend per Customer": 20.83 }, "geometry": { "type": "Point", "coordinates": [ -75.149656, 39.931451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-y7q", "Name": "Brothers Shoes", "Category": "Shoe Stores", "Address": "3619 Germantown Ave", "LATITUDE": 40.007979, "LONGITUDE": -75.150258, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 41.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 168.0, "Total Spend": 1551.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 159.99, "Median Spend per Customer": 159.99 }, "geometry": { "type": "Point", "coordinates": [ -75.150258, 40.007979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-p8m-v2k", "Name": "Moon Flower House", "Category": "Restaurants and Other Eating Places", "Address": "6414 Frankford Ave Unit 11", "LATITUDE": 40.029561, "LONGITUDE": -75.058358, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 7.0, "Total Spend": 1186.0, "Total Transactions": 76.0, "Total Customers": 60.0, "Median Spend per Transaction": 13.77, "Median Spend per Customer": 20.68 }, "geometry": { "type": "Point", "coordinates": [ -75.058358, 40.029561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvq-dvz", "Name": "Third Auto Sales Inc", "Category": "Automobile Dealers", "Address": "5347 Whitby Ave", "LATITUDE": 39.94602, "LONGITUDE": -75.229173, "DATE_RANGE_START": 2021, "Total Visits": 360.0, "Total Visitors": 220.0, "POI_CBG": 421010072002.0, "Median Dwell Time": 24.0, "Total Spend": 943.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 25.11, "Median Spend per Customer": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.229173, 39.94602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-85f", "Name": "The Mattress Factory", "Category": "Furniture Stores", "Address": "4929 Cottman Ave", "LATITUDE": 40.026733, "LONGITUDE": -75.032183, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 141.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 11.0, "Total Spend": 3814.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 313.0, "Median Spend per Customer": 367.05 }, "geometry": { "type": "Point", "coordinates": [ -75.032183, 40.026733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "Name": "Secret Garden", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "7631 Ridge Ave", "LATITUDE": 40.051859, "LONGITUDE": -75.235556, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 48.0, "POI_CBG": 421010218002.0, "Median Dwell Time": 2.0, "Total Spend": 3660.0, "Total Transactions": 95.0, "Total Customers": 88.0, "Median Spend per Transaction": 37.22, "Median Spend per Customer": 37.75 }, "geometry": { "type": "Point", "coordinates": [ -75.235556, 40.051859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p7w-gc5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7965 Verree Rd", "LATITUDE": 40.072472, "LONGITUDE": -75.075745, "DATE_RANGE_START": 2021, "Total Visits": 876.0, "Total Visitors": 573.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 3.0, "Total Spend": 489.0, "Total Transactions": 60.0, "Total Customers": 36.0, "Median Spend per Transaction": 3.23, "Median Spend per Customer": 5.28 }, "geometry": { "type": "Point", "coordinates": [ -75.075745, 40.072472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm4-mc5", "Name": "Meat Market El Pueblo", "Category": "Specialty Food Stores", "Address": "1141 S 9th St", "LATITUDE": 39.935181, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 112.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 14.0, "Total Spend": 792.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 19.25, "Median Spend per Customer": 21.25 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.935181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2017 S Broad St # 2023", "LATITUDE": 39.924926, "LONGITUDE": -75.169063, "DATE_RANGE_START": 2021, "Total Visits": 969.0, "Total Visitors": 623.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 20.0, "Total Spend": 25102.0, "Total Transactions": 1337.0, "Total Customers": 773.0, "Median Spend per Transaction": 12.66, "Median Spend per Customer": 19.77 }, "geometry": { "type": "Point", "coordinates": [ -75.169063, 39.924926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pm7-nkf", "Name": "Culture Exchange", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1450 Point Breeze Ave", "LATITUDE": 39.933425, "LONGITUDE": -75.1808, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 53.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 1.0, "Total Spend": 130.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 10.98, "Median Spend per Customer": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.1808, 39.933425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "Name": "Main Street Pho", "Category": "Restaurants and Other Eating Places", "Address": "4307 Main St", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 1.0, "Total Spend": 14241.0, "Total Transactions": 353.0, "Total Customers": 279.0, "Median Spend per Transaction": 33.46, "Median Spend per Customer": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3331 Grant Ave", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2021, "Total Visits": 1399.0, "Total Visitors": 945.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 6.0, "Total Spend": 7613.0, "Total Transactions": 384.0, "Total Customers": 253.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-3wk", "Name": "Christian Food Market", "Category": "Grocery Stores", "Address": "2243 Christian St", "LATITUDE": 39.942022, "LONGITUDE": -75.180801, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 62.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 11.0, "Total Spend": 2068.0, "Total Transactions": 138.0, "Total Customers": 72.0, "Median Spend per Transaction": 10.2, "Median Spend per Customer": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.180801, 39.942022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "Name": "Bar Bombon", "Category": "Restaurants and Other Eating Places", "Address": "133 S 18th St", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 62.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 46958.0, "Total Transactions": 749.0, "Total Customers": 680.0, "Median Spend per Transaction": 54.16, "Median Spend per Customer": 57.02 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9q-jsq", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "9801 Roosevelt Blvd Ste 6", "LATITUDE": 40.084384, "LONGITUDE": -75.022786, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 208.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 12.0, "Total Spend": 525.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 52.5, "Median Spend per Customer": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.022786, 40.084384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgf-33q", "Name": "Ochatto", "Category": "Restaurants and Other Eating Places", "Address": "3608 Chestnut St", "LATITUDE": 39.954494, "LONGITUDE": -75.195113, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 72.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 16.0, "Total Spend": 6967.0, "Total Transactions": 229.0, "Total Customers": 177.0, "Median Spend per Transaction": 21.01, "Median Spend per Customer": 25.43 }, "geometry": { "type": "Point", "coordinates": [ -75.195113, 39.954494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-jjv", "Name": "Hakim's Bookstore", "Category": "Book Stores and News Dealers", "Address": "210 S 52nd St", "LATITUDE": 39.95665, "LONGITUDE": -75.225827, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 14.0, "POI_CBG": 421010085006.0, "Median Dwell Time": 2.0, "Total Spend": 4814.0, "Total Transactions": 394.0, "Total Customers": 370.0, "Median Spend per Transaction": 7.97, "Median Spend per Customer": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225827, 39.95665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3850 Lancaster Ave", "LATITUDE": 39.961276, "LONGITUDE": -75.199304, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 153.0, "POI_CBG": 421010091003.0, "Median Dwell Time": 93.0, "Total Spend": 7208.0, "Total Transactions": 107.0, "Total Customers": 88.0, "Median Spend per Transaction": 51.6, "Median Spend per Customer": 59.4 }, "geometry": { "type": "Point", "coordinates": [ -75.199304, 39.961276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "Name": "Baltimore Pet Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "4532 Baltimore Ave", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 15.0, "Total Spend": 3084.0, "Total Transactions": 62.0, "Total Customers": 36.0, "Median Spend per Transaction": 46.69, "Median Spend per Customer": 59.37 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "Name": "Royal's Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "7802 Limekiln Pike", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 2.0, "Total Spend": 4831.0, "Total Transactions": 162.0, "Total Customers": 126.0, "Median Spend per Transaction": 30.18, "Median Spend per Customer": 33.49 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "1501 E Susquehanna Ave", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 9.0, "Total Spend": 988.0, "Total Transactions": 62.0, "Total Customers": 62.0, "Median Spend per Transaction": 13.11, "Median Spend per Customer": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "10 Snyder Ave", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2021, "Total Visits": 516.0, "Total Visitors": 375.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 6.0, "Total Spend": 15881.0, "Total Transactions": 737.0, "Total Customers": 444.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 19.84 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmb-gkz", "Name": "Effie's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1127 Pine St", "LATITUDE": 39.945113, "LONGITUDE": -75.160611, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 6.0, "Total Spend": 1419.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 78.0, "Median Spend per Customer": 78.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160611, 39.945113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2503 Welsh Rd # 05", "LATITUDE": 40.070297, "LONGITUDE": -75.030572, "DATE_RANGE_START": 2021, "Total Visits": 532.0, "Total Visitors": 396.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 6.0, "Total Spend": 25466.0, "Total Transactions": 1337.0, "Total Customers": 778.0, "Median Spend per Transaction": 13.26, "Median Spend per Customer": 21.09 }, "geometry": { "type": "Point", "coordinates": [ -75.030572, 40.070297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-kfz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2801 W Dauphin St Ste 5", "LATITUDE": 39.991954, "LONGITUDE": -75.178916, "DATE_RANGE_START": 2021, "Total Visits": 365.0, "Total Visitors": 200.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 5.0, "Total Spend": 7242.0, "Total Transactions": 301.0, "Total Customers": 205.0, "Median Spend per Transaction": 19.75, "Median Spend per Customer": 27.14 }, "geometry": { "type": "Point", "coordinates": [ -75.178916, 39.991954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pp4-jd9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2685 Frankford Ave", "LATITUDE": 39.986516, "LONGITUDE": -75.12253, "DATE_RANGE_START": 2021, "Total Visits": 1181.0, "Total Visitors": 838.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 4.0, "Total Spend": 562.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 24.39 }, "geometry": { "type": "Point", "coordinates": [ -75.12253, 39.986516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2133 Cottman Ave", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2021, "Total Visits": 726.0, "Total Visitors": 673.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 6.0, "Total Spend": 24622.0, "Total Transactions": 1062.0, "Total Customers": 819.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 19.23 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "Name": "Steak 'Em Up", "Category": "Restaurants and Other Eating Places", "Address": "2600 S 11th St", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 48.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 464.0, "Total Spend": 4367.0, "Total Transactions": 169.0, "Total Customers": 93.0, "Median Spend per Transaction": 21.99, "Median Spend per Customer": 32.89 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-kfz", "Name": "Machi Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "209 S 20th St", "LATITUDE": 39.950008, "LONGITUDE": -75.173818, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 48.0, "POI_CBG": 421010008034.0, "Median Dwell Time": 9.0, "Total Spend": 533.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 29.63, "Median Spend per Customer": 29.63 }, "geometry": { "type": "Point", "coordinates": [ -75.173818, 39.950008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2400 Lombard St", "LATITUDE": 39.946402, "LONGITUDE": -75.180743, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 5.0, "Total Spend": 2910.0, "Total Transactions": 301.0, "Total Customers": 258.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180743, 39.946402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phz-ch5", "Name": "Cafe Liz", "Category": "Restaurants and Other Eating Places", "Address": "5437 N Lawrence St", "LATITUDE": 40.034261, "LONGITUDE": -75.129795, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 41.0, "POI_CBG": 421010274013.0, "Median Dwell Time": 31.0, "Total Spend": 4217.0, "Total Transactions": 36.0, "Total Customers": 21.0, "Median Spend per Transaction": 85.0, "Median Spend per Customer": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.129795, 40.034261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-r49", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6391 Oxford Ave", "LATITUDE": 40.044228, "LONGITUDE": -75.087251, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 54.0, "Total Spend": 5565.0, "Total Transactions": 239.0, "Total Customers": 189.0, "Median Spend per Transaction": 21.24, "Median Spend per Customer": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.087251, 40.044228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "Name": "Liberty Smokes", "Category": "Other Miscellaneous Store Retailers", "Address": "2740 S Front St", "LATITUDE": 39.912433, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2021, "Total Visits": 604.0, "Total Visitors": 329.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 68.0, "Total Spend": 2228.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 43.9, "Median Spend per Customer": 43.9 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.912433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vpv", "Name": "John's Neighborhood Deli", "Category": "Grocery Stores", "Address": "311 E Church Ln", "LATITUDE": 40.037445, "LONGITUDE": -75.168415, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010247003.0, "Median Dwell Time": null, "Total Spend": 430.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 90.04, "Median Spend per Customer": 90.04 }, "geometry": { "type": "Point", "coordinates": [ -75.168415, 40.037445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "Name": "Quails", "Category": "Clothing Stores", "Address": "1428 Franklin Mills Cir", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 16.0, "Total Spend": 9032.0, "Total Transactions": 64.0, "Total Customers": 64.0, "Median Spend per Transaction": 78.98, "Median Spend per Customer": 78.98 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmb-xnq", "Name": "Sakura Mandarin", "Category": "Restaurants and Other Eating Places", "Address": "1038 Race St", "LATITUDE": 39.955481, "LONGITUDE": -75.157295, "DATE_RANGE_START": 2021, "Total Visits": 4088.0, "Total Visitors": 3143.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 539.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 61.85, "Median Spend per Customer": 61.85 }, "geometry": { "type": "Point", "coordinates": [ -75.157295, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-223@628-pm4-n3q", "Name": "Los Taquitos de Puebla", "Category": "Restaurants and Other Eating Places", "Address": "1201 S 9th St", "LATITUDE": 39.93412, "LONGITUDE": -75.158732, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 20.0, "Total Spend": 1315.0, "Total Transactions": 60.0, "Total Customers": 53.0, "Median Spend per Transaction": 20.9, "Median Spend per Customer": 25.16 }, "geometry": { "type": "Point", "coordinates": [ -75.158732, 39.93412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1219 S 9th St", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2021, "Total Visits": 1795.0, "Total Visitors": 1733.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 5.0, "Total Spend": 7411.0, "Total Transactions": 408.0, "Total Customers": 377.0, "Median Spend per Transaction": 15.1, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3101 W Allegheny Ave", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 146.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 5.0, "Total Spend": 15054.0, "Total Transactions": 365.0, "Total Customers": 291.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 29.42 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6587 Roosevelt Blvd", "LATITUDE": 40.035295, "LONGITUDE": -75.065039, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 239.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 7.0, "Total Spend": 280.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 8.8, "Median Spend per Customer": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -75.065039, 40.035295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "180 W Duncannon Ave", "LATITUDE": 40.029081, "LONGITUDE": -75.125232, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 160.0, "POI_CBG": 421010286001.0, "Median Dwell Time": 8.0, "Total Spend": 33012.0, "Total Transactions": 563.0, "Total Customers": 449.0, "Median Spend per Transaction": 35.17, "Median Spend per Customer": 37.99 }, "geometry": { "type": "Point", "coordinates": [ -75.125232, 40.029081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2043 Chestnut St", "LATITUDE": 39.95261, "LONGITUDE": -75.174957, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 153.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 58.0, "Total Spend": 458.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 15.72, "Median Spend per Customer": 17.33 }, "geometry": { "type": "Point", "coordinates": [ -75.174957, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg2-hdv", "Name": "Mi Puebla Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7157 Germantown Ave", "LATITUDE": 40.059999, "LONGITUDE": -75.19073, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 81.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 20.0, "Total Spend": 3428.0, "Total Transactions": 100.0, "Total Customers": 86.0, "Median Spend per Transaction": 32.46, "Median Spend per Customer": 37.96 }, "geometry": { "type": "Point", "coordinates": [ -75.19073, 40.059999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgh-6p9", "Name": "New Station Pizza 8", "Category": "Restaurants and Other Eating Places", "Address": "2206 W Hunting Park Ave", "LATITUDE": 40.010722, "LONGITUDE": -75.164603, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010202004.0, "Median Dwell Time": null, "Total Spend": 4384.0, "Total Transactions": 227.0, "Total Customers": 167.0, "Median Spend per Transaction": 15.04, "Median Spend per Customer": 21.85 }, "geometry": { "type": "Point", "coordinates": [ -75.164603, 40.010722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "101 E Olney Ave", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 241.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 4.0, "Total Spend": 13474.0, "Total Transactions": 986.0, "Total Customers": 723.0, "Median Spend per Transaction": 10.92, "Median Spend per Customer": 14.05 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "Name": "Sunny Side Diner", "Category": "Restaurants and Other Eating Places", "Address": "5948 Market St", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 112.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 4.0, "Total Spend": 585.0, "Total Transactions": 45.0, "Total Customers": 36.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 11.95 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-mx5", "Name": "Real Food Eatery", "Category": "Restaurants and Other Eating Places", "Address": "1700 Market St", "LATITUDE": 39.952907, "LONGITUDE": -75.169077, "DATE_RANGE_START": 2021, "Total Visits": 4499.0, "Total Visitors": 2914.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 221.0, "Total Spend": 2084.0, "Total Transactions": 129.0, "Total Customers": 100.0, "Median Spend per Transaction": 14.19, "Median Spend per Customer": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.169077, 39.952907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-p9q-hqz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079591, "LONGITUDE": -75.027394, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 117.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 20.0, "Total Spend": 2132.0, "Total Transactions": 134.0, "Total Customers": 98.0, "Median Spend per Transaction": 13.85, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027394, 40.079591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmb-gzf", "Name": "Cloud Factory Hookah Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1201 Spruce St", "LATITUDE": 39.946776, "LONGITUDE": -75.161155, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 148.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 11.0, "Total Spend": 857.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 44.27, "Median Spend per Customer": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.161155, 39.946776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-skf", "Name": "Good Dog Bar", "Category": "Restaurants and Other Eating Places", "Address": "224 S 15th St", "LATITUDE": 39.948847, "LONGITUDE": -75.166287, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 98.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 20.0, "Total Spend": 915.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 45.89, "Median Spend per Customer": 45.89 }, "geometry": { "type": "Point", "coordinates": [ -75.166287, 39.948847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-w6k", "Name": "Pizza Roma", "Category": "Restaurants and Other Eating Places", "Address": "7300 Bustleton Ave", "LATITUDE": 40.049594, "LONGITUDE": -75.059819, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 110.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 20.0, "Total Spend": 1903.0, "Total Transactions": 112.0, "Total Customers": 93.0, "Median Spend per Transaction": 13.31, "Median Spend per Customer": 15.94 }, "geometry": { "type": "Point", "coordinates": [ -75.059819, 40.049594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2940 Fox St", "LATITUDE": 40.010746, "LONGITUDE": -75.175382, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 179.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 8.0, "Total Spend": 1613.0, "Total Transactions": 115.0, "Total Customers": 93.0, "Median Spend per Transaction": 13.73, "Median Spend per Customer": 16.22 }, "geometry": { "type": "Point", "coordinates": [ -75.175382, 40.010746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "90 Franklin Mills Blvd", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 224.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 3386.0, "Total Transactions": 234.0, "Total Customers": 205.0, "Median Spend per Transaction": 12.02, "Median Spend per Customer": 12.57 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "6100 Frankford Ave", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 272.0, "POI_CBG": 421010317003.0, "Median Dwell Time": 20.0, "Total Spend": 13859.0, "Total Transactions": 1165.0, "Total Customers": 716.0, "Median Spend per Transaction": 10.45, "Median Spend per Customer": 15.17 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1900 Market Street 20th & Market", "LATITUDE": 39.953365, "LONGITUDE": -75.173088, "DATE_RANGE_START": 2021, "Total Visits": 351.0, "Total Visitors": 320.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 15.0, "Total Spend": 6317.0, "Total Transactions": 950.0, "Total Customers": 570.0, "Median Spend per Transaction": 5.35, "Median Spend per Customer": 6.87 }, "geometry": { "type": "Point", "coordinates": [ -75.173088, 39.953365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pm9-y9z", "Name": "Gold Heart Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "426 South St", "LATITUDE": 39.941621, "LONGITUDE": -75.150209, "DATE_RANGE_START": 2021, "Total Visits": 656.0, "Total Visitors": 473.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 39.0, "Total Spend": 35084.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 2750.0, "Median Spend per Customer": 5500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150209, 39.941621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22d@628-pmf-hkf", "Name": "Halal Kitch", "Category": "Restaurants and Other Eating Places", "Address": "2001 Market St", "LATITUDE": 39.954179, "LONGITUDE": -75.173698, "DATE_RANGE_START": 2021, "Total Visits": 2866.0, "Total Visitors": 1859.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 294.0, "Total Spend": 198.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173698, 39.954179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "4430 N Broad St", "LATITUDE": 40.021282, "LONGITUDE": -75.14902, "DATE_RANGE_START": 2021, "Total Visits": 675.0, "Total Visitors": 556.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 7.0, "Total Spend": 5753.0, "Total Transactions": 396.0, "Total Customers": 351.0, "Median Spend per Transaction": 12.21, "Median Spend per Customer": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.14902, 40.021282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6417 Harbison Ave", "LATITUDE": 40.032699, "LONGITUDE": -75.063191, "DATE_RANGE_START": 2021, "Total Visits": 418.0, "Total Visitors": 379.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 2.0, "Total Spend": 1625.0, "Total Transactions": 93.0, "Total Customers": 74.0, "Median Spend per Transaction": 13.92, "Median Spend per Customer": 15.97 }, "geometry": { "type": "Point", "coordinates": [ -75.063191, 40.032699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St Ste 128", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 217.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 6.0, "Total Spend": 15357.0, "Total Transactions": 1203.0, "Total Customers": 857.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6001 Ridge Ave", "LATITUDE": 40.032001, "LONGITUDE": -75.213304, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 84.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 7.0, "Total Spend": 6448.0, "Total Transactions": 236.0, "Total Customers": 203.0, "Median Spend per Transaction": 22.24, "Median Spend per Customer": 26.92 }, "geometry": { "type": "Point", "coordinates": [ -75.213304, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-t7q", "Name": "Paprica Modern Mediterranean Grill", "Category": "Restaurants and Other Eating Places", "Address": "811 Sansom St", "LATITUDE": 39.949133, "LONGITUDE": -75.154633, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 122.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 5.0, "Total Spend": 3492.0, "Total Transactions": 50.0, "Total Customers": 50.0, "Median Spend per Transaction": 62.54, "Median Spend per Customer": 62.54 }, "geometry": { "type": "Point", "coordinates": [ -75.154633, 39.949133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-3kf", "Name": "Mirage Lounge", "Category": "Restaurants and Other Eating Places", "Address": "119 South St", "LATITUDE": 39.941399, "LONGITUDE": -75.144795, "DATE_RANGE_START": 2021, "Total Visits": 1095.0, "Total Visitors": 912.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 37.0, "Total Spend": 21188.0, "Total Transactions": 212.0, "Total Customers": 181.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 74.74 }, "geometry": { "type": "Point", "coordinates": [ -75.144795, 39.941399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "Name": "Dragon City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "923 Levick St", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 81.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 3.0, "Total Spend": 400.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 27.17, "Median Spend per Customer": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978087, "LONGITUDE": -75.11955, "DATE_RANGE_START": 2021, "Total Visits": 1327.0, "Total Visitors": 690.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 4.0, "Total Spend": 14638.0, "Total Transactions": 1878.0, "Total Customers": 940.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 10.06 }, "geometry": { "type": "Point", "coordinates": [ -75.11955, 39.978087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 Walnut St", "LATITUDE": 39.948446, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2021, "Total Visits": 305.0, "Total Visitors": 222.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 33.0, "Total Spend": 5281.0, "Total Transactions": 933.0, "Total Customers": 480.0, "Median Spend per Transaction": 4.21, "Median Spend per Customer": 6.68 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.948446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-zxq", "Name": "Federal Donuts South Street", "Category": "Restaurants and Other Eating Places", "Address": "540 South St", "LATITUDE": 39.94181, "LONGITUDE": -75.152224, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 131.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 9.0, "Total Spend": 15255.0, "Total Transactions": 1031.0, "Total Customers": 924.0, "Median Spend per Transaction": 12.45, "Median Spend per Customer": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.152224, 39.94181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-h5z", "Name": "Ground Up Coffee Shop", "Category": "Restaurants and Other Eating Places", "Address": "1926 E Passyunk Ave", "LATITUDE": 39.926043, "LONGITUDE": -75.168183, "DATE_RANGE_START": 2021, "Total Visits": 924.0, "Total Visitors": 637.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 40.0, "Total Spend": 2298.0, "Total Transactions": 260.0, "Total Customers": 158.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.168183, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "Name": "Philly Auto", "Category": "Automobile Dealers", "Address": "4530 Torresdale Ave", "LATITUDE": 40.010118, "LONGITUDE": -75.081162, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 124.0, "POI_CBG": 421010294003.0, "Median Dwell Time": 15.0, "Total Spend": 28099.0, "Total Transactions": 124.0, "Total Customers": 112.0, "Median Spend per Transaction": 42.11, "Median Spend per Customer": 47.49 }, "geometry": { "type": "Point", "coordinates": [ -75.081162, 40.010118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.962963, "LONGITUDE": -75.174058, "DATE_RANGE_START": 2021, "Total Visits": 3095.0, "Total Visitors": 1835.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 20.0, "Total Spend": 233816.0, "Total Transactions": 6322.0, "Total Customers": 2695.0, "Median Spend per Transaction": 22.08, "Median Spend per Customer": 42.77 }, "geometry": { "type": "Point", "coordinates": [ -75.174058, 39.962963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25q-222@628-pm9-tn5", "Name": "Superhots By George", "Category": "Specialty Food Stores", "Address": "740 Sansom St Ste 601", "LATITUDE": 39.948564, "LONGITUDE": -75.153931, "DATE_RANGE_START": 2021, "Total Visits": 1950.0, "Total Visitors": 1370.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 97.0, "Total Spend": 536.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 14.65, "Median Spend per Customer": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.153931, 39.948564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pp4-ks5", "Name": "Caring Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "2541 Kensington Ave", "LATITUDE": 39.987937, "LONGITUDE": -75.127658, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 210.0, "POI_CBG": 421010161003.0, "Median Dwell Time": 13.0, "Total Spend": 36.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127658, 39.987937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5051 Wissahickon Ave", "LATITUDE": 40.019964, "LONGITUDE": -75.174488, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 165.0, "POI_CBG": 421010243002.0, "Median Dwell Time": 3.0, "Total Spend": 5013.0, "Total Transactions": 726.0, "Total Customers": 363.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 7.85 }, "geometry": { "type": "Point", "coordinates": [ -75.174488, 40.019964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm6-gx5", "Name": "King Food", "Category": "Restaurants and Other Eating Places", "Address": "2554 S American St", "LATITUDE": 39.915882, "LONGITUDE": -75.152424, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 5.0, "Total Spend": 218.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 45.59, "Median Spend per Customer": 45.59 }, "geometry": { "type": "Point", "coordinates": [ -75.152424, 39.915882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5650 Ridge Ave", "LATITUDE": 40.026583, "LONGITUDE": -75.209516, "DATE_RANGE_START": 2021, "Total Visits": 993.0, "Total Visitors": 697.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 4.0, "Total Spend": 1392.0, "Total Transactions": 45.0, "Total Customers": 45.0, "Median Spend per Transaction": 33.81, "Median Spend per Customer": 33.81 }, "geometry": { "type": "Point", "coordinates": [ -75.209516, 40.026583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044956, "LONGITUDE": -75.143877, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 1.0, "Total Spend": 8914.0, "Total Transactions": 360.0, "Total Customers": 251.0, "Median Spend per Transaction": 20.57, "Median Spend per Customer": 25.63 }, "geometry": { "type": "Point", "coordinates": [ -75.143877, 40.044956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@63s-dvw-bhq", "Name": "Pm Food Market", "Category": "Grocery Stores", "Address": "61 N 52nd St", "LATITUDE": 39.961425, "LONGITUDE": -75.224249, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010093003.0, "Median Dwell Time": 15.0, "Total Spend": 385.0, "Total Transactions": 50.0, "Total Customers": 38.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 9.09 }, "geometry": { "type": "Point", "coordinates": [ -75.224249, 39.961425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pg3-789", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "8103 Stenton Ave", "LATITUDE": 40.067023, "LONGITUDE": -75.178027, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 1.0, "Total Spend": 212.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 35.85, "Median Spend per Customer": 35.85 }, "geometry": { "type": "Point", "coordinates": [ -75.178027, 40.067023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-grk", "Name": "Nick's Charcoal Pit", "Category": "Restaurants and Other Eating Places", "Address": "1242 Snyder Ave", "LATITUDE": 39.923906, "LONGITUDE": -75.167451, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010040013.0, "Median Dwell Time": null, "Total Spend": 4814.0, "Total Transactions": 119.0, "Total Customers": 67.0, "Median Spend per Transaction": 53.7, "Median Spend per Customer": 25.95 }, "geometry": { "type": "Point", "coordinates": [ -75.167451, 39.923906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "Name": "Munchies Cafe", "Category": "Restaurants and Other Eating Places", "Address": "728 Chestnut St", "LATITUDE": 39.949457, "LONGITUDE": -75.153676, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 160.0, "Total Spend": 4241.0, "Total Transactions": 358.0, "Total Customers": 208.0, "Median Spend per Transaction": 10.07, "Median Spend per Customer": 11.65 }, "geometry": { "type": "Point", "coordinates": [ -75.153676, 39.949457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "Name": "Pho Palace", "Category": "Restaurants and Other Eating Places", "Address": "15501 Bustleton Ave", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 107.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 18.0, "Total Spend": 7371.0, "Total Transactions": 189.0, "Total Customers": 158.0, "Median Spend per Transaction": 38.45, "Median Spend per Customer": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1100 Pattison Ave", "LATITUDE": 39.904365, "LONGITUDE": -75.169382, "DATE_RANGE_START": 2021, "Total Visits": 3062.0, "Total Visitors": 2647.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 69.0, "Total Spend": 4720.0, "Total Transactions": 274.0, "Total Customers": 248.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.169382, 39.904365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7z-7kf", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "901 Cottman Ave", "LATITUDE": 40.062355, "LONGITUDE": -75.08469, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 205.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 4.0, "Total Spend": 68.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 8.18, "Median Spend per Customer": 8.18 }, "geometry": { "type": "Point", "coordinates": [ -75.08469, 40.062355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvw-hwk", "Name": "Great Taste Chinese Food", "Category": "Restaurants and Other Eating Places", "Address": "4834 Spruce St", "LATITUDE": 39.953652, "LONGITUDE": -75.219329, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 43.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 511.0, "Total Spend": 200.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 41.99, "Median Spend per Customer": 41.99 }, "geometry": { "type": "Point", "coordinates": [ -75.219329, 39.953652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "Name": "Wooden Shoe Books", "Category": "Book Stores and News Dealers", "Address": "704 South St", "LATITUDE": 39.942084, "LONGITUDE": -75.154166, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 1.0, "Total Spend": 5688.0, "Total Transactions": 160.0, "Total Customers": 150.0, "Median Spend per Transaction": 29.11, "Median Spend per Customer": 31.27 }, "geometry": { "type": "Point", "coordinates": [ -75.154166, 39.942084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "Name": "Honey Bee Gourmet Deli", "Category": "Restaurants and Other Eating Places", "Address": "1034 Spruce St", "LATITUDE": 39.945912, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 126.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 1.0, "Total Spend": 41.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 39.945912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "Name": "Broad Street Diner", "Category": "Restaurants and Other Eating Places", "Address": "1135 S Broad St", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 48.0, "POI_CBG": 421010023001.0, "Median Dwell Time": 241.0, "Total Spend": 6604.0, "Total Transactions": 210.0, "Total Customers": 169.0, "Median Spend per Transaction": 31.63, "Median Spend per Customer": 33.42 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phd-h89", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "4600 City Ave", "LATITUDE": 40.002639, "LONGITUDE": -75.222769, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 208.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 3.0, "Total Spend": 6597.0, "Total Transactions": 358.0, "Total Customers": 296.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.222769, 40.002639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgj-2ff", "Name": "Pita & Co", "Category": "Restaurants and Other Eating Places", "Address": "1755 N 13th St", "LATITUDE": 39.979339, "LONGITUDE": -75.155043, "DATE_RANGE_START": 2021, "Total Visits": 1148.0, "Total Visitors": 819.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 64.0, "Total Spend": 406.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 85.0, "Median Spend per Customer": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155043, 39.979339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "Name": "Crash Bang Boom", "Category": "Clothing Stores", "Address": "528 S 4th St", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2021, "Total Visits": 1165.0, "Total Visitors": 1112.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 8.0, "Total Spend": 1242.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 71.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-gkz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5301 Chew Ave", "LATITUDE": 40.043254, "LONGITUDE": -75.158799, "DATE_RANGE_START": 2021, "Total Visits": 387.0, "Total Visitors": 255.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 16.0, "Total Spend": 13220.0, "Total Transactions": 874.0, "Total Customers": 432.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 18.07 }, "geometry": { "type": "Point", "coordinates": [ -75.158799, 40.043254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23h@628-pmf-sqz", "Name": "LUSH", "Category": "Health and Personal Care Stores", "Address": "1525 Walnut St", "LATITUDE": 39.949954, "LONGITUDE": -75.167065, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 246.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 21.0, "Total Spend": 21500.0, "Total Transactions": 604.0, "Total Customers": 592.0, "Median Spend per Transaction": 26.45, "Median Spend per Customer": 26.67 }, "geometry": { "type": "Point", "coordinates": [ -75.167065, 39.949954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tqf", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1675 S Columbus Blvd", "LATITUDE": 39.926373, "LONGITUDE": -75.141555, "DATE_RANGE_START": 2021, "Total Visits": 8112.0, "Total Visitors": 5668.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 31.0, "Total Spend": 441960.0, "Total Transactions": 7103.0, "Total Customers": 5227.0, "Median Spend per Transaction": 39.17, "Median Spend per Customer": 50.36 }, "geometry": { "type": "Point", "coordinates": [ -75.141555, 39.926373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2001 Pennsylvania Ave", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2021, "Total Visits": 1981.0, "Total Visitors": 1415.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 13.0, "Total Spend": 290444.0, "Total Transactions": 8391.0, "Total Customers": 4907.0, "Median Spend per Transaction": 24.29, "Median Spend per Customer": 38.31 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-j7q", "Name": "Smokin Stogies N Stuff", "Category": "Other Miscellaneous Store Retailers", "Address": "102 S 18th St", "LATITUDE": 39.951529, "LONGITUDE": -75.170525, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 203.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 18639.0, "Total Transactions": 597.0, "Total Customers": 411.0, "Median Spend per Transaction": 24.3, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170525, 39.951529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "7129 Frankford Ave", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 33.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 5.0, "Total Spend": 9701.0, "Total Transactions": 422.0, "Total Customers": 348.0, "Median Spend per Transaction": 19.95, "Median Spend per Customer": 20.99 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg9-vzz", "Name": "Fairmount Bicycles", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2015 Fairmount Ave", "LATITUDE": 39.967501, "LONGITUDE": -75.170829, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 36.0, "POI_CBG": 421010135002.0, "Median Dwell Time": 4.0, "Total Spend": 10149.0, "Total Transactions": 93.0, "Total Customers": 76.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170829, 39.967501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-jd9", "Name": "The Body Shop", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 148", "LATITUDE": 39.952033, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 72.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 1799.0, "Total Transactions": 69.0, "Total Customers": 64.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7001 Roosevelt Blvd", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2021, "Total Visits": 1060.0, "Total Visitors": 823.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 3.0, "Total Spend": 132411.0, "Total Transactions": 6516.0, "Total Customers": 3437.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-835", "Name": "Molly Malloy's", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953325, "LONGITUDE": -75.158702, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 1061.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 16.29, "Median Spend per Customer": 16.29 }, "geometry": { "type": "Point", "coordinates": [ -75.158702, 39.953325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "4010 Robbins Ave", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 103.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 37.0, "Total Spend": 421.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 88.19, "Median Spend per Customer": 88.19 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Broad St", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 217.0, "POI_CBG": 421010200001.0, "Median Dwell Time": 5.0, "Total Spend": 7958.0, "Total Transactions": 823.0, "Total Customers": 592.0, "Median Spend per Transaction": 7.84, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "Name": "Dancewear On Broad LLC", "Category": "Clothing Stores", "Address": "1129 S Broad St", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 94.0, "Total Spend": 1126.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 33.72, "Median Spend per Customer": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pmb-fpv", "Name": "Shaking Seafood", "Category": "Restaurants and Other Eating Places", "Address": "243 S 10th St", "LATITUDE": 39.946982, "LONGITUDE": -75.157365, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010009022.0, "Median Dwell Time": null, "Total Spend": 4426.0, "Total Transactions": 95.0, "Total Customers": 86.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 49.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157365, 39.946982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "Name": "Carter's", "Category": "Clothing Stores", "Address": "9171 Roosevelt Blvd Ste C", "LATITUDE": 40.075968, "LONGITUDE": -75.031512, "DATE_RANGE_START": 2021, "Total Visits": 387.0, "Total Visitors": 363.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 25.0, "Total Spend": 3297.0, "Total Transactions": 79.0, "Total Customers": 76.0, "Median Spend per Transaction": 40.48, "Median Spend per Customer": 39.89 }, "geometry": { "type": "Point", "coordinates": [ -75.031512, 40.075968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pm9-wtv", "Name": "Ross Stores", "Category": "Department Stores", "Address": "701 Market St", "LATITUDE": 39.951286, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 16071.0, "Total Transactions": 449.0, "Total Customers": 351.0, "Median Spend per Transaction": 25.49, "Median Spend per Customer": 30.37 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.951286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-zmk", "Name": "Paul's Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "5624 N 5th St", "LATITUDE": 40.037166, "LONGITUDE": -75.130496, "DATE_RANGE_START": 2021, "Total Visits": 1115.0, "Total Visitors": 523.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 314.0, "Total Spend": 704.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 40.037166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-7yv", "Name": "Bee Natural", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "51 N 12th St", "LATITUDE": 39.953663, "LONGITUDE": -75.158929, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 1122.0, "Total Transactions": 57.0, "Total Customers": 53.0, "Median Spend per Transaction": 15.19, "Median Spend per Customer": 15.69 }, "geometry": { "type": "Point", "coordinates": [ -75.158929, 39.953663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-649", "Name": "Quaker Valley Foods", "Category": "Specialty Food Stores", "Address": "2701 Red Lion Rd", "LATITUDE": 40.094265, "LONGITUDE": -75.010029, "DATE_RANGE_START": 2021, "Total Visits": 289.0, "Total Visitors": 74.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 397.0, "Total Spend": 176113.0, "Total Transactions": 57.0, "Total Customers": 7.0, "Median Spend per Transaction": 3190.84, "Median Spend per Customer": 9046.53 }, "geometry": { "type": "Point", "coordinates": [ -75.010029, 40.094265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-td9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave Ste 2936", "LATITUDE": 39.902269, "LONGITUDE": -75.241997, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 1.0, "Total Spend": 2839.0, "Total Transactions": 220.0, "Total Customers": 155.0, "Median Spend per Transaction": 11.16, "Median Spend per Customer": 14.02 }, "geometry": { "type": "Point", "coordinates": [ -75.241997, 39.902269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm3-syv", "Name": "Bing Bing Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "1648 E Passyunk Ave", "LATITUDE": 39.928965, "LONGITUDE": -75.164747, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 69.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 27.0, "Total Spend": 4467.0, "Total Transactions": 69.0, "Total Customers": 67.0, "Median Spend per Transaction": 48.85, "Median Spend per Customer": 53.71 }, "geometry": { "type": "Point", "coordinates": [ -75.164747, 39.928965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "Name": "RIM Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1172 S 9th St", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 60.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 2.0, "Total Spend": 3310.0, "Total Transactions": 186.0, "Total Customers": 162.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pp5-kpv", "Name": "Port Richmond Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2512 E Clearfield St", "LATITUDE": 39.985432, "LONGITUDE": -75.107476, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 81.0, "POI_CBG": 421010180023.0, "Median Dwell Time": 18.0, "Total Spend": 1829.0, "Total Transactions": 134.0, "Total Customers": 55.0, "Median Spend per Transaction": 6.3, "Median Spend per Customer": 19.77 }, "geometry": { "type": "Point", "coordinates": [ -75.107476, 39.985432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "Name": "New Pizza Villa", "Category": "Restaurants and Other Eating Places", "Address": "7159 Torresdale Ave", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 10.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 631.0, "Total Spend": 1293.0, "Total Transactions": 55.0, "Total Customers": 50.0, "Median Spend per Transaction": 21.82, "Median Spend per Customer": 21.82 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgm-68v", "Name": "Foghorn", "Category": "Restaurants and Other Eating Places", "Address": "4213 Ridge Ave", "LATITUDE": 40.009232, "LONGITUDE": -75.194181, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 23.0, "Total Spend": 1690.0, "Total Transactions": 74.0, "Total Customers": 67.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.194181, 40.009232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-cbk", "Name": "Torres", "Category": "Restaurants and Other Eating Places", "Address": "5434 Torresdale Ave", "LATITUDE": 40.01446, "LONGITUDE": -75.065885, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 19.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 3.0, "Total Spend": 955.0, "Total Transactions": 36.0, "Total Customers": 24.0, "Median Spend per Transaction": 24.41, "Median Spend per Customer": 30.54 }, "geometry": { "type": "Point", "coordinates": [ -75.065885, 40.01446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phj-rrk", "Name": "Sunny Side Breakfast & Lunch", "Category": "Restaurants and Other Eating Places", "Address": "7706 Ogontz Ave", "LATITUDE": 40.071002, "LONGITUDE": -75.157739, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 24.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 5.0, "Total Spend": 230.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 12.26, "Median Spend per Customer": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.157739, 40.071002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmd-snq", "Name": "Pure Design", "Category": "Florists", "Address": "500 S 22nd St", "LATITUDE": 39.946224, "LONGITUDE": -75.178525, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 99.0, "Total Spend": 1159.0, "Total Transactions": 31.0, "Total Customers": 21.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.178525, 39.946224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p74-z75", "Name": "Seafood Bay Inc", "Category": "Restaurants and Other Eating Places", "Address": "8006 Frankford Ave", "LATITUDE": 40.041659, "LONGITUDE": -75.028001, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 45.0, "POI_CBG": 421010331022.0, "Median Dwell Time": 3.0, "Total Spend": 1192.0, "Total Transactions": 41.0, "Total Customers": 19.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 28.32 }, "geometry": { "type": "Point", "coordinates": [ -75.028001, 40.041659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "Name": "Stargazy", "Category": "Restaurants and Other Eating Places", "Address": "1838 E Passyunk Ave", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 40.0, "Total Spend": 1098.0, "Total Transactions": 55.0, "Total Customers": 50.0, "Median Spend per Transaction": 17.2, "Median Spend per Customer": 17.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "Name": "Davis Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4523 Baltimore Ave", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 657.0, "Total Spend": 2181.0, "Total Transactions": 72.0, "Total Customers": 64.0, "Median Spend per Transaction": 18.33, "Median Spend per Customer": 19.22 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hnq", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "24 S 20th St", "LATITUDE": 39.952468, "LONGITUDE": -75.173535, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010004011.0, "Median Dwell Time": null, "Total Spend": 561.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 11.73, "Median Spend per Customer": 11.73 }, "geometry": { "type": "Point", "coordinates": [ -75.173535, 39.952468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pmb-ygk", "Name": "Oishii Poke", "Category": "Restaurants and Other Eating Places", "Address": "938 Arch St Fl Rear", "LATITUDE": 39.953252, "LONGITUDE": -75.15618, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 48.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 5683.0, "Total Transactions": 332.0, "Total Customers": 248.0, "Median Spend per Transaction": 14.26, "Median Spend per Customer": 21.13 }, "geometry": { "type": "Point", "coordinates": [ -75.15618, 39.953252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "Name": "Stanley's Hardware", "Category": "Building Material and Supplies Dealers", "Address": "5555 Ridge Ave", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2021, "Total Visits": 585.0, "Total Visitors": 453.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 7.0, "Total Spend": 85653.0, "Total Transactions": 2126.0, "Total Customers": 1286.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "Name": "A Lin Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1942 S 9th St", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 1.0, "Total Spend": 790.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 45.5, "Median Spend per Customer": 34.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "Name": "New Quality Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "105 E Allegheny Ave", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 13.0, "Total Spend": 483.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 16.65, "Median Spend per Customer": 18.53 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmd-zfz", "Name": "Small Oven Pastry Shop", "Category": "Restaurants and Other Eating Places", "Address": "2204 Washington Ave", "LATITUDE": 39.939225, "LONGITUDE": -75.180201, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 79.0, "POI_CBG": 421010020001.0, "Median Dwell Time": 17.0, "Total Spend": 464.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 17.08, "Median Spend per Customer": 17.08 }, "geometry": { "type": "Point", "coordinates": [ -75.180201, 39.939225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp4-syv", "Name": "Memphis Market & Grill", "Category": "Restaurants and Other Eating Places", "Address": "2327 E Huntingdon St", "LATITUDE": 39.98172, "LONGITUDE": -75.120871, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 57.0, "POI_CBG": 421010160001.0, "Median Dwell Time": 393.0, "Total Spend": 7853.0, "Total Transactions": 637.0, "Total Customers": 172.0, "Median Spend per Transaction": 11.8, "Median Spend per Customer": 17.83 }, "geometry": { "type": "Point", "coordinates": [ -75.120871, 39.98172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "Name": "Reggae Reggae Vibes", "Category": "Restaurants and Other Eating Places", "Address": "517 W Girard Ave", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 17.0, "POI_CBG": 421010144003.0, "Median Dwell Time": 383.0, "Total Spend": 3206.0, "Total Transactions": 143.0, "Total Customers": 126.0, "Median Spend per Transaction": 15.14, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-yn5", "Name": "Encore", "Category": "Restaurants and Other Eating Places", "Address": "4002 W Girard Ave", "LATITUDE": 39.973824, "LONGITUDE": -75.204593, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010110003.0, "Median Dwell Time": 5.0, "Total Spend": 1339.0, "Total Transactions": 36.0, "Total Customers": 31.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204593, 39.973824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pnz-yvz", "Name": "Gaul & Co Malthouse", "Category": "Restaurants and Other Eating Places", "Address": "2619 E Indiana Ave", "LATITUDE": 39.98263, "LONGITUDE": -75.107515, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010180023.0, "Median Dwell Time": 193.0, "Total Spend": 300.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 62.75, "Median Spend per Customer": 62.75 }, "geometry": { "type": "Point", "coordinates": [ -75.107515, 39.98263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pm3-vpv", "Name": "Flannel", "Category": "Restaurants and Other Eating Places", "Address": "1819 E Passyunk Ave", "LATITUDE": 39.927129, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 45.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 106.0, "Total Spend": 3967.0, "Total Transactions": 76.0, "Total Customers": 67.0, "Median Spend per Transaction": 44.99, "Median Spend per Customer": 46.03 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.927129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5719 Oxford Ave", "LATITUDE": 40.033268, "LONGITUDE": -75.084729, "DATE_RANGE_START": 2021, "Total Visits": 437.0, "Total Visitors": 332.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 7.0, "Total Spend": 1283.0, "Total Transactions": 95.0, "Total Customers": 64.0, "Median Spend per Transaction": 8.17, "Median Spend per Customer": 9.76 }, "geometry": { "type": "Point", "coordinates": [ -75.084729, 40.033268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "Name": "Blick Art Materials", "Category": "Other Miscellaneous Store Retailers", "Address": "1330 Chestnut St", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 105.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 297.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 18.58, "Median Spend per Customer": 22.24 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-7yv", "Name": "7 Brothers Supermarket", "Category": "Grocery Stores", "Address": "180 W Duncannon Ave", "LATITUDE": 40.027871, "LONGITUDE": -75.125835, "DATE_RANGE_START": 2021, "Total Visits": 699.0, "Total Visitors": 492.0, "POI_CBG": 421010286001.0, "Median Dwell Time": 18.0, "Total Spend": 1849.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 31.15, "Median Spend per Customer": 13.38 }, "geometry": { "type": "Point", "coordinates": [ -75.125835, 40.027871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgb-47q", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "1500 Spring Garden St", "LATITUDE": 39.962439, "LONGITUDE": -75.1634, "DATE_RANGE_START": 2021, "Total Visits": 1255.0, "Total Visitors": 578.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 295.0, "Total Spend": 9798.0, "Total Transactions": 730.0, "Total Customers": 616.0, "Median Spend per Transaction": 11.21, "Median Spend per Customer": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.1634, 39.962439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5s5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1201 Chestnut St", "LATITUDE": 39.950566, "LONGITUDE": -75.160281, "DATE_RANGE_START": 2021, "Total Visits": 1060.0, "Total Visitors": 914.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 2081.0, "Total Transactions": 224.0, "Total Customers": 138.0, "Median Spend per Transaction": 7.31, "Median Spend per Customer": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.160281, 39.950566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22n@63s-dw9-7nq", "Name": "Sunglass Hut", "Category": "Health and Personal Care Stores", "Address": "8500 Essington Ave Spc M 22", "LATITUDE": 39.873547, "LONGITUDE": -75.247282, "DATE_RANGE_START": 2021, "Total Visits": 5506.0, "Total Visitors": 5203.0, "POI_CBG": 420459800001.0, "Median Dwell Time": 41.0, "Total Spend": 4896.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 211.44, "Median Spend per Customer": 211.44 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.873547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "1464 Philadelphia Mills", "LATITUDE": 40.087098, "LONGITUDE": -74.962333, "DATE_RANGE_START": 2021, "Total Visits": 492.0, "Total Visitors": 463.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 2161.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 62.5, "Median Spend per Customer": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962333, 40.087098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912527, "LONGITUDE": -75.154627, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 210.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 5548.0, "Total Transactions": 129.0, "Total Customers": 107.0, "Median Spend per Transaction": 30.18, "Median Spend per Customer": 34.71 }, "geometry": { "type": "Point", "coordinates": [ -75.154627, 39.912527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-sbk", "Name": "Faulkner Hyundai", "Category": "Automobile Dealers", "Address": "11500 Roosevelt Blvd", "LATITUDE": 40.102704, "LONGITUDE": -75.006021, "DATE_RANGE_START": 2021, "Total Visits": 2067.0, "Total Visitors": 1520.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 16.0, "Total Spend": 29447.0, "Total Transactions": 110.0, "Total Customers": 103.0, "Median Spend per Transaction": 69.06, "Median Spend per Customer": 93.39 }, "geometry": { "type": "Point", "coordinates": [ -75.006021, 40.102704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "Name": "Cambria Suites", "Category": "Traveler Accommodation", "Address": "219 S Broad St", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2021, "Total Visits": 7224.0, "Total Visitors": 5227.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 41.0, "Total Spend": 8122.0, "Total Transactions": 43.0, "Total Customers": 41.0, "Median Spend per Transaction": 200.12, "Median Spend per Customer": 203.44 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "Name": "Alexa Pharmacy", "Category": "Health and Personal Care Stores", "Address": "919 Tyson Ave", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 31.0, "POI_CBG": 421010308003.0, "Median Dwell Time": 9.0, "Total Spend": 1815.0, "Total Transactions": 64.0, "Total Customers": 48.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 36.48 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-7t9", "Name": "Flowers Etcetera By Denise", "Category": "Florists", "Address": "637 N 2nd St", "LATITUDE": 39.961729, "LONGITUDE": -75.140942, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 31.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1.0, "Total Spend": 867.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140942, 39.961729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm9-y9z", "Name": "InksterInc", "Category": "Clothing Stores", "Address": "530 S 4th St Apt 1", "LATITUDE": 39.941856, "LONGITUDE": -75.149296, "DATE_RANGE_START": 2021, "Total Visits": 1165.0, "Total Visitors": 1112.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 8.0, "Total Spend": 2892.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 605.81, "Median Spend per Customer": 605.81 }, "geometry": { "type": "Point", "coordinates": [ -75.149296, 39.941856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-z75", "Name": "Johnstone Supply", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "455 N 7th St", "LATITUDE": 39.960021, "LONGITUDE": -75.149706, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 98.0, "POI_CBG": 421010376001.0, "Median Dwell Time": 117.0, "Total Spend": 1129.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 81.13, "Median Spend per Customer": 236.44 }, "geometry": { "type": "Point", "coordinates": [ -75.149706, 39.960021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6412 Castor Ave # 6422", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2021, "Total Visits": 549.0, "Total Visitors": 389.0, "POI_CBG": 421010311013.0, "Median Dwell Time": 12.0, "Total Spend": 414.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 25.46, "Median Spend per Customer": 25.46 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-vxq", "Name": "Jersey Mike's", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955112, "LONGITUDE": -75.18233, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 33.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 5.0, "Total Spend": 9568.0, "Total Transactions": 754.0, "Total Customers": 640.0, "Median Spend per Transaction": 11.15, "Median Spend per Customer": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.18233, 39.955112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-p7q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1955 W Hunting Park Ave", "LATITUDE": 40.01382, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 41.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 8.0, "Total Spend": 217.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 6.52, "Median Spend per Customer": 6.52 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 40.01382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-pvz", "Name": "Red Lion Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "737 Red Lion Rd", "LATITUDE": 40.105639, "LONGITUDE": -75.033118, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 41.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 70.0, "Total Spend": 636.0, "Total Transactions": 24.0, "Total Customers": 7.0, "Median Spend per Transaction": 26.88, "Median Spend per Customer": 45.76 }, "geometry": { "type": "Point", "coordinates": [ -75.033118, 40.105639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5401 N 5th St", "LATITUDE": 40.033486, "LONGITUDE": -75.130876, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 141.0, "POI_CBG": 421010274013.0, "Median Dwell Time": 2.0, "Total Spend": 10604.0, "Total Transactions": 1243.0, "Total Customers": 532.0, "Median Spend per Transaction": 6.69, "Median Spend per Customer": 10.65 }, "geometry": { "type": "Point", "coordinates": [ -75.130876, 40.033486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5801 Oxford Ave", "LATITUDE": 40.032682, "LONGITUDE": -75.084504, "DATE_RANGE_START": 2021, "Total Visits": 298.0, "Total Visitors": 191.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 3.0, "Total Spend": 2248.0, "Total Transactions": 394.0, "Total Customers": 158.0, "Median Spend per Transaction": 4.57, "Median Spend per Customer": 8.31 }, "geometry": { "type": "Point", "coordinates": [ -75.084504, 40.032682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "Name": "Tiffany & Co.", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1715 Walnut St", "LATITUDE": 39.950223, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2021, "Total Visits": 260.0, "Total Visitors": 217.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 22.0, "Total Spend": 32338.0, "Total Transactions": 53.0, "Total Customers": 45.0, "Median Spend per Transaction": 118.8, "Median Spend per Customer": 118.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.950223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "Name": "Fleishman Fabrics & Supplies", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "737 S 4th St", "LATITUDE": 39.93943, "LONGITUDE": -75.149516, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 191.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 21.0, "Total Spend": 5782.0, "Total Transactions": 167.0, "Total Customers": 112.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149516, 39.93943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11000 Roosevelt Blvd Ste 3", "LATITUDE": 40.101947, "LONGITUDE": -75.011258, "DATE_RANGE_START": 2021, "Total Visits": 5053.0, "Total Visitors": 3363.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 21.0, "Total Spend": 224764.0, "Total Transactions": 4449.0, "Total Customers": 2733.0, "Median Spend per Transaction": 34.16, "Median Spend per Customer": 51.21 }, "geometry": { "type": "Point", "coordinates": [ -75.011258, 40.101947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-835", "Name": "3J's Food Market", "Category": "Grocery Stores", "Address": "801 N 2nd St", "LATITUDE": 39.963054, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010367001.0, "Median Dwell Time": null, "Total Spend": 178.0, "Total Transactions": 24.0, "Total Customers": 10.0, "Median Spend per Transaction": 5.07, "Median Spend per Customer": 14.82 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-fcq", "Name": "Yeager Hardware", "Category": "Building Material and Supplies Dealers", "Address": "1232 N 52nd St", "LATITUDE": 39.97236, "LONGITUDE": -75.226332, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 12.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 351.0, "Total Spend": 57670.0, "Total Transactions": 1695.0, "Total Customers": 1117.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 23.67 }, "geometry": { "type": "Point", "coordinates": [ -75.226332, 39.97236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm4-8sq", "Name": "Olivares Food Market", "Category": "Grocery Stores", "Address": "1718 Wharton St", "LATITUDE": 39.934795, "LONGITUDE": -75.173301, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010030023.0, "Median Dwell Time": 14.0, "Total Spend": 164.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 11.9, "Median Spend per Customer": 18.15 }, "geometry": { "type": "Point", "coordinates": [ -75.173301, 39.934795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "Name": "John's Place", "Category": "Restaurants and Other Eating Places", "Address": "1529 Spring Garden St", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010133001.0, "Median Dwell Time": null, "Total Spend": 645.0, "Total Transactions": 53.0, "Total Customers": 31.0, "Median Spend per Transaction": 10.7, "Median Spend per Customer": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "Name": "Comfort & Floyd", "Category": "Restaurants and Other Eating Places", "Address": "1301 S 11th St", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 8.0, "Total Spend": 4356.0, "Total Transactions": 122.0, "Total Customers": 98.0, "Median Spend per Transaction": 33.75, "Median Spend per Customer": 36.29 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "Name": "Olive Garden", "Category": "Restaurants and Other Eating Places", "Address": "9280 Roosevelt Blvd", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2021, "Total Visits": 916.0, "Total Visitors": 800.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 61.0, "Total Spend": 36629.0, "Total Transactions": 640.0, "Total Customers": 561.0, "Median Spend per Transaction": 52.36, "Median Spend per Customer": 59.13 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "Name": "Luke's Lobster", "Category": "Restaurants and Other Eating Places", "Address": "130 S 17th St", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 131.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 21.0, "Total Spend": 7262.0, "Total Transactions": 174.0, "Total Customers": 155.0, "Median Spend per Transaction": 34.78, "Median Spend per Customer": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "Name": "Vintage Wine Bar", "Category": "Restaurants and Other Eating Places", "Address": "129 S 13th St", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 141.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 59.0, "Total Spend": 6129.0, "Total Transactions": 112.0, "Total Customers": 105.0, "Median Spend per Transaction": 44.88, "Median Spend per Customer": 52.75 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "Name": "Trio", "Category": "Restaurants and Other Eating Places", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.968734, "LONGITUDE": -75.180754, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 95.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 1.0, "Total Spend": 4816.0, "Total Transactions": 234.0, "Total Customers": 160.0, "Median Spend per Transaction": 16.7, "Median Spend per Customer": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.180754, 39.968734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1324 Walnut St", "LATITUDE": 39.949164, "LONGITUDE": -75.163217, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 4.0, "Total Spend": 3271.0, "Total Transactions": 561.0, "Total Customers": 265.0, "Median Spend per Transaction": 4.2, "Median Spend per Customer": 7.33 }, "geometry": { "type": "Point", "coordinates": [ -75.163217, 39.949164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954762, "LONGITUDE": -75.202149, "DATE_RANGE_START": 2021, "Total Visits": 224.0, "Total Visitors": 169.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 12.0, "Total Spend": 11654.0, "Total Transactions": 1800.0, "Total Customers": 776.0, "Median Spend per Transaction": 5.12, "Median Spend per Customer": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.202149, 39.954762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market St", "LATITUDE": 39.952606, "LONGITUDE": -75.16665, "DATE_RANGE_START": 2021, "Total Visits": 1747.0, "Total Visitors": 1456.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 6046.0, "Total Transactions": 871.0, "Total Customers": 601.0, "Median Spend per Transaction": 5.67, "Median Spend per Customer": 6.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16665, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9mk", "Name": "Island Ave Donuts", "Category": "Restaurants and Other Eating Places", "Address": "7601 Lindbergh Blvd", "LATITUDE": 39.904882, "LONGITUDE": -75.238376, "DATE_RANGE_START": 2021, "Total Visits": 673.0, "Total Visitors": 463.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 5.0, "Total Spend": 37.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.74, "Median Spend per Customer": 7.74 }, "geometry": { "type": "Point", "coordinates": [ -75.238376, 39.904882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pj6-k4v", "Name": "Pelicana Chicken", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.04453, "LONGITUDE": -75.117658, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 21.0, "Total Spend": 1978.0, "Total Transactions": 64.0, "Total Customers": 53.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 28.49 }, "geometry": { "type": "Point", "coordinates": [ -75.117658, 40.04453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-tjv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "808 Chestnut St", "LATITUDE": 39.949514, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 110.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 2911.0, "Total Transactions": 530.0, "Total Customers": 272.0, "Median Spend per Transaction": 4.65, "Median Spend per Customer": 6.26 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-d35", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2201 2219 South Broad Street Commerce Plaza", "LATITUDE": 39.922445, "LONGITUDE": -75.169848, "DATE_RANGE_START": 2021, "Total Visits": 179.0, "Total Visitors": 165.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 2.0, "Total Spend": 8524.0, "Total Transactions": 1014.0, "Total Customers": 642.0, "Median Spend per Transaction": 6.38, "Median Spend per Customer": 9.57 }, "geometry": { "type": "Point", "coordinates": [ -75.169848, 39.922445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-6tv", "Name": "Smoothie King", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 207", "LATITUDE": 39.951888, "LONGITUDE": -75.167584, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 99.0, "Total Spend": 6546.0, "Total Transactions": 783.0, "Total Customers": 501.0, "Median Spend per Transaction": 6.9, "Median Spend per Customer": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.167584, 39.951888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvr-9mk", "Name": "60th Street Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5956 Chester Ave", "LATITUDE": 39.93354, "LONGITUDE": -75.231211, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010065001.0, "Median Dwell Time": null, "Total Spend": 8248.0, "Total Transactions": 442.0, "Total Customers": 320.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 21.99 }, "geometry": { "type": "Point", "coordinates": [ -75.231211, 39.93354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p8m-54v", "Name": "Johnnie's Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4201 Comly St", "LATITUDE": 40.022812, "LONGITUDE": -75.063613, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010319004.0, "Median Dwell Time": 3.0, "Total Spend": 1089.0, "Total Transactions": 29.0, "Total Customers": 21.0, "Median Spend per Transaction": 36.89, "Median Spend per Customer": 50.9 }, "geometry": { "type": "Point", "coordinates": [ -75.063613, 40.022812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "2141 Cottman Ave Unit D", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 200.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 26.0, "Total Spend": 12762.0, "Total Transactions": 196.0, "Total Customers": 184.0, "Median Spend per Transaction": 52.89, "Median Spend per Customer": 57.19 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "Name": "Penrose Diner", "Category": "Restaurants and Other Eating Places", "Address": "2016 Penrose Ave", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2021, "Total Visits": 1100.0, "Total Visitors": 936.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 28.0, "Total Spend": 804.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 44.0, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "7855 Oxford Ave", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 303.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 4.0, "Total Spend": 8352.0, "Total Transactions": 556.0, "Total Customers": 449.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 16.06 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "Name": "Milkcrate Cafe", "Category": "Restaurants and Other Eating Places", "Address": "400 E Girard Ave", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 172.0, "POI_CBG": 421010143002.0, "Median Dwell Time": 191.0, "Total Spend": 16027.0, "Total Transactions": 1153.0, "Total Customers": 506.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 19.63 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "Name": "Best In Town Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7971 Castor Ave", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 50.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 21.0, "Total Spend": 1661.0, "Total Transactions": 74.0, "Total Customers": 57.0, "Median Spend per Transaction": 20.2, "Median Spend per Customer": 28.83 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-qj9", "Name": "Evergreen Young's Market", "Category": "Specialty Food Stores", "Address": "7500 Verree Rd", "LATITUDE": 40.065852, "LONGITUDE": -75.083408, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 57.0, "POI_CBG": 421010339001.0, "Median Dwell Time": 3.0, "Total Spend": 12222.0, "Total Transactions": 72.0, "Total Customers": 67.0, "Median Spend per Transaction": 130.0, "Median Spend per Customer": 162.5 }, "geometry": { "type": "Point", "coordinates": [ -75.083408, 40.065852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pjf-tjv", "Name": "Chestnut Hill Farmers' Market", "Category": "Specialty Food Stores", "Address": "7673 Germantown Ave", "LATITUDE": 40.067974, "LONGITUDE": -75.196803, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010257002.0, "Median Dwell Time": 26.0, "Total Spend": 93.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196803, 40.067974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "Name": "Philly Tacos", "Category": "Restaurants and Other Eating Places", "Address": "2011 Reed St", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010031001.0, "Median Dwell Time": null, "Total Spend": 8055.0, "Total Transactions": 346.0, "Total Customers": 329.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "Name": "Romeo Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1608 W Passyunk Ave", "LATITUDE": 39.924602, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 153.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 9.0, "Total Spend": 1147.0, "Total Transactions": 62.0, "Total Customers": 57.0, "Median Spend per Transaction": 15.65, "Median Spend per Customer": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.924602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "Name": "Paisas Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4263 Frankford Ave", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2021, "Total Visits": 2038.0, "Total Visitors": 1363.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 2.0, "Total Spend": 255.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 13.69, "Median Spend per Customer": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-zvf", "Name": "Emmy Squared Pizza Queen Village", "Category": "Restaurants and Other Eating Places", "Address": "632 S 5th St", "LATITUDE": 39.941047, "LONGITUDE": -75.151101, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 317.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 24.0, "Total Spend": 3401.0, "Total Transactions": 55.0, "Total Customers": 48.0, "Median Spend per Transaction": 49.96, "Median Spend per Customer": 59.84 }, "geometry": { "type": "Point", "coordinates": [ -75.151101, 39.941047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "Name": "Philly's Famous Italian Ices", "Category": "Restaurants and Other Eating Places", "Address": "1950 E Lehigh Ave", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 31.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 11.0, "Total Spend": 780.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfx-tsq", "Name": "Riverside Cycles", "Category": "Other Motor Vehicle Dealers", "Address": "360 Domino Ln", "LATITUDE": 40.041642, "LONGITUDE": -75.237869, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 36.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 519.0, "Total Spend": 1666.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237869, 40.041642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-tn5", "Name": "Koto Sushi", "Category": "Restaurants and Other Eating Places", "Address": "719 Sansom St", "LATITUDE": 39.948858, "LONGITUDE": -75.153256, "DATE_RANGE_START": 2021, "Total Visits": 778.0, "Total Visitors": 663.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 8.0, "Total Spend": 801.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.153256, 39.948858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfw-g6k", "Name": "Apollo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3542 Conrad St", "LATITUDE": 40.012812, "LONGITUDE": -75.190541, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010207003.0, "Median Dwell Time": 3.0, "Total Spend": 1595.0, "Total Transactions": 64.0, "Total Customers": 41.0, "Median Spend per Transaction": 19.05, "Median Spend per Customer": 30.12 }, "geometry": { "type": "Point", "coordinates": [ -75.190541, 40.012812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "Name": "Real Food Eatery", "Category": "Restaurants and Other Eating Places", "Address": "207 S 16th St", "LATITUDE": 39.949409, "LONGITUDE": -75.167315, "DATE_RANGE_START": 2021, "Total Visits": 415.0, "Total Visitors": 286.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 98.0, "Total Spend": 877.0, "Total Transactions": 69.0, "Total Customers": 62.0, "Median Spend per Transaction": 13.87, "Median Spend per Customer": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.167315, 39.949409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "Name": "Cry Baby Pasta", "Category": "Restaurants and Other Eating Places", "Address": "627 S 3rd St", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2021, "Total Visits": 613.0, "Total Visitors": 456.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 49.0, "Total Spend": 5600.0, "Total Transactions": 62.0, "Total Customers": 60.0, "Median Spend per Transaction": 89.66, "Median Spend per Customer": 84.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "3901 Chestnut St", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 95.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 7.0, "Total Spend": 3913.0, "Total Transactions": 205.0, "Total Customers": 155.0, "Median Spend per Transaction": 13.54, "Median Spend per Customer": 16.44 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pm8-pgk", "Name": "Kasumi Sushi", "Category": "Restaurants and Other Eating Places", "Address": "2201 Penrose Ave Ste 3", "LATITUDE": 39.910232, "LONGITUDE": -75.186866, "DATE_RANGE_START": 2021, "Total Visits": 1019.0, "Total Visitors": 625.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 4.0, "Total Spend": 3347.0, "Total Transactions": 110.0, "Total Customers": 100.0, "Median Spend per Transaction": 27.97, "Median Spend per Customer": 31.06 }, "geometry": { "type": "Point", "coordinates": [ -75.186866, 39.910232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7w-59f", "Name": "Espresso Cafe & Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "7814 Castor Ave", "LATITUDE": 40.058604, "LONGITUDE": -75.059473, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 48.0, "POI_CBG": 421010336002.0, "Median Dwell Time": 31.0, "Total Spend": 368.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059473, 40.058604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-7nq", "Name": "Yards brewing", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8500 Essington Ave Terminal A", "LATITUDE": 39.876036, "LONGITUDE": -75.242976, "DATE_RANGE_START": 2021, "Total Visits": 232048.0, "Total Visitors": 147833.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 57.0, "Total Spend": 1747.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 42.8, "Median Spend per Customer": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242976, 39.876036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7nq", "Name": "Woody's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "202 S 13th St", "LATITUDE": 39.948953, "LONGITUDE": -75.162366, "DATE_RANGE_START": 2021, "Total Visits": 1668.0, "Total Visitors": 1167.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 59.0, "Total Spend": 145967.0, "Total Transactions": 5057.0, "Total Customers": 2747.0, "Median Spend per Transaction": 23.25, "Median Spend per Customer": 38.13 }, "geometry": { "type": "Point", "coordinates": [ -75.162366, 39.948953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmf-389", "Name": "Ferguson", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "1821 Washington Ave", "LATITUDE": 39.939235, "LONGITUDE": -75.174446, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 117.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 5.0, "Total Spend": 4981.0, "Total Transactions": 29.0, "Total Customers": 17.0, "Median Spend per Transaction": 15.97, "Median Spend per Customer": 40.96 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.939235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgj-cqz", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St Ste 5", "LATITUDE": 39.977801, "LONGITUDE": -75.158494, "DATE_RANGE_START": 2021, "Total Visits": 2532.0, "Total Visitors": 1845.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 57.0, "Total Spend": 1347.0, "Total Transactions": 95.0, "Total Customers": 81.0, "Median Spend per Transaction": 10.49, "Median Spend per Customer": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.158494, 39.977801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6137 Frankford Ave", "LATITUDE": 40.027117, "LONGITUDE": -75.0631, "DATE_RANGE_START": 2021, "Total Visits": 589.0, "Total Visitors": 468.0, "POI_CBG": 421010319001.0, "Median Dwell Time": 5.0, "Total Spend": 35251.0, "Total Transactions": 511.0, "Total Customers": 399.0, "Median Spend per Transaction": 32.34, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.0631, 40.027117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@63s-dw4-rzf", "Name": "Gachi Sushi and Noodle", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895158, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 243.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 16.42 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.895158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-s89", "Name": "Tequilas Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1602 Locust St", "LATITUDE": 39.948519, "LONGITUDE": -75.168054, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 153.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 2.0, "Total Spend": 3134.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 56.37, "Median Spend per Customer": 140.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168054, 39.948519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992304, "LONGITUDE": -75.099808, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 115.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 12.0, "Total Spend": 3266.0, "Total Transactions": 181.0, "Total Customers": 115.0, "Median Spend per Transaction": 12.9, "Median Spend per Customer": 22.76 }, "geometry": { "type": "Point", "coordinates": [ -75.099808, 39.992304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "551 Franklin Mills Cir", "LATITUDE": 40.089385, "LONGITUDE": -74.964383, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 260.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 9867.0, "Total Transactions": 1110.0, "Total Customers": 473.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 8.02 }, "geometry": { "type": "Point", "coordinates": [ -74.964383, 40.089385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2201 South St", "LATITUDE": 39.945401, "LONGITUDE": -75.178709, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 107.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 6.0, "Total Spend": 12351.0, "Total Transactions": 885.0, "Total Customers": 597.0, "Median Spend per Transaction": 5.73, "Median Spend per Customer": 7.67 }, "geometry": { "type": "Point", "coordinates": [ -75.178709, 39.945401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mzf", "Name": "Passero's Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "1601 John F Kennedy Blvd", "LATITUDE": 39.954206, "LONGITUDE": -75.167446, "DATE_RANGE_START": 2021, "Total Visits": 3017.0, "Total Visitors": 2002.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 160.0, "Total Spend": 256.0, "Total Transactions": 60.0, "Total Customers": 26.0, "Median Spend per Transaction": 3.85, "Median Spend per Customer": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167446, 39.954206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "3899 Aramingo Ave", "LATITUDE": 39.996676, "LONGITUDE": -75.089544, "DATE_RANGE_START": 2021, "Total Visits": 967.0, "Total Visitors": 730.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 14.0, "Total Spend": 32014.0, "Total Transactions": 649.0, "Total Customers": 516.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 26.19 }, "geometry": { "type": "Point", "coordinates": [ -75.089544, 39.996676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "3901 M St # 29", "LATITUDE": 40.006521, "LONGITUDE": -75.100325, "DATE_RANGE_START": 2021, "Total Visits": 900.0, "Total Visitors": 592.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 9.0, "Total Spend": 875.0, "Total Transactions": 29.0, "Total Customers": 19.0, "Median Spend per Transaction": 19.21, "Median Spend per Customer": 30.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100325, 40.006521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.067745, "LONGITUDE": -75.198, "DATE_RANGE_START": 2021, "Total Visits": 322.0, "Total Visitors": 270.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 4.0, "Total Spend": 16534.0, "Total Transactions": 768.0, "Total Customers": 554.0, "Median Spend per Transaction": 14.37, "Median Spend per Customer": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.198, 40.067745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7941 Bustleton Av & Loney St", "LATITUDE": 40.058164, "LONGITUDE": -75.052414, "DATE_RANGE_START": 2021, "Total Visits": 1029.0, "Total Visitors": 685.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 3.0, "Total Spend": 4772.0, "Total Transactions": 169.0, "Total Customers": 62.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 49.83 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.058164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8445 Frankford Ave Ste C", "LATITUDE": 40.043781, "LONGITUDE": -75.017638, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 205.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 8.0, "Total Spend": 627.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 35.18 }, "geometry": { "type": "Point", "coordinates": [ -75.017638, 40.043781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p9q-yn5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1619 Grant Ave", "LATITUDE": 40.088065, "LONGITUDE": -75.037683, "DATE_RANGE_START": 2021, "Total Visits": 549.0, "Total Visitors": 468.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 114.0, "Total Spend": 765.0, "Total Transactions": 45.0, "Total Customers": 38.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.037683, 40.088065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1300 S Columbus Blvd", "LATITUDE": 39.930175, "LONGITUDE": -75.144763, "DATE_RANGE_START": 2021, "Total Visits": 1795.0, "Total Visitors": 1516.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 8.0, "Total Spend": 25862.0, "Total Transactions": 697.0, "Total Customers": 597.0, "Median Spend per Transaction": 25.96, "Median Spend per Customer": 29.54 }, "geometry": { "type": "Point", "coordinates": [ -75.144763, 39.930175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm4-g8v", "Name": "V Marks the Shop", "Category": "Clothing Stores", "Address": "1515 McKean St", "LATITUDE": 39.926043, "LONGITUDE": -75.171734, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 1.0, "Total Spend": 2727.0, "Total Transactions": 79.0, "Total Customers": 50.0, "Median Spend per Transaction": 33.95, "Median Spend per Customer": 55.95 }, "geometry": { "type": "Point", "coordinates": [ -75.171734, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Frankford Ave", "LATITUDE": 40.065, "LONGITUDE": -74.981932, "DATE_RANGE_START": 2021, "Total Visits": 5592.0, "Total Visitors": 3043.0, "POI_CBG": 421010362033.0, "Median Dwell Time": 4.0, "Total Spend": 1736.0, "Total Transactions": 43.0, "Total Customers": 31.0, "Median Spend per Transaction": 31.42, "Median Spend per Customer": 32.55 }, "geometry": { "type": "Point", "coordinates": [ -74.981932, 40.065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-p8d-8y9", "Name": "T & J Food Market", "Category": "Grocery Stores", "Address": "1900 Church St", "LATITUDE": 40.00933, "LONGITUDE": -75.084903, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 24.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 21.0, "Total Spend": 667.0, "Total Transactions": 86.0, "Total Customers": 29.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 14.55 }, "geometry": { "type": "Point", "coordinates": [ -75.084903, 40.00933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm4-k2k", "Name": "Cellular 2000 LLC", "Category": "Electronics and Appliance Stores", "Address": "649 Washington Ave", "LATITUDE": 39.93569, "LONGITUDE": -75.155206, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 1.0, "Total Spend": 184.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 30.9, "Median Spend per Customer": 30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155206, 39.93569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "Name": "Philadelphia Bikesmith", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1822 Spring Garden St", "LATITUDE": 39.962935, "LONGITUDE": -75.169326, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 7.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 272.0, "Total Spend": 11653.0, "Total Transactions": 141.0, "Total Customers": 100.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 50.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169326, 39.962935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "Name": "Castor Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6038 Castor Ave", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 24.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 421.0, "Total Spend": 3315.0, "Total Transactions": 162.0, "Total Customers": 112.0, "Median Spend per Transaction": 18.37, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-2hq", "Name": "O Sole Mio", "Category": "Restaurants and Other Eating Places", "Address": "824 S 8th St", "LATITUDE": 39.937827, "LONGITUDE": -75.148269, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010017001.0, "Median Dwell Time": null, "Total Spend": 2246.0, "Total Transactions": 67.0, "Total Customers": 38.0, "Median Spend per Transaction": 33.62, "Median Spend per Customer": 37.27 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 39.937827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phy-h3q", "Name": "Latin Fashion", "Category": "Clothing Stores", "Address": "4648 N 5th St", "LATITUDE": 40.022384, "LONGITUDE": -75.133854, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 4.0, "Total Spend": 3270.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 167.5, "Median Spend per Customer": 167.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133854, 40.022384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-ph8-rx5", "Name": "Royal Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "7610 City Ave", "LATITUDE": 39.97851, "LONGITUDE": -75.271319, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 48.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 59.0, "Total Spend": 510.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.271319, 39.97851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvx-2kz", "Name": "Rising Sun", "Category": "Restaurants and Other Eating Places", "Address": "4800 Westminster Ave", "LATITUDE": 39.968785, "LONGITUDE": -75.217282, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010104003.0, "Median Dwell Time": 2.0, "Total Spend": 80948.0, "Total Transactions": 1274.0, "Total Customers": 807.0, "Median Spend per Transaction": 21.91, "Median Spend per Customer": 26.44 }, "geometry": { "type": "Point", "coordinates": [ -75.217282, 39.968785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8m-x5z", "Name": "Goody's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6237 Frankford Ave", "LATITUDE": 40.027482, "LONGITUDE": -75.061166, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010320005.0, "Median Dwell Time": null, "Total Spend": 1993.0, "Total Transactions": 76.0, "Total Customers": 57.0, "Median Spend per Transaction": 24.2, "Median Spend per Customer": 25.2 }, "geometry": { "type": "Point", "coordinates": [ -75.061166, 40.027482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg9-bp9", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "2454 Turner St", "LATITUDE": 39.979916, "LONGITUDE": -75.175802, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010149001.0, "Median Dwell Time": 12.0, "Total Spend": 92.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175802, 39.979916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgf-52k", "Name": "Chengdu Famous Food", "Category": "Restaurants and Other Eating Places", "Address": "3635 Lancaster Ave", "LATITUDE": 39.959245, "LONGITUDE": -75.194556, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010091002.0, "Median Dwell Time": null, "Total Spend": 96.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.21, "Median Spend per Customer": 20.21 }, "geometry": { "type": "Point", "coordinates": [ -75.194556, 39.959245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg9-cyv", "Name": "Mercado Food Market", "Category": "Grocery Stores", "Address": "1859 N Van Pelt St", "LATITUDE": 39.983185, "LONGITUDE": -75.169254, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 29.0, "POI_CBG": 421010152004.0, "Median Dwell Time": 2.0, "Total Spend": 252.0, "Total Transactions": 26.0, "Total Customers": 17.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169254, 39.983185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8h-hyv", "Name": "Athenian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6824 Torresdale Ave", "LATITUDE": 40.025796, "LONGITUDE": -75.044061, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 21.0, "Total Spend": 165.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 21.95 }, "geometry": { "type": "Point", "coordinates": [ -75.044061, 40.025796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnx-9s5", "Name": "Interstate Drafthouse", "Category": "Restaurants and Other Eating Places", "Address": "1235 E Palmer St", "LATITUDE": 39.971824, "LONGITUDE": -75.128675, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 45.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 5.0, "Total Spend": 717.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 150.11, "Median Spend per Customer": 150.11 }, "geometry": { "type": "Point", "coordinates": [ -75.128675, 39.971824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "11500 Roosevelt Blvd", "LATITUDE": 40.104996, "LONGITUDE": -75.007889, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 55.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 321.0, "Total Spend": 57083.0, "Total Transactions": 26.0, "Total Customers": 10.0, "Median Spend per Transaction": 95.47, "Median Spend per Customer": 912.59 }, "geometry": { "type": "Point", "coordinates": [ -75.007889, 40.104996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cdv", "Name": "Beer Park", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1410 W Hunting Park Ave", "LATITUDE": 40.016575, "LONGITUDE": -75.150196, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 79.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 5.0, "Total Spend": 165.0, "Total Transactions": 17.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 34.47 }, "geometry": { "type": "Point", "coordinates": [ -75.150196, 40.016575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-wc5", "Name": "Renzis Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "6300 Battersby St", "LATITUDE": 40.029921, "LONGITUDE": -75.062595, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 79.0, "POI_CBG": 421010316004.0, "Median Dwell Time": 678.0, "Total Spend": 139.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 9.17 }, "geometry": { "type": "Point", "coordinates": [ -75.062595, 40.029921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22x@628-pmf-n3q", "Name": "Uptown Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953433, "LONGITUDE": -75.165886, "DATE_RANGE_START": 2021, "Total Visits": 1909.0, "Total Visitors": 1301.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 91.0, "Total Spend": 23767.0, "Total Transactions": 606.0, "Total Customers": 468.0, "Median Spend per Transaction": 28.1, "Median Spend per Customer": 39.36 }, "geometry": { "type": "Point", "coordinates": [ -75.165886, 39.953433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-vpv", "Name": "Urban Saloon", "Category": "Restaurants and Other Eating Places", "Address": "2120 Fairmount Ave", "LATITUDE": 39.967182, "LONGITUDE": -75.172904, "DATE_RANGE_START": 2021, "Total Visits": 690.0, "Total Visitors": 537.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 51.0, "Total Spend": 58109.0, "Total Transactions": 1031.0, "Total Customers": 842.0, "Median Spend per Transaction": 41.61, "Median Spend per Customer": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172904, 39.967182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm3-vzz", "Name": "LaScala's Birra", "Category": "Restaurants and Other Eating Places", "Address": "1700 E Passyunk Ave", "LATITUDE": 39.928592, "LONGITUDE": -75.165123, "DATE_RANGE_START": 2021, "Total Visits": 506.0, "Total Visitors": 408.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 4.0, "Total Spend": 15853.0, "Total Transactions": 270.0, "Total Customers": 220.0, "Median Spend per Transaction": 47.52, "Median Spend per Customer": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165123, 39.928592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5020 City Ave", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 360.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 6.0, "Total Spend": 24145.0, "Total Transactions": 2131.0, "Total Customers": 1508.0, "Median Spend per Transaction": 9.7, "Median Spend per Customer": 11.82 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj9-zmk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5612 N 5th St", "LATITUDE": 40.036925, "LONGITUDE": -75.130756, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 115.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 6.0, "Total Spend": 4158.0, "Total Transactions": 272.0, "Total Customers": 186.0, "Median Spend per Transaction": 11.08, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130756, 40.036925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1100 S 10th St", "LATITUDE": 39.936469, "LONGITUDE": -75.160327, "DATE_RANGE_START": 2021, "Total Visits": 2153.0, "Total Visitors": 1594.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 5.0, "Total Spend": 2085.0, "Total Transactions": 55.0, "Total Customers": 53.0, "Median Spend per Transaction": 35.56, "Median Spend per Customer": 34.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160327, 39.936469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "Name": "Little Fish", "Category": "Restaurants and Other Eating Places", "Address": "746 S 6th St", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010018001.0, "Median Dwell Time": null, "Total Spend": 472.0, "Total Transactions": 43.0, "Total Customers": 17.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "Name": "LKQ", "Category": "Miscellaneous Durable Goods Merchant Wholesalers", "Address": "3350 S 61st St", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2021, "Total Visits": 272.0, "Total Visitors": 117.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 413.0, "Total Spend": 8747.0, "Total Transactions": 38.0, "Total Customers": 36.0, "Median Spend per Transaction": 132.3, "Median Spend per Customer": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-2ff", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6200 Stenton Ave", "LATITUDE": 40.057857, "LONGITUDE": -75.164182, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 129.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 12.0, "Total Spend": 6434.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 200.0, "Median Spend per Customer": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164182, 40.057857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj2-mp9", "Name": "The Apple Pharmacy", "Category": "Health and Personal Care Stores", "Address": "Erie Avenue At Front St", "LATITUDE": 40.005425, "LONGITUDE": -75.098798, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 1.0, "Total Spend": 152.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 6.95, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098798, 40.005425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pjf-kvf", "Name": "Hideaway Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "8232 Germantown Ave", "LATITUDE": 40.076825, "LONGITUDE": -75.208128, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 1.0, "Total Spend": 2005.0, "Total Transactions": 45.0, "Total Customers": 41.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.208128, 40.076825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-t7q", "Name": "Vetri Cucina", "Category": "Restaurants and Other Eating Places", "Address": "1312 Spruce St", "LATITUDE": 39.946687, "LONGITUDE": -75.163203, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010011014.0, "Median Dwell Time": 121.0, "Total Spend": 32596.0, "Total Transactions": 74.0, "Total Customers": 62.0, "Median Spend per Transaction": 469.98, "Median Spend per Customer": 529.59 }, "geometry": { "type": "Point", "coordinates": [ -75.163203, 39.946687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-k75", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "9916 Roosevelt Blvd", "LATITUDE": 40.094473, "LONGITUDE": -75.018339, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 1.0, "Total Spend": 1177.0, "Total Transactions": 76.0, "Total Customers": 55.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 16.09 }, "geometry": { "type": "Point", "coordinates": [ -75.018339, 40.094473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-k75", "Name": "Lendy's Food Market", "Category": "Grocery Stores", "Address": "617 W York St", "LATITUDE": 39.988027, "LONGITUDE": -75.143801, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010164004.0, "Median Dwell Time": 1.0, "Total Spend": 408.0, "Total Transactions": 67.0, "Total Customers": 41.0, "Median Spend per Transaction": 2.99, "Median Spend per Customer": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.143801, 39.988027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg2-4qf", "Name": "Phu Fha Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "355 Lyceum Ave", "LATITUDE": 40.029908, "LONGITUDE": -75.218798, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010213004.0, "Median Dwell Time": null, "Total Spend": 436.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 27.92, "Median Spend per Customer": 27.92 }, "geometry": { "type": "Point", "coordinates": [ -75.218798, 40.029908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-rtv", "Name": "Takka Grill and Pizza", "Category": "Restaurants and Other Eating Places", "Address": "324 W Chelten Ave", "LATITUDE": 40.029529, "LONGITUDE": -75.180791, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 22.0, "Total Spend": 3380.0, "Total Transactions": 148.0, "Total Customers": 100.0, "Median Spend per Transaction": 20.17, "Median Spend per Customer": 25.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180791, 40.029529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1730 Washington Ave", "LATITUDE": 39.938146, "LONGITUDE": -75.172721, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 110.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 5.0, "Total Spend": 15138.0, "Total Transactions": 408.0, "Total Customers": 332.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.172721, 39.938146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgg-p5f", "Name": "Mimmo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3000 W Allegheny Ave", "LATITUDE": 40.004649, "LONGITUDE": -75.17882, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010171004.0, "Median Dwell Time": 1.0, "Total Spend": 2489.0, "Total Transactions": 122.0, "Total Customers": 72.0, "Median Spend per Transaction": 14.39, "Median Spend per Customer": 27.14 }, "geometry": { "type": "Point", "coordinates": [ -75.17882, 40.004649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wkz", "Name": "Xenos Candy 'N' Gifts", "Category": "Specialty Food Stores", "Address": "231 Chestnut St", "LATITUDE": 39.948713, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2021, "Total Visits": 3150.0, "Total Visitors": 2341.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 45.0, "Total Spend": 869.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 41.13, "Median Spend per Customer": 41.13 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.948713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "4201 N Broad St", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2021, "Total Visits": 511.0, "Total Visitors": 391.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 5.0, "Total Spend": 3968.0, "Total Transactions": 274.0, "Total Customers": 146.0, "Median Spend per Transaction": 7.2, "Median Spend per Customer": 19.13 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6515 Castor Ave", "LATITUDE": 40.040851, "LONGITUDE": -75.075239, "DATE_RANGE_START": 2021, "Total Visits": 484.0, "Total Visitors": 344.0, "POI_CBG": 421010313004.0, "Median Dwell Time": 7.0, "Total Spend": 6474.0, "Total Transactions": 337.0, "Total Customers": 260.0, "Median Spend per Transaction": 12.45, "Median Spend per Customer": 18.42 }, "geometry": { "type": "Point", "coordinates": [ -75.075239, 40.040851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "321 E Allegheny Ave # 25", "LATITUDE": 39.998177, "LONGITUDE": -75.124544, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 153.0, "POI_CBG": 421010177025.0, "Median Dwell Time": 11.0, "Total Spend": 78.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 2.7, "Median Spend per Customer": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.124544, 39.998177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "Name": "Mac Mart Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "104 S 18th St", "LATITUDE": 39.951438, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 203.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 6232.0, "Total Transactions": 341.0, "Total Customers": 308.0, "Median Spend per Transaction": 14.47, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-p8n-92k", "Name": "Crab Du Jour Bustleton", "Category": "Restaurants and Other Eating Places", "Address": "6234 Bustleton Ave", "LATITUDE": 40.034004, "LONGITUDE": -75.071898, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 234.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 49.0, "Total Spend": 8134.0, "Total Transactions": 141.0, "Total Customers": 134.0, "Median Spend per Transaction": 47.48, "Median Spend per Customer": 48.03 }, "geometry": { "type": "Point", "coordinates": [ -75.071898, 40.034004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-5vf", "Name": "Mario Brothers Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2224 Cottman Ave", "LATITUDE": 40.048464, "LONGITUDE": -75.061807, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 103.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 104.0, "Total Spend": 170.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 14.11, "Median Spend per Customer": 14.11 }, "geometry": { "type": "Point", "coordinates": [ -75.061807, 40.048464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-85f", "Name": "North Catholic Book Store", "Category": "Clothing Stores", "Address": "2539 E Clearfield St", "LATITUDE": 39.984977, "LONGITUDE": -75.106527, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 100.0, "POI_CBG": 421010180021.0, "Median Dwell Time": 3.0, "Total Spend": 2492.0, "Total Transactions": 267.0, "Total Customers": 243.0, "Median Spend per Transaction": 6.36, "Median Spend per Customer": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.106527, 39.984977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pp5-5zz", "Name": "Izakaya By Yanaga", "Category": "Restaurants and Other Eating Places", "Address": "1832 Frankford Ave", "LATITUDE": 39.977775, "LONGITUDE": -75.131392, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 172.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 81.0, "Total Spend": 48.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131392, 39.977775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "3551 Aramingo Ave", "LATITUDE": 39.992457, "LONGITUDE": -75.097895, "DATE_RANGE_START": 2021, "Total Visits": 413.0, "Total Visitors": 327.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 4.0, "Total Spend": 11974.0, "Total Transactions": 814.0, "Total Customers": 578.0, "Median Spend per Transaction": 12.47, "Median Spend per Customer": 15.29 }, "geometry": { "type": "Point", "coordinates": [ -75.097895, 39.992457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pj4-vcq", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "400 W Allegheny Ave", "LATITUDE": 39.998705, "LONGITUDE": -75.13519, "DATE_RANGE_START": 2021, "Total Visits": 685.0, "Total Visitors": 430.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 14.0, "Total Spend": 64.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 5.94, "Median Spend per Customer": 5.94 }, "geometry": { "type": "Point", "coordinates": [ -75.13519, 39.998705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "29 Snyder Ave", "LATITUDE": 39.923331, "LONGITUDE": -75.144837, "DATE_RANGE_START": 2021, "Total Visits": 1709.0, "Total Visitors": 1119.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 13.0, "Total Spend": 53.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 3.19, "Median Spend per Customer": 3.19 }, "geometry": { "type": "Point", "coordinates": [ -75.144837, 39.923331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2901 Abbottsford Ave", "LATITUDE": 40.015127, "LONGITUDE": -75.178214, "DATE_RANGE_START": 2021, "Total Visits": 480.0, "Total Visitors": 334.0, "POI_CBG": 421010206001.0, "Median Dwell Time": 3.0, "Total Spend": 4140.0, "Total Transactions": 675.0, "Total Customers": 351.0, "Median Spend per Transaction": 4.94, "Median Spend per Customer": 6.94 }, "geometry": { "type": "Point", "coordinates": [ -75.178214, 40.015127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-whq", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7422 Bustleton Ave", "LATITUDE": 40.051934, "LONGITUDE": -75.058717, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 401.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 7.0, "Total Spend": 4859.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 151.11, "Median Spend per Customer": 240.97 }, "geometry": { "type": "Point", "coordinates": [ -75.058717, 40.051934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "Name": "Sprouts Farmers Market", "Category": "Grocery Stores", "Address": "1000 S Broad St", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2021, "Total Visits": 2064.0, "Total Visitors": 1200.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 21.0, "Total Spend": 511797.0, "Total Transactions": 12730.0, "Total Customers": 6537.0, "Median Spend per Transaction": 26.55, "Median Spend per Customer": 45.17 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-g8v", "Name": "Khaamar Baari Supermarket", "Category": "Grocery Stores", "Address": "6919 Castor Ave", "LATITUDE": 40.046044, "LONGITUDE": -75.070773, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 74.0, "POI_CBG": 421010314015.0, "Median Dwell Time": 8.0, "Total Spend": 1175.0, "Total Transactions": 38.0, "Total Customers": 26.0, "Median Spend per Transaction": 14.61, "Median Spend per Customer": 25.97 }, "geometry": { "type": "Point", "coordinates": [ -75.070773, 40.046044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-435", "Name": "State Liquor Stores", "Category": "Beer, Wine, and Liquor Stores", "Address": "2401 Vare Ave", "LATITUDE": 39.920248, "LONGITUDE": -75.188384, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 356.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 3.0, "Total Spend": 401.0, "Total Transactions": 19.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 84.08 }, "geometry": { "type": "Point", "coordinates": [ -75.188384, 39.920248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6401 Oxford Ave Ste 11", "LATITUDE": 40.045558, "LONGITUDE": -75.087582, "DATE_RANGE_START": 2021, "Total Visits": 654.0, "Total Visitors": 535.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 5.0, "Total Spend": 26716.0, "Total Transactions": 1227.0, "Total Customers": 613.0, "Median Spend per Transaction": 18.27, "Median Spend per Customer": 21.99 }, "geometry": { "type": "Point", "coordinates": [ -75.087582, 40.045558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "Name": "Gap Factory Store", "Category": "Clothing Stores", "Address": "2123 25 Cottman Avenue Space #40 & 41", "LATITUDE": 40.050036, "LONGITUDE": -75.06262, "DATE_RANGE_START": 2021, "Total Visits": 458.0, "Total Visitors": 387.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 9.0, "Total Spend": 2522.0, "Total Transactions": 36.0, "Total Customers": 26.0, "Median Spend per Transaction": 62.97, "Median Spend per Customer": 84.97 }, "geometry": { "type": "Point", "coordinates": [ -75.06262, 40.050036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-hdv", "Name": "The Book Corner", "Category": "Book Stores and News Dealers", "Address": "311 N 20th St", "LATITUDE": 39.960171, "LONGITUDE": -75.171295, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 153.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 1.0, "Total Spend": 1448.0, "Total Transactions": 112.0, "Total Customers": 103.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.171295, 39.960171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "Name": "Neighborhood Books", "Category": "Book Stores and News Dealers", "Address": "1906 South St", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 181.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 62.0, "Total Spend": 675.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 16.66, "Median Spend per Customer": 16.66 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmf-zj9", "Name": "Arch Brunch", "Category": "Restaurants and Other Eating Places", "Address": "2200 Arch St Ste 103", "LATITUDE": 39.955759, "LONGITUDE": -75.17646, "DATE_RANGE_START": 2021, "Total Visits": 1828.0, "Total Visitors": 1184.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 249.0, "Total Spend": 198.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 29.0, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17646, 39.955759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-66k", "Name": "Oloroso", "Category": "Restaurants and Other Eating Places", "Address": "1121 Walnut St", "LATITUDE": 39.948946, "LONGITUDE": -75.159995, "DATE_RANGE_START": 2021, "Total Visits": 2876.0, "Total Visitors": 1916.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 102.0, "Total Spend": 13466.0, "Total Transactions": 115.0, "Total Customers": 105.0, "Median Spend per Transaction": 101.83, "Median Spend per Customer": 101.31 }, "geometry": { "type": "Point", "coordinates": [ -75.159995, 39.948946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-789", "Name": "Booker's Restaurant and Bar", "Category": "Restaurants and Other Eating Places", "Address": "5021 Baltimore Ave", "LATITUDE": 39.947999, "LONGITUDE": -75.22426, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 95.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 69.0, "Total Spend": 3873.0, "Total Transactions": 62.0, "Total Customers": 57.0, "Median Spend per Transaction": 50.37, "Median Spend per Customer": 51.23 }, "geometry": { "type": "Point", "coordinates": [ -75.22426, 39.947999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "Name": "Davids Mai Lai Wah", "Category": "Restaurants and Other Eating Places", "Address": "1001 Race St", "LATITUDE": 39.955591, "LONGITUDE": -75.155966, "DATE_RANGE_START": 2021, "Total Visits": 663.0, "Total Visitors": 525.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 6.0, "Total Spend": 8747.0, "Total Transactions": 241.0, "Total Customers": 215.0, "Median Spend per Transaction": 34.45, "Median Spend per Customer": 37.65 }, "geometry": { "type": "Point", "coordinates": [ -75.155966, 39.955591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8901 Franford Ave", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2021, "Total Visits": 482.0, "Total Visitors": 413.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 3.0, "Total Spend": 32317.0, "Total Transactions": 3141.0, "Total Customers": 1945.0, "Median Spend per Transaction": 8.61, "Median Spend per Customer": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.029727, "LONGITUDE": -75.09938, "DATE_RANGE_START": 2021, "Total Visits": 401.0, "Total Visitors": 315.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 16.0, "Total Spend": 9453.0, "Total Transactions": 594.0, "Total Customers": 484.0, "Median Spend per Transaction": 13.07, "Median Spend per Customer": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.09938, 40.029727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6p9", "Name": "DelFrisco's Double Eagle Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "1428 Chestnut St # 1432", "LATITUDE": 39.950881, "LONGITUDE": -75.165456, "DATE_RANGE_START": 2021, "Total Visits": 3131.0, "Total Visitors": 2456.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 113.0, "Total Spend": 38430.0, "Total Transactions": 258.0, "Total Customers": 234.0, "Median Spend per Transaction": 106.21, "Median Spend per Customer": 111.44 }, "geometry": { "type": "Point", "coordinates": [ -75.165456, 39.950881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-68v", "Name": "Strangelove's", "Category": "Restaurants and Other Eating Places", "Address": "216 S 11th St", "LATITUDE": 39.948065, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2021, "Total Visits": 1745.0, "Total Visitors": 1444.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 11.0, "Total Spend": 1839.0, "Total Transactions": 38.0, "Total Customers": 26.0, "Median Spend per Transaction": 36.4, "Median Spend per Customer": 67.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.948065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8f-9xq", "Name": "Leandro's Pizza House", "Category": "Restaurants and Other Eating Places", "Address": "4501 Frankford Ave", "LATITUDE": 40.013813, "LONGITUDE": -75.08597, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 79.0, "POI_CBG": 421010294003.0, "Median Dwell Time": 6.0, "Total Spend": 363.0, "Total Transactions": 19.0, "Total Customers": 12.0, "Median Spend per Transaction": 20.48, "Median Spend per Customer": 21.84 }, "geometry": { "type": "Point", "coordinates": [ -75.08597, 40.013813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "Name": "Venu", "Category": "Restaurants and Other Eating Places", "Address": "13th & Packer Ave", "LATITUDE": 39.911404, "LONGITUDE": -75.170366, "DATE_RANGE_START": 2021, "Total Visits": 2823.0, "Total Visitors": 2356.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 1.0, "Total Spend": 27954.0, "Total Transactions": 866.0, "Total Customers": 547.0, "Median Spend per Transaction": 20.74, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170366, 39.911404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgf-3bk", "Name": "Old Nelson Food", "Category": "Restaurants and Other Eating Places", "Address": "3600 Market St", "LATITUDE": 39.956093, "LONGITUDE": -75.194408, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 98.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 4.0, "Total Spend": 4506.0, "Total Transactions": 327.0, "Total Customers": 296.0, "Median Spend per Transaction": 10.92, "Median Spend per Customer": 12.03 }, "geometry": { "type": "Point", "coordinates": [ -75.194408, 39.956093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7221 Torresdale Ave", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2021, "Total Visits": 482.0, "Total Visitors": 332.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 2.0, "Total Spend": 8272.0, "Total Transactions": 1189.0, "Total Customers": 551.0, "Median Spend per Transaction": 6.29, "Median Spend per Customer": 10.62 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "Name": "Rustica", "Category": "Restaurants and Other Eating Places", "Address": "903 N 2nd St", "LATITUDE": 39.964423, "LONGITUDE": -75.140069, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 150.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 173.0, "Total Spend": 4027.0, "Total Transactions": 203.0, "Total Customers": 181.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 16.93 }, "geometry": { "type": "Point", "coordinates": [ -75.140069, 39.964423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "Name": "El Coqui Panaderia", "Category": "Restaurants and Other Eating Places", "Address": "3528 I St", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 165.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 6.0, "Total Spend": 12588.0, "Total Transactions": 563.0, "Total Customers": 370.0, "Median Spend per Transaction": 17.13, "Median Spend per Customer": 24.44 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "Name": "Seorabol Korean Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5734 Old Second St", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2021, "Total Visits": 473.0, "Total Visitors": 251.0, "POI_CBG": 421010274023.0, "Median Dwell Time": 87.0, "Total Spend": 4377.0, "Total Transactions": 74.0, "Total Customers": 60.0, "Median Spend per Transaction": 47.8, "Median Spend per Customer": 73.74 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dwf-wkz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "3000 Island Ave", "LATITUDE": 39.902609, "LONGITUDE": -75.240437, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 289.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 4.0, "Total Spend": 103.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 21.53, "Median Spend per Customer": 21.53 }, "geometry": { "type": "Point", "coordinates": [ -75.240437, 39.902609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "716 Adams Ave", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 129.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 8.0, "Total Spend": 622.0, "Total Transactions": 43.0, "Total Customers": 36.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 12.45 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992769, "LONGITUDE": -75.100237, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 143.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 62.0, "Total Spend": 11049.0, "Total Transactions": 396.0, "Total Customers": 322.0, "Median Spend per Transaction": 25.06, "Median Spend per Customer": 28.19 }, "geometry": { "type": "Point", "coordinates": [ -75.100237, 39.992769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "8515 Germantown Ave", "LATITUDE": 40.076409, "LONGITUDE": -75.206721, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 115.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 5.0, "Total Spend": 5666.0, "Total Transactions": 711.0, "Total Customers": 492.0, "Median Spend per Transaction": 6.87, "Median Spend per Customer": 7.85 }, "geometry": { "type": "Point", "coordinates": [ -75.206721, 40.076409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-9cq", "Name": "Federal Donuts West", "Category": "Restaurants and Other Eating Places", "Address": "3428 Sansom St", "LATITUDE": 39.953537, "LONGITUDE": -75.193139, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 42.0, "Total Spend": 1908.0, "Total Transactions": 115.0, "Total Customers": 105.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.193139, 39.953537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmc-tqf", "Name": "Walmart Vision Center", "Category": "Health and Personal Care Stores", "Address": "1675 S Columbus Blvd", "LATITUDE": 39.92638, "LONGITUDE": -75.141584, "DATE_RANGE_START": 2021, "Total Visits": 7360.0, "Total Visitors": 5222.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 31.0, "Total Spend": 1248.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 33.46, "Median Spend per Customer": 261.49 }, "geometry": { "type": "Point", "coordinates": [ -75.141584, 39.92638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-3dv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "810 S Broad St", "LATITUDE": 39.940442, "LONGITUDE": -75.166876, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 239.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 3.0, "Total Spend": 22611.0, "Total Transactions": 1310.0, "Total Customers": 802.0, "Median Spend per Transaction": 12.31, "Median Spend per Customer": 18.05 }, "geometry": { "type": "Point", "coordinates": [ -75.166876, 39.940442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6363 Frankford Ave", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2021, "Total Visits": 480.0, "Total Visitors": 356.0, "POI_CBG": 421010320003.0, "Median Dwell Time": 5.0, "Total Spend": 14413.0, "Total Transactions": 652.0, "Total Customers": 477.0, "Median Spend per Transaction": 15.49, "Median Spend per Customer": 20.3 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7770 Dungan Rd", "LATITUDE": 40.065575, "LONGITUDE": -75.072105, "DATE_RANGE_START": 2021, "Total Visits": 344.0, "Total Visitors": 203.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 13.0, "Total Spend": 1433.0, "Total Transactions": 36.0, "Total Customers": 29.0, "Median Spend per Transaction": 32.24, "Median Spend per Customer": 29.3 }, "geometry": { "type": "Point", "coordinates": [ -75.072105, 40.065575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "201 W Lehigh Ave", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2021, "Total Visits": 845.0, "Total Visitors": 518.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 4.0, "Total Spend": 7186.0, "Total Transactions": 327.0, "Total Customers": 227.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-87q", "Name": "Rittenhouse Needlepoint", "Category": "Other Miscellaneous Store Retailers", "Address": "1216 Arch St Ste 2A", "LATITUDE": 39.953747, "LONGITUDE": -75.160369, "DATE_RANGE_START": 2021, "Total Visits": 6236.0, "Total Visitors": 4265.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 123.0, "Total Spend": 2037.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 52.83, "Median Spend per Customer": 52.83 }, "geometry": { "type": "Point", "coordinates": [ -75.160369, 39.953747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-92k", "Name": "Levi Strauss & Co.", "Category": "Clothing Stores", "Address": "901 Market St Unit 2070", "LATITUDE": 39.95164, "LONGITUDE": -75.155746, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 5707.0, "Total Transactions": 81.0, "Total Customers": 69.0, "Median Spend per Transaction": 69.5, "Median Spend per Customer": 74.25 }, "geometry": { "type": "Point", "coordinates": [ -75.155746, 39.95164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5814 Woodland Ave", "LATITUDE": 39.931302, "LONGITUDE": -75.225599, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 189.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 6.0, "Total Spend": 336.0, "Total Transactions": 41.0, "Total Customers": 36.0, "Median Spend per Transaction": 6.05, "Median Spend per Customer": 7.83 }, "geometry": { "type": "Point", "coordinates": [ -75.225599, 39.931302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-jd9", "Name": "Club Quarters Philadelphia", "Category": "Traveler Accommodation", "Address": "1628 Chestnut St", "LATITUDE": 39.951302, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2021, "Total Visits": 372.0, "Total Visitors": 277.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 241.0, "Total Spend": 3939.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 229.36, "Median Spend per Customer": 229.36 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.951302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "Name": "The Cheesecake Factory", "Category": "Restaurants and Other Eating Places", "Address": "1430 Walnut St", "LATITUDE": 39.949381, "LONGITUDE": -75.165741, "DATE_RANGE_START": 2021, "Total Visits": 1270.0, "Total Visitors": 1062.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 36.0, "Total Spend": 54342.0, "Total Transactions": 957.0, "Total Customers": 857.0, "Median Spend per Transaction": 47.31, "Median Spend per Customer": 52.51 }, "geometry": { "type": "Point", "coordinates": [ -75.165741, 39.949381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "9220 Frankford Ave", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2021, "Total Visits": 644.0, "Total Visitors": 520.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 2.0, "Total Spend": 25.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 5.32, "Median Spend per Customer": 5.32 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "4670 E Roosevelt Blvd", "LATITUDE": 40.029034, "LONGITUDE": -75.099595, "DATE_RANGE_START": 2021, "Total Visits": 1162.0, "Total Visitors": 821.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 3.0, "Total Spend": 77826.0, "Total Transactions": 4840.0, "Total Customers": 2981.0, "Median Spend per Transaction": 13.45, "Median Spend per Customer": 19.91 }, "geometry": { "type": "Point", "coordinates": [ -75.099595, 40.029034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Spring Garden St", "LATITUDE": 39.962408, "LONGITUDE": -75.163643, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 117.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 89.0, "Total Spend": 9220.0, "Total Transactions": 1480.0, "Total Customers": 685.0, "Median Spend per Transaction": 4.81, "Median Spend per Customer": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.163643, 39.962408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-ndv", "Name": "Kensington Quarters", "Category": "Restaurants and Other Eating Places", "Address": "1310 Frankford Ave", "LATITUDE": 39.97058, "LONGITUDE": -75.134713, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 122.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 61.0, "Total Spend": 15646.0, "Total Transactions": 155.0, "Total Customers": 138.0, "Median Spend per Transaction": 83.04, "Median Spend per Customer": 87.33 }, "geometry": { "type": "Point", "coordinates": [ -75.134713, 39.97058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-223@628-phy-rc5", "Name": "Tierra Colombiana Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4535 N 5th St", "LATITUDE": 40.020572, "LONGITUDE": -75.133736, "DATE_RANGE_START": 2021, "Total Visits": 482.0, "Total Visitors": 379.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 63.0, "Total Spend": 956.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 172.68, "Median Spend per Customer": 172.68 }, "geometry": { "type": "Point", "coordinates": [ -75.133736, 40.020572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-rzf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2300 E Butler St", "LATITUDE": 39.996049, "LONGITUDE": -75.092849, "DATE_RANGE_START": 2021, "Total Visits": 890.0, "Total Visitors": 494.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 6.0, "Total Spend": 2430.0, "Total Transactions": 358.0, "Total Customers": 189.0, "Median Spend per Transaction": 5.66, "Median Spend per Customer": 7.88 }, "geometry": { "type": "Point", "coordinates": [ -75.092849, 39.996049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "634 Market St", "LATITUDE": 39.950691, "LONGITUDE": -75.151871, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 136.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 3.0, "Total Spend": 5415.0, "Total Transactions": 902.0, "Total Customers": 566.0, "Median Spend per Transaction": 4.82, "Median Spend per Customer": 6.31 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.950691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1602 S Delaware Ave # 04", "LATITUDE": 39.926446, "LONGITUDE": -75.145402, "DATE_RANGE_START": 2021, "Total Visits": 814.0, "Total Visitors": 558.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 2.0, "Total Spend": 93231.0, "Total Transactions": 8153.0, "Total Customers": 4227.0, "Median Spend per Transaction": 9.8, "Median Spend per Customer": 12.84 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvw-mrk", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "30 S 52nd St", "LATITUDE": 39.958965, "LONGITUDE": -75.2254, "DATE_RANGE_START": 2021, "Total Visits": 692.0, "Total Visitors": 482.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 33.0, "Total Spend": 663.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 120.0, "Median Spend per Customer": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2254, 39.958965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "Name": "Finish Line", "Category": "Shoe Stores", "Address": "1449 Franklin Mills Cir", "LATITUDE": 40.086808, "LONGITUDE": -74.961767, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 107.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 3215.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 88.0, "Median Spend per Customer": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961767, 40.086808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm9-yn5", "Name": "Bluebond Guitars", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "511 S 4th St", "LATITUDE": 39.94235, "LONGITUDE": -75.148924, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 246.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 5.0, "Total Spend": 2027.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 82.08, "Median Spend per Customer": 82.08 }, "geometry": { "type": "Point", "coordinates": [ -75.148924, 39.94235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4390 Richmond St", "LATITUDE": 39.997473, "LONGITUDE": -75.074081, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 200.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 4.0, "Total Spend": 13529.0, "Total Transactions": 613.0, "Total Customers": 282.0, "Median Spend per Transaction": 15.8, "Median Spend per Customer": 28.49 }, "geometry": { "type": "Point", "coordinates": [ -75.074081, 39.997473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7265 Castor Ave", "LATITUDE": 40.050926, "LONGITUDE": -75.066019, "DATE_RANGE_START": 2021, "Total Visits": 1525.0, "Total Visitors": 1067.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 4.0, "Total Spend": 865.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 26.02 }, "geometry": { "type": "Point", "coordinates": [ -75.066019, 40.050926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-p7b-qs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "9200 Ashton Rd", "LATITUDE": 40.063609, "LONGITUDE": -75.021861, "DATE_RANGE_START": 2021, "Total Visits": 1821.0, "Total Visitors": 914.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 1745.0, "Total Transactions": 81.0, "Total Customers": 36.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 46.37 }, "geometry": { "type": "Point", "coordinates": [ -75.021861, 40.063609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6201 Ridge Ave", "LATITUDE": 40.035916, "LONGITUDE": -75.217328, "DATE_RANGE_START": 2021, "Total Visits": 1652.0, "Total Visitors": 1005.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 5.0, "Total Spend": 1928.0, "Total Transactions": 72.0, "Total Customers": 50.0, "Median Spend per Transaction": 29.03, "Median Spend per Customer": 32.11 }, "geometry": { "type": "Point", "coordinates": [ -75.217328, 40.035916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8y9", "Name": "Windsor", "Category": "Clothing Stores", "Address": "901 Market St Spc C200", "LATITUDE": 39.951878, "LONGITUDE": -75.155445, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 1681.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 62.7, "Median Spend per Customer": 62.7 }, "geometry": { "type": "Point", "coordinates": [ -75.155445, 39.951878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-zmk", "Name": "Touch of Gold", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "640 South St Ste A", "LATITUDE": 39.941921, "LONGITUDE": -75.153483, "DATE_RANGE_START": 2021, "Total Visits": 852.0, "Total Visitors": 766.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 13.0, "Total Spend": 7859.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 1269.0, "Median Spend per Customer": 1269.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153483, 39.941921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-zs5", "Name": "Lady Love", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "510 South St", "LATITUDE": 39.941785, "LONGITUDE": -75.151232, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 229.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 3.0, "Total Spend": 7090.0, "Total Transactions": 74.0, "Total Customers": 74.0, "Median Spend per Transaction": 59.38, "Median Spend per Customer": 59.38 }, "geometry": { "type": "Point", "coordinates": [ -75.151232, 39.941785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmf-qfz", "Name": "Entree Byob", "Category": "Restaurants and Other Eating Places", "Address": "1608 South St", "LATITUDE": 39.943935, "LONGITUDE": -75.169156, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010014003.0, "Median Dwell Time": null, "Total Spend": 5650.0, "Total Transactions": 53.0, "Total Customers": 50.0, "Median Spend per Transaction": 105.09, "Median Spend per Customer": 112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169156, 39.943935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1100 W Girard Ave", "LATITUDE": 39.970561, "LONGITUDE": -75.155313, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 251.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 5.0, "Total Spend": 862.0, "Total Transactions": 62.0, "Total Customers": 48.0, "Median Spend per Transaction": 9.9, "Median Spend per Customer": 10.52 }, "geometry": { "type": "Point", "coordinates": [ -75.155313, 39.970561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9171 Roosevelt Blvd", "LATITUDE": 40.076084, "LONGITUDE": -75.031448, "DATE_RANGE_START": 2021, "Total Visits": 1265.0, "Total Visitors": 1115.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 12.0, "Total Spend": 19869.0, "Total Transactions": 1019.0, "Total Customers": 874.0, "Median Spend per Transaction": 15.56, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031448, 40.076084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp5-ct9", "Name": "Crispy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1858 E Allegheny Ave", "LATITUDE": 39.995185, "LONGITUDE": -75.112579, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010178001.0, "Median Dwell Time": null, "Total Spend": 1757.0, "Total Transactions": 62.0, "Total Customers": 45.0, "Median Spend per Transaction": 27.81, "Median Spend per Customer": 30.66 }, "geometry": { "type": "Point", "coordinates": [ -75.112579, 39.995185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zvf", "Name": "M2O Burgers & Salads", "Category": "Restaurants and Other Eating Places", "Address": "701 S 5th St", "LATITUDE": 39.940282, "LONGITUDE": -75.150883, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010016001.0, "Median Dwell Time": null, "Total Spend": 260.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.38, "Median Spend per Customer": 16.38 }, "geometry": { "type": "Point", "coordinates": [ -75.150883, 39.940282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "Name": "Lebel Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5601 W Girard Ave", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010112003.0, "Median Dwell Time": 1.0, "Total Spend": 3965.0, "Total Transactions": 153.0, "Total Customers": 119.0, "Median Spend per Transaction": 18.19, "Median Spend per Customer": 23.58 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-tsq", "Name": "Pennsport Beer Boutique", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "242 Wharton St", "LATITUDE": 39.931601, "LONGITUDE": -75.149607, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 41.0, "Total Spend": 2099.0, "Total Transactions": 79.0, "Total Customers": 72.0, "Median Spend per Transaction": 26.4, "Median Spend per Customer": 28.63 }, "geometry": { "type": "Point", "coordinates": [ -75.149607, 39.931601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfz-bx5", "Name": "Manayunk Tavern", "Category": "Restaurants and Other Eating Places", "Address": "4247 Main St", "LATITUDE": 40.024589, "LONGITUDE": -75.221155, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 55.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 20.0, "Total Spend": 8718.0, "Total Transactions": 241.0, "Total Customers": 181.0, "Median Spend per Transaction": 29.56, "Median Spend per Customer": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221155, 40.024589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "Name": "Brickbat Books", "Category": "Used Merchandise Stores", "Address": "709 S 4th St", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010016001.0, "Median Dwell Time": null, "Total Spend": 2090.0, "Total Transactions": 72.0, "Total Customers": 64.0, "Median Spend per Transaction": 21.55, "Median Spend per Customer": 34.45 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-gtv", "Name": "Greenstreet Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1101 Spruce St", "LATITUDE": 39.946471, "LONGITUDE": -75.159628, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010009022.0, "Median Dwell Time": null, "Total Spend": 356.0, "Total Transactions": 48.0, "Total Customers": 38.0, "Median Spend per Transaction": 4.38, "Median Spend per Customer": 7.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159628, 39.946471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "Name": "Primal Nutrition", "Category": "Health and Personal Care Stores", "Address": "8114 Roosevelt Blvd", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 24.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 1.0, "Total Spend": 4991.0, "Total Transactions": 48.0, "Total Customers": 26.0, "Median Spend per Transaction": 78.52, "Median Spend per Customer": 151.32 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-td9", "Name": "NY Bagel & Deli Shop", "Category": "Restaurants and Other Eating Places", "Address": "1120 Buttonwood St", "LATITUDE": 39.96081, "LONGITUDE": -75.157392, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 24.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 141.0, "Total Spend": 5331.0, "Total Transactions": 458.0, "Total Customers": 232.0, "Median Spend per Transaction": 9.77, "Median Spend per Customer": 14.71 }, "geometry": { "type": "Point", "coordinates": [ -75.157392, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjf-zvf", "Name": "McNally's Tavern Chestnut Hill", "Category": "Restaurants and Other Eating Places", "Address": "8634 Germantown Ave", "LATITUDE": 40.077129, "LONGITUDE": -75.208866, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 29.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 289.0, "Total Spend": 4039.0, "Total Transactions": 67.0, "Total Customers": 64.0, "Median Spend per Transaction": 32.22, "Median Spend per Customer": 40.58 }, "geometry": { "type": "Point", "coordinates": [ -75.208866, 40.077129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-f2k", "Name": "Stina Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1705 Snyder Ave", "LATITUDE": 39.925216, "LONGITUDE": -75.174721, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 38.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 5.0, "Total Spend": 512.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 58.36, "Median Spend per Customer": 58.36 }, "geometry": { "type": "Point", "coordinates": [ -75.174721, 39.925216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "Name": "Sawatdee Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "534 S 15th St", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 1.0, "Total Spend": 639.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 36.86, "Median Spend per Customer": 36.86 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "35 E Chelten Ave", "LATITUDE": 40.037244, "LONGITUDE": -75.17465, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 215.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 4.0, "Total Spend": 13838.0, "Total Transactions": 282.0, "Total Customers": 241.0, "Median Spend per Transaction": 28.49, "Median Spend per Customer": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.17465, 40.037244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "Name": "Tires Plus", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "800 Franklin Mills Cir", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 160.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 269.0, "Total Spend": 15431.0, "Total Transactions": 64.0, "Total Customers": 57.0, "Median Spend per Transaction": 90.11, "Median Spend per Customer": 119.02 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-php-6tv", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "2385 Cheltenham Avenue", "LATITUDE": 40.075237, "LONGITUDE": -75.156957, "DATE_RANGE_START": 2021, "Total Visits": 10303.0, "Total Visitors": 5575.0, "POI_CBG": 420912025001.0, "Median Dwell Time": 24.0, "Total Spend": 146.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 9.37, "Median Spend per Customer": 11.57 }, "geometry": { "type": "Point", "coordinates": [ -75.156957, 40.075237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-75z", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "1500 Market St", "LATITUDE": 39.952267, "LONGITUDE": -75.166533, "DATE_RANGE_START": 2021, "Total Visits": 415.0, "Total Visitors": 234.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 276.0, "Total Spend": 2866.0, "Total Transactions": 162.0, "Total Customers": 146.0, "Median Spend per Transaction": 13.98, "Median Spend per Customer": 15.48 }, "geometry": { "type": "Point", "coordinates": [ -75.166533, 39.952267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.91267, "LONGITUDE": -75.154671, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 100.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 6.0, "Total Spend": 1003.0, "Total Transactions": 41.0, "Total Customers": 38.0, "Median Spend per Transaction": 24.82, "Median Spend per Customer": 28.93 }, "geometry": { "type": "Point", "coordinates": [ -75.154671, 39.91267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "Name": "Double Knot", "Category": "Health and Personal Care Stores", "Address": "120 S 13th St", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 243.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 72.0, "Total Spend": 26084.0, "Total Transactions": 196.0, "Total Customers": 172.0, "Median Spend per Transaction": 125.35, "Median Spend per Customer": 126.86 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2044 Red Lion Rd.", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2021, "Total Visits": 5988.0, "Total Visitors": 3948.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 24.0, "Total Spend": 39962.0, "Total Transactions": 487.0, "Total Customers": 327.0, "Median Spend per Transaction": 60.02, "Median Spend per Customer": 90.68 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1900 Chestnut St", "LATITUDE": 39.951643, "LONGITUDE": -75.17217, "DATE_RANGE_START": 2021, "Total Visits": 1630.0, "Total Visitors": 1126.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 14.0, "Total Spend": 249556.0, "Total Transactions": 7535.0, "Total Customers": 4866.0, "Median Spend per Transaction": 21.52, "Median Spend per Customer": 32.67 }, "geometry": { "type": "Point", "coordinates": [ -75.17217, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-t7q", "Name": "Craftsman Row Saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "112 S 8th St", "LATITUDE": 39.949101, "LONGITUDE": -75.154283, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 193.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 41.0, "Total Spend": 6437.0, "Total Transactions": 134.0, "Total Customers": 129.0, "Median Spend per Transaction": 40.32, "Median Spend per Customer": 42.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154283, 39.949101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p72-5s5", "Name": "Three Monkeys Cafe", "Category": "Restaurants and Other Eating Places", "Address": "9645 James St", "LATITUDE": 40.053948, "LONGITUDE": -74.983889, "DATE_RANGE_START": 2021, "Total Visits": 630.0, "Total Visitors": 489.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 49.0, "Total Spend": 216.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 45.31, "Median Spend per Customer": 45.31 }, "geometry": { "type": "Point", "coordinates": [ -74.983889, 40.053948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "Name": "Asian Chopsticks", "Category": "Restaurants and Other Eating Places", "Address": "4044 Woodhaven Rd", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 91.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 7.0, "Total Spend": 1670.0, "Total Transactions": 62.0, "Total Customers": 45.0, "Median Spend per Transaction": 13.66, "Median Spend per Customer": 28.73 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p72-9vf", "Name": "Maggie's Waterfront Cafe", "Category": "Restaurants and Other Eating Places", "Address": "9242 N Delaware Ave", "LATITUDE": 40.043666, "LONGITUDE": -74.989672, "DATE_RANGE_START": 2021, "Total Visits": 1050.0, "Total Visitors": 869.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 63.0, "Total Spend": 702.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 61.84, "Median Spend per Customer": 61.84 }, "geometry": { "type": "Point", "coordinates": [ -74.989672, 40.043666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-vs5", "Name": "Ys Market", "Category": "Restaurants and Other Eating Places", "Address": "3468 Kensington Ave", "LATITUDE": 40.000195, "LONGITUDE": -75.106917, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 208.0, "POI_CBG": 421010192004.0, "Median Dwell Time": 1.0, "Total Spend": 600.0, "Total Transactions": 41.0, "Total Customers": 21.0, "Median Spend per Transaction": 12.45, "Median Spend per Customer": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.106917, 40.000195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pg9-vpv", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "2100 Fairmount Ave", "LATITUDE": 39.967164, "LONGITUDE": -75.172278, "DATE_RANGE_START": 2021, "Total Visits": 690.0, "Total Visitors": 537.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 51.0, "Total Spend": 3773.0, "Total Transactions": 334.0, "Total Customers": 272.0, "Median Spend per Transaction": 8.73, "Median Spend per Customer": 9.33 }, "geometry": { "type": "Point", "coordinates": [ -75.172278, 39.967164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm9-y9z", "Name": "Lil' Pop Shop", "Category": "Restaurants and Other Eating Places", "Address": "534 S 4th St", "LATITUDE": 39.94178, "LONGITUDE": -75.149245, "DATE_RANGE_START": 2021, "Total Visits": 1165.0, "Total Visitors": 1112.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 8.0, "Total Spend": 2517.0, "Total Transactions": 234.0, "Total Customers": 212.0, "Median Spend per Transaction": 8.99, "Median Spend per Customer": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.94178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1820 Torresdale Ave", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 220.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 2.0, "Total Spend": 4943.0, "Total Transactions": 578.0, "Total Customers": 298.0, "Median Spend per Transaction": 6.93, "Median Spend per Customer": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-9mk", "Name": "Bravo Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3748 Germantown Ave", "LATITUDE": 40.010647, "LONGITUDE": -75.151533, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010201021.0, "Median Dwell Time": null, "Total Spend": 4824.0, "Total Transactions": 222.0, "Total Customers": 153.0, "Median Spend per Transaction": 17.77, "Median Spend per Customer": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.151533, 40.010647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pnw-x89", "Name": "Pretty Girls Cook", "Category": "Restaurants and Other Eating Places", "Address": "1016 N Marshall St", "LATITUDE": 39.97001, "LONGITUDE": -75.147605, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 29.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 105.0, "Total Spend": 6504.0, "Total Transactions": 172.0, "Total Customers": 141.0, "Median Spend per Transaction": 21.48, "Median Spend per Customer": 28.97 }, "geometry": { "type": "Point", "coordinates": [ -75.147605, 39.97001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-jgk", "Name": "The Foto Club", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3743 Frankford Ave", "LATITUDE": 40.000866, "LONGITUDE": -75.097152, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 62.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 51.0, "Total Spend": 2429.0, "Total Transactions": 91.0, "Total Customers": 55.0, "Median Spend per Transaction": 16.91, "Median Spend per Customer": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.097152, 40.000866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvx-3dv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "801 N 48th St", "LATITUDE": 39.967245, "LONGITUDE": -75.215949, "DATE_RANGE_START": 2021, "Total Visits": 377.0, "Total Visitors": 236.0, "POI_CBG": 421010105001.0, "Median Dwell Time": 10.0, "Total Spend": 401.0, "Total Transactions": 31.0, "Total Customers": 21.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.215949, 39.967245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bzf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "649 Foulkrod St", "LATITUDE": 40.035481, "LONGITUDE": -75.10725, "DATE_RANGE_START": 2021, "Total Visits": 351.0, "Total Visitors": 248.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 31.0, "Total Spend": 697.0, "Total Transactions": 38.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.03, "Median Spend per Customer": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.10725, 40.035481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pzn-zj9", "Name": "La Casa Di Lucias", "Category": "Special Food Services", "Address": "14425 Bustleton Ave", "LATITUDE": 40.132324, "LONGITUDE": -75.010926, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 124.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 49.0, "Total Spend": 604.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 36.4, "Median Spend per Customer": 41.75 }, "geometry": { "type": "Point", "coordinates": [ -75.010926, 40.132324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "Name": "Tradesman's", "Category": "Restaurants and Other Eating Places", "Address": "1322 Chestnut St", "LATITUDE": 39.950487, "LONGITUDE": -75.162708, "DATE_RANGE_START": 2021, "Total Visits": 558.0, "Total Visitors": 451.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 47.0, "Total Spend": 120039.0, "Total Transactions": 3143.0, "Total Customers": 2038.0, "Median Spend per Transaction": 28.4, "Median Spend per Customer": 42.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162708, 39.950487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-k75", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9745 Roosevelt Blvd # 5130", "LATITUDE": 40.08259, "LONGITUDE": -75.022988, "DATE_RANGE_START": 2021, "Total Visits": 12146.0, "Total Visitors": 8024.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 22.0, "Total Spend": 3555.0, "Total Transactions": 427.0, "Total Customers": 193.0, "Median Spend per Transaction": 7.01, "Median Spend per Customer": 13.75 }, "geometry": { "type": "Point", "coordinates": [ -75.022988, 40.08259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "Name": "Khyber Pass Pub", "Category": "Restaurants and Other Eating Places", "Address": "56 S 2nd St", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 258.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 46.0, "Total Spend": 32402.0, "Total Transactions": 580.0, "Total Customers": 518.0, "Median Spend per Transaction": 48.0, "Median Spend per Customer": 51.09 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-y7q", "Name": "Friendship BBQ", "Category": "Restaurants and Other Eating Places", "Address": "927 Arch St", "LATITUDE": 39.953597, "LONGITUDE": -75.155857, "DATE_RANGE_START": 2021, "Total Visits": 4516.0, "Total Visitors": 3222.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 51.0, "Total Spend": 4935.0, "Total Transactions": 53.0, "Total Customers": 45.0, "Median Spend per Transaction": 88.44, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155857, 39.953597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-t5f", "Name": "Pho Viet", "Category": "Restaurants and Other Eating Places", "Address": "5520 Whitaker Ave", "LATITUDE": 40.035248, "LONGITUDE": -75.100976, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 155.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 9.0, "Total Spend": 12456.0, "Total Transactions": 337.0, "Total Customers": 294.0, "Median Spend per Transaction": 30.28, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100976, 40.035248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-mzf", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "38 S 52nd St # 42", "LATITUDE": 39.958726, "LONGITUDE": -75.2256, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 126.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 182.0, "Total Spend": 568.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 33.0, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2256, 39.958726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-yd9", "Name": "Kayuh Bicycles & Cafe", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1900 W Girard Ave", "LATITUDE": 39.973645, "LONGITUDE": -75.17798, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 91.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 515.0, "Total Spend": 123.0, "Total Transactions": 31.0, "Total Customers": 7.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17798, 39.973645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2109 N Broad St", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2021, "Total Visits": 785.0, "Total Visitors": 613.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 4.0, "Total Spend": 22835.0, "Total Transactions": 2029.0, "Total Customers": 1487.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "602 Carpenter Ln", "LATITUDE": 40.04622, "LONGITUDE": -75.195937, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010236003.0, "Median Dwell Time": 2.0, "Total Spend": 3909.0, "Total Transactions": 379.0, "Total Customers": 227.0, "Median Spend per Transaction": 7.67, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.195937, 40.04622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2500 Wharton St", "LATITUDE": 39.935654, "LONGITUDE": -75.186436, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 45.0, "POI_CBG": 421010032004.0, "Median Dwell Time": 223.0, "Total Spend": 258.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 18.12, "Median Spend per Customer": 20.12 }, "geometry": { "type": "Point", "coordinates": [ -75.186436, 39.935654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "Name": "J & P Seafood", "Category": "Restaurants and Other Eating Places", "Address": "4820 Spruce St", "LATITUDE": 39.953491, "LONGITUDE": -75.218951, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 45.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 3.0, "Total Spend": 7585.0, "Total Transactions": 174.0, "Total Customers": 146.0, "Median Spend per Transaction": 27.88, "Median Spend per Customer": 34.52 }, "geometry": { "type": "Point", "coordinates": [ -75.218951, 39.953491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "Name": "Smiley's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4251 Main St", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 48.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 1.0, "Total Spend": 1389.0, "Total Transactions": 84.0, "Total Customers": 64.0, "Median Spend per Transaction": 15.95, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "Name": "Sunglass Hut", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 258", "LATITUDE": 39.952036, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 69.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 6027.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 239.76, "Median Spend per Customer": 239.76 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-mff", "Name": "Con Murphy's", "Category": "Restaurants and Other Eating Places", "Address": "1700 Benjamin Franklin Pkwy", "LATITUDE": 39.955696, "LONGITUDE": -75.167996, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 162.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 568.0, "Total Spend": 901.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167996, 39.955696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-5xq", "Name": "Liberty Choice", "Category": "Restaurants and Other Eating Places", "Address": "1939 N Front St", "LATITUDE": 39.979685, "LONGITUDE": -75.132953, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 81.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 4.0, "Total Spend": 13553.0, "Total Transactions": 864.0, "Total Customers": 418.0, "Median Spend per Transaction": 12.98, "Median Spend per Customer": 18.96 }, "geometry": { "type": "Point", "coordinates": [ -75.132953, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-wx5", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7720 Lindbergh Blvd", "LATITUDE": 39.903669, "LONGITUDE": -75.238891, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 148.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 9.0, "Total Spend": 4450.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 328.21, "Median Spend per Customer": 475.97 }, "geometry": { "type": "Point", "coordinates": [ -75.238891, 39.903669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-sbk", "Name": "Spruce Market", "Category": "Grocery Stores", "Address": "1523 Spruce St", "LATITUDE": 39.947568, "LONGITUDE": -75.167428, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 146.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 18.0, "Total Spend": 27750.0, "Total Transactions": 1181.0, "Total Customers": 606.0, "Median Spend per Transaction": 17.17, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167428, 39.947568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-ckf", "Name": "Tran Beer Dist", "Category": "Beer, Wine, and Liquor Stores", "Address": "1616 W Passyunk Ave", "LATITUDE": 39.924541, "LONGITUDE": -75.173565, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 153.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 9.0, "Total Spend": 1826.0, "Total Transactions": 79.0, "Total Customers": 62.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.173565, 39.924541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3300 10 South Broad Street Philadelphia", "LATITUDE": 39.909224, "LONGITUDE": -75.174004, "DATE_RANGE_START": 2021, "Total Visits": 625.0, "Total Visitors": 480.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 6.0, "Total Spend": 5621.0, "Total Transactions": 298.0, "Total Customers": 210.0, "Median Spend per Transaction": 14.29, "Median Spend per Customer": 19.34 }, "geometry": { "type": "Point", "coordinates": [ -75.174004, 39.909224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p82-4jv", "Name": "Queen Nails Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "6129 Colgate St", "LATITUDE": 40.046418, "LONGITUDE": -75.098417, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 177.0, "POI_CBG": 421010305011.0, "Median Dwell Time": 20.0, "Total Spend": 1304.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 126.9, "Median Spend per Customer": 273.1 }, "geometry": { "type": "Point", "coordinates": [ -75.098417, 40.046418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 214", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 99.0, "Total Spend": 1986.0, "Total Transactions": 72.0, "Total Customers": 64.0, "Median Spend per Transaction": 16.78, "Median Spend per Customer": 24.21 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1300 N Broad St", "LATITUDE": 39.973475, "LONGITUDE": -75.159323, "DATE_RANGE_START": 2021, "Total Visits": 771.0, "Total Visitors": 575.0, "POI_CBG": 421010140003.0, "Median Dwell Time": 4.0, "Total Spend": 2980.0, "Total Transactions": 100.0, "Total Customers": 88.0, "Median Spend per Transaction": 28.96, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159323, 39.973475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-m6k", "Name": "Brave New Worlds", "Category": "Book Stores and News Dealers", "Address": "55 N 2nd St", "LATITUDE": 39.951384, "LONGITUDE": -75.143026, "DATE_RANGE_START": 2021, "Total Visits": 1508.0, "Total Visitors": 1055.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 223.0, "Total Spend": 49.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.143026, 39.951384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7616 City Line Avenue Route 1 & 76th St", "LATITUDE": 39.978487, "LONGITUDE": -75.271145, "DATE_RANGE_START": 2021, "Total Visits": 857.0, "Total Visitors": 652.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 20.0, "Total Spend": 57487.0, "Total Transactions": 1177.0, "Total Customers": 1019.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 35.78 }, "geometry": { "type": "Point", "coordinates": [ -75.271145, 39.978487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "Name": "Platinum", "Category": "Clothing Stores", "Address": "526 South St", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 112.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 48.0, "Total Spend": 11444.0, "Total Transactions": 57.0, "Total Customers": 48.0, "Median Spend per Transaction": 127.0, "Median Spend per Customer": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "Name": "J&J Super Market", "Category": "Grocery Stores", "Address": "1839 S 7th St", "LATITUDE": 39.925365, "LONGITUDE": -75.157449, "DATE_RANGE_START": 2021, "Total Visits": 212.0, "Total Visitors": 124.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 3.0, "Total Spend": 5459.0, "Total Transactions": 432.0, "Total Customers": 229.0, "Median Spend per Transaction": 11.26, "Median Spend per Customer": 13.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157449, 39.925365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1215 Filbert St", "LATITUDE": 39.953206, "LONGITUDE": -75.160514, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 344.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 2330.0, "Total Transactions": 189.0, "Total Customers": 95.0, "Median Spend per Transaction": 9.04, "Median Spend per Customer": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.160514, 39.953206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5214 Baltimore Ave # 30", "LATITUDE": 39.947336, "LONGITUDE": -75.228833, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 305.0, "POI_CBG": 421010073004.0, "Median Dwell Time": 5.0, "Total Spend": 22167.0, "Total Transactions": 1095.0, "Total Customers": 685.0, "Median Spend per Transaction": 14.39, "Median Spend per Customer": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.228833, 39.947336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7065 Lincoln Dr", "LATITUDE": 40.054006, "LONGITUDE": -75.193227, "DATE_RANGE_START": 2021, "Total Visits": 289.0, "Total Visitors": 224.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 5.0, "Total Spend": 10182.0, "Total Transactions": 518.0, "Total Customers": 360.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.193227, 40.054006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6865 Rising Sun Ave", "LATITUDE": 40.055372, "LONGITUDE": -75.089592, "DATE_RANGE_START": 2021, "Total Visits": 979.0, "Total Visitors": 606.0, "POI_CBG": 421010307002.0, "Median Dwell Time": 4.0, "Total Spend": 270.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 14.86, "Median Spend per Customer": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.089592, 40.055372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mx5", "Name": "Jos. A. Bank Clothiers", "Category": "Clothing Stores", "Address": "1650 Market St", "LATITUDE": 39.952606, "LONGITUDE": -75.168302, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 99.0, "Total Spend": 15801.0, "Total Transactions": 117.0, "Total Customers": 98.0, "Median Spend per Transaction": 87.0, "Median Spend per Customer": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168302, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "Name": "Golden Nugget Jewelers III", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "800 Chestnut St", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2021, "Total Visits": 1745.0, "Total Visitors": 1394.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 85224.0, "Total Transactions": 57.0, "Total Customers": 48.0, "Median Spend per Transaction": 1081.62, "Median Spend per Customer": 1194.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "Name": "Muslim Fashion", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "5210 Chestnut St", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2021, "Total Visits": 523.0, "Total Visitors": 375.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 6.0, "Total Spend": 1649.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 53.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "Name": "Liberty Time", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2021, "Total Visits": 3604.0, "Total Visitors": 2876.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 21.0, "Total Spend": 1613.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 23.22, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "Name": "Scrub Pro", "Category": "Clothing Stores", "Address": "817 Adams Ave # 819", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2021, "Total Visits": 2337.0, "Total Visitors": 1754.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 20.0, "Total Spend": 18202.0, "Total Transactions": 236.0, "Total Customers": 212.0, "Median Spend per Transaction": 55.97, "Median Spend per Customer": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26j-222@628-pgb-6x5", "Name": "The Black Taxi", "Category": "Restaurants and Other Eating Places", "Address": "745 N 25th St # 747", "LATITUDE": 39.968738, "LONGITUDE": -75.178186, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010136011.0, "Median Dwell Time": null, "Total Spend": 44226.0, "Total Transactions": 797.0, "Total Customers": 544.0, "Median Spend per Transaction": 42.49, "Median Spend per Customer": 49.81 }, "geometry": { "type": "Point", "coordinates": [ -75.178186, 39.968738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-qmk", "Name": "Yeeroh", "Category": "Restaurants and Other Eating Places", "Address": "1412 South St", "LATITUDE": 39.943614, "LONGITUDE": -75.166117, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 21.0, "Total Spend": 3178.0, "Total Transactions": 165.0, "Total Customers": 131.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 20.19 }, "geometry": { "type": "Point", "coordinates": [ -75.166117, 39.943614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg8-ks5", "Name": "SPOT Gourmet Burgers", "Category": "Restaurants and Other Eating Places", "Address": "2821 W Girard Ave", "LATITUDE": 39.974624, "LONGITUDE": -75.182611, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 34.0, "Total Spend": 353.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 23.17, "Median Spend per Customer": 30.59 }, "geometry": { "type": "Point", "coordinates": [ -75.182611, 39.974624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "Name": "Rapoport Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6934 Bustleton Ave", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 50.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 103.0, "Total Spend": 269.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 14.83, "Median Spend per Customer": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pjf-jvz", "Name": "Bahia Bowls Chestnut Hill", "Category": "Restaurants and Other Eating Places", "Address": "8136 Germantown Ave", "LATITUDE": 40.072819, "LONGITUDE": -75.202597, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 50.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 1.0, "Total Spend": 6420.0, "Total Transactions": 408.0, "Total Customers": 258.0, "Median Spend per Transaction": 12.04, "Median Spend per Customer": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.202597, 40.072819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "Name": "Palm Tree Market", "Category": "Grocery Stores", "Address": "4368 Cresson St", "LATITUDE": 40.026206, "LONGITUDE": -75.22393, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 53.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 519.0, "Total Spend": 5477.0, "Total Transactions": 341.0, "Total Customers": 267.0, "Median Spend per Transaction": 13.46, "Median Spend per Customer": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -75.22393, 40.026206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "Name": "Pitchers Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4326 Main St", "LATITUDE": 40.025059, "LONGITUDE": -75.223033, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 57.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 33.0, "Total Spend": 11680.0, "Total Transactions": 396.0, "Total Customers": 310.0, "Median Spend per Transaction": 22.8, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223033, 40.025059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "Name": "Penn Hardware", "Category": "Building Material and Supplies Dealers", "Address": "7404 Frankford Ave", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 81.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 2.0, "Total Spend": 1439.0, "Total Transactions": 53.0, "Total Customers": 45.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "Name": "Bloomsday Cafe", "Category": "Restaurants and Other Eating Places", "Address": "414 S 2nd St", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 160.0, "Total Spend": 5443.0, "Total Transactions": 60.0, "Total Customers": 41.0, "Median Spend per Transaction": 41.96, "Median Spend per Customer": 78.04 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pnw-mx5", "Name": "Stump", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "956 N 2nd St", "LATITUDE": 39.96557, "LONGITUDE": -75.14068, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 20.0, "Total Spend": 180.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 37.64, "Median Spend per Customer": 37.64 }, "geometry": { "type": "Point", "coordinates": [ -75.14068, 39.96557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmd-rx5", "Name": "Cotoletta Fitler Square", "Category": "Restaurants and Other Eating Places", "Address": "2227 Pine St", "LATITUDE": 39.947447, "LONGITUDE": -75.179191, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 49.0, "Total Spend": 518.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 108.49, "Median Spend per Customer": 108.49 }, "geometry": { "type": "Point", "coordinates": [ -75.179191, 39.947447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "Name": "Guzman Grocery", "Category": "Grocery Stores", "Address": "3100 E St", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 41.0, "POI_CBG": 421010177023.0, "Median Dwell Time": 1.0, "Total Spend": 306.0, "Total Transactions": 36.0, "Total Customers": 31.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-jjv", "Name": "Pelicana chicken", "Category": "Restaurants and Other Eating Places", "Address": "4002 Spruce St", "LATITUDE": 39.95156, "LONGITUDE": -75.203327, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 64.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 21.0, "Total Spend": 1350.0, "Total Transactions": 43.0, "Total Customers": 38.0, "Median Spend per Transaction": 20.4, "Median Spend per Customer": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.203327, 39.95156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-zj9", "Name": "Arch Gourmet", "Category": "Grocery Stores", "Address": "2200 Arch St", "LATITUDE": 39.955807, "LONGITUDE": -75.176416, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 9.0, "Total Spend": 375.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176416, 39.955807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.991664, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 1.0, "Total Spend": 728.0, "Total Transactions": 31.0, "Total Customers": 31.0, "Median Spend per Transaction": 21.24, "Median Spend per Customer": 21.24 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.991664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3900 N Broad St", "LATITUDE": 40.012783, "LONGITUDE": -75.150904, "DATE_RANGE_START": 2021, "Total Visits": 513.0, "Total Visitors": 432.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 8.0, "Total Spend": 26757.0, "Total Transactions": 365.0, "Total Customers": 305.0, "Median Spend per Transaction": 34.18, "Median Spend per Customer": 42.91 }, "geometry": { "type": "Point", "coordinates": [ -75.150904, 40.012783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25g-222@628-pm6-h89", "Name": "Tony's Market", "Category": "Grocery Stores", "Address": "153 W Porter St", "LATITUDE": 39.91706, "LONGITUDE": -75.150829, "DATE_RANGE_START": 2021, "Total Visits": 804.0, "Total Visitors": 177.0, "POI_CBG": 421010042021.0, "Median Dwell Time": 1252.0, "Total Spend": 255.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 21.74, "Median Spend per Customer": 21.74 }, "geometry": { "type": "Point", "coordinates": [ -75.150829, 39.91706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-y9z", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "3020 Market St", "LATITUDE": 39.954522, "LONGITUDE": -75.184483, "DATE_RANGE_START": 2021, "Total Visits": 1024.0, "Total Visitors": 644.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 280.0, "Total Spend": 9278.0, "Total Transactions": 742.0, "Total Customers": 630.0, "Median Spend per Transaction": 10.17, "Median Spend per Customer": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.184483, 39.954522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5201 Rising Sun Ave", "LATITUDE": 40.029093, "LONGITUDE": -75.118871, "DATE_RANGE_START": 2021, "Total Visits": 348.0, "Total Visitors": 243.0, "POI_CBG": 421010290004.0, "Median Dwell Time": 10.0, "Total Spend": 1187.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 5.35, "Median Spend per Customer": 12.68 }, "geometry": { "type": "Point", "coordinates": [ -75.118871, 40.029093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22b@628-pmb-7h5", "Name": "Bain's Deli", "Category": "Restaurants and Other Eating Places", "Address": "200 S Broad St Ste FC3", "LATITUDE": 39.949072, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2021, "Total Visits": 7711.0, "Total Visitors": 5317.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 151.0, "Total Spend": 504.0, "Total Transactions": 55.0, "Total Customers": 50.0, "Median Spend per Transaction": 9.13, "Median Spend per Customer": 9.23 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.949072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3200 Red Lion Rd", "LATITUDE": 40.081241, "LONGITUDE": -74.99492, "DATE_RANGE_START": 2021, "Total Visits": 539.0, "Total Visitors": 267.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 3.0, "Total Spend": 4913.0, "Total Transactions": 716.0, "Total Customers": 315.0, "Median Spend per Transaction": 5.9, "Median Spend per Customer": 9.59 }, "geometry": { "type": "Point", "coordinates": [ -74.99492, 40.081241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j9z", "Name": "aka.", "Category": "Traveler Accommodation", "Address": "135 S 18th St", "LATITUDE": 39.950397, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 313.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 485.0, "Total Spend": 87.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 11.44, "Median Spend per Customer": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.950397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "Name": "Sang Kee Noodle House", "Category": "Restaurants and Other Eating Places", "Address": "3549 Chestnut St", "LATITUDE": 39.954847, "LONGITUDE": -75.193677, "DATE_RANGE_START": 2021, "Total Visits": 928.0, "Total Visitors": 544.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 325.0, "Total Spend": 5022.0, "Total Transactions": 136.0, "Total Customers": 105.0, "Median Spend per Transaction": 27.49, "Median Spend per Customer": 36.13 }, "geometry": { "type": "Point", "coordinates": [ -75.193677, 39.954847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfz-bzf", "Name": "Chabaa Thai Bistro", "Category": "Restaurants and Other Eating Places", "Address": "4343 Main St", "LATITUDE": 40.025611, "LONGITUDE": -75.223488, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 81.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 114.0, "Total Spend": 5940.0, "Total Transactions": 134.0, "Total Customers": 119.0, "Median Spend per Transaction": 44.72, "Median Spend per Customer": 50.58 }, "geometry": { "type": "Point", "coordinates": [ -75.223488, 40.025611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "Name": "NO 1 China", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2021, "Total Visits": 580.0, "Total Visitors": 456.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 18.0, "Total Spend": 179.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 37.53, "Median Spend per Customer": 37.53 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-6x5", "Name": "Ocean Prime", "Category": "Restaurants and Other Eating Places", "Address": "124 S 15th St", "LATITUDE": 39.950182, "LONGITUDE": -75.165953, "DATE_RANGE_START": 2021, "Total Visits": 456.0, "Total Visitors": 422.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 12.0, "Total Spend": 12670.0, "Total Transactions": 60.0, "Total Customers": 53.0, "Median Spend per Transaction": 177.99, "Median Spend per Customer": 204.36 }, "geometry": { "type": "Point", "coordinates": [ -75.165953, 39.950182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "401 N 21st St", "LATITUDE": 39.962306, "LONGITUDE": -75.172957, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 117.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 20.0, "Total Spend": 28114.0, "Total Transactions": 1021.0, "Total Customers": 776.0, "Median Spend per Transaction": 24.12, "Median Spend per Customer": 29.77 }, "geometry": { "type": "Point", "coordinates": [ -75.172957, 39.962306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St # 08", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 100.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 7.0, "Total Spend": 10563.0, "Total Transactions": 702.0, "Total Customers": 513.0, "Median Spend per Transaction": 11.45, "Median Spend per Customer": 14.82 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "1100 S Columbus Blvd # 20", "LATITUDE": 39.932572, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 165.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 6.0, "Total Spend": 4406.0, "Total Transactions": 67.0, "Total Customers": 45.0, "Median Spend per Transaction": 49.35, "Median Spend per Customer": 89.27 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "Name": "Pac A Deli", "Category": "Grocery Stores", "Address": "1200 Walnut St", "LATITUDE": 39.948693, "LONGITUDE": -75.160788, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 277.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 2.0, "Total Spend": 18834.0, "Total Transactions": 1038.0, "Total Customers": 480.0, "Median Spend per Transaction": 15.03, "Median Spend per Customer": 23.88 }, "geometry": { "type": "Point", "coordinates": [ -75.160788, 39.948693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "Name": "Dfti Boutique", "Category": "Clothing Stores", "Address": "2026 Chestnut St", "LATITUDE": 39.95206, "LONGITUDE": -75.174572, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 4.0, "Total Spend": 18034.0, "Total Transactions": 172.0, "Total Customers": 153.0, "Median Spend per Transaction": 89.85, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174572, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "Name": "Pizzeria Cappelli", "Category": "Restaurants and Other Eating Places", "Address": "209 S 13th St", "LATITUDE": 39.948456, "LONGITUDE": -75.162098, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 110.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 31.0, "Total Spend": 11155.0, "Total Transactions": 585.0, "Total Customers": 501.0, "Median Spend per Transaction": 15.79, "Median Spend per Customer": 18.98 }, "geometry": { "type": "Point", "coordinates": [ -75.162098, 39.948456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pmf-jd9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1628 Chestnut St # 36", "LATITUDE": 39.9512, "LONGITUDE": -75.168586, "DATE_RANGE_START": 2021, "Total Visits": 1874.0, "Total Visitors": 1248.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 417.0, "Total Spend": 51188.0, "Total Transactions": 3740.0, "Total Customers": 2079.0, "Median Spend per Transaction": 9.2, "Median Spend per Customer": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.168586, 39.9512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-qfz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5440 Lansdowne Ave", "LATITUDE": 39.976667, "LONGITUDE": -75.231099, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 91.0, "POI_CBG": 421010112001.0, "Median Dwell Time": 18.0, "Total Spend": 5608.0, "Total Transactions": 284.0, "Total Customers": 158.0, "Median Spend per Transaction": 12.49, "Median Spend per Customer": 25.49 }, "geometry": { "type": "Point", "coordinates": [ -75.231099, 39.976667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj4-zzz", "Name": "Wok Works", "Category": "Restaurants and Other Eating Places", "Address": "3401 N Broad St", "LATITUDE": 40.005065, "LONGITUDE": -75.150775, "DATE_RANGE_START": 2021, "Total Visits": 11673.0, "Total Visitors": 4064.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 344.0, "Total Spend": 598.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.150775, 40.005065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5zz", "Name": "Top Tomato Pizza Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1107 Walnut St", "LATITUDE": 39.948971, "LONGITUDE": -75.159389, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 172.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 83.0, "Total Spend": 10551.0, "Total Transactions": 387.0, "Total Customers": 301.0, "Median Spend per Transaction": 18.62, "Median Spend per Customer": 23.27 }, "geometry": { "type": "Point", "coordinates": [ -75.159389, 39.948971 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market Street Concourse", "LATITUDE": 39.952204, "LONGITUDE": -75.166371, "DATE_RANGE_START": 2021, "Total Visits": 5561.0, "Total Visitors": 3692.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 172.0, "Total Spend": 5172.0, "Total Transactions": 862.0, "Total Customers": 344.0, "Median Spend per Transaction": 5.27, "Median Spend per Customer": 7.67 }, "geometry": { "type": "Point", "coordinates": [ -75.166371, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7512 Bustleton Ave", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 353.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 3.0, "Total Spend": 11918.0, "Total Transactions": 1470.0, "Total Customers": 718.0, "Median Spend per Transaction": 7.01, "Median Spend per Customer": 10.11 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2400 Castor Ave", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2021, "Total Visits": 563.0, "Total Visitors": 384.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 4.0, "Total Spend": 602.0, "Total Transactions": 48.0, "Total Customers": 45.0, "Median Spend per Transaction": 8.81, "Median Spend per Customer": 8.65 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-p85-p35", "Name": "The Fresh Works", "Category": "Restaurants and Other Eating Places", "Address": "2863 Holme Ave", "LATITUDE": 40.057189, "LONGITUDE": -75.030329, "DATE_RANGE_START": 2021, "Total Visits": 814.0, "Total Visitors": 599.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 22.0, "Total Spend": 348.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 11.38 }, "geometry": { "type": "Point", "coordinates": [ -75.030329, 40.057189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5753 Wayne Ave", "LATITUDE": 40.032663, "LONGITUDE": -75.179788, "DATE_RANGE_START": 2021, "Total Visits": 348.0, "Total Visitors": 248.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 3.0, "Total Spend": 16695.0, "Total Transactions": 2105.0, "Total Customers": 897.0, "Median Spend per Transaction": 7.03, "Median Spend per Customer": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.179788, 40.032663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dvy-mx5", "Name": "Tea Do", "Category": "Restaurants and Other Eating Places", "Address": "3816 Chestnut St", "LATITUDE": 39.95462, "LONGITUDE": -75.199919, "DATE_RANGE_START": 2021, "Total Visits": 2215.0, "Total Visitors": 1315.0, "POI_CBG": 421010088012.0, "Median Dwell Time": 61.0, "Total Spend": 4827.0, "Total Transactions": 504.0, "Total Customers": 468.0, "Median Spend per Transaction": 8.08, "Median Spend per Customer": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.199919, 39.95462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-kfz", "Name": "SoBol UCity", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.951073, "LONGITUDE": -75.198726, "DATE_RANGE_START": 2021, "Total Visits": 1131.0, "Total Visitors": 802.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 7.0, "Total Spend": 1888.0, "Total Transactions": 131.0, "Total Customers": 105.0, "Median Spend per Transaction": 11.02, "Median Spend per Customer": 12.07 }, "geometry": { "type": "Point", "coordinates": [ -75.198726, 39.951073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "9430 Academy Rd", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2021, "Total Visits": 745.0, "Total Visitors": 525.0, "POI_CBG": 421010348022.0, "Median Dwell Time": 2.0, "Total Spend": 10068.0, "Total Transactions": 1055.0, "Total Customers": 666.0, "Median Spend per Transaction": 8.86, "Median Spend per Customer": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "10050 Roosevelt Blvd", "LATITUDE": 40.095685, "LONGITUDE": -75.015058, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 344.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 4.0, "Total Spend": 3222.0, "Total Transactions": 489.0, "Total Customers": 203.0, "Median Spend per Transaction": 5.62, "Median Spend per Customer": 8.6 }, "geometry": { "type": "Point", "coordinates": [ -75.015058, 40.095685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-jd9", "Name": "Konditori", "Category": "Restaurants and Other Eating Places", "Address": "40 S 17th St", "LATITUDE": 39.95187, "LONGITUDE": -75.168863, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 189.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 183.0, "Total Spend": 240.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 11.94, "Median Spend per Customer": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.168863, 39.95187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5s5", "Name": "Federal Donuts East Market", "Category": "Restaurants and Other Eating Places", "Address": "21 S 12th St", "LATITUDE": 39.951076, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2021, "Total Visits": 2551.0, "Total Visitors": 1716.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 276.0, "Total Spend": 5270.0, "Total Transactions": 358.0, "Total Customers": 301.0, "Median Spend per Transaction": 11.76, "Median Spend per Customer": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.951076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "Name": "Angelo's Pizza House", "Category": "Restaurants and Other Eating Places", "Address": "3901 Frankford Ave", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 1.0, "Total Spend": 1573.0, "Total Transactions": 98.0, "Total Customers": 55.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 25.6 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvq-649", "Name": "Three Sister Grocery", "Category": "Grocery Stores", "Address": "5356 Delancey St", "LATITUDE": 39.954366, "LONGITUDE": -75.229741, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010085004.0, "Median Dwell Time": 5.0, "Total Spend": 2046.0, "Total Transactions": 186.0, "Total Customers": 74.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229741, 39.954366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "Name": "Oneals Pub", "Category": "Restaurants and Other Eating Places", "Address": "611 S 3rd St", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 21.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 41.0, "Total Spend": 11016.0, "Total Transactions": 267.0, "Total Customers": 196.0, "Median Spend per Transaction": 26.38, "Median Spend per Customer": 28.31 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "Name": "Talk of the Town", "Category": "Restaurants and Other Eating Places", "Address": "7804 Limekiln Pike", "LATITUDE": 40.071911, "LONGITUDE": -75.161398, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 3.0, "Total Spend": 8748.0, "Total Transactions": 224.0, "Total Customers": 100.0, "Median Spend per Transaction": 52.38, "Median Spend per Customer": 24.86 }, "geometry": { "type": "Point", "coordinates": [ -75.161398, 40.071911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-pvz", "Name": "12 Steps Down", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "831 Christian St", "LATITUDE": 39.939056, "LONGITUDE": -75.157629, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 64.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 21.0, "Total Spend": 387.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157629, 39.939056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "Name": "Harbor Freight Tools", "Category": "Building Material and Supplies Dealers", "Address": "151 Franklin Mills Blvd", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2021, "Total Visits": 566.0, "Total Visitors": 504.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 40689.0, "Total Transactions": 699.0, "Total Customers": 582.0, "Median Spend per Transaction": 31.29, "Median Spend per Customer": 42.1 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3341 Grant Ave", "LATITUDE": 40.068776, "LONGITUDE": -75.005362, "DATE_RANGE_START": 2021, "Total Visits": 1422.0, "Total Visitors": 945.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 3.0, "Total Spend": 14326.0, "Total Transactions": 644.0, "Total Customers": 337.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 23.23 }, "geometry": { "type": "Point", "coordinates": [ -75.005362, 40.068776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-j9z", "Name": "Rittenhouse Farmers' Market", "Category": "Specialty Food Stores", "Address": "18th & Walnut St", "LATITUDE": 39.950367, "LONGITUDE": -75.17049, "DATE_RANGE_START": 2021, "Total Visits": 2575.0, "Total Visitors": 2012.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 790.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.17049, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1046 Market St", "LATITUDE": 39.951447, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2021, "Total Visits": 811.0, "Total Visitors": 594.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 140.0, "Total Spend": 10976.0, "Total Transactions": 1014.0, "Total Customers": 635.0, "Median Spend per Transaction": 6.63, "Median Spend per Customer": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.951447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dwf-q2k", "Name": "Marathon", "Category": "Gasoline Stations", "Address": "2450 Island Ave", "LATITUDE": 39.913427, "LONGITUDE": -75.243685, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 253.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 3.0, "Total Spend": 1978.0, "Total Transactions": 72.0, "Total Customers": 62.0, "Median Spend per Transaction": 22.52, "Median Spend per Customer": 20.02 }, "geometry": { "type": "Point", "coordinates": [ -75.243685, 39.913427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pgj-pgk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2649 Germantown Ave", "LATITUDE": 39.992811, "LONGITUDE": -75.147675, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 124.0, "POI_CBG": 421010164003.0, "Median Dwell Time": 5.0, "Total Spend": 687.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 6.49, "Median Spend per Customer": 5.45 }, "geometry": { "type": "Point", "coordinates": [ -75.147675, 39.992811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "301 S 52nd St", "LATITUDE": 39.9542, "LONGITUDE": -75.225712, "DATE_RANGE_START": 2021, "Total Visits": 1136.0, "Total Visitors": 730.0, "POI_CBG": 421010085003.0, "Median Dwell Time": 4.0, "Total Spend": 461.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 17.95, "Median Spend per Customer": 23.57 }, "geometry": { "type": "Point", "coordinates": [ -75.225712, 39.9542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "Name": "Burlington", "Category": "Clothing Stores", "Address": "9940 Roosevelt Blvd", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2021, "Total Visits": 1019.0, "Total Visitors": 838.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 20.0, "Total Spend": 9066.0, "Total Transactions": 198.0, "Total Customers": 162.0, "Median Spend per Transaction": 33.97, "Median Spend per Customer": 46.17 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-zxq", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "608 South St", "LATITUDE": 39.941838, "LONGITUDE": -75.152721, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 72.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 11.0, "Total Spend": 2010.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 74.99, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152721, 39.941838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "Name": "Tandy Leather Factory", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "11000 Roosevelt Blvd Ste 300", "LATITUDE": 40.102565, "LONGITUDE": -75.008773, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 198.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 16.0, "Total Spend": 3137.0, "Total Transactions": 38.0, "Total Customers": 31.0, "Median Spend per Transaction": 78.25, "Median Spend per Customer": 113.65 }, "geometry": { "type": "Point", "coordinates": [ -75.008773, 40.102565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-3kf", "Name": "South Side Pizza", "Category": "Restaurants and Other Eating Places", "Address": "740 Mifflin St", "LATITUDE": 39.925364, "LONGITUDE": -75.159106, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010041014.0, "Median Dwell Time": null, "Total Spend": 205.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.82, "Median Spend per Customer": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.159106, 39.925364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "Name": "Fairfield Inn & Suites by Marriott", "Category": "Traveler Accommodation", "Address": "8800 Bartram Ave", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2021, "Total Visits": 1014.0, "Total Visitors": 687.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 323.0, "Total Spend": 38104.0, "Total Transactions": 222.0, "Total Customers": 191.0, "Median Spend per Transaction": 166.48, "Median Spend per Customer": 176.82 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9163 Roosevelt Blvd & Welsh Rd", "LATITUDE": 40.074794, "LONGITUDE": -75.032684, "DATE_RANGE_START": 2021, "Total Visits": 1215.0, "Total Visitors": 709.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 17.0, "Total Spend": 5554.0, "Total Transactions": 516.0, "Total Customers": 337.0, "Median Spend per Transaction": 6.45, "Median Spend per Customer": 11.58 }, "geometry": { "type": "Point", "coordinates": [ -75.032684, 40.074794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.031024, "LONGITUDE": -75.099091, "DATE_RANGE_START": 2021, "Total Visits": 671.0, "Total Visitors": 578.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 11.0, "Total Spend": 14572.0, "Total Transactions": 399.0, "Total Customers": 351.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.099091, 40.031024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-vcq", "Name": "The Dolphin Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1539 S Broad St", "LATITUDE": 39.930579, "LONGITUDE": -75.167937, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 150.0, "POI_CBG": 421010029002.0, "Median Dwell Time": 32.0, "Total Spend": 27921.0, "Total Transactions": 1217.0, "Total Customers": 783.0, "Median Spend per Transaction": 18.6, "Median Spend per Customer": 29.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167937, 39.930579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9r-4y9", "Name": "Chuck E. Cheese's", "Category": "Restaurants and Other Eating Places", "Address": "9175 Roosevelt Blvd Ste 2", "LATITUDE": 40.076158, "LONGITUDE": -75.031371, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 317.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 2198.0, "Total Transactions": 98.0, "Total Customers": 57.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 30.38 }, "geometry": { "type": "Point", "coordinates": [ -75.031371, 40.076158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "Name": "East Falls Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4024 Ridge Ave", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 12.0, "POI_CBG": 421010170001.0, "Median Dwell Time": 6.0, "Total Spend": 17764.0, "Total Transactions": 575.0, "Total Customers": 377.0, "Median Spend per Transaction": 23.23, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "Name": "Fishtown Social", "Category": "Restaurants and Other Eating Places", "Address": "1525 Frankford Ave", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 1.0, "Total Spend": 11568.0, "Total Transactions": 193.0, "Total Customers": 138.0, "Median Spend per Transaction": 50.76, "Median Spend per Customer": 70.66 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-pn5", "Name": "Good's Vintage", "Category": "Used Merchandise Stores", "Address": "1022 S 9th St", "LATITUDE": 39.93696, "LONGITUDE": -75.158415, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 2.0, "Total Spend": 1030.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 40.5, "Median Spend per Customer": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.93696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-t5f", "Name": "Sum Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "679 N Broad St", "LATITUDE": 39.965929, "LONGITUDE": -75.160347, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 43.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 1.0, "Total Spend": 1087.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 113.79, "Median Spend per Customer": 127.52 }, "geometry": { "type": "Point", "coordinates": [ -75.160347, 39.965929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phq-2ff", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "6242 Stenton Ave", "LATITUDE": 40.058682, "LONGITUDE": -75.164688, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 43.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 4.0, "Total Spend": 3893.0, "Total Transactions": 191.0, "Total Customers": 160.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 19.68 }, "geometry": { "type": "Point", "coordinates": [ -75.164688, 40.058682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8h-5xq", "Name": "New Station Pizza Iv", "Category": "Restaurants and Other Eating Places", "Address": "6904 Torresdale Ave", "LATITUDE": 40.026249, "LONGITUDE": -75.043153, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 11.0, "Total Spend": 1957.0, "Total Transactions": 119.0, "Total Customers": 86.0, "Median Spend per Transaction": 13.89, "Median Spend per Customer": 17.97 }, "geometry": { "type": "Point", "coordinates": [ -75.043153, 40.026249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "Name": "Knead Bagels", "Category": "Restaurants and Other Eating Places", "Address": "725 Walnut St", "LATITUDE": 39.948165, "LONGITUDE": -75.153606, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 120.0, "Total Spend": 5967.0, "Total Transactions": 480.0, "Total Customers": 387.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.153606, 39.948165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030253, "LONGITUDE": -75.101415, "DATE_RANGE_START": 2021, "Total Visits": 558.0, "Total Visitors": 456.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 21.0, "Total Spend": 10863.0, "Total Transactions": 208.0, "Total Customers": 162.0, "Median Spend per Transaction": 38.79, "Median Spend per Customer": 50.22 }, "geometry": { "type": "Point", "coordinates": [ -75.101415, 40.030253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8j-ct9", "Name": "Dress Up Time", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "7240 Frankford Ave", "LATITUDE": 40.036328, "LONGITUDE": -75.042105, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 1.0, "Total Spend": 1281.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 268.39, "Median Spend per Customer": 268.39 }, "geometry": { "type": "Point", "coordinates": [ -75.042105, 40.036328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmf-j35", "Name": "Benjamin Lovell Shoes", "Category": "Shoe Stores", "Address": "1728 Chestnut St", "LATITUDE": 39.95135, "LONGITUDE": -75.169937, "DATE_RANGE_START": 2021, "Total Visits": 2017.0, "Total Visitors": 1434.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 62.0, "Total Spend": 53.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169937, 39.95135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-5pv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1113 Market St", "LATITUDE": 39.952074, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2021, "Total Visits": 174.0, "Total Visitors": 148.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 195.0, "Total Spend": 4064.0, "Total Transactions": 778.0, "Total Customers": 339.0, "Median Spend per Transaction": 4.34, "Median Spend per Customer": 6.71 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.952074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8h-5mk", "Name": "Benz Automotive", "Category": "Electronics and Appliance Stores", "Address": "4941 Princeton Ave", "LATITUDE": 40.024738, "LONGITUDE": -75.035725, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 69.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 22.0, "Total Spend": 129.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035725, 40.024738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-y9z", "Name": "Mai Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "31st And Ludlow", "LATITUDE": 39.954031, "LONGITUDE": -75.18573, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 43.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 173.0, "Total Spend": 52.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.18573, 39.954031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "Name": "Thai Kuu", "Category": "Restaurants and Other Eating Places", "Address": "35 Bethlehem Pike Ste 109A", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 60.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 6.0, "Total Spend": 1890.0, "Total Transactions": 45.0, "Total Customers": 38.0, "Median Spend per Transaction": 41.04, "Median Spend per Customer": 41.58 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-v2k", "Name": "Original Village Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1006 Sandmeyer Ln", "LATITUDE": 40.107293, "LONGITUDE": -75.037623, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 64.0, "POI_CBG": 421010357021.0, "Median Dwell Time": 7.0, "Total Spend": 4995.0, "Total Transactions": 160.0, "Total Customers": 136.0, "Median Spend per Transaction": 27.42, "Median Spend per Customer": 26.68 }, "geometry": { "type": "Point", "coordinates": [ -75.037623, 40.107293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg2-zs5", "Name": "Mount Airy Tap Room", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "300 W Mount Pleasant Ave", "LATITUDE": 40.053904, "LONGITUDE": -75.194197, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010388004.0, "Median Dwell Time": 129.0, "Total Spend": 12092.0, "Total Transactions": 227.0, "Total Customers": 174.0, "Median Spend per Transaction": 46.2, "Median Spend per Customer": 57.35 }, "geometry": { "type": "Point", "coordinates": [ -75.194197, 40.053904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p8d-fmk", "Name": "Renzi's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2728 Orthodox St", "LATITUDE": 39.998034, "LONGITUDE": -75.074418, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 36.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 194.0, "Total Spend": 155.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.074418, 39.998034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-nnq", "Name": "M & M Food Market", "Category": "Grocery Stores", "Address": "458 Markle St", "LATITUDE": 40.02486, "LONGITUDE": -75.210261, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 39.0, "Total Spend": 373.0, "Total Transactions": 57.0, "Total Customers": 36.0, "Median Spend per Transaction": 6.19, "Median Spend per Customer": 7.38 }, "geometry": { "type": "Point", "coordinates": [ -75.210261, 40.02486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "Name": "Wah Gi Wah Halal", "Category": "Restaurants and Other Eating Places", "Address": "4447 Chestnut St", "LATITUDE": 39.956965, "LONGITUDE": -75.211135, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010087012.0, "Median Dwell Time": null, "Total Spend": 4918.0, "Total Transactions": 76.0, "Total Customers": 67.0, "Median Spend per Transaction": 50.84, "Median Spend per Customer": 72.59 }, "geometry": { "type": "Point", "coordinates": [ -75.211135, 39.956965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "Name": "Oregon Express", "Category": "Restaurants and Other Eating Places", "Address": "2700 S Marvine St", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 17.0, "POI_CBG": 421010372001.0, "Median Dwell Time": 725.0, "Total Spend": 314.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 15.6, "Median Spend per Customer": 17.11 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "Name": "Pasqually's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "200 S 43rd St", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 15.0, "Total Spend": 21072.0, "Total Transactions": 931.0, "Total Customers": 558.0, "Median Spend per Transaction": 20.79, "Median Spend per Customer": 28.18 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4jv", "Name": "Embroidery King", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "6190 Rising Sun Ave", "LATITUDE": 40.046955, "LONGITUDE": -75.098445, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 26.0, "POI_CBG": 421010305021.0, "Median Dwell Time": 423.0, "Total Spend": 1348.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 150.0, "Median Spend per Customer": 282.5 }, "geometry": { "type": "Point", "coordinates": [ -75.098445, 40.046955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "Name": "Fountain Porter", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1601 S 10th St", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 29.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 154.0, "Total Spend": 3725.0, "Total Transactions": 81.0, "Total Customers": 53.0, "Median Spend per Transaction": 33.31, "Median Spend per Customer": 45.56 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-fcq", "Name": "Ace Hardware", "Category": "Building Material and Supplies Dealers", "Address": "257 S 10th St", "LATITUDE": 39.946706, "LONGITUDE": -75.157582, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 36.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 7.0, "Total Spend": 661.0, "Total Transactions": 57.0, "Total Customers": 50.0, "Median Spend per Transaction": 10.78, "Median Spend per Customer": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157582, 39.946706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8t-4qf", "Name": "Speedy's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4013 Fairdale Rd", "LATITUDE": 40.084571, "LONGITUDE": -74.972797, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 36.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 5.0, "Total Spend": 834.0, "Total Transactions": 36.0, "Total Customers": 24.0, "Median Spend per Transaction": 24.57, "Median Spend per Customer": 23.84 }, "geometry": { "type": "Point", "coordinates": [ -74.972797, 40.084571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj6-99f", "Name": "Red Wine Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "701 Adams Ave", "LATITUDE": 40.033146, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 60.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 99.0, "Total Spend": 356.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.033146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-x89", "Name": "Kim's Seafood", "Category": "Specialty Food Stores", "Address": "1336 Windrim Ave", "LATITUDE": 40.029599, "LONGITUDE": -75.146407, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 67.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 2.0, "Total Spend": 1234.0, "Total Transactions": 55.0, "Total Customers": 48.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146407, 40.029599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-q75", "Name": "Stacy's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7856 Haverford Ave", "LATITUDE": 39.979079, "LONGITUDE": -75.268686, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 72.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 3.0, "Total Spend": 500.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 16.41, "Median Spend per Customer": 16.41 }, "geometry": { "type": "Point", "coordinates": [ -75.268686, 39.979079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "839 N Broad St", "LATITUDE": 39.969391, "LONGITUDE": -75.159457, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 64.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 3.0, "Total Spend": 5763.0, "Total Transactions": 828.0, "Total Customers": 484.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 7.96 }, "geometry": { "type": "Point", "coordinates": [ -75.159457, 39.969391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p85-cnq", "Name": "New Garden", "Category": "Restaurants and Other Eating Places", "Address": "8033 Bustleton Ave", "LATITUDE": 40.060663, "LONGITUDE": -75.051686, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010334003.0, "Median Dwell Time": null, "Total Spend": 438.0, "Total Transactions": 33.0, "Total Customers": 24.0, "Median Spend per Transaction": 12.35, "Median Spend per Customer": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.051686, 40.060663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-r6k", "Name": "Grindcore House", "Category": "Restaurants and Other Eating Places", "Address": "1515 S 4th St", "LATITUDE": 39.929019, "LONGITUDE": -75.151738, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010027023.0, "Median Dwell Time": 25.0, "Total Spend": 2000.0, "Total Transactions": 172.0, "Total Customers": 122.0, "Median Spend per Transaction": 8.12, "Median Spend per Customer": 10.56 }, "geometry": { "type": "Point", "coordinates": [ -75.151738, 39.929019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-8jv", "Name": "Newmans Grill", "Category": "Restaurants and Other Eating Places", "Address": "5946 Germantown Ave", "LATITUDE": 40.038927, "LONGITUDE": -75.177558, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010238003.0, "Median Dwell Time": 42.0, "Total Spend": 395.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 18.9, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.177558, 40.038927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "Name": "Chestnut Hill Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "8138 Germantown Ave", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 3.0, "Total Spend": 211.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-fcq", "Name": "Litterpaw Pet Supply", "Category": "Other Miscellaneous Store Retailers", "Address": "267 S 10th St", "LATITUDE": 39.946484, "LONGITUDE": -75.157626, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 21.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 253.0, "Total Spend": 143.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -75.157626, 39.946484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-pgk", "Name": "Best Sunny Diner", "Category": "Restaurants and Other Eating Places", "Address": "2650 Germantown Ave", "LATITUDE": 39.992784, "LONGITUDE": -75.148123, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 26.0, "POI_CBG": 421010165003.0, "Median Dwell Time": 4.0, "Total Spend": 587.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 19.73 }, "geometry": { "type": "Point", "coordinates": [ -75.148123, 39.992784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-phn-qj9", "Name": "Uptown Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8131 Stenton Ave", "LATITUDE": 40.067574, "LONGITUDE": -75.179009, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 95.0, "Total Spend": 2777.0, "Total Transactions": 48.0, "Total Customers": 19.0, "Median Spend per Transaction": 40.39, "Median Spend per Customer": 32.19 }, "geometry": { "type": "Point", "coordinates": [ -75.179009, 40.067574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "Name": "Dim Sum & Noodle", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 104", "LATITUDE": 39.962276, "LONGITUDE": -75.172659, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010125002.0, "Median Dwell Time": null, "Total Spend": 6748.0, "Total Transactions": 208.0, "Total Customers": 158.0, "Median Spend per Transaction": 28.3, "Median Spend per Customer": 38.02 }, "geometry": { "type": "Point", "coordinates": [ -75.172659, 39.962276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-k75", "Name": "Angela's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "9918 Roosevelt Blvd", "LATITUDE": 40.0945, "LONGITUDE": -75.018316, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 1.0, "Total Spend": 2413.0, "Total Transactions": 129.0, "Total Customers": 122.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.018316, 40.0945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnx-dsq", "Name": "Cedar Point Bar and Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2370 E Norris St", "LATITUDE": 39.976851, "LONGITUDE": -75.127783, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 45.0, "Total Spend": 20534.0, "Total Transactions": 358.0, "Total Customers": 313.0, "Median Spend per Transaction": 43.17, "Median Spend per Customer": 45.22 }, "geometry": { "type": "Point", "coordinates": [ -75.127783, 39.976851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgf-h5z", "Name": "American Picture Framing", "Category": "Home Furnishings Stores", "Address": "3821 Powelton Ave", "LATITUDE": 39.959767, "LONGITUDE": -75.198143, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 41.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 610.0, "Total Spend": 706.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 147.92, "Median Spend per Customer": 147.92 }, "geometry": { "type": "Point", "coordinates": [ -75.198143, 39.959767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "Name": "Walnut Supermarket", "Category": "Grocery Stores", "Address": "5131 Walnut St", "LATITUDE": 39.957098, "LONGITUDE": -75.224484, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 57.0, "POI_CBG": 421010085002.0, "Median Dwell Time": 5.0, "Total Spend": 7898.0, "Total Transactions": 198.0, "Total Customers": 165.0, "Median Spend per Transaction": 31.85, "Median Spend per Customer": 34.37 }, "geometry": { "type": "Point", "coordinates": [ -75.224484, 39.957098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pfz-ch5", "Name": "Pilgrim Roasters", "Category": "Restaurants and Other Eating Places", "Address": "4120 Main St", "LATITUDE": 40.022764, "LONGITUDE": -75.219439, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 146.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 42.0, "Total Spend": 389.0, "Total Transactions": 60.0, "Total Customers": 19.0, "Median Spend per Transaction": 5.63, "Median Spend per Customer": 5.12 }, "geometry": { "type": "Point", "coordinates": [ -75.219439, 40.022764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-bc5", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "100 N Edgewood St", "LATITUDE": 39.963748, "LONGITUDE": -75.241226, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 14.0, "POI_CBG": 421010096002.0, "Median Dwell Time": 593.0, "Total Spend": 2215.0, "Total Transactions": 107.0, "Total Customers": 69.0, "Median Spend per Transaction": 17.17, "Median Spend per Customer": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.241226, 39.963748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6151 N Broad St", "LATITUDE": 40.0471, "LONGITUDE": -75.142281, "DATE_RANGE_START": 2021, "Total Visits": 2461.0, "Total Visitors": 1599.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 6.0, "Total Spend": 38965.0, "Total Transactions": 1341.0, "Total Customers": 864.0, "Median Spend per Transaction": 25.44, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142281, 40.0471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1618 Chestnut St # 22", "LATITUDE": 39.951061, "LONGITUDE": -75.168264, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 346.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 137.0, "Total Spend": 12119.0, "Total Transactions": 239.0, "Total Customers": 220.0, "Median Spend per Transaction": 38.49, "Median Spend per Customer": 42.52 }, "geometry": { "type": "Point", "coordinates": [ -75.168264, 39.951061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-wc5", "Name": "Claire's", "Category": "Clothing Stores", "Address": "1425 Woodhaven & Knights Rd", "LATITUDE": 40.086584, "LONGITUDE": -74.962146, "DATE_RANGE_START": 2021, "Total Visits": 351.0, "Total Visitors": 267.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 88.0, "Total Spend": 178.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 37.24, "Median Spend per Customer": 37.24 }, "geometry": { "type": "Point", "coordinates": [ -74.962146, 40.086584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "Name": "Dollar Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7578 Haverford Ave", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 205.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 5.0, "Total Spend": 9567.0, "Total Transactions": 434.0, "Total Customers": 344.0, "Median Spend per Transaction": 15.25, "Median Spend per Customer": 20.44 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-sdv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "411 W Oregon Ave", "LATITUDE": 39.915109, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 88.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 1.0, "Total Spend": 400.0, "Total Transactions": 31.0, "Total Customers": 31.0, "Median Spend per Transaction": 9.81, "Median Spend per Customer": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.915109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "Name": "Chew Deli", "Category": "Restaurants and Other Eating Places", "Address": "6302 Chew Ave", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 91.0, "POI_CBG": 421010252007.0, "Median Dwell Time": 282.0, "Total Spend": 2988.0, "Total Transactions": 301.0, "Total Customers": 107.0, "Median Spend per Transaction": 7.15, "Median Spend per Customer": 12.44 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yd9", "Name": "Tea Do", "Category": "Restaurants and Other Eating Places", "Address": "132 N 10th St", "LATITUDE": 39.954609, "LONGITUDE": -75.156246, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 236.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 40.0, "Total Spend": 5634.0, "Total Transactions": 561.0, "Total Customers": 504.0, "Median Spend per Transaction": 7.31, "Median Spend per Customer": 8.08 }, "geometry": { "type": "Point", "coordinates": [ -75.156246, 39.954609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6620 N Broad St", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 172.0, "POI_CBG": 421010268003.0, "Median Dwell Time": 2.0, "Total Spend": 5601.0, "Total Transactions": 675.0, "Total Customers": 382.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1630 E Wadsworth Ave", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 272.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 3.0, "Total Spend": 5688.0, "Total Transactions": 912.0, "Total Customers": 594.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 7.34 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "3208 Red Lion Rd", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2021, "Total Visits": 198.0, "Total Visitors": 148.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 2.0, "Total Spend": 1651.0, "Total Transactions": 74.0, "Total Customers": 72.0, "Median Spend per Transaction": 16.55, "Median Spend per Customer": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "Name": "Pho Cyclo Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2124 S Broad St", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2021, "Total Visits": 1012.0, "Total Visitors": 637.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 46.0, "Total Spend": 1664.0, "Total Transactions": 60.0, "Total Customers": 55.0, "Median Spend per Transaction": 30.49, "Median Spend per Customer": 30.49 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012073, "LONGITUDE": -75.115248, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 105.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 13.0, "Total Spend": 393.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 10.4, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.115248, 40.012073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-6tv", "Name": "Eternity Fashion", "Category": "Clothing Stores", "Address": "1410 Chestnut St", "LATITUDE": 39.951034, "LONGITUDE": -75.166595, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 124.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 119.0, "Total Spend": 13101.0, "Total Transactions": 294.0, "Total Customers": 255.0, "Median Spend per Transaction": 34.99, "Median Spend per Customer": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166595, 39.951034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6919 Castor Ave # 6935", "LATITUDE": 40.045974, "LONGITUDE": -75.070637, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 84.0, "POI_CBG": 421010314015.0, "Median Dwell Time": 8.0, "Total Spend": 23498.0, "Total Transactions": 1974.0, "Total Customers": 1117.0, "Median Spend per Transaction": 8.3, "Median Spend per Customer": 11.32 }, "geometry": { "type": "Point", "coordinates": [ -75.070637, 40.045974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "Name": "Beer Express", "Category": "Beer, Wine, and Liquor Stores", "Address": "11718 Bustleton Ave", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2021, "Total Visits": 554.0, "Total Visitors": 456.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 2.0, "Total Spend": 9351.0, "Total Transactions": 334.0, "Total Customers": 200.0, "Median Spend per Transaction": 21.97, "Median Spend per Customer": 36.21 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4849 Market St", "LATITUDE": 39.959641, "LONGITUDE": -75.218508, "DATE_RANGE_START": 2021, "Total Visits": 434.0, "Total Visitors": 289.0, "POI_CBG": 421010104004.0, "Median Dwell Time": 15.0, "Total Spend": 3758.0, "Total Transactions": 215.0, "Total Customers": 184.0, "Median Spend per Transaction": 12.59, "Median Spend per Customer": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.218508, 39.959641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-2kz", "Name": "Skechers", "Category": "Shoe Stores", "Address": "9161 Roosevelt Blvd # 17", "LATITUDE": 40.074571, "LONGITUDE": -75.032796, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 270.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 13.0, "Total Spend": 863.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 42.39, "Median Spend per Customer": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032796, 40.074571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-kvf", "Name": "Long In the Tooth", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2027 Sansom St", "LATITUDE": 39.951536, "LONGITUDE": -75.174727, "DATE_RANGE_START": 2021, "Total Visits": 1408.0, "Total Visitors": 981.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 96.0, "Total Spend": 752.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 73.96, "Median Spend per Customer": 73.96 }, "geometry": { "type": "Point", "coordinates": [ -75.174727, 39.951536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "229 W Allegheny Ave", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 167.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 5.0, "Total Spend": 676.0, "Total Transactions": 62.0, "Total Customers": 29.0, "Median Spend per Transaction": 3.76, "Median Spend per Customer": 9.12 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2250 S Columbus Blvd", "LATITUDE": 39.917114, "LONGITUDE": -75.139852, "DATE_RANGE_START": 2021, "Total Visits": 783.0, "Total Visitors": 695.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 31229.0, "Total Transactions": 1597.0, "Total Customers": 1308.0, "Median Spend per Transaction": 14.28, "Median Spend per Customer": 17.61 }, "geometry": { "type": "Point", "coordinates": [ -75.139852, 39.917114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093157, "LONGITUDE": -75.032901, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 160.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 5.0, "Total Spend": 963.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 19.83 }, "geometry": { "type": "Point", "coordinates": [ -75.032901, 40.093157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj5-jqf", "Name": "Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3366 N 2nd St", "LATITUDE": 40.002083, "LONGITUDE": -75.132811, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010195011.0, "Median Dwell Time": null, "Total Spend": 1108.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 28.59, "Median Spend per Customer": 28.59 }, "geometry": { "type": "Point", "coordinates": [ -75.132811, 40.002083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "Name": "Martinez Grocery", "Category": "Grocery Stores", "Address": "2655 W Sterner St", "LATITUDE": 39.997199, "LONGITUDE": -75.175295, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010172022.0, "Median Dwell Time": 3.0, "Total Spend": 503.0, "Total Transactions": 72.0, "Total Customers": 36.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175295, 39.997199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p7w-x3q", "Name": "Mobil", "Category": "Gasoline Stations", "Address": "3301 Tyson Ave", "LATITUDE": 40.035465, "LONGITUDE": -75.049236, "DATE_RANGE_START": 2021, "Total Visits": 1513.0, "Total Visitors": 792.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 4.0, "Total Spend": 2003.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 55.24, "Median Spend per Customer": 55.24 }, "geometry": { "type": "Point", "coordinates": [ -75.049236, 40.035465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 W Cheltenham Ave", "LATITUDE": 40.081571, "LONGITUDE": -75.172058, "DATE_RANGE_START": 2021, "Total Visits": 950.0, "Total Visitors": 704.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 5.0, "Total Spend": 2114.0, "Total Transactions": 72.0, "Total Customers": 55.0, "Median Spend per Transaction": 23.97, "Median Spend per Customer": 35.3 }, "geometry": { "type": "Point", "coordinates": [ -75.172058, 40.081571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-kvf", "Name": "Caleb Meyer Studio", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "8520 Germantown Ave", "LATITUDE": 40.076278, "LONGITUDE": -75.207167, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 289.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 29.0, "Total Spend": 1142.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 149.04, "Median Spend per Customer": 149.04 }, "geometry": { "type": "Point", "coordinates": [ -75.207167, 40.076278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9355 Krewstown Rd", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2021, "Total Visits": 637.0, "Total Visitors": 415.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 7.0, "Total Spend": 1087.0, "Total Transactions": 53.0, "Total Customers": 53.0, "Median Spend per Transaction": 13.14, "Median Spend per Customer": 13.14 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p75-9pv", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "8423 8445 Frankford Ave Ste A", "LATITUDE": 40.044008, "LONGITUDE": -75.017305, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 119.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 6.0, "Total Spend": 852.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 38.87, "Median Spend per Customer": 178.47 }, "geometry": { "type": "Point", "coordinates": [ -75.017305, 40.044008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfv-649", "Name": "Pelham Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6555 Greene St Ste 3", "LATITUDE": 40.043444, "LONGITUDE": -75.190762, "DATE_RANGE_START": 2021, "Total Visits": 838.0, "Total Visitors": 430.0, "POI_CBG": 421010237001.0, "Median Dwell Time": 6.0, "Total Spend": 324.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 56.73, "Median Spend per Customer": 56.73 }, "geometry": { "type": "Point", "coordinates": [ -75.190762, 40.043444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1600 E Wadsworth Ave", "LATITUDE": 40.080322, "LONGITUDE": -75.171913, "DATE_RANGE_START": 2021, "Total Visits": 315.0, "Total Visitors": 227.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 5.0, "Total Spend": 4525.0, "Total Transactions": 215.0, "Total Customers": 150.0, "Median Spend per Transaction": 10.38, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171913, 40.080322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "Name": "Barbuzzo", "Category": "Restaurants and Other Eating Places", "Address": "110 S 13th St", "LATITUDE": 39.950022, "LONGITUDE": -75.162126, "DATE_RANGE_START": 2021, "Total Visits": 1993.0, "Total Visitors": 1456.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 59.0, "Total Spend": 10767.0, "Total Transactions": 122.0, "Total Customers": 107.0, "Median Spend per Transaction": 81.72, "Median Spend per Customer": 87.18 }, "geometry": { "type": "Point", "coordinates": [ -75.162126, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-87q", "Name": "Kabuki Sushi", "Category": "Restaurants and Other Eating Places", "Address": "45 N 13th St", "LATITUDE": 39.953616, "LONGITUDE": -75.160916, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 162.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 2994.0, "Total Transactions": 107.0, "Total Customers": 69.0, "Median Spend per Transaction": 22.7, "Median Spend per Customer": 34.83 }, "geometry": { "type": "Point", "coordinates": [ -75.160916, 39.953616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-tqf", "Name": "Passeros Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "834 Chestnut St", "LATITUDE": 39.949637, "LONGITUDE": -75.155037, "DATE_RANGE_START": 2021, "Total Visits": 420.0, "Total Visitors": 325.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 32.0, "Total Spend": 840.0, "Total Transactions": 117.0, "Total Customers": 93.0, "Median Spend per Transaction": 5.2, "Median Spend per Customer": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155037, 39.949637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-7wk", "Name": "Fuel", "Category": "Restaurants and Other Eating Places", "Address": "3200 Chestnut St", "LATITUDE": 39.953562, "LONGITUDE": -75.188092, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 107.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 237.0, "Total Spend": 14866.0, "Total Transactions": 544.0, "Total Customers": 399.0, "Median Spend per Transaction": 28.24, "Median Spend per Customer": 34.13 }, "geometry": { "type": "Point", "coordinates": [ -75.188092, 39.953562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@63s-dvr-hyv", "Name": "A & C Hardware", "Category": "Building Material and Supplies Dealers", "Address": "6501 Woodland Ave Apt 3", "LATITUDE": 39.925638, "LONGITUDE": -75.23463, "DATE_RANGE_START": 2021, "Total Visits": 158.0, "Total Visitors": 81.0, "POI_CBG": 421010063001.0, "Median Dwell Time": 82.0, "Total Spend": 249.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.23463, 39.925638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pj8-tgk", "Name": "New Ben City Supermarket", "Category": "Grocery Stores", "Address": "5520 Whitaker Ave", "LATITUDE": 40.035691, "LONGITUDE": -75.100546, "DATE_RANGE_START": 2021, "Total Visits": 1446.0, "Total Visitors": 876.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 13.0, "Total Spend": 5146.0, "Total Transactions": 415.0, "Total Customers": 205.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.100546, 40.035691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvz-2p9", "Name": "Chestnut Deli", "Category": "Grocery Stores", "Address": "4630 Chestnut St", "LATITUDE": 39.956923, "LONGITUDE": -75.214531, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 74.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 7.0, "Total Spend": 1568.0, "Total Transactions": 36.0, "Total Customers": 26.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214531, 39.956923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "Name": "Green Farm", "Category": "Specialty Food Stores", "Address": "10690 Bustleton Ave", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 320.0, "POI_CBG": 421010357012.0, "Median Dwell Time": 5.0, "Total Spend": 6703.0, "Total Transactions": 227.0, "Total Customers": 174.0, "Median Spend per Transaction": 21.45, "Median Spend per Customer": 32.29 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8f-7dv", "Name": "Risque Video", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4853 James St", "LATITUDE": 40.00855, "LONGITUDE": -75.072772, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 239.0, "POI_CBG": 421010380002.0, "Median Dwell Time": 2.0, "Total Spend": 748.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 156.8, "Median Spend per Customer": 156.8 }, "geometry": { "type": "Point", "coordinates": [ -75.072772, 40.00855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj5-3yv", "Name": "Bravo Seafood", "Category": "Restaurants and Other Eating Places", "Address": "3742 Germantown Ave", "LATITUDE": 40.010478, "LONGITUDE": -75.151556, "DATE_RANGE_START": 2021, "Total Visits": 389.0, "Total Visitors": 270.0, "POI_CBG": 421010201021.0, "Median Dwell Time": 9.0, "Total Spend": 350.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.76, "Median Spend per Customer": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.151556, 40.010478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-p35", "Name": "Fiore Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2608 Kensington Ave", "LATITUDE": 39.989223, "LONGITUDE": -75.127044, "DATE_RANGE_START": 2021, "Total Visits": 179.0, "Total Visitors": 153.0, "POI_CBG": 421010163001.0, "Median Dwell Time": 11.0, "Total Spend": 2529.0, "Total Transactions": 122.0, "Total Customers": 76.0, "Median Spend per Transaction": 17.51, "Median Spend per Customer": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -75.127044, 39.989223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "Name": "Macy's", "Category": "Department Stores", "Address": "2399 Cottman Ave", "LATITUDE": 40.04687, "LONGITUDE": -75.054304, "DATE_RANGE_START": 2021, "Total Visits": 2604.0, "Total Visitors": 2017.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 21.0, "Total Spend": 17142.0, "Total Transactions": 72.0, "Total Customers": 69.0, "Median Spend per Transaction": 104.0, "Median Spend per Customer": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054304, 40.04687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2027 W Oregon Ave", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2021, "Total Visits": 599.0, "Total Visitors": 492.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 3.0, "Total Spend": 164.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 8.56, "Median Spend per Customer": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "Name": "Oyster House", "Category": "Restaurants and Other Eating Places", "Address": "1516 Sansom St", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 294.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 52.0, "Total Spend": 64433.0, "Total Transactions": 599.0, "Total Customers": 537.0, "Median Spend per Transaction": 90.94, "Median Spend per Customer": 99.89 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-y9z", "Name": "The Pet Snobs Boutique", "Category": "Other Miscellaneous Store Retailers", "Address": "606 S 9th St", "LATITUDE": 39.942339, "LONGITUDE": -75.157237, "DATE_RANGE_START": 2021, "Total Visits": 1339.0, "Total Visitors": 888.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 177.0, "Total Spend": 284.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 59.4, "Median Spend per Customer": 59.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157237, 39.942339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "3619 Aramingo Ave", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2021, "Total Visits": 566.0, "Total Visitors": 477.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 5.0, "Total Spend": 16946.0, "Total Transactions": 1115.0, "Total Customers": 871.0, "Median Spend per Transaction": 13.25, "Median Spend per Customer": 15.84 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pj6-6hq", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "300 E Godfrey Ave", "LATITUDE": 40.042687, "LONGITUDE": -75.109486, "DATE_RANGE_START": 2021, "Total Visits": 224.0, "Total Visitors": 86.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 468.0, "Total Spend": 4463.0, "Total Transactions": 64.0, "Total Customers": 60.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 70.94 }, "geometry": { "type": "Point", "coordinates": [ -75.109486, 40.042687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-hnq", "Name": "Stock", "Category": "Restaurants and Other Eating Places", "Address": "1935 Chestnut St", "LATITUDE": 39.952182, "LONGITUDE": -75.173159, "DATE_RANGE_START": 2021, "Total Visits": 4212.0, "Total Visitors": 2685.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 51.0, "Total Spend": 7214.0, "Total Transactions": 84.0, "Total Customers": 45.0, "Median Spend per Transaction": 21.11, "Median Spend per Customer": 62.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173159, 39.952182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm4-mkz", "Name": "Benna's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8th And Wharton St", "LATITUDE": 39.93273, "LONGITUDE": -75.157747, "DATE_RANGE_START": 2021, "Total Visits": 258.0, "Total Visitors": 181.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 6.0, "Total Spend": 43.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 5.79, "Median Spend per Customer": 5.79 }, "geometry": { "type": "Point", "coordinates": [ -75.157747, 39.93273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "Name": "Bardot Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "447 Poplar St", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 158.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 25.0, "Total Spend": 16833.0, "Total Transactions": 370.0, "Total Customers": 232.0, "Median Spend per Transaction": 37.14, "Median Spend per Customer": 52.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22g@63s-dw9-7nq", "Name": "Admirals Club PHL Terminal A West", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8500 Essington Ave", "LATITUDE": 39.894648, "LONGITUDE": -75.229132, "DATE_RANGE_START": 2021, "Total Visits": 1709.0, "Total Visitors": 1415.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 466.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 15.79, "Median Spend per Customer": 15.79 }, "geometry": { "type": "Point", "coordinates": [ -75.229132, 39.894648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1945 Callowhill St", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 224.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 64.0, "Total Spend": 9233.0, "Total Transactions": 1172.0, "Total Customers": 852.0, "Median Spend per Transaction": 6.16, "Median Spend per Customer": 9.08 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-66k", "Name": "Hatch and choop", "Category": "Restaurants and Other Eating Places", "Address": "122 S 12th St", "LATITUDE": 39.94951, "LONGITUDE": -75.160766, "DATE_RANGE_START": 2021, "Total Visits": 907.0, "Total Visitors": 711.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 4.0, "Total Spend": 1805.0, "Total Transactions": 124.0, "Total Customers": 98.0, "Median Spend per Transaction": 12.6, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160766, 39.94951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23c@628-pmf-mrk", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 204", "LATITUDE": 39.952393, "LONGITUDE": -75.168002, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 99.0, "Total Spend": 8284.0, "Total Transactions": 513.0, "Total Customers": 425.0, "Median Spend per Transaction": 13.58, "Median Spend per Customer": 13.91 }, "geometry": { "type": "Point", "coordinates": [ -75.168002, 39.952393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5601 Vine St", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 351.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 7.0, "Total Spend": 8481.0, "Total Transactions": 704.0, "Total Customers": 530.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 11.77 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "710 Adams Ave", "LATITUDE": 40.032391, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2021, "Total Visits": 480.0, "Total Visitors": 422.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 3.0, "Total Spend": 16797.0, "Total Transactions": 1198.0, "Total Customers": 931.0, "Median Spend per Transaction": 11.01, "Median Spend per Customer": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.032391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm9-tn5", "Name": "Cafe Walnut", "Category": "Restaurants and Other Eating Places", "Address": "703 Walnut St", "LATITUDE": 39.948274, "LONGITUDE": -75.152798, "DATE_RANGE_START": 2021, "Total Visits": 1950.0, "Total Visitors": 1370.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 97.0, "Total Spend": 1019.0, "Total Transactions": 126.0, "Total Customers": 95.0, "Median Spend per Transaction": 7.29, "Median Spend per Customer": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.152798, 39.948274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8113 Stenton Ave", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 220.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 1.0, "Total Spend": 9321.0, "Total Transactions": 1169.0, "Total Customers": 718.0, "Median Spend per Transaction": 6.63, "Median Spend per Customer": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnw-nnq", "Name": "Kung Fu Necktie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1250 N Front St", "LATITUDE": 39.970272, "LONGITUDE": -75.135925, "DATE_RANGE_START": 2021, "Total Visits": 468.0, "Total Visitors": 334.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 119.0, "Total Spend": 9043.0, "Total Transactions": 308.0, "Total Customers": 243.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 39.970272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj4-v4v", "Name": "Taqueria La Raza", "Category": "Restaurants and Other Eating Places", "Address": "227 W Allegheny Ave", "LATITUDE": 39.999423, "LONGITUDE": -75.134255, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 39.0, "Total Spend": 715.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 35.49, "Median Spend per Customer": 35.49 }, "geometry": { "type": "Point", "coordinates": [ -75.134255, 39.999423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp5-7dv", "Name": "Martha", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2113 E York St", "LATITUDE": 39.982345, "LONGITUDE": -75.128218, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 98.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 63.0, "Total Spend": 24236.0, "Total Transactions": 446.0, "Total Customers": 408.0, "Median Spend per Transaction": 46.8, "Median Spend per Customer": 50.4 }, "geometry": { "type": "Point", "coordinates": [ -75.128218, 39.982345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-wkz", "Name": "Sassafras Bar", "Category": "Restaurants and Other Eating Places", "Address": "48 S 2nd St", "LATITUDE": 39.948812, "LONGITUDE": -75.144182, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 372.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 27.0, "Total Spend": 4159.0, "Total Transactions": 67.0, "Total Customers": 60.0, "Median Spend per Transaction": 58.8, "Median Spend per Customer": 66.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144182, 39.948812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnw-mzf", "Name": "The Foodery", "Category": "Restaurants and Other Eating Places", "Address": "837 N 2nd St", "LATITUDE": 39.963893, "LONGITUDE": -75.14043, "DATE_RANGE_START": 2021, "Total Visits": 1053.0, "Total Visitors": 778.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 220.0, "Total Spend": 9425.0, "Total Transactions": 706.0, "Total Customers": 279.0, "Median Spend per Transaction": 7.76, "Median Spend per Customer": 26.44 }, "geometry": { "type": "Point", "coordinates": [ -75.14043, 39.963893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-73q", "Name": "Dr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.947797, "LONGITUDE": -75.193456, "DATE_RANGE_START": 2021, "Total Visits": 18897.0, "Total Visitors": 9649.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 127.0, "Total Spend": 5712.0, "Total Transactions": 1158.0, "Total Customers": 527.0, "Median Spend per Transaction": 4.2, "Median Spend per Customer": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193456, 39.947797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-89z", "Name": "Dasiwa", "Category": "Restaurants and Other Eating Places", "Address": "735 N 26th St", "LATITUDE": 39.969169, "LONGITUDE": -75.179702, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010136012.0, "Median Dwell Time": null, "Total Spend": 6016.0, "Total Transactions": 131.0, "Total Customers": 100.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 42.77 }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.969169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "Name": "Tavares Grocery", "Category": "Grocery Stores", "Address": "364 E Chelten Ave", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 26.0, "POI_CBG": 421010247005.0, "Median Dwell Time": 5.0, "Total Spend": 145.0, "Total Transactions": 19.0, "Total Customers": 7.0, "Median Spend per Transaction": 7.63, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-w49", "Name": "The Bakeshop on 20th", "Category": "Restaurants and Other Eating Places", "Address": "269 S 20th St", "LATITUDE": 39.948428, "LONGITUDE": -75.174139, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 26.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 55.0, "Total Spend": 490.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 17.76, "Median Spend per Customer": 17.76 }, "geometry": { "type": "Point", "coordinates": [ -75.174139, 39.948428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "Name": "Cook and Shaker", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Albert St", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 29.0, "POI_CBG": 421010160001.0, "Median Dwell Time": 1381.0, "Total Spend": 10804.0, "Total Transactions": 227.0, "Total Customers": 155.0, "Median Spend per Transaction": 42.46, "Median Spend per Customer": 55.4 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.991684, "LONGITUDE": -75.154551, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 29.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 1.0, "Total Spend": 1371.0, "Total Transactions": 115.0, "Total Customers": 103.0, "Median Spend per Transaction": 8.85, "Median Spend per Customer": 8.93 }, "geometry": { "type": "Point", "coordinates": [ -75.154551, 39.991684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgf-6zf", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "4034 Lancaster Ave", "LATITUDE": 39.963777, "LONGITUDE": -75.203645, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 53.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 4.0, "Total Spend": 7203.0, "Total Transactions": 57.0, "Total Customers": 50.0, "Median Spend per Transaction": 97.0, "Median Spend per Customer": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203645, 39.963777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "Name": "Monster Pets", "Category": "Other Miscellaneous Store Retailers", "Address": "1946 S Columbus Blvd", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2021, "Total Visits": 675.0, "Total Visitors": 504.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 9.0, "Total Spend": 1108.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 38.97, "Median Spend per Customer": 38.97 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p8t-6kz", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4301 Byberry Rd", "LATITUDE": 40.083264, "LONGITUDE": -74.962395, "DATE_RANGE_START": 2021, "Total Visits": 13523.0, "Total Visitors": 8387.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 26.0, "Total Spend": 417114.0, "Total Transactions": 7551.0, "Total Customers": 4396.0, "Median Spend per Transaction": 31.78, "Median Spend per Customer": 51.31 }, "geometry": { "type": "Point", "coordinates": [ -74.962395, 40.083264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph8-q75", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7564 Haverford Ave", "LATITUDE": 39.978744, "LONGITUDE": -75.268394, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 64.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 45.0, "Total Spend": 963.0, "Total Transactions": 38.0, "Total Customers": 24.0, "Median Spend per Transaction": 17.49, "Median Spend per Customer": 28.89 }, "geometry": { "type": "Point", "coordinates": [ -75.268394, 39.978744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-rzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895169, "LONGITUDE": -75.227984, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 723.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 87.83, "Median Spend per Customer": 87.83 }, "geometry": { "type": "Point", "coordinates": [ -75.227984, 39.895169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-5s5", "Name": "Halal Gyro King", "Category": "Restaurants and Other Eating Places", "Address": "1 S 12th St", "LATITUDE": 39.951797, "LONGITUDE": -75.15974, "DATE_RANGE_START": 2021, "Total Visits": 5444.0, "Total Visitors": 3573.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 67.0, "Total Spend": 4707.0, "Total Transactions": 327.0, "Total Customers": 76.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15974, 39.951797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3110 W Cheltenham Ave", "LATITUDE": 40.081002, "LONGITUDE": -75.170911, "DATE_RANGE_START": 2021, "Total Visits": 394.0, "Total Visitors": 339.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 5.0, "Total Spend": 11008.0, "Total Transactions": 702.0, "Total Customers": 599.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.170911, 40.081002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5601 Vine St # 55", "LATITUDE": 39.966061, "LONGITUDE": -75.233588, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 222.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 8.0, "Total Spend": 29217.0, "Total Transactions": 628.0, "Total Customers": 353.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233588, 39.966061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7913 Oxford Ave # 29", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2021, "Total Visits": 1160.0, "Total Visitors": 768.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 2.0, "Total Spend": 115779.0, "Total Transactions": 6656.0, "Total Customers": 2921.0, "Median Spend per Transaction": 12.06, "Median Spend per Customer": 25.08 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "Name": "Beer Baron", "Category": "Beer, Wine, and Liquor Stores", "Address": "3290 Red Lion Rd", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2021, "Total Visits": 2000.0, "Total Visitors": 1062.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 9.0, "Total Spend": 17428.0, "Total Transactions": 496.0, "Total Customers": 265.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 40.48 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7241 Torresdale Ave", "LATITUDE": 40.029702, "LONGITUDE": -75.035384, "DATE_RANGE_START": 2021, "Total Visits": 1568.0, "Total Visitors": 1134.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 4.0, "Total Spend": 752.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035384, 40.029702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2014 S Broad St", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2021, "Total Visits": 1239.0, "Total Visitors": 749.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 13.0, "Total Spend": 8020.0, "Total Transactions": 430.0, "Total Customers": 243.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 20.23 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "Name": "Ross Stores", "Category": "Department Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.912498, "LONGITUDE": -75.15633, "DATE_RANGE_START": 2021, "Total Visits": 1408.0, "Total Visitors": 1165.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 21.0, "Total Spend": 9950.0, "Total Transactions": 181.0, "Total Customers": 150.0, "Median Spend per Transaction": 33.78, "Median Spend per Customer": 34.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15633, 39.912498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-rhq", "Name": "Singh Tire Center", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "240 Diamond St", "LATITUDE": 39.982111, "LONGITUDE": -75.138488, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010156001.0, "Median Dwell Time": 4.0, "Total Spend": 668.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 47.5, "Median Spend per Customer": 47.5 }, "geometry": { "type": "Point", "coordinates": [ -75.138488, 39.982111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgj-c5z", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1511 Cecil B Moore Ave", "LATITUDE": 39.979163, "LONGITUDE": -75.160092, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 177.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 162.0, "Total Spend": 5210.0, "Total Transactions": 432.0, "Total Customers": 243.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.160092, 39.979163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pgh-v2k", "Name": "Crown Chicken and Biscuit", "Category": "Restaurants and Other Eating Places", "Address": "2201 N Broad St", "LATITUDE": 39.986364, "LONGITUDE": -75.1559, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 191.0, "POI_CBG": 421010166002.0, "Median Dwell Time": 109.0, "Total Spend": 241.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 10.42 }, "geometry": { "type": "Point", "coordinates": [ -75.1559, 39.986364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pm5-bzf", "Name": "Mr Wish USA", "Category": "Restaurants and Other Eating Places", "Address": "320 W Oregon Ave", "LATITUDE": 39.912953, "LONGITUDE": -75.153917, "DATE_RANGE_START": 2021, "Total Visits": 227.0, "Total Visitors": 203.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 8.0, "Total Spend": 706.0, "Total Transactions": 60.0, "Total Customers": 50.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.912953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pmb-ghq", "Name": "Alexander Inn", "Category": "Traveler Accommodation", "Address": "301 S 12th St", "LATITUDE": 39.946221, "LONGITUDE": -75.161018, "DATE_RANGE_START": 2021, "Total Visits": 1036.0, "Total Visitors": 625.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 340.0, "Total Spend": 2158.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 179.05, "Median Spend per Customer": 179.05 }, "geometry": { "type": "Point", "coordinates": [ -75.161018, 39.946221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjj-wzf", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9101 Ridge Ave # 15", "LATITUDE": 40.073365, "LONGITUDE": -75.241949, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 155.0, "POI_CBG": 421010384001.0, "Median Dwell Time": 10.0, "Total Spend": 9429.0, "Total Transactions": 50.0, "Total Customers": 45.0, "Median Spend per Transaction": 115.52, "Median Spend per Customer": 144.75 }, "geometry": { "type": "Point", "coordinates": [ -75.241949, 40.073365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-2hq", "Name": "Venus Video", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "6307 Passyunk Ave", "LATITUDE": 39.917066, "LONGITUDE": -75.216791, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 315.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 17.0, "Total Spend": 6665.0, "Total Transactions": 110.0, "Total Customers": 107.0, "Median Spend per Transaction": 51.0, "Median Spend per Customer": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216791, 39.917066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "Name": "Saks Off Fifth", "Category": "Department Stores", "Address": "1618 Franklin Mills Cir", "LATITUDE": 40.088158, "LONGITUDE": -74.961632, "DATE_RANGE_START": 2021, "Total Visits": 1425.0, "Total Visitors": 1115.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 22.0, "Total Spend": 48136.0, "Total Transactions": 282.0, "Total Customers": 260.0, "Median Spend per Transaction": 83.98, "Median Spend per Customer": 84.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961632, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6201 N Front St", "LATITUDE": 40.045678, "LONGITUDE": -75.11816, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 146.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 8.0, "Total Spend": 1110.0, "Total Transactions": 74.0, "Total Customers": 60.0, "Median Spend per Transaction": 10.95, "Median Spend per Customer": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.11816, 40.045678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-tvz", "Name": "Material Culture", "Category": "Used Merchandise Stores", "Address": "4700 Wissahickon Ave Ste 101", "LATITUDE": 40.01529, "LONGITUDE": -75.173584, "DATE_RANGE_START": 2021, "Total Visits": 768.0, "Total Visitors": 437.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 85.0, "Total Spend": 2361.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 78.84, "Median Spend per Customer": 82.08 }, "geometry": { "type": "Point", "coordinates": [ -75.173584, 40.01529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1032 Pine St", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2021, "Total Visits": 967.0, "Total Visitors": 711.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 313.0, "Total Spend": 25356.0, "Total Transactions": 663.0, "Total Customers": 599.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912981, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 5906.0, "Total Transactions": 103.0, "Total Customers": 84.0, "Median Spend per Transaction": 43.19, "Median Spend per Customer": 48.59 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.912981 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9240 State Rd", "LATITUDE": 40.047033, "LONGITUDE": -74.993404, "DATE_RANGE_START": 2021, "Total Visits": 394.0, "Total Visitors": 277.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 2.0, "Total Spend": 3847.0, "Total Transactions": 518.0, "Total Customers": 274.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -74.993404, 40.047033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9k-jvz", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9880 Roosevelt Blvd", "LATITUDE": 40.093114, "LONGITUDE": -75.019569, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 177.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 8.0, "Total Spend": 4698.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 74.01, "Median Spend per Customer": 74.01 }, "geometry": { "type": "Point", "coordinates": [ -75.019569, 40.093114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "10901C Bustleton Ave", "LATITUDE": 40.112307, "LONGITUDE": -75.022895, "DATE_RANGE_START": 2021, "Total Visits": 938.0, "Total Visitors": 723.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 5.0, "Total Spend": 6471.0, "Total Transactions": 322.0, "Total Customers": 251.0, "Median Spend per Transaction": 12.97, "Median Spend per Customer": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.022895, 40.112307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-835", "Name": "Luhv Vegan Deli", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953213, "LONGITUDE": -75.159384, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 2178.0, "Total Transactions": 141.0, "Total Customers": 129.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -75.159384, 39.953213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-6hq", "Name": "Wrap Shack", "Category": "Restaurants and Other Eating Places", "Address": "112 S 11th St", "LATITUDE": 39.949717, "LONGITUDE": -75.158951, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 284.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 52.0, "Total Spend": 5565.0, "Total Transactions": 112.0, "Total Customers": 91.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 38.75 }, "geometry": { "type": "Point", "coordinates": [ -75.158951, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "Name": "So Korean Grill", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St Ste 120", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2021, "Total Visits": 1277.0, "Total Visitors": 983.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 20.0, "Total Spend": 11539.0, "Total Transactions": 103.0, "Total Customers": 88.0, "Median Spend per Transaction": 96.0, "Median Spend per Customer": 96.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "Name": "Hatville Deli", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2021, "Total Visits": 508.0, "Total Visitors": 487.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 1782.0, "Total Transactions": 143.0, "Total Customers": 126.0, "Median Spend per Transaction": 10.99, "Median Spend per Customer": 12.52 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8n5", "Name": "Kai Japanese Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "12 S 10th St", "LATITUDE": 39.950968, "LONGITUDE": -75.157061, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 124.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 3494.0, "Total Transactions": 98.0, "Total Customers": 74.0, "Median Spend per Transaction": 22.28, "Median Spend per Customer": 34.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157061, 39.950968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "Name": "Mariposa Food Co op", "Category": "Grocery Stores", "Address": "4824 Baltimore Ave", "LATITUDE": 39.947933, "LONGITUDE": -75.220657, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 81.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 8.0, "Total Spend": 78553.0, "Total Transactions": 2387.0, "Total Customers": 990.0, "Median Spend per Transaction": 25.6, "Median Spend per Customer": 45.05 }, "geometry": { "type": "Point", "coordinates": [ -75.220657, 39.947933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-28v", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1717 N 12th St", "LATITUDE": 39.978491, "LONGITUDE": -75.153508, "DATE_RANGE_START": 2021, "Total Visits": 757.0, "Total Visitors": 442.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 40.0, "Total Spend": 22668.0, "Total Transactions": 1566.0, "Total Customers": 871.0, "Median Spend per Transaction": 9.62, "Median Spend per Customer": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.978491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-j35", "Name": "18th Street Apothecary", "Category": "Health and Personal Care Stores", "Address": "113 S 18th St", "LATITUDE": 39.951252, "LONGITUDE": -75.170272, "DATE_RANGE_START": 2021, "Total Visits": 413.0, "Total Visitors": 356.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 5.0, "Total Spend": 370.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 26.79 }, "geometry": { "type": "Point", "coordinates": [ -75.170272, 39.951252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "Name": "Express Fuel", "Category": "Gasoline Stations", "Address": "5201 Oxford Ave", "LATITUDE": 40.026572, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 158.0, "POI_CBG": 421010302004.0, "Median Dwell Time": 4.0, "Total Spend": 7652.0, "Total Transactions": 384.0, "Total Customers": 255.0, "Median Spend per Transaction": 16.61, "Median Spend per Customer": 25.09 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "Name": "Victoria's Secret", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.090585, "LONGITUDE": -74.961564, "DATE_RANGE_START": 2021, "Total Visits": 494.0, "Total Visitors": 399.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 32.0, "Total Spend": 4313.0, "Total Transactions": 60.0, "Total Customers": 48.0, "Median Spend per Transaction": 42.96, "Median Spend per Customer": 41.46 }, "geometry": { "type": "Point", "coordinates": [ -74.961564, 40.090585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "Name": "Urban Outfitters", "Category": "Clothing Stores", "Address": "1627 Walnut St", "LATITUDE": 39.950066, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2021, "Total Visits": 666.0, "Total Visitors": 601.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 12.0, "Total Spend": 28609.0, "Total Transactions": 494.0, "Total Customers": 456.0, "Median Spend per Transaction": 47.27, "Median Spend per Customer": 49.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "Name": "LIDS", "Category": "Clothing Stores", "Address": "1301 Franklin Mills Cir", "LATITUDE": 40.085593, "LONGITUDE": -74.962215, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 81.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 8187.0, "Total Transactions": 172.0, "Total Customers": 167.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962215, 40.085593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044593, "LONGITUDE": -75.101222, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 126.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 395.0, "Total Spend": 395.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 16.12, "Median Spend per Customer": 16.16 }, "geometry": { "type": "Point", "coordinates": [ -75.101222, 40.044593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "Name": "Navy Exchange", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 Robbins St Bldg NO5", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2021, "Total Visits": 296.0, "Total Visitors": 91.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 272.0, "Total Spend": 12554.0, "Total Transactions": 327.0, "Total Customers": 179.0, "Median Spend per Transaction": 8.35, "Median Spend per Customer": 24.97 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pmb-c3q", "Name": "Kin Boutique", "Category": "Clothing Stores", "Address": "1010 Pine St", "LATITUDE": 39.944553, "LONGITUDE": -75.158728, "DATE_RANGE_START": 2021, "Total Visits": 967.0, "Total Visitors": 711.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 313.0, "Total Spend": 8336.0, "Total Transactions": 57.0, "Total Customers": 55.0, "Median Spend per Transaction": 96.5, "Median Spend per Customer": 98.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158728, 39.944553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-z75", "Name": "LL Flooring", "Category": "Home Furnishings Stores", "Address": "10500 Roosevelt Blvd", "LATITUDE": 40.099015, "LONGITUDE": -75.011125, "DATE_RANGE_START": 2021, "Total Visits": 179.0, "Total Visitors": 112.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 120.0, "Total Spend": 7037.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 762.77, "Median Spend per Customer": 1112.36 }, "geometry": { "type": "Point", "coordinates": [ -75.011125, 40.099015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1900 Welsh Rd # 10", "LATITUDE": 40.08189, "LONGITUDE": -75.037804, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 193.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 5.0, "Total Spend": 162.0, "Total Transactions": 24.0, "Total Customers": 17.0, "Median Spend per Transaction": 5.3, "Median Spend per Customer": 12.53 }, "geometry": { "type": "Point", "coordinates": [ -75.037804, 40.08189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-hbk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2121 W Lehigh Ave Ste 5", "LATITUDE": 39.996353, "LONGITUDE": -75.165984, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 112.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 11.0, "Total Spend": 3636.0, "Total Transactions": 172.0, "Total Customers": 117.0, "Median Spend per Transaction": 15.07, "Median Spend per Customer": 22.87 }, "geometry": { "type": "Point", "coordinates": [ -75.165984, 39.996353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-jd9", "Name": "The Children's Boutique", "Category": "Clothing Stores", "Address": "128 S 17th St", "LATITUDE": 39.950539, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2021, "Total Visits": 797.0, "Total Visitors": 697.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 8.0, "Total Spend": 1346.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 67.48, "Median Spend per Customer": 67.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "929 South St", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2021, "Total Visits": 1723.0, "Total Visitors": 1029.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 22.0, "Total Spend": 92764.0, "Total Transactions": 2408.0, "Total Customers": 1024.0, "Median Spend per Transaction": 27.05, "Median Spend per Customer": 53.21 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1700 W Cheltenham Ave", "LATITUDE": 40.065814, "LONGITUDE": -75.144222, "DATE_RANGE_START": 2021, "Total Visits": 575.0, "Total Visitors": 439.0, "POI_CBG": 421010266001.0, "Median Dwell Time": 4.0, "Total Spend": 816.0, "Total Transactions": 31.0, "Total Customers": 26.0, "Median Spend per Transaction": 26.48, "Median Spend per Customer": 26.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144222, 40.065814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-hwk", "Name": "The Men's Wearhouse", "Category": "Clothing Stores", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079413, "LONGITUDE": -75.029146, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 84.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 273.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 57.23, "Median Spend per Customer": 57.23 }, "geometry": { "type": "Point", "coordinates": [ -75.029146, 40.079413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kcq", "Name": "Silver Legends", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "2008 Walnut St", "LATITUDE": 39.950384, "LONGITUDE": -75.174268, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 126.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 27.0, "Total Spend": 496.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 38.0, "Median Spend per Customer": 104.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174268, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2800 Fox St", "LATITUDE": 40.008742, "LONGITUDE": -75.17653, "DATE_RANGE_START": 2021, "Total Visits": 924.0, "Total Visitors": 585.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 26.0, "Total Spend": 11516.0, "Total Transactions": 260.0, "Total Customers": 222.0, "Median Spend per Transaction": 30.97, "Median Spend per Customer": 36.36 }, "geometry": { "type": "Point", "coordinates": [ -75.17653, 40.008742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5700 Oxford Ave", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 122.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 5.0, "Total Spend": 395.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 17.43, "Median Spend per Customer": 15.21 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "Name": "Roses Florist", "Category": "Florists", "Address": "3551 Chestnut St", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2021, "Total Visits": 783.0, "Total Visitors": 461.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 260.0, "Total Spend": 825.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 29.69, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2539 Castor Ave", "LATITUDE": 39.991689, "LONGITUDE": -75.090963, "DATE_RANGE_START": 2021, "Total Visits": 3709.0, "Total Visitors": 2191.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 17.0, "Total Spend": 116374.0, "Total Transactions": 974.0, "Total Customers": 589.0, "Median Spend per Transaction": 48.55, "Median Spend per Customer": 58.26 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 39.991689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pj6-k4v", "Name": "H Mart", "Category": "Grocery Stores", "Address": "6201 N Front St", "LATITUDE": 40.044993, "LONGITUDE": -75.117488, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 21.0, "Total Spend": 135050.0, "Total Transactions": 2504.0, "Total Customers": 1792.0, "Median Spend per Transaction": 33.69, "Median Spend per Customer": 47.7 }, "geometry": { "type": "Point", "coordinates": [ -75.117488, 40.044993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "Name": "Evergreen Deli", "Category": "Grocery Stores", "Address": "46 S 4th St", "LATITUDE": 39.949185, "LONGITUDE": -75.147628, "DATE_RANGE_START": 2021, "Total Visits": 1532.0, "Total Visitors": 1253.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 6.0, "Total Spend": 6343.0, "Total Transactions": 630.0, "Total Customers": 229.0, "Median Spend per Transaction": 9.74, "Median Spend per Customer": 17.33 }, "geometry": { "type": "Point", "coordinates": [ -75.147628, 39.949185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "490 N Broad St", "LATITUDE": 39.962319, "LONGITUDE": -75.162376, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 131.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 222.0, "Total Spend": 19551.0, "Total Transactions": 1141.0, "Total Customers": 616.0, "Median Spend per Transaction": 12.32, "Median Spend per Customer": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.162376, 39.962319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1924 Fairmount Ave", "LATITUDE": 39.967006, "LONGITUDE": -75.169701, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 229.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 7.0, "Total Spend": 65898.0, "Total Transactions": 4446.0, "Total Customers": 2160.0, "Median Spend per Transaction": 10.49, "Median Spend per Customer": 16.65 }, "geometry": { "type": "Point", "coordinates": [ -75.169701, 39.967006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-fvf", "Name": "Jennifer Grocery", "Category": "Grocery Stores", "Address": "4824 Chester Ave", "LATITUDE": 39.944398, "LONGITUDE": -75.216558, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 26.0, "POI_CBG": 421010078002.0, "Median Dwell Time": 7.0, "Total Spend": 518.0, "Total Transactions": 50.0, "Total Customers": 43.0, "Median Spend per Transaction": 9.98, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.216558, 39.944398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgd-xdv", "Name": "Smoked and Chopped", "Category": "Specialty Food Stores", "Address": "3300 Fairmount Ave", "LATITUDE": 39.96613, "LONGITUDE": -75.191051, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 26.0, "POI_CBG": 421010109001.0, "Median Dwell Time": 14.0, "Total Spend": 468.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 43.5, "Median Spend per Customer": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.191051, 39.96613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-kmk", "Name": "Philly Sunnyside Diner", "Category": "Restaurants and Other Eating Places", "Address": "2801 W Girard Ave", "LATITUDE": 39.974534, "LONGITUDE": -75.181976, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 29.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 12.0, "Total Spend": 1108.0, "Total Transactions": 62.0, "Total Customers": 48.0, "Median Spend per Transaction": 13.34, "Median Spend per Customer": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.181976, 39.974534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "Name": "Trattoria Carina", "Category": "Restaurants and Other Eating Places", "Address": "2201 Spruce St", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010008011.0, "Median Dwell Time": 1.0, "Total Spend": 4094.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 110.89, "Median Spend per Customer": 110.89 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-t7q", "Name": "Maria's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4058 N 5th St", "LATITUDE": 40.013401, "LONGITUDE": -75.135844, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010197002.0, "Median Dwell Time": 1.0, "Total Spend": 2333.0, "Total Transactions": 107.0, "Total Customers": 79.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135844, 40.013401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "Name": "Monde Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "100 S 21st St", "LATITUDE": 39.952049, "LONGITUDE": -75.175756, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 379.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 3.0, "Total Spend": 20480.0, "Total Transactions": 1329.0, "Total Customers": 656.0, "Median Spend per Transaction": 12.56, "Median Spend per Customer": 19.22 }, "geometry": { "type": "Point", "coordinates": [ -75.175756, 39.952049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-ks5", "Name": "Oxford Pharmacy", "Category": "Health and Personal Care Stores", "Address": "3254 N Front St", "LATITUDE": 39.999792, "LONGITUDE": -75.129213, "DATE_RANGE_START": 2021, "Total Visits": 501.0, "Total Visitors": 205.0, "POI_CBG": 421010195013.0, "Median Dwell Time": 453.0, "Total Spend": 655.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 31.58, "Median Spend per Customer": 31.58 }, "geometry": { "type": "Point", "coordinates": [ -75.129213, 39.999792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "8828 Frankford Ave", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2021, "Total Visits": 477.0, "Total Visitors": 391.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 7.0, "Total Spend": 2735.0, "Total Transactions": 153.0, "Total Customers": 126.0, "Median Spend per Transaction": 14.63, "Median Spend per Customer": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmd-tvz", "Name": "The Indie Shelf", "Category": "Health and Personal Care Stores", "Address": "2247 Grays Ferry Ave", "LATITUDE": 39.944748, "LONGITUDE": -75.180225, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 158.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 6.0, "Total Spend": 1036.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 71.61, "Median Spend per Customer": 71.61 }, "geometry": { "type": "Point", "coordinates": [ -75.180225, 39.944748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-228@628-pgb-4vz", "Name": "Localhost", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "401 N Broad St", "LATITUDE": 39.959817, "LONGITUDE": -75.161134, "DATE_RANGE_START": 2021, "Total Visits": 542.0, "Total Visitors": 286.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 278.0, "Total Spend": 102.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 21.32, "Median Spend per Customer": 21.32 }, "geometry": { "type": "Point", "coordinates": [ -75.161134, 39.959817 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgh-cwk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1925 W Allegheny Ave", "LATITUDE": 40.003103, "LONGITUDE": -75.162138, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 86.0, "POI_CBG": 421010202001.0, "Median Dwell Time": 5.0, "Total Spend": 229.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 10.4, "Median Spend per Customer": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.162138, 40.003103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3668 Aramingo Ave Ste 9A", "LATITUDE": 39.995094, "LONGITUDE": -75.095646, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 305.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 5.0, "Total Spend": 352.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 10.7, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 39.995094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3366 Grant Ave", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2021, "Total Visits": 1470.0, "Total Visitors": 945.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 7.0, "Total Spend": 596.0, "Total Transactions": 33.0, "Total Customers": 21.0, "Median Spend per Transaction": 15.54, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp4-kfz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2459 Kensington Ave", "LATITUDE": 39.987233, "LONGITUDE": -75.129676, "DATE_RANGE_START": 2021, "Total Visits": 351.0, "Total Visitors": 234.0, "POI_CBG": 421010161004.0, "Median Dwell Time": 8.0, "Total Spend": 989.0, "Total Transactions": 72.0, "Total Customers": 43.0, "Median Spend per Transaction": 10.48, "Median Spend per Customer": 16.34 }, "geometry": { "type": "Point", "coordinates": [ -75.129676, 39.987233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "Name": "Bottle Bar East", "Category": "Restaurants and Other Eating Places", "Address": "1308 Frankford Ave", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 74.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 29.0, "Total Spend": 39266.0, "Total Transactions": 1387.0, "Total Customers": 933.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-3yv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4701 N Mascher St", "LATITUDE": 40.022096, "LONGITUDE": -75.125775, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 224.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 3.0, "Total Spend": 2415.0, "Total Transactions": 72.0, "Total Customers": 60.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.125775, 40.022096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "164 W Chelten Ave", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2021, "Total Visits": 1141.0, "Total Visitors": 601.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 41.0, "Total Spend": 25563.0, "Total Transactions": 1246.0, "Total Customers": 556.0, "Median Spend per Transaction": 13.63, "Median Spend per Customer": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "2800 Fox St Ste 110 Unit D", "LATITUDE": 40.008773, "LONGITUDE": -75.176588, "DATE_RANGE_START": 2021, "Total Visits": 924.0, "Total Visitors": 585.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 26.0, "Total Spend": 114322.0, "Total Transactions": 1747.0, "Total Customers": 1129.0, "Median Spend per Transaction": 45.85, "Median Spend per Customer": 33.45 }, "geometry": { "type": "Point", "coordinates": [ -75.176588, 40.008773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4001 Woodhaven Rd", "LATITUDE": 40.087401, "LONGITUDE": -74.970519, "DATE_RANGE_START": 2021, "Total Visits": 1649.0, "Total Visitors": 1184.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 1932.0, "Total Transactions": 50.0, "Total Customers": 41.0, "Median Spend per Transaction": 30.82, "Median Spend per Customer": 43.74 }, "geometry": { "type": "Point", "coordinates": [ -74.970519, 40.087401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8m-b8v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5807 Torresdale Ave", "LATITUDE": 40.016255, "LONGITUDE": -75.061394, "DATE_RANGE_START": 2021, "Total Visits": 504.0, "Total Visitors": 158.0, "POI_CBG": 421010321001.0, "Median Dwell Time": 459.0, "Total Spend": 869.0, "Total Transactions": 57.0, "Total Customers": 36.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 13.54 }, "geometry": { "type": "Point", "coordinates": [ -75.061394, 40.016255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j9z", "Name": "Rouge", "Category": "Restaurants and Other Eating Places", "Address": "205 S 18th St", "LATITUDE": 39.949689, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 191.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 174.0, "Total Spend": 13601.0, "Total Transactions": 153.0, "Total Customers": 141.0, "Median Spend per Transaction": 64.94, "Median Spend per Customer": 68.25 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.949689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pnw-w8v", "Name": "Roar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "939 N Delaware Ave", "LATITUDE": 39.963353, "LONGITUDE": -75.1353, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 255.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 60.0, "Total Spend": 37796.0, "Total Transactions": 437.0, "Total Customers": 270.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1353, 39.963353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-hnq", "Name": "The Ranstead Room", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2013 Ranstead St", "LATITUDE": 39.952421, "LONGITUDE": -75.173819, "DATE_RANGE_START": 2021, "Total Visits": 2814.0, "Total Visitors": 1690.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 100.0, "Total Spend": 8284.0, "Total Transactions": 129.0, "Total Customers": 119.0, "Median Spend per Transaction": 52.66, "Median Spend per Customer": 53.33 }, "geometry": { "type": "Point", "coordinates": [ -75.173819, 39.952421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9w-q4v", "Name": "Cafe Michelangelo", "Category": "Restaurants and Other Eating Places", "Address": "11901 Bustleton Ave", "LATITUDE": 40.12143, "LONGITUDE": -75.016007, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 346.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 48.0, "Total Spend": 7812.0, "Total Transactions": 103.0, "Total Customers": 91.0, "Median Spend per Transaction": 44.28, "Median Spend per Customer": 65.13 }, "geometry": { "type": "Point", "coordinates": [ -75.016007, 40.12143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "Name": "Anastasi Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1039 S 9th St", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 167.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 16.0, "Total Spend": 27211.0, "Total Transactions": 406.0, "Total Customers": 334.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 56.34 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "Name": "Nom Nom Ramen", "Category": "Restaurants and Other Eating Places", "Address": "20 S 18th St", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 110.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 103.0, "Total Spend": 3001.0, "Total Transactions": 95.0, "Total Customers": 88.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 33.92 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j7q", "Name": "The Dandelion", "Category": "Restaurants and Other Eating Places", "Address": "124 S 18th St", "LATITUDE": 39.951011, "LONGITUDE": -75.170702, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 282.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 40.0, "Total Spend": 2834.0, "Total Transactions": 31.0, "Total Customers": 31.0, "Median Spend per Transaction": 93.42, "Median Spend per Customer": 93.42 }, "geometry": { "type": "Point", "coordinates": [ -75.170702, 39.951011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-3wk", "Name": "Cavanaughs Headhouse", "Category": "Restaurants and Other Eating Places", "Address": "421 S 2nd St", "LATITUDE": 39.942292, "LONGITUDE": -75.144972, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 370.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 8.0, "Total Spend": 8955.0, "Total Transactions": 193.0, "Total Customers": 141.0, "Median Spend per Transaction": 29.75, "Median Spend per Customer": 47.69 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 39.942292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-tn5", "Name": "Fat Salmon Sushi", "Category": "Restaurants and Other Eating Places", "Address": "719 Walnut St", "LATITUDE": 39.948136, "LONGITUDE": -75.153395, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 79.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 114.0, "Total Spend": 12248.0, "Total Transactions": 189.0, "Total Customers": 162.0, "Median Spend per Transaction": 58.46, "Median Spend per Customer": 70.11 }, "geometry": { "type": "Point", "coordinates": [ -75.153395, 39.948136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2021, "Total Visits": 95.0, "Total Visitors": 93.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 2.0, "Total Spend": 737.0, "Total Transactions": 43.0, "Total Customers": 38.0, "Median Spend per Transaction": 16.28, "Median Spend per Customer": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-zmk", "Name": "Colney Deli", "Category": "Restaurants and Other Eating Places", "Address": "5610 N 5th St", "LATITUDE": 40.036792, "LONGITUDE": -75.130653, "DATE_RANGE_START": 2021, "Total Visits": 1115.0, "Total Visitors": 523.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 314.0, "Total Spend": 3904.0, "Total Transactions": 193.0, "Total Customers": 129.0, "Median Spend per Transaction": 17.4, "Median Spend per Customer": 19.18 }, "geometry": { "type": "Point", "coordinates": [ -75.130653, 40.036792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "Name": "Scoop Deville", "Category": "Restaurants and Other Eating Places", "Address": "1315 Walnut St", "LATITUDE": 39.949429, "LONGITUDE": -75.162851, "DATE_RANGE_START": 2021, "Total Visits": 375.0, "Total Visitors": 303.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 20.0, "Total Spend": 4664.0, "Total Transactions": 372.0, "Total Customers": 258.0, "Median Spend per Transaction": 10.49, "Median Spend per Customer": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -75.162851, 39.949429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmb-xyv", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "216 N 10th St", "LATITUDE": 39.955915, "LONGITUDE": -75.155905, "DATE_RANGE_START": 2021, "Total Visits": 396.0, "Total Visitors": 332.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 886.0, "Total Transactions": 93.0, "Total Customers": 91.0, "Median Spend per Transaction": 7.33, "Median Spend per Customer": 7.23 }, "geometry": { "type": "Point", "coordinates": [ -75.155905, 39.955915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 24718.0, "Total Transactions": 387.0, "Total Customers": 370.0, "Median Spend per Transaction": 53.56, "Median Spend per Customer": 54.39 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "Name": "Moonlight Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "6834 Limekiln Pike", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 129.0, "POI_CBG": 421010265004.0, "Median Dwell Time": 27.0, "Total Spend": 4021.0, "Total Transactions": 124.0, "Total Customers": 81.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-xnq", "Name": "Dae Bak", "Category": "Restaurants and Other Eating Places", "Address": "1016 Race St Fl 2", "LATITUDE": 39.955289, "LONGITUDE": -75.156637, "DATE_RANGE_START": 2021, "Total Visits": 4088.0, "Total Visitors": 3143.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 6604.0, "Total Transactions": 107.0, "Total Customers": 100.0, "Median Spend per Transaction": 41.72, "Median Spend per Customer": 50.83 }, "geometry": { "type": "Point", "coordinates": [ -75.156637, 39.955289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-54v", "Name": "Tyson Bees", "Category": "Restaurants and Other Eating Places", "Address": "Spruce St & S 33rd St", "LATITUDE": 39.950018, "LONGITUDE": -75.191759, "DATE_RANGE_START": 2021, "Total Visits": 11031.0, "Total Visitors": 6496.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 96.0, "Total Spend": 6694.0, "Total Transactions": 294.0, "Total Customers": 189.0, "Median Spend per Transaction": 20.02, "Median Spend per Customer": 27.95 }, "geometry": { "type": "Point", "coordinates": [ -75.191759, 39.950018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmf-n5z", "Name": "Di Bruno Bros", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd", "LATITUDE": 39.954896, "LONGITUDE": -75.168695, "DATE_RANGE_START": 2021, "Total Visits": 1539.0, "Total Visitors": 988.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 204.0, "Total Spend": 79719.0, "Total Transactions": 3208.0, "Total Customers": 2031.0, "Median Spend per Transaction": 13.94, "Median Spend per Customer": 23.19 }, "geometry": { "type": "Point", "coordinates": [ -75.168695, 39.954896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-ks5", "Name": "Born Yesterday", "Category": "Clothing Stores", "Address": "1901 Walnut St", "LATITUDE": 39.950495, "LONGITUDE": -75.17265, "DATE_RANGE_START": 2021, "Total Visits": 1329.0, "Total Visitors": 828.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 120.0, "Total Spend": 7081.0, "Total Transactions": 122.0, "Total Customers": 107.0, "Median Spend per Transaction": 39.5, "Median Spend per Customer": 46.43 }, "geometry": { "type": "Point", "coordinates": [ -75.17265, 39.950495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "Name": "George's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 W Girard Ave", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 84.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 1.0, "Total Spend": 2433.0, "Total Transactions": 150.0, "Total Customers": 95.0, "Median Spend per Transaction": 12.22, "Median Spend per Customer": 19.72 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-gkz", "Name": "Nifty Fifty's", "Category": "Restaurants and Other Eating Places", "Address": "2491 Grant Ave", "LATITUDE": 40.079457, "LONGITUDE": -75.025402, "DATE_RANGE_START": 2021, "Total Visits": 1055.0, "Total Visitors": 947.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 30.0, "Total Spend": 8262.0, "Total Transactions": 260.0, "Total Customers": 203.0, "Median Spend per Transaction": 26.74, "Median Spend per Customer": 31.19 }, "geometry": { "type": "Point", "coordinates": [ -75.025402, 40.079457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-d35", "Name": "Thomas'", "Category": "Restaurants and Other Eating Places", "Address": "447 E Girard Ave", "LATITUDE": 39.970627, "LONGITUDE": -75.128561, "DATE_RANGE_START": 2021, "Total Visits": 174.0, "Total Visitors": 143.0, "POI_CBG": 421010143002.0, "Median Dwell Time": 91.0, "Total Spend": 6815.0, "Total Transactions": 91.0, "Total Customers": 81.0, "Median Spend per Transaction": 37.5, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128561, 39.970627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7300 Rising Sun Ave", "LATITUDE": 40.061832, "LONGITUDE": -75.084015, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 186.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 4.0, "Total Spend": 3915.0, "Total Transactions": 628.0, "Total Customers": 291.0, "Median Spend per Transaction": 5.19, "Median Spend per Customer": 8.85 }, "geometry": { "type": "Point", "coordinates": [ -75.084015, 40.061832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm9-y9z", "Name": "Urban Princess Boutique", "Category": "Clothing Stores", "Address": "620 S 4th St", "LATITUDE": 39.941138, "LONGITUDE": -75.149398, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 146.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 3.0, "Total Spend": 2174.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 48.6, "Median Spend per Customer": 50.22 }, "geometry": { "type": "Point", "coordinates": [ -75.149398, 39.941138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnw-nh5", "Name": "Sancho Pistolas", "Category": "Restaurants and Other Eating Places", "Address": "19 W Girard Ave", "LATITUDE": 39.969014, "LONGITUDE": -75.135132, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 88.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 78.0, "Total Spend": 4079.0, "Total Transactions": 60.0, "Total Customers": 53.0, "Median Spend per Transaction": 59.4, "Median Spend per Customer": 66.48 }, "geometry": { "type": "Point", "coordinates": [ -75.135132, 39.969014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "260 W Lehigh Ave Ste 80", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2021, "Total Visits": 919.0, "Total Visitors": 527.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 8.0, "Total Spend": 22179.0, "Total Transactions": 979.0, "Total Customers": 618.0, "Median Spend per Transaction": 15.2, "Median Spend per Customer": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-35z", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4641 Chestnut St # 51", "LATITUDE": 39.957614, "LONGITUDE": -75.214932, "DATE_RANGE_START": 2021, "Total Visits": 346.0, "Total Visitors": 251.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 3.0, "Total Spend": 21318.0, "Total Transactions": 993.0, "Total Customers": 549.0, "Median Spend per Transaction": 13.98, "Median Spend per Customer": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.214932, 39.957614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph6-p5f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5201 Lancaster Ave", "LATITUDE": 39.977589, "LONGITUDE": -75.227009, "DATE_RANGE_START": 2021, "Total Visits": 1434.0, "Total Visitors": 1017.0, "POI_CBG": 421010118003.0, "Median Dwell Time": 4.0, "Total Spend": 1456.0, "Total Transactions": 43.0, "Total Customers": 38.0, "Median Spend per Transaction": 25.98, "Median Spend per Customer": 34.21 }, "geometry": { "type": "Point", "coordinates": [ -75.227009, 39.977589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "Name": "BP", "Category": "Gasoline Stations", "Address": "5801 Oxford Ave", "LATITUDE": 40.032516, "LONGITUDE": -75.084558, "DATE_RANGE_START": 2021, "Total Visits": 1563.0, "Total Visitors": 919.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 4.0, "Total Spend": 479.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 11.76, "Median Spend per Customer": 11.76 }, "geometry": { "type": "Point", "coordinates": [ -75.084558, 40.032516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1020 S Broad St", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2021, "Total Visits": 601.0, "Total Visitors": 377.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 303.0, "Total Spend": 81843.0, "Total Transactions": 2967.0, "Total Customers": 1494.0, "Median Spend per Transaction": 18.88, "Median Spend per Customer": 34.82 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2489 Aramingo Ave", "LATITUDE": 39.974271, "LONGITUDE": -75.11985, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 360.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 7.0, "Total Spend": 666.0, "Total Transactions": 36.0, "Total Customers": 31.0, "Median Spend per Transaction": 6.4, "Median Spend per Customer": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.11985, 39.974271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-8y9", "Name": "Dollar Days Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "309 S 48th St", "LATITUDE": 39.952899, "LONGITUDE": -75.218099, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 8.0, "Total Spend": 4196.0, "Total Transactions": 229.0, "Total Customers": 174.0, "Median Spend per Transaction": 12.8, "Median Spend per Customer": 17.29 }, "geometry": { "type": "Point", "coordinates": [ -75.218099, 39.952899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yd9", "Name": "Tai Lake", "Category": "Restaurants and Other Eating Places", "Address": "134 N 10th St", "LATITUDE": 39.954672, "LONGITUDE": -75.156344, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 105.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 7833.0, "Total Transactions": 72.0, "Total Customers": 67.0, "Median Spend per Transaction": 95.3, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156344, 39.954672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "Name": "Cuba Libre Restaurant & Rum Bar Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "10 S 2nd St", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 196.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 72.0, "Total Spend": 34810.0, "Total Transactions": 406.0, "Total Customers": 394.0, "Median Spend per Transaction": 64.63, "Median Spend per Customer": 66.36 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "Name": "Penang", "Category": "Restaurants and Other Eating Places", "Address": "117 N 10th St", "LATITUDE": 39.954047, "LONGITUDE": -75.155868, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 229.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 33.0, "Total Spend": 13582.0, "Total Transactions": 277.0, "Total Customers": 255.0, "Median Spend per Transaction": 37.4, "Median Spend per Customer": 39.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155868, 39.954047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "Name": "Spring Garden Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "400 Spring Garden St", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2021, "Total Visits": 468.0, "Total Visitors": 356.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 8.0, "Total Spend": 10383.0, "Total Transactions": 210.0, "Total Customers": 158.0, "Median Spend per Transaction": 18.02, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvp-bff", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5754 Baltimore Ave", "LATITUDE": 39.945197, "LONGITUDE": -75.238981, "DATE_RANGE_START": 2021, "Total Visits": 189.0, "Total Visitors": 119.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 11.0, "Total Spend": 630.0, "Total Transactions": 31.0, "Total Customers": 31.0, "Median Spend per Transaction": 20.08, "Median Spend per Customer": 20.08 }, "geometry": { "type": "Point", "coordinates": [ -75.238981, 39.945197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj8-hwk", "Name": "Oxford Food Market", "Category": "Grocery Stores", "Address": "4820 Oxford Ave", "LATITUDE": 40.019429, "LONGITUDE": -75.084382, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010301002.0, "Median Dwell Time": 12.0, "Total Spend": 1842.0, "Total Transactions": 53.0, "Total Customers": 48.0, "Median Spend per Transaction": 34.27, "Median Spend per Customer": 34.41 }, "geometry": { "type": "Point", "coordinates": [ -75.084382, 40.019429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "Name": "Malelani Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6734 Germantown Ave", "LATITUDE": 40.05294, "LONGITUDE": -75.186129, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 184.0, "Total Spend": 3125.0, "Total Transactions": 146.0, "Total Customers": 119.0, "Median Spend per Transaction": 16.96, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.186129, 40.05294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-p35", "Name": "Jhoandra Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3661 N 6th St", "LATITUDE": 40.007461, "LONGITUDE": -75.138722, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010199001.0, "Median Dwell Time": 1.0, "Total Spend": 800.0, "Total Transactions": 33.0, "Total Customers": 19.0, "Median Spend per Transaction": 22.36, "Median Spend per Customer": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.138722, 40.007461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "Name": "Pizzeria Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1925 S Broad St", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 29.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 468.0, "Total Spend": 1317.0, "Total Transactions": 84.0, "Total Customers": 62.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 17.91 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "Name": "The Quick Fixx", "Category": "Restaurants and Other Eating Places", "Address": "1511 South St", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 1.0, "Total Spend": 4809.0, "Total Transactions": 236.0, "Total Customers": 186.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-xqz", "Name": "Ambassador", "Category": "Restaurants and Other Eating Places", "Address": "635 W Girard Ave", "LATITUDE": 39.97078, "LONGITUDE": -75.147954, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 60.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 9.0, "Total Spend": 3986.0, "Total Transactions": 74.0, "Total Customers": 24.0, "Median Spend per Transaction": 52.88, "Median Spend per Customer": 110.76 }, "geometry": { "type": "Point", "coordinates": [ -75.147954, 39.97078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6hq", "Name": "Milkboy Philadelphia", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1100 Chestnut St", "LATITUDE": 39.949997, "LONGITUDE": -75.158798, "DATE_RANGE_START": 2021, "Total Visits": 573.0, "Total Visitors": 437.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 40.0, "Total Spend": 4238.0, "Total Transactions": 55.0, "Total Customers": 55.0, "Median Spend per Transaction": 44.4, "Median Spend per Customer": 44.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158798, 39.949997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-hdv", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "2800 Fox St", "LATITUDE": 40.009459, "LONGITUDE": -75.174254, "DATE_RANGE_START": 2021, "Total Visits": 2463.0, "Total Visitors": 1463.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 26.0, "Total Spend": 1903.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 48.17, "Median Spend per Customer": 71.1 }, "geometry": { "type": "Point", "coordinates": [ -75.174254, 40.009459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgm-3qz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4168 Ridge Ave", "LATITUDE": 40.008377, "LONGITUDE": -75.193545, "DATE_RANGE_START": 2021, "Total Visits": 313.0, "Total Visitors": 265.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 3.0, "Total Spend": 3937.0, "Total Transactions": 389.0, "Total Customers": 303.0, "Median Spend per Transaction": 6.68, "Median Spend per Customer": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.193545, 40.008377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1190 E Luzerne St", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 167.0, "POI_CBG": 421010191003.0, "Median Dwell Time": 3.0, "Total Spend": 482.0, "Total Transactions": 33.0, "Total Customers": 12.0, "Median Spend per Transaction": 12.19, "Median Spend per Customer": 7.64 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1443 S 7th St", "LATITUDE": 39.930286, "LONGITUDE": -75.155935, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 93.0, "POI_CBG": 421010028013.0, "Median Dwell Time": 6.0, "Total Spend": 23836.0, "Total Transactions": 1174.0, "Total Customers": 549.0, "Median Spend per Transaction": 12.46, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155935, 39.930286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2751 W Passyunk Ave", "LATITUDE": 39.921602, "LONGITUDE": -75.193164, "DATE_RANGE_START": 2021, "Total Visits": 2308.0, "Total Visitors": 1649.0, "POI_CBG": 421010036003.0, "Median Dwell Time": 4.0, "Total Spend": 800.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 40.05, "Median Spend per Customer": 35.03 }, "geometry": { "type": "Point", "coordinates": [ -75.193164, 39.921602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "Name": "OfficeMax", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7231 Roosevelt Blvd", "LATITUDE": 40.043545, "LONGITUDE": -75.054368, "DATE_RANGE_START": 2021, "Total Visits": 1535.0, "Total Visitors": 1263.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 9.0, "Total Spend": 14612.0, "Total Transactions": 377.0, "Total Customers": 315.0, "Median Spend per Transaction": 18.56, "Median Spend per Customer": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.054368, 40.043545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgm-28v", "Name": "East Falls Farmers' Market", "Category": "Specialty Food Stores", "Address": "4100 Ridge Ave", "LATITUDE": 40.007838, "LONGITUDE": -75.191777, "DATE_RANGE_START": 2021, "Total Visits": 7050.0, "Total Visitors": 5642.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 1.0, "Total Spend": 272.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 32.38, "Median Spend per Customer": 56.94 }, "geometry": { "type": "Point", "coordinates": [ -75.191777, 40.007838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-hh5", "Name": "Condesa", "Category": "Restaurants and Other Eating Places", "Address": "1830 Ludlow St", "LATITUDE": 39.952583, "LONGITUDE": -75.171276, "DATE_RANGE_START": 2021, "Total Visits": 2155.0, "Total Visitors": 1439.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 199.0, "Total Spend": 6392.0, "Total Transactions": 143.0, "Total Customers": 117.0, "Median Spend per Transaction": 30.28, "Median Spend per Customer": 33.99 }, "geometry": { "type": "Point", "coordinates": [ -75.171276, 39.952583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "300 N 63rd St", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 353.0, "POI_CBG": 421010096001.0, "Median Dwell Time": 9.0, "Total Spend": 5110.0, "Total Transactions": 270.0, "Total Customers": 158.0, "Median Spend per Transaction": 8.83, "Median Spend per Customer": 16.46 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "Name": "A Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "135 S 18th St", "LATITUDE": 39.950427, "LONGITUDE": -75.170427, "DATE_RANGE_START": 2021, "Total Visits": 788.0, "Total Visitors": 594.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 477.0, "Total Spend": 7288.0, "Total Transactions": 506.0, "Total Customers": 351.0, "Median Spend per Transaction": 12.23, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170427, 39.950427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-skf", "Name": "Max Brenner", "Category": "Restaurants and Other Eating Places", "Address": "1500 Walnut St", "LATITUDE": 39.949114, "LONGITUDE": -75.166283, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 196.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 11.0, "Total Spend": 16275.0, "Total Transactions": 334.0, "Total Customers": 279.0, "Median Spend per Transaction": 37.33, "Median Spend per Customer": 50.12 }, "geometry": { "type": "Point", "coordinates": [ -75.166283, 39.949114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-y5f", "Name": "Neighborhood Ramen", "Category": "Restaurants and Other Eating Places", "Address": "617 S 3rd St", "LATITUDE": 39.9409, "LONGITUDE": -75.147453, "DATE_RANGE_START": 2021, "Total Visits": 613.0, "Total Visitors": 456.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 49.0, "Total Spend": 7351.0, "Total Transactions": 184.0, "Total Customers": 160.0, "Median Spend per Transaction": 44.11, "Median Spend per Customer": 47.8 }, "geometry": { "type": "Point", "coordinates": [ -75.147453, 39.9409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@628-pmb-835", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "28 N 11th St", "LATITUDE": 39.95246, "LONGITUDE": -75.158356, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 770.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 44.03, "Median Spend per Customer": 44.03 }, "geometry": { "type": "Point", "coordinates": [ -75.158356, 39.95246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "Name": "US Gas", "Category": "Gasoline Stations", "Address": "2652 Frankford Ave", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2021, "Total Visits": 279.0, "Total Visitors": 198.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 3.0, "Total Spend": 3040.0, "Total Transactions": 143.0, "Total Customers": 119.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.68 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6215 Roosevelt Blvd", "LATITUDE": 40.033829, "LONGITUDE": -75.072583, "DATE_RANGE_START": 2021, "Total Visits": 809.0, "Total Visitors": 575.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 4.0, "Total Spend": 16772.0, "Total Transactions": 623.0, "Total Customers": 418.0, "Median Spend per Transaction": 25.01, "Median Spend per Customer": 30.17 }, "geometry": { "type": "Point", "coordinates": [ -75.072583, 40.033829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "199 Franklin Mills Blvd Ste A", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2021, "Total Visits": 487.0, "Total Visitors": 387.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 2335.0, "Total Transactions": 55.0, "Total Customers": 53.0, "Median Spend per Transaction": 32.54, "Median Spend per Customer": 33.21 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1635 Spruce St", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2021, "Total Visits": 315.0, "Total Visitors": 289.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 37.0, "Total Spend": 48.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.12, "Median Spend per Customer": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmc-qmk", "Name": "Federal Donuts 2nd Street", "Category": "Restaurants and Other Eating Places", "Address": "1219 S 2nd St", "LATITUDE": 39.932221, "LONGITUDE": -75.147485, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 24.0, "Total Spend": 4071.0, "Total Transactions": 317.0, "Total Customers": 272.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 10.36 }, "geometry": { "type": "Point", "coordinates": [ -75.147485, 39.932221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4100 Chester Ave", "LATITUDE": 39.94836, "LONGITUDE": -75.206367, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 24.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 4.0, "Total Spend": 6140.0, "Total Transactions": 900.0, "Total Customers": 415.0, "Median Spend per Transaction": 5.92, "Median Spend per Customer": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -75.206367, 39.94836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1434 E Washington Ln", "LATITUDE": 40.060394, "LONGITUDE": -75.164248, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 95.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 4.0, "Total Spend": 33182.0, "Total Transactions": 592.0, "Total Customers": 489.0, "Median Spend per Transaction": 35.5, "Median Spend per Customer": 36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164248, 40.060394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-j35", "Name": "Paddy's Old City Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "228 Race St", "LATITUDE": 39.95373, "LONGITUDE": -75.143964, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 72.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 54.0, "Total Spend": 6973.0, "Total Transactions": 136.0, "Total Customers": 93.0, "Median Spend per Transaction": 39.94, "Median Spend per Customer": 50.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143964, 39.95373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-ty9", "Name": "La Famiglia Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "8 S Front St", "LATITUDE": 39.949369, "LONGITUDE": -75.142406, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 105.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 6.0, "Total Spend": 1606.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 151.45, "Median Spend per Customer": 151.45 }, "geometry": { "type": "Point", "coordinates": [ -75.142406, 39.949369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "Name": "Reyes Food Market", "Category": "Grocery Stores", "Address": "6161 Chestnut St", "LATITUDE": 39.961179, "LONGITUDE": -75.244847, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010083011.0, "Median Dwell Time": null, "Total Spend": 916.0, "Total Transactions": 117.0, "Total Customers": 64.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.244847, 39.961179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-2tv", "Name": "Tacony Latin Flavor", "Category": "Restaurants and Other Eating Places", "Address": "6300 Torresdale Ave Fl 1", "LATITUDE": 40.020803, "LONGITUDE": -75.053805, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010323002.0, "Median Dwell Time": 1.0, "Total Spend": 18.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 3.85, "Median Spend per Customer": 3.85 }, "geometry": { "type": "Point", "coordinates": [ -75.053805, 40.020803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-cqz", "Name": "Little Morocco", "Category": "Restaurants and Other Eating Places", "Address": "1431 W Passyunk Ave # 1F", "LATITUDE": 39.925459, "LONGITUDE": -75.170748, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 17.0, "Total Spend": 144.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 13.69, "Median Spend per Customer": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.170748, 39.925459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-7dv", "Name": "The Monkey Club", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2101 E York St", "LATITUDE": 39.982488, "LONGITUDE": -75.128336, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 33.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 123.0, "Total Spend": 131.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.91, "Median Spend per Customer": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.128336, 39.982488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "Name": "Boostin' Bowls", "Category": "Restaurants and Other Eating Places", "Address": "100 Levering St", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 5.0, "Total Spend": 8063.0, "Total Transactions": 504.0, "Total Customers": 344.0, "Median Spend per Transaction": 12.68, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj5-435", "Name": "1 Stop Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3701 Germantown Ave", "LATITUDE": 40.009415, "LONGITUDE": -75.15067, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 1.0, "Total Spend": 532.0, "Total Transactions": 29.0, "Total Customers": 17.0, "Median Spend per Transaction": 16.83, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15067, 40.009415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-t7q", "Name": "Robert Lance Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "803 Sansom St", "LATITUDE": 39.949012, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 60.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 7.0, "Total Spend": 2305.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 302.4, "Median Spend per Customer": 302.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "Name": "Spring Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3739 Lancaster Ave", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2021, "Total Visits": 134.0, "Total Visitors": 57.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 206.0, "Total Spend": 5122.0, "Total Transactions": 215.0, "Total Customers": 165.0, "Median Spend per Transaction": 20.28, "Median Spend per Customer": 23.55 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "Name": "Time Out Sports Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3709 Schuyler St", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 69.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 73.0, "Total Spend": 3343.0, "Total Transactions": 79.0, "Total Customers": 50.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "Name": "Bourbon & Branch", "Category": "Restaurants and Other Eating Places", "Address": "705 N 2nd St", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 69.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 46.0, "Total Spend": 4226.0, "Total Transactions": 76.0, "Total Customers": 64.0, "Median Spend per Transaction": 43.03, "Median Spend per Customer": 45.96 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "Name": "Cappuccio's Meats", "Category": "Specialty Food Stores", "Address": "1019 S 9th St", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 74.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 3.0, "Total Spend": 2112.0, "Total Transactions": 50.0, "Total Customers": 43.0, "Median Spend per Transaction": 23.03, "Median Spend per Customer": 22.06 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "Name": "Hilltown Tavern", "Category": "Restaurants and Other Eating Places", "Address": "326 Roxborough Ave", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 91.0, "POI_CBG": 421010213004.0, "Median Dwell Time": 152.0, "Total Spend": 40337.0, "Total Transactions": 778.0, "Total Customers": 582.0, "Median Spend per Transaction": 41.89, "Median Spend per Customer": 52.89 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.080948, "LONGITUDE": -75.025099, "DATE_RANGE_START": 2021, "Total Visits": 9045.0, "Total Visitors": 5955.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 17.0, "Total Spend": 185002.0, "Total Transactions": 2924.0, "Total Customers": 1950.0, "Median Spend per Transaction": 29.04, "Median Spend per Customer": 37.74 }, "geometry": { "type": "Point", "coordinates": [ -75.025099, 40.080948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3300 Market St", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2021, "Total Visits": 1826.0, "Total Visitors": 1079.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 6.0, "Total Spend": 85345.0, "Total Transactions": 9986.0, "Total Customers": 4334.0, "Median Spend per Transaction": 7.45, "Median Spend per Customer": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "Name": "Beer Love", "Category": "Beer, Wine, and Liquor Stores", "Address": "714 S 4th St", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 224.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 20.0, "Total Spend": 4465.0, "Total Transactions": 160.0, "Total Customers": 124.0, "Median Spend per Transaction": 24.18, "Median Spend per Customer": 28.61 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-g8v", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "1923 Middleton St", "LATITUDE": 40.06232, "LONGITUDE": -75.152136, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 220.0, "POI_CBG": 421010265001.0, "Median Dwell Time": 5.0, "Total Spend": 6443.0, "Total Transactions": 251.0, "Total Customers": 222.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152136, 40.06232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4200 G St", "LATITUDE": 40.012396, "LONGITUDE": -75.112446, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 274.0, "POI_CBG": 421010289012.0, "Median Dwell Time": 3.0, "Total Spend": 24742.0, "Total Transactions": 1107.0, "Total Customers": 644.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112446, 40.012396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "Name": "ALDO", "Category": "Shoe Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952094, "LONGITUDE": -75.167619, "DATE_RANGE_START": 2021, "Total Visits": 735.0, "Total Visitors": 594.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 16.0, "Total Spend": 7498.0, "Total Transactions": 88.0, "Total Customers": 81.0, "Median Spend per Transaction": 80.0, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167619, 39.952094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "Name": "Ross Stores", "Category": "Department Stores", "Address": "7720 City Ave", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2021, "Total Visits": 1136.0, "Total Visitors": 838.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 21.0, "Total Spend": 17935.0, "Total Transactions": 344.0, "Total Customers": 308.0, "Median Spend per Transaction": 38.57, "Median Spend per Customer": 43.14 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1 Mifflin St", "LATITUDE": 39.92482, "LONGITUDE": -75.146253, "DATE_RANGE_START": 2021, "Total Visits": 8618.0, "Total Visitors": 5043.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 21.0, "Total Spend": 686651.0, "Total Transactions": 11988.0, "Total Customers": 7427.0, "Median Spend per Transaction": 35.76, "Median Spend per Customer": 58.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146253, 39.92482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgk-28v", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1300 W Lehigh Ave", "LATITUDE": 39.993135, "LONGITUDE": -75.152859, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 131.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 8.0, "Total Spend": 225.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.4, "Median Spend per Customer": 47.16 }, "geometry": { "type": "Point", "coordinates": [ -75.152859, 39.993135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "Name": "Old Nelson Food Market", "Category": "Grocery Stores", "Address": "2000 Chestnut St", "LATITUDE": 39.951893, "LONGITUDE": -75.173688, "DATE_RANGE_START": 2021, "Total Visits": 468.0, "Total Visitors": 310.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 304.0, "Total Spend": 49355.0, "Total Transactions": 4379.0, "Total Customers": 2158.0, "Median Spend per Transaction": 9.54, "Median Spend per Customer": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -75.173688, 39.951893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "Name": "Kashmir Garden Super Market", "Category": "Grocery Stores", "Address": "9325 Krewstown Rd", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 91.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 18.0, "Total Spend": 8746.0, "Total Transactions": 227.0, "Total Customers": 169.0, "Median Spend per Transaction": 23.32, "Median Spend per Customer": 30.7 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "Name": "Beauty Point", "Category": "Health and Personal Care Stores", "Address": "5610 Lancaster Ave", "LATITUDE": 39.980086, "LONGITUDE": -75.235032, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 67.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 132.0, "Total Spend": 5911.0, "Total Transactions": 165.0, "Total Customers": 141.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.235032, 39.980086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nyv", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1000 S Columbus Blvd", "LATITUDE": 39.931469, "LONGITUDE": -75.144907, "DATE_RANGE_START": 2021, "Total Visits": 494.0, "Total Visitors": 413.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 9.0, "Total Spend": 8025.0, "Total Transactions": 29.0, "Total Customers": 29.0, "Median Spend per Transaction": 181.36, "Median Spend per Customer": 181.36 }, "geometry": { "type": "Point", "coordinates": [ -75.144907, 39.931469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3301 Aramingo Ave", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2021, "Total Visits": 609.0, "Total Visitors": 353.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 25.0, "Total Spend": 18686.0, "Total Transactions": 294.0, "Total Customers": 243.0, "Median Spend per Transaction": 35.62, "Median Spend per Customer": 41.05 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "Name": "Jomici Apothecary", "Category": "Health and Personal Care Stores", "Address": "273 S 15th St", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2021, "Total Visits": 403.0, "Total Visitors": 265.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 151.0, "Total Spend": 201.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2600 Grant Ave", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2021, "Total Visits": 1339.0, "Total Visitors": 905.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 131728.0, "Total Transactions": 7544.0, "Total Customers": 3296.0, "Median Spend per Transaction": 12.44, "Median Spend per Customer": 25.19 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-pmb-8qf", "Name": "Jefferson Farmers' Market", "Category": "Specialty Food Stores", "Address": "925 Chestnut St", "LATITUDE": 39.950512, "LONGITUDE": -75.156532, "DATE_RANGE_START": 2021, "Total Visits": 2353.0, "Total Visitors": 1601.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 77.0, "Total Spend": 1143.0, "Total Transactions": 57.0, "Total Customers": 57.0, "Median Spend per Transaction": 18.39, "Median Spend per Customer": 18.39 }, "geometry": { "type": "Point", "coordinates": [ -75.156532, 39.950512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnt-435", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2427 Aramingo Ave Ste 8", "LATITUDE": 39.974417, "LONGITUDE": -75.121241, "DATE_RANGE_START": 2021, "Total Visits": 2267.0, "Total Visitors": 1432.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 7.0, "Total Spend": 11606.0, "Total Transactions": 117.0, "Total Customers": 103.0, "Median Spend per Transaction": 52.0, "Median Spend per Customer": 57.78 }, "geometry": { "type": "Point", "coordinates": [ -75.121241, 39.974417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3900 Castor Ave", "LATITUDE": 40.00641, "LONGITUDE": -75.099483, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 162.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 4.0, "Total Spend": 12365.0, "Total Transactions": 690.0, "Total Customers": 496.0, "Median Spend per Transaction": 13.59, "Median Spend per Customer": 18.68 }, "geometry": { "type": "Point", "coordinates": [ -75.099483, 40.00641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "8261 Stenton Ave", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2021, "Total Visits": 1675.0, "Total Visitors": 1160.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 5.0, "Total Spend": 2979.0, "Total Transactions": 95.0, "Total Customers": 79.0, "Median Spend per Transaction": 26.03, "Median Spend per Customer": 30.29 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7261 Roosevelt Blvd", "LATITUDE": 40.043988, "LONGITUDE": -75.054077, "DATE_RANGE_START": 2021, "Total Visits": 3267.0, "Total Visitors": 2351.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 4.0, "Total Spend": 1469.0, "Total Transactions": 38.0, "Total Customers": 17.0, "Median Spend per Transaction": 41.51, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054077, 40.043988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1851 S Columbus Blvd Ste G", "LATITUDE": 39.923624, "LONGITUDE": -75.139475, "DATE_RANGE_START": 2021, "Total Visits": 520.0, "Total Visitors": 444.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 18.0, "Total Spend": 14070.0, "Total Transactions": 217.0, "Total Customers": 196.0, "Median Spend per Transaction": 44.94, "Median Spend per Customer": 53.24 }, "geometry": { "type": "Point", "coordinates": [ -75.139475, 39.923624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgh-h3q", "Name": "Localhost", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2800 Fox St", "LATITUDE": 40.008715, "LONGITUDE": -75.176539, "DATE_RANGE_START": 2021, "Total Visits": 924.0, "Total Visitors": 585.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 26.0, "Total Spend": 169.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 14.85, "Median Spend per Customer": 26.14 }, "geometry": { "type": "Point", "coordinates": [ -75.176539, 40.008715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-nwk", "Name": "Centro Musical", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "464 W Lehigh Ave", "LATITUDE": 39.991818, "LONGITUDE": -75.139984, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 282.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 68.0, "Total Spend": 155.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 39.991818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmd-vj9", "Name": "Nature's Gallery Florist", "Category": "Florists", "Address": "2124 Walnut St", "LATITUDE": 39.950794, "LONGITUDE": -75.177008, "DATE_RANGE_START": 2021, "Total Visits": 1482.0, "Total Visitors": 1005.0, "POI_CBG": 421010008031.0, "Median Dwell Time": 347.0, "Total Spend": 1366.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 108.0, "Median Spend per Customer": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177008, 39.950794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pmb-7qz", "Name": "Little Nonna's", "Category": "Restaurants and Other Eating Places", "Address": "1234 Locust St", "LATITUDE": 39.94777, "LONGITUDE": -75.162061, "DATE_RANGE_START": 2021, "Total Visits": 850.0, "Total Visitors": 599.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 61.0, "Total Spend": 1466.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 93.1, "Median Spend per Customer": 93.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162061, 39.94777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-n5z", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St", "LATITUDE": 39.954145, "LONGITUDE": -75.201008, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 141.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 7.0, "Total Spend": 2643.0, "Total Transactions": 129.0, "Total Customers": 115.0, "Median Spend per Transaction": 15.06, "Median Spend per Customer": 16.31 }, "geometry": { "type": "Point", "coordinates": [ -75.201008, 39.954145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jgk", "Name": "Dig Inn", "Category": "Restaurants and Other Eating Places", "Address": "1616 Chestnut St", "LATITUDE": 39.951075, "LONGITUDE": -75.167966, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 169.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 863.0, "Total Spend": 604.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 15.62, "Median Spend per Customer": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.167966, 39.951075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm6-jn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "49 Snyder Ave", "LATITUDE": 39.921871, "LONGITUDE": -75.14714, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 907.0, "Total Transactions": 136.0, "Total Customers": 79.0, "Median Spend per Transaction": 5.03, "Median Spend per Customer": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.14714, 39.921871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pmb-7qz", "Name": "Voyeur Nightclub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1221 Saint James St", "LATITUDE": 39.948348, "LONGITUDE": -75.161699, "DATE_RANGE_START": 2021, "Total Visits": 487.0, "Total Visitors": 327.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 55.0, "Total Spend": 113188.0, "Total Transactions": 3890.0, "Total Customers": 1971.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 40.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161699, 39.948348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnz-jgk", "Name": "Bonks Bar", "Category": "Restaurants and Other Eating Places", "Address": "3467 Richmond St", "LATITUDE": 39.986368, "LONGITUDE": -75.094326, "DATE_RANGE_START": 2021, "Total Visits": 344.0, "Total Visitors": 196.0, "POI_CBG": 421010378002.0, "Median Dwell Time": 175.0, "Total Spend": 8498.0, "Total Transactions": 88.0, "Total Customers": 64.0, "Median Spend per Transaction": 61.52, "Median Spend per Customer": 78.29 }, "geometry": { "type": "Point", "coordinates": [ -75.094326, 39.986368 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-9j9", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953347, "LONGITUDE": -75.165403, "DATE_RANGE_START": 2021, "Total Visits": 1909.0, "Total Visitors": 1301.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 91.0, "Total Spend": 2235.0, "Total Transactions": 165.0, "Total Customers": 110.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.165403, 39.953347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5zz", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "128 S 11th St", "LATITUDE": 39.949143, "LONGITUDE": -75.1591, "DATE_RANGE_START": 2021, "Total Visits": 2876.0, "Total Visitors": 1916.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 102.0, "Total Spend": 86.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.04, "Median Spend per Customer": 18.04 }, "geometry": { "type": "Point", "coordinates": [ -75.1591, 39.949143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "Name": "Makkah Market", "Category": "Restaurants and Other Eating Places", "Address": "4249 Walnut St", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 165.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 11.0, "Total Spend": 14712.0, "Total Transactions": 857.0, "Total Customers": 425.0, "Median Spend per Transaction": 9.9, "Median Spend per Customer": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-x3q", "Name": "Manakeesh Cafe Bakery & Grill", "Category": "Restaurants and Other Eating Places", "Address": "4420 Walnut St", "LATITUDE": 39.95498, "LONGITUDE": -75.211488, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 155.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 464.0, "Total Spend": 7898.0, "Total Transactions": 303.0, "Total Customers": 239.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 23.24 }, "geometry": { "type": "Point", "coordinates": [ -75.211488, 39.95498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 81.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 1.0, "Total Spend": 10996.0, "Total Transactions": 778.0, "Total Customers": 582.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "9970 Bustleton Ave", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2021, "Total Visits": 1332.0, "Total Visitors": 1017.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 4.0, "Total Spend": 26991.0, "Total Transactions": 2332.0, "Total Customers": 1575.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 11.78 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "221 W Hunting Park Ave", "LATITUDE": 40.014677, "LONGITUDE": -75.130343, "DATE_RANGE_START": 2021, "Total Visits": 274.0, "Total Visitors": 220.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 4.0, "Total Spend": 6657.0, "Total Transactions": 773.0, "Total Customers": 532.0, "Median Spend per Transaction": 7.21, "Median Spend per Customer": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.014677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm6-gkz", "Name": "South View Pizza", "Category": "Restaurants and Other Eating Places", "Address": "367 Durfor St", "LATITUDE": 39.919441, "LONGITUDE": -75.153896, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010042024.0, "Median Dwell Time": null, "Total Spend": 927.0, "Total Transactions": 64.0, "Total Customers": 29.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 16.27 }, "geometry": { "type": "Point", "coordinates": [ -75.153896, 39.919441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "4356 Main St", "LATITUDE": 40.025386, "LONGITUDE": -75.223869, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 2.0, "Total Spend": 4930.0, "Total Transactions": 122.0, "Total Customers": 117.0, "Median Spend per Transaction": 38.52, "Median Spend per Customer": 38.52 }, "geometry": { "type": "Point", "coordinates": [ -75.223869, 40.025386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-tgk", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "5520 Whitaker Ave Ste 10", "LATITUDE": 40.035436, "LONGITUDE": -75.099754, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 74.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 4.0, "Total Spend": 2126.0, "Total Transactions": 179.0, "Total Customers": 155.0, "Median Spend per Transaction": 10.26, "Median Spend per Customer": 11.59 }, "geometry": { "type": "Point", "coordinates": [ -75.099754, 40.035436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pfz-bzf", "Name": "Gary Mann Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4349 Main St", "LATITUDE": 40.025665, "LONGITUDE": -75.223674, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 3.0, "Total Spend": 5217.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 1092.9, "Median Spend per Customer": 1092.9 }, "geometry": { "type": "Point", "coordinates": [ -75.223674, 40.025665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-p9s-2tv", "Name": "Momma Mia's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "15002 Endicott St", "LATITUDE": 40.12023, "LONGITUDE": -74.995203, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 53.0, "POI_CBG": 421010365021.0, "Median Dwell Time": 22.0, "Total Spend": 4170.0, "Total Transactions": 129.0, "Total Customers": 81.0, "Median Spend per Transaction": 26.51, "Median Spend per Customer": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -74.995203, 40.12023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "Name": "Gallo's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "8101 Roosevelt Blvd", "LATITUDE": 40.057623, "LONGITUDE": -75.044487, "DATE_RANGE_START": 2021, "Total Visits": 625.0, "Total Visitors": 494.0, "POI_CBG": 421010333001.0, "Median Dwell Time": 60.0, "Total Spend": 946.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 85.67, "Median Spend per Customer": 85.67 }, "geometry": { "type": "Point", "coordinates": [ -75.044487, 40.057623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgd-z9f", "Name": "Bombay Dhabba Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956797, "LONGITUDE": -75.194135, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 64.0, "Total Spend": 2330.0, "Total Transactions": 141.0, "Total Customers": 93.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.194135, 39.956797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "320 W Oregon Ave Ste 1", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2021, "Total Visits": 1053.0, "Total Visitors": 687.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 16.0, "Total Spend": 14091.0, "Total Transactions": 399.0, "Total Customers": 360.0, "Median Spend per Transaction": 29.75, "Median Spend per Customer": 33.94 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5840 Old York Rd", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 126.0, "POI_CBG": 421010278002.0, "Median Dwell Time": 671.0, "Total Spend": 1167.0, "Total Transactions": 88.0, "Total Customers": 62.0, "Median Spend per Transaction": 10.59, "Median Spend per Customer": 15.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1615 Chancellor St", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2021, "Total Visits": 852.0, "Total Visitors": 520.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 404.0, "Total Spend": 13485.0, "Total Transactions": 291.0, "Total Customers": 270.0, "Median Spend per Transaction": 36.8, "Median Spend per Customer": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2743 S Front St", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 177.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 2.0, "Total Spend": 11577.0, "Total Transactions": 764.0, "Total Customers": 604.0, "Median Spend per Transaction": 11.82, "Median Spend per Customer": 14.02 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "315 N 12th St", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 184.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 844.0, "Total Spend": 7041.0, "Total Transactions": 1024.0, "Total Customers": 628.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 6.67 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "Name": "Luigi's Pizza Fresca", "Category": "Restaurants and Other Eating Places", "Address": "2401 Fairmount Ave", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 251.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 45.0, "Total Spend": 1138.0, "Total Transactions": 57.0, "Total Customers": 38.0, "Median Spend per Transaction": 16.06, "Median Spend per Customer": 22.03 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "Name": "Drinkers Pub", "Category": "Restaurants and Other Eating Places", "Address": "1903 Chestnut St", "LATITUDE": 39.952101, "LONGITUDE": -75.17208, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 203.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 68171.0, "Total Transactions": 1854.0, "Total Customers": 1253.0, "Median Spend per Transaction": 25.06, "Median Spend per Customer": 34.86 }, "geometry": { "type": "Point", "coordinates": [ -75.17208, 39.952101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-bp9", "Name": "Sang Kee Noodle House", "Category": "Restaurants and Other Eating Places", "Address": "900 Packer Ave", "LATITUDE": 39.909183, "LONGITUDE": -75.16467, "DATE_RANGE_START": 2021, "Total Visits": 7239.0, "Total Visitors": 3616.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 117.0, "Total Spend": 1896.0, "Total Transactions": 53.0, "Total Customers": 50.0, "Median Spend per Transaction": 25.63, "Median Spend per Customer": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.16467, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "575 Adams Ave", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 341.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 7.0, "Total Spend": 3448.0, "Total Transactions": 119.0, "Total Customers": 107.0, "Median Spend per Transaction": 23.87, "Median Spend per Customer": 25.22 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "Name": "Schmear It", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956751, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 64.0, "Total Spend": 2348.0, "Total Transactions": 229.0, "Total Customers": 177.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-sbk", "Name": "Howl At The Moon Philadelphia", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "258 S 15th St", "LATITUDE": 39.947729, "LONGITUDE": -75.166598, "DATE_RANGE_START": 2021, "Total Visits": 415.0, "Total Visitors": 301.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 66.0, "Total Spend": 55244.0, "Total Transactions": 1907.0, "Total Customers": 1038.0, "Median Spend per Transaction": 19.25, "Median Spend per Customer": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166598, 39.947729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-yqf", "Name": "Chubby Cattle", "Category": "Restaurants and Other Eating Places", "Address": "146 N 10th St", "LATITUDE": 39.954989, "LONGITUDE": -75.156236, "DATE_RANGE_START": 2021, "Total Visits": 4088.0, "Total Visitors": 3143.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 15079.0, "Total Transactions": 165.0, "Total Customers": 148.0, "Median Spend per Transaction": 74.84, "Median Spend per Customer": 78.52 }, "geometry": { "type": "Point", "coordinates": [ -75.156236, 39.954989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-9cq", "Name": "White Dog Cafe", "Category": "Restaurants and Other Eating Places", "Address": "3420 Sansom St", "LATITUDE": 39.953556, "LONGITUDE": -75.192905, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 42.0, "Total Spend": 51161.0, "Total Transactions": 628.0, "Total Customers": 604.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 66.82 }, "geometry": { "type": "Point", "coordinates": [ -75.192905, 39.953556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm4-h5z", "Name": "Le Virtu", "Category": "Restaurants and Other Eating Places", "Address": "1927 E Passyunk Ave", "LATITUDE": 39.925948, "LONGITUDE": -75.16776, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 72.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 20.0, "Total Spend": 14701.0, "Total Transactions": 126.0, "Total Customers": 115.0, "Median Spend per Transaction": 91.88, "Median Spend per Customer": 107.85 }, "geometry": { "type": "Point", "coordinates": [ -75.16776, 39.925948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmb-grk", "Name": "Yellowtail", "Category": "Restaurants and Other Eating Places", "Address": "1218 Pine St", "LATITUDE": 39.945044, "LONGITUDE": -75.161951, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 62.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 1227.0, "Total Spend": 1184.0, "Total Transactions": 31.0, "Total Customers": 26.0, "Median Spend per Transaction": 38.79, "Median Spend per Customer": 43.77 }, "geometry": { "type": "Point", "coordinates": [ -75.161951, 39.945044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@63s-dvy-8y9", "Name": "48th Street Grille", "Category": "Restaurants and Other Eating Places", "Address": "310 S 48th St", "LATITUDE": 39.953128, "LONGITUDE": -75.218509, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 67.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 77.0, "Total Spend": 686.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 35.48, "Median Spend per Customer": 35.48 }, "geometry": { "type": "Point", "coordinates": [ -75.218509, 39.953128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5700 Baltimore Ave", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 69.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 1.0, "Total Spend": 883.0, "Total Transactions": 53.0, "Total Customers": 48.0, "Median Spend per Transaction": 14.98, "Median Spend per Customer": 15.41 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-n3q", "Name": "Pete's Clown House", "Category": "Restaurants and Other Eating Places", "Address": "3878 Frankford Ave", "LATITUDE": 40.003738, "LONGITUDE": -75.094646, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 74.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 10.0, "Total Spend": 1287.0, "Total Transactions": 62.0, "Total Customers": 43.0, "Median Spend per Transaction": 19.64, "Median Spend per Customer": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.094646, 40.003738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "Name": "Repo Records", "Category": "Electronics and Appliance Stores", "Address": "506 South St", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2021, "Total Visits": 1248.0, "Total Visitors": 990.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 21.0, "Total Spend": 27961.0, "Total Transactions": 647.0, "Total Customers": 592.0, "Median Spend per Transaction": 31.31, "Median Spend per Customer": 32.96 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-ph6-cdv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6375 Lebanon Ave", "LATITUDE": 39.979947, "LONGITUDE": -75.248732, "DATE_RANGE_START": 2021, "Total Visits": 434.0, "Total Visitors": 246.0, "POI_CBG": 421010114001.0, "Median Dwell Time": 5.0, "Total Spend": 729.0, "Total Transactions": 50.0, "Total Customers": 43.0, "Median Spend per Transaction": 6.89, "Median Spend per Customer": 6.44 }, "geometry": { "type": "Point", "coordinates": [ -75.248732, 39.979947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8144 Castor Ave # 8152", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2021, "Total Visits": 1504.0, "Total Visitors": 819.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 3.0, "Total Spend": 30287.0, "Total Transactions": 2780.0, "Total Customers": 1093.0, "Median Spend per Transaction": 8.3, "Median Spend per Customer": 14.52 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7972 Castor Ave", "LATITUDE": 40.061568, "LONGITUDE": -75.05681, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 243.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 11.0, "Total Spend": 8979.0, "Total Transactions": 391.0, "Total Customers": 272.0, "Median Spend per Transaction": 16.24, "Median Spend per Customer": 20.17 }, "geometry": { "type": "Point", "coordinates": [ -75.05681, 40.061568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4000 Monument Rd", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2021, "Total Visits": 4229.0, "Total Visitors": 3057.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 19.0, "Total Spend": 962241.0, "Total Transactions": 17110.0, "Total Customers": 9757.0, "Median Spend per Transaction": 33.96, "Median Spend per Customer": 60.47 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-226@628-p8t-w49", "Name": "Classico Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087666, "LONGITUDE": -74.961024, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 688.0, "Total Transactions": 76.0, "Total Customers": 41.0, "Median Spend per Transaction": 10.31, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -74.961024, 40.087666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kcq", "Name": "Almaz Cafe", "Category": "Restaurants and Other Eating Places", "Address": "140 S 20th St", "LATITUDE": 39.95075, "LONGITUDE": -75.173912, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 67.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 104.0, "Total Spend": 1401.0, "Total Transactions": 48.0, "Total Customers": 41.0, "Median Spend per Transaction": 22.66, "Median Spend per Customer": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.173912, 39.95075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-z75", "Name": "Pierogi Factory", "Category": "Restaurants and Other Eating Places", "Address": "9965 Bustleton Ave", "LATITUDE": 40.101174, "LONGITUDE": -75.028995, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 79.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 1.0, "Total Spend": 2022.0, "Total Transactions": 50.0, "Total Customers": 50.0, "Median Spend per Transaction": 30.6, "Median Spend per Customer": 30.6 }, "geometry": { "type": "Point", "coordinates": [ -75.028995, 40.101174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-rff", "Name": "Montana Grill", "Category": "Restaurants and Other Eating Places", "Address": "6651 Castor Ave", "LATITUDE": 40.042892, "LONGITUDE": -75.073677, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010313004.0, "Median Dwell Time": 11.0, "Total Spend": 254.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073677, 40.042892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "Name": "L'anima", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 17th St", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 50.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 2.0, "Total Spend": 314.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 65.73, "Median Spend per Customer": 65.73 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-wzf", "Name": "Firestone Complete Auto Care", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9602 Bustleton Ave", "LATITUDE": 40.087378, "LONGITUDE": -75.035984, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 4.0, "Total Spend": 15890.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 204.07, "Median Spend per Customer": 362.34 }, "geometry": { "type": "Point", "coordinates": [ -75.035984, 40.087378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pfy-vmk", "Name": "Triumph Motorcycles", "Category": "Other Motor Vehicle Dealers", "Address": "3901 Main Street", "LATITUDE": 40.019956, "LONGITUDE": -75.21517, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 55.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 26.0, "Total Spend": 2057.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 79.02, "Median Spend per Customer": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21517, 40.019956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "Name": "Pub On Passyunk East", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1501 E Passyunk Ave", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 57.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 55.0, "Total Spend": 720.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 41.3, "Median Spend per Customer": 57.77 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "801 S 9th St", "LATITUDE": 39.93927, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2021, "Total Visits": 547.0, "Total Visitors": 320.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 109.0, "Total Spend": 37973.0, "Total Transactions": 2155.0, "Total Customers": 1002.0, "Median Spend per Transaction": 13.56, "Median Spend per Customer": 21.39 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.93927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "1575 N 52nd St Ste 704", "LATITUDE": 39.978284, "LONGITUDE": -75.224461, "DATE_RANGE_START": 2021, "Total Visits": 375.0, "Total Visitors": 267.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 31.0, "Total Spend": 68219.0, "Total Transactions": 1733.0, "Total Customers": 1489.0, "Median Spend per Transaction": 25.89, "Median Spend per Customer": 28.31 }, "geometry": { "type": "Point", "coordinates": [ -75.224461, 39.978284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-4y9", "Name": "CIBO Express Market", "Category": "Health and Personal Care Stores", "Address": "Terminal C Philidelphia Internaional Airport", "LATITUDE": 39.87575, "LONGITUDE": -75.24417, "DATE_RANGE_START": 2021, "Total Visits": 324922.0, "Total Visitors": 185623.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 66.0, "Total Spend": 130.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 5.52, "Median Spend per Customer": 7.63 }, "geometry": { "type": "Point", "coordinates": [ -75.24417, 39.87575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-mzf", "Name": "4 Seasons", "Category": "Restaurants and Other Eating Places", "Address": "3503 B St", "LATITUDE": 40.003248, "LONGITUDE": -75.124064, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 9.0, "Total Spend": 50049.0, "Total Transactions": 905.0, "Total Customers": 733.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124064, 40.003248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-hwk", "Name": "Mr Bar Stool", "Category": "Furniture Stores", "Address": "167 N 2nd St", "LATITUDE": 39.953666, "LONGITUDE": -75.142763, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 5.0, "Total Spend": 4710.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 396.5, "Median Spend per Customer": 396.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142763, 39.953666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "Name": "Weavers Way Co op", "Category": "Grocery Stores", "Address": "8424 Germantown Ave", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 69.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 11.0, "Total Spend": 100364.0, "Total Transactions": 2730.0, "Total Customers": 1248.0, "Median Spend per Transaction": 24.15, "Median Spend per Customer": 44.78 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgj-zvf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2900 N Broad St Ste 5A", "LATITUDE": 39.99726, "LONGITUDE": -75.154252, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 1.0, "Total Spend": 3037.0, "Total Transactions": 48.0, "Total Customers": 41.0, "Median Spend per Transaction": 46.56, "Median Spend per Customer": 46.69 }, "geometry": { "type": "Point", "coordinates": [ -75.154252, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "Name": "Lazos Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "2533 Poplar St", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 21.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 545.0, "Total Spend": 3710.0, "Total Transactions": 189.0, "Total Customers": 160.0, "Median Spend per Transaction": 17.55, "Median Spend per Customer": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfy-d35", "Name": "Something Different", "Category": "Florists", "Address": "399 Leverington Ave", "LATITUDE": 40.033667, "LONGITUDE": -75.220915, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010213005.0, "Median Dwell Time": null, "Total Spend": 1168.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220915, 40.033667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2749 W Hunting Park Ave Ste 130", "LATITUDE": 40.00769, "LONGITUDE": -75.17457, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 112.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 1.0, "Total Spend": 7400.0, "Total Transactions": 859.0, "Total Customers": 501.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 9.32 }, "geometry": { "type": "Point", "coordinates": [ -75.17457, 40.00769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-225@628-p85-p35", "Name": "Cafe Carmela", "Category": "Restaurants and Other Eating Places", "Address": "2859 Holme Ave", "LATITUDE": 40.05717, "LONGITUDE": -75.030373, "DATE_RANGE_START": 2021, "Total Visits": 232.0, "Total Visitors": 177.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 33.0, "Total Spend": 977.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 72.64, "Median Spend per Customer": 72.64 }, "geometry": { "type": "Point", "coordinates": [ -75.030373, 40.05717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvr-2hq", "Name": "Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "25 Passyunk Dr", "LATITUDE": 39.917185, "LONGITUDE": -75.216767, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 315.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 17.0, "Total Spend": 4582.0, "Total Transactions": 50.0, "Total Customers": 50.0, "Median Spend per Transaction": 75.0, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216767, 39.917185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-3bk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1500 W Moyamensing Ave", "LATITUDE": 39.916261, "LONGITUDE": -75.173391, "DATE_RANGE_START": 2021, "Total Visits": 332.0, "Total Visitors": 260.0, "POI_CBG": 421010039022.0, "Median Dwell Time": 2.0, "Total Spend": 16979.0, "Total Transactions": 754.0, "Total Customers": 420.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.173391, 39.916261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-66k", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2201 Cottman Ave Ste 245", "LATITUDE": 40.049027, "LONGITUDE": -75.060408, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 263.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 6.0, "Total Spend": 13342.0, "Total Transactions": 138.0, "Total Customers": 124.0, "Median Spend per Transaction": 53.5, "Median Spend per Customer": 64.79 }, "geometry": { "type": "Point", "coordinates": [ -75.060408, 40.049027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-qs5", "Name": "Flying Fish Seafood", "Category": "Specialty Food Stores", "Address": "2652 S 9th St", "LATITUDE": 39.91592, "LONGITUDE": -75.163019, "DATE_RANGE_START": 2021, "Total Visits": 768.0, "Total Visitors": 208.0, "POI_CBG": 421010041023.0, "Median Dwell Time": 951.0, "Total Spend": 3776.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 68.29, "Median Spend per Customer": 68.29 }, "geometry": { "type": "Point", "coordinates": [ -75.163019, 39.91592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22f@628-pmf-n3q", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953402, "LONGITUDE": -75.165876, "DATE_RANGE_START": 2021, "Total Visits": 1909.0, "Total Visitors": 1301.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 91.0, "Total Spend": 163.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165876, 39.953402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-tsq", "Name": "Chaes Food LLC", "Category": "Specialty Food Stores", "Address": "2100 N American St", "LATITUDE": 39.983616, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2021, "Total Visits": 153.0, "Total Visitors": 60.0, "POI_CBG": 421010162002.0, "Median Dwell Time": 587.0, "Total Spend": 8720.0, "Total Transactions": 31.0, "Total Customers": 17.0, "Median Spend per Transaction": 266.52, "Median Spend per Customer": 200.73 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.983616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "2335 Cottman Ave Spc 10", "LATITUDE": 40.048384, "LONGITUDE": -75.056563, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 148.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 52.0, "Total Spend": 3745.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 135.0, "Median Spend per Customer": 130.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056563, 40.048384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8m-snq", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "5231 Frankford Ave", "LATITUDE": 40.022734, "LONGITUDE": -75.077262, "DATE_RANGE_START": 2021, "Total Visits": 399.0, "Total Visitors": 277.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 5.0, "Total Spend": 501.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 105.0, "Median Spend per Customer": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077262, 40.022734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6701 Ridge Ave", "LATITUDE": 40.040962, "LONGITUDE": -75.223848, "DATE_RANGE_START": 2021, "Total Visits": 859.0, "Total Visitors": 592.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 6.0, "Total Spend": 18228.0, "Total Transactions": 890.0, "Total Customers": 606.0, "Median Spend per Transaction": 14.82, "Median Spend per Customer": 21.09 }, "geometry": { "type": "Point", "coordinates": [ -75.223848, 40.040962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "Name": "Jo-Ann Fabric and Craft Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 196.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 9.0, "Total Spend": 14682.0, "Total Transactions": 432.0, "Total Customers": 296.0, "Median Spend per Transaction": 27.6, "Median Spend per Customer": 33.46 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "Name": "The Last Word Bookshop", "Category": "Book Stores and News Dealers", "Address": "220 S 40th St", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 394.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 101.0, "Total Spend": 3260.0, "Total Transactions": 160.0, "Total Customers": 146.0, "Median Spend per Transaction": 16.14, "Median Spend per Customer": 16.14 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-28v", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "780 Adams Ave", "LATITUDE": 40.030475, "LONGITUDE": -75.104415, "DATE_RANGE_START": 2021, "Total Visits": 1554.0, "Total Visitors": 1220.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 4.0, "Total Spend": 856.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 28.51, "Median Spend per Customer": 27.18 }, "geometry": { "type": "Point", "coordinates": [ -75.104415, 40.030475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4501 Castor Ave", "LATITUDE": 40.016881, "LONGITUDE": -75.096377, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 122.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 4.0, "Total Spend": 1473.0, "Total Transactions": 69.0, "Total Customers": 38.0, "Median Spend per Transaction": 12.3, "Median Spend per Customer": 35.56 }, "geometry": { "type": "Point", "coordinates": [ -75.096377, 40.016881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "Name": "Destination XL", "Category": "Clothing Stores", "Address": "2329 Cottman Ave Spc 51", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 158.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 10.0, "Total Spend": 8421.0, "Total Transactions": 62.0, "Total Customers": 60.0, "Median Spend per Transaction": 106.75, "Median Spend per Customer": 119.5 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8t-vvf", "Name": "Skechers", "Category": "Shoe Stores", "Address": "1701 Franklin Mills Cir # 202", "LATITUDE": 40.089192, "LONGITUDE": -74.961438, "DATE_RANGE_START": 2021, "Total Visits": 511.0, "Total Visitors": 458.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 1360.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 108.49, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961438, 40.089192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5715 N Broad St", "LATITUDE": 40.040308, "LONGITUDE": -75.143944, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 146.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 12.0, "Total Spend": 2653.0, "Total Transactions": 150.0, "Total Customers": 115.0, "Median Spend per Transaction": 9.37, "Median Spend per Customer": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.143944, 40.040308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4201 Walnut St # 59", "LATITUDE": 39.954892, "LONGITUDE": -75.206728, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 215.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 3.0, "Total Spend": 3232.0, "Total Transactions": 193.0, "Total Customers": 110.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 11.53 }, "geometry": { "type": "Point", "coordinates": [ -75.206728, 39.954892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp5-qxq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "338 E Allegheny Ave Ste 80", "LATITUDE": 39.997222, "LONGITUDE": -75.123675, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 203.0, "POI_CBG": 421010177025.0, "Median Dwell Time": 6.0, "Total Spend": 5073.0, "Total Transactions": 341.0, "Total Customers": 198.0, "Median Spend per Transaction": 8.27, "Median Spend per Customer": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.123675, 39.997222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.979849, "LONGITUDE": -75.269293, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 272.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 2.0, "Total Spend": 19392.0, "Total Transactions": 1358.0, "Total Customers": 1100.0, "Median Spend per Transaction": 10.68, "Median Spend per Customer": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.269293, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1405 S 10th St", "LATITUDE": 39.931453, "LONGITUDE": -75.160518, "DATE_RANGE_START": 2021, "Total Visits": 878.0, "Total Visitors": 532.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 9.0, "Total Spend": 27627.0, "Total Transactions": 1468.0, "Total Customers": 692.0, "Median Spend per Transaction": 10.38, "Median Spend per Customer": 23.31 }, "geometry": { "type": "Point", "coordinates": [ -75.160518, 39.931453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pp5-ht9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2750 Aramingo Ave", "LATITUDE": 39.983672, "LONGITUDE": -75.115989, "DATE_RANGE_START": 2021, "Total Visits": 986.0, "Total Visitors": 685.0, "POI_CBG": 421010179005.0, "Median Dwell Time": 4.0, "Total Spend": 917.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 40.88, "Median Spend per Customer": 40.88 }, "geometry": { "type": "Point", "coordinates": [ -75.115989, 39.983672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7x-dgk", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "6846 Bustleton Ave", "LATITUDE": 40.04172, "LONGITUDE": -75.064728, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 143.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 6.0, "Total Spend": 2062.0, "Total Transactions": 169.0, "Total Customers": 134.0, "Median Spend per Transaction": 10.52, "Median Spend per Customer": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.064728, 40.04172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2726 S Front St", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 193.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 10740.0, "Total Transactions": 258.0, "Total Customers": 222.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 26.94 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7730 City Ave", "LATITUDE": 39.977128, "LONGITUDE": -75.274366, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 289.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 6.0, "Total Spend": 23471.0, "Total Transactions": 542.0, "Total Customers": 456.0, "Median Spend per Transaction": 23.19, "Median Spend per Customer": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.274366, 39.977128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@63s-dvq-73q", "Name": "Park Pizza", "Category": "Restaurants and Other Eating Places", "Address": "434 S 52nd St", "LATITUDE": 39.95248, "LONGITUDE": -75.22673, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 86.0, "POI_CBG": 421010080004.0, "Median Dwell Time": 1390.0, "Total Spend": 1210.0, "Total Transactions": 69.0, "Total Customers": 45.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.22673, 39.95248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "Name": "Axis Pizza", "Category": "Restaurants and Other Eating Places", "Address": "20 S 36th St", "LATITUDE": 39.95523, "LONGITUDE": -75.194652, "DATE_RANGE_START": 2021, "Total Visits": 606.0, "Total Visitors": 430.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 21.0, "Total Spend": 6554.0, "Total Transactions": 365.0, "Total Customers": 239.0, "Median Spend per Transaction": 13.77, "Median Spend per Customer": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.194652, 39.95523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-j7q", "Name": "Byblos", "Category": "Restaurants and Other Eating Places", "Address": "116 S 18th St", "LATITUDE": 39.951257, "LONGITUDE": -75.170681, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 103.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 16429.0, "Total Transactions": 141.0, "Total Customers": 105.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 80.54 }, "geometry": { "type": "Point", "coordinates": [ -75.170681, 39.951257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwb-pvz", "Name": "TMK Produce", "Category": "Grocery Stores", "Address": "6700 Essington Ave Unit A1A6", "LATITUDE": 39.91064, "LONGITUDE": -75.220471, "DATE_RANGE_START": 2021, "Total Visits": 513.0, "Total Visitors": 155.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 206.0, "Total Spend": 6884.0, "Total Transactions": 43.0, "Total Customers": 17.0, "Median Spend per Transaction": 202.5, "Median Spend per Customer": 102.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220471, 39.91064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1034 Washington Ave # 38", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2021, "Total Visits": 430.0, "Total Visitors": 308.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 2.0, "Total Spend": 4250.0, "Total Transactions": 310.0, "Total Customers": 158.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 15.67 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "912 Walnut St # 916", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 305.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 26.0, "Total Spend": 55480.0, "Total Transactions": 6969.0, "Total Customers": 3014.0, "Median Spend per Transaction": 6.68, "Median Spend per Customer": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-mzf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1601 John F Kennedy Blvd", "LATITUDE": 39.954224, "LONGITUDE": -75.167482, "DATE_RANGE_START": 2021, "Total Visits": 3017.0, "Total Visitors": 2002.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 160.0, "Total Spend": 1011.0, "Total Transactions": 150.0, "Total Customers": 81.0, "Median Spend per Transaction": 3.78, "Median Spend per Customer": 5.31 }, "geometry": { "type": "Point", "coordinates": [ -75.167482, 39.954224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032059, "LONGITUDE": -75.213927, "DATE_RANGE_START": 2021, "Total Visits": 422.0, "Total Visitors": 310.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 32.0, "Total Spend": 9257.0, "Total Transactions": 1007.0, "Total Customers": 661.0, "Median Spend per Transaction": 8.05, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.213927, 40.032059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "10000 Roosevelt Blvd", "LATITUDE": 40.095264, "LONGITUDE": -75.015635, "DATE_RANGE_START": 2021, "Total Visits": 2086.0, "Total Visitors": 1379.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 5.0, "Total Spend": 8549.0, "Total Transactions": 897.0, "Total Customers": 544.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.015635, 40.095264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2640 E Cumberland St", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2021, "Total Visits": 831.0, "Total Visitors": 587.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 4.0, "Total Spend": 22766.0, "Total Transactions": 1112.0, "Total Customers": 735.0, "Median Spend per Transaction": 13.65, "Median Spend per Customer": 18.89 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1501 N 52nd St", "LATITUDE": 39.977256, "LONGITUDE": -75.226088, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 184.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 3.0, "Total Spend": 5893.0, "Total Transactions": 671.0, "Total Customers": 315.0, "Median Spend per Transaction": 10.24, "Median Spend per Customer": 8.85 }, "geometry": { "type": "Point", "coordinates": [ -75.226088, 39.977256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jvz", "Name": "Thin & Crispy", "Category": "Restaurants and Other Eating Places", "Address": "2563 Trenton Ave", "LATITUDE": 39.98312, "LONGITUDE": -75.123059, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 12.0, "POI_CBG": 421010160004.0, "Median Dwell Time": 155.0, "Total Spend": 252.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 28.63, "Median Spend per Customer": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.123059, 39.98312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "901 S 2nd St", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010025002.0, "Median Dwell Time": null, "Total Spend": 13078.0, "Total Transactions": 924.0, "Total Customers": 616.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 14.79 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-jsq", "Name": "Rione", "Category": "Restaurants and Other Eating Places", "Address": "102 S 21st St", "LATITUDE": 39.951947, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 74.0, "Total Spend": 1505.0, "Total Transactions": 103.0, "Total Customers": 69.0, "Median Spend per Transaction": 12.33, "Median Spend per Customer": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.951947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-tn5", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "721 Walnut St", "LATITUDE": 39.948145, "LONGITUDE": -75.153461, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 60.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 205.0, "Total Spend": 1365.0, "Total Transactions": 88.0, "Total Customers": 81.0, "Median Spend per Transaction": 10.04, "Median Spend per Customer": 10.04 }, "geometry": { "type": "Point", "coordinates": [ -75.153461, 39.948145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8n5", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "1021 Market St # 1175", "LATITUDE": 39.951999, "LONGITUDE": -75.157711, "DATE_RANGE_START": 2021, "Total Visits": 16496.0, "Total Visitors": 10990.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 57438.0, "Total Transactions": 1241.0, "Total Customers": 1115.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.157711, 39.951999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "801 S Broad St", "LATITUDE": 39.940581, "LONGITUDE": -75.165835, "DATE_RANGE_START": 2021, "Total Visits": 1327.0, "Total Visitors": 952.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 4.0, "Total Spend": 2010.0, "Total Transactions": 76.0, "Total Customers": 57.0, "Median Spend per Transaction": 20.61, "Median Spend per Customer": 24.63 }, "geometry": { "type": "Point", "coordinates": [ -75.165835, 39.940581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-qpv", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "800 W Erie Ave", "LATITUDE": 40.007797, "LONGITUDE": -75.141965, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 12.0, "POI_CBG": 421010199002.0, "Median Dwell Time": 22.0, "Total Spend": 246.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 28.95, "Median Spend per Customer": 28.95 }, "geometry": { "type": "Point", "coordinates": [ -75.141965, 40.007797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2815 Ridge Ave Ste A", "LATITUDE": 39.986359, "LONGITUDE": -75.179573, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 136.0, "POI_CBG": 421010151021.0, "Median Dwell Time": 11.0, "Total Spend": 160.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 15.3, "Median Spend per Customer": 15.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179573, 39.986359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-75z", "Name": "Pizza Brain", "Category": "Restaurants and Other Eating Places", "Address": "2313 Frankford Ave", "LATITUDE": 39.980599, "LONGITUDE": -75.128225, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 31.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 66.0, "Total Spend": 6053.0, "Total Transactions": 212.0, "Total Customers": 196.0, "Median Spend per Transaction": 27.58, "Median Spend per Customer": 27.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128225, 39.980599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "Name": "The Ritz-Carlton", "Category": "Traveler Accommodation", "Address": "10 Avenue of the Arts", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2021, "Total Visits": 8728.0, "Total Visitors": 6241.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 170.0, "Total Spend": 35117.0, "Total Transactions": 95.0, "Total Customers": 72.0, "Median Spend per Transaction": 227.88, "Median Spend per Customer": 292.61 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg3-v4v", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "312 316 Chelten Ave E", "LATITUDE": 40.039046, "LONGITUDE": -75.170704, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 48.0, "POI_CBG": 421010247005.0, "Median Dwell Time": 20.0, "Total Spend": 2026.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 57.71, "Median Spend per Customer": 183.27 }, "geometry": { "type": "Point", "coordinates": [ -75.170704, 40.039046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnw-nkf", "Name": "Laser Wolf", "Category": "Restaurants and Other Eating Places", "Address": "1301 N Howard St", "LATITUDE": 39.970668, "LONGITUDE": -75.13658, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 165.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 82.0, "Total Spend": 34130.0, "Total Transactions": 255.0, "Total Customers": 239.0, "Median Spend per Transaction": 122.97, "Median Spend per Customer": 127.56 }, "geometry": { "type": "Point", "coordinates": [ -75.13658, 39.970668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "Name": "Papa Joe's", "Category": "Restaurants and Other Eating Places", "Address": "7204 Ogontz Ave", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 12.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 721.0, "Total Spend": 1494.0, "Total Transactions": 64.0, "Total Customers": 62.0, "Median Spend per Transaction": 16.39, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phz-q4v", "Name": "Jj's Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3800 J St", "LATITUDE": 40.005715, "LONGITUDE": -75.107525, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 88.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 87.0, "Total Spend": 1267.0, "Total Transactions": 29.0, "Total Customers": 19.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107525, 40.005715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-nwk", "Name": "Louie Louie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3611 Walnut St", "LATITUDE": 39.953483, "LONGITUDE": -75.196032, "DATE_RANGE_START": 2021, "Total Visits": 217.0, "Total Visitors": 158.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 262.0, "Total Spend": 46698.0, "Total Transactions": 561.0, "Total Customers": 484.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 65.49 }, "geometry": { "type": "Point", "coordinates": [ -75.196032, 39.953483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-ty9", "Name": "La Fontana Della Citta", "Category": "Restaurants and Other Eating Places", "Address": "1701 Spruce St", "LATITUDE": 39.947768, "LONGITUDE": -75.169697, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 177.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 24.0, "Total Spend": 220.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 46.15, "Median Spend per Customer": 46.15 }, "geometry": { "type": "Point", "coordinates": [ -75.169697, 39.947768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3541 Aramingo Ave", "LATITUDE": 39.992778, "LONGITUDE": -75.097644, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 210.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 7.0, "Total Spend": 13270.0, "Total Transactions": 802.0, "Total Customers": 585.0, "Median Spend per Transaction": 13.05, "Median Spend per Customer": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.097644, 39.992778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pj6-k4v", "Name": "Tiger Sugar", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.045018, "LONGITUDE": -75.117501, "DATE_RANGE_START": 2021, "Total Visits": 4026.0, "Total Visitors": 2735.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 21.0, "Total Spend": 9475.0, "Total Transactions": 874.0, "Total Customers": 749.0, "Median Spend per Transaction": 7.4, "Median Spend per Customer": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.117501, 40.045018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "Name": "Keller Market", "Category": "Restaurants and Other Eating Places", "Address": "7964 Verree Rd", "LATITUDE": 40.072481, "LONGITUDE": -75.076705, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 191.0, "POI_CBG": 421010341002.0, "Median Dwell Time": 6.0, "Total Spend": 1070.0, "Total Transactions": 62.0, "Total Customers": 45.0, "Median Spend per Transaction": 12.09, "Median Spend per Customer": 18.64 }, "geometry": { "type": "Point", "coordinates": [ -75.076705, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-6x5", "Name": "Harp & Crown", "Category": "Restaurants and Other Eating Places", "Address": "1525 Sansom St", "LATITUDE": 39.950579, "LONGITUDE": -75.166788, "DATE_RANGE_START": 2021, "Total Visits": 5251.0, "Total Visitors": 3716.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 59.0, "Total Spend": 12637.0, "Total Transactions": 155.0, "Total Customers": 146.0, "Median Spend per Transaction": 66.55, "Median Spend per Customer": 68.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166788, 39.950579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5750 Baltimore Ave", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 103.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 6.0, "Total Spend": 424.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 88.9 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-4n5", "Name": "Island Shack Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "1300 W Tabor Rd", "LATITUDE": 40.038192, "LONGITUDE": -75.143201, "DATE_RANGE_START": 2021, "Total Visits": 442.0, "Total Visitors": 284.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 58.0, "Total Spend": 250.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.143201, 40.038192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pm9-tqf", "Name": "Wetzel's Pretzels", "Category": "Restaurants and Other Eating Places", "Address": "1101 Market St Spc 2025", "LATITUDE": 39.952391, "LONGITUDE": -75.157424, "DATE_RANGE_START": 2021, "Total Visits": 1124.0, "Total Visitors": 926.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 6.0, "Total Spend": 4052.0, "Total Transactions": 470.0, "Total Customers": 344.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.157424, 39.952391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dtm-v75", "Name": "Delta Hotels", "Category": "Traveler Accommodation", "Address": "500 Stevens Dr", "LATITUDE": 39.873088, "LONGITUDE": -75.27466, "DATE_RANGE_START": 2021, "Total Visits": 1680.0, "Total Visitors": 998.0, "POI_CBG": 420454037012.0, "Median Dwell Time": 350.0, "Total Spend": 2903.0, "Total Transactions": 79.0, "Total Customers": 64.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27466, 39.873088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5mk", "Name": "Fogo de Chão", "Category": "Restaurants and Other Eating Places", "Address": "1337 Chestnut St", "LATITUDE": 39.950928, "LONGITUDE": -75.162963, "DATE_RANGE_START": 2021, "Total Visits": 18618.0, "Total Visitors": 13115.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 36.0, "Total Spend": 39373.0, "Total Transactions": 210.0, "Total Customers": 203.0, "Median Spend per Transaction": 176.68, "Median Spend per Customer": 177.82 }, "geometry": { "type": "Point", "coordinates": [ -75.162963, 39.950928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm8-djv", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "1526 Packer Ave", "LATITUDE": 39.911588, "LONGITUDE": -75.17455, "DATE_RANGE_START": 2021, "Total Visits": 2597.0, "Total Visitors": 2234.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 49.0, "Total Spend": 1093.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 60.37, "Median Spend per Customer": 60.37 }, "geometry": { "type": "Point", "coordinates": [ -75.17455, 39.911588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-7h5", "Name": "Estia", "Category": "Restaurants and Other Eating Places", "Address": "1405 Locust St", "LATITUDE": 39.948448, "LONGITUDE": -75.165269, "DATE_RANGE_START": 2021, "Total Visits": 525.0, "Total Visitors": 473.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 1.0, "Total Spend": 14902.0, "Total Transactions": 98.0, "Total Customers": 95.0, "Median Spend per Transaction": 119.76, "Median Spend per Customer": 127.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165269, 39.948448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "31 Snyder Ave", "LATITUDE": 39.921808, "LONGITUDE": -75.146286, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 126.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 3076.0, "Total Transactions": 165.0, "Total Customers": 153.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 19.75 }, "geometry": { "type": "Point", "coordinates": [ -75.146286, 39.921808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-wx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "701 Market St", "LATITUDE": 39.950748, "LONGITUDE": -75.151909, "DATE_RANGE_START": 2021, "Total Visits": 425.0, "Total Visitors": 334.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 3.0, "Total Spend": 1870.0, "Total Transactions": 375.0, "Total Customers": 181.0, "Median Spend per Transaction": 4.96, "Median Spend per Customer": 6.68 }, "geometry": { "type": "Point", "coordinates": [ -75.151909, 39.950748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-cqz", "Name": "Pita Chip", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St Ste 7", "LATITUDE": 39.977951, "LONGITUDE": -75.158444, "DATE_RANGE_START": 2021, "Total Visits": 396.0, "Total Visitors": 303.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 98.0, "Total Spend": 3689.0, "Total Transactions": 298.0, "Total Customers": 267.0, "Median Spend per Transaction": 11.25, "Median Spend per Customer": 11.52 }, "geometry": { "type": "Point", "coordinates": [ -75.158444, 39.977951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-jd9", "Name": "Ten Asian Food Hall", "Category": "Restaurants and Other Eating Places", "Address": "1715 Chestnut St", "LATITUDE": 39.951674, "LONGITUDE": -75.169299, "DATE_RANGE_START": 2021, "Total Visits": 1916.0, "Total Visitors": 1594.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 22.0, "Total Spend": 1141.0, "Total Transactions": 57.0, "Total Customers": 48.0, "Median Spend per Transaction": 18.28, "Median Spend per Customer": 18.28 }, "geometry": { "type": "Point", "coordinates": [ -75.169299, 39.951674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-vfz", "Name": "Panorama", "Category": "Restaurants and Other Eating Places", "Address": "14 N Front St", "LATITUDE": 39.950151, "LONGITUDE": -75.142176, "DATE_RANGE_START": 2021, "Total Visits": 3012.0, "Total Visitors": 2396.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 24.0, "Total Spend": 9282.0, "Total Transactions": 60.0, "Total Customers": 53.0, "Median Spend per Transaction": 115.58, "Median Spend per Customer": 133.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142176, 39.950151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "120 W Oregon Ave", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2021, "Total Visits": 301.0, "Total Visitors": 212.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 128.0, "Total Spend": 14919.0, "Total Transactions": 1181.0, "Total Customers": 876.0, "Median Spend per Transaction": 10.68, "Median Spend per Customer": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@63s-dw9-7nq", "Name": "Jack Duggan's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8500 Essington Ave", "LATITUDE": 39.874756, "LONGITUDE": -75.24707, "DATE_RANGE_START": 2021, "Total Visits": 232048.0, "Total Visitors": 147833.0, "POI_CBG": 420459800001.0, "Median Dwell Time": 57.0, "Total Spend": 2925.0, "Total Transactions": 64.0, "Total Customers": 60.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24707, 39.874756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-qzz", "Name": "Fortune Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1828 South St", "LATITUDE": 39.944339, "LONGITUDE": -75.172891, "DATE_RANGE_START": 2021, "Total Visits": 551.0, "Total Visitors": 356.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 181.0, "Total Spend": 1260.0, "Total Transactions": 55.0, "Total Customers": 53.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.172891, 39.944339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-vpv", "Name": "P'unk Burger", "Category": "Restaurants and Other Eating Places", "Address": "1823 E Passyunk Ave", "LATITUDE": 39.927124, "LONGITUDE": -75.166327, "DATE_RANGE_START": 2021, "Total Visits": 826.0, "Total Visitors": 475.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 197.0, "Total Spend": 192.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 12.3, "Median Spend per Customer": 24.59 }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.927124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3313 Wharton St", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2021, "Total Visits": 122.0, "Total Visitors": 103.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 3.0, "Total Spend": 13065.0, "Total Transactions": 1496.0, "Total Customers": 618.0, "Median Spend per Transaction": 7.44, "Median Spend per Customer": 10.66 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "Name": "Crazy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1837 Chestnut St", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 220.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 265.0, "Total Spend": 7280.0, "Total Transactions": 181.0, "Total Customers": 160.0, "Median Spend per Transaction": 31.12, "Median Spend per Customer": 38.24 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-8d9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1038 Arch St", "LATITUDE": 39.953621, "LONGITUDE": -75.157784, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 456.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 21.0, "Total Spend": 4797.0, "Total Transactions": 804.0, "Total Customers": 525.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 6.83 }, "geometry": { "type": "Point", "coordinates": [ -75.157784, 39.953621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "117 S 16th St", "LATITUDE": 39.950584, "LONGITUDE": -75.167188, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 212.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 89.0, "Total Spend": 5083.0, "Total Transactions": 959.0, "Total Customers": 527.0, "Median Spend per Transaction": 4.15, "Median Spend per Customer": 5.71 }, "geometry": { "type": "Point", "coordinates": [ -75.167188, 39.950584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3501 Aramingo Ave", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2021, "Total Visits": 1024.0, "Total Visitors": 683.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 2.0, "Total Spend": 12758.0, "Total Transactions": 1446.0, "Total Customers": 761.0, "Median Spend per Transaction": 7.65, "Median Spend per Customer": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "Name": "Canto House", "Category": "Restaurants and Other Eating Places", "Address": "941 Race St", "LATITUDE": 39.955533, "LONGITUDE": -75.155568, "DATE_RANGE_START": 2021, "Total Visits": 10434.0, "Total Visitors": 6952.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 26.0, "Total Spend": 1479.0, "Total Transactions": 57.0, "Total Customers": 50.0, "Median Spend per Transaction": 15.6, "Median Spend per Customer": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155568, 39.955533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "2104 Market St", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 208.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 55.0, "Total Spend": 157.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 10.63, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "4600 City Ave", "LATITUDE": 40.002693, "LONGITUDE": -75.222651, "DATE_RANGE_START": 2021, "Total Visits": 561.0, "Total Visitors": 406.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 4.0, "Total Spend": 15206.0, "Total Transactions": 1618.0, "Total Customers": 1045.0, "Median Spend per Transaction": 8.4, "Median Spend per Customer": 9.94 }, "geometry": { "type": "Point", "coordinates": [ -75.222651, 40.002693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@63s-dw9-7dv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "Philadelphia Int. Airport Terminal D Concourse B", "LATITUDE": 39.877241, "LONGITUDE": -75.244155, "DATE_RANGE_START": 2021, "Total Visits": 1819.0, "Total Visitors": 1718.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 2.0, "Total Spend": 19022.0, "Total Transactions": 2043.0, "Total Customers": 1893.0, "Median Spend per Transaction": 7.6, "Median Spend per Customer": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.244155, 39.877241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yd9", "Name": "Sleep Inn", "Category": "Traveler Accommodation", "Address": "1020 Cherry St", "LATITUDE": 39.954446, "LONGITUDE": -75.157043, "DATE_RANGE_START": 2021, "Total Visits": 453.0, "Total Visitors": 317.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 107.0, "Total Spend": 2009.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 144.86, "Median Spend per Customer": 144.86 }, "geometry": { "type": "Point", "coordinates": [ -75.157043, 39.954446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "1230 Arch St", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2021, "Total Visits": 286.0, "Total Visitors": 265.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 16.0, "Total Spend": 976.0, "Total Transactions": 62.0, "Total Customers": 60.0, "Median Spend per Transaction": 14.13, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pmd-rtv", "Name": "Sally", "Category": "Restaurants and Other Eating Places", "Address": "2229 Spruce St", "LATITUDE": 39.948932, "LONGITUDE": -75.178843, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 131.0, "POI_CBG": 421010008011.0, "Median Dwell Time": 69.0, "Total Spend": 4701.0, "Total Transactions": 45.0, "Total Customers": 41.0, "Median Spend per Transaction": 92.62, "Median Spend per Customer": 92.62 }, "geometry": { "type": "Point", "coordinates": [ -75.178843, 39.948932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "Name": "Wyndham", "Category": "Traveler Accommodation", "Address": "400 Arch St", "LATITUDE": 39.952204, "LONGITUDE": -75.146959, "DATE_RANGE_START": 2021, "Total Visits": 2721.0, "Total Visitors": 1668.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 405.0, "Total Spend": 79027.0, "Total Transactions": 282.0, "Total Customers": 232.0, "Median Spend per Transaction": 213.78, "Median Spend per Customer": 220.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146959, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-ht9", "Name": "Sonesta Philadelphia Rittenhouse Square", "Category": "Traveler Accommodation", "Address": "1800 Market St", "LATITUDE": 39.952877, "LONGITUDE": -75.170604, "DATE_RANGE_START": 2021, "Total Visits": 964.0, "Total Visitors": 692.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 176.0, "Total Spend": 74438.0, "Total Transactions": 212.0, "Total Customers": 200.0, "Median Spend per Transaction": 264.69, "Median Spend per Customer": 266.48 }, "geometry": { "type": "Point", "coordinates": [ -75.170604, 39.952877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5pv", "Name": "Hard Rock Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1113 Market St", "LATITUDE": 39.952216, "LONGITUDE": -75.159642, "DATE_RANGE_START": 2021, "Total Visits": 768.0, "Total Visitors": 623.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 56.0, "Total Spend": 41558.0, "Total Transactions": 726.0, "Total Customers": 621.0, "Median Spend per Transaction": 51.52, "Median Spend per Customer": 59.44 }, "geometry": { "type": "Point", "coordinates": [ -75.159642, 39.952216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-whq", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "304 Market St", "LATITUDE": 39.949985, "LONGITUDE": -75.146017, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 129.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 2.0, "Total Spend": 1521.0, "Total Transactions": 88.0, "Total Customers": 84.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.146017, 39.949985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-8d9", "Name": "Tom's Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "59 N 11th St", "LATITUDE": 39.953328, "LONGITUDE": -75.157763, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 13618.0, "Total Transactions": 296.0, "Total Customers": 263.0, "Median Spend per Transaction": 41.66, "Median Spend per Customer": 42.61 }, "geometry": { "type": "Point", "coordinates": [ -75.157763, 39.953328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "Name": "Asian Bamboo House", "Category": "Restaurants and Other Eating Places", "Address": "9456 State Rd", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 81.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 6.0, "Total Spend": 5493.0, "Total Transactions": 174.0, "Total Customers": 126.0, "Median Spend per Transaction": 27.41, "Median Spend per Customer": 37.42 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "Name": "Ruth's Chris Steak House", "Category": "Restaurants and Other Eating Places", "Address": "1800 Market St", "LATITUDE": 39.952962, "LONGITUDE": -75.170263, "DATE_RANGE_START": 2021, "Total Visits": 2119.0, "Total Visitors": 1251.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 413.0, "Total Spend": 31471.0, "Total Transactions": 189.0, "Total Customers": 177.0, "Median Spend per Transaction": 168.94, "Median Spend per Customer": 172.74 }, "geometry": { "type": "Point", "coordinates": [ -75.170263, 39.952962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "1521 S Columbus Blvd", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2021, "Total Visits": 427.0, "Total Visitors": 329.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 8.0, "Total Spend": 19222.0, "Total Transactions": 1599.0, "Total Customers": 1069.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 13.59 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "Name": "Balducci's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.875709, "LONGITUDE": -75.241464, "DATE_RANGE_START": 2021, "Total Visits": 324922.0, "Total Visitors": 185623.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 66.0, "Total Spend": 6104.0, "Total Transactions": 442.0, "Total Customers": 418.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.241464, 39.875709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-rkz", "Name": "Zahav", "Category": "Restaurants and Other Eating Places", "Address": "237 Saint James Pl", "LATITUDE": 39.946194, "LONGITUDE": -75.145279, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 308.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 136.0, "Total Spend": 40941.0, "Total Transactions": 200.0, "Total Customers": 193.0, "Median Spend per Transaction": 199.22, "Median Spend per Customer": 202.63 }, "geometry": { "type": "Point", "coordinates": [ -75.145279, 39.946194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pp5-p35", "Name": "Martin's Deli", "Category": "Restaurants and Other Eating Places", "Address": "2772 Kensington Ave", "LATITUDE": 39.991299, "LONGITUDE": -75.123216, "DATE_RANGE_START": 2021, "Total Visits": 878.0, "Total Visitors": 604.0, "POI_CBG": 421010177022.0, "Median Dwell Time": 2.0, "Total Spend": 412.0, "Total Transactions": 48.0, "Total Customers": 29.0, "Median Spend per Transaction": 8.29, "Median Spend per Customer": 10.77 }, "geometry": { "type": "Point", "coordinates": [ -75.123216, 39.991299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zvf", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "2906 N Broad St # 08", "LATITUDE": 39.997217, "LONGITUDE": -75.154386, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 1.0, "Total Spend": 1354.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 141.88, "Median Spend per Customer": 141.88 }, "geometry": { "type": "Point", "coordinates": [ -75.154386, 39.997217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "Name": "Gennaro's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1315 Bainbridge St", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 60.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 1087.0, "Total Spend": 2994.0, "Total Transactions": 189.0, "Total Customers": 124.0, "Median Spend per Transaction": 15.07, "Median Spend per Customer": 20.06 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "Name": "Frank's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3600 Fisk Ave", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 1.0, "Total Spend": 2353.0, "Total Transactions": 119.0, "Total Customers": 86.0, "Median Spend per Transaction": 16.84, "Median Spend per Customer": 23.77 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg9-k4v", "Name": "Mom's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "2312 N 29th St", "LATITUDE": 39.991401, "LONGITUDE": -75.180066, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010169022.0, "Median Dwell Time": null, "Total Spend": 499.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 16.72, "Median Spend per Customer": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.180066, 39.991401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-php-s3q", "Name": "Tejade Grocery", "Category": "Grocery Stores", "Address": "1601 E Tulpehocken St", "LATITUDE": 40.060966, "LONGITUDE": -75.161233, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010264004.0, "Median Dwell Time": null, "Total Spend": 1028.0, "Total Transactions": 126.0, "Total Customers": 79.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161233, 40.060966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-jjv", "Name": "Sweet Treat Hut", "Category": "Restaurants and Other Eating Places", "Address": "1240 N 50th St", "LATITUDE": 39.973199, "LONGITUDE": -75.222994, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 1.0, "Total Spend": 1616.0, "Total Transactions": 126.0, "Total Customers": 88.0, "Median Spend per Transaction": 9.2, "Median Spend per Customer": 13.2 }, "geometry": { "type": "Point", "coordinates": [ -75.222994, 39.973199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-6tv", "Name": "Allen Tire & Service", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6301 Rising Sun Ave", "LATITUDE": 40.048405, "LONGITUDE": -75.096529, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010306003.0, "Median Dwell Time": null, "Total Spend": 23514.0, "Total Transactions": 50.0, "Total Customers": 45.0, "Median Spend per Transaction": 166.19, "Median Spend per Customer": 166.14 }, "geometry": { "type": "Point", "coordinates": [ -75.096529, 40.048405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfy-wkz", "Name": "Dawson Street Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 Dawson St", "LATITUDE": 40.018548, "LONGITUDE": -75.21277, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 14.0, "POI_CBG": 421010209004.0, "Median Dwell Time": 130.0, "Total Spend": 1638.0, "Total Transactions": 55.0, "Total Customers": 43.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21277, 40.018548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5158 Haverford Ave", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 24.0, "POI_CBG": 421010093005.0, "Median Dwell Time": 6.0, "Total Spend": 929.0, "Total Transactions": 53.0, "Total Customers": 45.0, "Median Spend per Transaction": 15.67, "Median Spend per Customer": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phq-2hq", "Name": "X Mark's the Spot", "Category": "Restaurants and Other Eating Places", "Address": "6364 Stenton Ave", "LATITUDE": 40.060083, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 7.0, "Total Spend": 4502.0, "Total Transactions": 55.0, "Total Customers": 10.0, "Median Spend per Transaction": 80.0, "Median Spend per Customer": 79.68 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 40.060083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "Name": "Palm Tree Market", "Category": "Restaurants and Other Eating Places", "Address": "717 N 2nd St", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 26.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1.0, "Total Spend": 8978.0, "Total Transactions": 623.0, "Total Customers": 434.0, "Median Spend per Transaction": 12.2, "Median Spend per Customer": 14.77 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "Name": "Cafe Thanh Truc", "Category": "Restaurants and Other Eating Places", "Address": "1037 S 8th St", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 26.0, "Total Spend": 386.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 19.1, "Median Spend per Customer": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p9p-z2k", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9979 Bustleton Ave", "LATITUDE": 40.101427, "LONGITUDE": -75.028593, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 45.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 1.0, "Total Spend": 1663.0, "Total Transactions": 119.0, "Total Customers": 95.0, "Median Spend per Transaction": 10.91, "Median Spend per Customer": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.028593, 40.101427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@63s-dvx-tsq", "Name": "University City Mini Market", "Category": "Grocery Stores", "Address": "4700 Chester Ave", "LATITUDE": 39.945765, "LONGITUDE": -75.213948, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 74.0, "POI_CBG": 421010078001.0, "Median Dwell Time": 3.0, "Total Spend": 121.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 25.44, "Median Spend per Customer": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.213948, 39.945765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kfz", "Name": "The Rittenhouse Hotel", "Category": "Traveler Accommodation", "Address": "210 W Rittenhouse Sq", "LATITUDE": 39.949841, "LONGITUDE": -75.173264, "DATE_RANGE_START": 2021, "Total Visits": 764.0, "Total Visitors": 449.0, "POI_CBG": 421010008034.0, "Median Dwell Time": 142.0, "Total Spend": 33125.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 781.0, "Median Spend per Customer": 776.34 }, "geometry": { "type": "Point", "coordinates": [ -75.173264, 39.949841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "Name": "SouthHouse", "Category": "Restaurants and Other Eating Places", "Address": "2535 S 13th St", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2021, "Total Visits": 210.0, "Total Visitors": 98.0, "POI_CBG": 421010040023.0, "Median Dwell Time": 249.0, "Total Spend": 7689.0, "Total Transactions": 189.0, "Total Customers": 158.0, "Median Spend per Transaction": 37.82, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmb-6x5", "Name": "Mission Taqueria", "Category": "Restaurants and Other Eating Places", "Address": "1516 Sansom St Fl 2", "LATITUDE": 39.950235, "LONGITUDE": -75.166639, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 177.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 28.0, "Total Spend": 1942.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 77.96, "Median Spend per Customer": 77.96 }, "geometry": { "type": "Point", "coordinates": [ -75.166639, 39.950235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "3939 Chestnut St Fl 2", "LATITUDE": 39.955756, "LONGITUDE": -75.201691, "DATE_RANGE_START": 2021, "Total Visits": 2286.0, "Total Visitors": 1150.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 420.0, "Total Spend": 6655.0, "Total Transactions": 136.0, "Total Customers": 129.0, "Median Spend per Transaction": 45.36, "Median Spend per Customer": 43.96 }, "geometry": { "type": "Point", "coordinates": [ -75.201691, 39.955756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-phy-kmk", "Name": "El Sabor De Maria", "Category": "Restaurants and Other Eating Places", "Address": "4903 N 5th St", "LATITUDE": 40.025858, "LONGITUDE": -75.132587, "DATE_RANGE_START": 2021, "Total Visits": 475.0, "Total Visitors": 298.0, "POI_CBG": 421010286003.0, "Median Dwell Time": 58.0, "Total Spend": 102.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 21.34, "Median Spend per Customer": 21.34 }, "geometry": { "type": "Point", "coordinates": [ -75.132587, 40.025858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5534 Wayne Ave", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 308.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 3.0, "Total Spend": 1398.0, "Total Transactions": 112.0, "Total Customers": 69.0, "Median Spend per Transaction": 12.47, "Median Spend per Customer": 16.41 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7912 Roosevelt Blvd", "LATITUDE": 40.055662, "LONGITUDE": -75.049241, "DATE_RANGE_START": 2021, "Total Visits": 2322.0, "Total Visitors": 1516.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 4.0, "Total Spend": 109494.0, "Total Transactions": 6193.0, "Total Customers": 2778.0, "Median Spend per Transaction": 13.09, "Median Spend per Customer": 25.06 }, "geometry": { "type": "Point", "coordinates": [ -75.049241, 40.055662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-7t9", "Name": "Wawa", "Category": "Grocery Stores", "Address": "10901A Bustleton Ave", "LATITUDE": 40.11156, "LONGITUDE": -75.023472, "DATE_RANGE_START": 2021, "Total Visits": 2943.0, "Total Visitors": 1695.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 3.0, "Total Spend": 176.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 36.9, "Median Spend per Customer": 36.9 }, "geometry": { "type": "Point", "coordinates": [ -75.023472, 40.11156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "Name": "Old Nelson Food Company", "Category": "Beer, Wine, and Liquor Stores", "Address": "1100 W Montgomery Ave Ste D", "LATITUDE": 39.979391, "LONGITUDE": -75.152636, "DATE_RANGE_START": 2021, "Total Visits": 2341.0, "Total Visitors": 1126.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 357.0, "Total Spend": 27900.0, "Total Transactions": 1928.0, "Total Customers": 1461.0, "Median Spend per Transaction": 11.83, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.152636, 39.979391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p86-hbk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7941 Oxford Ave", "LATITUDE": 40.075694, "LONGITUDE": -75.084798, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 282.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 5.0, "Total Spend": 8302.0, "Total Transactions": 453.0, "Total Customers": 296.0, "Median Spend per Transaction": 12.08, "Median Spend per Customer": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.084798, 40.075694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "Name": "Forever 21", "Category": "Clothing Stores", "Address": "1706 Franklin Mills Cir", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2021, "Total Visits": 616.0, "Total Visitors": 539.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 25450.0, "Total Transactions": 690.0, "Total Customers": 618.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 29.11 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kj9", "Name": "Fleur De Lis Boutique", "Category": "Clothing Stores", "Address": "2107 Walnut St", "LATITUDE": 39.950913, "LONGITUDE": -75.176137, "DATE_RANGE_START": 2021, "Total Visits": 2862.0, "Total Visitors": 2158.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 6.0, "Total Spend": 651.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.176137, 39.950913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgf-kj9", "Name": "Wheel Fun Rentals Boathouse Row", "Category": "Other Motor Vehicle Dealers", "Address": "1 Boathouse Row", "LATITUDE": 39.969459, "LONGITUDE": -75.187508, "DATE_RANGE_START": 2021, "Total Visits": 232.0, "Total Visitors": 167.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 95.0, "Total Spend": 2399.0, "Total Transactions": 93.0, "Total Customers": 91.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.187508, 39.969459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-t7q", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "2900 Island Ave Ste 2946", "LATITUDE": 39.901479, "LONGITUDE": -75.241623, "DATE_RANGE_START": 2021, "Total Visits": 2084.0, "Total Visitors": 1258.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 21.0, "Total Spend": 1405.0, "Total Transactions": 17.0, "Total Customers": 7.0, "Median Spend per Transaction": 91.11, "Median Spend per Customer": 174.46 }, "geometry": { "type": "Point", "coordinates": [ -75.241623, 39.901479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.913861, "LONGITUDE": -75.154438, "DATE_RANGE_START": 2021, "Total Visits": 3692.0, "Total Visitors": 1998.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 21.0, "Total Spend": 1587.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 80.18, "Median Spend per Customer": 182.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154438, 39.913861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3724 Spruce St # 3744", "LATITUDE": 39.950972, "LONGITUDE": -75.198395, "DATE_RANGE_START": 2021, "Total Visits": 1131.0, "Total Visitors": 802.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 7.0, "Total Spend": 60887.0, "Total Transactions": 6807.0, "Total Customers": 3131.0, "Median Spend per Transaction": 7.45, "Median Spend per Customer": 11.54 }, "geometry": { "type": "Point", "coordinates": [ -75.198395, 39.950972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "Name": "Javies Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "4901 Umbria St", "LATITUDE": 40.034848, "LONGITUDE": -75.234562, "DATE_RANGE_START": 2021, "Total Visits": 189.0, "Total Visitors": 150.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 2.0, "Total Spend": 55430.0, "Total Transactions": 1821.0, "Total Customers": 1074.0, "Median Spend per Transaction": 23.53, "Median Spend per Customer": 35.2 }, "geometry": { "type": "Point", "coordinates": [ -75.234562, 40.034848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "Name": "Johns Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "128 W Chelten Ave", "LATITUDE": 40.03316, "LONGITUDE": -75.177034, "DATE_RANGE_START": 2021, "Total Visits": 141.0, "Total Visitors": 119.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 5.0, "Total Spend": 10047.0, "Total Transactions": 368.0, "Total Customers": 296.0, "Median Spend per Transaction": 22.12, "Median Spend per Customer": 26.45 }, "geometry": { "type": "Point", "coordinates": [ -75.177034, 40.03316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "Name": "10 Spot/MadRag", "Category": "Clothing Stores", "Address": "2250 W Oregon Ave", "LATITUDE": 39.917816, "LONGITUDE": -75.185164, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 105.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 8.0, "Total Spend": 38014.0, "Total Transactions": 864.0, "Total Customers": 697.0, "Median Spend per Transaction": 33.98, "Median Spend per Customer": 42.37 }, "geometry": { "type": "Point", "coordinates": [ -75.185164, 39.917816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "Name": "Walmart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd Bldg G", "LATITUDE": 40.031276, "LONGITUDE": -75.099634, "DATE_RANGE_START": 2021, "Total Visits": 6260.0, "Total Visitors": 4169.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 22.0, "Total Spend": 345628.0, "Total Transactions": 5525.0, "Total Customers": 3783.0, "Median Spend per Transaction": 39.26, "Median Spend per Customer": 52.49 }, "geometry": { "type": "Point", "coordinates": [ -75.099634, 40.031276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-hbk", "Name": "Jyoti Indian Bistro", "Category": "Restaurants and Other Eating Places", "Address": "7220 Germantown Ave", "LATITUDE": 40.060418, "LONGITUDE": -75.191506, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010388002.0, "Median Dwell Time": null, "Total Spend": 260.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 22.14, "Median Spend per Customer": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.191506, 40.060418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "Name": "Overbrook Pizza Shop", "Category": "Restaurants and Other Eating Places", "Address": "2099 N 63rd St", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010375001.0, "Median Dwell Time": null, "Total Spend": 2321.0, "Total Transactions": 107.0, "Total Customers": 88.0, "Median Spend per Transaction": 19.48, "Median Spend per Customer": 19.48 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-p82-nqz", "Name": "On Charcoal", "Category": "Restaurants and Other Eating Places", "Address": "6516 Castor Ave", "LATITUDE": 40.041319, "LONGITUDE": -75.075986, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 24.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 134.0, "Total Spend": 377.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 53.55, "Median Spend per Customer": 53.55 }, "geometry": { "type": "Point", "coordinates": [ -75.075986, 40.041319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgf-52k", "Name": "Woosa Bubble Tea", "Category": "Restaurants and Other Eating Places", "Address": "3639 Lancaster Ave", "LATITUDE": 39.959251, "LONGITUDE": -75.194643, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 41.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 14.0, "Total Spend": 1773.0, "Total Transactions": 165.0, "Total Customers": 155.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.194643, 39.959251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgj-xkf", "Name": "Sunny's Diner", "Category": "Restaurants and Other Eating Places", "Address": "2501 N Broad St", "LATITUDE": 39.990908, "LONGITUDE": -75.154807, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 18.0, "Total Spend": 224.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 10.48, "Median Spend per Customer": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.154807, 39.990908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwf-j35", "Name": "Airgas", "Category": "Chemical and Allied Products Merchant Wholesalers", "Address": "7575 Holstein Ave", "LATITUDE": 39.90125, "LONGITUDE": -75.230162, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 53.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 15.0, "Total Spend": 155.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230162, 39.90125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-hnq", "Name": "New Image Art & Framing", "Category": "Home Furnishings Stores", "Address": "1939 Chestnut St", "LATITUDE": 39.952342, "LONGITUDE": -75.173299, "DATE_RANGE_START": 2021, "Total Visits": 4212.0, "Total Visitors": 2685.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 51.0, "Total Spend": 121.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 18.75, "Median Spend per Customer": 18.75 }, "geometry": { "type": "Point", "coordinates": [ -75.173299, 39.952342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-5mk", "Name": "West Elm", "Category": "Home Furnishings Stores", "Address": "1330 Chestnut St # 873", "LATITUDE": 39.950642, "LONGITUDE": -75.163094, "DATE_RANGE_START": 2021, "Total Visits": 616.0, "Total Visitors": 432.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 118.0, "Total Spend": 4291.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.163094, 39.950642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-dvz", "Name": "Quick Stop", "Category": "Grocery Stores", "Address": "3001 Kensington Ave", "LATITUDE": 39.993791, "LONGITUDE": -75.117865, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 408.0, "POI_CBG": 421010178005.0, "Median Dwell Time": 5.0, "Total Spend": 4365.0, "Total Transactions": 243.0, "Total Customers": 146.0, "Median Spend per Transaction": 12.34, "Median Spend per Customer": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.117865, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2131 South St", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2021, "Total Visits": 232.0, "Total Visitors": 191.0, "POI_CBG": 421010012013.0, "Median Dwell Time": 1.0, "Total Spend": 64266.0, "Total Transactions": 6752.0, "Total Customers": 3017.0, "Median Spend per Transaction": 7.88, "Median Spend per Customer": 11.36 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "Name": "The Beer Peddlers", "Category": "Beer, Wine, and Liquor Stores", "Address": "1942 S Columbus Blvd", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2021, "Total Visits": 227.0, "Total Visitors": 148.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 26176.0, "Total Transactions": 783.0, "Total Customers": 630.0, "Median Spend per Transaction": 26.45, "Median Spend per Customer": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pfz-bhq", "Name": "Bendi", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4333 Main St", "LATITUDE": 40.025401, "LONGITUDE": -75.22307, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 4.0, "Total Spend": 5236.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 317.32, "Median Spend per Customer": 324.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22307, 40.025401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5601 Vine St", "LATITUDE": 39.96694, "LONGITUDE": -75.233446, "DATE_RANGE_START": 2021, "Total Visits": 382.0, "Total Visitors": 265.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 5.0, "Total Spend": 624.0, "Total Transactions": 55.0, "Total Customers": 48.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 8.58 }, "geometry": { "type": "Point", "coordinates": [ -75.233446, 39.96694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "Name": "Accent On Animals", "Category": "Other Miscellaneous Store Retailers", "Address": "804 South St", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2021, "Total Visits": 683.0, "Total Visitors": 494.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 287.0, "Total Spend": 1399.0, "Total Transactions": 62.0, "Total Customers": 60.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "1415 Washington Ave", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2021, "Total Visits": 702.0, "Total Visitors": 482.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 11.0, "Total Spend": 78248.0, "Total Transactions": 1831.0, "Total Customers": 1301.0, "Median Spend per Transaction": 29.66, "Median Spend per Customer": 40.62 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-m8v", "Name": "Ooh LaLa Salads", "Category": "Restaurants and Other Eating Places", "Address": "1238 W Girard Ave", "LATITUDE": 39.970924, "LONGITUDE": -75.156972, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 31.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 24.0, "Total Spend": 1360.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 19.86, "Median Spend per Customer": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.156972, 39.970924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "Name": "Yummy Pho", "Category": "Restaurants and Other Eating Places", "Address": "2012 N Broad St", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 36.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 1.0, "Total Spend": 3720.0, "Total Transactions": 232.0, "Total Customers": 186.0, "Median Spend per Transaction": 12.8, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-cdv", "Name": "Holiday Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "8601 Torresdale Ave", "LATITUDE": 40.04293, "LONGITUDE": -75.010392, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 1.0, "Total Spend": 321.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 13.38 }, "geometry": { "type": "Point", "coordinates": [ -75.010392, 40.04293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pgf-fj9", "Name": "Cleopatra Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4145 Chestnut St", "LATITUDE": 39.956516, "LONGITUDE": -75.206034, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 60.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 42.0, "Total Spend": 1790.0, "Total Transactions": 43.0, "Total Customers": 43.0, "Median Spend per Transaction": 41.0, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206034, 39.956516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 18th St", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2021, "Total Visits": 640.0, "Total Visitors": 401.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 3.0, "Total Spend": 5310.0, "Total Transactions": 859.0, "Total Customers": 434.0, "Median Spend per Transaction": 5.33, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgf-4jv", "Name": "Grilly Cheese", "Category": "Restaurants and Other Eating Places", "Address": "3306 Arch St", "LATITUDE": 39.957474, "LONGITUDE": -75.189936, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 1.0, "Total Spend": 461.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 55.44, "Median Spend per Customer": 55.44 }, "geometry": { "type": "Point", "coordinates": [ -75.189936, 39.957474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pjf-p7q", "Name": "Mimi's Cafe & Market", "Category": "Restaurants and Other Eating Places", "Address": "184 E Evergreen Ave", "LATITUDE": 40.076905, "LONGITUDE": -75.206381, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 26.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 5.0, "Total Spend": 1309.0, "Total Transactions": 41.0, "Total Customers": 26.0, "Median Spend per Transaction": 18.18, "Median Spend per Customer": 34.37 }, "geometry": { "type": "Point", "coordinates": [ -75.206381, 40.076905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgj-pgk", "Name": "Arthurs Dog House", "Category": "Restaurants and Other Eating Places", "Address": "2650 Germantown Ave", "LATITUDE": 39.992823, "LONGITUDE": -75.148113, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010165003.0, "Median Dwell Time": 2.0, "Total Spend": 720.0, "Total Transactions": 38.0, "Total Customers": 36.0, "Median Spend per Transaction": 16.81, "Median Spend per Customer": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.148113, 39.992823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-v75", "Name": "JJ Bootleggers", "Category": "Restaurants and Other Eating Places", "Address": "35 S 2nd St", "LATITUDE": 39.94896, "LONGITUDE": -75.143844, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 400.0, "Total Spend": 68047.0, "Total Transactions": 2274.0, "Total Customers": 1067.0, "Median Spend per Transaction": 22.8, "Median Spend per Customer": 42.65 }, "geometry": { "type": "Point", "coordinates": [ -75.143844, 39.94896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rp9", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2308 W Oregon Ave", "LATITUDE": 39.917838, "LONGITUDE": -75.186989, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 48.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 43.0, "Total Spend": 8901.0, "Total Transactions": 298.0, "Total Customers": 248.0, "Median Spend per Transaction": 26.66, "Median Spend per Customer": 28.63 }, "geometry": { "type": "Point", "coordinates": [ -75.186989, 39.917838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "Name": "Thai Square Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2521 Christian St", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 12.0, "POI_CBG": 421010013005.0, "Median Dwell Time": 172.0, "Total Spend": 2899.0, "Total Transactions": 74.0, "Total Customers": 64.0, "Median Spend per Transaction": 35.53, "Median Spend per Customer": 39.69 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "Name": "Nori Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1636 South St", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 24.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 40.0, "Total Spend": 1774.0, "Total Transactions": 48.0, "Total Customers": 45.0, "Median Spend per Transaction": 30.16, "Median Spend per Customer": 30.13 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pp5-94v", "Name": "London Wreath", "Category": "Florists", "Address": "2014 E Orleans St", "LATITUDE": 39.990978, "LONGITUDE": -75.116664, "DATE_RANGE_START": 2021, "Total Visits": 84.0, "Total Visitors": 29.0, "POI_CBG": 421010178004.0, "Median Dwell Time": 490.0, "Total Spend": 452.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 94.77, "Median Spend per Customer": 94.77 }, "geometry": { "type": "Point", "coordinates": [ -75.116664, 39.990978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "Name": "Independence Prime", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 30405.0, "Total Transactions": 979.0, "Total Customers": 745.0, "Median Spend per Transaction": 25.56, "Median Spend per Customer": 33.64 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmb-835", "Name": "Beck's Cajun Cafe", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953182, "LONGITUDE": -75.159431, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 2302.0, "Total Transactions": 105.0, "Total Customers": 100.0, "Median Spend per Transaction": 17.12, "Median Spend per Customer": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159431, 39.953182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8j-bp9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4011 Cottman Ave", "LATITUDE": 40.035986, "LONGITUDE": -75.039532, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 215.0, "POI_CBG": 421010330006.0, "Median Dwell Time": 8.0, "Total Spend": 14036.0, "Total Transactions": 642.0, "Total Customers": 356.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 25.35 }, "geometry": { "type": "Point", "coordinates": [ -75.039532, 40.035986 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "Name": "Jini Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "1319 Franklin Mills Cir", "LATITUDE": 40.085837, "LONGITUDE": -74.962154, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 339.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 1556.0, "Total Transactions": 50.0, "Total Customers": 50.0, "Median Spend per Transaction": 18.33, "Median Spend per Customer": 18.33 }, "geometry": { "type": "Point", "coordinates": [ -74.962154, 40.085837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "171 W Chelten Ave", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2021, "Total Visits": 396.0, "Total Visitors": 305.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 5.0, "Total Spend": 171.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 9.38, "Median Spend per Customer": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-92k", "Name": "Kate Spade", "Category": "Clothing Stores", "Address": "901 Market St Unit 1065", "LATITUDE": 39.952238, "LONGITUDE": -75.155945, "DATE_RANGE_START": 2021, "Total Visits": 632.0, "Total Visitors": 511.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 12345.0, "Total Transactions": 138.0, "Total Customers": 124.0, "Median Spend per Transaction": 72.66, "Median Spend per Customer": 84.46 }, "geometry": { "type": "Point", "coordinates": [ -75.155945, 39.952238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvx-59f", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4701 W Girard Ave", "LATITUDE": 39.972941, "LONGITUDE": -75.217366, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 186.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 3.0, "Total Spend": 214.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 8.21 }, "geometry": { "type": "Point", "coordinates": [ -75.217366, 39.972941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1500 Chestnut St", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2021, "Total Visits": 1723.0, "Total Visitors": 1167.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 73.0, "Total Spend": 21634.0, "Total Transactions": 613.0, "Total Customers": 511.0, "Median Spend per Transaction": 21.02, "Median Spend per Customer": 23.87 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-b8v", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "8130 Roosevelt Blvd", "LATITUDE": 40.059227, "LONGITUDE": -75.045575, "DATE_RANGE_START": 2021, "Total Visits": 389.0, "Total Visitors": 253.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 9.0, "Total Spend": 6618.0, "Total Transactions": 315.0, "Total Customers": 196.0, "Median Spend per Transaction": 16.05, "Median Spend per Customer": 19.52 }, "geometry": { "type": "Point", "coordinates": [ -75.045575, 40.059227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-94v", "Name": "Torrid", "Category": "Clothing Stores", "Address": "1001 Market St Unit 2030", "LATITUDE": 39.952222, "LONGITUDE": -75.156836, "DATE_RANGE_START": 2021, "Total Visits": 16496.0, "Total Visitors": 10990.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 3325.0, "Total Transactions": 53.0, "Total Customers": 45.0, "Median Spend per Transaction": 51.71, "Median Spend per Customer": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156836, 39.952222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pmf-j35", "Name": "Head Start Shoes", "Category": "Shoe Stores", "Address": "126 S 17th St", "LATITUDE": 39.950646, "LONGITUDE": -75.169071, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 179.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 3977.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 128.5, "Median Spend per Customer": 158.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 39.950646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "Name": "IKEA", "Category": "Furniture Stores", "Address": "2206 S Columbus Blvd", "LATITUDE": 39.917106, "LONGITUDE": -75.141639, "DATE_RANGE_START": 2021, "Total Visits": 6909.0, "Total Visitors": 5993.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 49.0, "Total Spend": 548826.0, "Total Transactions": 4788.0, "Total Customers": 3477.0, "Median Spend per Transaction": 45.86, "Median Spend per Customer": 75.98 }, "geometry": { "type": "Point", "coordinates": [ -75.141639, 39.917106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p8m-v2k", "Name": "Hung Vuong Food Market", "Category": "Grocery Stores", "Address": "6499 Sackett St", "LATITUDE": 40.030075, "LONGITUDE": -75.057846, "DATE_RANGE_START": 2021, "Total Visits": 802.0, "Total Visitors": 549.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 14.0, "Total Spend": 35313.0, "Total Transactions": 535.0, "Total Customers": 351.0, "Median Spend per Transaction": 34.72, "Median Spend per Customer": 45.65 }, "geometry": { "type": "Point", "coordinates": [ -75.057846, 40.030075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pj9-yvz", "Name": "My Daughters Wedding", "Category": "Clothing Stores", "Address": "5642 N 5th St", "LATITUDE": 40.037569, "LONGITUDE": -75.130408, "DATE_RANGE_START": 2021, "Total Visits": 1115.0, "Total Visitors": 523.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 314.0, "Total Spend": 957.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 200.4, "Median Spend per Customer": 200.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130408, 40.037569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj7-2p9", "Name": "Jerusalem Furniture", "Category": "Furniture Stores", "Address": "5691 Rising Sun Ave", "LATITUDE": 40.040423, "LONGITUDE": -75.107572, "DATE_RANGE_START": 2021, "Total Visits": 126.0, "Total Visitors": 122.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 22.0, "Total Spend": 15716.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 1195.0, "Median Spend per Customer": 1195.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107572, 40.040423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-zzz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1315 E Washington Ln", "LATITUDE": 40.058549, "LONGITUDE": -75.166373, "DATE_RANGE_START": 2021, "Total Visits": 308.0, "Total Visitors": 186.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 8.0, "Total Spend": 12763.0, "Total Transactions": 628.0, "Total Customers": 406.0, "Median Spend per Transaction": 12.41, "Median Spend per Customer": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.166373, 40.058549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p7w-gc5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7965 Verree Rd", "LATITUDE": 40.072485, "LONGITUDE": -75.075778, "DATE_RANGE_START": 2021, "Total Visits": 871.0, "Total Visitors": 592.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 3.0, "Total Spend": 1542.0, "Total Transactions": 43.0, "Total Customers": 33.0, "Median Spend per Transaction": 38.06, "Median Spend per Customer": 48.28 }, "geometry": { "type": "Point", "coordinates": [ -75.075778, 40.072485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4156 Ridge Ave # 78", "LATITUDE": 40.008575, "LONGITUDE": -75.193866, "DATE_RANGE_START": 2021, "Total Visits": 1671.0, "Total Visitors": 1339.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 4.0, "Total Spend": 3854.0, "Total Transactions": 119.0, "Total Customers": 100.0, "Median Spend per Transaction": 31.38, "Median Spend per Customer": 37.76 }, "geometry": { "type": "Point", "coordinates": [ -75.193866, 40.008575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "Name": "Burlington", "Category": "Clothing Stores", "Address": "833 Market St", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2021, "Total Visits": 10594.0, "Total Visitors": 6704.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 37.0, "Total Spend": 19875.0, "Total Transactions": 379.0, "Total Customers": 291.0, "Median Spend per Transaction": 25.72, "Median Spend per Customer": 31.74 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6000 N Broad St Store A", "LATITUDE": 40.045011, "LONGITUDE": -75.144262, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 138.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 5.0, "Total Spend": 1063.0, "Total Transactions": 36.0, "Total Customers": 29.0, "Median Spend per Transaction": 21.82, "Median Spend per Customer": 28.55 }, "geometry": { "type": "Point", "coordinates": [ -75.144262, 40.045011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "Name": "CLo", "Category": "Shoe Stores", "Address": "3511 N Lee St", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010195022.0, "Median Dwell Time": null, "Total Spend": 17430.0, "Total Transactions": 158.0, "Total Customers": 148.0, "Median Spend per Transaction": 70.2, "Median Spend per Customer": 70.2 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "Name": "King of Wings", "Category": "Restaurants and Other Eating Places", "Address": "2233 S Woodstock St", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 10.0, "POI_CBG": 421010037021.0, "Median Dwell Time": 560.0, "Total Spend": 379.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 39.8, "Median Spend per Customer": 39.8 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "Name": "Fishtown Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1802 Frankford Ave", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 12.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 40.0, "Total Spend": 741.0, "Total Transactions": 24.0, "Total Customers": 14.0, "Median Spend per Transaction": 10.11, "Median Spend per Customer": 17.66 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-ph6-gkz", "Name": "Habeeb's Convenience Store", "Category": "Grocery Stores", "Address": "1803 N 54th St", "LATITUDE": 39.98437, "LONGITUDE": -75.230985, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 559.0, "Total Spend": 1656.0, "Total Transactions": 212.0, "Total Customers": 119.0, "Median Spend per Transaction": 7.1, "Median Spend per Customer": 9.93 }, "geometry": { "type": "Point", "coordinates": [ -75.230985, 39.98437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "Name": "San Lucas Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2000 S Bouvier St", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010039014.0, "Median Dwell Time": null, "Total Spend": 945.0, "Total Transactions": 48.0, "Total Customers": 45.0, "Median Spend per Transaction": 16.74, "Median Spend per Customer": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3320 Grant Ave Unit 18B", "LATITUDE": 40.068041, "LONGITUDE": -75.007034, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 29.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 8.0, "Total Spend": 1919.0, "Total Transactions": 303.0, "Total Customers": 169.0, "Median Spend per Transaction": 5.85, "Median Spend per Customer": 6.39 }, "geometry": { "type": "Point", "coordinates": [ -75.007034, 40.068041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "Name": "Varga Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "941 Spruce St", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 134.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 10.0, "Total Spend": 12612.0, "Total Transactions": 217.0, "Total Customers": 169.0, "Median Spend per Transaction": 41.0, "Median Spend per Customer": 50.66 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "Name": "Amada", "Category": "Restaurants and Other Eating Places", "Address": "217 Chestnut St", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 155.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 182.0, "Total Spend": 27664.0, "Total Transactions": 203.0, "Total Customers": 193.0, "Median Spend per Transaction": 91.73, "Median Spend per Customer": 99.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "Name": "China Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "2842 Saint Vincent St", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 453.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 37.0, "Total Spend": 13116.0, "Total Transactions": 138.0, "Total Customers": 126.0, "Median Spend per Transaction": 51.52, "Median Spend per Customer": 51.74 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-hh5", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "1821 Chestnut St", "LATITUDE": 39.951987, "LONGITUDE": -75.171121, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 251.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 874.0, "Total Spend": 630.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 16.54, "Median Spend per Customer": 16.54 }, "geometry": { "type": "Point", "coordinates": [ -75.171121, 39.951987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "Name": "Suraya", "Category": "Restaurants and Other Eating Places", "Address": "1528 Frankford Ave", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 317.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 81.0, "Total Spend": 10956.0, "Total Transactions": 64.0, "Total Customers": 62.0, "Median Spend per Transaction": 104.12, "Median Spend per Customer": 112.03 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jsq", "Name": "Patient Care Pharmacy", "Category": "Health and Personal Care Stores", "Address": "801 Washington Ave # 21", "LATITUDE": 39.936332, "LONGITUDE": -75.157296, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 50.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 57.0, "Total Spend": 38.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157296, 39.936332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "Name": "Curran's Irish Inn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6900 State Rd", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 210.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 61.0, "Total Spend": 2223.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 37.55, "Median Spend per Customer": 34.75 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@63s-dvy-pn5", "Name": "Hatch & Coop", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954694, "LONGITUDE": -75.202176, "DATE_RANGE_START": 2021, "Total Visits": 632.0, "Total Visitors": 415.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 39.0, "Total Spend": 839.0, "Total Transactions": 60.0, "Total Customers": 50.0, "Median Spend per Transaction": 12.98, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.202176, 39.954694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1511 Locust St", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2021, "Total Visits": 310.0, "Total Visitors": 217.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 106.0, "Total Spend": 34023.0, "Total Transactions": 632.0, "Total Customers": 516.0, "Median Spend per Transaction": 37.24, "Median Spend per Customer": 46.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "Name": "El Poquito", "Category": "Restaurants and Other Eating Places", "Address": "8201 Germantown Ave", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 72.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 9.0, "Total Spend": 10369.0, "Total Transactions": 141.0, "Total Customers": 122.0, "Median Spend per Transaction": 72.88, "Median Spend per Customer": 74.78 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8j-bff", "Name": "Mayfair Diner", "Category": "Restaurants and Other Eating Places", "Address": "7373 Frankford Ave", "LATITUDE": 40.037436, "LONGITUDE": -75.038227, "DATE_RANGE_START": 2021, "Total Visits": 119.0, "Total Visitors": 100.0, "POI_CBG": 421010330003.0, "Median Dwell Time": 5.0, "Total Spend": 4685.0, "Total Transactions": 138.0, "Total Customers": 126.0, "Median Spend per Transaction": 29.68, "Median Spend per Customer": 33.84 }, "geometry": { "type": "Point", "coordinates": [ -75.038227, 40.037436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f9f", "Name": "El Balconcito II", "Category": "Restaurants and Other Eating Places", "Address": "7326 Castor Ave", "LATITUDE": 40.052956, "LONGITUDE": -75.064913, "DATE_RANGE_START": 2021, "Total Visits": 1038.0, "Total Visitors": 613.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 64.0, "Total Spend": 11091.0, "Total Transactions": 148.0, "Total Customers": 134.0, "Median Spend per Transaction": 65.29, "Median Spend per Customer": 65.29 }, "geometry": { "type": "Point", "coordinates": [ -75.064913, 40.052956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "Name": "Giovani's Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "1533 Chestnut St", "LATITUDE": 39.951522, "LONGITUDE": -75.166746, "DATE_RANGE_START": 2021, "Total Visits": 981.0, "Total Visitors": 661.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 92.0, "Total Spend": 20533.0, "Total Transactions": 916.0, "Total Customers": 530.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 19.54 }, "geometry": { "type": "Point", "coordinates": [ -75.166746, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-835", "Name": "Nanee's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953311, "LONGITUDE": -75.158833, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 1294.0, "Total Transactions": 91.0, "Total Customers": 86.0, "Median Spend per Transaction": 14.62, "Median Spend per Customer": 14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158833, 39.953311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5200 Woodland Ave", "LATITUDE": 39.938259, "LONGITUDE": -75.21557, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 143.0, "POI_CBG": 421010074005.0, "Median Dwell Time": 11.0, "Total Spend": 8742.0, "Total Transactions": 525.0, "Total Customers": 377.0, "Median Spend per Transaction": 14.17, "Median Spend per Customer": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21557, 39.938259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm9-yd9", "Name": "Famous 4th Street Delicatessen", "Category": "Restaurants and Other Eating Places", "Address": "700 S 4th St", "LATITUDE": 39.940489, "LONGITUDE": -75.149633, "DATE_RANGE_START": 2021, "Total Visits": 174.0, "Total Visitors": 172.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 31.0, "Total Spend": 18000.0, "Total Transactions": 527.0, "Total Customers": 394.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 30.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149633, 39.940489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1128 Walnut St", "LATITUDE": 39.948761, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 212.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 5.0, "Total Spend": 8247.0, "Total Transactions": 1274.0, "Total Customers": 752.0, "Median Spend per Transaction": 5.35, "Median Spend per Customer": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.948761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfx-kmk", "Name": "Tsaocaa", "Category": "Restaurants and Other Eating Places", "Address": "4415 Main St", "LATITUDE": 40.02624, "LONGITUDE": -75.225272, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 100.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 12.0, "Total Spend": 147.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 6.31, "Median Spend per Customer": 6.31 }, "geometry": { "type": "Point", "coordinates": [ -75.225272, 40.02624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "12375 Academy Rd", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2021, "Total Visits": 671.0, "Total Visitors": 449.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 12504.0, "Total Transactions": 1599.0, "Total Customers": 659.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 12.46 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "Name": "Vic Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "2035 Sansom St", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 158.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 20.0, "Total Spend": 13819.0, "Total Transactions": 327.0, "Total Customers": 286.0, "Median Spend per Transaction": 36.86, "Median Spend per Customer": 39.69 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pm3-st9", "Name": "Laurel", "Category": "Restaurants and Other Eating Places", "Address": "1617 E Passyunk Ave", "LATITUDE": 39.929472, "LONGITUDE": -75.163723, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010028024.0, "Median Dwell Time": null, "Total Spend": 6321.0, "Total Transactions": 48.0, "Total Customers": 41.0, "Median Spend per Transaction": 41.03, "Median Spend per Customer": 32.34 }, "geometry": { "type": "Point", "coordinates": [ -75.163723, 39.929472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfv-8vz", "Name": "Weavers Way Mercantile", "Category": "Grocery Stores", "Address": "542 Carpenter Ln", "LATITUDE": 40.046585, "LONGITUDE": -75.195343, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 9.0, "Total Spend": 239.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.195343, 40.046585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-mrk", "Name": "Jerry's Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "129 W Laurel St", "LATITUDE": 39.965113, "LONGITUDE": -75.138904, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 1.0, "Total Spend": 4972.0, "Total Transactions": 62.0, "Total Customers": 60.0, "Median Spend per Transaction": 78.48, "Median Spend per Customer": 82.32 }, "geometry": { "type": "Point", "coordinates": [ -75.138904, 39.965113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "Name": "Fiesta Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "600 Jamestown St", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 26.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 36.0, "Total Spend": 3134.0, "Total Transactions": 143.0, "Total Customers": 110.0, "Median Spend per Transaction": 17.36, "Median Spend per Customer": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p74-wzf", "Name": "Vista Auto Group", "Category": "Automobile Dealers", "Address": "7418 Frankford Ave", "LATITUDE": 40.038451, "LONGITUDE": -75.03703, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 31.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 368.0, "Total Spend": 9308.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 500.0, "Median Spend per Customer": 500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03703, 40.038451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "106 S 40th St", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 38.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 1.0, "Total Spend": 1315.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 46.89, "Median Spend per Customer": 50.62 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9q-hqz", "Name": "Pearle Vision", "Category": "Health and Personal Care Stores", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079188, "LONGITUDE": -75.028586, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 48.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 10.0, "Total Spend": 355.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 74.44, "Median Spend per Customer": 74.44 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.079188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "Name": "Somerset Splits", "Category": "Restaurants and Other Eating Places", "Address": "2600 E Somerset St", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 53.0, "POI_CBG": 421010180013.0, "Median Dwell Time": 38.0, "Total Spend": 1906.0, "Total Transactions": 162.0, "Total Customers": 138.0, "Median Spend per Transaction": 10.38, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-h89", "Name": "Gyu-Kaku", "Category": "Restaurants and Other Eating Places", "Address": "1901 Callowhill St", "LATITUDE": 39.960773, "LONGITUDE": -75.170117, "DATE_RANGE_START": 2021, "Total Visits": 542.0, "Total Visitors": 382.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 99.0, "Total Spend": 16246.0, "Total Transactions": 229.0, "Total Customers": 184.0, "Median Spend per Transaction": 62.16, "Median Spend per Customer": 73.84 }, "geometry": { "type": "Point", "coordinates": [ -75.170117, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-tvz", "Name": "Devon Seafood Grill", "Category": "Restaurants and Other Eating Places", "Address": "225 S 18th St", "LATITUDE": 39.949401, "LONGITUDE": -75.170553, "DATE_RANGE_START": 2021, "Total Visits": 1310.0, "Total Visitors": 632.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 263.0, "Total Spend": 915.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 95.86, "Median Spend per Customer": 95.86 }, "geometry": { "type": "Point", "coordinates": [ -75.170553, 39.949401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "200 W Washington Sq", "LATITUDE": 39.94797, "LONGITUDE": -75.154128, "DATE_RANGE_START": 2021, "Total Visits": 344.0, "Total Visitors": 303.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 5.0, "Total Spend": 7551.0, "Total Transactions": 1050.0, "Total Customers": 749.0, "Median Spend per Transaction": 5.7, "Median Spend per Customer": 6.54 }, "geometry": { "type": "Point", "coordinates": [ -75.154128, 39.94797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-j5f", "Name": "Poppy's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8229 Germantown Ave", "LATITUDE": 40.074185, "LONGITUDE": -75.202466, "DATE_RANGE_START": 2021, "Total Visits": 668.0, "Total Visitors": 456.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 30.0, "Total Spend": 1626.0, "Total Transactions": 208.0, "Total Customers": 150.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202466, 40.074185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2054 Red Lion Rd", "LATITUDE": 40.099554, "LONGITUDE": -75.024268, "DATE_RANGE_START": 2021, "Total Visits": 2337.0, "Total Visitors": 1871.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 8.0, "Total Spend": 1830.0, "Total Transactions": 248.0, "Total Customers": 179.0, "Median Spend per Transaction": 5.07, "Median Spend per Customer": 7.14 }, "geometry": { "type": "Point", "coordinates": [ -75.024268, 40.099554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgd-z9f", "Name": "Pita Chip", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956634, "LONGITUDE": -75.194194, "DATE_RANGE_START": 2021, "Total Visits": 7344.0, "Total Visitors": 3754.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 64.0, "Total Spend": 8830.0, "Total Transactions": 632.0, "Total Customers": 482.0, "Median Spend per Transaction": 11.79, "Median Spend per Customer": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.194194, 39.956634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "52 E Jefferson St", "LATITUDE": 39.97281, "LONGITUDE": -75.134837, "DATE_RANGE_START": 2021, "Total Visits": 905.0, "Total Visitors": 387.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 81.0, "Total Spend": 14998.0, "Total Transactions": 1375.0, "Total Customers": 1029.0, "Median Spend per Transaction": 8.88, "Median Spend per Customer": 11.19 }, "geometry": { "type": "Point", "coordinates": [ -75.134837, 39.97281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5s5", "Name": "Loews Philadelphia Hotel", "Category": "Traveler Accommodation", "Address": "1200 Market St", "LATITUDE": 39.951431, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2021, "Total Visits": 9785.0, "Total Visitors": 5890.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 343.0, "Total Spend": 92773.0, "Total Transactions": 764.0, "Total Customers": 504.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 55.13 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 39.951431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pgm-68v", "Name": "The Black Squirrel Pub and Haunt", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3749 Midvale Ave", "LATITUDE": 40.009228, "LONGITUDE": -75.193913, "DATE_RANGE_START": 2021, "Total Visits": 337.0, "Total Visitors": 217.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 163.0, "Total Spend": 14009.0, "Total Transactions": 129.0, "Total Customers": 115.0, "Median Spend per Transaction": 112.88, "Median Spend per Customer": 112.25 }, "geometry": { "type": "Point", "coordinates": [ -75.193913, 40.009228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-7wk", "Name": "The Board & Brew", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3200 Chestnut St Ste A", "LATITUDE": 39.953486, "LONGITUDE": -75.187898, "DATE_RANGE_START": 2021, "Total Visits": 1041.0, "Total Visitors": 251.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 1185.0, "Total Spend": 623.0, "Total Transactions": 38.0, "Total Customers": 31.0, "Median Spend per Transaction": 9.7, "Median Spend per Customer": 11.97 }, "geometry": { "type": "Point", "coordinates": [ -75.187898, 39.953486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "Name": "New England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2417 Welsh Rd", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2021, "Total Visits": 387.0, "Total Visitors": 260.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 2856.0, "Total Transactions": 136.0, "Total Customers": 115.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.28 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-t5f", "Name": "Perla", "Category": "Restaurants and Other Eating Places", "Address": "1535 S 11th St", "LATITUDE": 39.930011, "LONGITUDE": -75.162803, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 124.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 1.0, "Total Spend": 2691.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 117.2, "Median Spend per Customer": 117.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162803, 39.930011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-qs5", "Name": "Panasian Buffet", "Category": "Restaurants and Other Eating Places", "Address": "833 Adams Ave", "LATITUDE": 40.030993, "LONGITUDE": -75.10376, "DATE_RANGE_START": 2021, "Total Visits": 718.0, "Total Visitors": 623.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 29.0, "Total Spend": 5624.0, "Total Transactions": 160.0, "Total Customers": 119.0, "Median Spend per Transaction": 33.2, "Median Spend per Customer": 41.34 }, "geometry": { "type": "Point", "coordinates": [ -75.10376, 40.030993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4211 N Broad St", "LATITUDE": 40.017737, "LONGITUDE": -75.148813, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 95.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 4.0, "Total Spend": 5216.0, "Total Transactions": 353.0, "Total Customers": 286.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.148813, 40.017737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm4-t7q", "Name": "Mifflin Market", "Category": "Grocery Stores", "Address": "1901 S 5th St", "LATITUDE": 39.924805, "LONGITUDE": -75.154427, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 124.0, "POI_CBG": 421010042014.0, "Median Dwell Time": 414.0, "Total Spend": 812.0, "Total Transactions": 84.0, "Total Customers": 41.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.154427, 39.924805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "3745 Aramingo Ave", "LATITUDE": 39.99445, "LONGITUDE": -75.09179, "DATE_RANGE_START": 2021, "Total Visits": 4222.0, "Total Visitors": 2186.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 21.0, "Total Spend": 9362.0, "Total Transactions": 45.0, "Total Customers": 33.0, "Median Spend per Transaction": 181.02, "Median Spend per Customer": 198.23 }, "geometry": { "type": "Point", "coordinates": [ -75.09179, 39.99445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "29 E Chelten Ave", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2021, "Total Visits": 537.0, "Total Visitors": 401.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 4.0, "Total Spend": 15406.0, "Total Transactions": 1294.0, "Total Customers": 919.0, "Median Spend per Transaction": 9.88, "Median Spend per Customer": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 322.0, "POI_CBG": 421010098011.0, "Median Dwell Time": 3.0, "Total Spend": 10250.0, "Total Transactions": 957.0, "Total Customers": 773.0, "Median Spend per Transaction": 8.85, "Median Spend per Customer": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgf-dvz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4301 Market St", "LATITUDE": 39.958338, "LONGITUDE": -75.208218, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 79.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 4.0, "Total Spend": 1953.0, "Total Transactions": 153.0, "Total Customers": 117.0, "Median Spend per Transaction": 10.14, "Median Spend per Customer": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.208218, 39.958338 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6543 Roosevelt Blvd Unit 18A", "LATITUDE": 40.034799, "LONGITUDE": -75.06613, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 117.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 3.0, "Total Spend": 5842.0, "Total Transactions": 234.0, "Total Customers": 174.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.06613, 40.034799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste F6", "LATITUDE": 39.952029, "LONGITUDE": -75.167533, "DATE_RANGE_START": 2021, "Total Visits": 773.0, "Total Visitors": 580.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 21.0, "Total Spend": 10393.0, "Total Transactions": 897.0, "Total Customers": 621.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.167533, 39.952029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p85-2hq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8298 Bustleton Ave", "LATITUDE": 40.066275, "LONGITUDE": -75.051537, "DATE_RANGE_START": 2021, "Total Visits": 208.0, "Total Visitors": 146.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 5.0, "Total Spend": 2116.0, "Total Transactions": 308.0, "Total Customers": 158.0, "Median Spend per Transaction": 6.15, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051537, 40.066275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnz-xyv", "Name": "Hong Kong Deli", "Category": "Restaurants and Other Eating Places", "Address": "3294 Gaul St", "LATITUDE": 39.988418, "LONGITUDE": -75.102851, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010382002.0, "Median Dwell Time": null, "Total Spend": 387.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.91, "Median Spend per Customer": 11.59 }, "geometry": { "type": "Point", "coordinates": [ -75.102851, 39.988418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-dd9", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "3084 Frankford Ave", "LATITUDE": 39.991806, "LONGITUDE": -75.113116, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010178003.0, "Median Dwell Time": 3.0, "Total Spend": 745.0, "Total Transactions": 43.0, "Total Customers": 43.0, "Median Spend per Transaction": 10.73, "Median Spend per Customer": 10.73 }, "geometry": { "type": "Point", "coordinates": [ -75.113116, 39.991806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5901 Rising Sun Ave", "LATITUDE": 40.044029, "LONGITUDE": -75.102175, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 69.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 1.0, "Total Spend": 7824.0, "Total Transactions": 1033.0, "Total Customers": 351.0, "Median Spend per Transaction": 6.47, "Median Spend per Customer": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.102175, 40.044029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-v75", "Name": "W P Cooke", "Category": "Other Motor Vehicle Dealers", "Address": "4731 N Broad St", "LATITUDE": 40.025446, "LONGITUDE": -75.147136, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010283003.0, "Median Dwell Time": 5.0, "Total Spend": 2522.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 528.46, "Median Spend per Customer": 528.46 }, "geometry": { "type": "Point", "coordinates": [ -75.147136, 40.025446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-649", "Name": "The Barn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4901 Catharine St", "LATITUDE": 39.948417, "LONGITUDE": -75.22137, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 21.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 7.0, "Total Spend": 3903.0, "Total Transactions": 124.0, "Total Customers": 105.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.22137, 39.948417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "Name": "Jack's place", "Category": "Restaurants and Other Eating Places", "Address": "7167 Hegerman St", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 31.0, "POI_CBG": 421010326007.0, "Median Dwell Time": 515.0, "Total Spend": 534.0, "Total Transactions": 33.0, "Total Customers": 21.0, "Median Spend per Transaction": 13.41, "Median Spend per Customer": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "Name": "P.C. Richard & Son", "Category": "Electronics and Appliance Stores", "Address": "2420 Cottman Ave", "LATITUDE": 40.046246, "LONGITUDE": -75.059899, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 229.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 14.0, "Total Spend": 11949.0, "Total Transactions": 31.0, "Total Customers": 26.0, "Median Spend per Transaction": 205.16, "Median Spend per Customer": 205.16 }, "geometry": { "type": "Point", "coordinates": [ -75.059899, 40.046246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2132 E Lehigh Ave", "LATITUDE": 39.984509, "LONGITUDE": -75.121352, "DATE_RANGE_START": 2021, "Total Visits": 267.0, "Total Visitors": 165.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 21.0, "Total Spend": 1953.0, "Total Transactions": 76.0, "Total Customers": 31.0, "Median Spend per Transaction": 18.72, "Median Spend per Customer": 46.52 }, "geometry": { "type": "Point", "coordinates": [ -75.121352, 39.984509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-kj9", "Name": "Sassafras Market", "Category": "Grocery Stores", "Address": "163 N 3rd St", "LATITUDE": 39.953897, "LONGITUDE": -75.14465, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 100.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 1.0, "Total Spend": 15668.0, "Total Transactions": 1045.0, "Total Customers": 496.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14465, 39.953897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-psq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "11750 Bustleton Ave", "LATITUDE": 40.120378, "LONGITUDE": -75.018088, "DATE_RANGE_START": 2021, "Total Visits": 663.0, "Total Visitors": 470.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 4.0, "Total Spend": 20791.0, "Total Transactions": 990.0, "Total Customers": 442.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 23.78 }, "geometry": { "type": "Point", "coordinates": [ -75.018088, 40.120378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-b49", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5000 Ogontz Ave", "LATITUDE": 40.030422, "LONGITUDE": -75.153419, "DATE_RANGE_START": 2021, "Total Visits": 883.0, "Total Visitors": 616.0, "POI_CBG": 421010280003.0, "Median Dwell Time": 4.0, "Total Spend": 1348.0, "Total Transactions": 55.0, "Total Customers": 50.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.153419, 40.030422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phy-5pv", "Name": "E & S Mini Market", "Category": "Restaurants and Other Eating Places", "Address": "300 W Roosevelt Blvd", "LATITUDE": 40.023938, "LONGITUDE": -75.130466, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 5.0, "Total Spend": 151.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.65, "Median Spend per Customer": 18.79 }, "geometry": { "type": "Point", "coordinates": [ -75.130466, 40.023938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "Name": "Girard Mini Market", "Category": "Grocery Stores", "Address": "2901 W Girard Ave", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 1.0, "Total Spend": 252.0, "Total Transactions": 21.0, "Total Customers": 12.0, "Median Spend per Transaction": 11.73, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "Name": "M & M Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2736 E Allegheny Ave", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 31.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 11.0, "Total Spend": 4578.0, "Total Transactions": 148.0, "Total Customers": 53.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "2000 Hamilton St", "LATITUDE": 39.9622, "LONGITUDE": -75.172139, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 43.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 5.0, "Total Spend": 5793.0, "Total Transactions": 158.0, "Total Customers": 158.0, "Median Spend per Transaction": 30.22, "Median Spend per Customer": 30.22 }, "geometry": { "type": "Point", "coordinates": [ -75.172139, 39.9622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "Name": "El Balconcito", "Category": "Restaurants and Other Eating Places", "Address": "658 E Godfrey Ave", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 1.0, "Total Spend": 6068.0, "Total Transactions": 98.0, "Total Customers": 88.0, "Median Spend per Transaction": 56.25, "Median Spend per Customer": 56.25 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "7422 Bustleton Ave", "LATITUDE": 40.052515, "LONGITUDE": -75.058505, "DATE_RANGE_START": 2021, "Total Visits": 831.0, "Total Visitors": 642.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 9.0, "Total Spend": 7117.0, "Total Transactions": 172.0, "Total Customers": 155.0, "Median Spend per Transaction": 26.25, "Median Spend per Customer": 33.66 }, "geometry": { "type": "Point", "coordinates": [ -75.058505, 40.052515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "Name": "iMunch Cafe", "Category": "Health and Personal Care Stores", "Address": "1233 N 31st St", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010137005.0, "Median Dwell Time": null, "Total Spend": 6144.0, "Total Transactions": 320.0, "Total Customers": 243.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1000 E Erie Ave", "LATITUDE": 40.005166, "LONGITUDE": -75.108882, "DATE_RANGE_START": 2021, "Total Visits": 1905.0, "Total Visitors": 1196.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 4.0, "Total Spend": 33381.0, "Total Transactions": 1251.0, "Total Customers": 840.0, "Median Spend per Transaction": 23.06, "Median Spend per Customer": 31.53 }, "geometry": { "type": "Point", "coordinates": [ -75.108882, 40.005166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3951 E Roosevelt Blvd", "LATITUDE": 40.027243, "LONGITUDE": -75.110271, "DATE_RANGE_START": 2021, "Total Visits": 1243.0, "Total Visitors": 943.0, "POI_CBG": 421010292001.0, "Median Dwell Time": 4.0, "Total Spend": 1798.0, "Total Transactions": 53.0, "Total Customers": 36.0, "Median Spend per Transaction": 30.09, "Median Spend per Customer": 35.09 }, "geometry": { "type": "Point", "coordinates": [ -75.110271, 40.027243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj4-y7q", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "3600 Germantown Ave", "LATITUDE": 40.007623, "LONGITUDE": -75.150494, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 243.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 156.0, "Total Spend": 9233.0, "Total Transactions": 100.0, "Total Customers": 67.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 100.99 }, "geometry": { "type": "Point", "coordinates": [ -75.150494, 40.007623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "919A Levick St", "LATITUDE": 40.045256, "LONGITUDE": -75.086611, "DATE_RANGE_START": 2021, "Total Visits": 523.0, "Total Visitors": 320.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 59.0, "Total Spend": 384.0, "Total Transactions": 36.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.086611, 40.045256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "Name": "CHAPMAN NISSAN", "Category": "Automobile Dealers", "Address": "6723 Essington Ave", "LATITUDE": 39.910684, "LONGITUDE": -75.224285, "DATE_RANGE_START": 2021, "Total Visits": 771.0, "Total Visitors": 432.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 26.0, "Total Spend": 20838.0, "Total Transactions": 69.0, "Total Customers": 62.0, "Median Spend per Transaction": 120.44, "Median Spend per Customer": 167.35 }, "geometry": { "type": "Point", "coordinates": [ -75.224285, 39.910684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "2417 Welsh Rd", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2021, "Total Visits": 1389.0, "Total Visitors": 869.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 10.0, "Total Spend": 192790.0, "Total Transactions": 2150.0, "Total Customers": 1067.0, "Median Spend per Transaction": 28.61, "Median Spend per Customer": 49.29 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "8966 Frankford Ave", "LATITUDE": 40.052422, "LONGITUDE": -75.00877, "DATE_RANGE_START": 2021, "Total Visits": 368.0, "Total Visitors": 289.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 6.0, "Total Spend": 18733.0, "Total Transactions": 413.0, "Total Customers": 332.0, "Median Spend per Transaction": 28.58, "Median Spend per Customer": 33.46 }, "geometry": { "type": "Point", "coordinates": [ -75.00877, 40.052422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "Name": "Rittenhouse Market", "Category": "Grocery Stores", "Address": "1733 Spruce St", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2021, "Total Visits": 1785.0, "Total Visitors": 1246.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 8.0, "Total Spend": 96546.0, "Total Transactions": 4315.0, "Total Customers": 1678.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "242 Market St # 244", "LATITUDE": 39.949907, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 346.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 6.0, "Total Spend": 3690.0, "Total Transactions": 344.0, "Total Customers": 174.0, "Median Spend per Transaction": 9.43, "Median Spend per Customer": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.949907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pmf-qs5", "Name": "Wine Dive", "Category": "Beer, Wine, and Liquor Stores", "Address": "1506 South St", "LATITUDE": 39.943689, "LONGITUDE": -75.167525, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 136.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 51.0, "Total Spend": 3928.0, "Total Transactions": 84.0, "Total Customers": 55.0, "Median Spend per Transaction": 43.72, "Median Spend per Customer": 53.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167525, 39.943689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p8j-6hq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7383 State Rd & Bleigh St", "LATITUDE": 40.026851, "LONGITUDE": -75.028938, "DATE_RANGE_START": 2021, "Total Visits": 501.0, "Total Visitors": 415.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 3.0, "Total Spend": 725.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 37.87, "Median Spend per Customer": 41.79 }, "geometry": { "type": "Point", "coordinates": [ -75.028938, 40.026851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "Name": "Windsor", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Spc 731", "LATITUDE": 40.08613, "LONGITUDE": -74.962864, "DATE_RANGE_START": 2021, "Total Visits": 446.0, "Total Visitors": 379.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 31.0, "Total Spend": 16296.0, "Total Transactions": 341.0, "Total Customers": 313.0, "Median Spend per Transaction": 39.9, "Median Spend per Customer": 44.7 }, "geometry": { "type": "Point", "coordinates": [ -74.962864, 40.08613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945313, "LONGITUDE": -75.238538, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 437.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 5.0, "Total Spend": 809.0, "Total Transactions": 67.0, "Total Customers": 48.0, "Median Spend per Transaction": 9.3, "Median Spend per Customer": 11.71 }, "geometry": { "type": "Point", "coordinates": [ -75.238538, 39.945313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-zs5", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "508 South St", "LATITUDE": 39.941661, "LONGITUDE": -75.151237, "DATE_RANGE_START": 2021, "Total Visits": 1248.0, "Total Visitors": 990.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 21.0, "Total Spend": 592.0, "Total Transactions": 33.0, "Total Customers": 31.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151237, 39.941661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1500 E Erie Ave", "LATITUDE": 40.005384, "LONGITUDE": -75.097837, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 217.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 4.0, "Total Spend": 1829.0, "Total Transactions": 74.0, "Total Customers": 33.0, "Median Spend per Transaction": 15.26, "Median Spend per Customer": 21.12 }, "geometry": { "type": "Point", "coordinates": [ -75.097837, 40.005384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj3-tn5", "Name": "Royal K Boutique", "Category": "Clothing Stores", "Address": "4830 N Broad St", "LATITUDE": 40.026957, "LONGITUDE": -75.147676, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 2.0, "Total Spend": 298.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 62.5, "Median Spend per Customer": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147676, 40.026957 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "Name": "No 1 Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2731 E Allegheny Ave", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 41.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 341.0, "Total Spend": 765.0, "Total Transactions": 38.0, "Total Customers": 21.0, "Median Spend per Transaction": 19.21, "Median Spend per Customer": 32.51 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-sbk", "Name": "The Igloo", "Category": "Restaurants and Other Eating Places", "Address": "2223 Grays Ferry Ave", "LATITUDE": 39.945135, "LONGITUDE": -75.179463, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010013001.0, "Median Dwell Time": null, "Total Spend": 931.0, "Total Transactions": 69.0, "Total Customers": 67.0, "Median Spend per Transaction": 10.87, "Median Spend per Customer": 10.34 }, "geometry": { "type": "Point", "coordinates": [ -75.179463, 39.945135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-v9f", "Name": "Tang Pharmacy V", "Category": "Health and Personal Care Stores", "Address": "7452 Ogontz Ave", "LATITUDE": 40.068833, "LONGITUDE": -75.157234, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010263024.0, "Median Dwell Time": null, "Total Spend": 737.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157234, 40.068833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "Name": "Bad Brother", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "726 N 24th St", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010136011.0, "Median Dwell Time": null, "Total Spend": 9168.0, "Total Transactions": 134.0, "Total Customers": 86.0, "Median Spend per Transaction": 57.97, "Median Spend per Customer": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-w8v", "Name": "Friday Saturday Sunday", "Category": "Restaurants and Other Eating Places", "Address": "261 S 21st St", "LATITUDE": 39.948822, "LONGITUDE": -75.175905, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010008032.0, "Median Dwell Time": null, "Total Spend": 4429.0, "Total Transactions": 53.0, "Total Customers": 50.0, "Median Spend per Transaction": 58.42, "Median Spend per Customer": 54.54 }, "geometry": { "type": "Point", "coordinates": [ -75.175905, 39.948822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "Name": "Philadelphia Pharmacy", "Category": "Health and Personal Care Stores", "Address": "101 E Lehigh Ave # 03", "LATITUDE": 39.991113, "LONGITUDE": -75.130735, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 76.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 7.0, "Total Spend": 1914.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 24.99, "Median Spend per Customer": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.130735, 39.991113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "Name": "Hibiscus Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4907 Catharine St", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 4.0, "Total Spend": 2925.0, "Total Transactions": 131.0, "Total Customers": 115.0, "Median Spend per Transaction": 18.69, "Median Spend per Customer": 21.62 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "Name": "Park Manor Deli", "Category": "Restaurants and Other Eating Places", "Address": "240 W Chelten Ave", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2021, "Total Visits": 177.0, "Total Visitors": 76.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 386.0, "Total Spend": 5694.0, "Total Transactions": 434.0, "Total Customers": 169.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-t9z", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "804 Walnut St", "LATITUDE": 39.947992, "LONGITUDE": -75.154441, "DATE_RANGE_START": 2021, "Total Visits": 1382.0, "Total Visitors": 1033.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 61.0, "Total Spend": 1787.0, "Total Transactions": 181.0, "Total Customers": 110.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 10.46 }, "geometry": { "type": "Point", "coordinates": [ -75.154441, 39.947992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "518 Port Royal Ave", "LATITUDE": 40.061169, "LONGITUDE": -75.237242, "DATE_RANGE_START": 2021, "Total Visits": 800.0, "Total Visitors": 597.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 4.0, "Total Spend": 14327.0, "Total Transactions": 547.0, "Total Customers": 372.0, "Median Spend per Transaction": 17.18, "Median Spend per Customer": 21.29 }, "geometry": { "type": "Point", "coordinates": [ -75.237242, 40.061169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9w-zmk", "Name": "Hendrix Pharmacy", "Category": "Health and Personal Care Stores", "Address": "11685 Bustleton Ave", "LATITUDE": 40.118281, "LONGITUDE": -75.017944, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 315.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 2.0, "Total Spend": 961.0, "Total Transactions": 53.0, "Total Customers": 31.0, "Median Spend per Transaction": 18.5, "Median Spend per Customer": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.017944, 40.118281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmf-kvf", "Name": "Village Whiskey", "Category": "Specialty Food Stores", "Address": "118 S 20th St", "LATITUDE": 39.951382, "LONGITUDE": -75.173791, "DATE_RANGE_START": 2021, "Total Visits": 1408.0, "Total Visitors": 981.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 96.0, "Total Spend": 21238.0, "Total Transactions": 263.0, "Total Customers": 251.0, "Median Spend per Transaction": 70.76, "Median Spend per Customer": 71.52 }, "geometry": { "type": "Point", "coordinates": [ -75.173791, 39.951382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-rc5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2545 Aramingo Ave Ste 80", "LATITUDE": 39.977844, "LONGITUDE": -75.118479, "DATE_RANGE_START": 2021, "Total Visits": 628.0, "Total Visitors": 494.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 5.0, "Total Spend": 38279.0, "Total Transactions": 1685.0, "Total Customers": 938.0, "Median Spend per Transaction": 16.01, "Median Spend per Customer": 21.82 }, "geometry": { "type": "Point", "coordinates": [ -75.118479, 39.977844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "Name": "Chill On the Hill", "Category": "Restaurants and Other Eating Places", "Address": "5 E Highland Ave", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 5.0, "Total Spend": 2121.0, "Total Transactions": 179.0, "Total Customers": 136.0, "Median Spend per Transaction": 11.73, "Median Spend per Customer": 11.41 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2300 Fairmount Ave # 16", "LATITUDE": 39.96715, "LONGITUDE": -75.175689, "DATE_RANGE_START": 2021, "Total Visits": 1038.0, "Total Visitors": 826.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 4.0, "Total Spend": 1969.0, "Total Transactions": 72.0, "Total Customers": 55.0, "Median Spend per Transaction": 27.51, "Median Spend per Customer": 37.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175689, 39.96715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "1556 E Wadsworth Ave", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 41.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 3.0, "Total Spend": 1544.0, "Total Transactions": 45.0, "Total Customers": 43.0, "Median Spend per Transaction": 29.47, "Median Spend per Customer": 26.59 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-wkz", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "2000 S Swanson St", "LATITUDE": 39.922348, "LONGITUDE": -75.146462, "DATE_RANGE_START": 2021, "Total Visits": 1005.0, "Total Visitors": 874.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 16.0, "Total Spend": 9310.0, "Total Transactions": 174.0, "Total Customers": 103.0, "Median Spend per Transaction": 51.81, "Median Spend per Customer": 45.67 }, "geometry": { "type": "Point", "coordinates": [ -75.146462, 39.922348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "Name": "Nordstrom Rack", "Category": "Clothing Stores", "Address": "1700 Chestnut St", "LATITUDE": 39.951246, "LONGITUDE": -75.168975, "DATE_RANGE_START": 2021, "Total Visits": 1845.0, "Total Visitors": 1480.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 22.0, "Total Spend": 123188.0, "Total Transactions": 1888.0, "Total Customers": 1675.0, "Median Spend per Transaction": 48.17, "Median Spend per Customer": 49.97 }, "geometry": { "type": "Point", "coordinates": [ -75.168975, 39.951246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7w-wc5", "Name": "McNally's Tavern Mayfair", "Category": "Restaurants and Other Eating Places", "Address": "3300 Brighton St", "LATITUDE": 40.035746, "LONGITUDE": -75.049243, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010315012.0, "Median Dwell Time": null, "Total Spend": 4845.0, "Total Transactions": 100.0, "Total Customers": 95.0, "Median Spend per Transaction": 40.42, "Median Spend per Customer": 40.69 }, "geometry": { "type": "Point", "coordinates": [ -75.049243, 40.035746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-wc5", "Name": "Craft Hall", "Category": "Restaurants and Other Eating Places", "Address": "901 N Delaware Ave", "LATITUDE": 39.962369, "LONGITUDE": -75.135937, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 294.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 90.0, "Total Spend": 13626.0, "Total Transactions": 255.0, "Total Customers": 210.0, "Median Spend per Transaction": 36.64, "Median Spend per Customer": 48.09 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.962369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "Name": "Yummy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1807 John F Kennedy Blvd", "LATITUDE": 39.954519, "LONGITUDE": -75.170234, "DATE_RANGE_START": 2021, "Total Visits": 322.0, "Total Visitors": 191.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 101.0, "Total Spend": 1697.0, "Total Transactions": 88.0, "Total Customers": 67.0, "Median Spend per Transaction": 16.04, "Median Spend per Customer": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.170234, 39.954519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "Name": "Yiro Yiro", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032303, "LONGITUDE": -75.214323, "DATE_RANGE_START": 2021, "Total Visits": 1587.0, "Total Visitors": 986.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 11.0, "Total Spend": 7669.0, "Total Transactions": 325.0, "Total Customers": 263.0, "Median Spend per Transaction": 20.33, "Median Spend per Customer": 22.28 }, "geometry": { "type": "Point", "coordinates": [ -75.214323, 40.032303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7400 Bustleton Ave", "LATITUDE": 40.051082, "LONGITUDE": -75.059668, "DATE_RANGE_START": 2021, "Total Visits": 6468.0, "Total Visitors": 4224.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 21.0, "Total Spend": 363633.0, "Total Transactions": 7294.0, "Total Customers": 4372.0, "Median Spend per Transaction": 30.2, "Median Spend per Customer": 49.11 }, "geometry": { "type": "Point", "coordinates": [ -75.059668, 40.051082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3100 W Allegheny Ave", "LATITUDE": 40.004821, "LONGITUDE": -75.179811, "DATE_RANGE_START": 2021, "Total Visits": 282.0, "Total Visitors": 162.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 44.0, "Total Spend": 10866.0, "Total Transactions": 959.0, "Total Customers": 754.0, "Median Spend per Transaction": 8.94, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.179811, 40.004821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pj8-pgk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd # 5103", "LATITUDE": 40.031694, "LONGITUDE": -75.099517, "DATE_RANGE_START": 2021, "Total Visits": 6260.0, "Total Visitors": 4169.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 22.0, "Total Spend": 3056.0, "Total Transactions": 279.0, "Total Customers": 179.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 12.17 }, "geometry": { "type": "Point", "coordinates": [ -75.099517, 40.031694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "Name": "Xi'an Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "4000 Chestnut St", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 67.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 173.0, "Total Spend": 995.0, "Total Transactions": 38.0, "Total Customers": 36.0, "Median Spend per Transaction": 23.06, "Median Spend per Customer": 25.59 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7500 Frankford Ave", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2021, "Total Visits": 695.0, "Total Visitors": 372.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 3.0, "Total Spend": 11670.0, "Total Transactions": 1554.0, "Total Customers": 527.0, "Median Spend per Transaction": 6.04, "Median Spend per Customer": 10.34 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-835", "Name": "Little Thai Market", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953099, "LONGITUDE": -75.159123, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 9731.0, "Total Transactions": 489.0, "Total Customers": 401.0, "Median Spend per Transaction": 15.66, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.159123, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "Name": "Mammoth Coffee", "Category": "Restaurants and Other Eating Places", "Address": "534 W Girard Ave", "LATITUDE": 39.969701, "LONGITUDE": -75.146132, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 95.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 2.0, "Total Spend": 2338.0, "Total Transactions": 248.0, "Total Customers": 134.0, "Median Spend per Transaction": 7.55, "Median Spend per Customer": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.146132, 39.969701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-p8m-y7q", "Name": "Crazy Crab House", "Category": "Restaurants and Other Eating Places", "Address": "6634 Frankford Ave", "LATITUDE": 40.031428, "LONGITUDE": -75.054109, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010316006.0, "Median Dwell Time": 1.0, "Total Spend": 388.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 28.07, "Median Spend per Customer": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.054109, 40.031428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pj8-dqf", "Name": "Oxford Circle Deli", "Category": "Restaurants and Other Eating Places", "Address": "5759 Oxford Ave", "LATITUDE": 40.033593, "LONGITUDE": -75.085029, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 3.0, "Total Spend": 1483.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 28.07, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.085029, 40.033593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pfy-f4v", "Name": "WorldWide Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "508 Green Ln", "LATITUDE": 40.034557, "LONGITUDE": -75.215587, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 29.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 2.0, "Total Spend": 166.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 30.23, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.215587, 40.034557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "Name": "Charlie Was a Sinner", "Category": "Restaurants and Other Eating Places", "Address": "131 S 13th St", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 88.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 59.0, "Total Spend": 45966.0, "Total Transactions": 594.0, "Total Customers": 566.0, "Median Spend per Transaction": 61.32, "Median Spend per Customer": 62.71 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5mk", "Name": "The Halal Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "100 S 13th St", "LATITUDE": 39.950744, "LONGITUDE": -75.161873, "DATE_RANGE_START": 2021, "Total Visits": 18618.0, "Total Visitors": 13115.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 36.0, "Total Spend": 661.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 16.1, "Median Spend per Customer": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161873, 39.950744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phz-wkz", "Name": "Steve's Old Pizza London", "Category": "Restaurants and Other Eating Places", "Address": "3573 Frankford Ave", "LATITUDE": 39.997988, "LONGITUDE": -75.101209, "DATE_RANGE_START": 2021, "Total Visits": 217.0, "Total Visitors": 33.0, "POI_CBG": 421010188002.0, "Median Dwell Time": 361.0, "Total Spend": 2140.0, "Total Transactions": 105.0, "Total Customers": 81.0, "Median Spend per Transaction": 18.84, "Median Spend per Customer": 22.31 }, "geometry": { "type": "Point", "coordinates": [ -75.101209, 39.997988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmd-xqz", "Name": "Cafe Ynez", "Category": "Restaurants and Other Eating Places", "Address": "2025 Washington Ave", "LATITUDE": 39.939765, "LONGITUDE": -75.177339, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 33.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 182.0, "Total Spend": 523.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 39.47, "Median Spend per Customer": 60.53 }, "geometry": { "type": "Point", "coordinates": [ -75.177339, 39.939765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "Name": "Wadsworth Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Wadsworth Ave", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 36.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 7.0, "Total Spend": 4463.0, "Total Transactions": 236.0, "Total Customers": 172.0, "Median Spend per Transaction": 16.04, "Median Spend per Customer": 21.22 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-jgk", "Name": "The Happy Rooster", "Category": "Restaurants and Other Eating Places", "Address": "118 S 16th St", "LATITUDE": 39.950462, "LONGITUDE": -75.16756, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 208.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 43.0, "Total Spend": 12579.0, "Total Transactions": 246.0, "Total Customers": 196.0, "Median Spend per Transaction": 38.11, "Median Spend per Customer": 40.95 }, "geometry": { "type": "Point", "coordinates": [ -75.16756, 39.950462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22f@628-p9q-hqz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.07905, "LONGITUDE": -75.028048, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 1314.0, "Total Transactions": 45.0, "Total Customers": 38.0, "Median Spend per Transaction": 28.48, "Median Spend per Customer": 29.61 }, "geometry": { "type": "Point", "coordinates": [ -75.028048, 40.07905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-yqf", "Name": "Matcha Cafe Maiko", "Category": "Restaurants and Other Eating Places", "Address": "923 Race St", "LATITUDE": 39.95548, "LONGITUDE": -75.155132, "DATE_RANGE_START": 2021, "Total Visits": 10434.0, "Total Visitors": 6952.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 26.0, "Total Spend": 1362.0, "Total Transactions": 117.0, "Total Customers": 98.0, "Median Spend per Transaction": 9.42, "Median Spend per Customer": 9.42 }, "geometry": { "type": "Point", "coordinates": [ -75.155132, 39.95548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-68v", "Name": "J'aime French Bakery", "Category": "Restaurants and Other Eating Places", "Address": "212 S 12th St", "LATITUDE": 39.948054, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 184.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 9.0, "Total Spend": 1323.0, "Total Transactions": 105.0, "Total Customers": 93.0, "Median Spend per Transaction": 11.24, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.948054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-pjv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2401 E Venango St", "LATITUDE": 39.993233, "LONGITUDE": -75.096202, "DATE_RANGE_START": 2021, "Total Visits": 666.0, "Total Visitors": 480.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 7.0, "Total Spend": 19834.0, "Total Transactions": 823.0, "Total Customers": 463.0, "Median Spend per Transaction": 20.08, "Median Spend per Customer": 23.86 }, "geometry": { "type": "Point", "coordinates": [ -75.096202, 39.993233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phk-yvz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "440 W Cheltenham Ave", "LATITUDE": 40.054755, "LONGITUDE": -75.125732, "DATE_RANGE_START": 2021, "Total Visits": 1413.0, "Total Visitors": 921.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 4.0, "Total Spend": 2541.0, "Total Transactions": 95.0, "Total Customers": 57.0, "Median Spend per Transaction": 20.79, "Median Spend per Customer": 36.51 }, "geometry": { "type": "Point", "coordinates": [ -75.125732, 40.054755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "9000 Roosevelt Blvd", "LATITUDE": 40.074942, "LONGITUDE": -75.035038, "DATE_RANGE_START": 2021, "Total Visits": 2002.0, "Total Visitors": 1549.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 4.0, "Total Spend": 1563.0, "Total Transactions": 41.0, "Total Customers": 26.0, "Median Spend per Transaction": 41.81, "Median Spend per Customer": 41.81 }, "geometry": { "type": "Point", "coordinates": [ -75.035038, 40.074942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-x89", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5017 N Broad St # 25", "LATITUDE": 40.030078, "LONGITUDE": -75.146229, "DATE_RANGE_START": 2021, "Total Visits": 2372.0, "Total Visitors": 1566.0, "POI_CBG": 421010282001.0, "Median Dwell Time": 5.0, "Total Spend": 453.0, "Total Transactions": 24.0, "Total Customers": 17.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.146229, 40.030078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "Name": "Off Broadway Shoe Warehouse", "Category": "Shoe Stores", "Address": "1477 Franklin Mills Cir", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 554.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 20.0, "Total Spend": 2763.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 82.49, "Median Spend per Customer": 82.49 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "3621 Walnut St", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2021, "Total Visits": 387.0, "Total Visitors": 217.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 170.0, "Total Spend": 3309.0, "Total Transactions": 67.0, "Total Customers": 53.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "Name": "Moore Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "601 Moore St", "LATITUDE": 39.926601, "LONGITUDE": -75.156132, "DATE_RANGE_START": 2021, "Total Visits": 263.0, "Total Visitors": 165.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 3.0, "Total Spend": 20412.0, "Total Transactions": 561.0, "Total Customers": 351.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.156132, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3401 Lancaster Ave", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2021, "Total Visits": 241.0, "Total Visitors": 184.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 2.0, "Total Spend": 6606.0, "Total Transactions": 637.0, "Total Customers": 208.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 11.51 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvw-jgk", "Name": "Sun Ray Drugs", "Category": "Health and Personal Care Stores", "Address": "142 S 52nd St", "LATITUDE": 39.957136, "LONGITUDE": -75.22573, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 115.0, "POI_CBG": 421010085006.0, "Median Dwell Time": 20.0, "Total Spend": 1855.0, "Total Transactions": 105.0, "Total Customers": 81.0, "Median Spend per Transaction": 8.87, "Median Spend per Customer": 3.55 }, "geometry": { "type": "Point", "coordinates": [ -75.22573, 39.957136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6240 Germantown Ave", "LATITUDE": 40.042819, "LONGITUDE": -75.181027, "DATE_RANGE_START": 2021, "Total Visits": 1320.0, "Total Visitors": 716.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 5.0, "Total Spend": 2209.0, "Total Transactions": 122.0, "Total Customers": 57.0, "Median Spend per Transaction": 11.77, "Median Spend per Customer": 32.14 }, "geometry": { "type": "Point", "coordinates": [ -75.181027, 40.042819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "Name": "Dollar Value", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2007 S Broad St", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2021, "Total Visits": 203.0, "Total Visitors": 162.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 7.0, "Total Spend": 5628.0, "Total Transactions": 315.0, "Total Customers": 277.0, "Median Spend per Transaction": 11.84, "Median Spend per Customer": 12.55 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1240 W Erie Ave", "LATITUDE": 40.004616, "LONGITUDE": -75.104425, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 172.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 8.0, "Total Spend": 342.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 22.29, "Median Spend per Customer": 38.32 }, "geometry": { "type": "Point", "coordinates": [ -75.104425, 40.004616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgg-n3q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2201 W Cambria St", "LATITUDE": 39.998932, "LONGITUDE": -75.167191, "DATE_RANGE_START": 2021, "Total Visits": 255.0, "Total Visitors": 181.0, "POI_CBG": 421010172011.0, "Median Dwell Time": 5.0, "Total Spend": 422.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.167191, 39.998932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-33q", "Name": "LOFT", "Category": "Clothing Stores", "Address": "120 S 36th St", "LATITUDE": 39.953717, "LONGITUDE": -75.195101, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 5.0, "Total Spend": 1331.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 49.74, "Median Spend per Customer": 48.43 }, "geometry": { "type": "Point", "coordinates": [ -75.195101, 39.953717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "Name": "Melograno", "Category": "Restaurants and Other Eating Places", "Address": "2012 Sansom St", "LATITUDE": 39.951247, "LONGITUDE": -75.174115, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 50.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 61.0, "Total Spend": 1704.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 71.4, "Median Spend per Customer": 71.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174115, 39.951247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pm9-s5z", "Name": "PJ Clarkes", "Category": "Restaurants and Other Eating Places", "Address": "601 Walnut St", "LATITUDE": 39.948105, "LONGITUDE": -75.151179, "DATE_RANGE_START": 2021, "Total Visits": 4523.0, "Total Visitors": 3313.0, "POI_CBG": 421010010011.0, "Median Dwell Time": 58.0, "Total Spend": 428.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 89.66, "Median Spend per Customer": 89.66 }, "geometry": { "type": "Point", "coordinates": [ -75.151179, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-ygk", "Name": "Pho Cali", "Category": "Restaurants and Other Eating Places", "Address": "1000 Arch St", "LATITUDE": 39.953422, "LONGITUDE": -75.156467, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 291.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 44.0, "Total Spend": 4456.0, "Total Transactions": 134.0, "Total Customers": 124.0, "Median Spend per Transaction": 32.31, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156467, 39.953422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "6001 N Broad St", "LATITUDE": 40.044629, "LONGITUDE": -75.142895, "DATE_RANGE_START": 2021, "Total Visits": 422.0, "Total Visitors": 329.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 5.0, "Total Spend": 2110.0, "Total Transactions": 203.0, "Total Customers": 124.0, "Median Spend per Transaction": 8.78, "Median Spend per Customer": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.142895, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@63s-dw2-4gk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "136 N 63rd St", "LATITUDE": 39.965722, "LONGITUDE": -75.246681, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 57.0, "POI_CBG": 421010096004.0, "Median Dwell Time": 5.0, "Total Spend": 4657.0, "Total Transactions": 248.0, "Total Customers": 198.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 16.04 }, "geometry": { "type": "Point", "coordinates": [ -75.246681, 39.965722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "7700 City Ave", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 208.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 4.0, "Total Spend": 163.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 12.34, "Median Spend per Customer": 8.92 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1 Penn Sq E", "LATITUDE": 39.952459, "LONGITUDE": -75.162267, "DATE_RANGE_START": 2021, "Total Visits": 3088.0, "Total Visitors": 2320.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 203.0, "Total Spend": 7179.0, "Total Transactions": 1251.0, "Total Customers": 558.0, "Median Spend per Transaction": 4.73, "Median Spend per Customer": 8.08 }, "geometry": { "type": "Point", "coordinates": [ -75.162267, 39.952459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm4-b8v", "Name": "Hyon's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1320 S 21st St", "LATITUDE": 39.935029, "LONGITUDE": -75.179358, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 12.0, "Total Spend": 140.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 21.97, "Median Spend per Customer": 21.97 }, "geometry": { "type": "Point", "coordinates": [ -75.179358, 39.935029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22h@628-pmf-n3q", "Name": "Genji", "Category": "Specialty Food Stores", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953358, "LONGITUDE": -75.165439, "DATE_RANGE_START": 2021, "Total Visits": 227.0, "Total Visitors": 174.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 151.0, "Total Spend": 586.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.165439, 39.953358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgk-psq", "Name": "West Village Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "3901 Conshohocken Ave", "LATITUDE": 40.003325, "LONGITUDE": -75.207238, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 72.0, "POI_CBG": 421010122012.0, "Median Dwell Time": 523.0, "Total Spend": 47.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 2.34, "Median Spend per Customer": 9.85 }, "geometry": { "type": "Point", "coordinates": [ -75.207238, 40.003325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "12311 Academy Rd Ste 250", "LATITUDE": 40.095101, "LONGITUDE": -74.975911, "DATE_RANGE_START": 2021, "Total Visits": 432.0, "Total Visitors": 317.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 36514.0, "Total Transactions": 1301.0, "Total Customers": 752.0, "Median Spend per Transaction": 16.06, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -74.975911, 40.095101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp4-r49", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "2401 2499 Aramingo Ave Space 2499 D", "LATITUDE": 39.975637, "LONGITUDE": -75.119836, "DATE_RANGE_START": 2021, "Total Visits": 2360.0, "Total Visitors": 1198.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 12.0, "Total Spend": 5616.0, "Total Transactions": 119.0, "Total Customers": 91.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 44.42 }, "geometry": { "type": "Point", "coordinates": [ -75.119836, 39.975637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kmk", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1231 N Broad St", "LATITUDE": 39.973034, "LONGITUDE": -75.158605, "DATE_RANGE_START": 2021, "Total Visits": 88.0, "Total Visitors": 72.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 23.0, "Total Spend": 12231.0, "Total Transactions": 131.0, "Total Customers": 79.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 124.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158605, 39.973034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "329 Spring Garden St", "LATITUDE": 39.96142, "LONGITUDE": -75.144288, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 119.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 2.0, "Total Spend": 4685.0, "Total Transactions": 733.0, "Total Customers": 396.0, "Median Spend per Transaction": 5.3, "Median Spend per Customer": 7.33 }, "geometry": { "type": "Point", "coordinates": [ -75.144288, 39.96142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-pvz", "Name": "Triple Play Sports", "Category": "Clothing Stores", "Address": "827 S 9th St", "LATITUDE": 39.939041, "LONGITUDE": -75.157707, "DATE_RANGE_START": 2021, "Total Visits": 547.0, "Total Visitors": 320.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 109.0, "Total Spend": 3601.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 55.0, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157707, 39.939041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg9-vzz", "Name": "Ace Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2011 Fairmount Ave", "LATITUDE": 39.967397, "LONGITUDE": -75.170422, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 69.0, "POI_CBG": 421010135002.0, "Median Dwell Time": 7.0, "Total Spend": 435.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 12.94, "Median Spend per Customer": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.170422, 39.967397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "1900 N 5th St", "LATITUDE": 39.980937, "LONGITUDE": -75.144152, "DATE_RANGE_START": 2021, "Total Visits": 1628.0, "Total Visitors": 1053.0, "POI_CBG": 421010156002.0, "Median Dwell Time": 19.0, "Total Spend": 1859.0, "Total Transactions": 69.0, "Total Customers": 57.0, "Median Spend per Transaction": 16.18, "Median Spend per Customer": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144152, 39.980937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6801 Frankford Ave", "LATITUDE": 40.032157, "LONGITUDE": -75.050449, "DATE_RANGE_START": 2021, "Total Visits": 473.0, "Total Visitors": 351.0, "POI_CBG": 421010325001.0, "Median Dwell Time": 7.0, "Total Spend": 3334.0, "Total Transactions": 134.0, "Total Customers": 105.0, "Median Spend per Transaction": 18.23, "Median Spend per Customer": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.050449, 40.032157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6771 N 5th St", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 177.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 2.0, "Total Spend": 2323.0, "Total Transactions": 62.0, "Total Customers": 45.0, "Median Spend per Transaction": 7.93, "Median Spend per Customer": 9.98 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pj3-wrk", "Name": "Silver Chopsticks", "Category": "Restaurants and Other Eating Places", "Address": "4711 N Broad St", "LATITUDE": 40.024907, "LONGITUDE": -75.14743, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010283003.0, "Median Dwell Time": 2.0, "Total Spend": 373.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 41.42, "Median Spend per Customer": 41.42 }, "geometry": { "type": "Point", "coordinates": [ -75.14743, 40.024907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-73q", "Name": "Byrne's Tavern", "Category": "Restaurants and Other Eating Places", "Address": "3301 Richmond St", "LATITUDE": 39.984147, "LONGITUDE": -75.098754, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 138.0, "POI_CBG": 421010378002.0, "Median Dwell Time": 4.0, "Total Spend": 12271.0, "Total Transactions": 189.0, "Total Customers": 172.0, "Median Spend per Transaction": 50.15, "Median Spend per Customer": 54.53 }, "geometry": { "type": "Point", "coordinates": [ -75.098754, 39.984147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "Name": "TGI Fridays", "Category": "Restaurants and Other Eating Places", "Address": "4000 City Ave", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2021, "Total Visits": 950.0, "Total Visitors": 826.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 48.0, "Total Spend": 32208.0, "Total Transactions": 632.0, "Total Customers": 582.0, "Median Spend per Transaction": 42.48, "Median Spend per Customer": 43.82 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-w49", "Name": "Sweet Lucy's Smokehouse", "Category": "Restaurants and Other Eating Places", "Address": "7500 State Rd", "LATITUDE": 40.028508, "LONGITUDE": -75.027023, "DATE_RANGE_START": 2021, "Total Visits": 613.0, "Total Visitors": 513.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 39.0, "Total Spend": 1869.0, "Total Transactions": 38.0, "Total Customers": 29.0, "Median Spend per Transaction": 39.68, "Median Spend per Customer": 54.89 }, "geometry": { "type": "Point", "coordinates": [ -75.027023, 40.028508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "Name": "Station Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9319 Krewstown Rd", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2021, "Total Visits": 289.0, "Total Visitors": 150.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 58.0, "Total Spend": 8404.0, "Total Transactions": 382.0, "Total Customers": 289.0, "Median Spend per Transaction": 19.71, "Median Spend per Customer": 24.38 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-5mk", "Name": "McGillin's Olde Ale House", "Category": "Restaurants and Other Eating Places", "Address": "1310 Drury St", "LATITUDE": 39.95021, "LONGITUDE": -75.162564, "DATE_RANGE_START": 2021, "Total Visits": 418.0, "Total Visitors": 332.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 45.0, "Total Spend": 106257.0, "Total Transactions": 3253.0, "Total Customers": 2136.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 30.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162564, 39.95021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "Name": "The Capital Grille", "Category": "Restaurants and Other Eating Places", "Address": "1338 Chestnut St # 46", "LATITUDE": 39.950707, "LONGITUDE": -75.163622, "DATE_RANGE_START": 2021, "Total Visits": 539.0, "Total Visitors": 456.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 45190.0, "Total Transactions": 227.0, "Total Customers": 205.0, "Median Spend per Transaction": 175.85, "Median Spend per Customer": 200.88 }, "geometry": { "type": "Point", "coordinates": [ -75.163622, 39.950707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-3qz", "Name": "Jana Pharmacy", "Category": "Health and Personal Care Stores", "Address": "413 E Wyoming Ave", "LATITUDE": 40.020931, "LONGITUDE": -75.117668, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 29.0, "POI_CBG": 421010289011.0, "Median Dwell Time": 70.0, "Total Spend": 274.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 24.75, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117668, 40.020931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-m8v", "Name": "Blazin Flavorz", "Category": "Restaurants and Other Eating Places", "Address": "2406 Germantown Ave", "LATITUDE": 39.988482, "LONGITUDE": -75.146793, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 33.0, "POI_CBG": 421010165003.0, "Median Dwell Time": 178.0, "Total Spend": 511.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 35.5 }, "geometry": { "type": "Point", "coordinates": [ -75.146793, 39.988482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1509 Chestnut St", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 172.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 41.0, "Total Spend": 4442.0, "Total Transactions": 771.0, "Total Customers": 422.0, "Median Spend per Transaction": 5.28, "Median Spend per Customer": 6.09 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.933087, "LONGITUDE": -75.144618, "DATE_RANGE_START": 2021, "Total Visits": 1265.0, "Total Visitors": 661.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 2.0, "Total Spend": 21556.0, "Total Transactions": 2983.0, "Total Customers": 1425.0, "Median Spend per Transaction": 6.14, "Median Spend per Customer": 9.61 }, "geometry": { "type": "Point", "coordinates": [ -75.144618, 39.933087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgf-33q", "Name": "Kiwi Frozen Yogurt", "Category": "Restaurants and Other Eating Places", "Address": "3606 Chestnut St", "LATITUDE": 39.954562, "LONGITUDE": -75.195031, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 41.0, "Total Spend": 4509.0, "Total Transactions": 298.0, "Total Customers": 294.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.195031, 39.954562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-cyv", "Name": "Holmesburg Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8039 Frankford Ave", "LATITUDE": 40.041745, "LONGITUDE": -75.026513, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 53.0, "POI_CBG": 421010329001.0, "Median Dwell Time": 39.0, "Total Spend": 522.0, "Total Transactions": 21.0, "Total Customers": 12.0, "Median Spend per Transaction": 12.7, "Median Spend per Customer": 51.48 }, "geometry": { "type": "Point", "coordinates": [ -75.026513, 40.041745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmb-66k", "Name": "uBreakiFix", "Category": "Electronics and Appliance Stores", "Address": "1128 Walnut St # 100B", "LATITUDE": 39.948576, "LONGITUDE": -75.160424, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 55.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 1.0, "Total Spend": 2685.0, "Total Transactions": 55.0, "Total Customers": 50.0, "Median Spend per Transaction": 46.44, "Median Spend per Customer": 50.76 }, "geometry": { "type": "Point", "coordinates": [ -75.160424, 39.948576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5601 Lancaster Ave", "LATITUDE": 39.980352, "LONGITUDE": -75.234957, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 57.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 3.0, "Total Spend": 6232.0, "Total Transactions": 420.0, "Total Customers": 360.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.234957, 39.980352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgf-75z", "Name": "Fresh & Tasty Donuts", "Category": "Restaurants and Other Eating Places", "Address": "4096 Lancaster Ave", "LATITUDE": 39.964751, "LONGITUDE": -75.205403, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 57.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 4.0, "Total Spend": 101.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205403, 39.964751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "Name": "The Flavor Spot", "Category": "Restaurants and Other Eating Places", "Address": "5013 N Broad St", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 60.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 183.0, "Total Spend": 2979.0, "Total Transactions": 129.0, "Total Customers": 117.0, "Median Spend per Transaction": 19.71, "Median Spend per Customer": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "Name": "Bindlestiff Books", "Category": "Book Stores and News Dealers", "Address": "4530 Baltimore Ave", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 2.0, "Total Spend": 163.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 10.78, "Median Spend per Customer": 10.77 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "Name": "Street Side", "Category": "Restaurants and Other Eating Places", "Address": "165 W Girard Ave", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 66.0, "Total Spend": 2430.0, "Total Transactions": 124.0, "Total Customers": 112.0, "Median Spend per Transaction": 18.43, "Median Spend per Customer": 18.74 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9990 Bustleton Ave", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2021, "Total Visits": 480.0, "Total Visitors": 432.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 5.0, "Total Spend": 9292.0, "Total Transactions": 251.0, "Total Customers": 217.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phk-yvz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6744 N 5th St # 46", "LATITUDE": 40.054784, "LONGITUDE": -75.126802, "DATE_RANGE_START": 2021, "Total Visits": 272.0, "Total Visitors": 200.0, "POI_CBG": 421010269001.0, "Median Dwell Time": 4.0, "Total Spend": 10197.0, "Total Transactions": 532.0, "Total Customers": 327.0, "Median Spend per Transaction": 12.59, "Median Spend per Customer": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.126802, 40.054784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6900 Lindbergh Blvd", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2021, "Total Visits": 625.0, "Total Visitors": 422.0, "POI_CBG": 421010061001.0, "Median Dwell Time": 7.0, "Total Spend": 2451.0, "Total Transactions": 167.0, "Total Customers": 105.0, "Median Spend per Transaction": 8.47, "Median Spend per Customer": 18.65 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5680 Rising Sun Ave", "LATITUDE": 40.039167, "LONGITUDE": -75.110538, "DATE_RANGE_START": 2021, "Total Visits": 1952.0, "Total Visitors": 1310.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 4.0, "Total Spend": 1751.0, "Total Transactions": 48.0, "Total Customers": 31.0, "Median Spend per Transaction": 38.57, "Median Spend per Customer": 56.27 }, "geometry": { "type": "Point", "coordinates": [ -75.110538, 40.039167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "102 E Chelten Ave", "LATITUDE": 40.037208, "LONGITUDE": -75.172767, "DATE_RANGE_START": 2021, "Total Visits": 745.0, "Total Visitors": 484.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 5.0, "Total Spend": 27466.0, "Total Transactions": 1002.0, "Total Customers": 611.0, "Median Spend per Transaction": 21.61, "Median Spend per Customer": 33.4 }, "geometry": { "type": "Point", "coordinates": [ -75.172767, 40.037208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w49", "Name": "The Children's Place", "Category": "Clothing Stores", "Address": "1575 Franklin Mills Cir", "LATITUDE": 40.087614, "LONGITUDE": -74.96103, "DATE_RANGE_START": 2021, "Total Visits": 530.0, "Total Visitors": 473.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 268.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 44.69, "Median Spend per Customer": 44.69 }, "geometry": { "type": "Point", "coordinates": [ -74.96103, 40.087614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "1356 Franklin Mills Cir", "LATITUDE": 40.085814, "LONGITUDE": -74.963569, "DATE_RANGE_START": 2021, "Total Visits": 3232.0, "Total Visitors": 2556.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 27.0, "Total Spend": 18545.0, "Total Transactions": 473.0, "Total Customers": 420.0, "Median Spend per Transaction": 15.09, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -74.963569, 40.085814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2116 S Columbus Blvd", "LATITUDE": 39.915644, "LONGITUDE": -75.139656, "DATE_RANGE_START": 2021, "Total Visits": 570.0, "Total Visitors": 489.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 8.0, "Total Spend": 3290.0, "Total Transactions": 248.0, "Total Customers": 212.0, "Median Spend per Transaction": 9.41, "Median Spend per Customer": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.139656, 39.915644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "Name": "Gallelli Formal Wear", "Category": "Clothing Stores", "Address": "904 Cottman Ave", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 69.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 8.0, "Total Spend": 4339.0, "Total Transactions": 41.0, "Total Customers": 36.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-xqz", "Name": "Brother's Food Market", "Category": "Grocery Stores", "Address": "3516 Germantown Ave", "LATITUDE": 40.006485, "LONGITUDE": -75.150169, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 31.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 6.0, "Total Spend": 101.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 3.99, "Median Spend per Customer": 2.89 }, "geometry": { "type": "Point", "coordinates": [ -75.150169, 40.006485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj4-7wk", "Name": "Vernie's Soul Food", "Category": "Restaurants and Other Eating Places", "Address": "1800 W Eleanor St", "LATITUDE": 40.027362, "LONGITUDE": -75.153997, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010280003.0, "Median Dwell Time": null, "Total Spend": 880.0, "Total Transactions": 45.0, "Total Customers": 29.0, "Median Spend per Transaction": 15.91, "Median Spend per Customer": 16.36 }, "geometry": { "type": "Point", "coordinates": [ -75.153997, 40.027362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj6-9s5", "Name": "New Generation Super Deli", "Category": "Restaurants and Other Eating Places", "Address": "351 E Olney Ave", "LATITUDE": 40.034686, "LONGITUDE": -75.115012, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 31.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 62.0, "Total Spend": 138.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 9.13 }, "geometry": { "type": "Point", "coordinates": [ -75.115012, 40.034686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj2-btv", "Name": "Bentoulis Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1226 E Hunting Park Ave", "LATITUDE": 40.01065, "LONGITUDE": -75.102956, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 36.0, "POI_CBG": 421010191002.0, "Median Dwell Time": 8.0, "Total Spend": 1197.0, "Total Transactions": 38.0, "Total Customers": 36.0, "Median Spend per Transaction": 30.8, "Median Spend per Customer": 30.35 }, "geometry": { "type": "Point", "coordinates": [ -75.102956, 40.01065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7w-6zf", "Name": "Ali Baba Cafe & Hookah Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "7704 Castor Ave", "LATITUDE": 40.057745, "LONGITUDE": -75.060291, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 50.0, "POI_CBG": 421010336003.0, "Median Dwell Time": 155.0, "Total Spend": 596.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 27.47, "Median Spend per Customer": 27.47 }, "geometry": { "type": "Point", "coordinates": [ -75.060291, 40.057745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm3-vpv", "Name": "Mesh Vintage", "Category": "Clothing Stores", "Address": "1820 E Passyunk Ave", "LATITUDE": 39.927333, "LONGITUDE": -75.166704, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 29.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 5.0, "Total Spend": 1516.0, "Total Transactions": 41.0, "Total Customers": 36.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166704, 39.927333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dwg-g6k", "Name": "United", "Category": "Gasoline Stations", "Address": "6901 Buist Ave", "LATITUDE": 39.917055, "LONGITUDE": -75.235223, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 60.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 3.0, "Total Spend": 11052.0, "Total Transactions": 449.0, "Total Customers": 272.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 26.77 }, "geometry": { "type": "Point", "coordinates": [ -75.235223, 39.917055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "Name": "The Bagel Place", "Category": "Restaurants and Other Eating Places", "Address": "404 Queen St", "LATITUDE": 39.937457, "LONGITUDE": -75.15033, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 60.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 55.0, "Total Spend": 5770.0, "Total Transactions": 384.0, "Total Customers": 284.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 16.32 }, "geometry": { "type": "Point", "coordinates": [ -75.15033, 39.937457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "Name": "Fairdale Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4019 Fairdale Rd", "LATITUDE": 40.084494, "LONGITUDE": -74.972673, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 48.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 108.0, "Total Spend": 112.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -74.972673, 40.084494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "Name": "Union Tap House", "Category": "Restaurants and Other Eating Places", "Address": "4801 Umbria St", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 48.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 15.0, "Total Spend": 595.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 52.5, "Median Spend per Customer": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pfy-b6k", "Name": "Barry's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "471 Leverington Ave", "LATITUDE": 40.035119, "LONGITUDE": -75.217909, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 57.0, "POI_CBG": 421010213001.0, "Median Dwell Time": 209.0, "Total Spend": 3761.0, "Total Transactions": 143.0, "Total Customers": 117.0, "Median Spend per Transaction": 22.2, "Median Spend per Customer": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.217909, 40.035119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-9cq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3437 Walnut St", "LATITUDE": 39.953242, "LONGITUDE": -75.19352, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 67.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 1.0, "Total Spend": 5202.0, "Total Transactions": 938.0, "Total Customers": 399.0, "Median Spend per Transaction": 4.42, "Median Spend per Customer": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.19352, 39.953242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pg8-jjv", "Name": "Deborah's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2608 W Girard Ave", "LATITUDE": 39.97383, "LONGITUDE": -75.179259, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010138002.0, "Median Dwell Time": null, "Total Spend": 487.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 23.36, "Median Spend per Customer": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.179259, 39.97383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "Name": "Windfall Gallery", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7944 Germantown Ave", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 17.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 6.0, "Total Spend": 222.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 1.08, "Median Spend per Customer": 46.44 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p8j-94v", "Name": "Panda Chinese", "Category": "Restaurants and Other Eating Places", "Address": "7105 Frankford Ave", "LATITUDE": 40.03456, "LONGITUDE": -75.044147, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 2.0, "Total Spend": 152.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 31.8, "Median Spend per Customer": 31.8 }, "geometry": { "type": "Point", "coordinates": [ -75.044147, 40.03456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "Name": "Polo Ralph Lauren Factory Store", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Ste 92", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010363011.0, "Median Dwell Time": null, "Total Spend": 37873.0, "Total Transactions": 341.0, "Total Customers": 303.0, "Median Spend per Transaction": 87.49, "Median Spend per Customer": 89.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pn5", "Name": "Tortilleria San Roman", "Category": "Restaurants and Other Eating Places", "Address": "951 S 9th St", "LATITUDE": 39.937643, "LONGITUDE": -75.157989, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 4.0, "Total Spend": 212.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157989, 39.937643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "Name": "Domenic's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "14258 Bustleton Ave", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 3.0, "Total Spend": 2032.0, "Total Transactions": 67.0, "Total Customers": 57.0, "Median Spend per Transaction": 28.06, "Median Spend per Customer": 31.55 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-pqf", "Name": "Senoj Clothing", "Category": "Clothing Stores", "Address": "1609 South St", "LATITUDE": 39.944292, "LONGITUDE": -75.169204, "DATE_RANGE_START": 2021, "Total Visits": 723.0, "Total Visitors": 394.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 1029.0, "Total Spend": 578.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 88.0, "Median Spend per Customer": 121.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169204, 39.944292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-gtv", "Name": "Bruno's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7362 N 19th St", "LATITUDE": 40.067212, "LONGITUDE": -75.146516, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 43.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 2.0, "Total Spend": 764.0, "Total Transactions": 50.0, "Total Customers": 45.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 14.56 }, "geometry": { "type": "Point", "coordinates": [ -75.146516, 40.067212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-rtv", "Name": "Thomas Bond House", "Category": "Traveler Accommodation", "Address": "129 S 2nd St", "LATITUDE": 39.947678, "LONGITUDE": -75.144078, "DATE_RANGE_START": 2021, "Total Visits": 1291.0, "Total Visitors": 909.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 6.0, "Total Spend": 1404.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 192.23, "Median Spend per Customer": 192.23 }, "geometry": { "type": "Point", "coordinates": [ -75.144078, 39.947678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "Name": "Cleavers", "Category": "Restaurants and Other Eating Places", "Address": "108 S 18th St", "LATITUDE": 39.951397, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 165.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 4.0, "Total Spend": 23718.0, "Total Transactions": 883.0, "Total Customers": 740.0, "Median Spend per Transaction": 21.53, "Median Spend per Customer": 24.97 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 39.951397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1939 Callowhill St", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 172.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 20.0, "Total Spend": 15173.0, "Total Transactions": 327.0, "Total Customers": 308.0, "Median Spend per Transaction": 39.02, "Median Spend per Customer": 41.56 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8y9", "Name": "City Winery Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "990 Filbert St", "LATITUDE": 39.952404, "LONGITUDE": -75.156249, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 3583.0, "Total Transactions": 48.0, "Total Customers": 48.0, "Median Spend per Transaction": 59.66, "Median Spend per Customer": 59.66 }, "geometry": { "type": "Point", "coordinates": [ -75.156249, 39.952404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-ty9", "Name": "Shane Confectionery", "Category": "Specialty Food Stores", "Address": "110 Market St", "LATITUDE": 39.949497, "LONGITUDE": -75.14262, "DATE_RANGE_START": 2021, "Total Visits": 1463.0, "Total Visitors": 1246.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 59.0, "Total Spend": 1187.0, "Total Transactions": 43.0, "Total Customers": 41.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14262, 39.949497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8m-snq", "Name": "Station Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "1609 Pratt St", "LATITUDE": 40.022297, "LONGITUDE": -75.077816, "DATE_RANGE_START": 2021, "Total Visits": 408.0, "Total Visitors": 325.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 6.0, "Total Spend": 2423.0, "Total Transactions": 93.0, "Total Customers": 67.0, "Median Spend per Transaction": 21.56, "Median Spend per Customer": 27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.077816, 40.022297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgg-rc5", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "3130 W Hunting Park Ave", "LATITUDE": 40.003796, "LONGITUDE": -75.180647, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 184.0, "POI_CBG": 421010171004.0, "Median Dwell Time": 3.0, "Total Spend": 3532.0, "Total Transactions": 179.0, "Total Customers": 153.0, "Median Spend per Transaction": 17.73, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180647, 40.003796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yjv", "Name": "Prince Tea House", "Category": "Restaurants and Other Eating Places", "Address": "203 N 9th St", "LATITUDE": 39.955371, "LONGITUDE": -75.154071, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 136.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 26.0, "Total Spend": 5046.0, "Total Transactions": 138.0, "Total Customers": 136.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154071, 39.955371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfv-fmk", "Name": "P & R Mini Market", "Category": "Grocery Stores", "Address": "280 W Washington Ln", "LATITUDE": 40.036996, "LONGITUDE": -75.186928, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010238004.0, "Median Dwell Time": 1.0, "Total Spend": 72.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186928, 40.036996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-vxq", "Name": "Crown Drugs", "Category": "Health and Personal Care Stores", "Address": "6519 Frankford Ave", "LATITUDE": 40.029725, "LONGITUDE": -75.055436, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010320007.0, "Median Dwell Time": 6.0, "Total Spend": 3012.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 172.49, "Median Spend per Customer": 164.74 }, "geometry": { "type": "Point", "coordinates": [ -75.055436, 40.029725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "Name": "Academy Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "3091 Holme Ave", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 41.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 10.0, "Total Spend": 170.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pj5-3nq", "Name": "Erie Mini Market", "Category": "Grocery Stores", "Address": "1413 W Erie Ave", "LATITUDE": 40.009145, "LONGITUDE": -75.152232, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010201022.0, "Median Dwell Time": null, "Total Spend": 1199.0, "Total Transactions": 150.0, "Total Customers": 67.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152232, 40.009145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm3-zpv", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "2354 S 7th St", "LATITUDE": 39.919286, "LONGITUDE": -75.159152, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 62.0, "POI_CBG": 421010041021.0, "Median Dwell Time": 2.0, "Total Spend": 486.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 34.1, "Median Spend per Customer": 34.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159152, 39.919286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp5-gff", "Name": "Stop One Supermarket", "Category": "Grocery Stores", "Address": "2971 Aramingo Ave", "LATITUDE": 39.985559, "LONGITUDE": -75.111594, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010179003.0, "Median Dwell Time": 1.0, "Total Spend": 235.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 15.85, "Median Spend per Customer": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.111594, 39.985559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmd-zcq", "Name": "Los Camaradas", "Category": "Restaurants and Other Eating Places", "Address": "918 S 22nd St", "LATITUDE": 39.940826, "LONGITUDE": -75.179816, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010013003.0, "Median Dwell Time": 83.0, "Total Spend": 7495.0, "Total Transactions": 155.0, "Total Customers": 141.0, "Median Spend per Transaction": 38.04, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179816, 39.940826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "Name": "The Bayou Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "4245 Main St", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 32.0, "Total Spend": 13472.0, "Total Transactions": 339.0, "Total Customers": 272.0, "Median Spend per Transaction": 32.18, "Median Spend per Customer": 40.22 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvr-d5f", "Name": "Y & B Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6547 Elmwood Ave", "LATITUDE": 39.921556, "LONGITUDE": -75.231623, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 31.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 74.0, "Total Spend": 792.0, "Total Transactions": 26.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 148.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231623, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-syv", "Name": "Tony's Auto Service", "Category": "Gasoline Stations", "Address": "711 W Oregon Ave", "LATITUDE": 39.915674, "LONGITUDE": -75.160462, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 33.0, "POI_CBG": 421010041022.0, "Median Dwell Time": 265.0, "Total Spend": 162.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160462, 39.915674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-94v", "Name": "Skechers", "Category": "Shoe Stores", "Address": "1001 Market St Unit C215", "LATITUDE": 39.951985, "LONGITUDE": -75.157156, "DATE_RANGE_START": 2021, "Total Visits": 16496.0, "Total Visitors": 10990.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 2198.0, "Total Transactions": 41.0, "Total Customers": 36.0, "Median Spend per Transaction": 49.99, "Median Spend per Customer": 69.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157156, 39.951985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "Name": "Nova Star Pharmacy", "Category": "Health and Personal Care Stores", "Address": "301 E Girard Ave", "LATITUDE": 39.969977, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 10.0, "Total Spend": 1152.0, "Total Transactions": 50.0, "Total Customers": 48.0, "Median Spend per Transaction": 23.97, "Median Spend per Customer": 19.49 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "Name": "Castle Roxx", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "105 Shurs Ln", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 62.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 68.0, "Total Spend": 10954.0, "Total Transactions": 360.0, "Total Customers": 253.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-5cq", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1217 Chestnut St", "LATITUDE": 39.950795, "LONGITUDE": -75.160907, "DATE_RANGE_START": 2021, "Total Visits": 327.0, "Total Visitors": 282.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 6.0, "Total Spend": 8122.0, "Total Transactions": 86.0, "Total Customers": 67.0, "Median Spend per Transaction": 78.0, "Median Spend per Customer": 75.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160907, 39.950795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "Name": "Burlington", "Category": "Clothing Stores", "Address": "1563 Franklin Mills Cir", "LATITUDE": 40.087035, "LONGITUDE": -74.960571, "DATE_RANGE_START": 2021, "Total Visits": 1773.0, "Total Visitors": 1518.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 27.0, "Total Spend": 8175.0, "Total Transactions": 155.0, "Total Customers": 131.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 47.57 }, "geometry": { "type": "Point", "coordinates": [ -74.960571, 40.087035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-s5z", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.011216, "LONGITUDE": -75.115625, "DATE_RANGE_START": 2021, "Total Visits": 375.0, "Total Visitors": 303.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 17.0, "Total Spend": 5388.0, "Total Transactions": 198.0, "Total Customers": 148.0, "Median Spend per Transaction": 12.99, "Median Spend per Customer": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.115625, 40.011216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-q9f", "Name": "BEL Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "10101 Verree Rd Ste C", "LATITUDE": 40.105145, "LONGITUDE": -75.032134, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 91.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 8.0, "Total Spend": 919.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.032134, 40.105145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7938 Dungan Rd", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2021, "Total Visits": 902.0, "Total Visitors": 625.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 8.0, "Total Spend": 2082.0, "Total Transactions": 110.0, "Total Customers": 81.0, "Median Spend per Transaction": 14.52, "Median Spend per Customer": 14.52 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7350 Oxford Ave", "LATITUDE": 40.062718, "LONGITUDE": -75.083858, "DATE_RANGE_START": 2021, "Total Visits": 582.0, "Total Visitors": 451.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 6.0, "Total Spend": 14711.0, "Total Transactions": 425.0, "Total Customers": 334.0, "Median Spend per Transaction": 22.66, "Median Spend per Customer": 29.73 }, "geometry": { "type": "Point", "coordinates": [ -75.083858, 40.062718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "11725 Bustleton Ave", "LATITUDE": 40.119147, "LONGITUDE": -75.015143, "DATE_RANGE_START": 2021, "Total Visits": 5575.0, "Total Visitors": 3084.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 17.0, "Total Spend": 94482.0, "Total Transactions": 797.0, "Total Customers": 427.0, "Median Spend per Transaction": 32.66, "Median Spend per Customer": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -75.015143, 40.119147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "3348 Grant Ave", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 179.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 6.0, "Total Spend": 1455.0, "Total Transactions": 53.0, "Total Customers": 41.0, "Median Spend per Transaction": 25.07, "Median Spend per Customer": 27.45 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "Name": "Vietnam Cafe", "Category": "Restaurants and Other Eating Places", "Address": "816 S 47th St", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 131.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 43.0, "Total Spend": 692.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 49.98, "Median Spend per Customer": 68.28 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7qz", "Name": "Wishbone", "Category": "Restaurants and Other Eating Places", "Address": "210 S 13th St", "LATITUDE": 39.948376, "LONGITUDE": -75.162398, "DATE_RANGE_START": 2021, "Total Visits": 198.0, "Total Visitors": 134.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 33.0, "Total Spend": 1816.0, "Total Transactions": 134.0, "Total Customers": 122.0, "Median Spend per Transaction": 13.46, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.162398, 39.948376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "Name": "Rice & Mix", "Category": "Restaurants and Other Eating Places", "Address": "128 S 12th St", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2021, "Total Visits": 298.0, "Total Visitors": 255.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 4338.0, "Total Transactions": 251.0, "Total Customers": 143.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 22.21 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5945 Woodland Ave", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2021, "Total Visits": 573.0, "Total Visitors": 401.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 4.0, "Total Spend": 12280.0, "Total Transactions": 969.0, "Total Customers": 628.0, "Median Spend per Transaction": 10.65, "Median Spend per Customer": 13.67 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4501 Castor Ave", "LATITUDE": 40.016586, "LONGITUDE": -75.096388, "DATE_RANGE_START": 2021, "Total Visits": 181.0, "Total Visitors": 131.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 4.0, "Total Spend": 5300.0, "Total Transactions": 279.0, "Total Customers": 239.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 15.57 }, "geometry": { "type": "Point", "coordinates": [ -75.096388, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4601 Walnut St", "LATITUDE": 39.955786, "LONGITUDE": -75.214102, "DATE_RANGE_START": 2021, "Total Visits": 1702.0, "Total Visitors": 1222.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 5.0, "Total Spend": 693.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 30.61, "Median Spend per Customer": 38.09 }, "geometry": { "type": "Point", "coordinates": [ -75.214102, 39.955786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8v-b8v", "Name": "Sam's Club Fuel Center", "Category": "Gasoline Stations", "Address": "1000 Franklin Mills Cir", "LATITUDE": 40.091819, "LONGITUDE": -74.963857, "DATE_RANGE_START": 2021, "Total Visits": 4332.0, "Total Visitors": 2248.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 1202.0, "Total Transactions": 38.0, "Total Customers": 19.0, "Median Spend per Transaction": 27.17, "Median Spend per Customer": 47.63 }, "geometry": { "type": "Point", "coordinates": [ -74.963857, 40.091819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-6ff", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "10188 Bustleton Ave", "LATITUDE": 40.107593, "LONGITUDE": -75.02698, "DATE_RANGE_START": 2021, "Total Visits": 1041.0, "Total Visitors": 714.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 6.0, "Total Spend": 4332.0, "Total Transactions": 220.0, "Total Customers": 181.0, "Median Spend per Transaction": 17.57, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.02698, 40.107593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "Name": "Zumiez", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1441 Franklin Mills Cir", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 148.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 20707.0, "Total Transactions": 384.0, "Total Customers": 332.0, "Median Spend per Transaction": 41.9, "Median Spend per Customer": 49.9 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-gff", "Name": "AAA Distributor", "Category": "Home Furnishings Stores", "Address": "2501 Grant Ave", "LATITUDE": 40.079352, "LONGITUDE": -75.023999, "DATE_RANGE_START": 2021, "Total Visits": 504.0, "Total Visitors": 360.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 21.0, "Total Spend": 2783.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 244.09, "Median Spend per Customer": 244.09 }, "geometry": { "type": "Point", "coordinates": [ -75.023999, 40.079352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5601 Vine St", "LATITUDE": 39.966876, "LONGITUDE": -75.233151, "DATE_RANGE_START": 2021, "Total Visits": 888.0, "Total Visitors": 585.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 11.0, "Total Spend": 277.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.11, "Median Spend per Customer": 11.93 }, "geometry": { "type": "Point", "coordinates": [ -75.233151, 39.966876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8220 Bartram Ave", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2021, "Total Visits": 1449.0, "Total Visitors": 1067.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 2.0, "Total Spend": 205360.0, "Total Transactions": 11019.0, "Total Customers": 6668.0, "Median Spend per Transaction": 13.54, "Median Spend per Customer": 20.01 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp2-qzz", "Name": "Cambridge Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2313 E Venango St Ste 1", "LATITUDE": 39.994215, "LONGITUDE": -75.097432, "DATE_RANGE_START": 2021, "Total Visits": 91.0, "Total Visitors": 76.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 2.0, "Total Spend": 90.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.88, "Median Spend per Customer": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.097432, 39.994215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg4-grk", "Name": "1beautysupplypa", "Category": "Health and Personal Care Stores", "Address": "301 W Chelten Ave Ste C", "LATITUDE": 40.030533, "LONGITUDE": -75.181364, "DATE_RANGE_START": 2021, "Total Visits": 224.0, "Total Visitors": 174.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 6.0, "Total Spend": 13204.0, "Total Transactions": 382.0, "Total Customers": 286.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.181364, 40.030533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wc5", "Name": "Abunai Poke", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949658, "LONGITUDE": -75.147567, "DATE_RANGE_START": 2021, "Total Visits": 993.0, "Total Visitors": 828.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 2506.0, "Total Transactions": 143.0, "Total Customers": 126.0, "Median Spend per Transaction": 14.7, "Median Spend per Customer": 14.76 }, "geometry": { "type": "Point", "coordinates": [ -75.147567, 39.949658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgy-p5f", "Name": "Roxy Gas & Snacks", "Category": "Gasoline Stations", "Address": "7728 Ridge Ave", "LATITUDE": 40.052502, "LONGITUDE": -75.236583, "DATE_RANGE_START": 2021, "Total Visits": 1067.0, "Total Visitors": 520.0, "POI_CBG": 421010219001.0, "Median Dwell Time": 4.0, "Total Spend": 152.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.236583, 40.052502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-92k", "Name": "Francesca's", "Category": "Clothing Stores", "Address": "901 Market St # 2045", "LATITUDE": 39.952109, "LONGITUDE": -75.155803, "DATE_RANGE_START": 2021, "Total Visits": 291.0, "Total Visitors": 167.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 117.0, "Total Spend": 8177.0, "Total Transactions": 169.0, "Total Customers": 153.0, "Median Spend per Transaction": 44.0, "Median Spend per Customer": 45.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155803, 39.952109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "Name": "Theory", "Category": "Clothing Stores", "Address": "1616 Walnut St", "LATITUDE": 39.949699, "LONGITUDE": -75.168323, "DATE_RANGE_START": 2021, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 26.0, "Total Spend": 4483.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 164.25, "Median Spend per Customer": 163.13 }, "geometry": { "type": "Point", "coordinates": [ -75.168323, 39.949699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-r6k", "Name": "United Buffet", "Category": "Restaurants and Other Eating Places", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029584, "LONGITUDE": -75.100403, "DATE_RANGE_START": 2021, "Total Visits": 566.0, "Total Visitors": 511.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 36.0, "Total Spend": 23764.0, "Total Transactions": 737.0, "Total Customers": 420.0, "Median Spend per Transaction": 24.58, "Median Spend per Customer": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100403, 40.029584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "Name": "Atomic City Comics", "Category": "Book Stores and News Dealers", "Address": "638 South St", "LATITUDE": 39.942034, "LONGITUDE": -75.153458, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 150.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 15.0, "Total Spend": 3761.0, "Total Transactions": 93.0, "Total Customers": 79.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.153458, 39.942034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-8d9", "Name": "Moge Tee Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "1025 Arch St", "LATITUDE": 39.953994, "LONGITUDE": -75.157412, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 181.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 154.0, "Total Spend": 1524.0, "Total Transactions": 179.0, "Total Customers": 124.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 6.83 }, "geometry": { "type": "Point", "coordinates": [ -75.157412, 39.953994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-5xq", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8920 Frankford Ave", "LATITUDE": 40.051379, "LONGITUDE": -75.010945, "DATE_RANGE_START": 2021, "Total Visits": 578.0, "Total Visitors": 413.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 8.0, "Total Spend": 709.0, "Total Transactions": 50.0, "Total Customers": 26.0, "Median Spend per Transaction": 6.28, "Median Spend per Customer": 24.4 }, "geometry": { "type": "Point", "coordinates": [ -75.010945, 40.051379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "Name": "Soy Cafe", "Category": "Restaurants and Other Eating Places", "Address": "630 N 2nd St", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 138.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 937.0, "Total Spend": 4221.0, "Total Transactions": 277.0, "Total Customers": 203.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-y35", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "11725 Bustleton Ave", "LATITUDE": 40.119184, "LONGITUDE": -75.01709, "DATE_RANGE_START": 2021, "Total Visits": 616.0, "Total Visitors": 425.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 1.0, "Total Spend": 9432.0, "Total Transactions": 1279.0, "Total Customers": 556.0, "Median Spend per Transaction": 5.94, "Median Spend per Customer": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.01709, 40.119184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@63s-dvy-8sq", "Name": "MK Food Service Equipment", "Category": "Gasoline Stations", "Address": "4700 Pine St", "LATITUDE": 39.95219, "LONGITUDE": -75.216689, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 17.0, "POI_CBG": 421010079001.0, "Median Dwell Time": 1326.0, "Total Spend": 553.0, "Total Transactions": 62.0, "Total Customers": 41.0, "Median Spend per Transaction": 6.86, "Median Spend per Customer": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.216689, 39.95219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-8gk", "Name": "Colinas Mini Market", "Category": "Grocery Stores", "Address": "130 S 60th St", "LATITUDE": 39.95962, "LONGITUDE": -75.241489, "DATE_RANGE_START": 2021, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 1.0, "Total Spend": 166.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.241489, 39.95962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-224@628-pg9-ty9", "Name": "Mangia Macaroni", "Category": "Restaurants and Other Eating Places", "Address": "1543 Spring Garden St", "LATITUDE": 39.963054, "LONGITUDE": -75.16434, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 26.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 36.0, "Total Spend": 311.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 65.15, "Median Spend per Customer": 65.15 }, "geometry": { "type": "Point", "coordinates": [ -75.16434, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1142 Crease St", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 10.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 158.0, "Total Spend": 6971.0, "Total Transactions": 181.0, "Total Customers": 153.0, "Median Spend per Transaction": 35.72, "Median Spend per Customer": 40.54 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "Name": "Kaffa Crossing", "Category": "Restaurants and Other Eating Places", "Address": "4423 Chestnut St", "LATITUDE": 39.956859, "LONGITUDE": -75.210414, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 54.0, "Total Spend": 4215.0, "Total Transactions": 117.0, "Total Customers": 100.0, "Median Spend per Transaction": 33.05, "Median Spend per Customer": 39.78 }, "geometry": { "type": "Point", "coordinates": [ -75.210414, 39.956859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pm4-2x5", "Name": "Stadium Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2400 S 10th St", "LATITUDE": 39.919559, "LONGITUDE": -75.163925, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 38.0, "POI_CBG": 421010040021.0, "Median Dwell Time": 2.0, "Total Spend": 1028.0, "Total Transactions": 36.0, "Total Customers": 26.0, "Median Spend per Transaction": 28.62, "Median Spend per Customer": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.163925, 39.919559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "Name": "Prohibition Taproom", "Category": "Restaurants and Other Eating Places", "Address": "501 N 13th St", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 43.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 2.0, "Total Spend": 20290.0, "Total Transactions": 430.0, "Total Customers": 341.0, "Median Spend per Transaction": 35.64, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "Name": "El Punto", "Category": "Restaurants and Other Eating Places", "Address": "4460 Whitaker Ave", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 62.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 486.0, "Total Spend": 4243.0, "Total Transactions": 181.0, "Total Customers": 155.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg4-47q", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "100 W Queen Ln", "LATITUDE": 40.030031, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2021, "Total Visits": 685.0, "Total Visitors": 430.0, "POI_CBG": 421010242001.0, "Median Dwell Time": 4.0, "Total Spend": 927.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 30.04, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 40.030031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "Name": "Tap Room On 19th", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2400 S 19th St", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010038001.0, "Median Dwell Time": 1.0, "Total Spend": 7653.0, "Total Transactions": 143.0, "Total Customers": 110.0, "Median Spend per Transaction": 49.13, "Median Spend per Customer": 55.88 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@63s-dvy-xwk", "Name": "Lil' Pop Shop", "Category": "Restaurants and Other Eating Places", "Address": "265 S 44th St", "LATITUDE": 39.953164, "LONGITUDE": -75.210265, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010087013.0, "Median Dwell Time": null, "Total Spend": 1820.0, "Total Transactions": 224.0, "Total Customers": 200.0, "Median Spend per Transaction": 7.74, "Median Spend per Customer": 8.24 }, "geometry": { "type": "Point", "coordinates": [ -75.210265, 39.953164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-yvz", "Name": "Hong Kong Star", "Category": "Restaurants and Other Eating Places", "Address": "1629 W Cumberland St", "LATITUDE": 39.9915, "LONGITUDE": -75.15937, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 7.0, "POI_CBG": 421010167022.0, "Median Dwell Time": 364.0, "Total Spend": 215.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 29.22, "Median Spend per Customer": 29.22 }, "geometry": { "type": "Point", "coordinates": [ -75.15937, 39.9915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-ph6-gzf", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1913 N 54th St", "LATITUDE": 39.986348, "LONGITUDE": -75.231742, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 14.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 15.0, "Total Spend": 2029.0, "Total Transactions": 112.0, "Total Customers": 100.0, "Median Spend per Transaction": 17.39, "Median Spend per Customer": 19.66 }, "geometry": { "type": "Point", "coordinates": [ -75.231742, 39.986348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-zcq", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "2801 N Howard St", "LATITUDE": 39.992691, "LONGITUDE": -75.131414, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010176014.0, "Median Dwell Time": 31.0, "Total Spend": 343.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 19.33, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131414, 39.992691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "Name": "Gia Pronto", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 9.0, "Total Spend": 7508.0, "Total Transactions": 945.0, "Total Customers": 566.0, "Median Spend per Transaction": 6.4, "Median Spend per Customer": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg9-b8v", "Name": "Dragon Express", "Category": "Restaurants and Other Eating Places", "Address": "2400 Ridge Ave", "LATITUDE": 39.981544, "LONGITUDE": -75.174071, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 24.0, "POI_CBG": 421010149001.0, "Median Dwell Time": 2.0, "Total Spend": 648.0, "Total Transactions": 38.0, "Total Customers": 29.0, "Median Spend per Transaction": 16.69, "Median Spend per Customer": 17.63 }, "geometry": { "type": "Point", "coordinates": [ -75.174071, 39.981544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-9s5", "Name": "Mantua Market", "Category": "Restaurants and Other Eating Places", "Address": "808 N 40th St", "LATITUDE": 39.9677, "LONGITUDE": -75.203335, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010107002.0, "Median Dwell Time": 19.0, "Total Spend": 48.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203335, 39.9677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-ffz", "Name": "D'jakarta Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1540 W Ritner St", "LATITUDE": 39.920881, "LONGITUDE": -75.173653, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010039021.0, "Median Dwell Time": 2.0, "Total Spend": 1403.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 73.5, "Median Spend per Customer": 73.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173653, 39.920881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "4358 Main St", "LATITUDE": 40.025431, "LONGITUDE": -75.223871, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 16044.0, "Total Transactions": 377.0, "Total Customers": 286.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.223871, 40.025431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pj6-435", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "5694 Rising Sun Ave", "LATITUDE": 40.040276, "LONGITUDE": -75.109025, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 5.0, "Total Spend": 168.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 20.25, "Median Spend per Customer": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.109025, 40.040276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7325 Castor Ave", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 9.0, "Total Spend": 7572.0, "Total Transactions": 279.0, "Total Customers": 210.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 28.32 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "Name": "Bistrot La Minette", "Category": "Restaurants and Other Eating Places", "Address": "623 S 6th St", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 132.0, "Total Spend": 4134.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 98.62, "Median Spend per Customer": 77.98 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "Name": "La Rosa Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2106 S Broad St", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 50.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 70.0, "Total Spend": 2201.0, "Total Transactions": 165.0, "Total Customers": 110.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 13.75 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "Name": "Race Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "208 Race St", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 64.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 21.0, "Total Spend": 4240.0, "Total Transactions": 95.0, "Total Customers": 93.0, "Median Spend per Transaction": 36.7, "Median Spend per Customer": 39.15 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-47q", "Name": "Kid City", "Category": "Clothing Stores", "Address": "2419 S 24th St", "LATITUDE": 39.921142, "LONGITUDE": -75.185929, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 122.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 13.0, "Total Spend": 12177.0, "Total Transactions": 224.0, "Total Customers": 193.0, "Median Spend per Transaction": 42.19, "Median Spend per Customer": 46.26 }, "geometry": { "type": "Point", "coordinates": [ -75.185929, 39.921142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-435", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "2110 S Columbus Blvd", "LATITUDE": 39.918945, "LONGITUDE": -75.143088, "DATE_RANGE_START": 2021, "Total Visits": 341.0, "Total Visitors": 286.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 20.0, "Total Spend": 29914.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 2833.97, "Median Spend per Customer": 2833.97 }, "geometry": { "type": "Point", "coordinates": [ -75.143088, 39.918945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5800 Woodland Ave", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2021, "Total Visits": 449.0, "Total Visitors": 310.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 8.0, "Total Spend": 1648.0, "Total Transactions": 84.0, "Total Customers": 50.0, "Median Spend per Transaction": 14.46, "Median Spend per Customer": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4133 G St", "LATITUDE": 40.011535, "LONGITUDE": -75.111695, "DATE_RANGE_START": 2021, "Total Visits": 807.0, "Total Visitors": 554.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 6.0, "Total Spend": 7885.0, "Total Transactions": 413.0, "Total Customers": 308.0, "Median Spend per Transaction": 11.77, "Median Spend per Customer": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.111695, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm3-vzz", "Name": "A Novel Idea", "Category": "Book Stores and News Dealers", "Address": "1726 E Passyunk Ave", "LATITUDE": 39.928207, "LONGITUDE": -75.165695, "DATE_RANGE_START": 2021, "Total Visits": 506.0, "Total Visitors": 408.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 4.0, "Total Spend": 892.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 29.13, "Median Spend per Customer": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.165695, 39.928207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pzn-zj9", "Name": "Sweeney's Station Saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "13639 Philmont Ave", "LATITUDE": 40.131466, "LONGITUDE": -75.011396, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 124.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 8.0, "Total Spend": 2565.0, "Total Transactions": 76.0, "Total Customers": 67.0, "Median Spend per Transaction": 20.35, "Median Spend per Customer": 25.63 }, "geometry": { "type": "Point", "coordinates": [ -75.011396, 40.131466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "Name": "Xiandu Thai", "Category": "Restaurants and Other Eating Places", "Address": "1119 Walnut St", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2021, "Total Visits": 2876.0, "Total Visitors": 1916.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 102.0, "Total Spend": 13320.0, "Total Transactions": 267.0, "Total Customers": 236.0, "Median Spend per Transaction": 40.48, "Median Spend per Customer": 44.06 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-ks5", "Name": "Zama", "Category": "Restaurants and Other Eating Places", "Address": "128 S 19th St", "LATITUDE": 39.950901, "LONGITUDE": -75.172392, "DATE_RANGE_START": 2021, "Total Visits": 453.0, "Total Visitors": 267.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 158.0, "Total Spend": 29638.0, "Total Transactions": 360.0, "Total Customers": 296.0, "Median Spend per Transaction": 59.76, "Median Spend per Customer": 72.38 }, "geometry": { "type": "Point", "coordinates": [ -75.172392, 39.950901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-f9f", "Name": "Dimension Latin Grill", "Category": "Restaurants and Other Eating Places", "Address": "7312 Castor Ave", "LATITUDE": 40.052647, "LONGITUDE": -75.065236, "DATE_RANGE_START": 2021, "Total Visits": 129.0, "Total Visitors": 100.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 132.0, "Total Spend": 4911.0, "Total Transactions": 98.0, "Total Customers": 64.0, "Median Spend per Transaction": 37.76, "Median Spend per Customer": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.065236, 40.052647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "Name": "Fiesta Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "8339 Germantown Ave", "LATITUDE": 40.075222, "LONGITUDE": -75.204582, "DATE_RANGE_START": 2021, "Total Visits": 236.0, "Total Visitors": 212.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 33.0, "Total Spend": 2564.0, "Total Transactions": 119.0, "Total Customers": 91.0, "Median Spend per Transaction": 15.61, "Median Spend per Customer": 16.95 }, "geometry": { "type": "Point", "coordinates": [ -75.204582, 40.075222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "Name": "CAVA", "Category": "Restaurants and Other Eating Places", "Address": "1713 Chestnut St", "LATITUDE": 39.95186, "LONGITUDE": -75.16924, "DATE_RANGE_START": 2021, "Total Visits": 456.0, "Total Visitors": 387.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 62.0, "Total Spend": 24068.0, "Total Transactions": 1649.0, "Total Customers": 1265.0, "Median Spend per Transaction": 12.59, "Median Spend per Customer": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.16924, 39.95186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-5vf", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "2226 Cottman Ave", "LATITUDE": 40.048428, "LONGITUDE": -75.061751, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 105.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 33.0, "Total Spend": 2474.0, "Total Transactions": 155.0, "Total Customers": 143.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 15.91 }, "geometry": { "type": "Point", "coordinates": [ -75.061751, 40.048428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2001 Chestnut St", "LATITUDE": 39.952185, "LONGITUDE": -75.173618, "DATE_RANGE_START": 2021, "Total Visits": 160.0, "Total Visitors": 150.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 2.0, "Total Spend": 8746.0, "Total Transactions": 1494.0, "Total Customers": 663.0, "Median Spend per Transaction": 4.58, "Median Spend per Customer": 6.58 }, "geometry": { "type": "Point", "coordinates": [ -75.173618, 39.952185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pmf-jd9", "Name": "SoBol Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "46 S 17th St", "LATITUDE": 39.951746, "LONGITUDE": -75.168892, "DATE_RANGE_START": 2021, "Total Visits": 3604.0, "Total Visitors": 2876.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 21.0, "Total Spend": 4460.0, "Total Transactions": 310.0, "Total Customers": 251.0, "Median Spend per Transaction": 11.12, "Median Spend per Customer": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.168892, 39.951746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@63s-dvw-f2k", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "5143 Haverford Ave", "LATITUDE": 39.964788, "LONGITUDE": -75.22346, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 19.0, "POI_CBG": 421010103002.0, "Median Dwell Time": 180.0, "Total Spend": 54.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.4, "Median Spend per Customer": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.22346, 39.964788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "Name": "Garden's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1902 W Girard Ave", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010139003.0, "Median Dwell Time": 6.0, "Total Spend": 2122.0, "Total Transactions": 174.0, "Total Customers": 100.0, "Median Spend per Transaction": 9.94, "Median Spend per Customer": 17.11 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-9fz", "Name": "D M Food Market", "Category": "Grocery Stores", "Address": "2201 W Oxford St", "LATITUDE": 39.979141, "LONGITUDE": -75.171311, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 4.0, "Total Spend": 344.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 14.97, "Median Spend per Customer": 22.45 }, "geometry": { "type": "Point", "coordinates": [ -75.171311, 39.979141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "237 S 10th St", "LATITUDE": 39.947166, "LONGITUDE": -75.157345, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 53.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 5.0, "Total Spend": 2564.0, "Total Transactions": 81.0, "Total Customers": 64.0, "Median Spend per Transaction": 26.74, "Median Spend per Customer": 26.52 }, "geometry": { "type": "Point", "coordinates": [ -75.157345, 39.947166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-ph8-qmk", "Name": "Blue Lagoon", "Category": "Restaurants and Other Eating Places", "Address": "7548 Haverford Ave", "LATITUDE": 39.977926, "LONGITUDE": -75.26739, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 7.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 1.0, "Total Spend": 375.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.26739, 39.977926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-p7q", "Name": "Turning Heads", "Category": "Clothing Stores", "Address": "2731 Germantown Ave", "LATITUDE": 39.993848, "LONGITUDE": -75.147504, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010175003.0, "Median Dwell Time": null, "Total Spend": 215.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147504, 39.993848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pgg-b8v", "Name": "Shrimp Express II", "Category": "Restaurants and Other Eating Places", "Address": "2205 W Indiana Ave", "LATITUDE": 40.000369, "LONGITUDE": -75.16696, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010172013.0, "Median Dwell Time": 3.0, "Total Spend": 503.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16696, 40.000369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "Name": "Pinoy Groseri", "Category": "Grocery Stores", "Address": "7925 Bustleton Ave", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 29.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 5.0, "Total Spend": 3916.0, "Total Transactions": 72.0, "Total Customers": 48.0, "Median Spend per Transaction": 42.4, "Median Spend per Customer": 63.02 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1201 S Broad St", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 60.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 528.0, "Total Spend": 3533.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 68.64, "Median Spend per Customer": 68.64 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgm-68v", "Name": "Shan Chuan", "Category": "Restaurants and Other Eating Places", "Address": "4211 Ridge Ave", "LATITUDE": 40.009211, "LONGITUDE": -75.194127, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010207004.0, "Median Dwell Time": null, "Total Spend": 541.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 43.8, "Median Spend per Customer": 51.72 }, "geometry": { "type": "Point", "coordinates": [ -75.194127, 40.009211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "Name": "New Panda", "Category": "Restaurants and Other Eating Places", "Address": "8340 Bustleton Ave", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 64.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 9.0, "Total Spend": 4459.0, "Total Transactions": 160.0, "Total Customers": 100.0, "Median Spend per Transaction": 26.83, "Median Spend per Customer": 36.64 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "Name": "Stock", "Category": "Restaurants and Other Eating Places", "Address": "308 E Girard Ave", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2021, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 14.0, "Total Spend": 7293.0, "Total Transactions": 62.0, "Total Customers": 38.0, "Median Spend per Transaction": 70.18, "Median Spend per Customer": 147.75 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgg-dy9", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "2044 W Allegheny Ave", "LATITUDE": 40.00283, "LONGITUDE": -75.164018, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 79.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 3.0, "Total Spend": 6505.0, "Total Transactions": 344.0, "Total Customers": 251.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 20.97 }, "geometry": { "type": "Point", "coordinates": [ -75.164018, 40.00283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-47q", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2298 W Ritner St", "LATITUDE": 39.921468, "LONGITUDE": -75.184708, "DATE_RANGE_START": 2021, "Total Visits": 158.0, "Total Visitors": 143.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 3.0, "Total Spend": 1884.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 68.64, "Median Spend per Customer": 68.64 }, "geometry": { "type": "Point", "coordinates": [ -75.184708, 39.921468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-qmk", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030627, "LONGITUDE": -75.102315, "DATE_RANGE_START": 2021, "Total Visits": 604.0, "Total Visitors": 542.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 21.0, "Total Spend": 28577.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 500.0, "Median Spend per Customer": 500.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102315, 40.030627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "Name": "ALDI", "Category": "Grocery Stores", "Address": "3101 W Girard Ave", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2021, "Total Visits": 704.0, "Total Visitors": 539.0, "POI_CBG": 421010137005.0, "Median Dwell Time": 10.0, "Total Spend": 738.0, "Total Transactions": 38.0, "Total Customers": 24.0, "Median Spend per Transaction": 15.66, "Median Spend per Customer": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-jqf", "Name": "Brewers Outlet Of Mt Airy & Chestnut Hill", "Category": "Beer, Wine, and Liquor Stores", "Address": "7401 Germantown Ave", "LATITUDE": 40.063253, "LONGITUDE": -75.192693, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 122.0, "POI_CBG": 421010256003.0, "Median Dwell Time": 6.0, "Total Spend": 29143.0, "Total Transactions": 716.0, "Total Customers": 468.0, "Median Spend per Transaction": 34.54, "Median Spend per Customer": 41.57 }, "geometry": { "type": "Point", "coordinates": [ -75.192693, 40.063253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgf-3bk", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "3550 Market St", "LATITUDE": 39.955764, "LONGITUDE": -75.194013, "DATE_RANGE_START": 2021, "Total Visits": 2112.0, "Total Visitors": 1391.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 73.0, "Total Spend": 51.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.6, "Median Spend per Customer": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.194013, 39.955764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7700 Crittenden St", "LATITUDE": 40.072233, "LONGITUDE": -75.194825, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 131.0, "POI_CBG": 421010257001.0, "Median Dwell Time": 6.0, "Total Spend": 13218.0, "Total Transactions": 647.0, "Total Customers": 403.0, "Median Spend per Transaction": 12.99, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194825, 40.072233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7434 Ogontz Ave", "LATITUDE": 40.068237, "LONGITUDE": -75.156911, "DATE_RANGE_START": 2021, "Total Visits": 1539.0, "Total Visitors": 1041.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 5.0, "Total Spend": 1552.0, "Total Transactions": 57.0, "Total Customers": 45.0, "Median Spend per Transaction": 20.81, "Median Spend per Customer": 32.62 }, "geometry": { "type": "Point", "coordinates": [ -75.156911, 40.068237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "Name": "Shoe Carnival", "Category": "Shoe Stores", "Address": "2135 Cottman Ave", "LATITUDE": 40.049924, "LONGITUDE": -75.062397, "DATE_RANGE_START": 2021, "Total Visits": 754.0, "Total Visitors": 692.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 10.0, "Total Spend": 19182.0, "Total Transactions": 260.0, "Total Customers": 253.0, "Median Spend per Transaction": 59.99, "Median Spend per Customer": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.062397, 40.049924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "Name": "Journeys", "Category": "Shoe Stores", "Address": "1559 Franklin Mills Cir", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 146.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 7666.0, "Total Transactions": 95.0, "Total Customers": 91.0, "Median Spend per Transaction": 59.97, "Median Spend per Customer": 59.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm4-s5z", "Name": "The Pizza Place", "Category": "Restaurants and Other Eating Places", "Address": "1648 S 7th St", "LATITUDE": 39.927861, "LONGITUDE": -75.157274, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 81.0, "POI_CBG": 421010028011.0, "Median Dwell Time": 1.0, "Total Spend": 824.0, "Total Transactions": 43.0, "Total Customers": 33.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 22.33 }, "geometry": { "type": "Point", "coordinates": [ -75.157274, 39.927861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "Name": "Bistro SouthEast", "Category": "Restaurants and Other Eating Places", "Address": "1824 South St", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2021, "Total Visits": 551.0, "Total Visitors": 356.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 181.0, "Total Spend": 2137.0, "Total Transactions": 98.0, "Total Customers": 62.0, "Median Spend per Transaction": 18.36, "Median Spend per Customer": 22.71 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2025 S Broad St", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2021, "Total Visits": 969.0, "Total Visitors": 623.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 20.0, "Total Spend": 3058.0, "Total Transactions": 661.0, "Total Customers": 308.0, "Median Spend per Transaction": 4.2, "Median Spend per Customer": 5.81 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7w-7qz", "Name": "The Crab house", "Category": "Restaurants and Other Eating Places", "Address": "8001 Castor Ave", "LATITUDE": 40.061854, "LONGITUDE": -75.055489, "DATE_RANGE_START": 2021, "Total Visits": 220.0, "Total Visitors": 141.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 5.0, "Total Spend": 1401.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 46.77, "Median Spend per Customer": 46.77 }, "geometry": { "type": "Point", "coordinates": [ -75.055489, 40.061854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmb-ce5", "Name": "Ralphs Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "760 S 9th St", "LATITUDE": 39.940063, "LONGITUDE": -75.157832, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 112.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 58.0, "Total Spend": 845.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 177.0, "Median Spend per Customer": 177.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157832, 39.940063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "Name": "Georgian Bread Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "10865 Bustleton Ave", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2021, "Total Visits": 477.0, "Total Visitors": 384.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 5.0, "Total Spend": 2094.0, "Total Transactions": 60.0, "Total Customers": 53.0, "Median Spend per Transaction": 31.04, "Median Spend per Customer": 35.32 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "Name": "Ruby Buffet", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2021, "Total Visits": 652.0, "Total Visitors": 616.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 41.0, "Total Spend": 21404.0, "Total Transactions": 532.0, "Total Customers": 389.0, "Median Spend per Transaction": 39.92, "Median Spend per Customer": 39.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-jgk", "Name": "DanDan", "Category": "Restaurants and Other Eating Places", "Address": "126 S 16th St", "LATITUDE": 39.950263, "LONGITUDE": -75.1676, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 146.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 48.0, "Total Spend": 17819.0, "Total Transactions": 396.0, "Total Customers": 372.0, "Median Spend per Transaction": 40.93, "Median Spend per Customer": 42.47 }, "geometry": { "type": "Point", "coordinates": [ -75.1676, 39.950263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956616, "LONGITUDE": -75.194139, "DATE_RANGE_START": 2021, "Total Visits": 320.0, "Total Visitors": 239.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 21.0, "Total Spend": 16319.0, "Total Transactions": 2831.0, "Total Customers": 1110.0, "Median Spend per Transaction": 4.96, "Median Spend per Customer": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.194139, 39.956616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-phy-rc5", "Name": "TABU Hookah Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4535 N 5th St", "LATITUDE": 40.02058, "LONGITUDE": -75.133817, "DATE_RANGE_START": 2021, "Total Visits": 659.0, "Total Visitors": 461.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 76.0, "Total Spend": 62381.0, "Total Transactions": 2169.0, "Total Customers": 1232.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 33.03 }, "geometry": { "type": "Point", "coordinates": [ -75.133817, 40.02058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-xwk", "Name": "aka.", "Category": "Traveler Accommodation", "Address": "2929 Walnut St", "LATITUDE": 39.952073, "LONGITUDE": -75.184019, "DATE_RANGE_START": 2021, "Total Visits": 10792.0, "Total Visitors": 7640.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 68.0, "Total Spend": 129.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.952073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pmf-skf", "Name": "Butcher and Singer", "Category": "Restaurants and Other Eating Places", "Address": "1500 Walnut St", "LATITUDE": 39.948984, "LONGITUDE": -75.166282, "DATE_RANGE_START": 2021, "Total Visits": 2804.0, "Total Visitors": 2160.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 28.0, "Total Spend": 45589.0, "Total Transactions": 167.0, "Total Customers": 150.0, "Median Spend per Transaction": 236.16, "Median Spend per Customer": 252.94 }, "geometry": { "type": "Point", "coordinates": [ -75.166282, 39.948984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-n3q", "Name": "Express Breakfast & Lunch", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.95342, "LONGITUDE": -75.165711, "DATE_RANGE_START": 2021, "Total Visits": 1909.0, "Total Visitors": 1301.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 91.0, "Total Spend": 17.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 3.5, "Median Spend per Customer": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.165711, 39.95342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pg8-bp9", "Name": "WokWorks", "Category": "Restaurants and Other Eating Places", "Address": "3000 W Sedgley Ave", "LATITUDE": 39.984089, "LONGITUDE": -75.183, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 100.0, "POI_CBG": 421010151022.0, "Median Dwell Time": 82.0, "Total Spend": 180.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.183, 39.984089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-tn5", "Name": "The Fresh Works", "Category": "Restaurants and Other Eating Places", "Address": "2634 Belgrade St", "LATITUDE": 39.979613, "LONGITUDE": -75.11764, "DATE_RANGE_START": 2021, "Total Visits": 606.0, "Total Visitors": 282.0, "POI_CBG": 421010378003.0, "Median Dwell Time": 227.0, "Total Spend": 95.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.11764, 39.979613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfy-zj9", "Name": "Mike's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4111 Main St", "LATITUDE": 40.022539, "LONGITUDE": -75.218415, "DATE_RANGE_START": 2021, "Total Visits": 726.0, "Total Visitors": 525.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 31.0, "Total Spend": 4774.0, "Total Transactions": 370.0, "Total Customers": 317.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218415, 40.022539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "Name": "House of Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "3520 Cottman Ave", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2021, "Total Visits": 971.0, "Total Visitors": 699.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 15.0, "Total Spend": 3918.0, "Total Transactions": 107.0, "Total Customers": 55.0, "Median Spend per Transaction": 42.5, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-7nq", "Name": "Chatayee Thai", "Category": "Restaurants and Other Eating Places", "Address": "1227 Walnut St", "LATITUDE": 39.94915, "LONGITUDE": -75.161857, "DATE_RANGE_START": 2021, "Total Visits": 907.0, "Total Visitors": 661.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 140.0, "Total Spend": 904.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 41.76, "Median Spend per Customer": 41.76 }, "geometry": { "type": "Point", "coordinates": [ -75.161857, 39.94915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "400 W Allegheny Ave", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2021, "Total Visits": 93.0, "Total Visitors": 88.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 1.0, "Total Spend": 729.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 21.48, "Median Spend per Customer": 32.59 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-grk", "Name": "Bargain world", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4839 Woodland Ave", "LATITUDE": 39.941099, "LONGITUDE": -75.21263, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 95.0, "POI_CBG": 421010074002.0, "Median Dwell Time": 3.0, "Total Spend": 532.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 13.98, "Median Spend per Customer": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.21263, 39.941099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1707 Arch St", "LATITUDE": 39.95521, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 122.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 3.0, "Total Spend": 52798.0, "Total Transactions": 5869.0, "Total Customers": 2547.0, "Median Spend per Transaction": 7.71, "Median Spend per Customer": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.95521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-y7q", "Name": "The Post", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "129 S 30th St", "LATITUDE": 39.952733, "LONGITUDE": -75.18366, "DATE_RANGE_START": 2021, "Total Visits": 969.0, "Total Visitors": 714.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 45.0, "Total Spend": 3586.0, "Total Transactions": 115.0, "Total Customers": 86.0, "Median Spend per Transaction": 25.2, "Median Spend per Customer": 32.11 }, "geometry": { "type": "Point", "coordinates": [ -75.18366, 39.952733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmb-rp9", "Name": "Recess Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "125 S 2nd St", "LATITUDE": 39.947601, "LONGITUDE": -75.143229, "DATE_RANGE_START": 2021, "Total Visits": 1029.0, "Total Visitors": 711.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 5.0, "Total Spend": 12961.0, "Total Transactions": 189.0, "Total Customers": 136.0, "Median Spend per Transaction": 30.36, "Median Spend per Customer": 39.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143229, 39.947601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "Name": "Buffalo Wild Wings", "Category": "Restaurants and Other Eating Places", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.082615, "LONGITUDE": -75.025718, "DATE_RANGE_START": 2021, "Total Visits": 1017.0, "Total Visitors": 893.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 49.0, "Total Spend": 21988.0, "Total Transactions": 537.0, "Total Customers": 470.0, "Median Spend per Transaction": 38.68, "Median Spend per Customer": 40.71 }, "geometry": { "type": "Point", "coordinates": [ -75.025718, 40.082615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "Name": "Cantinho Brasileiro Restaurante", "Category": "Restaurants and Other Eating Places", "Address": "7536 Castor Ave", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 86.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 7.0, "Total Spend": 5939.0, "Total Transactions": 341.0, "Total Customers": 24.0, "Median Spend per Transaction": 17.22, "Median Spend per Customer": 22.95 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "Name": "Smokey Joes", "Category": "Restaurants and Other Eating Places", "Address": "210 S 40th St", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 100.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 88.0, "Total Spend": 15133.0, "Total Transactions": 477.0, "Total Customers": 339.0, "Median Spend per Transaction": 20.4, "Median Spend per Customer": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-y9z", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "5818 Woodland Ave", "LATITUDE": 39.93105, "LONGITUDE": -75.226248, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 155.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 6.0, "Total Spend": 3297.0, "Total Transactions": 198.0, "Total Customers": 174.0, "Median Spend per Transaction": 16.17, "Median Spend per Customer": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.226248, 39.93105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "Name": "Sahara Grill", "Category": "Restaurants and Other Eating Places", "Address": "1334 Walnut St", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2021, "Total Visits": 7165.0, "Total Visitors": 4632.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 104.0, "Total Spend": 2393.0, "Total Transactions": 64.0, "Total Customers": 60.0, "Median Spend per Transaction": 26.84, "Median Spend per Customer": 27.41 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "Name": "Fette Sau", "Category": "Restaurants and Other Eating Places", "Address": "1208 Frankford Ave", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 112.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 21.0, "Total Spend": 23240.0, "Total Transactions": 327.0, "Total Customers": 305.0, "Median Spend per Transaction": 60.28, "Median Spend per Customer": 69.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "Name": "Local 44", "Category": "Restaurants and Other Eating Places", "Address": "4333 Spruce St", "LATITUDE": 39.952832, "LONGITUDE": -75.210325, "DATE_RANGE_START": 2021, "Total Visits": 298.0, "Total Visitors": 222.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 257.0, "Total Spend": 29872.0, "Total Transactions": 628.0, "Total Customers": 511.0, "Median Spend per Transaction": 37.3, "Median Spend per Customer": 46.53 }, "geometry": { "type": "Point", "coordinates": [ -75.210325, 39.952832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-9s5", "Name": "Parkside Beef & Ale", "Category": "Restaurants and Other Eating Places", "Address": "1433 Arch St", "LATITUDE": 39.954767, "LONGITUDE": -75.164606, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 136.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 4.0, "Total Spend": 3554.0, "Total Transactions": 124.0, "Total Customers": 67.0, "Median Spend per Transaction": 24.72, "Median Spend per Customer": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.164606, 39.954767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pnw-ndv", "Name": "Cake Life Bake Shop", "Category": "Restaurants and Other Eating Places", "Address": "1306 Frankford Ave", "LATITUDE": 39.970543, "LONGITUDE": -75.134645, "DATE_RANGE_START": 2021, "Total Visits": 484.0, "Total Visitors": 365.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 52.0, "Total Spend": 2624.0, "Total Transactions": 122.0, "Total Customers": 110.0, "Median Spend per Transaction": 17.2, "Median Spend per Customer": 17.47 }, "geometry": { "type": "Point", "coordinates": [ -75.134645, 39.970543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "265 S Broad St", "LATITUDE": 39.947387, "LONGITUDE": -75.16433, "DATE_RANGE_START": 2021, "Total Visits": 4098.0, "Total Visitors": 2181.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 319.0, "Total Spend": 3680.0, "Total Transactions": 351.0, "Total Customers": 294.0, "Median Spend per Transaction": 8.67, "Median Spend per Customer": 10.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16433, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-p8j-9mk", "Name": "Capriotti Bros", "Category": "Specialty Food Stores", "Address": "7132 Frankford Ave", "LATITUDE": 40.035466, "LONGITUDE": -75.044048, "DATE_RANGE_START": 2021, "Total Visits": 561.0, "Total Visitors": 365.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 16.0, "Total Spend": 519.0, "Total Transactions": 36.0, "Total Customers": 26.0, "Median Spend per Transaction": 10.64, "Median Spend per Customer": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.044048, 40.035466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-t5f", "Name": "Cavanaugh's Riverdeck", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "417 N Columbus Blvd", "LATITUDE": 39.957746, "LONGITUDE": -75.137247, "DATE_RANGE_START": 2021, "Total Visits": 823.0, "Total Visitors": 630.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 39.0, "Total Spend": 2455.0, "Total Transactions": 69.0, "Total Customers": 38.0, "Median Spend per Transaction": 27.04, "Median Spend per Customer": 51.08 }, "geometry": { "type": "Point", "coordinates": [ -75.137247, 39.957746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-z9f", "Name": "Rosarios Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1501 Wharton St", "LATITUDE": 39.934489, "LONGITUDE": -75.169442, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 21.0, "POI_CBG": 421010022002.0, "Median Dwell Time": 12.0, "Total Spend": 4908.0, "Total Transactions": 158.0, "Total Customers": 136.0, "Median Spend per Transaction": 24.66, "Median Spend per Customer": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.169442, 39.934489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "Name": "Peddler Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2100 Spring St", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2021, "Total Visits": 69.0, "Total Visitors": 21.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 344.0, "Total Spend": 2246.0, "Total Transactions": 308.0, "Total Customers": 184.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-gzf", "Name": "Bar X", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "255 S Camac St", "LATITUDE": 39.946786, "LONGITUDE": -75.161663, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 21.0, "Total Spend": 4931.0, "Total Transactions": 208.0, "Total Customers": 131.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161663, 39.946786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "177 W Allegheny Ave", "LATITUDE": 39.999351, "LONGITUDE": -75.132987, "DATE_RANGE_START": 2021, "Total Visits": 98.0, "Total Visitors": 84.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 2.0, "Total Spend": 455.0, "Total Transactions": 33.0, "Total Customers": 31.0, "Median Spend per Transaction": 12.97, "Median Spend per Customer": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.132987, 39.999351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "Name": "Arby's", "Category": "Restaurants and Other Eating Places", "Address": "577 Franklin Mills Cir", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2021, "Total Visits": 186.0, "Total Visitors": 172.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 6133.0, "Total Transactions": 449.0, "Total Customers": 356.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "Name": "Giovanni's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "5604 Greene St", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 33.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 11.0, "Total Spend": 4560.0, "Total Transactions": 122.0, "Total Customers": 93.0, "Median Spend per Transaction": 18.04, "Median Spend per Customer": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8j-cyv", "Name": "Apex Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7200 Frankford Ave", "LATITUDE": 40.035775, "LONGITUDE": -75.04334, "DATE_RANGE_START": 2021, "Total Visits": 50.0, "Total Visitors": 36.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 20.0, "Total Spend": 366.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 30.17, "Median Spend per Customer": 30.17 }, "geometry": { "type": "Point", "coordinates": [ -75.04334, 40.035775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "917 W Girard Ave # 31", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2021, "Total Visits": 513.0, "Total Visitors": 320.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 3.0, "Total Spend": 22423.0, "Total Transactions": 2842.0, "Total Customers": 1432.0, "Median Spend per Transaction": 6.59, "Median Spend per Customer": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-rkz", "Name": "Cafe Lutecia", "Category": "Restaurants and Other Eating Places", "Address": "2301 Lombard St", "LATITUDE": 39.946587, "LONGITUDE": -75.179627, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010012014.0, "Median Dwell Time": null, "Total Spend": 259.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 27.05, "Median Spend per Customer": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.179627, 39.946587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "Name": "Beck's Cajun Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2021, "Total Visits": 22380.0, "Total Visitors": 15420.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 12.0, "Total Spend": 10397.0, "Total Transactions": 513.0, "Total Customers": 484.0, "Median Spend per Transaction": 17.38, "Median Spend per Customer": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "Name": "New Deck Tavern", "Category": "Restaurants and Other Eating Places", "Address": "3408 Sansom St", "LATITUDE": 39.953506, "LONGITUDE": -75.192591, "DATE_RANGE_START": 2021, "Total Visits": 4253.0, "Total Visitors": 2893.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 42.0, "Total Spend": 32861.0, "Total Transactions": 618.0, "Total Customers": 511.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 46.54 }, "geometry": { "type": "Point", "coordinates": [ -75.192591, 39.953506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4200 N Broad St", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2021, "Total Visits": 437.0, "Total Visitors": 360.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 4.0, "Total Spend": 9691.0, "Total Transactions": 811.0, "Total Customers": 692.0, "Median Spend per Transaction": 9.53, "Median Spend per Customer": 10.65 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phk-yvz", "Name": "Gogi BBQ", "Category": "Restaurants and Other Eating Places", "Address": "6783 N 5th St", "LATITUDE": 40.054866, "LONGITUDE": -75.125965, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 110.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 91.0, "Total Spend": 4647.0, "Total Transactions": 31.0, "Total Customers": 31.0, "Median Spend per Transaction": 122.16, "Median Spend per Customer": 122.16 }, "geometry": { "type": "Point", "coordinates": [ -75.125965, 40.054866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "Name": "Revolution House", "Category": "Restaurants and Other Eating Places", "Address": "200 Market St", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 215.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 28.0, "Total Spend": 37818.0, "Total Transactions": 415.0, "Total Customers": 394.0, "Median Spend per Transaction": 53.93, "Median Spend per Customer": 57.88 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "Name": "The Love", "Category": "Restaurants and Other Eating Places", "Address": "130 S 18th St", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2021, "Total Visits": 4434.0, "Total Visitors": 3162.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 41.0, "Total Spend": 69689.0, "Total Transactions": 616.0, "Total Customers": 547.0, "Median Spend per Transaction": 88.5, "Median Spend per Customer": 93.65 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "3900 City Ave", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2021, "Total Visits": 1790.0, "Total Visitors": 1224.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 42.0, "Total Spend": 36565.0, "Total Transactions": 2375.0, "Total Customers": 1356.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "Name": "House of Kosher", "Category": "Restaurants and Other Eating Places", "Address": "9806 Bustleton Ave", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2021, "Total Visits": 563.0, "Total Visitors": 241.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 20.0, "Total Spend": 17346.0, "Total Transactions": 248.0, "Total Customers": 131.0, "Median Spend per Transaction": 38.34, "Median Spend per Customer": 65.86 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "9990 Roosevelt Blvd", "LATITUDE": 40.094236, "LONGITUDE": -75.016653, "DATE_RANGE_START": 2021, "Total Visits": 535.0, "Total Visitors": 458.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 2.0, "Total Spend": 11907.0, "Total Transactions": 969.0, "Total Customers": 671.0, "Median Spend per Transaction": 10.55, "Median Spend per Customer": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.016653, 40.094236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "848 S 2nd St", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 74.0, "POI_CBG": 421010017001.0, "Median Dwell Time": 53.0, "Total Spend": 10493.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 55.03, "Median Spend per Customer": 51.92 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "Name": "S & S Foods", "Category": "Grocery Stores", "Address": "1800 S Columbus Blvd", "LATITUDE": 39.924738, "LONGITUDE": -75.144356, "DATE_RANGE_START": 2021, "Total Visits": 305.0, "Total Visitors": 253.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 8.0, "Total Spend": 7203.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 268.32, "Median Spend per Customer": 352.51 }, "geometry": { "type": "Point", "coordinates": [ -75.144356, 39.924738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "4004 W Girard Ave", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010110003.0, "Median Dwell Time": 5.0, "Total Spend": 1450.0, "Total Transactions": 62.0, "Total Customers": 45.0, "Median Spend per Transaction": 20.08, "Median Spend per Customer": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvp-qmk", "Name": "Caribbean Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "6045 Baltimore Ave", "LATITUDE": 39.94382, "LONGITUDE": -75.246381, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 38.0, "POI_CBG": 421010082004.0, "Median Dwell Time": 81.0, "Total Spend": 269.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 29.0, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246381, 39.94382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-snq", "Name": "Atlanta Wings", "Category": "Restaurants and Other Eating Places", "Address": "2355 S Bucknell St", "LATITUDE": 39.922758, "LONGITUDE": -75.186158, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 41.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 4.0, "Total Spend": 1869.0, "Total Transactions": 74.0, "Total Customers": 64.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.186158, 39.922758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pgg-kmk", "Name": "King Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2100 W Cambria St", "LATITUDE": 39.99818, "LONGITUDE": -75.165723, "DATE_RANGE_START": 2021, "Total Visits": 103.0, "Total Visitors": 45.0, "POI_CBG": 421010173001.0, "Median Dwell Time": 402.0, "Total Spend": 305.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 63.99, "Median Spend per Customer": 63.99 }, "geometry": { "type": "Point", "coordinates": [ -75.165723, 39.99818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvx-vcq", "Name": "Gold Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1247 S 47th St", "LATITUDE": 39.943788, "LONGITUDE": -75.210959, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 45.0, "POI_CBG": 421010074001.0, "Median Dwell Time": 3.0, "Total Spend": 1193.0, "Total Transactions": 76.0, "Total Customers": 45.0, "Median Spend per Transaction": 10.23, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210959, 39.943788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-9pv", "Name": "Liberty Bell Diner", "Category": "Restaurants and Other Eating Places", "Address": "8445 Frankford Ave", "LATITUDE": 40.044508, "LONGITUDE": -75.01753, "DATE_RANGE_START": 2021, "Total Visits": 1322.0, "Total Visitors": 842.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 40.0, "Total Spend": 35.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 7.25 }, "geometry": { "type": "Point", "coordinates": [ -75.01753, 40.044508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "Name": "Le Viet Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1019 S 11th St", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2021, "Total Visits": 239.0, "Total Visitors": 138.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 620.0, "Total Spend": 3161.0, "Total Transactions": 43.0, "Total Customers": 33.0, "Median Spend per Transaction": 48.81, "Median Spend per Customer": 71.49 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dw9-wtv", "Name": "Revive 21", "Category": "Restaurants and Other Eating Places", "Address": "Phildelphia Airport Terminal F", "LATITUDE": 39.880826, "LONGITUDE": -75.237536, "DATE_RANGE_START": 2021, "Total Visits": 18990.0, "Total Visitors": 15527.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 34.0, "Total Spend": 10124.0, "Total Transactions": 413.0, "Total Customers": 363.0, "Median Spend per Transaction": 21.7, "Median Spend per Customer": 23.95 }, "geometry": { "type": "Point", "coordinates": [ -75.237536, 39.880826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "Name": "Finn Mccools Ale House", "Category": "Restaurants and Other Eating Places", "Address": "118 S 12th St", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2021, "Total Visits": 561.0, "Total Visitors": 494.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 31.0, "Total Spend": 24310.0, "Total Transactions": 484.0, "Total Customers": 399.0, "Median Spend per Transaction": 33.1, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Henry Ave", "LATITUDE": 40.063794, "LONGITUDE": -75.238861, "DATE_RANGE_START": 2021, "Total Visits": 425.0, "Total Visitors": 258.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 87.0, "Total Spend": 21571.0, "Total Transactions": 2010.0, "Total Customers": 1442.0, "Median Spend per Transaction": 9.28, "Median Spend per Customer": 10.87 }, "geometry": { "type": "Point", "coordinates": [ -75.238861, 40.063794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgd-zfz", "Name": "Ramen Bar", "Category": "Restaurants and Other Eating Places", "Address": "3400 Lancaster Ave", "LATITUDE": 39.957167, "LONGITUDE": -75.192099, "DATE_RANGE_START": 2021, "Total Visits": 334.0, "Total Visitors": 79.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 916.0, "Total Spend": 3655.0, "Total Transactions": 67.0, "Total Customers": 64.0, "Median Spend per Transaction": 35.32, "Median Spend per Customer": 35.32 }, "geometry": { "type": "Point", "coordinates": [ -75.192099, 39.957167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "Name": "Royal Boucherie", "Category": "Restaurants and Other Eating Places", "Address": "52 S 2nd St", "LATITUDE": 39.948704, "LONGITUDE": -75.144251, "DATE_RANGE_START": 2021, "Total Visits": 1014.0, "Total Visitors": 835.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 52.0, "Total Spend": 19046.0, "Total Transactions": 179.0, "Total Customers": 169.0, "Median Spend per Transaction": 81.35, "Median Spend per Customer": 100.76 }, "geometry": { "type": "Point", "coordinates": [ -75.144251, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "Name": "Kostas Bar", "Category": "Restaurants and Other Eating Places", "Address": "15 W Girard Ave", "LATITUDE": 39.96897, "LONGITUDE": -75.134955, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 100.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 42.0, "Total Spend": 16924.0, "Total Transactions": 683.0, "Total Customers": 513.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 24.64 }, "geometry": { "type": "Point", "coordinates": [ -75.134955, 39.96897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "Name": "Parkway Corner Deli", "Category": "Restaurants and Other Eating Places", "Address": "2201 Pennsylvania Ave", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2021, "Total Visits": 184.0, "Total Visitors": 162.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 12.0, "Total Spend": 4222.0, "Total Transactions": 282.0, "Total Customers": 129.0, "Median Spend per Transaction": 11.54, "Median Spend per Customer": 18.82 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "Name": "Crown Deli", "Category": "Restaurants and Other Eating Places", "Address": "3806 Morrell Ave", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2021, "Total Visits": 1153.0, "Total Visitors": 709.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 10.0, "Total Spend": 4130.0, "Total Transactions": 141.0, "Total Customers": 107.0, "Median Spend per Transaction": 19.9, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-zvf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "800 S Broad St", "LATITUDE": 39.940697, "LONGITUDE": -75.166565, "DATE_RANGE_START": 2021, "Total Visits": 1119.0, "Total Visitors": 838.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 6.0, "Total Spend": 13975.0, "Total Transactions": 1117.0, "Total Customers": 821.0, "Median Spend per Transaction": 10.77, "Median Spend per Customer": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.166565, 39.940697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-5zz", "Name": "The Dining Car & Market", "Category": "Restaurants and Other Eating Places", "Address": "8826 Frankford Ave", "LATITUDE": 40.050127, "LONGITUDE": -75.01115, "DATE_RANGE_START": 2021, "Total Visits": 823.0, "Total Visitors": 616.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 38.0, "Total Spend": 448.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 24.49, "Median Spend per Customer": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.01115, 40.050127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "Name": "Yamitsuki Ramen", "Category": "Restaurants and Other Eating Places", "Address": "1028 Arch St", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2021, "Total Visits": 487.0, "Total Visitors": 387.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 129.0, "Total Spend": 5298.0, "Total Transactions": 115.0, "Total Customers": 112.0, "Median Spend per Transaction": 43.29, "Median Spend per Customer": 44.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-snq", "Name": "Fado Irish Pub", "Category": "Restaurants and Other Eating Places", "Address": "1500 Locust St", "LATITUDE": 39.948313, "LONGITUDE": -75.166407, "DATE_RANGE_START": 2021, "Total Visits": 1504.0, "Total Visitors": 1055.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 97.0, "Total Spend": 8365.0, "Total Transactions": 203.0, "Total Customers": 138.0, "Median Spend per Transaction": 37.01, "Median Spend per Customer": 52.32 }, "geometry": { "type": "Point", "coordinates": [ -75.166407, 39.948313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pgb-6tv", "Name": "Fairmount Framing", "Category": "Home Furnishings Stores", "Address": "754 N 25th St", "LATITUDE": 39.968987, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 278.0, "Total Spend": 2592.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 324.0, "Median Spend per Customer": 86.64 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.968987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "Name": "Hunan Palace", "Category": "Restaurants and Other Eating Places", "Address": "6118 Lancaster Ave", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 21.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 286.0, "Total Spend": 2253.0, "Total Transactions": 126.0, "Total Customers": 100.0, "Median Spend per Transaction": 15.05, "Median Spend per Customer": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj9-grk", "Name": "Nedro Food Market", "Category": "Grocery Stores", "Address": "5900 N 21st St", "LATITUDE": 40.043815, "LONGITUDE": -75.156105, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 36.0, "POI_CBG": 421010279014.0, "Median Dwell Time": 18.0, "Total Spend": 61.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.88, "Median Spend per Customer": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.156105, 40.043815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj9-6p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5810 N Broad St", "LATITUDE": 40.042256, "LONGITUDE": -75.144223, "DATE_RANGE_START": 2021, "Total Visits": 169.0, "Total Visitors": 155.0, "POI_CBG": 421010278002.0, "Median Dwell Time": 3.0, "Total Spend": 1105.0, "Total Transactions": 45.0, "Total Customers": 36.0, "Median Spend per Transaction": 20.13, "Median Spend per Customer": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144223, 40.042256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnz-xyv", "Name": "Moju's Family Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2501 E Westmoreland St", "LATITUDE": 39.988309, "LONGITUDE": -75.102423, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 12.0, "POI_CBG": 421010379002.0, "Median Dwell Time": 345.0, "Total Spend": 517.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 7.63, "Median Spend per Customer": 6.13 }, "geometry": { "type": "Point", "coordinates": [ -75.102423, 39.988309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "1851 S Columbus Blvd Ste 7", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 163.0, "Total Spend": 47521.0, "Total Transactions": 866.0, "Total Customers": 740.0, "Median Spend per Transaction": 40.51, "Median Spend per Customer": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pg2-zs5", "Name": "South Philly Italian Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "311 W Mount Pleasant Ave", "LATITUDE": 40.054139, "LONGITUDE": -75.194452, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010388004.0, "Median Dwell Time": 91.0, "Total Spend": 1810.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 81.74, "Median Spend per Customer": 81.74 }, "geometry": { "type": "Point", "coordinates": [ -75.194452, 40.054139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnt-tgk", "Name": "Hinge Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2652 E Somerset St", "LATITUDE": 39.979226, "LONGITUDE": -75.112172, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 14.0, "POI_CBG": 421010180011.0, "Median Dwell Time": 80.0, "Total Spend": 52.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.112172, 39.979226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "Name": "American Sardine Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1800 Federal St", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 60.0, "Total Spend": 1969.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 50.56, "Median Spend per Customer": 50.56 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "Name": "Lucky 13 Pub", "Category": "Restaurants and Other Eating Places", "Address": "1820 S 13th St", "LATITUDE": 39.927169, "LONGITUDE": -75.167128, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 46.0, "Total Spend": 9157.0, "Total Transactions": 179.0, "Total Customers": 141.0, "Median Spend per Transaction": 37.16, "Median Spend per Customer": 40.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167128, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-qj9", "Name": "Mack Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "6120 Vine St", "LATITUDE": 39.966784, "LONGITUDE": -75.242585, "DATE_RANGE_START": 2021, "Total Visits": 229.0, "Total Visitors": 55.0, "POI_CBG": 421010096005.0, "Median Dwell Time": 1406.0, "Total Spend": 2559.0, "Total Transactions": 81.0, "Total Customers": 69.0, "Median Spend per Transaction": 23.09, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242585, 39.966784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-3kf", "Name": "Bistro Romano", "Category": "Restaurants and Other Eating Places", "Address": "120 Lombard St", "LATITUDE": 39.941964, "LONGITUDE": -75.144702, "DATE_RANGE_START": 2021, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 77.0, "Total Spend": 4526.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 101.95, "Median Spend per Customer": 101.95 }, "geometry": { "type": "Point", "coordinates": [ -75.144702, 39.941964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pjf-t5f", "Name": "Host", "Category": "Furniture Stores", "Address": "7908 Germantown Ave", "LATITUDE": 40.069687, "LONGITUDE": -75.200234, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010231001.0, "Median Dwell Time": null, "Total Spend": 1866.0, "Total Transactions": 57.0, "Total Customers": 36.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.200234, 40.069687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj3-3nq", "Name": "Mora Mini Market", "Category": "Grocery Stores", "Address": "4501 N 19th St", "LATITUDE": 40.022573, "LONGITUDE": -75.156258, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010280001.0, "Median Dwell Time": null, "Total Spend": 41.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 4.31, "Median Spend per Customer": 8.67 }, "geometry": { "type": "Point", "coordinates": [ -75.156258, 40.022573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-y5f", "Name": "Haagen Dazs", "Category": "Restaurants and Other Eating Places", "Address": "242 South St", "LATITUDE": 39.941281, "LONGITUDE": -75.147232, "DATE_RANGE_START": 2021, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010016002.0, "Median Dwell Time": null, "Total Spend": 7997.0, "Total Transactions": 680.0, "Total Customers": 587.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -75.147232, 39.941281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "3914 Lancaster Ave", "LATITUDE": 39.962152, "LONGITUDE": -75.2011, "DATE_RANGE_START": 2021, "Total Visits": 76.0, "Total Visitors": 17.0, "POI_CBG": 421010108004.0, "Median Dwell Time": 293.0, "Total Spend": 144.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.2011, 39.962152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm4-b6k", "Name": "Two Eagles Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 20th St", "LATITUDE": 39.934031, "LONGITUDE": -75.177208, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 21.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 84.0, "Total Spend": 3386.0, "Total Transactions": 189.0, "Total Customers": 119.0, "Median Spend per Transaction": 13.6, "Median Spend per Customer": 22.47 }, "geometry": { "type": "Point", "coordinates": [ -75.177208, 39.934031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-249", "Name": "Two Brothers Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3322 N 13th St", "LATITUDE": 40.003487, "LONGITUDE": -75.150398, "DATE_RANGE_START": 2021, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010200002.0, "Median Dwell Time": null, "Total Spend": 4037.0, "Total Transactions": 172.0, "Total Customers": 160.0, "Median Spend per Transaction": 21.99, "Median Spend per Customer": 21.74 }, "geometry": { "type": "Point", "coordinates": [ -75.150398, 40.003487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "Name": "Claudio's Specialty Foods", "Category": "Specialty Food Stores", "Address": "924 S 9th St # 26", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 2.0, "Total Spend": 7120.0, "Total Transactions": 110.0, "Total Customers": 91.0, "Median Spend per Transaction": 38.39, "Median Spend per Customer": 31.83 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "917 Filbert St", "LATITUDE": 39.952664, "LONGITUDE": -75.15622, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 1024.0, "Total Transactions": 136.0, "Total Customers": 98.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 7.64 }, "geometry": { "type": "Point", "coordinates": [ -75.15622, 39.952664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnw-mzf", "Name": "Once Worn Consignment", "Category": "Used Merchandise Stores", "Address": "906 N 2nd St", "LATITUDE": 39.964394, "LONGITUDE": -75.140857, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 16.0, "Total Spend": 2299.0, "Total Transactions": 72.0, "Total Customers": 69.0, "Median Spend per Transaction": 26.5, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140857, 39.964394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "Name": "Annies Seafood", "Category": "Specialty Food Stores", "Address": "6600 Haverford Ave", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010100004.0, "Median Dwell Time": 5.0, "Total Spend": 1697.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 80.0, "Median Spend per Customer": 105.72 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgg-9xq", "Name": "Boss Furniture", "Category": "Furniture Stores", "Address": "2359 W Allegheny Ave", "LATITUDE": 40.003922, "LONGITUDE": -75.168399, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010171003.0, "Median Dwell Time": 20.0, "Total Spend": 13937.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 681.46, "Median Spend per Customer": 681.46 }, "geometry": { "type": "Point", "coordinates": [ -75.168399, 40.003922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg4-mx5", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "5301 Chew Ave Ste B", "LATITUDE": 40.04358, "LONGITUDE": -75.159446, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010247002.0, "Median Dwell Time": null, "Total Spend": 2639.0, "Total Transactions": 55.0, "Total Customers": 43.0, "Median Spend per Transaction": 37.77, "Median Spend per Customer": 47.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159446, 40.04358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "Name": "Desi Chaat House", "Category": "Restaurants and Other Eating Places", "Address": "501 S 42nd St", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2021, "Total Visits": 26.0, "Total Visitors": 14.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 4.0, "Total Spend": 493.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 15.1, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "Name": "Colonial Pizza", "Category": "Restaurants and Other Eating Places", "Address": "400 S 43rd St", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2021, "Total Visits": 31.0, "Total Visitors": 14.0, "POI_CBG": 421010087011.0, "Median Dwell Time": 254.0, "Total Spend": 1486.0, "Total Transactions": 67.0, "Total Customers": 55.0, "Median Spend per Transaction": 21.91, "Median Spend per Customer": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "138 W Chelten Ave", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2021, "Total Visits": 461.0, "Total Visitors": 277.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 20.0, "Total Spend": 1397.0, "Total Transactions": 69.0, "Total Customers": 43.0, "Median Spend per Transaction": 11.72, "Median Spend per Customer": 17.65 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "Name": "Galaxy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1239 Cottman Ave", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010338004.0, "Median Dwell Time": 7.0, "Total Spend": 2828.0, "Total Transactions": 110.0, "Total Customers": 57.0, "Median Spend per Transaction": 22.47, "Median Spend per Customer": 36.31 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-bp9", "Name": "Brown Street Coffee & Banhery", "Category": "Restaurants and Other Eating Places", "Address": "2545 Brown St", "LATITUDE": 39.970469, "LONGITUDE": -75.179503, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 14.0, "Total Spend": 2411.0, "Total Transactions": 210.0, "Total Customers": 124.0, "Median Spend per Transaction": 9.7, "Median Spend per Customer": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.179503, 39.970469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvx-w6k", "Name": "The Green Line Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4239 Baltimore Ave", "LATITUDE": 39.949809, "LONGITUDE": -75.209105, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 33.0, "POI_CBG": 421010087022.0, "Median Dwell Time": 157.0, "Total Spend": 206.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.44, "Median Spend per Customer": 17.11 }, "geometry": { "type": "Point", "coordinates": [ -75.209105, 39.949809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-kvf", "Name": "20th Street Pizza", "Category": "Restaurants and Other Eating Places", "Address": "108 S 20th St", "LATITUDE": 39.951712, "LONGITUDE": -75.173725, "DATE_RANGE_START": 2021, "Total Visits": 38.0, "Total Visitors": 36.0, "POI_CBG": 421010007001.0, "Median Dwell Time": null, "Total Spend": 461.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 34.32 }, "geometry": { "type": "Point", "coordinates": [ -75.173725, 39.951712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-xdv", "Name": "Tiffin", "Category": "Restaurants and Other Eating Places", "Address": "710 W Girard Ave", "LATITUDE": 39.970151, "LONGITUDE": -75.148856, "DATE_RANGE_START": 2021, "Total Visits": 138.0, "Total Visitors": 67.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 463.0, "Total Spend": 3442.0, "Total Transactions": 98.0, "Total Customers": 67.0, "Median Spend per Transaction": 24.03, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.148856, 39.970151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "Name": "Tavern On Camac", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "243 S Camac St", "LATITUDE": 39.947272, "LONGITUDE": -75.161618, "DATE_RANGE_START": 2021, "Total Visits": 107.0, "Total Visitors": 88.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 44.0, "Total Spend": 41952.0, "Total Transactions": 1621.0, "Total Customers": 716.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 36.47 }, "geometry": { "type": "Point", "coordinates": [ -75.161618, 39.947272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "Name": "Nam Phuong", "Category": "Restaurants and Other Eating Places", "Address": "1100 Washington Ave", "LATITUDE": 39.936493, "LONGITUDE": -75.162002, "DATE_RANGE_START": 2021, "Total Visits": 1241.0, "Total Visitors": 1095.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 26.0, "Total Spend": 18207.0, "Total Transactions": 356.0, "Total Customers": 308.0, "Median Spend per Transaction": 41.4, "Median Spend per Customer": 45.78 }, "geometry": { "type": "Point", "coordinates": [ -75.162002, 39.936493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 146.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 13.0, "Total Spend": 6047.0, "Total Transactions": 272.0, "Total Customers": 241.0, "Median Spend per Transaction": 17.73, "Median Spend per Customer": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "51 Bethlehem Pike", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 79.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 139.0, "Total Spend": 1392.0, "Total Transactions": 74.0, "Total Customers": 67.0, "Median Spend per Transaction": 15.82, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5zz", "Name": "Chix & Wings", "Category": "Restaurants and Other Eating Places", "Address": "138 S 11th St", "LATITUDE": 39.94898, "LONGITUDE": -75.159094, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 115.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 140.0, "Total Spend": 4935.0, "Total Transactions": 313.0, "Total Customers": 212.0, "Median Spend per Transaction": 13.34, "Median Spend per Customer": 19.81 }, "geometry": { "type": "Point", "coordinates": [ -75.159094, 39.94898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-ks5", "Name": "Sharetea", "Category": "Restaurants and Other Eating Places", "Address": "600 Washington Ave Unit 5", "LATITUDE": 39.934528, "LONGITUDE": -75.154692, "DATE_RANGE_START": 2021, "Total Visits": 1635.0, "Total Visitors": 1019.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 45.0, "Total Spend": 3369.0, "Total Transactions": 310.0, "Total Customers": 239.0, "Median Spend per Transaction": 10.65, "Median Spend per Customer": 11.79 }, "geometry": { "type": "Point", "coordinates": [ -75.154692, 39.934528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1600 John F Kennedy Blvd", "LATITUDE": 39.953718, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2021, "Total Visits": 148.0, "Total Visitors": 103.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 42.0, "Total Spend": 4228.0, "Total Transactions": 947.0, "Total Customers": 415.0, "Median Spend per Transaction": 4.1, "Median Spend per Customer": 5.76 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.953718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6608 Frankford Ave", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2021, "Total Visits": 778.0, "Total Visitors": 396.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 3.0, "Total Spend": 5618.0, "Total Transactions": 745.0, "Total Customers": 365.0, "Median Spend per Transaction": 6.1, "Median Spend per Customer": 10.24 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1325 E Washington Ln", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 174.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 3.0, "Total Spend": 10642.0, "Total Transactions": 1372.0, "Total Customers": 683.0, "Median Spend per Transaction": 6.78, "Median Spend per Customer": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "Name": "Rieker's Prime Meats", "Category": "Specialty Food Stores", "Address": "7979 Oxford Ave", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2021, "Total Visits": 253.0, "Total Visitors": 203.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 5.0, "Total Spend": 464.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 9.98, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "401 Spring Garden St", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2021, "Total Visits": 792.0, "Total Visitors": 580.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 8.0, "Total Spend": 20331.0, "Total Transactions": 926.0, "Total Customers": 606.0, "Median Spend per Transaction": 13.61, "Median Spend per Customer": 19.77 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwd-v9f", "Name": "RevZilla", "Category": "Other Motor Vehicle Dealers", "Address": "4020 S 26th St", "LATITUDE": 39.900369, "LONGITUDE": -75.195065, "DATE_RANGE_START": 2021, "Total Visits": 112.0, "Total Visitors": 86.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 52.0, "Total Spend": 55230.0, "Total Transactions": 200.0, "Total Customers": 155.0, "Median Spend per Transaction": 188.18, "Median Spend per Customer": 220.44 }, "geometry": { "type": "Point", "coordinates": [ -75.195065, 39.900369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2701 N 2nd St", "LATITUDE": 39.991624, "LONGITUDE": -75.134387, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 160.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 5.0, "Total Spend": 15873.0, "Total Transactions": 291.0, "Total Customers": 243.0, "Median Spend per Transaction": 35.36, "Median Spend per Customer": 35.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134387, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "Name": "CB2", "Category": "Furniture Stores", "Address": "1422 Walnut St", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2021, "Total Visits": 1327.0, "Total Visitors": 1000.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 18.0, "Total Spend": 39807.0, "Total Transactions": 112.0, "Total Customers": 100.0, "Median Spend per Transaction": 54.74, "Median Spend per Customer": 52.55 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4421 N Broad St", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2021, "Total Visits": 847.0, "Total Visitors": 635.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 5.0, "Total Spend": 11350.0, "Total Transactions": 461.0, "Total Customers": 368.0, "Median Spend per Transaction": 20.55, "Median Spend per Customer": 24.39 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-gzf", "Name": "AnM Gas", "Category": "Gasoline Stations", "Address": "536 W Roosevelt Blvd", "LATITUDE": 40.023031, "LONGITUDE": -75.134802, "DATE_RANGE_START": 2021, "Total Visits": 100.0, "Total Visitors": 74.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 1.0, "Total Spend": 4394.0, "Total Transactions": 284.0, "Total Customers": 138.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134802, 40.023031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7715 Frankford Ave", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2021, "Total Visits": 1098.0, "Total Visitors": 692.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 3.0, "Total Spend": 30411.0, "Total Transactions": 2907.0, "Total Customers": 1232.0, "Median Spend per Transaction": 8.86, "Median Spend per Customer": 13.03 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-33q", "Name": "Urban Outfitters", "Category": "Clothing Stores", "Address": "110 S 36th St", "LATITUDE": 39.953788, "LONGITUDE": -75.194952, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 141.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 19.0, "Total Spend": 7924.0, "Total Transactions": 141.0, "Total Customers": 119.0, "Median Spend per Transaction": 46.6, "Median Spend per Customer": 50.37 }, "geometry": { "type": "Point", "coordinates": [ -75.194952, 39.953788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2120 S 23rd St", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2021, "Total Visits": 165.0, "Total Visitors": 141.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 10.0, "Total Spend": 227.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 12.69, "Median Spend per Customer": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-snq", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "1501 Locust St", "LATITUDE": 39.948548, "LONGITUDE": -75.166465, "DATE_RANGE_START": 2021, "Total Visits": 9869.0, "Total Visitors": 5788.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 111.0, "Total Spend": 20.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 4.18, "Median Spend per Customer": 4.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166465, 39.948548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "Name": "A Z Budget", "Category": "Department Stores", "Address": "2914 N Broad St", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 36.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 1.0, "Total Spend": 726.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 17.8, "Median Spend per Customer": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3000 Island Ave Ste M P", "LATITUDE": 39.898752, "LONGITUDE": -75.240579, "DATE_RANGE_START": 2021, "Total Visits": 215.0, "Total Visitors": 189.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 4.0, "Total Spend": 694.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.240579, 39.898752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1700 Washington Ave", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2021, "Total Visits": 277.0, "Total Visitors": 196.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 6.0, "Total Spend": 1137.0, "Total Transactions": 86.0, "Total Customers": 57.0, "Median Spend per Transaction": 7.63, "Median Spend per Customer": 11.35 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "8005 Ogontz Ave", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2021, "Total Visits": 1320.0, "Total Visitors": 988.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 4.0, "Total Spend": 25756.0, "Total Transactions": 1031.0, "Total Customers": 695.0, "Median Spend per Transaction": 20.21, "Median Spend per Customer": 27.61 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-28v", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "9159 Roosevelt Blvd", "LATITUDE": 40.074524, "LONGITUDE": -75.032955, "DATE_RANGE_START": 2021, "Total Visits": 81.0, "Total Visitors": 48.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 2919.0, "Total Transactions": 64.0, "Total Customers": 62.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.032955, 40.074524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-8y9", "Name": "Accu Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4802 Spruce St", "LATITUDE": 39.953369, "LONGITUDE": -75.218457, "DATE_RANGE_START": 2021, "Total Visits": 105.0, "Total Visitors": 55.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 322.0, "Total Spend": 290.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 30.22, "Median Spend per Customer": 30.22 }, "geometry": { "type": "Point", "coordinates": [ -75.218457, 39.953369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1268 Franklin Mills Cir", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2021, "Total Visits": 246.0, "Total Visitors": 217.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 4665.0, "Total Transactions": 103.0, "Total Customers": 95.0, "Median Spend per Transaction": 37.79, "Median Spend per Customer": 43.71 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032491, "LONGITUDE": -75.214429, "DATE_RANGE_START": 2021, "Total Visits": 124.0, "Total Visitors": 117.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 1.0, "Total Spend": 3409.0, "Total Transactions": 138.0, "Total Customers": 134.0, "Median Spend per Transaction": 15.4, "Median Spend per Customer": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.214429, 40.032491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "Name": "Front Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1253 N Front St", "LATITUDE": 39.970159, "LONGITUDE": -75.135552, "DATE_RANGE_START": 2021, "Total Visits": 427.0, "Total Visitors": 387.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 53.0, "Total Spend": 76403.0, "Total Transactions": 1496.0, "Total Customers": 1165.0, "Median Spend per Transaction": 43.12, "Median Spend per Customer": 50.76 }, "geometry": { "type": "Point", "coordinates": [ -75.135552, 39.970159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-zcq", "Name": "Savas", "Category": "Restaurants and Other Eating Places", "Address": "3505 Lancaster Ave", "LATITUDE": 39.958284, "LONGITUDE": -75.192713, "DATE_RANGE_START": 2021, "Total Visits": 427.0, "Total Visitors": 258.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 80.0, "Total Spend": 106.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.19, "Median Spend per Customer": 22.19 }, "geometry": { "type": "Point", "coordinates": [ -75.192713, 39.958284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-whq", "Name": "Ocean City", "Category": "Restaurants and Other Eating Places", "Address": "234 N 9th St", "LATITUDE": 39.95631, "LONGITUDE": -75.15439, "DATE_RANGE_START": 2021, "Total Visits": 227.0, "Total Visitors": 193.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 39.0, "Total Spend": 1664.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 43.3, "Median Spend per Customer": 43.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15439, 39.95631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "Name": "Morimoto", "Category": "Restaurants and Other Eating Places", "Address": "723 Chestnut St", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2021, "Total Visits": 243.0, "Total Visitors": 186.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 121.0, "Total Spend": 50187.0, "Total Transactions": 203.0, "Total Customers": 196.0, "Median Spend per Transaction": 200.36, "Median Spend per Customer": 201.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-5s5", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "2201 Cottman Ave", "LATITUDE": 40.049399, "LONGITUDE": -75.061192, "DATE_RANGE_START": 2021, "Total Visits": 570.0, "Total Visitors": 387.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 12.0, "Total Spend": 1020.0, "Total Transactions": 79.0, "Total Customers": 74.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 12.17 }, "geometry": { "type": "Point", "coordinates": [ -75.061192, 40.049399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "Name": "T cafe", "Category": "Restaurants and Other Eating Places", "Address": "108 Chestnut St", "LATITUDE": 39.947904, "LONGITUDE": -75.142953, "DATE_RANGE_START": 2021, "Total Visits": 150.0, "Total Visitors": 138.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 4.0, "Total Spend": 27804.0, "Total Transactions": 2556.0, "Total Customers": 1489.0, "Median Spend per Transaction": 6.95, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142953, 39.947904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-n5z", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3901 Walnut St", "LATITUDE": 39.954037, "LONGITUDE": -75.200292, "DATE_RANGE_START": 2021, "Total Visits": 993.0, "Total Visitors": 697.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 7.0, "Total Spend": 9287.0, "Total Transactions": 1243.0, "Total Customers": 788.0, "Median Spend per Transaction": 5.95, "Median Spend per Customer": 7.13 }, "geometry": { "type": "Point", "coordinates": [ -75.200292, 39.954037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-c3q", "Name": "Yarnphoria", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1020 Pine St", "LATITUDE": 39.944703, "LONGITUDE": -75.159061, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010011022.0, "Median Dwell Time": null, "Total Spend": 1354.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 102.96, "Median Spend per Customer": 102.96 }, "geometry": { "type": "Point", "coordinates": [ -75.159061, 39.944703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm3-vpv", "Name": "Passyunk Avenue Philly Bagels", "Category": "Restaurants and Other Eating Places", "Address": "1742 E Passyunk Ave", "LATITUDE": 39.927906, "LONGITUDE": -75.166004, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 81.0, "Total Spend": 7270.0, "Total Transactions": 484.0, "Total Customers": 332.0, "Median Spend per Transaction": 14.17, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166004, 39.927906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-s89", "Name": "Best Buy Furniture", "Category": "Furniture Stores", "Address": "2558 Grant Ave", "LATITUDE": 40.078011, "LONGITUDE": -75.024952, "DATE_RANGE_START": 2021, "Total Visits": 3227.0, "Total Visitors": 2298.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 63.0, "Total Spend": 2584.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 393.62, "Median Spend per Customer": 393.62 }, "geometry": { "type": "Point", "coordinates": [ -75.024952, 40.078011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-8y9", "Name": "The Pharmacy", "Category": "Restaurants and Other Eating Places", "Address": "1300 S 18th St", "LATITUDE": 39.934901, "LONGITUDE": -75.174223, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 102.0, "Total Spend": 8086.0, "Total Transactions": 105.0, "Total Customers": 93.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.174223, 39.934901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "Name": "Anthropologie", "Category": "Clothing Stores", "Address": "1801 Walnut St", "LATITUDE": 39.950352, "LONGITUDE": -75.170778, "DATE_RANGE_START": 2021, "Total Visits": 4434.0, "Total Visitors": 3162.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 41.0, "Total Spend": 284394.0, "Total Transactions": 1988.0, "Total Customers": 1284.0, "Median Spend per Transaction": 74.96, "Median Spend per Customer": 89.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170778, 39.950352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "Name": "Petrovsky Market", "Category": "Specialty Food Stores", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2021, "Total Visits": 1663.0, "Total Visitors": 943.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 7.0, "Total Spend": 36403.0, "Total Transactions": 1212.0, "Total Customers": 516.0, "Median Spend per Transaction": 22.96, "Median Spend per Customer": 41.67 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-4n5", "Name": "Shoe Factory", "Category": "Shoe Stores", "Address": "7000 Castor Ave", "LATITUDE": 40.047111, "LONGITUDE": -75.070347, "DATE_RANGE_START": 2021, "Total Visits": 305.0, "Total Visitors": 189.0, "POI_CBG": 421010310003.0, "Median Dwell Time": 13.0, "Total Spend": 4593.0, "Total Transactions": 138.0, "Total Customers": 119.0, "Median Spend per Transaction": 28.98, "Median Spend per Customer": 27.48 }, "geometry": { "type": "Point", "coordinates": [ -75.070347, 40.047111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-brk", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2539 Castor Ave Ste D", "LATITUDE": 39.994031, "LONGITUDE": -75.091432, "DATE_RANGE_START": 2021, "Total Visits": 222.0, "Total Visitors": 212.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 5.0, "Total Spend": 9100.0, "Total Transactions": 110.0, "Total Customers": 95.0, "Median Spend per Transaction": 45.28, "Median Spend per Customer": 49.3 }, "geometry": { "type": "Point", "coordinates": [ -75.091432, 39.994031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1529 Chestnut St", "LATITUDE": 39.95137, "LONGITUDE": -75.166677, "DATE_RANGE_START": 2021, "Total Visits": 1518.0, "Total Visitors": 1272.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 20.0, "Total Spend": 29379.0, "Total Transactions": 2143.0, "Total Customers": 1582.0, "Median Spend per Transaction": 9.69, "Median Spend per Customer": 11.83 }, "geometry": { "type": "Point", "coordinates": [ -75.166677, 39.95137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-33q", "Name": "Capital Auto Auction", "Category": "Automobile Dealers", "Address": "5135 Bleigh Ave", "LATITUDE": 40.025317, "LONGITUDE": -75.026634, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 38.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 50.0, "Total Spend": 191.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.026634, 40.025317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjb-6p9", "Name": "ALDI", "Category": "Grocery Stores", "Address": "6119 N Broad St", "LATITUDE": 40.046633, "LONGITUDE": -75.14228, "DATE_RANGE_START": 2021, "Total Visits": 365.0, "Total Visitors": 253.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 6.0, "Total Spend": 335.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 30.43, "Median Spend per Customer": 44.53 }, "geometry": { "type": "Point", "coordinates": [ -75.14228, 40.046633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pg8-nwk", "Name": "Oxford Food Shop", "Category": "Grocery Stores", "Address": "2801 W Oxford St", "LATITUDE": 39.980357, "LONGITUDE": -75.18068, "DATE_RANGE_START": 2021, "Total Visits": 57.0, "Total Visitors": 50.0, "POI_CBG": 421010149004.0, "Median Dwell Time": 28.0, "Total Spend": 269.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 35.63, "Median Spend per Customer": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.18068, 39.980357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1334 Bainbridge St", "LATITUDE": 39.942529, "LONGITUDE": -75.164834, "DATE_RANGE_START": 2021, "Total Visits": 339.0, "Total Visitors": 95.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 1321.0, "Total Spend": 3779.0, "Total Transactions": 138.0, "Total Customers": 117.0, "Median Spend per Transaction": 17.93, "Median Spend per Customer": 20.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164834, 39.942529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd Ste F2", "LATITUDE": 40.031542, "LONGITUDE": -75.100256, "DATE_RANGE_START": 2021, "Total Visits": 193.0, "Total Visitors": 167.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 2.0, "Total Spend": 7428.0, "Total Transactions": 115.0, "Total Customers": 107.0, "Median Spend per Transaction": 61.38, "Median Spend per Customer": 62.77 }, "geometry": { "type": "Point", "coordinates": [ -75.100256, 40.031542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Verree Rd", "LATITUDE": 40.105422, "LONGITUDE": -75.032802, "DATE_RANGE_START": 2021, "Total Visits": 1315.0, "Total Visitors": 885.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 4.0, "Total Spend": 879.0, "Total Transactions": 38.0, "Total Customers": 36.0, "Median Spend per Transaction": 20.19, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032802, 40.105422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-6p9", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1416 Chestnut St", "LATITUDE": 39.950763, "LONGITUDE": -75.164862, "DATE_RANGE_START": 2021, "Total Visits": 317.0, "Total Visitors": 224.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 73.0, "Total Spend": 7038.0, "Total Transactions": 76.0, "Total Customers": 62.0, "Median Spend per Transaction": 62.5, "Median Spend per Customer": 95.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164862, 39.950763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6138 Ridge Ave", "LATITUDE": 40.034271, "LONGITUDE": -75.216406, "DATE_RANGE_START": 2021, "Total Visits": 191.0, "Total Visitors": 150.0, "POI_CBG": 421010213002.0, "Median Dwell Time": 11.0, "Total Spend": 728.0, "Total Transactions": 93.0, "Total Customers": 69.0, "Median Spend per Transaction": 6.95, "Median Spend per Customer": 9.56 }, "geometry": { "type": "Point", "coordinates": [ -75.216406, 40.034271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "Name": "Oregon Steaks", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 64.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 2.0, "Total Spend": 13214.0, "Total Transactions": 1012.0, "Total Customers": 599.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-d5f", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3141 Frankford Ave # 59", "LATITUDE": 39.992273, "LONGITUDE": -75.110947, "DATE_RANGE_START": 2021, "Total Visits": 363.0, "Total Visitors": 177.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 24.0, "Total Spend": 327.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.84, "Median Spend per Customer": 8.84 }, "geometry": { "type": "Point", "coordinates": [ -75.110947, 39.992273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-c5z", "Name": "Maple Star", "Category": "Restaurants and Other Eating Places", "Address": "1521 Cecil B Moore Ave", "LATITUDE": 39.97918, "LONGITUDE": -75.160433, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 76.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 539.0, "Total Spend": 3153.0, "Total Transactions": 189.0, "Total Customers": 143.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.160433, 39.97918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-7h5", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "861 N 3rd St", "LATITUDE": 39.964803, "LONGITUDE": -75.14238, "DATE_RANGE_START": 2021, "Total Visits": 463.0, "Total Visitors": 308.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 80.0, "Total Spend": 7189.0, "Total Transactions": 203.0, "Total Customers": 196.0, "Median Spend per Transaction": 21.49, "Median Spend per Customer": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.14238, 39.964803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2200 Wheatsheaf Ln Ste E6", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2021, "Total Visits": 465.0, "Total Visitors": 427.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 5.0, "Total Spend": 26411.0, "Total Transactions": 1064.0, "Total Customers": 921.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-9vf", "Name": "Soul Boat", "Category": "Restaurants and Other Eating Places", "Address": "1422 Dickinson St", "LATITUDE": 39.931707, "LONGITUDE": -75.169132, "DATE_RANGE_START": 2021, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010030024.0, "Median Dwell Time": null, "Total Spend": 418.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.169132, 39.931707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y9z", "Name": "Delightful Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "906 Arch St", "LATITUDE": 39.953218, "LONGITUDE": -75.155064, "DATE_RANGE_START": 2021, "Total Visits": 110.0, "Total Visitors": 103.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 15.0, "Total Spend": 627.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 20.31, "Median Spend per Customer": 31.15 }, "geometry": { "type": "Point", "coordinates": [ -75.155064, 39.953218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmc-vzz", "Name": "Chopstick House", "Category": "Restaurants and Other Eating Places", "Address": "1626 S Columbus Blvd", "LATITUDE": 39.926547, "LONGITUDE": -75.14612, "DATE_RANGE_START": 2021, "Total Visits": 117.0, "Total Visitors": 81.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 1266.0, "Total Transactions": 62.0, "Total Customers": 50.0, "Median Spend per Transaction": 16.64, "Median Spend per Customer": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.14612, 39.926547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "Name": "Barcade", "Category": "Restaurants and Other Eating Places", "Address": "1114 Frankford Ave", "LATITUDE": 39.96746, "LONGITUDE": -75.134594, "DATE_RANGE_START": 2021, "Total Visits": 740.0, "Total Visitors": 594.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 78.0, "Total Spend": 42171.0, "Total Transactions": 1348.0, "Total Customers": 1084.0, "Median Spend per Transaction": 22.92, "Median Spend per Customer": 29.9 }, "geometry": { "type": "Point", "coordinates": [ -75.134594, 39.96746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p85-hkf", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2417 Welsh Rd", "LATITUDE": 40.071857, "LONGITUDE": -75.030407, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 232.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 48.63, "Median Spend per Customer": 48.63 }, "geometry": { "type": "Point", "coordinates": [ -75.030407, 40.071857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5zz", "Name": "Moriartys Restaurant & Irish Pub", "Category": "Restaurants and Other Eating Places", "Address": "1116 Walnut St", "LATITUDE": 39.948666, "LONGITUDE": -75.159836, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 146.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 31.0, "Total Spend": 22964.0, "Total Transactions": 496.0, "Total Customers": 451.0, "Median Spend per Transaction": 36.8, "Median Spend per Customer": 40.08 }, "geometry": { "type": "Point", "coordinates": [ -75.159836, 39.948666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "Name": "Bookhaven", "Category": "Book Stores and News Dealers", "Address": "2202 Fairmount Ave", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 73.0, "Total Spend": 3081.0, "Total Transactions": 103.0, "Total Customers": 88.0, "Median Spend per Transaction": 24.84, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-yjv", "Name": "Amazing Crab House", "Category": "Restaurants and Other Eating Places", "Address": "604 S 2nd St", "LATITUDE": 39.940979, "LONGITUDE": -75.14584, "DATE_RANGE_START": 2021, "Total Visits": 525.0, "Total Visitors": 434.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 48.0, "Total Spend": 11081.0, "Total Transactions": 143.0, "Total Customers": 86.0, "Median Spend per Transaction": 90.71, "Median Spend per Customer": 65.95 }, "geometry": { "type": "Point", "coordinates": [ -75.14584, 39.940979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "Name": "Fuel", "Category": "Restaurants and Other Eating Places", "Address": "1917 E Passyunk Ave", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2021, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 6.0, "Total Spend": 7026.0, "Total Transactions": 210.0, "Total Customers": 177.0, "Median Spend per Transaction": 37.79, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "Name": "Saigon Noodle Bar", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074096, "LONGITUDE": -75.202561, "DATE_RANGE_START": 2021, "Total Visits": 668.0, "Total Visitors": 456.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 30.0, "Total Spend": 2832.0, "Total Transactions": 136.0, "Total Customers": 103.0, "Median Spend per Transaction": 13.29, "Median Spend per Customer": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.202561, 40.074096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1200 Walnut St Ste B", "LATITUDE": 39.948772, "LONGITUDE": -75.160716, "DATE_RANGE_START": 2021, "Total Visits": 551.0, "Total Visitors": 461.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 122.0, "Total Spend": 14726.0, "Total Transactions": 1189.0, "Total Customers": 885.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -75.160716, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj2-7bk", "Name": "Pizza House Express", "Category": "Restaurants and Other Eating Places", "Address": "529 E Allegheny Ave", "LATITUDE": 39.997808, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 38.0, "POI_CBG": 421010177023.0, "Median Dwell Time": 54.0, "Total Spend": 622.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 21.71, "Median Spend per Customer": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.997808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave # B", "LATITUDE": 39.913456, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2021, "Total Visits": 79.0, "Total Visitors": 41.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 2.0, "Total Spend": 4817.0, "Total Transactions": 148.0, "Total Customers": 81.0, "Median Spend per Transaction": 17.57, "Median Spend per Customer": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4438 Chestnut St", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2021, "Total Visits": 53.0, "Total Visitors": 50.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 29.0, "Total Spend": 19254.0, "Total Transactions": 730.0, "Total Customers": 601.0, "Median Spend per Transaction": 25.21, "Median Spend per Customer": 26.76 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "Name": "East Coast Tropicals", "Category": "Grocery Stores", "Address": "1615 N Hancock St", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 53.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 17.0, "Total Spend": 152.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 31.91, "Median Spend per Customer": 31.91 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8b-cbk", "Name": "Smoker's Palace", "Category": "Other Miscellaneous Store Retailers", "Address": "6301 Keystone St", "LATITUDE": 40.017474, "LONGITUDE": -75.051228, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 67.0, "POI_CBG": 421010323001.0, "Median Dwell Time": null, "Total Spend": 7960.0, "Total Transactions": 344.0, "Total Customers": 129.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 31.81 }, "geometry": { "type": "Point", "coordinates": [ -75.051228, 40.017474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-bp9", "Name": "Live Casino & Hotel Philadelphia", "Category": "Traveler Accommodation", "Address": "900 Packer Ave", "LATITUDE": 39.909524, "LONGITUDE": -75.164712, "DATE_RANGE_START": 2021, "Total Visits": 7239.0, "Total Visitors": 3616.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 117.0, "Total Spend": 5052.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 359.78, "Median Spend per Customer": 359.78 }, "geometry": { "type": "Point", "coordinates": [ -75.164712, 39.909524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pp5-jgk", "Name": "Tin Can Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2537 E Somerset St", "LATITUDE": 39.981701, "LONGITUDE": -75.113705, "DATE_RANGE_START": 2021, "Total Visits": 167.0, "Total Visitors": 122.0, "POI_CBG": 421010180013.0, "Median Dwell Time": 3.0, "Total Spend": 14313.0, "Total Transactions": 236.0, "Total Customers": 138.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 55.97 }, "geometry": { "type": "Point", "coordinates": [ -75.113705, 39.981701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pj5-j9z", "Name": "Pizza Power", "Category": "Restaurants and Other Eating Places", "Address": "123 E Allegheny Ave", "LATITUDE": 39.998737, "LONGITUDE": -75.128356, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 21.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 168.0, "Total Spend": 115.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 11.04, "Median Spend per Customer": 11.04 }, "geometry": { "type": "Point", "coordinates": [ -75.128356, 39.998737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "Name": "New Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2800 W Dauphin St", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2021, "Total Visits": 456.0, "Total Visitors": 186.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 66.0, "Total Spend": 1343.0, "Total Transactions": 67.0, "Total Customers": 55.0, "Median Spend per Transaction": 17.09, "Median Spend per Customer": 17.67 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pm6-f2k", "Name": "Bobs Food Market", "Category": "Specialty Food Stores", "Address": "2200 S 3rd St", "LATITUDE": 39.920704, "LONGITUDE": -75.15184, "DATE_RANGE_START": 2021, "Total Visits": 55.0, "Total Visitors": 33.0, "POI_CBG": 421010042012.0, "Median Dwell Time": 78.0, "Total Spend": 461.0, "Total Transactions": 50.0, "Total Customers": 33.0, "Median Spend per Transaction": 7.8, "Median Spend per Customer": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.15184, 39.920704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-y5f", "Name": "Reef Restaurant & Lounge", "Category": "Restaurants and Other Eating Places", "Address": "605 S 3rd St", "LATITUDE": 39.941163, "LONGITUDE": -75.147404, "DATE_RANGE_START": 2021, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 27.0, "Total Spend": 4748.0, "Total Transactions": 60.0, "Total Customers": 45.0, "Median Spend per Transaction": 83.19, "Median Spend per Customer": 86.83 }, "geometry": { "type": "Point", "coordinates": [ -75.147404, 39.941163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1851 S Columbus Blvd Ste 3", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2021, "Total Visits": 86.0, "Total Visitors": 76.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 2.0, "Total Spend": 22254.0, "Total Transactions": 1480.0, "Total Customers": 1215.0, "Median Spend per Transaction": 13.12, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "Name": "Tampopo", "Category": "Restaurants and Other Eating Places", "Address": "269 S 44th St", "LATITUDE": 39.953009, "LONGITUDE": -75.210311, "DATE_RANGE_START": 2021, "Total Visits": 298.0, "Total Visitors": 222.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 257.0, "Total Spend": 1178.0, "Total Transactions": 53.0, "Total Customers": 43.0, "Median Spend per Transaction": 21.06, "Median Spend per Customer": 22.87 }, "geometry": { "type": "Point", "coordinates": [ -75.210311, 39.953009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "416 N 63rd St # 36", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2021, "Total Visits": 294.0, "Total Visitors": 198.0, "POI_CBG": 421010101005.0, "Median Dwell Time": 3.0, "Total Spend": 7805.0, "Total Transactions": 964.0, "Total Customers": 597.0, "Median Spend per Transaction": 6.79, "Median Spend per Customer": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6323 Castor Ave", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2021, "Total Visits": 136.0, "Total Visitors": 110.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 3.0, "Total Spend": 2719.0, "Total Transactions": 394.0, "Total Customers": 198.0, "Median Spend per Transaction": 6.02, "Median Spend per Customer": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2201 W Allegheny Ave Ste 5", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 141.0, "POI_CBG": 421010171003.0, "Median Dwell Time": 7.0, "Total Spend": 6129.0, "Total Transactions": 260.0, "Total Customers": 196.0, "Median Spend per Transaction": 15.28, "Median Spend per Customer": 21.69 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "Name": "Claire's", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952045, "LONGITUDE": -75.16824, "DATE_RANGE_START": 2021, "Total Visits": 11363.0, "Total Visitors": 7084.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 99.0, "Total Spend": 13725.0, "Total Transactions": 303.0, "Total Customers": 294.0, "Median Spend per Transaction": 32.72, "Median Spend per Customer": 33.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16824, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "42 W Chelten Ave", "LATITUDE": 40.034612, "LONGITUDE": -75.175438, "DATE_RANGE_START": 2021, "Total Visits": 1530.0, "Total Visitors": 979.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 33.0, "Total Spend": 477.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 10.29 }, "geometry": { "type": "Point", "coordinates": [ -75.175438, 40.034612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p83-y5f", "Name": "Pennypack Flowers", "Category": "Florists", "Address": "9315 Krewstown Rd", "LATITUDE": 40.085429, "LONGITUDE": -75.045472, "DATE_RANGE_START": 2021, "Total Visits": 706.0, "Total Visitors": 537.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 10.0, "Total Spend": 1164.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 129.6, "Median Spend per Customer": 129.6 }, "geometry": { "type": "Point", "coordinates": [ -75.045472, 40.085429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-jd9", "Name": "Westin Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "99 South 17th Street At Liberty Place", "LATITUDE": 39.952041, "LONGITUDE": -75.168491, "DATE_RANGE_START": 2021, "Total Visits": 2888.0, "Total Visitors": 1974.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 189.0, "Total Spend": 34070.0, "Total Transactions": 110.0, "Total Customers": 91.0, "Median Spend per Transaction": 267.04, "Median Spend per Customer": 271.12 }, "geometry": { "type": "Point", "coordinates": [ -75.168491, 39.952041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "10740 Roosevelt Blvd", "LATITUDE": 40.099643, "LONGITUDE": -75.010101, "DATE_RANGE_START": 2021, "Total Visits": 394.0, "Total Visitors": 387.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 9.0, "Total Spend": 12190.0, "Total Transactions": 305.0, "Total Customers": 291.0, "Median Spend per Transaction": 37.71, "Median Spend per Customer": 39.32 }, "geometry": { "type": "Point", "coordinates": [ -75.010101, 40.099643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-5zz", "Name": "Crunchik'n", "Category": "Restaurants and Other Eating Places", "Address": "212 S 11th St", "LATITUDE": 39.948207, "LONGITUDE": -75.159314, "DATE_RANGE_START": 2021, "Total Visits": 143.0, "Total Visitors": 88.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 164.0, "Total Spend": 225.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 14.85, "Median Spend per Customer": 23.16 }, "geometry": { "type": "Point", "coordinates": [ -75.159314, 39.948207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "Name": "Perkins Restaurant & Bakery", "Category": "Restaurants and Other Eating Places", "Address": "1681 Grant Ave", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2021, "Total Visits": 456.0, "Total Visitors": 399.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 18.0, "Total Spend": 6602.0, "Total Transactions": 200.0, "Total Customers": 186.0, "Median Spend per Transaction": 33.4, "Median Spend per Customer": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pgb-249", "Name": "Nom Wah Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "218 N 13th St", "LATITUDE": 39.956611, "LONGITUDE": -75.160874, "DATE_RANGE_START": 2021, "Total Visits": 196.0, "Total Visitors": 177.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 46.0, "Total Spend": 4330.0, "Total Transactions": 76.0, "Total Customers": 74.0, "Median Spend per Transaction": 46.0, "Median Spend per Customer": 48.26 }, "geometry": { "type": "Point", "coordinates": [ -75.160874, 39.956611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw4-rzf", "Name": "LOVE Grille", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895174, "LONGITUDE": -75.227972, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 56793.0, "Total Transactions": 2585.0, "Total Customers": 2095.0, "Median Spend per Transaction": 17.64, "Median Spend per Customer": 21.09 }, "geometry": { "type": "Point", "coordinates": [ -75.227972, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2801 Cottman Ave", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2021, "Total Visits": 993.0, "Total Visitors": 819.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 3.0, "Total Spend": 21541.0, "Total Transactions": 1601.0, "Total Customers": 1258.0, "Median Spend per Transaction": 11.44, "Median Spend per Customer": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "1708 N Broad St", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2021, "Total Visits": 205.0, "Total Visitors": 146.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 6.0, "Total Spend": 389.0, "Total Transactions": 33.0, "Total Customers": 24.0, "Median Spend per Transaction": 10.91, "Median Spend per Customer": 14.92 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-btv", "Name": "Kraftwork", "Category": "Restaurants and Other Eating Places", "Address": "541 E Girard Ave", "LATITUDE": 39.971499, "LONGITUDE": -75.127358, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010158003.0, "Median Dwell Time": null, "Total Spend": 9918.0, "Total Transactions": 177.0, "Total Customers": 131.0, "Median Spend per Transaction": 57.84, "Median Spend per Customer": 66.44 }, "geometry": { "type": "Point", "coordinates": [ -75.127358, 39.971499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm4-k4v", "Name": "Tacos California", "Category": "Restaurants and Other Eating Places", "Address": "1030 S 8th St", "LATITUDE": 39.936462, "LONGITUDE": -75.15694, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010024004.0, "Median Dwell Time": null, "Total Spend": 128.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 26.89, "Median Spend per Customer": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.15694, 39.936462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "Name": "Sweet Creations Unlimited", "Category": "Specialty Food Stores", "Address": "5940 Torresdale Ave", "LATITUDE": 40.017723, "LONGITUDE": -75.059702, "DATE_RANGE_START": 2021, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010321003.0, "Median Dwell Time": 5.0, "Total Spend": 1347.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 32.08, "Median Spend per Customer": 51.66 }, "geometry": { "type": "Point", "coordinates": [ -75.059702, 40.017723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgj-249", "Name": "Sunny Halal Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "N 13th St", "LATITUDE": 39.979244, "LONGITUDE": -75.155824, "DATE_RANGE_START": 2021, "Total Visits": 377.0, "Total Visitors": 148.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 296.0, "Total Spend": 193.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155824, 39.979244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-qcq", "Name": "Wayne Supermarket", "Category": "Grocery Stores", "Address": "5348 Wayne Ave", "LATITUDE": 40.029009, "LONGITUDE": -75.17466, "DATE_RANGE_START": 2021, "Total Visits": 41.0, "Total Visitors": 31.0, "POI_CBG": 421010240003.0, "Median Dwell Time": 3.0, "Total Spend": 70.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 14.75, "Median Spend per Customer": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.17466, 40.029009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5506 Chestnut St # 12", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2021, "Total Visits": 363.0, "Total Visitors": 243.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 2.0, "Total Spend": 7702.0, "Total Transactions": 1019.0, "Total Customers": 556.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4160 Monument Rd", "LATITUDE": 40.002692, "LONGITUDE": -75.214454, "DATE_RANGE_START": 2021, "Total Visits": 396.0, "Total Visitors": 303.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 3.0, "Total Spend": 12432.0, "Total Transactions": 1652.0, "Total Customers": 788.0, "Median Spend per Transaction": 6.23, "Median Spend per Customer": 8.66 }, "geometry": { "type": "Point", "coordinates": [ -75.214454, 40.002692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfx-ks5", "Name": "Artesano Cafe", "Category": "Restaurants and Other Eating Places", "Address": "109 Green Ln", "LATITUDE": 40.027058, "LONGITUDE": -75.2268, "DATE_RANGE_START": 2021, "Total Visits": 859.0, "Total Visitors": 680.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 18.0, "Total Spend": 175.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 12.3, "Median Spend per Customer": 17.59 }, "geometry": { "type": "Point", "coordinates": [ -75.2268, 40.027058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@63s-dw4-rzf", "Name": "British Airways Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8000 Essington Ave", "LATITUDE": 39.895193, "LONGITUDE": -75.227957, "DATE_RANGE_START": 2021, "Total Visits": 1167.0, "Total Visitors": 816.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 171.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 35.84 }, "geometry": { "type": "Point", "coordinates": [ -75.227957, 39.895193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "Name": "Spice Finch", "Category": "Restaurants and Other Eating Places", "Address": "220 S 17th St", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2021, "Total Visits": 2551.0, "Total Visitors": 1592.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 363.0, "Total Spend": 14659.0, "Total Transactions": 184.0, "Total Customers": 172.0, "Median Spend per Transaction": 73.71, "Median Spend per Customer": 77.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "Name": "Tandoori bakery", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd Store 17", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2021, "Total Visits": 585.0, "Total Visitors": 396.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 4.0, "Total Spend": 4916.0, "Total Transactions": 117.0, "Total Customers": 69.0, "Median Spend per Transaction": 23.15, "Median Spend per Customer": 31.64 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "Name": "Ryan's Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4301 Main St", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2021, "Total Visits": 265.0, "Total Visitors": 181.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 64.0, "Total Spend": 69359.0, "Total Transactions": 2501.0, "Total Customers": 1401.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "Name": "La Calaca Feliz", "Category": "Restaurants and Other Eating Places", "Address": "2321 Fairmount Ave", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2021, "Total Visits": 115.0, "Total Visitors": 95.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 57.0, "Total Spend": 7753.0, "Total Transactions": 129.0, "Total Customers": 112.0, "Median Spend per Transaction": 51.87, "Median Spend per Customer": 53.68 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-h5z", "Name": "Buena Onda", "Category": "Restaurants and Other Eating Places", "Address": "1901 Callowhill St", "LATITUDE": 39.960932, "LONGITUDE": -75.170707, "DATE_RANGE_START": 2021, "Total Visits": 265.0, "Total Visitors": 205.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 29.0, "Total Spend": 18862.0, "Total Transactions": 757.0, "Total Customers": 587.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 26.21 }, "geometry": { "type": "Point", "coordinates": [ -75.170707, 39.960932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfy-zfz", "Name": "The Rook Manayunk", "Category": "Restaurants and Other Eating Places", "Address": "4001 Cresson St", "LATITUDE": 40.021721, "LONGITUDE": -75.215726, "DATE_RANGE_START": 2021, "Total Visits": 200.0, "Total Visitors": 148.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 83.0, "Total Spend": 16924.0, "Total Transactions": 356.0, "Total Customers": 289.0, "Median Spend per Transaction": 40.84, "Median Spend per Customer": 49.56 }, "geometry": { "type": "Point", "coordinates": [ -75.215726, 40.021721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22q@628-pmb-835", "Name": "Pearl's Oyster Bar", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.95321, "LONGITUDE": -75.159401, "DATE_RANGE_START": 2021, "Total Visits": 58062.0, "Total Visitors": 33365.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 62.0, "Total Spend": 6090.0, "Total Transactions": 234.0, "Total Customers": 203.0, "Median Spend per Transaction": 24.73, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.159401, 39.95321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "Name": "Tony Luke's", "Category": "Restaurants and Other Eating Places", "Address": "1 Citizens Bank Way", "LATITUDE": 39.906891, "LONGITUDE": -75.166013, "DATE_RANGE_START": 2021, "Total Visits": 2069.0, "Total Visitors": 1983.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 21.0, "Total Spend": 10778.0, "Total Transactions": 461.0, "Total Customers": 425.0, "Median Spend per Transaction": 18.9, "Median Spend per Customer": 21.87 }, "geometry": { "type": "Point", "coordinates": [ -75.166013, 39.906891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-v75", "Name": "Buffalo Billiards", "Category": "Restaurants and Other Eating Places", "Address": "118 Chestnut St", "LATITUDE": 39.948098, "LONGITUDE": -75.143221, "DATE_RANGE_START": 2021, "Total Visits": 496.0, "Total Visitors": 382.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 81.0, "Total Spend": 30091.0, "Total Transactions": 780.0, "Total Customers": 539.0, "Median Spend per Transaction": 25.01, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143221, 39.948098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp4-tvz", "Name": "Best Deli II", "Category": "Restaurants and Other Eating Places", "Address": "2616 E Lehigh Ave", "LATITUDE": 39.978727, "LONGITUDE": -75.115372, "DATE_RANGE_START": 2021, "Total Visits": 303.0, "Total Visitors": 98.0, "POI_CBG": 421010378003.0, "Median Dwell Time": 491.0, "Total Spend": 2386.0, "Total Transactions": 146.0, "Total Customers": 74.0, "Median Spend per Transaction": 14.25, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.115372, 39.978727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7yv", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "48 N 12th St", "LATITUDE": 39.953782, "LONGITUDE": -75.159676, "DATE_RANGE_START": 2021, "Total Visits": 1871.0, "Total Visitors": 1516.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 25.0, "Total Spend": 20491.0, "Total Transactions": 1284.0, "Total Customers": 914.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 15.74 }, "geometry": { "type": "Point", "coordinates": [ -75.159676, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "Name": "Jamba", "Category": "Restaurants and Other Eating Places", "Address": "Philadelphia Int L Airport Space C 9a", "LATITUDE": 39.87525, "LONGITUDE": -75.241494, "DATE_RANGE_START": 2021, "Total Visits": 232048.0, "Total Visitors": 147833.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 57.0, "Total Spend": 3825.0, "Total Transactions": 351.0, "Total Customers": 332.0, "Median Spend per Transaction": 8.59, "Median Spend per Customer": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.241494, 39.87525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-2hq", "Name": "Las Cazuelas Restaurant BYOB", "Category": "Restaurants and Other Eating Places", "Address": "426 W Girard Ave", "LATITUDE": 39.969878, "LONGITUDE": -75.143998, "DATE_RANGE_START": 2021, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 123.0, "Total Spend": 4335.0, "Total Transactions": 79.0, "Total Customers": 74.0, "Median Spend per Transaction": 38.39, "Median Spend per Customer": 38.56 }, "geometry": { "type": "Point", "coordinates": [ -75.143998, 39.969878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "300 E Erie Ave", "LATITUDE": 40.006873, "LONGITUDE": -75.123103, "DATE_RANGE_START": 2021, "Total Visits": 155.0, "Total Visitors": 100.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 3.0, "Total Spend": 5197.0, "Total Transactions": 623.0, "Total Customers": 372.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 8.96 }, "geometry": { "type": "Point", "coordinates": [ -75.123103, 40.006873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pjk-3nq", "Name": "Pina's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8919 Ridge Ave", "LATITUDE": 40.069435, "LONGITUDE": -75.239981, "DATE_RANGE_START": 2021, "Total Visits": 578.0, "Total Visitors": 413.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 39.0, "Total Spend": 4350.0, "Total Transactions": 193.0, "Total Customers": 131.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 30.19 }, "geometry": { "type": "Point", "coordinates": [ -75.239981, 40.069435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1801 John F Kennedy Blvd", "LATITUDE": 39.954574, "LONGITUDE": -75.169932, "DATE_RANGE_START": 2021, "Total Visits": 706.0, "Total Visitors": 496.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 83.0, "Total Spend": 28821.0, "Total Transactions": 563.0, "Total Customers": 463.0, "Median Spend per Transaction": 38.18, "Median Spend per Customer": 40.9 }, "geometry": { "type": "Point", "coordinates": [ -75.169932, 39.954574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-vmk", "Name": "E Frank Hopkins", "Category": "Restaurants and Other Eating Places", "Address": "3120 S 3rd St", "LATITUDE": 39.906965, "LONGITUDE": -75.154623, "DATE_RANGE_START": 2021, "Total Visits": 234.0, "Total Visitors": 107.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 270.0, "Total Spend": 12429.0, "Total Transactions": 38.0, "Total Customers": 29.0, "Median Spend per Transaction": 147.0, "Median Spend per Customer": 292.14 }, "geometry": { "type": "Point", "coordinates": [ -75.154623, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "Name": "DJ Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4040 City Ave", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2021, "Total Visits": 296.0, "Total Visitors": 251.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 4.0, "Total Spend": 5521.0, "Total Transactions": 115.0, "Total Customers": 105.0, "Median Spend per Transaction": 30.1, "Median Spend per Customer": 33.34 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2311 Cottman Ave", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2021, "Total Visits": 162.0, "Total Visitors": 146.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 4.0, "Total Spend": 15990.0, "Total Transactions": 926.0, "Total Customers": 745.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 17.34 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@63s-dvw-mrk", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "4 S 52nd St", "LATITUDE": 39.959737, "LONGITUDE": -75.225178, "DATE_RANGE_START": 2021, "Total Visits": 60.0, "Total Visitors": 57.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 2.0, "Total Spend": 11207.0, "Total Transactions": 76.0, "Total Customers": 60.0, "Median Spend per Transaction": 89.99, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225178, 39.959737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-h5z", "Name": "Gaetano's", "Category": "Restaurants and Other Eating Places", "Address": "3820 Lancaster Ave", "LATITUDE": 39.960401, "LONGITUDE": -75.19778, "DATE_RANGE_START": 2021, "Total Visits": 131.0, "Total Visitors": 57.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 800.0, "Total Spend": 80.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 11.11, "Median Spend per Customer": 11.11 }, "geometry": { "type": "Point", "coordinates": [ -75.19778, 39.960401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j7q", "Name": "Boyds Philadelphia", "Category": "Clothing Stores", "Address": "1818 Chestnut St", "LATITUDE": 39.951667, "LONGITUDE": -75.171279, "DATE_RANGE_START": 2021, "Total Visits": 384.0, "Total Visitors": 243.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 248.0, "Total Spend": 47028.0, "Total Transactions": 36.0, "Total Customers": 24.0, "Median Spend per Transaction": 395.0, "Median Spend per Customer": 1437.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171279, 39.951667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "Name": "Greene Street", "Category": "Clothing Stores", "Address": "8524 Germantown Ave", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2021, "Total Visits": 379.0, "Total Visitors": 289.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 29.0, "Total Spend": 1049.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 19.87, "Median Spend per Customer": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2200 W Oregon Ave", "LATITUDE": 39.916081, "LONGITUDE": -75.185496, "DATE_RANGE_START": 2021, "Total Visits": 3852.0, "Total Visitors": 2184.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 19.0, "Total Spend": 175370.0, "Total Transactions": 1258.0, "Total Customers": 723.0, "Median Spend per Transaction": 43.7, "Median Spend per Customer": 59.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185496, 39.916081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1912 Liacouras Walk", "LATITUDE": 39.982036, "LONGITUDE": -75.156118, "DATE_RANGE_START": 2021, "Total Visits": 146.0, "Total Visitors": 91.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 7.0, "Total Spend": 2049.0, "Total Transactions": 322.0, "Total Customers": 150.0, "Median Spend per Transaction": 4.93, "Median Spend per Customer": 8.59 }, "geometry": { "type": "Point", "coordinates": [ -75.156118, 39.982036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "2422 W Passyunk Ave", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2021, "Total Visits": 72.0, "Total Visitors": 69.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 2.0, "Total Spend": 1616.0, "Total Transactions": 119.0, "Total Customers": 103.0, "Median Spend per Transaction": 10.24, "Median Spend per Customer": 10.94 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p7z-x89", "Name": "Don Pedro Meats and Market", "Category": "Specialty Food Stores", "Address": "6010 Castor Ave", "LATITUDE": 40.035069, "LONGITUDE": -75.082126, "DATE_RANGE_START": 2021, "Total Visits": 437.0, "Total Visitors": 339.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 8.0, "Total Spend": 8633.0, "Total Transactions": 129.0, "Total Customers": 98.0, "Median Spend per Transaction": 45.34, "Median Spend per Customer": 50.02 }, "geometry": { "type": "Point", "coordinates": [ -75.082126, 40.035069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-jjv", "Name": "Allen Edmonds", "Category": "Shoe Stores", "Address": "1736 Chestnut St", "LATITUDE": 39.9515, "LONGITUDE": -75.170237, "DATE_RANGE_START": 2021, "Total Visits": 501.0, "Total Visitors": 475.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 6706.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 291.0, "Median Spend per Customer": 432.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170237, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3617 Lancaster Ave Fl 1", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2021, "Total Visits": 172.0, "Total Visitors": 110.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 20.0, "Total Spend": 8750.0, "Total Transactions": 179.0, "Total Customers": 115.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992425, "LONGITUDE": -75.101329, "DATE_RANGE_START": 2021, "Total Visits": 847.0, "Total Visitors": 709.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 21.0, "Total Spend": 12863.0, "Total Transactions": 248.0, "Total Customers": 229.0, "Median Spend per Transaction": 42.24, "Median Spend per Customer": 44.88 }, "geometry": { "type": "Point", "coordinates": [ -75.101329, 39.992425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-kvf", "Name": "The Wellness Refinery", "Category": "Restaurants and Other Eating Places", "Address": "216 Church St", "LATITUDE": 39.950375, "LONGITUDE": -75.144624, "DATE_RANGE_START": 2021, "Total Visits": 1177.0, "Total Visitors": 1007.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 6.0, "Total Spend": 1931.0, "Total Transactions": 33.0, "Total Customers": 24.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144624, 39.950375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "Name": "Hadramout", "Category": "Restaurants and Other Eating Places", "Address": "136 S 45th St", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2021, "Total Visits": 33.0, "Total Visitors": 21.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 17.0, "Total Spend": 2518.0, "Total Transactions": 53.0, "Total Customers": 41.0, "Median Spend per Transaction": 39.67, "Median Spend per Customer": 44.2 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg9-wc5", "Name": "Fairmount Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1900 Green St", "LATITUDE": 39.964685, "LONGITUDE": -75.169302, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 29.0, "POI_CBG": 421010134023.0, "Median Dwell Time": 25.0, "Total Spend": 1258.0, "Total Transactions": 67.0, "Total Customers": 43.0, "Median Spend per Transaction": 16.92, "Median Spend per Customer": 24.61 }, "geometry": { "type": "Point", "coordinates": [ -75.169302, 39.964685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "Name": "Jetro Cash & Carry", "Category": "Grocery and Related Product Merchant Wholesalers", "Address": "700 Pattison Ave", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2021, "Total Visits": 2525.0, "Total Visitors": 1542.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 33.0, "Total Spend": 708467.0, "Total Transactions": 924.0, "Total Customers": 274.0, "Median Spend per Transaction": 446.41, "Median Spend per Customer": 591.77 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "2106 S Columbus Blvd", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2021, "Total Visits": 2146.0, "Total Visitors": 1685.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 13.0, "Total Spend": 334633.0, "Total Transactions": 4630.0, "Total Customers": 3241.0, "Median Spend per Transaction": 32.37, "Median Spend per Customer": 42.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "Name": "Paradise Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1363 E Lycoming St", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2021, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010190004.0, "Median Dwell Time": null, "Total Spend": 1931.0, "Total Transactions": 74.0, "Total Customers": 53.0, "Median Spend per Transaction": 19.71, "Median Spend per Customer": 29.84 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjf-jy9", "Name": "Bredenbeck's Bakery & Ice Cream Parlor", "Category": "Restaurants and Other Eating Places", "Address": "8126 Germantown Ave", "LATITUDE": 40.072481, "LONGITUDE": -75.202392, "DATE_RANGE_START": 2021, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010231001.0, "Median Dwell Time": null, "Total Spend": 26477.0, "Total Transactions": 1126.0, "Total Customers": 847.0, "Median Spend per Transaction": 13.81, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.202392, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pm8-kxq", "Name": "Victory Beer Hall", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1100 Pattison Ave", "LATITUDE": 39.904214, "LONGITUDE": -75.169344, "DATE_RANGE_START": 2021, "Total Visits": 2816.0, "Total Visitors": 2432.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 66.0, "Total Spend": 12757.0, "Total Transactions": 551.0, "Total Customers": 422.0, "Median Spend per Transaction": 18.9, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169344, 39.904214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "Name": "Miller's Ale House", "Category": "Restaurants and Other Eating Places", "Address": "9495 Roosevelt Blvd", "LATITUDE": 40.079795, "LONGITUDE": -75.028682, "DATE_RANGE_START": 2021, "Total Visits": 733.0, "Total Visitors": 616.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 67.0, "Total Spend": 51485.0, "Total Transactions": 871.0, "Total Customers": 785.0, "Median Spend per Transaction": 53.99, "Median Spend per Customer": 55.24 }, "geometry": { "type": "Point", "coordinates": [ -75.028682, 40.079795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "Name": "Golden Crust Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "3732 Midvale Ave", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2021, "Total Visits": 48.0, "Total Visitors": 36.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 2.0, "Total Spend": 2384.0, "Total Transactions": 110.0, "Total Customers": 93.0, "Median Spend per Transaction": 22.02, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-75z", "Name": "Cosi", "Category": "Restaurants and Other Eating Places", "Address": "3500 Civic Center Blvd", "LATITUDE": 39.947085, "LONGITUDE": -75.193998, "DATE_RANGE_START": 2021, "Total Visits": 18897.0, "Total Visitors": 9649.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 127.0, "Total Spend": 4006.0, "Total Transactions": 232.0, "Total Customers": 189.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 16.61 }, "geometry": { "type": "Point", "coordinates": [ -75.193998, 39.947085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9280 Krewstown Rd", "LATITUDE": 40.085969, "LONGITUDE": -75.04681, "DATE_RANGE_START": 2021, "Total Visits": 506.0, "Total Visitors": 387.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 5.0, "Total Spend": 19240.0, "Total Transactions": 885.0, "Total Customers": 535.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 21.99 }, "geometry": { "type": "Point", "coordinates": [ -75.04681, 40.085969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "2101 S 11th St", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2021, "Total Visits": 1568.0, "Total Visitors": 907.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 4.0, "Total Spend": 32016.0, "Total Transactions": 1389.0, "Total Customers": 745.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 30.81 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "Name": "Loco Dollar", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "201 E Allegheny Ave", "LATITUDE": 39.998868, "LONGITUDE": -75.126992, "DATE_RANGE_START": 2021, "Total Visits": 377.0, "Total Visitors": 220.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 6.0, "Total Spend": 3865.0, "Total Transactions": 165.0, "Total Customers": 124.0, "Median Spend per Transaction": 17.45, "Median Spend per Customer": 23.93 }, "geometry": { "type": "Point", "coordinates": [ -75.126992, 39.998868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pg4-w49", "Name": "Pauline's Deli", "Category": "Restaurants and Other Eating Places", "Address": "2145 Elkins Ave", "LATITUDE": 40.040848, "LONGITUDE": -75.157522, "DATE_RANGE_START": 2021, "Total Visits": 36.0, "Total Visitors": 21.0, "POI_CBG": 421010279022.0, "Median Dwell Time": 8.0, "Total Spend": 3449.0, "Total Transactions": 255.0, "Total Customers": 107.0, "Median Spend per Transaction": 10.08, "Median Spend per Customer": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157522, 40.040848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "Name": "In & Out Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7600 Ogontz Ave", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2021, "Total Visits": 74.0, "Total Visitors": 24.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 343.0, "Total Spend": 1690.0, "Total Transactions": 64.0, "Total Customers": 57.0, "Median Spend per Transaction": 24.36, "Median Spend per Customer": 27.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "2120 S Broad St", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 39.0, "Total Spend": 435.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 23.65, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "Name": "Sonnys Famous Steaks", "Category": "Restaurants and Other Eating Places", "Address": "228 Market St", "LATITUDE": 39.949796, "LONGITUDE": -75.144721, "DATE_RANGE_START": 2021, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 3.0, "Total Spend": 20000.0, "Total Transactions": 757.0, "Total Customers": 661.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144721, 39.949796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj2-mrk", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "3960 Kensington Ave # 80", "LATITUDE": 40.006514, "LONGITUDE": -75.095617, "DATE_RANGE_START": 2021, "Total Visits": 67.0, "Total Visitors": 60.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 2.0, "Total Spend": 2505.0, "Total Transactions": 184.0, "Total Customers": 162.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.095617, 40.006514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvw-9pv", "Name": "52nd Convenience Store", "Category": "Grocery Stores", "Address": "204 N 52nd St", "LATITUDE": 39.963376, "LONGITUDE": -75.224566, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010093005.0, "Median Dwell Time": null, "Total Spend": 5441.0, "Total Transactions": 489.0, "Total Customers": 267.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.224566, 39.963376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "Name": "Ganaan Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5909 N 5th St", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2021, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010274011.0, "Median Dwell Time": null, "Total Spend": 9078.0, "Total Transactions": 267.0, "Total Customers": 169.0, "Median Spend per Transaction": 31.75, "Median Spend per Customer": 41.2 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-kfz", "Name": "UrHomeInPhilly", "Category": "Traveler Accommodation", "Address": "1955 Locust St", "LATITUDE": 39.949546, "LONGITUDE": -75.173863, "DATE_RANGE_START": 2021, "Total Visits": 112.0, "Total Visitors": 91.0, "POI_CBG": 421010008034.0, "Median Dwell Time": 2.0, "Total Spend": 175.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 36.69, "Median Spend per Customer": 36.69 }, "geometry": { "type": "Point", "coordinates": [ -75.173863, 39.949546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5mk", "Name": "U Bahn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1320 Chestnut St", "LATITUDE": 39.95079, "LONGITUDE": -75.16242, "DATE_RANGE_START": 2021, "Total Visits": 18618.0, "Total Visitors": 13115.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 36.0, "Total Spend": 66858.0, "Total Transactions": 2246.0, "Total Customers": 1239.0, "Median Spend per Transaction": 22.8, "Median Spend per Customer": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16242, 39.95079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-sdv", "Name": "Independence Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 S Independence Mall W", "LATITUDE": 39.950376, "LONGITUDE": -75.15103, "DATE_RANGE_START": 2021, "Total Visits": 1685.0, "Total Visitors": 1537.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 29.0, "Total Spend": 17790.0, "Total Transactions": 690.0, "Total Customers": 561.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.18 }, "geometry": { "type": "Point", "coordinates": [ -75.15103, 39.950376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6758 Ridge Ave", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2021, "Total Visits": 224.0, "Total Visitors": 165.0, "POI_CBG": 421010215001.0, "Median Dwell Time": 6.0, "Total Spend": 13467.0, "Total Transactions": 389.0, "Total Customers": 308.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 21.03 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6858 Rising Sun Ave", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2021, "Total Visits": 1270.0, "Total Visitors": 907.0, "POI_CBG": 421010307003.0, "Median Dwell Time": 3.0, "Total Spend": 138683.0, "Total Transactions": 7862.0, "Total Customers": 3554.0, "Median Spend per Transaction": 12.69, "Median Spend per Customer": 24.53 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "Name": "Banana Republic Outlet", "Category": "Clothing Stores", "Address": "1911 Chestnut St", "LATITUDE": 39.952113, "LONGITUDE": -75.172438, "DATE_RANGE_START": 2021, "Total Visits": 358.0, "Total Visitors": 289.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 17.0, "Total Spend": 7908.0, "Total Transactions": 119.0, "Total Customers": 100.0, "Median Spend per Transaction": 51.49, "Median Spend per Customer": 71.98 }, "geometry": { "type": "Point", "coordinates": [ -75.172438, 39.952113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2300 S Broad St", "LATITUDE": 39.921823, "LONGITUDE": -75.170522, "DATE_RANGE_START": 2021, "Total Visits": 451.0, "Total Visitors": 294.0, "POI_CBG": 421010039012.0, "Median Dwell Time": 6.0, "Total Spend": 2601.0, "Total Transactions": 243.0, "Total Customers": 88.0, "Median Spend per Transaction": 8.3, "Median Spend per Customer": 11.35 }, "geometry": { "type": "Point", "coordinates": [ -75.170522, 39.921823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "314 S 5th St", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2021, "Total Visits": 329.0, "Total Visitors": 232.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 54.0, "Total Spend": 13519.0, "Total Transactions": 704.0, "Total Customers": 370.0, "Median Spend per Transaction": 11.32, "Median Spend per Customer": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-92k", "Name": "LIDS", "Category": "Clothing Stores", "Address": "901 Market St Unit C162", "LATITUDE": 39.951715, "LONGITUDE": -75.155788, "DATE_RANGE_START": 2021, "Total Visits": 36198.0, "Total Visitors": 22976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 6523.0, "Total Transactions": 143.0, "Total Customers": 117.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155788, 39.951715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.031655, "LONGITUDE": -75.099529, "DATE_RANGE_START": 2021, "Total Visits": 6093.0, "Total Visitors": 4074.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 22.0, "Total Spend": 368.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 13.71, "Median Spend per Customer": 20.78 }, "geometry": { "type": "Point", "coordinates": [ -75.099529, 40.031655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-249", "Name": "On Point Bistro", "Category": "Restaurants and Other Eating Places", "Address": "1200 Point Breeze Ave", "LATITUDE": 39.937259, "LONGITUDE": -75.177106, "DATE_RANGE_START": 2021, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 3.0, "Total Spend": 9022.0, "Total Transactions": 196.0, "Total Customers": 184.0, "Median Spend per Transaction": 47.36, "Median Spend per Customer": 47.36 }, "geometry": { "type": "Point", "coordinates": [ -75.177106, 39.937259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7z-qs5", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "6301 Oxford Ave", "LATITUDE": 40.043867, "LONGITUDE": -75.088282, "DATE_RANGE_START": 2021, "Total Visits": 2962.0, "Total Visitors": 1556.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 21.0, "Total Spend": 938.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 18.47, "Median Spend per Customer": 21.27 }, "geometry": { "type": "Point", "coordinates": [ -75.088282, 40.043867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-f75", "Name": "Beer City", "Category": "Grocery Stores", "Address": "701 E Girard Ave", "LATITUDE": 39.972301, "LONGITUDE": -75.125884, "DATE_RANGE_START": 2021, "Total Visits": 468.0, "Total Visitors": 272.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 8.0, "Total Spend": 18319.0, "Total Transactions": 623.0, "Total Customers": 387.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 29.74 }, "geometry": { "type": "Point", "coordinates": [ -75.125884, 39.972301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "Name": "Deluxe Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8749 Frankford Ave", "LATITUDE": 40.048286, "LONGITUDE": -75.012528, "DATE_RANGE_START": 2021, "Total Visits": 270.0, "Total Visitors": 124.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 152.0, "Total Spend": 513.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 9.17 }, "geometry": { "type": "Point", "coordinates": [ -75.012528, 40.048286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "1243 S Broad St", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2021, "Total Visits": 1227.0, "Total Visitors": 866.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 4.0, "Total Spend": 51448.0, "Total Transactions": 2007.0, "Total Customers": 1320.0, "Median Spend per Transaction": 25.05, "Median Spend per Customer": 31.39 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } } +] +} diff --git a/assets/data/data_2022.geojson b/assets/data/data_2022.geojson new file mode 100644 index 0000000..d1e2de1 --- /dev/null +++ b/assets/data/data_2022.geojson @@ -0,0 +1,3079 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5272 Frankford Ave", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2022, "Total Visits": 380.0, "Total Visitors": 226.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 1.0, "Total Spend": 5251.0, "Total Transactions": 800.0, "Total Customers": 247.0, "Median Spend per Transaction": 5.62, "Median Spend per Customer": 9.22 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9s-j9z", "Name": "Room Service 360", "Category": "Furniture Stores", "Address": "2031 Byberry Rd", "LATITUDE": 40.111182, "LONGITUDE": -75.003163, "DATE_RANGE_START": 2022, "Total Visits": 453.0, "Total Visitors": 343.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 317.0, "Total Spend": 8665.0, "Total Transactions": 38.0, "Total Customers": 19.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 92.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003163, 40.111182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-ph6-gx5", "Name": "Community Mini Mart", "Category": "Grocery Stores", "Address": "1801 Georges Ln", "LATITUDE": 39.984629, "LONGITUDE": -75.229321, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010119002.0, "Median Dwell Time": null, "Total Spend": 89.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.229321, 39.984629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "Name": "Giovanni's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "5604 Greene St", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 6.0, "Total Spend": 1588.0, "Total Transactions": 89.0, "Total Customers": 44.0, "Median Spend per Transaction": 14.77, "Median Spend per Customer": 29.54 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgf-52k", "Name": "Woosa Bubble Tea", "Category": "Restaurants and Other Eating Places", "Address": "3639 Lancaster Ave", "LATITUDE": 39.959251, "LONGITUDE": -75.194643, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 31.0, "Total Spend": 2133.0, "Total Transactions": 167.0, "Total Customers": 77.0, "Median Spend per Transaction": 11.32, "Median Spend per Customer": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.194643, 39.959251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "Name": "New Star Express Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5202 Lancaster Ave", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010111004.0, "Median Dwell Time": null, "Total Spend": 3775.0, "Total Transactions": 150.0, "Total Customers": 68.0, "Median Spend per Transaction": 20.34, "Median Spend per Customer": 52.49 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tn5", "Name": "Unclaimed Diamonds", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "113 S 8th St", "LATITUDE": 39.949045, "LONGITUDE": -75.153751, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 40.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 27.0, "Total Spend": 12648.0, "Total Transactions": 21.0, "Total Customers": 9.0, "Median Spend per Transaction": 525.0, "Median Spend per Customer": 1000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153751, 39.949045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-gff", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2920 Roberts Ave Ste 1040", "LATITUDE": 40.011075, "LONGITUDE": -75.176591, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 44.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 3.0, "Total Spend": 3067.0, "Total Transactions": 251.0, "Total Customers": 183.0, "Median Spend per Transaction": 11.32, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176591, 40.011075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1700 N 28th St", "LATITUDE": 39.981705, "LONGITUDE": -75.180442, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 45.0, "POI_CBG": 421010149004.0, "Median Dwell Time": 3.0, "Total Spend": 7184.0, "Total Transactions": 606.0, "Total Customers": 185.0, "Median Spend per Transaction": 9.53, "Median Spend per Customer": 23.03 }, "geometry": { "type": "Point", "coordinates": [ -75.180442, 39.981705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5901 Wissahickon Ave", "LATITUDE": 40.02991, "LONGITUDE": -75.186134, "DATE_RANGE_START": 2022, "Total Visits": 1491.0, "Total Visitors": 890.0, "POI_CBG": 421010239002.0, "Median Dwell Time": 4.0, "Total Spend": 3470.0, "Total Transactions": 84.0, "Total Customers": 47.0, "Median Spend per Transaction": 35.22, "Median Spend per Customer": 65.09 }, "geometry": { "type": "Point", "coordinates": [ -75.186134, 40.02991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "Name": "Bookhaven", "Category": "Book Stores and News Dealers", "Address": "2202 Fairmount Ave", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 14.0, "Total Spend": 3834.0, "Total Transactions": 129.0, "Total Customers": 68.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "Name": "Lucky 13 Pub", "Category": "Restaurants and Other Eating Places", "Address": "1820 S 13th St", "LATITUDE": 39.927169, "LONGITUDE": -75.167128, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 740.0, "Total Spend": 10831.0, "Total Transactions": 315.0, "Total Customers": 131.0, "Median Spend per Transaction": 29.58, "Median Spend per Customer": 63.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167128, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg4-2rk", "Name": "Maker artisan pizza", "Category": "Restaurants and Other Eating Places", "Address": "5301 Germantown Ave", "LATITUDE": 40.032925, "LONGITUDE": -75.168806, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010246001.0, "Median Dwell Time": null, "Total Spend": 1302.0, "Total Transactions": 33.0, "Total Customers": 10.0, "Median Spend per Transaction": 31.66, "Median Spend per Customer": 94.1 }, "geometry": { "type": "Point", "coordinates": [ -75.168806, 40.032925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-phz-tjv", "Name": "The Marketplace Philly", "Category": "Other Miscellaneous Store Retailers", "Address": "3312 Kensington Ave", "LATITUDE": 39.998284, "LONGITUDE": -75.110525, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 51.0, "POI_CBG": 421010192004.0, "Median Dwell Time": 1.0, "Total Spend": 291.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110525, 39.998284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-kmk", "Name": "Philly Sunnyside Diner", "Category": "Restaurants and Other Eating Places", "Address": "2801 W Girard Ave", "LATITUDE": 39.974534, "LONGITUDE": -75.181976, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 4.0, "Total Spend": 1224.0, "Total Transactions": 47.0, "Total Customers": 19.0, "Median Spend per Transaction": 19.72, "Median Spend per Customer": 39.44 }, "geometry": { "type": "Point", "coordinates": [ -75.181976, 39.974534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-yqf", "Name": "Shiao Lan Kung", "Category": "Restaurants and Other Eating Places", "Address": "930 Race St", "LATITUDE": 39.955257, "LONGITUDE": -75.155387, "DATE_RANGE_START": 2022, "Total Visits": 10046.0, "Total Visitors": 7164.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 15.0, "Total Spend": 1582.0, "Total Transactions": 28.0, "Total Customers": 12.0, "Median Spend per Transaction": 71.0, "Median Spend per Customer": 142.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.955257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmf-kpv", "Name": "Chinese Food Cart", "Category": "Restaurants and Other Eating Places", "Address": "19th St & Chestnut St", "LATITUDE": 39.953188, "LONGITUDE": -75.171816, "DATE_RANGE_START": 2022, "Total Visits": 4371.0, "Total Visitors": 3077.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 70.0, "Total Spend": 397.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 31.95, "Median Spend per Customer": 63.9 }, "geometry": { "type": "Point", "coordinates": [ -75.171816, 39.953188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "Name": "Cook and Shaker", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Albert St", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 28.0, "POI_CBG": 421010160001.0, "Median Dwell Time": 36.0, "Total Spend": 14529.0, "Total Transactions": 220.0, "Total Customers": 85.0, "Median Spend per Transaction": 54.93, "Median Spend per Customer": 125.19 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6001 Ridge Ave", "LATITUDE": 40.032001, "LONGITUDE": -75.213304, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 70.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 300.0, "Total Spend": 2675.0, "Total Transactions": 80.0, "Total Customers": 64.0, "Median Spend per Transaction": 32.38, "Median Spend per Customer": 32.69 }, "geometry": { "type": "Point", "coordinates": [ -75.213304, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6620 N Broad St", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2022, "Total Visits": 319.0, "Total Visitors": 167.0, "POI_CBG": 421010268003.0, "Median Dwell Time": 3.0, "Total Spend": 5562.0, "Total Transactions": 955.0, "Total Customers": 221.0, "Median Spend per Transaction": 4.3, "Median Spend per Customer": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-75z", "Name": "Ninja Bao", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd Ste 6", "LATITUDE": 39.953417, "LONGITUDE": -75.165928, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 63.0, "Total Spend": 512.0, "Total Transactions": 31.0, "Total Customers": 14.0, "Median Spend per Transaction": 14.65, "Median Spend per Customer": 25.79 }, "geometry": { "type": "Point", "coordinates": [ -75.165928, 39.953417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg9-7h5", "Name": "Hair Town", "Category": "Health and Personal Care Stores", "Address": "2301 N 29th St", "LATITUDE": 39.991198, "LONGITUDE": -75.177954, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 37.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 7.0, "Total Spend": 11856.0, "Total Transactions": 350.0, "Total Customers": 145.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 56.12 }, "geometry": { "type": "Point", "coordinates": [ -75.177954, 39.991198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm9-whq", "Name": "Old City Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "240 Market St", "LATITUDE": 39.949756, "LONGITUDE": -75.145531, "DATE_RANGE_START": 2022, "Total Visits": 868.0, "Total Visitors": 662.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 39.0, "Total Spend": 52.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.145531, 39.949756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "Name": "Ruby Tuesday", "Category": "Restaurants and Other Eating Places", "Address": "8680 Bartram Ave", "LATITUDE": 39.887819, "LONGITUDE": -75.247004, "DATE_RANGE_START": 2022, "Total Visits": 720.0, "Total Visitors": 681.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 35.0, "Total Spend": 15456.0, "Total Transactions": 315.0, "Total Customers": 270.0, "Median Spend per Transaction": 39.93, "Median Spend per Customer": 46.62 }, "geometry": { "type": "Point", "coordinates": [ -75.247004, 39.887819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "Name": "Le Viet Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1019 S 11th St", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 108.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 123.0, "Total Spend": 361.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 51.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-ks5", "Name": "Zama", "Category": "Restaurants and Other Eating Places", "Address": "128 S 19th St", "LATITUDE": 39.950901, "LONGITUDE": -75.172392, "DATE_RANGE_START": 2022, "Total Visits": 383.0, "Total Visitors": 220.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 456.0, "Total Spend": 30898.0, "Total Transactions": 354.0, "Total Customers": 157.0, "Median Spend per Transaction": 65.08, "Median Spend per Customer": 142.14 }, "geometry": { "type": "Point", "coordinates": [ -75.172392, 39.950901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "1100 S Columbus Blvd # 20", "LATITUDE": 39.932572, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 148.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 3.0, "Total Spend": 2065.0, "Total Transactions": 44.0, "Total Customers": 33.0, "Median Spend per Transaction": 44.44, "Median Spend per Customer": 50.93 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3341 Grant Ave", "LATITUDE": 40.068776, "LONGITUDE": -75.005362, "DATE_RANGE_START": 2022, "Total Visits": 1136.0, "Total Visitors": 814.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 3.0, "Total Spend": 6164.0, "Total Transactions": 232.0, "Total Customers": 146.0, "Median Spend per Transaction": 15.53, "Median Spend per Customer": 21.97 }, "geometry": { "type": "Point", "coordinates": [ -75.005362, 40.068776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "9001 Frankford Ave", "LATITUDE": 40.051659, "LONGITUDE": -75.008179, "DATE_RANGE_START": 2022, "Total Visits": 287.0, "Total Visitors": 199.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 2.0, "Total Spend": 2148.0, "Total Transactions": 103.0, "Total Customers": 61.0, "Median Spend per Transaction": 12.02, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008179, 40.051659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "4371 Richmond St", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2022, "Total Visits": 1599.0, "Total Visitors": 669.0, "POI_CBG": 421010183001.0, "Median Dwell Time": 4.0, "Total Spend": 19414.0, "Total Transactions": 1641.0, "Total Customers": 535.0, "Median Spend per Transaction": 9.08, "Median Spend per Customer": 16.53 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-psq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "11750 Bustleton Ave", "LATITUDE": 40.120378, "LONGITUDE": -75.018088, "DATE_RANGE_START": 2022, "Total Visits": 537.0, "Total Visitors": 394.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 3.0, "Total Spend": 15913.0, "Total Transactions": 758.0, "Total Customers": 305.0, "Median Spend per Transaction": 10.74, "Median Spend per Customer": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.018088, 40.120378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd Ste F2", "LATITUDE": 40.031542, "LONGITUDE": -75.100256, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 166.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 5.0, "Total Spend": 2196.0, "Total Transactions": 37.0, "Total Customers": 33.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -75.100256, 40.031542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-g8v", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2920 Roberts Ave", "LATITUDE": 40.011165, "LONGITUDE": -75.176365, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 82.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 5.0, "Total Spend": 3440.0, "Total Transactions": 91.0, "Total Customers": 77.0, "Median Spend per Transaction": 26.97, "Median Spend per Customer": 28.26 }, "geometry": { "type": "Point", "coordinates": [ -75.176365, 40.011165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm9-yn5", "Name": "Bluebond Guitars", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "511 S 4th St", "LATITUDE": 39.94235, "LONGITUDE": -75.148924, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 223.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 1.0, "Total Spend": 571.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 104.0, "Median Spend per Customer": 164.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148924, 39.94235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2022, "Total Visits": 591.0, "Total Visitors": 517.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 8.0, "Total Spend": 28122.0, "Total Transactions": 528.0, "Total Customers": 460.0, "Median Spend per Transaction": 35.66, "Median Spend per Customer": 40.71 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "1130 Market St", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2022, "Total Visits": 8209.0, "Total Visitors": 6230.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 13.0, "Total Spend": 10058.0, "Total Transactions": 359.0, "Total Customers": 324.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4000 Monument Rd", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2022, "Total Visits": 3028.0, "Total Visitors": 2326.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 16.0, "Total Spend": 545543.0, "Total Transactions": 10281.0, "Total Customers": 6171.0, "Median Spend per Transaction": 34.05, "Median Spend per Customer": 54.66 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-6p9", "Name": "W Hotels", "Category": "Traveler Accommodation", "Address": "1439 Chestnut St", "LATITUDE": 39.951534, "LONGITUDE": -75.165211, "DATE_RANGE_START": 2022, "Total Visits": 2120.0, "Total Visitors": 1718.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 5.0, "Total Spend": 42425.0, "Total Transactions": 82.0, "Total Customers": 73.0, "Median Spend per Transaction": 471.44, "Median Spend per Customer": 545.66 }, "geometry": { "type": "Point", "coordinates": [ -75.165211, 39.951534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-6x5", "Name": "Harp & Crown", "Category": "Restaurants and Other Eating Places", "Address": "1525 Sansom St", "LATITUDE": 39.950579, "LONGITUDE": -75.166788, "DATE_RANGE_START": 2022, "Total Visits": 4990.0, "Total Visitors": 3734.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 44.0, "Total Spend": 17730.0, "Total Transactions": 183.0, "Total Customers": 113.0, "Median Spend per Transaction": 67.6, "Median Spend per Customer": 102.76 }, "geometry": { "type": "Point", "coordinates": [ -75.166788, 39.950579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-bp9", "Name": "Sang Kee Noodle House", "Category": "Restaurants and Other Eating Places", "Address": "900 Packer Ave", "LATITUDE": 39.909183, "LONGITUDE": -75.16467, "DATE_RANGE_START": 2022, "Total Visits": 6842.0, "Total Visitors": 3409.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 120.0, "Total Spend": 34774.0, "Total Transactions": 1242.0, "Total Customers": 589.0, "Median Spend per Transaction": 23.34, "Median Spend per Customer": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16467, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y9z", "Name": "Copabanana", "Category": "Restaurants and Other Eating Places", "Address": "344 South St", "LATITUDE": 39.941497, "LONGITUDE": -75.14907, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 103.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 6.0, "Total Spend": 30876.0, "Total Transactions": 497.0, "Total Customers": 228.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 107.54 }, "geometry": { "type": "Point", "coordinates": [ -75.14907, 39.941497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "22 W Girard Ave", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2022, "Total Visits": 368.0, "Total Visitors": 275.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 4.0, "Total Spend": 19742.0, "Total Transactions": 1843.0, "Total Customers": 1152.0, "Median Spend per Transaction": 9.35, "Median Spend per Customer": 12.37 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-rzf", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2400 E Butler St", "LATITUDE": 39.995312, "LONGITUDE": -75.092003, "DATE_RANGE_START": 2022, "Total Visits": 298.0, "Total Visitors": 258.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 6.0, "Total Spend": 1176.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 34.54, "Median Spend per Customer": 33.61 }, "geometry": { "type": "Point", "coordinates": [ -75.092003, 39.995312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj2-btv", "Name": "Bentoulis Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1226 E Hunting Park Ave", "LATITUDE": 40.01065, "LONGITUDE": -75.102956, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 52.0, "POI_CBG": 421010191002.0, "Median Dwell Time": 3.0, "Total Spend": 1864.0, "Total Transactions": 77.0, "Total Customers": 45.0, "Median Spend per Transaction": 19.12, "Median Spend per Customer": 34.25 }, "geometry": { "type": "Point", "coordinates": [ -75.102956, 40.01065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-qmk", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030627, "LONGITUDE": -75.102315, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 385.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 6.0, "Total Spend": 45290.0, "Total Transactions": 33.0, "Total Customers": 14.0, "Median Spend per Transaction": 500.0, "Median Spend per Customer": 1772.08 }, "geometry": { "type": "Point", "coordinates": [ -75.102315, 40.030627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-p8m-v2k", "Name": "Moon Flower House", "Category": "Restaurants and Other Eating Places", "Address": "6414 Frankford Ave Unit 11", "LATITUDE": 40.029561, "LONGITUDE": -75.058358, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 64.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 5.0, "Total Spend": 1231.0, "Total Transactions": 63.0, "Total Customers": 33.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 28.46 }, "geometry": { "type": "Point", "coordinates": [ -75.058358, 40.029561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-rkz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6600 Essington Ave", "LATITUDE": 39.914686, "LONGITUDE": -75.220838, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 92.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 6.0, "Total Spend": 883.0, "Total Transactions": 118.0, "Total Customers": 63.0, "Median Spend per Transaction": 5.86, "Median Spend per Customer": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.220838, 39.914686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfx-ks5", "Name": "Artesano Cafe", "Category": "Restaurants and Other Eating Places", "Address": "109 Green Ln", "LATITUDE": 40.027058, "LONGITUDE": -75.2268, "DATE_RANGE_START": 2022, "Total Visits": 652.0, "Total Visitors": 530.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 41.0, "Total Spend": 403.0, "Total Transactions": 26.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.73, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.2268, 40.027058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-49z", "Name": "Ginny Gourmet Sweet Treats", "Category": "Restaurants and Other Eating Places", "Address": "5724 N 4th St", "LATITUDE": 40.038736, "LONGITUDE": -75.128328, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 5.0, "POI_CBG": 421010274012.0, "Median Dwell Time": 1.0, "Total Spend": 59.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.128328, 40.038736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm4-b8v", "Name": "Hyon's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1320 S 21st St", "LATITUDE": 39.935029, "LONGITUDE": -75.179358, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 2.0, "Total Spend": 2831.0, "Total Transactions": 176.0, "Total Customers": 70.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 32.66 }, "geometry": { "type": "Point", "coordinates": [ -75.179358, 39.935029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.991684, "LONGITUDE": -75.154551, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 152.0, "Total Spend": 6029.0, "Total Transactions": 455.0, "Total Customers": 305.0, "Median Spend per Transaction": 10.67, "Median Spend per Customer": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.154551, 39.991684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8318 Bustleton Ave", "LATITUDE": 40.069743, "LONGITUDE": -75.051689, "DATE_RANGE_START": 2022, "Total Visits": 439.0, "Total Visitors": 366.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 3.0, "Total Spend": 471.0, "Total Transactions": 54.0, "Total Customers": 33.0, "Median Spend per Transaction": 5.3, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.051689, 40.069743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-gzf", "Name": "Bar X", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "255 S Camac St", "LATITUDE": 39.946786, "LONGITUDE": -75.161663, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 37.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 1.0, "Total Spend": 6286.0, "Total Transactions": 265.0, "Total Customers": 92.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161663, 39.946786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-b8v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1325 Point Breeze Ave", "LATITUDE": 39.934826, "LONGITUDE": -75.178911, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 40.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 114.0, "Total Spend": 1204.0, "Total Transactions": 94.0, "Total Customers": 71.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.178911, 39.934826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-ch5", "Name": "Fishtown Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1617 Frankford Ave", "LATITUDE": 39.974427, "LONGITUDE": -75.132999, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010158005.0, "Median Dwell Time": null, "Total Spend": 9394.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 546.98, "Median Spend per Customer": 668.96 }, "geometry": { "type": "Point", "coordinates": [ -75.132999, 39.974427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pzn-zj9", "Name": "Sweeney's Station Saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "13639 Philmont Ave", "LATITUDE": 40.131466, "LONGITUDE": -75.011396, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 63.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 21.0, "Total Spend": 8506.0, "Total Transactions": 270.0, "Total Customers": 96.0, "Median Spend per Transaction": 25.59, "Median Spend per Customer": 61.52 }, "geometry": { "type": "Point", "coordinates": [ -75.011396, 40.131466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "Name": "King of Wings", "Category": "Restaurants and Other Eating Places", "Address": "2233 S Woodstock St", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010037021.0, "Median Dwell Time": null, "Total Spend": 163.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.87, "Median Spend per Customer": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "255-222@628-pm9-y9z", "Name": "Milkboy", "Category": "Restaurants and Other Eating Places", "Address": "401 South St", "LATITUDE": 39.941731, "LONGITUDE": -75.1493, "DATE_RANGE_START": 2022, "Total Visits": 949.0, "Total Visitors": 864.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 11.0, "Total Spend": 1623.0, "Total Transactions": 31.0, "Total Customers": 12.0, "Median Spend per Transaction": 48.71, "Median Spend per Customer": 135.48 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.941731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "Name": "Beck's Cajun Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2022, "Total Visits": 28654.0, "Total Visitors": 19157.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 9.0, "Total Spend": 12846.0, "Total Transactions": 659.0, "Total Customers": 354.0, "Median Spend per Transaction": 16.16, "Median Spend per Customer": 31.24 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "Name": "Bloomsday Cafe", "Category": "Restaurants and Other Eating Places", "Address": "414 S 2nd St", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 4.0, "Total Spend": 7041.0, "Total Transactions": 98.0, "Total Customers": 63.0, "Median Spend per Transaction": 61.59, "Median Spend per Customer": 81.34 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgm-3qz", "Name": "LeBus East Falls", "Category": "Restaurants and Other Eating Places", "Address": "4201 Ridge Ave", "LATITUDE": 40.00891, "LONGITUDE": -75.193713, "DATE_RANGE_START": 2022, "Total Visits": 232.0, "Total Visitors": 193.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 24.0, "Total Spend": 279.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 49.22, "Median Spend per Customer": 53.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193713, 40.00891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "Name": "Monk's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "264 S 16th St", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 183.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 51.0, "Total Spend": 49372.0, "Total Transactions": 707.0, "Total Customers": 347.0, "Median Spend per Transaction": 56.98, "Median Spend per Customer": 111.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-45f", "Name": "Md Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1641 N Franklin St", "LATITUDE": 39.977208, "LONGITUDE": -75.147273, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 26.0, "POI_CBG": 421010145001.0, "Median Dwell Time": 613.0, "Total Spend": 2210.0, "Total Transactions": 138.0, "Total Customers": 89.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 17.18 }, "geometry": { "type": "Point", "coordinates": [ -75.147273, 39.977208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-6tv", "Name": "Allen Tire & Service", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6301 Rising Sun Ave", "LATITUDE": 40.048405, "LONGITUDE": -75.096529, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010306003.0, "Median Dwell Time": 3.0, "Total Spend": 4505.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 145.74, "Median Spend per Customer": 283.87 }, "geometry": { "type": "Point", "coordinates": [ -75.096529, 40.048405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2200 W Oregon Ave", "LATITUDE": 39.916081, "LONGITUDE": -75.185496, "DATE_RANGE_START": 2022, "Total Visits": 2230.0, "Total Visitors": 1394.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 15.0, "Total Spend": 155478.0, "Total Transactions": 1004.0, "Total Customers": 497.0, "Median Spend per Transaction": 63.89, "Median Spend per Customer": 62.99 }, "geometry": { "type": "Point", "coordinates": [ -75.185496, 39.916081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "3800 Aramingo Ave", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2022, "Total Visits": 2680.0, "Total Visitors": 1720.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 19.0, "Total Spend": 118283.0, "Total Transactions": 810.0, "Total Customers": 444.0, "Median Spend per Transaction": 36.07, "Median Spend per Customer": 33.74 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-p85-6kz", "Name": "IGA", "Category": "Grocery Stores", "Address": "8330 Bustleton Ave", "LATITUDE": 40.068401, "LONGITUDE": -75.051737, "DATE_RANGE_START": 2022, "Total Visits": 1995.0, "Total Visitors": 1155.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 13.0, "Total Spend": 2718.0, "Total Transactions": 87.0, "Total Customers": 42.0, "Median Spend per Transaction": 26.14, "Median Spend per Customer": 53.89 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.068401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "701 Chestnut St", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 150.0, "Total Spend": 26753.0, "Total Transactions": 1798.0, "Total Customers": 678.0, "Median Spend per Transaction": 12.21, "Median Spend per Customer": 29.56 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmd-snq", "Name": "Pure Design", "Category": "Florists", "Address": "500 S 22nd St", "LATITUDE": 39.946224, "LONGITUDE": -75.178525, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010012014.0, "Median Dwell Time": null, "Total Spend": 1220.0, "Total Transactions": 35.0, "Total Customers": 21.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 53.46 }, "geometry": { "type": "Point", "coordinates": [ -75.178525, 39.946224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-3wk", "Name": "Christian Food Market", "Category": "Grocery Stores", "Address": "2243 Christian St", "LATITUDE": 39.942022, "LONGITUDE": -75.180801, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 24.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 1.0, "Total Spend": 4118.0, "Total Transactions": 209.0, "Total Customers": 68.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.180801, 39.942022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-kj9", "Name": "Olc", "Category": "Furniture Stores", "Address": "152 N 3rd St", "LATITUDE": 39.953669, "LONGITUDE": -75.145037, "DATE_RANGE_START": 2022, "Total Visits": 693.0, "Total Visitors": 570.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 3.0, "Total Spend": 11316.0, "Total Transactions": 282.0, "Total Customers": 129.0, "Median Spend per Transaction": 17.51, "Median Spend per Customer": 31.16 }, "geometry": { "type": "Point", "coordinates": [ -75.145037, 39.953669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1334 Windrim Ave", "LATITUDE": 40.029597, "LONGITUDE": -75.145391, "DATE_RANGE_START": 2022, "Total Visits": 242.0, "Total Visitors": 148.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 4.0, "Total Spend": 8863.0, "Total Transactions": 484.0, "Total Customers": 277.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 23.44 }, "geometry": { "type": "Point", "coordinates": [ -75.145391, 40.029597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-22d@628-p9q-tn5", "Name": "Greenman's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1900 Grant Ave", "LATITUDE": 40.083997, "LONGITUDE": -75.035563, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 146.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 114.0, "Total Spend": 629.0, "Total Transactions": 49.0, "Total Customers": 23.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.035563, 40.083997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-hh5", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "1821 Chestnut St", "LATITUDE": 39.951987, "LONGITUDE": -75.171121, "DATE_RANGE_START": 2022, "Total Visits": 354.0, "Total Visitors": 256.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 124.0, "Total Spend": 916.0, "Total Transactions": 42.0, "Total Customers": 40.0, "Median Spend per Transaction": 17.07, "Median Spend per Customer": 22.08 }, "geometry": { "type": "Point", "coordinates": [ -75.171121, 39.951987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmb-5pv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1201 Market St", "LATITUDE": 39.952298, "LONGITUDE": -75.160846, "DATE_RANGE_START": 2022, "Total Visits": 988.0, "Total Visitors": 632.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 237.0, "Total Spend": 10992.0, "Total Transactions": 951.0, "Total Customers": 624.0, "Median Spend per Transaction": 9.94, "Median Spend per Customer": 11.43 }, "geometry": { "type": "Point", "coordinates": [ -75.160846, 39.952298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "315 N 12th St", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2022, "Total Visits": 535.0, "Total Visitors": 200.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 628.0, "Total Spend": 17073.0, "Total Transactions": 2080.0, "Total Customers": 742.0, "Median Spend per Transaction": 6.59, "Median Spend per Customer": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@63s-dvx-tsq", "Name": "University City Mini Market", "Category": "Grocery Stores", "Address": "4700 Chester Ave", "LATITUDE": 39.945765, "LONGITUDE": -75.213948, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 52.0, "POI_CBG": 421010078001.0, "Median Dwell Time": 4.0, "Total Spend": 455.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213948, 39.945765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-vj9", "Name": "Fairmount Pet Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "2024 Fairmount Ave", "LATITUDE": 39.967037, "LONGITUDE": -75.17115, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010134021.0, "Median Dwell Time": null, "Total Spend": 4258.0, "Total Transactions": 103.0, "Total Customers": 52.0, "Median Spend per Transaction": 39.91, "Median Spend per Customer": 64.78 }, "geometry": { "type": "Point", "coordinates": [ -75.17115, 39.967037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2200 Wheatsheaf Ln Ste E3", "LATITUDE": 39.999174, "LONGITUDE": -75.093264, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 96.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 3.0, "Total Spend": 620.0, "Total Transactions": 24.0, "Total Customers": 23.0, "Median Spend per Transaction": 15.7, "Median Spend per Customer": 26.7 }, "geometry": { "type": "Point", "coordinates": [ -75.093264, 39.999174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "Name": "Drury Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1311 Sansom St", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 136.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 145.0, "Total Spend": 48156.0, "Total Transactions": 1523.0, "Total Customers": 624.0, "Median Spend per Transaction": 23.69, "Median Spend per Customer": 55.39 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "Name": "Nordstrom Rack", "Category": "Clothing Stores", "Address": "1700 Chestnut St", "LATITUDE": 39.951246, "LONGITUDE": -75.168975, "DATE_RANGE_START": 2022, "Total Visits": 1612.0, "Total Visitors": 1345.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 16.0, "Total Spend": 90366.0, "Total Transactions": 1213.0, "Total Customers": 1087.0, "Median Spend per Transaction": 48.59, "Median Spend per Customer": 52.91 }, "geometry": { "type": "Point", "coordinates": [ -75.168975, 39.951246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg2-zs5", "Name": "Mount Airy Tap Room", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "300 W Mount Pleasant Ave", "LATITUDE": 40.053904, "LONGITUDE": -75.194197, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 37.0, "POI_CBG": 421010388004.0, "Median Dwell Time": 66.0, "Total Spend": 21598.0, "Total Transactions": 324.0, "Total Customers": 145.0, "Median Spend per Transaction": 59.59, "Median Spend per Customer": 103.03 }, "geometry": { "type": "Point", "coordinates": [ -75.194197, 40.053904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmb-xnq", "Name": "Sakura Mandarin", "Category": "Restaurants and Other Eating Places", "Address": "1038 Race St", "LATITUDE": 39.955481, "LONGITUDE": -75.157295, "DATE_RANGE_START": 2022, "Total Visits": 5082.0, "Total Visitors": 3631.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 34.0, "Total Spend": 267.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 29.05, "Median Spend per Customer": 41.18 }, "geometry": { "type": "Point", "coordinates": [ -75.157295, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg4-j9z", "Name": "G'town Sports", "Category": "Shoe Stores", "Address": "5620 Germantown Ave", "LATITUDE": 40.035551, "LONGITUDE": -75.174594, "DATE_RANGE_START": 2022, "Total Visits": 1185.0, "Total Visitors": 772.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 24.0, "Total Spend": 206.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 59.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174594, 40.035551 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "1711 Walnut St", "LATITUDE": 39.950226, "LONGITUDE": -75.169589, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 211.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 27659.0, "Total Transactions": 357.0, "Total Customers": 171.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 111.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169589, 39.950226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-whq", "Name": "Kick Axe Throwing", "Category": "Restaurants and Other Eating Places", "Address": "232 Market St", "LATITUDE": 39.94991, "LONGITUDE": -75.145059, "DATE_RANGE_START": 2022, "Total Visits": 3399.0, "Total Visitors": 2453.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 70.0, "Total Spend": 496.0, "Total Transactions": 12.0, "Total Customers": 9.0, "Median Spend per Transaction": 29.2, "Median Spend per Customer": 64.48 }, "geometry": { "type": "Point", "coordinates": [ -75.145059, 39.94991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "Name": "Spice Finch", "Category": "Restaurants and Other Eating Places", "Address": "220 S 17th St", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2022, "Total Visits": 2512.0, "Total Visitors": 1556.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 272.0, "Total Spend": 28430.0, "Total Transactions": 258.0, "Total Customers": 138.0, "Median Spend per Transaction": 68.04, "Median Spend per Customer": 124.34 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pjf-kvf", "Name": "Tailored Home", "Category": "Home Furnishings Stores", "Address": "8528 Germantown Ave", "LATITUDE": 40.076272, "LONGITUDE": -75.207332, "DATE_RANGE_START": 2022, "Total Visits": 443.0, "Total Visitors": 284.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 106.0, "Total Spend": 213.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 34.02, "Median Spend per Customer": 61.02 }, "geometry": { "type": "Point", "coordinates": [ -75.207332, 40.076272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "Name": "Pizza Boli's", "Category": "Restaurants and Other Eating Places", "Address": "3883 Glendale St", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010190001.0, "Median Dwell Time": null, "Total Spend": 336.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph6-whq", "Name": "Italian Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2035 N 63rd St", "LATITUDE": 39.986561, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 23.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 2.0, "Total Spend": 2159.0, "Total Transactions": 92.0, "Total Customers": 42.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "Name": "Sam's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5450 Rutland St", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 26.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 325.0, "Total Spend": 1942.0, "Total Transactions": 113.0, "Total Customers": 28.0, "Median Spend per Transaction": 14.61, "Median Spend per Customer": 34.28 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "1234 Locust St", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2022, "Total Visits": 779.0, "Total Visitors": 540.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 81.0, "Total Spend": 30496.0, "Total Transactions": 519.0, "Total Customers": 256.0, "Median Spend per Transaction": 51.4, "Median Spend per Customer": 98.6 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "Name": "The Capital Grille", "Category": "Restaurants and Other Eating Places", "Address": "1338 Chestnut St # 46", "LATITUDE": 39.950707, "LONGITUDE": -75.163622, "DATE_RANGE_START": 2022, "Total Visits": 423.0, "Total Visitors": 368.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 5.0, "Total Spend": 43581.0, "Total Transactions": 169.0, "Total Customers": 138.0, "Median Spend per Transaction": 192.27, "Median Spend per Customer": 210.28 }, "geometry": { "type": "Point", "coordinates": [ -75.163622, 39.950707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pnx-c89", "Name": "Cheu Fishtown", "Category": "Restaurants and Other Eating Places", "Address": "1416 Frankford Ave", "LATITUDE": 39.972312, "LONGITUDE": -75.134585, "DATE_RANGE_START": 2022, "Total Visits": 1038.0, "Total Visitors": 470.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 59.0, "Total Spend": 643.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 92.27, "Median Spend per Customer": 184.53 }, "geometry": { "type": "Point", "coordinates": [ -75.134585, 39.972312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6114 Lancaster Ave", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 73.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 5.0, "Total Spend": 740.0, "Total Transactions": 42.0, "Total Customers": 28.0, "Median Spend per Transaction": 18.59, "Median Spend per Customer": 21.57 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "329 Spring Garden St", "LATITUDE": 39.96142, "LONGITUDE": -75.144288, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 118.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 4.0, "Total Spend": 3975.0, "Total Transactions": 530.0, "Total Customers": 268.0, "Median Spend per Transaction": 6.52, "Median Spend per Customer": 9.07 }, "geometry": { "type": "Point", "coordinates": [ -75.144288, 39.96142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1528 Walnut St", "LATITUDE": 39.949521, "LONGITUDE": -75.167452, "DATE_RANGE_START": 2022, "Total Visits": 1167.0, "Total Visitors": 920.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 20.0, "Total Spend": 14738.0, "Total Transactions": 1650.0, "Total Customers": 1068.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 9.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167452, 39.949521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-d5f", "Name": "Philly's Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "5840 Harbison Ave", "LATITUDE": 40.020009, "LONGITUDE": -75.063793, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 82.0, "POI_CBG": 421010319003.0, "Median Dwell Time": 2.0, "Total Spend": 2400.0, "Total Transactions": 103.0, "Total Customers": 52.0, "Median Spend per Transaction": 20.51, "Median Spend per Customer": 42.1 }, "geometry": { "type": "Point", "coordinates": [ -75.063793, 40.020009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "Name": "Hair Fashion & Beyond", "Category": "Health and Personal Care Stores", "Address": "1600 N Broad St Ste 9", "LATITUDE": 39.978135, "LONGITUDE": -75.158545, "DATE_RANGE_START": 2022, "Total Visits": 516.0, "Total Visitors": 399.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 13.0, "Total Spend": 786.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 23.73, "Median Spend per Customer": 30.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158545, 39.978135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg4-47q", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "100 W Queen Ln", "LATITUDE": 40.030031, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2022, "Total Visits": 674.0, "Total Visitors": 409.0, "POI_CBG": 421010242001.0, "Median Dwell Time": 4.0, "Total Spend": 762.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 10.22, "Median Spend per Customer": 18.16 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 40.030031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kcq", "Name": "Silver Legends", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "2008 Walnut St", "LATITUDE": 39.950384, "LONGITUDE": -75.174268, "DATE_RANGE_START": 2022, "Total Visits": 355.0, "Total Visitors": 166.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 757.0, "Total Spend": 991.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174268, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-3yv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4701 N Mascher St", "LATITUDE": 40.022096, "LONGITUDE": -75.125775, "DATE_RANGE_START": 2022, "Total Visits": 408.0, "Total Visitors": 277.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 3.0, "Total Spend": 2821.0, "Total Transactions": 127.0, "Total Customers": 82.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 25.29 }, "geometry": { "type": "Point", "coordinates": [ -75.125775, 40.022096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6919 Torresdale Ave # 27", "LATITUDE": 40.026137, "LONGITUDE": -75.042321, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 193.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 3.0, "Total Spend": 471.0, "Total Transactions": 51.0, "Total Customers": 23.0, "Median Spend per Transaction": 7.55, "Median Spend per Customer": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.042321, 40.026137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1919 Market St Ste 150", "LATITUDE": 39.953745, "LONGITUDE": -75.172854, "DATE_RANGE_START": 2022, "Total Visits": 1953.0, "Total Visitors": 1389.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 21.0, "Total Spend": 15653.0, "Total Transactions": 932.0, "Total Customers": 612.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 13.39 }, "geometry": { "type": "Point", "coordinates": [ -75.172854, 39.953745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-6p9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6101 N Broad St", "LATITUDE": 40.046097, "LONGITUDE": -75.142598, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 200.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 4.0, "Total Spend": 13740.0, "Total Transactions": 631.0, "Total Customers": 430.0, "Median Spend per Transaction": 15.1, "Median Spend per Customer": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.142598, 40.046097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pm8-kxq", "Name": "Victory Beer Hall", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1100 Pattison Ave", "LATITUDE": 39.904214, "LONGITUDE": -75.169344, "DATE_RANGE_START": 2022, "Total Visits": 4518.0, "Total Visitors": 3836.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 61.0, "Total Spend": 53655.0, "Total Transactions": 1901.0, "Total Customers": 805.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 44.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169344, 39.904214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pj9-q4v", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "1624 W Olney Ave", "LATITUDE": 40.038777, "LONGITUDE": -75.149388, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 105.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 1047.0, "Total Spend": 1451.0, "Total Transactions": 85.0, "Total Customers": 30.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 25.52 }, "geometry": { "type": "Point", "coordinates": [ -75.149388, 40.038777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1675 S Columbus Blvd", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2022, "Total Visits": 7978.0, "Total Visitors": 5340.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 31.0, "Total Spend": 2852.0, "Total Transactions": 354.0, "Total Customers": 221.0, "Median Spend per Transaction": 6.74, "Median Spend per Customer": 8.96 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp4-syv", "Name": "Memphis Market & Grill", "Category": "Restaurants and Other Eating Places", "Address": "2327 E Huntingdon St", "LATITUDE": 39.98172, "LONGITUDE": -75.120871, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 49.0, "POI_CBG": 421010160001.0, "Median Dwell Time": 3.0, "Total Spend": 8299.0, "Total Transactions": 659.0, "Total Customers": 106.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.120871, 39.98172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "3900 City Ave", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2022, "Total Visits": 1608.0, "Total Visitors": 946.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 61.0, "Total Spend": 22593.0, "Total Transactions": 1326.0, "Total Customers": 812.0, "Median Spend per Transaction": 13.9, "Median Spend per Customer": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1618 Chestnut St # 22", "LATITUDE": 39.951061, "LONGITUDE": -75.168264, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 324.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 126.0, "Total Spend": 4940.0, "Total Transactions": 136.0, "Total Customers": 122.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.168264, 39.951061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-skf", "Name": "Good Dog Bar", "Category": "Restaurants and Other Eating Places", "Address": "224 S 15th St", "LATITUDE": 39.948847, "LONGITUDE": -75.166287, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 120.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 40.0, "Total Spend": 2631.0, "Total Transactions": 42.0, "Total Customers": 19.0, "Median Spend per Transaction": 55.18, "Median Spend per Customer": 146.72 }, "geometry": { "type": "Point", "coordinates": [ -75.166287, 39.948847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-5mk", "Name": "McGillin's Olde Ale House", "Category": "Restaurants and Other Eating Places", "Address": "1310 Drury St", "LATITUDE": 39.95021, "LONGITUDE": -75.162564, "DATE_RANGE_START": 2022, "Total Visits": 763.0, "Total Visitors": 678.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 39.0, "Total Spend": 126412.0, "Total Transactions": 4671.0, "Total Customers": 1619.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 54.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162564, 39.95021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "Name": "El Poquito", "Category": "Restaurants and Other Eating Places", "Address": "8201 Germantown Ave", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 57.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 36.0, "Total Spend": 10253.0, "Total Transactions": 125.0, "Total Customers": 75.0, "Median Spend per Transaction": 56.84, "Median Spend per Customer": 107.52 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-vmk", "Name": "E Frank Hopkins", "Category": "Restaurants and Other Eating Places", "Address": "3120 S 3rd St", "LATITUDE": 39.906965, "LONGITUDE": -75.154623, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 57.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 361.0, "Total Spend": 27619.0, "Total Transactions": 49.0, "Total Customers": 14.0, "Median Spend per Transaction": 241.2, "Median Spend per Customer": 482.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154623, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032189, "LONGITUDE": -75.214079, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 112.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 3.0, "Total Spend": 9741.0, "Total Transactions": 385.0, "Total Customers": 160.0, "Median Spend per Transaction": 22.13, "Median Spend per Customer": 44.09 }, "geometry": { "type": "Point", "coordinates": [ -75.214079, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "Name": "TGI Fridays", "Category": "Restaurants and Other Eating Places", "Address": "4000 City Ave", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2022, "Total Visits": 747.0, "Total Visitors": 678.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 42.0, "Total Spend": 24172.0, "Total Transactions": 479.0, "Total Customers": 422.0, "Median Spend per Transaction": 44.04, "Median Spend per Customer": 49.04 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "Name": "Ocean Harbor", "Category": "Restaurants and Other Eating Places", "Address": "1023 Race St", "LATITUDE": 39.95567, "LONGITUDE": -75.156821, "DATE_RANGE_START": 2022, "Total Visits": 4598.0, "Total Visitors": 3310.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 28.0, "Total Spend": 14321.0, "Total Transactions": 157.0, "Total Customers": 85.0, "Median Spend per Transaction": 76.05, "Median Spend per Customer": 130.02 }, "geometry": { "type": "Point", "coordinates": [ -75.156821, 39.95567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "Name": "Luke's Lobster", "Category": "Restaurants and Other Eating Places", "Address": "130 S 17th St", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 141.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 4.0, "Total Spend": 11156.0, "Total Transactions": 216.0, "Total Customers": 108.0, "Median Spend per Transaction": 42.23, "Median Spend per Customer": 77.76 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-wkz", "Name": "Samsonite Outlet", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1562 Franklin Mills Cir", "LATITUDE": 40.087661, "LONGITUDE": -74.961617, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 193.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 263.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 37.79, "Median Spend per Customer": 75.58 }, "geometry": { "type": "Point", "coordinates": [ -74.961617, 40.087661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "3901 Chestnut St", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 101.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 5.0, "Total Spend": 15059.0, "Total Transactions": 592.0, "Total Customers": 188.0, "Median Spend per Transaction": 18.42, "Median Spend per Customer": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-2c5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.073477, "LONGITUDE": -75.033695, "DATE_RANGE_START": 2022, "Total Visits": 411.0, "Total Visitors": 294.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 5034.0, "Total Transactions": 699.0, "Total Customers": 345.0, "Median Spend per Transaction": 6.58, "Median Spend per Customer": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.033695, 40.073477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-pj4-xwk", "Name": "Tribeca Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3509 N Broad St", "LATITUDE": 40.007053, "LONGITUDE": -75.151464, "DATE_RANGE_START": 2022, "Total Visits": 10615.0, "Total Visitors": 3632.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 331.0, "Total Spend": 5889.0, "Total Transactions": 632.0, "Total Customers": 199.0, "Median Spend per Transaction": 9.67, "Median Spend per Customer": 20.84 }, "geometry": { "type": "Point", "coordinates": [ -75.151464, 40.007053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "51 Bethlehem Pike", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 63.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 184.0, "Total Spend": 1981.0, "Total Transactions": 103.0, "Total Customers": 47.0, "Median Spend per Transaction": 15.97, "Median Spend per Customer": 32.56 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "Name": "China Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "2842 Saint Vincent St", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2022, "Total Visits": 634.0, "Total Visitors": 510.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 36.0, "Total Spend": 4474.0, "Total Transactions": 96.0, "Total Customers": 51.0, "Median Spend per Transaction": 39.83, "Median Spend per Customer": 71.55 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-st9", "Name": "Cantina Los Caballitos", "Category": "Restaurants and Other Eating Places", "Address": "1651 E Passyunk Ave", "LATITUDE": 39.928871, "LONGITUDE": -75.16446, "DATE_RANGE_START": 2022, "Total Visits": 246.0, "Total Visitors": 199.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 41.0, "Total Spend": 86613.0, "Total Transactions": 1510.0, "Total Customers": 720.0, "Median Spend per Transaction": 48.06, "Median Spend per Customer": 93.12 }, "geometry": { "type": "Point", "coordinates": [ -75.16446, 39.928871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pgb-tn5", "Name": "JC Food Market", "Category": "Grocery Stores", "Address": "600 N 11th St", "LATITUDE": 39.962905, "LONGITUDE": -75.15611, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 99.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 671.0, "Total Spend": 4346.0, "Total Transactions": 406.0, "Total Customers": 101.0, "Median Spend per Transaction": 9.49, "Median Spend per Customer": 26.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15611, 39.962905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "4424 N Broad St", "LATITUDE": 40.021127, "LONGITUDE": -75.149781, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 280.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 10.0, "Total Spend": 1567.0, "Total Transactions": 66.0, "Total Customers": 40.0, "Median Spend per Transaction": 14.11, "Median Spend per Customer": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.149781, 40.021127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm6-w49", "Name": "777 Supermarket", "Category": "Grocery Stores", "Address": "2849 Morris St", "LATITUDE": 39.9327, "LONGITUDE": -75.19274, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 68.0, "POI_CBG": 421010033005.0, "Median Dwell Time": 79.0, "Total Spend": 1581.0, "Total Transactions": 117.0, "Total Customers": 37.0, "Median Spend per Transaction": 12.07, "Median Spend per Customer": 32.24 }, "geometry": { "type": "Point", "coordinates": [ -75.19274, 39.9327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2201 W Allegheny Ave Ste 5", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 105.0, "POI_CBG": 421010171003.0, "Median Dwell Time": 6.0, "Total Spend": 2860.0, "Total Transactions": 136.0, "Total Customers": 122.0, "Median Spend per Transaction": 13.07, "Median Spend per Customer": 14.91 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5400 Rising Sun Ave Ste 11", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 232.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 6.0, "Total Spend": 8299.0, "Total Transactions": 416.0, "Total Customers": 300.0, "Median Spend per Transaction": 14.69, "Median Spend per Customer": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-wtv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7720 Bustleton Ave", "LATITUDE": 40.054812, "LONGITUDE": -75.054903, "DATE_RANGE_START": 2022, "Total Visits": 422.0, "Total Visitors": 343.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 6.0, "Total Spend": 8908.0, "Total Transactions": 364.0, "Total Customers": 287.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.054903, 40.054812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9990 Bustleton Ave", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2022, "Total Visits": 524.0, "Total Visitors": 456.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 3.0, "Total Spend": 12128.0, "Total Transactions": 216.0, "Total Customers": 160.0, "Median Spend per Transaction": 30.23, "Median Spend per Customer": 42.91 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7nq", "Name": "Bodega Bar", "Category": "Restaurants and Other Eating Places", "Address": "1223 Walnut St", "LATITUDE": 39.949277, "LONGITUDE": -75.161669, "DATE_RANGE_START": 2022, "Total Visits": 456.0, "Total Visitors": 240.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 255.0, "Total Spend": 16829.0, "Total Transactions": 256.0, "Total Customers": 113.0, "Median Spend per Transaction": 53.0, "Median Spend per Customer": 106.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161669, 39.949277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029917, "LONGITUDE": -75.0978, "DATE_RANGE_START": 2022, "Total Visits": 3573.0, "Total Visitors": 2199.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 19.0, "Total Spend": 79923.0, "Total Transactions": 618.0, "Total Customers": 373.0, "Median Spend per Transaction": 65.76, "Median Spend per Customer": 84.61 }, "geometry": { "type": "Point", "coordinates": [ -75.0978, 40.029917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22p@628-pmf-sqz", "Name": "Food Cart", "Category": "Restaurants and Other Eating Places", "Address": "16th St & Walnut St", "LATITUDE": 39.949977, "LONGITUDE": -75.167596, "DATE_RANGE_START": 2022, "Total Visits": 3209.0, "Total Visitors": 2516.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 22.0, "Total Spend": 184.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 41.95, "Median Spend per Customer": 52.93 }, "geometry": { "type": "Point", "coordinates": [ -75.167596, 39.949977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1801 John F Kennedy Blvd", "LATITUDE": 39.954574, "LONGITUDE": -75.169932, "DATE_RANGE_START": 2022, "Total Visits": 509.0, "Total Visitors": 333.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 81.0, "Total Spend": 29323.0, "Total Transactions": 697.0, "Total Customers": 307.0, "Median Spend per Transaction": 32.77, "Median Spend per Customer": 64.96 }, "geometry": { "type": "Point", "coordinates": [ -75.169932, 39.954574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "Name": "Spice 28", "Category": "Restaurants and Other Eating Places", "Address": "1228 Chestnut St", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 167.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 62.0, "Total Spend": 14430.0, "Total Transactions": 307.0, "Total Customers": 138.0, "Median Spend per Transaction": 33.62, "Median Spend per Customer": 68.58 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "Name": "Oyster House", "Category": "Restaurants and Other Eating Places", "Address": "1516 Sansom St", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2022, "Total Visits": 463.0, "Total Visitors": 402.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 43.0, "Total Spend": 93358.0, "Total Transactions": 749.0, "Total Customers": 376.0, "Median Spend per Transaction": 99.95, "Median Spend per Customer": 185.93 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "6842 Bustleton Ave", "LATITUDE": 40.041625, "LONGITUDE": -75.064814, "DATE_RANGE_START": 2022, "Total Visits": 157.0, "Total Visitors": 125.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 22.0, "Total Spend": 10584.0, "Total Transactions": 221.0, "Total Customers": 71.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 74.42 }, "geometry": { "type": "Point", "coordinates": [ -75.064814, 40.041625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-23v@628-pmb-835", "Name": "The Head Nut", "Category": "Specialty Food Stores", "Address": "51 N 12th St", "LATITUDE": 39.953175, "LONGITUDE": -75.159415, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 7912.0, "Total Transactions": 300.0, "Total Customers": 159.0, "Median Spend per Transaction": 21.25, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159415, 39.953175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "Name": "Yummy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1807 John F Kennedy Blvd", "LATITUDE": 39.954519, "LONGITUDE": -75.170234, "DATE_RANGE_START": 2022, "Total Visits": 364.0, "Total Visitors": 199.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 114.0, "Total Spend": 4406.0, "Total Transactions": 179.0, "Total Customers": 66.0, "Median Spend per Transaction": 16.04, "Median Spend per Customer": 53.36 }, "geometry": { "type": "Point", "coordinates": [ -75.170234, 39.954519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "Name": "Xi'an Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "4000 Chestnut St", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 190.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 83.0, "Total Spend": 965.0, "Total Transactions": 33.0, "Total Customers": 21.0, "Median Spend per Transaction": 27.73, "Median Spend per Customer": 37.83 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "Name": "Moonlight Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "6834 Limekiln Pike", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 75.0, "POI_CBG": 421010265004.0, "Median Dwell Time": 47.0, "Total Spend": 6287.0, "Total Transactions": 218.0, "Total Customers": 82.0, "Median Spend per Transaction": 22.88, "Median Spend per Customer": 60.32 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pmf-jd9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1628 Chestnut St # 36", "LATITUDE": 39.9512, "LONGITUDE": -75.168586, "DATE_RANGE_START": 2022, "Total Visits": 2033.0, "Total Visitors": 1413.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 327.0, "Total Spend": 37107.0, "Total Transactions": 2526.0, "Total Customers": 1505.0, "Median Spend per Transaction": 9.65, "Median Spend per Customer": 13.81 }, "geometry": { "type": "Point", "coordinates": [ -75.168586, 39.9512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2340 W Oregon Ave", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2022, "Total Visits": 535.0, "Total Visitors": 443.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 607.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 22.1, "Median Spend per Customer": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 129.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 2.0, "Total Spend": 401.0, "Total Transactions": 31.0, "Total Customers": 30.0, "Median Spend per Transaction": 12.25, "Median Spend per Customer": 14.83 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2022, "Total Visits": 664.0, "Total Visitors": 498.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 9392.0, "Total Transactions": 1146.0, "Total Customers": 544.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "242 Market St # 244", "LATITUDE": 39.949907, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2022, "Total Visits": 298.0, "Total Visitors": 242.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 2187.0, "Total Transactions": 204.0, "Total Customers": 124.0, "Median Spend per Transaction": 8.78, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.949907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2133 Cottman Ave", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2022, "Total Visits": 735.0, "Total Visitors": 615.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 7.0, "Total Spend": 14271.0, "Total Transactions": 751.0, "Total Customers": 601.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 16.89 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-phm-5s5", "Name": "Marathon", "Category": "Gasoline Stations", "Address": "1440 W Cheltenham Ave", "LATITUDE": 40.063884, "LONGITUDE": -75.140696, "DATE_RANGE_START": 2022, "Total Visits": 427.0, "Total Visitors": 308.0, "POI_CBG": 421010268001.0, "Median Dwell Time": 4.0, "Total Spend": 4153.0, "Total Transactions": 99.0, "Total Customers": 80.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 35.28 }, "geometry": { "type": "Point", "coordinates": [ -75.140696, 40.063884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2601 Penrose Ave", "LATITUDE": 39.907673, "LONGITUDE": -75.189086, "DATE_RANGE_START": 2022, "Total Visits": 2862.0, "Total Visitors": 2016.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 4.0, "Total Spend": 1191.0, "Total Transactions": 40.0, "Total Customers": 26.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 21.55 }, "geometry": { "type": "Point", "coordinates": [ -75.189086, 39.907673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-v2k", "Name": "Lane Bryant", "Category": "Clothing Stores", "Address": "1851 S Columbus Blvd", "LATITUDE": 39.923477, "LONGITUDE": -75.140627, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 186.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 10.0, "Total Spend": 357.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 44.98, "Median Spend per Customer": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -75.140627, 39.923477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029566, "LONGITUDE": -75.100398, "DATE_RANGE_START": 2022, "Total Visits": 801.0, "Total Visitors": 726.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 39.0, "Total Spend": 5468.0, "Total Transactions": 124.0, "Total Customers": 103.0, "Median Spend per Transaction": 33.96, "Median Spend per Customer": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.100398, 40.029566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-q9f", "Name": "BEL Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "10101 Verree Rd Ste C", "LATITUDE": 40.105145, "LONGITUDE": -75.032134, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 108.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 2.0, "Total Spend": 1286.0, "Total Transactions": 24.0, "Total Customers": 14.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032134, 40.105145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp4-kfz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2459 Kensington Ave", "LATITUDE": 39.987233, "LONGITUDE": -75.129676, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 129.0, "POI_CBG": 421010161004.0, "Median Dwell Time": 20.0, "Total Spend": 805.0, "Total Transactions": 47.0, "Total Customers": 31.0, "Median Spend per Transaction": 9.36, "Median Spend per Customer": 17.51 }, "geometry": { "type": "Point", "coordinates": [ -75.129676, 39.987233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@63s-dwg-2hq", "Name": "Ben's Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "6900 Lindbergh Blvd", "LATITUDE": 39.911529, "LONGITUDE": -75.228465, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 63.0, "POI_CBG": 421010061001.0, "Median Dwell Time": 358.0, "Total Spend": 101.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 29.12 }, "geometry": { "type": "Point", "coordinates": [ -75.228465, 39.911529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "8005 Ogontz Ave", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2022, "Total Visits": 1021.0, "Total Visitors": 796.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 4.0, "Total Spend": 20306.0, "Total Transactions": 685.0, "Total Customers": 439.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.933087, "LONGITUDE": -75.144618, "DATE_RANGE_START": 2022, "Total Visits": 1211.0, "Total Visitors": 697.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 2.0, "Total Spend": 16505.0, "Total Transactions": 2136.0, "Total Customers": 889.0, "Median Spend per Transaction": 6.36, "Median Spend per Customer": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -75.144618, 39.933087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-zfz", "Name": "Sweet Treat Hut", "Category": "Restaurants and Other Eating Places", "Address": "1221 S Broad St", "LATITUDE": 39.934878, "LONGITUDE": -75.167189, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 75.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 30.0, "Total Spend": 3243.0, "Total Transactions": 376.0, "Total Customers": 148.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.167189, 39.934878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "Name": "Microtel Inn and Suites", "Category": "Traveler Accommodation", "Address": "8840 Tinicum Blvd", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2022, "Total Visits": 1028.0, "Total Visitors": 448.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 506.0, "Total Spend": 4982.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 139.49, "Median Spend per Customer": 188.89 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmb-gzf", "Name": "Cloud Factory Hookah Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1201 Spruce St", "LATITUDE": 39.946776, "LONGITUDE": -75.161155, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 124.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 1.0, "Total Spend": 313.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 63.42, "Median Spend per Customer": 89.97 }, "geometry": { "type": "Point", "coordinates": [ -75.161155, 39.946776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-789", "Name": "The Wine Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5019 Baltimore Ave", "LATITUDE": 39.948078, "LONGITUDE": -75.224261, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 141.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 59.0, "Total Spend": 1184.0, "Total Transactions": 35.0, "Total Customers": 17.0, "Median Spend per Transaction": 30.75, "Median Spend per Customer": 61.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224261, 39.948078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-52k", "Name": "Indian Sizzler", "Category": "Restaurants and Other Eating Places", "Address": "3651 Lancaster Ave", "LATITUDE": 39.959458, "LONGITUDE": -75.194962, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 1.0, "Total Spend": 2095.0, "Total Transactions": 113.0, "Total Customers": 40.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.194962, 39.959458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Girard Ave", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 37.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 1.0, "Total Spend": 7144.0, "Total Transactions": 413.0, "Total Customers": 333.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 16.91 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "Name": "Canto House", "Category": "Restaurants and Other Eating Places", "Address": "941 Race St", "LATITUDE": 39.955533, "LONGITUDE": -75.155568, "DATE_RANGE_START": 2022, "Total Visits": 10046.0, "Total Visitors": 7164.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 15.0, "Total Spend": 2739.0, "Total Transactions": 91.0, "Total Customers": 47.0, "Median Spend per Transaction": 22.46, "Median Spend per Customer": 44.93 }, "geometry": { "type": "Point", "coordinates": [ -75.155568, 39.955533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmf-s3q", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "1745 South St", "LATITUDE": 39.944594, "LONGITUDE": -75.171766, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 28.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 1.0, "Total Spend": 9162.0, "Total Transactions": 796.0, "Total Customers": 308.0, "Median Spend per Transaction": 9.1, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171766, 39.944594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "Name": "Jack B Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "748 S 4th St", "LATITUDE": 39.939115, "LONGITUDE": -75.149838, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 37.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 3.0, "Total Spend": 5530.0, "Total Transactions": 66.0, "Total Customers": 33.0, "Median Spend per Transaction": 52.91, "Median Spend per Customer": 112.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149838, 39.939115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-d7q", "Name": "Alex's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "400 Leverington Ave", "LATITUDE": 40.034052, "LONGITUDE": -75.220933, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010213001.0, "Median Dwell Time": null, "Total Spend": 169.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 24.23, "Median Spend per Customer": 48.45 }, "geometry": { "type": "Point", "coordinates": [ -75.220933, 40.034052 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-ph5-wc5", "Name": "Four Seasons", "Category": "Traveler Accommodation", "Address": "1468 N 60th St", "LATITUDE": 39.97425, "LONGITUDE": -75.240201, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010101001.0, "Median Dwell Time": 3.0, "Total Spend": 10829.0, "Total Transactions": 341.0, "Total Customers": 153.0, "Median Spend per Transaction": 7.44, "Median Spend per Customer": 20.93 }, "geometry": { "type": "Point", "coordinates": [ -75.240201, 39.97425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "Name": "Papa Joe's", "Category": "Restaurants and Other Eating Places", "Address": "7204 Ogontz Ave", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 19.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 279.0, "Total Spend": 1108.0, "Total Transactions": 38.0, "Total Customers": 19.0, "Median Spend per Transaction": 17.42, "Median Spend per Customer": 32.24 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "Name": "Eyes Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "402 South St", "LATITUDE": 39.941491, "LONGITUDE": -75.149374, "DATE_RANGE_START": 2022, "Total Visits": 463.0, "Total Visitors": 448.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 15.0, "Total Spend": 3907.0, "Total Transactions": 89.0, "Total Customers": 45.0, "Median Spend per Transaction": 42.66, "Median Spend per Customer": 64.02 }, "geometry": { "type": "Point", "coordinates": [ -75.149374, 39.941491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-6x5", "Name": "The North Face", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1515 Walnut St", "LATITUDE": 39.949894, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 118.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 117.0, "Total Spend": 3463.0, "Total Transactions": 45.0, "Total Customers": 45.0, "Median Spend per Transaction": 53.5, "Median Spend per Customer": 53.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 W Hunting Park Ave", "LATITUDE": 40.008154, "LONGITUDE": -75.17322, "DATE_RANGE_START": 2022, "Total Visits": 218.0, "Total Visitors": 190.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 5.0, "Total Spend": 1168.0, "Total Transactions": 129.0, "Total Customers": 106.0, "Median Spend per Transaction": 7.45, "Median Spend per Customer": 7.99 }, "geometry": { "type": "Point", "coordinates": [ -75.17322, 40.008154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "Name": "Bourbon & Branch", "Category": "Restaurants and Other Eating Places", "Address": "705 N 2nd St", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 58.0, "Total Spend": 5447.0, "Total Transactions": 96.0, "Total Customers": 47.0, "Median Spend per Transaction": 44.81, "Median Spend per Customer": 93.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-m49", "Name": "Lincoln Chicken & Burger", "Category": "Restaurants and Other Eating Places", "Address": "801 E Chelten Ave", "LATITUDE": 40.045702, "LONGITUDE": -75.164907, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 24.0, "POI_CBG": 421010248002.0, "Median Dwell Time": 7.0, "Total Spend": 252.0, "Total Transactions": 24.0, "Total Customers": 10.0, "Median Spend per Transaction": 9.73, "Median Spend per Customer": 22.38 }, "geometry": { "type": "Point", "coordinates": [ -75.164907, 40.045702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-m6k", "Name": "Arch Street Lighting", "Category": "Home Furnishings Stores", "Address": "120 Arch St", "LATITUDE": 39.951738, "LONGITUDE": -75.142429, "DATE_RANGE_START": 2022, "Total Visits": 916.0, "Total Visitors": 631.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 516.0, "Total Spend": 3417.0, "Total Transactions": 16.0, "Total Customers": 7.0, "Median Spend per Transaction": 322.59, "Median Spend per Customer": 307.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142429, 39.951738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nyv", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1000 S Columbus Blvd", "LATITUDE": 39.931469, "LONGITUDE": -75.144907, "DATE_RANGE_START": 2022, "Total Visits": 399.0, "Total Visitors": 333.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 7.0, "Total Spend": 2325.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 215.08, "Median Spend per Customer": 215.08 }, "geometry": { "type": "Point", "coordinates": [ -75.144907, 39.931469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5700 Oxford Ave", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2022, "Total Visits": 287.0, "Total Visitors": 209.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 3.0, "Total Spend": 430.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 15.66, "Median Spend per Customer": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2201 Cottman Ave", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 174.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 5.0, "Total Spend": 2530.0, "Total Transactions": 77.0, "Total Customers": 61.0, "Median Spend per Transaction": 15.3, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9920 Bustleton Ave", "LATITUDE": 40.101484, "LONGITUDE": -75.030277, "DATE_RANGE_START": 2022, "Total Visits": 246.0, "Total Visitors": 226.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 5.0, "Total Spend": 1329.0, "Total Transactions": 16.0, "Total Customers": 5.0, "Median Spend per Transaction": 77.46, "Median Spend per Customer": 225.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030277, 40.101484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "Name": "Tires Plus", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "800 Franklin Mills Cir", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 131.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 3705.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 198.27, "Median Spend per Customer": 198.27 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "11725 Bustleton Ave", "LATITUDE": 40.119147, "LONGITUDE": -75.015143, "DATE_RANGE_START": 2022, "Total Visits": 4286.0, "Total Visitors": 2462.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 15.0, "Total Spend": 77367.0, "Total Transactions": 634.0, "Total Customers": 333.0, "Median Spend per Transaction": 43.18, "Median Spend per Customer": 53.93 }, "geometry": { "type": "Point", "coordinates": [ -75.015143, 40.119147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6150 N 5th St", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2022, "Total Visits": 493.0, "Total Visitors": 378.0, "POI_CBG": 421010275001.0, "Median Dwell Time": 8.0, "Total Spend": 7255.0, "Total Transactions": 427.0, "Total Customers": 232.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 17.7 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-j35", "Name": "18th Street Apothecary", "Category": "Health and Personal Care Stores", "Address": "113 S 18th St", "LATITUDE": 39.951252, "LONGITUDE": -75.170272, "DATE_RANGE_START": 2022, "Total Visits": 503.0, "Total Visitors": 362.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 33.0, "Total Spend": 2035.0, "Total Transactions": 33.0, "Total Customers": 17.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170272, 39.951252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "801 S Broad St", "LATITUDE": 39.940581, "LONGITUDE": -75.165835, "DATE_RANGE_START": 2022, "Total Visits": 1209.0, "Total Visitors": 826.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 4.0, "Total Spend": 1055.0, "Total Transactions": 56.0, "Total Customers": 31.0, "Median Spend per Transaction": 12.09, "Median Spend per Customer": 16.81 }, "geometry": { "type": "Point", "coordinates": [ -75.165835, 39.940581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "Name": "Windsor", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Spc 731", "LATITUDE": 40.08613, "LONGITUDE": -74.962864, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 307.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 31480.0, "Total Transactions": 289.0, "Total Customers": 206.0, "Median Spend per Transaction": 35.9, "Median Spend per Customer": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -74.962864, 40.08613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "Name": "iMunch Cafe", "Category": "Health and Personal Care Stores", "Address": "1233 N 31st St", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010137005.0, "Median Dwell Time": 3.0, "Total Spend": 1294.0, "Total Transactions": 23.0, "Total Customers": 9.0, "Median Spend per Transaction": 22.6, "Median Spend per Customer": 45.2 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgg-wff", "Name": "Carolina Market", "Category": "Grocery Stores", "Address": "2637 W Lehigh Ave", "LATITUDE": 39.996753, "LONGITUDE": -75.175067, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 24.0, "POI_CBG": 421010172022.0, "Median Dwell Time": 7.0, "Total Spend": 1450.0, "Total Transactions": 131.0, "Total Customers": 23.0, "Median Spend per Transaction": 9.09, "Median Spend per Customer": 36.4 }, "geometry": { "type": "Point", "coordinates": [ -75.175067, 39.996753 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-tn5", "Name": "Kusturiss Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "727 Sansom St", "LATITUDE": 39.948919, "LONGITUDE": -75.153588, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 338.0, "Total Spend": 518.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 74.4, "Median Spend per Customer": 148.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153588, 39.948919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p74-z75", "Name": "Seafood Bay Inc", "Category": "Restaurants and Other Eating Places", "Address": "8006 Frankford Ave", "LATITUDE": 40.041659, "LONGITUDE": -75.028001, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010331022.0, "Median Dwell Time": 3.0, "Total Spend": 1009.0, "Total Transactions": 54.0, "Total Customers": 23.0, "Median Spend per Transaction": 17.07, "Median Spend per Customer": 35.16 }, "geometry": { "type": "Point", "coordinates": [ -75.028001, 40.041659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "Name": "Trio Delight Cafe", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.037587, "LONGITUDE": -75.118044, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 38.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 9.0, "Total Spend": 2708.0, "Total Transactions": 141.0, "Total Customers": 45.0, "Median Spend per Transaction": 18.92, "Median Spend per Customer": 37.6 }, "geometry": { "type": "Point", "coordinates": [ -75.118044, 40.037587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-6zf", "Name": "Petes Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4074 Lancaster Ave", "LATITUDE": 39.964375, "LONGITUDE": -75.204736, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 16.0, "Total Spend": 3432.0, "Total Transactions": 148.0, "Total Customers": 84.0, "Median Spend per Transaction": 19.08, "Median Spend per Customer": 31.65 }, "geometry": { "type": "Point", "coordinates": [ -75.204736, 39.964375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6401 Oxford Ave Ste 11", "LATITUDE": 40.045558, "LONGITUDE": -75.087582, "DATE_RANGE_START": 2022, "Total Visits": 685.0, "Total Visitors": 422.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 10.0, "Total Spend": 13098.0, "Total Transactions": 613.0, "Total Customers": 449.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 18.38 }, "geometry": { "type": "Point", "coordinates": [ -75.087582, 40.045558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "Name": "Eye Encounters", "Category": "Health and Personal Care Stores", "Address": "1925 Chestnut St", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2022, "Total Visits": 4984.0, "Total Visitors": 3396.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 1031.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 75.0, "Median Spend per Customer": 154.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mx5", "Name": "Jos. A. Bank Clothiers", "Category": "Clothing Stores", "Address": "1650 Market St", "LATITUDE": 39.952606, "LONGITUDE": -75.168302, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 78.0, "Total Spend": 18593.0, "Total Transactions": 106.0, "Total Customers": 89.0, "Median Spend per Transaction": 112.0, "Median Spend per Customer": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168302, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "Name": "Gap Factory Store", "Category": "Clothing Stores", "Address": "2123 25 Cottman Avenue Space #40 & 41", "LATITUDE": 40.050036, "LONGITUDE": -75.06262, "DATE_RANGE_START": 2022, "Total Visits": 298.0, "Total Visitors": 251.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 19.0, "Total Spend": 2201.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 27.99, "Median Spend per Customer": 60.71 }, "geometry": { "type": "Point", "coordinates": [ -75.06262, 40.050036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "Name": "Burlington", "Category": "Clothing Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051298, "LONGITUDE": -75.065323, "DATE_RANGE_START": 2022, "Total Visits": 2239.0, "Total Visitors": 1758.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 31.0, "Total Spend": 1625.0, "Total Transactions": 42.0, "Total Customers": 33.0, "Median Spend per Transaction": 25.67, "Median Spend per Customer": 38.11 }, "geometry": { "type": "Point", "coordinates": [ -75.065323, 40.051298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23g@628-pmf-sqz", "Name": "New Balance Philadelphia", "Category": "Shoe Stores", "Address": "1615 Walnut St", "LATITUDE": 39.949971, "LONGITUDE": -75.168174, "DATE_RANGE_START": 2022, "Total Visits": 225.0, "Total Visitors": 172.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 31.0, "Total Spend": 5393.0, "Total Transactions": 44.0, "Total Customers": 40.0, "Median Spend per Transaction": 121.49, "Median Spend per Customer": 106.98 }, "geometry": { "type": "Point", "coordinates": [ -75.168174, 39.949971 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "1464 Philadelphia Mills", "LATITUDE": 40.087098, "LONGITUDE": -74.962333, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 376.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 1283.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 61.87, "Median Spend per Customer": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962333, 40.087098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vxq", "Name": "Liberty Bell Bicycle", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1901 S 13th St", "LATITUDE": 39.926446, "LONGITUDE": -75.166883, "DATE_RANGE_START": 2022, "Total Visits": 465.0, "Total Visitors": 129.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 1250.0, "Total Spend": 442.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 63.38, "Median Spend per Customer": 126.76 }, "geometry": { "type": "Point", "coordinates": [ -75.166883, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-hdv", "Name": "The Book Corner", "Category": "Book Stores and News Dealers", "Address": "311 N 20th St", "LATITUDE": 39.960171, "LONGITUDE": -75.171295, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 166.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 4.0, "Total Spend": 2368.0, "Total Transactions": 169.0, "Total Customers": 98.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 19.72 }, "geometry": { "type": "Point", "coordinates": [ -75.171295, 39.960171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p9q-yn5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1619 Grant Ave", "LATITUDE": 40.088065, "LONGITUDE": -75.037683, "DATE_RANGE_START": 2022, "Total Visits": 1160.0, "Total Visitors": 1033.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 93.0, "Total Spend": 485.0, "Total Transactions": 44.0, "Total Customers": 33.0, "Median Spend per Transaction": 8.95, "Median Spend per Customer": 8.85 }, "geometry": { "type": "Point", "coordinates": [ -75.037683, 40.088065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9355 Krewstown Rd", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2022, "Total Visits": 476.0, "Total Visitors": 335.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 8.0, "Total Spend": 461.0, "Total Transactions": 28.0, "Total Customers": 21.0, "Median Spend per Transaction": 14.76, "Median Spend per Customer": 10.62 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "Name": "Liberty Smokes", "Category": "Other Miscellaneous Store Retailers", "Address": "2740 S Front St", "LATITUDE": 39.912433, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 200.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 88.0, "Total Spend": 1611.0, "Total Transactions": 40.0, "Total Customers": 12.0, "Median Spend per Transaction": 36.93, "Median Spend per Customer": 114.04 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.912433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pp4-x3q", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2342 N Front St", "LATITUDE": 39.985931, "LONGITUDE": -75.132237, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 127.0, "POI_CBG": 421010163004.0, "Median Dwell Time": 3.0, "Total Spend": 517.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 15.99, "Median Spend per Customer": 15.15 }, "geometry": { "type": "Point", "coordinates": [ -75.132237, 39.985931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pm9-y9z", "Name": "Shyne Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "339 South St", "LATITUDE": 39.941833, "LONGITUDE": -75.148783, "DATE_RANGE_START": 2022, "Total Visits": 1202.0, "Total Visitors": 998.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 8.0, "Total Spend": 777623.0, "Total Transactions": 188.0, "Total Customers": 26.0, "Median Spend per Transaction": 5000.0, "Median Spend per Customer": 2376.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148783, 39.941833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "Name": "Dick's Sporting Goods", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "20 Franklin Mills Blvd", "LATITUDE": 40.085609, "LONGITUDE": -74.967208, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 305.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 18.0, "Total Spend": 313.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 67.51, "Median Spend per Customer": 89.94 }, "geometry": { "type": "Point", "coordinates": [ -74.967208, 40.085609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992425, "LONGITUDE": -75.101329, "DATE_RANGE_START": 2022, "Total Visits": 753.0, "Total Visitors": 564.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 19.0, "Total Spend": 6174.0, "Total Transactions": 143.0, "Total Customers": 117.0, "Median Spend per Transaction": 33.97, "Median Spend per Customer": 43.59 }, "geometry": { "type": "Point", "coordinates": [ -75.101329, 39.992425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pnw-mzf", "Name": "Cantina Dos Segundos", "Category": "Restaurants and Other Eating Places", "Address": "931 N 2nd St", "LATITUDE": 39.964821, "LONGITUDE": -75.140233, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 27.0, "Total Spend": 28380.0, "Total Transactions": 526.0, "Total Customers": 228.0, "Median Spend per Transaction": 45.7, "Median Spend per Customer": 104.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140233, 39.964821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22f@628-p9q-hqz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.07905, "LONGITUDE": -75.028048, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 826.0, "Total Transactions": 37.0, "Total Customers": 35.0, "Median Spend per Transaction": 18.76, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.028048, 40.07905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "Name": "Claire's", "Category": "Clothing Stores", "Address": "2329 Cottman Ave", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 54.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 54.0, "Total Spend": 5193.0, "Total Transactions": 145.0, "Total Customers": 141.0, "Median Spend per Transaction": 26.24, "Median Spend per Customer": 28.38 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-9pv", "Name": "The Buffalo House", "Category": "Restaurants and Other Eating Places", "Address": "8439 Frankford Ave", "LATITUDE": 40.043677, "LONGITUDE": -75.017847, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 40.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 7.0, "Total Spend": 2893.0, "Total Transactions": 117.0, "Total Customers": 51.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 41.8 }, "geometry": { "type": "Point", "coordinates": [ -75.017847, 40.043677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-fcq", "Name": "Yeager Hardware", "Category": "Building Material and Supplies Dealers", "Address": "1232 N 52nd St", "LATITUDE": 39.97236, "LONGITUDE": -75.226332, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 7.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 357.0, "Total Spend": 45248.0, "Total Transactions": 990.0, "Total Customers": 718.0, "Median Spend per Transaction": 15.84, "Median Spend per Customer": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.226332, 39.97236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "Name": "Brick House Bar & Grille", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3334 Grant Ave", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2022, "Total Visits": 467.0, "Total Visitors": 301.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 74.0, "Total Spend": 10694.0, "Total Transactions": 272.0, "Total Customers": 110.0, "Median Spend per Transaction": 33.25, "Median Spend per Customer": 74.0 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "2104 Market St", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2022, "Total Visits": 157.0, "Total Visitors": 139.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 39.0, "Total Spend": 1790.0, "Total Transactions": 96.0, "Total Customers": 49.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 30.75 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "6100 Frankford Ave", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 181.0, "POI_CBG": 421010317003.0, "Median Dwell Time": 7.0, "Total Spend": 10960.0, "Total Transactions": 751.0, "Total Customers": 509.0, "Median Spend per Transaction": 12.02, "Median Spend per Customer": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-228@628-pjf-jvz", "Name": "Tokyo Sushi", "Category": "Restaurants and Other Eating Places", "Address": "8229 Germantown Ave", "LATITUDE": 40.074121, "LONGITUDE": -75.202557, "DATE_RANGE_START": 2022, "Total Visits": 441.0, "Total Visitors": 301.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 63.0, "Total Spend": 10331.0, "Total Transactions": 260.0, "Total Customers": 91.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 54.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202557, 40.074121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm6-jn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "49 Snyder Ave", "LATITUDE": 39.921871, "LONGITUDE": -75.14714, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 108.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 765.0, "Total Transactions": 105.0, "Total Customers": 35.0, "Median Spend per Transaction": 6.72, "Median Spend per Customer": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.14714, 39.921871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pgb-7t9", "Name": "Plants Etc", "Category": "Florists", "Address": "2313 Fairmount Ave", "LATITUDE": 39.967525, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010136011.0, "Median Dwell Time": null, "Total Spend": 414.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 59.4, "Median Spend per Customer": 118.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.967525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "Name": "Thai Square Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2521 Christian St", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 9.0, "POI_CBG": 421010013005.0, "Median Dwell Time": 39.0, "Total Spend": 4071.0, "Total Transactions": 75.0, "Total Customers": 45.0, "Median Spend per Transaction": 44.77, "Median Spend per Customer": 69.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "Name": "Wah Gi Wah Halal", "Category": "Restaurants and Other Eating Places", "Address": "4447 Chestnut St", "LATITUDE": 39.956965, "LONGITUDE": -75.211135, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 20.0, "Total Spend": 3158.0, "Total Transactions": 33.0, "Total Customers": 16.0, "Median Spend per Transaction": 80.0, "Median Spend per Customer": 170.04 }, "geometry": { "type": "Point", "coordinates": [ -75.211135, 39.956965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-xnq", "Name": "Dim Sum Garden", "Category": "Restaurants and Other Eating Places", "Address": "1020 Race St", "LATITUDE": 39.955197, "LONGITUDE": -75.156774, "DATE_RANGE_START": 2022, "Total Visits": 514.0, "Total Visitors": 432.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 34.0, "Total Spend": 854.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 41.85, "Median Spend per Customer": 245.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156774, 39.955197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "Name": "Royal's Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "7802 Limekiln Pike", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 12.0, "Total Spend": 24183.0, "Total Transactions": 293.0, "Total Customers": 61.0, "Median Spend per Transaction": 123.38, "Median Spend per Customer": 51.18 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm3-vxq", "Name": "Noir Restaurant & Bar", "Category": "Restaurants and Other Eating Places", "Address": "1909 E Passyunk Ave", "LATITUDE": 39.926292, "LONGITUDE": -75.16736, "DATE_RANGE_START": 2022, "Total Visits": 624.0, "Total Visitors": 378.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 95.0, "Total Spend": 6515.0, "Total Transactions": 103.0, "Total Customers": 49.0, "Median Spend per Transaction": 48.21, "Median Spend per Customer": 101.56 }, "geometry": { "type": "Point", "coordinates": [ -75.16736, 39.926292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "Name": "Macaroni's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "9315 Old Bustleton Ave", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2022, "Total Visits": 397.0, "Total Visitors": 270.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 112.0, "Total Spend": 22165.0, "Total Transactions": 214.0, "Total Customers": 108.0, "Median Spend per Transaction": 91.06, "Median Spend per Customer": 167.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfz-bzf", "Name": "Chabaa Thai Bistro", "Category": "Restaurants and Other Eating Places", "Address": "4343 Main St", "LATITUDE": 40.025611, "LONGITUDE": -75.223488, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 94.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 39.0, "Total Spend": 10821.0, "Total Transactions": 171.0, "Total Customers": 85.0, "Median Spend per Transaction": 58.44, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223488, 40.025611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "Name": "Dim Sum & Noodle", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 104", "LATITUDE": 39.962276, "LONGITUDE": -75.172659, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 26.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 122.0, "Total Spend": 6144.0, "Total Transactions": 209.0, "Total Customers": 92.0, "Median Spend per Transaction": 23.22, "Median Spend per Customer": 48.45 }, "geometry": { "type": "Point", "coordinates": [ -75.172659, 39.962276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "Name": "Gennaro's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1315 Bainbridge St", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 6.0, "Total Spend": 3757.0, "Total Transactions": 223.0, "Total Customers": 91.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 29.76 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "Name": "Pho Don", "Category": "Restaurants and Other Eating Places", "Address": "3528 Germantown Ave", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 44.0, "Total Spend": 1773.0, "Total Transactions": 94.0, "Total Customers": 42.0, "Median Spend per Transaction": 15.72, "Median Spend per Customer": 30.51 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "Name": "Pac A Deli", "Category": "Grocery Stores", "Address": "1200 Walnut St", "LATITUDE": 39.948693, "LONGITUDE": -75.160788, "DATE_RANGE_START": 2022, "Total Visits": 294.0, "Total Visitors": 240.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 2.0, "Total Spend": 24756.0, "Total Transactions": 1291.0, "Total Customers": 312.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 37.16 }, "geometry": { "type": "Point", "coordinates": [ -75.160788, 39.948693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-kmk", "Name": "A Plus Mini Mart", "Category": "Grocery Stores", "Address": "1300 N Broad St", "LATITUDE": 39.97357, "LONGITUDE": -75.159507, "DATE_RANGE_START": 2022, "Total Visits": 286.0, "Total Visitors": 228.0, "POI_CBG": 421010140003.0, "Median Dwell Time": 3.0, "Total Spend": 192.0, "Total Transactions": 37.0, "Total Customers": 17.0, "Median Spend per Transaction": 3.64, "Median Spend per Customer": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.159507, 39.97357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-n3q", "Name": "Double Connect", "Category": "Electronics and Appliance Stores", "Address": "5130 Market St", "LATITUDE": 39.959668, "LONGITUDE": -75.224073, "DATE_RANGE_START": 2022, "Total Visits": 14863.0, "Total Visitors": 5896.0, "POI_CBG": 421010085001.0, "Median Dwell Time": 41.0, "Total Spend": 599.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 84.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224073, 39.959668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pg8-jjv", "Name": "Deborah's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2608 W Girard Ave", "LATITUDE": 39.97383, "LONGITUDE": -75.179259, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 47.0, "Total Spend": 273.0, "Total Transactions": 9.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.14, "Median Spend per Customer": 78.25 }, "geometry": { "type": "Point", "coordinates": [ -75.179259, 39.97383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pj6-435", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "5694 Rising Sun Ave", "LATITUDE": 40.040276, "LONGITUDE": -75.109025, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 124.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 2.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.55, "Median Spend per Customer": 7.55 }, "geometry": { "type": "Point", "coordinates": [ -75.109025, 40.040276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "101 S 52nd St", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2022, "Total Visits": 652.0, "Total Visitors": 443.0, "POI_CBG": 421010085001.0, "Median Dwell Time": 8.0, "Total Spend": 11371.0, "Total Transactions": 880.0, "Total Customers": 620.0, "Median Spend per Transaction": 11.62, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgg-yvz", "Name": "Favors", "Category": "Restaurants and Other Eating Places", "Address": "2867 N Taylor St", "LATITUDE": 39.9991, "LONGITUDE": -75.171017, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010172024.0, "Median Dwell Time": 24.0, "Total Spend": 98.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.171017, 39.9991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-49z", "Name": "Greek From Greece", "Category": "Restaurants and Other Eating Places", "Address": "107 N 33rd St", "LATITUDE": 39.957922, "LONGITUDE": -75.188878, "DATE_RANGE_START": 2022, "Total Visits": 1227.0, "Total Visitors": 449.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 100.0, "Total Spend": 167.0, "Total Transactions": 17.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.38, "Median Spend per Customer": 26.9 }, "geometry": { "type": "Point", "coordinates": [ -75.188878, 39.957922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pm3-vs5", "Name": "Mike & Matt's Italian Market", "Category": "Grocery Stores", "Address": "1206 Mifflin St", "LATITUDE": 39.926268, "LONGITUDE": -75.165968, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 21.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 4.0, "Total Spend": 777.0, "Total Transactions": 68.0, "Total Customers": 35.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165968, 39.926268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pmf-jd9", "Name": "SoBol Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "46 S 17th St", "LATITUDE": 39.951746, "LONGITUDE": -75.168892, "DATE_RANGE_START": 2022, "Total Visits": 3983.0, "Total Visitors": 3178.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 5.0, "Total Spend": 2565.0, "Total Transactions": 169.0, "Total Customers": 75.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.168892, 39.951746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "Name": "Head House Books", "Category": "Book Stores and News Dealers", "Address": "619 S 2nd St", "LATITUDE": 39.940599, "LONGITUDE": -75.145587, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010016002.0, "Median Dwell Time": null, "Total Spend": 6521.0, "Total Transactions": 171.0, "Total Customers": 87.0, "Median Spend per Transaction": 36.03, "Median Spend per Customer": 63.71 }, "geometry": { "type": "Point", "coordinates": [ -75.145587, 39.940599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg9-b8v", "Name": "Dragon Express", "Category": "Restaurants and Other Eating Places", "Address": "2400 Ridge Ave", "LATITUDE": 39.981544, "LONGITUDE": -75.174071, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010149001.0, "Median Dwell Time": 2.0, "Total Spend": 1291.0, "Total Transactions": 54.0, "Total Customers": 23.0, "Median Spend per Transaction": 26.73, "Median Spend per Customer": 63.62 }, "geometry": { "type": "Point", "coordinates": [ -75.174071, 39.981544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-9cq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3437 Walnut St", "LATITUDE": 39.953242, "LONGITUDE": -75.19352, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 132.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 104.0, "Total Spend": 8621.0, "Total Transactions": 1500.0, "Total Customers": 620.0, "Median Spend per Transaction": 4.74, "Median Spend per Customer": 7.54 }, "geometry": { "type": "Point", "coordinates": [ -75.19352, 39.953242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pj4-t7q", "Name": "Nexcare Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2941 N 5th St", "LATITUDE": 39.996106, "LONGITUDE": -75.13916, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010176012.0, "Median Dwell Time": 2.0, "Total Spend": 288.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 7.95, "Median Spend per Customer": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13916, 39.996106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "Name": "Hunan Palace", "Category": "Restaurants and Other Eating Places", "Address": "6118 Lancaster Ave", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 89.0, "Total Spend": 3926.0, "Total Transactions": 202.0, "Total Customers": 91.0, "Median Spend per Transaction": 15.76, "Median Spend per Customer": 32.3 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1142 Crease St", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 1.0, "Total Spend": 6283.0, "Total Transactions": 146.0, "Total Customers": 78.0, "Median Spend per Transaction": 39.93, "Median Spend per Customer": 65.44 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "Name": "Papa Nick's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "199 W Godfrey Ave", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 23.0, "POI_CBG": 421010272003.0, "Median Dwell Time": 34.0, "Total Spend": 8085.0, "Total Transactions": 315.0, "Total Customers": 145.0, "Median Spend per Transaction": 24.01, "Median Spend per Customer": 45.22 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "Name": "John's Diner", "Category": "Restaurants and Other Eating Places", "Address": "119 E Chelten Ave", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 14.0, "Total Spend": 702.0, "Total Transactions": 49.0, "Total Customers": 23.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "Name": "M & M Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2736 E Allegheny Ave", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 26.0, "Total Spend": 1950.0, "Total Transactions": 64.0, "Total Customers": 31.0, "Median Spend per Transaction": 22.5, "Median Spend per Customer": 54.58 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phn-9fz", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "1503 E Wadsworth Ave Ste A", "LATITUDE": 40.079281, "LONGITUDE": -75.174174, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 1.0, "Total Spend": 775.0, "Total Transactions": 37.0, "Total Customers": 17.0, "Median Spend per Transaction": 17.75, "Median Spend per Customer": 42.7 }, "geometry": { "type": "Point", "coordinates": [ -75.174174, 40.079281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "Name": "Sweet Creations Unlimited", "Category": "Specialty Food Stores", "Address": "5940 Torresdale Ave", "LATITUDE": 40.017723, "LONGITUDE": -75.059702, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010321003.0, "Median Dwell Time": 52.0, "Total Spend": 859.0, "Total Transactions": 19.0, "Total Customers": 12.0, "Median Spend per Transaction": 22.38, "Median Spend per Customer": 33.26 }, "geometry": { "type": "Point", "coordinates": [ -75.059702, 40.017723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-yd9", "Name": "Essene Market & Cafe", "Category": "Health and Personal Care Stores", "Address": "719 S 4th St", "LATITUDE": 39.940035, "LONGITUDE": -75.149067, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 23.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 2.0, "Total Spend": 42.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.68, "Median Spend per Customer": 12.07 }, "geometry": { "type": "Point", "coordinates": [ -75.149067, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "919A Levick St", "LATITUDE": 40.045256, "LONGITUDE": -75.086611, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 246.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 5.0, "Total Spend": 510.0, "Total Transactions": 23.0, "Total Customers": 19.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.086611, 40.045256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "Name": "Easy Pickins", "Category": "Clothing Stores", "Address": "1207 Chestnut St", "LATITUDE": 39.950651, "LONGITUDE": -75.160672, "DATE_RANGE_START": 2022, "Total Visits": 268.0, "Total Visitors": 237.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 20605.0, "Total Transactions": 542.0, "Total Customers": 258.0, "Median Spend per Transaction": 25.52, "Median Spend per Customer": 51.05 }, "geometry": { "type": "Point", "coordinates": [ -75.160672, 39.950651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8b-cbk", "Name": "Smoker's Palace", "Category": "Other Miscellaneous Store Retailers", "Address": "6301 Keystone St", "LATITUDE": 40.017474, "LONGITUDE": -75.051228, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010323001.0, "Median Dwell Time": null, "Total Spend": 8148.0, "Total Transactions": 347.0, "Total Customers": 92.0, "Median Spend per Transaction": 20.22, "Median Spend per Customer": 59.36 }, "geometry": { "type": "Point", "coordinates": [ -75.051228, 40.017474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "Name": "Curran's Irish Inn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6900 State Rd", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 157.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 61.0, "Total Spend": 4445.0, "Total Transactions": 84.0, "Total Customers": 42.0, "Median Spend per Transaction": 42.63, "Median Spend per Customer": 85.25 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "Name": "So Korean Grill", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St Ste 120", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2022, "Total Visits": 847.0, "Total Visitors": 660.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 22.0, "Total Spend": 18819.0, "Total Transactions": 145.0, "Total Customers": 84.0, "Median Spend per Transaction": 110.78, "Median Spend per Customer": 207.22 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7065 Lincoln Dr", "LATITUDE": 40.054006, "LONGITUDE": -75.193227, "DATE_RANGE_START": 2022, "Total Visits": 274.0, "Total Visitors": 230.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 5.0, "Total Spend": 15979.0, "Total Transactions": 552.0, "Total Customers": 338.0, "Median Spend per Transaction": 13.6, "Median Spend per Customer": 21.56 }, "geometry": { "type": "Point", "coordinates": [ -75.193227, 40.054006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "Name": "Platinum", "Category": "Clothing Stores", "Address": "526 South St", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 96.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 32.0, "Total Spend": 12000.0, "Total Transactions": 49.0, "Total Customers": 28.0, "Median Spend per Transaction": 291.5, "Median Spend per Customer": 535.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "Name": "Bruno's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1838 W Cheltenham Ave", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 56.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 4.0, "Total Spend": 736.0, "Total Transactions": 31.0, "Total Customers": 16.0, "Median Spend per Transaction": 16.37, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "Name": "Khyber Pass Pub", "Category": "Restaurants and Other Eating Places", "Address": "56 S 2nd St", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2022, "Total Visits": 282.0, "Total Visitors": 267.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 30.0, "Total Spend": 37882.0, "Total Transactions": 841.0, "Total Customers": 425.0, "Median Spend per Transaction": 36.3, "Median Spend per Customer": 67.79 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "Name": "Asian Bamboo House", "Category": "Restaurants and Other Eating Places", "Address": "9456 State Rd", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 118.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 7.0, "Total Spend": 5428.0, "Total Transactions": 223.0, "Total Customers": 87.0, "Median Spend per Transaction": 22.25, "Median Spend per Customer": 53.33 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "9475 Roosevelt Blvd Ste 8", "LATITUDE": 40.079117, "LONGITUDE": -75.027659, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 75.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 138.0, "Total Spend": 3081.0, "Total Transactions": 19.0, "Total Customers": 9.0, "Median Spend per Transaction": 27.32, "Median Spend per Customer": 26.24 }, "geometry": { "type": "Point", "coordinates": [ -75.027659, 40.079117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm4-pvz", "Name": "George's Sandwich Shop", "Category": "Restaurants and Other Eating Places", "Address": "900 S 9th St", "LATITUDE": 39.938819, "LONGITUDE": -75.157978, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 91.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 1.0, "Total Spend": 686.0, "Total Transactions": 56.0, "Total Customers": 30.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157978, 39.938819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm4-b6k", "Name": "Two Eagles Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 20th St", "LATITUDE": 39.934031, "LONGITUDE": -75.177208, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 21.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 2.0, "Total Spend": 5201.0, "Total Transactions": 200.0, "Total Customers": 78.0, "Median Spend per Transaction": 21.38, "Median Spend per Customer": 54.42 }, "geometry": { "type": "Point", "coordinates": [ -75.177208, 39.934031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-gp9", "Name": "Jay's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1228 Spruce St", "LATITUDE": 39.946457, "LONGITUDE": -75.162475, "DATE_RANGE_START": 2022, "Total Visits": 517.0, "Total Visitors": 340.0, "POI_CBG": 421010011014.0, "Median Dwell Time": 311.0, "Total Spend": 74.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.09, "Median Spend per Customer": 21.22 }, "geometry": { "type": "Point", "coordinates": [ -75.162475, 39.946457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-hdv", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "2800 Fox St", "LATITUDE": 40.009459, "LONGITUDE": -75.174254, "DATE_RANGE_START": 2022, "Total Visits": 1599.0, "Total Visitors": 1010.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 19.0, "Total Spend": 1474.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 64.87, "Median Spend per Customer": 45.94 }, "geometry": { "type": "Point", "coordinates": [ -75.174254, 40.009459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dtn-hqz", "Name": "Bruegger's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.89519, "LONGITUDE": -75.227949, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 2.0, "Total Spend": 5028.0, "Total Transactions": 389.0, "Total Customers": 357.0, "Median Spend per Transaction": 10.6, "Median Spend per Customer": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.227949, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg9-cyv", "Name": "Mercado Food Market", "Category": "Grocery Stores", "Address": "1859 N Van Pelt St", "LATITUDE": 39.983185, "LONGITUDE": -75.169254, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 28.0, "POI_CBG": 421010152004.0, "Median Dwell Time": 3.0, "Total Spend": 3598.0, "Total Transactions": 348.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 52.15 }, "geometry": { "type": "Point", "coordinates": [ -75.169254, 39.983185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "Name": "Atomic City Comics", "Category": "Book Stores and News Dealers", "Address": "638 South St", "LATITUDE": 39.942034, "LONGITUDE": -75.153458, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 103.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 11.0, "Total Spend": 4916.0, "Total Transactions": 98.0, "Total Customers": 45.0, "Median Spend per Transaction": 45.88, "Median Spend per Customer": 68.55 }, "geometry": { "type": "Point", "coordinates": [ -75.153458, 39.942034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "2360 W Oregon Ave", "LATITUDE": 39.918005, "LONGITUDE": -75.188849, "DATE_RANGE_START": 2022, "Total Visits": 404.0, "Total Visitors": 312.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 15.0, "Total Spend": 9846.0, "Total Transactions": 226.0, "Total Customers": 186.0, "Median Spend per Transaction": 28.07, "Median Spend per Customer": 29.55 }, "geometry": { "type": "Point", "coordinates": [ -75.188849, 39.918005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "10000 Bustleton Ave", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2022, "Total Visits": 1045.0, "Total Visitors": 789.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 5.0, "Total Spend": 3822.0, "Total Transactions": 150.0, "Total Customers": 122.0, "Median Spend per Transaction": 15.84, "Median Spend per Customer": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-3nq", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "399 Franklin Mills Cir", "LATITUDE": 40.084019, "LONGITUDE": -74.96509, "DATE_RANGE_START": 2022, "Total Visits": 474.0, "Total Visitors": 415.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 419.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -74.96509, 40.084019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "416 N 63rd St # 36", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 221.0, "POI_CBG": 421010101005.0, "Median Dwell Time": 2.0, "Total Spend": 6774.0, "Total Transactions": 761.0, "Total Customers": 422.0, "Median Spend per Transaction": 7.65, "Median Spend per Customer": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-225@63s-dvy-89z", "Name": "The Satellite Cafe", "Category": "Restaurants and Other Eating Places", "Address": "701 S 50th St", "LATITUDE": 39.947724, "LONGITUDE": -75.222685, "DATE_RANGE_START": 2022, "Total Visits": 436.0, "Total Visitors": 321.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 16.0, "Total Spend": 1236.0, "Total Transactions": 110.0, "Total Customers": 59.0, "Median Spend per Transaction": 9.64, "Median Spend per Customer": 15.67 }, "geometry": { "type": "Point", "coordinates": [ -75.222685, 39.947724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-kj9", "Name": "Sassafras Market", "Category": "Grocery Stores", "Address": "163 N 3rd St", "LATITUDE": 39.953897, "LONGITUDE": -75.14465, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 94.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 1.0, "Total Spend": 22808.0, "Total Transactions": 1361.0, "Total Customers": 336.0, "Median Spend per Transaction": 12.54, "Median Spend per Customer": 36.07 }, "geometry": { "type": "Point", "coordinates": [ -75.14465, 39.953897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pgh-vs5", "Name": "Foot Long Truck", "Category": "Restaurants and Other Eating Places", "Address": "12th St And Norris St", "LATITUDE": 39.983008, "LONGITUDE": -75.153324, "DATE_RANGE_START": 2022, "Total Visits": 434.0, "Total Visitors": 226.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 162.0, "Total Spend": 1583.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 123.0, "Median Spend per Customer": 246.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153324, 39.983008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 Walnut St", "LATITUDE": 39.948446, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 174.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 14.0, "Total Spend": 5397.0, "Total Transactions": 915.0, "Total Customers": 423.0, "Median Spend per Transaction": 5.05, "Median Spend per Customer": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.948446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7261 Roosevelt Blvd", "LATITUDE": 40.043988, "LONGITUDE": -75.054077, "DATE_RANGE_START": 2022, "Total Visits": 3005.0, "Total Visitors": 2117.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 4.0, "Total Spend": 674.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 33.76, "Median Spend per Customer": 51.9 }, "geometry": { "type": "Point", "coordinates": [ -75.054077, 40.043988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-j5f", "Name": "Poppy's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8229 Germantown Ave", "LATITUDE": 40.074185, "LONGITUDE": -75.202466, "DATE_RANGE_START": 2022, "Total Visits": 441.0, "Total Visitors": 301.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 63.0, "Total Spend": 1548.0, "Total Transactions": 193.0, "Total Customers": 77.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.202466, 40.074185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5s5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1201 Chestnut St", "LATITUDE": 39.950566, "LONGITUDE": -75.160281, "DATE_RANGE_START": 2022, "Total Visits": 800.0, "Total Visitors": 686.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 1822.0, "Total Transactions": 183.0, "Total Customers": 113.0, "Median Spend per Transaction": 9.07, "Median Spend per Customer": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.160281, 39.950566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-94v", "Name": "Torrid", "Category": "Clothing Stores", "Address": "1001 Market St Unit 2030", "LATITUDE": 39.952222, "LONGITUDE": -75.156836, "DATE_RANGE_START": 2022, "Total Visits": 21494.0, "Total Visitors": 13739.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 33.0, "Total Spend": 4807.0, "Total Transactions": 51.0, "Total Customers": 42.0, "Median Spend per Transaction": 62.05, "Median Spend per Customer": 62.03 }, "geometry": { "type": "Point", "coordinates": [ -75.156836, 39.952222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8220 Bartram Ave", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2022, "Total Visits": 1673.0, "Total Visitors": 1277.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 2.0, "Total Spend": 206155.0, "Total Transactions": 9619.0, "Total Customers": 4551.0, "Median Spend per Transaction": 14.19, "Median Spend per Customer": 24.89 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1500 Spruce St", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2022, "Total Visits": 1033.0, "Total Visitors": 629.0, "POI_CBG": 421010012021.0, "Median Dwell Time": 20.0, "Total Spend": 37005.0, "Total Transactions": 2176.0, "Total Customers": 1037.0, "Median Spend per Transaction": 9.52, "Median Spend per Customer": 18.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-94v", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1001 Market St Unit C065", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2022, "Total Visits": 21494.0, "Total Visitors": 13739.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 33.0, "Total Spend": 10814.0, "Total Transactions": 157.0, "Total Customers": 136.0, "Median Spend per Transaction": 42.63, "Median Spend per Customer": 50.14 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24p-222@628-pmf-kcq", "Name": "Liberty Art & Framing", "Category": "Home Furnishings Stores", "Address": "136 S 20th St", "LATITUDE": 39.950849, "LONGITUDE": -75.173904, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 159.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 11.0, "Total Spend": 10796.0, "Total Transactions": 21.0, "Total Customers": 5.0, "Median Spend per Transaction": 654.48, "Median Spend per Customer": 896.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173904, 39.950849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993729, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 106.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 3.0, "Total Spend": 3719.0, "Total Transactions": 105.0, "Total Customers": 91.0, "Median Spend per Transaction": 8.13, "Median Spend per Customer": 9.23 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.993729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-syv", "Name": "Tony's Auto Service", "Category": "Gasoline Stations", "Address": "711 W Oregon Ave", "LATITUDE": 39.915674, "LONGITUDE": -75.160462, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 31.0, "POI_CBG": 421010041022.0, "Median Dwell Time": 118.0, "Total Spend": 284.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 12.1, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.160462, 39.915674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgy-p5f", "Name": "Roxy Gas & Snacks", "Category": "Gasoline Stations", "Address": "7728 Ridge Ave", "LATITUDE": 40.052502, "LONGITUDE": -75.236583, "DATE_RANGE_START": 2022, "Total Visits": 1098.0, "Total Visitors": 552.0, "POI_CBG": 421010219001.0, "Median Dwell Time": 3.0, "Total Spend": 72.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.61, "Median Spend per Customer": 20.61 }, "geometry": { "type": "Point", "coordinates": [ -75.236583, 40.052502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-6x5", "Name": "Brooks Brothers", "Category": "Clothing Stores", "Address": "1513 Walnut St", "LATITUDE": 39.949887, "LONGITUDE": -75.166618, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 145.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 3865.0, "Total Transactions": 23.0, "Total Customers": 21.0, "Median Spend per Transaction": 148.8, "Median Spend per Customer": 186.1 }, "geometry": { "type": "Point", "coordinates": [ -75.166618, 39.949887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-249", "Name": "On Point Bistro", "Category": "Restaurants and Other Eating Places", "Address": "1200 Point Breeze Ave", "LATITUDE": 39.937259, "LONGITUDE": -75.177106, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 35.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 36.0, "Total Spend": 5630.0, "Total Transactions": 117.0, "Total Customers": 61.0, "Median Spend per Transaction": 51.84, "Median Spend per Customer": 88.96 }, "geometry": { "type": "Point", "coordinates": [ -75.177106, 39.937259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj9-6p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5810 N Broad St", "LATITUDE": 40.042256, "LONGITUDE": -75.144223, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 159.0, "POI_CBG": 421010278002.0, "Median Dwell Time": 3.0, "Total Spend": 476.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 22.54, "Median Spend per Customer": 22.54 }, "geometry": { "type": "Point", "coordinates": [ -75.144223, 40.042256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj4-y7q", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "3600 Germantown Ave", "LATITUDE": 40.007623, "LONGITUDE": -75.150494, "DATE_RANGE_START": 2022, "Total Visits": 270.0, "Total Visitors": 216.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 212.0, "Total Spend": 6177.0, "Total Transactions": 57.0, "Total Customers": 49.0, "Median Spend per Transaction": 110.0, "Median Spend per Customer": 112.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150494, 40.007623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "Name": "The Ritz-Carlton", "Category": "Traveler Accommodation", "Address": "10 Avenue of the Arts", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2022, "Total Visits": 10415.0, "Total Visitors": 7589.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 121.0, "Total Spend": 27488.0, "Total Transactions": 71.0, "Total Customers": 56.0, "Median Spend per Transaction": 252.32, "Median Spend per Customer": 303.13 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7265 Castor Ave", "LATITUDE": 40.050926, "LONGITUDE": -75.066019, "DATE_RANGE_START": 2022, "Total Visits": 1568.0, "Total Visitors": 1103.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 3.0, "Total Spend": 1050.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 32.49 }, "geometry": { "type": "Point", "coordinates": [ -75.066019, 40.050926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-9fz", "Name": "D M Food Market", "Category": "Grocery Stores", "Address": "2201 W Oxford St", "LATITUDE": 39.979141, "LONGITUDE": -75.171311, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 3.0, "Total Spend": 2377.0, "Total Transactions": 294.0, "Total Customers": 54.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 32.98 }, "geometry": { "type": "Point", "coordinates": [ -75.171311, 39.979141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-jqf", "Name": "Brewers Outlet Of Mt Airy & Chestnut Hill", "Category": "Beer, Wine, and Liquor Stores", "Address": "7401 Germantown Ave", "LATITUDE": 40.063253, "LONGITUDE": -75.192693, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 99.0, "POI_CBG": 421010256003.0, "Median Dwell Time": 5.0, "Total Spend": 25164.0, "Total Transactions": 740.0, "Total Customers": 312.0, "Median Spend per Transaction": 28.06, "Median Spend per Customer": 53.26 }, "geometry": { "type": "Point", "coordinates": [ -75.192693, 40.063253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "102 E Chelten Ave", "LATITUDE": 40.037208, "LONGITUDE": -75.172767, "DATE_RANGE_START": 2022, "Total Visits": 939.0, "Total Visitors": 533.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 4.0, "Total Spend": 6695.0, "Total Transactions": 127.0, "Total Customers": 87.0, "Median Spend per Transaction": 37.9, "Median Spend per Customer": 37.65 }, "geometry": { "type": "Point", "coordinates": [ -75.172767, 40.037208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7938 Dungan Rd", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2022, "Total Visits": 936.0, "Total Visitors": 625.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 8.0, "Total Spend": 784.0, "Total Transactions": 52.0, "Total Customers": 38.0, "Median Spend per Transaction": 11.69, "Median Spend per Customer": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-qxq", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.99248, "LONGITUDE": -75.099968, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 275.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 20.0, "Total Spend": 5017.0, "Total Transactions": 141.0, "Total Customers": 131.0, "Median Spend per Transaction": 24.54, "Median Spend per Customer": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.099968, 39.99248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-y7q", "Name": "K & A Gift Shop", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "911 Arch St", "LATITUDE": 39.953734, "LONGITUDE": -75.155203, "DATE_RANGE_START": 2022, "Total Visits": 5087.0, "Total Visitors": 3380.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 61.0, "Total Spend": 258.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.155203, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "177 W Allegheny Ave", "LATITUDE": 39.999351, "LONGITUDE": -75.132987, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 85.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 4.0, "Total Spend": 215.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 12.49, "Median Spend per Customer": 12.49 }, "geometry": { "type": "Point", "coordinates": [ -75.132987, 39.999351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-6kz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4301 Byberry Rd # 2650", "LATITUDE": 40.085677, "LONGITUDE": -74.967871, "DATE_RANGE_START": 2022, "Total Visits": 563.0, "Total Visitors": 399.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 2196.0, "Total Transactions": 216.0, "Total Customers": 138.0, "Median Spend per Transaction": 8.51, "Median Spend per Customer": 12.17 }, "geometry": { "type": "Point", "coordinates": [ -74.967871, 40.085677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-tn5", "Name": "Koto Sushi", "Category": "Restaurants and Other Eating Places", "Address": "719 Sansom St", "LATITUDE": 39.948858, "LONGITUDE": -75.153256, "DATE_RANGE_START": 2022, "Total Visits": 646.0, "Total Visitors": 503.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 2939.0, "Total Transactions": 105.0, "Total Customers": 47.0, "Median Spend per Transaction": 18.15, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153256, 39.948858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8m-6rk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6101 Frankford Ave", "LATITUDE": 40.026735, "LONGITUDE": -75.064295, "DATE_RANGE_START": 2022, "Total Visits": 418.0, "Total Visitors": 321.0, "POI_CBG": 421010319001.0, "Median Dwell Time": 6.0, "Total Spend": 584.0, "Total Transactions": 38.0, "Total Customers": 26.0, "Median Spend per Transaction": 10.57, "Median Spend per Customer": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -75.064295, 40.026735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "7129 Frankford Ave", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 33.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 4.0, "Total Spend": 4290.0, "Total Transactions": 169.0, "Total Customers": 96.0, "Median Spend per Transaction": 24.8, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "Name": "Desi Chaat House", "Category": "Restaurants and Other Eating Places", "Address": "501 S 42nd St", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 2.0, "Total Spend": 659.0, "Total Transactions": 44.0, "Total Customers": 26.0, "Median Spend per Transaction": 9.44, "Median Spend per Customer": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "Name": "Ganaan Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5909 N 5th St", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010274011.0, "Median Dwell Time": 39.0, "Total Spend": 8190.0, "Total Transactions": 216.0, "Total Customers": 98.0, "Median Spend per Transaction": 30.2, "Median Spend per Customer": 70.88 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "Name": "ALDI", "Category": "Grocery Stores", "Address": "3101 W Girard Ave", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2022, "Total Visits": 728.0, "Total Visitors": 495.0, "POI_CBG": 421010137005.0, "Median Dwell Time": 11.0, "Total Spend": 571.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 30.23, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "2417 Welsh Rd", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2022, "Total Visits": 1152.0, "Total Visitors": 713.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 178403.0, "Total Transactions": 3065.0, "Total Customers": 906.0, "Median Spend per Transaction": 33.94, "Median Spend per Customer": 102.12 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3901 Aramingo Ave", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2022, "Total Visits": 1052.0, "Total Visitors": 781.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 2.0, "Total Spend": 9597.0, "Total Transactions": 289.0, "Total Customers": 190.0, "Median Spend per Transaction": 12.22, "Median Spend per Customer": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7972 Castor Ave", "LATITUDE": 40.061568, "LONGITUDE": -75.05681, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 178.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 7.0, "Total Spend": 6611.0, "Total Transactions": 348.0, "Total Customers": 200.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 19.41 }, "geometry": { "type": "Point", "coordinates": [ -75.05681, 40.061568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Frankford Ave", "LATITUDE": 40.065, "LONGITUDE": -74.981932, "DATE_RANGE_START": 2022, "Total Visits": 5148.0, "Total Visitors": 2847.0, "POI_CBG": 421010362033.0, "Median Dwell Time": 3.0, "Total Spend": 115.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.79, "Median Spend per Customer": 27.79 }, "geometry": { "type": "Point", "coordinates": [ -74.981932, 40.065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5801 Roosevelt Blvd", "LATITUDE": 40.031321, "LONGITUDE": -75.083478, "DATE_RANGE_START": 2022, "Total Visits": 1108.0, "Total Visitors": 763.0, "POI_CBG": 421010318004.0, "Median Dwell Time": 4.0, "Total Spend": 375.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 20.71, "Median Spend per Customer": 30.94 }, "geometry": { "type": "Point", "coordinates": [ -75.083478, 40.031321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-g49", "Name": "Ham Bone", "Category": "Other Miscellaneous Store Retailers", "Address": "1824 Frankford Ave", "LATITUDE": 39.977503, "LONGITUDE": -75.13156, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 1.0, "Total Spend": 11357.0, "Total Transactions": 185.0, "Total Customers": 84.0, "Median Spend per Transaction": 41.33, "Median Spend per Customer": 96.93 }, "geometry": { "type": "Point", "coordinates": [ -75.13156, 39.977503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "400 W Allegheny Ave", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 85.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 2.0, "Total Spend": 859.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 14.07, "Median Spend per Customer": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "Name": "Sue's Market", "Category": "Grocery Stores", "Address": "275 Saint James Pl", "LATITUDE": 39.946236, "LONGITUDE": -75.145477, "DATE_RANGE_START": 2022, "Total Visits": 636.0, "Total Visitors": 336.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 146.0, "Total Spend": 13289.0, "Total Transactions": 812.0, "Total Customers": 150.0, "Median Spend per Transaction": 13.15, "Median Spend per Customer": 46.08 }, "geometry": { "type": "Point", "coordinates": [ -75.145477, 39.946236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7715 Frankford Ave", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2022, "Total Visits": 1124.0, "Total Visitors": 756.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 3.0, "Total Spend": 20155.0, "Total Transactions": 1807.0, "Total Customers": 848.0, "Median Spend per Transaction": 9.73, "Median Spend per Customer": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-pjv", "Name": "Speedy Beverage Drive Thru", "Category": "Beer, Wine, and Liquor Stores", "Address": "5408 Ridge Ave", "LATITUDE": 40.022333, "LONGITUDE": -75.209243, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 71.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 4.0, "Total Spend": 527.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.209243, 40.022333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-225@628-pp5-dgk", "Name": "A & F Pharmacy", "Category": "Health and Personal Care Stores", "Address": "3200 Frankford Ave", "LATITUDE": 39.993258, "LONGITUDE": -75.110206, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 164.0, "POI_CBG": 421010188005.0, "Median Dwell Time": 16.0, "Total Spend": 272.0, "Total Transactions": 17.0, "Total Customers": 7.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110206, 39.993258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg9-bp9", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "2454 Turner St", "LATITUDE": 39.979916, "LONGITUDE": -75.175802, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 14.0, "POI_CBG": 421010149001.0, "Median Dwell Time": 27.0, "Total Spend": 96.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 11.25, "Median Spend per Customer": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.175802, 39.979916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph6-vvf", "Name": "Debreaux's", "Category": "Restaurants and Other Eating Places", "Address": "2135 N 63rd St", "LATITUDE": 39.989238, "LONGITUDE": -75.24979, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 1.0, "Total Spend": 214.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24979, 39.989238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "Name": "Windfall Gallery", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7944 Germantown Ave", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 17.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 52.0, "Total Spend": 1903.0, "Total Transactions": 44.0, "Total Customers": 17.0, "Median Spend per Transaction": 38.88, "Median Spend per Customer": 73.88 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "Name": "Georgian Bread Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "10865 Bustleton Ave", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2022, "Total Visits": 564.0, "Total Visitors": 420.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 3.0, "Total Spend": 5788.0, "Total Transactions": 139.0, "Total Customers": 68.0, "Median Spend per Transaction": 25.97, "Median Spend per Customer": 58.31 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-6x5", "Name": "Polka Deli", "Category": "Restaurants and Other Eating Places", "Address": "2719 E Allegheny Ave", "LATITUDE": 39.983781, "LONGITUDE": -75.101812, "DATE_RANGE_START": 2022, "Total Visits": 362.0, "Total Visitors": 139.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 1347.0, "Total Spend": 300.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.49, "Median Spend per Customer": 12.34 }, "geometry": { "type": "Point", "coordinates": [ -75.101812, 39.983781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "4430 N Broad St", "LATITUDE": 40.021282, "LONGITUDE": -75.14902, "DATE_RANGE_START": 2022, "Total Visits": 582.0, "Total Visitors": 446.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 4.0, "Total Spend": 3909.0, "Total Transactions": 249.0, "Total Customers": 216.0, "Median Spend per Transaction": 13.78, "Median Spend per Customer": 16.06 }, "geometry": { "type": "Point", "coordinates": [ -75.14902, 40.021282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-6zf", "Name": "Danis Auto", "Category": "Automobile Dealers", "Address": "6250 Harbison Ave", "LATITUDE": 40.02883, "LONGITUDE": -75.063054, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010317003.0, "Median Dwell Time": 54.0, "Total Spend": 6969.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 500.0, "Median Spend per Customer": 1000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063054, 40.02883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "555 Adams Ave", "LATITUDE": 40.036515, "LONGITUDE": -75.108096, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 125.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 8.0, "Total Spend": 11264.0, "Total Transactions": 213.0, "Total Customers": 169.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.108096, 40.036515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-835", "Name": "Iovine Brothers Produce", "Category": "Grocery Stores", "Address": "1136 Arch St", "LATITUDE": 39.952988, "LONGITUDE": -75.158802, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 12415.0, "Total Transactions": 998.0, "Total Customers": 413.0, "Median Spend per Transaction": 7.72, "Median Spend per Customer": 17.92 }, "geometry": { "type": "Point", "coordinates": [ -75.158802, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992304, "LONGITUDE": -75.099808, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 77.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 6.0, "Total Spend": 3622.0, "Total Transactions": 80.0, "Total Customers": 75.0, "Median Spend per Transaction": 18.42, "Median Spend per Customer": 19.95 }, "geometry": { "type": "Point", "coordinates": [ -75.099808, 39.992304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "499 Franklin Mills Cir", "LATITUDE": 40.087623, "LONGITUDE": -74.965267, "DATE_RANGE_START": 2022, "Total Visits": 1127.0, "Total Visitors": 939.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 11401.0, "Total Transactions": 733.0, "Total Customers": 563.0, "Median Spend per Transaction": 14.01, "Median Spend per Customer": 16.04 }, "geometry": { "type": "Point", "coordinates": [ -74.965267, 40.087623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "2552 Grant Ave", "LATITUDE": 40.079208, "LONGITUDE": -75.02664, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 249.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 5684.0, "Total Transactions": 244.0, "Total Customers": 220.0, "Median Spend per Transaction": 20.96, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02664, 40.079208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-9cq", "Name": "Federal Donuts West", "Category": "Restaurants and Other Eating Places", "Address": "3428 Sansom St", "LATITUDE": 39.953537, "LONGITUDE": -75.193139, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 50.0, "Total Spend": 4609.0, "Total Transactions": 310.0, "Total Customers": 127.0, "Median Spend per Transaction": 14.9, "Median Spend per Customer": 21.44 }, "geometry": { "type": "Point", "coordinates": [ -75.193139, 39.953537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg9-ty9", "Name": "I Tea", "Category": "Restaurants and Other Eating Places", "Address": "1537 Spring Garden St", "LATITUDE": 39.963033, "LONGITUDE": -75.164167, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 28.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 1.0, "Total Spend": 3209.0, "Total Transactions": 179.0, "Total Customers": 77.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 33.97 }, "geometry": { "type": "Point", "coordinates": [ -75.164167, 39.963033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-qpv", "Name": "New York Bagel Bakery", "Category": "Restaurants and Other Eating Places", "Address": "7555 Haverford Ave", "LATITUDE": 39.97966, "LONGITUDE": -75.268066, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 185.0, "POI_CBG": 421010098011.0, "Median Dwell Time": 9.0, "Total Spend": 21400.0, "Total Transactions": 681.0, "Total Customers": 321.0, "Median Spend per Transaction": 23.52, "Median Spend per Customer": 46.61 }, "geometry": { "type": "Point", "coordinates": [ -75.268066, 39.97966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "8880 Bartram Ave", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2022, "Total Visits": 328.0, "Total Visitors": 150.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 945.0, "Total Spend": 19259.0, "Total Transactions": 181.0, "Total Customers": 24.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "Name": "Baltimore Pet Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "4532 Baltimore Ave", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 62.0, "Total Spend": 2478.0, "Total Transactions": 57.0, "Total Customers": 26.0, "Median Spend per Transaction": 34.58, "Median Spend per Customer": 72.33 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-cnq", "Name": "Vape O2", "Category": "Other Miscellaneous Store Retailers", "Address": "411 E Girard Ave", "LATITUDE": 39.970583, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 2.0, "Total Spend": 13956.0, "Total Transactions": 479.0, "Total Customers": 164.0, "Median Spend per Transaction": 23.71, "Median Spend per Customer": 56.56 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.970583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-75z", "Name": "Cosi", "Category": "Restaurants and Other Eating Places", "Address": "3500 Civic Center Blvd", "LATITUDE": 39.947085, "LONGITUDE": -75.193998, "DATE_RANGE_START": 2022, "Total Visits": 17711.0, "Total Visitors": 9317.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 114.0, "Total Spend": 6488.0, "Total Transactions": 376.0, "Total Customers": 143.0, "Median Spend per Transaction": 12.68, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193998, 39.947085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "8500 Henry Ave Ste 10", "LATITUDE": 40.063003, "LONGITUDE": -75.237723, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 136.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 3.0, "Total Spend": 37916.0, "Total Transactions": 714.0, "Total Customers": 561.0, "Median Spend per Transaction": 39.28, "Median Spend per Customer": 47.97 }, "geometry": { "type": "Point", "coordinates": [ -75.237723, 40.063003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-qpv", "Name": "Shalom Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "7598 Haverford Ave Ste A", "LATITUDE": 39.979511, "LONGITUDE": -75.26908, "DATE_RANGE_START": 2022, "Total Visits": 390.0, "Total Visitors": 251.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 178.0, "Total Spend": 1003.0, "Total Transactions": 37.0, "Total Customers": 16.0, "Median Spend per Transaction": 16.74, "Median Spend per Customer": 60.66 }, "geometry": { "type": "Point", "coordinates": [ -75.26908, 39.979511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "Name": "Good Day Deli", "Category": "Restaurants and Other Eating Places", "Address": "37 S 20th St", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2022, "Total Visits": 211.0, "Total Visitors": 183.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 3952.0, "Total Transactions": 235.0, "Total Customers": 78.0, "Median Spend per Transaction": 14.83, "Median Spend per Customer": 33.98 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p85-7wk", "Name": "Merc Bros Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "8108 Roosevelt Blvd", "LATITUDE": 40.058617, "LONGITUDE": -75.046078, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 10.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 65.0, "Total Spend": 328.0, "Total Transactions": 21.0, "Total Customers": 7.0, "Median Spend per Transaction": 12.39, "Median Spend per Customer": 41.15 }, "geometry": { "type": "Point", "coordinates": [ -75.046078, 40.058617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dw2-btv", "Name": "Uptown Grill", "Category": "Restaurants and Other Eating Places", "Address": "38 S 60th St", "LATITUDE": 39.960941, "LONGITUDE": -75.241259, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 12.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 509.0, "Total Spend": 8092.0, "Total Transactions": 524.0, "Total Customers": 153.0, "Median Spend per Transaction": 12.2, "Median Spend per Customer": 42.83 }, "geometry": { "type": "Point", "coordinates": [ -75.241259, 39.960941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "Name": "Lazos Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "2533 Poplar St", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 14.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 3.0, "Total Spend": 5166.0, "Total Transactions": 280.0, "Total Customers": 127.0, "Median Spend per Transaction": 15.44, "Median Spend per Customer": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "901 S 2nd St", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 57.0, "Total Spend": 30076.0, "Total Transactions": 2218.0, "Total Customers": 617.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 33.16 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "Name": "Sumo Sushi", "Category": "Restaurants and Other Eating Places", "Address": "401 S 13th St", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010011014.0, "Median Dwell Time": 22.0, "Total Spend": 1071.0, "Total Transactions": 47.0, "Total Customers": 21.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 38.51 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "Name": "Makkah Market", "Category": "Restaurants and Other Eating Places", "Address": "4249 Walnut St", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2022, "Total Visits": 265.0, "Total Visitors": 183.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 14.0, "Total Spend": 27475.0, "Total Transactions": 1193.0, "Total Customers": 362.0, "Median Spend per Transaction": 14.78, "Median Spend per Customer": 50.95 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-pmd-skf", "Name": "Social House", "Category": "Restaurants and Other Eating Places", "Address": "2100 South St", "LATITUDE": 39.944966, "LONGITUDE": -75.177113, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 54.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 1.0, "Total Spend": 4338.0, "Total Transactions": 490.0, "Total Customers": 193.0, "Median Spend per Transaction": 6.27, "Median Spend per Customer": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.177113, 39.944966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-snq", "Name": "Fado Irish Pub", "Category": "Restaurants and Other Eating Places", "Address": "1500 Locust St", "LATITUDE": 39.948313, "LONGITUDE": -75.166407, "DATE_RANGE_START": 2022, "Total Visits": 1272.0, "Total Visitors": 956.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 31.0, "Total Spend": 6590.0, "Total Transactions": 118.0, "Total Customers": 94.0, "Median Spend per Transaction": 36.72, "Median Spend per Customer": 41.93 }, "geometry": { "type": "Point", "coordinates": [ -75.166407, 39.948313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "Name": "Engimono Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1811 Fairmount Ave", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 87.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 422.0, "Total Spend": 11114.0, "Total Transactions": 289.0, "Total Customers": 136.0, "Median Spend per Transaction": 30.99, "Median Spend per Customer": 68.13 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw4-q75", "Name": "Aloft Hotels", "Category": "Traveler Accommodation", "Address": "4301 Island Ave", "LATITUDE": 39.891128, "LONGITUDE": -75.233821, "DATE_RANGE_START": 2022, "Total Visits": 1110.0, "Total Visitors": 622.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 310.0, "Total Spend": 673.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 193.18, "Median Spend per Customer": 193.18 }, "geometry": { "type": "Point", "coordinates": [ -75.233821, 39.891128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-5s5", "Name": "Canopy By Hilton", "Category": "Traveler Accommodation", "Address": "1180 Ludlow St", "LATITUDE": 39.951115, "LONGITUDE": -75.159793, "DATE_RANGE_START": 2022, "Total Visits": 2282.0, "Total Visitors": 1479.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 243.0, "Total Spend": 9632.0, "Total Transactions": 24.0, "Total Customers": 16.0, "Median Spend per Transaction": 304.9, "Median Spend per Customer": 602.02 }, "geometry": { "type": "Point", "coordinates": [ -75.159793, 39.951115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-7nq", "Name": "Yards brewing", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8500 Essington Ave Terminal A", "LATITUDE": 39.876036, "LONGITUDE": -75.242976, "DATE_RANGE_START": 2022, "Total Visits": 226042.0, "Total Visitors": 145993.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 54.0, "Total Spend": 1244.0, "Total Transactions": 30.0, "Total Customers": 14.0, "Median Spend per Transaction": 36.8, "Median Spend per Customer": 81.31 }, "geometry": { "type": "Point", "coordinates": [ -75.242976, 39.876036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "Name": "City View Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1434 Cecil B Moore Ave", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 61.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 62.0, "Total Spend": 48573.0, "Total Transactions": 2359.0, "Total Customers": 895.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-x5z", "Name": "Essen Bakery", "Category": "Restaurants and Other Eating Places", "Address": "1437 E Passyunk Ave", "LATITUDE": 39.931036, "LONGITUDE": -75.161763, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 277.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 154.0, "Total Spend": 6530.0, "Total Transactions": 429.0, "Total Customers": 166.0, "Median Spend per Transaction": 12.36, "Median Spend per Customer": 26.17 }, "geometry": { "type": "Point", "coordinates": [ -75.161763, 39.931036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5100 City Ave", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2022, "Total Visits": 530.0, "Total Visitors": 355.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 2.0, "Total Spend": 13021.0, "Total Transactions": 1526.0, "Total Customers": 793.0, "Median Spend per Transaction": 7.21, "Median Spend per Customer": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "Name": "New Pizza Villa", "Category": "Restaurants and Other Eating Places", "Address": "7159 Torresdale Ave", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 14.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 483.0, "Total Spend": 2132.0, "Total Transactions": 77.0, "Total Customers": 33.0, "Median Spend per Transaction": 25.35, "Median Spend per Customer": 34.94 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg9-xh5", "Name": "Coffee Cream & Dreams", "Category": "Restaurants and Other Eating Places", "Address": "1500 Fairmount Ave", "LATITUDE": 39.966924, "LONGITUDE": -75.162284, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 16.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 19.0, "Total Spend": 322.0, "Total Transactions": 38.0, "Total Customers": 16.0, "Median Spend per Transaction": 8.01, "Median Spend per Customer": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.162284, 39.966924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-wzf", "Name": "Mayfair Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7424 Frankford Ave", "LATITUDE": 40.038525, "LONGITUDE": -75.036899, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 1.0, "Total Spend": 297.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.9, "Median Spend per Customer": 85.15 }, "geometry": { "type": "Point", "coordinates": [ -75.036899, 40.038525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "Name": "Pizzeria Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1925 S Broad St", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 21.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 175.0, "Total Spend": 3524.0, "Total Transactions": 167.0, "Total Customers": 59.0, "Median Spend per Transaction": 14.42, "Median Spend per Customer": 43.77 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "Name": "Fiesta Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "600 Jamestown St", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 33.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 6.0, "Total Spend": 4640.0, "Total Transactions": 195.0, "Total Customers": 85.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 37.16 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "Name": "Fountain Porter", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1601 S 10th St", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 44.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 28.0, "Total Spend": 3349.0, "Total Transactions": 106.0, "Total Customers": 52.0, "Median Spend per Transaction": 25.8, "Median Spend per Customer": 45.2 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hnq", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "24 S 20th St", "LATITUDE": 39.952468, "LONGITUDE": -75.173535, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 31.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 992.0, "Total Spend": 3837.0, "Total Transactions": 181.0, "Total Customers": 89.0, "Median Spend per Transaction": 15.73, "Median Spend per Customer": 29.96 }, "geometry": { "type": "Point", "coordinates": [ -75.173535, 39.952468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2501 S 70th St", "LATITUDE": 39.916923, "LONGITUDE": -75.236784, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 106.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 7.0, "Total Spend": 10026.0, "Total Transactions": 209.0, "Total Customers": 169.0, "Median Spend per Transaction": 28.07, "Median Spend per Customer": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.236784, 39.916923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-5mk", "Name": "West Elm", "Category": "Home Furnishings Stores", "Address": "1330 Chestnut St # 873", "LATITUDE": 39.950642, "LONGITUDE": -75.163094, "DATE_RANGE_START": 2022, "Total Visits": 516.0, "Total Visitors": 340.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 182.0, "Total Spend": 3789.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 86.4, "Median Spend per Customer": 86.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163094, 39.950642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "3711 Market St", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2022, "Total Visits": 9183.0, "Total Visitors": 5472.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 73.0, "Total Spend": 784.0, "Total Transactions": 28.0, "Total Customers": 17.0, "Median Spend per Transaction": 29.78, "Median Spend per Customer": 40.89 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "Name": "Vintage Wine Bar", "Category": "Restaurants and Other Eating Places", "Address": "129 S 13th St", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 218.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 96.0, "Total Spend": 17438.0, "Total Transactions": 326.0, "Total Customers": 167.0, "Median Spend per Transaction": 46.55, "Median Spend per Customer": 81.32 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market St", "LATITUDE": 39.952606, "LONGITUDE": -75.16665, "DATE_RANGE_START": 2022, "Total Visits": 1591.0, "Total Visitors": 1361.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 5990.0, "Total Transactions": 812.0, "Total Customers": 462.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.16665, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w8v", "Name": "Pro Image Sports", "Category": "Clothing Stores", "Address": "1491 Franklin Mills Cir", "LATITUDE": 40.087124, "LONGITUDE": -74.961763, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 56.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 2114.0, "Total Transactions": 31.0, "Total Customers": 28.0, "Median Spend per Transaction": 48.99, "Median Spend per Customer": 57.82 }, "geometry": { "type": "Point", "coordinates": [ -74.961763, 40.087124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2201 W Oregon Ave", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 115.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 3.0, "Total Spend": 478.0, "Total Transactions": 19.0, "Total Customers": 12.0, "Median Spend per Transaction": 22.54, "Median Spend per Customer": 37.21 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012072, "LONGITUDE": -75.115243, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 199.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 96.0, "Total Spend": 674.0, "Total Transactions": 23.0, "Total Customers": 19.0, "Median Spend per Transaction": 22.65, "Median Spend per Customer": 25.18 }, "geometry": { "type": "Point", "coordinates": [ -75.115243, 40.012072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "15501 Bustleton Ave Ste A", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2022, "Total Visits": 4636.0, "Total Visitors": 1364.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 51.0, "Total Spend": 517.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 11.6, "Median Spend per Customer": 13.73 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8h-789", "Name": "Palm Tree Deli", "Category": "Restaurants and Other Eating Places", "Address": "7201 Torresdale Ave", "LATITUDE": 40.029254, "LONGITUDE": -75.03641, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 37.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 2.0, "Total Spend": 6266.0, "Total Transactions": 455.0, "Total Customers": 150.0, "Median Spend per Transaction": 12.08, "Median Spend per Customer": 29.8 }, "geometry": { "type": "Point", "coordinates": [ -75.03641, 40.029254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "Name": "Mariposa Food Co op", "Category": "Grocery Stores", "Address": "4824 Baltimore Ave", "LATITUDE": 39.947933, "LONGITUDE": -75.220657, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 42.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 11.0, "Total Spend": 105804.0, "Total Transactions": 3221.0, "Total Customers": 770.0, "Median Spend per Transaction": 23.23, "Median Spend per Customer": 73.12 }, "geometry": { "type": "Point", "coordinates": [ -75.220657, 39.947933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-8n5", "Name": "Federal Donuts North", "Category": "Restaurants and Other Eating Places", "Address": "701 N 7th St", "LATITUDE": 39.964219, "LONGITUDE": -75.14909, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 101.0, "POI_CBG": 421010131001.0, "Median Dwell Time": 314.0, "Total Spend": 6814.0, "Total Transactions": 495.0, "Total Customers": 350.0, "Median Spend per Transaction": 11.94, "Median Spend per Customer": 14.28 }, "geometry": { "type": "Point", "coordinates": [ -75.14909, 39.964219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8902 Frankford Ave", "LATITUDE": 40.050984, "LONGITUDE": -75.010119, "DATE_RANGE_START": 2022, "Total Visits": 1408.0, "Total Visitors": 681.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 2.0, "Total Spend": 7123.0, "Total Transactions": 882.0, "Total Customers": 383.0, "Median Spend per Transaction": 7.65, "Median Spend per Customer": 11.19 }, "geometry": { "type": "Point", "coordinates": [ -75.010119, 40.050984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pgm-68v", "Name": "The Black Squirrel Pub and Haunt", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3749 Midvale Ave", "LATITUDE": 40.009228, "LONGITUDE": -75.193913, "DATE_RANGE_START": 2022, "Total Visits": 216.0, "Total Visitors": 152.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 71.0, "Total Spend": 15574.0, "Total Transactions": 200.0, "Total Customers": 80.0, "Median Spend per Transaction": 59.13, "Median Spend per Customer": 126.65 }, "geometry": { "type": "Point", "coordinates": [ -75.193913, 40.009228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "Name": "Sang Kee Peking Duck House", "Category": "Restaurants and Other Eating Places", "Address": "238 N 9th St", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2022, "Total Visits": 312.0, "Total Visitors": 287.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 24661.0, "Total Transactions": 589.0, "Total Customers": 312.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 48.88 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-4vz", "Name": "The Fresh Works", "Category": "Restaurants and Other Eating Places", "Address": "4048 Woodhaven Rd", "LATITUDE": 40.084712, "LONGITUDE": -74.970547, "DATE_RANGE_START": 2022, "Total Visits": 443.0, "Total Visitors": 183.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 61.0, "Total Spend": 340.0, "Total Transactions": 14.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.13, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -74.970547, 40.084712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "4001 N 5th St", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 117.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 8.0, "Total Spend": 120.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 11.36, "Median Spend per Customer": 11.36 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgf-dvz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4301 Market St", "LATITUDE": 39.958338, "LONGITUDE": -75.208218, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 71.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 10.0, "Total Spend": 33934.0, "Total Transactions": 202.0, "Total Customers": 145.0, "Median Spend per Transaction": 17.59, "Median Spend per Customer": 18.66 }, "geometry": { "type": "Point", "coordinates": [ -75.208218, 39.958338 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "Name": "Union Tap House", "Category": "Restaurants and Other Eating Places", "Address": "4801 Umbria St", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 57.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 35.0, "Total Spend": 3531.0, "Total Transactions": 52.0, "Total Customers": 23.0, "Median Spend per Transaction": 47.64, "Median Spend per Customer": 95.28 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7601 Lindbergh Blvd", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2022, "Total Visits": 451.0, "Total Visitors": 354.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 3.0, "Total Spend": 3741.0, "Total Transactions": 420.0, "Total Customers": 303.0, "Median Spend per Transaction": 7.85, "Median Spend per Customer": 9.05 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "Name": "Taco Loco", "Category": "Restaurants and Other Eating Places", "Address": "400 Washington Ave", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010025004.0, "Median Dwell Time": null, "Total Spend": 277.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pnx-cbk", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "1451 E Columbia Ave", "LATITUDE": 39.97443, "LONGITUDE": -75.13265, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 1.0, "Total Spend": 198.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 18.51 }, "geometry": { "type": "Point", "coordinates": [ -75.13265, 39.97443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "Name": "Bad Brother", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "726 N 24th St", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 60.0, "Total Spend": 11287.0, "Total Transactions": 183.0, "Total Customers": 68.0, "Median Spend per Transaction": 50.9, "Median Spend per Customer": 127.12 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm4-d35", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2217 S Broad St", "LATITUDE": 39.922429, "LONGITUDE": -75.169649, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 6.0, "Total Spend": 1476.0, "Total Transactions": 87.0, "Total Customers": 77.0, "Median Spend per Transaction": 14.89, "Median Spend per Customer": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169649, 39.922429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pp4-rp9", "Name": "Garrisons Grocery Store", "Category": "Grocery Stores", "Address": "2315 Memphis St", "LATITUDE": 39.978687, "LONGITUDE": -75.126187, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010160002.0, "Median Dwell Time": 3.0, "Total Spend": 336.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 36.14, "Median Spend per Customer": 9.34 }, "geometry": { "type": "Point", "coordinates": [ -75.126187, 39.978687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvy-y9z", "Name": "The Herb Nook", "Category": "Health and Personal Care Stores", "Address": "4742 Spruce St", "LATITUDE": 39.953326, "LONGITUDE": -75.217424, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 12.0, "Total Spend": 495.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 71.01, "Median Spend per Customer": 142.01 }, "geometry": { "type": "Point", "coordinates": [ -75.217424, 39.953326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zvf", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "2906 N Broad St # 08", "LATITUDE": 39.997217, "LONGITUDE": -75.154386, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 21.0, "Total Spend": 474.0, "Total Transactions": 14.0, "Total Customers": 9.0, "Median Spend per Transaction": 24.28, "Median Spend per Customer": 33.23 }, "geometry": { "type": "Point", "coordinates": [ -75.154386, 39.997217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pj2-7dv", "Name": "J & R Grocery", "Category": "Grocery Stores", "Address": "601 E Clementine St", "LATITUDE": 39.996146, "LONGITUDE": -75.119382, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 30.0, "POI_CBG": 421010177011.0, "Median Dwell Time": 1.0, "Total Spend": 95.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.119382, 39.996146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-575", "Name": "Aldo's Pizzarama", "Category": "Restaurants and Other Eating Places", "Address": "10201 Bustleton Ave", "LATITUDE": 40.108537, "LONGITUDE": -75.025505, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 38.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 301.0, "Total Spend": 2641.0, "Total Transactions": 164.0, "Total Customers": 70.0, "Median Spend per Transaction": 11.25, "Median Spend per Customer": 32.29 }, "geometry": { "type": "Point", "coordinates": [ -75.025505, 40.108537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-47q", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2298 W Ritner St", "LATITUDE": 39.921468, "LONGITUDE": -75.184708, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 87.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 19.0, "Total Spend": 4158.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 189.69, "Median Spend per Customer": 1098.57 }, "geometry": { "type": "Point", "coordinates": [ -75.184708, 39.921468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-8jv", "Name": "Newmans Grill", "Category": "Restaurants and Other Eating Places", "Address": "5946 Germantown Ave", "LATITUDE": 40.038927, "LONGITUDE": -75.177558, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010238003.0, "Median Dwell Time": null, "Total Spend": 1224.0, "Total Transactions": 54.0, "Total Customers": 24.0, "Median Spend per Transaction": 25.92, "Median Spend per Customer": 53.17 }, "geometry": { "type": "Point", "coordinates": [ -75.177558, 40.038927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "314 S 5th St", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2022, "Total Visits": 301.0, "Total Visitors": 153.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 215.0, "Total Spend": 12377.0, "Total Transactions": 535.0, "Total Customers": 335.0, "Median Spend per Transaction": 14.32, "Median Spend per Customer": 20.91 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3401 Walnut St", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 50.0, "Total Spend": 43486.0, "Total Transactions": 2624.0, "Total Customers": 1493.0, "Median Spend per Transaction": 9.7, "Median Spend per Customer": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-ks5", "Name": "Oxford Pharmacy", "Category": "Health and Personal Care Stores", "Address": "3254 N Front St", "LATITUDE": 39.999792, "LONGITUDE": -75.129213, "DATE_RANGE_START": 2022, "Total Visits": 493.0, "Total Visitors": 172.0, "POI_CBG": 421010195013.0, "Median Dwell Time": 1042.0, "Total Spend": 9438.0, "Total Transactions": 206.0, "Total Customers": 77.0, "Median Spend per Transaction": 36.7, "Median Spend per Customer": 78.8 }, "geometry": { "type": "Point", "coordinates": [ -75.129213, 39.999792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "301 S 52nd St", "LATITUDE": 39.9542, "LONGITUDE": -75.225712, "DATE_RANGE_START": 2022, "Total Visits": 904.0, "Total Visitors": 613.0, "POI_CBG": 421010085003.0, "Median Dwell Time": 3.0, "Total Spend": 1166.0, "Total Transactions": 28.0, "Total Customers": 17.0, "Median Spend per Transaction": 27.83, "Median Spend per Customer": 27.83 }, "geometry": { "type": "Point", "coordinates": [ -75.225712, 39.9542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "Name": "US Gas", "Category": "Gasoline Stations", "Address": "2652 Frankford Ave", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 96.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 2.0, "Total Spend": 1237.0, "Total Transactions": 52.0, "Total Customers": 28.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pgj-pgk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2649 Germantown Ave", "LATITUDE": 39.992811, "LONGITUDE": -75.147675, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 106.0, "POI_CBG": 421010164003.0, "Median Dwell Time": 5.0, "Total Spend": 508.0, "Total Transactions": 77.0, "Total Customers": 44.0, "Median Spend per Transaction": 6.4, "Median Spend per Customer": 6.32 }, "geometry": { "type": "Point", "coordinates": [ -75.147675, 39.992811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pp5-sqz", "Name": "Pizza Express", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Front St", "LATITUDE": 39.998117, "LONGITUDE": -75.129195, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 87.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 4.0, "Total Spend": 331.0, "Total Transactions": 23.0, "Total Customers": 9.0, "Median Spend per Transaction": 10.04, "Median Spend per Customer": 7.08 }, "geometry": { "type": "Point", "coordinates": [ -75.129195, 39.998117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "Name": "Finn Mccools Ale House", "Category": "Restaurants and Other Eating Places", "Address": "118 S 12th St", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2022, "Total Visits": 542.0, "Total Visitors": 498.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 2.0, "Total Spend": 17592.0, "Total Transactions": 432.0, "Total Customers": 169.0, "Median Spend per Transaction": 30.6, "Median Spend per Customer": 73.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "Name": "Paisas Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4263 Frankford Ave", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2022, "Total Visits": 2352.0, "Total Visitors": 1584.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 1.0, "Total Spend": 857.0, "Total Transactions": 44.0, "Total Customers": 19.0, "Median Spend per Transaction": 16.16, "Median Spend per Customer": 51.68 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-wc5", "Name": "Craft Hall", "Category": "Restaurants and Other Eating Places", "Address": "901 N Delaware Ave", "LATITUDE": 39.962369, "LONGITUDE": -75.135937, "DATE_RANGE_START": 2022, "Total Visits": 411.0, "Total Visitors": 319.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 61.0, "Total Spend": 4275.0, "Total Transactions": 45.0, "Total Customers": 33.0, "Median Spend per Transaction": 72.08, "Median Spend per Customer": 77.13 }, "geometry": { "type": "Point", "coordinates": [ -75.135937, 39.962369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "Name": "Vic Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "2035 Sansom St", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2022, "Total Visits": 261.0, "Total Visitors": 188.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 101.0, "Total Spend": 14686.0, "Total Transactions": 361.0, "Total Customers": 181.0, "Median Spend per Transaction": 33.43, "Median Spend per Customer": 62.65 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "314 W Lehigh Ave", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 185.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 4.0, "Total Spend": 5840.0, "Total Transactions": 298.0, "Total Customers": 237.0, "Median Spend per Transaction": 18.87, "Median Spend per Customer": 21.42 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3qz", "Name": "Grand China Buffet", "Category": "Restaurants and Other Eating Places", "Address": "29 Franklin Mills Blvd", "LATITUDE": 40.085175, "LONGITUDE": -74.967524, "DATE_RANGE_START": 2022, "Total Visits": 970.0, "Total Visitors": 781.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 43.0, "Total Spend": 32284.0, "Total Transactions": 573.0, "Total Customers": 279.0, "Median Spend per Transaction": 43.57, "Median Spend per Customer": 95.39 }, "geometry": { "type": "Point", "coordinates": [ -74.967524, 40.085175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "90 Franklin Mills Blvd", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 275.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 6.0, "Total Spend": 4783.0, "Total Transactions": 310.0, "Total Customers": 202.0, "Median Spend per Transaction": 15.27, "Median Spend per Customer": 15.27 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-d35", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2201 2219 South Broad Street Commerce Plaza", "LATITUDE": 39.922445, "LONGITUDE": -75.169848, "DATE_RANGE_START": 2022, "Total Visits": 300.0, "Total Visitors": 226.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 2.0, "Total Spend": 7357.0, "Total Transactions": 774.0, "Total Customers": 430.0, "Median Spend per Transaction": 7.08, "Median Spend per Customer": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169848, 39.922445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5401 N 5th St", "LATITUDE": 40.033486, "LONGITUDE": -75.130876, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 148.0, "POI_CBG": 421010274013.0, "Median Dwell Time": 233.0, "Total Spend": 7080.0, "Total Transactions": 840.0, "Total Customers": 390.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 12.24 }, "geometry": { "type": "Point", "coordinates": [ -75.130876, 40.033486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "3901 M St # 29", "LATITUDE": 40.006521, "LONGITUDE": -75.100325, "DATE_RANGE_START": 2022, "Total Visits": 777.0, "Total Visitors": 530.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 10.0, "Total Spend": 1085.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 19.83, "Median Spend per Customer": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.100325, 40.006521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgk-2rk", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "1601 W Lehigh Ave", "LATITUDE": 39.994689, "LONGITUDE": -75.158268, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 68.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 93.0, "Total Spend": 324.0, "Total Transactions": 31.0, "Total Customers": 17.0, "Median Spend per Transaction": 9.93, "Median Spend per Customer": 12.74 }, "geometry": { "type": "Point", "coordinates": [ -75.158268, 39.994689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951608, "LONGITUDE": -75.168943, "DATE_RANGE_START": 2022, "Total Visits": 1441.0, "Total Visitors": 1233.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 603.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 36.99, "Median Spend per Customer": 36.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168943, 39.951608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp4-r49", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "2401 2499 Aramingo Ave Space 2499 D", "LATITUDE": 39.975637, "LONGITUDE": -75.119836, "DATE_RANGE_START": 2022, "Total Visits": 1824.0, "Total Visitors": 889.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 14.0, "Total Spend": 3314.0, "Total Transactions": 61.0, "Total Customers": 52.0, "Median Spend per Transaction": 42.38, "Median Spend per Customer": 62.49 }, "geometry": { "type": "Point", "coordinates": [ -75.119836, 39.975637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-kpv", "Name": "Foreign Bazaar", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1921 Chestnut St", "LATITUDE": 39.952092, "LONGITUDE": -75.172676, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 70.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 1573.0, "Total Transactions": 57.0, "Total Customers": 26.0, "Median Spend per Transaction": 9.7, "Median Spend per Customer": 29.68 }, "geometry": { "type": "Point", "coordinates": [ -75.172676, 39.952092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "2141 Cottman Ave Unit D", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 174.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 9.0, "Total Spend": 24500.0, "Total Transactions": 443.0, "Total Customers": 195.0, "Median Spend per Transaction": 49.68, "Median Spend per Customer": 105.62 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5fz", "Name": "Van Leeuwen Artisan Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "119 S 13th St", "LATITUDE": 39.94999, "LONGITUDE": -75.161731, "DATE_RANGE_START": 2022, "Total Visits": 822.0, "Total Visitors": 653.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 58.0, "Total Spend": 4496.0, "Total Transactions": 345.0, "Total Customers": 157.0, "Median Spend per Transaction": 10.18, "Median Spend per Customer": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161731, 39.94999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "120 W Oregon Ave", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2022, "Total Visits": 246.0, "Total Visitors": 211.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 2.0, "Total Spend": 12997.0, "Total Transactions": 986.0, "Total Customers": 716.0, "Median Spend per Transaction": 11.37, "Median Spend per Customer": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4211 N Broad St", "LATITUDE": 40.017737, "LONGITUDE": -75.148813, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 101.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 3.0, "Total Spend": 4086.0, "Total Transactions": 246.0, "Total Customers": 213.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.148813, 40.017737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2022, "Total Visits": 319.0, "Total Visitors": 221.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 2.0, "Total Spend": 5298.0, "Total Transactions": 735.0, "Total Customers": 375.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 8.37 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-snq", "Name": "Motel 6", "Category": "Traveler Accommodation", "Address": "11580 Roosevelt Blvd", "LATITUDE": 40.103426, "LONGITUDE": -75.005145, "DATE_RANGE_START": 2022, "Total Visits": 333.0, "Total Visitors": 216.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 167.0, "Total Spend": 2213.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 151.11, "Median Spend per Customer": 151.11 }, "geometry": { "type": "Point", "coordinates": [ -75.005145, 40.103426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "Name": "Time Out Sports Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3709 Schuyler St", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 57.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 72.0, "Total Spend": 2832.0, "Total Transactions": 84.0, "Total Customers": 33.0, "Median Spend per Transaction": 25.5, "Median Spend per Customer": 64.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "3208 Red Lion Rd", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 172.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 3.0, "Total Spend": 16105.0, "Total Transactions": 620.0, "Total Customers": 274.0, "Median Spend per Transaction": 22.42, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "320 W Oregon Ave Ste 1", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2022, "Total Visits": 993.0, "Total Visitors": 627.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 20.0, "Total Spend": 16775.0, "Total Transactions": 434.0, "Total Customers": 211.0, "Median Spend per Transaction": 33.48, "Median Spend per Customer": 63.94 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "Name": "Dancewear On Broad LLC", "Category": "Clothing Stores", "Address": "1129 S Broad St", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 42.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 185.0, "Total Spend": 2428.0, "Total Transactions": 49.0, "Total Customers": 26.0, "Median Spend per Transaction": 46.24, "Median Spend per Customer": 58.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pm9-wzf", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "801 Market St", "LATITUDE": 39.951742, "LONGITUDE": -75.153889, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 49.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 479.0, "Total Spend": 20.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.68, "Median Spend per Customer": 5.68 }, "geometry": { "type": "Point", "coordinates": [ -75.153889, 39.951742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "Name": "Blick Art Materials", "Category": "Other Miscellaneous Store Retailers", "Address": "1330 Chestnut St", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 94.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 242.0, "Total Spend": 544.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 156.18, "Median Spend per Customer": 156.18 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-mzf", "Name": "4 Seasons", "Category": "Restaurants and Other Eating Places", "Address": "3503 B St", "LATITUDE": 40.003248, "LONGITUDE": -75.124064, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 26.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 13.0, "Total Spend": 7921.0, "Total Transactions": 308.0, "Total Customers": 132.0, "Median Spend per Transaction": 7.19, "Median Spend per Customer": 19.86 }, "geometry": { "type": "Point", "coordinates": [ -75.124064, 40.003248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6hq", "Name": "Nurses Uniform Place", "Category": "Clothing Stores", "Address": "1104 Chestnut St", "LATITUDE": 39.950135, "LONGITUDE": -75.158882, "DATE_RANGE_START": 2022, "Total Visits": 6244.0, "Total Visitors": 3777.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 55.0, "Total Spend": 226.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158882, 39.950135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "Name": "Kei Sushi Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1711 South St", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 34.0, "Total Spend": 8457.0, "Total Transactions": 183.0, "Total Customers": 89.0, "Median Spend per Transaction": 45.2, "Median Spend per Customer": 86.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7607 Ridge Ave", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2022, "Total Visits": 317.0, "Total Visitors": 226.0, "POI_CBG": 421010218002.0, "Median Dwell Time": 1.0, "Total Spend": 1033.0, "Total Transactions": 89.0, "Total Customers": 51.0, "Median Spend per Transaction": 7.35, "Median Spend per Customer": 9.34 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "Name": "El Merkury", "Category": "Restaurants and Other Eating Places", "Address": "2104 Chestnut St", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 8.0, "Total Spend": 7747.0, "Total Transactions": 502.0, "Total Customers": 246.0, "Median Spend per Transaction": 14.12, "Median Spend per Customer": 27.76 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-phc-xbk", "Name": "H & R Market", "Category": "Grocery Stores", "Address": "2224 Bryn Mawr Ave", "LATITUDE": 39.991073, "LONGITUDE": -75.226902, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 54.0, "POI_CBG": 421010119004.0, "Median Dwell Time": 524.0, "Total Spend": 171.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 12.25, "Median Spend per Customer": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226902, 39.991073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-vmk", "Name": "Maxi's Pizza Subs and Bar", "Category": "Restaurants and Other Eating Places", "Address": "1926 Liacouras Walk", "LATITUDE": 39.982213, "LONGITUDE": -75.15602, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 1.0, "Total Spend": 1462.0, "Total Transactions": 101.0, "Total Customers": 49.0, "Median Spend per Transaction": 7.94, "Median Spend per Customer": 19.34 }, "geometry": { "type": "Point", "coordinates": [ -75.15602, 39.982213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-t5f", "Name": "Sum Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "679 N Broad St", "LATITUDE": 39.965929, "LONGITUDE": -75.160347, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 31.0, "Total Spend": 662.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 94.98, "Median Spend per Customer": 189.95 }, "geometry": { "type": "Point", "coordinates": [ -75.160347, 39.965929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kcq", "Name": "Almaz Cafe", "Category": "Restaurants and Other Eating Places", "Address": "140 S 20th St", "LATITUDE": 39.95075, "LONGITUDE": -75.173912, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 35.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 134.0, "Total Spend": 2334.0, "Total Transactions": 91.0, "Total Customers": 42.0, "Median Spend per Transaction": 24.17, "Median Spend per Customer": 49.88 }, "geometry": { "type": "Point", "coordinates": [ -75.173912, 39.95075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmb-3nq", "Name": "Headhouse Farmers' Market", "Category": "Specialty Food Stores", "Address": "South St & S 2nd St", "LATITUDE": 39.941022, "LONGITUDE": -75.145387, "DATE_RANGE_START": 2022, "Total Visits": 368.0, "Total Visitors": 260.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 112.0, "Total Spend": 132.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.89, "Median Spend per Customer": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.145387, 39.941022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5726 Baltimore Ave # 46", "LATITUDE": 39.945629, "LONGITUDE": -75.237997, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 150.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 7.0, "Total Spend": 8400.0, "Total Transactions": 176.0, "Total Customers": 141.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 29.14 }, "geometry": { "type": "Point", "coordinates": [ -75.237997, 39.945629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "4037 N 5th St", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2022, "Total Visits": 1289.0, "Total Visitors": 793.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 15.0, "Total Spend": 902.0, "Total Transactions": 33.0, "Total Customers": 23.0, "Median Spend per Transaction": 21.33, "Median Spend per Customer": 28.52 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pm4-ckf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2101 S 17th St", "LATITUDE": 39.924823, "LONGITUDE": -75.17424, "DATE_RANGE_START": 2022, "Total Visits": 932.0, "Total Visitors": 638.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 4.0, "Total Spend": 742.0, "Total Transactions": 24.0, "Total Customers": 16.0, "Median Spend per Transaction": 23.43, "Median Spend per Customer": 53.11 }, "geometry": { "type": "Point", "coordinates": [ -75.17424, 39.924823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-j9z", "Name": "Rittenhouse Farmers' Market", "Category": "Specialty Food Stores", "Address": "18th & Walnut St", "LATITUDE": 39.950367, "LONGITUDE": -75.17049, "DATE_RANGE_START": 2022, "Total Visits": 2801.0, "Total Visitors": 2228.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 13.0, "Total Spend": 605.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 23.59, "Median Spend per Customer": 47.18 }, "geometry": { "type": "Point", "coordinates": [ -75.17049, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1600 E Wadsworth Ave", "LATITUDE": 40.080322, "LONGITUDE": -75.171913, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 150.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 8.0, "Total Spend": 3620.0, "Total Transactions": 157.0, "Total Customers": 115.0, "Median Spend per Transaction": 11.27, "Median Spend per Customer": 14.98 }, "geometry": { "type": "Point", "coordinates": [ -75.171913, 40.080322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3925 Walnut St", "LATITUDE": 39.95427, "LONGITUDE": -75.201494, "DATE_RANGE_START": 2022, "Total Visits": 4103.0, "Total Visitors": 2592.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 33.0, "Total Spend": 21848.0, "Total Transactions": 1512.0, "Total Customers": 840.0, "Median Spend per Transaction": 9.34, "Median Spend per Customer": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.201494, 39.95427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-qj9", "Name": "Erietronics", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "722 W Erie Ave", "LATITUDE": 40.00772, "LONGITUDE": -75.141248, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 84.0, "POI_CBG": 421010199002.0, "Median Dwell Time": 238.0, "Total Spend": 3318.0, "Total Transactions": 19.0, "Total Customers": 12.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141248, 40.00772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-pmf-qpv", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "615 S Broad St", "LATITUDE": 39.94287, "LONGITUDE": -75.165374, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 159.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 2.0, "Total Spend": 1630.0, "Total Transactions": 35.0, "Total Customers": 21.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 47.3 }, "geometry": { "type": "Point", "coordinates": [ -75.165374, 39.94287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-2hq", "Name": "Venus Video", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "6307 Passyunk Ave", "LATITUDE": 39.917066, "LONGITUDE": -75.216791, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 159.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 12.0, "Total Spend": 5691.0, "Total Transactions": 138.0, "Total Customers": 64.0, "Median Spend per Transaction": 28.1, "Median Spend per Customer": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.216791, 39.917066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-kj9", "Name": "The Pleasure Chest", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "2039 Walnut St", "LATITUDE": 39.950864, "LONGITUDE": -75.175215, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 54.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 3.0, "Total Spend": 2750.0, "Total Transactions": 54.0, "Total Customers": 26.0, "Median Spend per Transaction": 42.01, "Median Spend per Customer": 84.02 }, "geometry": { "type": "Point", "coordinates": [ -75.175215, 39.950864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "Name": "Sam's Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1000 Franklin Mills Cir", "LATITUDE": 40.093002, "LONGITUDE": -74.958736, "DATE_RANGE_START": 2022, "Total Visits": 6261.0, "Total Visitors": 3861.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 20.0, "Total Spend": 328463.0, "Total Transactions": 4160.0, "Total Customers": 1927.0, "Median Spend per Transaction": 51.77, "Median Spend per Customer": 93.14 }, "geometry": { "type": "Point", "coordinates": [ -74.958736, 40.093002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm3-vzz", "Name": "A Novel Idea", "Category": "Book Stores and News Dealers", "Address": "1726 E Passyunk Ave", "LATITUDE": 39.928207, "LONGITUDE": -75.165695, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 336.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 24.0, "Total Spend": 342.0, "Total Transactions": 14.0, "Total Customers": 9.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165695, 39.928207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-grk", "Name": "Bargain world", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4839 Woodland Ave", "LATITUDE": 39.941099, "LONGITUDE": -75.21263, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 120.0, "POI_CBG": 421010074002.0, "Median Dwell Time": 2.0, "Total Spend": 131.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.85, "Median Spend per Customer": 37.69 }, "geometry": { "type": "Point", "coordinates": [ -75.21263, 39.941099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "Name": "J&J Super Market", "Category": "Grocery Stores", "Address": "1839 S 7th St", "LATITUDE": 39.925365, "LONGITUDE": -75.157449, "DATE_RANGE_START": 2022, "Total Visits": 343.0, "Total Visitors": 155.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 200.0, "Total Spend": 4511.0, "Total Transactions": 348.0, "Total Customers": 94.0, "Median Spend per Transaction": 9.77, "Median Spend per Customer": 31.94 }, "geometry": { "type": "Point", "coordinates": [ -75.157449, 39.925365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "171 W Chelten Ave", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2022, "Total Visits": 300.0, "Total Visitors": 268.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 3.0, "Total Spend": 10059.0, "Total Transactions": 730.0, "Total Customers": 563.0, "Median Spend per Transaction": 11.92, "Median Spend per Customer": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1801 Torresdale Ave", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2022, "Total Visits": 389.0, "Total Visitors": 303.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 3.0, "Total Spend": 7773.0, "Total Transactions": 563.0, "Total Customers": 399.0, "Median Spend per Transaction": 12.13, "Median Spend per Customer": 15.62 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978087, "LONGITUDE": -75.11955, "DATE_RANGE_START": 2022, "Total Visits": 1221.0, "Total Visitors": 629.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 3.0, "Total Spend": 10426.0, "Total Transactions": 1244.0, "Total Customers": 666.0, "Median Spend per Transaction": 7.42, "Median Spend per Customer": 9.96 }, "geometry": { "type": "Point", "coordinates": [ -75.11955, 39.978087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-7yv", "Name": "Old City Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953757, "LONGITUDE": -75.158885, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 35627.0, "Total Transactions": 4040.0, "Total Customers": 1286.0, "Median Spend per Transaction": 6.85, "Median Spend per Customer": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.158885, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "801 S 9th St", "LATITUDE": 39.93927, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 305.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 5.0, "Total Spend": 32746.0, "Total Transactions": 1657.0, "Total Customers": 812.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 20.67 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.93927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pj3-wff", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4616 N Broad St # 4650", "LATITUDE": 40.024012, "LONGITUDE": -75.148537, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 78.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 4.0, "Total Spend": 7056.0, "Total Transactions": 333.0, "Total Customers": 240.0, "Median Spend per Transaction": 13.64, "Median Spend per Customer": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.148537, 40.024012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1851 S Columbus Blvd Ste G", "LATITUDE": 39.923624, "LONGITUDE": -75.139475, "DATE_RANGE_START": 2022, "Total Visits": 401.0, "Total Visitors": 329.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 16.0, "Total Spend": 11930.0, "Total Transactions": 188.0, "Total Customers": 159.0, "Median Spend per Transaction": 43.99, "Median Spend per Customer": 56.99 }, "geometry": { "type": "Point", "coordinates": [ -75.139475, 39.923624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "Name": "Hair Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4160 Monument Rd", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2022, "Total Visits": 1854.0, "Total Visitors": 1120.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 11.0, "Total Spend": 7409.0, "Total Transactions": 160.0, "Total Customers": 82.0, "Median Spend per Transaction": 25.87, "Median Spend per Customer": 41.52 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "Name": "Walmart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9745 Roosevelt Blvd Ste A", "LATITUDE": 40.083037, "LONGITUDE": -75.022233, "DATE_RANGE_START": 2022, "Total Visits": 11793.0, "Total Visitors": 7707.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 25.0, "Total Spend": 333793.0, "Total Transactions": 5883.0, "Total Customers": 3434.0, "Median Spend per Transaction": 34.09, "Median Spend per Customer": 55.02 }, "geometry": { "type": "Point", "coordinates": [ -75.022233, 40.083037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm4-ckf", "Name": "A Plus Mini Market", "Category": "Grocery Stores", "Address": "2101 S 17th St", "LATITUDE": 39.924818, "LONGITUDE": -75.174415, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 108.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 2.0, "Total Spend": 123.0, "Total Transactions": 37.0, "Total Customers": 9.0, "Median Spend per Transaction": 3.48, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174415, 39.924818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjb-6p9", "Name": "ALDI", "Category": "Grocery Stores", "Address": "6119 N Broad St", "LATITUDE": 40.046633, "LONGITUDE": -75.14228, "DATE_RANGE_START": 2022, "Total Visits": 382.0, "Total Visitors": 267.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 5.0, "Total Spend": 69.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.56, "Median Spend per Customer": 19.74 }, "geometry": { "type": "Point", "coordinates": [ -75.14228, 40.046633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p7z-x89", "Name": "Don Pedro Meats and Market", "Category": "Specialty Food Stores", "Address": "6010 Castor Ave", "LATITUDE": 40.035069, "LONGITUDE": -75.082126, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 317.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 7.0, "Total Spend": 15455.0, "Total Transactions": 282.0, "Total Customers": 120.0, "Median Spend per Transaction": 29.66, "Median Spend per Customer": 65.86 }, "geometry": { "type": "Point", "coordinates": [ -75.082126, 40.035069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1405 S 10th St", "LATITUDE": 39.931453, "LONGITUDE": -75.160518, "DATE_RANGE_START": 2022, "Total Visits": 676.0, "Total Visitors": 399.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 8.0, "Total Spend": 22773.0, "Total Transactions": 1260.0, "Total Customers": 699.0, "Median Spend per Transaction": 12.07, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160518, 39.931453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3750 W Girard Ave", "LATITUDE": 39.974361, "LONGITUDE": -75.199089, "DATE_RANGE_START": 2022, "Total Visits": 1545.0, "Total Visitors": 1265.0, "POI_CBG": 421010110001.0, "Median Dwell Time": 4.0, "Total Spend": 2235.0, "Total Transactions": 54.0, "Total Customers": 47.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.199089, 39.974361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjb-6ff", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "6200 N Broad St", "LATITUDE": 40.04808, "LONGITUDE": -75.143086, "DATE_RANGE_START": 2022, "Total Visits": 991.0, "Total Visitors": 718.0, "POI_CBG": 421010277001.0, "Median Dwell Time": 4.0, "Total Spend": 344.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 56.25, "Median Spend per Customer": 56.25 }, "geometry": { "type": "Point", "coordinates": [ -75.143086, 40.04808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-2kz", "Name": "Skechers", "Category": "Shoe Stores", "Address": "9161 Roosevelt Blvd # 17", "LATITUDE": 40.074571, "LONGITUDE": -75.032796, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 178.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 21.0, "Total Spend": 2032.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 83.13, "Median Spend per Customer": 83.13 }, "geometry": { "type": "Point", "coordinates": [ -75.032796, 40.074571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "Name": "Journeys", "Category": "Shoe Stores", "Address": "1559 Franklin Mills Cir", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 105.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 3905.0, "Total Transactions": 52.0, "Total Customers": 47.0, "Median Spend per Transaction": 63.55, "Median Spend per Customer": 62.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "Name": "Zumiez", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1441 Franklin Mills Cir", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 139.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 10415.0, "Total Transactions": 160.0, "Total Customers": 157.0, "Median Spend per Transaction": 55.43, "Median Spend per Customer": 57.93 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9212 Frankford Ave", "LATITUDE": 40.055974, "LONGITUDE": -75.005102, "DATE_RANGE_START": 2022, "Total Visits": 329.0, "Total Visitors": 253.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 5.0, "Total Spend": 593.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 21.91, "Median Spend per Customer": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.005102, 40.055974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kj9", "Name": "Fleur De Lis Boutique", "Category": "Clothing Stores", "Address": "2107 Walnut St", "LATITUDE": 39.950913, "LONGITUDE": -75.176137, "DATE_RANGE_START": 2022, "Total Visits": 2848.0, "Total Visitors": 2195.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 5.0, "Total Spend": 1670.0, "Total Transactions": 26.0, "Total Customers": 16.0, "Median Spend per Transaction": 46.0, "Median Spend per Customer": 92.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176137, 39.950913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgk-z9f", "Name": "Beauty & Fashion City", "Category": "Health and Personal Care Stores", "Address": "3985 Ford Rd", "LATITUDE": 39.999963, "LONGITUDE": -75.209335, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010122041.0, "Median Dwell Time": null, "Total Spend": 308.0, "Total Transactions": 26.0, "Total Customers": 12.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.209335, 39.999963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "Name": "Reggae Reggae Vibes", "Category": "Restaurants and Other Eating Places", "Address": "517 W Girard Ave", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010144003.0, "Median Dwell Time": 1.0, "Total Spend": 1971.0, "Total Transactions": 138.0, "Total Customers": 63.0, "Median Spend per Transaction": 11.82, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5601 Vine St # 55", "LATITUDE": 39.966061, "LONGITUDE": -75.233588, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 101.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 6.0, "Total Spend": 16291.0, "Total Transactions": 376.0, "Total Customers": 287.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.233588, 39.966061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2445 N Broad St", "LATITUDE": 39.990666, "LONGITUDE": -75.154886, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 85.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 4.0, "Total Spend": 13450.0, "Total Transactions": 319.0, "Total Customers": 211.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.154886, 39.990666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "Name": "South Square Market", "Category": "Grocery Stores", "Address": "2221 South St", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2022, "Total Visits": 321.0, "Total Visitors": 176.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 8.0, "Total Spend": 92387.0, "Total Transactions": 3629.0, "Total Customers": 948.0, "Median Spend per Transaction": 16.97, "Median Spend per Customer": 51.32 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "Name": "Super Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7340 Frankford Ave", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 14.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 268.0, "Total Spend": 2486.0, "Total Transactions": 91.0, "Total Customers": 40.0, "Median Spend per Transaction": 26.46, "Median Spend per Customer": 46.04 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "Name": "Nova Star Pharmacy", "Category": "Health and Personal Care Stores", "Address": "301 E Girard Ave", "LATITUDE": 39.969977, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 4.0, "Total Spend": 2627.0, "Total Transactions": 138.0, "Total Customers": 45.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 24.72 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1602 S Delaware Ave # 04", "LATITUDE": 39.926446, "LONGITUDE": -75.145402, "DATE_RANGE_START": 2022, "Total Visits": 902.0, "Total Visitors": 699.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 2.0, "Total Spend": 72127.0, "Total Transactions": 5720.0, "Total Customers": 3089.0, "Median Spend per Transaction": 10.35, "Median Spend per Customer": 13.81 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@63s-dvy-mzf", "Name": "University Square Farmers Market", "Category": "Specialty Food Stores", "Address": "Walnut St", "LATITUDE": 39.953747, "LONGITUDE": -75.198512, "DATE_RANGE_START": 2022, "Total Visits": 4399.0, "Total Visitors": 1902.0, "POI_CBG": 421010088011.0, "Median Dwell Time": 52.0, "Total Spend": 627.0, "Total Transactions": 31.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198512, 39.953747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-f2k", "Name": "J J Family Market", "Category": "Grocery Stores", "Address": "5141 Haverford Ave", "LATITUDE": 39.964773, "LONGITUDE": -75.223375, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 23.0, "POI_CBG": 421010103002.0, "Median Dwell Time": 2.0, "Total Spend": 2868.0, "Total Transactions": 172.0, "Total Customers": 42.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 22.25 }, "geometry": { "type": "Point", "coordinates": [ -75.223375, 39.964773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnt-tgk", "Name": "Hinge Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2652 E Somerset St", "LATITUDE": 39.979226, "LONGITUDE": -75.112172, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 23.0, "POI_CBG": 421010180011.0, "Median Dwell Time": 409.0, "Total Spend": 3280.0, "Total Transactions": 96.0, "Total Customers": 42.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 83.16 }, "geometry": { "type": "Point", "coordinates": [ -75.112172, 39.979226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23h@628-pmf-sqz", "Name": "LUSH", "Category": "Health and Personal Care Stores", "Address": "1525 Walnut St", "LATITUDE": 39.949954, "LONGITUDE": -75.167065, "DATE_RANGE_START": 2022, "Total Visits": 247.0, "Total Visitors": 211.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 13800.0, "Total Transactions": 369.0, "Total Customers": 341.0, "Median Spend per Transaction": 29.43, "Median Spend per Customer": 30.69 }, "geometry": { "type": "Point", "coordinates": [ -75.167065, 39.949954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kpv", "Name": "Citi Gas", "Category": "Gasoline Stations", "Address": "4067 Frankford Ave", "LATITUDE": 40.006332, "LONGITUDE": -75.091282, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 108.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 2.0, "Total Spend": 33754.0, "Total Transactions": 1218.0, "Total Customers": 352.0, "Median Spend per Transaction": 22.5, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.091282, 40.006332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg3-v4v", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "312 316 Chelten Ave E", "LATITUDE": 40.039046, "LONGITUDE": -75.170704, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 35.0, "POI_CBG": 421010247005.0, "Median Dwell Time": 56.0, "Total Spend": 2821.0, "Total Transactions": 31.0, "Total Customers": 10.0, "Median Spend per Transaction": 62.61, "Median Spend per Customer": 105.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170704, 40.039046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "Name": "Old English Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6015 N 5th St", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 35.0, "POI_CBG": 421010274011.0, "Median Dwell Time": 3.0, "Total Spend": 237.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.91, "Median Spend per Customer": 61.82 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-5cq", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1217 Chestnut St", "LATITUDE": 39.950795, "LONGITUDE": -75.160907, "DATE_RANGE_START": 2022, "Total Visits": 524.0, "Total Visitors": 479.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 3089.0, "Total Transactions": 37.0, "Total Customers": 35.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160907, 39.950795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pmf-j35", "Name": "Benjamin Lovell Shoes", "Category": "Shoe Stores", "Address": "1728 Chestnut St", "LATITUDE": 39.95135, "LONGITUDE": -75.169937, "DATE_RANGE_START": 2022, "Total Visits": 1946.0, "Total Visitors": 1375.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 230.0, "Total Spend": 514.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 147.45, "Median Spend per Customer": 147.45 }, "geometry": { "type": "Point", "coordinates": [ -75.169937, 39.95135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "Name": "Ross Stores", "Category": "Department Stores", "Address": "7720 City Ave", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2022, "Total Visits": 871.0, "Total Visitors": 627.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 22.0, "Total Spend": 16444.0, "Total Transactions": 336.0, "Total Customers": 254.0, "Median Spend per Transaction": 35.97, "Median Spend per Customer": 44.46 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "Name": "Scrub Pro", "Category": "Clothing Stores", "Address": "817 Adams Ave # 819", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2022, "Total Visits": 1941.0, "Total Visitors": 1326.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 20.0, "Total Spend": 18908.0, "Total Transactions": 301.0, "Total Customers": 139.0, "Median Spend per Transaction": 51.18, "Median Spend per Customer": 105.85 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-phy-rc5", "Name": "TABU Hookah Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4535 N 5th St", "LATITUDE": 40.02058, "LONGITUDE": -75.133817, "DATE_RANGE_START": 2022, "Total Visits": 486.0, "Total Visitors": 329.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 64.0, "Total Spend": 80076.0, "Total Transactions": 2641.0, "Total Customers": 793.0, "Median Spend per Transaction": 22.6, "Median Spend per Customer": 65.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133817, 40.02058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@63s-dvy-pn5", "Name": "Hatch & Coop", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954694, "LONGITUDE": -75.202176, "DATE_RANGE_START": 2022, "Total Visits": 537.0, "Total Visitors": 392.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 25.0, "Total Spend": 4107.0, "Total Transactions": 253.0, "Total Customers": 103.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 32.14 }, "geometry": { "type": "Point", "coordinates": [ -75.202176, 39.954694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-68v", "Name": "Strangelove's", "Category": "Restaurants and Other Eating Places", "Address": "216 S 11th St", "LATITUDE": 39.948065, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2022, "Total Visits": 1296.0, "Total Visitors": 876.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 138.0, "Total Spend": 2569.0, "Total Transactions": 38.0, "Total Customers": 19.0, "Median Spend per Transaction": 57.3, "Median Spend per Customer": 79.12 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.948065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "3939 Chestnut St Fl 2", "LATITUDE": 39.955756, "LONGITUDE": -75.201691, "DATE_RANGE_START": 2022, "Total Visits": 2192.0, "Total Visitors": 1108.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 256.0, "Total Spend": 10053.0, "Total Transactions": 200.0, "Total Customers": 105.0, "Median Spend per Transaction": 46.82, "Median Spend per Customer": 88.3 }, "geometry": { "type": "Point", "coordinates": [ -75.201691, 39.955756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "Name": "Trio", "Category": "Restaurants and Other Eating Places", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.968734, "LONGITUDE": -75.180754, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 108.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 2.0, "Total Spend": 4112.0, "Total Transactions": 275.0, "Total Customers": 94.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 38.12 }, "geometry": { "type": "Point", "coordinates": [ -75.180754, 39.968734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj9-4d9", "Name": "Breakfast Time", "Category": "Restaurants and Other Eating Places", "Address": "5738 Old York Rd", "LATITUDE": 40.04107, "LONGITUDE": -75.144758, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 59.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 18.0, "Total Spend": 2276.0, "Total Transactions": 150.0, "Total Customers": 45.0, "Median Spend per Transaction": 12.26, "Median Spend per Customer": 26.52 }, "geometry": { "type": "Point", "coordinates": [ -75.144758, 40.04107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "Name": "Le Meridien", "Category": "Traveler Accommodation", "Address": "1421 Arch St", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2022, "Total Visits": 1124.0, "Total Visitors": 634.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 328.0, "Total Spend": 35531.0, "Total Transactions": 127.0, "Total Customers": 82.0, "Median Spend per Transaction": 173.39, "Median Spend per Customer": 266.48 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-223@628-pnx-2hq", "Name": "CARQUEST Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "401 W Girard Ave", "LATITUDE": 39.970181, "LONGITUDE": -75.143474, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 77.0, "POI_CBG": 421010144001.0, "Median Dwell Time": 5.0, "Total Spend": 612.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 175.66, "Median Spend per Customer": 175.66 }, "geometry": { "type": "Point", "coordinates": [ -75.143474, 39.970181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pp5-jgk", "Name": "Tin Can Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2537 E Somerset St", "LATITUDE": 39.981701, "LONGITUDE": -75.113705, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 110.0, "POI_CBG": 421010180013.0, "Median Dwell Time": 16.0, "Total Spend": 11929.0, "Total Transactions": 272.0, "Total Customers": 110.0, "Median Spend per Transaction": 37.99, "Median Spend per Customer": 76.64 }, "geometry": { "type": "Point", "coordinates": [ -75.113705, 39.981701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4100 Chester Ave", "LATITUDE": 39.94836, "LONGITUDE": -75.206367, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 31.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 5.0, "Total Spend": 5413.0, "Total Transactions": 714.0, "Total Customers": 329.0, "Median Spend per Transaction": 6.36, "Median Spend per Customer": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.206367, 39.94836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "Name": "Romeo Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1608 W Passyunk Ave", "LATITUDE": 39.924602, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2022, "Total Visits": 280.0, "Total Visitors": 179.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 36.0, "Total Spend": 2237.0, "Total Transactions": 108.0, "Total Customers": 47.0, "Median Spend per Transaction": 20.82, "Median Spend per Customer": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.924602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-yqf", "Name": "Chubby Cattle", "Category": "Restaurants and Other Eating Places", "Address": "146 N 10th St", "LATITUDE": 39.954989, "LONGITUDE": -75.156236, "DATE_RANGE_START": 2022, "Total Visits": 5082.0, "Total Visitors": 3631.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 34.0, "Total Spend": 18997.0, "Total Transactions": 162.0, "Total Customers": 87.0, "Median Spend per Transaction": 100.69, "Median Spend per Customer": 198.14 }, "geometry": { "type": "Point", "coordinates": [ -75.156236, 39.954989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "Name": "Perkins Restaurant & Bakery", "Category": "Restaurants and Other Eating Places", "Address": "1681 Grant Ave", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2022, "Total Visits": 460.0, "Total Visitors": 347.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 27.0, "Total Spend": 561.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 32.64, "Median Spend per Customer": 35.82 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2900 S 70th St", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2022, "Total Visits": 545.0, "Total Visitors": 355.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 2.0, "Total Spend": 547.0, "Total Transactions": 73.0, "Total Customers": 28.0, "Median Spend per Transaction": 5.18, "Median Spend per Customer": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-td9", "Name": "Campus Pizza Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1000 Diamond St Ste 114", "LATITUDE": 39.983716, "LONGITUDE": -75.149807, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 89.0, "POI_CBG": 421010377002.0, "Median Dwell Time": 3.0, "Total Spend": 47.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 4.51, "Median Spend per Customer": 13.51 }, "geometry": { "type": "Point", "coordinates": [ -75.149807, 39.983716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgf-3bk", "Name": "Old Nelson Food", "Category": "Restaurants and Other Eating Places", "Address": "3600 Market St", "LATITUDE": 39.956093, "LONGITUDE": -75.194408, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 124.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 2.0, "Total Spend": 3654.0, "Total Transactions": 253.0, "Total Customers": 235.0, "Median Spend per Transaction": 12.13, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194408, 39.956093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-3bk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1500 W Moyamensing Ave", "LATITUDE": 39.916261, "LONGITUDE": -75.173391, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 200.0, "POI_CBG": 421010039022.0, "Median Dwell Time": 3.0, "Total Spend": 12248.0, "Total Transactions": 476.0, "Total Customers": 315.0, "Median Spend per Transaction": 16.99, "Median Spend per Customer": 18.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173391, 39.916261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "Name": "Cafe Square One", "Category": "Restaurants and Other Eating Places", "Address": "50 S 3rd St", "LATITUDE": 39.948829, "LONGITUDE": -75.146095, "DATE_RANGE_START": 2022, "Total Visits": 308.0, "Total Visitors": 300.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 5921.0, "Total Transactions": 336.0, "Total Customers": 160.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.146095, 39.948829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-qzz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "3600 Aramingo Ave", "LATITUDE": 39.993907, "LONGITUDE": -75.096856, "DATE_RANGE_START": 2022, "Total Visits": 498.0, "Total Visitors": 427.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 3.0, "Total Spend": 91.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 7.01, "Median Spend per Customer": 7.01 }, "geometry": { "type": "Point", "coordinates": [ -75.096856, 39.993907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "Name": "Fiesta Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "8339 Germantown Ave", "LATITUDE": 40.075222, "LONGITUDE": -75.204582, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 199.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 65.0, "Total Spend": 4408.0, "Total Transactions": 270.0, "Total Customers": 87.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 30.54 }, "geometry": { "type": "Point", "coordinates": [ -75.204582, 40.075222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2nd Lehigh Ave", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2022, "Total Visits": 833.0, "Total Visitors": 603.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 3.0, "Total Spend": 16941.0, "Total Transactions": 1106.0, "Total Customers": 721.0, "Median Spend per Transaction": 12.37, "Median Spend per Customer": 17.43 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3313 Wharton St", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 118.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 6.0, "Total Spend": 9252.0, "Total Transactions": 1150.0, "Total Customers": 531.0, "Median Spend per Transaction": 6.64, "Median Spend per Customer": 10.66 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956616, "LONGITUDE": -75.194139, "DATE_RANGE_START": 2022, "Total Visits": 394.0, "Total Visitors": 314.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 4.0, "Total Spend": 10593.0, "Total Transactions": 1620.0, "Total Customers": 690.0, "Median Spend per Transaction": 5.28, "Median Spend per Customer": 8.46 }, "geometry": { "type": "Point", "coordinates": [ -75.194139, 39.956616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1000 S Broad St", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2022, "Total Visits": 483.0, "Total Visitors": 375.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 5.0, "Total Spend": 17221.0, "Total Transactions": 1129.0, "Total Customers": 723.0, "Median Spend per Transaction": 13.45, "Median Spend per Customer": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "29 E Chelten Ave", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2022, "Total Visits": 650.0, "Total Visitors": 420.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 4.0, "Total Spend": 12180.0, "Total Transactions": 1061.0, "Total Customers": 723.0, "Median Spend per Transaction": 9.7, "Median Spend per Customer": 11.93 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnz-xyv", "Name": "Moju's Family Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2501 E Westmoreland St", "LATITUDE": 39.988309, "LONGITUDE": -75.102423, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010379002.0, "Median Dwell Time": 28.0, "Total Spend": 1896.0, "Total Transactions": 78.0, "Total Customers": 30.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 36.85 }, "geometry": { "type": "Point", "coordinates": [ -75.102423, 39.988309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-73q", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.947698, "LONGITUDE": -75.193491, "DATE_RANGE_START": 2022, "Total Visits": 693.0, "Total Visitors": 521.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 6.0, "Total Spend": 7176.0, "Total Transactions": 855.0, "Total Customers": 592.0, "Median Spend per Transaction": 6.97, "Median Spend per Customer": 8.97 }, "geometry": { "type": "Point", "coordinates": [ -75.193491, 39.947698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "Name": "Wadsworth Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Wadsworth Ave", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 23.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 58.0, "Total Spend": 6372.0, "Total Transactions": 352.0, "Total Customers": 118.0, "Median Spend per Transaction": 14.25, "Median Spend per Customer": 43.03 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7001 Roosevelt Blvd", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2022, "Total Visits": 1199.0, "Total Visitors": 848.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 3.0, "Total Spend": 109856.0, "Total Transactions": 4387.0, "Total Customers": 2200.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 25.46 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "12301 Academy Rd", "LATITUDE": 40.095744, "LONGITUDE": -74.976099, "DATE_RANGE_START": 2022, "Total Visits": 1991.0, "Total Visitors": 1274.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 114433.0, "Total Transactions": 5687.0, "Total Customers": 2061.0, "Median Spend per Transaction": 12.63, "Median Spend per Customer": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -74.976099, 40.095744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jsq", "Name": "Patient Care Pharmacy", "Category": "Health and Personal Care Stores", "Address": "801 Washington Ave # 21", "LATITUDE": 39.936332, "LONGITUDE": -75.157296, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 68.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 7.0, "Total Spend": 122.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 14.09, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157296, 39.936332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "201 W Lehigh Ave", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2022, "Total Visits": 939.0, "Total Visitors": 599.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 3.0, "Total Spend": 5806.0, "Total Transactions": 251.0, "Total Customers": 183.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 20.04 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-7bk", "Name": "Golden Kingdom", "Category": "Restaurants and Other Eating Places", "Address": "6212 Woodland Ave", "LATITUDE": 39.927769, "LONGITUDE": -75.230845, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 28.0, "POI_CBG": 421010066004.0, "Median Dwell Time": 5.0, "Total Spend": 2007.0, "Total Transactions": 31.0, "Total Customers": 23.0, "Median Spend per Transaction": 46.42, "Median Spend per Customer": 59.38 }, "geometry": { "type": "Point", "coordinates": [ -75.230845, 39.927769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "Name": "Calvin Klein", "Category": "Clothing Stores", "Address": "1889 Franklin Mills Cir", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 57.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 4783.0, "Total Transactions": 73.0, "Total Customers": 66.0, "Median Spend per Transaction": 53.95, "Median Spend per Customer": 56.72 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "Name": "Muslim Fashion", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "5210 Chestnut St", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2022, "Total Visits": 301.0, "Total Visitors": 267.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 11.0, "Total Spend": 2317.0, "Total Transactions": 21.0, "Total Customers": 9.0, "Median Spend per Transaction": 123.5, "Median Spend per Customer": 244.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgj-cbk", "Name": "Columbia Fish", "Category": "Specialty Food Stores", "Address": "1701 Cecil B Moore Ave", "LATITUDE": 39.9795, "LONGITUDE": -75.162782, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 51.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 91.0, "Total Spend": 310.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 88.86, "Median Spend per Customer": 88.86 }, "geometry": { "type": "Point", "coordinates": [ -75.162782, 39.9795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-j7q", "Name": "Frecon Farms", "Category": "Specialty Food Stores", "Address": "1819 Walnut St", "LATITUDE": 39.950808, "LONGITUDE": -75.171348, "DATE_RANGE_START": 2022, "Total Visits": 4134.0, "Total Visitors": 2798.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 51.0, "Total Spend": 3854.0, "Total Transactions": 251.0, "Total Customers": 127.0, "Median Spend per Transaction": 12.75, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171348, 39.950808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "704 E Passyunk Ave # 20", "LATITUDE": 39.940142, "LONGITUDE": -75.151529, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 1.0, "Total Spend": 38693.0, "Total Transactions": 2153.0, "Total Customers": 997.0, "Median Spend per Transaction": 11.82, "Median Spend per Customer": 21.61 }, "geometry": { "type": "Point", "coordinates": [ -75.151529, 39.940142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3601 Midvale Ave", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 101.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 5.0, "Total Spend": 30046.0, "Total Transactions": 1350.0, "Total Customers": 688.0, "Median Spend per Transaction": 15.86, "Median Spend per Customer": 28.35 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1000 E Erie Ave", "LATITUDE": 40.005166, "LONGITUDE": -75.108882, "DATE_RANGE_START": 2022, "Total Visits": 1737.0, "Total Visitors": 1028.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 4.0, "Total Spend": 6797.0, "Total Transactions": 206.0, "Total Customers": 145.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 29.79 }, "geometry": { "type": "Point", "coordinates": [ -75.108882, 40.005166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4400 City Ave", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2022, "Total Visits": 2214.0, "Total Visitors": 1742.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 4.0, "Total Spend": 66032.0, "Total Transactions": 2148.0, "Total Customers": 1596.0, "Median Spend per Transaction": 25.79, "Median Spend per Customer": 35.06 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@63s-dvw-mrk", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "4 S 52nd St", "LATITUDE": 39.959737, "LONGITUDE": -75.225178, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 66.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 1.0, "Total Spend": 7921.0, "Total Transactions": 70.0, "Total Customers": 61.0, "Median Spend per Transaction": 90.0, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225178, 39.959737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-3qz", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4229 N Broad St Unit 35", "LATITUDE": 40.017784, "LONGITUDE": -75.148619, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 91.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 7.0, "Total Spend": 4024.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 56.69, "Median Spend per Customer": 57.23 }, "geometry": { "type": "Point", "coordinates": [ -75.148619, 40.017784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-8y9", "Name": "Dollar Days Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "309 S 48th St", "LATITUDE": 39.952899, "LONGITUDE": -75.218099, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 148.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 21.0, "Total Spend": 7574.0, "Total Transactions": 411.0, "Total Customers": 155.0, "Median Spend per Transaction": 14.15, "Median Spend per Customer": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.218099, 39.952899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4501 Castor Ave", "LATITUDE": 40.016881, "LONGITUDE": -75.096377, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 122.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 5.0, "Total Spend": 1465.0, "Total Transactions": 157.0, "Total Customers": 120.0, "Median Spend per Transaction": 7.55, "Median Spend per Customer": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.096377, 40.016881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "Name": "Michaels Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "9739 Roosevelt Blvd", "LATITUDE": 40.082446, "LONGITUDE": -75.023342, "DATE_RANGE_START": 2022, "Total Visits": 841.0, "Total Visitors": 740.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 9.0, "Total Spend": 44238.0, "Total Transactions": 1305.0, "Total Customers": 1044.0, "Median Spend per Transaction": 23.71, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.023342, 40.082446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w49", "Name": "Sam Ash Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1887 Franklin Mills Cir", "LATITUDE": 40.087105, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 146.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 10504.0, "Total Transactions": 63.0, "Total Customers": 51.0, "Median Spend per Transaction": 46.05, "Median Spend per Customer": 69.1 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgk-nwk", "Name": "Sharon Reed Book Store", "Category": "Book Stores and News Dealers", "Address": "3955 Conshohocken Ave", "LATITUDE": 40.003494, "LONGITUDE": -75.210472, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 68.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 70.0, "Total Spend": 1348.0, "Total Transactions": 115.0, "Total Customers": 49.0, "Median Spend per Transaction": 6.8, "Median Spend per Customer": 19.33 }, "geometry": { "type": "Point", "coordinates": [ -75.210472, 40.003494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1707 Arch St", "LATITUDE": 39.95521, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2022, "Total Visits": 462.0, "Total Visitors": 340.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 10.0, "Total Spend": 48477.0, "Total Transactions": 5007.0, "Total Customers": 2112.0, "Median Spend per Transaction": 7.87, "Median Spend per Customer": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.95521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22r@628-pmb-7yv", "Name": "Golden Fish Market", "Category": "Specialty Food Stores", "Address": "51 N 12th St", "LATITUDE": 39.953709, "LONGITUDE": -75.158958, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 589.0, "Total Transactions": 42.0, "Total Customers": 21.0, "Median Spend per Transaction": 10.96, "Median Spend per Customer": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.158958, 39.953709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-tn5", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "721 Walnut St", "LATITUDE": 39.948145, "LONGITUDE": -75.153461, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 73.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 814.0, "Total Spend": 2349.0, "Total Transactions": 124.0, "Total Customers": 64.0, "Median Spend per Transaction": 13.47, "Median Spend per Customer": 22.12 }, "geometry": { "type": "Point", "coordinates": [ -75.153461, 39.948145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "Name": "Old Nelson Food Company", "Category": "Beer, Wine, and Liquor Stores", "Address": "1100 W Montgomery Ave Ste D", "LATITUDE": 39.979391, "LONGITUDE": -75.152636, "DATE_RANGE_START": 2022, "Total Visits": 2092.0, "Total Visitors": 1045.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 179.0, "Total Spend": 19079.0, "Total Transactions": 1371.0, "Total Customers": 666.0, "Median Spend per Transaction": 11.52, "Median Spend per Customer": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.152636, 39.979391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pjf-kvf", "Name": "Hideaway Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "8232 Germantown Ave", "LATITUDE": 40.076825, "LONGITUDE": -75.208128, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 98.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 350.0, "Total Spend": 2182.0, "Total Transactions": 64.0, "Total Customers": 30.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208128, 40.076825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912527, "LONGITUDE": -75.154627, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 190.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 9.0, "Total Spend": 3604.0, "Total Transactions": 85.0, "Total Customers": 77.0, "Median Spend per Transaction": 30.1, "Median Spend per Customer": 30.35 }, "geometry": { "type": "Point", "coordinates": [ -75.154627, 39.912527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-87q", "Name": "Rittenhouse Needlepoint", "Category": "Other Miscellaneous Store Retailers", "Address": "1216 Arch St Ste 2A", "LATITUDE": 39.953747, "LONGITUDE": -75.160369, "DATE_RANGE_START": 2022, "Total Visits": 6573.0, "Total Visitors": 4744.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 70.0, "Total Spend": 256.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 36.77, "Median Spend per Customer": 23.18 }, "geometry": { "type": "Point", "coordinates": [ -75.160369, 39.953747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-djv", "Name": "Robins Auto Sales", "Category": "Automobile Dealers", "Address": "3701 N 2nd St", "LATITUDE": 40.007208, "LONGITUDE": -75.131277, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 56.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 18.0, "Total Spend": 432.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 62.0, "Median Spend per Customer": 124.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131277, 40.007208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg9-xt9", "Name": "Francisville Farmers Market", "Category": "Specialty Food Stores", "Address": "1400 Ridge Ave", "LATITUDE": 39.967356, "LONGITUDE": -75.161649, "DATE_RANGE_START": 2022, "Total Visits": 193.0, "Total Visitors": 167.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 8.0, "Total Spend": 482.0, "Total Transactions": 24.0, "Total Customers": 12.0, "Median Spend per Transaction": 18.48, "Median Spend per Customer": 36.96 }, "geometry": { "type": "Point", "coordinates": [ -75.161649, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sbk", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.913277, "LONGITUDE": -75.154576, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 80.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 7.0, "Total Spend": 3576.0, "Total Transactions": 94.0, "Total Customers": 80.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 33.65 }, "geometry": { "type": "Point", "coordinates": [ -75.154576, 39.913277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "Name": "Marine Layer", "Category": "Clothing Stores", "Address": "1604 Walnut St", "LATITUDE": 39.949625, "LONGITUDE": -75.16782, "DATE_RANGE_START": 2022, "Total Visits": 1197.0, "Total Visitors": 1012.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 3.0, "Total Spend": 5645.0, "Total Transactions": 56.0, "Total Customers": 35.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 148.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16782, 39.949625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "Name": "lululemon athletica", "Category": "Clothing Stores", "Address": "1720 Walnut St", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 284.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 28616.0, "Total Transactions": 242.0, "Total Customers": 211.0, "Median Spend per Transaction": 96.0, "Median Spend per Customer": 103.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 Castor Ave", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2022, "Total Visits": 6484.0, "Total Visitors": 3507.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 13.0, "Total Spend": 208469.0, "Total Transactions": 4084.0, "Total Customers": 2319.0, "Median Spend per Transaction": 31.31, "Median Spend per Customer": 54.38 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "138 W Chelten Ave", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 176.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 20.0, "Total Spend": 473.0, "Total Transactions": 28.0, "Total Customers": 23.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm9-zmk", "Name": "Anastacia's Antiques", "Category": "Used Merchandise Stores", "Address": "617 Bainbridge St", "LATITUDE": 39.941324, "LONGITUDE": -75.153108, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010015001.0, "Median Dwell Time": null, "Total Spend": 21657.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 3034.8, "Median Spend per Customer": 6215.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153108, 39.941324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-ty9", "Name": "Sakura Japanese Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1521 Spring Garden St", "LATITUDE": 39.962988, "LONGITUDE": -75.163765, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 1.0, "Total Spend": 923.0, "Total Transactions": 40.0, "Total Customers": 19.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.163765, 39.962988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "Name": "Just To Serve You", "Category": "Restaurants and Other Eating Places", "Address": "5622 W Girard Ave", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 19.0, "POI_CBG": 421010102001.0, "Median Dwell Time": 22.0, "Total Spend": 1075.0, "Total Transactions": 38.0, "Total Customers": 21.0, "Median Spend per Transaction": 19.22, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "1622 South St", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 39.0, "Total Spend": 4533.0, "Total Transactions": 195.0, "Total Customers": 101.0, "Median Spend per Transaction": 17.84, "Median Spend per Customer": 36.74 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-nwk", "Name": "La Casa Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "3871 L St", "LATITUDE": 40.005788, "LONGITUDE": -75.102968, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 28.0, "POI_CBG": 421010190001.0, "Median Dwell Time": 469.0, "Total Spend": 4340.0, "Total Transactions": 211.0, "Total Customers": 71.0, "Median Spend per Transaction": 20.91, "Median Spend per Customer": 41.82 }, "geometry": { "type": "Point", "coordinates": [ -75.102968, 40.005788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-w49", "Name": "The Royal Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "272 S 20th St", "LATITUDE": 39.948373, "LONGITUDE": -75.174503, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 28.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 311.0, "Total Spend": 370.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 70.16 }, "geometry": { "type": "Point", "coordinates": [ -75.174503, 39.948373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-75z", "Name": "North Third", "Category": "Restaurants and Other Eating Places", "Address": "801 N 3rd St", "LATITUDE": 39.963481, "LONGITUDE": -75.142676, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 44.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 73.0, "Total Spend": 1175.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 189.16 }, "geometry": { "type": "Point", "coordinates": [ -75.142676, 39.963481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "Name": "Clarkville", "Category": "Restaurants and Other Eating Places", "Address": "4301 Baltimore Ave", "LATITUDE": 39.949731, "LONGITUDE": -75.209453, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 45.0, "POI_CBG": 421010087011.0, "Median Dwell Time": 76.0, "Total Spend": 32253.0, "Total Transactions": 828.0, "Total Customers": 378.0, "Median Spend per Transaction": 33.91, "Median Spend per Customer": 68.16 }, "geometry": { "type": "Point", "coordinates": [ -75.209453, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-r6k", "Name": "Grindcore House", "Category": "Restaurants and Other Eating Places", "Address": "1515 S 4th St", "LATITUDE": 39.929019, "LONGITUDE": -75.151738, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010027023.0, "Median Dwell Time": 7.0, "Total Spend": 4062.0, "Total Transactions": 310.0, "Total Customers": 124.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 27.32 }, "geometry": { "type": "Point", "coordinates": [ -75.151738, 39.929019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "Name": "Riverwards Produce", "Category": "Grocery Stores", "Address": "2200 E Norris St", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 78.0, "POI_CBG": 421010158001.0, "Median Dwell Time": 4.0, "Total Spend": 32484.0, "Total Transactions": 1152.0, "Total Customers": 331.0, "Median Spend per Transaction": 22.09, "Median Spend per Customer": 81.44 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-qs5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3501 Cedar St", "LATITUDE": 39.991422, "LONGITUDE": -75.097766, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 186.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 5.0, "Total Spend": 133.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 38.04, "Median Spend per Customer": 38.04 }, "geometry": { "type": "Point", "coordinates": [ -75.097766, 39.991422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-bhq", "Name": "Lloyd Whiskey Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "529 E Girard Ave", "LATITUDE": 39.971373, "LONGITUDE": -75.127654, "DATE_RANGE_START": 2022, "Total Visits": 183.0, "Total Visitors": 132.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 31.0, "Total Spend": 24268.0, "Total Transactions": 329.0, "Total Customers": 155.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 119.54 }, "geometry": { "type": "Point", "coordinates": [ -75.127654, 39.971373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-6x5", "Name": "Ocean Prime", "Category": "Restaurants and Other Eating Places", "Address": "124 S 15th St", "LATITUDE": 39.950182, "LONGITUDE": -75.165953, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 279.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 13.0, "Total Spend": 7768.0, "Total Transactions": 35.0, "Total Customers": 30.0, "Median Spend per Transaction": 164.74, "Median Spend per Customer": 227.88 }, "geometry": { "type": "Point", "coordinates": [ -75.165953, 39.950182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "Name": "Front Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1253 N Front St", "LATITUDE": 39.970159, "LONGITUDE": -75.135552, "DATE_RANGE_START": 2022, "Total Visits": 479.0, "Total Visitors": 355.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 86.0, "Total Spend": 78018.0, "Total Transactions": 1436.0, "Total Customers": 697.0, "Median Spend per Transaction": 44.08, "Median Spend per Customer": 89.82 }, "geometry": { "type": "Point", "coordinates": [ -75.135552, 39.970159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-mrk", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "1601 Market St", "LATITUDE": 39.953042, "LONGITUDE": -75.167502, "DATE_RANGE_START": 2022, "Total Visits": 371.0, "Total Visitors": 232.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 159.0, "Total Spend": 579.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 16.28, "Median Spend per Customer": 15.46 }, "geometry": { "type": "Point", "coordinates": [ -75.167502, 39.953042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm4-k2k", "Name": "Four Seasons", "Category": "Restaurants and Other Eating Places", "Address": "612 Washington Ave", "LATITUDE": 39.934412, "LONGITUDE": -75.1543, "DATE_RANGE_START": 2022, "Total Visits": 1427.0, "Total Visitors": 995.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 26.0, "Total Spend": 38669.0, "Total Transactions": 906.0, "Total Customers": 443.0, "Median Spend per Transaction": 8.22, "Median Spend per Customer": 16.23 }, "geometry": { "type": "Point", "coordinates": [ -75.1543, 39.934412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "Name": "Frieda", "Category": "Restaurants and Other Eating Places", "Address": "320 Walnut St", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 54.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 34.0, "Total Spend": 7975.0, "Total Transactions": 331.0, "Total Customers": 129.0, "Median Spend per Transaction": 14.52, "Median Spend per Customer": 47.15 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p9p-z2k", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9979 Bustleton Ave", "LATITUDE": 40.101427, "LONGITUDE": -75.028593, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 57.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 2.0, "Total Spend": 1187.0, "Total Transactions": 80.0, "Total Customers": 64.0, "Median Spend per Transaction": 14.13, "Median Spend per Customer": 15.78 }, "geometry": { "type": "Point", "coordinates": [ -75.028593, 40.101427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "Name": "In Riva", "Category": "Restaurants and Other Eating Places", "Address": "4116 Ridge Ave", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 134.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 34.0, "Total Spend": 54756.0, "Total Transactions": 733.0, "Total Customers": 352.0, "Median Spend per Transaction": 67.66, "Median Spend per Customer": 128.12 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pj6-k4v", "Name": "Mirim", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St Ste 124", "LATITUDE": 40.044989, "LONGITUDE": -75.117489, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 20.0, "Total Spend": 6718.0, "Total Transactions": 340.0, "Total Customers": 171.0, "Median Spend per Transaction": 17.19, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.117489, 40.044989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5201 Rising Sun Ave", "LATITUDE": 40.029093, "LONGITUDE": -75.118871, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 185.0, "POI_CBG": 421010290004.0, "Median Dwell Time": 9.0, "Total Spend": 1531.0, "Total Transactions": 77.0, "Total Customers": 26.0, "Median Spend per Transaction": 7.43, "Median Spend per Customer": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.118871, 40.029093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-vvf", "Name": "Pret A Manger", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955744, "LONGITUDE": -75.181965, "DATE_RANGE_START": 2022, "Total Visits": 28654.0, "Total Visitors": 19157.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 9.0, "Total Spend": 14620.0, "Total Transactions": 1389.0, "Total Customers": 1150.0, "Median Spend per Transaction": 9.28, "Median Spend per Customer": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.181965, 39.955744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pnw-pjv", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "115 E Girard Ave", "LATITUDE": 39.969267, "LONGITUDE": -75.133945, "DATE_RANGE_START": 2022, "Total Visits": 328.0, "Total Visitors": 294.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 32.0, "Total Spend": 301.0, "Total Transactions": 24.0, "Total Customers": 10.0, "Median Spend per Transaction": 12.64, "Median Spend per Customer": 29.64 }, "geometry": { "type": "Point", "coordinates": [ -75.133945, 39.969267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "8261 Stenton Ave", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2022, "Total Visits": 1768.0, "Total Visitors": 1106.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 4.0, "Total Spend": 3242.0, "Total Transactions": 85.0, "Total Customers": 52.0, "Median Spend per Transaction": 35.01, "Median Spend per Customer": 47.76 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7941 Bustleton Av & Loney St", "LATITUDE": 40.058164, "LONGITUDE": -75.052414, "DATE_RANGE_START": 2022, "Total Visits": 1305.0, "Total Visitors": 812.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 3.0, "Total Spend": 4964.0, "Total Transactions": 108.0, "Total Customers": 47.0, "Median Spend per Transaction": 40.06, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.052414, 40.058164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1 Mifflin St", "LATITUDE": 39.92482, "LONGITUDE": -75.146253, "DATE_RANGE_START": 2022, "Total Visits": 7192.0, "Total Visitors": 4659.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 18.0, "Total Spend": 445751.0, "Total Transactions": 7847.0, "Total Customers": 4906.0, "Median Spend per Transaction": 35.2, "Median Spend per Customer": 56.62 }, "geometry": { "type": "Point", "coordinates": [ -75.146253, 39.92482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2200 Wheatsheaf Ln Ste E6", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2022, "Total Visits": 725.0, "Total Visitors": 608.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 5.0, "Total Spend": 16474.0, "Total Transactions": 840.0, "Total Customers": 599.0, "Median Spend per Transaction": 13.25, "Median Spend per Customer": 19.25 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-5vf", "Name": "Wellcare Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2220 Cottman Ave Fl 1", "LATITUDE": 40.048598, "LONGITUDE": -75.061857, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 94.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 3.0, "Total Spend": 906.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.12, "Median Spend per Customer": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.061857, 40.048598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8v-7nq", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "189 Franklin Mills Blvd", "LATITUDE": 40.088588, "LONGITUDE": -74.965931, "DATE_RANGE_START": 2022, "Total Visits": 488.0, "Total Visitors": 413.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 371.0, "Total Transactions": 31.0, "Total Customers": 12.0, "Median Spend per Transaction": 6.43, "Median Spend per Customer": 12.86 }, "geometry": { "type": "Point", "coordinates": [ -74.965931, 40.088588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9200 Frankford Ave Ste 250", "LATITUDE": 40.055425, "LONGITUDE": -75.00482, "DATE_RANGE_START": 2022, "Total Visits": 829.0, "Total Visitors": 608.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 7.0, "Total Spend": 8329.0, "Total Transactions": 343.0, "Total Customers": 232.0, "Median Spend per Transaction": 17.65, "Median Spend per Customer": 22.99 }, "geometry": { "type": "Point", "coordinates": [ -75.00482, 40.055425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-ffz", "Name": "D'jakarta Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1540 W Ritner St", "LATITUDE": 39.920881, "LONGITUDE": -75.173653, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 42.0, "POI_CBG": 421010039021.0, "Median Dwell Time": 628.0, "Total Spend": 2152.0, "Total Transactions": 42.0, "Total Customers": 17.0, "Median Spend per Transaction": 59.62, "Median Spend per Customer": 98.72 }, "geometry": { "type": "Point", "coordinates": [ -75.173653, 39.920881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "Name": "Palm Tree Gourmet", "Category": "Grocery Stores", "Address": "1940 Pine St", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 40.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 464.0, "Total Spend": 5840.0, "Total Transactions": 411.0, "Total Customers": 261.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 17.18 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-q2k", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912266, "LONGITUDE": -75.155082, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 54.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 20.0, "Total Spend": 538.0, "Total Transactions": 23.0, "Total Customers": 14.0, "Median Spend per Transaction": 23.17, "Median Spend per Customer": 32.07 }, "geometry": { "type": "Point", "coordinates": [ -75.155082, 39.912266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-t7q", "Name": "Vetri Cucina", "Category": "Restaurants and Other Eating Places", "Address": "1312 Spruce St", "LATITUDE": 39.946687, "LONGITUDE": -75.163203, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 42.0, "POI_CBG": 421010011014.0, "Median Dwell Time": 107.0, "Total Spend": 29152.0, "Total Transactions": 52.0, "Total Customers": 28.0, "Median Spend per Transaction": 534.95, "Median Spend per Customer": 1029.7 }, "geometry": { "type": "Point", "coordinates": [ -75.163203, 39.946687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmf-g6k", "Name": "D J Casmiri Food Service", "Category": "Special Food Services", "Address": "830 Schuykill Ave", "LATITUDE": 39.943633, "LONGITUDE": -75.189462, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 94.0, "POI_CBG": 421010013005.0, "Median Dwell Time": 61.0, "Total Spend": 113.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 5.48, "Median Spend per Customer": 10.95 }, "geometry": { "type": "Point", "coordinates": [ -75.189462, 39.943633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-w6k", "Name": "Pizza Roma", "Category": "Restaurants and Other Eating Places", "Address": "7300 Bustleton Ave", "LATITUDE": 40.049594, "LONGITUDE": -75.059819, "DATE_RANGE_START": 2022, "Total Visits": 220.0, "Total Visitors": 186.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 6.0, "Total Spend": 8044.0, "Total Transactions": 608.0, "Total Customers": 146.0, "Median Spend per Transaction": 9.81, "Median Spend per Customer": 34.46 }, "geometry": { "type": "Point", "coordinates": [ -75.059819, 40.049594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-nnq", "Name": "M & M Food Market", "Category": "Grocery Stores", "Address": "458 Markle St", "LATITUDE": 40.02486, "LONGITUDE": -75.210261, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 19.0, "Total Spend": 1052.0, "Total Transactions": 113.0, "Total Customers": 35.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 30.99 }, "geometry": { "type": "Point", "coordinates": [ -75.210261, 40.02486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-n3q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Jfk Blvd 2 Penn Center Concourse", "LATITUDE": 39.95343, "LONGITUDE": -75.165858, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 63.0, "Total Spend": 954.0, "Total Transactions": 181.0, "Total Customers": 132.0, "Median Spend per Transaction": 4.69, "Median Spend per Customer": 5.41 }, "geometry": { "type": "Point", "coordinates": [ -75.165858, 39.95343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012073, "LONGITUDE": -75.115248, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 199.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 96.0, "Total Spend": 441.0, "Total Transactions": 33.0, "Total Customers": 21.0, "Median Spend per Transaction": 12.05, "Median Spend per Customer": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.115248, 40.012073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-brk", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2539 Castor Ave Ste D", "LATITUDE": 39.994031, "LONGITUDE": -75.091432, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 141.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 6.0, "Total Spend": 10849.0, "Total Transactions": 89.0, "Total Customers": 63.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 62.27 }, "geometry": { "type": "Point", "coordinates": [ -75.091432, 39.994031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2001 Pennsylvania Ave", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2022, "Total Visits": 1991.0, "Total Visitors": 1423.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 10.0, "Total Spend": 229403.0, "Total Transactions": 6223.0, "Total Customers": 3575.0, "Median Spend per Transaction": 25.49, "Median Spend per Customer": 39.86 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "Name": "Paradise Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1363 E Lycoming St", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 23.0, "POI_CBG": 421010190004.0, "Median Dwell Time": 31.0, "Total Spend": 1228.0, "Total Transactions": 44.0, "Total Customers": 19.0, "Median Spend per Transaction": 29.71, "Median Spend per Customer": 64.16 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1345 W Olney Ave", "LATITUDE": 40.039133, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 89.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 2.0, "Total Spend": 4357.0, "Total Transactions": 747.0, "Total Customers": 240.0, "Median Spend per Transaction": 5.24, "Median Spend per Customer": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 40.039133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-389", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "30 Franklin Mills Blvd", "LATITUDE": 40.084522, "LONGITUDE": -74.967251, "DATE_RANGE_START": 2022, "Total Visits": 235.0, "Total Visitors": 200.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 26.0, "Total Spend": 23565.0, "Total Transactions": 21.0, "Total Customers": 12.0, "Median Spend per Transaction": 658.68, "Median Spend per Customer": 1468.63 }, "geometry": { "type": "Point", "coordinates": [ -74.967251, 40.084522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "Name": "Best Buy Furniture", "Category": "Furniture Stores", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.078042, "LONGITUDE": -75.024894, "DATE_RANGE_START": 2022, "Total Visits": 2162.0, "Total Visitors": 1504.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 84.0, "Total Spend": 10073.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 1155.0, "Median Spend per Customer": 2310.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024894, 40.078042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "Name": "CB2", "Category": "Furniture Stores", "Address": "1422 Walnut St", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2022, "Total Visits": 1186.0, "Total Visitors": 904.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 38.0, "Total Spend": 39450.0, "Total Transactions": 138.0, "Total Customers": 37.0, "Median Spend per Transaction": 97.1, "Median Spend per Customer": 92.36 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-phc-rkz", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "5022 City Ave # 24", "LATITUDE": 39.999213, "LONGITUDE": -75.22984, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 2.0, "Total Spend": 54.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.78, "Median Spend per Customer": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.22984, 39.999213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1617 John F Kennedy Blvd", "LATITUDE": 39.954271, "LONGITUDE": -75.167991, "DATE_RANGE_START": 2022, "Total Visits": 4749.0, "Total Visitors": 2620.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 40.0, "Total Spend": 5470.0, "Total Transactions": 312.0, "Total Customers": 246.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 16.08 }, "geometry": { "type": "Point", "coordinates": [ -75.167991, 39.954271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6399 Oxford Ave", "LATITUDE": 40.045071, "LONGITUDE": -75.088214, "DATE_RANGE_START": 2022, "Total Visits": 1425.0, "Total Visitors": 883.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 4.0, "Total Spend": 4394.0, "Total Transactions": 110.0, "Total Customers": 89.0, "Median Spend per Transaction": 35.06, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088214, 40.045071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-hwk", "Name": "The Men's Wearhouse", "Category": "Clothing Stores", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079413, "LONGITUDE": -75.029146, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 117.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 4232.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 162.6, "Median Spend per Customer": 205.19 }, "geometry": { "type": "Point", "coordinates": [ -75.029146, 40.079413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "Name": "Destination XL", "Category": "Clothing Stores", "Address": "2329 Cottman Ave Spc 51", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 141.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 6.0, "Total Spend": 5996.0, "Total Transactions": 57.0, "Total Customers": 49.0, "Median Spend per Transaction": 64.26, "Median Spend per Customer": 100.63 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "Name": "Theory", "Category": "Clothing Stores", "Address": "1616 Walnut St", "LATITUDE": 39.949699, "LONGITUDE": -75.168323, "DATE_RANGE_START": 2022, "Total Visits": 279.0, "Total Visitors": 228.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 198.0, "Total Spend": 7772.0, "Total Transactions": 26.0, "Total Customers": 16.0, "Median Spend per Transaction": 220.0, "Median Spend per Customer": 470.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168323, 39.949699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-tsq", "Name": "J's Mini Market", "Category": "Grocery Stores", "Address": "4601 Horrocks St", "LATITUDE": 40.017868, "LONGITUDE": -75.091027, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 28.0, "POI_CBG": 421010301003.0, "Median Dwell Time": null, "Total Spend": 310.0, "Total Transactions": 44.0, "Total Customers": 9.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091027, 40.017868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7w-wp9", "Name": "Cappys Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6901 Frankford Ave", "LATITUDE": 40.032823, "LONGITUDE": -75.048281, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 28.0, "POI_CBG": 421010325001.0, "Median Dwell Time": 20.0, "Total Spend": 22696.0, "Total Transactions": 101.0, "Total Customers": 24.0, "Median Spend per Transaction": 120.0, "Median Spend per Customer": 405.75 }, "geometry": { "type": "Point", "coordinates": [ -75.048281, 40.032823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1500 E Erie Ave", "LATITUDE": 40.005384, "LONGITUDE": -75.097837, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 155.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 4.0, "Total Spend": 621.0, "Total Transactions": 54.0, "Total Customers": 49.0, "Median Spend per Transaction": 8.67, "Median Spend per Customer": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.097837, 40.005384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmd-vj9", "Name": "Nature's Gallery Florist", "Category": "Florists", "Address": "2124 Walnut St", "LATITUDE": 39.950794, "LONGITUDE": -75.177008, "DATE_RANGE_START": 2022, "Total Visits": 1436.0, "Total Visitors": 829.0, "POI_CBG": 421010008031.0, "Median Dwell Time": 259.0, "Total Spend": 978.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 81.0, "Median Spend per Customer": 162.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177008, 39.950794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1635 Spruce St", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 162.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 179.0, "Total Spend": 21210.0, "Total Transactions": 612.0, "Total Customers": 272.0, "Median Spend per Transaction": 24.81, "Median Spend per Customer": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dwf-q9f", "Name": "Shotz", "Category": "Restaurants and Other Eating Places", "Address": "7417 Buist Ave", "LATITUDE": 39.911065, "LONGITUDE": -75.243379, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 10.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 54.0, "Total Spend": 871.0, "Total Transactions": 21.0, "Total Customers": 5.0, "Median Spend per Transaction": 25.75, "Median Spend per Customer": 175.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243379, 39.911065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-7yv", "Name": "Carnival Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4222 Lancaster Ave", "LATITUDE": 39.967096, "LONGITUDE": -75.208944, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010106001.0, "Median Dwell Time": 3.0, "Total Spend": 299.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 18.62, "Median Spend per Customer": 37.24 }, "geometry": { "type": "Point", "coordinates": [ -75.208944, 39.967096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-68v", "Name": "J'aime French Bakery", "Category": "Restaurants and Other Eating Places", "Address": "212 S 12th St", "LATITUDE": 39.948054, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 146.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 11.0, "Total Spend": 1582.0, "Total Transactions": 117.0, "Total Customers": 52.0, "Median Spend per Transaction": 10.45, "Median Spend per Customer": 21.08 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.948054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm9-tn5", "Name": "Cafe Walnut", "Category": "Restaurants and Other Eating Places", "Address": "703 Walnut St", "LATITUDE": 39.948274, "LONGITUDE": -75.152798, "DATE_RANGE_START": 2022, "Total Visits": 1821.0, "Total Visitors": 1206.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 122.0, "Total Spend": 4342.0, "Total Transactions": 436.0, "Total Customers": 120.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152798, 39.948274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2749 W Hunting Park Ave Ste 130", "LATITUDE": 40.00769, "LONGITUDE": -75.17457, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 84.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 3.0, "Total Spend": 3957.0, "Total Transactions": 432.0, "Total Customers": 312.0, "Median Spend per Transaction": 7.59, "Median Spend per Customer": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.17457, 40.00769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg4-grk", "Name": "1beautysupplypa", "Category": "Health and Personal Care Stores", "Address": "301 W Chelten Ave Ste C", "LATITUDE": 40.030533, "LONGITUDE": -75.181364, "DATE_RANGE_START": 2022, "Total Visits": 279.0, "Total Visitors": 213.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 7.0, "Total Spend": 6740.0, "Total Transactions": 169.0, "Total Customers": 70.0, "Median Spend per Transaction": 30.22, "Median Spend per Customer": 60.45 }, "geometry": { "type": "Point", "coordinates": [ -75.181364, 40.030533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "1501 E Susquehanna Ave", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 24.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 9.0, "Total Spend": 1874.0, "Total Transactions": 91.0, "Total Customers": 45.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p85-7nq", "Name": "Tuscany Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "2418 Rhawn St", "LATITUDE": 40.056919, "LONGITUDE": -75.047895, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 57.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 77.0, "Total Spend": 501.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 48.77, "Median Spend per Customer": 88.0 }, "geometry": { "type": "Point", "coordinates": [ -75.047895, 40.056919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "Name": "Spring Garden Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "400 Spring Garden St", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2022, "Total Visits": 321.0, "Total Visitors": 261.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 6.0, "Total Spend": 8754.0, "Total Transactions": 324.0, "Total Customers": 120.0, "Median Spend per Transaction": 21.21, "Median Spend per Customer": 49.16 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4sq", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "5579 Old York Rd", "LATITUDE": 40.038439, "LONGITUDE": -75.144402, "DATE_RANGE_START": 2022, "Total Visits": 305.0, "Total Visitors": 233.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 2.0, "Total Spend": 455.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 28.35, "Median Spend per Customer": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144402, 40.038439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pm7-49z", "Name": "Mike's Hot Dog Cart", "Category": "Restaurants and Other Eating Places", "Address": "24th & Passyunk Ave Passyunk Ave", "LATITUDE": 39.922168, "LONGITUDE": -75.186888, "DATE_RANGE_START": 2022, "Total Visits": 3835.0, "Total Visitors": 2432.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 3.0, "Total Spend": 926.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 25.47, "Median Spend per Customer": 59.55 }, "geometry": { "type": "Point", "coordinates": [ -75.186888, 39.922168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm4-h5z", "Name": "Le Virtu", "Category": "Restaurants and Other Eating Places", "Address": "1927 E Passyunk Ave", "LATITUDE": 39.925948, "LONGITUDE": -75.16776, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 37.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 61.0, "Total Spend": 16297.0, "Total Transactions": 127.0, "Total Customers": 68.0, "Median Spend per Transaction": 114.24, "Median Spend per Customer": 202.08 }, "geometry": { "type": "Point", "coordinates": [ -75.16776, 39.925948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yqf", "Name": "T Swirl Crepe", "Category": "Restaurants and Other Eating Places", "Address": "150 N 10th St", "LATITUDE": 39.955094, "LONGITUDE": -75.156151, "DATE_RANGE_START": 2022, "Total Visits": 225.0, "Total Visitors": 174.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 9581.0, "Total Transactions": 512.0, "Total Customers": 256.0, "Median Spend per Transaction": 16.74, "Median Spend per Customer": 30.51 }, "geometry": { "type": "Point", "coordinates": [ -75.156151, 39.955094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@63s-dvy-8y9", "Name": "48th Street Grille", "Category": "Restaurants and Other Eating Places", "Address": "310 S 48th St", "LATITUDE": 39.953128, "LONGITUDE": -75.218509, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 38.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 59.0, "Total Spend": 1960.0, "Total Transactions": 40.0, "Total Customers": 23.0, "Median Spend per Transaction": 29.84, "Median Spend per Customer": 56.16 }, "geometry": { "type": "Point", "coordinates": [ -75.218509, 39.953128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "Name": "A Z Budget", "Category": "Department Stores", "Address": "2914 N Broad St", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 77.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 1.0, "Total Spend": 5710.0, "Total Transactions": 40.0, "Total Customers": 21.0, "Median Spend per Transaction": 24.76, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-vxq", "Name": "Jersey Mike's", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955112, "LONGITUDE": -75.18233, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 57.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 1.0, "Total Spend": 9075.0, "Total Transactions": 716.0, "Total Customers": 575.0, "Median Spend per Transaction": 11.21, "Median Spend per Customer": 12.82 }, "geometry": { "type": "Point", "coordinates": [ -75.18233, 39.955112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pm9-wtv", "Name": "Ross Stores", "Category": "Department Stores", "Address": "701 Market St", "LATITUDE": 39.951286, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 12633.0, "Total Transactions": 322.0, "Total Customers": 268.0, "Median Spend per Transaction": 25.98, "Median Spend per Customer": 26.94 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.951286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-tsq", "Name": "Pennsport Beer Boutique", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "242 Wharton St", "LATITUDE": 39.931601, "LONGITUDE": -75.149607, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 45.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 1.0, "Total Spend": 3641.0, "Total Transactions": 176.0, "Total Customers": 71.0, "Median Spend per Transaction": 19.2, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149607, 39.931601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1501 N 52nd St", "LATITUDE": 39.977256, "LONGITUDE": -75.226088, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 146.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 3.0, "Total Spend": 2544.0, "Total Transactions": 326.0, "Total Customers": 199.0, "Median Spend per Transaction": 6.54, "Median Spend per Customer": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.226088, 39.977256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-6p9", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "1515 Chestnut St", "LATITUDE": 39.951312, "LONGITUDE": -75.166086, "DATE_RANGE_START": 2022, "Total Visits": 805.0, "Total Visitors": 608.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 20.0, "Total Spend": 63.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.73, "Median Spend per Customer": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.166086, 39.951312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-5s5", "Name": "Halal Gyro King", "Category": "Restaurants and Other Eating Places", "Address": "1 S 12th St", "LATITUDE": 39.951797, "LONGITUDE": -75.15974, "DATE_RANGE_START": 2022, "Total Visits": 5603.0, "Total Visitors": 3727.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 95.0, "Total Spend": 1787.0, "Total Transactions": 113.0, "Total Customers": 35.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15974, 39.951797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7500 Frankford Ave", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2022, "Total Visits": 603.0, "Total Visitors": 359.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 3.0, "Total Spend": 8677.0, "Total Transactions": 1064.0, "Total Customers": 404.0, "Median Spend per Transaction": 6.89, "Median Spend per Customer": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 18th St", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2022, "Total Visits": 596.0, "Total Visitors": 321.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 3.0, "Total Spend": 4188.0, "Total Transactions": 625.0, "Total Customers": 256.0, "Median Spend per Transaction": 5.05, "Median Spend per Customer": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "200 W Washington Sq", "LATITUDE": 39.94797, "LONGITUDE": -75.154128, "DATE_RANGE_START": 2022, "Total Visits": 406.0, "Total Visitors": 275.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 123.0, "Total Spend": 5752.0, "Total Transactions": 692.0, "Total Customers": 439.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 9.13 }, "geometry": { "type": "Point", "coordinates": [ -75.154128, 39.94797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3675 Market St", "LATITUDE": 39.956525, "LONGITUDE": -75.195111, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 58.0, "Total Spend": 8768.0, "Total Transactions": 1134.0, "Total Customers": 449.0, "Median Spend per Transaction": 6.4, "Median Spend per Customer": 13.88 }, "geometry": { "type": "Point", "coordinates": [ -75.195111, 39.956525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "Name": "Asia Express", "Category": "Restaurants and Other Eating Places", "Address": "7246 Castor Ave", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010310001.0, "Median Dwell Time": 4.0, "Total Spend": 1427.0, "Total Transactions": 51.0, "Total Customers": 24.0, "Median Spend per Transaction": 23.54, "Median Spend per Customer": 52.63 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5756 Baltimore Ave # 74", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2022, "Total Visits": 1155.0, "Total Visitors": 807.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 4.0, "Total Spend": 11953.0, "Total Transactions": 514.0, "Total Customers": 329.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 24.37 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-j5f", "Name": "J Crew", "Category": "Clothing Stores", "Address": "1719 Walnut St", "LATITUDE": 39.950211, "LONGITUDE": -75.169927, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 192.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 154.0, "Total Spend": 19982.0, "Total Transactions": 185.0, "Total Customers": 162.0, "Median Spend per Transaction": 79.72, "Median Spend per Customer": 89.89 }, "geometry": { "type": "Point", "coordinates": [ -75.169927, 39.950211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-kzz", "Name": "Sioux Zanne Messix", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "54 N 3rd St", "LATITUDE": 39.951652, "LONGITUDE": -75.145431, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 237.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 19.0, "Total Spend": 154.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.04, "Median Spend per Customer": 44.07 }, "geometry": { "type": "Point", "coordinates": [ -75.145431, 39.951652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pmc-2p9", "Name": "Haley Quinn's Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "1023 Hamilton St", "LATITUDE": 39.960383, "LONGITUDE": -75.155544, "DATE_RANGE_START": 2022, "Total Visits": 216.0, "Total Visitors": 150.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 53.0, "Total Spend": 178.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.155544, 39.960383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnw-yvz", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "901 W Girard Ave Ste 1B", "LATITUDE": 39.97112, "LONGITUDE": -75.151073, "DATE_RANGE_START": 2022, "Total Visits": 392.0, "Total Visitors": 329.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 6.0, "Total Spend": 608.0, "Total Transactions": 24.0, "Total Customers": 14.0, "Median Spend per Transaction": 24.02, "Median Spend per Customer": 24.93 }, "geometry": { "type": "Point", "coordinates": [ -75.151073, 39.97112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "3300 Aramingo Ave", "LATITUDE": 39.990629, "LONGITUDE": -75.10302, "DATE_RANGE_START": 2022, "Total Visits": 493.0, "Total Visitors": 423.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 8.0, "Total Spend": 28128.0, "Total Transactions": 690.0, "Total Customers": 462.0, "Median Spend per Transaction": 26.65, "Median Spend per Customer": 42.27 }, "geometry": { "type": "Point", "coordinates": [ -75.10302, 39.990629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1801 Spruce St", "LATITUDE": 39.947944, "LONGITUDE": -75.171288, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 145.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 2.0, "Total Spend": 6224.0, "Total Transactions": 819.0, "Total Customers": 484.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.171288, 39.947944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "322 N Broad St", "LATITUDE": 39.959088, "LONGITUDE": -75.1625, "DATE_RANGE_START": 2022, "Total Visits": 1498.0, "Total Visitors": 704.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 340.0, "Total Spend": 13449.0, "Total Transactions": 1030.0, "Total Customers": 397.0, "Median Spend per Transaction": 10.84, "Median Spend per Customer": 27.12 }, "geometry": { "type": "Point", "coordinates": [ -75.1625, 39.959088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032059, "LONGITUDE": -75.213927, "DATE_RANGE_START": 2022, "Total Visits": 462.0, "Total Visitors": 329.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 4.0, "Total Spend": 6350.0, "Total Transactions": 692.0, "Total Customers": 392.0, "Median Spend per Transaction": 7.21, "Median Spend per Customer": 9.08 }, "geometry": { "type": "Point", "coordinates": [ -75.213927, 40.032059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@63s-dvx-fcq", "Name": "Veganish", "Category": "Restaurants and Other Eating Places", "Address": "1214 N 52nd St", "LATITUDE": 39.971859, "LONGITUDE": -75.226167, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010111003.0, "Median Dwell Time": null, "Total Spend": 638.0, "Total Transactions": 30.0, "Total Customers": 12.0, "Median Spend per Transaction": 17.16, "Median Spend per Customer": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.226167, 39.971859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm3-vpv", "Name": "Mesh Vintage", "Category": "Clothing Stores", "Address": "1820 E Passyunk Ave", "LATITUDE": 39.927333, "LONGITUDE": -75.166704, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 28.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 121.0, "Total Spend": 2244.0, "Total Transactions": 70.0, "Total Customers": 37.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 64.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166704, 39.927333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-w49", "Name": "Seafood Unlimited", "Category": "Restaurants and Other Eating Places", "Address": "270 S 20th St", "LATITUDE": 39.948416, "LONGITUDE": -75.174494, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 30.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 289.0, "Total Spend": 1188.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 51.09, "Median Spend per Customer": 102.18 }, "geometry": { "type": "Point", "coordinates": [ -75.174494, 39.948416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-phn-87q", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1616 E Wadsworth Ave", "LATITUDE": 40.080555, "LONGITUDE": -75.171342, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 33.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 8.0, "Total Spend": 1897.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171342, 40.080555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-p7w-wtv", "Name": "Twistee Treat", "Category": "Restaurants and Other Eating Places", "Address": "3401 Longshore Ave", "LATITUDE": 40.033208, "LONGITUDE": -75.048855, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 49.0, "POI_CBG": 421010315013.0, "Median Dwell Time": 136.0, "Total Spend": 1352.0, "Total Transactions": 99.0, "Total Customers": 45.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 23.49 }, "geometry": { "type": "Point", "coordinates": [ -75.048855, 40.033208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "Name": "Prince Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 E Wyoming Ave", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 30.0, "POI_CBG": 421010288002.0, "Median Dwell Time": 651.0, "Total Spend": 5464.0, "Total Transactions": 183.0, "Total Customers": 77.0, "Median Spend per Transaction": 24.49, "Median Spend per Customer": 55.52 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pgg-cqz", "Name": "Dj's Market", "Category": "Grocery Stores", "Address": "3001 N 26th St", "LATITUDE": 40.001113, "LONGITUDE": -75.172721, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010171004.0, "Median Dwell Time": 421.0, "Total Spend": 105.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.25, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172721, 40.001113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm4-8sq", "Name": "Olivares Food Market", "Category": "Grocery Stores", "Address": "1718 Wharton St", "LATITUDE": 39.934795, "LONGITUDE": -75.173301, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010030023.0, "Median Dwell Time": 72.0, "Total Spend": 458.0, "Total Transactions": 33.0, "Total Customers": 17.0, "Median Spend per Transaction": 7.96, "Median Spend per Customer": 13.95 }, "geometry": { "type": "Point", "coordinates": [ -75.173301, 39.934795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "Name": "Two Brothers", "Category": "Grocery Stores", "Address": "5400 Willows Ave", "LATITUDE": 39.943904, "LONGITUDE": -75.228136, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010071024.0, "Median Dwell Time": 40.0, "Total Spend": 3038.0, "Total Transactions": 37.0, "Total Customers": 17.0, "Median Spend per Transaction": 27.69, "Median Spend per Customer": 69.27 }, "geometry": { "type": "Point", "coordinates": [ -75.228136, 39.943904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "Name": "Davis Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4523 Baltimore Ave", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 1.0, "Total Spend": 3182.0, "Total Transactions": 138.0, "Total Customers": 52.0, "Median Spend per Transaction": 19.1, "Median Spend per Customer": 46.65 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "Name": "Polo Ralph Lauren Factory Store", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Ste 92", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 19355.0, "Total Transactions": 178.0, "Total Customers": 167.0, "Median Spend per Transaction": 68.99, "Median Spend per Customer": 74.14 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg9-x5z", "Name": "Vineyards Cafe", "Category": "Restaurants and Other Eating Places", "Address": "847 N 16th St", "LATITUDE": 39.96989, "LONGITUDE": -75.162961, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 20.0, "Total Spend": 8907.0, "Total Transactions": 902.0, "Total Customers": 249.0, "Median Spend per Transaction": 7.9, "Median Spend per Customer": 27.02 }, "geometry": { "type": "Point", "coordinates": [ -75.162961, 39.96989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Susquehanna Ave", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 10.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 2.0, "Total Spend": 121.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 6.82, "Median Spend per Customer": 13.64 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3655 Aramingo Ave", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 113.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 2.0, "Total Spend": 481.0, "Total Transactions": 31.0, "Total Customers": 28.0, "Median Spend per Transaction": 14.41, "Median Spend per Customer": 12.46 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4qf", "Name": "Sun Rise Convenience Store", "Category": "Grocery Stores", "Address": "4655 Rising Sun Ave", "LATITUDE": 40.021353, "LONGITUDE": -75.125766, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010288001.0, "Median Dwell Time": null, "Total Spend": 231.0, "Total Transactions": 35.0, "Total Customers": 21.0, "Median Spend per Transaction": 3.12, "Median Spend per Customer": 8.58 }, "geometry": { "type": "Point", "coordinates": [ -75.125766, 40.021353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "9220 Frankford Ave", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2022, "Total Visits": 716.0, "Total Visitors": 510.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 3.0, "Total Spend": 5982.0, "Total Transactions": 439.0, "Total Customers": 287.0, "Median Spend per Transaction": 11.83, "Median Spend per Customer": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 152.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 4.0, "Total Spend": 11097.0, "Total Transactions": 678.0, "Total Customers": 484.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 15.74 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd # 4", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2022, "Total Visits": 17711.0, "Total Visitors": 9317.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 114.0, "Total Spend": 15782.0, "Total Transactions": 1179.0, "Total Customers": 709.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "221 W Hunting Park Ave", "LATITUDE": 40.014677, "LONGITUDE": -75.130343, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 155.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 3.0, "Total Spend": 6111.0, "Total Transactions": 692.0, "Total Customers": 345.0, "Median Spend per Transaction": 8.07, "Median Spend per Customer": 12.07 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.014677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yjv", "Name": "Prince Tea House", "Category": "Restaurants and Other Eating Places", "Address": "203 N 9th St", "LATITUDE": 39.955371, "LONGITUDE": -75.154071, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 103.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 52.0, "Total Spend": 5428.0, "Total Transactions": 139.0, "Total Customers": 75.0, "Median Spend per Transaction": 33.99, "Median Spend per Customer": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.154071, 39.955371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pj5-j7q", "Name": "Sanchez Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3261 N Front St", "LATITUDE": 39.999917, "LONGITUDE": -75.128744, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 1.0, "Total Spend": 398.0, "Total Transactions": 30.0, "Total Customers": 16.0, "Median Spend per Transaction": 13.56, "Median Spend per Customer": 27.12 }, "geometry": { "type": "Point", "coordinates": [ -75.128744, 39.999917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "Name": "Philly's Famous Italian Ices", "Category": "Restaurants and Other Eating Places", "Address": "1950 E Lehigh Ave", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 3.0, "Total Spend": 13519.0, "Total Transactions": 124.0, "Total Customers": 38.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-4gk", "Name": "I Heart Cambodia", "Category": "Restaurants and Other Eating Places", "Address": "2207 S 7th St", "LATITUDE": 39.921392, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 30.0, "POI_CBG": 421010041012.0, "Median Dwell Time": 20.0, "Total Spend": 1156.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 39.97, "Median Spend per Customer": 79.94 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.921392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-php-45f", "Name": "J&j Market", "Category": "Grocery Stores", "Address": "7704 Michener Ave", "LATITUDE": 40.071586, "LONGITUDE": -75.16171, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 14.0, "POI_CBG": 421010263011.0, "Median Dwell Time": 1381.0, "Total Spend": 9030.0, "Total Transactions": 319.0, "Total Customers": 64.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 50.02 }, "geometry": { "type": "Point", "coordinates": [ -75.16171, 40.071586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvr-d5f", "Name": "Y & B Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6547 Elmwood Ave", "LATITUDE": 39.921556, "LONGITUDE": -75.231623, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 23.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 15.0, "Total Spend": 18331.0, "Total Transactions": 913.0, "Total Customers": 5.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 88.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231623, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "Name": "Ibis Lounge", "Category": "Restaurants and Other Eating Places", "Address": "5420 Lancaster Ave", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 31.0, "POI_CBG": 421010113002.0, "Median Dwell Time": 92.0, "Total Spend": 4052.0, "Total Transactions": 150.0, "Total Customers": 44.0, "Median Spend per Transaction": 24.6, "Median Spend per Customer": 59.46 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm4-hnq", "Name": "Los Cuatro Soles", "Category": "Restaurants and Other Eating Places", "Address": "1801 S Chadwick St", "LATITUDE": 39.928485, "LONGITUDE": -75.173061, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010030013.0, "Median Dwell Time": 7.0, "Total Spend": 2728.0, "Total Transactions": 98.0, "Total Customers": 42.0, "Median Spend per Transaction": 24.21, "Median Spend per Customer": 56.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173061, 39.928485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmf-jgk", "Name": "Dizengoff", "Category": "Restaurants and Other Eating Places", "Address": "1625 Sansom St", "LATITUDE": 39.950806, "LONGITUDE": -75.168528, "DATE_RANGE_START": 2022, "Total Visits": 474.0, "Total Visitors": 286.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 366.0, "Total Spend": 4881.0, "Total Transactions": 206.0, "Total Customers": 105.0, "Median Spend per Transaction": 20.49, "Median Spend per Customer": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.168528, 39.950806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnw-nkf", "Name": "Laser Wolf", "Category": "Restaurants and Other Eating Places", "Address": "1301 N Howard St", "LATITUDE": 39.970668, "LONGITUDE": -75.13658, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 132.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 102.0, "Total Spend": 34134.0, "Total Transactions": 228.0, "Total Customers": 129.0, "Median Spend per Transaction": 142.8, "Median Spend per Customer": 217.21 }, "geometry": { "type": "Point", "coordinates": [ -75.13658, 39.970668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "Name": "Ruby Buffet", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 578.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 36.0, "Total Spend": 25253.0, "Total Transactions": 561.0, "Total Customers": 258.0, "Median Spend per Transaction": 39.92, "Median Spend per Customer": 79.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2022, "Total Visits": 322.0, "Total Visitors": 263.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 6.0, "Total Spend": 8700.0, "Total Transactions": 544.0, "Total Customers": 430.0, "Median Spend per Transaction": 14.07, "Median Spend per Customer": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5536 Torresdale Ave", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 17.0, "POI_CBG": 421010298002.0, "Median Dwell Time": 396.0, "Total Spend": 1922.0, "Total Transactions": 84.0, "Total Customers": 38.0, "Median Spend per Transaction": 21.14, "Median Spend per Customer": 44.71 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "Name": "Alexa Pharmacy", "Category": "Health and Personal Care Stores", "Address": "919 Tyson Ave", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010308003.0, "Median Dwell Time": 4.0, "Total Spend": 3979.0, "Total Transactions": 96.0, "Total Customers": 51.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "Name": "Pinoy Groseri", "Category": "Grocery Stores", "Address": "7925 Bustleton Ave", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 26.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 1227.0, "Total Spend": 2716.0, "Total Transactions": 47.0, "Total Customers": 19.0, "Median Spend per Transaction": 40.5, "Median Spend per Customer": 99.54 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-8d9", "Name": "Hilton Garden Inn", "Category": "Traveler Accommodation", "Address": "1100 Arch St", "LATITUDE": 39.953445, "LONGITUDE": -75.157985, "DATE_RANGE_START": 2022, "Total Visits": 16448.0, "Total Visitors": 10162.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 42.0, "Total Spend": 40473.0, "Total Transactions": 148.0, "Total Customers": 120.0, "Median Spend per Transaction": 208.3, "Median Spend per Customer": 229.75 }, "geometry": { "type": "Point", "coordinates": [ -75.157985, 39.953445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pmc-q75", "Name": "Brulee Catering", "Category": "Special Food Services", "Address": "1406 S Front St", "LATITUDE": 39.929972, "LONGITUDE": -75.146804, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 96.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 476.0, "Total Spend": 7984.0, "Total Transactions": 716.0, "Total Customers": 268.0, "Median Spend per Transaction": 8.4, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146804, 39.929972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "Name": "Drinkers Pub", "Category": "Restaurants and Other Eating Places", "Address": "1903 Chestnut St", "LATITUDE": 39.952101, "LONGITUDE": -75.17208, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 277.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 75511.0, "Total Transactions": 2756.0, "Total Customers": 949.0, "Median Spend per Transaction": 20.56, "Median Spend per Customer": 52.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17208, 39.952101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "Name": "Cry Baby Pasta", "Category": "Restaurants and Other Eating Places", "Address": "627 S 3rd St", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2022, "Total Visits": 570.0, "Total Visitors": 455.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 38.0, "Total Spend": 6614.0, "Total Transactions": 63.0, "Total Customers": 42.0, "Median Spend per Transaction": 93.37, "Median Spend per Customer": 164.34 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "Name": "Tandoori bakery", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd Store 17", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2022, "Total Visits": 652.0, "Total Visitors": 460.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 3.0, "Total Spend": 20843.0, "Total Transactions": 200.0, "Total Customers": 66.0, "Median Spend per Transaction": 57.92, "Median Spend per Customer": 92.28 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-psq", "Name": "Magic Noodles", "Category": "Restaurants and Other Eating Places", "Address": "2833 Cottman Ave", "LATITUDE": 40.043529, "LONGITUDE": -75.052298, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 66.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 2.0, "Total Spend": 2124.0, "Total Transactions": 66.0, "Total Customers": 26.0, "Median Spend per Transaction": 36.68, "Median Spend per Customer": 76.36 }, "geometry": { "type": "Point", "coordinates": [ -75.052298, 40.043529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "Name": "City Pizza", "Category": "Restaurants and Other Eating Places", "Address": "100 Snyder Ave", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 218.0, "POI_CBG": 421010042013.0, "Median Dwell Time": 6.0, "Total Spend": 4200.0, "Total Transactions": 186.0, "Total Customers": 87.0, "Median Spend per Transaction": 19.71, "Median Spend per Customer": 43.12 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-5s5", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "2201 Cottman Ave", "LATITUDE": 40.049399, "LONGITUDE": -75.061192, "DATE_RANGE_START": 2022, "Total Visits": 5072.0, "Total Visitors": 2695.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 31.0, "Total Spend": 1138.0, "Total Transactions": 61.0, "Total Customers": 38.0, "Median Spend per Transaction": 15.64, "Median Spend per Customer": 24.07 }, "geometry": { "type": "Point", "coordinates": [ -75.061192, 40.049399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-fmk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "1624 Cottman Ave", "LATITUDE": 40.054375, "LONGITUDE": -75.072167, "DATE_RANGE_START": 2022, "Total Visits": 317.0, "Total Visitors": 291.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 3.0, "Total Spend": 8789.0, "Total Transactions": 613.0, "Total Customers": 451.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 15.15 }, "geometry": { "type": "Point", "coordinates": [ -75.072167, 40.054375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7124 Ridge Ave # 62", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 145.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 2.0, "Total Spend": 9765.0, "Total Transactions": 662.0, "Total Customers": 500.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pp5-p35", "Name": "Martin's Deli", "Category": "Restaurants and Other Eating Places", "Address": "2772 Kensington Ave", "LATITUDE": 39.991299, "LONGITUDE": -75.123216, "DATE_RANGE_START": 2022, "Total Visits": 899.0, "Total Visitors": 671.0, "POI_CBG": 421010177022.0, "Median Dwell Time": 2.0, "Total Spend": 1160.0, "Total Transactions": 84.0, "Total Customers": 28.0, "Median Spend per Transaction": 12.08, "Median Spend per Customer": 29.94 }, "geometry": { "type": "Point", "coordinates": [ -75.123216, 39.991299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "10000 Roosevelt Blvd", "LATITUDE": 40.095264, "LONGITUDE": -75.015635, "DATE_RANGE_START": 2022, "Total Visits": 2193.0, "Total Visitors": 1256.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 4.0, "Total Spend": 6604.0, "Total Transactions": 638.0, "Total Customers": 385.0, "Median Spend per Transaction": 8.86, "Median Spend per Customer": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.015635, 40.095264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1325 E Washington Ln", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 113.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 3.0, "Total Spend": 7906.0, "Total Transactions": 878.0, "Total Customers": 490.0, "Median Spend per Transaction": 7.21, "Median Spend per Customer": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "Name": "Walnut Supermarket", "Category": "Grocery Stores", "Address": "5131 Walnut St", "LATITUDE": 39.957098, "LONGITUDE": -75.224484, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 40.0, "POI_CBG": 421010085002.0, "Median Dwell Time": 8.0, "Total Spend": 12238.0, "Total Transactions": 277.0, "Total Customers": 129.0, "Median Spend per Transaction": 34.45, "Median Spend per Customer": 77.48 }, "geometry": { "type": "Point", "coordinates": [ -75.224484, 39.957098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pjf-jvz", "Name": "Laurel Hill Gardens", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "8125 Germantown Ave", "LATITUDE": 40.073009, "LONGITUDE": -75.201894, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010257003.0, "Median Dwell Time": null, "Total Spend": 1917.0, "Total Transactions": 24.0, "Total Customers": 16.0, "Median Spend per Transaction": 60.13, "Median Spend per Customer": 51.75 }, "geometry": { "type": "Point", "coordinates": [ -75.201894, 40.073009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-fzz", "Name": "Elmwood Market", "Category": "Grocery Stores", "Address": "6731 Elmwood Ave", "LATITUDE": 39.919867, "LONGITUDE": -75.233893, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 9.0, "Total Spend": 63.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233893, 39.919867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-n5z", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd", "LATITUDE": 39.954715, "LONGITUDE": -75.168495, "DATE_RANGE_START": 2022, "Total Visits": 3279.0, "Total Visitors": 1596.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 392.0, "Total Spend": 3515.0, "Total Transactions": 301.0, "Total Customers": 169.0, "Median Spend per Transaction": 11.39, "Median Spend per Customer": 12.85 }, "geometry": { "type": "Point", "coordinates": [ -75.168495, 39.954715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmb-8n5", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "940 Market St", "LATITUDE": 39.951212, "LONGITUDE": -75.156618, "DATE_RANGE_START": 2022, "Total Visits": 1491.0, "Total Visitors": 1068.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 7692.0, "Total Transactions": 606.0, "Total Customers": 449.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -75.156618, 39.951212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5020 City Ave", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 333.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 4.0, "Total Spend": 18194.0, "Total Transactions": 1552.0, "Total Customers": 1085.0, "Median Spend per Transaction": 10.56, "Median Spend per Customer": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9k-33q", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.1011, "LONGITUDE": -75.008197, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 82.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 32.0, "Total Spend": 73.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 5.67, "Median Spend per Customer": 5.67 }, "geometry": { "type": "Point", "coordinates": [ -75.008197, 40.1011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "238 S 20th St", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 64.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 665.0, "Total Spend": 3848.0, "Total Transactions": 474.0, "Total Customers": 226.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 13.32 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-sh5", "Name": "Gryphon Cafe", "Category": "Restaurants and Other Eating Places", "Address": "100 W Oxford St", "LATITUDE": 39.974248, "LONGITUDE": -75.135044, "DATE_RANGE_START": 2022, "Total Visits": 434.0, "Total Visitors": 293.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 204.0, "Total Spend": 270.0, "Total Transactions": 19.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.01, "Median Spend per Customer": 67.19 }, "geometry": { "type": "Point", "coordinates": [ -75.135044, 39.974248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "Name": "Golden Crust Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "3732 Midvale Ave", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 3.0, "Total Spend": 2013.0, "Total Transactions": 112.0, "Total Customers": 40.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2539 Castor Ave", "LATITUDE": 39.991689, "LONGITUDE": -75.090963, "DATE_RANGE_START": 2022, "Total Visits": 3197.0, "Total Visitors": 1847.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 19.0, "Total Spend": 118046.0, "Total Transactions": 733.0, "Total Customers": 418.0, "Median Spend per Transaction": 53.44, "Median Spend per Customer": 69.29 }, "geometry": { "type": "Point", "coordinates": [ -75.090963, 39.991689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3301 Aramingo Ave", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2022, "Total Visits": 1456.0, "Total Visitors": 648.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 44.0, "Total Spend": 12230.0, "Total Transactions": 202.0, "Total Customers": 179.0, "Median Spend per Transaction": 33.34, "Median Spend per Customer": 34.01 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-7yv", "Name": "7 Brothers Supermarket", "Category": "Grocery Stores", "Address": "180 W Duncannon Ave", "LATITUDE": 40.027871, "LONGITUDE": -75.125835, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 420.0, "POI_CBG": 421010286001.0, "Median Dwell Time": 13.0, "Total Spend": 111.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 8.98 }, "geometry": { "type": "Point", "coordinates": [ -75.125835, 40.027871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25d-222@628-pm3-vpv", "Name": "Favors & Flavors", "Category": "Specialty Food Stores", "Address": "1827 E Passyunk Ave", "LATITUDE": 39.92705, "LONGITUDE": -75.166412, "DATE_RANGE_START": 2022, "Total Visits": 709.0, "Total Visitors": 484.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 46.0, "Total Spend": 849.0, "Total Transactions": 110.0, "Total Customers": 57.0, "Median Spend per Transaction": 6.18, "Median Spend per Customer": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.166412, 39.92705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1334 Bainbridge St", "LATITUDE": 39.942529, "LONGITUDE": -75.164834, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 108.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 131.0, "Total Spend": 1219.0, "Total Transactions": 56.0, "Total Customers": 42.0, "Median Spend per Transaction": 18.14, "Median Spend per Customer": 20.68 }, "geometry": { "type": "Point", "coordinates": [ -75.164834, 39.942529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1100 S Delaware Ave", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 64.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 3.0, "Total Spend": 4291.0, "Total Transactions": 57.0, "Total Customers": 54.0, "Median Spend per Transaction": 59.99, "Median Spend per Customer": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p7w-gc5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7965 Verree Rd", "LATITUDE": 40.072485, "LONGITUDE": -75.075778, "DATE_RANGE_START": 2022, "Total Visits": 796.0, "Total Visitors": 483.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 3.0, "Total Spend": 1044.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.08 }, "geometry": { "type": "Point", "coordinates": [ -75.075778, 40.072485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "Name": "Anthropologie", "Category": "Clothing Stores", "Address": "1801 Walnut St", "LATITUDE": 39.950352, "LONGITUDE": -75.170778, "DATE_RANGE_START": 2022, "Total Visits": 4134.0, "Total Visitors": 2798.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 51.0, "Total Spend": 196929.0, "Total Transactions": 1308.0, "Total Customers": 909.0, "Median Spend per Transaction": 79.11, "Median Spend per Customer": 99.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170778, 39.950352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-w8v", "Name": "Aéropostale", "Category": "Clothing Stores", "Address": "1434 Franklin Mills Cir # 717A", "LATITUDE": 40.086851, "LONGITUDE": -74.962597, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 169.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 2622.0, "Total Transactions": 61.0, "Total Customers": 59.0, "Median Spend per Transaction": 39.94, "Median Spend per Customer": 41.25 }, "geometry": { "type": "Point", "coordinates": [ -74.962597, 40.086851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914434, "LONGITUDE": -75.156267, "DATE_RANGE_START": 2022, "Total Visits": 444.0, "Total Visitors": 244.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 9.0, "Total Spend": 5902.0, "Total Transactions": 815.0, "Total Customers": 324.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 9.96 }, "geometry": { "type": "Point", "coordinates": [ -75.156267, 39.914434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1301 Rhawn St", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2022, "Total Visits": 1120.0, "Total Visitors": 713.0, "POI_CBG": 421010337022.0, "Median Dwell Time": 4.0, "Total Spend": 7432.0, "Total Transactions": 460.0, "Total Customers": 242.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "Name": "Kiehl's", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2022, "Total Visits": 354.0, "Total Visitors": 322.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 4518.0, "Total Transactions": 75.0, "Total Customers": 73.0, "Median Spend per Transaction": 45.36, "Median Spend per Customer": 52.38 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "Name": "Burlington", "Category": "Clothing Stores", "Address": "1563 Franklin Mills Cir", "LATITUDE": 40.087035, "LONGITUDE": -74.960571, "DATE_RANGE_START": 2022, "Total Visits": 1153.0, "Total Visitors": 965.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 21.0, "Total Spend": 3919.0, "Total Transactions": 87.0, "Total Customers": 68.0, "Median Spend per Transaction": 29.98, "Median Spend per Customer": 33.42 }, "geometry": { "type": "Point", "coordinates": [ -74.960571, 40.087035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "Name": "Crown Chicken and Grill", "Category": "Restaurants and Other Eating Places", "Address": "7275 Rising Sun Ave", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 136.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 2.0, "Total Spend": 13767.0, "Total Transactions": 1066.0, "Total Customers": 399.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 26.86 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgf-33q", "Name": "Ochatto", "Category": "Restaurants and Other Eating Places", "Address": "3608 Chestnut St", "LATITUDE": 39.954494, "LONGITUDE": -75.195113, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 106.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 37.0, "Total Spend": 11219.0, "Total Transactions": 251.0, "Total Customers": 117.0, "Median Spend per Transaction": 41.36, "Median Spend per Customer": 80.04 }, "geometry": { "type": "Point", "coordinates": [ -75.195113, 39.954494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-wc5", "Name": "Claire's", "Category": "Clothing Stores", "Address": "1425 Woodhaven & Knights Rd", "LATITUDE": 40.086584, "LONGITUDE": -74.962146, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 160.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 230.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 65.89, "Median Spend per Customer": 65.89 }, "geometry": { "type": "Point", "coordinates": [ -74.962146, 40.086584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "Name": "Sampan", "Category": "Traveler Accommodation", "Address": "124 S 13th St", "LATITUDE": 39.949535, "LONGITUDE": -75.16221, "DATE_RANGE_START": 2022, "Total Visits": 5903.0, "Total Visitors": 3627.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 165.0, "Total Spend": 21821.0, "Total Transactions": 282.0, "Total Customers": 160.0, "Median Spend per Transaction": 70.4, "Median Spend per Customer": 98.59 }, "geometry": { "type": "Point", "coordinates": [ -75.16221, 39.949535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3218 Willits Rd", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2022, "Total Visits": 359.0, "Total Visitors": 209.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 2.0, "Total Spend": 791.0, "Total Transactions": 103.0, "Total Customers": 78.0, "Median Spend per Transaction": 6.58, "Median Spend per Customer": 7.21 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "3619 Aramingo Ave", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2022, "Total Visits": 566.0, "Total Visitors": 411.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 4.0, "Total Spend": 14627.0, "Total Transactions": 824.0, "Total Customers": 608.0, "Median Spend per Transaction": 15.37, "Median Spend per Customer": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-jgk", "Name": "Saxbys Coffee", "Category": "Restaurants and Other Eating Places", "Address": "4000 Locust St", "LATITUDE": 39.952783, "LONGITUDE": -75.203063, "DATE_RANGE_START": 2022, "Total Visits": 498.0, "Total Visitors": 291.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 136.0, "Total Spend": 36.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.42, "Median Spend per Customer": 6.42 }, "geometry": { "type": "Point", "coordinates": [ -75.203063, 39.952783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7300 Rising Sun Ave", "LATITUDE": 40.061832, "LONGITUDE": -75.084015, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 193.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 2.0, "Total Spend": 2685.0, "Total Transactions": 371.0, "Total Customers": 188.0, "Median Spend per Transaction": 5.44, "Median Spend per Customer": 8.77 }, "geometry": { "type": "Point", "coordinates": [ -75.084015, 40.061832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@63s-dw9-8jv", "Name": "Stellar News", "Category": "Book Stores and News Dealers", "Address": "Philadelphia International Airport D Terminal Nea", "LATITUDE": 39.876747, "LONGITUDE": -75.247168, "DATE_RANGE_START": 2022, "Total Visits": 313162.0, "Total Visitors": 180913.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 62.0, "Total Spend": 148.0, "Total Transactions": 19.0, "Total Customers": 12.0, "Median Spend per Transaction": 5.71, "Median Spend per Customer": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.247168, 39.876747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5fz", "Name": "Cogito Coffee", "Category": "Restaurants and Other Eating Places", "Address": "105 S 12th St", "LATITUDE": 39.949868, "LONGITUDE": -75.160219, "DATE_RANGE_START": 2022, "Total Visits": 6244.0, "Total Visitors": 3777.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 55.0, "Total Spend": 231.0, "Total Transactions": 26.0, "Total Customers": 16.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160219, 39.949868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-225@628-p85-p35", "Name": "Cafe Carmela", "Category": "Restaurants and Other Eating Places", "Address": "2859 Holme Ave", "LATITUDE": 40.05717, "LONGITUDE": -75.030373, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 164.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 28.0, "Total Spend": 1631.0, "Total Transactions": 40.0, "Total Customers": 19.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.030373, 40.05717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1900 Chestnut St", "LATITUDE": 39.951643, "LONGITUDE": -75.17217, "DATE_RANGE_START": 2022, "Total Visits": 1627.0, "Total Visitors": 1270.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 7.0, "Total Spend": 146916.0, "Total Transactions": 4789.0, "Total Customers": 3106.0, "Median Spend per Transaction": 19.35, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17217, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1511 Locust St", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 204.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 30.0, "Total Spend": 30395.0, "Total Transactions": 763.0, "Total Customers": 340.0, "Median Spend per Transaction": 30.2, "Median Spend per Customer": 62.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2100 Red Lion Rd", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 225.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 3.0, "Total Spend": 1319.0, "Total Transactions": 138.0, "Total Customers": 66.0, "Median Spend per Transaction": 8.15, "Median Spend per Customer": 11.11 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-5pv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1113 Market St", "LATITUDE": 39.952074, "LONGITUDE": -75.159351, "DATE_RANGE_START": 2022, "Total Visits": 639.0, "Total Visitors": 509.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 32.0, "Total Spend": 6360.0, "Total Transactions": 1030.0, "Total Customers": 493.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 7.44 }, "geometry": { "type": "Point", "coordinates": [ -75.159351, 39.952074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-rtv", "Name": "Takka Grill and Pizza", "Category": "Restaurants and Other Eating Places", "Address": "324 W Chelten Ave", "LATITUDE": 40.029529, "LONGITUDE": -75.180791, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 8.0, "Total Spend": 3142.0, "Total Transactions": 138.0, "Total Customers": 56.0, "Median Spend per Transaction": 21.76, "Median Spend per Customer": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.180791, 40.029529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "Name": "Total Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "2431 Castor Ave Ste A", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2022, "Total Visits": 439.0, "Total Visitors": 300.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 47.0, "Total Spend": 10238.0, "Total Transactions": 287.0, "Total Customers": 115.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 45.34 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-6hq", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1186 Franklin Mills Cir", "LATITUDE": 40.087733, "LONGITUDE": -74.961181, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 233.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.22, "Median Spend per Customer": 11.15 }, "geometry": { "type": "Point", "coordinates": [ -74.961181, 40.087733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgg-dy9", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "2044 W Allegheny Ave", "LATITUDE": 40.00283, "LONGITUDE": -75.164018, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 66.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 3.0, "Total Spend": 3529.0, "Total Transactions": 192.0, "Total Customers": 101.0, "Median Spend per Transaction": 13.98, "Median Spend per Customer": 21.94 }, "geometry": { "type": "Point", "coordinates": [ -75.164018, 40.00283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.037805, "LONGITUDE": -75.117796, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 80.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 15.0, "Total Spend": 468.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 47.15, "Median Spend per Customer": 47.15 }, "geometry": { "type": "Point", "coordinates": [ -75.117796, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-8sq", "Name": "Aéropostale", "Category": "Clothing Stores", "Address": "907 937a Market Street 2165", "LATITUDE": 39.951989, "LONGITUDE": -75.155796, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 773.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 23.94, "Median Spend per Customer": 23.94 }, "geometry": { "type": "Point", "coordinates": [ -75.155796, 39.951989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-223@628-pm4-mc5", "Name": "Casa Mexico", "Category": "Restaurants and Other Eating Places", "Address": "1134 S 9th St", "LATITUDE": 39.935496, "LONGITUDE": -75.15875, "DATE_RANGE_START": 2022, "Total Visits": 1315.0, "Total Visitors": 894.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 35.0, "Total Spend": 6253.0, "Total Transactions": 124.0, "Total Customers": 77.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 66.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15875, 39.935496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1002 S Broad St", "LATITUDE": 39.938246, "LONGITUDE": -75.166948, "DATE_RANGE_START": 2022, "Total Visits": 5983.0, "Total Visitors": 3211.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 28.0, "Total Spend": 6547.0, "Total Transactions": 779.0, "Total Customers": 544.0, "Median Spend per Transaction": 6.43, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166948, 39.938246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgh-vs5", "Name": "Honey Truck", "Category": "Restaurants and Other Eating Places", "Address": "W Norris St & N 12th St", "LATITUDE": 39.982386, "LONGITUDE": -75.153596, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 12.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 31.0, "Total Spend": 120.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.153596, 39.982386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-gzf", "Name": "Romano Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4712 N 5th St", "LATITUDE": 40.023038, "LONGITUDE": -75.133728, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010287001.0, "Median Dwell Time": null, "Total Spend": 10916.0, "Total Transactions": 33.0, "Total Customers": 9.0, "Median Spend per Transaction": 374.0, "Median Spend per Customer": 748.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133728, 40.023038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "Name": "Buddakan", "Category": "Restaurants and Other Eating Places", "Address": "325 Chestnut St", "LATITUDE": 39.948922, "LONGITUDE": -75.147091, "DATE_RANGE_START": 2022, "Total Visits": 390.0, "Total Visitors": 322.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 81.0, "Total Spend": 78395.0, "Total Transactions": 409.0, "Total Customers": 193.0, "Median Spend per Transaction": 168.48, "Median Spend per Customer": 260.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147091, 39.948922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvx-xh5", "Name": "Jinxed", "Category": "Used Merchandise Stores", "Address": "4521 Baltimore Ave", "LATITUDE": 39.949202, "LONGITUDE": -75.213783, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 101.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 8.0, "Total Spend": 703.0, "Total Transactions": 23.0, "Total Customers": 14.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213783, 39.949202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "Name": "Ruckus Gallery", "Category": "Other Miscellaneous Store Retailers", "Address": "27 N 2nd St", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 240.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 39.0, "Total Spend": 20302.0, "Total Transactions": 601.0, "Total Customers": 223.0, "Median Spend per Transaction": 22.63, "Median Spend per Customer": 52.12 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pp4-vfz", "Name": "Franco's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2573 Tulip St", "LATITUDE": 39.982045, "LONGITUDE": -75.121584, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 12.0, "POI_CBG": 421010160004.0, "Median Dwell Time": 401.0, "Total Spend": 2666.0, "Total Transactions": 101.0, "Total Customers": 44.0, "Median Spend per Transaction": 23.04, "Median Spend per Customer": 58.54 }, "geometry": { "type": "Point", "coordinates": [ -75.121584, 39.982045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1923 N 54th St", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 12.0, "Total Spend": 206.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 19.16, "Median Spend per Customer": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvw-hwk", "Name": "Quick & Quality", "Category": "Restaurants and Other Eating Places", "Address": "4836 Spruce St", "LATITUDE": 39.953576, "LONGITUDE": -75.219432, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 19.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 5.0, "Total Spend": 2855.0, "Total Transactions": 49.0, "Total Customers": 9.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219432, 39.953576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-223@628-p8n-389", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6327 Torresdale Ave # 43", "LATITUDE": 40.02098, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 127.0, "POI_CBG": 421010323001.0, "Median Dwell Time": 3.0, "Total Spend": 10521.0, "Total Transactions": 544.0, "Total Customers": 254.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 20.12 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.02098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8v-b8v", "Name": "Sam's Club Fuel Center", "Category": "Gasoline Stations", "Address": "1000 Franklin Mills Cir", "LATITUDE": 40.091819, "LONGITUDE": -74.963857, "DATE_RANGE_START": 2022, "Total Visits": 4078.0, "Total Visitors": 2207.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 983.0, "Total Transactions": 17.0, "Total Customers": 5.0, "Median Spend per Transaction": 55.68, "Median Spend per Customer": 237.58 }, "geometry": { "type": "Point", "coordinates": [ -74.963857, 40.091819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pj2-tsq", "Name": "Beijing", "Category": "Restaurants and Other Eating Places", "Address": "909 E Cayuga St", "LATITUDE": 40.015027, "LONGITUDE": -75.108817, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 21.0, "POI_CBG": 421010191004.0, "Median Dwell Time": 5.0, "Total Spend": 600.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 30.63, "Median Spend per Customer": 61.25 }, "geometry": { "type": "Point", "coordinates": [ -75.108817, 40.015027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4160 Monument Rd", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2022, "Total Visits": 408.0, "Total Visitors": 324.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 6.0, "Total Spend": 517.0, "Total Transactions": 42.0, "Total Customers": 33.0, "Median Spend per Transaction": 6.03, "Median Spend per Customer": 10.03 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5715 N Broad St", "LATITUDE": 40.040308, "LONGITUDE": -75.143944, "DATE_RANGE_START": 2022, "Total Visits": 249.0, "Total Visitors": 192.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 9.0, "Total Spend": 1316.0, "Total Transactions": 85.0, "Total Customers": 70.0, "Median Spend per Transaction": 9.11, "Median Spend per Customer": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.143944, 40.040308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-kcq", "Name": "Sushi Ya", "Category": "Restaurants and Other Eating Places", "Address": "1418 W Girard Ave", "LATITUDE": 39.973653, "LONGITUDE": -75.177969, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 125.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 8.0, "Total Spend": 2382.0, "Total Transactions": 70.0, "Total Customers": 31.0, "Median Spend per Transaction": 31.27, "Median Spend per Customer": 55.57 }, "geometry": { "type": "Point", "coordinates": [ -75.177969, 39.973653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6240 Stenton Ave", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 80.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 4.0, "Total Spend": 401.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 10.04, "Median Spend per Customer": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1600 John F Kennedy Blvd", "LATITUDE": 39.953718, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 200.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 4878.0, "Total Transactions": 878.0, "Total Customers": 449.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.953718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4301 Market St", "LATITUDE": 39.958195, "LONGITUDE": -75.208247, "DATE_RANGE_START": 2022, "Total Visits": 270.0, "Total Visitors": 206.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 3.0, "Total Spend": 8053.0, "Total Transactions": 960.0, "Total Customers": 474.0, "Median Spend per Transaction": 6.79, "Median Spend per Customer": 10.23 }, "geometry": { "type": "Point", "coordinates": [ -75.208247, 39.958195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pj5-qs5", "Name": "Craytaste", "Category": "Restaurants and Other Eating Places", "Address": "3865 N 7th St", "LATITUDE": 40.010836, "LONGITUDE": -75.139631, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010198004.0, "Median Dwell Time": null, "Total Spend": 661.0, "Total Transactions": 16.0, "Total Customers": 5.0, "Median Spend per Transaction": 41.1, "Median Spend per Customer": 168.96 }, "geometry": { "type": "Point", "coordinates": [ -75.139631, 40.010836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pmb-7yv", "Name": "Umi Sushi And Seafood", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.95348, "LONGITUDE": -75.159046, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 5270.0, "Total Transactions": 333.0, "Total Customers": 169.0, "Median Spend per Transaction": 13.28, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.159046, 39.95348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phk-yvz", "Name": "Gogi BBQ", "Category": "Restaurants and Other Eating Places", "Address": "6783 N 5th St", "LATITUDE": 40.054866, "LONGITUDE": -75.125965, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 68.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 491.0, "Total Spend": 2352.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 44.85, "Median Spend per Customer": 44.85 }, "geometry": { "type": "Point", "coordinates": [ -75.125965, 40.054866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@63s-dw4-rzf", "Name": "Mezzogiorno", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave Level 2 Terminal B", "LATITUDE": 39.895194, "LONGITUDE": -75.227968, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 2.0, "Total Spend": 44463.0, "Total Transactions": 3220.0, "Total Customers": 1531.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227968, 39.895194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm7-nwk", "Name": "The Fresh Works", "Category": "Restaurants and Other Eating Places", "Address": "2101 Reed St", "LATITUDE": 39.934521, "LONGITUDE": -75.179405, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 1.0, "Total Spend": 551.0, "Total Transactions": 44.0, "Total Customers": 21.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179405, 39.934521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "Name": "Unit Su Vege", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 106", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 80.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 46.0, "Total Spend": 11308.0, "Total Transactions": 244.0, "Total Customers": 122.0, "Median Spend per Transaction": 38.17, "Median Spend per Customer": 72.16 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "Name": "Honey Bee Gourmet Deli", "Category": "Restaurants and Other Eating Places", "Address": "1034 Spruce St", "LATITUDE": 39.945912, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 115.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 1.0, "Total Spend": 387.0, "Total Transactions": 49.0, "Total Customers": 19.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 39.945912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5800 Woodland Ave", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2022, "Total Visits": 645.0, "Total Visitors": 369.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 13.0, "Total Spend": 1554.0, "Total Transactions": 59.0, "Total Customers": 38.0, "Median Spend per Transaction": 12.59, "Median Spend per Customer": 30.05 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1 Franklin Town Blvd", "LATITUDE": 39.960173, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 127.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 4.0, "Total Spend": 1321.0, "Total Transactions": 185.0, "Total Customers": 75.0, "Median Spend per Transaction": 5.97, "Median Spend per Customer": 9.82 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.960173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phz-z4v", "Name": "BooksRun com", "Category": "Book Stores and News Dealers", "Address": "620 E Erie Ave", "LATITUDE": 40.005848, "LONGITUDE": -75.117861, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 56.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 520.0, "Total Spend": 3726.0, "Total Transactions": 89.0, "Total Customers": 47.0, "Median Spend per Transaction": 34.08, "Median Spend per Customer": 61.02 }, "geometry": { "type": "Point", "coordinates": [ -75.117861, 40.005848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-p5f", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5165 Lancaster Ave", "LATITUDE": 39.977232, "LONGITUDE": -75.226077, "DATE_RANGE_START": 2022, "Total Visits": 380.0, "Total Visitors": 282.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 4.0, "Total Spend": 216.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 6.62, "Median Spend per Customer": 7.93 }, "geometry": { "type": "Point", "coordinates": [ -75.226077, 39.977232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7400 Bustleton Ave", "LATITUDE": 40.051082, "LONGITUDE": -75.059668, "DATE_RANGE_START": 2022, "Total Visits": 5439.0, "Total Visitors": 3652.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 20.0, "Total Spend": 223853.0, "Total Transactions": 4883.0, "Total Customers": 2817.0, "Median Spend per Transaction": 28.06, "Median Spend per Customer": 45.39 }, "geometry": { "type": "Point", "coordinates": [ -75.059668, 40.051082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "1544 Christian St", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 37.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 1.0, "Total Spend": 1581.0, "Total Transactions": 152.0, "Total Customers": 54.0, "Median Spend per Transaction": 8.74, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "Name": "Four Seasons Market", "Category": "Specialty Food Stores", "Address": "6130 Woodland Ave", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 56.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 8.0, "Total Spend": 1391.0, "Total Transactions": 38.0, "Total Customers": 19.0, "Median Spend per Transaction": 27.54, "Median Spend per Customer": 62.18 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-2ff", "Name": "Wyoming Mini market", "Category": "Other Miscellaneous Store Retailers", "Address": "555 E Wyoming Ave", "LATITUDE": 40.020508, "LONGITUDE": -75.11429, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 82.0, "POI_CBG": 421010289022.0, "Median Dwell Time": 7.0, "Total Spend": 228.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 12.22, "Median Spend per Customer": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.11429, 40.020508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7w-wc5", "Name": "McNally's Tavern Mayfair", "Category": "Restaurants and Other Eating Places", "Address": "3300 Brighton St", "LATITUDE": 40.035746, "LONGITUDE": -75.049243, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010315012.0, "Median Dwell Time": null, "Total Spend": 6454.0, "Total Transactions": 136.0, "Total Customers": 63.0, "Median Spend per Transaction": 37.59, "Median Spend per Customer": 74.64 }, "geometry": { "type": "Point", "coordinates": [ -75.049243, 40.035746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "Name": "Kennedy Food Garden", "Category": "Grocery Stores", "Address": "1901 John F Kennedy Blvd", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2022, "Total Visits": 296.0, "Total Visitors": 218.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 9.0, "Total Spend": 6527.0, "Total Transactions": 352.0, "Total Customers": 138.0, "Median Spend per Transaction": 12.62, "Median Spend per Customer": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pp4-zs5", "Name": "Kensington Mini Mart", "Category": "Grocery Stores", "Address": "2560 Kensington Ave", "LATITUDE": 39.988738, "LONGITUDE": -75.127705, "DATE_RANGE_START": 2022, "Total Visits": 1998.0, "Total Visitors": 1308.0, "POI_CBG": 421010163001.0, "Median Dwell Time": 8.0, "Total Spend": 930.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 102.0, "Median Spend per Customer": 154.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127705, 39.988738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmb-7yv", "Name": "John Yi Fish Market", "Category": "Specialty Food Stores", "Address": "51 N 12th St", "LATITUDE": 39.953479, "LONGITUDE": -75.159041, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 10960.0, "Total Transactions": 291.0, "Total Customers": 117.0, "Median Spend per Transaction": 27.26, "Median Spend per Customer": 71.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159041, 39.953479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-89z", "Name": "Dasiwa", "Category": "Restaurants and Other Eating Places", "Address": "735 N 26th St", "LATITUDE": 39.969169, "LONGITUDE": -75.179702, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010136012.0, "Median Dwell Time": null, "Total Spend": 4154.0, "Total Transactions": 150.0, "Total Customers": 70.0, "Median Spend per Transaction": 22.6, "Median Spend per Customer": 38.82 }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.969169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@63s-dvv-rx5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6731 Woodland Ave", "LATITUDE": 39.923209, "LONGITUDE": -75.238375, "DATE_RANGE_START": 2022, "Total Visits": 307.0, "Total Visitors": 220.0, "POI_CBG": 421010063003.0, "Median Dwell Time": 6.0, "Total Spend": 7463.0, "Total Transactions": 329.0, "Total Customers": 214.0, "Median Spend per Transaction": 19.97, "Median Spend per Customer": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.238375, 39.923209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-4d9", "Name": "Americas Quality Tire", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5915 Harbison Ave", "LATITUDE": 40.020793, "LONGITUDE": -75.063071, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 19.0, "POI_CBG": 421010319003.0, "Median Dwell Time": 8.0, "Total Spend": 2477.0, "Total Transactions": 28.0, "Total Customers": 14.0, "Median Spend per Transaction": 45.92, "Median Spend per Customer": 111.84 }, "geometry": { "type": "Point", "coordinates": [ -75.063071, 40.020793 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2149 Catharine St", "LATITUDE": 39.942567, "LONGITUDE": -75.179023, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 19.0, "Total Spend": 4282.0, "Total Transactions": 514.0, "Total Customers": 225.0, "Median Spend per Transaction": 6.94, "Median Spend per Customer": 13.22 }, "geometry": { "type": "Point", "coordinates": [ -75.179023, 39.942567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-wkz", "Name": "rue21", "Category": "Clothing Stores", "Address": "1259 Franklin Mills Cir", "LATITUDE": 40.088728, "LONGITUDE": -74.961198, "DATE_RANGE_START": 2022, "Total Visits": 300.0, "Total Visitors": 263.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 309116.0, "Total Transactions": 8498.0, "Total Customers": 5880.0, "Median Spend per Transaction": 27.8, "Median Spend per Customer": 37.92 }, "geometry": { "type": "Point", "coordinates": [ -74.961198, 40.088728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-94v", "Name": "Skechers", "Category": "Shoe Stores", "Address": "1001 Market St Unit C215", "LATITUDE": 39.951985, "LONGITUDE": -75.157156, "DATE_RANGE_START": 2022, "Total Visits": 21494.0, "Total Visitors": 13739.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 33.0, "Total Spend": 1258.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 54.6, "Median Spend per Customer": 70.96 }, "geometry": { "type": "Point", "coordinates": [ -75.157156, 39.951985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-vcq", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "1851 S Columbus Blvd", "LATITUDE": 39.923962, "LONGITUDE": -75.139231, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 103.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 7.0, "Total Spend": 2560.0, "Total Transactions": 33.0, "Total Customers": 31.0, "Median Spend per Transaction": 54.99, "Median Spend per Customer": 53.5 }, "geometry": { "type": "Point", "coordinates": [ -75.139231, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pm9-tjv", "Name": "Eden Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "800 Chestnut St", "LATITUDE": 39.949548, "LONGITUDE": -75.154292, "DATE_RANGE_START": 2022, "Total Visits": 1373.0, "Total Visitors": 1031.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 34.0, "Total Spend": 1916.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 275.0, "Median Spend per Customer": 550.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154292, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2120 S 23rd St", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 89.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 5.0, "Total Spend": 131.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p92-mzf", "Name": "Philly Bistro", "Category": "Restaurants and Other Eating Places", "Address": "810 Franklin Mills Cir", "LATITUDE": 40.093695, "LONGITUDE": -74.96082, "DATE_RANGE_START": 2022, "Total Visits": 329.0, "Total Visitors": 280.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 6.0, "Total Spend": 239.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 12.13, "Median Spend per Customer": 37.18 }, "geometry": { "type": "Point", "coordinates": [ -74.96082, 40.093695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-gp9", "Name": "Mercato BYOB", "Category": "Restaurants and Other Eating Places", "Address": "1216 Spruce St", "LATITUDE": 39.946499, "LONGITUDE": -75.161768, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 1.0, "Total Spend": 5700.0, "Total Transactions": 57.0, "Total Customers": 30.0, "Median Spend per Transaction": 102.31, "Median Spend per Customer": 202.42 }, "geometry": { "type": "Point", "coordinates": [ -75.161768, 39.946499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "Name": "General Tso", "Category": "Restaurants and Other Eating Places", "Address": "2350 Orthodox St", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 21.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 65.0, "Total Spend": 2750.0, "Total Transactions": 80.0, "Total Customers": 38.0, "Median Spend per Transaction": 32.8, "Median Spend per Customer": 74.55 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgf-73q", "Name": "Lancaster Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4127 Lancaster Ave", "LATITUDE": 39.965853, "LONGITUDE": -75.206317, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 33.0, "POI_CBG": 421010107002.0, "Median Dwell Time": 31.0, "Total Spend": 141.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206317, 39.965853 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "Name": "Bleu Sushi", "Category": "Restaurants and Other Eating Places", "Address": "262 S 10th St", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 80.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 551.0, "Total Spend": 2768.0, "Total Transactions": 42.0, "Total Customers": 26.0, "Median Spend per Transaction": 60.35, "Median Spend per Customer": 98.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pgb-249", "Name": "Nom Wah Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "218 N 13th St", "LATITUDE": 39.956611, "LONGITUDE": -75.160874, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 162.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 39.0, "Total Spend": 7523.0, "Total Transactions": 152.0, "Total Customers": 77.0, "Median Spend per Transaction": 44.6, "Median Spend per Customer": 89.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160874, 39.956611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "Name": "J & P Seafood", "Category": "Restaurants and Other Eating Places", "Address": "4820 Spruce St", "LATITUDE": 39.953491, "LONGITUDE": -75.218951, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 37.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 210.0, "Total Spend": 5332.0, "Total Transactions": 197.0, "Total Customers": 82.0, "Median Spend per Transaction": 25.28, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218951, 39.953491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "Name": "DJ Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4040 City Ave", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 214.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 4.0, "Total Spend": 228.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 15.65, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "Name": "Tio Flores", "Category": "Restaurants and Other Eating Places", "Address": "1600 South St", "LATITUDE": 39.94381, "LONGITUDE": -75.168972, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 115.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 647.0, "Total Spend": 1977.0, "Total Transactions": 31.0, "Total Customers": 19.0, "Median Spend per Transaction": 49.98, "Median Spend per Customer": 83.42 }, "geometry": { "type": "Point", "coordinates": [ -75.168972, 39.94381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "Name": "Yamitsuki Ramen", "Category": "Restaurants and Other Eating Places", "Address": "1028 Arch St", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2022, "Total Visits": 503.0, "Total Visitors": 415.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 36.0, "Total Spend": 13560.0, "Total Transactions": 308.0, "Total Customers": 183.0, "Median Spend per Transaction": 37.86, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-228@628-p8t-w49", "Name": "Street Corner", "Category": "Gasoline Stations", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087377, "LONGITUDE": -74.961635, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 40.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 698.0, "Total Transactions": 110.0, "Total Customers": 59.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961635, 40.087377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pmb-v75", "Name": "Mei Mei Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "33 S 2nd St", "LATITUDE": 39.948931, "LONGITUDE": -75.143532, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 247.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 79.0, "Total Spend": 8558.0, "Total Transactions": 56.0, "Total Customers": 30.0, "Median Spend per Transaction": 93.37, "Median Spend per Customer": 186.74 }, "geometry": { "type": "Point", "coordinates": [ -75.143532, 39.948931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "Name": "East Coast Tropicals", "Category": "Grocery Stores", "Address": "1615 N Hancock St", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 44.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 7.0, "Total Spend": 4359.0, "Total Transactions": 33.0, "Total Customers": 19.0, "Median Spend per Transaction": 102.91, "Median Spend per Customer": 178.8 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-mzf", "Name": "Tir na nOg Irish Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1600 Arch St", "LATITUDE": 39.954415, "LONGITUDE": -75.16676, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 54.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 183.0, "Total Spend": 6007.0, "Total Transactions": 30.0, "Total Customers": 19.0, "Median Spend per Transaction": 45.75, "Median Spend per Customer": 71.4 }, "geometry": { "type": "Point", "coordinates": [ -75.16676, 39.954415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "401 Spring Garden St", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2022, "Total Visits": 821.0, "Total Visitors": 618.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 4.0, "Total Spend": 18925.0, "Total Transactions": 899.0, "Total Customers": 585.0, "Median Spend per Transaction": 12.19, "Median Spend per Customer": 19.61 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "Name": "Pickwick Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1700 Market St", "LATITUDE": 39.952852, "LONGITUDE": -75.169574, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 92.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 286.0, "Total Spend": 4391.0, "Total Transactions": 139.0, "Total Customers": 40.0, "Median Spend per Transaction": 9.98, "Median Spend per Customer": 35.24 }, "geometry": { "type": "Point", "coordinates": [ -75.169574, 39.952852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phk-yvz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6744 N 5th St # 46", "LATITUDE": 40.054784, "LONGITUDE": -75.126802, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 178.0, "POI_CBG": 421010269001.0, "Median Dwell Time": 6.0, "Total Spend": 7510.0, "Total Transactions": 361.0, "Total Customers": 207.0, "Median Spend per Transaction": 13.36, "Median Spend per Customer": 23.77 }, "geometry": { "type": "Point", "coordinates": [ -75.126802, 40.054784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "59 E Oregon Ave", "LATITUDE": 39.914298, "LONGITUDE": -75.149292, "DATE_RANGE_START": 2022, "Total Visits": 3186.0, "Total Visitors": 2004.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 4.0, "Total Spend": 1347.0, "Total Transactions": 37.0, "Total Customers": 35.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 29.73 }, "geometry": { "type": "Point", "coordinates": [ -75.149292, 39.914298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4001 Woodhaven Rd", "LATITUDE": 40.087401, "LONGITUDE": -74.970519, "DATE_RANGE_START": 2022, "Total Visits": 1943.0, "Total Visitors": 1291.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 1767.0, "Total Transactions": 31.0, "Total Customers": 23.0, "Median Spend per Transaction": 36.86, "Median Spend per Customer": 76.34 }, "geometry": { "type": "Point", "coordinates": [ -74.970519, 40.087401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-g8v", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "1923 Middleton St", "LATITUDE": 40.06232, "LONGITUDE": -75.152136, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 159.0, "POI_CBG": 421010265001.0, "Median Dwell Time": 3.0, "Total Spend": 1886.0, "Total Transactions": 44.0, "Total Customers": 24.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152136, 40.06232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p7v-vxq", "Name": "Algon Auto Clinic", "Category": "Gasoline Stations", "Address": "7300 Algon Ave", "LATITUDE": 40.055758, "LONGITUDE": -75.073258, "DATE_RANGE_START": 2022, "Total Visits": 307.0, "Total Visitors": 166.0, "POI_CBG": 421010338002.0, "Median Dwell Time": 173.0, "Total Spend": 1204.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073258, 40.055758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-pn5", "Name": "U Town", "Category": "Restaurants and Other Eating Places", "Address": "110 S 40th St", "LATITUDE": 39.954979, "LONGITUDE": -75.202634, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 91.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 35.0, "Total Spend": 7130.0, "Total Transactions": 211.0, "Total Customers": 92.0, "Median Spend per Transaction": 30.22, "Median Spend per Customer": 63.92 }, "geometry": { "type": "Point", "coordinates": [ -75.202634, 39.954979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgj-cqz", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St Ste 5", "LATITUDE": 39.977801, "LONGITUDE": -75.158494, "DATE_RANGE_START": 2022, "Total Visits": 2385.0, "Total Visitors": 1744.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 64.0, "Total Spend": 1598.0, "Total Transactions": 105.0, "Total Customers": 47.0, "Median Spend per Transaction": 16.15, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158494, 39.977801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-sdv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "411 W Oregon Ave", "LATITUDE": 39.915109, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 3.0, "Total Spend": 358.0, "Total Transactions": 19.0, "Total Customers": 12.0, "Median Spend per Transaction": 18.13, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.915109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2204 S Columbus Blvd", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2022, "Total Visits": 878.0, "Total Visitors": 620.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 72006.0, "Total Transactions": 4249.0, "Total Customers": 2939.0, "Median Spend per Transaction": 14.35, "Median Spend per Customer": 18.54 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-223@628-p7x-7dv", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "2060 Cottman Ave", "LATITUDE": 40.050189, "LONGITUDE": -75.064815, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 78.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 3.0, "Total Spend": 42.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.01, "Median Spend per Customer": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.064815, 40.050189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "Name": "Chew Deli", "Category": "Restaurants and Other Eating Places", "Address": "6302 Chew Ave", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2022, "Total Visits": 157.0, "Total Visitors": 59.0, "POI_CBG": 421010252007.0, "Median Dwell Time": 198.0, "Total Spend": 3873.0, "Total Transactions": 401.0, "Total Customers": 66.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 31.36 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "551 Franklin Mills Cir", "LATITUDE": 40.089385, "LONGITUDE": -74.964383, "DATE_RANGE_START": 2022, "Total Visits": 280.0, "Total Visitors": 240.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 4081.0, "Total Transactions": 561.0, "Total Customers": 348.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 8.03 }, "geometry": { "type": "Point", "coordinates": [ -74.964383, 40.089385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5fz", "Name": "Pressed Juicery", "Category": "Restaurants and Other Eating Places", "Address": "113 S 13th St", "LATITUDE": 39.950032, "LONGITUDE": -75.161637, "DATE_RANGE_START": 2022, "Total Visits": 822.0, "Total Visitors": 653.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 58.0, "Total Spend": 2481.0, "Total Transactions": 218.0, "Total Customers": 157.0, "Median Spend per Transaction": 8.34, "Median Spend per Customer": 12.19 }, "geometry": { "type": "Point", "coordinates": [ -75.161637, 39.950032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfv-649", "Name": "Pelham Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6555 Greene St Ste 3", "LATITUDE": 40.043444, "LONGITUDE": -75.190762, "DATE_RANGE_START": 2022, "Total Visits": 706.0, "Total Visitors": 427.0, "POI_CBG": 421010237001.0, "Median Dwell Time": 4.0, "Total Spend": 813.0, "Total Transactions": 26.0, "Total Customers": 12.0, "Median Spend per Transaction": 29.88, "Median Spend per Customer": 74.21 }, "geometry": { "type": "Point", "coordinates": [ -75.190762, 40.043444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4200 G St", "LATITUDE": 40.012396, "LONGITUDE": -75.112446, "DATE_RANGE_START": 2022, "Total Visits": 390.0, "Total Visitors": 267.0, "POI_CBG": 421010289012.0, "Median Dwell Time": 3.0, "Total Spend": 19613.0, "Total Transactions": 768.0, "Total Customers": 441.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.112446, 40.012396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pp5-ht9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2750 Aramingo Ave", "LATITUDE": 39.983672, "LONGITUDE": -75.115989, "DATE_RANGE_START": 2022, "Total Visits": 1031.0, "Total Visitors": 638.0, "POI_CBG": 421010179005.0, "Median Dwell Time": 4.0, "Total Spend": 305.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 29.85, "Median Spend per Customer": 29.85 }, "geometry": { "type": "Point", "coordinates": [ -75.115989, 39.983672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pm4-jn5", "Name": "Los Carnales Food Market", "Category": "Grocery Stores", "Address": "1033 S 8th St", "LATITUDE": 39.936194, "LONGITUDE": -75.156685, "DATE_RANGE_START": 2022, "Total Visits": 385.0, "Total Visitors": 268.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 47.0, "Total Spend": 1547.0, "Total Transactions": 106.0, "Total Customers": 12.0, "Median Spend per Transaction": 14.25, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156685, 39.936194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3440 Market St", "LATITUDE": 39.955622, "LONGITUDE": -75.192214, "DATE_RANGE_START": 2022, "Total Visits": 2303.0, "Total Visitors": 1484.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 63.0, "Total Spend": 1460.0, "Total Transactions": 125.0, "Total Customers": 78.0, "Median Spend per Transaction": 11.22, "Median Spend per Customer": 12.33 }, "geometry": { "type": "Point", "coordinates": [ -75.192214, 39.955622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "Name": "Petrovsky Market", "Category": "Specialty Food Stores", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2022, "Total Visits": 1561.0, "Total Visitors": 864.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 9.0, "Total Spend": 54469.0, "Total Transactions": 1510.0, "Total Customers": 392.0, "Median Spend per Transaction": 25.56, "Median Spend per Customer": 79.72 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "9875 Bustleton Ave", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2022, "Total Visits": 979.0, "Total Visitors": 692.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 6.0, "Total Spend": 5715.0, "Total Transactions": 251.0, "Total Customers": 171.0, "Median Spend per Transaction": 11.55, "Median Spend per Customer": 23.13 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.91267, "LONGITUDE": -75.154671, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 64.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 1438.0, "Total Transactions": 40.0, "Total Customers": 37.0, "Median Spend per Transaction": 25.54, "Median Spend per Customer": 25.54 }, "geometry": { "type": "Point", "coordinates": [ -75.154671, 39.91267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2634 N Broad St # 44", "LATITUDE": 39.993791, "LONGITUDE": -75.155151, "DATE_RANGE_START": 2022, "Total Visits": 1484.0, "Total Visitors": 1052.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 4.0, "Total Spend": 430.0, "Total Transactions": 17.0, "Total Customers": 16.0, "Median Spend per Transaction": 20.05, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155151, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7v-skf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1560 Cottman Ave", "LATITUDE": 40.055128, "LONGITUDE": -75.073724, "DATE_RANGE_START": 2022, "Total Visits": 1357.0, "Total Visitors": 854.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 4.0, "Total Spend": 2189.0, "Total Transactions": 77.0, "Total Customers": 35.0, "Median Spend per Transaction": 20.23, "Median Spend per Customer": 47.93 }, "geometry": { "type": "Point", "coordinates": [ -75.073724, 40.055128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "Name": "Tommy Hilfiger", "Category": "Clothing Stores", "Address": "1800 Franklin Mills Cir", "LATITUDE": 40.089952, "LONGITUDE": -74.962035, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 89.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 5045.0, "Total Transactions": 80.0, "Total Customers": 52.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 54.29 }, "geometry": { "type": "Point", "coordinates": [ -74.962035, 40.089952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1020 S Broad St", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2022, "Total Visits": 432.0, "Total Visitors": 291.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 6.0, "Total Spend": 84199.0, "Total Transactions": 2850.0, "Total Customers": 1413.0, "Median Spend per Transaction": 18.77, "Median Spend per Customer": 35.86 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9171 Roosevelt Blvd", "LATITUDE": 40.076084, "LONGITUDE": -75.031448, "DATE_RANGE_START": 2022, "Total Visits": 1308.0, "Total Visitors": 1113.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 12.0, "Total Spend": 16386.0, "Total Transactions": 798.0, "Total Customers": 624.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 17.91 }, "geometry": { "type": "Point", "coordinates": [ -75.031448, 40.076084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "Name": "Banana Republic Outlet", "Category": "Clothing Stores", "Address": "1911 Chestnut St", "LATITUDE": 39.952113, "LONGITUDE": -75.172438, "DATE_RANGE_START": 2022, "Total Visits": 312.0, "Total Visitors": 263.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 22.0, "Total Spend": 7803.0, "Total Transactions": 127.0, "Total Customers": 108.0, "Median Spend per Transaction": 41.52, "Median Spend per Customer": 44.49 }, "geometry": { "type": "Point", "coordinates": [ -75.172438, 39.952113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "Name": "Vince.", "Category": "Clothing Stores", "Address": "1701 Walnut St", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2022, "Total Visits": 2801.0, "Total Visitors": 2228.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 13.0, "Total Spend": 3320.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 306.5, "Median Spend per Customer": 306.5 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "Name": "Love Vape", "Category": "Other Miscellaneous Store Retailers", "Address": "608 S 5th St", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 63.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 7.0, "Total Spend": 10557.0, "Total Transactions": 314.0, "Total Customers": 131.0, "Median Spend per Transaction": 27.81, "Median Spend per Customer": 60.48 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "Name": "Quetzally", "Category": "Restaurants and Other Eating Places", "Address": "1225 Fitzwater St", "LATITUDE": 39.941598, "LONGITUDE": -75.163087, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010015002.0, "Median Dwell Time": null, "Total Spend": 2146.0, "Total Transactions": 66.0, "Total Customers": 33.0, "Median Spend per Transaction": 26.21, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163087, 39.941598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-249", "Name": "Red Hook Coffee & Tea", "Category": "Restaurants and Other Eating Places", "Address": "765 S 4th St", "LATITUDE": 39.938563, "LONGITUDE": -75.149659, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 17.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 20.0, "Total Spend": 166.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 19.17, "Median Spend per Customer": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.149659, 39.938563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-snq", "Name": "Atlanta Wings", "Category": "Restaurants and Other Eating Places", "Address": "2355 S Bucknell St", "LATITUDE": 39.922758, "LONGITUDE": -75.186158, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 1.0, "Total Spend": 2832.0, "Total Transactions": 105.0, "Total Customers": 40.0, "Median Spend per Transaction": 24.98, "Median Spend per Customer": 49.96 }, "geometry": { "type": "Point", "coordinates": [ -75.186158, 39.922758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "Name": "Sorrento's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1624 W Olney Ave", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 23.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 303.0, "Total Spend": 2974.0, "Total Transactions": 127.0, "Total Customers": 56.0, "Median Spend per Transaction": 20.69, "Median Spend per Customer": 44.42 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-gtv", "Name": "Greenstreet Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1101 Spruce St", "LATITUDE": 39.946471, "LONGITUDE": -75.159628, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 20.0, "Total Spend": 1339.0, "Total Transactions": 162.0, "Total Customers": 66.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.159628, 39.946471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7201 Castor Ave", "LATITUDE": 40.050139, "LONGITUDE": -75.066802, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 298.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 4.0, "Total Spend": 697.0, "Total Transactions": 59.0, "Total Customers": 35.0, "Median Spend per Transaction": 6.89, "Median Spend per Customer": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.066802, 40.050139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2400 Castor Ave", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2022, "Total Visits": 2329.0, "Total Visitors": 1634.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 4.0, "Total Spend": 2821.0, "Total Transactions": 84.0, "Total Customers": 73.0, "Median Spend per Transaction": 24.2, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-kvf", "Name": "Long In the Tooth", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2027 Sansom St", "LATITUDE": 39.951536, "LONGITUDE": -75.174727, "DATE_RANGE_START": 2022, "Total Visits": 1801.0, "Total Visitors": 1275.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 100.0, "Total Spend": 412.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 118.23 }, "geometry": { "type": "Point", "coordinates": [ -75.174727, 39.951536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-r6k", "Name": "Loop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1914 South St", "LATITUDE": 39.944579, "LONGITUDE": -75.174065, "DATE_RANGE_START": 2022, "Total Visits": 253.0, "Total Visitors": 167.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 241.0, "Total Spend": 4369.0, "Total Transactions": 82.0, "Total Customers": 38.0, "Median Spend per Transaction": 33.2, "Median Spend per Customer": 66.2 }, "geometry": { "type": "Point", "coordinates": [ -75.174065, 39.944579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvw-wzf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5701 Walnut St", "LATITUDE": 39.958527, "LONGITUDE": -75.235976, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 117.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 11.0, "Total Spend": 1404.0, "Total Transactions": 138.0, "Total Customers": 99.0, "Median Spend per Transaction": 6.49, "Median Spend per Customer": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.235976, 39.958527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-8sq", "Name": "Edible Arrangements", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "120 S 12th St", "LATITUDE": 39.949551, "LONGITUDE": -75.160537, "DATE_RANGE_START": 2022, "Total Visits": 345.0, "Total Visitors": 312.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 4.0, "Total Spend": 82.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.99, "Median Spend per Customer": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160537, 39.949551 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3705 Germantown Ave", "LATITUDE": 40.009461, "LONGITUDE": -75.150639, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 7.0, "Total Spend": 2766.0, "Total Transactions": 409.0, "Total Customers": 164.0, "Median Spend per Transaction": 6.44, "Median Spend per Customer": 7.93 }, "geometry": { "type": "Point", "coordinates": [ -75.150639, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-ygk", "Name": "Shaxian Delicacies", "Category": "Restaurants and Other Eating Places", "Address": "106 N 10th St", "LATITUDE": 39.953861, "LONGITUDE": -75.156353, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 155.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 511.0, "Total Transactions": 28.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156353, 39.953861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7w-tn5", "Name": "Way Out", "Category": "Clothing Stores", "Address": "2327 Cottman Ave", "LATITUDE": 40.047236, "LONGITUDE": -75.055695, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 115.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 31.0, "Total Spend": 9631.0, "Total Transactions": 197.0, "Total Customers": 94.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055695, 40.047236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p76-b6k", "Name": "Atlantic Tactical", "Category": "Clothing Stores", "Address": "7970 State Rd", "LATITUDE": 40.031408, "LONGITUDE": -75.022482, "DATE_RANGE_START": 2022, "Total Visits": 554.0, "Total Visitors": 423.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 55.0, "Total Spend": 4495.0, "Total Transactions": 23.0, "Total Customers": 14.0, "Median Spend per Transaction": 51.16, "Median Spend per Customer": 73.63 }, "geometry": { "type": "Point", "coordinates": [ -75.022482, 40.031408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-ph6-gzf", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1913 N 54th St", "LATITUDE": 39.986348, "LONGITUDE": -75.231742, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010119001.0, "Median Dwell Time": null, "Total Spend": 3843.0, "Total Transactions": 129.0, "Total Customers": 64.0, "Median Spend per Transaction": 29.7, "Median Spend per Customer": 59.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231742, 39.986348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfv-94v", "Name": "Big Blue Marble Bookstore", "Category": "Book Stores and News Dealers", "Address": "551 Carpenter Ln", "LATITUDE": 40.046676, "LONGITUDE": -75.195832, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 1.0, "Total Spend": 135.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.92, "Median Spend per Customer": 29.12 }, "geometry": { "type": "Point", "coordinates": [ -75.195832, 40.046676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm7-nwk", "Name": "Point Crab's & Seafood", "Category": "Specialty Food Stores", "Address": "1324 S 21st St", "LATITUDE": 39.934951, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 1.0, "Total Spend": 2898.0, "Total Transactions": 51.0, "Total Customers": 21.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 81.75 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.934951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-mrk", "Name": "Jerry's Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "129 W Laurel St", "LATITUDE": 39.965113, "LONGITUDE": -75.138904, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 125.0, "Total Spend": 3931.0, "Total Transactions": 59.0, "Total Customers": 30.0, "Median Spend per Transaction": 56.0, "Median Spend per Customer": 96.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138904, 39.965113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7b-kj9", "Name": "Villagio Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9233 Frankford Ave", "LATITUDE": 40.055388, "LONGITUDE": -75.003512, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 21.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 406.0, "Total Spend": 1325.0, "Total Transactions": 54.0, "Total Customers": 26.0, "Median Spend per Transaction": 23.92, "Median Spend per Customer": 47.84 }, "geometry": { "type": "Point", "coordinates": [ -75.003512, 40.055388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-phj-rrk", "Name": "BBQ Town", "Category": "Restaurants and Other Eating Places", "Address": "7711 Ogontz Ave", "LATITUDE": 40.071208, "LONGITUDE": -75.157221, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 12.0, "Total Spend": 696.0, "Total Transactions": 31.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 64.02 }, "geometry": { "type": "Point", "coordinates": [ -75.157221, 40.071208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-bc5", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "100 N Edgewood St", "LATITUDE": 39.963748, "LONGITUDE": -75.241226, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010096002.0, "Median Dwell Time": 1.0, "Total Spend": 2242.0, "Total Transactions": 99.0, "Total Customers": 47.0, "Median Spend per Transaction": 19.9, "Median Spend per Customer": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.241226, 39.963748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8j-cyv", "Name": "Apex Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7200 Frankford Ave", "LATITUDE": 40.035775, "LONGITUDE": -75.04334, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010315011.0, "Median Dwell Time": null, "Total Spend": 1045.0, "Total Transactions": 17.0, "Total Customers": 7.0, "Median Spend per Transaction": 26.49, "Median Spend per Customer": 74.96 }, "geometry": { "type": "Point", "coordinates": [ -75.04334, 40.035775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "Name": "A& A Grocery Store", "Category": "Grocery Stores", "Address": "5030 Haverford Ave", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010093001.0, "Median Dwell Time": 9.0, "Total Spend": 4621.0, "Total Transactions": 453.0, "Total Customers": 131.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 25.36 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmb-835", "Name": "Beck's Cajun Cafe", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953182, "LONGITUDE": -75.159431, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 9905.0, "Total Transactions": 439.0, "Total Customers": 213.0, "Median Spend per Transaction": 17.95, "Median Spend per Customer": 36.64 }, "geometry": { "type": "Point", "coordinates": [ -75.159431, 39.953182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-n89", "Name": "Southside Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "5213 Market St", "LATITUDE": 39.960357, "LONGITUDE": -75.225351, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 157.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 438.0, "Total Spend": 120.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.11, "Median Spend per Customer": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.225351, 39.960357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "Name": "Sonnys Famous Steaks", "Category": "Restaurants and Other Eating Places", "Address": "228 Market St", "LATITUDE": 39.949796, "LONGITUDE": -75.144721, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 181.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 45.0, "Total Spend": 27908.0, "Total Transactions": 1019.0, "Total Customers": 530.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144721, 39.949796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-vfz", "Name": "Panorama", "Category": "Restaurants and Other Eating Places", "Address": "14 N Front St", "LATITUDE": 39.950151, "LONGITUDE": -75.142176, "DATE_RANGE_START": 2022, "Total Visits": 4385.0, "Total Visitors": 2991.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 31.0, "Total Spend": 9412.0, "Total Transactions": 70.0, "Total Customers": 37.0, "Median Spend per Transaction": 140.63, "Median Spend per Customer": 269.28 }, "geometry": { "type": "Point", "coordinates": [ -75.142176, 39.950151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pp5-5vf", "Name": "Buzz Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1800 N Howard St", "LATITUDE": 39.977401, "LONGITUDE": -75.135043, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010157002.0, "Median Dwell Time": null, "Total Spend": 328.0, "Total Transactions": 23.0, "Total Customers": 9.0, "Median Spend per Transaction": 14.94, "Median Spend per Customer": 45.11 }, "geometry": { "type": "Point", "coordinates": [ -75.135043, 39.977401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "Name": "Monster Pets", "Category": "Other Miscellaneous Store Retailers", "Address": "1946 S Columbus Blvd", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2022, "Total Visits": 531.0, "Total Visitors": 395.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 17.0, "Total Spend": 2860.0, "Total Transactions": 61.0, "Total Customers": 31.0, "Median Spend per Transaction": 30.74, "Median Spend per Customer": 55.04 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "Name": "Pizza & Steak Master", "Category": "Restaurants and Other Eating Places", "Address": "6627 Chew Ave", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010253001.0, "Median Dwell Time": 1.0, "Total Spend": 1997.0, "Total Transactions": 92.0, "Total Customers": 28.0, "Median Spend per Transaction": 18.55, "Median Spend per Customer": 63.05 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj4-7wk", "Name": "Vernie's Soul Food", "Category": "Restaurants and Other Eating Places", "Address": "1800 W Eleanor St", "LATITUDE": 40.027362, "LONGITUDE": -75.153997, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010280003.0, "Median Dwell Time": 135.0, "Total Spend": 875.0, "Total Transactions": 35.0, "Total Customers": 17.0, "Median Spend per Transaction": 22.36, "Median Spend per Customer": 47.32 }, "geometry": { "type": "Point", "coordinates": [ -75.153997, 40.027362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "Name": "Hadramout", "Category": "Restaurants and Other Eating Places", "Address": "136 S 45th St", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 17.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 5.0, "Total Spend": 2486.0, "Total Transactions": 57.0, "Total Customers": 31.0, "Median Spend per Transaction": 30.22, "Median Spend per Customer": 62.88 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm4-k4v", "Name": "Tacos California", "Category": "Restaurants and Other Eating Places", "Address": "1030 S 8th St", "LATITUDE": 39.936462, "LONGITUDE": -75.15694, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 8.0, "Total Spend": 317.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15694, 39.936462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "1521 S Columbus Blvd", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2022, "Total Visits": 301.0, "Total Visitors": 240.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 13587.0, "Total Transactions": 997.0, "Total Customers": 693.0, "Median Spend per Transaction": 11.85, "Median Spend per Customer": 13.84 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgh-h5z", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2749 W Hunting Park Ave", "LATITUDE": 40.007766, "LONGITUDE": -75.174356, "DATE_RANGE_START": 2022, "Total Visits": 395.0, "Total Visitors": 338.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 4.0, "Total Spend": 7901.0, "Total Transactions": 449.0, "Total Customers": 336.0, "Median Spend per Transaction": 13.38, "Median Spend per Customer": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.174356, 40.007766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmf-rx5", "Name": "Viet Bistro", "Category": "Restaurants and Other Eating Places", "Address": "1640 South St", "LATITUDE": 39.944017, "LONGITUDE": -75.170118, "DATE_RANGE_START": 2022, "Total Visits": 693.0, "Total Visitors": 375.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 550.0, "Total Spend": 523.0, "Total Transactions": 35.0, "Total Customers": 14.0, "Median Spend per Transaction": 13.44, "Median Spend per Customer": 30.96 }, "geometry": { "type": "Point", "coordinates": [ -75.170118, 39.944017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-whq", "Name": "Pho Xe Lua Viet Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "907 Race St", "LATITUDE": 39.955481, "LONGITUDE": -75.154675, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 37.0, "Total Spend": 6375.0, "Total Transactions": 169.0, "Total Customers": 85.0, "Median Spend per Transaction": 36.29, "Median Spend per Customer": 69.68 }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-7nq", "Name": "Jam Rock", "Category": "Restaurants and Other Eating Places", "Address": "6155 Woodland Ave", "LATITUDE": 39.928385, "LONGITUDE": -75.230768, "DATE_RANGE_START": 2022, "Total Visits": 702.0, "Total Visitors": 469.0, "POI_CBG": 421010066004.0, "Median Dwell Time": 13.0, "Total Spend": 1603.0, "Total Transactions": 78.0, "Total Customers": 31.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.230768, 39.928385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-2zf", "Name": "Asia Mix Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd Ste 154", "LATITUDE": 40.103233, "LONGITUDE": -75.010226, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 500.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 16.0, "Total Spend": 769.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 35.09, "Median Spend per Customer": 70.18 }, "geometry": { "type": "Point", "coordinates": [ -75.010226, 40.103233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph8-qcq", "Name": "ALDI", "Category": "Grocery Stores", "Address": "1911 N 76th St", "LATITUDE": 39.978749, "LONGITUDE": -75.270239, "DATE_RANGE_START": 2022, "Total Visits": 869.0, "Total Visitors": 587.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 8.0, "Total Spend": 203.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.84, "Median Spend per Customer": 17.84 }, "geometry": { "type": "Point", "coordinates": [ -75.270239, 39.978749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp5-g49", "Name": "Aramingo's Best Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2885 Aramingo Ave", "LATITUDE": 39.984627, "LONGITUDE": -75.113365, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010179003.0, "Median Dwell Time": null, "Total Spend": 3601.0, "Total Transactions": 122.0, "Total Customers": 49.0, "Median Spend per Transaction": 25.33, "Median Spend per Customer": 55.08 }, "geometry": { "type": "Point", "coordinates": [ -75.113365, 39.984627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnz-zj9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3398 Aramingo & Ontario", "LATITUDE": 39.99116, "LONGITUDE": -75.102091, "DATE_RANGE_START": 2022, "Total Visits": 359.0, "Total Visitors": 277.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 3.0, "Total Spend": 225.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 22.5, "Median Spend per Customer": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102091, 39.99116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-jn5", "Name": "Arch Enemy Arts", "Category": "Other Miscellaneous Store Retailers", "Address": "109 Arch St", "LATITUDE": 39.951916, "LONGITUDE": -75.142146, "DATE_RANGE_START": 2022, "Total Visits": 1941.0, "Total Visitors": 1564.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 134.0, "Total Spend": 618.0, "Total Transactions": 21.0, "Total Customers": 12.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142146, 39.951916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-wrk", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2628 N Broad St", "LATITUDE": 39.993383, "LONGITUDE": -75.155194, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 49.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 231.0, "Total Spend": 8826.0, "Total Transactions": 286.0, "Total Customers": 244.0, "Median Spend per Transaction": 28.04, "Median Spend per Customer": 30.43 }, "geometry": { "type": "Point", "coordinates": [ -75.155194, 39.993383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnw-mzf", "Name": "Once Worn Consignment", "Category": "Used Merchandise Stores", "Address": "906 N 2nd St", "LATITUDE": 39.964394, "LONGITUDE": -75.140857, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010142002.0, "Median Dwell Time": null, "Total Spend": 3056.0, "Total Transactions": 91.0, "Total Customers": 49.0, "Median Spend per Transaction": 26.3, "Median Spend per Customer": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140857, 39.964394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "Name": "Thunderbird Salvage", "Category": "Used Merchandise Stores", "Address": "2441 Frankford Ave", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 35.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 8.0, "Total Spend": 2967.0, "Total Transactions": 70.0, "Total Customers": 31.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmd-rx5", "Name": "Cotoletta Fitler Square", "Category": "Restaurants and Other Eating Places", "Address": "2227 Pine St", "LATITUDE": 39.947447, "LONGITUDE": -75.179191, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010012012.0, "Median Dwell Time": null, "Total Spend": 3005.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 169.92, "Median Spend per Customer": 339.84 }, "geometry": { "type": "Point", "coordinates": [ -75.179191, 39.947447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "Name": "Dfti Boutique", "Category": "Clothing Stores", "Address": "2026 Chestnut St", "LATITUDE": 39.95206, "LONGITUDE": -75.174572, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 47.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 4.0, "Total Spend": 17554.0, "Total Transactions": 190.0, "Total Customers": 92.0, "Median Spend per Transaction": 80.0, "Median Spend per Customer": 169.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174572, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@63s-dwg-f9f", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7229 Passyunk Ave", "LATITUDE": 39.913707, "LONGITUDE": -75.240275, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010060004.0, "Median Dwell Time": 1.0, "Total Spend": 1221.0, "Total Transactions": 57.0, "Total Customers": 33.0, "Median Spend per Transaction": 17.22, "Median Spend per Customer": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.240275, 39.913707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-fcq", "Name": "Litterpaw Pet Supply", "Category": "Other Miscellaneous Store Retailers", "Address": "267 S 10th St", "LATITUDE": 39.946484, "LONGITUDE": -75.157626, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 1.0, "Total Spend": 224.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 21.9, "Median Spend per Customer": 45.34 }, "geometry": { "type": "Point", "coordinates": [ -75.157626, 39.946484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "Name": "Castle Roxx", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "105 Shurs Ln", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 8.0, "Total Spend": 9819.0, "Total Transactions": 324.0, "Total Customers": 120.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phd-h89", "Name": "El Limon", "Category": "Restaurants and Other Eating Places", "Address": "4514 City Ave", "LATITUDE": 40.002787, "LONGITUDE": -75.222273, "DATE_RANGE_START": 2022, "Total Visits": 502.0, "Total Visitors": 425.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 7.0, "Total Spend": 900.0, "Total Transactions": 37.0, "Total Customers": 21.0, "Median Spend per Transaction": 23.2, "Median Spend per Customer": 38.65 }, "geometry": { "type": "Point", "coordinates": [ -75.222273, 40.002787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgj-2ff", "Name": "Pita & Co", "Category": "Restaurants and Other Eating Places", "Address": "1755 N 13th St", "LATITUDE": 39.979339, "LONGITUDE": -75.155043, "DATE_RANGE_START": 2022, "Total Visits": 1706.0, "Total Visitors": 1289.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 152.0, "Total Spend": 2355.0, "Total Transactions": 49.0, "Total Customers": 28.0, "Median Spend per Transaction": 33.66, "Median Spend per Customer": 70.48 }, "geometry": { "type": "Point", "coordinates": [ -75.155043, 39.979339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "917 W Girard Ave # 31", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2022, "Total Visits": 336.0, "Total Visitors": 239.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 3.0, "Total Spend": 15081.0, "Total Transactions": 1831.0, "Total Customers": 873.0, "Median Spend per Transaction": 7.1, "Median Spend per Customer": 11.17 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5040 City Ave", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2022, "Total Visits": 294.0, "Total Visitors": 237.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 5.0, "Total Spend": 21888.0, "Total Transactions": 824.0, "Total Customers": 563.0, "Median Spend per Transaction": 17.34, "Median Spend per Customer": 21.47 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "Name": "Double Knot", "Category": "Health and Personal Care Stores", "Address": "120 S 13th St", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2022, "Total Visits": 394.0, "Total Visitors": 333.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 52.0, "Total Spend": 30334.0, "Total Transactions": 213.0, "Total Customers": 110.0, "Median Spend per Transaction": 121.78, "Median Spend per Customer": 222.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030253, "LONGITUDE": -75.101415, "DATE_RANGE_START": 2022, "Total Visits": 401.0, "Total Visitors": 368.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 9.0, "Total Spend": 3303.0, "Total Transactions": 64.0, "Total Customers": 54.0, "Median Spend per Transaction": 25.99, "Median Spend per Customer": 25.99 }, "geometry": { "type": "Point", "coordinates": [ -75.101415, 40.030253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-4n5", "Name": "Shoe Factory", "Category": "Shoe Stores", "Address": "7000 Castor Ave", "LATITUDE": 40.047111, "LONGITUDE": -75.070347, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 162.0, "POI_CBG": 421010310003.0, "Median Dwell Time": 8.0, "Total Spend": 10822.0, "Total Transactions": 91.0, "Total Customers": 45.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 39.97 }, "geometry": { "type": "Point", "coordinates": [ -75.070347, 40.047111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2027 W Oregon Ave", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2022, "Total Visits": 1141.0, "Total Visitors": 777.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 11.0, "Total Spend": 343.0, "Total Transactions": 23.0, "Total Customers": 19.0, "Median Spend per Transaction": 13.1, "Median Spend per Customer": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-sbk", "Name": "Faulkner Hyundai", "Category": "Automobile Dealers", "Address": "11500 Roosevelt Blvd", "LATITUDE": 40.102704, "LONGITUDE": -75.006021, "DATE_RANGE_START": 2022, "Total Visits": 1214.0, "Total Visitors": 894.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 21.0, "Total Spend": 20672.0, "Total Transactions": 51.0, "Total Customers": 51.0, "Median Spend per Transaction": 101.04, "Median Spend per Customer": 101.04 }, "geometry": { "type": "Point", "coordinates": [ -75.006021, 40.102704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-whq", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7422 Bustleton Ave", "LATITUDE": 40.051934, "LONGITUDE": -75.058717, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 277.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 8.0, "Total Spend": 3475.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 97.72, "Median Spend per Customer": 97.72 }, "geometry": { "type": "Point", "coordinates": [ -75.058717, 40.051934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.067745, "LONGITUDE": -75.198, "DATE_RANGE_START": 2022, "Total Visits": 406.0, "Total Visitors": 328.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 8.0, "Total Spend": 15268.0, "Total Transactions": 765.0, "Total Customers": 490.0, "Median Spend per Transaction": 12.45, "Median Spend per Customer": 19.05 }, "geometry": { "type": "Point", "coordinates": [ -75.198, 40.067745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvx-59f", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4701 W Girard Ave", "LATITUDE": 39.972941, "LONGITUDE": -75.217366, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 199.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 4.0, "Total Spend": 729.0, "Total Transactions": 84.0, "Total Customers": 64.0, "Median Spend per Transaction": 7.4, "Median Spend per Customer": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.217366, 39.972941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "848 S 2nd St", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 112.0, "POI_CBG": 421010017001.0, "Median Dwell Time": 32.0, "Total Spend": 3448.0, "Total Transactions": 66.0, "Total Customers": 40.0, "Median Spend per Transaction": 48.13, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-k75", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9745 Roosevelt Blvd # 5130", "LATITUDE": 40.08259, "LONGITUDE": -75.022988, "DATE_RANGE_START": 2022, "Total Visits": 11793.0, "Total Visitors": 7707.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 25.0, "Total Spend": 1949.0, "Total Transactions": 230.0, "Total Customers": 106.0, "Median Spend per Transaction": 7.55, "Median Spend per Customer": 12.93 }, "geometry": { "type": "Point", "coordinates": [ -75.022988, 40.08259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6017 N Broad St", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 211.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 4.0, "Total Spend": 11309.0, "Total Transactions": 1589.0, "Total Customers": 720.0, "Median Spend per Transaction": 6.03, "Median Spend per Customer": 9.66 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2901 Abbottsford Ave", "LATITUDE": 40.015127, "LONGITUDE": -75.178214, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 322.0, "POI_CBG": 421010206001.0, "Median Dwell Time": 3.0, "Total Spend": 2709.0, "Total Transactions": 399.0, "Total Customers": 258.0, "Median Spend per Transaction": 5.7, "Median Spend per Customer": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -75.178214, 40.015127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pmb-8y9", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "901 Market St", "LATITUDE": 39.95161, "LONGITUDE": -75.155822, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 188.0, "Total Transactions": 26.0, "Total Customers": 23.0, "Median Spend per Transaction": 5.19, "Median Spend per Customer": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.155822, 39.95161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "300 E Erie Ave", "LATITUDE": 40.006873, "LONGITUDE": -75.123103, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 145.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 3.0, "Total Spend": 3420.0, "Total Transactions": 404.0, "Total Customers": 267.0, "Median Spend per Transaction": 6.73, "Median Spend per Customer": 10.58 }, "geometry": { "type": "Point", "coordinates": [ -75.123103, 40.006873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "Name": "Tavares Grocery", "Category": "Grocery Stores", "Address": "364 E Chelten Ave", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010247005.0, "Median Dwell Time": 1.0, "Total Spend": 150.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 5.72, "Median Spend per Customer": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-zmk", "Name": "Hip Hemp Cafe", "Category": "Restaurants and Other Eating Places", "Address": "607 S 7th St", "LATITUDE": 39.94189, "LONGITUDE": -75.153788, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 29.0, "Total Spend": 1107.0, "Total Transactions": 42.0, "Total Customers": 21.0, "Median Spend per Transaction": 20.9, "Median Spend per Customer": 40.67 }, "geometry": { "type": "Point", "coordinates": [ -75.153788, 39.94189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 75.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 204.0, "Total Spend": 544.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 73.44, "Median Spend per Customer": 70.72 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvp-bff", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5754 Baltimore Ave", "LATITUDE": 39.945197, "LONGITUDE": -75.238981, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 89.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 3.0, "Total Spend": 1451.0, "Total Transactions": 52.0, "Total Customers": 40.0, "Median Spend per Transaction": 21.03, "Median Spend per Customer": 19.41 }, "geometry": { "type": "Point", "coordinates": [ -75.238981, 39.945197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@63s-dvy-8sq", "Name": "MK Food Service Equipment", "Category": "Gasoline Stations", "Address": "4700 Pine St", "LATITUDE": 39.95219, "LONGITUDE": -75.216689, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010079001.0, "Median Dwell Time": null, "Total Spend": 466.0, "Total Transactions": 54.0, "Total Customers": 17.0, "Median Spend per Transaction": 8.68, "Median Spend per Customer": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.216689, 39.95219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "Name": "Street Side", "Category": "Restaurants and Other Eating Places", "Address": "165 W Girard Ave", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 7.0, "Total Spend": 1660.0, "Total Transactions": 99.0, "Total Customers": 42.0, "Median Spend per Transaction": 11.92, "Median Spend per Customer": 33.63 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@63s-dvy-wtv", "Name": "Don Barriga Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "4443 Spruce St Apt 1", "LATITUDE": 39.953099, "LONGITUDE": -75.211951, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 17.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 16.0, "Total Spend": 11215.0, "Total Transactions": 287.0, "Total Customers": 139.0, "Median Spend per Transaction": 32.94, "Median Spend per Customer": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.211951, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "Name": "Jack's place", "Category": "Restaurants and Other Eating Places", "Address": "7167 Hegerman St", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 23.0, "POI_CBG": 421010326007.0, "Median Dwell Time": 197.0, "Total Spend": 429.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 32.43, "Median Spend per Customer": 67.94 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8h-hyv", "Name": "Athenian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6824 Torresdale Ave", "LATITUDE": 40.025796, "LONGITUDE": -75.044061, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 21.0, "Total Spend": 312.0, "Total Transactions": 14.0, "Total Customers": 9.0, "Median Spend per Transaction": 19.25, "Median Spend per Customer": 38.5 }, "geometry": { "type": "Point", "coordinates": [ -75.044061, 40.025796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-bp9", "Name": "Brown Street Coffee & Banhery", "Category": "Restaurants and Other Eating Places", "Address": "2545 Brown St", "LATITUDE": 39.970469, "LONGITUDE": -75.179503, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 28.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 16.0, "Total Spend": 3448.0, "Total Transactions": 301.0, "Total Customers": 78.0, "Median Spend per Transaction": 8.54, "Median Spend per Customer": 38.25 }, "geometry": { "type": "Point", "coordinates": [ -75.179503, 39.970469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-r6k", "Name": "United Buffet", "Category": "Restaurants and Other Eating Places", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029584, "LONGITUDE": -75.100403, "DATE_RANGE_START": 2022, "Total Visits": 801.0, "Total Visitors": 726.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 39.0, "Total Spend": 34141.0, "Total Transactions": 669.0, "Total Customers": 319.0, "Median Spend per Transaction": 41.64, "Median Spend per Customer": 83.28 }, "geometry": { "type": "Point", "coordinates": [ -75.100403, 40.029584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-dqf", "Name": "Asian Palace", "Category": "Restaurants and Other Eating Places", "Address": "2001 W Oregon Ave", "LATITUDE": 39.918335, "LONGITUDE": -75.181058, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 108.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 124.0, "Total Spend": 3160.0, "Total Transactions": 26.0, "Total Customers": 12.0, "Median Spend per Transaction": 55.94, "Median Spend per Customer": 121.8 }, "geometry": { "type": "Point", "coordinates": [ -75.181058, 39.918335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "Name": "Bar Bombon", "Category": "Restaurants and Other Eating Places", "Address": "133 S 18th St", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 101.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 58.0, "Total Spend": 37951.0, "Total Transactions": 596.0, "Total Customers": 321.0, "Median Spend per Transaction": 51.01, "Median Spend per Customer": 96.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rp9", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2308 W Oregon Ave", "LATITUDE": 39.917838, "LONGITUDE": -75.186989, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 35.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 6.0, "Total Spend": 6090.0, "Total Transactions": 211.0, "Total Customers": 179.0, "Median Spend per Transaction": 25.09, "Median Spend per Customer": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -75.186989, 39.917838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "Name": "Bistrot La Minette", "Category": "Restaurants and Other Eating Places", "Address": "623 S 6th St", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 42.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 96.0, "Total Spend": 14595.0, "Total Transactions": 112.0, "Total Customers": 56.0, "Median Spend per Transaction": 136.62, "Median Spend per Customer": 284.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "917 Filbert St", "LATITUDE": 39.952664, "LONGITUDE": -75.15622, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 49.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 218.0, "Total Spend": 973.0, "Total Transactions": 122.0, "Total Customers": 94.0, "Median Spend per Transaction": 7.13, "Median Spend per Customer": 7.72 }, "geometry": { "type": "Point", "coordinates": [ -75.15622, 39.952664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "Name": "Garden Court Eatery & Beer", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4725 Pine St", "LATITUDE": 39.952636, "LONGITUDE": -75.21767, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 148.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 21.0, "Total Spend": 7286.0, "Total Transactions": 404.0, "Total Customers": 141.0, "Median Spend per Transaction": 15.1, "Median Spend per Customer": 37.08 }, "geometry": { "type": "Point", "coordinates": [ -75.21767, 39.952636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "Name": "Chicko Tako", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 96.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 11.0, "Total Spend": 4176.0, "Total Transactions": 192.0, "Total Customers": 92.0, "Median Spend per Transaction": 15.59, "Median Spend per Customer": 31.12 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8j-bff", "Name": "Mayfair Diner", "Category": "Restaurants and Other Eating Places", "Address": "7373 Frankford Ave", "LATITUDE": 40.037436, "LONGITUDE": -75.038227, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 70.0, "POI_CBG": 421010330003.0, "Median Dwell Time": 30.0, "Total Spend": 5822.0, "Total Transactions": 160.0, "Total Customers": 73.0, "Median Spend per Transaction": 36.61, "Median Spend per Customer": 79.12 }, "geometry": { "type": "Point", "coordinates": [ -75.038227, 40.037436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj8-hwk", "Name": "Oxford Food Market", "Category": "Grocery Stores", "Address": "4820 Oxford Ave", "LATITUDE": 40.019429, "LONGITUDE": -75.084382, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010301002.0, "Median Dwell Time": null, "Total Spend": 1002.0, "Total Transactions": 38.0, "Total Customers": 19.0, "Median Spend per Transaction": 27.53, "Median Spend per Customer": 55.06 }, "geometry": { "type": "Point", "coordinates": [ -75.084382, 40.019429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "Name": "Desi Village", "Category": "Restaurants and Other Eating Places", "Address": "4527 Baltimore Ave", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 16.0, "Total Spend": 834.0, "Total Transactions": 35.0, "Total Customers": 16.0, "Median Spend per Transaction": 22.87, "Median Spend per Customer": 42.02 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25j-223@628-pgg-kxq", "Name": "Indiana Mini Market", "Category": "Grocery Stores", "Address": "2066 W Indiana Ave", "LATITUDE": 39.999848, "LONGITUDE": -75.164871, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010173001.0, "Median Dwell Time": 31.0, "Total Spend": 317.0, "Total Transactions": 24.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.4, "Median Spend per Customer": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.164871, 39.999848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-sbk", "Name": "The Igloo", "Category": "Restaurants and Other Eating Places", "Address": "2223 Grays Ferry Ave", "LATITUDE": 39.945135, "LONGITUDE": -75.179463, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 3.0, "Total Spend": 135.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 17.85, "Median Spend per Customer": 35.7 }, "geometry": { "type": "Point", "coordinates": [ -75.179463, 39.945135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnx-9s5", "Name": "Interstate Drafthouse", "Category": "Restaurants and Other Eating Places", "Address": "1235 E Palmer St", "LATITUDE": 39.971824, "LONGITUDE": -75.128675, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 26.0, "Total Spend": 250.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 71.74, "Median Spend per Customer": 71.74 }, "geometry": { "type": "Point", "coordinates": [ -75.128675, 39.971824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "839 N Broad St", "LATITUDE": 39.969391, "LONGITUDE": -75.159457, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 45.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 5.0, "Total Spend": 5470.0, "Total Transactions": 669.0, "Total Customers": 335.0, "Median Spend per Transaction": 6.78, "Median Spend per Customer": 10.44 }, "geometry": { "type": "Point", "coordinates": [ -75.159457, 39.969391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-249", "Name": "Two Brothers Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3322 N 13th St", "LATITUDE": 40.003487, "LONGITUDE": -75.150398, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 10.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 348.0, "Total Spend": 7816.0, "Total Transactions": 322.0, "Total Customers": 108.0, "Median Spend per Transaction": 19.15, "Median Spend per Customer": 39.54 }, "geometry": { "type": "Point", "coordinates": [ -75.150398, 40.003487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-php-ygk", "Name": "Stop One Food Market & Deli", "Category": "Grocery Stores", "Address": "6510 N 21st St", "LATITUDE": 40.053727, "LONGITUDE": -75.155505, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 23.0, "POI_CBG": 421010277006.0, "Median Dwell Time": 4.0, "Total Spend": 2587.0, "Total Transactions": 211.0, "Total Customers": 77.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155505, 40.053727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pg2-zj9", "Name": "Panda Garden", "Category": "Restaurants and Other Eating Places", "Address": "275 W Mount Pleasant Ave", "LATITUDE": 40.054638, "LONGITUDE": -75.193918, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 3.0, "Total Spend": 797.0, "Total Transactions": 51.0, "Total Customers": 24.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 30.05 }, "geometry": { "type": "Point", "coordinates": [ -75.193918, 40.054638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "Name": "Cafe Saigon", "Category": "Restaurants and Other Eating Places", "Address": "827 Adams Ave", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2022, "Total Visits": 294.0, "Total Visitors": 181.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 386.0, "Total Spend": 3330.0, "Total Transactions": 110.0, "Total Customers": 56.0, "Median Spend per Transaction": 24.3, "Median Spend per Customer": 42.74 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "337 Spring Garden St", "LATITUDE": 39.961453, "LONGITUDE": -75.144571, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 64.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 133.0, "Total Spend": 8416.0, "Total Transactions": 279.0, "Total Customers": 127.0, "Median Spend per Transaction": 19.25, "Median Spend per Customer": 44.01 }, "geometry": { "type": "Point", "coordinates": [ -75.144571, 39.961453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "Name": "Gallo's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "8101 Roosevelt Blvd", "LATITUDE": 40.057623, "LONGITUDE": -75.044487, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 303.0, "POI_CBG": 421010333001.0, "Median Dwell Time": 69.0, "Total Spend": 601.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 55.52, "Median Spend per Customer": 111.04 }, "geometry": { "type": "Point", "coordinates": [ -75.044487, 40.057623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-w49", "Name": "Sweet Lucy's Smokehouse", "Category": "Restaurants and Other Eating Places", "Address": "7500 State Rd", "LATITUDE": 40.028508, "LONGITUDE": -75.027023, "DATE_RANGE_START": 2022, "Total Visits": 587.0, "Total Visitors": 491.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 31.0, "Total Spend": 4775.0, "Total Transactions": 59.0, "Total Customers": 31.0, "Median Spend per Transaction": 46.98, "Median Spend per Customer": 82.89 }, "geometry": { "type": "Point", "coordinates": [ -75.027023, 40.028508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-n3q", "Name": "Express Breakfast & Lunch", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.95342, "LONGITUDE": -75.165711, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 63.0, "Total Spend": 93.0, "Total Transactions": 12.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 26.55 }, "geometry": { "type": "Point", "coordinates": [ -75.165711, 39.95342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "Name": "Barclay Prime", "Category": "Restaurants and Other Eating Places", "Address": "237 S 18th St", "LATITUDE": 39.948498, "LONGITUDE": -75.170757, "DATE_RANGE_START": 2022, "Total Visits": 458.0, "Total Visitors": 352.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 67.0, "Total Spend": 61387.0, "Total Transactions": 206.0, "Total Customers": 105.0, "Median Spend per Transaction": 300.0, "Median Spend per Customer": 541.78 }, "geometry": { "type": "Point", "coordinates": [ -75.170757, 39.948498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-73q", "Name": "Byrne's Tavern", "Category": "Restaurants and Other Eating Places", "Address": "3301 Richmond St", "LATITUDE": 39.984147, "LONGITUDE": -75.098754, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 113.0, "POI_CBG": 421010378002.0, "Median Dwell Time": 6.0, "Total Spend": 13844.0, "Total Transactions": 267.0, "Total Customers": 122.0, "Median Spend per Transaction": 48.99, "Median Spend per Customer": 98.92 }, "geometry": { "type": "Point", "coordinates": [ -75.098754, 39.984147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "Name": "Pizzeria Cappelli", "Category": "Restaurants and Other Eating Places", "Address": "209 S 13th St", "LATITUDE": 39.948456, "LONGITUDE": -75.162098, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 56.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 512.0, "Total Spend": 25338.0, "Total Transactions": 1218.0, "Total Customers": 535.0, "Median Spend per Transaction": 17.6, "Median Spend per Customer": 37.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162098, 39.948456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm4-f2k", "Name": "17 Snyder Chinese", "Category": "Restaurants and Other Eating Places", "Address": "2100 S 17th St", "LATITUDE": 39.924907, "LONGITUDE": -75.174741, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 1.0, "Total Spend": 2690.0, "Total Transactions": 134.0, "Total Customers": 45.0, "Median Spend per Transaction": 17.93, "Median Spend per Customer": 36.13 }, "geometry": { "type": "Point", "coordinates": [ -75.174741, 39.924907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "Name": "Angelo's Pizza House", "Category": "Restaurants and Other Eating Places", "Address": "3901 Frankford Ave", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 23.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 267.0, "Total Spend": 977.0, "Total Transactions": 73.0, "Total Customers": 24.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 34.13 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "Name": "Stateside", "Category": "Restaurants and Other Eating Places", "Address": "1536 E Passyunk Ave", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 24.0, "Total Spend": 17431.0, "Total Transactions": 361.0, "Total Customers": 172.0, "Median Spend per Transaction": 35.36, "Median Spend per Customer": 73.2 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-pjv", "Name": "Murph's Bar", "Category": "Restaurants and Other Eating Places", "Address": "202 E Girard Ave", "LATITUDE": 39.968904, "LONGITUDE": -75.133385, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 72.0, "Total Spend": 780.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 202.5, "Median Spend per Customer": 223.75 }, "geometry": { "type": "Point", "coordinates": [ -75.133385, 39.968904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-7h5", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2301 N 29th St", "LATITUDE": 39.991208, "LONGITUDE": -75.177977, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 37.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 7.0, "Total Spend": 284.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 23.97, "Median Spend per Customer": 28.36 }, "geometry": { "type": "Point", "coordinates": [ -75.177977, 39.991208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pm4-2x5", "Name": "Stadium Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2400 S 10th St", "LATITUDE": 39.919559, "LONGITUDE": -75.163925, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 38.0, "POI_CBG": 421010040021.0, "Median Dwell Time": 976.0, "Total Spend": 2884.0, "Total Transactions": 71.0, "Total Customers": 31.0, "Median Spend per Transaction": 35.29, "Median Spend per Customer": 64.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163925, 39.919559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmd-xt9", "Name": "Cava Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "2007 Washington Ave", "LATITUDE": 39.939271, "LONGITUDE": -75.176627, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 101.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 206.0, "Total Spend": 131521.0, "Total Transactions": 211.0, "Total Customers": 47.0, "Median Spend per Transaction": 145.26, "Median Spend per Customer": 356.52 }, "geometry": { "type": "Point", "coordinates": [ -75.176627, 39.939271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "31 Snyder Ave", "LATITUDE": 39.921808, "LONGITUDE": -75.146286, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 160.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 2991.0, "Total Transactions": 127.0, "Total Customers": 117.0, "Median Spend per Transaction": 21.57, "Median Spend per Customer": 23.14 }, "geometry": { "type": "Point", "coordinates": [ -75.146286, 39.921808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5601 Vine St", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2022, "Total Visits": 361.0, "Total Visitors": 237.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 3.0, "Total Spend": 8962.0, "Total Transactions": 781.0, "Total Customers": 526.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "Name": "Station Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9319 Krewstown Rd", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 113.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 120.0, "Total Spend": 3645.0, "Total Transactions": 164.0, "Total Customers": 64.0, "Median Spend per Transaction": 17.02, "Median Spend per Customer": 50.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5200 Woodland Ave", "LATITUDE": 39.938259, "LONGITUDE": -75.21557, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 174.0, "POI_CBG": 421010074005.0, "Median Dwell Time": 4.0, "Total Spend": 6705.0, "Total Transactions": 359.0, "Total Customers": 319.0, "Median Spend per Transaction": 14.34, "Median Spend per Customer": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.21557, 39.938259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914447, "LONGITUDE": -75.156842, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 71.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 57.0, "Total Spend": 742.0, "Total Transactions": 54.0, "Total Customers": 51.0, "Median Spend per Transaction": 11.59, "Median Spend per Customer": 12.01 }, "geometry": { "type": "Point", "coordinates": [ -75.156842, 39.914447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfx-kmk", "Name": "Tsaocaa", "Category": "Restaurants and Other Eating Places", "Address": "4415 Main St", "LATITUDE": 40.02624, "LONGITUDE": -75.225272, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 73.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 9.0, "Total Spend": 2201.0, "Total Transactions": 200.0, "Total Customers": 96.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 15.78 }, "geometry": { "type": "Point", "coordinates": [ -75.225272, 40.02624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 10th St", "LATITUDE": 39.931641, "LONGITUDE": -75.160608, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 103.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 4.0, "Total Spend": 4688.0, "Total Transactions": 638.0, "Total Customers": 317.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.160608, 39.931641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8f-djv", "Name": "Kim's Market", "Category": "Grocery Stores", "Address": "4708 Oxford Ave", "LATITUDE": 40.017031, "LONGITUDE": -75.083994, "DATE_RANGE_START": 2022, "Total Visits": 463.0, "Total Visitors": 287.0, "POI_CBG": 421010300006.0, "Median Dwell Time": 5.0, "Total Spend": 97.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.91, "Median Spend per Customer": 27.82 }, "geometry": { "type": "Point", "coordinates": [ -75.083994, 40.017031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "2047 Cottman Ave", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 61.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 6.0, "Total Spend": 1585.0, "Total Transactions": 17.0, "Total Customers": 16.0, "Median Spend per Transaction": 54.99, "Median Spend per Customer": 54.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "Name": "10 Spot/MadRag", "Category": "Clothing Stores", "Address": "2250 W Oregon Ave", "LATITUDE": 39.917816, "LONGITUDE": -75.185164, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 134.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 25.0, "Total Spend": 16709.0, "Total Transactions": 472.0, "Total Customers": 376.0, "Median Spend per Transaction": 25.98, "Median Spend per Customer": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -75.185164, 39.917816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "Name": "Nautica", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087648, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 2530.0, "Total Transactions": 61.0, "Total Customers": 47.0, "Median Spend per Transaction": 37.11, "Median Spend per Customer": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-92k", "Name": "LIDS", "Category": "Clothing Stores", "Address": "901 Market St Unit C162", "LATITUDE": 39.951715, "LONGITUDE": -75.155788, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 2510.0, "Total Transactions": 47.0, "Total Customers": 45.0, "Median Spend per Transaction": 41.99, "Median Spend per Customer": 41.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155788, 39.951715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-d5f", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3141 Frankford Ave # 59", "LATITUDE": 39.992273, "LONGITUDE": -75.110947, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 82.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 264.0, "Total Spend": 116.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 4.35, "Median Spend per Customer": 5.29 }, "geometry": { "type": "Point", "coordinates": [ -75.110947, 39.992273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-835", "Name": "R&C Food Market", "Category": "Specialty Food Stores", "Address": "736 E Tioga St", "LATITUDE": 40.001226, "LONGITUDE": -75.115072, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 98.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 89.0, "Total Spend": 13.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 1.88, "Median Spend per Customer": 3.75 }, "geometry": { "type": "Point", "coordinates": [ -75.115072, 40.001226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-k75", "Name": "Angela's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "9918 Roosevelt Blvd", "LATITUDE": 40.0945, "LONGITUDE": -75.018316, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 70.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 2.0, "Total Spend": 1582.0, "Total Transactions": 92.0, "Total Customers": 52.0, "Median Spend per Transaction": 13.42, "Median Spend per Customer": 26.79 }, "geometry": { "type": "Point", "coordinates": [ -75.018316, 40.0945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-djv", "Name": "Pastificio", "Category": "Restaurants and Other Eating Places", "Address": "1528 Packer Ave", "LATITUDE": 39.911498, "LONGITUDE": -75.174639, "DATE_RANGE_START": 2022, "Total Visits": 2436.0, "Total Visitors": 2033.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 51.0, "Total Spend": 14706.0, "Total Transactions": 585.0, "Total Customers": 228.0, "Median Spend per Transaction": 17.62, "Median Spend per Customer": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.174639, 39.911498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1900 Market Street 20th & Market", "LATITUDE": 39.953365, "LONGITUDE": -75.173088, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 376.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 1.0, "Total Spend": 5891.0, "Total Transactions": 726.0, "Total Customers": 448.0, "Median Spend per Transaction": 6.43, "Median Spend per Customer": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.173088, 39.953365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "Name": "Little Pete's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2401 Pennsylvania Ave", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2022, "Total Visits": 1646.0, "Total Visitors": 948.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 185.0, "Total Spend": 3020.0, "Total Transactions": 71.0, "Total Customers": 40.0, "Median Spend per Transaction": 36.68, "Median Spend per Customer": 73.36 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-tgk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "915 Levick St", "LATITUDE": 40.045215, "LONGITUDE": -75.086673, "DATE_RANGE_START": 2022, "Total Visits": 1469.0, "Total Visitors": 1113.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 31.0, "Total Spend": 6380.0, "Total Transactions": 380.0, "Total Customers": 301.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 16.93 }, "geometry": { "type": "Point", "coordinates": [ -75.086673, 40.045215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-6p9", "Name": "Pret A Manger", "Category": "Restaurants and Other Eating Places", "Address": "30 S 15th St", "LATITUDE": 39.951392, "LONGITUDE": -75.16582, "DATE_RANGE_START": 2022, "Total Visits": 9204.0, "Total Visitors": 6356.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 20.0, "Total Spend": 2457.0, "Total Transactions": 225.0, "Total Customers": 127.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.16582, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-n5z", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St", "LATITUDE": 39.954145, "LONGITUDE": -75.201008, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 293.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 61.0, "Total Spend": 3768.0, "Total Transactions": 176.0, "Total Customers": 155.0, "Median Spend per Transaction": 15.73, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.201008, 39.954145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2440 Grant Ave", "LATITUDE": 40.079147, "LONGITUDE": -75.02653, "DATE_RANGE_START": 2022, "Total Visits": 456.0, "Total Visitors": 375.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 12083.0, "Total Transactions": 693.0, "Total Customers": 538.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.02653, 40.079147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7520 City Ave", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 211.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 2.0, "Total Spend": 11782.0, "Total Transactions": 1240.0, "Total Customers": 620.0, "Median Spend per Transaction": 8.4, "Median Spend per Customer": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2022, "Total Visits": 279.0, "Total Visitors": 230.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 3.0, "Total Spend": 5771.0, "Total Transactions": 514.0, "Total Customers": 256.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 9.59 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-sdv", "Name": "Independence Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 S Independence Mall W", "LATITUDE": 39.950376, "LONGITUDE": -75.15103, "DATE_RANGE_START": 2022, "Total Visits": 1281.0, "Total Visitors": 1108.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 20.0, "Total Spend": 29496.0, "Total Transactions": 1153.0, "Total Customers": 514.0, "Median Spend per Transaction": 18.5, "Median Spend per Customer": 41.2 }, "geometry": { "type": "Point", "coordinates": [ -75.15103, 39.950376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnw-nh5", "Name": "Sancho Pistolas", "Category": "Restaurants and Other Eating Places", "Address": "19 W Girard Ave", "LATITUDE": 39.969014, "LONGITUDE": -75.135132, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 80.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 39.0, "Total Spend": 2904.0, "Total Transactions": 49.0, "Total Customers": 21.0, "Median Spend per Transaction": 56.69, "Median Spend per Customer": 113.92 }, "geometry": { "type": "Point", "coordinates": [ -75.135132, 39.969014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-v75", "Name": "JJ Bootleggers", "Category": "Restaurants and Other Eating Places", "Address": "35 S 2nd St", "LATITUDE": 39.94896, "LONGITUDE": -75.143844, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 63.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 60007.0, "Total Transactions": 2355.0, "Total Customers": 653.0, "Median Spend per Transaction": 18.14, "Median Spend per Customer": 65.32 }, "geometry": { "type": "Point", "coordinates": [ -75.143844, 39.94896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4201 N Marshall St", "LATITUDE": 40.015701, "LONGITUDE": -75.13771, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 118.0, "POI_CBG": 421010197004.0, "Median Dwell Time": 5.0, "Total Spend": 21505.0, "Total Transactions": 251.0, "Total Customers": 167.0, "Median Spend per Transaction": 33.42, "Median Spend per Customer": 42.64 }, "geometry": { "type": "Point", "coordinates": [ -75.13771, 40.015701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2524 Aramingo Ave", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 96.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 4.0, "Total Spend": 13620.0, "Total Transactions": 256.0, "Total Customers": 190.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-syv", "Name": "Snyder Supermarket", "Category": "Grocery Stores", "Address": "2700 Snyder Ave", "LATITUDE": 39.926819, "LONGITUDE": -75.191169, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 54.0, "POI_CBG": 421010036003.0, "Median Dwell Time": 3.0, "Total Spend": 186.0, "Total Transactions": 16.0, "Total Customers": 7.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.191169, 39.926819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pj2-d9z", "Name": "T&S Express Market", "Category": "Automobile Dealers", "Address": "1200 E Hunting Park Ave", "LATITUDE": 40.010871, "LONGITUDE": -75.104013, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 59.0, "POI_CBG": 421010191002.0, "Median Dwell Time": 3.0, "Total Spend": 269.0, "Total Transactions": 38.0, "Total Customers": 9.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.104013, 40.010871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "537 Adams Ave", "LATITUDE": 40.038428, "LONGITUDE": -75.106684, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 87.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 6.0, "Total Spend": 28464.0, "Total Transactions": 643.0, "Total Customers": 300.0, "Median Spend per Transaction": 21.57, "Median Spend per Customer": 36.61 }, "geometry": { "type": "Point", "coordinates": [ -75.106684, 40.038428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "912 Walnut St # 916", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2022, "Total Visits": 1066.0, "Total Visitors": 594.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 11.0, "Total Spend": 51374.0, "Total Transactions": 5976.0, "Total Customers": 2615.0, "Median Spend per Transaction": 7.29, "Median Spend per Customer": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8144 Castor Ave # 8152", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2022, "Total Visits": 1504.0, "Total Visitors": 787.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 3.0, "Total Spend": 137882.0, "Total Transactions": 7350.0, "Total Customers": 3331.0, "Median Spend per Transaction": 11.16, "Median Spend per Customer": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "Name": "S and J Seafood", "Category": "Specialty Food Stores", "Address": "713 S 52nd St", "LATITUDE": 39.948539, "LONGITUDE": -75.227093, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 52.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 8.0, "Total Spend": 4794.0, "Total Transactions": 146.0, "Total Customers": 63.0, "Median Spend per Transaction": 30.77, "Median Spend per Customer": 55.44 }, "geometry": { "type": "Point", "coordinates": [ -75.227093, 39.948539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3300 10 South Broad Street Philadelphia", "LATITUDE": 39.909224, "LONGITUDE": -75.174004, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 490.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 4.0, "Total Spend": 6588.0, "Total Transactions": 429.0, "Total Customers": 258.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 12.82 }, "geometry": { "type": "Point", "coordinates": [ -75.174004, 39.909224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2320 26 Fairmount Avenue Philadelphia", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2022, "Total Visits": 547.0, "Total Visitors": 416.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 6.0, "Total Spend": 19001.0, "Total Transactions": 1099.0, "Total Customers": 646.0, "Median Spend per Transaction": 11.46, "Median Spend per Customer": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@63s-dvp-bff", "Name": "Total Beauty Supplies", "Category": "Health and Personal Care Stores", "Address": "5746 Baltimore Ave", "LATITUDE": 39.945299, "LONGITUDE": -75.238685, "DATE_RANGE_START": 2022, "Total Visits": 1207.0, "Total Visitors": 805.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 7.0, "Total Spend": 8046.0, "Total Transactions": 274.0, "Total Customers": 146.0, "Median Spend per Transaction": 21.56, "Median Spend per Customer": 36.94 }, "geometry": { "type": "Point", "coordinates": [ -75.238685, 39.945299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "Name": "Bindlestiff Books", "Category": "Book Stores and News Dealers", "Address": "4530 Baltimore Ave", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010078005.0, "Median Dwell Time": null, "Total Spend": 454.0, "Total Transactions": 23.0, "Total Customers": 14.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8n-3nq", "Name": "Perrys Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "4221 Benner St", "LATITUDE": 40.023149, "LONGITUDE": -75.061553, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 12.0, "POI_CBG": 421010319002.0, "Median Dwell Time": 39.0, "Total Spend": 1446.0, "Total Transactions": 71.0, "Total Customers": 17.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061553, 40.023149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-zmk", "Name": "Touch of Gold", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "640 South St Ste A", "LATITUDE": 39.941921, "LONGITUDE": -75.153483, "DATE_RANGE_START": 2022, "Total Visits": 725.0, "Total Visitors": 598.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 30.0, "Total Spend": 2258.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 108.0, "Median Spend per Customer": 648.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153483, 39.941921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phz-6c5", "Name": "L & M Food Market", "Category": "Grocery Stores", "Address": "4863 D St", "LATITUDE": 40.0235, "LONGITUDE": -75.115742, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010289023.0, "Median Dwell Time": 11.0, "Total Spend": 57.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115742, 40.0235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "Name": "Tony's Luke", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 5.0, "Total Spend": 9070.0, "Total Transactions": 314.0, "Total Customers": 171.0, "Median Spend per Transaction": 22.95, "Median Spend per Customer": 39.42 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p74-cyv", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "8016 Frankford Ave", "LATITUDE": 40.041879, "LONGITUDE": -75.027519, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 17.0, "POI_CBG": 421010331022.0, "Median Dwell Time": 578.0, "Total Spend": 301.0, "Total Transactions": 12.0, "Total Customers": 9.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.027519, 40.041879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p75-9pv", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "8423 8445 Frankford Ave Ste A", "LATITUDE": 40.044008, "LONGITUDE": -75.017305, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 77.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 4.0, "Total Spend": 1846.0, "Total Transactions": 26.0, "Total Customers": 14.0, "Median Spend per Transaction": 61.55, "Median Spend per Customer": 123.1 }, "geometry": { "type": "Point", "coordinates": [ -75.017305, 40.044008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8m-snq", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "5223 Frankford Ave", "LATITUDE": 40.022472, "LONGITUDE": -75.077322, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 85.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 5.0, "Total Spend": 1348.0, "Total Transactions": 35.0, "Total Customers": 28.0, "Median Spend per Transaction": 26.96, "Median Spend per Customer": 37.71 }, "geometry": { "type": "Point", "coordinates": [ -75.077322, 40.022472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-zj9", "Name": "Arch Gourmet", "Category": "Grocery Stores", "Address": "2200 Arch St", "LATITUDE": 39.955807, "LONGITUDE": -75.176416, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 1.0, "Total Spend": 1087.0, "Total Transactions": 30.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176416, 39.955807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-jjv", "Name": "Allen Edmonds", "Category": "Shoe Stores", "Address": "1736 Chestnut St", "LATITUDE": 39.9515, "LONGITUDE": -75.170237, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 542.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 3.0, "Total Spend": 2069.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 322.96, "Median Spend per Customer": 322.96 }, "geometry": { "type": "Point", "coordinates": [ -75.170237, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-223@628-pnx-7qz", "Name": "Dolce & Caffe", "Category": "Restaurants and Other Eating Places", "Address": "708 N 2nd St", "LATITUDE": 39.962218, "LONGITUDE": -75.141391, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 13.0, "Total Spend": 7016.0, "Total Transactions": 603.0, "Total Customers": 213.0, "Median Spend per Transaction": 9.83, "Median Spend per Customer": 23.54 }, "geometry": { "type": "Point", "coordinates": [ -75.141391, 39.962218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6430 Castor Ave", "LATITUDE": 40.040673, "LONGITUDE": -75.076835, "DATE_RANGE_START": 2022, "Total Visits": 331.0, "Total Visitors": 233.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 6.0, "Total Spend": 744.0, "Total Transactions": 105.0, "Total Customers": 80.0, "Median Spend per Transaction": 6.28, "Median Spend per Customer": 8.06 }, "geometry": { "type": "Point", "coordinates": [ -75.076835, 40.040673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgm-3qz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4168 Ridge Ave", "LATITUDE": 40.008377, "LONGITUDE": -75.193545, "DATE_RANGE_START": 2022, "Total Visits": 213.0, "Total Visitors": 188.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 2.0, "Total Spend": 2604.0, "Total Transactions": 246.0, "Total Customers": 157.0, "Median Spend per Transaction": 7.43, "Median Spend per Customer": 10.1 }, "geometry": { "type": "Point", "coordinates": [ -75.193545, 40.008377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7w-6zf", "Name": "Friend's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "7632 Castor Ave", "LATITUDE": 40.057282, "LONGITUDE": -75.060843, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 19.0, "POI_CBG": 421010336003.0, "Median Dwell Time": 19.0, "Total Spend": 331.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 47.5, "Median Spend per Customer": 95.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060843, 40.057282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj2-94v", "Name": "Classic Pizza", "Category": "Restaurants and Other Eating Places", "Address": "748 E Tioga St", "LATITUDE": 40.001175, "LONGITUDE": -75.114716, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 21.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 1.0, "Total Spend": 829.0, "Total Transactions": 49.0, "Total Customers": 19.0, "Median Spend per Transaction": 15.52, "Median Spend per Customer": 37.96 }, "geometry": { "type": "Point", "coordinates": [ -75.114716, 40.001175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "Name": "Christies Deli", "Category": "Restaurants and Other Eating Places", "Address": "1822 Spring Garden St", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 12.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 388.0, "Total Spend": 12849.0, "Total Transactions": 847.0, "Total Customers": 287.0, "Median Spend per Transaction": 13.48, "Median Spend per Customer": 30.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "Name": "Overbrook Pizza Shop", "Category": "Restaurants and Other Eating Places", "Address": "2099 N 63rd St", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 3.0, "Total Spend": 6087.0, "Total Transactions": 244.0, "Total Customers": 117.0, "Median Spend per Transaction": 22.36, "Median Spend per Customer": 40.16 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "6863 Bustleton Ave", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010314022.0, "Median Dwell Time": 1.0, "Total Spend": 6703.0, "Total Transactions": 125.0, "Total Customers": 57.0, "Median Spend per Transaction": 42.07, "Median Spend per Customer": 84.38 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-c3q", "Name": "Yarnphoria", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1020 Pine St", "LATITUDE": 39.944703, "LONGITUDE": -75.159061, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 9.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 148.0, "Total Spend": 1286.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 47.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159061, 39.944703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-p8m-cnq", "Name": "Citizens Beer", "Category": "Restaurants and Other Eating Places", "Address": "5500 Torresdale Ave", "LATITUDE": 40.014895, "LONGITUDE": -75.065047, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010298002.0, "Median Dwell Time": 1.0, "Total Spend": 196.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 56.17, "Median Spend per Customer": 56.17 }, "geometry": { "type": "Point", "coordinates": [ -75.065047, 40.014895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "Name": "Champ's Diner", "Category": "Restaurants and Other Eating Places", "Address": "1539 Cecil B Moore Ave", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 51.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 30.0, "Total Spend": 3947.0, "Total Transactions": 206.0, "Total Customers": 98.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "Name": "Mr Sushi", "Category": "Restaurants and Other Eating Places", "Address": "7324 Oxford Ave", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 52.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 31.0, "Total Spend": 5393.0, "Total Transactions": 155.0, "Total Customers": 64.0, "Median Spend per Transaction": 24.79, "Median Spend per Customer": 66.36 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "Name": "Museum Deli", "Category": "Restaurants and Other Eating Places", "Address": "333 Spring Garden St", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 38.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 3.0, "Total Spend": 4996.0, "Total Transactions": 387.0, "Total Customers": 136.0, "Median Spend per Transaction": 11.92, "Median Spend per Customer": 23.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pm4-pn5", "Name": "Good's Vintage", "Category": "Used Merchandise Stores", "Address": "1022 S 9th St", "LATITUDE": 39.93696, "LONGITUDE": -75.158415, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 40.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 131.0, "Total Spend": 971.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 86.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.93696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "Name": "Royal Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4200 Baltimore Ave", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 1.0, "Total Spend": 3635.0, "Total Transactions": 179.0, "Total Customers": 45.0, "Median Spend per Transaction": 15.4, "Median Spend per Customer": 47.42 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-4vz", "Name": "Cafe Tinto", "Category": "Restaurants and Other Eating Places", "Address": "143 E Wyoming Ave", "LATITUDE": 40.02153, "LONGITUDE": -75.122622, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 40.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 2.0, "Total Spend": 3778.0, "Total Transactions": 272.0, "Total Customers": 84.0, "Median Spend per Transaction": 9.91, "Median Spend per Customer": 39.49 }, "geometry": { "type": "Point", "coordinates": [ -75.122622, 40.02153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-xqz", "Name": "Brother's Food Market", "Category": "Grocery Stores", "Address": "3516 Germantown Ave", "LATITUDE": 40.006485, "LONGITUDE": -75.150169, "DATE_RANGE_START": 2022, "Total Visits": 148.0, "Total Visitors": 42.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 296.0, "Total Spend": 1331.0, "Total Transactions": 103.0, "Total Customers": 30.0, "Median Spend per Transaction": 10.49, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150169, 40.006485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-tgk", "Name": "Angelina's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "327 W York St", "LATITUDE": 39.987407, "LONGITUDE": -75.139218, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010163004.0, "Median Dwell Time": null, "Total Spend": 894.0, "Total Transactions": 63.0, "Total Customers": 28.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139218, 39.987407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@63s-dvy-xwk", "Name": "Lil' Pop Shop", "Category": "Restaurants and Other Eating Places", "Address": "265 S 44th St", "LATITUDE": 39.953164, "LONGITUDE": -75.210265, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 14.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 30.0, "Total Spend": 3896.0, "Total Transactions": 368.0, "Total Customers": 171.0, "Median Spend per Transaction": 7.74, "Median Spend per Customer": 15.73 }, "geometry": { "type": "Point", "coordinates": [ -75.210265, 39.953164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-7qz", "Name": "Wax Downtown", "Category": "Specialty Food Stores", "Address": "740 Sansom St Ste 505F", "LATITUDE": 39.948559, "LONGITUDE": -75.153964, "DATE_RANGE_START": 2022, "Total Visits": 1821.0, "Total Visitors": 1206.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 122.0, "Total Spend": 2235.0, "Total Transactions": 31.0, "Total Customers": 17.0, "Median Spend per Transaction": 72.0, "Median Spend per Customer": 136.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153964, 39.948559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945313, "LONGITUDE": -75.238538, "DATE_RANGE_START": 2022, "Total Visits": 542.0, "Total Visitors": 375.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 6.0, "Total Spend": 1994.0, "Total Transactions": 202.0, "Total Customers": 162.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.238538, 39.945313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j7q", "Name": "Boyds Philadelphia", "Category": "Clothing Stores", "Address": "1818 Chestnut St", "LATITUDE": 39.951667, "LONGITUDE": -75.171279, "DATE_RANGE_START": 2022, "Total Visits": 350.0, "Total Visitors": 223.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 149.0, "Total Spend": 61790.0, "Total Transactions": 51.0, "Total Customers": 26.0, "Median Spend per Transaction": 811.0, "Median Spend per Customer": 1580.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171279, 39.951667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-jd9", "Name": "Watch Co", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952246, "LONGITUDE": -75.168308, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 78.0, "Total Spend": 1298.0, "Total Transactions": 33.0, "Total Customers": 19.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168308, 39.952246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgk-z9f", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "3977 Ford Rd", "LATITUDE": 39.999874, "LONGITUDE": -75.209033, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010122041.0, "Median Dwell Time": 3.0, "Total Spend": 1603.0, "Total Transactions": 91.0, "Total Customers": 33.0, "Median Spend per Transaction": 9.84, "Median Spend per Customer": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209033, 39.999874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "Name": "John's Place", "Category": "Restaurants and Other Eating Places", "Address": "1529 Spring Garden St", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 10.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 26.0, "Total Spend": 1086.0, "Total Transactions": 75.0, "Total Customers": 31.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 24.01 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "Name": "Oregon Express", "Category": "Restaurants and Other Eating Places", "Address": "2700 S Marvine St", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010372001.0, "Median Dwell Time": 87.0, "Total Spend": 1023.0, "Total Transactions": 68.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.22, "Median Spend per Customer": 24.44 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044956, "LONGITUDE": -75.143877, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 1.0, "Total Spend": 3645.0, "Total Transactions": 139.0, "Total Customers": 103.0, "Median Spend per Transaction": 20.84, "Median Spend per Customer": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.143877, 40.044956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "2946 Island Ave", "LATITUDE": 39.899825, "LONGITUDE": -75.241379, "DATE_RANGE_START": 2022, "Total Visits": 584.0, "Total Visitors": 397.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 20.0, "Total Spend": 4756.0, "Total Transactions": 291.0, "Total Customers": 150.0, "Median Spend per Transaction": 14.35, "Median Spend per Customer": 28.69 }, "geometry": { "type": "Point", "coordinates": [ -75.241379, 39.899825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-grk", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "1755 N 13th St", "LATITUDE": 39.979416, "LONGITUDE": -75.154998, "DATE_RANGE_START": 2022, "Total Visits": 1706.0, "Total Visitors": 1289.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 152.0, "Total Spend": 818.0, "Total Transactions": 52.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.41, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.154998, 39.979416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5945 Woodland Ave", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2022, "Total Visits": 521.0, "Total Visitors": 371.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 4.0, "Total Spend": 9292.0, "Total Transactions": 786.0, "Total Customers": 491.0, "Median Spend per Transaction": 9.57, "Median Spend per Customer": 12.31 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg9-59f", "Name": "Charlies Country Ribs", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2528 W Diamond St", "LATITUDE": 39.98708, "LONGITUDE": -75.175955, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010151021.0, "Median Dwell Time": null, "Total Spend": 156.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.44, "Median Spend per Customer": 44.88 }, "geometry": { "type": "Point", "coordinates": [ -75.175955, 39.98708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pj5-t9z", "Name": "Las Rancheritas", "Category": "Restaurants and Other Eating Places", "Address": "3956 N 5th St", "LATITUDE": 40.011864, "LONGITUDE": -75.136101, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010198006.0, "Median Dwell Time": 43.0, "Total Spend": 654.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 36.5, "Median Spend per Customer": 73.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136101, 40.011864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfy-wkz", "Name": "Dawson Street Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 Dawson St", "LATITUDE": 40.018548, "LONGITUDE": -75.21277, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 10.0, "POI_CBG": 421010209004.0, "Median Dwell Time": 30.0, "Total Spend": 8548.0, "Total Transactions": 322.0, "Total Customers": 103.0, "Median Spend per Transaction": 22.96, "Median Spend per Customer": 50.52 }, "geometry": { "type": "Point", "coordinates": [ -75.21277, 40.018548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-sbk", "Name": "King Seafood", "Category": "Specialty Food Stores", "Address": "4429 N American St", "LATITUDE": 40.018597, "LONGITUDE": -75.129931, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 7.0, "Total Spend": 1731.0, "Total Transactions": 21.0, "Total Customers": 7.0, "Median Spend per Transaction": 69.91, "Median Spend per Customer": 139.82 }, "geometry": { "type": "Point", "coordinates": [ -75.129931, 40.018597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg2-4qf", "Name": "Phu Fha Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "355 Lyceum Ave", "LATITUDE": 40.029908, "LONGITUDE": -75.218798, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010213004.0, "Median Dwell Time": 7.0, "Total Spend": 1398.0, "Total Transactions": 35.0, "Total Customers": 17.0, "Median Spend per Transaction": 43.04, "Median Spend per Customer": 86.07 }, "geometry": { "type": "Point", "coordinates": [ -75.218798, 40.029908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-wrk", "Name": "Lulu Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4508 Walnut St", "LATITUDE": 39.955024, "LONGITUDE": -75.212218, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 14.0, "POI_CBG": 421010086012.0, "Median Dwell Time": 460.0, "Total Spend": 229.0, "Total Transactions": 14.0, "Total Customers": 9.0, "Median Spend per Transaction": 15.87, "Median Spend per Customer": 32.96 }, "geometry": { "type": "Point", "coordinates": [ -75.212218, 39.955024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "3914 Lancaster Ave", "LATITUDE": 39.962152, "LONGITUDE": -75.2011, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010108004.0, "Median Dwell Time": 6.0, "Total Spend": 1591.0, "Total Transactions": 157.0, "Total Customers": 66.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.2011, 39.962152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dw9-835", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave # E8A", "LATITUDE": 39.878257, "LONGITUDE": -75.238877, "DATE_RANGE_START": 2022, "Total Visits": 1721.0, "Total Visitors": 1625.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 20.0, "Total Spend": 10806.0, "Total Transactions": 777.0, "Total Customers": 726.0, "Median Spend per Transaction": 12.07, "Median Spend per Customer": 12.41 }, "geometry": { "type": "Point", "coordinates": [ -75.238877, 39.878257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "Name": "Hoagie Factory", "Category": "Restaurants and Other Eating Places", "Address": "2121 72nd Ave", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 30.0, "POI_CBG": 421010266007.0, "Median Dwell Time": 366.0, "Total Spend": 7570.0, "Total Transactions": 430.0, "Total Customers": 101.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 39.89 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgb-389", "Name": "Callowhill Greens", "Category": "Restaurants and Other Eating Places", "Address": "1800 Callowhill St", "LATITUDE": 39.960219, "LONGITUDE": -75.168614, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 65.0, "Total Spend": 1124.0, "Total Transactions": 68.0, "Total Customers": 35.0, "Median Spend per Transaction": 13.24, "Median Spend per Customer": 26.48 }, "geometry": { "type": "Point", "coordinates": [ -75.168614, 39.960219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4390 Richmond St", "LATITUDE": 39.997473, "LONGITUDE": -75.074081, "DATE_RANGE_START": 2022, "Total Visits": 279.0, "Total Visitors": 202.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 3.0, "Total Spend": 10618.0, "Total Transactions": 458.0, "Total Customers": 207.0, "Median Spend per Transaction": 18.91, "Median Spend per Customer": 29.54 }, "geometry": { "type": "Point", "coordinates": [ -75.074081, 39.997473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-jgk", "Name": "The Foto Club", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3743 Frankford Ave", "LATITUDE": 40.000866, "LONGITUDE": -75.097152, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 322.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 75.0, "Total Spend": 8156.0, "Total Transactions": 375.0, "Total Customers": 103.0, "Median Spend per Transaction": 19.29, "Median Spend per Customer": 50.88 }, "geometry": { "type": "Point", "coordinates": [ -75.097152, 40.000866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "Name": "Lombard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "542 Lombard St", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010010012.0, "Median Dwell Time": null, "Total Spend": 2316.0, "Total Transactions": 312.0, "Total Customers": 105.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "Name": "All The Way Live", "Category": "Restaurants and Other Eating Places", "Address": "6108 Germantown Ave", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 1.0, "Total Spend": 1569.0, "Total Transactions": 51.0, "Total Customers": 19.0, "Median Spend per Transaction": 26.83, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjf-jy9", "Name": "Bredenbeck's Bakery & Ice Cream Parlor", "Category": "Restaurants and Other Eating Places", "Address": "8126 Germantown Ave", "LATITUDE": 40.072481, "LONGITUDE": -75.202392, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 2.0, "Total Spend": 34528.0, "Total Transactions": 1436.0, "Total Customers": 592.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.202392, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4813 Tacony St # 25", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2022, "Total Visits": 2139.0, "Total Visitors": 1509.0, "POI_CBG": 421010380002.0, "Median Dwell Time": 3.0, "Total Spend": 20511.0, "Total Transactions": 758.0, "Total Customers": 497.0, "Median Spend per Transaction": 21.99, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-6p9", "Name": "Samsun Footwear", "Category": "Shoe Stores", "Address": "1514 Chestnut St", "LATITUDE": 39.950889, "LONGITUDE": -75.166442, "DATE_RANGE_START": 2022, "Total Visits": 4990.0, "Total Visitors": 3734.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 44.0, "Total Spend": 383.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 54.99, "Median Spend per Customer": 109.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166442, 39.950889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvr-fzz", "Name": "Lucky Star", "Category": "Restaurants and Other Eating Places", "Address": "6727 Elmwood Ave", "LATITUDE": 39.920022, "LONGITUDE": -75.233823, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 60.0, "Total Spend": 539.0, "Total Transactions": 19.0, "Total Customers": 12.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233823, 39.920022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmd-zcq", "Name": "Los Camaradas", "Category": "Restaurants and Other Eating Places", "Address": "918 S 22nd St", "LATITUDE": 39.940826, "LONGITUDE": -75.179816, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010013003.0, "Median Dwell Time": 80.0, "Total Spend": 13112.0, "Total Transactions": 202.0, "Total Customers": 105.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 91.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179816, 39.940826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pft-ygk", "Name": "Chubbys Steaks", "Category": "Restaurants and Other Eating Places", "Address": "5826 Henry Ave", "LATITUDE": 40.029131, "LONGITUDE": -75.206304, "DATE_RANGE_START": 2022, "Total Visits": 408.0, "Total Visitors": 343.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 12.0, "Total Spend": 21239.0, "Total Transactions": 742.0, "Total Customers": 382.0, "Median Spend per Transaction": 25.08, "Median Spend per Customer": 44.15 }, "geometry": { "type": "Point", "coordinates": [ -75.206304, 40.029131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-8jv", "Name": "The Nile Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6008 Germantown Ave", "LATITUDE": 40.039401, "LONGITUDE": -75.177975, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 214.0, "Total Spend": 398.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 57.08, "Median Spend per Customer": 114.16 }, "geometry": { "type": "Point", "coordinates": [ -75.177975, 40.039401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "Name": "Nom Nom Ramen", "Category": "Restaurants and Other Eating Places", "Address": "20 S 18th St", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 146.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 2989.0, "Total Transactions": 66.0, "Total Customers": 31.0, "Median Spend per Transaction": 35.84, "Median Spend per Customer": 73.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pmb-djv", "Name": "Hawthornes Biercafe", "Category": "Restaurants and Other Eating Places", "Address": "738 S 11th St", "LATITUDE": 39.941057, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 54.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 39.0, "Total Spend": 370.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 53.08, "Median Spend per Customer": 106.15 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.941057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pj6-rx5", "Name": "Bravo's Pizza Seafood House", "Category": "Restaurants and Other Eating Places", "Address": "5734 N 2nd St", "LATITUDE": 40.038349, "LONGITUDE": -75.124135, "DATE_RANGE_START": 2022, "Total Visits": 249.0, "Total Visitors": 176.0, "POI_CBG": 421010274023.0, "Median Dwell Time": 52.0, "Total Spend": 443.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 127.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124135, 40.038349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-9cq", "Name": "White Dog Cafe", "Category": "Restaurants and Other Eating Places", "Address": "3420 Sansom St", "LATITUDE": 39.953556, "LONGITUDE": -75.192905, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 50.0, "Total Spend": 9627.0, "Total Transactions": 132.0, "Total Customers": 82.0, "Median Spend per Transaction": 52.19, "Median Spend per Customer": 98.16 }, "geometry": { "type": "Point", "coordinates": [ -75.192905, 39.953556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7yv", "Name": "Hunger Burger", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953665, "LONGITUDE": -75.159753, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 268.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 91.0, "Total Spend": 758.0, "Total Transactions": 40.0, "Total Customers": 23.0, "Median Spend per Transaction": 17.3, "Median Spend per Customer": 33.91 }, "geometry": { "type": "Point", "coordinates": [ -75.159753, 39.953665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "7855 Oxford Ave", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 192.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 5.0, "Total Spend": 7577.0, "Total Transactions": 444.0, "Total Customers": 340.0, "Median Spend per Transaction": 14.1, "Median Spend per Customer": 18.94 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-zmk", "Name": "Colney Deli", "Category": "Restaurants and Other Eating Places", "Address": "5610 N 5th St", "LATITUDE": 40.036792, "LONGITUDE": -75.130653, "DATE_RANGE_START": 2022, "Total Visits": 885.0, "Total Visitors": 420.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 363.0, "Total Spend": 5424.0, "Total Transactions": 274.0, "Total Customers": 87.0, "Median Spend per Transaction": 18.25, "Median Spend per Customer": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -75.130653, 40.036792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-t7q", "Name": "Paprica Modern Mediterranean Grill", "Category": "Restaurants and Other Eating Places", "Address": "811 Sansom St", "LATITUDE": 39.949133, "LONGITUDE": -75.154633, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 99.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 123.0, "Total Spend": 5174.0, "Total Transactions": 89.0, "Total Customers": 44.0, "Median Spend per Transaction": 31.83, "Median Spend per Customer": 92.78 }, "geometry": { "type": "Point", "coordinates": [ -75.154633, 39.949133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7700 Island Ave", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2022, "Total Visits": 395.0, "Total Visitors": 322.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 19492.0, "Total Transactions": 1643.0, "Total Customers": 894.0, "Median Spend per Transaction": 10.22, "Median Spend per Customer": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "Name": "Bassetts Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "45 N 12th St", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 87.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 9592.0, "Total Transactions": 902.0, "Total Customers": 441.0, "Median Spend per Transaction": 8.96, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pp4-r49", "Name": "Pet Supplies Plus", "Category": "Other Miscellaneous Store Retailers", "Address": "2475 Aramingo Ave", "LATITUDE": 39.974037, "LONGITUDE": -75.12038, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 89.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 12.0, "Total Spend": 20706.0, "Total Transactions": 449.0, "Total Customers": 315.0, "Median Spend per Transaction": 34.5, "Median Spend per Customer": 51.24 }, "geometry": { "type": "Point", "coordinates": [ -75.12038, 39.974037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7z-xnq", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "5822 Roosevelt Blvd", "LATITUDE": 40.032765, "LONGITUDE": -75.083361, "DATE_RANGE_START": 2022, "Total Visits": 329.0, "Total Visitors": 254.0, "POI_CBG": 421010312003.0, "Median Dwell Time": 3.0, "Total Spend": 7039.0, "Total Transactions": 545.0, "Total Customers": 366.0, "Median Spend per Transaction": 11.6, "Median Spend per Customer": 14.35 }, "geometry": { "type": "Point", "coordinates": [ -75.083361, 40.032765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-p8n-cnq", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6400 Bustleton Ave", "LATITUDE": 40.036246, "LONGITUDE": -75.070259, "DATE_RANGE_START": 2022, "Total Visits": 1470.0, "Total Visitors": 967.0, "POI_CBG": 421010313003.0, "Median Dwell Time": 3.0, "Total Spend": 80618.0, "Total Transactions": 3418.0, "Total Customers": 1578.0, "Median Spend per Transaction": 15.97, "Median Spend per Customer": 25.83 }, "geometry": { "type": "Point", "coordinates": [ -75.070259, 40.036246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2503 Welsh Rd # 05", "LATITUDE": 40.070297, "LONGITUDE": -75.030572, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 319.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 16277.0, "Total Transactions": 810.0, "Total Customers": 465.0, "Median Spend per Transaction": 13.67, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030572, 40.070297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "Name": "Johns Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "128 W Chelten Ave", "LATITUDE": 40.03316, "LONGITUDE": -75.177034, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 63.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 8.0, "Total Spend": 10203.0, "Total Transactions": 427.0, "Total Customers": 172.0, "Median Spend per Transaction": 14.55, "Median Spend per Customer": 38.82 }, "geometry": { "type": "Point", "coordinates": [ -75.177034, 40.03316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pg4-j9z", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "5627 Germantown Ave # 33", "LATITUDE": 40.035849, "LONGITUDE": -75.174389, "DATE_RANGE_START": 2022, "Total Visits": 786.0, "Total Visitors": 589.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 8.0, "Total Spend": 3744.0, "Total Transactions": 40.0, "Total Customers": 33.0, "Median Spend per Transaction": 69.98, "Median Spend per Customer": 92.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174389, 40.035849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912981, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 64.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 47.0, "Total Spend": 2969.0, "Total Transactions": 37.0, "Total Customers": 31.0, "Median Spend per Transaction": 31.04, "Median Spend per Customer": 39.97 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.912981 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6587 Roosevelt Blvd", "LATITUDE": 40.035295, "LONGITUDE": -75.065039, "DATE_RANGE_START": 2022, "Total Visits": 371.0, "Total Visitors": 289.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 8.0, "Total Spend": 558.0, "Total Transactions": 28.0, "Total Customers": 16.0, "Median Spend per Transaction": 14.33, "Median Spend per Customer": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.065039, 40.035295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-c89", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7970 Dungan Rd # 80", "LATITUDE": 40.068373, "LONGITUDE": -75.068436, "DATE_RANGE_START": 2022, "Total Visits": 1284.0, "Total Visitors": 521.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 3.0, "Total Spend": 7166.0, "Total Transactions": 897.0, "Total Customers": 373.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 10.21 }, "geometry": { "type": "Point", "coordinates": [ -75.068436, 40.068373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmf-kj9", "Name": "Ateethi", "Category": "Restaurants and Other Eating Places", "Address": "2046 Sansom St", "LATITUDE": 39.951075, "LONGITUDE": -75.175107, "DATE_RANGE_START": 2022, "Total Visits": 2063.0, "Total Visitors": 1380.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 90.0, "Total Spend": 583.0, "Total Transactions": 45.0, "Total Customers": 19.0, "Median Spend per Transaction": 7.4, "Median Spend per Customer": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175107, 39.951075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "Name": "Crunchik'n", "Category": "Restaurants and Other Eating Places", "Address": "1428 Cecil B Moore Ave", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2022, "Total Visits": 1357.0, "Total Visitors": 772.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 183.0, "Total Spend": 459.0, "Total Transactions": 21.0, "Total Customers": 9.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "Name": "A Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "135 S 18th St", "LATITUDE": 39.950427, "LONGITUDE": -75.170427, "DATE_RANGE_START": 2022, "Total Visits": 718.0, "Total Visitors": 552.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 63.0, "Total Spend": 21449.0, "Total Transactions": 1179.0, "Total Customers": 495.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 31.96 }, "geometry": { "type": "Point", "coordinates": [ -75.170427, 39.950427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pj6-k4v", "Name": "Pelicana Chicken", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.04453, "LONGITUDE": -75.117658, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 20.0, "Total Spend": 1104.0, "Total Transactions": 21.0, "Total Customers": 9.0, "Median Spend per Transaction": 54.13, "Median Spend per Customer": 160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117658, 40.04453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phd-h89", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "4600 City Ave", "LATITUDE": 40.002639, "LONGITUDE": -75.222769, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 127.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 2.0, "Total Spend": 4508.0, "Total Transactions": 225.0, "Total Customers": 190.0, "Median Spend per Transaction": 15.64, "Median Spend per Customer": 17.25 }, "geometry": { "type": "Point", "coordinates": [ -75.222769, 40.002639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pmb-vfz", "Name": "Liberty Bell Food Market", "Category": "Grocery Stores", "Address": "29 S 2nd St", "LATITUDE": 39.949128, "LONGITUDE": -75.14367, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 49.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 355.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 20.74, "Median Spend per Customer": 41.48 }, "geometry": { "type": "Point", "coordinates": [ -75.14367, 39.949128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmd-yjv", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "2001 Federal St", "LATITUDE": 39.937442, "LONGITUDE": -75.176792, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 10.0, "Total Spend": 5126.0, "Total Transactions": 502.0, "Total Customers": 213.0, "Median Spend per Transaction": 7.98, "Median Spend per Customer": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.176792, 39.937442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "Name": "Chillin Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6545 Elmwood Ave", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 7.0, "Total Spend": 478.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 48.14, "Median Spend per Customer": 96.28 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-w6k", "Name": "Food & Friends", "Category": "Grocery Stores", "Address": "1933 Spruce St", "LATITUDE": 39.948295, "LONGITUDE": -75.174192, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 112.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 1.0, "Total Spend": 30839.0, "Total Transactions": 1603.0, "Total Customers": 498.0, "Median Spend per Transaction": 15.22, "Median Spend per Customer": 43.46 }, "geometry": { "type": "Point", "coordinates": [ -75.174192, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6429 Rising Sun Ave", "LATITUDE": 40.050364, "LONGITUDE": -75.094508, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 61.0, "POI_CBG": 421010306003.0, "Median Dwell Time": 9.0, "Total Spend": 1563.0, "Total Transactions": 174.0, "Total Customers": 129.0, "Median Spend per Transaction": 7.49, "Median Spend per Customer": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.094508, 40.050364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "Name": "Asia On the Parkway", "Category": "Restaurants and Other Eating Places", "Address": "1700 Benjamin Franklin Pkwy", "LATITUDE": 39.95574, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2022, "Total Visits": 1742.0, "Total Visitors": 1016.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 346.0, "Total Spend": 8703.0, "Total Transactions": 183.0, "Total Customers": 92.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 60.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.95574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "713 W Girard Ave", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 15.0, "Total Spend": 9887.0, "Total Transactions": 348.0, "Total Customers": 286.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 30.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-ph8-rx5", "Name": "Royal Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "7610 City Ave", "LATITUDE": 39.97851, "LONGITUDE": -75.271319, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 5.0, "Total Spend": 399.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 57.24, "Median Spend per Customer": 114.48 }, "geometry": { "type": "Point", "coordinates": [ -75.271319, 39.97851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-yn5", "Name": "Encore", "Category": "Restaurants and Other Eating Places", "Address": "4002 W Girard Ave", "LATITUDE": 39.973824, "LONGITUDE": -75.204593, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 30.0, "POI_CBG": 421010110003.0, "Median Dwell Time": 20.0, "Total Spend": 895.0, "Total Transactions": 35.0, "Total Customers": 14.0, "Median Spend per Transaction": 24.5, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204593, 39.973824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "Name": "New Deck Tavern", "Category": "Restaurants and Other Eating Places", "Address": "3408 Sansom St", "LATITUDE": 39.953506, "LONGITUDE": -75.192591, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 50.0, "Total Spend": 41472.0, "Total Transactions": 749.0, "Total Customers": 341.0, "Median Spend per Transaction": 39.56, "Median Spend per Customer": 86.65 }, "geometry": { "type": "Point", "coordinates": [ -75.192591, 39.953506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-tvz", "Name": "Via Locusta", "Category": "Restaurants and Other Eating Places", "Address": "1723 Locust St", "LATITUDE": 39.949069, "LONGITUDE": -75.170305, "DATE_RANGE_START": 2022, "Total Visits": 995.0, "Total Visitors": 549.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 216.0, "Total Spend": 17395.0, "Total Transactions": 183.0, "Total Customers": 92.0, "Median Spend per Transaction": 82.04, "Median Spend per Customer": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170305, 39.949069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-k75", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "9916 Roosevelt Blvd", "LATITUDE": 40.094473, "LONGITUDE": -75.018339, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 64.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 4.0, "Total Spend": 244.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 27.55, "Median Spend per Customer": 22.55 }, "geometry": { "type": "Point", "coordinates": [ -75.018339, 40.094473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7w-c89", "Name": "Philly's Finest Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7962 Dungan Rd", "LATITUDE": 40.068215, "LONGITUDE": -75.06872, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 96.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 147.0, "Total Spend": 2773.0, "Total Transactions": 112.0, "Total Customers": 40.0, "Median Spend per Transaction": 27.85, "Median Spend per Customer": 63.22 }, "geometry": { "type": "Point", "coordinates": [ -75.06872, 40.068215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "Name": "Royal Boucherie", "Category": "Restaurants and Other Eating Places", "Address": "52 S 2nd St", "LATITUDE": 39.948704, "LONGITUDE": -75.144251, "DATE_RANGE_START": 2022, "Total Visits": 1094.0, "Total Visitors": 866.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 57.0, "Total Spend": 15139.0, "Total Transactions": 150.0, "Total Customers": 75.0, "Median Spend per Transaction": 73.76, "Median Spend per Customer": 145.08 }, "geometry": { "type": "Point", "coordinates": [ -75.144251, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5750 Baltimore Ave", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 75.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 3.0, "Total Spend": 2221.0, "Total Transactions": 38.0, "Total Customers": 24.0, "Median Spend per Transaction": 39.88, "Median Spend per Customer": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-jjv", "Name": "Copabanana", "Category": "Restaurants and Other Eating Places", "Address": "4000 Spruce St", "LATITUDE": 39.951555, "LONGITUDE": -75.203266, "DATE_RANGE_START": 2022, "Total Visits": 294.0, "Total Visitors": 220.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 80.0, "Total Spend": 13700.0, "Total Transactions": 223.0, "Total Customers": 118.0, "Median Spend per Transaction": 52.77, "Median Spend per Customer": 90.9 }, "geometry": { "type": "Point", "coordinates": [ -75.203266, 39.951555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-7nq", "Name": "Chatayee Thai", "Category": "Restaurants and Other Eating Places", "Address": "1227 Walnut St", "LATITUDE": 39.94915, "LONGITUDE": -75.161857, "DATE_RANGE_START": 2022, "Total Visits": 1037.0, "Total Visitors": 646.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 272.0, "Total Spend": 766.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 49.18, "Median Spend per Customer": 79.68 }, "geometry": { "type": "Point", "coordinates": [ -75.161857, 39.94915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-ty9", "Name": "Stir", "Category": "Restaurants and Other Eating Places", "Address": "2600 Benjamin Franklin Pkwy", "LATITUDE": 39.965783, "LONGITUDE": -75.181173, "DATE_RANGE_START": 2022, "Total Visits": 3180.0, "Total Visitors": 2786.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 92.0, "Total Spend": 2825.0, "Total Transactions": 91.0, "Total Customers": 37.0, "Median Spend per Transaction": 25.5, "Median Spend per Customer": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181173, 39.965783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Broad St", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 251.0, "POI_CBG": 421010200001.0, "Median Dwell Time": 7.0, "Total Spend": 7570.0, "Total Transactions": 753.0, "Total Customers": 490.0, "Median Spend per Transaction": 8.47, "Median Spend per Customer": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "161 W Chelten Ave", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 61.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 4.0, "Total Spend": 251.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 12.57, "Median Spend per Customer": 18.41 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tqf", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1675 S Columbus Blvd", "LATITUDE": 39.926373, "LONGITUDE": -75.141555, "DATE_RANGE_START": 2022, "Total Visits": 7978.0, "Total Visitors": 5340.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 31.0, "Total Spend": 416860.0, "Total Transactions": 6418.0, "Total Customers": 4293.0, "Median Spend per Transaction": 39.97, "Median Spend per Customer": 54.98 }, "geometry": { "type": "Point", "coordinates": [ -75.141555, 39.926373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pfv-649", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6555 Greene St", "LATITUDE": 40.043396, "LONGITUDE": -75.190646, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 160.0, "POI_CBG": 421010237001.0, "Median Dwell Time": 3.0, "Total Spend": 3101.0, "Total Transactions": 296.0, "Total Customers": 172.0, "Median Spend per Transaction": 8.24, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.190646, 40.043396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "301 W Chelten Ave Ste F", "LATITUDE": 40.030538, "LONGITUDE": -75.181434, "DATE_RANGE_START": 2022, "Total Visits": 211.0, "Total Visitors": 157.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 6.0, "Total Spend": 2542.0, "Total Transactions": 148.0, "Total Customers": 120.0, "Median Spend per Transaction": 10.9, "Median Spend per Customer": 11.66 }, "geometry": { "type": "Point", "coordinates": [ -75.181434, 40.030538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4424 N Broad St", "LATITUDE": 40.021226, "LONGITUDE": -75.14987, "DATE_RANGE_START": 2022, "Total Visits": 488.0, "Total Visitors": 347.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 16.0, "Total Spend": 335.0, "Total Transactions": 24.0, "Total Customers": 9.0, "Median Spend per Transaction": 6.55, "Median Spend per Customer": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14987, 40.021226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pmb-cwk", "Name": "Sushi Poke", "Category": "Restaurants and Other Eating Places", "Address": "1310 South St", "LATITUDE": 39.943263, "LONGITUDE": -75.163741, "DATE_RANGE_START": 2022, "Total Visits": 265.0, "Total Visitors": 169.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 401.0, "Total Spend": 3876.0, "Total Transactions": 113.0, "Total Customers": 61.0, "Median Spend per Transaction": 26.04, "Median Spend per Customer": 51.26 }, "geometry": { "type": "Point", "coordinates": [ -75.163741, 39.943263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-ks5", "Name": "Sharetea", "Category": "Restaurants and Other Eating Places", "Address": "600 Washington Ave Unit 5", "LATITUDE": 39.934528, "LONGITUDE": -75.154692, "DATE_RANGE_START": 2022, "Total Visits": 1427.0, "Total Visitors": 995.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 26.0, "Total Spend": 4084.0, "Total Transactions": 329.0, "Total Customers": 141.0, "Median Spend per Transaction": 7.62, "Median Spend per Customer": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154692, 39.934528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5s5", "Name": "Loews Philadelphia Hotel", "Category": "Traveler Accommodation", "Address": "1200 Market St", "LATITUDE": 39.951431, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2022, "Total Visits": 15002.0, "Total Visitors": 9187.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 279.0, "Total Spend": 83801.0, "Total Transactions": 758.0, "Total Customers": 465.0, "Median Spend per Transaction": 28.2, "Median Spend per Customer": 49.44 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 39.951431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22g@63s-dw9-7nq", "Name": "Admirals Club PHL Terminal A West", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8500 Essington Ave", "LATITUDE": 39.894648, "LONGITUDE": -75.229132, "DATE_RANGE_START": 2022, "Total Visits": 1301.0, "Total Visitors": 1106.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 947.0, "Total Transactions": 45.0, "Total Customers": 23.0, "Median Spend per Transaction": 13.64, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229132, 39.894648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "Name": "Tampopo", "Category": "Restaurants and Other Eating Places", "Address": "269 S 44th St", "LATITUDE": 39.953009, "LONGITUDE": -75.210311, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 181.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 480.0, "Total Spend": 1584.0, "Total Transactions": 82.0, "Total Customers": 49.0, "Median Spend per Transaction": 17.85, "Median Spend per Customer": 30.46 }, "geometry": { "type": "Point", "coordinates": [ -75.210311, 39.953009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8f-djv", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "4710 Oxford Ave", "LATITUDE": 40.017133, "LONGITUDE": -75.084023, "DATE_RANGE_START": 2022, "Total Visits": 463.0, "Total Visitors": 287.0, "POI_CBG": 421010300006.0, "Median Dwell Time": 5.0, "Total Spend": 571.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 23.98, "Median Spend per Customer": 46.78 }, "geometry": { "type": "Point", "coordinates": [ -75.084023, 40.017133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6p9", "Name": "DelFrisco's Double Eagle Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "1428 Chestnut St # 1432", "LATITUDE": 39.950881, "LONGITUDE": -75.165456, "DATE_RANGE_START": 2022, "Total Visits": 3288.0, "Total Visitors": 2610.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 71.0, "Total Spend": 34881.0, "Total Transactions": 280.0, "Total Customers": 134.0, "Median Spend per Transaction": 100.28, "Median Spend per Customer": 197.36 }, "geometry": { "type": "Point", "coordinates": [ -75.165456, 39.950881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pj5-j9z", "Name": "Pizza Power", "Category": "Restaurants and Other Eating Places", "Address": "123 E Allegheny Ave", "LATITUDE": 39.998737, "LONGITUDE": -75.128356, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 12.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 339.0, "Total Spend": 337.0, "Total Transactions": 14.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.58, "Median Spend per Customer": 58.2 }, "geometry": { "type": "Point", "coordinates": [ -75.128356, 39.998737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vfz", "Name": "Four Worlds Bakery", "Category": "Restaurants and Other Eating Places", "Address": "4634 Woodland Ave", "LATITUDE": 39.94341, "LONGITUDE": -75.210507, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010074001.0, "Median Dwell Time": 6.0, "Total Spend": 2563.0, "Total Transactions": 157.0, "Total Customers": 63.0, "Median Spend per Transaction": 13.26, "Median Spend per Customer": 26.52 }, "geometry": { "type": "Point", "coordinates": [ -75.210507, 39.94341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pn5", "Name": "Tortilleria San Roman", "Category": "Restaurants and Other Eating Places", "Address": "951 S 9th St", "LATITUDE": 39.937643, "LONGITUDE": -75.157989, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 10.0, "Total Spend": 195.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157989, 39.937643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-t5f", "Name": "Golden Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "679 N Broad St", "LATITUDE": 39.965831, "LONGITUDE": -75.160375, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 19.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 1.0, "Total Spend": 946.0, "Total Transactions": 47.0, "Total Customers": 19.0, "Median Spend per Transaction": 19.6, "Median Spend per Customer": 34.08 }, "geometry": { "type": "Point", "coordinates": [ -75.160375, 39.965831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp5-gff", "Name": "Stop One Supermarket", "Category": "Grocery Stores", "Address": "2971 Aramingo Ave", "LATITUDE": 39.985559, "LONGITUDE": -75.111594, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 30.0, "POI_CBG": 421010179003.0, "Median Dwell Time": 1.0, "Total Spend": 609.0, "Total Transactions": 47.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.25, "Median Spend per Customer": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.111594, 39.985559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvx-xkf", "Name": "Fiesta Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4518 Baltimore Ave", "LATITUDE": 39.948778, "LONGITUDE": -75.213466, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 40.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 31.0, "Total Spend": 715.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 102.6, "Median Spend per Customer": 205.19 }, "geometry": { "type": "Point", "coordinates": [ -75.213466, 39.948778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-z9f", "Name": "Rosarios Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1501 Wharton St", "LATITUDE": 39.934489, "LONGITUDE": -75.169442, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 44.0, "POI_CBG": 421010022002.0, "Median Dwell Time": 1.0, "Total Spend": 4407.0, "Total Transactions": 171.0, "Total Customers": 75.0, "Median Spend per Transaction": 22.06, "Median Spend per Customer": 48.44 }, "geometry": { "type": "Point", "coordinates": [ -75.169442, 39.934489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1018 N 2nd St", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 47.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 1.0, "Total Spend": 5572.0, "Total Transactions": 728.0, "Total Customers": 387.0, "Median Spend per Transaction": 5.65, "Median Spend per Customer": 9.51 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-94v", "Name": "La tapenade", "Category": "Restaurants and Other Eating Places", "Address": "Terminal A W", "LATITUDE": 39.941057, "LONGITUDE": -75.146154, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 44.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 464.0, "Total Spend": 9035.0, "Total Transactions": 368.0, "Total Customers": 185.0, "Median Spend per Transaction": 15.25, "Median Spend per Customer": 29.59 }, "geometry": { "type": "Point", "coordinates": [ -75.146154, 39.941057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgk-z9f", "Name": "Fuwa Deli&beer", "Category": "Restaurants and Other Eating Places", "Address": "3987 Ford Rd", "LATITUDE": 39.99997, "LONGITUDE": -75.209417, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010122041.0, "Median Dwell Time": 3.0, "Total Spend": 699.0, "Total Transactions": 9.0, "Total Customers": 3.0, "Median Spend per Transaction": 80.0, "Median Spend per Customer": 200.73 }, "geometry": { "type": "Point", "coordinates": [ -75.209417, 39.99997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St # 08", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 122.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 6.0, "Total Spend": 4632.0, "Total Transactions": 321.0, "Total Customers": 272.0, "Median Spend per Transaction": 12.58, "Median Spend per Customer": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@63s-dvw-bhq", "Name": "Pm Food Market", "Category": "Grocery Stores", "Address": "61 N 52nd St", "LATITUDE": 39.961425, "LONGITUDE": -75.224249, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010093003.0, "Median Dwell Time": 709.0, "Total Spend": 771.0, "Total Transactions": 87.0, "Total Customers": 40.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224249, 39.961425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6001 Lancaster Ave", "LATITUDE": 39.983085, "LONGITUDE": -75.241704, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 28.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 5.0, "Total Spend": 8022.0, "Total Transactions": 293.0, "Total Customers": 240.0, "Median Spend per Transaction": 25.26, "Median Spend per Customer": 29.28 }, "geometry": { "type": "Point", "coordinates": [ -75.241704, 39.983085 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "Name": "The Gold Standard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4800 Baltimore Ave", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 181.0, "Total Spend": 4152.0, "Total Transactions": 233.0, "Total Customers": 99.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 36.94 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "602 Carpenter Ln", "LATITUDE": 40.04622, "LONGITUDE": -75.195937, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 52.0, "POI_CBG": 421010236003.0, "Median Dwell Time": 4.0, "Total Spend": 861.0, "Total Transactions": 47.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.1, "Median Spend per Customer": 17.43 }, "geometry": { "type": "Point", "coordinates": [ -75.195937, 40.04622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f9f", "Name": "El Balconcito II", "Category": "Restaurants and Other Eating Places", "Address": "7326 Castor Ave", "LATITUDE": 40.052956, "LONGITUDE": -75.064913, "DATE_RANGE_START": 2022, "Total Visits": 1444.0, "Total Visitors": 784.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 66.0, "Total Spend": 8787.0, "Total Transactions": 113.0, "Total Customers": 61.0, "Median Spend per Transaction": 68.24, "Median Spend per Customer": 135.08 }, "geometry": { "type": "Point", "coordinates": [ -75.064913, 40.052956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-fvf", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "138 W Chelten Ave", "LATITUDE": 40.0328, "LONGITUDE": -75.177311, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 91.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 3.0, "Total Spend": 1326.0, "Total Transactions": 40.0, "Total Customers": 38.0, "Median Spend per Transaction": 28.98, "Median Spend per Customer": 29.08 }, "geometry": { "type": "Point", "coordinates": [ -75.177311, 40.0328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4061 Lancaster Ave", "LATITUDE": 39.964853, "LONGITUDE": -75.204438, "DATE_RANGE_START": 2022, "Total Visits": 267.0, "Total Visitors": 186.0, "POI_CBG": 421010107002.0, "Median Dwell Time": 8.0, "Total Spend": 937.0, "Total Transactions": 103.0, "Total Customers": 78.0, "Median Spend per Transaction": 7.16, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.204438, 39.964853 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2815 Ridge Ave Ste A", "LATITUDE": 39.986359, "LONGITUDE": -75.179573, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 99.0, "POI_CBG": 421010151021.0, "Median Dwell Time": 4.0, "Total Spend": 174.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.179573, 39.986359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j5f", "Name": "Paper Source", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1628 Walnut St", "LATITUDE": 39.94972, "LONGITUDE": -75.168619, "DATE_RANGE_START": 2022, "Total Visits": 510.0, "Total Visitors": 293.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 651.0, "Total Spend": 11853.0, "Total Transactions": 404.0, "Total Customers": 371.0, "Median Spend per Transaction": 22.14, "Median Spend per Customer": 25.33 }, "geometry": { "type": "Point", "coordinates": [ -75.168619, 39.94972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "Name": "OfficeMax", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7231 Roosevelt Blvd", "LATITUDE": 40.043545, "LONGITUDE": -75.054368, "DATE_RANGE_START": 2022, "Total Visits": 1087.0, "Total Visitors": 925.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 6.0, "Total Spend": 8771.0, "Total Transactions": 225.0, "Total Customers": 172.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.054368, 40.043545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-4y9", "Name": "CIBO Express Market", "Category": "Health and Personal Care Stores", "Address": "Terminal C Philidelphia Internaional Airport", "LATITUDE": 39.87575, "LONGITUDE": -75.24417, "DATE_RANGE_START": 2022, "Total Visits": 313162.0, "Total Visitors": 180913.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 62.0, "Total Spend": 174.0, "Total Transactions": 16.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.24417, 39.87575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@63s-dw4-rzf", "Name": "Gachi Sushi and Noodle", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895158, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 2.0, "Total Spend": 9759.0, "Total Transactions": 544.0, "Total Customers": 256.0, "Median Spend per Transaction": 15.9, "Median Spend per Customer": 31.56 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.895158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-dd9", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "3084 Frankford Ave", "LATITUDE": 39.991806, "LONGITUDE": -75.113116, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010178003.0, "Median Dwell Time": 5.0, "Total Spend": 1745.0, "Total Transactions": 118.0, "Total Customers": 51.0, "Median Spend per Transaction": 11.9, "Median Spend per Customer": 31.9 }, "geometry": { "type": "Point", "coordinates": [ -75.113116, 39.991806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-y9z", "Name": "Bella Boutique", "Category": "Clothing Stores", "Address": "527 S 4th St", "LATITUDE": 39.941863, "LONGITUDE": -75.148989, "DATE_RANGE_START": 2022, "Total Visits": 1202.0, "Total Visitors": 998.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 8.0, "Total Spend": 864.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 111.0, "Median Spend per Customer": 248.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148989, 39.941863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "Name": "Olive Garden", "Category": "Restaurants and Other Eating Places", "Address": "9280 Roosevelt Blvd", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2022, "Total Visits": 1108.0, "Total Visitors": 817.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 58.0, "Total Spend": 19635.0, "Total Transactions": 335.0, "Total Customers": 307.0, "Median Spend per Transaction": 57.54, "Median Spend per Customer": 59.47 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-yd9", "Name": "Ciocca Subaru of Philadelphia", "Category": "Automobile Dealers", "Address": "1400 S 33rd St", "LATITUDE": 39.936465, "LONGITUDE": -75.198692, "DATE_RANGE_START": 2022, "Total Visits": 366.0, "Total Visitors": 270.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 85.0, "Total Spend": 13566.0, "Total Transactions": 24.0, "Total Customers": 23.0, "Median Spend per Transaction": 190.64, "Median Spend per Customer": 196.35 }, "geometry": { "type": "Point", "coordinates": [ -75.198692, 39.936465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj7-54v", "Name": "New China Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5815 Rising Sun Ave", "LATITUDE": 40.04309, "LONGITUDE": -75.103706, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 8.0, "Total Spend": 297.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 16.63, "Median Spend per Customer": 28.52 }, "geometry": { "type": "Point", "coordinates": [ -75.103706, 40.04309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pg2-zs5", "Name": "South Philly Italian Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "311 W Mount Pleasant Ave", "LATITUDE": 40.054139, "LONGITUDE": -75.194452, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010388004.0, "Median Dwell Time": null, "Total Spend": 521.0, "Total Transactions": 16.0, "Total Customers": 7.0, "Median Spend per Transaction": 35.11, "Median Spend per Customer": 70.22 }, "geometry": { "type": "Point", "coordinates": [ -75.194452, 40.054139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-z75", "Name": "Johnstone Supply", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "455 N 7th St", "LATITUDE": 39.960021, "LONGITUDE": -75.149706, "DATE_RANGE_START": 2022, "Total Visits": 383.0, "Total Visitors": 272.0, "POI_CBG": 421010376001.0, "Median Dwell Time": 13.0, "Total Spend": 1805.0, "Total Transactions": 16.0, "Total Customers": 3.0, "Median Spend per Transaction": 63.54, "Median Spend per Customer": 517.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149706, 39.960021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmc-v2k", "Name": "HomeGoods", "Category": "Home Furnishings Stores", "Address": "1851 S Columbus Blvd", "LATITUDE": 39.923473, "LONGITUDE": -75.140935, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 282.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 13.0, "Total Spend": 79.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.8, "Median Spend per Customer": 22.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140935, 39.923473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvs-2ff", "Name": "Kim's Market", "Category": "Grocery Stores", "Address": "5548 Chester Ave", "LATITUDE": 39.93806, "LONGITUDE": -75.22561, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 70.0, "POI_CBG": 421010071012.0, "Median Dwell Time": 58.0, "Total Spend": 299.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 11.53, "Median Spend per Customer": 23.06 }, "geometry": { "type": "Point", "coordinates": [ -75.22561, 39.93806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6301 Chew Ave", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2022, "Total Visits": 429.0, "Total Visitors": 284.0, "POI_CBG": 421010389003.0, "Median Dwell Time": 7.0, "Total Spend": 2688.0, "Total Transactions": 70.0, "Total Customers": 42.0, "Median Spend per Transaction": 14.64, "Median Spend per Customer": 43.88 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "Name": "Cottman Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "7544 Frankford Ave", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2022, "Total Visits": 274.0, "Total Visitors": 185.0, "POI_CBG": 421010331013.0, "Median Dwell Time": 3.0, "Total Spend": 10840.0, "Total Transactions": 429.0, "Total Customers": 112.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 44.26 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj4-vj9", "Name": "Freddy & Tony's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "201 W Allegheny Ave", "LATITUDE": 39.999255, "LONGITUDE": -75.133375, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 47.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 6.0, "Total Spend": 54.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.56, "Median Spend per Customer": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.133375, 39.999255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-3dv", "Name": "Sheraton Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "3549 Chestnut St", "LATITUDE": 39.95502, "LONGITUDE": -75.193986, "DATE_RANGE_START": 2022, "Total Visits": 2573.0, "Total Visitors": 1089.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 459.0, "Total Spend": 3418.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 278.74, "Median Spend per Customer": 522.48 }, "geometry": { "type": "Point", "coordinates": [ -75.193986, 39.95502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phz-z4v", "Name": "Emes Bedding", "Category": "Furniture Stores", "Address": "620 E Erie Ave", "LATITUDE": 40.005856, "LONGITUDE": -75.117995, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 56.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 520.0, "Total Spend": 172.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 49.32, "Median Spend per Customer": 49.32 }, "geometry": { "type": "Point", "coordinates": [ -75.117995, 40.005856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "Name": "ALDO", "Category": "Shoe Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952094, "LONGITUDE": -75.167619, "DATE_RANGE_START": 2022, "Total Visits": 821.0, "Total Visitors": 601.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 121.0, "Total Spend": 2858.0, "Total Transactions": 38.0, "Total Customers": 35.0, "Median Spend per Transaction": 49.98, "Median Spend per Customer": 60.04 }, "geometry": { "type": "Point", "coordinates": [ -75.167619, 39.952094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "Name": "Red Lobster", "Category": "Restaurants and Other Eating Places", "Address": "9140 Roosevelt Blvd", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2022, "Total Visits": 340.0, "Total Visitors": 317.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 54.0, "Total Spend": 13485.0, "Total Transactions": 200.0, "Total Customers": 174.0, "Median Spend per Transaction": 67.83, "Median Spend per Customer": 69.71 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pm9-y9z", "Name": "Gold Heart Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "426 South St", "LATITUDE": 39.941621, "LONGITUDE": -75.150209, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 366.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 38.0, "Total Spend": 17450.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 704.0, "Median Spend per Customer": 1408.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150209, 39.941621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "401 N 21st St", "LATITUDE": 39.962306, "LONGITUDE": -75.172957, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 113.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 72.0, "Total Spend": 18344.0, "Total Transactions": 620.0, "Total Customers": 481.0, "Median Spend per Transaction": 26.77, "Median Spend per Customer": 30.97 }, "geometry": { "type": "Point", "coordinates": [ -75.172957, 39.962306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.979849, "LONGITUDE": -75.269293, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 226.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 2.0, "Total Spend": 16401.0, "Total Transactions": 918.0, "Total Customers": 688.0, "Median Spend per Transaction": 14.77, "Median Spend per Customer": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.269293, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgc-wzf", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "1575 N 52nd St Ste 400", "LATITUDE": 39.977954, "LONGITUDE": -75.224016, "DATE_RANGE_START": 2022, "Total Visits": 2009.0, "Total Visitors": 1063.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 20.0, "Total Spend": 339.0, "Total Transactions": 23.0, "Total Customers": 23.0, "Median Spend per Transaction": 14.88, "Median Spend per Customer": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.224016, 39.977954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7bk", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "1320 Walnut St", "LATITUDE": 39.948987, "LONGITUDE": -75.16307, "DATE_RANGE_START": 2022, "Total Visits": 620.0, "Total Visitors": 453.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 56.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.19, "Median Spend per Customer": 12.19 }, "geometry": { "type": "Point", "coordinates": [ -75.16307, 39.948987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2805 S Front St # 2809", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2022, "Total Visits": 718.0, "Total Visitors": 521.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 8207.0, "Total Transactions": 1064.0, "Total Customers": 549.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "809 S Broad St", "LATITUDE": 39.94013, "LONGITUDE": -75.165831, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 84.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 3.0, "Total Spend": 3991.0, "Total Transactions": 622.0, "Total Customers": 289.0, "Median Spend per Transaction": 5.76, "Median Spend per Customer": 8.09 }, "geometry": { "type": "Point", "coordinates": [ -75.165831, 39.94013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2130 S Columbus Blvd", "LATITUDE": 39.918938, "LONGITUDE": -75.140855, "DATE_RANGE_START": 2022, "Total Visits": 477.0, "Total Visitors": 397.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 211.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 11.69, "Median Spend per Customer": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 39.918938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "Name": "Chuck E. Cheese's", "Category": "Restaurants and Other Eating Places", "Address": "9 Snyder Ave. Corner of Front & Snyder", "LATITUDE": 39.921782, "LONGITUDE": -75.1449, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 127.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 65.0, "Total Spend": 1785.0, "Total Transactions": 33.0, "Total Customers": 21.0, "Median Spend per Transaction": 17.81, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1449, 39.921782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "Name": "Tattooed Mom", "Category": "Restaurants and Other Eating Places", "Address": "530 South St", "LATITUDE": 39.941873, "LONGITUDE": -75.151859, "DATE_RANGE_START": 2022, "Total Visits": 181.0, "Total Visitors": 167.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 41.0, "Total Spend": 55536.0, "Total Transactions": 1486.0, "Total Customers": 702.0, "Median Spend per Transaction": 31.04, "Median Spend per Customer": 67.04 }, "geometry": { "type": "Point", "coordinates": [ -75.151859, 39.941873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-68v", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8914 Frankford Ave", "LATITUDE": 40.051732, "LONGITUDE": -75.010927, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 33.0, "Total Spend": 3387.0, "Total Transactions": 106.0, "Total Customers": 94.0, "Median Spend per Transaction": 29.78, "Median Spend per Customer": 33.2 }, "geometry": { "type": "Point", "coordinates": [ -75.010927, 40.051732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7qz", "Name": "Wishbone", "Category": "Restaurants and Other Eating Places", "Address": "210 S 13th St", "LATITUDE": 39.948376, "LONGITUDE": -75.162398, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 160.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 89.0, "Total Spend": 1967.0, "Total Transactions": 96.0, "Total Customers": 51.0, "Median Spend per Transaction": 18.66, "Median Spend per Customer": 31.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162398, 39.948376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-c5z", "Name": "Maple Star", "Category": "Restaurants and Other Eating Places", "Address": "1521 Cecil B Moore Ave", "LATITUDE": 39.97918, "LONGITUDE": -75.160433, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 91.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 60.0, "Total Spend": 4260.0, "Total Transactions": 228.0, "Total Customers": 101.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160433, 39.97918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-k4v", "Name": "Paradise Pizza", "Category": "Restaurants and Other Eating Places", "Address": "106 W Girard Ave", "LATITUDE": 39.968728, "LONGITUDE": -75.136484, "DATE_RANGE_START": 2022, "Total Visits": 458.0, "Total Visitors": 348.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 34.0, "Total Spend": 557.0, "Total Transactions": 23.0, "Total Customers": 16.0, "Median Spend per Transaction": 22.22, "Median Spend per Customer": 30.03 }, "geometry": { "type": "Point", "coordinates": [ -75.136484, 39.968728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd Unit 22", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2022, "Total Visits": 282.0, "Total Visitors": 254.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 20.0, "Total Spend": 3928.0, "Total Transactions": 106.0, "Total Customers": 57.0, "Median Spend per Transaction": 32.51, "Median Spend per Customer": 61.24 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@628-pmb-835", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "28 N 11th St", "LATITUDE": 39.95246, "LONGITUDE": -75.158356, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 259.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 41.06, "Median Spend per Customer": 41.06 }, "geometry": { "type": "Point", "coordinates": [ -75.158356, 39.95246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pj6-k4v", "Name": "Mari Mari", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St Ste 124", "LATITUDE": 40.04511, "LONGITUDE": -75.117199, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 20.0, "Total Spend": 192.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 13.57, "Median Spend per Customer": 27.13 }, "geometry": { "type": "Point", "coordinates": [ -75.117199, 40.04511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgg-9xq", "Name": "Boss Furniture", "Category": "Furniture Stores", "Address": "2359 W Allegheny Ave", "LATITUDE": 40.003922, "LONGITUDE": -75.168399, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 44.0, "POI_CBG": 421010171003.0, "Median Dwell Time": 266.0, "Total Spend": 7108.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 1000.0, "Median Spend per Customer": 2000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168399, 40.003922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "Name": "Weavers Way Co op", "Category": "Grocery Stores", "Address": "8424 Germantown Ave", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 66.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 368.0, "Total Spend": 91540.0, "Total Transactions": 2246.0, "Total Customers": 678.0, "Median Spend per Transaction": 29.98, "Median Spend per Customer": 85.18 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1034 Washington Ave # 38", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 293.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 2.0, "Total Spend": 2727.0, "Total Transactions": 242.0, "Total Customers": 115.0, "Median Spend per Transaction": 9.69, "Median Spend per Customer": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3604 Chestnut St", "LATITUDE": 39.954547, "LONGITUDE": -75.194897, "DATE_RANGE_START": 2022, "Total Visits": 256.0, "Total Visitors": 183.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 5.0, "Total Spend": 42078.0, "Total Transactions": 3988.0, "Total Customers": 1730.0, "Median Spend per Transaction": 8.12, "Median Spend per Customer": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.194897, 39.954547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "245 N Broad St", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 125.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 144.0, "Total Spend": 921.0, "Total Transactions": 17.0, "Total Customers": 16.0, "Median Spend per Transaction": 25.42, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4601 Walnut St", "LATITUDE": 39.955786, "LONGITUDE": -75.214102, "DATE_RANGE_START": 2022, "Total Visits": 1638.0, "Total Visitors": 1166.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 4.0, "Total Spend": 1087.0, "Total Transactions": 35.0, "Total Customers": 26.0, "Median Spend per Transaction": 25.5, "Median Spend per Customer": 35.25 }, "geometry": { "type": "Point", "coordinates": [ -75.214102, 39.955786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phy-v9f", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "5302 Rising Sun Ave", "LATITUDE": 40.030432, "LONGITUDE": -75.118462, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 122.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 4.0, "Total Spend": 2897.0, "Total Transactions": 101.0, "Total Customers": 47.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118462, 40.030432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "Name": "Forever 21", "Category": "Clothing Stores", "Address": "1706 Franklin Mills Cir", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2022, "Total Visits": 1200.0, "Total Visitors": 970.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 23.0, "Total Spend": 13574.0, "Total Transactions": 395.0, "Total Customers": 345.0, "Median Spend per Transaction": 26.26, "Median Spend per Customer": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvx-3dv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "801 N 48th St", "LATITUDE": 39.967245, "LONGITUDE": -75.215949, "DATE_RANGE_START": 2022, "Total Visits": 397.0, "Total Visitors": 247.0, "POI_CBG": 421010105001.0, "Median Dwell Time": 9.0, "Total Spend": 933.0, "Total Transactions": 47.0, "Total Customers": 35.0, "Median Spend per Transaction": 20.41, "Median Spend per Customer": 20.86 }, "geometry": { "type": "Point", "coordinates": [ -75.215949, 39.967245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2800 Fox St", "LATITUDE": 40.008742, "LONGITUDE": -75.17653, "DATE_RANGE_START": 2022, "Total Visits": 639.0, "Total Visitors": 411.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 34.0, "Total Spend": 12447.0, "Total Transactions": 272.0, "Total Customers": 216.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 38.46 }, "geometry": { "type": "Point", "coordinates": [ -75.17653, 40.008742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-2kz", "Name": "Digital Underground", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "732 S 4th St", "LATITUDE": 39.939663, "LONGITUDE": -75.149717, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 52.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 973.0, "Total Spend": 2585.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 367.16, "Median Spend per Customer": 734.32 }, "geometry": { "type": "Point", "coordinates": [ -75.149717, 39.939663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 139.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 4.0, "Total Spend": 2396.0, "Total Transactions": 193.0, "Total Customers": 148.0, "Median Spend per Transaction": 12.61, "Median Spend per Customer": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-5vf", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "2226 Cottman Ave", "LATITUDE": 40.048428, "LONGITUDE": -75.061751, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 87.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 3.0, "Total Spend": 1621.0, "Total Transactions": 99.0, "Total Customers": 52.0, "Median Spend per Transaction": 12.94, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.061751, 40.048428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3200 Red Lion Rd", "LATITUDE": 40.081241, "LONGITUDE": -74.99492, "DATE_RANGE_START": 2022, "Total Visits": 540.0, "Total Visitors": 256.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 3.0, "Total Spend": 2533.0, "Total Transactions": 314.0, "Total Customers": 183.0, "Median Spend per Transaction": 6.53, "Median Spend per Customer": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -74.99492, 40.081241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1551 Washington Ave", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 94.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 3.0, "Total Spend": 5673.0, "Total Transactions": 688.0, "Total Customers": 333.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 8.61 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-x89", "Name": "Green Lion Breads", "Category": "Restaurants and Other Eating Places", "Address": "400 Franklin Ave Ste 238", "LATITUDE": 39.950111, "LONGITUDE": -75.147526, "DATE_RANGE_START": 2022, "Total Visits": 744.0, "Total Visitors": 617.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 21.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.05, "Median Spend per Customer": 6.05 }, "geometry": { "type": "Point", "coordinates": [ -75.147526, 39.950111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm6-gkz", "Name": "South View Pizza", "Category": "Restaurants and Other Eating Places", "Address": "367 Durfor St", "LATITUDE": 39.919441, "LONGITUDE": -75.153896, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 9.0, "POI_CBG": 421010042024.0, "Median Dwell Time": 91.0, "Total Spend": 2180.0, "Total Transactions": 98.0, "Total Customers": 16.0, "Median Spend per Transaction": 18.91, "Median Spend per Customer": 41.28 }, "geometry": { "type": "Point", "coordinates": [ -75.153896, 39.919441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pm3-vpv", "Name": "Philadelphia Scooters", "Category": "Other Motor Vehicle Dealers", "Address": "2501 Wharton St Ste G", "LATITUDE": 39.936705, "LONGITUDE": -75.186573, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 70.0, "POI_CBG": 421010020002.0, "Median Dwell Time": 457.0, "Total Spend": 2149.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 282.16, "Median Spend per Customer": 308.41 }, "geometry": { "type": "Point", "coordinates": [ -75.186573, 39.936705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmb-ckf", "Name": "Home Gallery", "Category": "Furniture Stores", "Address": "720 South St", "LATITUDE": 39.942072, "LONGITUDE": -75.154677, "DATE_RANGE_START": 2022, "Total Visits": 840.0, "Total Visitors": 634.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 95.0, "Total Spend": 46283.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 2915.96, "Median Spend per Customer": 5831.92 }, "geometry": { "type": "Point", "coordinates": [ -75.154677, 39.942072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "Name": "Apple Retail Store", "Category": "Electronics and Appliance Stores", "Address": "1607 Walnut St", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2022, "Total Visits": 615.0, "Total Visitors": 458.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 66.0, "Total Spend": 204994.0, "Total Transactions": 760.0, "Total Customers": 674.0, "Median Spend per Transaction": 96.12, "Median Spend per Customer": 106.92 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-phy-hdv", "Name": "Kim's Market", "Category": "Grocery Stores", "Address": "4701 N 5th St", "LATITUDE": 40.022409, "LONGITUDE": -75.133408, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 159.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 32.0, "Total Spend": 611.0, "Total Transactions": 38.0, "Total Customers": 16.0, "Median Spend per Transaction": 12.52, "Median Spend per Customer": 35.72 }, "geometry": { "type": "Point", "coordinates": [ -75.133408, 40.022409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "Name": "Balducci's", "Category": "Grocery Stores", "Address": "1 Garage Access Rd Terminal C", "LATITUDE": 39.878244, "LONGITUDE": -75.24235, "DATE_RANGE_START": 2022, "Total Visits": 49623.0, "Total Visitors": 42898.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 6.0, "Total Spend": 14807.0, "Total Transactions": 1110.0, "Total Customers": 580.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 20.64 }, "geometry": { "type": "Point", "coordinates": [ -75.24235, 39.878244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@63s-dw9-7nq", "Name": "Jack Duggan's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8500 Essington Ave", "LATITUDE": 39.874756, "LONGITUDE": -75.24707, "DATE_RANGE_START": 2022, "Total Visits": 226042.0, "Total Visitors": 145993.0, "POI_CBG": 420459800001.0, "Median Dwell Time": 54.0, "Total Spend": 1887.0, "Total Transactions": 42.0, "Total Customers": 30.0, "Median Spend per Transaction": 30.3, "Median Spend per Customer": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.24707, 39.874756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "Name": "Real Food Eatery", "Category": "Restaurants and Other Eating Places", "Address": "207 S 16th St", "LATITUDE": 39.949409, "LONGITUDE": -75.167315, "DATE_RANGE_START": 2022, "Total Visits": 361.0, "Total Visitors": 261.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 174.0, "Total Spend": 1763.0, "Total Transactions": 98.0, "Total Customers": 45.0, "Median Spend per Transaction": 16.24, "Median Spend per Customer": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.167315, 39.949409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "Name": "Nam Phuong", "Category": "Restaurants and Other Eating Places", "Address": "1100 Washington Ave", "LATITUDE": 39.936493, "LONGITUDE": -75.162002, "DATE_RANGE_START": 2022, "Total Visits": 1073.0, "Total Visitors": 862.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 31.0, "Total Spend": 17364.0, "Total Transactions": 347.0, "Total Customers": 176.0, "Median Spend per Transaction": 42.07, "Median Spend per Customer": 72.02 }, "geometry": { "type": "Point", "coordinates": [ -75.162002, 39.936493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3yv", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.101772, "LONGITUDE": -75.007116, "DATE_RANGE_START": 2022, "Total Visits": 1437.0, "Total Visitors": 1258.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 49.0, "Total Spend": 557.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 45.8, "Median Spend per Customer": 91.6 }, "geometry": { "type": "Point", "coordinates": [ -75.007116, 40.101772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "Name": "The Sidecar Bar & Grille", "Category": "Restaurants and Other Eating Places", "Address": "2201 Christian St", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 42.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 68.0, "Total Spend": 4468.0, "Total Transactions": 94.0, "Total Customers": 52.0, "Median Spend per Transaction": 38.34, "Median Spend per Customer": 66.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "Name": "Smiley's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4251 Main St", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 52.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 5.0, "Total Spend": 1191.0, "Total Transactions": 71.0, "Total Customers": 31.0, "Median Spend per Transaction": 15.97, "Median Spend per Customer": 20.18 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phz-q4v", "Name": "Jj's Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3800 J St", "LATITUDE": 40.005715, "LONGITUDE": -75.107525, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 61.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 60.0, "Total Spend": 1801.0, "Total Transactions": 42.0, "Total Customers": 17.0, "Median Spend per Transaction": 31.5, "Median Spend per Customer": 82.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107525, 40.005715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-whq", "Name": "Ocean City", "Category": "Restaurants and Other Eating Places", "Address": "234 N 9th St", "LATITUDE": 39.95631, "LONGITUDE": -75.15439, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 209.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 58.0, "Total Spend": 6983.0, "Total Transactions": 101.0, "Total Customers": 63.0, "Median Spend per Transaction": 61.7, "Median Spend per Customer": 103.85 }, "geometry": { "type": "Point", "coordinates": [ -75.15439, 39.95631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgb-s89", "Name": "The Lucky Well Spring Arts", "Category": "Restaurants and Other Eating Places", "Address": "990 Spring Garden St", "LATITUDE": 39.961294, "LONGITUDE": -75.154234, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 89.0, "POI_CBG": 421010376001.0, "Median Dwell Time": 150.0, "Total Spend": 2874.0, "Total Transactions": 73.0, "Total Customers": 31.0, "Median Spend per Transaction": 37.56, "Median Spend per Customer": 80.76 }, "geometry": { "type": "Point", "coordinates": [ -75.154234, 39.961294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "6350 Roosevelt Blvd", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 105.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 3.0, "Total Spend": 7073.0, "Total Transactions": 321.0, "Total Customers": 237.0, "Median Spend per Transaction": 17.8, "Median Spend per Customer": 22.76 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4163 Whitaker Ave", "LATITUDE": 40.012435, "LONGITUDE": -75.119008, "DATE_RANGE_START": 2022, "Total Visits": 723.0, "Total Visitors": 566.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 2.0, "Total Spend": 19881.0, "Total Transactions": 1296.0, "Total Customers": 808.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 18.86 }, "geometry": { "type": "Point", "coordinates": [ -75.119008, 40.012435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-wx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "701 Market St", "LATITUDE": 39.950748, "LONGITUDE": -75.151909, "DATE_RANGE_START": 2022, "Total Visits": 373.0, "Total Visitors": 312.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 2.0, "Total Spend": 1596.0, "Total Transactions": 308.0, "Total Customers": 146.0, "Median Spend per Transaction": 4.63, "Median Spend per Customer": 6.46 }, "geometry": { "type": "Point", "coordinates": [ -75.151909, 39.950748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmf-6x5", "Name": "Gia Pronto", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.947732, "LONGITUDE": -75.192715, "DATE_RANGE_START": 2022, "Total Visits": 17711.0, "Total Visitors": 9317.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 114.0, "Total Spend": 2057.0, "Total Transactions": 237.0, "Total Customers": 85.0, "Median Spend per Transaction": 7.43, "Median Spend per Customer": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.192715, 39.947732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-djv", "Name": "Quality Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6438 Rising Sun Ave", "LATITUDE": 40.050855, "LONGITUDE": -75.094676, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 64.0, "POI_CBG": 421010306007.0, "Median Dwell Time": 182.0, "Total Spend": 196.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 23.08, "Median Spend per Customer": 20.47 }, "geometry": { "type": "Point", "coordinates": [ -75.094676, 40.050855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "Name": "Broad Street Diner", "Category": "Restaurants and Other Eating Places", "Address": "1135 S Broad St", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 57.0, "POI_CBG": 421010023001.0, "Median Dwell Time": 371.0, "Total Spend": 5592.0, "Total Transactions": 169.0, "Total Customers": 94.0, "Median Spend per Transaction": 30.88, "Median Spend per Customer": 47.86 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "Name": "Academy Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "3091 Holme Ave", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 40.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 4.0, "Total Spend": 9470.0, "Total Transactions": 267.0, "Total Customers": 61.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 45.34 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-x89", "Name": "Kim's Seafood", "Category": "Specialty Food Stores", "Address": "1336 Windrim Ave", "LATITUDE": 40.029599, "LONGITUDE": -75.146407, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 42.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 364.0, "Total Spend": 1564.0, "Total Transactions": 71.0, "Total Customers": 37.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146407, 40.029599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "Name": "Charley's", "Category": "Restaurants and Other Eating Places", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 1629.0, "Total Transactions": 124.0, "Total Customers": 112.0, "Median Spend per Transaction": 13.36, "Median Spend per Customer": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "910 Chestnut St", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2022, "Total Visits": 603.0, "Total Visitors": 411.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 2033.0, "Total Transactions": 195.0, "Total Customers": 162.0, "Median Spend per Transaction": 10.07, "Median Spend per Customer": 10.53 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23b@63s-dw4-rzf", "Name": "Bar Symon", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave Level 2 Terminal D Gate D9", "LATITUDE": 39.87555, "LONGITUDE": -75.238035, "DATE_RANGE_START": 2022, "Total Visits": 313162.0, "Total Visitors": 180913.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 62.0, "Total Spend": 315.0, "Total Transactions": 12.0, "Total Customers": 9.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.238035, 39.87555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "Name": "Smokey Joes", "Category": "Restaurants and Other Eating Places", "Address": "210 S 40th St", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 155.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 38.0, "Total Spend": 18346.0, "Total Transactions": 664.0, "Total Customers": 237.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 60.65 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2701 N 2nd St", "LATITUDE": 39.991624, "LONGITUDE": -75.134387, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 148.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 3.0, "Total Spend": 11496.0, "Total Transactions": 211.0, "Total Customers": 169.0, "Median Spend per Transaction": 38.52, "Median Spend per Customer": 42.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134387, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5pv", "Name": "Hard Rock Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1113 Market St", "LATITUDE": 39.952216, "LONGITUDE": -75.159642, "DATE_RANGE_START": 2022, "Total Visits": 1793.0, "Total Visitors": 1340.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 81.0, "Total Spend": 37318.0, "Total Transactions": 632.0, "Total Customers": 517.0, "Median Spend per Transaction": 45.02, "Median Spend per Customer": 46.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159642, 39.952216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-td9", "Name": "Jamaica Way", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave Ste 2930", "LATITUDE": 39.90332, "LONGITUDE": -75.240643, "DATE_RANGE_START": 2022, "Total Visits": 314.0, "Total Visitors": 272.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 3.0, "Total Spend": 395.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 31.72, "Median Spend per Customer": 63.44 }, "geometry": { "type": "Point", "coordinates": [ -75.240643, 39.90332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "Name": "Cantinho Brasileiro Restaurante", "Category": "Restaurants and Other Eating Places", "Address": "7536 Castor Ave", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 99.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 7.0, "Total Spend": 1378.0, "Total Transactions": 52.0, "Total Customers": 24.0, "Median Spend per Transaction": 19.73, "Median Spend per Customer": 53.41 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "Name": "No 1 Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2731 E Allegheny Ave", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 45.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 1.0, "Total Spend": 980.0, "Total Transactions": 57.0, "Total Customers": 26.0, "Median Spend per Transaction": 16.89, "Median Spend per Customer": 34.75 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-y9z", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "3020 Market St", "LATITUDE": 39.954522, "LONGITUDE": -75.184483, "DATE_RANGE_START": 2022, "Total Visits": 1516.0, "Total Visitors": 993.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 114.0, "Total Spend": 44700.0, "Total Transactions": 3059.0, "Total Customers": 1080.0, "Median Spend per Transaction": 11.99, "Median Spend per Customer": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.184483, 39.954522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwb-pvz", "Name": "TMK Produce", "Category": "Grocery Stores", "Address": "6700 Essington Ave Unit A1A6", "LATITUDE": 39.91064, "LONGITUDE": -75.220471, "DATE_RANGE_START": 2022, "Total Visits": 402.0, "Total Visitors": 112.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 151.0, "Total Spend": 9830.0, "Total Transactions": 375.0, "Total Customers": 179.0, "Median Spend per Transaction": 8.49, "Median Spend per Customer": 16.36 }, "geometry": { "type": "Point", "coordinates": [ -75.220471, 39.91064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-hwk", "Name": "Mr Bar Stool", "Category": "Furniture Stores", "Address": "167 N 2nd St", "LATITUDE": 39.953666, "LONGITUDE": -75.142763, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 1.0, "Total Spend": 7436.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 859.68, "Median Spend per Customer": 1719.36 }, "geometry": { "type": "Point", "coordinates": [ -75.142763, 39.953666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6137 Frankford Ave", "LATITUDE": 40.027117, "LONGITUDE": -75.0631, "DATE_RANGE_START": 2022, "Total Visits": 702.0, "Total Visitors": 551.0, "POI_CBG": 421010319001.0, "Median Dwell Time": 6.0, "Total Spend": 17437.0, "Total Transactions": 340.0, "Total Customers": 247.0, "Median Spend per Transaction": 32.38, "Median Spend per Customer": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.0631, 40.027117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pp5-f75", "Name": "Kensington Meats", "Category": "Specialty Food Stores", "Address": "3083 Kensington Ave", "LATITUDE": 39.994865, "LONGITUDE": -75.116136, "DATE_RANGE_START": 2022, "Total Visits": 737.0, "Total Visitors": 563.0, "POI_CBG": 421010178005.0, "Median Dwell Time": 9.0, "Total Spend": 331.0, "Total Transactions": 9.0, "Total Customers": 3.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 95.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116136, 39.994865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pgh-v2k", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2131 59 North Broad Street Ste 5", "LATITUDE": 39.985827, "LONGITUDE": -75.15577, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 115.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 3.0, "Total Spend": 15126.0, "Total Transactions": 915.0, "Total Customers": 509.0, "Median Spend per Transaction": 10.99, "Median Spend per Customer": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.985827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2034 N Broad St", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2022, "Total Visits": 422.0, "Total Visitors": 338.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 2.0, "Total Spend": 2101.0, "Total Transactions": 179.0, "Total Customers": 108.0, "Median Spend per Transaction": 8.35, "Median Spend per Customer": 8.44 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pm9-wc5", "Name": "Renaissance Hotels", "Category": "Traveler Accommodation", "Address": "401 Chestnut St", "LATITUDE": 39.949053, "LONGITUDE": -75.147888, "DATE_RANGE_START": 2022, "Total Visits": 1591.0, "Total Visitors": 1204.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 45.0, "Total Spend": 23972.0, "Total Transactions": 136.0, "Total Customers": 105.0, "Median Spend per Transaction": 43.6, "Median Spend per Customer": 63.92 }, "geometry": { "type": "Point", "coordinates": [ -75.147888, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kpv", "Name": "Pearl", "Category": "Restaurants and Other Eating Places", "Address": "1904 Chestnut St", "LATITUDE": 39.951744, "LONGITUDE": -75.172393, "DATE_RANGE_START": 2022, "Total Visits": 4730.0, "Total Visitors": 3213.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 646.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 44.75, "Median Spend per Customer": 57.68 }, "geometry": { "type": "Point", "coordinates": [ -75.172393, 39.951744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-td9", "Name": "NY Bagel & Deli Shop", "Category": "Restaurants and Other Eating Places", "Address": "1120 Buttonwood St", "LATITUDE": 39.96081, "LONGITUDE": -75.157392, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 19.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 2.0, "Total Spend": 3780.0, "Total Transactions": 230.0, "Total Customers": 85.0, "Median Spend per Transaction": 13.96, "Median Spend per Customer": 30.22 }, "geometry": { "type": "Point", "coordinates": [ -75.157392, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "Name": "Trader Joe's", "Category": "Grocery Stores", "Address": "2121 Market St", "LATITUDE": 39.954199, "LONGITUDE": -75.176054, "DATE_RANGE_START": 2022, "Total Visits": 1242.0, "Total Visitors": 974.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 9.0, "Total Spend": 694747.0, "Total Transactions": 14267.0, "Total Customers": 8009.0, "Median Spend per Transaction": 37.01, "Median Spend per Customer": 61.28 }, "geometry": { "type": "Point", "coordinates": [ -75.176054, 39.954199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "Name": "Evo Brickoven Pizza", "Category": "Restaurants and Other Eating Places", "Address": "277 W Mount Pleasant Ave", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 11.0, "Total Spend": 945.0, "Total Transactions": 26.0, "Total Customers": 16.0, "Median Spend per Transaction": 27.54, "Median Spend per Customer": 51.3 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp5-k2k", "Name": "Momentos Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2317 E Clearfield St", "LATITUDE": 39.988005, "LONGITUDE": -75.109231, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 19.0, "POI_CBG": 421010179002.0, "Median Dwell Time": 277.0, "Total Spend": 833.0, "Total Transactions": 37.0, "Total Customers": 16.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109231, 39.988005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phz-wkz", "Name": "Steve's Old Pizza London", "Category": "Restaurants and Other Eating Places", "Address": "3573 Frankford Ave", "LATITUDE": 39.997988, "LONGITUDE": -75.101209, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 28.0, "POI_CBG": 421010188002.0, "Median Dwell Time": 306.0, "Total Spend": 2198.0, "Total Transactions": 99.0, "Total Customers": 52.0, "Median Spend per Transaction": 20.61, "Median Spend per Customer": 38.79 }, "geometry": { "type": "Point", "coordinates": [ -75.101209, 39.997988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj6-bx5", "Name": "Nam Vang Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "571 Adams Ave", "LATITUDE": 40.037327, "LONGITUDE": -75.108009, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 127.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 4.0, "Total Spend": 17038.0, "Total Transactions": 199.0, "Total Customers": 103.0, "Median Spend per Transaction": 72.46, "Median Spend per Customer": 142.52 }, "geometry": { "type": "Point", "coordinates": [ -75.108009, 40.037327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "Name": "Arby's", "Category": "Restaurants and Other Eating Places", "Address": "577 Franklin Mills Cir", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 131.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 3326.0, "Total Transactions": 223.0, "Total Customers": 169.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 14.62 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pj8-pgk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd # 5103", "LATITUDE": 40.031694, "LONGITUDE": -75.099517, "DATE_RANGE_START": 2022, "Total Visits": 5946.0, "Total Visitors": 3946.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 29.0, "Total Spend": 2296.0, "Total Transactions": 181.0, "Total Customers": 141.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 12.38 }, "geometry": { "type": "Point", "coordinates": [ -75.099517, 40.031694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pm9-wc5", "Name": "Scoop DeVille", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949779, "LONGITUDE": -75.148514, "DATE_RANGE_START": 2022, "Total Visits": 1693.0, "Total Visitors": 1504.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 14.0, "Total Spend": 10164.0, "Total Transactions": 714.0, "Total Customers": 394.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148514, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1826 30 Chestnut Street Philadelphia", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2022, "Total Visits": 789.0, "Total Visitors": 559.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 60.0, "Total Spend": 27746.0, "Total Transactions": 1678.0, "Total Customers": 1012.0, "Median Spend per Transaction": 9.62, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-zzz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1315 E Washington Ln", "LATITUDE": 40.058549, "LONGITUDE": -75.166373, "DATE_RANGE_START": 2022, "Total Visits": 291.0, "Total Visitors": 160.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 10.0, "Total Spend": 7944.0, "Total Transactions": 436.0, "Total Customers": 242.0, "Median Spend per Transaction": 12.45, "Median Spend per Customer": 22.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166373, 40.058549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.037065, "LONGITUDE": -75.118922, "DATE_RANGE_START": 2022, "Total Visits": 343.0, "Total Visitors": 261.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 19.0, "Total Spend": 47944.0, "Total Transactions": 1207.0, "Total Customers": 563.0, "Median Spend per Transaction": 28.54, "Median Spend per Customer": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.118922, 40.037065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-6p9", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1416 Chestnut St", "LATITUDE": 39.950763, "LONGITUDE": -75.164862, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 289.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 25.0, "Total Spend": 1777.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 61.5, "Median Spend per Customer": 61.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164862, 39.950763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dwf-bhq", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2910 S 70th St Unit 3B", "LATITUDE": 39.912436, "LONGITUDE": -75.233807, "DATE_RANGE_START": 2022, "Total Visits": 314.0, "Total Visitors": 232.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 5.0, "Total Spend": 212.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 6.2, "Median Spend per Customer": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.233807, 39.912436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7620 Lindbergh Blvd Ste B", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 244.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 5.0, "Total Spend": 1039.0, "Total Transactions": 45.0, "Total Customers": 33.0, "Median Spend per Transaction": 21.26, "Median Spend per Customer": 21.54 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgk-28v", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1300 W Lehigh Ave", "LATITUDE": 39.993135, "LONGITUDE": -75.152859, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 138.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 3.0, "Total Spend": 449.0, "Total Transactions": 24.0, "Total Customers": 17.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.152859, 39.993135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-xwk", "Name": "aka.", "Category": "Traveler Accommodation", "Address": "2929 Walnut St", "LATITUDE": 39.952073, "LONGITUDE": -75.184019, "DATE_RANGE_START": 2022, "Total Visits": 12589.0, "Total Visitors": 9051.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 72.0, "Total Spend": 1164.0, "Total Transactions": 38.0, "Total Customers": 19.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 24.84 }, "geometry": { "type": "Point", "coordinates": [ -75.184019, 39.952073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj4-zvf", "Name": "Tony Express", "Category": "Restaurants and Other Eating Places", "Address": "3334 N Broad St", "LATITUDE": 40.0045, "LONGITUDE": -75.15291, "DATE_RANGE_START": 2022, "Total Visits": 183.0, "Total Visitors": 112.0, "POI_CBG": 421010201011.0, "Median Dwell Time": 287.0, "Total Spend": 66.0, "Total Transactions": 14.0, "Total Customers": 5.0, "Median Spend per Transaction": 2.0, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15291, 40.0045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnz-jgk", "Name": "Bonks Bar", "Category": "Restaurants and Other Eating Places", "Address": "3467 Richmond St", "LATITUDE": 39.986368, "LONGITUDE": -75.094326, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 185.0, "POI_CBG": 421010378002.0, "Median Dwell Time": 126.0, "Total Spend": 5983.0, "Total Transactions": 106.0, "Total Customers": 40.0, "Median Spend per Transaction": 44.78, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094326, 39.986368 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "1230 Arch St", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2022, "Total Visits": 359.0, "Total Visitors": 335.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 2192.0, "Total Transactions": 131.0, "Total Customers": 57.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvx-w6k", "Name": "The Green Line Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4239 Baltimore Ave", "LATITUDE": 39.949809, "LONGITUDE": -75.209105, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 44.0, "POI_CBG": 421010087022.0, "Median Dwell Time": 51.0, "Total Spend": 101.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209105, 39.949809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "Name": "Pizzeria Stella", "Category": "Restaurants and Other Eating Places", "Address": "420 S 2nd St", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 186.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 2.0, "Total Spend": 37612.0, "Total Transactions": 481.0, "Total Customers": 249.0, "Median Spend per Transaction": 60.6, "Median Spend per Customer": 114.28 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pj9-4d9", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "5723 N Broad St", "LATITUDE": 40.04031, "LONGITUDE": -75.143956, "DATE_RANGE_START": 2022, "Total Visits": 261.0, "Total Visitors": 199.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 9.0, "Total Spend": 311.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 18.82, "Median Spend per Customer": 37.64 }, "geometry": { "type": "Point", "coordinates": [ -75.143956, 40.04031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmb-dd9", "Name": "Town Food Market", "Category": "Grocery Stores", "Address": "428 S 13th St", "LATITUDE": 39.944522, "LONGITUDE": -75.163234, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 80.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 3.0, "Total Spend": 1182.0, "Total Transactions": 96.0, "Total Customers": 19.0, "Median Spend per Transaction": 8.99, "Median Spend per Customer": 42.48 }, "geometry": { "type": "Point", "coordinates": [ -75.163234, 39.944522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-y7q", "Name": "E Mei Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "915 Arch St", "LATITUDE": 39.953596, "LONGITUDE": -75.155422, "DATE_RANGE_START": 2022, "Total Visits": 5087.0, "Total Visitors": 3380.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 61.0, "Total Spend": 18499.0, "Total Transactions": 247.0, "Total Customers": 122.0, "Median Spend per Transaction": 53.42, "Median Spend per Customer": 88.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155422, 39.953596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "Name": "Barbuzzo", "Category": "Restaurants and Other Eating Places", "Address": "110 S 13th St", "LATITUDE": 39.950022, "LONGITUDE": -75.162126, "DATE_RANGE_START": 2022, "Total Visits": 3659.0, "Total Visitors": 2632.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 60.0, "Total Spend": 10055.0, "Total Transactions": 103.0, "Total Customers": 61.0, "Median Spend per Transaction": 85.49, "Median Spend per Customer": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162126, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "Name": "Four Seasons Hotels and Resorts", "Category": "Traveler Accommodation", "Address": "1 N 19th St", "LATITUDE": 39.955061, "LONGITUDE": -75.170762, "DATE_RANGE_START": 2022, "Total Visits": 4214.0, "Total Visitors": 2080.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 337.0, "Total Spend": 14333.0, "Total Transactions": 174.0, "Total Customers": 150.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.92 }, "geometry": { "type": "Point", "coordinates": [ -75.170762, 39.955061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm5-qmk", "Name": "Donna's Convenience Store", "Category": "Grocery Stores", "Address": "2653 S Mildred St", "LATITUDE": 39.915783, "LONGITUDE": -75.161722, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 239.0, "POI_CBG": 421010041022.0, "Median Dwell Time": 212.0, "Total Spend": 100.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 4.16, "Median Spend per Customer": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.161722, 39.915783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfy-zfz", "Name": "The Rook Manayunk", "Category": "Restaurants and Other Eating Places", "Address": "4001 Cresson St", "LATITUDE": 40.021721, "LONGITUDE": -75.215726, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 150.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 42.0, "Total Spend": 30235.0, "Total Transactions": 479.0, "Total Customers": 221.0, "Median Spend per Transaction": 55.36, "Median Spend per Customer": 112.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215726, 40.021721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-6hq", "Name": "Wrap Shack", "Category": "Restaurants and Other Eating Places", "Address": "112 S 11th St", "LATITUDE": 39.949717, "LONGITUDE": -75.158951, "DATE_RANGE_START": 2022, "Total Visits": 497.0, "Total Visitors": 336.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 85.0, "Total Spend": 4149.0, "Total Transactions": 122.0, "Total Customers": 56.0, "Median Spend per Transaction": 29.89, "Median Spend per Customer": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158951, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "Name": "Aldo Lamberti Trattoria", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.874852, "LONGITUDE": -75.241162, "DATE_RANGE_START": 2022, "Total Visits": 10396.0, "Total Visitors": 9338.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 39.0, "Total Spend": 21.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.08, "Median Spend per Customer": 6.08 }, "geometry": { "type": "Point", "coordinates": [ -75.241162, 39.874852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-mc5", "Name": "ABV Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "3421 Richmond St", "LATITUDE": 39.985505, "LONGITUDE": -75.095782, "DATE_RANGE_START": 2022, "Total Visits": 300.0, "Total Visitors": 268.0, "POI_CBG": 421010378002.0, "Median Dwell Time": 3.0, "Total Spend": 459.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 43.5, "Median Spend per Customer": 59.22 }, "geometry": { "type": "Point", "coordinates": [ -75.095782, 39.985505 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7520 City Ave", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2022, "Total Visits": 904.0, "Total Visitors": 620.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 6.0, "Total Spend": 22255.0, "Total Transactions": 1129.0, "Total Customers": 634.0, "Median Spend per Transaction": 10.67, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "Name": "Morgan's Pier", "Category": "Restaurants and Other Eating Places", "Address": "221 N Columbus Blvd", "LATITUDE": 39.955033, "LONGITUDE": -75.13891, "DATE_RANGE_START": 2022, "Total Visits": 720.0, "Total Visitors": 657.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 20.0, "Total Spend": 38756.0, "Total Transactions": 1218.0, "Total Customers": 375.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 66.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13891, 39.955033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-b8v", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "8130 Roosevelt Blvd", "LATITUDE": 40.059227, "LONGITUDE": -75.045575, "DATE_RANGE_START": 2022, "Total Visits": 247.0, "Total Visitors": 218.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 4.0, "Total Spend": 7275.0, "Total Transactions": 279.0, "Total Customers": 185.0, "Median Spend per Transaction": 18.38, "Median Spend per Customer": 27.51 }, "geometry": { "type": "Point", "coordinates": [ -75.045575, 40.059227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ygk", "Name": "QT Vietnamese Sandwich", "Category": "Restaurants and Other Eating Places", "Address": "48 N 10th St", "LATITUDE": 39.953408, "LONGITUDE": -75.156559, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 141.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 272.0, "Total Spend": 461.0, "Total Transactions": 31.0, "Total Customers": 16.0, "Median Spend per Transaction": 14.09, "Median Spend per Customer": 28.18 }, "geometry": { "type": "Point", "coordinates": [ -75.156559, 39.953408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgd-zvf", "Name": "Nafi Food Express", "Category": "Restaurants and Other Eating Places", "Address": "3400 Market St", "LATITUDE": 39.95556, "LONGITUDE": -75.193236, "DATE_RANGE_START": 2022, "Total Visits": 2303.0, "Total Visitors": 1484.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 63.0, "Total Spend": 64.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.18, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.193236, 39.95556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "9173 Roosevelt Blvd Ste 10", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2022, "Total Visits": 423.0, "Total Visitors": 390.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 6.0, "Total Spend": 36311.0, "Total Transactions": 589.0, "Total Customers": 510.0, "Median Spend per Transaction": 44.28, "Median Spend per Customer": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "Name": "Shing Kee", "Category": "Restaurants and Other Eating Places", "Address": "600 Washington Ave Ste 18A", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 124.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 39.0, "Total Spend": 4016.0, "Total Transactions": 64.0, "Total Customers": 35.0, "Median Spend per Transaction": 39.63, "Median Spend per Customer": 77.73 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Knights Rd", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2022, "Total Visits": 1221.0, "Total Visitors": 711.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 3.0, "Total Spend": 6284.0, "Total Transactions": 233.0, "Total Customers": 160.0, "Median Spend per Transaction": 20.03, "Median Spend per Customer": 29.76 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "143 W Fisher Ave", "LATITUDE": 40.031206, "LONGITUDE": -75.124676, "DATE_RANGE_START": 2022, "Total Visits": 1061.0, "Total Visitors": 631.0, "POI_CBG": 421010286005.0, "Median Dwell Time": 3.0, "Total Spend": 614.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 23.72, "Median Spend per Customer": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.124676, 40.031206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-33q", "Name": "LOFT", "Category": "Clothing Stores", "Address": "120 S 36th St", "LATITUDE": 39.953717, "LONGITUDE": -75.195101, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 70.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 6.0, "Total Spend": 4016.0, "Total Transactions": 31.0, "Total Customers": 26.0, "Median Spend per Transaction": 108.04, "Median Spend per Customer": 137.51 }, "geometry": { "type": "Point", "coordinates": [ -75.195101, 39.953717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-8d9", "Name": "Bar Ly Chinatown", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "101 N 11th St", "LATITUDE": 39.954199, "LONGITUDE": -75.157606, "DATE_RANGE_START": 2022, "Total Visits": 587.0, "Total Visitors": 486.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 284.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 30.63, "Median Spend per Customer": 81.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157606, 39.954199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "Name": "Oregon Steaks", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 64.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 93.0, "Total Spend": 17137.0, "Total Transactions": 1118.0, "Total Customers": 406.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 32.75 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1939 Callowhill St", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2022, "Total Visits": 216.0, "Total Visitors": 204.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 32.0, "Total Spend": 8779.0, "Total Transactions": 171.0, "Total Customers": 89.0, "Median Spend per Transaction": 35.89, "Median Spend per Customer": 84.26 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-zs5", "Name": "Lady Love", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "510 South St", "LATITUDE": 39.941785, "LONGITUDE": -75.151232, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 106.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 304.0, "Total Spend": 6419.0, "Total Transactions": 71.0, "Total Customers": 38.0, "Median Spend per Transaction": 57.22, "Median Spend per Customer": 118.91 }, "geometry": { "type": "Point", "coordinates": [ -75.151232, 39.941785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "Name": "New Delhi Indian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4004 Chestnut St", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 134.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 92.0, "Total Spend": 13154.0, "Total Transactions": 368.0, "Total Customers": 171.0, "Median Spend per Transaction": 25.39, "Median Spend per Customer": 53.79 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3617 Lancaster Ave Fl 1", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 148.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 9.0, "Total Spend": 10916.0, "Total Transactions": 112.0, "Total Customers": 47.0, "Median Spend per Transaction": 34.98, "Median Spend per Customer": 58.32 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2751 W Passyunk Ave", "LATITUDE": 39.921602, "LONGITUDE": -75.193164, "DATE_RANGE_START": 2022, "Total Visits": 2176.0, "Total Visitors": 1495.0, "POI_CBG": 421010036003.0, "Median Dwell Time": 4.0, "Total Spend": 1112.0, "Total Transactions": 24.0, "Total Customers": 12.0, "Median Spend per Transaction": 49.98, "Median Spend per Customer": 49.96 }, "geometry": { "type": "Point", "coordinates": [ -75.193164, 39.921602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2300 W Oregon Ave", "LATITUDE": 39.916033, "LONGITUDE": -75.188037, "DATE_RANGE_START": 2022, "Total Visits": 2070.0, "Total Visitors": 1443.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 20.0, "Total Spend": 33251.0, "Total Transactions": 329.0, "Total Customers": 204.0, "Median Spend per Transaction": 70.94, "Median Spend per Customer": 102.75 }, "geometry": { "type": "Point", "coordinates": [ -75.188037, 39.916033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2417 Welsh Rd", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 115.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 864.0, "Total Transactions": 42.0, "Total Customers": 30.0, "Median Spend per Transaction": 17.6, "Median Spend per Customer": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "Name": "Athleta", "Category": "Clothing Stores", "Address": "1722 Walnut St", "LATITUDE": 39.94988, "LONGITUDE": -75.170326, "DATE_RANGE_START": 2022, "Total Visits": 361.0, "Total Visitors": 284.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 17.0, "Total Spend": 13371.0, "Total Transactions": 122.0, "Total Customers": 110.0, "Median Spend per Transaction": 76.5, "Median Spend per Customer": 91.98 }, "geometry": { "type": "Point", "coordinates": [ -75.170326, 39.94988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2000 Hamilton St", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 174.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 9.0, "Total Spend": 54700.0, "Total Transactions": 4927.0, "Total Customers": 2441.0, "Median Spend per Transaction": 9.77, "Median Spend per Customer": 12.76 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pp4-ks5", "Name": "Caring Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "2541 Kensington Ave", "LATITUDE": 39.987937, "LONGITUDE": -75.127658, "DATE_RANGE_START": 2022, "Total Visits": 249.0, "Total Visitors": 157.0, "POI_CBG": 421010161003.0, "Median Dwell Time": 363.0, "Total Spend": 80.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127658, 39.987937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2901 N Broad St", "LATITUDE": 39.99726, "LONGITUDE": -75.153396, "DATE_RANGE_START": 2022, "Total Visits": 1214.0, "Total Visitors": 904.0, "POI_CBG": 421010174002.0, "Median Dwell Time": 4.0, "Total Spend": 9575.0, "Total Transactions": 328.0, "Total Customers": 249.0, "Median Spend per Transaction": 25.03, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153396, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "Name": "Victoria's Secret", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.090585, "LONGITUDE": -74.961564, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 375.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 23.0, "Total Spend": 2452.0, "Total Transactions": 26.0, "Total Customers": 23.0, "Median Spend per Transaction": 98.0, "Median Spend per Customer": 102.75 }, "geometry": { "type": "Point", "coordinates": [ -74.961564, 40.090585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmb-fpv", "Name": "Locust Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "235 S 10th St", "LATITUDE": 39.947233, "LONGITUDE": -75.157426, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 75.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 61.0, "Total Spend": 13290.0, "Total Transactions": 510.0, "Total Customers": 153.0, "Median Spend per Transaction": 20.9, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157426, 39.947233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "Name": "Philly Auto", "Category": "Automobile Dealers", "Address": "4530 Torresdale Ave", "LATITUDE": 40.010118, "LONGITUDE": -75.081162, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 120.0, "POI_CBG": 421010294003.0, "Median Dwell Time": 11.0, "Total Spend": 2995.0, "Total Transactions": 63.0, "Total Customers": 30.0, "Median Spend per Transaction": 26.17, "Median Spend per Customer": 59.25 }, "geometry": { "type": "Point", "coordinates": [ -75.081162, 40.010118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-9j9", "Name": "ALDI", "Category": "Grocery Stores", "Address": "7900 Roosevelt Blvd", "LATITUDE": 40.055278, "LONGITUDE": -75.049853, "DATE_RANGE_START": 2022, "Total Visits": 951.0, "Total Visitors": 632.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 6.0, "Total Spend": 295.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 84.62, "Median Spend per Customer": 84.62 }, "geometry": { "type": "Point", "coordinates": [ -75.049853, 40.055278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6101 Ridge Ave", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2022, "Total Visits": 270.0, "Total Visitors": 138.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 3.0, "Total Spend": 3191.0, "Total Transactions": 220.0, "Total Customers": 68.0, "Median Spend per Transaction": 10.56, "Median Spend per Customer": 17.06 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4334 Frankford Ave", "LATITUDE": 40.012134, "LONGITUDE": -75.088896, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 125.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 4.0, "Total Spend": 1537.0, "Total Transactions": 164.0, "Total Customers": 87.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 8.51 }, "geometry": { "type": "Point", "coordinates": [ -75.088896, 40.012134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2500 Wharton St", "LATITUDE": 39.935654, "LONGITUDE": -75.186436, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 56.0, "POI_CBG": 421010032004.0, "Median Dwell Time": 195.0, "Total Spend": 217.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 19.58, "Median Spend per Customer": 19.58 }, "geometry": { "type": "Point", "coordinates": [ -75.186436, 39.935654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1115 Cottman Ave", "LATITUDE": 40.060462, "LONGITUDE": -75.081398, "DATE_RANGE_START": 2022, "Total Visits": 570.0, "Total Visitors": 430.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 3.0, "Total Spend": 652.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 44.19, "Median Spend per Customer": 47.1 }, "geometry": { "type": "Point", "coordinates": [ -75.081398, 40.060462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6hq", "Name": "Milkboy Philadelphia", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1100 Chestnut St", "LATITUDE": 39.949997, "LONGITUDE": -75.158798, "DATE_RANGE_START": 2022, "Total Visits": 836.0, "Total Visitors": 580.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 30.0, "Total Spend": 3992.0, "Total Transactions": 56.0, "Total Customers": 30.0, "Median Spend per Transaction": 41.89, "Median Spend per Customer": 76.84 }, "geometry": { "type": "Point", "coordinates": [ -75.158798, 39.949997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vvf", "Name": "Champion", "Category": "Clothing Stores", "Address": "1519 Franklin Mills Cir Ste 313", "LATITUDE": 40.089655, "LONGITUDE": -74.961736, "DATE_RANGE_START": 2022, "Total Visits": 213.0, "Total Visitors": 157.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 40.0, "Total Spend": 114.0, "Total Transactions": 23.0, "Total Customers": 7.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961736, 40.089655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yd9", "Name": "Tai Lake", "Category": "Restaurants and Other Eating Places", "Address": "134 N 10th St", "LATITUDE": 39.954672, "LONGITUDE": -75.156344, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 117.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 29.0, "Total Spend": 7817.0, "Total Transactions": 89.0, "Total Customers": 54.0, "Median Spend per Transaction": 68.75, "Median Spend per Customer": 128.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156344, 39.954672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "Name": "Cafe Lift", "Category": "Restaurants and Other Eating Places", "Address": "428 N 13th St", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 57.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 41.0, "Total Spend": 27497.0, "Total Transactions": 664.0, "Total Customers": 336.0, "Median Spend per Transaction": 35.65, "Median Spend per Customer": 66.16 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-t9z", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "804 Walnut St", "LATITUDE": 39.947992, "LONGITUDE": -75.154441, "DATE_RANGE_START": 2022, "Total Visits": 990.0, "Total Visitors": 791.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 32.0, "Total Spend": 1974.0, "Total Transactions": 169.0, "Total Customers": 75.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 9.22 }, "geometry": { "type": "Point", "coordinates": [ -75.154441, 39.947992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "Name": "Venu", "Category": "Restaurants and Other Eating Places", "Address": "13th & Packer Ave", "LATITUDE": 39.911404, "LONGITUDE": -75.170366, "DATE_RANGE_START": 2022, "Total Visits": 3253.0, "Total Visitors": 2610.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 1.0, "Total Spend": 28817.0, "Total Transactions": 929.0, "Total Customers": 321.0, "Median Spend per Transaction": 20.17, "Median Spend per Customer": 66.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170366, 39.911404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7913 Oxford Ave # 29", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2022, "Total Visits": 1120.0, "Total Visitors": 765.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 2.0, "Total Spend": 99534.0, "Total Transactions": 4817.0, "Total Customers": 2227.0, "Median Spend per Transaction": 13.36, "Median Spend per Customer": 24.17 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-ty9", "Name": "La Famiglia Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "8 S Front St", "LATITUDE": 39.949369, "LONGITUDE": -75.142406, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 77.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 370.0, "Total Spend": 1872.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 153.7, "Median Spend per Customer": 307.4 }, "geometry": { "type": "Point", "coordinates": [ -75.142406, 39.949369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "Name": "Milkcrate Cafe", "Category": "Restaurants and Other Eating Places", "Address": "400 E Girard Ave", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 118.0, "POI_CBG": 421010143002.0, "Median Dwell Time": 92.0, "Total Spend": 31538.0, "Total Transactions": 2033.0, "Total Customers": 476.0, "Median Spend per Transaction": 10.1, "Median Spend per Customer": 39.15 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22g@628-pmb-92k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "901 Market St", "LATITUDE": 39.951633, "LONGITUDE": -75.155742, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 631.0, "Total Transactions": 110.0, "Total Customers": 63.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 5.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155742, 39.951633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4017 N 5th St # 59", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 160.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 3.0, "Total Spend": 2466.0, "Total Transactions": 265.0, "Total Customers": 125.0, "Median Spend per Transaction": 7.43, "Median Spend per Customer": 13.34 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pj2-d35", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1050 E Hunting Park Ave", "LATITUDE": 40.010891, "LONGITUDE": -75.107156, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 94.0, "POI_CBG": 421010191006.0, "Median Dwell Time": 7.0, "Total Spend": 3898.0, "Total Transactions": 37.0, "Total Customers": 31.0, "Median Spend per Transaction": 45.06, "Median Spend per Customer": 85.81 }, "geometry": { "type": "Point", "coordinates": [ -75.107156, 40.010891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-mp9", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "1600 John F Kennedy Blvd", "LATITUDE": 39.9536, "LONGITUDE": -75.167205, "DATE_RANGE_START": 2022, "Total Visits": 2552.0, "Total Visitors": 1777.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 30.0, "Total Spend": 33.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.4, "Median Spend per Customer": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167205, 39.9536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-jjv", "Name": "MAC Cosmetics", "Category": "Health and Personal Care Stores", "Address": "1734 Chestnut St Spc # Unit A", "LATITUDE": 39.951489, "LONGITUDE": -75.170193, "DATE_RANGE_START": 2022, "Total Visits": 1946.0, "Total Visitors": 1375.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 230.0, "Total Spend": 928.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 41.58, "Median Spend per Customer": 41.58 }, "geometry": { "type": "Point", "coordinates": [ -75.170193, 39.951489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-s89", "Name": "SuitSupply", "Category": "Clothing Stores", "Address": "1601 Locust St", "LATITUDE": 39.948725, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 540.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 30993.0, "Total Transactions": 75.0, "Total Customers": 38.0, "Median Spend per Transaction": 358.0, "Median Spend per Customer": 774.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.948725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj9-4d9", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "5747 N Broad St", "LATITUDE": 40.039716, "LONGITUDE": -75.144869, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 80.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 1.0, "Total Spend": 3317.0, "Total Transactions": 38.0, "Total Customers": 31.0, "Median Spend per Transaction": 74.74, "Median Spend per Customer": 91.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144869, 40.039716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-7yv", "Name": "Bee Natural", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "51 N 12th St", "LATITUDE": 39.953663, "LONGITUDE": -75.158929, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 3840.0, "Total Transactions": 181.0, "Total Customers": 105.0, "Median Spend per Transaction": 16.69, "Median Spend per Customer": 29.19 }, "geometry": { "type": "Point", "coordinates": [ -75.158929, 39.953663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvw-r49", "Name": "Passero's Gourmet Coffee Co", "Category": "Restaurants and Other Eating Places", "Address": "100 N Wanamaker St", "LATITUDE": 39.96327, "LONGITUDE": -75.23701, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 3.0, "POI_CBG": 421010095002.0, "Median Dwell Time": null, "Total Spend": 1984.0, "Total Transactions": 301.0, "Total Customers": 75.0, "Median Spend per Transaction": 5.27, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.23701, 39.96327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "Name": "Frank's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3600 Fisk Ave", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 567.0, "Total Spend": 5633.0, "Total Transactions": 186.0, "Total Customers": 75.0, "Median Spend per Transaction": 26.69, "Median Spend per Customer": 69.86 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-zcq", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "2801 N Howard St", "LATITUDE": 39.992691, "LONGITUDE": -75.131414, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010176014.0, "Median Dwell Time": 4.0, "Total Spend": 157.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131414, 39.992691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pm4-pjv", "Name": "Cardenas Oil & Vinegar Taproom", "Category": "Specialty Food Stores", "Address": "942 S 9th St", "LATITUDE": 39.937768, "LONGITUDE": -75.158238, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 20.0, "Total Spend": 1584.0, "Total Transactions": 31.0, "Total Customers": 21.0, "Median Spend per Transaction": 29.95, "Median Spend per Customer": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.158238, 39.937768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "Name": "Cafe Thanh Truc", "Category": "Restaurants and Other Eating Places", "Address": "1037 S 8th St", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 25.0, "Total Spend": 2916.0, "Total Transactions": 78.0, "Total Customers": 38.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 84.52 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "Name": "Solly Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8108 Bustleton Ave", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 33.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 359.0, "Total Spend": 2890.0, "Total Transactions": 89.0, "Total Customers": 35.0, "Median Spend per Transaction": 27.12, "Median Spend per Customer": 68.01 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfy-d35", "Name": "Something Different", "Category": "Florists", "Address": "399 Leverington Ave", "LATITUDE": 40.033667, "LONGITUDE": -75.220915, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010213005.0, "Median Dwell Time": 6.0, "Total Spend": 311.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 37.85, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220915, 40.033667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-225@628-pjf-kvf", "Name": "Palladio Custom Framing", "Category": "Home Furnishings Stores", "Address": "8623 Germantown Ave", "LATITUDE": 40.077213, "LONGITUDE": -75.207917, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 28.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 4.0, "Total Spend": 771.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 110.58, "Median Spend per Customer": 221.16 }, "geometry": { "type": "Point", "coordinates": [ -75.207917, 40.077213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6701 Ridge Ave", "LATITUDE": 40.040652, "LONGITUDE": -75.223499, "DATE_RANGE_START": 2022, "Total Visits": 1744.0, "Total Visitors": 1103.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 4.0, "Total Spend": 194482.0, "Total Transactions": 8706.0, "Total Customers": 3981.0, "Median Spend per Transaction": 14.21, "Median Spend per Customer": 28.55 }, "geometry": { "type": "Point", "coordinates": [ -75.223499, 40.040652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pj2-94v", "Name": "Hoagies Plus", "Category": "Restaurants and Other Eating Places", "Address": "752 E Tioga St", "LATITUDE": 40.0012, "LONGITUDE": -75.114597, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 98.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 89.0, "Total Spend": 1018.0, "Total Transactions": 44.0, "Total Customers": 21.0, "Median Spend per Transaction": 10.26, "Median Spend per Customer": 45.14 }, "geometry": { "type": "Point", "coordinates": [ -75.114597, 40.0012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@628-pmf-mrk", "Name": "Bain's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St", "LATITUDE": 39.952412, "LONGITUDE": -75.168016, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 78.0, "Total Spend": 153.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.168016, 39.952412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6391 Oxford Ave", "LATITUDE": 40.045014, "LONGITUDE": -75.08777, "DATE_RANGE_START": 2022, "Total Visits": 512.0, "Total Visitors": 352.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 2.0, "Total Spend": 10803.0, "Total Transactions": 1258.0, "Total Customers": 554.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.08777, 40.045014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "Name": "Kaffa Crossing", "Category": "Restaurants and Other Eating Places", "Address": "4423 Chestnut St", "LATITUDE": 39.956859, "LONGITUDE": -75.210414, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 17.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 1364.0, "Total Spend": 5466.0, "Total Transactions": 120.0, "Total Customers": 63.0, "Median Spend per Transaction": 39.32, "Median Spend per Customer": 77.04 }, "geometry": { "type": "Point", "coordinates": [ -75.210414, 39.956859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-phn-qj9", "Name": "Uptown Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8131 Stenton Ave", "LATITUDE": 40.067574, "LONGITUDE": -75.179009, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 10.0, "Total Spend": 3082.0, "Total Transactions": 52.0, "Total Customers": 21.0, "Median Spend per Transaction": 52.0, "Median Spend per Customer": 129.8 }, "geometry": { "type": "Point", "coordinates": [ -75.179009, 40.067574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "Name": "Girard Mini Market", "Category": "Grocery Stores", "Address": "2901 W Girard Ave", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 30.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 3.0, "Total Spend": 121.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 4.75, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7241 Torresdale Ave", "LATITUDE": 40.029702, "LONGITUDE": -75.035384, "DATE_RANGE_START": 2022, "Total Visits": 1429.0, "Total Visitors": 930.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 3.0, "Total Spend": 372.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 29.38, "Median Spend per Customer": 29.38 }, "geometry": { "type": "Point", "coordinates": [ -75.035384, 40.029702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5680 Rising Sun Ave", "LATITUDE": 40.039167, "LONGITUDE": -75.110538, "DATE_RANGE_START": 2022, "Total Visits": 1808.0, "Total Visitors": 1192.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 4.0, "Total Spend": 1900.0, "Total Transactions": 35.0, "Total Customers": 28.0, "Median Spend per Transaction": 52.01, "Median Spend per Customer": 63.36 }, "geometry": { "type": "Point", "coordinates": [ -75.110538, 40.039167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgc-x5z", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "1575 N 52nd St", "LATITUDE": 39.9785, "LONGITUDE": -75.225466, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 141.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 22.0, "Total Spend": 6110.0, "Total Transactions": 174.0, "Total Customers": 145.0, "Median Spend per Transaction": 28.72, "Median Spend per Customer": 34.94 }, "geometry": { "type": "Point", "coordinates": [ -75.225466, 39.9785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "Name": "Penn Hardware", "Category": "Building Material and Supplies Dealers", "Address": "7404 Frankford Ave", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 80.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 2.0, "Total Spend": 2292.0, "Total Transactions": 80.0, "Total Customers": 42.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 27.56 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-vvf", "Name": "Steve Madden", "Category": "Shoe Stores", "Address": "1455 Franklin Mills Cir Spc 155", "LATITUDE": 40.089544, "LONGITUDE": -74.961668, "DATE_RANGE_START": 2022, "Total Visits": 279.0, "Total Visitors": 263.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 844.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 72.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961668, 40.089544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "Name": "Quails", "Category": "Clothing Stores", "Address": "1428 Franklin Mills Cir", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 178.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 6866.0, "Total Transactions": 49.0, "Total Customers": 21.0, "Median Spend per Transaction": 42.99, "Median Spend per Customer": 82.47 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "Name": "Ross Stores", "Category": "Department Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.912498, "LONGITUDE": -75.15633, "DATE_RANGE_START": 2022, "Total Visits": 1169.0, "Total Visitors": 932.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 20.0, "Total Spend": 5214.0, "Total Transactions": 150.0, "Total Customers": 127.0, "Median Spend per Transaction": 31.18, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15633, 39.912498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4314 Locust St", "LATITUDE": 39.953381, "LONGITUDE": -75.209698, "DATE_RANGE_START": 2022, "Total Visits": 784.0, "Total Visitors": 497.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 7.0, "Total Spend": 38780.0, "Total Transactions": 2085.0, "Total Customers": 976.0, "Median Spend per Transaction": 12.78, "Median Spend per Customer": 21.81 }, "geometry": { "type": "Point", "coordinates": [ -75.209698, 39.953381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1443 S 7th St", "LATITUDE": 39.930286, "LONGITUDE": -75.155935, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 103.0, "POI_CBG": 421010028013.0, "Median Dwell Time": 4.0, "Total Spend": 17325.0, "Total Transactions": 890.0, "Total Customers": 368.0, "Median Spend per Transaction": 14.75, "Median Spend per Customer": 23.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155935, 39.930286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-y9z", "Name": "Black and Nobel", "Category": "Health and Personal Care Stores", "Address": "411 South St", "LATITUDE": 39.941799, "LONGITUDE": -75.149568, "DATE_RANGE_START": 2022, "Total Visits": 949.0, "Total Visitors": 864.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 11.0, "Total Spend": 197.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.149568, 39.941799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "Name": "The Last Word Bookshop", "Category": "Book Stores and News Dealers", "Address": "220 S 40th St", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2022, "Total Visits": 598.0, "Total Visitors": 517.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 70.0, "Total Spend": 3645.0, "Total Transactions": 188.0, "Total Customers": 96.0, "Median Spend per Transaction": 13.45, "Median Spend per Customer": 21.49 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "Name": "Open House", "Category": "Home Furnishings Stores", "Address": "107 S 13th St", "LATITUDE": 39.950268, "LONGITUDE": -75.161745, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 152.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 84.0, "Total Spend": 25611.0, "Total Transactions": 528.0, "Total Customers": 270.0, "Median Spend per Transaction": 36.72, "Median Spend per Customer": 60.94 }, "geometry": { "type": "Point", "coordinates": [ -75.161745, 39.950268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-swk", "Name": "Philly Bride", "Category": "Clothing Stores", "Address": "16 S 3rd St", "LATITUDE": 39.949775, "LONGITUDE": -75.146016, "DATE_RANGE_START": 2022, "Total Visits": 1148.0, "Total Visitors": 1028.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 20.0, "Total Spend": 7771.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 1115.11, "Median Spend per Customer": 2230.22 }, "geometry": { "type": "Point", "coordinates": [ -75.146016, 39.949775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@63s-dvr-hyv", "Name": "Woodland and Conveince", "Category": "Grocery Stores", "Address": "6524 Woodland Ave", "LATITUDE": 39.925089, "LONGITUDE": -75.23477, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 12.0, "POI_CBG": 421010063001.0, "Median Dwell Time": 185.0, "Total Spend": 153.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23477, 39.925089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave # B", "LATITUDE": 39.913456, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 21.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 292.0, "Total Spend": 1093.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 49.99, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pg9-t9z", "Name": "A&A Food Market", "Category": "Grocery Stores", "Address": "1700 Wallace St", "LATITUDE": 39.965619, "LONGITUDE": -75.165824, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 19.0, "POI_CBG": 421010134022.0, "Median Dwell Time": 1.0, "Total Spend": 3410.0, "Total Transactions": 378.0, "Total Customers": 117.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 20.66 }, "geometry": { "type": "Point", "coordinates": [ -75.165824, 39.965619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg2-hdv", "Name": "Golden Crust Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "7153 Germantown Ave", "LATITUDE": 40.059871, "LONGITUDE": -75.190661, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 21.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 222.0, "Total Spend": 4325.0, "Total Transactions": 162.0, "Total Customers": 71.0, "Median Spend per Transaction": 23.31, "Median Spend per Customer": 43.34 }, "geometry": { "type": "Point", "coordinates": [ -75.190661, 40.059871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-qmk", "Name": "Yeeroh", "Category": "Restaurants and Other Eating Places", "Address": "1412 South St", "LATITUDE": 39.943614, "LONGITUDE": -75.166117, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 3.0, "Total Spend": 5207.0, "Total Transactions": 308.0, "Total Customers": 103.0, "Median Spend per Transaction": 13.39, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.166117, 39.943614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "Name": "Peddler Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2100 Spring St", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 1.0, "Total Spend": 5790.0, "Total Transactions": 700.0, "Total Customers": 235.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-223@628-pm3-vpv", "Name": "Asian Fusion", "Category": "Restaurants and Other Eating Places", "Address": "1739 E Passyunk Ave", "LATITUDE": 39.927745, "LONGITUDE": -75.16578, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 26.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 1.0, "Total Spend": 164.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 13.65, "Median Spend per Customer": 27.3 }, "geometry": { "type": "Point", "coordinates": [ -75.16578, 39.927745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2ff", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2615 N American St", "LATITUDE": 39.99066, "LONGITUDE": -75.135816, "DATE_RANGE_START": 2022, "Total Visits": 286.0, "Total Visitors": 239.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 2.0, "Total Spend": 94.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 12.61, "Median Spend per Customer": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.135816, 39.99066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "716 South St", "LATITUDE": 39.942147, "LONGITUDE": -75.154573, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 81.0, "Total Spend": 15962.0, "Total Transactions": 516.0, "Total Customers": 437.0, "Median Spend per Transaction": 28.88, "Median Spend per Customer": 31.85 }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.942147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2211 Stenton Ave", "LATITUDE": 40.055857, "LONGITUDE": -75.157863, "DATE_RANGE_START": 2022, "Total Visits": 510.0, "Total Visitors": 333.0, "POI_CBG": 421010265006.0, "Median Dwell Time": 4.0, "Total Spend": 9830.0, "Total Transactions": 955.0, "Total Customers": 427.0, "Median Spend per Transaction": 8.4, "Median Spend per Customer": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157863, 40.055857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-246@628-pmb-835", "Name": "Frank's Alot", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.95318, "LONGITUDE": -75.159402, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 7419.0, "Total Transactions": 451.0, "Total Customers": 232.0, "Median Spend per Transaction": 14.74, "Median Spend per Customer": 27.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159402, 39.95318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2tv", "Name": "The Monkey & The Elephant", "Category": "Restaurants and Other Eating Places", "Address": "1227 N 4th St", "LATITUDE": 39.970901, "LONGITUDE": -75.142611, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 181.0, "POI_CBG": 421010144001.0, "Median Dwell Time": 164.0, "Total Spend": 177.0, "Total Transactions": 14.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.07, "Median Spend per Customer": 50.84 }, "geometry": { "type": "Point", "coordinates": [ -75.142611, 39.970901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9910 Frankford Ave Ste 250", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2022, "Total Visits": 432.0, "Total Visitors": 282.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 7.0, "Total Spend": 7211.0, "Total Transactions": 359.0, "Total Customers": 211.0, "Median Spend per Transaction": 12.17, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8m-v2k", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "6406 Sackett St", "LATITUDE": 40.029454, "LONGITUDE": -75.058288, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 89.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 3.0, "Total Spend": 4502.0, "Total Transactions": 45.0, "Total Customers": 40.0, "Median Spend per Transaction": 45.51, "Median Spend per Customer": 41.02 }, "geometry": { "type": "Point", "coordinates": [ -75.058288, 40.029454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "456 N 5th St", "LATITUDE": 39.959702, "LONGITUDE": -75.147615, "DATE_RANGE_START": 2022, "Total Visits": 364.0, "Total Visitors": 244.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 118.0, "Total Spend": 291300.0, "Total Transactions": 7300.0, "Total Customers": 4051.0, "Median Spend per Transaction": 24.63, "Median Spend per Customer": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.147615, 39.959702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "Name": "San Lucas Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2000 S Bouvier St", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 21.0, "Total Spend": 2284.0, "Total Transactions": 87.0, "Total Customers": 30.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 54.84 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg8-d5f", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "1800 N 31st St", "LATITUDE": 39.983854, "LONGITUDE": -75.184956, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 19.0, "POI_CBG": 421010151011.0, "Median Dwell Time": 12.0, "Total Spend": 185.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 9.88, "Median Spend per Customer": 19.76 }, "geometry": { "type": "Point", "coordinates": [ -75.184956, 39.983854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "Name": "Sunny Side Diner", "Category": "Restaurants and Other Eating Places", "Address": "5948 Market St", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 4.0, "Total Spend": 961.0, "Total Transactions": 44.0, "Total Customers": 28.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 19.45 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-mzf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1601 John F Kennedy Blvd", "LATITUDE": 39.954224, "LONGITUDE": -75.167482, "DATE_RANGE_START": 2022, "Total Visits": 4749.0, "Total Visitors": 2620.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 40.0, "Total Spend": 1446.0, "Total Transactions": 249.0, "Total Customers": 113.0, "Median Spend per Transaction": 4.47, "Median Spend per Customer": 5.48 }, "geometry": { "type": "Point", "coordinates": [ -75.167482, 39.954224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-yd9", "Name": "Somerton Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "13510 Bustleton Ave", "LATITUDE": 40.129213, "LONGITUDE": -75.014014, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 141.0, "POI_CBG": 421010365013.0, "Median Dwell Time": 1.0, "Total Spend": 612.0, "Total Transactions": 26.0, "Total Customers": 14.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.014014, 40.129213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-4vz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "9201 Roosevelt Blvd", "LATITUDE": 40.077481, "LONGITUDE": -75.031225, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 87.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 372.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 14.13, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.031225, 40.077481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "10901C Bustleton Ave", "LATITUDE": 40.112307, "LONGITUDE": -75.022895, "DATE_RANGE_START": 2022, "Total Visits": 1131.0, "Total Visitors": 835.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 4.0, "Total Spend": 6761.0, "Total Transactions": 341.0, "Total Customers": 216.0, "Median Spend per Transaction": 11.79, "Median Spend per Customer": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.022895, 40.112307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "Name": "Jomici Apothecary", "Category": "Health and Personal Care Stores", "Address": "273 S 15th St", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2022, "Total Visits": 328.0, "Total Visitors": 195.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 374.0, "Total Spend": 448.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 59.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "Name": "Sunglass Hut", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 258", "LATITUDE": 39.952036, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 73.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 2632.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 215.46, "Median Spend per Customer": 213.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "1037 Chestnut St", "LATITUDE": 39.950371, "LONGITUDE": -75.158373, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 185.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 15.0, "Total Spend": 8174.0, "Total Transactions": 713.0, "Total Customers": 523.0, "Median Spend per Transaction": 10.43, "Median Spend per Customer": 11.96 }, "geometry": { "type": "Point", "coordinates": [ -75.158373, 39.950371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "716 Adams Ave", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 110.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 7.0, "Total Spend": 258.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 16.18, "Median Spend per Customer": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-6ff", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "10188 Bustleton Ave", "LATITUDE": 40.107593, "LONGITUDE": -75.02698, "DATE_RANGE_START": 2022, "Total Visits": 880.0, "Total Visitors": 646.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 4.0, "Total Spend": 2949.0, "Total Transactions": 118.0, "Total Customers": 56.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.02698, 40.107593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 W Cheltenham Ave", "LATITUDE": 40.081571, "LONGITUDE": -75.172058, "DATE_RANGE_START": 2022, "Total Visits": 1021.0, "Total Visitors": 627.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 4.0, "Total Spend": 598.0, "Total Transactions": 24.0, "Total Customers": 16.0, "Median Spend per Transaction": 21.23, "Median Spend per Customer": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.172058, 40.081571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-6ff", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "924 Walnut St", "LATITUDE": 39.948341, "LONGITUDE": -75.157035, "DATE_RANGE_START": 2022, "Total Visits": 1664.0, "Total Visitors": 981.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 130.0, "Total Spend": 527.0, "Total Transactions": 35.0, "Total Customers": 33.0, "Median Spend per Transaction": 15.46, "Median Spend per Customer": 15.19 }, "geometry": { "type": "Point", "coordinates": [ -75.157035, 39.948341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-r49", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6391 Oxford Ave", "LATITUDE": 40.044228, "LONGITUDE": -75.087251, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 54.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 68.0, "Total Spend": 4049.0, "Total Transactions": 145.0, "Total Customers": 125.0, "Median Spend per Transaction": 25.73, "Median Spend per Customer": 29.39 }, "geometry": { "type": "Point", "coordinates": [ -75.087251, 40.044228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "Name": "Crazy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1837 Chestnut St", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2022, "Total Visits": 308.0, "Total Visitors": 251.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 4.0, "Total Spend": 6756.0, "Total Transactions": 186.0, "Total Customers": 105.0, "Median Spend per Transaction": 23.6, "Median Spend per Customer": 41.6 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmb-9mk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "101 N Broad St", "LATITUDE": 39.954692, "LONGITUDE": -75.162815, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 71.0, "Total Spend": 972.0, "Total Transactions": 122.0, "Total Customers": 75.0, "Median Spend per Transaction": 6.97, "Median Spend per Customer": 8.53 }, "geometry": { "type": "Point", "coordinates": [ -75.162815, 39.954692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7104 Ridge Ave", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 176.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 2.0, "Total Spend": 12610.0, "Total Transactions": 1531.0, "Total Customers": 721.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p8j-d5f", "Name": "Icemoon", "Category": "Restaurants and Other Eating Places", "Address": "7260 Frankford Ave", "LATITUDE": 40.036801, "LONGITUDE": -75.04133, "DATE_RANGE_START": 2022, "Total Visits": 289.0, "Total Visitors": 261.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 10.0, "Total Spend": 3456.0, "Total Transactions": 249.0, "Total Customers": 124.0, "Median Spend per Transaction": 12.59, "Median Spend per Customer": 24.54 }, "geometry": { "type": "Point", "coordinates": [ -75.04133, 40.036801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8y9", "Name": "Windsor", "Category": "Clothing Stores", "Address": "901 Market St Spc C200", "LATITUDE": 39.951878, "LONGITUDE": -75.155445, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 17071.0, "Total Transactions": 82.0, "Total Customers": 45.0, "Median Spend per Transaction": 90.0, "Median Spend per Customer": 153.68 }, "geometry": { "type": "Point", "coordinates": [ -75.155445, 39.951878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "501 W Lehigh Ave", "LATITUDE": 39.992376, "LONGITUDE": -75.140508, "DATE_RANGE_START": 2022, "Total Visits": 1085.0, "Total Visitors": 695.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 4.0, "Total Spend": 2762.0, "Total Transactions": 78.0, "Total Customers": 52.0, "Median Spend per Transaction": 31.08, "Median Spend per Customer": 37.63 }, "geometry": { "type": "Point", "coordinates": [ -75.140508, 39.992376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvw-mrk", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "30 S 52nd St", "LATITUDE": 39.958965, "LONGITUDE": -75.2254, "DATE_RANGE_START": 2022, "Total Visits": 446.0, "Total Visitors": 315.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 60.0, "Total Spend": 2086.0, "Total Transactions": 12.0, "Total Customers": 3.0, "Median Spend per Transaction": 110.0, "Median Spend per Customer": 598.73 }, "geometry": { "type": "Point", "coordinates": [ -75.2254, 39.958965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1215 Filbert St", "LATITUDE": 39.953206, "LONGITUDE": -75.160514, "DATE_RANGE_START": 2022, "Total Visits": 632.0, "Total Visitors": 561.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 3945.0, "Total Transactions": 321.0, "Total Customers": 174.0, "Median Spend per Transaction": 6.68, "Median Spend per Customer": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.160514, 39.953206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1900 Welsh Rd # 10", "LATITUDE": 40.08189, "LONGITUDE": -75.037804, "DATE_RANGE_START": 2022, "Total Visits": 409.0, "Total Visitors": 284.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 3.0, "Total Spend": 381.0, "Total Transactions": 31.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.37, "Median Spend per Customer": 12.93 }, "geometry": { "type": "Point", "coordinates": [ -75.037804, 40.08189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-dvz", "Name": "Quick Stop", "Category": "Grocery Stores", "Address": "3001 Kensington Ave", "LATITUDE": 39.993791, "LONGITUDE": -75.117865, "DATE_RANGE_START": 2022, "Total Visits": 486.0, "Total Visitors": 340.0, "POI_CBG": 421010178005.0, "Median Dwell Time": 5.0, "Total Spend": 2212.0, "Total Transactions": 197.0, "Total Customers": 91.0, "Median Spend per Transaction": 11.23, "Median Spend per Customer": 22.55 }, "geometry": { "type": "Point", "coordinates": [ -75.117865, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9440 State Rd", "LATITUDE": 40.049354, "LONGITUDE": -74.989522, "DATE_RANGE_START": 2022, "Total Visits": 1566.0, "Total Visitors": 868.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 3.0, "Total Spend": 20621.0, "Total Transactions": 2010.0, "Total Customers": 826.0, "Median Spend per Transaction": 8.82, "Median Spend per Customer": 13.61 }, "geometry": { "type": "Point", "coordinates": [ -74.989522, 40.049354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "164 W Chelten Ave", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2022, "Total Visits": 744.0, "Total Visitors": 429.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 58.0, "Total Spend": 14882.0, "Total Transactions": 777.0, "Total Customers": 371.0, "Median Spend per Transaction": 11.98, "Median Spend per Customer": 26.15 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5834 Pulaski Ave", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2022, "Total Visits": 577.0, "Total Visitors": 392.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 12.0, "Total Spend": 4406.0, "Total Transactions": 162.0, "Total Customers": 108.0, "Median Spend per Transaction": 21.36, "Median Spend per Customer": 28.26 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p7w-x3q", "Name": "Mobil", "Category": "Gasoline Stations", "Address": "3301 Tyson Ave", "LATITUDE": 40.035465, "LONGITUDE": -75.049236, "DATE_RANGE_START": 2022, "Total Visits": 1678.0, "Total Visitors": 969.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 4.0, "Total Spend": 2632.0, "Total Transactions": 26.0, "Total Customers": 17.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 33.89 }, "geometry": { "type": "Point", "coordinates": [ -75.049236, 40.035465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3230 Richmond St", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2022, "Total Visits": 1568.0, "Total Visitors": 895.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 3.0, "Total Spend": 28457.0, "Total Transactions": 2565.0, "Total Customers": 1118.0, "Median Spend per Transaction": 9.34, "Median Spend per Customer": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-nkf", "Name": "Dave & Buster's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "325 N Columbus Blvd", "LATITUDE": 39.956182, "LONGITUDE": -75.138382, "DATE_RANGE_START": 2022, "Total Visits": 3044.0, "Total Visitors": 2434.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 94.0, "Total Spend": 397.0, "Total Transactions": 19.0, "Total Customers": 7.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 51.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138382, 39.956182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "Name": "The Love", "Category": "Restaurants and Other Eating Places", "Address": "130 S 18th St", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2022, "Total Visits": 4134.0, "Total Visitors": 2798.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 51.0, "Total Spend": 96514.0, "Total Transactions": 833.0, "Total Customers": 441.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 185.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-p7q", "Name": "Turning Heads", "Category": "Clothing Stores", "Address": "2731 Germantown Ave", "LATITUDE": 39.993848, "LONGITUDE": -75.147504, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010175003.0, "Median Dwell Time": null, "Total Spend": 1293.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 79.0, "Median Spend per Customer": 158.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147504, 39.993848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "9717 Roosevelt Blvd", "LATITUDE": 40.08158, "LONGITUDE": -75.02629, "DATE_RANGE_START": 2022, "Total Visits": 530.0, "Total Visitors": 488.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 6.0, "Total Spend": 12309.0, "Total Transactions": 300.0, "Total Customers": 247.0, "Median Spend per Transaction": 31.49, "Median Spend per Customer": 36.09 }, "geometry": { "type": "Point", "coordinates": [ -75.02629, 40.08158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "Name": "Gaffney Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "5401 Germantown Ave", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 132.0, "POI_CBG": 421010246001.0, "Median Dwell Time": 11.0, "Total Spend": 6792.0, "Total Transactions": 200.0, "Total Customers": 87.0, "Median Spend per Transaction": 21.41, "Median Spend per Customer": 43.89 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11000 Roosevelt Blvd Ste 3", "LATITUDE": 40.101947, "LONGITUDE": -75.011258, "DATE_RANGE_START": 2022, "Total Visits": 4228.0, "Total Visitors": 3019.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 19.0, "Total Spend": 133894.0, "Total Transactions": 2903.0, "Total Customers": 1739.0, "Median Spend per Transaction": 29.47, "Median Spend per Customer": 47.55 }, "geometry": { "type": "Point", "coordinates": [ -75.011258, 40.101947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "Name": "Northeast Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "7324 Castor Ave", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2022, "Total Visits": 256.0, "Total Visitors": 124.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 545.0, "Total Spend": 6144.0, "Total Transactions": 256.0, "Total Customers": 89.0, "Median Spend per Transaction": 22.75, "Median Spend per Customer": 53.4 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-w8v", "Name": "Champs Sports", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2329 Cottman Avenue Space 43 & 44", "LATITUDE": 40.048335, "LONGITUDE": -75.058283, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 61.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 131.0, "Total Spend": 9024.0, "Total Transactions": 96.0, "Total Customers": 68.0, "Median Spend per Transaction": 92.0, "Median Spend per Customer": 95.0 }, "geometry": { "type": "Point", "coordinates": [ -75.058283, 40.048335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2489 Aramingo Ave", "LATITUDE": 39.974271, "LONGITUDE": -75.11985, "DATE_RANGE_START": 2022, "Total Visits": 423.0, "Total Visitors": 315.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 7.0, "Total Spend": 708.0, "Total Transactions": 49.0, "Total Customers": 42.0, "Median Spend per Transaction": 8.77, "Median Spend per Customer": 8.05 }, "geometry": { "type": "Point", "coordinates": [ -75.11985, 39.974271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-qvf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.03237, "LONGITUDE": -75.101559, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 145.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 4.0, "Total Spend": 6432.0, "Total Transactions": 87.0, "Total Customers": 66.0, "Median Spend per Transaction": 29.1, "Median Spend per Customer": 44.52 }, "geometry": { "type": "Point", "coordinates": [ -75.101559, 40.03237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfx-ks5", "Name": "Gregs Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4460 Main St", "LATITUDE": 40.026584, "LONGITUDE": -75.226738, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010214001.0, "Median Dwell Time": null, "Total Spend": 5223.0, "Total Transactions": 223.0, "Total Customers": 110.0, "Median Spend per Transaction": 21.06, "Median Spend per Customer": 39.36 }, "geometry": { "type": "Point", "coordinates": [ -75.226738, 40.026584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "Name": "Neighborhood Books", "Category": "Book Stores and News Dealers", "Address": "1906 South St", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2022, "Total Visits": 253.0, "Total Visitors": 167.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 241.0, "Total Spend": 1587.0, "Total Transactions": 78.0, "Total Customers": 38.0, "Median Spend per Transaction": 14.7, "Median Spend per Customer": 31.87 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "Name": "Fairdale Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4019 Fairdale Rd", "LATITUDE": 40.084494, "LONGITUDE": -74.972673, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 49.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 3.0, "Total Spend": 287.0, "Total Transactions": 14.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.72, "Median Spend per Customer": 82.33 }, "geometry": { "type": "Point", "coordinates": [ -74.972673, 40.084494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-kfz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2801 W Dauphin St Ste 5", "LATITUDE": 39.991954, "LONGITUDE": -75.178916, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 164.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 11.0, "Total Spend": 4200.0, "Total Transactions": 190.0, "Total Customers": 131.0, "Median Spend per Transaction": 15.19, "Median Spend per Customer": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.178916, 39.991954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5158 Haverford Ave", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 17.0, "POI_CBG": 421010093005.0, "Median Dwell Time": 185.0, "Total Spend": 334.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 27.05, "Median Spend per Customer": 28.46 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph8-q75", "Name": "Bryn Mawr Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "7572 Haverford Ave", "LATITUDE": 39.978684, "LONGITUDE": -75.268113, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 207.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 11.0, "Total Spend": 2546.0, "Total Transactions": 117.0, "Total Customers": 49.0, "Median Spend per Transaction": 19.08, "Median Spend per Customer": 40.43 }, "geometry": { "type": "Point", "coordinates": [ -75.268113, 39.978684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-yqf", "Name": "Matcha Cafe Maiko", "Category": "Restaurants and Other Eating Places", "Address": "923 Race St", "LATITUDE": 39.95548, "LONGITUDE": -75.155132, "DATE_RANGE_START": 2022, "Total Visits": 10046.0, "Total Visitors": 7164.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 15.0, "Total Spend": 4009.0, "Total Transactions": 364.0, "Total Customers": 157.0, "Median Spend per Transaction": 8.34, "Median Spend per Customer": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.155132, 39.95548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-ht9", "Name": "Vapor Hut", "Category": "Other Miscellaneous Store Retailers", "Address": "2550 Grant Ave Ste 340", "LATITUDE": 40.0786, "LONGITUDE": -75.027064, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 145.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 13467.0, "Total Transactions": 347.0, "Total Customers": 129.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 83.19 }, "geometry": { "type": "Point", "coordinates": [ -75.027064, 40.0786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "Name": "Mid Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2800 W Dauphin St Ste 420", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 24.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 154.0, "Total Spend": 560.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 43.19, "Median Spend per Customer": 78.28 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4900 City Ave", "LATITUDE": 40.000779, "LONGITUDE": -75.226852, "DATE_RANGE_START": 2022, "Total Visits": 2274.0, "Total Visitors": 1721.0, "POI_CBG": 421010121002.0, "Median Dwell Time": 4.0, "Total Spend": 1544.0, "Total Transactions": 35.0, "Total Customers": 33.0, "Median Spend per Transaction": 40.18, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226852, 40.000779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "Name": "H&M (Hennes & Mauritz)", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.088823, "LONGITUDE": -74.961811, "DATE_RANGE_START": 2022, "Total Visits": 643.0, "Total Visitors": 514.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 21.0, "Total Spend": 8485.0, "Total Transactions": 209.0, "Total Customers": 186.0, "Median Spend per Transaction": 32.48, "Median Spend per Customer": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961811, 40.088823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1207 Franklin Mills Cir", "LATITUDE": 40.084661, "LONGITUDE": -74.961825, "DATE_RANGE_START": 2022, "Total Visits": 350.0, "Total Visitors": 280.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 27.0, "Total Spend": 1480.0, "Total Transactions": 52.0, "Total Customers": 47.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961825, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1434 E Washington Ln", "LATITUDE": 40.060394, "LONGITUDE": -75.164248, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 89.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 4.0, "Total Spend": 19528.0, "Total Transactions": 397.0, "Total Customers": 335.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 25.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164248, 40.060394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "Name": "Colonial Pizza", "Category": "Restaurants and Other Eating Places", "Address": "400 S 43rd St", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010087011.0, "Median Dwell Time": 30.0, "Total Spend": 2902.0, "Total Transactions": 155.0, "Total Customers": 63.0, "Median Spend per Transaction": 18.85, "Median Spend per Customer": 44.01 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-229@628-p85-hkf", "Name": "Bluegrass Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2417 Welsh Rd", "LATITUDE": 40.071403, "LONGITUDE": -75.030673, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 82.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 228.0, "Total Spend": 712.0, "Total Transactions": 23.0, "Total Customers": 9.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 92.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030673, 40.071403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pmb-btv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1051 South St", "LATITUDE": 39.943154, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2022, "Total Visits": 1984.0, "Total Visitors": 1213.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 8.0, "Total Spend": 19895.0, "Total Transactions": 915.0, "Total Customers": 552.0, "Median Spend per Transaction": 12.16, "Median Spend per Customer": 17.47 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.943154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p82-3wk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "700 Robbins St", "LATITUDE": 40.039012, "LONGITUDE": -75.097789, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 42.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 171.0, "Total Spend": 694.0, "Total Transactions": 51.0, "Total Customers": 37.0, "Median Spend per Transaction": 13.02, "Median Spend per Customer": 16.32 }, "geometry": { "type": "Point", "coordinates": [ -75.097789, 40.039012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1700 W Cheltenham Ave", "LATITUDE": 40.065814, "LONGITUDE": -75.144222, "DATE_RANGE_START": 2022, "Total Visits": 495.0, "Total Visitors": 333.0, "POI_CBG": 421010266001.0, "Median Dwell Time": 3.0, "Total Spend": 797.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 33.11, "Median Spend per Customer": 33.11 }, "geometry": { "type": "Point", "coordinates": [ -75.144222, 40.065814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6201 Ridge Ave", "LATITUDE": 40.035916, "LONGITUDE": -75.217328, "DATE_RANGE_START": 2022, "Total Visits": 1443.0, "Total Visitors": 916.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 3.0, "Total Spend": 2071.0, "Total Transactions": 49.0, "Total Customers": 40.0, "Median Spend per Transaction": 41.68, "Median Spend per Customer": 42.7 }, "geometry": { "type": "Point", "coordinates": [ -75.217328, 40.035916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj4-3qz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4229 N Broad St", "LATITUDE": 40.017536, "LONGITUDE": -75.148496, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 28.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 80.0, "Total Spend": 4668.0, "Total Transactions": 164.0, "Total Customers": 122.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 31.17 }, "geometry": { "type": "Point", "coordinates": [ -75.148496, 40.017536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-223@628-pm9-tjv", "Name": "Tonys Paradise", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "105 S 8th St", "LATITUDE": 39.949313, "LONGITUDE": -75.153743, "DATE_RANGE_START": 2022, "Total Visits": 1101.0, "Total Visitors": 949.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 90.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.34, "Median Spend per Customer": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -75.153743, 39.949313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-225@628-pmf-jgk", "Name": "Rec & Royal", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "111 S 17th St", "LATITUDE": 39.951028, "LONGITUDE": -75.168618, "DATE_RANGE_START": 2022, "Total Visits": 998.0, "Total Visitors": 728.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 344.0, "Total Spend": 2666.0, "Total Transactions": 51.0, "Total Customers": 19.0, "Median Spend per Transaction": 37.83, "Median Spend per Customer": 126.42 }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.951028 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5mk", "Name": "The Halal Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "100 S 13th St", "LATITUDE": 39.950744, "LONGITUDE": -75.161873, "DATE_RANGE_START": 2022, "Total Visits": 18324.0, "Total Visitors": 13202.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 2720.0, "Total Transactions": 117.0, "Total Customers": 54.0, "Median Spend per Transaction": 16.85, "Median Spend per Customer": 33.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161873, 39.950744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "Name": "The Quick Fixx", "Category": "Restaurants and Other Eating Places", "Address": "1511 South St", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 61.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 34.0, "Total Spend": 6635.0, "Total Transactions": 382.0, "Total Customers": 138.0, "Median Spend per Transaction": 16.07, "Median Spend per Customer": 37.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pg8-bp9", "Name": "WokWorks", "Category": "Restaurants and Other Eating Places", "Address": "3000 W Sedgley Ave", "LATITUDE": 39.984089, "LONGITUDE": -75.183, "DATE_RANGE_START": 2022, "Total Visits": 338.0, "Total Visitors": 211.0, "POI_CBG": 421010151022.0, "Median Dwell Time": 169.0, "Total Spend": 202.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 28.96, "Median Spend per Customer": 57.92 }, "geometry": { "type": "Point", "coordinates": [ -75.183, 39.984089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pnx-d35", "Name": "Thomas'", "Category": "Restaurants and Other Eating Places", "Address": "447 E Girard Ave", "LATITUDE": 39.970627, "LONGITUDE": -75.128561, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 87.0, "POI_CBG": 421010143002.0, "Median Dwell Time": 168.0, "Total Spend": 5660.0, "Total Transactions": 94.0, "Total Customers": 49.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 57.35 }, "geometry": { "type": "Point", "coordinates": [ -75.128561, 39.970627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-68v", "Name": "Kinme", "Category": "Restaurants and Other Eating Places", "Address": "1117 Locust St", "LATITUDE": 39.947803, "LONGITUDE": -75.160062, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 66.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 160.0, "Total Spend": 5428.0, "Total Transactions": 87.0, "Total Customers": 40.0, "Median Spend per Transaction": 50.12, "Median Spend per Customer": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160062, 39.947803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmb-835", "Name": "Nanee's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953311, "LONGITUDE": -75.158833, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 2687.0, "Total Transactions": 150.0, "Total Customers": 85.0, "Median Spend per Transaction": 15.91, "Median Spend per Customer": 28.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158833, 39.953311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "129 S 30th St", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2022, "Total Visits": 1676.0, "Total Visitors": 1206.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 30.0, "Total Spend": 17404.0, "Total Transactions": 1345.0, "Total Customers": 618.0, "Median Spend per Transaction": 11.32, "Median Spend per Customer": 21.84 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5zz", "Name": "Chix & Wings", "Category": "Restaurants and Other Eating Places", "Address": "138 S 11th St", "LATITUDE": 39.94898, "LONGITUDE": -75.159094, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 84.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 4553.0, "Total Transactions": 335.0, "Total Customers": 117.0, "Median Spend per Transaction": 12.09, "Median Spend per Customer": 28.86 }, "geometry": { "type": "Point", "coordinates": [ -75.159094, 39.94898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "Name": "Amada", "Category": "Restaurants and Other Eating Places", "Address": "217 Chestnut St", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 78.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 33.0, "Total Spend": 41313.0, "Total Transactions": 312.0, "Total Customers": 162.0, "Median Spend per Transaction": 90.52, "Median Spend per Customer": 149.04 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-tgk", "Name": "Southside Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5043 Wissahickon Ave", "LATITUDE": 40.019691, "LONGITUDE": -75.174271, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 26.0, "POI_CBG": 421010243002.0, "Median Dwell Time": 308.0, "Total Spend": 149.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 9.9, "Median Spend per Customer": 19.79 }, "geometry": { "type": "Point", "coordinates": [ -75.174271, 40.019691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@63s-dvq-jjv", "Name": "Lucky Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "271 S 60th St", "LATITUDE": 39.956772, "LONGITUDE": -75.242093, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010083023.0, "Median Dwell Time": 6.0, "Total Spend": 79.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.242093, 39.956772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-52k", "Name": "Orient Express", "Category": "Restaurants and Other Eating Places", "Address": "1835 N 12th St Ste 7", "LATITUDE": 39.980968, "LONGITUDE": -75.15329, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 24.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 1.0, "Total Spend": 2826.0, "Total Transactions": 251.0, "Total Customers": 106.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15329, 39.980968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvx-2kz", "Name": "Rising Sun", "Category": "Restaurants and Other Eating Places", "Address": "4800 Westminster Ave", "LATITUDE": 39.968785, "LONGITUDE": -75.217282, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010104003.0, "Median Dwell Time": 4.0, "Total Spend": 46270.0, "Total Transactions": 1645.0, "Total Customers": 498.0, "Median Spend per Transaction": 20.02, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217282, 39.968785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "Name": "Anastasi Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1039 S 9th St", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2022, "Total Visits": 235.0, "Total Visitors": 179.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 21.0, "Total Spend": 21125.0, "Total Transactions": 395.0, "Total Customers": 172.0, "Median Spend per Transaction": 30.7, "Median Spend per Customer": 66.02 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "Name": "Fuel", "Category": "Restaurants and Other Eating Places", "Address": "1917 E Passyunk Ave", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 35.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 19.0, "Total Spend": 12579.0, "Total Transactions": 387.0, "Total Customers": 164.0, "Median Spend per Transaction": 26.72, "Median Spend per Customer": 60.3 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvx-tsq", "Name": "Salt & Pepper Deli III", "Category": "Restaurants and Other Eating Places", "Address": "1102 S 47th St", "LATITUDE": 39.945704, "LONGITUDE": -75.213904, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010078001.0, "Median Dwell Time": 4.0, "Total Spend": 652.0, "Total Transactions": 26.0, "Total Customers": 9.0, "Median Spend per Transaction": 29.25, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213904, 39.945704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26j-222@628-pgb-6x5", "Name": "The Black Taxi", "Category": "Restaurants and Other Eating Places", "Address": "745 N 25th St # 747", "LATITUDE": 39.968738, "LONGITUDE": -75.178186, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 1.0, "Total Spend": 42867.0, "Total Transactions": 1051.0, "Total Customers": 389.0, "Median Spend per Transaction": 31.5, "Median Spend per Customer": 70.96 }, "geometry": { "type": "Point", "coordinates": [ -75.178186, 39.968738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "Name": "Cafe La Maude", "Category": "Restaurants and Other Eating Places", "Address": "816 N 4th St", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 56.0, "POI_CBG": 421010367002.0, "Median Dwell Time": 42.0, "Total Spend": 4683.0, "Total Transactions": 73.0, "Total Customers": 44.0, "Median Spend per Transaction": 65.52, "Median Spend per Customer": 113.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7613 Castor Ave", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2022, "Total Visits": 540.0, "Total Visitors": 395.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 4.0, "Total Spend": 15474.0, "Total Transactions": 1256.0, "Total Customers": 693.0, "Median Spend per Transaction": 10.27, "Median Spend per Customer": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7000 Chester Ave", "LATITUDE": 39.923566, "LONGITUDE": -75.245262, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 226.0, "POI_CBG": 421010064003.0, "Median Dwell Time": 2.0, "Total Spend": 3762.0, "Total Transactions": 402.0, "Total Customers": 244.0, "Median Spend per Transaction": 7.64, "Median Spend per Customer": 10.28 }, "geometry": { "type": "Point", "coordinates": [ -75.245262, 39.923566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5051 Wissahickon Ave", "LATITUDE": 40.019964, "LONGITUDE": -75.174488, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 134.0, "POI_CBG": 421010243002.0, "Median Dwell Time": 3.0, "Total Spend": 2554.0, "Total Transactions": 387.0, "Total Customers": 226.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 8.16 }, "geometry": { "type": "Point", "coordinates": [ -75.174488, 40.019964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-223@628-p8d-yd9", "Name": "Tavares Grocery", "Category": "Grocery Stores", "Address": "5200 Burton St", "LATITUDE": 40.015008, "LONGITUDE": -75.070982, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 17.0, "POI_CBG": 421010298005.0, "Median Dwell Time": 1.0, "Total Spend": 168.0, "Total Transactions": 21.0, "Total Customers": 9.0, "Median Spend per Transaction": 6.88, "Median Spend per Customer": 17.14 }, "geometry": { "type": "Point", "coordinates": [ -75.070982, 40.015008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pp5-7wk", "Name": "La Esquina del Bronco", "Category": "Restaurants and Other Eating Places", "Address": "2265 N Howard St", "LATITUDE": 39.984824, "LONGITUDE": -75.133049, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010162001.0, "Median Dwell Time": 42.0, "Total Spend": 310.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 18.91, "Median Spend per Customer": 41.16 }, "geometry": { "type": "Point", "coordinates": [ -75.133049, 39.984824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p7x-dsq", "Name": "Angelos Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6920 Bustleton Ave", "LATITUDE": 40.042556, "LONGITUDE": -75.063892, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 23.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 9.0, "Total Spend": 2657.0, "Total Transactions": 136.0, "Total Customers": 61.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063892, 40.042556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvx-zmk", "Name": "Bus and Trolley Sales", "Category": "Automobile Dealers", "Address": "1350 Schuylkill Ave", "LATITUDE": 39.937753, "LONGITUDE": -75.203731, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 24.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 459.0, "Total Spend": 383.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 55.0, "Median Spend per Customer": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203731, 39.937753 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p8j-94v", "Name": "Panda Chinese", "Category": "Restaurants and Other Eating Places", "Address": "7105 Frankford Ave", "LATITUDE": 40.03456, "LONGITUDE": -75.044147, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 28.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 356.0, "Total Spend": 141.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.3, "Median Spend per Customer": 40.6 }, "geometry": { "type": "Point", "coordinates": [ -75.044147, 40.03456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pgg-p9z", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3118 W Allegheny Ave", "LATITUDE": 40.004888, "LONGITUDE": -75.180206, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 39.0, "Total Spend": 1391.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 399.25, "Median Spend per Customer": 399.25 }, "geometry": { "type": "Point", "coordinates": [ -75.180206, 40.004888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-649", "Name": "The Barn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4901 Catharine St", "LATITUDE": 39.948417, "LONGITUDE": -75.22137, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 35.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 47.0, "Total Spend": 8369.0, "Total Transactions": 244.0, "Total Customers": 94.0, "Median Spend per Transaction": 30.4, "Median Spend per Customer": 72.06 }, "geometry": { "type": "Point", "coordinates": [ -75.22137, 39.948417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p82-4jv", "Name": "Jc Mini Market", "Category": "Grocery Stores", "Address": "500 Devereaux Ave", "LATITUDE": 40.04695, "LONGITUDE": -75.097959, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 38.0, "POI_CBG": 421010305011.0, "Median Dwell Time": 5.0, "Total Spend": 208.0, "Total Transactions": 31.0, "Total Customers": 9.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.097959, 40.04695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvx-vcq", "Name": "Gold Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1247 S 47th St", "LATITUDE": 39.943788, "LONGITUDE": -75.210959, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010074001.0, "Median Dwell Time": 7.0, "Total Spend": 2177.0, "Total Transactions": 152.0, "Total Customers": 56.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 26.84 }, "geometry": { "type": "Point", "coordinates": [ -75.210959, 39.943788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "4670 E Roosevelt Blvd", "LATITUDE": 40.029034, "LONGITUDE": -75.099595, "DATE_RANGE_START": 2022, "Total Visits": 1394.0, "Total Visitors": 937.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 2.0, "Total Spend": 55974.0, "Total Transactions": 3227.0, "Total Customers": 1904.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.099595, 40.029034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2743 S Front St", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2022, "Total Visits": 220.0, "Total Visitors": 188.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 7243.0, "Total Transactions": 425.0, "Total Customers": 355.0, "Median Spend per Transaction": 13.59, "Median Spend per Customer": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "Name": "Fette Sau", "Category": "Restaurants and Other Eating Places", "Address": "1208 Frankford Ave", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 51.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 25.0, "Total Spend": 32943.0, "Total Transactions": 474.0, "Total Customers": 225.0, "Median Spend per Transaction": 54.55, "Median Spend per Customer": 115.6 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-nnq", "Name": "Square Pie", "Category": "Restaurants and Other Eating Places", "Address": "600 Catharine St", "LATITUDE": 39.938609, "LONGITUDE": -75.152665, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 2.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 1.0, "Total Spend": 1195.0, "Total Transactions": 52.0, "Total Customers": 23.0, "Median Spend per Transaction": 21.57, "Median Spend per Customer": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.152665, 39.938609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-x3q", "Name": "Medina mini market", "Category": "Grocery Stores", "Address": "804 W Susquehanna Ave", "LATITUDE": 39.984945, "LONGITUDE": -75.147239, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010377003.0, "Median Dwell Time": 35.0, "Total Spend": 178.0, "Total Transactions": 24.0, "Total Customers": 12.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147239, 39.984945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7b-kpv", "Name": "China City", "Category": "Restaurants and Other Eating Places", "Address": "9200 Frankford Ave", "LATITUDE": 40.055685, "LONGITUDE": -75.004529, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010348031.0, "Median Dwell Time": null, "Total Spend": 180.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 25.86, "Median Spend per Customer": 37.97 }, "geometry": { "type": "Point", "coordinates": [ -75.004529, 40.055685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1901 W Oregon Ave", "LATITUDE": 39.918299, "LONGITUDE": -75.180698, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 1.0, "Total Spend": 10462.0, "Total Transactions": 533.0, "Total Customers": 368.0, "Median Spend per Transaction": 12.62, "Median Spend per Customer": 14.55 }, "geometry": { "type": "Point", "coordinates": [ -75.180698, 39.918299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "2335 Cottman Ave Spc 10", "LATITUDE": 40.048384, "LONGITUDE": -75.056563, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 24.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 65.0, "Total Spend": 1037.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 79.99, "Median Spend per Customer": 79.99 }, "geometry": { "type": "Point", "coordinates": [ -75.056563, 40.048384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pgb-nh5", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "827 N Broad St", "LATITUDE": 39.969197, "LONGITUDE": -75.159372, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 105.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 6.0, "Total Spend": 9201.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 191.32, "Median Spend per Customer": 191.32 }, "geometry": { "type": "Point", "coordinates": [ -75.159372, 39.969197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-g6k", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2101 W Oregon Ave", "LATITUDE": 39.918591, "LONGITUDE": -75.183167, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 200.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 6246.0, "Total Transactions": 213.0, "Total Customers": 153.0, "Median Spend per Transaction": 16.18, "Median Spend per Customer": 22.6 }, "geometry": { "type": "Point", "coordinates": [ -75.183167, 39.918591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7350 Oxford Ave", "LATITUDE": 40.062718, "LONGITUDE": -75.083858, "DATE_RANGE_START": 2022, "Total Visits": 564.0, "Total Visitors": 423.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 5.0, "Total Spend": 18603.0, "Total Transactions": 394.0, "Total Customers": 261.0, "Median Spend per Transaction": 27.37, "Median Spend per Customer": 40.53 }, "geometry": { "type": "Point", "coordinates": [ -75.083858, 40.062718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "Name": "Kashmir Garden Super Market", "Category": "Grocery Stores", "Address": "9325 Krewstown Rd", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 98.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 6.0, "Total Spend": 9693.0, "Total Transactions": 213.0, "Total Customers": 75.0, "Median Spend per Transaction": 35.11, "Median Spend per Customer": 86.76 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-3dv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "810 S Broad St", "LATITUDE": 39.940442, "LONGITUDE": -75.166876, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 181.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 4.0, "Total Spend": 13269.0, "Total Transactions": 718.0, "Total Customers": 460.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 15.26 }, "geometry": { "type": "Point", "coordinates": [ -75.166876, 39.940442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6858 Rising Sun Ave", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2022, "Total Visits": 1652.0, "Total Visitors": 1063.0, "POI_CBG": 421010307003.0, "Median Dwell Time": 4.0, "Total Spend": 114147.0, "Total Transactions": 5526.0, "Total Customers": 2359.0, "Median Spend per Transaction": 13.65, "Median Spend per Customer": 25.01 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-92k", "Name": "Francesca's", "Category": "Clothing Stores", "Address": "901 Market St # 2045", "LATITUDE": 39.952109, "LONGITUDE": -75.155803, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 80.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 5205.0, "Total Transactions": 103.0, "Total Customers": 99.0, "Median Spend per Transaction": 38.88, "Median Spend per Customer": 36.09 }, "geometry": { "type": "Point", "coordinates": [ -75.155803, 39.952109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pm4-gtv", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2009 S Broad St", "LATITUDE": 39.925222, "LONGITUDE": -75.169039, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 98.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 8.0, "Total Spend": 466.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.63, "Median Spend per Customer": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.169039, 39.925222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "800 E Washington Ln", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2022, "Total Visits": 833.0, "Total Visitors": 512.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 4.0, "Total Spend": 20813.0, "Total Transactions": 777.0, "Total Customers": 436.0, "Median Spend per Transaction": 20.06, "Median Spend per Customer": 32.75 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pm4-pn5", "Name": "C & S Discount Store", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1006 S 9th St", "LATITUDE": 39.937282, "LONGITUDE": -75.158341, "DATE_RANGE_START": 2022, "Total Visits": 916.0, "Total Visitors": 655.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 28.0, "Total Spend": 593.0, "Total Transactions": 70.0, "Total Customers": 31.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.158341, 39.937282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-5j9", "Name": "Dollar Up & Gifts", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "10833 Bustleton Ave", "LATITUDE": 40.10998, "LONGITUDE": -75.024237, "DATE_RANGE_START": 2022, "Total Visits": 688.0, "Total Visitors": 498.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 4.0, "Total Spend": 866.0, "Total Transactions": 63.0, "Total Customers": 35.0, "Median Spend per Transaction": 13.53, "Median Spend per Customer": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.024237, 40.10998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6337 N Broad St", "LATITUDE": 40.050125, "LONGITUDE": -75.141867, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 71.0, "POI_CBG": 421010268004.0, "Median Dwell Time": 2.0, "Total Spend": 1323.0, "Total Transactions": 164.0, "Total Customers": 101.0, "Median Spend per Transaction": 5.97, "Median Spend per Customer": 9.2 }, "geometry": { "type": "Point", "coordinates": [ -75.141867, 40.050125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "Name": "Burlington", "Category": "Clothing Stores", "Address": "3401 Aramingo Ave", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2022, "Total Visits": 890.0, "Total Visitors": 643.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 25.0, "Total Spend": 4266.0, "Total Transactions": 61.0, "Total Customers": 56.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 46.66 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "Name": "Tandy Leather Factory", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "11000 Roosevelt Blvd Ste 300", "LATITUDE": 40.102565, "LONGITUDE": -75.008773, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 145.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 30.0, "Total Spend": 749.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 107.45, "Median Spend per Customer": 214.9 }, "geometry": { "type": "Point", "coordinates": [ -75.008773, 40.102565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "Name": "Annies Seafood", "Category": "Specialty Food Stores", "Address": "6600 Haverford Ave", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010100004.0, "Median Dwell Time": null, "Total Spend": 439.0, "Total Transactions": 9.0, "Total Customers": 3.0, "Median Spend per Transaction": 49.62, "Median Spend per Customer": 126.07 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-phy-kcq", "Name": "La Parrillada", "Category": "Restaurants and Other Eating Places", "Address": "5002 N 5th St", "LATITUDE": 40.027461, "LONGITUDE": -75.132799, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010285001.0, "Median Dwell Time": null, "Total Spend": 359.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 102.99 }, "geometry": { "type": "Point", "coordinates": [ -75.132799, 40.027461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pgh-649", "Name": "Brito's Grocery", "Category": "Grocery Stores", "Address": "1627 W Erie Ave", "LATITUDE": 40.010131, "LONGITUDE": -75.155853, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010201021.0, "Median Dwell Time": 260.0, "Total Spend": 685.0, "Total Transactions": 71.0, "Total Customers": 23.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155853, 40.010131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.031655, "LONGITUDE": -75.099529, "DATE_RANGE_START": 2022, "Total Visits": 5833.0, "Total Visitors": 3864.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 28.0, "Total Spend": 362.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.099529, 40.031655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8901 Franford Ave", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2022, "Total Visits": 427.0, "Total Visitors": 321.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 8.0, "Total Spend": 18862.0, "Total Transactions": 1662.0, "Total Customers": 1047.0, "Median Spend per Transaction": 9.33, "Median Spend per Customer": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2027 S Broad St", "LATITUDE": 39.924749, "LONGITUDE": -75.169152, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 75.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 7.0, "Total Spend": 4244.0, "Total Transactions": 420.0, "Total Customers": 204.0, "Median Spend per Transaction": 7.95, "Median Spend per Customer": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.169152, 39.924749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pgh-v2k", "Name": "Crown Chicken and Biscuit", "Category": "Restaurants and Other Eating Places", "Address": "2201 N Broad St", "LATITUDE": 39.986364, "LONGITUDE": -75.1559, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 112.0, "POI_CBG": 421010166002.0, "Median Dwell Time": 212.0, "Total Spend": 285.0, "Total Transactions": 26.0, "Total Customers": 12.0, "Median Spend per Transaction": 8.66, "Median Spend per Customer": 17.32 }, "geometry": { "type": "Point", "coordinates": [ -75.1559, 39.986364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5700 Baltimore Ave", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 84.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 3.0, "Total Spend": 633.0, "Total Transactions": 33.0, "Total Customers": 24.0, "Median Spend per Transaction": 18.24, "Median Spend per Customer": 20.56 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3501 Aramingo Ave", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2022, "Total Visits": 1075.0, "Total Visitors": 657.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 3.0, "Total Spend": 8980.0, "Total Transactions": 1049.0, "Total Customers": 561.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pgb-5vf", "Name": "B & J Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "Spring Garden 17th St", "LATITUDE": 39.962851, "LONGITUDE": -75.16648, "DATE_RANGE_START": 2022, "Total Visits": 2019.0, "Total Visitors": 1204.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 106.0, "Total Spend": 109.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16648, 39.962851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-jd9", "Name": "Club Quarters Philadelphia", "Category": "Traveler Accommodation", "Address": "1628 Chestnut St", "LATITUDE": 39.951302, "LONGITUDE": -75.168338, "DATE_RANGE_START": 2022, "Total Visits": 516.0, "Total Visitors": 375.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 186.0, "Total Spend": 2697.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 164.67, "Median Spend per Customer": 314.55 }, "geometry": { "type": "Point", "coordinates": [ -75.168338, 39.951302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-j5f", "Name": "Kitchen Kapers", "Category": "Electronics and Appliance Stores", "Address": "213 S 17th St", "LATITUDE": 39.949485, "LONGITUDE": -75.169064, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 213.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 2.0, "Total Spend": 3046.0, "Total Transactions": 77.0, "Total Customers": 38.0, "Median Spend per Transaction": 22.13, "Median Spend per Customer": 44.25 }, "geometry": { "type": "Point", "coordinates": [ -75.169064, 39.949485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3359 Kensington Ave", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 99.0, "POI_CBG": 421010188007.0, "Median Dwell Time": 2.0, "Total Spend": 286.0, "Total Transactions": 56.0, "Total Customers": 12.0, "Median Spend per Transaction": 4.79, "Median Spend per Customer": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wc5", "Name": "Abunai Poke", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949658, "LONGITUDE": -75.147567, "DATE_RANGE_START": 2022, "Total Visits": 855.0, "Total Visitors": 625.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 3.0, "Total Spend": 1788.0, "Total Transactions": 112.0, "Total Customers": 54.0, "Median Spend per Transaction": 15.56, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.147567, 39.949658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "4010 Robbins Ave", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 85.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 34.0, "Total Spend": 855.0, "Total Transactions": 19.0, "Total Customers": 12.0, "Median Spend per Transaction": 42.25, "Median Spend per Customer": 66.51 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3900 Castor Ave", "LATITUDE": 40.00641, "LONGITUDE": -75.099483, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 132.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 3.0, "Total Spend": 7270.0, "Total Transactions": 434.0, "Total Customers": 284.0, "Median Spend per Transaction": 11.55, "Median Spend per Customer": 17.39 }, "geometry": { "type": "Point", "coordinates": [ -75.099483, 40.00641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-jd9", "Name": "The Body Shop", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 148", "LATITUDE": 39.952033, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 78.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 529.0, "Total Transactions": 23.0, "Total Customers": 23.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "Name": "Asian Chopsticks", "Category": "Restaurants and Other Eating Places", "Address": "4044 Woodhaven Rd", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 82.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 71.0, "Total Spend": 2845.0, "Total Transactions": 91.0, "Total Customers": 35.0, "Median Spend per Transaction": 33.7, "Median Spend per Customer": 69.23 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "Name": "Cuba Libre Restaurant & Rum Bar Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "10 S 2nd St", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2022, "Total Visits": 389.0, "Total Visitors": 362.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 45.0, "Total Spend": 71254.0, "Total Transactions": 787.0, "Total Customers": 343.0, "Median Spend per Transaction": 46.8, "Median Spend per Customer": 117.52 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "1356 Franklin Mills Cir", "LATITUDE": 40.085814, "LONGITUDE": -74.963569, "DATE_RANGE_START": 2022, "Total Visits": 2669.0, "Total Visitors": 2092.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 30.0, "Total Spend": 11291.0, "Total Transactions": 253.0, "Total Customers": 230.0, "Median Spend per Transaction": 19.98, "Median Spend per Customer": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -74.963569, 40.085814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmf-389", "Name": "Ferguson", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "1821 Washington Ave", "LATITUDE": 39.939235, "LONGITUDE": -75.174446, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 96.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 2.0, "Total Spend": 278.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 79.87, "Median Spend per Customer": 79.87 }, "geometry": { "type": "Point", "coordinates": [ -75.174446, 39.939235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-w8v", "Name": "Friday Saturday Sunday", "Category": "Restaurants and Other Eating Places", "Address": "261 S 21st St", "LATITUDE": 39.948822, "LONGITUDE": -75.175905, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 194.0, "Total Spend": 13236.0, "Total Transactions": 152.0, "Total Customers": 68.0, "Median Spend per Transaction": 76.8, "Median Spend per Customer": 153.6 }, "geometry": { "type": "Point", "coordinates": [ -75.175905, 39.948822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-btv", "Name": "Kraftwork", "Category": "Restaurants and Other Eating Places", "Address": "541 E Girard Ave", "LATITUDE": 39.971499, "LONGITUDE": -75.127358, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010158003.0, "Median Dwell Time": null, "Total Spend": 5877.0, "Total Transactions": 136.0, "Total Customers": 78.0, "Median Spend per Transaction": 39.06, "Median Spend per Customer": 65.84 }, "geometry": { "type": "Point", "coordinates": [ -75.127358, 39.971499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pgf-3bk", "Name": "Promed Market", "Category": "Specialty Food Stores", "Address": "3535 Science Ctr", "LATITUDE": 39.956395, "LONGITUDE": -75.193735, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 58.0, "Total Spend": 1395.0, "Total Transactions": 42.0, "Total Customers": 16.0, "Median Spend per Transaction": 25.03, "Median Spend per Customer": 77.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193735, 39.956395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "Name": "New Panda", "Category": "Restaurants and Other Eating Places", "Address": "8340 Bustleton Ave", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 3.0, "Total Spend": 3680.0, "Total Transactions": 150.0, "Total Customers": 59.0, "Median Spend per Transaction": 21.36, "Median Spend per Customer": 55.35 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvz-2c5", "Name": "International Foods and Spices", "Category": "Specialty Food Stores", "Address": "4203 Walnut St", "LATITUDE": 39.954931, "LONGITUDE": -75.20692, "DATE_RANGE_START": 2022, "Total Visits": 153.0, "Total Visitors": 131.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 6.0, "Total Spend": 108.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.18, "Median Spend per Customer": 20.36 }, "geometry": { "type": "Point", "coordinates": [ -75.20692, 39.954931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-gkz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5301 Chew Ave", "LATITUDE": 40.043254, "LONGITUDE": -75.158799, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 183.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 4.0, "Total Spend": 8113.0, "Total Transactions": 425.0, "Total Customers": 258.0, "Median Spend per Transaction": 13.3, "Median Spend per Customer": 21.78 }, "geometry": { "type": "Point", "coordinates": [ -75.158799, 40.043254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8j-ct9", "Name": "New London Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7230 Frankford Ave", "LATITUDE": 40.036249, "LONGITUDE": -75.042416, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 1.0, "Total Spend": 6611.0, "Total Transactions": 232.0, "Total Customers": 94.0, "Median Spend per Transaction": 23.39, "Median Spend per Customer": 56.15 }, "geometry": { "type": "Point", "coordinates": [ -75.042416, 40.036249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1800 South St", "LATITUDE": 39.944289, "LONGITUDE": -75.17218, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 230.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 3.0, "Total Spend": 15391.0, "Total Transactions": 645.0, "Total Customers": 317.0, "Median Spend per Transaction": 13.22, "Median Spend per Customer": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.17218, 39.944289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-7t9", "Name": "Flowers Etcetera By Denise", "Category": "Florists", "Address": "637 N 2nd St", "LATITUDE": 39.961729, "LONGITUDE": -75.140942, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 31.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 91.0, "Total Spend": 3700.0, "Total Transactions": 14.0, "Total Customers": 9.0, "Median Spend per Transaction": 67.5, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140942, 39.961729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p7x-6tv", "Name": "Artifax", "Category": "Other Miscellaneous Store Retailers", "Address": "2446 Cottman Ave", "LATITUDE": 40.046392, "LONGITUDE": -75.058077, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 31.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 5.0, "Total Spend": 12614.0, "Total Transactions": 277.0, "Total Customers": 106.0, "Median Spend per Transaction": 32.35, "Median Spend per Customer": 64.7 }, "geometry": { "type": "Point", "coordinates": [ -75.058077, 40.046392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvp-qmk", "Name": "Caribbean Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "6045 Baltimore Ave", "LATITUDE": 39.94382, "LONGITUDE": -75.246381, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010082004.0, "Median Dwell Time": 2.0, "Total Spend": 524.0, "Total Transactions": 35.0, "Total Customers": 12.0, "Median Spend per Transaction": 15.75, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246381, 39.94382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-33q", "Name": "Urban Outfitters", "Category": "Clothing Stores", "Address": "110 S 36th St", "LATITUDE": 39.953788, "LONGITUDE": -75.194952, "DATE_RANGE_START": 2022, "Total Visits": 225.0, "Total Visitors": 167.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 29.0, "Total Spend": 7716.0, "Total Transactions": 143.0, "Total Customers": 136.0, "Median Spend per Transaction": 34.23, "Median Spend per Customer": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.194952, 39.953788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-229@628-pj2-mrk", "Name": "Universal Dollar", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3908 Kensington Ave", "LATITUDE": 40.006684, "LONGITUDE": -75.096267, "DATE_RANGE_START": 2022, "Total Visits": 664.0, "Total Visitors": 430.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 5.0, "Total Spend": 78.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.01, "Median Spend per Customer": 22.47 }, "geometry": { "type": "Point", "coordinates": [ -75.096267, 40.006684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p75-5xq", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8920 Frankford Ave", "LATITUDE": 40.051379, "LONGITUDE": -75.010945, "DATE_RANGE_START": 2022, "Total Visits": 495.0, "Total Visitors": 389.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 6.0, "Total Spend": 394.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 17.9, "Median Spend per Customer": 32.8 }, "geometry": { "type": "Point", "coordinates": [ -75.010945, 40.051379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgb-c3q", "Name": "Lucky Goat Coffeehouse", "Category": "Restaurants and Other Eating Places", "Address": "888 N 26th St", "LATITUDE": 39.972559, "LONGITUDE": -75.179343, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010136023.0, "Median Dwell Time": null, "Total Spend": 5868.0, "Total Transactions": 787.0, "Total Customers": 216.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 21.44 }, "geometry": { "type": "Point", "coordinates": [ -75.179343, 39.972559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-vxq", "Name": "Crown Drugs", "Category": "Health and Personal Care Stores", "Address": "6519 Frankford Ave", "LATITUDE": 40.029725, "LONGITUDE": -75.055436, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010320007.0, "Median Dwell Time": null, "Total Spend": 509.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 83.79, "Median Spend per Customer": 146.19 }, "geometry": { "type": "Point", "coordinates": [ -75.055436, 40.029725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "Name": "Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1309 Sansom St", "LATITUDE": 39.95002, "LONGITUDE": -75.162328, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 127.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 13.0, "Total Spend": 170738.0, "Total Transactions": 3695.0, "Total Customers": 1652.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 62.32 }, "geometry": { "type": "Point", "coordinates": [ -75.162328, 39.95002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "Name": "Greek Lady", "Category": "Restaurants and Other Eating Places", "Address": "222 S 40th St", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2022, "Total Visits": 195.0, "Total Visitors": 167.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 62.0, "Total Spend": 26153.0, "Total Transactions": 1117.0, "Total Customers": 477.0, "Median Spend per Transaction": 17.77, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-224@628-pmb-kzz", "Name": "Home Cuban Cafe", "Category": "Restaurants and Other Eating Places", "Address": "17 N 3rd St", "LATITUDE": 39.950812, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2022, "Total Visits": 552.0, "Total Visitors": 378.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 79.0, "Total Spend": 578.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 165.95, "Median Spend per Customer": 165.95 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.950812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3nq", "Name": "Nick's Roast Beef", "Category": "Restaurants and Other Eating Places", "Address": "4501 Woodhaven Rd", "LATITUDE": 40.083763, "LONGITUDE": -74.966105, "DATE_RANGE_START": 2022, "Total Visits": 411.0, "Total Visitors": 298.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 60.0, "Total Spend": 6545.0, "Total Transactions": 176.0, "Total Customers": 80.0, "Median Spend per Transaction": 36.44, "Median Spend per Customer": 69.81 }, "geometry": { "type": "Point", "coordinates": [ -74.966105, 40.083763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pfy-b6k", "Name": "Barry's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "471 Leverington Ave", "LATITUDE": 40.035119, "LONGITUDE": -75.217909, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 35.0, "POI_CBG": 421010213001.0, "Median Dwell Time": 270.0, "Total Spend": 2196.0, "Total Transactions": 105.0, "Total Customers": 61.0, "Median Spend per Transaction": 16.39, "Median Spend per Customer": 28.86 }, "geometry": { "type": "Point", "coordinates": [ -75.217909, 40.035119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgg-jsq", "Name": "BBQ Town", "Category": "Restaurants and Other Eating Places", "Address": "2150 W Sedge Ave", "LATITUDE": 39.995114, "LONGITUDE": -75.167387, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 51.0, "POI_CBG": 421010168006.0, "Median Dwell Time": 487.0, "Total Spend": 626.0, "Total Transactions": 28.0, "Total Customers": 14.0, "Median Spend per Transaction": 15.06, "Median Spend per Customer": 30.11 }, "geometry": { "type": "Point", "coordinates": [ -75.167387, 39.995114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "Name": "Allegro Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3942 Spruce St", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2022, "Total Visits": 329.0, "Total Visitors": 183.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 45.0, "Total Spend": 21819.0, "Total Transactions": 1237.0, "Total Customers": 497.0, "Median Spend per Transaction": 12.69, "Median Spend per Customer": 30.36 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7911 Ogontz Ave # 17", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2022, "Total Visits": 1005.0, "Total Visitors": 730.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 3.0, "Total Spend": 26020.0, "Total Transactions": 2059.0, "Total Customers": 1307.0, "Median Spend per Transaction": 10.14, "Median Spend per Customer": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-phq-rp9", "Name": "Deli Delight", "Category": "Restaurants and Other Eating Places", "Address": "1903 E Washington Ln", "LATITUDE": 40.066189, "LONGITUDE": -75.159352, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 68.0, "POI_CBG": 421010263023.0, "Median Dwell Time": 3.0, "Total Spend": 740.0, "Total Transactions": 40.0, "Total Customers": 26.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159352, 40.066189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1 Penn Sq E", "LATITUDE": 39.952459, "LONGITUDE": -75.162267, "DATE_RANGE_START": 2022, "Total Visits": 3669.0, "Total Visitors": 2692.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 263.0, "Total Spend": 6736.0, "Total Transactions": 1085.0, "Total Customers": 530.0, "Median Spend per Transaction": 5.58, "Median Spend per Customer": 8.3 }, "geometry": { "type": "Point", "coordinates": [ -75.162267, 39.952459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2344 N Broad St", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2022, "Total Visits": 218.0, "Total Visitors": 152.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 2.0, "Total Spend": 8695.0, "Total Transactions": 984.0, "Total Customers": 538.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pfz-bhq", "Name": "Valerio Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "4373 Main St", "LATITUDE": 40.025342, "LONGITUDE": -75.222719, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 115.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 62.0, "Total Spend": 18419.0, "Total Transactions": 1444.0, "Total Customers": 535.0, "Median Spend per Transaction": 10.19, "Median Spend per Customer": 23.61 }, "geometry": { "type": "Point", "coordinates": [ -75.222719, 40.025342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7z-7kf", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "901 Cottman Ave", "LATITUDE": 40.062355, "LONGITUDE": -75.08469, "DATE_RANGE_START": 2022, "Total Visits": 270.0, "Total Visitors": 181.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 35.0, "Total Spend": 156.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 24.95, "Median Spend per Customer": 25.53 }, "geometry": { "type": "Point", "coordinates": [ -75.08469, 40.062355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5801 Oxford Ave", "LATITUDE": 40.032682, "LONGITUDE": -75.084504, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 162.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 3.0, "Total Spend": 1516.0, "Total Transactions": 199.0, "Total Customers": 118.0, "Median Spend per Transaction": 6.85, "Median Spend per Customer": 9.24 }, "geometry": { "type": "Point", "coordinates": [ -75.084504, 40.032682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-kpv", "Name": "Artisans On the Avenue", "Category": "Clothing Stores", "Address": "8440 Germantown Ave", "LATITUDE": 40.075688, "LONGITUDE": -75.206238, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 4.0, "Total Spend": 887.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 62.64 }, "geometry": { "type": "Point", "coordinates": [ -75.206238, 40.075688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pg4-w49", "Name": "Pauline's Deli", "Category": "Restaurants and Other Eating Places", "Address": "2145 Elkins Ave", "LATITUDE": 40.040848, "LONGITUDE": -75.157522, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 21.0, "POI_CBG": 421010279022.0, "Median Dwell Time": 4.0, "Total Spend": 3786.0, "Total Transactions": 251.0, "Total Customers": 78.0, "Median Spend per Transaction": 12.76, "Median Spend per Customer": 35.66 }, "geometry": { "type": "Point", "coordinates": [ -75.157522, 40.040848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "Name": "Race Supermarket", "Category": "Grocery Stores", "Address": "156 N 52nd St", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 28.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 88.0, "Total Spend": 587.0, "Total Transactions": 61.0, "Total Customers": 26.0, "Median Spend per Transaction": 8.49, "Median Spend per Customer": 16.98 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmf-qfz", "Name": "Entree Byob", "Category": "Restaurants and Other Eating Places", "Address": "1608 South St", "LATITUDE": 39.943935, "LONGITUDE": -75.169156, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 108.0, "Total Spend": 3214.0, "Total Transactions": 14.0, "Total Customers": 9.0, "Median Spend per Transaction": 128.0, "Median Spend per Customer": 220.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169156, 39.943935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "Name": "Higher Grounds", "Category": "Restaurants and Other Eating Places", "Address": "631 N 3rd St", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 10.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1.0, "Total Spend": 4900.0, "Total Transactions": 542.0, "Total Customers": 171.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 19.58 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "Name": "American Sardine Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1800 Federal St", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 113.0, "Total Spend": 3703.0, "Total Transactions": 56.0, "Total Customers": 31.0, "Median Spend per Transaction": 49.54, "Median Spend per Customer": 107.51 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-gtv", "Name": "Cosi", "Category": "Restaurants and Other Eating Places", "Address": "1800 N Broad St", "LATITUDE": 39.980925, "LONGITUDE": -75.157606, "DATE_RANGE_START": 2022, "Total Visits": 2315.0, "Total Visitors": 1366.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 92.0, "Total Spend": 3457.0, "Total Transactions": 174.0, "Total Customers": 84.0, "Median Spend per Transaction": 14.13, "Median Spend per Customer": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157606, 39.980925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-skf", "Name": "Max Brenner", "Category": "Restaurants and Other Eating Places", "Address": "1500 Walnut St", "LATITUDE": 39.949114, "LONGITUDE": -75.166283, "DATE_RANGE_START": 2022, "Total Visits": 352.0, "Total Visitors": 282.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 59.0, "Total Spend": 14837.0, "Total Transactions": 183.0, "Total Customers": 167.0, "Median Spend per Transaction": 66.15, "Median Spend per Customer": 73.32 }, "geometry": { "type": "Point", "coordinates": [ -75.166283, 39.949114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dw2-c3q", "Name": "Tony Boys Breakfast", "Category": "Restaurants and Other Eating Places", "Address": "5951 Market St", "LATITUDE": 39.962196, "LONGITUDE": -75.240563, "DATE_RANGE_START": 2022, "Total Visits": 915.0, "Total Visitors": 666.0, "POI_CBG": 421010095003.0, "Median Dwell Time": 7.0, "Total Spend": 253.0, "Total Transactions": 14.0, "Total Customers": 5.0, "Median Spend per Transaction": 14.31, "Median Spend per Customer": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.240563, 39.962196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmb-ce5", "Name": "Angelo's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "736 S 9th St", "LATITUDE": 39.940639, "LONGITUDE": -75.157632, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 66.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 153.0, "Total Spend": 4501.0, "Total Transactions": 200.0, "Total Customers": 117.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.157632, 39.940639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-ygk", "Name": "Pho Cali", "Category": "Restaurants and Other Eating Places", "Address": "1000 Arch St", "LATITUDE": 39.953422, "LONGITUDE": -75.156467, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 220.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 60.0, "Total Spend": 6566.0, "Total Transactions": 174.0, "Total Customers": 96.0, "Median Spend per Transaction": 33.39, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156467, 39.953422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-jjv", "Name": "The Continental Mid Town", "Category": "Restaurants and Other Eating Places", "Address": "1801 Chestnut St", "LATITUDE": 39.951903, "LONGITUDE": -75.170452, "DATE_RANGE_START": 2022, "Total Visits": 1028.0, "Total Visitors": 901.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 48.0, "Total Spend": 377.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 108.18, "Median Spend per Customer": 108.18 }, "geometry": { "type": "Point", "coordinates": [ -75.170452, 39.951903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1100 Tasker St", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 38.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 13.0, "Total Spend": 24549.0, "Total Transactions": 2415.0, "Total Customers": 786.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "2000 Hamilton St", "LATITUDE": 39.9622, "LONGITUDE": -75.172139, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 38.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 7.0, "Total Spend": 115.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 16.7, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.172139, 39.9622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "Name": "Arctic Scoop", "Category": "Restaurants and Other Eating Places", "Address": "1812 E Passyunk Ave", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 42.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 563.0, "Total Spend": 9347.0, "Total Transactions": 824.0, "Total Customers": 413.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgg-b8v", "Name": "Fingers & Wings Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3032 N 22nd St", "LATITUDE": 40.001078, "LONGITUDE": -75.166601, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010172013.0, "Median Dwell Time": 4.0, "Total Spend": 32.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 3.38, "Median Spend per Customer": 9.24 }, "geometry": { "type": "Point", "coordinates": [ -75.166601, 40.001078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-yqf", "Name": "Chick's Philly", "Category": "Restaurants and Other Eating Places", "Address": "1807 Washington Ave", "LATITUDE": 39.938939, "LONGITUDE": -75.174017, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 596.0, "Total Spend": 3459.0, "Total Transactions": 51.0, "Total Customers": 33.0, "Median Spend per Transaction": 68.32, "Median Spend per Customer": 119.84 }, "geometry": { "type": "Point", "coordinates": [ -75.174017, 39.938939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "Name": "Claudio's Specialty Foods", "Category": "Specialty Food Stores", "Address": "924 S 9th St # 26", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 2.0, "Total Spend": 3863.0, "Total Transactions": 99.0, "Total Customers": 63.0, "Median Spend per Transaction": 28.39, "Median Spend per Customer": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "Name": "Penang", "Category": "Restaurants and Other Eating Places", "Address": "117 N 10th St", "LATITUDE": 39.954047, "LONGITUDE": -75.155868, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 167.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 45.0, "Total Spend": 19893.0, "Total Transactions": 406.0, "Total Customers": 211.0, "Median Spend per Transaction": 43.88, "Median Spend per Customer": 75.08 }, "geometry": { "type": "Point", "coordinates": [ -75.155868, 39.954047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-xqz", "Name": "The Original Turkey", "Category": "Restaurants and Other Eating Places", "Address": "45 N 12th St", "LATITUDE": 39.956427, "LONGITUDE": -75.158805, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 87.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 9855.0, "Total Transactions": 669.0, "Total Customers": 317.0, "Median Spend per Transaction": 13.35, "Median Spend per Customer": 28.05 }, "geometry": { "type": "Point", "coordinates": [ -75.158805, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-zvf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "800 S Broad St", "LATITUDE": 39.940697, "LONGITUDE": -75.166565, "DATE_RANGE_START": 2022, "Total Visits": 822.0, "Total Visitors": 671.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 5.0, "Total Spend": 12005.0, "Total Transactions": 789.0, "Total Customers": 610.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.166565, 39.940697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgy-ks5", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "701 E Cathedral Rd", "LATITUDE": 40.064334, "LONGITUDE": -75.23681, "DATE_RANGE_START": 2022, "Total Visits": 1004.0, "Total Visitors": 263.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 51.0, "Total Spend": 15059.0, "Total Transactions": 941.0, "Total Customers": 650.0, "Median Spend per Transaction": 14.37, "Median Spend per Customer": 17.13 }, "geometry": { "type": "Point", "coordinates": [ -75.23681, 40.064334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-t9z", "Name": "Last Drop", "Category": "Restaurants and Other Eating Places", "Address": "1300 Pine St", "LATITUDE": 39.945156, "LONGITUDE": -75.163064, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 254.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1.0, "Total Spend": 392.0, "Total Transactions": 38.0, "Total Customers": 9.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 24.74 }, "geometry": { "type": "Point", "coordinates": [ -75.163064, 39.945156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-5vf", "Name": "Golden Dragon Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "1700 Spring Garden St", "LATITUDE": 39.961461, "LONGITUDE": -75.16684, "DATE_RANGE_START": 2022, "Total Visits": 448.0, "Total Visitors": 202.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 121.0, "Total Spend": 122.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.58, "Median Spend per Customer": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.16684, 39.961461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pm5-bzf", "Name": "Mr Wish USA", "Category": "Restaurants and Other Eating Places", "Address": "320 W Oregon Ave", "LATITUDE": 39.912953, "LONGITUDE": -75.153917, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 202.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 22.0, "Total Spend": 47.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.912953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-ks5", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "218 Arch St", "LATITUDE": 39.951718, "LONGITUDE": -75.144312, "DATE_RANGE_START": 2022, "Total Visits": 709.0, "Total Visitors": 451.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 276.0, "Total Spend": 369.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 14.67, "Median Spend per Customer": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 39.951718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-4jv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "490 N Broad St", "LATITUDE": 39.962295, "LONGITUDE": -75.162022, "DATE_RANGE_START": 2022, "Total Visits": 1042.0, "Total Visitors": 676.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 66.0, "Total Spend": 7905.0, "Total Transactions": 951.0, "Total Customers": 526.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.162022, 39.962295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "717 E Girard Ave", "LATITUDE": 39.972318, "LONGITUDE": -75.125675, "DATE_RANGE_START": 2022, "Total Visits": 343.0, "Total Visitors": 157.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 2.0, "Total Spend": 4352.0, "Total Transactions": 629.0, "Total Customers": 286.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.125675, 39.972318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1128 Walnut St", "LATITUDE": 39.948761, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2022, "Total Visits": 195.0, "Total Visitors": 164.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 2.0, "Total Spend": 4690.0, "Total Transactions": 603.0, "Total Customers": 413.0, "Median Spend per Transaction": 6.16, "Median Spend per Customer": 7.69 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.948761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6409 Torresdale Ave # 13", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 169.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 2.0, "Total Spend": 9191.0, "Total Transactions": 1131.0, "Total Customers": 390.0, "Median Spend per Transaction": 6.23, "Median Spend per Customer": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6110 Woodland Ave", "LATITUDE": 39.928851, "LONGITUDE": -75.229354, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 92.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 2.0, "Total Spend": 2036.0, "Total Transactions": 233.0, "Total Customers": 155.0, "Median Spend per Transaction": 7.32, "Median Spend per Customer": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -75.229354, 39.928851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmc-qmk", "Name": "Federal Donuts 2nd Street", "Category": "Restaurants and Other Eating Places", "Address": "1219 S 2nd St", "LATITUDE": 39.932221, "LONGITUDE": -75.147485, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 7.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 4.0, "Total Spend": 340.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 20.49, "Median Spend per Customer": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.147485, 39.932221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-v9f", "Name": "Tang Pharmacy V", "Category": "Health and Personal Care Stores", "Address": "7452 Ogontz Ave", "LATITUDE": 40.068833, "LONGITUDE": -75.157234, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010263024.0, "Median Dwell Time": null, "Total Spend": 756.0, "Total Transactions": 16.0, "Total Customers": 10.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157234, 40.068833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-p7b-qs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "9200 Ashton Rd", "LATITUDE": 40.063609, "LONGITUDE": -75.021861, "DATE_RANGE_START": 2022, "Total Visits": 1706.0, "Total Visitors": 848.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 655.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 56.43 }, "geometry": { "type": "Point", "coordinates": [ -75.021861, 40.063609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "Name": "Burlington", "Category": "Clothing Stores", "Address": "9940 Roosevelt Blvd", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2022, "Total Visits": 835.0, "Total Visitors": 676.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 16.0, "Total Spend": 5369.0, "Total Transactions": 124.0, "Total Customers": 92.0, "Median Spend per Transaction": 24.54, "Median Spend per Customer": 35.61 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "Name": "Navy Exchange", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 Robbins St Bldg NO5", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 115.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 209.0, "Total Spend": 5660.0, "Total Transactions": 179.0, "Total Customers": 118.0, "Median Spend per Transaction": 11.94, "Median Spend per Customer": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-7h5", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "861 N 3rd St", "LATITUDE": 39.964803, "LONGITUDE": -75.14238, "DATE_RANGE_START": 2022, "Total Visits": 498.0, "Total Visitors": 296.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 605.0, "Total Spend": 18153.0, "Total Transactions": 505.0, "Total Customers": 226.0, "Median Spend per Transaction": 28.05, "Median Spend per Customer": 59.35 }, "geometry": { "type": "Point", "coordinates": [ -75.14238, 39.964803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-649", "Name": "Quaker Valley Foods", "Category": "Specialty Food Stores", "Address": "2701 Red Lion Rd", "LATITUDE": 40.094265, "LONGITUDE": -75.010029, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 71.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 401.0, "Total Spend": 37539.0, "Total Transactions": 17.0, "Total Customers": 3.0, "Median Spend per Transaction": 1068.4, "Median Spend per Customer": 10773.59 }, "geometry": { "type": "Point", "coordinates": [ -75.010029, 40.094265 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "Name": "Fat Tuesday", "Category": "Specialty Food Stores", "Address": "431 South St", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 71.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 6.0, "Total Spend": 10162.0, "Total Transactions": 500.0, "Total Customers": 411.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "Name": "Brewer's Outlet", "Category": "Beer, Wine, and Liquor Stores", "Address": "309 S 48th St", "LATITUDE": 39.953078, "LONGITUDE": -75.217954, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 148.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 21.0, "Total Spend": 27194.0, "Total Transactions": 800.0, "Total Customers": 319.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 60.44 }, "geometry": { "type": "Point", "coordinates": [ -75.217954, 39.953078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6363 Frankford Ave", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2022, "Total Visits": 355.0, "Total Visitors": 272.0, "POI_CBG": 421010320003.0, "Median Dwell Time": 4.0, "Total Spend": 8978.0, "Total Transactions": 401.0, "Total Customers": 249.0, "Median Spend per Transaction": 15.65, "Median Spend per Customer": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "518 Port Royal Ave", "LATITUDE": 40.061169, "LONGITUDE": -75.237242, "DATE_RANGE_START": 2022, "Total Visits": 707.0, "Total Visitors": 507.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 4.0, "Total Spend": 8777.0, "Total Transactions": 436.0, "Total Customers": 286.0, "Median Spend per Transaction": 14.96, "Median Spend per Customer": 20.34 }, "geometry": { "type": "Point", "coordinates": [ -75.237242, 40.061169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvw-jgk", "Name": "Sun Ray Drugs", "Category": "Health and Personal Care Stores", "Address": "142 S 52nd St", "LATITUDE": 39.957136, "LONGITUDE": -75.22573, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 77.0, "POI_CBG": 421010085006.0, "Median Dwell Time": 1.0, "Total Spend": 1386.0, "Total Transactions": 57.0, "Total Customers": 35.0, "Median Spend per Transaction": 10.68, "Median Spend per Customer": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.22573, 39.957136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "4201 N Broad St", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2022, "Total Visits": 449.0, "Total Visitors": 329.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 7.0, "Total Spend": 1430.0, "Total Transactions": 103.0, "Total Customers": 56.0, "Median Spend per Transaction": 7.49, "Median Spend per Customer": 13.74 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2300 Fairmount Ave # 16", "LATITUDE": 39.96715, "LONGITUDE": -75.175689, "DATE_RANGE_START": 2022, "Total Visits": 981.0, "Total Visitors": 763.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 4.0, "Total Spend": 2347.0, "Total Transactions": 82.0, "Total Customers": 56.0, "Median Spend per Transaction": 27.12, "Median Spend per Customer": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.175689, 39.96715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qmk", "Name": "Sea Soul", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.038264, "LONGITUDE": -75.11969, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 49.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 10.0, "Total Spend": 3521.0, "Total Transactions": 118.0, "Total Customers": 54.0, "Median Spend per Transaction": 20.73, "Median Spend per Customer": 36.16 }, "geometry": { "type": "Point", "coordinates": [ -75.11969, 40.038264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg3-jqf", "Name": "Jansen", "Category": "Restaurants and Other Eating Places", "Address": "7402 Germantown Ave", "LATITUDE": 40.062669, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 51.0, "POI_CBG": 421010388001.0, "Median Dwell Time": 269.0, "Total Spend": 18028.0, "Total Transactions": 73.0, "Total Customers": 31.0, "Median Spend per Transaction": 229.64, "Median Spend per Customer": 467.06 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 40.062669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-h89", "Name": "Kite & Key", "Category": "Restaurants and Other Eating Places", "Address": "1836 Callowhill St", "LATITUDE": 39.960365, "LONGITUDE": -75.169693, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 56.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 34.0, "Total Spend": 174.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 24.91, "Median Spend per Customer": 49.82 }, "geometry": { "type": "Point", "coordinates": [ -75.169693, 39.960365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7325 Castor Ave", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 77.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 8.0, "Total Spend": 3676.0, "Total Transactions": 185.0, "Total Customers": 143.0, "Median Spend per Transaction": 19.1, "Median Spend per Customer": 23.03 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-6rk", "Name": "Magic Carpet Foods", "Category": "Restaurants and Other Eating Places", "Address": "36th & Spruce St", "LATITUDE": 39.950915, "LONGITUDE": -75.195176, "DATE_RANGE_START": 2022, "Total Visits": 833.0, "Total Visitors": 533.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 62.0, "Total Spend": 4842.0, "Total Transactions": 472.0, "Total Customers": 150.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.195176, 39.950915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-tn5", "Name": "The Fresh Works", "Category": "Restaurants and Other Eating Places", "Address": "2634 Belgrade St", "LATITUDE": 39.979613, "LONGITUDE": -75.11764, "DATE_RANGE_START": 2022, "Total Visits": 625.0, "Total Visitors": 240.0, "POI_CBG": 421010378003.0, "Median Dwell Time": 696.0, "Total Spend": 529.0, "Total Transactions": 31.0, "Total Customers": 14.0, "Median Spend per Transaction": 14.75, "Median Spend per Customer": 39.25 }, "geometry": { "type": "Point", "coordinates": [ -75.11764, 39.979613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-mrk", "Name": "Auntie Anne's", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 206", "LATITUDE": 39.952065, "LONGITUDE": -75.167537, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 78.0, "Total Spend": 23.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.52, "Median Spend per Customer": 6.52 }, "geometry": { "type": "Point", "coordinates": [ -75.167537, 39.952065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-cdv", "Name": "Holiday Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "8601 Torresdale Ave", "LATITUDE": 40.04293, "LONGITUDE": -75.010392, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 31.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 3.0, "Total Spend": 526.0, "Total Transactions": 28.0, "Total Customers": 10.0, "Median Spend per Transaction": 23.26, "Median Spend per Customer": 58.56 }, "geometry": { "type": "Point", "coordinates": [ -75.010392, 40.04293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "Name": "YOLO Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1632 W Susquehanna Ave # 1662", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 14.0, "POI_CBG": 421010167024.0, "Median Dwell Time": 74.0, "Total Spend": 1446.0, "Total Transactions": 44.0, "Total Customers": 16.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pjf-ks5", "Name": "Threadwell", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "8432 Germantown Ave", "LATITUDE": 40.075533, "LONGITUDE": -75.206071, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 1.0, "Total Spend": 1197.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 46.66, "Median Spend per Customer": 99.58 }, "geometry": { "type": "Point", "coordinates": [ -75.206071, 40.075533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22x@628-pmf-n3q", "Name": "Uptown Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953433, "LONGITUDE": -75.165886, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 63.0, "Total Spend": 86633.0, "Total Transactions": 3159.0, "Total Customers": 1066.0, "Median Spend per Transaction": 18.76, "Median Spend per Customer": 59.36 }, "geometry": { "type": "Point", "coordinates": [ -75.165886, 39.953433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-h5z", "Name": "Buena Onda", "Category": "Restaurants and Other Eating Places", "Address": "1901 Callowhill St", "LATITUDE": 39.960932, "LONGITUDE": -75.170707, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 240.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 39.0, "Total Spend": 20649.0, "Total Transactions": 876.0, "Total Customers": 383.0, "Median Spend per Transaction": 19.2, "Median Spend per Customer": 45.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170707, 39.960932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "Name": "Domenic's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "14258 Bustleton Ave", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 87.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 7.0, "Total Spend": 932.0, "Total Transactions": 33.0, "Total Customers": 17.0, "Median Spend per Transaction": 22.05, "Median Spend per Customer": 44.1 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1219 S 9th St", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2022, "Total Visits": 1314.0, "Total Visitors": 1260.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 3.0, "Total Spend": 14502.0, "Total Transactions": 728.0, "Total Customers": 448.0, "Median Spend per Transaction": 16.79, "Median Spend per Customer": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "Name": "La Rosa Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2106 S Broad St", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 68.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 4.0, "Total Spend": 1249.0, "Total Transactions": 105.0, "Total Customers": 54.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.046202, "LONGITUDE": -75.056569, "DATE_RANGE_START": 2022, "Total Visits": 1209.0, "Total Visitors": 781.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 3.0, "Total Spend": 12669.0, "Total Transactions": 1673.0, "Total Customers": 831.0, "Median Spend per Transaction": 6.23, "Median Spend per Customer": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.056569, 40.046202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "Name": "Sang Kee Noodle House", "Category": "Restaurants and Other Eating Places", "Address": "3549 Chestnut St", "LATITUDE": 39.954847, "LONGITUDE": -75.193677, "DATE_RANGE_START": 2022, "Total Visits": 958.0, "Total Visitors": 510.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 390.0, "Total Spend": 4520.0, "Total Transactions": 179.0, "Total Customers": 96.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193677, 39.954847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw4-rzf", "Name": "La Tapenade Mediterranean Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave Terminal A", "LATITUDE": 39.880653, "LONGITUDE": -75.238331, "DATE_RANGE_START": 2022, "Total Visits": 13519.0, "Total Visitors": 11242.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 31.0, "Total Spend": 10908.0, "Total Transactions": 488.0, "Total Customers": 237.0, "Median Spend per Transaction": 15.75, "Median Spend per Customer": 31.11 }, "geometry": { "type": "Point", "coordinates": [ -75.238331, 39.880653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-syv", "Name": "Sushi Garden & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "425 S Broad St", "LATITUDE": 39.944749, "LONGITUDE": -75.164917, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 71.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 65.0, "Total Spend": 1118.0, "Total Transactions": 42.0, "Total Customers": 23.0, "Median Spend per Transaction": 30.13, "Median Spend per Customer": 52.82 }, "geometry": { "type": "Point", "coordinates": [ -75.164917, 39.944749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg9-k4v", "Name": "Mom's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "2312 N 29th St", "LATITUDE": 39.991401, "LONGITUDE": -75.180066, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010169022.0, "Median Dwell Time": 4.0, "Total Spend": 1442.0, "Total Transactions": 44.0, "Total Customers": 19.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 50.88 }, "geometry": { "type": "Point", "coordinates": [ -75.180066, 39.991401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-ht9", "Name": "Sonesta Philadelphia Rittenhouse Square", "Category": "Traveler Accommodation", "Address": "1800 Market St", "LATITUDE": 39.952877, "LONGITUDE": -75.170604, "DATE_RANGE_START": 2022, "Total Visits": 1366.0, "Total Visitors": 817.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 208.0, "Total Spend": 3586.0, "Total Transactions": 26.0, "Total Customers": 12.0, "Median Spend per Transaction": 51.0, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170604, 39.952877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-pvz", "Name": "Triple Play Sports", "Category": "Clothing Stores", "Address": "827 S 9th St", "LATITUDE": 39.939041, "LONGITUDE": -75.157707, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 305.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 5.0, "Total Spend": 8951.0, "Total Transactions": 66.0, "Total Customers": 37.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157707, 39.939041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-4jv", "Name": "Del Rossi's Cheesesteak", "Category": "Restaurants and Other Eating Places", "Address": "538 N 4th St", "LATITUDE": 39.961482, "LONGITUDE": -75.14504, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 105.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 3.0, "Total Spend": 15717.0, "Total Transactions": 474.0, "Total Customers": 216.0, "Median Spend per Transaction": 22.97, "Median Spend per Customer": 45.65 }, "geometry": { "type": "Point", "coordinates": [ -75.14504, 39.961482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "10740 Roosevelt Blvd", "LATITUDE": 40.099643, "LONGITUDE": -75.010101, "DATE_RANGE_START": 2022, "Total Visits": 350.0, "Total Visitors": 329.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 24.0, "Total Spend": 8455.0, "Total Transactions": 209.0, "Total Customers": 171.0, "Median Spend per Transaction": 41.86, "Median Spend per Customer": 42.98 }, "geometry": { "type": "Point", "coordinates": [ -75.010101, 40.099643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "Name": "Giovani's Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "1533 Chestnut St", "LATITUDE": 39.951522, "LONGITUDE": -75.166746, "DATE_RANGE_START": 2022, "Total Visits": 887.0, "Total Visitors": 686.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 67.0, "Total Spend": 25166.0, "Total Transactions": 1172.0, "Total Customers": 406.0, "Median Spend per Transaction": 13.77, "Median Spend per Customer": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.166746, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xkf", "Name": "Lee How Fook", "Category": "Restaurants and Other Eating Places", "Address": "219 N 11th St", "LATITUDE": 39.956286, "LONGITUDE": -75.157078, "DATE_RANGE_START": 2022, "Total Visits": 364.0, "Total Visitors": 300.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 1505.0, "Total Transactions": 23.0, "Total Customers": 14.0, "Median Spend per Transaction": 26.17, "Median Spend per Customer": 44.91 }, "geometry": { "type": "Point", "coordinates": [ -75.157078, 39.956286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-789", "Name": "Booker's Restaurant and Bar", "Category": "Restaurants and Other Eating Places", "Address": "5021 Baltimore Ave", "LATITUDE": 39.947999, "LONGITUDE": -75.22426, "DATE_RANGE_START": 2022, "Total Visits": 153.0, "Total Visitors": 125.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 59.0, "Total Spend": 3742.0, "Total Transactions": 45.0, "Total Customers": 30.0, "Median Spend per Transaction": 60.72, "Median Spend per Customer": 71.64 }, "geometry": { "type": "Point", "coordinates": [ -75.22426, 39.947999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dvw-mx5", "Name": "Sunshine Super Market", "Category": "Grocery Stores", "Address": "5228 Market St", "LATITUDE": 39.960055, "LONGITUDE": -75.226746, "DATE_RANGE_START": 2022, "Total Visits": 14863.0, "Total Visitors": 5896.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 41.0, "Total Spend": 600.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 76.55, "Median Spend per Customer": 87.93 }, "geometry": { "type": "Point", "coordinates": [ -75.226746, 39.960055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3401 Lancaster Ave", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2022, "Total Visits": 469.0, "Total Visitors": 315.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 3.0, "Total Spend": 5783.0, "Total Transactions": 472.0, "Total Customers": 192.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-66k", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1201 Walnut St", "LATITUDE": 39.949053, "LONGITUDE": -75.160719, "DATE_RANGE_START": 2022, "Total Visits": 4451.0, "Total Visitors": 3033.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 4644.0, "Total Transactions": 310.0, "Total Customers": 204.0, "Median Spend per Transaction": 11.31, "Median Spend per Customer": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.160719, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2132 South Street Philadelphia", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2022, "Total Visits": 458.0, "Total Visitors": 267.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 210.0, "Total Spend": 29915.0, "Total Transactions": 1427.0, "Total Customers": 775.0, "Median Spend per Transaction": 14.68, "Median Spend per Customer": 24.18 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-8gk", "Name": "Colinas Mini Market", "Category": "Grocery Stores", "Address": "130 S 60th St", "LATITUDE": 39.95962, "LONGITUDE": -75.241489, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 10.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 11.0, "Total Spend": 791.0, "Total Transactions": 87.0, "Total Customers": 28.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.241489, 39.95962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "500 W Erie Ave", "LATITUDE": 40.007189, "LONGITUDE": -75.137271, "DATE_RANGE_START": 2022, "Total Visits": 1098.0, "Total Visitors": 765.0, "POI_CBG": 421010199001.0, "Median Dwell Time": 4.0, "Total Spend": 814.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 80.01, "Median Spend per Customer": 91.01 }, "geometry": { "type": "Point", "coordinates": [ -75.137271, 40.007189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmd-xqz", "Name": "Cafe Ynez", "Category": "Restaurants and Other Eating Places", "Address": "2025 Washington Ave", "LATITUDE": 39.939765, "LONGITUDE": -75.177339, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 17.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 90.0, "Total Spend": 1741.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 74.96, "Median Spend per Customer": 111.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177339, 39.939765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-m8v", "Name": "Ooh LaLa Salads", "Category": "Restaurants and Other Eating Places", "Address": "1238 W Girard Ave", "LATITUDE": 39.970924, "LONGITUDE": -75.156972, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 21.0, "Total Spend": 132.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.88, "Median Spend per Customer": 37.77 }, "geometry": { "type": "Point", "coordinates": [ -75.156972, 39.970924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pp4-snq", "Name": "Good Time Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2501 E York St", "LATITUDE": 39.97726, "LONGITUDE": -75.123641, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 21.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 80.0, "Total Spend": 2670.0, "Total Transactions": 42.0, "Total Customers": 9.0, "Median Spend per Transaction": 56.09, "Median Spend per Customer": 144.8 }, "geometry": { "type": "Point", "coordinates": [ -75.123641, 39.97726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-m8v", "Name": "Blazin Flavorz", "Category": "Restaurants and Other Eating Places", "Address": "2406 Germantown Ave", "LATITUDE": 39.988482, "LONGITUDE": -75.146793, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010165003.0, "Median Dwell Time": 6.0, "Total Spend": 3506.0, "Total Transactions": 106.0, "Total Customers": 51.0, "Median Spend per Transaction": 28.5, "Median Spend per Customer": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146793, 39.988482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "Name": "El Balconcito", "Category": "Restaurants and Other Eating Places", "Address": "658 E Godfrey Ave", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 8.0, "Total Spend": 477.0, "Total Transactions": 17.0, "Total Customers": 5.0, "Median Spend per Transaction": 29.16, "Median Spend per Customer": 81.56 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfx-kxq", "Name": "Funny Monk Emporium", "Category": "Other Miscellaneous Store Retailers", "Address": "4369 Cresson St", "LATITUDE": 40.026687, "LONGITUDE": -75.224098, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 57.0, "POI_CBG": 421010214003.0, "Median Dwell Time": 424.0, "Total Spend": 20258.0, "Total Transactions": 554.0, "Total Customers": 228.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.224098, 40.026687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j7q", "Name": "J Mclaughlin", "Category": "Clothing Stores", "Address": "8401 Germantown Ave", "LATITUDE": 40.075451, "LONGITUDE": -75.204853, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 2.0, "Total Spend": 441.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 126.52, "Median Spend per Customer": 126.52 }, "geometry": { "type": "Point", "coordinates": [ -75.204853, 40.075451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm3-vzz", "Name": "Sermania Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1719 E Passyunk Ave", "LATITUDE": 39.928072, "LONGITUDE": -75.165393, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 1.0, "Total Spend": 1266.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 160.0, "Median Spend per Customer": 320.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165393, 39.928072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j9z", "Name": "aka.", "Category": "Traveler Accommodation", "Address": "135 S 18th St", "LATITUDE": 39.950397, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 314.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 99.0, "Total Spend": 3304.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 255.0, "Median Spend per Customer": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.950397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "Name": "Fairfield Inn & Suites by Marriott", "Category": "Traveler Accommodation", "Address": "8800 Bartram Ave", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2022, "Total Visits": 1272.0, "Total Visitors": 735.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 292.0, "Total Spend": 76037.0, "Total Transactions": 291.0, "Total Customers": 115.0, "Median Spend per Transaction": 187.28, "Median Spend per Customer": 214.03 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-pvz", "Name": "Red Lion Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "737 Red Lion Rd", "LATITUDE": 40.105639, "LONGITUDE": -75.033118, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 63.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 20.0, "Total Spend": 1866.0, "Total Transactions": 82.0, "Total Customers": 10.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 165.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033118, 40.105639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8y9", "Name": "City Winery Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "990 Filbert St", "LATITUDE": 39.952404, "LONGITUDE": -75.156249, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 12832.0, "Total Transactions": 197.0, "Total Customers": 103.0, "Median Spend per Transaction": 61.0, "Median Spend per Customer": 112.72 }, "geometry": { "type": "Point", "coordinates": [ -75.156249, 39.952404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phz-2ff", "Name": "Wyoming Pizza", "Category": "Restaurants and Other Eating Places", "Address": "601 E Wyoming Ave", "LATITUDE": 40.020426, "LONGITUDE": -75.113704, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 77.0, "POI_CBG": 421010289022.0, "Median Dwell Time": 1.0, "Total Spend": 482.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 32.5, "Median Spend per Customer": 52.26 }, "geometry": { "type": "Point", "coordinates": [ -75.113704, 40.020426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "Name": "Barcade", "Category": "Restaurants and Other Eating Places", "Address": "1114 Frankford Ave", "LATITUDE": 39.96746, "LONGITUDE": -75.134594, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 603.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 47.0, "Total Spend": 47455.0, "Total Transactions": 1624.0, "Total Customers": 737.0, "Median Spend per Transaction": 21.8, "Median Spend per Customer": 50.04 }, "geometry": { "type": "Point", "coordinates": [ -75.134594, 39.96746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-vpv", "Name": "P'unk Burger", "Category": "Restaurants and Other Eating Places", "Address": "1823 E Passyunk Ave", "LATITUDE": 39.927124, "LONGITUDE": -75.166327, "DATE_RANGE_START": 2022, "Total Visits": 709.0, "Total Visitors": 484.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 46.0, "Total Spend": 189.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.63, "Median Spend per Customer": 54.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.927124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-9s5", "Name": "Parkside Beef & Ale", "Category": "Restaurants and Other Eating Places", "Address": "1433 Arch St", "LATITUDE": 39.954767, "LONGITUDE": -75.164606, "DATE_RANGE_START": 2022, "Total Visits": 183.0, "Total Visitors": 153.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 56.0, "Total Spend": 7672.0, "Total Transactions": 247.0, "Total Customers": 71.0, "Median Spend per Transaction": 24.6, "Median Spend per Customer": 78.72 }, "geometry": { "type": "Point", "coordinates": [ -75.164606, 39.954767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj6-8y9", "Name": "El Rinconcito", "Category": "Restaurants and Other Eating Places", "Address": "734 Adams Ave", "LATITUDE": 40.031782, "LONGITUDE": -75.107117, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 84.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 11.0, "Total Spend": 107.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.36, "Median Spend per Customer": 30.72 }, "geometry": { "type": "Point", "coordinates": [ -75.107117, 40.031782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "Name": "China Gate", "Category": "Restaurants and Other Eating Places", "Address": "3822 Morrell Ave", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2022, "Total Visits": 997.0, "Total Visitors": 690.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 9.0, "Total Spend": 3071.0, "Total Transactions": 131.0, "Total Customers": 57.0, "Median Spend per Transaction": 18.95, "Median Spend per Customer": 44.22 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "Name": "La Calaca Feliz", "Category": "Restaurants and Other Eating Places", "Address": "2321 Fairmount Ave", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 57.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 41.0, "Total Spend": 7375.0, "Total Transactions": 92.0, "Total Customers": 56.0, "Median Spend per Transaction": 70.01, "Median Spend per Customer": 123.93 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pj6-k4v", "Name": "Tiger Sugar", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.045018, "LONGITUDE": -75.117501, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 20.0, "Total Spend": 12270.0, "Total Transactions": 1052.0, "Total Customers": 526.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 16.77 }, "geometry": { "type": "Point", "coordinates": [ -75.117501, 40.045018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.011206, "LONGITUDE": -75.113008, "DATE_RANGE_START": 2022, "Total Visits": 679.0, "Total Visitors": 390.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 3.0, "Total Spend": 9958.0, "Total Transactions": 1125.0, "Total Customers": 523.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 11.64 }, "geometry": { "type": "Point", "coordinates": [ -75.113008, 40.011206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pgf-fj9", "Name": "Cleopatra Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4145 Chestnut St", "LATITUDE": 39.956516, "LONGITUDE": -75.206034, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 52.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 1.0, "Total Spend": 2321.0, "Total Transactions": 44.0, "Total Customers": 23.0, "Median Spend per Transaction": 51.0, "Median Spend per Customer": 92.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206034, 39.956516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "Name": "George's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 W Girard Ave", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 129.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 2.0, "Total Spend": 3807.0, "Total Transactions": 232.0, "Total Customers": 101.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "Name": "DaMo Pasta Lab", "Category": "Restaurants and Other Eating Places", "Address": "105 S 12th St", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 181.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 7059.0, "Total Transactions": 280.0, "Total Customers": 125.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.99223, "LONGITUDE": -75.09972, "DATE_RANGE_START": 2022, "Total Visits": 286.0, "Total Visitors": 220.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 40.0, "Total Spend": 7059.0, "Total Transactions": 148.0, "Total Customers": 132.0, "Median Spend per Transaction": 40.56, "Median Spend per Customer": 43.06 }, "geometry": { "type": "Point", "coordinates": [ -75.09972, 39.99223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pzp-2zf", "Name": "Station Pizza", "Category": "Restaurants and Other Eating Places", "Address": "14102 Bustleton Ave", "LATITUDE": 40.131988, "LONGITUDE": -75.012285, "DATE_RANGE_START": 2022, "Total Visits": 491.0, "Total Visitors": 408.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 37.0, "Total Spend": 3960.0, "Total Transactions": 193.0, "Total Customers": 91.0, "Median Spend per Transaction": 15.9, "Median Spend per Customer": 39.97 }, "geometry": { "type": "Point", "coordinates": [ -75.012285, 40.131988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "259 Market St", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 120.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 2.0, "Total Spend": 25676.0, "Total Transactions": 1423.0, "Total Customers": 753.0, "Median Spend per Transaction": 11.12, "Median Spend per Customer": 17.84 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1324 Walnut St", "LATITUDE": 39.949164, "LONGITUDE": -75.163217, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 179.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 4.0, "Total Spend": 2472.0, "Total Transactions": 434.0, "Total Customers": 220.0, "Median Spend per Transaction": 4.73, "Median Spend per Customer": 7.21 }, "geometry": { "type": "Point", "coordinates": [ -75.163217, 39.949164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pp2-2kz", "Name": "Aramingo Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992444, "LONGITUDE": -75.101354, "DATE_RANGE_START": 2022, "Total Visits": 753.0, "Total Visitors": 564.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 19.0, "Total Spend": 4673.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 198.0, "Median Spend per Customer": 396.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101354, 39.992444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6140 Woodland Ave", "LATITUDE": 39.928169, "LONGITUDE": -75.230056, "DATE_RANGE_START": 2022, "Total Visits": 436.0, "Total Visitors": 291.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 8.0, "Total Spend": 372.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 18.17, "Median Spend per Customer": 14.47 }, "geometry": { "type": "Point", "coordinates": [ -75.230056, 39.928169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1601 S Columbus Blvd", "LATITUDE": 39.923962, "LONGITUDE": -75.142554, "DATE_RANGE_START": 2022, "Total Visits": 1024.0, "Total Visitors": 828.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 14568.0, "Total Transactions": 1373.0, "Total Customers": 1040.0, "Median Spend per Transaction": 9.13, "Median Spend per Customer": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.142554, 39.923962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-jgk", "Name": "DanDan", "Category": "Restaurants and Other Eating Places", "Address": "126 S 16th St", "LATITUDE": 39.950263, "LONGITUDE": -75.1676, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 162.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 19787.0, "Total Transactions": 429.0, "Total Customers": 216.0, "Median Spend per Transaction": 37.06, "Median Spend per Customer": 70.71 }, "geometry": { "type": "Point", "coordinates": [ -75.1676, 39.950263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2550 Welsh Rd", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 225.0, "POI_CBG": 421010347013.0, "Median Dwell Time": 5.0, "Total Spend": 4786.0, "Total Transactions": 364.0, "Total Customers": 287.0, "Median Spend per Transaction": 11.47, "Median Spend per Customer": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7x-vzz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "7350 Bustleton Ave", "LATITUDE": 40.049089, "LONGITUDE": -75.059427, "DATE_RANGE_START": 2022, "Total Visits": 1281.0, "Total Visitors": 857.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 5.0, "Total Spend": 348.0, "Total Transactions": 35.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.82, "Median Spend per Customer": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.059427, 40.049089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-mrk", "Name": "Elixr Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "1600 Market St", "LATITUDE": 39.952527, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2022, "Total Visits": 1690.0, "Total Visitors": 1155.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 249.0, "Total Spend": 5453.0, "Total Transactions": 538.0, "Total Customers": 157.0, "Median Spend per Transaction": 6.94, "Median Spend per Customer": 21.25 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.952527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2100 Market St", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 169.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 3.0, "Total Spend": 4801.0, "Total Transactions": 692.0, "Total Customers": 341.0, "Median Spend per Transaction": 6.03, "Median Spend per Customer": 8.65 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pnw-nh5", "Name": "Johnny Brenda's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1201 Frankford Ave", "LATITUDE": 39.969072, "LONGITUDE": -75.134263, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 176.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 37.0, "Total Spend": 1454.0, "Total Transactions": 57.0, "Total Customers": 23.0, "Median Spend per Transaction": 21.52, "Median Spend per Customer": 44.98 }, "geometry": { "type": "Point", "coordinates": [ -75.134263, 39.969072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-t5f", "Name": "Perla", "Category": "Restaurants and Other Eating Places", "Address": "1535 S 11th St", "LATITUDE": 39.930011, "LONGITUDE": -75.162803, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 75.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 13.0, "Total Spend": 9548.0, "Total Transactions": 64.0, "Total Customers": 35.0, "Median Spend per Transaction": 123.68, "Median Spend per Customer": 229.04 }, "geometry": { "type": "Point", "coordinates": [ -75.162803, 39.930011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-j7q", "Name": "Cavanaugh's Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "1823 Sansom St", "LATITUDE": 39.951128, "LONGITUDE": -75.171573, "DATE_RANGE_START": 2022, "Total Visits": 308.0, "Total Visitors": 192.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 38.0, "Total Spend": 2313.0, "Total Transactions": 63.0, "Total Customers": 16.0, "Median Spend per Transaction": 21.76, "Median Spend per Customer": 91.92 }, "geometry": { "type": "Point", "coordinates": [ -75.171573, 39.951128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pm9-tjv", "Name": "Watches Etc", "Category": "Clothing Stores", "Address": "105 S 8th St", "LATITUDE": 39.949318, "LONGITUDE": -75.153835, "DATE_RANGE_START": 2022, "Total Visits": 1101.0, "Total Visitors": 949.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 2924.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 419.6, "Median Spend per Customer": 839.2 }, "geometry": { "type": "Point", "coordinates": [ -75.153835, 39.949318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pp5-p35", "Name": "Q & A Wholesale", "Category": "Other Miscellaneous Store Retailers", "Address": "2749 Kensington Ave", "LATITUDE": 39.990714, "LONGITUDE": -75.123434, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010178007.0, "Median Dwell Time": 1.0, "Total Spend": 135.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 36.75, "Median Spend per Customer": 38.75 }, "geometry": { "type": "Point", "coordinates": [ -75.123434, 39.990714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "Name": "Fiorino", "Category": "Restaurants and Other Eating Places", "Address": "3572 Indian Queen Ln", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 82.0, "Total Spend": 10348.0, "Total Transactions": 91.0, "Total Customers": 45.0, "Median Spend per Transaction": 108.08, "Median Spend per Customer": 225.58 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-835", "Name": "Down Home Diner", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.952864, "LONGITUDE": -75.159035, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 21315.0, "Total Transactions": 789.0, "Total Customers": 392.0, "Median Spend per Transaction": 21.23, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159035, 39.952864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-pjv", "Name": "Pattaya", "Category": "Restaurants and Other Eating Places", "Address": "4040 Locust St", "LATITUDE": 39.952851, "LONGITUDE": -75.204788, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 94.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 422.0, "Total Spend": 2065.0, "Total Transactions": 40.0, "Total Customers": 23.0, "Median Spend per Transaction": 46.04, "Median Spend per Customer": 92.08 }, "geometry": { "type": "Point", "coordinates": [ -75.204788, 39.952851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7v-f2k", "Name": "Raymour & Flanigan Outlet", "Category": "Furniture Stores", "Address": "2045 Cottman Ave", "LATITUDE": 40.051034, "LONGITUDE": -75.064888, "DATE_RANGE_START": 2022, "Total Visits": 366.0, "Total Visitors": 301.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 20.0, "Total Spend": 2284.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 472.98, "Median Spend per Customer": 655.5 }, "geometry": { "type": "Point", "coordinates": [ -75.064888, 40.051034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "Name": "Charlie Was a Sinner", "Category": "Restaurants and Other Eating Places", "Address": "131 S 13th St", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 148.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 102.0, "Total Spend": 49494.0, "Total Transactions": 622.0, "Total Customers": 321.0, "Median Spend per Transaction": 73.68, "Median Spend per Customer": 135.77 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-224@628-pmb-66k", "Name": "Cosmic Cafe", "Category": "Restaurants and Other Eating Places", "Address": "122 S 12th St", "LATITUDE": 39.949349, "LONGITUDE": -75.160742, "DATE_RANGE_START": 2022, "Total Visits": 4451.0, "Total Visitors": 3033.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 297.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 28.8, "Median Spend per Customer": 40.8 }, "geometry": { "type": "Point", "coordinates": [ -75.160742, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "Name": "Cafe Old Nelson", "Category": "Restaurants and Other Eating Places", "Address": "1435 Arch St", "LATITUDE": 39.954761, "LONGITUDE": -75.164691, "DATE_RANGE_START": 2022, "Total Visits": 267.0, "Total Visitors": 193.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 180.0, "Total Spend": 4114.0, "Total Transactions": 368.0, "Total Customers": 129.0, "Median Spend per Transaction": 9.31, "Median Spend per Customer": 19.27 }, "geometry": { "type": "Point", "coordinates": [ -75.164691, 39.954761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1501 Cecil B Moore Ave", "LATITUDE": 39.979068, "LONGITUDE": -75.159667, "DATE_RANGE_START": 2022, "Total Visits": 261.0, "Total Visitors": 179.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 2.0, "Total Spend": 1339.0, "Total Transactions": 218.0, "Total Customers": 120.0, "Median Spend per Transaction": 4.59, "Median Spend per Customer": 7.11 }, "geometry": { "type": "Point", "coordinates": [ -75.159667, 39.979068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phn-qmk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "8235 Stenton Ave", "LATITUDE": 40.068844, "LONGITUDE": -75.18088, "DATE_RANGE_START": 2022, "Total Visits": 157.0, "Total Visitors": 99.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 3.0, "Total Spend": 6565.0, "Total Transactions": 289.0, "Total Customers": 206.0, "Median Spend per Transaction": 15.45, "Median Spend per Customer": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.18088, 40.068844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6701 Ridge Ave", "LATITUDE": 40.040962, "LONGITUDE": -75.223848, "DATE_RANGE_START": 2022, "Total Visits": 620.0, "Total Visitors": 449.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 4.0, "Total Spend": 15743.0, "Total Transactions": 747.0, "Total Customers": 537.0, "Median Spend per Transaction": 17.79, "Median Spend per Customer": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.223848, 40.040962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg4-mx5", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "5301 Chew Ave Ste B", "LATITUDE": 40.04358, "LONGITUDE": -75.159446, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 44.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 3.0, "Total Spend": 6020.0, "Total Transactions": 49.0, "Total Customers": 35.0, "Median Spend per Transaction": 63.5, "Median Spend per Customer": 66.14 }, "geometry": { "type": "Point", "coordinates": [ -75.159446, 40.04358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pnx-sh5", "Name": "The International", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1624 N Front St", "LATITUDE": 39.974951, "LONGITUDE": -75.134534, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 45.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 53.0, "Total Spend": 120.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 21.19, "Median Spend per Customer": 34.49 }, "geometry": { "type": "Point", "coordinates": [ -75.134534, 39.974951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "Name": "Urban Outfitters", "Category": "Clothing Stores", "Address": "1627 Walnut St", "LATITUDE": 39.950066, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2022, "Total Visits": 1171.0, "Total Visitors": 1023.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 13.0, "Total Spend": 18185.0, "Total Transactions": 406.0, "Total Customers": 369.0, "Median Spend per Transaction": 31.86, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8j-bkz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7310 Frankford Ave # 14", "LATITUDE": 40.037321, "LONGITUDE": -75.040337, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 153.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 44.0, "Total Spend": 1068.0, "Total Transactions": 110.0, "Total Customers": 92.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.040337, 40.037321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "Name": "Red Poke Express", "Category": "Restaurants and Other Eating Places", "Address": "135 South St", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 1.0, "Total Spend": 2566.0, "Total Transactions": 117.0, "Total Customers": 54.0, "Median Spend per Transaction": 17.12, "Median Spend per Customer": 31.98 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "Name": "King Food Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7426 Frankford Ave", "LATITUDE": 40.038528, "LONGITUDE": -75.036845, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 1.0, "Total Spend": 730.0, "Total Transactions": 45.0, "Total Customers": 24.0, "Median Spend per Transaction": 16.69, "Median Spend per Customer": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -75.036845, 40.038528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "3000 B St", "LATITUDE": 39.995073, "LONGITUDE": -75.126158, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 35.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 1.0, "Total Spend": 601.0, "Total Transactions": 56.0, "Total Customers": 26.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 14.48 }, "geometry": { "type": "Point", "coordinates": [ -75.126158, 39.995073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "1556 E Wadsworth Ave", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 8.0, "Total Spend": 3828.0, "Total Transactions": 143.0, "Total Customers": 59.0, "Median Spend per Transaction": 19.33, "Median Spend per Customer": 49.42 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "Name": "Guzman Grocery", "Category": "Grocery Stores", "Address": "3100 E St", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 44.0, "POI_CBG": 421010177023.0, "Median Dwell Time": 3.0, "Total Spend": 1273.0, "Total Transactions": 92.0, "Total Customers": 16.0, "Median Spend per Transaction": 8.24, "Median Spend per Customer": 22.98 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "Name": "Little Fish", "Category": "Restaurants and Other Eating Places", "Address": "746 S 6th St", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010018001.0, "Median Dwell Time": null, "Total Spend": 3790.0, "Total Transactions": 42.0, "Total Customers": 23.0, "Median Spend per Transaction": 28.18, "Median Spend per Customer": 56.36 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "Name": "Tomo Sushi & Ramen", "Category": "Restaurants and Other Eating Places", "Address": "228 Arch St", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 37.0, "Total Spend": 3226.0, "Total Transactions": 61.0, "Total Customers": 35.0, "Median Spend per Transaction": 47.8, "Median Spend per Customer": 87.16 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj3-tqf", "Name": "Lucky Garden", "Category": "Restaurants and Other Eating Places", "Address": "4901 N Broad St", "LATITUDE": 40.027775, "LONGITUDE": -75.14691, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 1.0, "Total Spend": 756.0, "Total Transactions": 44.0, "Total Customers": 10.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 52.65 }, "geometry": { "type": "Point", "coordinates": [ -75.14691, 40.027775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfy-2ff", "Name": "Tasty Twisters Bakery", "Category": "Restaurants and Other Eating Places", "Address": "5002 Umbria St", "LATITUDE": 40.035673, "LONGITUDE": -75.236122, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 2.0, "Total Spend": 241.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.236122, 40.035673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7z-6tv", "Name": "Dollar Discount", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6812 Rising Sun Ave", "LATITUDE": 40.055124, "LONGITUDE": -75.090736, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 40.0, "POI_CBG": 421010307003.0, "Median Dwell Time": 30.0, "Total Spend": 576.0, "Total Transactions": 26.0, "Total Customers": 10.0, "Median Spend per Transaction": 12.14, "Median Spend per Customer": 27.49 }, "geometry": { "type": "Point", "coordinates": [ -75.090736, 40.055124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phq-gff", "Name": "Takka Grill & Shrimpie's", "Category": "Restaurants and Other Eating Places", "Address": "1910 W Cheltenham Ave", "LATITUDE": 40.067474, "LONGITUDE": -75.147141, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 51.0, "POI_CBG": 421010266003.0, "Median Dwell Time": 709.0, "Total Spend": 1908.0, "Total Transactions": 85.0, "Total Customers": 35.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147141, 40.067474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-k9f", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8500 Henry Ave Ste 40A", "LATITUDE": 40.063455, "LONGITUDE": -75.236411, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 56.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 76.0, "Total Spend": 1915.0, "Total Transactions": 127.0, "Total Customers": 105.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.236411, 40.063455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "Name": "Buffalo Wild Wings", "Category": "Restaurants and Other Eating Places", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.082615, "LONGITUDE": -75.025718, "DATE_RANGE_START": 2022, "Total Visits": 897.0, "Total Visitors": 798.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 37.0, "Total Spend": 8308.0, "Total Transactions": 192.0, "Total Customers": 172.0, "Median Spend per Transaction": 39.43, "Median Spend per Customer": 42.01 }, "geometry": { "type": "Point", "coordinates": [ -75.025718, 40.082615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "Name": "Standard Tap", "Category": "Restaurants and Other Eating Places", "Address": "901 N 2nd St", "LATITUDE": 39.964257, "LONGITUDE": -75.140401, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 57.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 31.0, "Total Spend": 5067.0, "Total Transactions": 77.0, "Total Customers": 42.0, "Median Spend per Transaction": 44.73, "Median Spend per Customer": 74.8 }, "geometry": { "type": "Point", "coordinates": [ -75.140401, 39.964257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "8966 Frankford Ave", "LATITUDE": 40.052422, "LONGITUDE": -75.00877, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 233.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 7.0, "Total Spend": 17440.0, "Total Transactions": 287.0, "Total Customers": 221.0, "Median Spend per Transaction": 19.96, "Median Spend per Customer": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.00877, 40.052422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "Name": "S & S Foods", "Category": "Grocery Stores", "Address": "1800 S Columbus Blvd", "LATITUDE": 39.924738, "LONGITUDE": -75.144356, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 284.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 52939.0, "Total Transactions": 105.0, "Total Customers": 26.0, "Median Spend per Transaction": 218.0, "Median Spend per Customer": 759.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144356, 39.924738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "Name": "1 Stop Mini Market", "Category": "Grocery Stores", "Address": "700 S 8th St", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 82.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 1.0, "Total Spend": 14385.0, "Total Transactions": 812.0, "Total Customers": 186.0, "Median Spend per Transaction": 14.88, "Median Spend per Customer": 31.88 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-975", "Name": "Avril 50", "Category": "Other Miscellaneous Store Retailers", "Address": "3406 Sansom St", "LATITUDE": 39.953493, "LONGITUDE": -75.192528, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 50.0, "Total Spend": 1917.0, "Total Transactions": 87.0, "Total Customers": 42.0, "Median Spend per Transaction": 18.97, "Median Spend per Customer": 37.52 }, "geometry": { "type": "Point", "coordinates": [ -75.192528, 39.953493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-gzf", "Name": "U Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1220 Locust St", "LATITUDE": 39.947628, "LONGITUDE": -75.161514, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 64.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 51.0, "Total Spend": 44226.0, "Total Transactions": 1880.0, "Total Customers": 448.0, "Median Spend per Transaction": 19.8, "Median Spend per Customer": 56.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161514, 39.947628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-h89", "Name": "Gyu-Kaku", "Category": "Restaurants and Other Eating Places", "Address": "1901 Callowhill St", "LATITUDE": 39.960773, "LONGITUDE": -75.170117, "DATE_RANGE_START": 2022, "Total Visits": 580.0, "Total Visitors": 425.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 103.0, "Total Spend": 32526.0, "Total Transactions": 293.0, "Total Customers": 150.0, "Median Spend per Transaction": 107.35, "Median Spend per Customer": 177.82 }, "geometry": { "type": "Point", "coordinates": [ -75.170117, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "Name": "Hilltown Tavern", "Category": "Restaurants and Other Eating Places", "Address": "326 Roxborough Ave", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 80.0, "POI_CBG": 421010213004.0, "Median Dwell Time": 201.0, "Total Spend": 54080.0, "Total Transactions": 1078.0, "Total Customers": 449.0, "Median Spend per Transaction": 42.83, "Median Spend per Customer": 89.13 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "Name": "El Camino Real", "Category": "Restaurants and Other Eating Places", "Address": "1040 N 2nd St", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 99.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 91.0, "Total Spend": 6158.0, "Total Transactions": 91.0, "Total Customers": 44.0, "Median Spend per Transaction": 58.13, "Median Spend per Customer": 113.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-vcq", "Name": "The Dolphin Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1539 S Broad St", "LATITUDE": 39.930579, "LONGITUDE": -75.167937, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 96.0, "POI_CBG": 421010029002.0, "Median Dwell Time": 32.0, "Total Spend": 269.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 19.6, "Median Spend per Customer": 39.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167937, 39.930579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "Name": "Pho Cyclo Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2124 S Broad St", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2022, "Total Visits": 902.0, "Total Visitors": 564.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 33.0, "Total Spend": 2497.0, "Total Transactions": 84.0, "Total Customers": 35.0, "Median Spend per Transaction": 30.3, "Median Spend per Customer": 63.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pm9-whq", "Name": "Kurry Shack", "Category": "Restaurants and Other Eating Places", "Address": "6 N 3rd St", "LATITUDE": 39.950437, "LONGITUDE": -75.145824, "DATE_RANGE_START": 2022, "Total Visits": 1613.0, "Total Visitors": 1197.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 60.0, "Total Spend": 306.0, "Total Transactions": 14.0, "Total Customers": 5.0, "Median Spend per Transaction": 23.2, "Median Spend per Customer": 58.18 }, "geometry": { "type": "Point", "coordinates": [ -75.145824, 39.950437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg5-dsq", "Name": "Valley Green Inn", "Category": "Restaurants and Other Eating Places", "Address": "7 Valley Green Rd", "LATITUDE": 40.054006, "LONGITUDE": -75.218198, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 112.0, "POI_CBG": 421019801001.0, "Median Dwell Time": 55.0, "Total Spend": 24566.0, "Total Transactions": 333.0, "Total Customers": 183.0, "Median Spend per Transaction": 44.34, "Median Spend per Customer": 78.96 }, "geometry": { "type": "Point", "coordinates": [ -75.218198, 40.054006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgj-cbk", "Name": "Pazzo Pazzo", "Category": "Restaurants and Other Eating Places", "Address": "1614 Cecil B Moore Ave", "LATITUDE": 39.979011, "LONGITUDE": -75.161757, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 112.0, "POI_CBG": 421010147001.0, "Median Dwell Time": 92.0, "Total Spend": 12247.0, "Total Transactions": 824.0, "Total Customers": 256.0, "Median Spend per Transaction": 12.61, "Median Spend per Customer": 29.08 }, "geometry": { "type": "Point", "coordinates": [ -75.161757, 39.979011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-225@628-pjk-3nq", "Name": "Lucky Star Asian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "8919 Ridge Ave", "LATITUDE": 40.069778, "LONGITUDE": -75.239531, "DATE_RANGE_START": 2022, "Total Visits": 561.0, "Total Visitors": 382.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 36.0, "Total Spend": 302.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 22.59, "Median Spend per Customer": 29.88 }, "geometry": { "type": "Point", "coordinates": [ -75.239531, 40.069778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St Ste 103", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2022, "Total Visits": 28654.0, "Total Visitors": 19157.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 9.0, "Total Spend": 2928.0, "Total Transactions": 221.0, "Total Customers": 209.0, "Median Spend per Transaction": 11.92, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y9z", "Name": "The Vision Denim Division", "Category": "Clothing Stores", "Address": "414 South St", "LATITUDE": 39.941612, "LONGITUDE": -75.149864, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 366.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 38.0, "Total Spend": 836.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149864, 39.941612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2131 South St", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2022, "Total Visits": 296.0, "Total Visitors": 228.0, "POI_CBG": 421010012013.0, "Median Dwell Time": 5.0, "Total Spend": 53014.0, "Total Transactions": 5249.0, "Total Customers": 2155.0, "Median Spend per Transaction": 8.22, "Median Spend per Customer": 12.65 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "Name": "Beer Love", "Category": "Beer, Wine, and Liquor Stores", "Address": "714 S 4th St", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 172.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 8.0, "Total Spend": 7168.0, "Total Transactions": 244.0, "Total Customers": 96.0, "Median Spend per Transaction": 27.49, "Median Spend per Customer": 57.78 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-zxq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3260 N Broad St Ste 5", "LATITUDE": 40.002963, "LONGITUDE": -75.152983, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 146.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 7.0, "Total Spend": 8430.0, "Total Transactions": 519.0, "Total Customers": 361.0, "Median Spend per Transaction": 10.84, "Median Spend per Customer": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.152983, 40.002963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "1575 N 52nd St", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 75.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 7.0, "Total Spend": 103.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 29.49, "Median Spend per Customer": 29.49 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "10 Snyder Ave", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 336.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 5.0, "Total Spend": 9415.0, "Total Transactions": 692.0, "Total Customers": 293.0, "Median Spend per Transaction": 8.07, "Median Spend per Customer": 17.21 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "Name": "Mostly Books", "Category": "Book Stores and News Dealers", "Address": "529 Bainbridge St", "LATITUDE": 39.94129, "LONGITUDE": -75.151876, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 77.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 13.0, "Total Spend": 2929.0, "Total Transactions": 166.0, "Total Customers": 92.0, "Median Spend per Transaction": 15.01, "Median Spend per Customer": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.151876, 39.94129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "Name": "Off Broadway Shoe Warehouse", "Category": "Shoe Stores", "Address": "1477 Franklin Mills Cir", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2022, "Total Visits": 535.0, "Total Visitors": 456.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 2129.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 114.23, "Median Spend per Customer": 149.97 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p8j-6hq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7383 State Rd & Bleigh St", "LATITUDE": 40.026851, "LONGITUDE": -75.028938, "DATE_RANGE_START": 2022, "Total Visits": 453.0, "Total Visitors": 389.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 3.0, "Total Spend": 620.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 58.93, "Median Spend per Customer": 58.93 }, "geometry": { "type": "Point", "coordinates": [ -75.028938, 40.026851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "Name": "Macy's", "Category": "Department Stores", "Address": "2399 Cottman Ave", "LATITUDE": 40.04687, "LONGITUDE": -75.054304, "DATE_RANGE_START": 2022, "Total Visits": 2371.0, "Total Visitors": 1787.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 31.0, "Total Spend": 7714.0, "Total Transactions": 78.0, "Total Customers": 70.0, "Median Spend per Transaction": 89.19, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054304, 40.04687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p8t-6kz", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4301 Byberry Rd", "LATITUDE": 40.083264, "LONGITUDE": -74.962395, "DATE_RANGE_START": 2022, "Total Visits": 12634.0, "Total Visitors": 7591.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 29.0, "Total Spend": 305602.0, "Total Transactions": 5047.0, "Total Customers": 2920.0, "Median Spend per Transaction": 34.37, "Median Spend per Customer": 52.97 }, "geometry": { "type": "Point", "coordinates": [ -74.962395, 40.083264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-qpv", "Name": "Sunrise Pizza", "Category": "Restaurants and Other Eating Places", "Address": "528 W Butler St", "LATITUDE": 40.009015, "LONGITUDE": -75.137692, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 5.0, "POI_CBG": 421010198006.0, "Median Dwell Time": 2.0, "Total Spend": 3949.0, "Total Transactions": 110.0, "Total Customers": 40.0, "Median Spend per Transaction": 37.0, "Median Spend per Customer": 74.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137692, 40.009015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-wc5", "Name": "Renzis Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "6300 Battersby St", "LATITUDE": 40.029921, "LONGITUDE": -75.062595, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 54.0, "POI_CBG": 421010316004.0, "Median Dwell Time": 196.0, "Total Spend": 93.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.36, "Median Spend per Customer": 26.73 }, "geometry": { "type": "Point", "coordinates": [ -75.062595, 40.029921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-7yv", "Name": "Koi", "Category": "Restaurants and Other Eating Places", "Address": "604 N 2nd St", "LATITUDE": 39.961215, "LONGITUDE": -75.141549, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 89.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 31.0, "Total Spend": 823.0, "Total Transactions": 94.0, "Total Customers": 17.0, "Median Spend per Transaction": 5.67, "Median Spend per Customer": 36.99 }, "geometry": { "type": "Point", "coordinates": [ -75.141549, 39.961215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3101 W Allegheny Ave", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 84.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 6.0, "Total Spend": 10160.0, "Total Transactions": 239.0, "Total Customers": 192.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 22.98 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-qs5", "Name": "Flying Fish Seafood", "Category": "Specialty Food Stores", "Address": "2652 S 9th St", "LATITUDE": 39.91592, "LONGITUDE": -75.163019, "DATE_RANGE_START": 2022, "Total Visits": 558.0, "Total Visitors": 166.0, "POI_CBG": 421010041023.0, "Median Dwell Time": 1102.0, "Total Spend": 6925.0, "Total Transactions": 75.0, "Total Customers": 38.0, "Median Spend per Transaction": 51.82, "Median Spend per Customer": 79.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163019, 39.91592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3331 Grant Ave", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2022, "Total Visits": 1225.0, "Total Visitors": 859.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 5.0, "Total Spend": 6291.0, "Total Transactions": 303.0, "Total Customers": 226.0, "Median Spend per Transaction": 14.19, "Median Spend per Customer": 18.13 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-pqf", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6749 Germantown Ave", "LATITUDE": 40.05323, "LONGITUDE": -75.185876, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 10.0, "POI_CBG": 421010253003.0, "Median Dwell Time": null, "Total Spend": 416.0, "Total Transactions": 24.0, "Total Customers": 9.0, "Median Spend per Transaction": 12.45, "Median Spend per Customer": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185876, 40.05323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-xkf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4500 Baltimore Ave", "LATITUDE": 39.94872, "LONGITUDE": -75.21312, "DATE_RANGE_START": 2022, "Total Visits": 1089.0, "Total Visitors": 746.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 4.0, "Total Spend": 358.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 17.54, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.21312, 39.94872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phj-rp9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7900 Ogontz Ave", "LATITUDE": 40.07278, "LONGITUDE": -75.15833, "DATE_RANGE_START": 2022, "Total Visits": 1089.0, "Total Visitors": 714.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 7.0, "Total Spend": 556.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 48.1 }, "geometry": { "type": "Point", "coordinates": [ -75.15833, 40.07278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4140 N Broad St", "LATITUDE": 40.016586, "LONGITUDE": -75.149894, "DATE_RANGE_START": 2022, "Total Visits": 1289.0, "Total Visitors": 913.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 4.0, "Total Spend": 645.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 25.62, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149894, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj2-sh5", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012182, "LONGITUDE": -75.115173, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 23.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 3.0, "Total Spend": 4394.0, "Total Transactions": 94.0, "Total Customers": 70.0, "Median Spend per Transaction": 34.47, "Median Spend per Customer": 39.15 }, "geometry": { "type": "Point", "coordinates": [ -75.115173, 40.012182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "Name": "Somerset Splits", "Category": "Restaurants and Other Eating Places", "Address": "2600 E Somerset St", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 30.0, "POI_CBG": 421010180013.0, "Median Dwell Time": 7.0, "Total Spend": 4894.0, "Total Transactions": 315.0, "Total Customers": 146.0, "Median Spend per Transaction": 13.2, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044593, "LONGITUDE": -75.101222, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 59.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 124.0, "Total Spend": 241.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 13.87, "Median Spend per Customer": 13.87 }, "geometry": { "type": "Point", "coordinates": [ -75.101222, 40.044593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phm-8jv", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "1401 66th Ave", "LATITUDE": 40.054104, "LONGITUDE": -75.141923, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 38.0, "POI_CBG": 421010268003.0, "Median Dwell Time": 21.0, "Total Spend": 161.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 17.26, "Median Spend per Customer": 28.05 }, "geometry": { "type": "Point", "coordinates": [ -75.141923, 40.054104 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St Ste 5", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 58.0, "Total Spend": 4094.0, "Total Transactions": 275.0, "Total Customers": 186.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-54v", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "2875 W Dauphin St", "LATITUDE": 39.991295, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 71.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 3.0, "Total Spend": 311.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 11.8, "Median Spend per Customer": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-49z", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "2400 W Passyunk Ave", "LATITUDE": 39.921974, "LONGITUDE": -75.18737, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 112.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 2.0, "Total Spend": 11.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 3.24, "Median Spend per Customer": 3.24 }, "geometry": { "type": "Point", "coordinates": [ -75.18737, 39.921974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7512 Bustleton Ave", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2022, "Total Visits": 402.0, "Total Visitors": 301.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 2.0, "Total Spend": 7662.0, "Total Transactions": 943.0, "Total Customers": 467.0, "Median Spend per Transaction": 6.57, "Median Spend per Customer": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5s5", "Name": "Federal Donuts East Market", "Category": "Restaurants and Other Eating Places", "Address": "21 S 12th St", "LATITUDE": 39.951076, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2022, "Total Visits": 2282.0, "Total Visitors": 1479.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 243.0, "Total Spend": 18531.0, "Total Transactions": 1291.0, "Total Customers": 627.0, "Median Spend per Transaction": 11.26, "Median Spend per Customer": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.951076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-rff", "Name": "Montana Grill", "Category": "Restaurants and Other Eating Places", "Address": "6651 Castor Ave", "LATITUDE": 40.042892, "LONGITUDE": -75.073677, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010313004.0, "Median Dwell Time": 1.0, "Total Spend": 193.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073677, 40.042892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "Name": "Pub On Passyunk East", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1501 E Passyunk Ave", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 28.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 44.0, "Total Spend": 400.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 42.5, "Median Spend per Customer": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-t5f", "Name": "The Palace of Indian", "Category": "Restaurants and Other Eating Places", "Address": "1533 S 11th St", "LATITUDE": 39.930086, "LONGITUDE": -75.162858, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010028024.0, "Median Dwell Time": null, "Total Spend": 184.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 43.88, "Median Spend per Customer": 52.85 }, "geometry": { "type": "Point", "coordinates": [ -75.162858, 39.930086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6323 Castor Ave", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 99.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 3.0, "Total Spend": 2065.0, "Total Transactions": 242.0, "Total Customers": 139.0, "Median Spend per Transaction": 8.29, "Median Spend per Customer": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "634 Market St", "LATITUDE": 39.950691, "LONGITUDE": -75.151871, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 132.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 4.0, "Total Spend": 4217.0, "Total Transactions": 669.0, "Total Customers": 416.0, "Median Spend per Transaction": 5.07, "Median Spend per Customer": 6.78 }, "geometry": { "type": "Point", "coordinates": [ -75.151871, 39.950691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-223@628-pm3-t5f", "Name": "Mish Mish", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1046 Tasker St", "LATITUDE": 39.929648, "LONGITUDE": -75.162988, "DATE_RANGE_START": 2022, "Total Visits": 148.0, "Total Visitors": 115.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 6.0, "Total Spend": 2451.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 146.1, "Median Spend per Customer": 191.68 }, "geometry": { "type": "Point", "coordinates": [ -75.162988, 39.929648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-j7q", "Name": "Vango Lounge And Skybar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "116 S 18th St", "LATITUDE": 39.951206, "LONGITUDE": -75.170692, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 108.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 44.0, "Total Spend": 38368.0, "Total Transactions": 333.0, "Total Customers": 157.0, "Median Spend per Transaction": 92.16, "Median Spend per Customer": 188.62 }, "geometry": { "type": "Point", "coordinates": [ -75.170692, 39.951206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmf-kzz", "Name": "City Tap House", "Category": "Restaurants and Other Eating Places", "Address": "100 N 18th St", "LATITUDE": 39.95591, "LONGITUDE": -75.169553, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 66.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 67.0, "Total Spend": 758.0, "Total Transactions": 17.0, "Total Customers": 7.0, "Median Spend per Transaction": 34.69, "Median Spend per Customer": 100.69 }, "geometry": { "type": "Point", "coordinates": [ -75.169553, 39.95591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pmf-skf", "Name": "Butcher and Singer", "Category": "Restaurants and Other Eating Places", "Address": "1500 Walnut St", "LATITUDE": 39.948984, "LONGITUDE": -75.166282, "DATE_RANGE_START": 2022, "Total Visits": 3005.0, "Total Visitors": 2120.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 31.0, "Total Spend": 47290.0, "Total Transactions": 218.0, "Total Customers": 120.0, "Median Spend per Transaction": 210.68, "Median Spend per Customer": 375.36 }, "geometry": { "type": "Point", "coordinates": [ -75.166282, 39.948984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm9-y5f", "Name": "Sushi Planet", "Category": "Restaurants and Other Eating Places", "Address": "624 S 3rd St", "LATITUDE": 39.940725, "LONGITUDE": -75.14792, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 47.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 18.0, "Total Spend": 2558.0, "Total Transactions": 56.0, "Total Customers": 24.0, "Median Spend per Transaction": 36.86, "Median Spend per Customer": 59.54 }, "geometry": { "type": "Point", "coordinates": [ -75.14792, 39.940725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "2237 Cecil B Moore Ave", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 1.0, "Total Spend": 530.0, "Total Transactions": 59.0, "Total Customers": 28.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm3-syv", "Name": "Bing Bing Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "1648 E Passyunk Ave", "LATITUDE": 39.928965, "LONGITUDE": -75.164747, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 75.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 14.0, "Total Spend": 9426.0, "Total Transactions": 118.0, "Total Customers": 70.0, "Median Spend per Transaction": 69.68, "Median Spend per Customer": 125.3 }, "geometry": { "type": "Point", "coordinates": [ -75.164747, 39.928965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "Name": "Dragon City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "923 Levick St", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 146.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 6.0, "Total Spend": 508.0, "Total Transactions": 14.0, "Total Customers": 3.0, "Median Spend per Transaction": 38.2, "Median Spend per Customer": 145.75 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-xnq", "Name": "Dae Bak", "Category": "Restaurants and Other Eating Places", "Address": "1016 Race St Fl 2", "LATITUDE": 39.955289, "LONGITUDE": -75.156637, "DATE_RANGE_START": 2022, "Total Visits": 5082.0, "Total Visitors": 3631.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 34.0, "Total Spend": 9421.0, "Total Transactions": 148.0, "Total Customers": 75.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 130.72 }, "geometry": { "type": "Point", "coordinates": [ -75.156637, 39.955289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-yqf", "Name": "M Kee", "Category": "Restaurants and Other Eating Places", "Address": "1002 Race St", "LATITUDE": 39.955229, "LONGITUDE": -75.156117, "DATE_RANGE_START": 2022, "Total Visits": 242.0, "Total Visitors": 199.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 19.0, "Total Spend": 1486.0, "Total Transactions": 44.0, "Total Customers": 21.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 57.24 }, "geometry": { "type": "Point", "coordinates": [ -75.156117, 39.955229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm3-t5f", "Name": "Manatawny Still Works", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1603 E Passyunk Ave Fl 1", "LATITUDE": 39.929704, "LONGITUDE": -75.163451, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 1.0, "Total Spend": 360.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 37.56, "Median Spend per Customer": 75.12 }, "geometry": { "type": "Point", "coordinates": [ -75.163451, 39.929704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm3-x5z", "Name": "South Fellini", "Category": "Clothing Stores", "Address": "1507 E Passyunk Ave", "LATITUDE": 39.93071, "LONGITUDE": -75.162097, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 129.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 23.0, "Total Spend": 296.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 42.5, "Median Spend per Customer": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162097, 39.93071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pnw-psq", "Name": "Lodge", "Category": "Clothing Stores", "Address": "177 W Girard Ave", "LATITUDE": 39.96959, "LONGITUDE": -75.138853, "DATE_RANGE_START": 2022, "Total Visits": 265.0, "Total Visitors": 157.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 341.0, "Total Spend": 609.0, "Total Transactions": 33.0, "Total Customers": 19.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138853, 39.96959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvr-2hq", "Name": "Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "25 Passyunk Dr", "LATITUDE": 39.917185, "LONGITUDE": -75.216767, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 159.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 12.0, "Total Spend": 8380.0, "Total Transactions": 44.0, "Total Customers": 23.0, "Median Spend per Transaction": 150.0, "Median Spend per Customer": 324.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216767, 39.917185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1912 Liacouras Walk", "LATITUDE": 39.982036, "LONGITUDE": -75.156118, "DATE_RANGE_START": 2022, "Total Visits": 314.0, "Total Visitors": 192.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 288.0, "Total Spend": 1656.0, "Total Transactions": 294.0, "Total Customers": 172.0, "Median Spend per Transaction": 4.38, "Median Spend per Customer": 6.05 }, "geometry": { "type": "Point", "coordinates": [ -75.156118, 39.982036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "Name": "Cappuccio's Meats", "Category": "Specialty Food Stores", "Address": "1019 S 9th St", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 73.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 1.0, "Total Spend": 3181.0, "Total Transactions": 61.0, "Total Customers": 30.0, "Median Spend per Transaction": 35.4, "Median Spend per Customer": 64.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "Name": "Girard Meat Market", "Category": "Specialty Food Stores", "Address": "4725 W Girard Ave", "LATITUDE": 39.972943, "LONGITUDE": -75.217427, "DATE_RANGE_START": 2022, "Total Visits": 307.0, "Total Visitors": 272.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 6.0, "Total Spend": 8118.0, "Total Transactions": 167.0, "Total Customers": 64.0, "Median Spend per Transaction": 27.3, "Median Spend per Customer": 72.36 }, "geometry": { "type": "Point", "coordinates": [ -75.217427, 39.972943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pj4-vcq", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "400 W Allegheny Ave", "LATITUDE": 39.998705, "LONGITUDE": -75.13519, "DATE_RANGE_START": 2022, "Total Visits": 601.0, "Total Visitors": 383.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 11.0, "Total Spend": 115.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 32.88, "Median Spend per Customer": 32.88 }, "geometry": { "type": "Point", "coordinates": [ -75.13519, 39.998705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pfz-bzf", "Name": "Remix", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4355 Main St", "LATITUDE": 40.025758, "LONGITUDE": -75.223819, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 51.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 2.0, "Total Spend": 307.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 44.0, "Median Spend per Customer": 88.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223819, 40.025758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pjf-zvf", "Name": "Chestnut Hill Sports", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "8628 Germantown Ave", "LATITUDE": 40.077007, "LONGITUDE": -75.208666, "DATE_RANGE_START": 2022, "Total Visits": 558.0, "Total Visitors": 350.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 47.0, "Total Spend": 1868.0, "Total Transactions": 51.0, "Total Customers": 35.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208666, 40.077007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-wkz", "Name": "VIP Fashion", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1455 Franklin Mills Cir Unit 217", "LATITUDE": 40.087669, "LONGITUDE": -74.96104, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 3342.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 120.0, "Median Spend per Customer": 238.78 }, "geometry": { "type": "Point", "coordinates": [ -74.96104, 40.087669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.031024, "LONGITUDE": -75.099091, "DATE_RANGE_START": 2022, "Total Visits": 479.0, "Total Visitors": 430.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 8.0, "Total Spend": 9373.0, "Total Transactions": 209.0, "Total Customers": 185.0, "Median Spend per Transaction": 23.6, "Median Spend per Customer": 25.46 }, "geometry": { "type": "Point", "coordinates": [ -75.099091, 40.031024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p85-2c5", "Name": "Ed's Cleaning Service", "Category": "Home Furnishings Stores", "Address": "8253 Bustleton Ave Ofc B", "LATITUDE": 40.06578, "LONGITUDE": -75.050923, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 120.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 5.0, "Total Spend": 3256.0, "Total Transactions": 16.0, "Total Customers": 3.0, "Median Spend per Transaction": 250.0, "Median Spend per Customer": 934.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050923, 40.06578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgf-33q", "Name": "Kiwi Frozen Yogurt", "Category": "Restaurants and Other Eating Places", "Address": "3606 Chestnut St", "LATITUDE": 39.954562, "LONGITUDE": -75.195031, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 89.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 185.0, "Total Spend": 3256.0, "Total Transactions": 232.0, "Total Customers": 108.0, "Median Spend per Transaction": 10.1, "Median Spend per Customer": 26.19 }, "geometry": { "type": "Point", "coordinates": [ -75.195031, 39.954562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1425 Locust St", "LATITUDE": 39.948525, "LONGITUDE": -75.166014, "DATE_RANGE_START": 2022, "Total Visits": 502.0, "Total Visitors": 362.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 179.0, "Total Spend": 10294.0, "Total Transactions": 1517.0, "Total Customers": 564.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -75.166014, 39.948525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6919 Castor Ave # 6935", "LATITUDE": 40.045974, "LONGITUDE": -75.070637, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 96.0, "POI_CBG": 421010314015.0, "Median Dwell Time": 30.0, "Total Spend": 13702.0, "Total Transactions": 1289.0, "Total Customers": 711.0, "Median Spend per Transaction": 9.07, "Median Spend per Customer": 13.26 }, "geometry": { "type": "Point", "coordinates": [ -75.070637, 40.045974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-y35", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "11725 Bustleton Ave", "LATITUDE": 40.119184, "LONGITUDE": -75.01709, "DATE_RANGE_START": 2022, "Total Visits": 490.0, "Total Visitors": 364.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 2.0, "Total Spend": 8473.0, "Total Transactions": 1150.0, "Total Customers": 420.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.01709, 40.119184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-224@628-pmb-yd9", "Name": "Tiger Sugar", "Category": "Restaurants and Other Eating Places", "Address": "122 N 10th St", "LATITUDE": 39.954258, "LONGITUDE": -75.156401, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 200.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 2985.0, "Total Transactions": 249.0, "Total Customers": 131.0, "Median Spend per Transaction": 8.15, "Median Spend per Customer": 15.85 }, "geometry": { "type": "Point", "coordinates": [ -75.156401, 39.954258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnz-xyv", "Name": "Hong Kong Deli", "Category": "Restaurants and Other Eating Places", "Address": "3294 Gaul St", "LATITUDE": 39.988418, "LONGITUDE": -75.102851, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 1.0, "Total Spend": 1139.0, "Total Transactions": 82.0, "Total Customers": 26.0, "Median Spend per Transaction": 11.1, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102851, 39.988418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg9-wc5", "Name": "Fairmount Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1900 Green St", "LATITUDE": 39.964685, "LONGITUDE": -75.169302, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 23.0, "POI_CBG": 421010134023.0, "Median Dwell Time": 3.0, "Total Spend": 2454.0, "Total Transactions": 146.0, "Total Customers": 64.0, "Median Spend per Transaction": 12.6, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169302, 39.964685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "104 S 40th St", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 31.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 21.0, "Total Spend": 3419.0, "Total Transactions": 132.0, "Total Customers": 105.0, "Median Spend per Transaction": 21.05, "Median Spend per Customer": 26.93 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "Name": "Vientiane Bistro", "Category": "Restaurants and Other Eating Places", "Address": "2537 Kensington Ave", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 33.0, "POI_CBG": 421010161003.0, "Median Dwell Time": 210.0, "Total Spend": 1475.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 62.72, "Median Spend per Customer": 125.44 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dwg-f4v", "Name": "State Liquor Stores", "Category": "Beer, Wine, and Liquor Stores", "Address": "7333 Elmwood Ave", "LATITUDE": 39.91373, "LONGITUDE": -75.242762, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 37.0, "POI_CBG": 421010060004.0, "Median Dwell Time": 4.0, "Total Spend": 100.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 28.59, "Median Spend per Customer": 28.59 }, "geometry": { "type": "Point", "coordinates": [ -75.242762, 39.91373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-f9f", "Name": "Dimension Latin Grill", "Category": "Restaurants and Other Eating Places", "Address": "7312 Castor Ave", "LATITUDE": 40.052647, "LONGITUDE": -75.065236, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 120.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 31.0, "Total Spend": 1473.0, "Total Transactions": 19.0, "Total Customers": 9.0, "Median Spend per Transaction": 81.3, "Median Spend per Customer": 162.6 }, "geometry": { "type": "Point", "coordinates": [ -75.065236, 40.052647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5534 Wayne Ave", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 287.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 4.0, "Total Spend": 753.0, "Total Transactions": 51.0, "Total Customers": 35.0, "Median Spend per Transaction": 13.47, "Median Spend per Customer": 15.47 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-224@628-pmb-5fz", "Name": "Bread & Butter Gourmet Deli", "Category": "Restaurants and Other Eating Places", "Address": "1225 Sansom St", "LATITUDE": 39.94999, "LONGITUDE": -75.161353, "DATE_RANGE_START": 2022, "Total Visits": 2969.0, "Total Visitors": 2366.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 31.0, "Total Spend": 34.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.161353, 39.94999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pm9-tqf", "Name": "Wetzel's Pretzels", "Category": "Restaurants and Other Eating Places", "Address": "1101 Market St Spc 2025", "LATITUDE": 39.952391, "LONGITUDE": -75.157424, "DATE_RANGE_START": 2022, "Total Visits": 869.0, "Total Visitors": 678.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 3112.0, "Total Transactions": 333.0, "Total Customers": 300.0, "Median Spend per Transaction": 7.86, "Median Spend per Customer": 8.57 }, "geometry": { "type": "Point", "coordinates": [ -75.157424, 39.952391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7221 Torresdale Ave", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 265.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 2.0, "Total Spend": 7281.0, "Total Transactions": 915.0, "Total Customers": 366.0, "Median Spend per Transaction": 7.21, "Median Spend per Customer": 11.95 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-975", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.953036, "LONGITUDE": -75.192281, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 195.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 1.0, "Total Spend": 11690.0, "Total Transactions": 1110.0, "Total Customers": 639.0, "Median Spend per Transaction": 9.08, "Median Spend per Customer": 10.7 }, "geometry": { "type": "Point", "coordinates": [ -75.192281, 39.953036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmb-grk", "Name": "Yellowtail", "Category": "Restaurants and Other Eating Places", "Address": "1218 Pine St", "LATITUDE": 39.945044, "LONGITUDE": -75.161951, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 251.0, "Total Spend": 777.0, "Total Transactions": 31.0, "Total Customers": 17.0, "Median Spend per Transaction": 22.35, "Median Spend per Customer": 36.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161951, 39.945044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5733 N Broad St", "LATITUDE": 40.040654, "LONGITUDE": -75.144015, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 44.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 5.0, "Total Spend": 3093.0, "Total Transactions": 125.0, "Total Customers": 96.0, "Median Spend per Transaction": 22.75, "Median Spend per Customer": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.144015, 40.040654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p9w-dvz", "Name": "Angelo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "11036 Rennard St", "LATITUDE": 40.121593, "LONGITUDE": -75.03516, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 47.0, "POI_CBG": 421010358002.0, "Median Dwell Time": 36.0, "Total Spend": 3568.0, "Total Transactions": 225.0, "Total Customers": 108.0, "Median Spend per Transaction": 9.69, "Median Spend per Customer": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.03516, 40.121593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p83-wzf", "Name": "Beautyland", "Category": "Health and Personal Care Stores", "Address": "1124 Gregg St", "LATITUDE": 40.086398, "LONGITUDE": -75.046895, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 51.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 3.0, "Total Spend": 584.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 11.77, "Median Spend per Customer": 23.54 }, "geometry": { "type": "Point", "coordinates": [ -75.046895, 40.086398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgf-h5z", "Name": "American Picture Framing", "Category": "Home Furnishings Stores", "Address": "3821 Powelton Ave", "LATITUDE": 39.959767, "LONGITUDE": -75.198143, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 40.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 112.0, "Total Spend": 3589.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 487.05, "Median Spend per Customer": 1030.11 }, "geometry": { "type": "Point", "coordinates": [ -75.198143, 39.959767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "Name": "Gallelli Formal Wear", "Category": "Clothing Stores", "Address": "904 Cottman Ave", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 37.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 141.0, "Total Spend": 2779.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 145.0, "Median Spend per Customer": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pgh-h3q", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "2800 Fox St", "LATITUDE": 40.00873, "LONGITUDE": -75.176539, "DATE_RANGE_START": 2022, "Total Visits": 639.0, "Total Visitors": 411.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 34.0, "Total Spend": 10332.0, "Total Transactions": 672.0, "Total Customers": 538.0, "Median Spend per Transaction": 13.21, "Median Spend per Customer": 15.07 }, "geometry": { "type": "Point", "coordinates": [ -75.176539, 40.00873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2109 N Broad St", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2022, "Total Visits": 681.0, "Total Visitors": 493.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 6.0, "Total Spend": 19089.0, "Total Transactions": 1695.0, "Total Customers": 1160.0, "Median Spend per Transaction": 9.49, "Median Spend per Customer": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-hnq", "Name": "New Image Art & Framing", "Category": "Home Furnishings Stores", "Address": "1939 Chestnut St", "LATITUDE": 39.952342, "LONGITUDE": -75.173299, "DATE_RANGE_START": 2022, "Total Visits": 4984.0, "Total Visitors": 3396.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 1606.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 300.0, "Median Spend per Customer": 300.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173299, 39.952342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-hdv", "Name": "The Juice Room", "Category": "Restaurants and Other Eating Places", "Address": "7127 Germantown Ave", "LATITUDE": 40.0592, "LONGITUDE": -75.189995, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 33.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 19.0, "Total Spend": 616.0, "Total Transactions": 31.0, "Total Customers": 14.0, "Median Spend per Transaction": 20.63, "Median Spend per Customer": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.189995, 40.0592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgj-zvf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2900 N Broad St Ste 5A", "LATITUDE": 39.99726, "LONGITUDE": -75.154252, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 1.0, "Total Spend": 11321.0, "Total Transactions": 110.0, "Total Customers": 38.0, "Median Spend per Transaction": 80.96, "Median Spend per Customer": 74.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154252, 39.99726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p8d-fmk", "Name": "Renzi's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2728 Orthodox St", "LATITUDE": 39.998034, "LONGITUDE": -75.074418, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 40.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 366.0, "Total Spend": 638.0, "Total Transactions": 26.0, "Total Customers": 14.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 46.8 }, "geometry": { "type": "Point", "coordinates": [ -75.074418, 39.998034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "Name": "Pitchers Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4326 Main St", "LATITUDE": 40.025059, "LONGITUDE": -75.223033, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 49.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 5.0, "Total Spend": 19076.0, "Total Transactions": 662.0, "Total Customers": 275.0, "Median Spend per Transaction": 20.6, "Median Spend per Customer": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223033, 40.025059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1820 Torresdale Ave", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2022, "Total Visits": 291.0, "Total Visitors": 169.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 2.0, "Total Spend": 6113.0, "Total Transactions": 732.0, "Total Customers": 317.0, "Median Spend per Transaction": 6.72, "Median Spend per Customer": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "Name": "Kitchen Kapers", "Category": "Home Furnishings Stores", "Address": "8530 Germantown Ave", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2022, "Total Visits": 443.0, "Total Visitors": 284.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 106.0, "Total Spend": 8140.0, "Total Transactions": 141.0, "Total Customers": 70.0, "Median Spend per Transaction": 35.58, "Median Spend per Customer": 70.1 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "Name": "Evergreen Deli", "Category": "Grocery Stores", "Address": "46 S 4th St", "LATITUDE": 39.949185, "LONGITUDE": -75.147628, "DATE_RANGE_START": 2022, "Total Visits": 1657.0, "Total Visitors": 1235.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 10846.0, "Total Transactions": 1045.0, "Total Customers": 169.0, "Median Spend per Transaction": 10.1, "Median Spend per Customer": 34.16 }, "geometry": { "type": "Point", "coordinates": [ -75.147628, 39.949185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "12311 Academy Rd Ste 250", "LATITUDE": 40.095101, "LONGITUDE": -74.975911, "DATE_RANGE_START": 2022, "Total Visits": 340.0, "Total Visitors": 280.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 16326.0, "Total Transactions": 831.0, "Total Customers": 500.0, "Median Spend per Transaction": 13.68, "Median Spend per Customer": 22.84 }, "geometry": { "type": "Point", "coordinates": [ -74.975911, 40.095101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj2-mp9", "Name": "The Apple Pharmacy", "Category": "Health and Personal Care Stores", "Address": "Erie Avenue At Front St", "LATITUDE": 40.005425, "LONGITUDE": -75.098798, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 59.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 7.0, "Total Spend": 287.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098798, 40.005425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5627 Chestnut St # 99", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2022, "Total Visits": 596.0, "Total Visitors": 416.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 4.0, "Total Spend": 13274.0, "Total Transactions": 645.0, "Total Customers": 443.0, "Median Spend per Transaction": 12.39, "Median Spend per Customer": 16.96 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "Name": "Locust Rendezvous", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1415 Locust St", "LATITUDE": 39.948535, "LONGITUDE": -75.165879, "DATE_RANGE_START": 2022, "Total Visits": 1139.0, "Total Visitors": 829.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 70.0, "Total Spend": 20044.0, "Total Transactions": 510.0, "Total Customers": 185.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 79.05 }, "geometry": { "type": "Point", "coordinates": [ -75.165879, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-wkz", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "2000 S Swanson St", "LATITUDE": 39.922348, "LONGITUDE": -75.146462, "DATE_RANGE_START": 2022, "Total Visits": 836.0, "Total Visitors": 732.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 13.0, "Total Spend": 4812.0, "Total Transactions": 110.0, "Total Customers": 85.0, "Median Spend per Transaction": 35.61, "Median Spend per Customer": 45.96 }, "geometry": { "type": "Point", "coordinates": [ -75.146462, 39.922348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-rx5", "Name": "Miles Table", "Category": "Restaurants and Other Eating Places", "Address": "1620 South St", "LATITUDE": 39.943903, "LONGITUDE": -75.169551, "DATE_RANGE_START": 2022, "Total Visits": 693.0, "Total Visitors": 375.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 550.0, "Total Spend": 2873.0, "Total Transactions": 122.0, "Total Customers": 77.0, "Median Spend per Transaction": 20.13, "Median Spend per Customer": 29.86 }, "geometry": { "type": "Point", "coordinates": [ -75.169551, 39.943903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "Name": "LIDS", "Category": "Clothing Stores", "Address": "1301 Franklin Mills Cir", "LATITUDE": 40.085593, "LONGITUDE": -74.962215, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 112.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 6.0, "Total Spend": 3676.0, "Total Transactions": 84.0, "Total Customers": 78.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 40.55 }, "geometry": { "type": "Point", "coordinates": [ -74.962215, 40.085593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p9q-w8v", "Name": "Big Daddy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1916 Welsh Rd Ste 14", "LATITUDE": 40.081036, "LONGITUDE": -75.038535, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 61.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 4.0, "Total Spend": 6967.0, "Total Transactions": 209.0, "Total Customers": 80.0, "Median Spend per Transaction": 26.95, "Median Spend per Customer": 71.02 }, "geometry": { "type": "Point", "coordinates": [ -75.038535, 40.081036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "Name": "Bottle Bar East", "Category": "Restaurants and Other Eating Places", "Address": "1308 Frankford Ave", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 68.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 61.0, "Total Spend": 50293.0, "Total Transactions": 1866.0, "Total Customers": 603.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pgj-fzz", "Name": "Philly Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2010 N Broad St", "LATITUDE": 39.983705, "LONGITUDE": -75.157179, "DATE_RANGE_START": 2022, "Total Visits": 700.0, "Total Visitors": 497.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 488.0, "Total Spend": 9168.0, "Total Transactions": 462.0, "Total Customers": 174.0, "Median Spend per Transaction": 16.18, "Median Spend per Customer": 39.16 }, "geometry": { "type": "Point", "coordinates": [ -75.157179, 39.983705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-k4v", "Name": "Kisso Sushi", "Category": "Restaurants and Other Eating Places", "Address": "205 N 4th St", "LATITUDE": 39.954278, "LONGITUDE": -75.146239, "DATE_RANGE_START": 2022, "Total Visits": 1850.0, "Total Visitors": 1547.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 139.0, "Total Spend": 2362.0, "Total Transactions": 23.0, "Total Customers": 16.0, "Median Spend per Transaction": 90.0, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146239, 39.954278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-47q", "Name": "Halal Food", "Category": "Restaurants and Other Eating Places", "Address": "SE Corner of Spring Garden 15th St", "LATITUDE": 39.962366, "LONGITUDE": -75.162749, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 164.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 1.0, "Total Spend": 311.0, "Total Transactions": 28.0, "Total Customers": 16.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162749, 39.962366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-hnq", "Name": "The Ranstead Room", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2013 Ranstead St", "LATITUDE": 39.952421, "LONGITUDE": -75.173819, "DATE_RANGE_START": 2022, "Total Visits": 3352.0, "Total Visitors": 2281.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 31.0, "Total Spend": 12886.0, "Total Transactions": 197.0, "Total Customers": 115.0, "Median Spend per Transaction": 51.3, "Median Spend per Customer": 82.88 }, "geometry": { "type": "Point", "coordinates": [ -75.173819, 39.952421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-zs5", "Name": "Golden Triangle", "Category": "Restaurants and Other Eating Places", "Address": "610 S 5th St", "LATITUDE": 39.94154, "LONGITUDE": -75.15097, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 92.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 9.0, "Total Spend": 2343.0, "Total Transactions": 73.0, "Total Customers": 35.0, "Median Spend per Transaction": 32.08, "Median Spend per Customer": 52.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15097, 39.94154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9w-575", "Name": "Taste King Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "10763 Bustleton Ave", "LATITUDE": 40.108989, "LONGITUDE": -75.025021, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 124.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 92.0, "Total Spend": 2357.0, "Total Transactions": 56.0, "Total Customers": 23.0, "Median Spend per Transaction": 37.01, "Median Spend per Customer": 88.68 }, "geometry": { "type": "Point", "coordinates": [ -75.025021, 40.108989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm3-wff", "Name": "Passyunk Market", "Category": "Grocery Stores", "Address": "1407 E Passyunk Ave", "LATITUDE": 39.931424, "LONGITUDE": -75.161293, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 277.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 154.0, "Total Spend": 1802.0, "Total Transactions": 80.0, "Total Customers": 26.0, "Median Spend per Transaction": 22.99, "Median Spend per Customer": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161293, 39.931424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22f@628-pmf-n3q", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953402, "LONGITUDE": -75.165876, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 63.0, "Total Spend": 61.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.165876, 39.953402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pfx-kzz", "Name": "Haggerty Deli", "Category": "Grocery Stores", "Address": "4528 Wilde St", "LATITUDE": 40.029098, "LONGITUDE": -75.225579, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010214004.0, "Median Dwell Time": 6.0, "Total Spend": 3952.0, "Total Transactions": 267.0, "Total Customers": 77.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 36.63 }, "geometry": { "type": "Point", "coordinates": [ -75.225579, 40.029098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5643 Ridge Ave", "LATITUDE": 40.026858, "LONGITUDE": -75.208809, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 73.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 3.0, "Total Spend": 9548.0, "Total Transactions": 1418.0, "Total Customers": 571.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 9.66 }, "geometry": { "type": "Point", "coordinates": [ -75.208809, 40.026858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1420 Cecil B Moore Ave", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2022, "Total Visits": 1357.0, "Total Visitors": 772.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 183.0, "Total Spend": 8481.0, "Total Transactions": 1434.0, "Total Customers": 721.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 7.86 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-47q", "Name": "Kid City", "Category": "Clothing Stores", "Address": "2419 S 24th St", "LATITUDE": 39.921142, "LONGITUDE": -75.185929, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 59.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 8.0, "Total Spend": 5324.0, "Total Transactions": 127.0, "Total Customers": 66.0, "Median Spend per Transaction": 28.97, "Median Spend per Customer": 58.65 }, "geometry": { "type": "Point", "coordinates": [ -75.185929, 39.921142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "901 Levick St", "LATITUDE": 40.044581, "LONGITUDE": -75.086995, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 267.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 5.0, "Total Spend": 199.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.77, "Median Spend per Customer": 27.77 }, "geometry": { "type": "Point", "coordinates": [ -75.086995, 40.044581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "Name": "South", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "600 N Broad St", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 275.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 80.0, "Total Spend": 7618.0, "Total Transactions": 256.0, "Total Customers": 105.0, "Median Spend per Transaction": 16.63, "Median Spend per Customer": 57.07 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2101 S 10th St", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 150.0, "POI_CBG": 421010041013.0, "Median Dwell Time": 3.0, "Total Spend": 1752.0, "Total Transactions": 145.0, "Total Customers": 63.0, "Median Spend per Transaction": 9.05, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-qs5", "Name": "Jet Wine Bar", "Category": "Restaurants and Other Eating Places", "Address": "1525 South St", "LATITUDE": 39.944107, "LONGITUDE": -75.168005, "DATE_RANGE_START": 2022, "Total Visits": 375.0, "Total Visitors": 282.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 81.0, "Total Spend": 12728.0, "Total Transactions": 179.0, "Total Customers": 70.0, "Median Spend per Transaction": 59.5, "Median Spend per Customer": 76.01 }, "geometry": { "type": "Point", "coordinates": [ -75.168005, 39.944107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "Name": "Saigon Noodle Bar", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074096, "LONGITUDE": -75.202561, "DATE_RANGE_START": 2022, "Total Visits": 441.0, "Total Visitors": 301.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 63.0, "Total Spend": 4100.0, "Total Transactions": 225.0, "Total Customers": 99.0, "Median Spend per Transaction": 16.26, "Median Spend per Customer": 35.3 }, "geometry": { "type": "Point", "coordinates": [ -75.202561, 40.074096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "Name": "Bistro SouthEast", "Category": "Restaurants and Other Eating Places", "Address": "1824 South St", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2022, "Total Visits": 488.0, "Total Visitors": 272.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 297.0, "Total Spend": 3448.0, "Total Transactions": 141.0, "Total Customers": 56.0, "Median Spend per Transaction": 22.3, "Median Spend per Customer": 49.26 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-6x5", "Name": "Giuseppe & Sons", "Category": "Restaurants and Other Eating Places", "Address": "1523 Sansom St", "LATITUDE": 39.950627, "LONGITUDE": -75.166809, "DATE_RANGE_START": 2022, "Total Visits": 4990.0, "Total Visitors": 3734.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 44.0, "Total Spend": 7519.0, "Total Transactions": 78.0, "Total Customers": 45.0, "Median Spend per Transaction": 77.58, "Median Spend per Customer": 133.76 }, "geometry": { "type": "Point", "coordinates": [ -75.166809, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj9-zmk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5612 N 5th St", "LATITUDE": 40.036925, "LONGITUDE": -75.130756, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 64.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 6.0, "Total Spend": 3495.0, "Total Transactions": 164.0, "Total Customers": 112.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 20.35 }, "geometry": { "type": "Point", "coordinates": [ -75.130756, 40.036925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "Name": "Beauty Point", "Category": "Health and Personal Care Stores", "Address": "5610 Lancaster Ave", "LATITUDE": 39.980086, "LONGITUDE": -75.235032, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 75.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 7.0, "Total Spend": 7266.0, "Total Transactions": 202.0, "Total Customers": 99.0, "Median Spend per Transaction": 23.19, "Median Spend per Customer": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.235032, 39.980086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-236@63s-dw4-rzf", "Name": "L'Occitane", "Category": "Health and Personal Care Stores", "Address": "8000 Essington Ave", "LATITUDE": 39.895196, "LONGITUDE": -75.227963, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 2.0, "Total Spend": 4576.0, "Total Transactions": 80.0, "Total Customers": 47.0, "Median Spend per Transaction": 41.04, "Median Spend per Customer": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.227963, 39.895196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4113 G St", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2022, "Total Visits": 314.0, "Total Visitors": 239.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 7.0, "Total Spend": 1645.0, "Total Transactions": 169.0, "Total Customers": 146.0, "Median Spend per Transaction": 8.05, "Median Spend per Customer": 8.56 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8m-b8v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5807 Torresdale Ave", "LATITUDE": 40.016255, "LONGITUDE": -75.061394, "DATE_RANGE_START": 2022, "Total Visits": 355.0, "Total Visitors": 124.0, "POI_CBG": 421010321001.0, "Median Dwell Time": 353.0, "Total Spend": 1142.0, "Total Transactions": 172.0, "Total Customers": 71.0, "Median Spend per Transaction": 5.65, "Median Spend per Customer": 10.23 }, "geometry": { "type": "Point", "coordinates": [ -75.061394, 40.016255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvp-bff", "Name": "Beer Stop", "Category": "Beer, Wine, and Liquor Stores", "Address": "5746 Baltimore Ave", "LATITUDE": 39.945295, "LONGITUDE": -75.238695, "DATE_RANGE_START": 2022, "Total Visits": 1207.0, "Total Visitors": 805.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 7.0, "Total Spend": 1075.0, "Total Transactions": 33.0, "Total Customers": 19.0, "Median Spend per Transaction": 23.99, "Median Spend per Customer": 47.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238695, 39.945295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p7v-ffz", "Name": "E Z Gas", "Category": "Gasoline Stations", "Address": "1701 Cottman Ave", "LATITUDE": 40.054304, "LONGITUDE": -75.070914, "DATE_RANGE_START": 2022, "Total Visits": 662.0, "Total Visitors": 385.0, "POI_CBG": 421010335003.0, "Median Dwell Time": 3.0, "Total Spend": 21064.0, "Total Transactions": 768.0, "Total Customers": 265.0, "Median Spend per Transaction": 20.02, "Median Spend per Customer": 52.14 }, "geometry": { "type": "Point", "coordinates": [ -75.070914, 40.054304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-qs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2500 Island Ave & Elmwood Ave", "LATITUDE": 39.912518, "LONGITUDE": -75.243563, "DATE_RANGE_START": 2022, "Total Visits": 1328.0, "Total Visitors": 791.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 4.0, "Total Spend": 1090.0, "Total Transactions": 38.0, "Total Customers": 28.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 28.63 }, "geometry": { "type": "Point", "coordinates": [ -75.243563, 39.912518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-sbk", "Name": "Frankinstien Bike Worx", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1529 Spruce St", "LATITUDE": 39.947579, "LONGITUDE": -75.167633, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 64.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 104.0, "Total Spend": 866.0, "Total Transactions": 21.0, "Total Customers": 7.0, "Median Spend per Transaction": 29.16, "Median Spend per Customer": 92.88 }, "geometry": { "type": "Point", "coordinates": [ -75.167633, 39.947579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9163 Roosevelt Blvd & Welsh Rd", "LATITUDE": 40.074794, "LONGITUDE": -75.032684, "DATE_RANGE_START": 2022, "Total Visits": 1277.0, "Total Visitors": 659.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 27.0, "Total Spend": 2414.0, "Total Transactions": 167.0, "Total Customers": 127.0, "Median Spend per Transaction": 9.37, "Median Spend per Customer": 10.83 }, "geometry": { "type": "Point", "coordinates": [ -75.032684, 40.074794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "Name": "Brauhaus Schmitz", "Category": "Restaurants and Other Eating Places", "Address": "718 South St", "LATITUDE": 39.942007, "LONGITUDE": -75.154702, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 141.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 56.0, "Total Spend": 4028.0, "Total Transactions": 45.0, "Total Customers": 31.0, "Median Spend per Transaction": 71.63, "Median Spend per Customer": 88.16 }, "geometry": { "type": "Point", "coordinates": [ -75.154702, 39.942007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "Name": "European Republic", "Category": "Restaurants and Other Eating Places", "Address": "213 Chestnut St", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2022, "Total Visits": 3399.0, "Total Visitors": 2453.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 70.0, "Total Spend": 2295.0, "Total Transactions": 172.0, "Total Customers": 68.0, "Median Spend per Transaction": 13.16, "Median Spend per Customer": 31.42 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-pvz", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "3680 Aramingo Ave", "LATITUDE": 39.994647, "LONGITUDE": -75.095265, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 122.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 3.0, "Total Spend": 4797.0, "Total Transactions": 197.0, "Total Customers": 172.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 25.36 }, "geometry": { "type": "Point", "coordinates": [ -75.095265, 39.994647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "7422 Bustleton Ave", "LATITUDE": 40.052515, "LONGITUDE": -75.058505, "DATE_RANGE_START": 2022, "Total Visits": 730.0, "Total Visitors": 591.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 8.0, "Total Spend": 4121.0, "Total Transactions": 152.0, "Total Customers": 124.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.058505, 40.052515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp4-tvz", "Name": "Best Deli II", "Category": "Restaurants and Other Eating Places", "Address": "2616 E Lehigh Ave", "LATITUDE": 39.978727, "LONGITUDE": -75.115372, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 108.0, "POI_CBG": 421010378003.0, "Median Dwell Time": 80.0, "Total Spend": 3069.0, "Total Transactions": 171.0, "Total Customers": 52.0, "Median Spend per Transaction": 13.72, "Median Spend per Customer": 36.03 }, "geometry": { "type": "Point", "coordinates": [ -75.115372, 39.978727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1200 Walnut St Ste B", "LATITUDE": 39.948772, "LONGITUDE": -75.160716, "DATE_RANGE_START": 2022, "Total Visits": 362.0, "Total Visitors": 291.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 4.0, "Total Spend": 16043.0, "Total Transactions": 1239.0, "Total Customers": 803.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 13.61 }, "geometry": { "type": "Point", "coordinates": [ -75.160716, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4160 Monument Rd", "LATITUDE": 40.002692, "LONGITUDE": -75.214454, "DATE_RANGE_START": 2022, "Total Visits": 338.0, "Total Visitors": 282.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 3.0, "Total Spend": 9671.0, "Total Transactions": 1113.0, "Total Customers": 577.0, "Median Spend per Transaction": 7.11, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.214454, 40.002692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "8515 Germantown Ave", "LATITUDE": 40.076409, "LONGITUDE": -75.206721, "DATE_RANGE_START": 2022, "Total Visits": 220.0, "Total Visitors": 150.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 9.0, "Total Spend": 11508.0, "Total Transactions": 1106.0, "Total Customers": 652.0, "Median Spend per Transaction": 9.82, "Median Spend per Customer": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.206721, 40.076409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "Name": "El Rey", "Category": "Restaurants and Other Eating Places", "Address": "2013 Chestnut St", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 247.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 31.0, "Total Spend": 38505.0, "Total Transactions": 612.0, "Total Customers": 312.0, "Median Spend per Transaction": 50.44, "Median Spend per Customer": 93.68 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-t35", "Name": "Brexel Cafe", "Category": "Restaurants and Other Eating Places", "Address": "305 N 33rd St", "LATITUDE": 39.960745, "LONGITUDE": -75.189369, "DATE_RANGE_START": 2022, "Total Visits": 317.0, "Total Visitors": 164.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 272.0, "Total Spend": 1212.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 54.59, "Median Spend per Customer": 109.18 }, "geometry": { "type": "Point", "coordinates": [ -75.189369, 39.960745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-9j9", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953347, "LONGITUDE": -75.165403, "DATE_RANGE_START": 2022, "Total Visits": 2519.0, "Total Visitors": 1690.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 63.0, "Total Spend": 598.0, "Total Transactions": 30.0, "Total Customers": 14.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 41.04 }, "geometry": { "type": "Point", "coordinates": [ -75.165403, 39.953347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dw9-wtv", "Name": "Revive 21", "Category": "Restaurants and Other Eating Places", "Address": "Phildelphia Airport Terminal F", "LATITUDE": 39.880826, "LONGITUDE": -75.237536, "DATE_RANGE_START": 2022, "Total Visits": 13519.0, "Total Visitors": 11242.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 31.0, "Total Spend": 3467.0, "Total Transactions": 122.0, "Total Customers": 61.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.237536, 39.880826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "Name": "Best In Town Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7971 Castor Ave", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 70.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 4.0, "Total Spend": 4143.0, "Total Transactions": 164.0, "Total Customers": 61.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 52.6 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "Name": "Rays Cafe & Tea House", "Category": "Restaurants and Other Eating Places", "Address": "141 N 9th St", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 20.0, "Total Spend": 972.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 39.52, "Median Spend per Customer": 39.52 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6x5", "Name": "Amma's South Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1518 Chestnut St", "LATITUDE": 39.950885, "LONGITUDE": -75.166421, "DATE_RANGE_START": 2022, "Total Visits": 4990.0, "Total Visitors": 3734.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 44.0, "Total Spend": 5391.0, "Total Transactions": 115.0, "Total Customers": 63.0, "Median Spend per Transaction": 34.17, "Median Spend per Customer": 63.78 }, "geometry": { "type": "Point", "coordinates": [ -75.166421, 39.950885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "Name": "Talula's Garden", "Category": "Restaurants and Other Eating Places", "Address": "210 W Washington Sq", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2022, "Total Visits": 679.0, "Total Visitors": 505.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 58.0, "Total Spend": 87903.0, "Total Transactions": 2322.0, "Total Customers": 794.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 63.48 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-grk", "Name": "Nick's Charcoal Pit", "Category": "Restaurants and Other Eating Places", "Address": "1242 Snyder Ave", "LATITUDE": 39.923906, "LONGITUDE": -75.167451, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010040013.0, "Median Dwell Time": null, "Total Spend": 3514.0, "Total Transactions": 113.0, "Total Customers": 49.0, "Median Spend per Transaction": 23.49, "Median Spend per Customer": 57.85 }, "geometry": { "type": "Point", "coordinates": [ -75.167451, 39.923906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-jjv", "Name": "Hakim's Bookstore", "Category": "Book Stores and News Dealers", "Address": "210 S 52nd St", "LATITUDE": 39.95665, "LONGITUDE": -75.225827, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010085006.0, "Median Dwell Time": null, "Total Spend": 8086.0, "Total Transactions": 754.0, "Total Customers": 284.0, "Median Spend per Transaction": 5.96, "Median Spend per Customer": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225827, 39.95665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2310 W Oregon Ave", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2022, "Total Visits": 906.0, "Total Visitors": 587.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 6.0, "Total Spend": 6025.0, "Total Transactions": 256.0, "Total Customers": 183.0, "Median Spend per Transaction": 14.76, "Median Spend per Customer": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "2101 S 11th St", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2022, "Total Visits": 1010.0, "Total Visitors": 599.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 4.0, "Total Spend": 16438.0, "Total Transactions": 613.0, "Total Customers": 312.0, "Median Spend per Transaction": 20.03, "Median Spend per Customer": 30.37 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "Name": "Big Ben Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7266 Rising Sun Ave", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 23.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 1.0, "Total Spend": 14733.0, "Total Transactions": 484.0, "Total Customers": 167.0, "Median Spend per Transaction": 26.05, "Median Spend per Customer": 53.76 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "Name": "Nike Factory Store", "Category": "Shoe Stores", "Address": "901 Market St Unit 1095", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 125.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 48751.0, "Total Transactions": 749.0, "Total Customers": 659.0, "Median Spend per Transaction": 48.46, "Median Spend per Customer": 52.64 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "Name": "Triple Joy", "Category": "Restaurants and Other Eating Places", "Address": "2301 N 29th St", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 40.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 448.0, "Total Spend": 2285.0, "Total Transactions": 167.0, "Total Customers": 38.0, "Median Spend per Transaction": 10.1, "Median Spend per Customer": 51.15 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgf-7kf", "Name": "Lavish", "Category": "Restaurants and Other Eating Places", "Address": "4308 Lancaster Ave", "LATITUDE": 39.967761, "LONGITUDE": -75.210086, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 42.0, "POI_CBG": 421010106001.0, "Median Dwell Time": 6.0, "Total Spend": 875.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 67.5, "Median Spend per Customer": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210086, 39.967761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dwg-g6k", "Name": "United", "Category": "Gasoline Stations", "Address": "6901 Buist Ave", "LATITUDE": 39.917055, "LONGITUDE": -75.235223, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 44.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 1.0, "Total Spend": 14022.0, "Total Transactions": 491.0, "Total Customers": 164.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 51.93 }, "geometry": { "type": "Point", "coordinates": [ -75.235223, 39.917055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "Name": "The Little Apple", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4361 Main St", "LATITUDE": 40.025728, "LONGITUDE": -75.223969, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 64.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 3.0, "Total Spend": 5632.0, "Total Transactions": 143.0, "Total Customers": 77.0, "Median Spend per Transaction": 30.8, "Median Spend per Customer": 57.16 }, "geometry": { "type": "Point", "coordinates": [ -75.223969, 40.025728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pp2-85f", "Name": "Tony's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "3128 Belgrade St", "LATITUDE": 39.985499, "LONGITUDE": -75.106228, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 35.0, "POI_CBG": 421010180021.0, "Median Dwell Time": 239.0, "Total Spend": 2227.0, "Total Transactions": 138.0, "Total Customers": 47.0, "Median Spend per Transaction": 14.87, "Median Spend per Customer": 42.26 }, "geometry": { "type": "Point", "coordinates": [ -75.106228, 39.985499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-sqz", "Name": "Ashton Cigar Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1522 Walnut St Fl 2", "LATITUDE": 39.949464, "LONGITUDE": -75.167106, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 240.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 56.0, "Total Spend": 32016.0, "Total Transactions": 364.0, "Total Customers": 148.0, "Median Spend per Transaction": 68.23, "Median Spend per Customer": 154.34 }, "geometry": { "type": "Point", "coordinates": [ -75.167106, 39.949464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5fz", "Name": "Zio's Brick Oven Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "111 S 13th St", "LATITUDE": 39.950079, "LONGITUDE": -75.161743, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 75.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 28.0, "Total Spend": 10020.0, "Total Transactions": 768.0, "Total Customers": 284.0, "Median Spend per Transaction": 10.4, "Median Spend per Customer": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.161743, 39.950079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm8-djv", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "1526 Packer Ave", "LATITUDE": 39.911588, "LONGITUDE": -75.17455, "DATE_RANGE_START": 2022, "Total Visits": 2404.0, "Total Visitors": 2005.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 52.0, "Total Spend": 328.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 23.62, "Median Spend per Customer": 48.81 }, "geometry": { "type": "Point", "coordinates": [ -75.17455, 39.911588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "Name": "DiNapoli Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Front St", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 87.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 4.0, "Total Spend": 2578.0, "Total Transactions": 63.0, "Total Customers": 30.0, "Median Spend per Transaction": 33.51, "Median Spend per Customer": 68.72 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "11500 Roosevelt Blvd", "LATITUDE": 40.104996, "LONGITUDE": -75.007889, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 26.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 341.0, "Total Spend": 9601.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 483.84, "Median Spend per Customer": 1468.8 }, "geometry": { "type": "Point", "coordinates": [ -75.007889, 40.104996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-x3q", "Name": "Manakeesh Cafe Bakery & Grill", "Category": "Restaurants and Other Eating Places", "Address": "4420 Walnut St", "LATITUDE": 39.95498, "LONGITUDE": -75.211488, "DATE_RANGE_START": 2022, "Total Visits": 213.0, "Total Visitors": 138.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 125.0, "Total Spend": 674.0, "Total Transactions": 23.0, "Total Customers": 10.0, "Median Spend per Transaction": 24.19, "Median Spend per Customer": 62.61 }, "geometry": { "type": "Point", "coordinates": [ -75.211488, 39.95498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "Name": "Ristorante Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1915 S Broad St", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 45.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 79.0, "Total Spend": 10747.0, "Total Transactions": 70.0, "Total Customers": 40.0, "Median Spend per Transaction": 124.9, "Median Spend per Customer": 183.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9p-z75", "Name": "Prince Of Pizza & Falafel", "Category": "Restaurants and Other Eating Places", "Address": "9987 Bustleton Ave", "LATITUDE": 40.101596, "LONGITUDE": -75.028395, "DATE_RANGE_START": 2022, "Total Visits": 1486.0, "Total Visitors": 1071.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 30.0, "Total Spend": 5674.0, "Total Transactions": 186.0, "Total Customers": 68.0, "Median Spend per Transaction": 27.88, "Median Spend per Customer": 66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.028395, 40.101596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "Name": "Lucha Cartel", "Category": "Restaurants and Other Eating Places", "Address": "207 Chestnut St", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2022, "Total Visits": 434.0, "Total Visitors": 305.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 54.0, "Total Spend": 13941.0, "Total Transactions": 411.0, "Total Customers": 169.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 44.72 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "527 Franklin Mills Cir", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 230.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 741.0, "Total Transactions": 33.0, "Total Customers": 31.0, "Median Spend per Transaction": 18.39, "Median Spend per Customer": 20.81 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-226@628-p8t-w49", "Name": "Classico Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087666, "LONGITUDE": -74.961024, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 1688.0, "Total Transactions": 134.0, "Total Customers": 52.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 26.35 }, "geometry": { "type": "Point", "coordinates": [ -74.961024, 40.087666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pg9-td9", "Name": "Tela's Market & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1833 Fairmount Ave", "LATITUDE": 39.967388, "LONGITUDE": -75.168391, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 202.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 116.0, "Total Spend": 4786.0, "Total Transactions": 202.0, "Total Customers": 82.0, "Median Spend per Transaction": 17.6, "Median Spend per Customer": 40.56 }, "geometry": { "type": "Point", "coordinates": [ -75.168391, 39.967388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1509 Chestnut St", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2022, "Total Visits": 193.0, "Total Visitors": 167.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 549.0, "Total Spend": 4702.0, "Total Transactions": 835.0, "Total Customers": 249.0, "Median Spend per Transaction": 4.49, "Median Spend per Customer": 7.86 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "106 S 40th St", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 57.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 249.0, "Total Spend": 3929.0, "Total Transactions": 91.0, "Total Customers": 52.0, "Median Spend per Transaction": 41.55, "Median Spend per Customer": 70.41 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "Name": "Aya Asian Fusion", "Category": "Restaurants and Other Eating Places", "Address": "7313 Frankford Ave # 15", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 37.0, "POI_CBG": 421010330006.0, "Median Dwell Time": 16.0, "Total Spend": 3204.0, "Total Transactions": 91.0, "Total Customers": 51.0, "Median Spend per Transaction": 32.05, "Median Spend per Customer": 47.9 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8j-ct9", "Name": "Hunan Star", "Category": "Restaurants and Other Eating Places", "Address": "7203 Frankford Ave", "LATITUDE": 40.035881, "LONGITUDE": -75.042073, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 52.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 94.0, "Total Spend": 1198.0, "Total Transactions": 47.0, "Total Customers": 17.0, "Median Spend per Transaction": 22.09, "Median Spend per Customer": 53.72 }, "geometry": { "type": "Point", "coordinates": [ -75.042073, 40.035881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "Name": "P.C. Richard & Son", "Category": "Electronics and Appliance Stores", "Address": "2420 Cottman Ave", "LATITUDE": 40.046246, "LONGITUDE": -75.059899, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 178.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 14.0, "Total Spend": 4425.0, "Total Transactions": 12.0, "Total Customers": 9.0, "Median Spend per Transaction": 191.99, "Median Spend per Customer": 383.98 }, "geometry": { "type": "Point", "coordinates": [ -75.059899, 40.046246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "Name": "The Fresh Market", "Category": "Grocery Stores", "Address": "8208 Germantown Ave # 18", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2022, "Total Visits": 620.0, "Total Visitors": 331.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 33.0, "Total Spend": 35610.0, "Total Transactions": 706.0, "Total Customers": 430.0, "Median Spend per Transaction": 32.67, "Median Spend per Customer": 48.05 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8d-kpv", "Name": "Best Buy Imports", "Category": "Automobile Dealers", "Address": "4060 Frankford Ave", "LATITUDE": 40.006235, "LONGITUDE": -75.092056, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 245.0, "Total Spend": 4495.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 293.83, "Median Spend per Customer": 483.32 }, "geometry": { "type": "Point", "coordinates": [ -75.092056, 40.006235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2801 W Dauphin St", "LATITUDE": 39.991985, "LONGITUDE": -75.178334, "DATE_RANGE_START": 2022, "Total Visits": 517.0, "Total Visitors": 303.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 12.0, "Total Spend": 718.0, "Total Transactions": 28.0, "Total Customers": 21.0, "Median Spend per Transaction": 21.77, "Median Spend per Customer": 26.52 }, "geometry": { "type": "Point", "coordinates": [ -75.178334, 39.991985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-sbk", "Name": "Spruce Market", "Category": "Grocery Stores", "Address": "1523 Spruce St", "LATITUDE": 39.947568, "LONGITUDE": -75.167428, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 183.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 2.0, "Total Spend": 34615.0, "Total Transactions": 1666.0, "Total Customers": 436.0, "Median Spend per Transaction": 15.8, "Median Spend per Customer": 43.89 }, "geometry": { "type": "Point", "coordinates": [ -75.167428, 39.947568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "Name": "Dairy Queen", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave", "LATITUDE": 40.087375, "LONGITUDE": -75.039949, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 296.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 7.0, "Total Spend": 2680.0, "Total Transactions": 232.0, "Total Customers": 197.0, "Median Spend per Transaction": 10.56, "Median Spend per Customer": 11.21 }, "geometry": { "type": "Point", "coordinates": [ -75.039949, 40.087375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "52 E Jefferson St", "LATITUDE": 39.97281, "LONGITUDE": -75.134837, "DATE_RANGE_START": 2022, "Total Visits": 1038.0, "Total Visitors": 470.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 59.0, "Total Spend": 13166.0, "Total Transactions": 1136.0, "Total Customers": 817.0, "Median Spend per Transaction": 9.58, "Median Spend per Customer": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134837, 39.97281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1700 Jfk Blvd 6 Penn Ctr Concourse", "LATITUDE": 39.953617, "LONGITUDE": -75.167012, "DATE_RANGE_START": 2022, "Total Visits": 2552.0, "Total Visitors": 1777.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 30.0, "Total Spend": 5474.0, "Total Transactions": 1091.0, "Total Customers": 497.0, "Median Spend per Transaction": 4.31, "Median Spend per Customer": 6.36 }, "geometry": { "type": "Point", "coordinates": [ -75.167012, 39.953617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p8n-btv", "Name": "El New Sunrise Mini Market", "Category": "Grocery Stores", "Address": "2701 Levick St", "LATITUDE": 40.03352, "LONGITUDE": -75.066168, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010317004.0, "Median Dwell Time": null, "Total Spend": 137.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.37, "Median Spend per Customer": 12.74 }, "geometry": { "type": "Point", "coordinates": [ -75.066168, 40.03352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "Name": "Philly Tacos", "Category": "Restaurants and Other Eating Places", "Address": "2011 Reed St", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010031001.0, "Median Dwell Time": null, "Total Spend": 163.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.47, "Median Spend per Customer": 6.47 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "Name": "Tavern On Camac", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "243 S Camac St", "LATITUDE": 39.947272, "LONGITUDE": -75.161618, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 101.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 39.0, "Total Spend": 56313.0, "Total Transactions": 2456.0, "Total Customers": 601.0, "Median Spend per Transaction": 18.93, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161618, 39.947272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "Name": "Tokyo Sushi & Catering", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd Ste C120", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2022, "Total Visits": 3279.0, "Total Visitors": 1596.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 392.0, "Total Spend": 4980.0, "Total Transactions": 314.0, "Total Customers": 125.0, "Median Spend per Transaction": 16.18, "Median Spend per Customer": 31.28 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "Name": "Race Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "208 Race St", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 89.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 36.0, "Total Spend": 7849.0, "Total Transactions": 131.0, "Total Customers": 56.0, "Median Spend per Transaction": 45.65, "Median Spend per Customer": 94.49 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-whq", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "304 Market St", "LATITUDE": 39.949985, "LONGITUDE": -75.146017, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 108.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 12.0, "Total Spend": 3401.0, "Total Transactions": 167.0, "Total Customers": 85.0, "Median Spend per Transaction": 17.37, "Median Spend per Customer": 31.94 }, "geometry": { "type": "Point", "coordinates": [ -75.146017, 39.949985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-227@628-pmf-j35", "Name": "Cheys Kitchen", "Category": "Specialty Food Stores", "Address": "131 S 17th St Bsmt", "LATITUDE": 39.950469, "LONGITUDE": -75.169274, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 94.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 81.0, "Total Spend": 210.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.02, "Median Spend per Customer": 54.04 }, "geometry": { "type": "Point", "coordinates": [ -75.169274, 39.950469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-2hq", "Name": "Las Cazuelas Restaurant BYOB", "Category": "Restaurants and Other Eating Places", "Address": "426 W Girard Ave", "LATITUDE": 39.969878, "LONGITUDE": -75.143998, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 222.0, "Total Spend": 7736.0, "Total Transactions": 84.0, "Total Customers": 45.0, "Median Spend per Transaction": 57.78, "Median Spend per Customer": 111.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143998, 39.969878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvr-9mk", "Name": "60th Street Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5956 Chester Ave", "LATITUDE": 39.93354, "LONGITUDE": -75.231211, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010065001.0, "Median Dwell Time": 1.0, "Total Spend": 6738.0, "Total Transactions": 350.0, "Total Customers": 141.0, "Median Spend per Transaction": 16.62, "Median Spend per Customer": 35.38 }, "geometry": { "type": "Point", "coordinates": [ -75.231211, 39.93354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-75z", "Name": "Pizza Brain", "Category": "Restaurants and Other Eating Places", "Address": "2313 Frankford Ave", "LATITUDE": 39.980599, "LONGITUDE": -75.128225, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 1.0, "Total Spend": 11644.0, "Total Transactions": 329.0, "Total Customers": 125.0, "Median Spend per Transaction": 30.39, "Median Spend per Customer": 37.61 }, "geometry": { "type": "Point", "coordinates": [ -75.128225, 39.980599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "3551 Aramingo Ave", "LATITUDE": 39.992457, "LONGITUDE": -75.097895, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 293.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 4.0, "Total Spend": 9702.0, "Total Transactions": 568.0, "Total Customers": 399.0, "Median Spend per Transaction": 13.88, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.097895, 39.992457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnt-435", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2401 Aramingo Ave", "LATITUDE": 39.974852, "LONGITUDE": -75.120942, "DATE_RANGE_START": 2022, "Total Visits": 599.0, "Total Visitors": 373.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 7.0, "Total Spend": 769.0, "Total Transactions": 66.0, "Total Customers": 49.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.120942, 39.974852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7901 Frankford Ave", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2022, "Total Visits": 282.0, "Total Visitors": 181.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 2.0, "Total Spend": 179.0, "Total Transactions": 23.0, "Total Customers": 17.0, "Median Spend per Transaction": 7.97, "Median Spend per Customer": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "Name": "CLo", "Category": "Shoe Stores", "Address": "3511 N Lee St", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2022, "Total Visits": 5.0, "Total Visitors": 2.0, "POI_CBG": 421010195022.0, "Median Dwell Time": null, "Total Spend": 13163.0, "Total Transactions": 307.0, "Total Customers": 118.0, "Median Spend per Transaction": 38.48, "Median Spend per Customer": 83.6 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "Name": "Boss Outlet", "Category": "Clothing Stores", "Address": "1613 Franklin Mills Cir", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 75.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 12.0, "Total Spend": 17781.0, "Total Transactions": 279.0, "Total Customers": 249.0, "Median Spend per Transaction": 44.98, "Median Spend per Customer": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8t-vvf", "Name": "Hanesbrands", "Category": "Clothing Stores", "Address": "1519 Franklin Mills Cir Ste 313", "LATITUDE": 40.089656, "LONGITUDE": -74.961738, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 155.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 40.0, "Total Spend": 2123.0, "Total Transactions": 54.0, "Total Customers": 28.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 58.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961738, 40.089656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dy9", "Name": "Firestone Complete Auto Care", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7320 Elgin Ave", "LATITUDE": 40.052472, "LONGITUDE": -75.06646, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 75.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 209.0, "Total Spend": 1000.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 89.05, "Median Spend per Customer": 157.09 }, "geometry": { "type": "Point", "coordinates": [ -75.06646, 40.052472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg9-vvf", "Name": "Marina Montano Designs", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1914 Fairmount Ave", "LATITUDE": 39.966951, "LONGITUDE": -75.169145, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 240.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 6.0, "Total Spend": 797.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 93.59, "Median Spend per Customer": 187.18 }, "geometry": { "type": "Point", "coordinates": [ -75.169145, 39.966951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6000 N Broad St Store A", "LATITUDE": 40.045011, "LONGITUDE": -75.144262, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 117.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 15.0, "Total Spend": 289.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 13.2, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144262, 40.045011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5200 Germantown Ave", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2022, "Total Visits": 220.0, "Total Visitors": 167.0, "POI_CBG": 421010242001.0, "Median Dwell Time": 4.0, "Total Spend": 1813.0, "Total Transactions": 254.0, "Total Customers": 139.0, "Median Spend per Transaction": 5.86, "Median Spend per Customer": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3668 Aramingo Ave Ste 9A", "LATITUDE": 39.995094, "LONGITUDE": -75.095646, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 235.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 3.0, "Total Spend": 592.0, "Total Transactions": 33.0, "Total Customers": 16.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 39.995094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-r49", "Name": "IGA", "Category": "Grocery Stores", "Address": "2497 Aramingo Ave", "LATITUDE": 39.975356, "LONGITUDE": -75.119618, "DATE_RANGE_START": 2022, "Total Visits": 1307.0, "Total Visitors": 610.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 15.0, "Total Spend": 89.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 3.83, "Median Spend per Customer": 7.66 }, "geometry": { "type": "Point", "coordinates": [ -75.119618, 39.975356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pjb-8qf", "Name": "Kim's Market", "Category": "Grocery Stores", "Address": "6349 N Broad St", "LATITUDE": 40.050403, "LONGITUDE": -75.141786, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 138.0, "POI_CBG": 421010268004.0, "Median Dwell Time": 2.0, "Total Spend": 838.0, "Total Transactions": 38.0, "Total Customers": 21.0, "Median Spend per Transaction": 22.24, "Median Spend per Customer": 41.63 }, "geometry": { "type": "Point", "coordinates": [ -75.141786, 40.050403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-v4v", "Name": "Food Point Deli", "Category": "Grocery Stores", "Address": "1711 S Broad St", "LATITUDE": 39.928702, "LONGITUDE": -75.168281, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 92.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 328.0, "Total Spend": 1044.0, "Total Transactions": 40.0, "Total Customers": 16.0, "Median Spend per Transaction": 17.83, "Median Spend per Customer": 59.15 }, "geometry": { "type": "Point", "coordinates": [ -75.168281, 39.928702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2301 W Passyunk Ave", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2022, "Total Visits": 451.0, "Total Visitors": 305.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 3.0, "Total Spend": 1108.0, "Total Transactions": 75.0, "Total Customers": 47.0, "Median Spend per Transaction": 11.42, "Median Spend per Customer": 11.14 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-pmb-8qf", "Name": "Jefferson Farmers' Market", "Category": "Specialty Food Stores", "Address": "925 Chestnut St", "LATITUDE": 39.950512, "LONGITUDE": -75.156532, "DATE_RANGE_START": 2022, "Total Visits": 2066.0, "Total Visitors": 1467.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 68.0, "Total Spend": 363.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 47.0, "Median Spend per Customer": 52.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156532, 39.950512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "Name": "Bardot Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "447 Poplar St", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 159.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 1.0, "Total Spend": 14257.0, "Total Transactions": 366.0, "Total Customers": 132.0, "Median Spend per Transaction": 30.75, "Median Spend per Customer": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-syv", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "2000 Germantown Ave", "LATITUDE": 39.981631, "LONGITUDE": -75.144038, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010156002.0, "Median Dwell Time": 3.0, "Total Spend": 1455.0, "Total Transactions": 94.0, "Total Customers": 45.0, "Median Spend per Transaction": 12.85, "Median Spend per Customer": 28.55 }, "geometry": { "type": "Point", "coordinates": [ -75.144038, 39.981631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pmd-rtv", "Name": "Sally", "Category": "Restaurants and Other Eating Places", "Address": "2229 Spruce St", "LATITUDE": 39.948932, "LONGITUDE": -75.178843, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 110.0, "POI_CBG": 421010008011.0, "Median Dwell Time": 16.0, "Total Spend": 4718.0, "Total Transactions": 73.0, "Total Customers": 42.0, "Median Spend per Transaction": 62.38, "Median Spend per Customer": 95.41 }, "geometry": { "type": "Point", "coordinates": [ -75.178843, 39.948932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "Name": "Southgate", "Category": "Restaurants and Other Eating Places", "Address": "1801 Lombard St", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2022, "Total Visits": 362.0, "Total Visitors": 253.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 121.0, "Total Spend": 2751.0, "Total Transactions": 42.0, "Total Customers": 26.0, "Median Spend per Transaction": 51.12, "Median Spend per Customer": 84.36 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pjf-t5f", "Name": "Host", "Category": "Furniture Stores", "Address": "7908 Germantown Ave", "LATITUDE": 40.069687, "LONGITUDE": -75.200234, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 73.0, "Total Spend": 1067.0, "Total Transactions": 44.0, "Total Customers": 23.0, "Median Spend per Transaction": 6.74, "Median Spend per Customer": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.200234, 40.069687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-5vf", "Name": "Mario Brothers Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2224 Cottman Ave", "LATITUDE": 40.048464, "LONGITUDE": -75.061807, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 91.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 7.0, "Total Spend": 378.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 42.66, "Median Spend per Customer": 85.32 }, "geometry": { "type": "Point", "coordinates": [ -75.061807, 40.048464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "7210 Cresheim Rd", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 23.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 5.0, "Total Spend": 1876.0, "Total Transactions": 106.0, "Total Customers": 42.0, "Median Spend per Transaction": 15.56, "Median Spend per Customer": 32.22 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pmb-fpv", "Name": "Shaking Seafood", "Category": "Restaurants and Other Eating Places", "Address": "243 S 10th St", "LATITUDE": 39.946982, "LONGITUDE": -75.157365, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 28.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 9.0, "Total Spend": 5148.0, "Total Transactions": 120.0, "Total Customers": 61.0, "Median Spend per Transaction": 35.67, "Median Spend per Customer": 71.34 }, "geometry": { "type": "Point", "coordinates": [ -75.157365, 39.946982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm9-5cq", "Name": "Friends Convenience Store", "Category": "Grocery Stores", "Address": "2652 S Warnock St", "LATITUDE": 39.91628, "LONGITUDE": -75.165627, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 31.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 3.0, "Total Spend": 1146.0, "Total Transactions": 98.0, "Total Customers": 37.0, "Median Spend per Transaction": 8.45, "Median Spend per Customer": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165627, 39.91628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kmk", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "1231 N Broad St", "LATITUDE": 39.973034, "LONGITUDE": -75.158605, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 38.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 270.0, "Total Spend": 4492.0, "Total Transactions": 31.0, "Total Customers": 28.0, "Median Spend per Transaction": 127.48, "Median Spend per Customer": 139.97 }, "geometry": { "type": "Point", "coordinates": [ -75.158605, 39.973034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-t7q", "Name": "Pamma Tools", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "809 Sansom St", "LATITUDE": 39.949116, "LONGITUDE": -75.154492, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 44.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 6.0, "Total Spend": 1474.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 402.0, "Median Spend per Customer": 423.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154492, 39.949116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "Name": "A Plus", "Category": "Grocery Stores", "Address": "5240 Torresdale Ave", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2022, "Total Visits": 181.0, "Total Visitors": 122.0, "POI_CBG": 421010298005.0, "Median Dwell Time": 4.0, "Total Spend": 2300.0, "Total Transactions": 181.0, "Total Customers": 68.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 17.36 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8m-snq", "Name": "Station Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "1609 Pratt St", "LATITUDE": 40.022297, "LONGITUDE": -75.077816, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 204.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 2.0, "Total Spend": 1069.0, "Total Transactions": 35.0, "Total Customers": 17.0, "Median Spend per Transaction": 30.15, "Median Spend per Customer": 48.49 }, "geometry": { "type": "Point", "coordinates": [ -75.077816, 40.022297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5700 Roosevelt Blvd", "LATITUDE": 40.032503, "LONGITUDE": -75.08527, "DATE_RANGE_START": 2022, "Total Visits": 796.0, "Total Visitors": 533.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 4.0, "Total Spend": 567.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 40.03, "Median Spend per Customer": 40.03 }, "geometry": { "type": "Point", "coordinates": [ -75.08527, 40.032503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pjk-3bk", "Name": "Posh", "Category": "Gasoline Stations", "Address": "8901 Ridge Ave", "LATITUDE": 40.068847, "LONGITUDE": -75.240209, "DATE_RANGE_START": 2022, "Total Visits": 697.0, "Total Visitors": 507.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 3.0, "Total Spend": 1160.0, "Total Transactions": 17.0, "Total Customers": 7.0, "Median Spend per Transaction": 76.0, "Median Spend per Customer": 164.16 }, "geometry": { "type": "Point", "coordinates": [ -75.240209, 40.068847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "Name": "Produce Junction", "Category": "Florists", "Address": "2241 Bryn Mawr Ave", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2022, "Total Visits": 345.0, "Total Visitors": 274.0, "POI_CBG": 421010120001.0, "Median Dwell Time": 6.0, "Total Spend": 192.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "Name": "Roses Florist", "Category": "Florists", "Address": "3551 Chestnut St", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2022, "Total Visits": 836.0, "Total Visitors": 479.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 333.0, "Total Spend": 1845.0, "Total Transactions": 28.0, "Total Customers": 14.0, "Median Spend per Transaction": 64.25, "Median Spend per Customer": 85.32 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmb-66k", "Name": "uBreakiFix", "Category": "Electronics and Appliance Stores", "Address": "1128 Walnut St # 100B", "LATITUDE": 39.948576, "LONGITUDE": -75.160424, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 54.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 44.0, "Total Spend": 3829.0, "Total Transactions": 66.0, "Total Customers": 30.0, "Median Spend per Transaction": 58.84, "Median Spend per Customer": 130.56 }, "geometry": { "type": "Point", "coordinates": [ -75.160424, 39.948576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "Name": "Rittenhouse Market", "Category": "Grocery Stores", "Address": "1733 Spruce St", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2022, "Total Visits": 1758.0, "Total Visitors": 1160.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 8.0, "Total Spend": 132322.0, "Total Transactions": 5760.0, "Total Customers": 1213.0, "Median Spend per Transaction": 16.46, "Median Spend per Customer": 62.39 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "150 N Broad St", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2022, "Total Visits": 502.0, "Total Visitors": 341.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 1.0, "Total Spend": 1656.0, "Total Transactions": 155.0, "Total Customers": 96.0, "Median Spend per Transaction": 7.96, "Median Spend per Customer": 7.96 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6800 Bustleton Ave", "LATITUDE": 40.040921, "LONGITUDE": -75.065658, "DATE_RANGE_START": 2022, "Total Visits": 549.0, "Total Visitors": 362.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 2.0, "Total Spend": 493.0, "Total Transactions": 68.0, "Total Customers": 17.0, "Median Spend per Transaction": 5.28, "Median Spend per Customer": 10.83 }, "geometry": { "type": "Point", "coordinates": [ -75.065658, 40.040921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3301 Tyson Ave", "LATITUDE": 40.035458, "LONGITUDE": -75.049099, "DATE_RANGE_START": 2022, "Total Visits": 284.0, "Total Visitors": 204.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 2.0, "Total Spend": 5196.0, "Total Transactions": 146.0, "Total Customers": 92.0, "Median Spend per Transaction": 26.09, "Median Spend per Customer": 40.04 }, "geometry": { "type": "Point", "coordinates": [ -75.049099, 40.035458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-qj9", "Name": "Mack Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "6120 Vine St", "LATITUDE": 39.966784, "LONGITUDE": -75.242585, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 64.0, "POI_CBG": 421010096005.0, "Median Dwell Time": 3.0, "Total Spend": 3014.0, "Total Transactions": 172.0, "Total Customers": 47.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242585, 39.966784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "490 N Broad St", "LATITUDE": 39.962319, "LONGITUDE": -75.162376, "DATE_RANGE_START": 2022, "Total Visits": 338.0, "Total Visitors": 218.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 8.0, "Total Spend": 18540.0, "Total Transactions": 1718.0, "Total Customers": 643.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.162376, 39.962319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "Name": "Wyndham", "Category": "Traveler Accommodation", "Address": "400 Arch St", "LATITUDE": 39.952204, "LONGITUDE": -75.146959, "DATE_RANGE_START": 2022, "Total Visits": 3082.0, "Total Visitors": 1641.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 435.0, "Total Spend": 49064.0, "Total Transactions": 270.0, "Total Customers": 214.0, "Median Spend per Transaction": 42.88, "Median Spend per Customer": 77.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146959, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hh5", "Name": "Square on Square", "Category": "Restaurants and Other Eating Places", "Address": "274 S 20th St", "LATITUDE": 39.94849, "LONGITUDE": -75.174456, "DATE_RANGE_START": 2022, "Total Visits": 805.0, "Total Visitors": 528.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 71.0, "Total Spend": 1630.0, "Total Transactions": 71.0, "Total Customers": 31.0, "Median Spend per Transaction": 17.41, "Median Spend per Customer": 38.79 }, "geometry": { "type": "Point", "coordinates": [ -75.174456, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "Name": "Harbor Freight Tools", "Category": "Building Material and Supplies Dealers", "Address": "151 Franklin Mills Blvd", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2022, "Total Visits": 510.0, "Total Visitors": 437.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 7.0, "Total Spend": 45609.0, "Total Transactions": 686.0, "Total Customers": 568.0, "Median Spend per Transaction": 34.11, "Median Spend per Customer": 37.49 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-dqf", "Name": "Good Neighbor Mini Market", "Category": "Specialty Food Stores", "Address": "5131 Chester Ave", "LATITUDE": 39.941908, "LONGITUDE": -75.220217, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 33.0, "POI_CBG": 421010073001.0, "Median Dwell Time": 2.0, "Total Spend": 1885.0, "Total Transactions": 172.0, "Total Customers": 54.0, "Median Spend per Transaction": 12.25, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.220217, 39.941908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7v-nnq", "Name": "Tano's Deli", "Category": "Restaurants and Other Eating Places", "Address": "7401 Bingham St", "LATITUDE": 40.062163, "LONGITUDE": -75.080393, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 37.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 82.0, "Total Spend": 602.0, "Total Transactions": 35.0, "Total Customers": 16.0, "Median Spend per Transaction": 14.44, "Median Spend per Customer": 28.88 }, "geometry": { "type": "Point", "coordinates": [ -75.080393, 40.062163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "Name": "Carter's", "Category": "Clothing Stores", "Address": "9171 Roosevelt Blvd Ste C", "LATITUDE": 40.075968, "LONGITUDE": -75.031512, "DATE_RANGE_START": 2022, "Total Visits": 463.0, "Total Visitors": 415.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 31.0, "Total Spend": 2617.0, "Total Transactions": 52.0, "Total Customers": 49.0, "Median Spend per Transaction": 27.14, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031512, 40.075968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "56 Snyder Ave Spc 25", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2022, "Total Visits": 200.0, "Total Visitors": 155.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 10.0, "Total Spend": 1040.0, "Total Transactions": 68.0, "Total Customers": 52.0, "Median Spend per Transaction": 14.77, "Median Spend per Customer": 18.51 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-2hq", "Name": "O Sole Mio", "Category": "Restaurants and Other Eating Places", "Address": "824 S 8th St", "LATITUDE": 39.937827, "LONGITUDE": -75.148269, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 14.0, "POI_CBG": 421010017001.0, "Median Dwell Time": 59.0, "Total Spend": 2726.0, "Total Transactions": 68.0, "Total Customers": 31.0, "Median Spend per Transaction": 36.39, "Median Spend per Customer": 68.93 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 39.937827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj8-g6k", "Name": "Ami Food Market", "Category": "Grocery Stores", "Address": "899 E Sanger St", "LATITUDE": 40.033615, "LONGITUDE": -75.090608, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 16.0, "POI_CBG": 421010390002.0, "Median Dwell Time": 5.0, "Total Spend": 304.0, "Total Transactions": 24.0, "Total Customers": 12.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 17.98 }, "geometry": { "type": "Point", "coordinates": [ -75.090608, 40.033615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "2106 S Columbus Blvd", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2022, "Total Visits": 1958.0, "Total Visitors": 1352.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 16.0, "Total Spend": 118345.0, "Total Transactions": 1401.0, "Total Customers": 927.0, "Median Spend per Transaction": 20.98, "Median Spend per Customer": 27.08 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-28v", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1717 N 12th St", "LATITUDE": 39.978491, "LONGITUDE": -75.153508, "DATE_RANGE_START": 2022, "Total Visits": 617.0, "Total Visitors": 371.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 217.0, "Total Spend": 20820.0, "Total Transactions": 1545.0, "Total Customers": 864.0, "Median Spend per Transaction": 9.49, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.978491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6900 Lindbergh Blvd", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2022, "Total Visits": 331.0, "Total Visitors": 254.0, "POI_CBG": 421010061001.0, "Median Dwell Time": 6.0, "Total Spend": 2003.0, "Total Transactions": 127.0, "Total Customers": 99.0, "Median Spend per Transaction": 13.05, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "1243 S Broad St", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2022, "Total Visits": 1138.0, "Total Visitors": 760.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 4.0, "Total Spend": 49043.0, "Total Transactions": 1533.0, "Total Customers": 972.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 40.63 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "Name": "Burlington", "Category": "Clothing Stores", "Address": "833 Market St", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2022, "Total Visits": 15234.0, "Total Visitors": 9800.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 7667.0, "Total Transactions": 160.0, "Total Customers": 125.0, "Median Spend per Transaction": 34.47, "Median Spend per Customer": 42.03 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-6ff", "Name": "Lighthouse Thrift Shop", "Category": "Used Merchandise Stores", "Address": "398 E Godfrey Ave", "LATITUDE": 40.041347, "LONGITUDE": -75.107276, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 2.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 9.0, "Total Spend": 39.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.62, "Median Spend per Customer": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.107276, 40.041347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj8-2c5", "Name": "US1 Car Stereo", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4331 E Roosevelt Blvd", "LATITUDE": 40.029189, "LONGITUDE": -75.103473, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 33.0, "POI_CBG": 421010292002.0, "Median Dwell Time": 56.0, "Total Spend": 1254.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 135.0, "Median Spend per Customer": 270.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103473, 40.029189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "4004 W Girard Ave", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010110003.0, "Median Dwell Time": 17.0, "Total Spend": 272.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 39.0, "Median Spend per Customer": 78.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "Name": "Popi's Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3120 S 20th St", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 85.0, "Total Spend": 3015.0, "Total Transactions": 26.0, "Total Customers": 14.0, "Median Spend per Transaction": 116.12, "Median Spend per Customer": 196.04 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-jd9", "Name": "Ten Asian Food Hall", "Category": "Restaurants and Other Eating Places", "Address": "1715 Chestnut St", "LATITUDE": 39.951674, "LONGITUDE": -75.169299, "DATE_RANGE_START": 2022, "Total Visits": 1986.0, "Total Visitors": 1695.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 22.0, "Total Spend": 724.0, "Total Transactions": 21.0, "Total Customers": 9.0, "Median Spend per Transaction": 34.57, "Median Spend per Customer": 83.16 }, "geometry": { "type": "Point", "coordinates": [ -75.169299, 39.951674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "Name": "Revolution House", "Category": "Restaurants and Other Eating Places", "Address": "200 Market St", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2022, "Total Visits": 206.0, "Total Visitors": 202.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 30499.0, "Total Transactions": 481.0, "Total Customers": 249.0, "Median Spend per Transaction": 48.4, "Median Spend per Customer": 85.64 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "Name": "Park Manor Deli", "Category": "Restaurants and Other Eating Places", "Address": "240 W Chelten Ave", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 77.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 403.0, "Total Spend": 7740.0, "Total Transactions": 627.0, "Total Customers": 132.0, "Median Spend per Transaction": 11.01, "Median Spend per Customer": 30.34 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "Name": "The Bayou Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "4245 Main St", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 110.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 31.0, "Total Spend": 22841.0, "Total Transactions": 784.0, "Total Customers": 310.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-6tv", "Name": "Smoothie King", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 207", "LATITUDE": 39.951888, "LONGITUDE": -75.167584, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 78.0, "Total Spend": 3112.0, "Total Transactions": 343.0, "Total Customers": 291.0, "Median Spend per Transaction": 7.55, "Median Spend per Customer": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.167584, 39.951888 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "Name": "Jamba", "Category": "Restaurants and Other Eating Places", "Address": "Philadelphia Int L Airport Space C 9a", "LATITUDE": 39.87525, "LONGITUDE": -75.241494, "DATE_RANGE_START": 2022, "Total Visits": 226042.0, "Total Visitors": 145993.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 54.0, "Total Spend": 1869.0, "Total Transactions": 148.0, "Total Customers": 136.0, "Median Spend per Transaction": 9.88, "Median Spend per Customer": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.241494, 39.87525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6401 Roosevelt Blvd", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2022, "Total Visits": 540.0, "Total Visitors": 253.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 2.0, "Total Spend": 4627.0, "Total Transactions": 571.0, "Total Customers": 249.0, "Median Spend per Transaction": 6.29, "Median Spend per Customer": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pr4-d35", "Name": "Rush Order Tees", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2727 Commerce Way", "LATITUDE": 40.112433, "LONGITUDE": -74.979188, "DATE_RANGE_START": 2022, "Total Visits": 195.0, "Total Visitors": 42.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 544.0, "Total Spend": 6903.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 175.7, "Median Spend per Customer": 260.36 }, "geometry": { "type": "Point", "coordinates": [ -74.979188, 40.112433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "Name": "Henry James Saloon", "Category": "Restaurants and Other Eating Places", "Address": "577 Jamestown St", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 45.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 130.0, "Total Spend": 7174.0, "Total Transactions": 125.0, "Total Customers": 59.0, "Median Spend per Transaction": 48.2, "Median Spend per Customer": 95.82 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmf-zj9", "Name": "Arch Brunch", "Category": "Restaurants and Other Eating Places", "Address": "2200 Arch St Ste 103", "LATITUDE": 39.955759, "LONGITUDE": -75.17646, "DATE_RANGE_START": 2022, "Total Visits": 1810.0, "Total Visitors": 1263.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 256.0, "Total Spend": 1256.0, "Total Transactions": 35.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17646, 39.955759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-wkz", "Name": "Sassafras Bar", "Category": "Restaurants and Other Eating Places", "Address": "48 S 2nd St", "LATITUDE": 39.948812, "LONGITUDE": -75.144182, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 275.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 16.0, "Total Spend": 4978.0, "Total Transactions": 49.0, "Total Customers": 31.0, "Median Spend per Transaction": 74.62, "Median Spend per Customer": 79.3 }, "geometry": { "type": "Point", "coordinates": [ -75.144182, 39.948812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "Name": "Tradesman's", "Category": "Restaurants and Other Eating Places", "Address": "1322 Chestnut St", "LATITUDE": 39.950487, "LONGITUDE": -75.162708, "DATE_RANGE_START": 2022, "Total Visits": 632.0, "Total Visitors": 528.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 44.0, "Total Spend": 65464.0, "Total Transactions": 1847.0, "Total Customers": 774.0, "Median Spend per Transaction": 24.52, "Median Spend per Customer": 56.25 }, "geometry": { "type": "Point", "coordinates": [ -75.162708, 39.950487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "Name": "Spice C", "Category": "Restaurants and Other Eating Places", "Address": "131 N 10th St", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 186.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 33.0, "Total Spend": 6776.0, "Total Transactions": 209.0, "Total Customers": 110.0, "Median Spend per Transaction": 29.37, "Median Spend per Customer": 50.54 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-v75", "Name": "Oishii", "Category": "Restaurants and Other Eating Places", "Address": "138 Chestnut St", "LATITUDE": 39.948105, "LONGITUDE": -75.143866, "DATE_RANGE_START": 2022, "Total Visits": 2087.0, "Total Visitors": 1528.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 55.0, "Total Spend": 20301.0, "Total Transactions": 822.0, "Total Customers": 399.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143866, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "Name": "Cambria Suites", "Category": "Traveler Accommodation", "Address": "219 S Broad St", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2022, "Total Visits": 6932.0, "Total Visitors": 4793.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 100.0, "Total Spend": 19989.0, "Total Transactions": 70.0, "Total Customers": 51.0, "Median Spend per Transaction": 219.72, "Median Spend per Customer": 235.98 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phy-h3q", "Name": "El Patron bar restaurant", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4637 N 5th St", "LATITUDE": 40.022106, "LONGITUDE": -75.133416, "DATE_RANGE_START": 2022, "Total Visits": 226.0, "Total Visitors": 159.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 32.0, "Total Spend": 1105.0, "Total Transactions": 37.0, "Total Customers": 14.0, "Median Spend per Transaction": 26.64, "Median Spend per Customer": 57.72 }, "geometry": { "type": "Point", "coordinates": [ -75.133416, 40.022106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmb-7nq", "Name": "Graffiti Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "124 S 13th St", "LATITUDE": 39.949568, "LONGITUDE": -75.162157, "DATE_RANGE_START": 2022, "Total Visits": 5903.0, "Total Visitors": 3627.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 165.0, "Total Spend": 390.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 74.22, "Median Spend per Customer": 112.07 }, "geometry": { "type": "Point", "coordinates": [ -75.162157, 39.949568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p72-5s5", "Name": "Three Monkeys Cafe", "Category": "Restaurants and Other Eating Places", "Address": "9645 James St", "LATITUDE": 40.053948, "LONGITUDE": -74.983889, "DATE_RANGE_START": 2022, "Total Visits": 551.0, "Total Visitors": 394.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 61.0, "Total Spend": 544.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 104.4, "Median Spend per Customer": 156.1 }, "geometry": { "type": "Point", "coordinates": [ -74.983889, 40.053948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "Name": "Penrose Diner", "Category": "Restaurants and Other Eating Places", "Address": "2016 Penrose Ave", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2022, "Total Visits": 779.0, "Total Visitors": 674.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 17.0, "Total Spend": 2568.0, "Total Transactions": 51.0, "Total Customers": 30.0, "Median Spend per Transaction": 48.56, "Median Spend per Customer": 78.38 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9240 State Rd", "LATITUDE": 40.047033, "LONGITUDE": -74.993404, "DATE_RANGE_START": 2022, "Total Visits": 510.0, "Total Visitors": 279.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 2.0, "Total Spend": 2962.0, "Total Transactions": 373.0, "Total Customers": 192.0, "Median Spend per Transaction": 7.4, "Median Spend per Customer": 9.15 }, "geometry": { "type": "Point", "coordinates": [ -74.993404, 40.047033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mzf", "Name": "Passero's Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "1601 John F Kennedy Blvd", "LATITUDE": 39.954206, "LONGITUDE": -75.167446, "DATE_RANGE_START": 2022, "Total Visits": 4749.0, "Total Visitors": 2620.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 40.0, "Total Spend": 3705.0, "Total Transactions": 530.0, "Total Customers": 162.0, "Median Spend per Transaction": 6.55, "Median Spend per Customer": 15.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167446, 39.954206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "9430 Academy Rd", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2022, "Total Visits": 756.0, "Total Visitors": 538.0, "POI_CBG": 421010348022.0, "Median Dwell Time": 3.0, "Total Spend": 7617.0, "Total Transactions": 805.0, "Total Customers": 444.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9900 Frankford Ave", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 84.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 3.0, "Total Spend": 657.0, "Total Transactions": 91.0, "Total Customers": 71.0, "Median Spend per Transaction": 4.45, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22c@63s-dw9-7nq", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave Terminal E Space E15", "LATITUDE": 39.878147, "LONGITUDE": -75.237777, "DATE_RANGE_START": 2022, "Total Visits": 2561.0, "Total Visitors": 2451.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 13.0, "Total Spend": 2885.0, "Total Transactions": 200.0, "Total Customers": 113.0, "Median Spend per Transaction": 11.18, "Median Spend per Customer": 19.54 }, "geometry": { "type": "Point", "coordinates": [ -75.237777, 39.878147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1615 Chancellor St", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2022, "Total Visits": 913.0, "Total Visitors": 545.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 421.0, "Total Spend": 20148.0, "Total Transactions": 383.0, "Total Customers": 193.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 77.76 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-fvf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "122 W Chelten Ave", "LATITUDE": 40.033336, "LONGITUDE": -75.176853, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 122.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 4.0, "Total Spend": 761.0, "Total Transactions": 33.0, "Total Customers": 26.0, "Median Spend per Transaction": 19.75, "Median Spend per Customer": 35.81 }, "geometry": { "type": "Point", "coordinates": [ -75.176853, 40.033336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Butler St", "LATITUDE": 39.9973, "LONGITUDE": -75.092737, "DATE_RANGE_START": 2022, "Total Visits": 1110.0, "Total Visitors": 883.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 3.0, "Total Spend": 39097.0, "Total Transactions": 2173.0, "Total Customers": 1394.0, "Median Spend per Transaction": 15.19, "Median Spend per Customer": 19.48 }, "geometry": { "type": "Point", "coordinates": [ -75.092737, 39.9973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6190 N Front St", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 265.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 3.0, "Total Spend": 4197.0, "Total Transactions": 481.0, "Total Customers": 326.0, "Median Spend per Transaction": 7.66, "Median Spend per Customer": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "Name": "Capriccio Cafe and Bar", "Category": "Restaurants and Other Eating Places", "Address": "110 N 16th St", "LATITUDE": 39.955464, "LONGITUDE": -75.166555, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 124.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 31.0, "Total Spend": 2119.0, "Total Transactions": 192.0, "Total Customers": 94.0, "Median Spend per Transaction": 9.32, "Median Spend per Customer": 19.11 }, "geometry": { "type": "Point", "coordinates": [ -75.166555, 39.955464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pm9-vxq", "Name": "Wyndam Hotel", "Category": "Traveler Accommodation", "Address": "400 Arch St", "LATITUDE": 39.952228, "LONGITUDE": -75.147286, "DATE_RANGE_START": 2022, "Total Visits": 3082.0, "Total Visitors": 1641.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 435.0, "Total Spend": 52.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147286, 39.952228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "Name": "Dragon Phoenix House", "Category": "Restaurants and Other Eating Places", "Address": "2839 Tyson Ave", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 99.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 156.0, "Total Spend": 2243.0, "Total Transactions": 70.0, "Total Customers": 30.0, "Median Spend per Transaction": 29.27, "Median Spend per Customer": 55.86 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "Name": "New England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2417 Welsh Rd", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 202.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 1893.0, "Total Transactions": 68.0, "Total Customers": 31.0, "Median Spend per Transaction": 29.7, "Median Spend per Customer": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfy-zj9", "Name": "Mike's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4111 Main St", "LATITUDE": 40.022539, "LONGITUDE": -75.218415, "DATE_RANGE_START": 2022, "Total Visits": 540.0, "Total Visitors": 441.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 54.0, "Total Spend": 6584.0, "Total Transactions": 575.0, "Total Customers": 246.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218415, 40.022539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22q@628-pmb-835", "Name": "Pearl's Oyster Bar", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.95321, "LONGITUDE": -75.159401, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 10993.0, "Total Transactions": 362.0, "Total Customers": 176.0, "Median Spend per Transaction": 23.82, "Median Spend per Customer": 49.68 }, "geometry": { "type": "Point", "coordinates": [ -75.159401, 39.95321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "Name": "La Tienda MiniMarket", "Category": "Restaurants and Other Eating Places", "Address": "1247 Snyder Ave", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 2.0, "Total Spend": 83.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 23.72 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "Name": "Convenient Food Mart", "Category": "Grocery Stores", "Address": "7101 Frankford Ave", "LATITUDE": 40.034523, "LONGITUDE": -75.044217, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 51.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 6.0, "Total Spend": 15011.0, "Total Transactions": 1143.0, "Total Customers": 279.0, "Median Spend per Transaction": 11.37, "Median Spend per Customer": 25.06 }, "geometry": { "type": "Point", "coordinates": [ -75.044217, 40.034523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-ph6-cdv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6375 Lebanon Ave", "LATITUDE": 39.979947, "LONGITUDE": -75.248732, "DATE_RANGE_START": 2022, "Total Visits": 357.0, "Total Visitors": 213.0, "POI_CBG": 421010114001.0, "Median Dwell Time": 3.0, "Total Spend": 927.0, "Total Transactions": 70.0, "Total Customers": 37.0, "Median Spend per Transaction": 5.55, "Median Spend per Customer": 11.78 }, "geometry": { "type": "Point", "coordinates": [ -75.248732, 39.979947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phj-rrk", "Name": "Sunny Side Breakfast & Lunch", "Category": "Restaurants and Other Eating Places", "Address": "7706 Ogontz Ave", "LATITUDE": 40.071002, "LONGITUDE": -75.157739, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 35.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 21.0, "Total Spend": 1512.0, "Total Transactions": 63.0, "Total Customers": 30.0, "Median Spend per Transaction": 19.3, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157739, 40.071002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1105 N 63rd St # 09", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 134.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 6.0, "Total Spend": 10742.0, "Total Transactions": 551.0, "Total Customers": 336.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 22.92 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-rc5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2545 Aramingo Ave Ste 80", "LATITUDE": 39.977844, "LONGITUDE": -75.118479, "DATE_RANGE_START": 2022, "Total Visits": 479.0, "Total Visitors": 361.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 3.0, "Total Spend": 23550.0, "Total Transactions": 1105.0, "Total Customers": 645.0, "Median Spend per Transaction": 13.82, "Median Spend per Customer": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.118479, 39.977844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "2383 Cottman Ave Ste 38B", "LATITUDE": 40.046821, "LONGITUDE": -75.055507, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 77.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 8.0, "Total Spend": 2386.0, "Total Transactions": 61.0, "Total Customers": 38.0, "Median Spend per Transaction": 23.98, "Median Spend per Customer": 31.49 }, "geometry": { "type": "Point", "coordinates": [ -75.055507, 40.046821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-p7q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1955 W Hunting Park Ave", "LATITUDE": 40.01382, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 61.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 2.0, "Total Spend": 532.0, "Total Transactions": 75.0, "Total Customers": 64.0, "Median Spend per Transaction": 5.42, "Median Spend per Customer": 6.92 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 40.01382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmb-8sq", "Name": "South Fellini", "Category": "Clothing Stores", "Address": "1100 Market St", "LATITUDE": 39.951564, "LONGITUDE": -75.158766, "DATE_RANGE_START": 2022, "Total Visits": 8209.0, "Total Visitors": 6230.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 13.0, "Total Spend": 1977.0, "Total Transactions": 40.0, "Total Customers": 24.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 51.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158766, 39.951564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "180 W Duncannon Ave", "LATITUDE": 40.029081, "LONGITUDE": -75.125232, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 192.0, "POI_CBG": 421010286001.0, "Median Dwell Time": 8.0, "Total Spend": 19136.0, "Total Transactions": 395.0, "Total Customers": 291.0, "Median Spend per Transaction": 31.31, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.125232, 40.029081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22h@628-pmb-7yv", "Name": "Sweet As Fudge Candy Shoppe", "Category": "Specialty Food Stores", "Address": "12th & Arch St Reading Terminal Market", "LATITUDE": 39.954075, "LONGITUDE": -75.15933, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 71.0, "Total Spend": 3078.0, "Total Transactions": 225.0, "Total Customers": 122.0, "Median Spend per Transaction": 10.37, "Median Spend per Customer": 19.19 }, "geometry": { "type": "Point", "coordinates": [ -75.15933, 39.954075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "Name": "Beer Express", "Category": "Beer, Wine, and Liquor Stores", "Address": "11718 Bustleton Ave", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2022, "Total Visits": 524.0, "Total Visitors": 413.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 2.0, "Total Spend": 19415.0, "Total Transactions": 624.0, "Total Customers": 221.0, "Median Spend per Transaction": 26.34, "Median Spend per Customer": 69.54 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1240 W Erie Ave", "LATITUDE": 40.004616, "LONGITUDE": -75.104425, "DATE_RANGE_START": 2022, "Total Visits": 253.0, "Total Visitors": 160.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 6.0, "Total Spend": 187.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 21.9, "Median Spend per Customer": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.104425, 40.004616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvw-9pv", "Name": "52nd Convenience Store", "Category": "Grocery Stores", "Address": "204 N 52nd St", "LATITUDE": 39.963376, "LONGITUDE": -75.224566, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 7.0, "POI_CBG": 421010093005.0, "Median Dwell Time": 512.0, "Total Spend": 1714.0, "Total Transactions": 117.0, "Total Customers": 63.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224566, 39.963376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "Name": "Trattoria Carina", "Category": "Restaurants and Other Eating Places", "Address": "2201 Spruce St", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010008011.0, "Median Dwell Time": 31.0, "Total Spend": 3808.0, "Total Transactions": 35.0, "Total Customers": 23.0, "Median Spend per Transaction": 107.22, "Median Spend per Customer": 117.96 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "Name": "Reyes Food Market", "Category": "Grocery Stores", "Address": "6161 Chestnut St", "LATITUDE": 39.961179, "LONGITUDE": -75.244847, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 21.0, "POI_CBG": 421010083011.0, "Median Dwell Time": 3.0, "Total Spend": 2641.0, "Total Transactions": 338.0, "Total Customers": 73.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 21.41 }, "geometry": { "type": "Point", "coordinates": [ -75.244847, 39.961179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "4356 Main St", "LATITUDE": 40.025386, "LONGITUDE": -75.223869, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 10.0, "Total Spend": 1657.0, "Total Transactions": 49.0, "Total Customers": 23.0, "Median Spend per Transaction": 32.46, "Median Spend per Customer": 64.76 }, "geometry": { "type": "Point", "coordinates": [ -75.223869, 40.025386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pp5-k4v", "Name": "Ho Le Chan", "Category": "Restaurants and Other Eating Places", "Address": "2344 E Clearfield St", "LATITUDE": 39.987263, "LONGITUDE": -75.109046, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010179002.0, "Median Dwell Time": 1.0, "Total Spend": 1699.0, "Total Transactions": 31.0, "Total Customers": 12.0, "Median Spend per Transaction": 53.75, "Median Spend per Customer": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109046, 39.987263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgf-6zf", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "4034 Lancaster Ave", "LATITUDE": 39.963777, "LONGITUDE": -75.203645, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 28.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 2.0, "Total Spend": 1683.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 110.0, "Median Spend per Customer": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.203645, 39.963777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pj4-qj9", "Name": "Peralta Beer Distributor", "Category": "Beer, Wine, and Liquor Stores", "Address": "3654 N 7th St", "LATITUDE": 40.007458, "LONGITUDE": -75.14105, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 122.0, "POI_CBG": 421010199002.0, "Median Dwell Time": 105.0, "Total Spend": 150.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 43.0, "Median Spend per Customer": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14105, 40.007458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-7bk", "Name": "VIP Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "1312 Walnut St # 1314", "LATITUDE": 39.94892, "LONGITUDE": -75.162809, "DATE_RANGE_START": 2022, "Total Visits": 375.0, "Total Visitors": 244.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 119.0, "Total Spend": 49963.0, "Total Transactions": 3077.0, "Total Customers": 835.0, "Median Spend per Transaction": 13.35, "Median Spend per Customer": 31.24 }, "geometry": { "type": "Point", "coordinates": [ -75.162809, 39.94892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-ckf", "Name": "Tran Beer Dist", "Category": "Beer, Wine, and Liquor Stores", "Address": "1616 W Passyunk Ave", "LATITUDE": 39.924541, "LONGITUDE": -75.173565, "DATE_RANGE_START": 2022, "Total Visits": 280.0, "Total Visitors": 179.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 36.0, "Total Spend": 1805.0, "Total Transactions": 73.0, "Total Customers": 31.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173565, 39.924541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5214 Baltimore Ave # 30", "LATITUDE": 39.947336, "LONGITUDE": -75.228833, "DATE_RANGE_START": 2022, "Total Visits": 343.0, "Total Visitors": 265.0, "POI_CBG": 421010073004.0, "Median Dwell Time": 4.0, "Total Spend": 17062.0, "Total Transactions": 869.0, "Total Customers": 519.0, "Median Spend per Transaction": 13.91, "Median Spend per Customer": 20.32 }, "geometry": { "type": "Point", "coordinates": [ -75.228833, 39.947336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w49", "Name": "The Children's Place", "Category": "Clothing Stores", "Address": "1575 Franklin Mills Cir", "LATITUDE": 40.087614, "LONGITUDE": -74.96103, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 249.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 197.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 56.68, "Median Spend per Customer": 56.68 }, "geometry": { "type": "Point", "coordinates": [ -74.96103, 40.087614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-92k", "Name": "Kate Spade", "Category": "Clothing Stores", "Address": "901 Market St Unit 1065", "LATITUDE": 39.952238, "LONGITUDE": -75.155945, "DATE_RANGE_START": 2022, "Total Visits": 564.0, "Total Visitors": 493.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 11.0, "Total Spend": 6551.0, "Total Transactions": 57.0, "Total Customers": 57.0, "Median Spend per Transaction": 112.32, "Median Spend per Customer": 112.32 }, "geometry": { "type": "Point", "coordinates": [ -75.155945, 39.952238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "Name": "Shoe Carnival", "Category": "Shoe Stores", "Address": "2135 Cottman Ave", "LATITUDE": 40.049924, "LONGITUDE": -75.062397, "DATE_RANGE_START": 2022, "Total Visits": 556.0, "Total Visitors": 498.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 12.0, "Total Spend": 9881.0, "Total Transactions": 160.0, "Total Customers": 129.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 59.98 }, "geometry": { "type": "Point", "coordinates": [ -75.062397, 40.049924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmf-j5f", "Name": "Lagos", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1735 Walnut St", "LATITUDE": 39.950375, "LONGITUDE": -75.170461, "DATE_RANGE_START": 2022, "Total Visits": 2801.0, "Total Visitors": 2228.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 13.0, "Total Spend": 11575.0, "Total Transactions": 19.0, "Total Customers": 12.0, "Median Spend per Transaction": 908.38, "Median Spend per Customer": 600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170461, 39.950375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3366 Grant Ave", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2022, "Total Visits": 1204.0, "Total Visitors": 768.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 6.0, "Total Spend": 127.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 6.75 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "Name": "Dollar Mart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4902 Baltimore Ave", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2022, "Total Visits": 436.0, "Total Visitors": 321.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 16.0, "Total Spend": 3244.0, "Total Transactions": 129.0, "Total Customers": 61.0, "Median Spend per Transaction": 11.46, "Median Spend per Customer": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p74-wzf", "Name": "Vista Auto Group", "Category": "Automobile Dealers", "Address": "7418 Frankford Ave", "LATITUDE": 40.038451, "LONGITUDE": -75.03703, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 45.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 60.0, "Total Spend": 9059.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 1300.0, "Median Spend per Customer": 2600.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03703, 40.038451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7236 Germantown Ave # 40", "LATITUDE": 40.060844, "LONGITUDE": -75.192031, "DATE_RANGE_START": 2022, "Total Visits": 667.0, "Total Visitors": 503.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 3.0, "Total Spend": 31230.0, "Total Transactions": 2561.0, "Total Customers": 1462.0, "Median Spend per Transaction": 8.68, "Median Spend per Customer": 11.72 }, "geometry": { "type": "Point", "coordinates": [ -75.192031, 40.060844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvz-2p9", "Name": "Chestnut Deli", "Category": "Grocery Stores", "Address": "4630 Chestnut St", "LATITUDE": 39.956923, "LONGITUDE": -75.214531, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 5.0, "Total Spend": 850.0, "Total Transactions": 31.0, "Total Customers": 16.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 62.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214531, 39.956923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2014 S Broad St", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2022, "Total Visits": 822.0, "Total Visitors": 514.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 7.0, "Total Spend": 1978.0, "Total Transactions": 112.0, "Total Customers": 82.0, "Median Spend per Transaction": 15.45, "Median Spend per Customer": 17.41 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1046 Market St", "LATITUDE": 39.951447, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2022, "Total Visits": 751.0, "Total Visitors": 627.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 13.0, "Total Spend": 22474.0, "Total Transactions": 1343.0, "Total Customers": 1004.0, "Median Spend per Transaction": 9.16, "Median Spend per Customer": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.951447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "Name": "Express Fuel", "Category": "Gasoline Stations", "Address": "5201 Oxford Ave", "LATITUDE": 40.026572, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2022, "Total Visits": 267.0, "Total Visitors": 181.0, "POI_CBG": 421010302004.0, "Median Dwell Time": 3.0, "Total Spend": 59720.0, "Total Transactions": 2439.0, "Total Customers": 591.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-28v", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "780 Adams Ave", "LATITUDE": 40.030475, "LONGITUDE": -75.104415, "DATE_RANGE_START": 2022, "Total Visits": 1646.0, "Total Visitors": 1227.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 4.0, "Total Spend": 556.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 30.12, "Median Spend per Customer": 30.12 }, "geometry": { "type": "Point", "coordinates": [ -75.104415, 40.030475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-y7q", "Name": "Chu Shang Spicy 厨尚麻辣", "Category": "Restaurants and Other Eating Places", "Address": "925 Arch St", "LATITUDE": 39.95387, "LONGITUDE": -75.155752, "DATE_RANGE_START": 2022, "Total Visits": 362.0, "Total Visitors": 294.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 42.0, "Total Spend": 878.0, "Total Transactions": 19.0, "Total Customers": 7.0, "Median Spend per Transaction": 33.05, "Median Spend per Customer": 114.53 }, "geometry": { "type": "Point", "coordinates": [ -75.155752, 39.95387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfz-bx5", "Name": "Manayunk Tavern", "Category": "Restaurants and Other Eating Places", "Address": "4247 Main St", "LATITUDE": 40.024589, "LONGITUDE": -75.221155, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 89.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 70.0, "Total Spend": 9294.0, "Total Transactions": 289.0, "Total Customers": 127.0, "Median Spend per Transaction": 25.22, "Median Spend per Customer": 60.44 }, "geometry": { "type": "Point", "coordinates": [ -75.221155, 40.024589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-5pv", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2703 E Clearfield St", "LATITUDE": 39.982882, "LONGITUDE": -75.10466, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 24.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 576.0, "Total Spend": 2200.0, "Total Transactions": 103.0, "Total Customers": 51.0, "Median Spend per Transaction": 15.78, "Median Spend per Customer": 33.02 }, "geometry": { "type": "Point", "coordinates": [ -75.10466, 39.982882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-y5f", "Name": "Mineralistic", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "319 South St", "LATITUDE": 39.941629, "LONGITUDE": -75.148231, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 1.0, "Total Spend": 3598.0, "Total Transactions": 68.0, "Total Customers": 31.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 71.28 }, "geometry": { "type": "Point", "coordinates": [ -75.148231, 39.941629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjj-wzf", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9101 Ridge Ave # 15", "LATITUDE": 40.073365, "LONGITUDE": -75.241949, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 98.0, "POI_CBG": 421010384001.0, "Median Dwell Time": 106.0, "Total Spend": 12150.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 179.18, "Median Spend per Customer": 486.65 }, "geometry": { "type": "Point", "coordinates": [ -75.241949, 40.073365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "929 South St", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2022, "Total Visits": 1357.0, "Total Visitors": 829.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 14.0, "Total Spend": 95474.0, "Total Transactions": 2178.0, "Total Customers": 960.0, "Median Spend per Transaction": 28.61, "Median Spend per Customer": 51.64 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-jgk", "Name": "AM Food Market", "Category": "Grocery Stores", "Address": "1200 N 52nd St", "LATITUDE": 39.971594, "LONGITUDE": -75.225601, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 251.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 1.0, "Total Spend": 1511.0, "Total Transactions": 159.0, "Total Customers": 44.0, "Median Spend per Transaction": 8.99, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225601, 39.971594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-6tv", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "2901 Abbottsford Ave", "LATITUDE": 40.015035, "LONGITUDE": -75.178463, "DATE_RANGE_START": 2022, "Total Visits": 782.0, "Total Visitors": 643.0, "POI_CBG": 421010206001.0, "Median Dwell Time": 3.0, "Total Spend": 642.0, "Total Transactions": 23.0, "Total Customers": 19.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178463, 40.015035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm4-k2k", "Name": "Cellular 2000 LLC", "Category": "Electronics and Appliance Stores", "Address": "649 Washington Ave", "LATITUDE": 39.93569, "LONGITUDE": -75.155206, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 42.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 408.0, "Total Spend": 707.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 101.46, "Median Spend per Customer": 202.91 }, "geometry": { "type": "Point", "coordinates": [ -75.155206, 39.93569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-68v", "Name": "The Bike Stop", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "206 S Quince St", "LATITUDE": 39.948357, "LONGITUDE": -75.159979, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 47.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 31.0, "Total Spend": 25265.0, "Total Transactions": 1427.0, "Total Customers": 272.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 53.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159979, 39.948357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgk-psq", "Name": "West Village Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "3901 Conshohocken Ave", "LATITUDE": 40.003325, "LONGITUDE": -75.207238, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 71.0, "POI_CBG": 421010122012.0, "Median Dwell Time": 521.0, "Total Spend": 149.0, "Total Transactions": 23.0, "Total Customers": 9.0, "Median Spend per Transaction": 4.36, "Median Spend per Customer": 8.72 }, "geometry": { "type": "Point", "coordinates": [ -75.207238, 40.003325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7434 Ogontz Ave", "LATITUDE": 40.068237, "LONGITUDE": -75.156911, "DATE_RANGE_START": 2022, "Total Visits": 1481.0, "Total Visitors": 960.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 4.0, "Total Spend": 1469.0, "Total Transactions": 44.0, "Total Customers": 33.0, "Median Spend per Transaction": 30.14, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156911, 40.068237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-b49", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5000 Ogontz Ave", "LATITUDE": 40.030422, "LONGITUDE": -75.153419, "DATE_RANGE_START": 2022, "Total Visits": 941.0, "Total Visitors": 632.0, "POI_CBG": 421010280003.0, "Median Dwell Time": 4.0, "Total Spend": 377.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 17.85, "Median Spend per Customer": 31.58 }, "geometry": { "type": "Point", "coordinates": [ -75.153419, 40.030422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-mrk", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "5200 Market St", "LATITUDE": 39.959821, "LONGITUDE": -75.225314, "DATE_RANGE_START": 2022, "Total Visits": 14863.0, "Total Visitors": 5896.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 41.0, "Total Spend": 3185.0, "Total Transactions": 59.0, "Total Customers": 47.0, "Median Spend per Transaction": 36.49, "Median Spend per Customer": 54.98 }, "geometry": { "type": "Point", "coordinates": [ -75.225314, 39.959821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8445 Frankford Ave Ste C", "LATITUDE": 40.043781, "LONGITUDE": -75.017638, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 143.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 4.0, "Total Spend": 270.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 14.37, "Median Spend per Customer": 14.37 }, "geometry": { "type": "Point", "coordinates": [ -75.017638, 40.043781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgh-cwk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1925 W Allegheny Ave", "LATITUDE": 40.003103, "LONGITUDE": -75.162138, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 71.0, "POI_CBG": 421010202001.0, "Median Dwell Time": 3.0, "Total Spend": 582.0, "Total Transactions": 56.0, "Total Customers": 45.0, "Median Spend per Transaction": 8.18, "Median Spend per Customer": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.162138, 40.003103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pj9-yvz", "Name": "Rose Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "5638 N 5th St", "LATITUDE": 40.037453, "LONGITUDE": -75.130447, "DATE_RANGE_START": 2022, "Total Visits": 885.0, "Total Visitors": 420.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 363.0, "Total Spend": 1552.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 189.0, "Median Spend per Customer": 378.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130447, 40.037453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6zf", "Name": "Royal Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1369 Franklin Mills Cir", "LATITUDE": 40.085942, "LONGITUDE": -74.962636, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 103.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 6986.0, "Total Transactions": 31.0, "Total Customers": 12.0, "Median Spend per Transaction": 83.0, "Median Spend per Customer": 170.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962636, 40.085942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6138 Ridge Ave", "LATITUDE": 40.034271, "LONGITUDE": -75.216406, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 112.0, "POI_CBG": 421010213002.0, "Median Dwell Time": 4.0, "Total Spend": 1922.0, "Total Transactions": 155.0, "Total Customers": 110.0, "Median Spend per Transaction": 9.52, "Median Spend per Customer": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.216406, 40.034271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.038624, "LONGITUDE": -75.106851, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 49.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 3.0, "Total Spend": 7182.0, "Total Transactions": 389.0, "Total Customers": 326.0, "Median Spend per Transaction": 14.66, "Median Spend per Customer": 16.93 }, "geometry": { "type": "Point", "coordinates": [ -75.106851, 40.038624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2043 Chestnut St", "LATITUDE": 39.95261, "LONGITUDE": -75.174957, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 160.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 183.0, "Total Spend": 1104.0, "Total Transactions": 68.0, "Total Customers": 38.0, "Median Spend per Transaction": 14.44, "Median Spend per Customer": 26.81 }, "geometry": { "type": "Point", "coordinates": [ -75.174957, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "Name": "Banana Leaf", "Category": "Restaurants and Other Eating Places", "Address": "1009 Arch St", "LATITUDE": 39.953737, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 155.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 39.0, "Total Spend": 6592.0, "Total Transactions": 181.0, "Total Customers": 105.0, "Median Spend per Transaction": 32.15, "Median Spend per Customer": 47.22 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.953737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-s89", "Name": "Pen and Pencil", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1522 Latimer St", "LATITUDE": 39.948013, "LONGITUDE": -75.167208, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 49.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 3.0, "Total Spend": 6249.0, "Total Transactions": 148.0, "Total Customers": 52.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 107.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167208, 39.948013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmd-rkz", "Name": "Fitler Square Farmers' Market", "Category": "Specialty Food Stores", "Address": "23rd Street And Pine", "LATITUDE": 39.947217, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 56.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 28.0, "Total Spend": 1070.0, "Total Transactions": 40.0, "Total Customers": 23.0, "Median Spend per Transaction": 23.59, "Median Spend per Customer": 36.96 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.947217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2800 Fox St", "LATITUDE": 40.008821, "LONGITUDE": -75.175673, "DATE_RANGE_START": 2022, "Total Visits": 472.0, "Total Visitors": 354.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 13.0, "Total Spend": 1366.0, "Total Transactions": 89.0, "Total Customers": 63.0, "Median Spend per Transaction": 12.92, "Median Spend per Customer": 14.64 }, "geometry": { "type": "Point", "coordinates": [ -75.175673, 40.008821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7b-qpv", "Name": "Alfreds Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "9218 Ashton Rd", "LATITUDE": 40.064373, "LONGITUDE": -75.02133, "DATE_RANGE_START": 2022, "Total Visits": 211.0, "Total Visitors": 159.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 7.0, "Total Spend": 1864.0, "Total Transactions": 64.0, "Total Customers": 12.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 65.98 }, "geometry": { "type": "Point", "coordinates": [ -75.02133, 40.064373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "Name": "3 Brothers Pizza & Pasta", "Category": "Restaurants and Other Eating Places", "Address": "2621 E Ontario St", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 16.0, "POI_CBG": 421010379002.0, "Median Dwell Time": 5.0, "Total Spend": 756.0, "Total Transactions": 37.0, "Total Customers": 23.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 30.12 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2017 S Broad St # 2023", "LATITUDE": 39.924926, "LONGITUDE": -75.169063, "DATE_RANGE_START": 2022, "Total Visits": 991.0, "Total Visitors": 558.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 13.0, "Total Spend": 23111.0, "Total Transactions": 1134.0, "Total Customers": 571.0, "Median Spend per Transaction": 14.49, "Median Spend per Customer": 25.95 }, "geometry": { "type": "Point", "coordinates": [ -75.169063, 39.924926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p75-9vf", "Name": "Ashburner Inn", "Category": "Restaurants and Other Eating Places", "Address": "8400 Torresdale Ave", "LATITUDE": 40.040603, "LONGITUDE": -75.015474, "DATE_RANGE_START": 2022, "Total Visits": 312.0, "Total Visitors": 265.0, "POI_CBG": 421010349003.0, "Median Dwell Time": 81.0, "Total Spend": 4731.0, "Total Transactions": 98.0, "Total Customers": 38.0, "Median Spend per Transaction": 49.3, "Median Spend per Customer": 102.78 }, "geometry": { "type": "Point", "coordinates": [ -75.015474, 40.040603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22b@628-phd-q75", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4160 Monument Rd", "LATITUDE": 40.002688, "LONGITUDE": -75.214249, "DATE_RANGE_START": 2022, "Total Visits": 1854.0, "Total Visitors": 1120.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 11.0, "Total Spend": 5584.0, "Total Transactions": 392.0, "Total Customers": 298.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.214249, 40.002688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-y9z", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "5818 Woodland Ave", "LATITUDE": 39.93105, "LONGITUDE": -75.226248, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 148.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 4.0, "Total Spend": 4821.0, "Total Transactions": 277.0, "Total Customers": 103.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226248, 39.93105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "15500 Bustleton Ave", "LATITUDE": 40.134399, "LONGITUDE": -75.01003, "DATE_RANGE_START": 2022, "Total Visits": 763.0, "Total Visitors": 606.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 4.0, "Total Spend": 4035.0, "Total Transactions": 261.0, "Total Customers": 164.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01003, 40.134399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-ks5", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "5763 N 3rd St", "LATITUDE": 39.95206, "LONGITUDE": -75.145094, "DATE_RANGE_START": 2022, "Total Visits": 216.0, "Total Visitors": 190.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 7.0, "Total Spend": 5391.0, "Total Transactions": 592.0, "Total Customers": 394.0, "Median Spend per Transaction": 7.38, "Median Spend per Customer": 9.94 }, "geometry": { "type": "Point", "coordinates": [ -75.145094, 39.95206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-p9z", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4160 N American St", "LATITUDE": 40.014187, "LONGITUDE": -75.131595, "DATE_RANGE_START": 2022, "Total Visits": 939.0, "Total Visitors": 620.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 4.0, "Total Spend": 891.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 37.26, "Median Spend per Customer": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.131595, 40.014187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-3wk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10950 E Roosevelt Blvd", "LATITUDE": 40.09991, "LONGITUDE": -75.009414, "DATE_RANGE_START": 2022, "Total Visits": 1819.0, "Total Visitors": 1343.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 3.0, "Total Spend": 905.0, "Total Transactions": 28.0, "Total Customers": 19.0, "Median Spend per Transaction": 22.56, "Median Spend per Customer": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.009414, 40.09991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1825 W Oregon Ave # 33", "LATITUDE": 39.91807, "LONGITUDE": -75.17894, "DATE_RANGE_START": 2022, "Total Visits": 2193.0, "Total Visitors": 1246.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 392.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 35.16, "Median Spend per Customer": 60.51 }, "geometry": { "type": "Point", "coordinates": [ -75.17894, 39.91807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pm9-t7q", "Name": "R N Diamonds", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "126 S 8th St", "LATITUDE": 39.948676, "LONGITUDE": -75.154309, "DATE_RANGE_START": 2022, "Total Visits": 1608.0, "Total Visitors": 1221.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 31.0, "Total Spend": 1942.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 152.0, "Median Spend per Customer": 557.44 }, "geometry": { "type": "Point", "coordinates": [ -75.154309, 39.948676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100724, "LONGITUDE": -75.010588, "DATE_RANGE_START": 2022, "Total Visits": 848.0, "Total Visitors": 657.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 11.0, "Total Spend": 5642.0, "Total Transactions": 132.0, "Total Customers": 110.0, "Median Spend per Transaction": 24.91, "Median Spend per Customer": 25.07 }, "geometry": { "type": "Point", "coordinates": [ -75.010588, 40.100724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "Name": "Mulberry Market", "Category": "Grocery Stores", "Address": "236 Arch St", "LATITUDE": 39.951945, "LONGITUDE": -75.144635, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 61.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 22318.0, "Total Transactions": 1115.0, "Total Customers": 312.0, "Median Spend per Transaction": 15.4, "Median Spend per Customer": 42.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144635, 39.951945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "3899 Aramingo Ave", "LATITUDE": 39.996676, "LONGITUDE": -75.089544, "DATE_RANGE_START": 2022, "Total Visits": 681.0, "Total Visitors": 531.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 11.0, "Total Spend": 28114.0, "Total Transactions": 662.0, "Total Customers": 331.0, "Median Spend per Transaction": 21.62, "Median Spend per Customer": 41.24 }, "geometry": { "type": "Point", "coordinates": [ -75.089544, 39.996676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "5901 Wayne Ave", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010238003.0, "Median Dwell Time": null, "Total Spend": 21854.0, "Total Transactions": 2394.0, "Total Customers": 660.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mff", "Name": "Family Food Market", "Category": "Grocery Stores", "Address": "1607 E Erie Ave", "LATITUDE": 40.006057, "LONGITUDE": -75.096664, "DATE_RANGE_START": 2022, "Total Visits": 2204.0, "Total Visitors": 1373.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 1.0, "Total Spend": 2045.0, "Total Transactions": 176.0, "Total Customers": 61.0, "Median Spend per Transaction": 10.14, "Median Spend per Customer": 22.84 }, "geometry": { "type": "Point", "coordinates": [ -75.096664, 40.006057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "Name": "Hong Kong Supermarket", "Category": "Grocery Stores", "Address": "571 Adams Ave Ste 4", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2022, "Total Visits": 554.0, "Total Visitors": 402.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 11.0, "Total Spend": 2897.0, "Total Transactions": 54.0, "Total Customers": 26.0, "Median Spend per Transaction": 43.08, "Median Spend per Customer": 79.06 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "Name": "Garden's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1902 W Girard Ave", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010139003.0, "Median Dwell Time": 4.0, "Total Spend": 1979.0, "Total Transactions": 136.0, "Total Customers": 49.0, "Median Spend per Transaction": 13.64, "Median Spend per Customer": 26.85 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "Name": "Jo-Ann Fabric and Craft Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 226.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 9.0, "Total Spend": 9714.0, "Total Transactions": 254.0, "Total Customers": 206.0, "Median Spend per Transaction": 26.81, "Median Spend per Customer": 33.75 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "35 S 13th St", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2022, "Total Visits": 287.0, "Total Visitors": 178.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 579.0, "Total Spend": 30944.0, "Total Transactions": 2122.0, "Total Customers": 758.0, "Median Spend per Transaction": 11.97, "Median Spend per Customer": 29.38 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1700 Washington Ave", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 145.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 9.0, "Total Spend": 3092.0, "Total Transactions": 315.0, "Total Customers": 204.0, "Median Spend per Transaction": 7.15, "Median Spend per Customer": 8.21 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "Name": "Stargazy", "Category": "Restaurants and Other Eating Places", "Address": "1838 E Passyunk Ave", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010029001.0, "Median Dwell Time": null, "Total Spend": 1104.0, "Total Transactions": 57.0, "Total Customers": 24.0, "Median Spend per Transaction": 12.65, "Median Spend per Customer": 29.77 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-235@628-pmf-jd9", "Name": "The Men's Wearhouse", "Category": "Clothing Stores", "Address": "1624 Chestnut St # 1626", "LATITUDE": 39.951253, "LONGITUDE": -75.168383, "DATE_RANGE_START": 2022, "Total Visits": 826.0, "Total Visitors": 570.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 265.0, "Total Spend": 6595.0, "Total Transactions": 40.0, "Total Customers": 37.0, "Median Spend per Transaction": 189.98, "Median Spend per Customer": 205.19 }, "geometry": { "type": "Point", "coordinates": [ -75.168383, 39.951253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-2kz", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "9169 Roosevelt Blvd", "LATITUDE": 40.075387, "LONGITUDE": -75.03207, "DATE_RANGE_START": 2022, "Total Visits": 902.0, "Total Visitors": 815.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 9.0, "Total Spend": 274.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 78.65, "Median Spend per Customer": 78.65 }, "geometry": { "type": "Point", "coordinates": [ -75.03207, 40.075387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-fs5", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2201 W Oregon Ave", "LATITUDE": 39.919174, "LONGITUDE": -75.184979, "DATE_RANGE_START": 2022, "Total Visits": 486.0, "Total Visitors": 430.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 1410.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 48.68, "Median Spend per Customer": 48.76 }, "geometry": { "type": "Point", "coordinates": [ -75.184979, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pgy-ks5", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "701 E Cathedral Rd", "LATITUDE": 40.064304, "LONGITUDE": -75.236768, "DATE_RANGE_START": 2022, "Total Visits": 1004.0, "Total Visitors": 263.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 51.0, "Total Spend": 13764.0, "Total Transactions": 321.0, "Total Customers": 287.0, "Median Spend per Transaction": 25.9, "Median Spend per Customer": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.236768, 40.064304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "Name": "Grossman Furniture", "Category": "Furniture Stores", "Address": "206 Arch St", "LATITUDE": 39.951777, "LONGITUDE": -75.14359, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 162.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 467.0, "Total Spend": 16410.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 2319.84, "Median Spend per Customer": 4639.68 }, "geometry": { "type": "Point", "coordinates": [ -75.14359, 39.951777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-mx5", "Name": "ALDI", "Category": "Grocery Stores", "Address": "3975 Castor Ave", "LATITUDE": 40.006784, "LONGITUDE": -75.097559, "DATE_RANGE_START": 2022, "Total Visits": 580.0, "Total Visitors": 401.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 6.0, "Total Spend": 561.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 22.05, "Median Spend per Customer": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.097559, 40.006784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "Name": "L'anima", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 17th St", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 1.0, "Total Spend": 836.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 87.44, "Median Spend per Customer": 104.66 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "Name": "Yummy Pho", "Category": "Restaurants and Other Eating Places", "Address": "2012 N Broad St", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 273.0, "Total Spend": 3863.0, "Total Transactions": 188.0, "Total Customers": 82.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-835", "Name": "3J's Food Market", "Category": "Grocery Stores", "Address": "801 N 2nd St", "LATITUDE": 39.963054, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1.0, "Total Spend": 37841.0, "Total Transactions": 2617.0, "Total Customers": 767.0, "Median Spend per Transaction": 11.89, "Median Spend per Customer": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1100 S 10th St", "LATITUDE": 39.936469, "LONGITUDE": -75.160327, "DATE_RANGE_START": 2022, "Total Visits": 1756.0, "Total Visitors": 1312.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 4.0, "Total Spend": 2585.0, "Total Transactions": 51.0, "Total Customers": 47.0, "Median Spend per Transaction": 48.01, "Median Spend per Customer": 50.48 }, "geometry": { "type": "Point", "coordinates": [ -75.160327, 39.936469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dwf-q2k", "Name": "Marathon", "Category": "Gasoline Stations", "Address": "2450 Island Ave", "LATITUDE": 39.913427, "LONGITUDE": -75.243685, "DATE_RANGE_START": 2022, "Total Visits": 308.0, "Total Visitors": 246.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 3.0, "Total Spend": 3196.0, "Total Transactions": 78.0, "Total Customers": 56.0, "Median Spend per Transaction": 42.33, "Median Spend per Customer": 49.21 }, "geometry": { "type": "Point", "coordinates": [ -75.243685, 39.913427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-gzf", "Name": "AnM Gas", "Category": "Gasoline Stations", "Address": "536 W Roosevelt Blvd", "LATITUDE": 40.023031, "LONGITUDE": -75.134802, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 87.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 3.0, "Total Spend": 8987.0, "Total Transactions": 551.0, "Total Customers": 103.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134802, 40.023031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-qpv", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "800 W Erie Ave", "LATITUDE": 40.007797, "LONGITUDE": -75.141965, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010199002.0, "Median Dwell Time": 1.0, "Total Spend": 169.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 24.23, "Median Spend per Customer": 48.45 }, "geometry": { "type": "Point", "coordinates": [ -75.141965, 40.007797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2116 S Columbus Blvd", "LATITUDE": 39.915644, "LONGITUDE": -75.139656, "DATE_RANGE_START": 2022, "Total Visits": 448.0, "Total Visitors": 364.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 1535.0, "Total Transactions": 101.0, "Total Customers": 89.0, "Median Spend per Transaction": 11.59, "Median Spend per Customer": 14.78 }, "geometry": { "type": "Point", "coordinates": [ -75.139656, 39.915644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-y9z", "Name": "The Pet Snobs Boutique", "Category": "Other Miscellaneous Store Retailers", "Address": "606 S 9th St", "LATITUDE": 39.942339, "LONGITUDE": -75.157237, "DATE_RANGE_START": 2022, "Total Visits": 1225.0, "Total Visitors": 791.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 146.0, "Total Spend": 2004.0, "Total Transactions": 16.0, "Total Customers": 5.0, "Median Spend per Transaction": 145.8, "Median Spend per Customer": 189.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157237, 39.942339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj2-7bk", "Name": "Pizza House Express", "Category": "Restaurants and Other Eating Places", "Address": "529 E Allegheny Ave", "LATITUDE": 39.997808, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 51.0, "POI_CBG": 421010177023.0, "Median Dwell Time": 53.0, "Total Spend": 608.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 20.8, "Median Spend per Customer": 41.6 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.997808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-224@628-pmf-j7q", "Name": "Flower Expressions", "Category": "Florists", "Address": "115 S 18th St", "LATITUDE": 39.951224, "LONGITUDE": -75.170326, "DATE_RANGE_START": 2022, "Total Visits": 1946.0, "Total Visitors": 1375.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 230.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.33, "Median Spend per Customer": 7.33 }, "geometry": { "type": "Point", "coordinates": [ -75.170326, 39.951224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-zxq", "Name": "Federal Donuts South Street", "Category": "Restaurants and Other Eating Places", "Address": "540 South St", "LATITUDE": 39.94181, "LONGITUDE": -75.152224, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 108.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 2.0, "Total Spend": 24541.0, "Total Transactions": 1706.0, "Total Customers": 760.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 25.94 }, "geometry": { "type": "Point", "coordinates": [ -75.152224, 39.94181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-pmf-wtv", "Name": "Menagerie", "Category": "Furniture Stores", "Address": "2400 Market St Ste 323", "LATITUDE": 39.953529, "LONGITUDE": -75.179339, "DATE_RANGE_START": 2022, "Total Visits": 3955.0, "Total Visitors": 2878.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 211.0, "Total Spend": 47.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179339, 39.953529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm4-mc5", "Name": "Meat Market El Pueblo", "Category": "Specialty Food Stores", "Address": "1141 S 9th St", "LATITUDE": 39.935181, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 94.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 5.0, "Total Spend": 1492.0, "Total Transactions": 59.0, "Total Customers": 33.0, "Median Spend per Transaction": 22.5, "Median Spend per Customer": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.935181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "Name": "Liberty Time", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2022, "Total Visits": 3983.0, "Total Visitors": 3178.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 5.0, "Total Spend": 1918.0, "Total Transactions": 35.0, "Total Customers": 19.0, "Median Spend per Transaction": 36.18, "Median Spend per Customer": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-d5f", "Name": "Allen Tire & Service", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4410 E Howell St", "LATITUDE": 40.019598, "LONGITUDE": -75.06328, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 17.0, "POI_CBG": 421010319003.0, "Median Dwell Time": 342.0, "Total Spend": 1429.0, "Total Transactions": 14.0, "Total Customers": 5.0, "Median Spend per Transaction": 99.84, "Median Spend per Customer": 388.54 }, "geometry": { "type": "Point", "coordinates": [ -75.06328, 40.019598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pm9-wc5", "Name": "Rebel Taco", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949731, "LONGITUDE": -75.148051, "DATE_RANGE_START": 2022, "Total Visits": 4265.0, "Total Visitors": 3429.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 30.0, "Total Spend": 266.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 12.08, "Median Spend per Customer": 24.16 }, "geometry": { "type": "Point", "coordinates": [ -75.148051, 39.949731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2400 Castor Ave", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 458.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 4.0, "Total Spend": 9302.0, "Total Transactions": 667.0, "Total Customers": 537.0, "Median Spend per Transaction": 12.01, "Median Spend per Customer": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-v75", "Name": "Margherita Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "60 S 2nd St", "LATITUDE": 39.948535, "LONGITUDE": -75.144159, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 75.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 8253.0, "Total Transactions": 742.0, "Total Customers": 279.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954762, "LONGITUDE": -75.202149, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 105.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 20.0, "Total Spend": 7270.0, "Total Transactions": 1094.0, "Total Customers": 521.0, "Median Spend per Transaction": 5.49, "Median Spend per Customer": 8.55 }, "geometry": { "type": "Point", "coordinates": [ -75.202149, 39.954762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dvw-bhq", "Name": "Yummy Diner", "Category": "Restaurants and Other Eating Places", "Address": "34 N 52nd St", "LATITUDE": 39.961114, "LONGITUDE": -75.224901, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 7.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 455.0, "Total Spend": 386.0, "Total Transactions": 30.0, "Total Customers": 16.0, "Median Spend per Transaction": 8.99, "Median Spend per Customer": 16.52 }, "geometry": { "type": "Point", "coordinates": [ -75.224901, 39.961114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "Name": "A Lin Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1942 S 9th St", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010041014.0, "Median Dwell Time": null, "Total Spend": 1248.0, "Total Transactions": 42.0, "Total Customers": 17.0, "Median Spend per Transaction": 24.43, "Median Spend per Customer": 67.25 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "Name": "Palm Tree Market", "Category": "Restaurants and Other Eating Places", "Address": "717 N 2nd St", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 17.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 398.0, "Total Spend": 17423.0, "Total Transactions": 1261.0, "Total Customers": 449.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 26.07 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1924 Fairmount Ave", "LATITUDE": 39.967006, "LONGITUDE": -75.169701, "DATE_RANGE_START": 2022, "Total Visits": 310.0, "Total Visitors": 240.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 6.0, "Total Spend": 45809.0, "Total Transactions": 2850.0, "Total Customers": 1469.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.169701, 39.967006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pvz", "Name": "Fiorella's Sausage", "Category": "Specialty Food Stores", "Address": "817 Christian St", "LATITUDE": 39.939102, "LONGITUDE": -75.156801, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010018002.0, "Median Dwell Time": null, "Total Spend": 4378.0, "Total Transactions": 37.0, "Total Customers": 24.0, "Median Spend per Transaction": 93.5, "Median Spend per Customer": 142.93 }, "geometry": { "type": "Point", "coordinates": [ -75.156801, 39.939102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "263-222@628-pm3-y5f", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1248 S Clarion St", "LATITUDE": 39.934047, "LONGITUDE": -75.166057, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 21.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 93.0, "Total Spend": 477.0, "Total Transactions": 44.0, "Total Customers": 17.0, "Median Spend per Transaction": 8.8, "Median Spend per Customer": 22.04 }, "geometry": { "type": "Point", "coordinates": [ -75.166057, 39.934047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp4-zfz", "Name": "Liberty Gas Station", "Category": "Gasoline Stations", "Address": "101 W Lehigh Ave", "LATITUDE": 39.991196, "LONGITUDE": -75.131119, "DATE_RANGE_START": 2022, "Total Visits": 364.0, "Total Visitors": 254.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 4.0, "Total Spend": 1493.0, "Total Transactions": 59.0, "Total Customers": 28.0, "Median Spend per Transaction": 24.71, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131119, 39.991196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "Name": "El Vez", "Category": "Restaurants and Other Eating Places", "Address": "121 S 13th St", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2022, "Total Visits": 787.0, "Total Visitors": 639.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 44.0, "Total Spend": 148763.0, "Total Transactions": 2030.0, "Total Customers": 1019.0, "Median Spend per Transaction": 60.12, "Median Spend per Customer": 111.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pj4-3qz", "Name": "Crazy Wave", "Category": "Health and Personal Care Stores", "Address": "4229 N Broad St", "LATITUDE": 40.017645, "LONGITUDE": -75.148812, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 57.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 11.0, "Total Spend": 7643.0, "Total Transactions": 251.0, "Total Customers": 117.0, "Median Spend per Transaction": 18.87, "Median Spend per Customer": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 40.017645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "Name": "Crown Deli", "Category": "Restaurants and Other Eating Places", "Address": "3806 Morrell Ave", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2022, "Total Visits": 997.0, "Total Visitors": 690.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 9.0, "Total Spend": 5566.0, "Total Transactions": 199.0, "Total Customers": 66.0, "Median Spend per Transaction": 13.16, "Median Spend per Customer": 52.8 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22n@63s-dw9-7nq", "Name": "Sunglass Hut", "Category": "Health and Personal Care Stores", "Address": "8500 Essington Ave Spc M 22", "LATITUDE": 39.873547, "LONGITUDE": -75.247282, "DATE_RANGE_START": 2022, "Total Visits": 6122.0, "Total Visitors": 5850.0, "POI_CBG": 420459800001.0, "Median Dwell Time": 35.0, "Total Spend": 4843.0, "Total Transactions": 23.0, "Total Customers": 23.0, "Median Spend per Transaction": 220.32, "Median Spend per Customer": 220.32 }, "geometry": { "type": "Point", "coordinates": [ -75.247282, 39.873547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-p9q-hqz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079591, "LONGITUDE": -75.027394, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 73.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 1694.0, "Total Transactions": 98.0, "Total Customers": 82.0, "Median Spend per Transaction": 16.55, "Median Spend per Customer": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.027394, 40.079591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5650 Ridge Ave", "LATITUDE": 40.026583, "LONGITUDE": -75.209516, "DATE_RANGE_START": 2022, "Total Visits": 918.0, "Total Visitors": 697.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 4.0, "Total Spend": 1794.0, "Total Transactions": 47.0, "Total Customers": 38.0, "Median Spend per Transaction": 42.29, "Median Spend per Customer": 46.02 }, "geometry": { "type": "Point", "coordinates": [ -75.209516, 40.026583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "Name": "Burlington", "Category": "Clothing Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.912374, "LONGITUDE": -75.156918, "DATE_RANGE_START": 2022, "Total Visits": 1437.0, "Total Visitors": 1160.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 22.0, "Total Spend": 4571.0, "Total Transactions": 80.0, "Total Customers": 73.0, "Median Spend per Transaction": 42.03, "Median Spend per Customer": 45.02 }, "geometry": { "type": "Point", "coordinates": [ -75.156918, 39.912374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-3wk", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2437 S 24th St", "LATITUDE": 39.920324, "LONGITUDE": -75.186369, "DATE_RANGE_START": 2022, "Total Visits": 228.0, "Total Visitors": 200.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 7.0, "Total Spend": 1286.0, "Total Transactions": 42.0, "Total Customers": 38.0, "Median Spend per Transaction": 22.49, "Median Spend per Customer": 21.99 }, "geometry": { "type": "Point", "coordinates": [ -75.186369, 39.920324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "Name": "Cold Stone Creamery", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978153, "LONGITUDE": -75.119499, "DATE_RANGE_START": 2022, "Total Visits": 228.0, "Total Visitors": 190.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 2.0, "Total Spend": 6078.0, "Total Transactions": 350.0, "Total Customers": 312.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 15.64 }, "geometry": { "type": "Point", "coordinates": [ -75.119499, 39.978153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-xbk", "Name": "Gear N Up", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2326 N Front St", "LATITUDE": 39.985537, "LONGITUDE": -75.132208, "DATE_RANGE_START": 2022, "Total Visits": 11866.0, "Total Visitors": 4392.0, "POI_CBG": 421010163004.0, "Median Dwell Time": 220.0, "Total Spend": 1174.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 73.5, "Median Spend per Customer": 147.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132208, 39.985537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "199 Franklin Mills Blvd Ste A", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2022, "Total Visits": 497.0, "Total Visitors": 404.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 675.0, "Total Transactions": 31.0, "Total Customers": 28.0, "Median Spend per Transaction": 14.01, "Median Spend per Customer": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1032 Pine St", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2022, "Total Visits": 1044.0, "Total Visitors": 749.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 106.0, "Total Spend": 8951.0, "Total Transactions": 301.0, "Total Customers": 174.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-bhq", "Name": "China House II", "Category": "Restaurants and Other Eating Places", "Address": "70th St & Grovers Ave", "LATITUDE": 39.912259, "LONGITUDE": -75.233384, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 19.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 2.0, "Total Spend": 869.0, "Total Transactions": 14.0, "Total Customers": 9.0, "Median Spend per Transaction": 61.77, "Median Spend per Customer": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.233384, 39.912259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pnw-mx5", "Name": "Stump", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "956 N 2nd St", "LATITUDE": 39.96557, "LONGITUDE": -75.14068, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 10.0, "Total Spend": 93.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 26.79, "Median Spend per Customer": 26.79 }, "geometry": { "type": "Point", "coordinates": [ -75.14068, 39.96557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "Name": "Falafel Time", "Category": "Restaurants and Other Eating Places", "Address": "2214 South St", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 449.0, "Total Spend": 284.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phq-2hq", "Name": "Suzy Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "6311 Stenton Ave", "LATITUDE": 40.060068, "LONGITUDE": -75.165918, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 35.0, "POI_CBG": 421010264005.0, "Median Dwell Time": 189.0, "Total Spend": 1291.0, "Total Transactions": 42.0, "Total Customers": 23.0, "Median Spend per Transaction": 19.07, "Median Spend per Customer": 42.06 }, "geometry": { "type": "Point", "coordinates": [ -75.165918, 40.060068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-9mk", "Name": "Bravo Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3748 Germantown Ave", "LATITUDE": 40.010647, "LONGITUDE": -75.151533, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 45.0, "POI_CBG": 421010201021.0, "Median Dwell Time": 1.0, "Total Spend": 2432.0, "Total Transactions": 96.0, "Total Customers": 38.0, "Median Spend per Transaction": 17.94, "Median Spend per Customer": 50.43 }, "geometry": { "type": "Point", "coordinates": [ -75.151533, 40.010647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-wzf", "Name": "Sloane Honda", "Category": "Automobile Dealers", "Address": "9903 Bustleton Ave", "LATITUDE": 40.094883, "LONGITUDE": -75.029846, "DATE_RANGE_START": 2022, "Total Visits": 1460.0, "Total Visitors": 962.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 30.0, "Total Spend": 226.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 64.99, "Median Spend per Customer": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.029846, 40.094883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "7700 City Ave", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 267.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 4.0, "Total Spend": 91.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 8.96, "Median Spend per Customer": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1516 Chestnut St", "LATITUDE": 39.950896, "LONGITUDE": -75.166342, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 92.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 31.0, "Total Spend": 6651.0, "Total Transactions": 542.0, "Total Customers": 397.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166342, 39.950896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-t35", "Name": "Suprema Coffee Roastery", "Category": "Restaurants and Other Eating Places", "Address": "1511 Pine St", "LATITUDE": 39.945926, "LONGITUDE": -75.16704, "DATE_RANGE_START": 2022, "Total Visits": 1787.0, "Total Visitors": 1105.0, "POI_CBG": 421010012021.0, "Median Dwell Time": 66.0, "Total Spend": 148.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 4.75, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.945926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-x89", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "630 W Girard Ave", "LATITUDE": 39.970205, "LONGITUDE": -75.147863, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 251.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 116.0, "Total Spend": 348.0, "Total Transactions": 38.0, "Total Customers": 21.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147863, 39.970205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfv-94v", "Name": "Wild Hand", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "606 Carpenter Ln", "LATITUDE": 40.046119, "LONGITUDE": -75.195912, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 52.0, "POI_CBG": 421010236003.0, "Median Dwell Time": 4.0, "Total Spend": 1012.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 145.17, "Median Spend per Customer": 290.34 }, "geometry": { "type": "Point", "coordinates": [ -75.195912, 40.046119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "1850 E Sedgley Ave", "LATITUDE": 40.002434, "LONGITUDE": -75.100336, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 54.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 1.0, "Total Spend": 67879.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 761.13, "Median Spend per Customer": 765.18 }, "geometry": { "type": "Point", "coordinates": [ -75.100336, 40.002434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "Name": "Jetro Cash & Carry", "Category": "Grocery and Related Product Merchant Wholesalers", "Address": "700 Pattison Ave", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2022, "Total Visits": 2693.0, "Total Visitors": 1927.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 48.0, "Total Spend": 628531.0, "Total Transactions": 770.0, "Total Customers": 195.0, "Median Spend per Transaction": 473.7, "Median Spend per Customer": 837.71 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3900 N Broad St", "LATITUDE": 40.012783, "LONGITUDE": -75.150904, "DATE_RANGE_START": 2022, "Total Visits": 530.0, "Total Visitors": 369.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 10.0, "Total Spend": 18692.0, "Total Transactions": 341.0, "Total Customers": 237.0, "Median Spend per Transaction": 33.72, "Median Spend per Customer": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.150904, 40.012783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "Name": "Wilson's Market", "Category": "Grocery Stores", "Address": "1337 W Olney Ave", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 183.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 5.0, "Total Spend": 917.0, "Total Transactions": 61.0, "Total Customers": 21.0, "Median Spend per Transaction": 13.11, "Median Spend per Customer": 36.08 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wkz", "Name": "Xenos Candy 'N' Gifts", "Category": "Specialty Food Stores", "Address": "231 Chestnut St", "LATITUDE": 39.948713, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2022, "Total Visits": 3399.0, "Total Visitors": 2453.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 70.0, "Total Spend": 146.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.36, "Median Spend per Customer": 24.79 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.948713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9280 Krewstown Rd", "LATITUDE": 40.085969, "LONGITUDE": -75.04681, "DATE_RANGE_START": 2022, "Total Visits": 514.0, "Total Visitors": 362.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 6.0, "Total Spend": 12244.0, "Total Transactions": 676.0, "Total Customers": 336.0, "Median Spend per Transaction": 11.2, "Median Spend per Customer": 20.44 }, "geometry": { "type": "Point", "coordinates": [ -75.04681, 40.085969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9q-jsq", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "9801 Roosevelt Blvd Ste 6", "LATITUDE": 40.084384, "LONGITUDE": -75.022786, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 131.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 17.0, "Total Spend": 569.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 59.99, "Median Spend per Customer": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.022786, 40.084384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5814 Woodland Ave", "LATITUDE": 39.931302, "LONGITUDE": -75.225599, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 141.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 3.0, "Total Spend": 912.0, "Total Transactions": 112.0, "Total Customers": 110.0, "Median Spend per Transaction": 7.34, "Median Spend per Customer": 7.63 }, "geometry": { "type": "Point", "coordinates": [ -75.225599, 39.931302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p9w-4sq", "Name": "Victoria Flower", "Category": "Florists", "Address": "10869 Bustleton Ave", "LATITUDE": 40.110694, "LONGITUDE": -75.023832, "DATE_RANGE_START": 2022, "Total Visits": 249.0, "Total Visitors": 239.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 3.0, "Total Spend": 683.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 74.52, "Median Spend per Customer": 149.04 }, "geometry": { "type": "Point", "coordinates": [ -75.023832, 40.110694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.067993, "LONGITUDE": -75.198422, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 94.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 6.0, "Total Spend": 10067.0, "Total Transactions": 239.0, "Total Customers": 207.0, "Median Spend per Transaction": 24.37, "Median Spend per Customer": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.198422, 40.067993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "Name": "Lets Grub", "Category": "Restaurants and Other Eating Places", "Address": "4040 Lancaster Ave", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 4.0, "Total Spend": 2037.0, "Total Transactions": 113.0, "Total Customers": 45.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 34.92 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pj8-f9f", "Name": "Oxford Restaurant Breakfast and Lunch", "Category": "Restaurants and Other Eating Places", "Address": "5349 Oxford Ave", "LATITUDE": 40.029429, "LONGITUDE": -75.084771, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 9.0, "Total Spend": 1446.0, "Total Transactions": 9.0, "Total Customers": 3.0, "Median Spend per Transaction": 201.99, "Median Spend per Customer": 414.98 }, "geometry": { "type": "Point", "coordinates": [ -75.084771, 40.029429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "Name": "Mr Wings", "Category": "Restaurants and Other Eating Places", "Address": "500 W Oregon Ave", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 35.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 2.0, "Total Spend": 3105.0, "Total Transactions": 112.0, "Total Customers": 51.0, "Median Spend per Transaction": 24.28, "Median Spend per Customer": 49.08 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "Name": "Dollar Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7578 Haverford Ave", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2022, "Total Visits": 326.0, "Total Visitors": 207.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 11.0, "Total Spend": 10411.0, "Total Transactions": 540.0, "Total Customers": 214.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 29.22 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvq-dvz", "Name": "Third Auto Sales Inc", "Category": "Automobile Dealers", "Address": "5347 Whitby Ave", "LATITUDE": 39.94602, "LONGITUDE": -75.229173, "DATE_RANGE_START": 2022, "Total Visits": 267.0, "Total Visitors": 181.0, "POI_CBG": 421010072002.0, "Median Dwell Time": 184.0, "Total Spend": 1330.0, "Total Transactions": 47.0, "Total Customers": 23.0, "Median Spend per Transaction": 25.75, "Median Spend per Customer": 44.05 }, "geometry": { "type": "Point", "coordinates": [ -75.229173, 39.94602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-2ff", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6200 Stenton Ave", "LATITUDE": 40.057857, "LONGITUDE": -75.164182, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 54.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 4.0, "Total Spend": 4462.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 145.23, "Median Spend per Customer": 184.07 }, "geometry": { "type": "Point", "coordinates": [ -75.164182, 40.057857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2726 S Front St", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 171.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 9.0, "Total Spend": 8320.0, "Total Transactions": 181.0, "Total Customers": 145.0, "Median Spend per Transaction": 20.51, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-wzf", "Name": "Firestone Complete Auto Care", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9602 Bustleton Ave", "LATITUDE": 40.087378, "LONGITUDE": -75.035984, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 57.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 3.0, "Total Spend": 8635.0, "Total Transactions": 35.0, "Total Customers": 26.0, "Median Spend per Transaction": 107.34, "Median Spend per Customer": 115.55 }, "geometry": { "type": "Point", "coordinates": [ -75.035984, 40.087378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm5-fj9", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "80 E Oregon Ave", "LATITUDE": 39.913638, "LONGITUDE": -75.149864, "DATE_RANGE_START": 2022, "Total Visits": 554.0, "Total Visitors": 479.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 3.0, "Total Spend": 1187.0, "Total Transactions": 44.0, "Total Customers": 23.0, "Median Spend per Transaction": 28.3, "Median Spend per Customer": 56.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149864, 39.913638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pjf-kvf", "Name": "Bijoux Fine Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "8615 Germantown Ave", "LATITUDE": 40.076914, "LONGITUDE": -75.207677, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 56.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 54.0, "Total Spend": 1148.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 164.7, "Median Spend per Customer": 329.4 }, "geometry": { "type": "Point", "coordinates": [ -75.207677, 40.076914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2327 Cottman Ave", "LATITUDE": 40.048258, "LONGITUDE": -75.056175, "DATE_RANGE_START": 2022, "Total Visits": 296.0, "Total Visitors": 254.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 14.0, "Total Spend": 11241.0, "Total Transactions": 279.0, "Total Customers": 179.0, "Median Spend per Transaction": 27.98, "Median Spend per Customer": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.056175, 40.048258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "42 W Chelten Ave", "LATITUDE": 40.034612, "LONGITUDE": -75.175438, "DATE_RANGE_START": 2022, "Total Visits": 1185.0, "Total Visitors": 772.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 24.0, "Total Spend": 625.0, "Total Transactions": 68.0, "Total Customers": 56.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -75.175438, 40.034612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pmb-kzz", "Name": "Philadelphia Independents", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "35 N 3rd St", "LATITUDE": 39.951299, "LONGITUDE": -75.145296, "DATE_RANGE_START": 2022, "Total Visits": 552.0, "Total Visitors": 378.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 79.0, "Total Spend": 649.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145296, 39.951299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "237 S 10th St", "LATITUDE": 39.947166, "LONGITUDE": -75.157345, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 47.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 233.0, "Total Spend": 2478.0, "Total Transactions": 89.0, "Total Customers": 51.0, "Median Spend per Transaction": 22.93, "Median Spend per Customer": 36.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157345, 39.947166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-75z", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "4090 Lancaster Ave", "LATITUDE": 39.964664, "LONGITUDE": -75.205269, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 2.0, "Total Spend": 717.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 28.01, "Median Spend per Customer": 28.94 }, "geometry": { "type": "Point", "coordinates": [ -75.205269, 39.964664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-sbk", "Name": "Howl At The Moon Philadelphia", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "258 S 15th St", "LATITUDE": 39.947729, "LONGITUDE": -75.166598, "DATE_RANGE_START": 2022, "Total Visits": 289.0, "Total Visitors": 218.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 4.0, "Total Spend": 29849.0, "Total Transactions": 1317.0, "Total Customers": 436.0, "Median Spend per Transaction": 14.75, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166598, 39.947729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "Name": "Mac Mart Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "104 S 18th St", "LATITUDE": 39.951438, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 242.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 1865.0, "Total Transactions": 131.0, "Total Customers": 66.0, "Median Spend per Transaction": 12.64, "Median Spend per Customer": 24.88 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "Name": "Ruth's Chris Steak House", "Category": "Restaurants and Other Eating Places", "Address": "1800 Market St", "LATITUDE": 39.952962, "LONGITUDE": -75.170263, "DATE_RANGE_START": 2022, "Total Visits": 1976.0, "Total Visitors": 1160.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 402.0, "Total Spend": 23805.0, "Total Transactions": 108.0, "Total Customers": 91.0, "Median Spend per Transaction": 174.11, "Median Spend per Customer": 195.65 }, "geometry": { "type": "Point", "coordinates": [ -75.170263, 39.952962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "Name": "Axis Pizza", "Category": "Restaurants and Other Eating Places", "Address": "20 S 36th St", "LATITUDE": 39.95523, "LONGITUDE": -75.194652, "DATE_RANGE_START": 2022, "Total Visits": 906.0, "Total Visitors": 423.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 290.0, "Total Spend": 5549.0, "Total Transactions": 352.0, "Total Customers": 125.0, "Median Spend per Transaction": 11.83, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194652, 39.95523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-85f", "Name": "North Catholic Book Store", "Category": "Clothing Stores", "Address": "2539 E Clearfield St", "LATITUDE": 39.984977, "LONGITUDE": -75.106527, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 103.0, "POI_CBG": 421010180021.0, "Median Dwell Time": 10.0, "Total Spend": 1461.0, "Total Transactions": 110.0, "Total Customers": 61.0, "Median Spend per Transaction": 8.62, "Median Spend per Customer": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.106527, 39.984977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pm8-pgk", "Name": "Kasumi Sushi", "Category": "Restaurants and Other Eating Places", "Address": "2201 Penrose Ave Ste 3", "LATITUDE": 39.910232, "LONGITUDE": -75.186866, "DATE_RANGE_START": 2022, "Total Visits": 1362.0, "Total Visitors": 742.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 3.0, "Total Spend": 4054.0, "Total Transactions": 136.0, "Total Customers": 56.0, "Median Spend per Transaction": 21.15, "Median Spend per Customer": 55.19 }, "geometry": { "type": "Point", "coordinates": [ -75.186866, 39.910232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7bk", "Name": "Attico Rooftop Lounge", "Category": "Restaurants and Other Eating Places", "Address": "219 S Broad St", "LATITUDE": 39.948632, "LONGITUDE": -75.164198, "DATE_RANGE_START": 2022, "Total Visits": 6721.0, "Total Visitors": 4338.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 157.0, "Total Spend": 14130.0, "Total Transactions": 153.0, "Total Customers": 80.0, "Median Spend per Transaction": 84.94, "Median Spend per Customer": 155.93 }, "geometry": { "type": "Point", "coordinates": [ -75.164198, 39.948632 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm9-y9z", "Name": "Lil' Pop Shop", "Category": "Restaurants and Other Eating Places", "Address": "534 S 4th St", "LATITUDE": 39.94178, "LONGITUDE": -75.149245, "DATE_RANGE_START": 2022, "Total Visits": 949.0, "Total Visitors": 864.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 11.0, "Total Spend": 2254.0, "Total Transactions": 237.0, "Total Customers": 138.0, "Median Spend per Transaction": 8.99, "Median Spend per Customer": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.94178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-zpv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4322 Market St", "LATITUDE": 39.957784, "LONGITUDE": -75.209056, "DATE_RANGE_START": 2022, "Total Visits": 291.0, "Total Visitors": 214.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 6.0, "Total Spend": 10502.0, "Total Transactions": 606.0, "Total Customers": 474.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 17.69 }, "geometry": { "type": "Point", "coordinates": [ -75.209056, 39.957784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "7350 Oxford Ave", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 101.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 2.0, "Total Spend": 1129.0, "Total Transactions": 54.0, "Total Customers": 44.0, "Median Spend per Transaction": 16.18, "Median Spend per Customer": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "1900 N 5th St", "LATITUDE": 39.980937, "LONGITUDE": -75.144152, "DATE_RANGE_START": 2022, "Total Visits": 1591.0, "Total Visitors": 990.0, "POI_CBG": 421010156002.0, "Median Dwell Time": 19.0, "Total Spend": 18204.0, "Total Transactions": 326.0, "Total Customers": 152.0, "Median Spend per Transaction": 35.79, "Median Spend per Customer": 93.82 }, "geometry": { "type": "Point", "coordinates": [ -75.144152, 39.980937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvw-mx5", "Name": "Gaetano's", "Category": "Restaurants and Other Eating Places", "Address": "53rd Market St", "LATITUDE": 39.960076, "LONGITUDE": -75.226758, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 1.0, "Total Spend": 713.0, "Total Transactions": 49.0, "Total Customers": 30.0, "Median Spend per Transaction": 12.63, "Median Spend per Customer": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.226758, 39.960076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1646 N 29th St", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 24.0, "POI_CBG": 421010149005.0, "Median Dwell Time": 2.0, "Total Spend": 5162.0, "Total Transactions": 453.0, "Total Customers": 145.0, "Median Spend per Transaction": 9.38, "Median Spend per Customer": 25.78 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8d-m8v", "Name": "Quicky Mart Express", "Category": "Grocery Stores", "Address": "4346 Frankford Ave", "LATITUDE": 40.012599, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 68.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 7.0, "Total Spend": 1238.0, "Total Transactions": 66.0, "Total Customers": 14.0, "Median Spend per Transaction": 9.13, "Median Spend per Customer": 54.41 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.012599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "Name": "El Taco", "Category": "Restaurants and Other Eating Places", "Address": "3233 Powelton Ave", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 12.0, "Total Spend": 7938.0, "Total Transactions": 437.0, "Total Customers": 209.0, "Median Spend per Transaction": 15.66, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pj8-dqf", "Name": "Oxford Circle Deli", "Category": "Restaurants and Other Eating Places", "Address": "5759 Oxford Ave", "LATITUDE": 40.033593, "LONGITUDE": -75.085029, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 33.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 4.0, "Total Spend": 3909.0, "Total Transactions": 122.0, "Total Customers": 54.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.085029, 40.033593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p86-hbk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7941 Oxford Ave", "LATITUDE": 40.075694, "LONGITUDE": -75.084798, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 139.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 3.0, "Total Spend": 5678.0, "Total Transactions": 286.0, "Total Customers": 214.0, "Median Spend per Transaction": 15.65, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084798, 40.075694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7x-5zz", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2118 Cottman Ave Ste 4", "LATITUDE": 40.048936, "LONGITUDE": -75.06319, "DATE_RANGE_START": 2022, "Total Visits": 265.0, "Total Visitors": 216.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 4.0, "Total Spend": 329.0, "Total Transactions": 23.0, "Total Customers": 17.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -75.06319, 40.048936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "2800 Fox St Ste 110 Unit D", "LATITUDE": 40.008773, "LONGITUDE": -75.176588, "DATE_RANGE_START": 2022, "Total Visits": 639.0, "Total Visitors": 411.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 34.0, "Total Spend": 22596.0, "Total Transactions": 564.0, "Total Customers": 369.0, "Median Spend per Transaction": 27.34, "Median Spend per Customer": 38.22 }, "geometry": { "type": "Point", "coordinates": [ -75.176588, 40.008773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Verree Rd", "LATITUDE": 40.105422, "LONGITUDE": -75.032802, "DATE_RANGE_START": 2022, "Total Visits": 1249.0, "Total Visitors": 822.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 3.0, "Total Spend": 723.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032802, 40.105422 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pp4-jd9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2685 Frankford Ave", "LATITUDE": 39.986516, "LONGITUDE": -75.12253, "DATE_RANGE_START": 2022, "Total Visits": 1089.0, "Total Visitors": 791.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 3.0, "Total Spend": 827.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 28.82, "Median Spend per Customer": 46.94 }, "geometry": { "type": "Point", "coordinates": [ -75.12253, 39.986516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6401 Harbison Ave", "LATITUDE": 40.032146, "LONGITUDE": -75.063064, "DATE_RANGE_START": 2022, "Total Visits": 1105.0, "Total Visitors": 692.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 4.0, "Total Spend": 4677.0, "Total Transactions": 192.0, "Total Customers": 112.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 28.23 }, "geometry": { "type": "Point", "coordinates": [ -75.063064, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2715 S Front St", "LATITUDE": 39.91305, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 124.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 7.0, "Total Spend": 185.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 17.07, "Median Spend per Customer": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.91305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste F6", "LATITUDE": 39.952029, "LONGITUDE": -75.167533, "DATE_RANGE_START": 2022, "Total Visits": 958.0, "Total Visitors": 631.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 59.0, "Total Spend": 6832.0, "Total Transactions": 594.0, "Total Customers": 455.0, "Median Spend per Transaction": 11.02, "Median Spend per Customer": 12.21 }, "geometry": { "type": "Point", "coordinates": [ -75.167533, 39.952029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@63s-dw9-7kf", "Name": "Earl of Sandwich", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.877092, "LONGITUDE": -75.240554, "DATE_RANGE_START": 2022, "Total Visits": 226042.0, "Total Visitors": 145993.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 54.0, "Total Spend": 626.0, "Total Transactions": 37.0, "Total Customers": 35.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.240554, 39.877092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6608 Frankford Ave", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2022, "Total Visits": 533.0, "Total Visitors": 267.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 3.0, "Total Spend": 4636.0, "Total Transactions": 551.0, "Total Customers": 260.0, "Median Spend per Transaction": 7.2, "Median Spend per Customer": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-dvz", "Name": "Lighthouse Thrift Shop", "Category": "Used Merchandise Stores", "Address": "6515 Rising Sun Ave", "LATITUDE": 40.051415, "LONGITUDE": -75.093615, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 35.0, "POI_CBG": 421010306007.0, "Median Dwell Time": 61.0, "Total Spend": 188.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 27.02, "Median Spend per Customer": 54.03 }, "geometry": { "type": "Point", "coordinates": [ -75.093615, 40.051415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-bp9", "Name": "Live Casino & Hotel Philadelphia", "Category": "Traveler Accommodation", "Address": "900 Packer Ave", "LATITUDE": 39.909524, "LONGITUDE": -75.164712, "DATE_RANGE_START": 2022, "Total Visits": 6842.0, "Total Visitors": 3409.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 120.0, "Total Spend": 6011.0, "Total Transactions": 21.0, "Total Customers": 16.0, "Median Spend per Transaction": 254.66, "Median Spend per Customer": 298.88 }, "geometry": { "type": "Point", "coordinates": [ -75.164712, 39.909524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7z-6x5", "Name": "Rising Sun Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6919 Rising Sun Ave", "LATITUDE": 40.056616, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 37.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 23.0, "Total Spend": 346.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.17, "Median Spend per Customer": 20.96 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.056616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "Name": "Fishtown Social", "Category": "Restaurants and Other Eating Places", "Address": "1525 Frankford Ave", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 9.0, "Total Spend": 12397.0, "Total Transactions": 242.0, "Total Customers": 105.0, "Median Spend per Transaction": 40.59, "Median Spend per Customer": 83.17 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-28v", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "9159 Roosevelt Blvd", "LATITUDE": 40.074524, "LONGITUDE": -75.032955, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 42.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 871.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 48.99, "Median Spend per Customer": 48.99 }, "geometry": { "type": "Point", "coordinates": [ -75.032955, 40.074524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3541 Aramingo Ave", "LATITUDE": 39.992778, "LONGITUDE": -75.097644, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 115.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 274.0, "Total Spend": 8090.0, "Total Transactions": 418.0, "Total Customers": 357.0, "Median Spend per Transaction": 15.64, "Median Spend per Customer": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.097644, 39.992778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm6-gx5", "Name": "King Food", "Category": "Restaurants and Other Eating Places", "Address": "2554 S American St", "LATITUDE": 39.915882, "LONGITUDE": -75.152424, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 20.0, "Total Spend": 105.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152424, 39.915882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-phq-2hq", "Name": "X Mark's the Spot", "Category": "Restaurants and Other Eating Places", "Address": "6364 Stenton Ave", "LATITUDE": 40.060083, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 27.0, "Total Spend": 101.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.2, "Median Spend per Customer": 28.92 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 40.060083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "Name": "New Quality Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "105 E Allegheny Ave", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 23.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 1354.0, "Total Spend": 282.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.58, "Median Spend per Customer": 45.16 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-w6k", "Name": "National Mechanics", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "22 S 3rd St", "LATITUDE": 39.94956, "LONGITUDE": -75.146014, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 117.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 44.0, "Total Spend": 3401.0, "Total Transactions": 63.0, "Total Customers": 33.0, "Median Spend per Transaction": 49.73, "Median Spend per Customer": 96.24 }, "geometry": { "type": "Point", "coordinates": [ -75.146014, 39.94956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-gkz", "Name": "Nifty Fifty's", "Category": "Restaurants and Other Eating Places", "Address": "2491 Grant Ave", "LATITUDE": 40.079457, "LONGITUDE": -75.025402, "DATE_RANGE_START": 2022, "Total Visits": 1333.0, "Total Visitors": 1052.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 32.0, "Total Spend": 5364.0, "Total Transactions": 216.0, "Total Customers": 106.0, "Median Spend per Transaction": 18.72, "Median Spend per Customer": 37.32 }, "geometry": { "type": "Point", "coordinates": [ -75.025402, 40.079457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "Name": "Nifty Fifty's", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 77.0, "POI_CBG": 421010372003.0, "Median Dwell Time": 7.0, "Total Spend": 6244.0, "Total Transactions": 200.0, "Total Customers": 110.0, "Median Spend per Transaction": 29.17, "Median Spend per Customer": 40.69 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8h-5zz", "Name": "Bullseye Darts", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "6917 Torresdale Ave", "LATITUDE": 40.026099, "LONGITUDE": -75.042549, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010325003.0, "Median Dwell Time": null, "Total Spend": 184.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.042549, 40.026099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jvz", "Name": "Thin & Crispy", "Category": "Restaurants and Other Eating Places", "Address": "2563 Trenton Ave", "LATITUDE": 39.98312, "LONGITUDE": -75.123059, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 7.0, "POI_CBG": 421010160004.0, "Median Dwell Time": 140.0, "Total Spend": 828.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 54.27, "Median Spend per Customer": 108.54 }, "geometry": { "type": "Point", "coordinates": [ -75.123059, 39.98312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "Name": "HKS pharmacy", "Category": "Health and Personal Care Stores", "Address": "3357 N Front St", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 10.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 3.0, "Total Spend": 9339.0, "Total Transactions": 517.0, "Total Customers": 233.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 20.34 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "Name": "Luigi's Pizza Fresca", "Category": "Restaurants and Other Eating Places", "Address": "2401 Fairmount Ave", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2022, "Total Visits": 474.0, "Total Visitors": 272.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 469.0, "Total Spend": 1409.0, "Total Transactions": 61.0, "Total Customers": 31.0, "Median Spend per Transaction": 22.54, "Median Spend per Customer": 39.37 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p83-y5f", "Name": "Royal Passage", "Category": "Restaurants and Other Eating Places", "Address": "9309 Krewstown Rd", "LATITUDE": 40.085495, "LONGITUDE": -75.045412, "DATE_RANGE_START": 2022, "Total Visits": 153.0, "Total Visitors": 110.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 123.0, "Total Spend": 11403.0, "Total Transactions": 9.0, "Total Customers": 3.0, "Median Spend per Transaction": 432.0, "Median Spend per Customer": 3272.5 }, "geometry": { "type": "Point", "coordinates": [ -75.045412, 40.085495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "Name": "Butcher Bar", "Category": "Restaurants and Other Eating Places", "Address": "2034 Chestnut St", "LATITUDE": 39.95199, "LONGITUDE": -75.174938, "DATE_RANGE_START": 2022, "Total Visits": 1801.0, "Total Visitors": 1275.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 100.0, "Total Spend": 31865.0, "Total Transactions": 389.0, "Total Customers": 188.0, "Median Spend per Transaction": 53.11, "Median Spend per Customer": 109.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174938, 39.95199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "Name": "Capital Beer", "Category": "Restaurants and Other Eating Places", "Address": "2661 E Cumberland St", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 57.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 22.0, "Total Spend": 14112.0, "Total Transactions": 570.0, "Total Customers": 197.0, "Median Spend per Transaction": 25.29, "Median Spend per Customer": 51.66 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "Name": "Crab Shack", "Category": "Specialty Food Stores", "Address": "4800 N 16th St", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 64.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 6.0, "Total Spend": 3101.0, "Total Transactions": 84.0, "Total Customers": 37.0, "Median Spend per Transaction": 31.3, "Median Spend per Customer": 77.76 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-8y9", "Name": "Forever 21", "Category": "Clothing Stores", "Address": "907 937a Market St #2175", "LATITUDE": 39.951978, "LONGITUDE": -75.155812, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 11385.0, "Total Transactions": 448.0, "Total Customers": 430.0, "Median Spend per Transaction": 19.79, "Median Spend per Customer": 19.98 }, "geometry": { "type": "Point", "coordinates": [ -75.155812, 39.951978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "Name": "Macy's", "Category": "Department Stores", "Address": "1300 Market St", "LATITUDE": 39.951926, "LONGITUDE": -75.161906, "DATE_RANGE_START": 2022, "Total Visits": 6267.0, "Total Visitors": 5082.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 16107.0, "Total Transactions": 174.0, "Total Customers": 152.0, "Median Spend per Transaction": 57.18, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161906, 39.951926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-sh5", "Name": "La Viola", "Category": "Restaurants and Other Eating Places", "Address": "252 S 16th St", "LATITUDE": 39.948024, "LONGITUDE": -75.168108, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 28.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 105.0, "Total Spend": 1365.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 80.05, "Median Spend per Customer": 297.84 }, "geometry": { "type": "Point", "coordinates": [ -75.168108, 39.948024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-pgk", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2645 Germantown Ave", "LATITUDE": 39.992681, "LONGITUDE": -75.14772, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 33.0, "POI_CBG": 421010164003.0, "Median Dwell Time": 323.0, "Total Spend": 901.0, "Total Transactions": 26.0, "Total Customers": 23.0, "Median Spend per Transaction": 25.51, "Median Spend per Customer": 28.36 }, "geometry": { "type": "Point", "coordinates": [ -75.14772, 39.992681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj4-v4v", "Name": "Taqueria La Raza", "Category": "Restaurants and Other Eating Places", "Address": "227 W Allegheny Ave", "LATITUDE": 39.999423, "LONGITUDE": -75.134255, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 37.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 101.0, "Total Spend": 960.0, "Total Transactions": 26.0, "Total Customers": 9.0, "Median Spend per Transaction": 46.05, "Median Spend per Customer": 100.16 }, "geometry": { "type": "Point", "coordinates": [ -75.134255, 39.999423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "4358 Main St", "LATITUDE": 40.025431, "LONGITUDE": -75.223871, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 18682.0, "Total Transactions": 310.0, "Total Customers": 136.0, "Median Spend per Transaction": 22.05, "Median Spend per Customer": 87.76 }, "geometry": { "type": "Point", "coordinates": [ -75.223871, 40.025431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6771 N 5th St", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 143.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 3.0, "Total Spend": 460.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 9.27, "Median Spend per Customer": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "Name": "Javies Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "4901 Umbria St", "LATITUDE": 40.034848, "LONGITUDE": -75.234562, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 141.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 2.0, "Total Spend": 10373.0, "Total Transactions": 443.0, "Total Customers": 186.0, "Median Spend per Transaction": 21.16, "Median Spend per Customer": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.234562, 40.034848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25q-222@628-pm9-tn5", "Name": "Superhots By George", "Category": "Specialty Food Stores", "Address": "740 Sansom St Ste 601", "LATITUDE": 39.948564, "LONGITUDE": -75.153931, "DATE_RANGE_START": 2022, "Total Visits": 1821.0, "Total Visitors": 1206.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 122.0, "Total Spend": 769.0, "Total Transactions": 44.0, "Total Customers": 21.0, "Median Spend per Transaction": 15.41, "Median Spend per Customer": 29.03 }, "geometry": { "type": "Point", "coordinates": [ -75.153931, 39.948564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-92k", "Name": "Beef Jerky Outlet", "Category": "Specialty Food Stores", "Address": "901 Market St Unit C100", "LATITUDE": 39.951616, "LONGITUDE": -75.155729, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 1032.0, "Total Transactions": 35.0, "Total Customers": 33.0, "Median Spend per Transaction": 19.92, "Median Spend per Customer": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155729, 39.951616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9m-gtv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3200 92 Red Lion Road Suite 250", "LATITUDE": 40.080307, "LONGITUDE": -74.99459, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 171.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 3.0, "Total Spend": 5868.0, "Total Transactions": 260.0, "Total Customers": 152.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 22.59 }, "geometry": { "type": "Point", "coordinates": [ -74.99459, 40.080307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6344 Stenton Ave", "LATITUDE": 40.059864, "LONGITUDE": -75.166534, "DATE_RANGE_START": 2022, "Total Visits": 260.0, "Total Visitors": 186.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 5.0, "Total Spend": 4465.0, "Total Transactions": 171.0, "Total Customers": 134.0, "Median Spend per Transaction": 10.56, "Median Spend per Customer": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.166534, 40.059864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-35z", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4641 Chestnut St # 51", "LATITUDE": 39.957614, "LONGITUDE": -75.214932, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 136.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 4.0, "Total Spend": 33599.0, "Total Transactions": 1760.0, "Total Customers": 1044.0, "Median Spend per Transaction": 13.31, "Median Spend per Customer": 19.46 }, "geometry": { "type": "Point", "coordinates": [ -75.214932, 39.957614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph6-p5f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5201 Lancaster Ave", "LATITUDE": 39.977589, "LONGITUDE": -75.227009, "DATE_RANGE_START": 2022, "Total Visits": 1233.0, "Total Visitors": 873.0, "POI_CBG": 421010118003.0, "Median Dwell Time": 4.0, "Total Spend": 926.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 36.01, "Median Spend per Customer": 36.01 }, "geometry": { "type": "Point", "coordinates": [ -75.227009, 39.977589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Roosevelt Blvd", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2022, "Total Visits": 2049.0, "Total Visitors": 1509.0, "POI_CBG": 421010361002.0, "Median Dwell Time": 4.0, "Total Spend": 9908.0, "Total Transactions": 307.0, "Total Customers": 221.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 39.27 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm9-zs5", "Name": "Condom Kingdom", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "437 South St", "LATITUDE": 39.942054, "LONGITUDE": -75.150455, "DATE_RANGE_START": 2022, "Total Visits": 1169.0, "Total Visitors": 979.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 22.0, "Total Spend": 3813.0, "Total Transactions": 84.0, "Total Customers": 38.0, "Median Spend per Transaction": 33.46, "Median Spend per Customer": 81.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150455, 39.942054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2308 W Oregon Ave Ste A", "LATITUDE": 39.91784, "LONGITUDE": -75.186842, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 78.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 74.0, "Total Spend": 6664.0, "Total Transactions": 87.0, "Total Customers": 61.0, "Median Spend per Transaction": 45.89, "Median Spend per Customer": 62.63 }, "geometry": { "type": "Point", "coordinates": [ -75.186842, 39.91784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "Name": "Buffalo Exchange", "Category": "Used Merchandise Stores", "Address": "1520 Chestnut St", "LATITUDE": 39.951062, "LONGITUDE": -75.166599, "DATE_RANGE_START": 2022, "Total Visits": 4990.0, "Total Visitors": 3734.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 44.0, "Total Spend": 45274.0, "Total Transactions": 1143.0, "Total Customers": 949.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166599, 39.951062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "Name": "Four Seasons Diner", "Category": "Restaurants and Other Eating Places", "Address": "2811 Cottman Ave", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2022, "Total Visits": 409.0, "Total Visitors": 305.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 31.0, "Total Spend": 31203.0, "Total Transactions": 598.0, "Total Customers": 260.0, "Median Spend per Transaction": 47.61, "Median Spend per Customer": 82.92 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgf-fpv", "Name": "Kabobeesh", "Category": "Restaurants and Other Eating Places", "Address": "4201 Chestnut St", "LATITUDE": 39.956522, "LONGITUDE": -75.206506, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 120.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 37.0, "Total Spend": 7909.0, "Total Transactions": 230.0, "Total Customers": 96.0, "Median Spend per Transaction": 24.28, "Median Spend per Customer": 51.13 }, "geometry": { "type": "Point", "coordinates": [ -75.206506, 39.956522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "Name": "Dannys Wok 3", "Category": "Restaurants and Other Eating Places", "Address": "4322 N Broad St", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 61.0, "POI_CBG": 421010204002.0, "Median Dwell Time": 3.0, "Total Spend": 96.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-kvf", "Name": "Wilder", "Category": "Restaurants and Other Eating Places", "Address": "2009 Sansom St", "LATITUDE": 39.951501, "LONGITUDE": -75.174013, "DATE_RANGE_START": 2022, "Total Visits": 1801.0, "Total Visitors": 1275.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 100.0, "Total Spend": 19959.0, "Total Transactions": 134.0, "Total Customers": 77.0, "Median Spend per Transaction": 111.28, "Median Spend per Customer": 168.79 }, "geometry": { "type": "Point", "coordinates": [ -75.174013, 39.951501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-tn5", "Name": "Fat Salmon Sushi", "Category": "Restaurants and Other Eating Places", "Address": "719 Walnut St", "LATITUDE": 39.948136, "LONGITUDE": -75.153395, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 96.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 354.0, "Total Spend": 10518.0, "Total Transactions": 214.0, "Total Customers": 92.0, "Median Spend per Transaction": 42.1, "Median Spend per Customer": 95.88 }, "geometry": { "type": "Point", "coordinates": [ -75.153395, 39.948136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "600 S 9th St", "LATITUDE": 39.942532, "LONGITUDE": -75.157241, "DATE_RANGE_START": 2022, "Total Visits": 385.0, "Total Visitors": 300.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 4.0, "Total Spend": 4996.0, "Total Transactions": 622.0, "Total Customers": 389.0, "Median Spend per Transaction": 6.33, "Median Spend per Customer": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.157241, 39.942532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-8d9", "Name": "Moge Tee Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "1025 Arch St", "LATITUDE": 39.953994, "LONGITUDE": -75.157412, "DATE_RANGE_START": 2022, "Total Visits": 402.0, "Total Visitors": 312.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 288.0, "Total Spend": 1751.0, "Total Transactions": 171.0, "Total Customers": 85.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 13.44 }, "geometry": { "type": "Point", "coordinates": [ -75.157412, 39.953994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-tjv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "808 Chestnut St", "LATITUDE": 39.949514, "LONGITUDE": -75.154287, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 78.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 1818.0, "Total Transactions": 307.0, "Total Customers": 176.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.949514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "Name": "East Falls Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4024 Ridge Ave", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010170001.0, "Median Dwell Time": null, "Total Spend": 22645.0, "Total Transactions": 862.0, "Total Customers": 261.0, "Median Spend per Transaction": 23.59, "Median Spend per Customer": 60.14 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-225@628-pjf-j7q", "Name": "All The Way Live", "Category": "Restaurants and Other Eating Places", "Address": "8419 Germantown Ave", "LATITUDE": 40.075711, "LONGITUDE": -75.205375, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 1.0, "Total Spend": 921.0, "Total Transactions": 23.0, "Total Customers": 10.0, "Median Spend per Transaction": 38.01, "Median Spend per Customer": 86.07 }, "geometry": { "type": "Point", "coordinates": [ -75.205375, 40.075711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993511, "LONGITUDE": -75.143942, "DATE_RANGE_START": 2022, "Total Visits": 453.0, "Total Visitors": 268.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 8.0, "Total Spend": 703.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 22.4, "Median Spend per Customer": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143942, 39.993511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm8-2kz", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "3300 Grays Ferry Ave", "LATITUDE": 39.939239, "LONGITUDE": -75.197843, "DATE_RANGE_START": 2022, "Total Visits": 531.0, "Total Visitors": 453.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 3.0, "Total Spend": 2853.0, "Total Transactions": 103.0, "Total Customers": 40.0, "Median Spend per Transaction": 21.69, "Median Spend per Customer": 58.44 }, "geometry": { "type": "Point", "coordinates": [ -75.197843, 39.939239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "Name": "Royal Farms", "Category": "Grocery Stores", "Address": "2501 Church St", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2022, "Total Visits": 422.0, "Total Visitors": 286.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 2.0, "Total Spend": 56428.0, "Total Transactions": 1974.0, "Total Customers": 918.0, "Median Spend per Transaction": 12.98, "Median Spend per Customer": 25.93 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4201 Walnut St # 59", "LATITUDE": 39.954892, "LONGITUDE": -75.206728, "DATE_RANGE_START": 2022, "Total Visits": 291.0, "Total Visitors": 206.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 3.0, "Total Spend": 2140.0, "Total Transactions": 202.0, "Total Customers": 92.0, "Median Spend per Transaction": 6.94, "Median Spend per Customer": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.206728, 39.954892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-227@628-p9k-2zf", "Name": "Beer Center", "Category": "Beer, Wine, and Liquor Stores", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103141, "LONGITUDE": -75.010331, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 500.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 16.0, "Total Spend": 3401.0, "Total Transactions": 153.0, "Total Customers": 47.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.010331, 40.103141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-qfz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5440 Lansdowne Ave", "LATITUDE": 39.976667, "LONGITUDE": -75.231099, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 61.0, "POI_CBG": 421010112001.0, "Median Dwell Time": 2.0, "Total Spend": 3508.0, "Total Transactions": 186.0, "Total Customers": 117.0, "Median Spend per Transaction": 15.48, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.231099, 39.976667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-mzf", "Name": "Philadelphia Gas Works", "Category": "Gasoline Stations", "Address": "5230 Chestnut St", "LATITUDE": 39.958271, "LONGITUDE": -75.226212, "DATE_RANGE_START": 2022, "Total Visits": 301.0, "Total Visitors": 267.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 11.0, "Total Spend": 3843.0, "Total Transactions": 64.0, "Total Customers": 37.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226212, 39.958271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-zxq", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "608 South St", "LATITUDE": 39.941838, "LONGITUDE": -75.152721, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 71.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 30.0, "Total Spend": 8134.0, "Total Transactions": 73.0, "Total Customers": 71.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152721, 39.941838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw9-xnq", "Name": "LIDS", "Category": "Clothing Stores", "Address": "8500 Essington Ave Ste DE7", "LATITUDE": 39.87811, "LONGITUDE": -75.239425, "DATE_RANGE_START": 2022, "Total Visits": 226042.0, "Total Visitors": 145993.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 54.0, "Total Spend": 2856.0, "Total Transactions": 63.0, "Total Customers": 63.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239425, 39.87811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnt-435", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2427 Aramingo Ave Ste 8", "LATITUDE": 39.974417, "LONGITUDE": -75.121241, "DATE_RANGE_START": 2022, "Total Visits": 2387.0, "Total Visitors": 1463.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 7.0, "Total Spend": 4308.0, "Total Transactions": 80.0, "Total Customers": 70.0, "Median Spend per Transaction": 39.83, "Median Spend per Customer": 39.83 }, "geometry": { "type": "Point", "coordinates": [ -75.121241, 39.974417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7v-gkz", "Name": "Villagio Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1817 Cottman Ave", "LATITUDE": 40.053089, "LONGITUDE": -75.068847, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 44.0, "POI_CBG": 421010335003.0, "Median Dwell Time": 580.0, "Total Spend": 3246.0, "Total Transactions": 108.0, "Total Customers": 42.0, "Median Spend per Transaction": 30.56, "Median Spend per Customer": 67.83 }, "geometry": { "type": "Point", "coordinates": [ -75.068847, 40.053089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-7wk", "Name": "The Board & Brew", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3200 Chestnut St Ste A", "LATITUDE": 39.953486, "LONGITUDE": -75.187898, "DATE_RANGE_START": 2022, "Total Visits": 1803.0, "Total Visitors": 425.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 1020.0, "Total Spend": 2225.0, "Total Transactions": 89.0, "Total Customers": 35.0, "Median Spend per Transaction": 9.94, "Median Spend per Customer": 30.04 }, "geometry": { "type": "Point", "coordinates": [ -75.187898, 39.953486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-y7q", "Name": "The Post", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "129 S 30th St", "LATITUDE": 39.952733, "LONGITUDE": -75.18366, "DATE_RANGE_START": 2022, "Total Visits": 793.0, "Total Visitors": 618.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 31.0, "Total Spend": 2230.0, "Total Transactions": 75.0, "Total Customers": 38.0, "Median Spend per Transaction": 20.04, "Median Spend per Customer": 40.08 }, "geometry": { "type": "Point", "coordinates": [ -75.18366, 39.952733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-y9z", "Name": "Alyan's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "603 S 4th St", "LATITUDE": 39.941428, "LONGITUDE": -75.149062, "DATE_RANGE_START": 2022, "Total Visits": 1437.0, "Total Visitors": 1132.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 173.0, "Total Spend": 4408.0, "Total Transactions": 120.0, "Total Customers": 59.0, "Median Spend per Transaction": 26.4, "Median Spend per Customer": 51.87 }, "geometry": { "type": "Point", "coordinates": [ -75.149062, 39.941428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-5xq", "Name": "Liberty Choice", "Category": "Restaurants and Other Eating Places", "Address": "1939 N Front St", "LATITUDE": 39.979685, "LONGITUDE": -75.132953, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 157.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 335.0, "Total Spend": 20655.0, "Total Transactions": 1354.0, "Total Customers": 373.0, "Median Spend per Transaction": 12.97, "Median Spend per Customer": 34.96 }, "geometry": { "type": "Point", "coordinates": [ -75.132953, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "Name": "Kostas Bar", "Category": "Restaurants and Other Eating Places", "Address": "15 W Girard Ave", "LATITUDE": 39.96897, "LONGITUDE": -75.134955, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 64.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 29.0, "Total Spend": 24988.0, "Total Transactions": 873.0, "Total Customers": 310.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 53.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134955, 39.96897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-9j9", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "S 15th St & Market St", "LATITUDE": 39.952572, "LONGITUDE": -75.165215, "DATE_RANGE_START": 2022, "Total Visits": 26119.0, "Total Visitors": 14640.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 152.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 21.87, "Median Spend per Customer": 43.74 }, "geometry": { "type": "Point", "coordinates": [ -75.165215, 39.952572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p85-4d9", "Name": "Mediterranean 2000", "Category": "Restaurants and Other Eating Places", "Address": "8026 Bustleton Ave", "LATITUDE": 40.061102, "LONGITUDE": -75.052153, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 73.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 39.0, "Total Spend": 212.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 30.36, "Median Spend per Customer": 60.71 }, "geometry": { "type": "Point", "coordinates": [ -75.052153, 40.061102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "4030 City Ave", "LATITUDE": 40.007477, "LONGITUDE": -75.212304, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 118.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 5.0, "Total Spend": 16467.0, "Total Transactions": 1075.0, "Total Customers": 826.0, "Median Spend per Transaction": 13.61, "Median Spend per Customer": 14.69 }, "geometry": { "type": "Point", "coordinates": [ -75.212304, 40.007477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "Name": "CAVA", "Category": "Restaurants and Other Eating Places", "Address": "1713 Chestnut St", "LATITUDE": 39.95186, "LONGITUDE": -75.16924, "DATE_RANGE_START": 2022, "Total Visits": 406.0, "Total Visitors": 345.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 43.0, "Total Spend": 29508.0, "Total Transactions": 1927.0, "Total Customers": 850.0, "Median Spend per Transaction": 14.01, "Median Spend per Customer": 28.21 }, "geometry": { "type": "Point", "coordinates": [ -75.16924, 39.95186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmb-kj9", "Name": "Oui", "Category": "Restaurants and Other Eating Places", "Address": "160 N 3rd St", "LATITUDE": 39.953782, "LONGITUDE": -75.145092, "DATE_RANGE_START": 2022, "Total Visits": 693.0, "Total Visitors": 570.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 3.0, "Total Spend": 1404.0, "Total Transactions": 40.0, "Total Customers": 24.0, "Median Spend per Transaction": 24.62, "Median Spend per Customer": 44.72 }, "geometry": { "type": "Point", "coordinates": [ -75.145092, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-yd9", "Name": "Tea Do", "Category": "Restaurants and Other Eating Places", "Address": "132 N 10th St", "LATITUDE": 39.954609, "LONGITUDE": -75.156246, "DATE_RANGE_START": 2022, "Total Visits": 321.0, "Total Visitors": 308.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 20.0, "Total Spend": 24651.0, "Total Transactions": 2436.0, "Total Customers": 1040.0, "Median Spend per Transaction": 7.42, "Median Spend per Customer": 16.14 }, "geometry": { "type": "Point", "coordinates": [ -75.156246, 39.954609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "4700 N 15th St", "LATITUDE": 40.025459, "LONGITUDE": -75.149625, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 24.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 9.0, "Total Spend": 1050.0, "Total Transactions": 108.0, "Total Customers": 56.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149625, 40.025459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pj3-gx5", "Name": "Beijing Garden", "Category": "Restaurants and Other Eating Places", "Address": "4527 Wayne Ave", "LATITUDE": 40.022567, "LONGITUDE": -75.162046, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 26.0, "POI_CBG": 421010244002.0, "Median Dwell Time": 20.0, "Total Spend": 487.0, "Total Transactions": 28.0, "Total Customers": 14.0, "Median Spend per Transaction": 16.4, "Median Spend per Customer": 32.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162046, 40.022567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "Name": "Green Leaf Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7520 Haverford Ave", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 45.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 51.0, "Total Spend": 8013.0, "Total Transactions": 350.0, "Total Customers": 132.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 40.76 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1440 E Erie Ave", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2022, "Total Visits": 235.0, "Total Visitors": 209.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 3.0, "Total Spend": 12257.0, "Total Transactions": 267.0, "Total Customers": 211.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 31.7 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3724 Spruce St # 3744", "LATITUDE": 39.950972, "LONGITUDE": -75.198395, "DATE_RANGE_START": 2022, "Total Visits": 777.0, "Total Visitors": 589.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 9.0, "Total Spend": 22557.0, "Total Transactions": 2556.0, "Total Customers": 1359.0, "Median Spend per Transaction": 7.27, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.198395, 39.950972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "Name": "Monde Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "100 S 21st St", "LATITUDE": 39.952049, "LONGITUDE": -75.175756, "DATE_RANGE_START": 2022, "Total Visits": 740.0, "Total Visitors": 599.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 7.0, "Total Spend": 27018.0, "Total Transactions": 2026.0, "Total Customers": 477.0, "Median Spend per Transaction": 11.61, "Median Spend per Customer": 27.04 }, "geometry": { "type": "Point", "coordinates": [ -75.175756, 39.952049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "Name": "Loco Dollar", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "201 E Allegheny Ave", "LATITUDE": 39.998868, "LONGITUDE": -75.126992, "DATE_RANGE_START": 2022, "Total Visits": 441.0, "Total Visitors": 261.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 8.0, "Total Spend": 3387.0, "Total Transactions": 157.0, "Total Customers": 63.0, "Median Spend per Transaction": 18.26, "Median Spend per Customer": 39.6 }, "geometry": { "type": "Point", "coordinates": [ -75.126992, 39.998868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 214", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 78.0, "Total Spend": 1095.0, "Total Transactions": 42.0, "Total Customers": 40.0, "Median Spend per Transaction": 24.38, "Median Spend per Customer": 27.99 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgg-rc5", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "3130 W Hunting Park Ave", "LATITUDE": 40.003796, "LONGITUDE": -75.180647, "DATE_RANGE_START": 2022, "Total Visits": 270.0, "Total Visitors": 223.0, "POI_CBG": 421010171004.0, "Median Dwell Time": 2.0, "Total Spend": 9321.0, "Total Transactions": 481.0, "Total Customers": 206.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 30.74 }, "geometry": { "type": "Point", "coordinates": [ -75.180647, 40.003796 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "Delaware Ave & Spring Garden St", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2022, "Total Visits": 2817.0, "Total Visitors": 2138.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 4.0, "Total Spend": 98397.0, "Total Transactions": 3741.0, "Total Customers": 2329.0, "Median Spend per Transaction": 20.35, "Median Spend per Customer": 30.05 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1300 N Broad St", "LATITUDE": 39.973475, "LONGITUDE": -75.159323, "DATE_RANGE_START": 2022, "Total Visits": 493.0, "Total Visitors": 446.0, "POI_CBG": 421010140003.0, "Median Dwell Time": 3.0, "Total Spend": 4181.0, "Total Transactions": 136.0, "Total Customers": 64.0, "Median Spend per Transaction": 28.55, "Median Spend per Customer": 40.32 }, "geometry": { "type": "Point", "coordinates": [ -75.159323, 39.973475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-bp9", "Name": "Hidden River Yarns", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4358B Main St", "LATITUDE": 40.025483, "LONGITUDE": -75.223994, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 6.0, "Total Spend": 1425.0, "Total Transactions": 26.0, "Total Customers": 9.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 162.04 }, "geometry": { "type": "Point", "coordinates": [ -75.223994, 40.025483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-zs5", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "508 South St", "LATITUDE": 39.941661, "LONGITUDE": -75.151237, "DATE_RANGE_START": 2022, "Total Visits": 859.0, "Total Visitors": 679.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 17.0, "Total Spend": 477.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 63.0, "Median Spend per Customer": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151237, 39.941661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-p7c-3yv", "Name": "J L's Beer Box", "Category": "Beer, Wine, and Liquor Stores", "Address": "3350 Grant Ave", "LATITUDE": 40.067747, "LONGITUDE": -75.005826, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 84.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 3.0, "Total Spend": 4034.0, "Total Transactions": 145.0, "Total Customers": 59.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 59.0 }, "geometry": { "type": "Point", "coordinates": [ -75.005826, 40.067747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "Name": "Deluxe Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8749 Frankford Ave", "LATITUDE": 40.048286, "LONGITUDE": -75.012528, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 99.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 7.0, "Total Spend": 413.0, "Total Transactions": 19.0, "Total Customers": 9.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 64.36 }, "geometry": { "type": "Point", "coordinates": [ -75.012528, 40.048286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "8828 Frankford Ave", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2022, "Total Visits": 434.0, "Total Visitors": 357.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 6.0, "Total Spend": 1332.0, "Total Transactions": 61.0, "Total Customers": 44.0, "Median Spend per Transaction": 16.95, "Median Spend per Customer": 24.23 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wtv", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "701 Market St", "LATITUDE": 39.951227, "LONGITUDE": -75.152425, "DATE_RANGE_START": 2022, "Total Visits": 690.0, "Total Visitors": 561.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 23.0, "Total Spend": 13899.0, "Total Transactions": 976.0, "Total Customers": 803.0, "Median Spend per Transaction": 9.67, "Median Spend per Customer": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.152425, 39.951227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1812 W Cheltenham Ave", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2022, "Total Visits": 373.0, "Total Visitors": 286.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 5.0, "Total Spend": 1715.0, "Total Transactions": 166.0, "Total Customers": 120.0, "Median Spend per Transaction": 7.45, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pg4-2p9", "Name": "Bargain Thrift Center", "Category": "Used Merchandise Stores", "Address": "5245 Germantown Ave", "LATITUDE": 40.031821, "LONGITUDE": -75.167835, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 92.0, "POI_CBG": 421010245004.0, "Median Dwell Time": 71.0, "Total Spend": 8147.0, "Total Transactions": 258.0, "Total Customers": 120.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167835, 40.031821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zxq", "Name": "Sky Store", "Category": "Other Miscellaneous Store Retailers", "Address": "632 South St", "LATITUDE": 39.941905, "LONGITUDE": -75.153237, "DATE_RANGE_START": 2022, "Total Visits": 725.0, "Total Visitors": 598.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 30.0, "Total Spend": 10017.0, "Total Transactions": 286.0, "Total Customers": 113.0, "Median Spend per Transaction": 21.02, "Median Spend per Customer": 46.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153237, 39.941905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-3wk", "Name": "Cavanaughs Headhouse", "Category": "Restaurants and Other Eating Places", "Address": "421 S 2nd St", "LATITUDE": 39.942292, "LONGITUDE": -75.144972, "DATE_RANGE_START": 2022, "Total Visits": 427.0, "Total Visitors": 326.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 34.0, "Total Spend": 341.0, "Total Transactions": 23.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.8, "Median Spend per Customer": 46.84 }, "geometry": { "type": "Point", "coordinates": [ -75.144972, 39.942292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-8vz", "Name": "Dizengoff", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.953032, "LONGITUDE": -75.192553, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 50.0, "Total Spend": 6320.0, "Total Transactions": 279.0, "Total Customers": 143.0, "Median Spend per Transaction": 21.38, "Median Spend per Customer": 36.83 }, "geometry": { "type": "Point", "coordinates": [ -75.192553, 39.953032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-87q", "Name": "Kabuki Sushi", "Category": "Restaurants and Other Eating Places", "Address": "45 N 13th St", "LATITUDE": 39.953616, "LONGITUDE": -75.160916, "DATE_RANGE_START": 2022, "Total Visits": 247.0, "Total Visitors": 216.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 1706.0, "Total Transactions": 77.0, "Total Customers": 45.0, "Median Spend per Transaction": 20.99, "Median Spend per Customer": 30.08 }, "geometry": { "type": "Point", "coordinates": [ -75.160916, 39.953616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9834 Bustleton Ave", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2022, "Total Visits": 852.0, "Total Visitors": 544.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 3.0, "Total Spend": 5500.0, "Total Transactions": 688.0, "Total Customers": 336.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm8-zzz", "Name": "Fresh Express Donuts", "Category": "Restaurants and Other Eating Places", "Address": "1339 W Oregon Ave", "LATITUDE": 39.916936, "LONGITUDE": -75.17071, "DATE_RANGE_START": 2022, "Total Visits": 115.0, "Total Visitors": 77.0, "POI_CBG": 421010040023.0, "Median Dwell Time": 494.0, "Total Spend": 228.0, "Total Transactions": 26.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.18, "Median Spend per Customer": 65.34 }, "geometry": { "type": "Point", "coordinates": [ -75.17071, 39.916936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "Name": "Revolution Taco", "Category": "Restaurants and Other Eating Places", "Address": "2015 Walnut St", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 42.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 5.0, "Total Spend": 3927.0, "Total Transactions": 200.0, "Total Customers": 96.0, "Median Spend per Transaction": 16.94, "Median Spend per Customer": 33.88 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-t7q", "Name": "Maria's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4058 N 5th St", "LATITUDE": 40.013401, "LONGITUDE": -75.135844, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 45.0, "POI_CBG": 421010197002.0, "Median Dwell Time": 21.0, "Total Spend": 12059.0, "Total Transactions": 793.0, "Total Customers": 82.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135844, 40.013401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992769, "LONGITUDE": -75.100237, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 51.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 2.0, "Total Spend": 8325.0, "Total Transactions": 265.0, "Total Customers": 226.0, "Median Spend per Transaction": 29.06, "Median Spend per Customer": 33.11 }, "geometry": { "type": "Point", "coordinates": [ -75.100237, 39.992769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "Name": "Philadelphia Bikesmith", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1822 Spring Garden St", "LATITUDE": 39.962935, "LONGITUDE": -75.169326, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 12.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 186.0, "Total Spend": 22916.0, "Total Transactions": 110.0, "Total Customers": 56.0, "Median Spend per Transaction": 62.96, "Median Spend per Customer": 104.71 }, "geometry": { "type": "Point", "coordinates": [ -75.169326, 39.962935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "Name": "Brandy Melville", "Category": "Clothing Stores", "Address": "1527 Walnut St", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2022, "Total Visits": 636.0, "Total Visitors": 519.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 28396.0, "Total Transactions": 497.0, "Total Customers": 449.0, "Median Spend per Transaction": 44.0, "Median Spend per Customer": 50.38 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-fzz", "Name": "The Children's Place", "Category": "Clothing Stores", "Address": "2230 W Oregon Ave", "LATITUDE": 39.917936, "LONGITUDE": -75.185126, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 89.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 11.0, "Total Spend": 142.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 24.46, "Median Spend per Customer": 40.71 }, "geometry": { "type": "Point", "coordinates": [ -75.185126, 39.917936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp4-tsq", "Name": "Green Rock Tavern", "Category": "Restaurants and Other Eating Places", "Address": "2546 E Lehigh Ave", "LATITUDE": 39.979669, "LONGITUDE": -75.116167, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 14.0, "POI_CBG": 421010378003.0, "Median Dwell Time": 101.0, "Total Spend": 3043.0, "Total Transactions": 75.0, "Total Customers": 31.0, "Median Spend per Transaction": 33.0, "Median Spend per Customer": 69.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116167, 39.979669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-d5f", "Name": "Best Deal Discount Store", "Category": "Department Stores", "Address": "4005 Market St", "LATITUDE": 39.957506, "LONGITUDE": -75.202207, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 2.0, "Total Spend": 1133.0, "Total Transactions": 89.0, "Total Customers": 21.0, "Median Spend per Transaction": 10.69, "Median Spend per Customer": 21.09 }, "geometry": { "type": "Point", "coordinates": [ -75.202207, 39.957506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "Name": "Ginza", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Front St", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 38.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 48.0, "Total Spend": 7543.0, "Total Transactions": 148.0, "Total Customers": 82.0, "Median Spend per Transaction": 36.67, "Median Spend per Customer": 69.98 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "Name": "Kohl's", "Category": "Department Stores", "Address": "8500 Henry Ave", "LATITUDE": 40.062537, "LONGITUDE": -75.235162, "DATE_RANGE_START": 2022, "Total Visits": 782.0, "Total Visitors": 631.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 17.0, "Total Spend": 32500.0, "Total Transactions": 672.0, "Total Customers": 573.0, "Median Spend per Transaction": 30.23, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.235162, 40.062537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1601 Market St", "LATITUDE": 39.954256, "LONGITUDE": -75.167978, "DATE_RANGE_START": 2022, "Total Visits": 4749.0, "Total Visitors": 2620.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 40.0, "Total Spend": 66.0, "Total Transactions": 12.0, "Total Customers": 9.0, "Median Spend per Transaction": 3.95, "Median Spend per Customer": 4.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167978, 39.954256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1529 Chestnut St", "LATITUDE": 39.95137, "LONGITUDE": -75.166677, "DATE_RANGE_START": 2022, "Total Visits": 1558.0, "Total Visitors": 1354.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 10.0, "Total Spend": 16795.0, "Total Transactions": 1308.0, "Total Customers": 1117.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166677, 39.95137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3951 E Roosevelt Blvd", "LATITUDE": 40.027243, "LONGITUDE": -75.110271, "DATE_RANGE_START": 2022, "Total Visits": 1190.0, "Total Visitors": 857.0, "POI_CBG": 421010292001.0, "Median Dwell Time": 4.0, "Total Spend": 446.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 38.72, "Median Spend per Customer": 38.72 }, "geometry": { "type": "Point", "coordinates": [ -75.110271, 40.027243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgc-zzz", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "5050 Parkside Ave", "LATITUDE": 39.979858, "LONGITUDE": -75.220169, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 228.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 23.0, "Total Spend": 1063.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 74.0, "Median Spend per Customer": 90.69 }, "geometry": { "type": "Point", "coordinates": [ -75.220169, 39.979858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "Name": "Circle Thrift", "Category": "Used Merchandise Stores", "Address": "2233 Frankford Ave", "LATITUDE": 39.980269, "LONGITUDE": -75.128616, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 193.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 186.0, "Total Spend": 6542.0, "Total Transactions": 293.0, "Total Customers": 117.0, "Median Spend per Transaction": 14.94, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128616, 39.980269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "9499 Roosevelt Blvd", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2022, "Total Visits": 1308.0, "Total Visitors": 1103.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 4136.0, "Total Transactions": 181.0, "Total Customers": 152.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-hbk", "Name": "Jyoti Indian Bistro", "Category": "Restaurants and Other Eating Places", "Address": "7220 Germantown Ave", "LATITUDE": 40.060418, "LONGITUDE": -75.191506, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 31.0, "Total Spend": 548.0, "Total Transactions": 28.0, "Total Customers": 17.0, "Median Spend per Transaction": 18.74, "Median Spend per Customer": 33.43 }, "geometry": { "type": "Point", "coordinates": [ -75.191506, 40.060418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgm-68v", "Name": "Foghorn", "Category": "Restaurants and Other Eating Places", "Address": "4213 Ridge Ave", "LATITUDE": 40.009232, "LONGITUDE": -75.194181, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 28.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 2.0, "Total Spend": 2848.0, "Total Transactions": 118.0, "Total Customers": 56.0, "Median Spend per Transaction": 20.36, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.194181, 40.009232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "Name": "Finish Line", "Category": "Shoe Stores", "Address": "1449 Franklin Mills Cir", "LATITUDE": 40.086808, "LONGITUDE": -74.961767, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 61.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 1983.0, "Total Transactions": 23.0, "Total Customers": 17.0, "Median Spend per Transaction": 65.1, "Median Spend per Customer": 107.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961767, 40.086808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-gtv", "Name": "Bruno's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7362 N 19th St", "LATITUDE": 40.067212, "LONGITUDE": -75.146516, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 30.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 31.0, "Total Spend": 439.0, "Total Transactions": 16.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 54.1 }, "geometry": { "type": "Point", "coordinates": [ -75.146516, 40.067212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvw-bhq", "Name": "Top Taste", "Category": "Restaurants and Other Eating Places", "Address": "40 N 52nd St", "LATITUDE": 39.961231, "LONGITUDE": -75.224868, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 4.0, "Total Spend": 99.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224868, 39.961231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvr-5pv", "Name": "Jim's Food Market", "Category": "Restaurants and Other Eating Places", "Address": "2900 S 61st St", "LATITUDE": 39.923383, "LONGITUDE": -75.221531, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 19.0, "POI_CBG": 421010067001.0, "Median Dwell Time": 5.0, "Total Spend": 55.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.69, "Median Spend per Customer": 15.69 }, "geometry": { "type": "Point", "coordinates": [ -75.221531, 39.923383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "Name": "Beer Stop", "Category": "Beer, Wine, and Liquor Stores", "Address": "4252 Rising Sun Ave", "LATITUDE": 40.015837, "LONGITUDE": -75.130275, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 127.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 4.0, "Total Spend": 8381.0, "Total Transactions": 286.0, "Total Customers": 103.0, "Median Spend per Transaction": 26.85, "Median Spend per Customer": 58.22 }, "geometry": { "type": "Point", "coordinates": [ -75.130275, 40.015837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4000 Woodhaven Rd Ste 250", "LATITUDE": 40.084825, "LONGITUDE": -74.9723, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 120.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 4.0, "Total Spend": 11747.0, "Total Transactions": 599.0, "Total Customers": 326.0, "Median Spend per Transaction": 11.2, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -74.9723, 40.084825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pj4-y7q", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "3610 Germantown Ave", "LATITUDE": 40.007893, "LONGITUDE": -75.150596, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 103.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 4.0, "Total Spend": 1858.0, "Total Transactions": 52.0, "Total Customers": 21.0, "Median Spend per Transaction": 42.62, "Median Spend per Customer": 28.16 }, "geometry": { "type": "Point", "coordinates": [ -75.150596, 40.007893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-s5z", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.011216, "LONGITUDE": -75.115625, "DATE_RANGE_START": 2022, "Total Visits": 286.0, "Total Visitors": 207.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 20.0, "Total Spend": 4315.0, "Total Transactions": 89.0, "Total Customers": 82.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 28.43 }, "geometry": { "type": "Point", "coordinates": [ -75.115625, 40.011216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "3000 Island Ave", "LATITUDE": 39.902552, "LONGITUDE": -75.240445, "DATE_RANGE_START": 2022, "Total Visits": 432.0, "Total Visitors": 368.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 5.0, "Total Spend": 6256.0, "Total Transactions": 225.0, "Total Customers": 91.0, "Median Spend per Transaction": 20.99, "Median Spend per Customer": 31.13 }, "geometry": { "type": "Point", "coordinates": [ -75.240445, 39.902552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "Name": "El Fuego", "Category": "Restaurants and Other Eating Places", "Address": "723 Walnut St", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 49.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 574.0, "Total Spend": 2334.0, "Total Transactions": 178.0, "Total Customers": 61.0, "Median Spend per Transaction": 12.26, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "9970 Bustleton Ave", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2022, "Total Visits": 1455.0, "Total Visitors": 1063.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 4.0, "Total Spend": 20494.0, "Total Transactions": 1720.0, "Total Customers": 1164.0, "Median Spend per Transaction": 9.87, "Median Spend per Customer": 11.96 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "Name": "Mission BBQ", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2022, "Total Visits": 343.0, "Total Visitors": 279.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 25.0, "Total Spend": 3120.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 28.88, "Median Spend per Customer": 39.69 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-nwk", "Name": "Hiroki", "Category": "Restaurants and Other Eating Places", "Address": "1335 N Front St", "LATITUDE": 39.971334, "LONGITUDE": -75.135176, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 143.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 1.0, "Total Spend": 5198.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 766.44, "Median Spend per Customer": 1043.52 }, "geometry": { "type": "Point", "coordinates": [ -75.135176, 39.971334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-nqz", "Name": "Thanal Indian Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1939 Arch St", "LATITUDE": 39.955758, "LONGITUDE": -75.172555, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 70.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 47.0, "Total Spend": 2506.0, "Total Transactions": 38.0, "Total Customers": 23.0, "Median Spend per Transaction": 58.0, "Median Spend per Customer": 80.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172555, 39.955758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-hh5", "Name": "Devil's Alley Bar & Grille", "Category": "Restaurants and Other Eating Places", "Address": "1907 Chestnut St", "LATITUDE": 39.952132, "LONGITUDE": -75.172213, "DATE_RANGE_START": 2022, "Total Visits": 256.0, "Total Visitors": 239.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 13.0, "Total Spend": 592.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 56.6, "Median Spend per Customer": 113.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172213, 39.952132 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-234@628-pmf-jd9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste F1", "LATITUDE": 39.95159, "LONGITUDE": -75.168235, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 78.0, "Total Spend": 2797.0, "Total Transactions": 260.0, "Total Customers": 204.0, "Median Spend per Transaction": 10.54, "Median Spend per Customer": 11.64 }, "geometry": { "type": "Point", "coordinates": [ -75.168235, 39.95159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp5-ct9", "Name": "Crispy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1858 E Allegheny Ave", "LATITUDE": 39.995185, "LONGITUDE": -75.112579, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010178001.0, "Median Dwell Time": 1.0, "Total Spend": 3490.0, "Total Transactions": 132.0, "Total Customers": 47.0, "Median Spend per Transaction": 23.04, "Median Spend per Customer": 68.52 }, "geometry": { "type": "Point", "coordinates": [ -75.112579, 39.995185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St Ste 128", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2022, "Total Visits": 568.0, "Total Visitors": 514.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 2.0, "Total Spend": 14708.0, "Total Transactions": 1028.0, "Total Customers": 676.0, "Median Spend per Transaction": 11.81, "Median Spend per Customer": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-ks5", "Name": "Elwood", "Category": "Restaurants and Other Eating Places", "Address": "1007 Frankford Ave", "LATITUDE": 39.96637, "LONGITUDE": -75.134125, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 54.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 358.0, "Total Spend": 980.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 140.56, "Median Spend per Customer": 281.12 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 39.96637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "Name": "Bubblefish", "Category": "Restaurants and Other Eating Places", "Address": "909 Arch St", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2022, "Total Visits": 5087.0, "Total Visitors": 3380.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 61.0, "Total Spend": 11725.0, "Total Transactions": 305.0, "Total Customers": 162.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pg5-2tv", "Name": "Morton Food Market", "Category": "Grocery Stores", "Address": "6201 Morton St", "LATITUDE": 40.04563, "LONGITUDE": -75.176218, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 23.0, "POI_CBG": 421010252004.0, "Median Dwell Time": 2.0, "Total Spend": 2753.0, "Total Transactions": 240.0, "Total Customers": 64.0, "Median Spend per Transaction": 9.38, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176218, 40.04563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj3-3nq", "Name": "Mora Mini Market", "Category": "Grocery Stores", "Address": "4501 N 19th St", "LATITUDE": 40.022573, "LONGITUDE": -75.156258, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010280001.0, "Median Dwell Time": 3.0, "Total Spend": 774.0, "Total Transactions": 61.0, "Total Customers": 24.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 29.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156258, 40.022573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "Name": "Comfort & Floyd", "Category": "Restaurants and Other Eating Places", "Address": "1301 S 11th St", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010029003.0, "Median Dwell Time": null, "Total Spend": 4181.0, "Total Transactions": 115.0, "Total Customers": 56.0, "Median Spend per Transaction": 25.5, "Median Spend per Customer": 65.81 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "331 S 22nd St", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 26.0, "POI_CBG": 421010012012.0, "Median Dwell Time": null, "Total Spend": 1877.0, "Total Transactions": 207.0, "Total Customers": 110.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 12.86 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yd9", "Name": "Sleep Inn", "Category": "Traveler Accommodation", "Address": "1020 Cherry St", "LATITUDE": 39.954446, "LONGITUDE": -75.157043, "DATE_RANGE_START": 2022, "Total Visits": 402.0, "Total Visitors": 277.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 69.0, "Total Spend": 4363.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 170.01, "Median Spend per Customer": 298.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157043, 39.954446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-7yv", "Name": "Home2 Suites", "Category": "Traveler Accommodation", "Address": "1200 Arch St", "LATITUDE": 39.953662, "LONGITUDE": -75.15975, "DATE_RANGE_START": 2022, "Total Visits": 4568.0, "Total Visitors": 3321.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 160.0, "Total Spend": 10164.0, "Total Transactions": 45.0, "Total Customers": 44.0, "Median Spend per Transaction": 191.55, "Median Spend per Customer": 193.18 }, "geometry": { "type": "Point", "coordinates": [ -75.15975, 39.953662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "Name": "New Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2800 W Dauphin St", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2022, "Total Visits": 340.0, "Total Visitors": 178.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 109.0, "Total Spend": 2985.0, "Total Transactions": 118.0, "Total Customers": 52.0, "Median Spend per Transaction": 17.76, "Median Spend per Customer": 39.69 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-54v", "Name": "Wood Street Pizza", "Category": "Restaurants and Other Eating Places", "Address": "325 N 12th St", "LATITUDE": 39.958437, "LONGITUDE": -75.158269, "DATE_RANGE_START": 2022, "Total Visits": 172.0, "Total Visitors": 91.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 36.0, "Total Spend": 11499.0, "Total Transactions": 413.0, "Total Customers": 190.0, "Median Spend per Transaction": 26.64, "Median Spend per Customer": 45.22 }, "geometry": { "type": "Point", "coordinates": [ -75.158269, 39.958437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "Name": "Hatville Deli", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 603.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 2355.0, "Total Transactions": 143.0, "Total Customers": 77.0, "Median Spend per Transaction": 13.71, "Median Spend per Customer": 22.48 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "Name": "Bleu Martini", "Category": "Restaurants and Other Eating Places", "Address": "24 S 2nd St", "LATITUDE": 39.949349, "LONGITUDE": -75.144205, "DATE_RANGE_START": 2022, "Total Visits": 1953.0, "Total Visitors": 1664.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 36.0, "Total Spend": 55247.0, "Total Transactions": 807.0, "Total Customers": 275.0, "Median Spend per Transaction": 37.29, "Median Spend per Customer": 94.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144205, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwd-pjv", "Name": "Urban Shop 543", "Category": "Restaurants and Other Eating Places", "Address": "5000 S Broad St", "LATITUDE": 39.889355, "LONGITUDE": -75.175351, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 71.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 338.0, "Total Spend": 391.0, "Total Transactions": 35.0, "Total Customers": 7.0, "Median Spend per Transaction": 10.93, "Median Spend per Customer": 43.41 }, "geometry": { "type": "Point", "coordinates": [ -75.175351, 39.889355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "Name": "Melograno", "Category": "Restaurants and Other Eating Places", "Address": "2012 Sansom St", "LATITUDE": 39.951247, "LONGITUDE": -75.174115, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 54.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 9.0, "Total Spend": 1471.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 70.02, "Median Spend per Customer": 140.04 }, "geometry": { "type": "Point", "coordinates": [ -75.174115, 39.951247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj5-435", "Name": "1 Stop Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3701 Germantown Ave", "LATITUDE": 40.009415, "LONGITUDE": -75.15067, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 59.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 1.0, "Total Spend": 151.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 21.65, "Median Spend per Customer": 43.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15067, 40.009415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnt-3wk", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2491 Aramingo Ave", "LATITUDE": 39.974634, "LONGITUDE": -75.119239, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 115.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 30.0, "Total Spend": 6738.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 96.48, "Median Spend per Customer": 139.33 }, "geometry": { "type": "Point", "coordinates": [ -75.119239, 39.974634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2620 Cottman Ave", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2022, "Total Visits": 436.0, "Total Visitors": 362.0, "POI_CBG": 421010314021.0, "Median Dwell Time": 4.0, "Total Spend": 6669.0, "Total Transactions": 176.0, "Total Customers": 150.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 24.64 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7730 City Ave", "LATITUDE": 39.977128, "LONGITUDE": -75.274366, "DATE_RANGE_START": 2022, "Total Visits": 368.0, "Total Visitors": 263.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 8.0, "Total Spend": 14967.0, "Total Transactions": 371.0, "Total Customers": 280.0, "Median Spend per Transaction": 22.65, "Median Spend per Customer": 26.45 }, "geometry": { "type": "Point", "coordinates": [ -75.274366, 39.977128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9w-zmk", "Name": "Hendrix Pharmacy", "Category": "Health and Personal Care Stores", "Address": "11685 Bustleton Ave", "LATITUDE": 40.118281, "LONGITUDE": -75.017944, "DATE_RANGE_START": 2022, "Total Visits": 554.0, "Total Visitors": 432.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 4.0, "Total Spend": 1252.0, "Total Transactions": 49.0, "Total Customers": 24.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.017944, 40.118281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj7-5fz", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "5843 45 Rising Sun Avenue Philadelphia", "LATITUDE": 40.043629, "LONGITUDE": -75.102849, "DATE_RANGE_START": 2022, "Total Visits": 390.0, "Total Visitors": 265.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 8.0, "Total Spend": 1243.0, "Total Transactions": 84.0, "Total Customers": 54.0, "Median Spend per Transaction": 10.58, "Median Spend per Customer": 12.62 }, "geometry": { "type": "Point", "coordinates": [ -75.102849, 40.043629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-hbk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2121 W Lehigh Ave Ste 5", "LATITUDE": 39.996353, "LONGITUDE": -75.165984, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 89.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 2.0, "Total Spend": 2573.0, "Total Transactions": 146.0, "Total Customers": 101.0, "Median Spend per Transaction": 14.14, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165984, 39.996353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1268 Franklin Mills Cir", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 204.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 4468.0, "Total Transactions": 87.0, "Total Customers": 78.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7901 Oxford Ave", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2022, "Total Visits": 672.0, "Total Visitors": 531.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 3.0, "Total Spend": 18336.0, "Total Transactions": 1375.0, "Total Customers": 833.0, "Median Spend per Transaction": 11.09, "Median Spend per Customer": 15.72 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2951 Market St", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2022, "Total Visits": 28654.0, "Total Visitors": 19157.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 9.0, "Total Spend": 3937.0, "Total Transactions": 706.0, "Total Customers": 359.0, "Median Spend per Transaction": 5.11, "Median Spend per Customer": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-p8n-92k", "Name": "Crab Du Jour Bustleton", "Category": "Restaurants and Other Eating Places", "Address": "6234 Bustleton Ave", "LATITUDE": 40.034004, "LONGITUDE": -75.071898, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 213.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 93.0, "Total Spend": 10771.0, "Total Transactions": 221.0, "Total Customers": 117.0, "Median Spend per Transaction": 37.79, "Median Spend per Customer": 75.18 }, "geometry": { "type": "Point", "coordinates": [ -75.071898, 40.034004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "Name": "Mega Mart", "Category": "Grocery Stores", "Address": "6340 Ogontz Ave", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 57.0, "POI_CBG": 421010277003.0, "Median Dwell Time": 4.0, "Total Spend": 2004.0, "Total Transactions": 125.0, "Total Customers": 56.0, "Median Spend per Transaction": 10.65, "Median Spend per Customer": 27.55 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-sdv", "Name": "P S & Co", "Category": "Specialty Food Stores", "Address": "1706 Locust St", "LATITUDE": 39.94866, "LONGITUDE": -75.16974, "DATE_RANGE_START": 2022, "Total Visits": 157.0, "Total Visitors": 124.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 40.0, "Total Spend": 876.0, "Total Transactions": 23.0, "Total Customers": 9.0, "Median Spend per Transaction": 37.4, "Median Spend per Customer": 74.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16974, 39.94866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5911 Ridge Ave # 5933", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 214.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 3.0, "Total Spend": 28660.0, "Total Transactions": 1174.0, "Total Customers": 772.0, "Median Spend per Transaction": 16.17, "Median Spend per Customer": 23.28 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2601 W Girard Ave", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 213.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 5.0, "Total Spend": 324.0, "Total Transactions": 26.0, "Total Customers": 23.0, "Median Spend per Transaction": 7.9, "Median Spend per Customer": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "321 E Allegheny Ave # 25", "LATITUDE": 39.998177, "LONGITUDE": -75.124544, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 134.0, "POI_CBG": 421010177025.0, "Median Dwell Time": 2.0, "Total Spend": 344.0, "Total Transactions": 56.0, "Total Customers": 42.0, "Median Spend per Transaction": 5.65, "Median Spend per Customer": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.124544, 39.998177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1434 Frankford Ave", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2022, "Total Visits": 1038.0, "Total Visitors": 470.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 59.0, "Total Spend": 2377.0, "Total Transactions": 87.0, "Total Customers": 45.0, "Median Spend per Transaction": 24.08, "Median Spend per Customer": 48.16 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6506 Frankford Ave", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2022, "Total Visits": 1620.0, "Total Visitors": 1009.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 3.0, "Total Spend": 28914.0, "Total Transactions": 2399.0, "Total Customers": 1089.0, "Median Spend per Transaction": 10.18, "Median Spend per Customer": 13.4 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgy-r6k", "Name": "Hopkins Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7700 Ridge Ave", "LATITUDE": 40.051828, "LONGITUDE": -75.236578, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 38.0, "POI_CBG": 421010219001.0, "Median Dwell Time": 3.0, "Total Spend": 347.0, "Total Transactions": 23.0, "Total Customers": 14.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.236578, 40.051828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6501 Harbison Ave", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2022, "Total Visits": 2077.0, "Total Visitors": 1409.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 6.0, "Total Spend": 20293.0, "Total Transactions": 949.0, "Total Customers": 666.0, "Median Spend per Transaction": 14.21, "Median Spend per Customer": 18.54 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "300 N 63rd St", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 294.0, "POI_CBG": 421010096001.0, "Median Dwell Time": 5.0, "Total Spend": 1897.0, "Total Transactions": 157.0, "Total Customers": 73.0, "Median Spend per Transaction": 9.4, "Median Spend per Customer": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "Name": "My Thai", "Category": "Restaurants and Other Eating Places", "Address": "2200 South St", "LATITUDE": 39.945111, "LONGITUDE": -75.178763, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 45.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 250.0, "Total Spend": 1077.0, "Total Transactions": 26.0, "Total Customers": 14.0, "Median Spend per Transaction": 50.3, "Median Spend per Customer": 71.95 }, "geometry": { "type": "Point", "coordinates": [ -75.178763, 39.945111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmd-tvz", "Name": "The Indie Shelf", "Category": "Health and Personal Care Stores", "Address": "2247 Grays Ferry Ave", "LATITUDE": 39.944748, "LONGITUDE": -75.180225, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 152.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 1.0, "Total Spend": 2421.0, "Total Transactions": 40.0, "Total Customers": 21.0, "Median Spend per Transaction": 62.64, "Median Spend per Customer": 101.52 }, "geometry": { "type": "Point", "coordinates": [ -75.180225, 39.944748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9q-hqz", "Name": "Pearle Vision", "Category": "Health and Personal Care Stores", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079188, "LONGITUDE": -75.028586, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 99.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 16.0, "Total Spend": 477.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 136.8, "Median Spend per Customer": 136.8 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.079188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4156 Ridge Ave # 78", "LATITUDE": 40.008575, "LONGITUDE": -75.193866, "DATE_RANGE_START": 2022, "Total Visits": 1415.0, "Total Visitors": 1124.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 4.0, "Total Spend": 3041.0, "Total Transactions": 70.0, "Total Customers": 54.0, "Median Spend per Transaction": 44.29, "Median Spend per Customer": 51.37 }, "geometry": { "type": "Point", "coordinates": [ -75.193866, 40.008575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7w-pvz", "Name": "Philly Gas", "Category": "Gasoline Stations", "Address": "7300 Roosevelt Blvd", "LATITUDE": 40.044968, "LONGITUDE": -75.054721, "DATE_RANGE_START": 2022, "Total Visits": 331.0, "Total Visitors": 274.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 3.0, "Total Spend": 3749.0, "Total Transactions": 148.0, "Total Customers": 73.0, "Median Spend per Transaction": 16.95, "Median Spend per Customer": 36.18 }, "geometry": { "type": "Point", "coordinates": [ -75.054721, 40.044968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "Name": "Saks Off Fifth", "Category": "Department Stores", "Address": "1618 Franklin Mills Cir", "LATITUDE": 40.088158, "LONGITUDE": -74.961632, "DATE_RANGE_START": 2022, "Total Visits": 1293.0, "Total Visitors": 1002.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 30.0, "Total Spend": 14509.0, "Total Transactions": 143.0, "Total Customers": 124.0, "Median Spend per Transaction": 63.17, "Median Spend per Customer": 66.22 }, "geometry": { "type": "Point", "coordinates": [ -74.961632, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-ph6-gkz", "Name": "Habeeb's Convenience Store", "Category": "Grocery Stores", "Address": "1803 N 54th St", "LATITUDE": 39.98437, "LONGITUDE": -75.230985, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 19.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 2.0, "Total Spend": 6844.0, "Total Transactions": 732.0, "Total Customers": 206.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 21.05 }, "geometry": { "type": "Point", "coordinates": [ -75.230985, 39.98437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pm3-vpv", "Name": "Flannel", "Category": "Restaurants and Other Eating Places", "Address": "1819 E Passyunk Ave", "LATITUDE": 39.927129, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 30.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 41.0, "Total Spend": 21756.0, "Total Transactions": 404.0, "Total Customers": 214.0, "Median Spend per Transaction": 43.73, "Median Spend per Customer": 77.44 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.927129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pfy-brk", "Name": "White Yak", "Category": "Restaurants and Other Eating Places", "Address": "6118 Ridge Ave", "LATITUDE": 40.033768, "LONGITUDE": -75.215842, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010213002.0, "Median Dwell Time": 42.0, "Total Spend": 5596.0, "Total Transactions": 112.0, "Total Customers": 54.0, "Median Spend per Transaction": 51.65, "Median Spend per Customer": 96.28 }, "geometry": { "type": "Point", "coordinates": [ -75.215842, 40.033768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dqf", "Name": "Five Brothers", "Category": "Restaurants and Other Eating Places", "Address": "5851 Loretto Ave", "LATITUDE": 40.033693, "LONGITUDE": -75.084934, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010311023.0, "Median Dwell Time": null, "Total Spend": 1834.0, "Total Transactions": 197.0, "Total Customers": 68.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 15.28 }, "geometry": { "type": "Point", "coordinates": [ -75.084934, 40.033693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "Name": "Keller Market", "Category": "Restaurants and Other Eating Places", "Address": "7964 Verree Rd", "LATITUDE": 40.072481, "LONGITUDE": -75.076705, "DATE_RANGE_START": 2022, "Total Visits": 235.0, "Total Visitors": 171.0, "POI_CBG": 421010341002.0, "Median Dwell Time": 5.0, "Total Spend": 1329.0, "Total Transactions": 42.0, "Total Customers": 17.0, "Median Spend per Transaction": 28.39, "Median Spend per Customer": 68.49 }, "geometry": { "type": "Point", "coordinates": [ -75.076705, 40.072481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-qzz", "Name": "Fortune Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1828 South St", "LATITUDE": 39.944339, "LONGITUDE": -75.172891, "DATE_RANGE_START": 2022, "Total Visits": 488.0, "Total Visitors": 272.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 297.0, "Total Spend": 558.0, "Total Transactions": 19.0, "Total Customers": 5.0, "Median Spend per Transaction": 32.35, "Median Spend per Customer": 109.28 }, "geometry": { "type": "Point", "coordinates": [ -75.172891, 39.944339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5601 Lancaster Ave", "LATITUDE": 39.980352, "LONGITUDE": -75.234957, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 51.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 2.0, "Total Spend": 5807.0, "Total Transactions": 308.0, "Total Customers": 267.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 16.76 }, "geometry": { "type": "Point", "coordinates": [ -75.234957, 39.980352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "4600 City Ave", "LATITUDE": 40.002693, "LONGITUDE": -75.222651, "DATE_RANGE_START": 2022, "Total Visits": 434.0, "Total Visitors": 362.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 3.0, "Total Spend": 8902.0, "Total Transactions": 866.0, "Total Customers": 605.0, "Median Spend per Transaction": 9.18, "Median Spend per Customer": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.222651, 40.002693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dvy-mx5", "Name": "Tea Do", "Category": "Restaurants and Other Eating Places", "Address": "3816 Chestnut St", "LATITUDE": 39.95462, "LONGITUDE": -75.199919, "DATE_RANGE_START": 2022, "Total Visits": 1915.0, "Total Visitors": 1221.0, "POI_CBG": 421010088012.0, "Median Dwell Time": 48.0, "Total Spend": 3223.0, "Total Transactions": 319.0, "Total Customers": 185.0, "Median Spend per Transaction": 7.2, "Median Spend per Customer": 13.14 }, "geometry": { "type": "Point", "coordinates": [ -75.199919, 39.95462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-sbk", "Name": "Woven Treasures", "Category": "Used Merchandise Stores", "Address": "2221 Grays Ferry Ave", "LATITUDE": 39.945195, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 51.0, "Total Spend": 7128.0, "Total Transactions": 85.0, "Total Customers": 42.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 61.56 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.945195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p9r-249", "Name": "A Tech", "Category": "Electronics and Appliance Stores", "Address": "9237 Roosevelt Blvd", "LATITUDE": 40.074455, "LONGITUDE": -75.03178, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 16.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 146.0, "Total Spend": 116.0, "Total Transactions": 28.0, "Total Customers": 7.0, "Median Spend per Transaction": 2.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.03178, 40.074455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-d35", "Name": "Dipinto Guitars", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "407 E Girard Ave", "LATITUDE": 39.970499, "LONGITUDE": -75.13019, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 8.0, "Total Spend": 1616.0, "Total Transactions": 23.0, "Total Customers": 10.0, "Median Spend per Transaction": 27.54, "Median Spend per Customer": 55.89 }, "geometry": { "type": "Point", "coordinates": [ -75.13019, 39.970499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "Name": "Adobe Cafe", "Category": "Restaurants and Other Eating Places", "Address": "736 S 8th St", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 16.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 58.0, "Total Spend": 7706.0, "Total Transactions": 202.0, "Total Customers": 71.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 63.82 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pj5-3nq", "Name": "Erie Mini Market", "Category": "Grocery Stores", "Address": "1413 W Erie Ave", "LATITUDE": 40.009145, "LONGITUDE": -75.152232, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 26.0, "POI_CBG": 421010201022.0, "Median Dwell Time": 20.0, "Total Spend": 71.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152232, 40.009145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmd-zfz", "Name": "Small Oven Pastry Shop", "Category": "Restaurants and Other Eating Places", "Address": "2204 Washington Ave", "LATITUDE": 39.939225, "LONGITUDE": -75.180201, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 38.0, "POI_CBG": 421010020001.0, "Median Dwell Time": 1.0, "Total Spend": 1082.0, "Total Transactions": 70.0, "Total Customers": 33.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 34.1 }, "geometry": { "type": "Point", "coordinates": [ -75.180201, 39.939225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "Name": "Davids Mai Lai Wah", "Category": "Restaurants and Other Eating Places", "Address": "1001 Race St", "LATITUDE": 39.955591, "LONGITUDE": -75.155966, "DATE_RANGE_START": 2022, "Total Visits": 486.0, "Total Visitors": 430.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 2.0, "Total Spend": 13969.0, "Total Transactions": 449.0, "Total Customers": 209.0, "Median Spend per Transaction": 28.6, "Median Spend per Customer": 62.1 }, "geometry": { "type": "Point", "coordinates": [ -75.155966, 39.955591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p8n-92k", "Name": "The Taste of Brazil Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "6222 Bustleton Ave", "LATITUDE": 40.033699, "LONGITUDE": -75.072078, "DATE_RANGE_START": 2022, "Total Visits": 185.0, "Total Visitors": 143.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 28.0, "Total Spend": 1320.0, "Total Transactions": 33.0, "Total Customers": 9.0, "Median Spend per Transaction": 32.52, "Median Spend per Customer": 65.29 }, "geometry": { "type": "Point", "coordinates": [ -75.072078, 40.033699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-nnq", "Name": "Duran Grocery", "Category": "Grocery Stores", "Address": "424 W Huntingdon St", "LATITUDE": 39.990021, "LONGITUDE": -75.139877, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 16.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 1.0, "Total Spend": 125.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 6.2, "Median Spend per Customer": 10.58 }, "geometry": { "type": "Point", "coordinates": [ -75.139877, 39.990021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmb-xyv", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "216 N 10th St", "LATITUDE": 39.955915, "LONGITUDE": -75.155905, "DATE_RANGE_START": 2022, "Total Visits": 402.0, "Total Visitors": 336.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 69.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.93, "Median Spend per Customer": 19.85 }, "geometry": { "type": "Point", "coordinates": [ -75.155905, 39.955915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-kj9", "Name": "Mode Moderne", "Category": "Furniture Stores", "Address": "159 N 3rd St", "LATITUDE": 39.9538, "LONGITUDE": -75.144666, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010001002.0, "Median Dwell Time": null, "Total Spend": 706.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 70.2, "Median Spend per Customer": 140.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144666, 39.9538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp5-f4v", "Name": "Potter Mini Market", "Category": "Grocery Stores", "Address": "3099 Potter St", "LATITUDE": 39.99519, "LONGITUDE": -75.116522, "DATE_RANGE_START": 2022, "Total Visits": 1510.0, "Total Visitors": 1002.0, "POI_CBG": 421010177011.0, "Median Dwell Time": 5.0, "Total Spend": 168.0, "Total Transactions": 21.0, "Total Customers": 9.0, "Median Spend per Transaction": 6.15, "Median Spend per Customer": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.116522, 39.99519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-7dv", "Name": "The Monkey Club", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2101 E York St", "LATITUDE": 39.982488, "LONGITUDE": -75.128336, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 19.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 40.0, "Total Spend": 72.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.04, "Median Spend per Customer": 20.65 }, "geometry": { "type": "Point", "coordinates": [ -75.128336, 39.982488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-zmk", "Name": "The Good King Tavern", "Category": "Restaurants and Other Eating Places", "Address": "614 S 7th St", "LATITUDE": 39.941737, "LONGITUDE": -75.15419, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 1.0, "Total Spend": 21778.0, "Total Transactions": 347.0, "Total Customers": 160.0, "Median Spend per Transaction": 57.9, "Median Spend per Customer": 109.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 39.941737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-8d9", "Name": "Bee Natural", "Category": "Specialty Food Stores", "Address": "1136 Arch St", "LATITUDE": 39.952966, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 1198.0, "Total Transactions": 80.0, "Total Customers": 45.0, "Median Spend per Transaction": 12.69, "Median Spend per Customer": 21.84 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.952966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "260 W Lehigh Ave Ste 80", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2022, "Total Visits": 794.0, "Total Visitors": 460.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 6.0, "Total Spend": 11399.0, "Total Transactions": 608.0, "Total Customers": 392.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 17.19 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-p35", "Name": "Circle Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2853 Holme Ave", "LATITUDE": 40.05718, "LONGITUDE": -75.030551, "DATE_RANGE_START": 2022, "Total Visits": 946.0, "Total Visitors": 622.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 25.0, "Total Spend": 37.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.3, "Median Spend per Customer": 10.59 }, "geometry": { "type": "Point", "coordinates": [ -75.030551, 40.05718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6601 N Broad St", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2022, "Total Visits": 382.0, "Total Visitors": 246.0, "POI_CBG": 421010268002.0, "Median Dwell Time": 9.0, "Total Spend": 4286.0, "Total Transactions": 183.0, "Total Customers": 129.0, "Median Spend per Transaction": 9.16, "Median Spend per Customer": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 305.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 5.0, "Total Spend": 234661.0, "Total Transactions": 6497.0, "Total Customers": 2735.0, "Median Spend per Transaction": 25.88, "Median Spend per Customer": 53.9 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-mzf", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "38 S 52nd St # 42", "LATITUDE": 39.958726, "LONGITUDE": -75.2256, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 70.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 152.0, "Total Spend": 2055.0, "Total Transactions": 21.0, "Total Customers": 12.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2256, 39.958726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pm9-9mk", "Name": "Majestic Clubhouse Store", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1 Citizens Bank Way", "LATITUDE": 39.906063, "LONGITUDE": -75.166504, "DATE_RANGE_START": 2022, "Total Visits": 61245.0, "Total Visitors": 47799.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 214.0, "Total Spend": 1973.0, "Total Transactions": 112.0, "Total Customers": 40.0, "Median Spend per Transaction": 16.53, "Median Spend per Customer": 48.4 }, "geometry": { "type": "Point", "coordinates": [ -75.166504, 39.906063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "Name": "Ross Stores", "Category": "Department Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029581, "LONGITUDE": -75.100406, "DATE_RANGE_START": 2022, "Total Visits": 801.0, "Total Visitors": 726.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 39.0, "Total Spend": 10231.0, "Total Transactions": 233.0, "Total Customers": 193.0, "Median Spend per Transaction": 32.69, "Median Spend per Customer": 38.4 }, "geometry": { "type": "Point", "coordinates": [ -75.100406, 40.029581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgg-n3q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2201 W Cambria St", "LATITUDE": 39.998932, "LONGITUDE": -75.167191, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 141.0, "POI_CBG": 421010172011.0, "Median Dwell Time": 3.0, "Total Spend": 1074.0, "Total Transactions": 106.0, "Total Customers": 80.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167191, 39.998932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1300 S Columbus Blvd", "LATITUDE": 39.930175, "LONGITUDE": -75.144763, "DATE_RANGE_START": 2022, "Total Visits": 1707.0, "Total Visitors": 1474.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 3.0, "Total Spend": 19956.0, "Total Transactions": 408.0, "Total Customers": 345.0, "Median Spend per Transaction": 30.36, "Median Spend per Customer": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.144763, 39.930175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvy-kfz", "Name": "Al Waha Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "3800 Spruce St", "LATITUDE": 39.951192, "LONGITUDE": -75.200055, "DATE_RANGE_START": 2022, "Total Visits": 1355.0, "Total Visitors": 629.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 294.0, "Total Spend": 267.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.200055, 39.951192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "Name": "Cafe Soho", "Category": "Restaurants and Other Eating Places", "Address": "468 W Cheltenham Ave", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 146.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 32.0, "Total Spend": 29594.0, "Total Transactions": 495.0, "Total Customers": 221.0, "Median Spend per Transaction": 57.61, "Median Spend per Customer": 91.86 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-224@628-pgb-n5z", "Name": "Crab Du Jour Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "822 N Broad St", "LATITUDE": 39.968792, "LONGITUDE": -75.16057, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 59.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 109.0, "Total Spend": 13283.0, "Total Transactions": 261.0, "Total Customers": 115.0, "Median Spend per Transaction": 40.51, "Median Spend per Customer": 91.37 }, "geometry": { "type": "Point", "coordinates": [ -75.16057, 39.968792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-5zz", "Name": "Panda Garden", "Category": "Restaurants and Other Eating Places", "Address": "130 S 11th St", "LATITUDE": 39.949206, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2022, "Total Visits": 235.0, "Total Visitors": 138.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 176.0, "Total Spend": 545.0, "Total Transactions": 30.0, "Total Customers": 16.0, "Median Spend per Transaction": 17.55, "Median Spend per Customer": 35.1 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.949206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "Name": "Joes Pizza", "Category": "Restaurants and Other Eating Places", "Address": "122 S 16th St", "LATITUDE": 39.95039, "LONGITUDE": -75.167575, "DATE_RANGE_START": 2022, "Total Visits": 253.0, "Total Visitors": 218.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 10.0, "Total Spend": 433.0, "Total Transactions": 24.0, "Total Customers": 16.0, "Median Spend per Transaction": 16.3, "Median Spend per Customer": 24.76 }, "geometry": { "type": "Point", "coordinates": [ -75.167575, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "Name": "Rice & Mix", "Category": "Restaurants and Other Eating Places", "Address": "128 S 12th St", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2022, "Total Visits": 389.0, "Total Visitors": 293.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 4.0, "Total Spend": 4050.0, "Total Transactions": 179.0, "Total Customers": 84.0, "Median Spend per Transaction": 18.73, "Median Spend per Customer": 36.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pm4-pjv", "Name": "Di Bruno Bros", "Category": "Specialty Food Stores", "Address": "930 S 9th St", "LATITUDE": 39.938055, "LONGITUDE": -75.158145, "DATE_RANGE_START": 2022, "Total Visits": 395.0, "Total Visitors": 305.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 56.0, "Total Spend": 66735.0, "Total Transactions": 2666.0, "Total Customers": 1077.0, "Median Spend per Transaction": 16.18, "Median Spend per Customer": 39.51 }, "geometry": { "type": "Point", "coordinates": [ -75.158145, 39.938055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8j-bp9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4011 Cottman Ave", "LATITUDE": 40.035986, "LONGITUDE": -75.039532, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 157.0, "POI_CBG": 421010330006.0, "Median Dwell Time": 8.0, "Total Spend": 12087.0, "Total Transactions": 537.0, "Total Customers": 308.0, "Median Spend per Transaction": 14.8, "Median Spend per Customer": 21.96 }, "geometry": { "type": "Point", "coordinates": [ -75.039532, 40.035986 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-975", "Name": "DK Sushi", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.952998, "LONGITUDE": -75.192279, "DATE_RANGE_START": 2022, "Total Visits": 4645.0, "Total Visitors": 2995.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 50.0, "Total Spend": 924.0, "Total Transactions": 40.0, "Total Customers": 17.0, "Median Spend per Transaction": 18.9, "Median Spend per Customer": 52.92 }, "geometry": { "type": "Point", "coordinates": [ -75.192279, 39.952998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm9-zs5", "Name": "Ishkabibble's", "Category": "Restaurants and Other Eating Places", "Address": "517 South St", "LATITUDE": 39.942066, "LONGITUDE": -75.151372, "DATE_RANGE_START": 2022, "Total Visits": 484.0, "Total Visitors": 411.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 30.0, "Total Spend": 193.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 42.5, "Median Spend per Customer": 55.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151372, 39.942066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-kpv", "Name": "The Goat Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "1907 Sansom St", "LATITUDE": 39.951177, "LONGITUDE": -75.172386, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 120.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 52.0, "Total Spend": 15532.0, "Total Transactions": 341.0, "Total Customers": 124.0, "Median Spend per Transaction": 37.06, "Median Spend per Customer": 89.82 }, "geometry": { "type": "Point", "coordinates": [ -75.172386, 39.951177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-vpv", "Name": "Urban Saloon", "Category": "Restaurants and Other Eating Places", "Address": "2120 Fairmount Ave", "LATITUDE": 39.967182, "LONGITUDE": -75.172904, "DATE_RANGE_START": 2022, "Total Visits": 702.0, "Total Visitors": 490.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 60.0, "Total Spend": 76742.0, "Total Transactions": 1317.0, "Total Customers": 580.0, "Median Spend per Transaction": 41.88, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172904, 39.967182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-h5z", "Name": "Gaetano's", "Category": "Restaurants and Other Eating Places", "Address": "3820 Lancaster Ave", "LATITUDE": 39.960401, "LONGITUDE": -75.19778, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 96.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 970.0, "Total Spend": 1160.0, "Total Transactions": 54.0, "Total Customers": 24.0, "Median Spend per Transaction": 14.6, "Median Spend per Customer": 26.08 }, "geometry": { "type": "Point", "coordinates": [ -75.19778, 39.960401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm4-pvz", "Name": "Kyushu Ramen & Sushi", "Category": "Restaurants and Other Eating Places", "Address": "907 S 9th St", "LATITUDE": 39.938608, "LONGITUDE": -75.157741, "DATE_RANGE_START": 2022, "Total Visits": 911.0, "Total Visitors": 533.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 252.0, "Total Spend": 187.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 34.15, "Median Spend per Customer": 53.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157741, 39.938608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2801 Cottman Ave", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2022, "Total Visits": 1061.0, "Total Visitors": 801.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 4.0, "Total Spend": 17314.0, "Total Transactions": 1162.0, "Total Customers": 904.0, "Median Spend per Transaction": 12.3, "Median Spend per Customer": 14.28 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "Name": "Einstein Brothers", "Category": "Restaurants and Other Eating Places", "Address": "5600 City Ave", "LATITUDE": 39.994394, "LONGITUDE": -75.238422, "DATE_RANGE_START": 2022, "Total Visits": 166.0, "Total Visitors": 125.0, "POI_CBG": 421010117001.0, "Median Dwell Time": 61.0, "Total Spend": 425.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 24.49, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.238422, 39.994394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave Ste A", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 120.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 6.0, "Total Spend": 27998.0, "Total Transactions": 2098.0, "Total Customers": 1382.0, "Median Spend per Transaction": 12.27, "Median Spend per Customer": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2419 S 24th St", "LATITUDE": 39.921672, "LONGITUDE": -75.186144, "DATE_RANGE_START": 2022, "Total Visits": 1059.0, "Total Visitors": 768.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 24.0, "Total Spend": 12077.0, "Total Transactions": 254.0, "Total Customers": 207.0, "Median Spend per Transaction": 35.97, "Median Spend per Customer": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.186144, 39.921672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "Name": "Dollar Value", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2007 S Broad St", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 113.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 4.0, "Total Spend": 8804.0, "Total Transactions": 516.0, "Total Customers": 258.0, "Median Spend per Transaction": 11.92, "Median Spend per Customer": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "Name": "VaporFi", "Category": "Other Miscellaneous Store Retailers", "Address": "1240 South St Unit B", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2022, "Total Visits": 704.0, "Total Visitors": 524.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 46.0, "Total Spend": 4719.0, "Total Transactions": 117.0, "Total Customers": 35.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 93.92 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-wx5", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7720 Lindbergh Blvd", "LATITUDE": 39.903669, "LONGITUDE": -75.238891, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 141.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 11.0, "Total Spend": 286.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 62.19, "Median Spend per Customer": 62.19 }, "geometry": { "type": "Point", "coordinates": [ -75.238891, 39.903669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pnx-qpv", "Name": "Ideal Tile of Philadelphia", "Category": "Home Furnishings Stores", "Address": "1516 N 5th St Ste 102 & 103", "LATITUDE": 39.974873, "LONGITUDE": -75.144396, "DATE_RANGE_START": 2022, "Total Visits": 681.0, "Total Visitors": 240.0, "POI_CBG": 421010144003.0, "Median Dwell Time": 341.0, "Total Spend": 247.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 71.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144396, 39.974873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-94v", "Name": "Mood Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4618 Baltimore Ave", "LATITUDE": 39.948631, "LONGITUDE": -75.215805, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010078005.0, "Median Dwell Time": null, "Total Spend": 2191.0, "Total Transactions": 94.0, "Total Customers": 38.0, "Median Spend per Transaction": 16.15, "Median Spend per Customer": 52.54 }, "geometry": { "type": "Point", "coordinates": [ -75.215805, 39.948631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-qxq", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "3451 Aramingo Ave", "LATITUDE": 39.991716, "LONGITUDE": -75.09926, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 82.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 9.0, "Total Spend": 967.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 125.0, "Median Spend per Customer": 194.97 }, "geometry": { "type": "Point", "coordinates": [ -75.09926, 39.991716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7z-vj9", "Name": "Super Deli", "Category": "Grocery Stores", "Address": "6059 Castor Ave", "LATITUDE": 40.035471, "LONGITUDE": -75.080757, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 70.0, "POI_CBG": 421010312001.0, "Median Dwell Time": 2.0, "Total Spend": 831.0, "Total Transactions": 122.0, "Total Customers": 24.0, "Median Spend per Transaction": 6.44, "Median Spend per Customer": 21.18 }, "geometry": { "type": "Point", "coordinates": [ -75.080757, 40.035471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "Name": "Heng Fa Food Market", "Category": "Grocery Stores", "Address": "130 N 10th St", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2022, "Total Visits": 448.0, "Total Visitors": 355.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 7.0, "Total Spend": 229067.0, "Total Transactions": 1469.0, "Total Customers": 544.0, "Median Spend per Transaction": 20.26, "Median Spend per Customer": 39.55 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-kfz", "Name": "Machi Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "209 S 20th St", "LATITUDE": 39.950008, "LONGITUDE": -75.173818, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010008034.0, "Median Dwell Time": 1.0, "Total Spend": 116.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 11.23, "Median Spend per Customer": 15.67 }, "geometry": { "type": "Point", "coordinates": [ -75.173818, 39.950008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "Name": "Suburban Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10875 Bustleton Ave", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 118.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 5.0, "Total Spend": 271.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6201 N Front St", "LATITUDE": 40.045678, "LONGITUDE": -75.11816, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 120.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 4.0, "Total Spend": 1532.0, "Total Transactions": 185.0, "Total Customers": 127.0, "Median Spend per Transaction": 6.91, "Median Spend per Customer": 8.68 }, "geometry": { "type": "Point", "coordinates": [ -75.11816, 40.045678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-2tv", "Name": "E Z Gas", "Category": "Gasoline Stations", "Address": "8275 Bustleton Ave", "LATITUDE": 40.066202, "LONGITUDE": -75.051009, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 169.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 2.0, "Total Spend": 18249.0, "Total Transactions": 568.0, "Total Customers": 204.0, "Median Spend per Transaction": 25.98, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.051009, 40.066202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmd-s5z", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "2101 South St # 102", "LATITUDE": 39.945275, "LONGITUDE": -75.177239, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 91.0, "POI_CBG": 421010012013.0, "Median Dwell Time": 13.0, "Total Spend": 15257.0, "Total Transactions": 387.0, "Total Customers": 218.0, "Median Spend per Transaction": 31.31, "Median Spend per Customer": 50.84 }, "geometry": { "type": "Point", "coordinates": [ -75.177239, 39.945275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgb-2tv", "Name": "Local", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "201 N 17th St", "LATITUDE": 39.957095, "LONGITUDE": -75.167019, "DATE_RANGE_START": 2022, "Total Visits": 4380.0, "Total Visitors": 1854.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 516.0, "Total Spend": 13929.0, "Total Transactions": 274.0, "Total Customers": 122.0, "Median Spend per Transaction": 24.2, "Median Spend per Customer": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167019, 39.957095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "Name": "Frankford Hall", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1210 Frankford Ave", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2022, "Total Visits": 608.0, "Total Visitors": 556.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 41.0, "Total Spend": 82551.0, "Total Transactions": 3211.0, "Total Customers": 1237.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 52.36 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phy-bhq", "Name": "Old English Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9 Hunting Park Ave", "LATITUDE": 40.014292, "LONGITUDE": -75.126329, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 35.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 5.0, "Total Spend": 745.0, "Total Transactions": 23.0, "Total Customers": 7.0, "Median Spend per Transaction": 27.84, "Median Spend per Customer": 82.84 }, "geometry": { "type": "Point", "coordinates": [ -75.126329, 40.014292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "Name": "Somerton Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "10853 Bustleton Ave", "LATITUDE": 40.110353, "LONGITUDE": -75.024095, "DATE_RANGE_START": 2022, "Total Visits": 3105.0, "Total Visitors": 1814.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 5.0, "Total Spend": 1429.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 108.0, "Median Spend per Customer": 162.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024095, 40.110353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-2hq", "Name": "El Purepecha", "Category": "Restaurants and Other Eating Places", "Address": "315 N 12th St", "LATITUDE": 39.958175, "LONGITUDE": -75.157958, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 134.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 672.0, "Total Spend": 10258.0, "Total Transactions": 272.0, "Total Customers": 120.0, "Median Spend per Transaction": 30.44, "Median Spend per Customer": 62.92 }, "geometry": { "type": "Point", "coordinates": [ -75.157958, 39.958175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9w-q4v", "Name": "Cafe Michelangelo", "Category": "Restaurants and Other Eating Places", "Address": "11901 Bustleton Ave", "LATITUDE": 40.12143, "LONGITUDE": -75.016007, "DATE_RANGE_START": 2022, "Total Visits": 301.0, "Total Visitors": 214.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 64.0, "Total Spend": 17698.0, "Total Transactions": 204.0, "Total Customers": 99.0, "Median Spend per Transaction": 55.94, "Median Spend per Customer": 111.88 }, "geometry": { "type": "Point", "coordinates": [ -75.016007, 40.12143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "Name": "Fleishman Fabrics & Supplies", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "737 S 4th St", "LATITUDE": 39.93943, "LONGITUDE": -75.149516, "DATE_RANGE_START": 2022, "Total Visits": 314.0, "Total Visitors": 124.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 702.0, "Total Spend": 6752.0, "Total Transactions": 216.0, "Total Customers": 99.0, "Median Spend per Transaction": 22.8, "Median Spend per Customer": 43.6 }, "geometry": { "type": "Point", "coordinates": [ -75.149516, 39.93943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7162 Ridge Ave", "LATITUDE": 40.0441, "LONGITUDE": -75.232794, "DATE_RANGE_START": 2022, "Total Visits": 901.0, "Total Visitors": 580.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 12.0, "Total Spend": 190044.0, "Total Transactions": 4805.0, "Total Customers": 2718.0, "Median Spend per Transaction": 26.62, "Median Spend per Customer": 44.77 }, "geometry": { "type": "Point", "coordinates": [ -75.232794, 40.0441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "1415 Washington Ave", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2022, "Total Visits": 671.0, "Total Visitors": 484.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 12.0, "Total Spend": 59446.0, "Total Transactions": 1326.0, "Total Customers": 875.0, "Median Spend per Transaction": 31.38, "Median Spend per Customer": 45.94 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-bp9", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "9910 Frankford Ave", "LATITUDE": 40.064931, "LONGITUDE": -74.985003, "DATE_RANGE_START": 2022, "Total Visits": 3505.0, "Total Visitors": 1591.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 16.0, "Total Spend": 1247.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 119.9, "Median Spend per Customer": 119.9 }, "geometry": { "type": "Point", "coordinates": [ -74.985003, 40.064931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pp2-4jv", "Name": "Piast International Delicatessen", "Category": "Restaurants and Other Eating Places", "Address": "2712 E Allegheny Ave", "LATITUDE": 39.983739, "LONGITUDE": -75.102531, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 103.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 186.0, "Total Spend": 167.0, "Total Transactions": 21.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102531, 39.983739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-ks5", "Name": "The Spice Rack", "Category": "Specialty Food Stores", "Address": "8428 Germantown Ave", "LATITUDE": 40.075333, "LONGITUDE": -75.206122, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 20.0, "Total Spend": 512.0, "Total Transactions": 14.0, "Total Customers": 9.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206122, 40.075333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "Name": "Volo Coffeehouse", "Category": "Restaurants and Other Eating Places", "Address": "4360 Main St", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 29797.0, "Total Transactions": 2233.0, "Total Customers": 688.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 30.48 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p7x-dsq", "Name": "Rib Rack", "Category": "Restaurants and Other Eating Places", "Address": "2100 Tyson Ave", "LATITUDE": 40.042525, "LONGITUDE": -75.063219, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010314022.0, "Median Dwell Time": 20.0, "Total Spend": 6319.0, "Total Transactions": 160.0, "Total Customers": 66.0, "Median Spend per Transaction": 37.56, "Median Spend per Customer": 82.22 }, "geometry": { "type": "Point", "coordinates": [ -75.063219, 40.042525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p72-hqz", "Name": "Dagwood's Pub", "Category": "Restaurants and Other Eating Places", "Address": "4625 Linden Ave", "LATITUDE": 40.05063, "LONGITUDE": -74.999822, "DATE_RANGE_START": 2022, "Total Visits": 664.0, "Total Visitors": 505.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 59.0, "Total Spend": 996.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 60.42, "Median Spend per Customer": 125.42 }, "geometry": { "type": "Point", "coordinates": [ -74.999822, 40.05063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "3348 Grant Ave", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2022, "Total Visits": 132.0, "Total Visitors": 124.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 3.0, "Total Spend": 1081.0, "Total Transactions": 26.0, "Total Customers": 16.0, "Median Spend per Transaction": 33.25, "Median Spend per Customer": 52.92 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-st9", "Name": "Osteria", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "640 N Broad St", "LATITUDE": 39.965046, "LONGITUDE": -75.161654, "DATE_RANGE_START": 2022, "Total Visits": 756.0, "Total Visitors": 465.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 146.0, "Total Spend": 54719.0, "Total Transactions": 389.0, "Total Customers": 200.0, "Median Spend per Transaction": 98.62, "Median Spend per Customer": 188.92 }, "geometry": { "type": "Point", "coordinates": [ -75.161654, 39.965046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-j35", "Name": "Paddy's Old City Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "228 Race St", "LATITUDE": 39.95373, "LONGITUDE": -75.143964, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 64.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 102.0, "Total Spend": 10280.0, "Total Transactions": 176.0, "Total Customers": 64.0, "Median Spend per Transaction": 49.14, "Median Spend per Customer": 129.92 }, "geometry": { "type": "Point", "coordinates": [ -75.143964, 39.95373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-s89", "Name": "Blume", "Category": "Restaurants and Other Eating Places", "Address": "1500 Locust St", "LATITUDE": 39.948455, "LONGITUDE": -75.166831, "DATE_RANGE_START": 2022, "Total Visits": 566.0, "Total Visitors": 366.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 74.0, "Total Spend": 17893.0, "Total Transactions": 267.0, "Total Customers": 134.0, "Median Spend per Transaction": 47.28, "Median Spend per Customer": 94.56 }, "geometry": { "type": "Point", "coordinates": [ -75.166831, 39.948455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-z75", "Name": "Pierogi Factory", "Category": "Restaurants and Other Eating Places", "Address": "9965 Bustleton Ave", "LATITUDE": 40.101174, "LONGITUDE": -75.028995, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 82.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 21.0, "Total Spend": 2780.0, "Total Transactions": 57.0, "Total Customers": 35.0, "Median Spend per Transaction": 44.79, "Median Spend per Customer": 79.43 }, "geometry": { "type": "Point", "coordinates": [ -75.028995, 40.101174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-jjv", "Name": "Pelicana chicken", "Category": "Restaurants and Other Eating Places", "Address": "4002 Spruce St", "LATITUDE": 39.95156, "LONGITUDE": -75.203327, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 87.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 45.0, "Total Spend": 730.0, "Total Transactions": 26.0, "Total Customers": 14.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 51.29 }, "geometry": { "type": "Point", "coordinates": [ -75.203327, 39.95156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pmf-x89", "Name": "The Jimmy Truck", "Category": "Restaurants and Other Eating Places", "Address": "3200 Ludlow St", "LATITUDE": 39.954244, "LONGITUDE": -75.187043, "DATE_RANGE_START": 2022, "Total Visits": 599.0, "Total Visitors": 490.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 12.0, "Total Spend": 2072.0, "Total Transactions": 54.0, "Total Customers": 24.0, "Median Spend per Transaction": 24.3, "Median Spend per Customer": 52.9 }, "geometry": { "type": "Point", "coordinates": [ -75.187043, 39.954244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "Name": "Maggiano's Little Italy", "Category": "Restaurants and Other Eating Places", "Address": "1201 Filbert St", "LATITUDE": 39.953256, "LONGITUDE": -75.160263, "DATE_RANGE_START": 2022, "Total Visits": 756.0, "Total Visitors": 662.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 35023.0, "Total Transactions": 688.0, "Total Customers": 483.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 57.51 }, "geometry": { "type": "Point", "coordinates": [ -75.160263, 39.953256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-xwk", "Name": "Hive Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1444 S Broad St", "LATITUDE": 39.931826, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 92.0, "POI_CBG": 421010030021.0, "Median Dwell Time": 1.0, "Total Spend": 4379.0, "Total Transactions": 481.0, "Total Customers": 136.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 21.14 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.931826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dw4-qj9", "Name": "Four Points By Sheraton", "Category": "Traveler Accommodation", "Address": "4101A Island Ave", "LATITUDE": 39.89167, "LONGITUDE": -75.232621, "DATE_RANGE_START": 2022, "Total Visits": 1389.0, "Total Visitors": 894.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 210.0, "Total Spend": 1306.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 141.97, "Median Spend per Customer": 169.9 }, "geometry": { "type": "Point", "coordinates": [ -75.232621, 39.89167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmf-jjv", "Name": "Harper's Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "31 S 18th St", "LATITUDE": 39.952385, "LONGITUDE": -75.169897, "DATE_RANGE_START": 2022, "Total Visits": 4869.0, "Total Visitors": 2918.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 248.0, "Total Spend": 845.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 60.33, "Median Spend per Customer": 115.77 }, "geometry": { "type": "Point", "coordinates": [ -75.169897, 39.952385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-snq", "Name": "Alice Pizza", "Category": "Restaurants and Other Eating Places", "Address": "235 S 15th St", "LATITUDE": 39.948159, "LONGITUDE": -75.166048, "DATE_RANGE_START": 2022, "Total Visits": 4673.0, "Total Visitors": 3307.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 153.0, "Total Spend": 6098.0, "Total Transactions": 347.0, "Total Customers": 129.0, "Median Spend per Transaction": 11.83, "Median Spend per Customer": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.166048, 39.948159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-yjv", "Name": "Amazing Crab House", "Category": "Restaurants and Other Eating Places", "Address": "604 S 2nd St", "LATITUDE": 39.940979, "LONGITUDE": -75.14584, "DATE_RANGE_START": 2022, "Total Visits": 484.0, "Total Visitors": 378.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 61.0, "Total Spend": 8610.0, "Total Transactions": 112.0, "Total Customers": 59.0, "Median Spend per Transaction": 70.59, "Median Spend per Customer": 118.78 }, "geometry": { "type": "Point", "coordinates": [ -75.14584, 39.940979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-k75", "Name": "Ross Stores", "Category": "Department Stores", "Address": "9906 Roosevelt Blvd", "LATITUDE": 40.094502, "LONGITUDE": -75.018223, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 68.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 2.0, "Total Spend": 5439.0, "Total Transactions": 124.0, "Total Customers": 105.0, "Median Spend per Transaction": 32.97, "Median Spend per Customer": 35.19 }, "geometry": { "type": "Point", "coordinates": [ -75.018223, 40.094502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "Name": "1 Stop Smoke Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "10103 Verree Rd Unit C", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 129.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 2.0, "Total Spend": 2920.0, "Total Transactions": 98.0, "Total Customers": 45.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 45.32 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1100 Pattison Ave", "LATITUDE": 39.904365, "LONGITUDE": -75.169382, "DATE_RANGE_START": 2022, "Total Visits": 4916.0, "Total Visitors": 4187.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 62.0, "Total Spend": 9424.0, "Total Transactions": 451.0, "Total Customers": 235.0, "Median Spend per Transaction": 18.14, "Median Spend per Customer": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.169382, 39.904365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-ph6-whq", "Name": "Cedar Park Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2035 N 63rd St", "LATITUDE": 39.986565, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 21.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 2.0, "Total Spend": 3621.0, "Total Transactions": 157.0, "Total Customers": 63.0, "Median Spend per Transaction": 18.79, "Median Spend per Customer": 45.15 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-435", "Name": "Atlas Pizza & Steaks", "Category": "Restaurants and Other Eating Places", "Address": "736 S 52nd St", "LATITUDE": 39.947544, "LONGITUDE": -75.227506, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010073004.0, "Median Dwell Time": 287.0, "Total Spend": 237.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 16.85, "Median Spend per Customer": 32.61 }, "geometry": { "type": "Point", "coordinates": [ -75.227506, 39.947544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjf-zvf", "Name": "McNally's Tavern Chestnut Hill", "Category": "Restaurants and Other Eating Places", "Address": "8634 Germantown Ave", "LATITUDE": 40.077129, "LONGITUDE": -75.208866, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 47.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 32.0, "Total Spend": 8742.0, "Total Transactions": 169.0, "Total Customers": 82.0, "Median Spend per Transaction": 42.65, "Median Spend per Customer": 74.76 }, "geometry": { "type": "Point", "coordinates": [ -75.208866, 40.077129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St", "LATITUDE": 40.024672, "LONGITUDE": -75.147508, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 64.0, "POI_CBG": 421010283003.0, "Median Dwell Time": 1.0, "Total Spend": 2821.0, "Total Transactions": 397.0, "Total Customers": 206.0, "Median Spend per Transaction": 5.99, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.147508, 40.024672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market Street Concourse", "LATITUDE": 39.952204, "LONGITUDE": -75.166371, "DATE_RANGE_START": 2022, "Total Visits": 6073.0, "Total Visitors": 4157.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 107.0, "Total Spend": 3113.0, "Total Transactions": 517.0, "Total Customers": 232.0, "Median Spend per Transaction": 5.05, "Median Spend per Customer": 7.64 }, "geometry": { "type": "Point", "coordinates": [ -75.166371, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "Name": "C Town Supermarkets", "Category": "Grocery Stores", "Address": "2438 W Lehigh Ave", "LATITUDE": 39.99594, "LONGITUDE": -75.172136, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 42.0, "POI_CBG": 421010169011.0, "Median Dwell Time": 3.0, "Total Spend": 4254.0, "Total Transactions": 225.0, "Total Customers": 63.0, "Median Spend per Transaction": 9.96, "Median Spend per Customer": 21.87 }, "geometry": { "type": "Point", "coordinates": [ -75.172136, 39.99594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7z-qs5", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "6301 Oxford Ave", "LATITUDE": 40.043867, "LONGITUDE": -75.088282, "DATE_RANGE_START": 2022, "Total Visits": 2495.0, "Total Visitors": 1335.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 19.0, "Total Spend": 4636.0, "Total Transactions": 23.0, "Total Customers": 10.0, "Median Spend per Transaction": 222.77, "Median Spend per Customer": 448.75 }, "geometry": { "type": "Point", "coordinates": [ -75.088282, 40.043867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "8101 Oxford Ave", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2022, "Total Visits": 429.0, "Total Visitors": 267.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 2.0, "Total Spend": 288.0, "Total Transactions": 38.0, "Total Customers": 23.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 12.33 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7912 Roosevelt Blvd", "LATITUDE": 40.055662, "LONGITUDE": -75.049241, "DATE_RANGE_START": 2022, "Total Visits": 2768.0, "Total Visitors": 1730.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 3.0, "Total Spend": 113701.0, "Total Transactions": 5251.0, "Total Customers": 2314.0, "Median Spend per Transaction": 13.97, "Median Spend per Customer": 28.75 }, "geometry": { "type": "Point", "coordinates": [ -75.049241, 40.055662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "Name": "Harbison Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "5725 Harbison Ave", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2022, "Total Visits": 181.0, "Total Visitors": 103.0, "POI_CBG": 421010321003.0, "Median Dwell Time": 2.0, "Total Spend": 2717.0, "Total Transactions": 108.0, "Total Customers": 40.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4133 G St", "LATITUDE": 40.011535, "LONGITUDE": -75.111695, "DATE_RANGE_START": 2022, "Total Visits": 812.0, "Total Visitors": 577.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 6.0, "Total Spend": 7704.0, "Total Transactions": 500.0, "Total Customers": 301.0, "Median Spend per Transaction": 10.17, "Median Spend per Customer": 15.48 }, "geometry": { "type": "Point", "coordinates": [ -75.111695, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "Name": "Rittenhouse Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2001 Pine St", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 57.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 2.0, "Total Spend": 1231.0, "Total Transactions": 64.0, "Total Customers": 37.0, "Median Spend per Transaction": 13.56, "Median Spend per Customer": 21.23 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-kfz", "Name": "The Rittenhouse Hotel", "Category": "Traveler Accommodation", "Address": "210 W Rittenhouse Sq", "LATITUDE": 39.949841, "LONGITUDE": -75.173264, "DATE_RANGE_START": 2022, "Total Visits": 747.0, "Total Visitors": 472.0, "POI_CBG": 421010008034.0, "Median Dwell Time": 105.0, "Total Spend": 28800.0, "Total Transactions": 45.0, "Total Customers": 23.0, "Median Spend per Transaction": 178.73, "Median Spend per Customer": 467.68 }, "geometry": { "type": "Point", "coordinates": [ -75.173264, 39.949841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "Name": "Secret Garden", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "7631 Ridge Ave", "LATITUDE": 40.051859, "LONGITUDE": -75.235556, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 61.0, "POI_CBG": 421010218002.0, "Median Dwell Time": 2.0, "Total Spend": 5740.0, "Total Transactions": 146.0, "Total Customers": 78.0, "Median Spend per Transaction": 30.22, "Median Spend per Customer": 55.02 }, "geometry": { "type": "Point", "coordinates": [ -75.235556, 40.051859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pmb-ce5", "Name": "Ralphs Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "760 S 9th St", "LATITUDE": 39.940063, "LONGITUDE": -75.157832, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 174.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 59.0, "Total Spend": 375.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 107.5, "Median Spend per Customer": 107.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157832, 39.940063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "Name": "Jj Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "2028 Chestnut St", "LATITUDE": 39.951963, "LONGITUDE": -75.174719, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 63.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 83.0, "Total Spend": 11549.0, "Total Transactions": 247.0, "Total Customers": 141.0, "Median Spend per Transaction": 41.04, "Median Spend per Customer": 61.36 }, "geometry": { "type": "Point", "coordinates": [ -75.174719, 39.951963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-xqz", "Name": "Ambassador", "Category": "Restaurants and Other Eating Places", "Address": "635 W Girard Ave", "LATITUDE": 39.97078, "LONGITUDE": -75.147954, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 57.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 41.0, "Total Spend": 1641.0, "Total Transactions": 51.0, "Total Customers": 12.0, "Median Spend per Transaction": 18.75, "Median Spend per Customer": 93.84 }, "geometry": { "type": "Point", "coordinates": [ -75.147954, 39.97078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-jd9", "Name": "Westin Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "99 South 17th Street At Liberty Place", "LATITUDE": 39.952041, "LONGITUDE": -75.168491, "DATE_RANGE_START": 2022, "Total Visits": 2801.0, "Total Visitors": 1981.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 127.0, "Total Spend": 22179.0, "Total Transactions": 122.0, "Total Customers": 82.0, "Median Spend per Transaction": 66.1, "Median Spend per Customer": 193.18 }, "geometry": { "type": "Point", "coordinates": [ -75.168491, 39.952041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-6p9", "Name": "Dolce Italian Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "1437 Chestnut St", "LATITUDE": 39.951185, "LONGITUDE": -75.165142, "DATE_RANGE_START": 2022, "Total Visits": 4390.0, "Total Visitors": 2627.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 364.0, "Total Spend": 1416.0, "Total Transactions": 23.0, "Total Customers": 10.0, "Median Spend per Transaction": 42.72, "Median Spend per Customer": 85.44 }, "geometry": { "type": "Point", "coordinates": [ -75.165142, 39.951185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9q-ht9", "Name": "Bubbakoo's Burritos", "Category": "Restaurants and Other Eating Places", "Address": "2550 Grant Ave", "LATITUDE": 40.078769, "LONGITUDE": -75.027229, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 61.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 2723.0, "Total Transactions": 148.0, "Total Customers": 64.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 37.23 }, "geometry": { "type": "Point", "coordinates": [ -75.027229, 40.078769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-cbk", "Name": "Oregon Diner", "Category": "Restaurants and Other Eating Places", "Address": "302 W Oregon Ave", "LATITUDE": 39.913868, "LONGITUDE": -75.152939, "DATE_RANGE_START": 2022, "Total Visits": 767.0, "Total Visitors": 573.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 39.0, "Total Spend": 854.0, "Total Transactions": 28.0, "Total Customers": 16.0, "Median Spend per Transaction": 28.73, "Median Spend per Customer": 45.4 }, "geometry": { "type": "Point", "coordinates": [ -75.152939, 39.913868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgb-7h5", "Name": "Pete's Famous Pizza Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2328 Fairmount Ave", "LATITUDE": 39.967183, "LONGITUDE": -75.176415, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 59.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 22.0, "Total Spend": 209.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176415, 39.967183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "Name": "Varga Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "941 Spruce St", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2022, "Total Visits": 188.0, "Total Visitors": 176.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 1.0, "Total Spend": 12669.0, "Total Transactions": 207.0, "Total Customers": 98.0, "Median Spend per Transaction": 45.69, "Median Spend per Customer": 87.08 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@63s-dw4-rzf", "Name": "Admirals Club Terminal F", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8000 Essington Ave", "LATITUDE": 39.880659, "LONGITUDE": -75.23736, "DATE_RANGE_START": 2022, "Total Visits": 13519.0, "Total Visitors": 11242.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 31.0, "Total Spend": 414.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 59.41, "Median Spend per Customer": 118.82 }, "geometry": { "type": "Point", "coordinates": [ -75.23736, 39.880659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2600 Grant Ave", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2022, "Total Visits": 1291.0, "Total Visitors": 916.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 111042.0, "Total Transactions": 5709.0, "Total Customers": 2293.0, "Median Spend per Transaction": 11.47, "Median Spend per Customer": 26.49 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-qs5", "Name": "Panasian Buffet", "Category": "Restaurants and Other Eating Places", "Address": "833 Adams Ave", "LATITUDE": 40.030993, "LONGITUDE": -75.10376, "DATE_RANGE_START": 2022, "Total Visits": 530.0, "Total Visitors": 469.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 30.0, "Total Spend": 11373.0, "Total Transactions": 256.0, "Total Customers": 110.0, "Median Spend per Transaction": 33.45, "Median Spend per Customer": 77.72 }, "geometry": { "type": "Point", "coordinates": [ -75.10376, 40.030993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgg-n3q", "Name": "Wine & Spirits Stores", "Category": "Beer, Wine, and Liquor Stores", "Address": "2913 N 22nd St", "LATITUDE": 39.998975, "LONGITUDE": -75.166581, "DATE_RANGE_START": 2022, "Total Visits": 228.0, "Total Visitors": 125.0, "POI_CBG": 421010173001.0, "Median Dwell Time": 7.0, "Total Spend": 669.0, "Total Transactions": 24.0, "Total Customers": 14.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.166581, 39.998975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "Name": "The Bottle Shop", "Category": "Beer, Wine, and Liquor Stores", "Address": "1616 E Passyunk Ave", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010029001.0, "Median Dwell Time": null, "Total Spend": 18271.0, "Total Transactions": 746.0, "Total Customers": 260.0, "Median Spend per Transaction": 22.09, "Median Spend per Customer": 44.32 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "Name": "Lee's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "930 N 29th St", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 959.0, "Total Spend": 4247.0, "Total Transactions": 253.0, "Total Customers": 92.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-ph8-qmk", "Name": "Blue Lagoon", "Category": "Restaurants and Other Eating Places", "Address": "7548 Haverford Ave", "LATITUDE": 39.977926, "LONGITUDE": -75.26739, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 21.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 103.0, "Total Spend": 533.0, "Total Transactions": 19.0, "Total Customers": 9.0, "Median Spend per Transaction": 30.78, "Median Spend per Customer": 60.48 }, "geometry": { "type": "Point", "coordinates": [ -75.26739, 39.977926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pjk-3nq", "Name": "Pina's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8919 Ridge Ave", "LATITUDE": 40.069435, "LONGITUDE": -75.239981, "DATE_RANGE_START": 2022, "Total Visits": 561.0, "Total Visitors": 382.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 36.0, "Total Spend": 333.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 17.77, "Median Spend per Customer": 35.54 }, "geometry": { "type": "Point", "coordinates": [ -75.239981, 40.069435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "Name": "Rosario's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1256 S 15th St Fl 1", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 52.0, "POI_CBG": 421010022002.0, "Median Dwell Time": 2.0, "Total Spend": 2085.0, "Total Transactions": 84.0, "Total Customers": 40.0, "Median Spend per Transaction": 19.35, "Median Spend per Customer": 38.7 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-835", "Name": "Luhv Vegan Deli", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953213, "LONGITUDE": -75.159384, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 5848.0, "Total Transactions": 336.0, "Total Customers": 159.0, "Median Spend per Transaction": 16.13, "Median Spend per Customer": 31.02 }, "geometry": { "type": "Point", "coordinates": [ -75.159384, 39.953213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pgb-fxq", "Name": "Cherry Street Tavern", "Category": "Restaurants and Other Eating Places", "Address": "129 N 22nd St", "LATITUDE": 39.95699, "LONGITUDE": -75.175753, "DATE_RANGE_START": 2022, "Total Visits": 127.0, "Total Visitors": 98.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 46.0, "Total Spend": 843.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 121.0, "Median Spend per Customer": 242.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175753, 39.95699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgd-zfz", "Name": "Ramen Bar", "Category": "Restaurants and Other Eating Places", "Address": "3400 Lancaster Ave", "LATITUDE": 39.957167, "LONGITUDE": -75.192099, "DATE_RANGE_START": 2022, "Total Visits": 652.0, "Total Visitors": 115.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 809.0, "Total Spend": 1407.0, "Total Transactions": 38.0, "Total Customers": 24.0, "Median Spend per Transaction": 45.44, "Median Spend per Customer": 55.46 }, "geometry": { "type": "Point", "coordinates": [ -75.192099, 39.957167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "Name": "Spasso Italian Grill", "Category": "Restaurants and Other Eating Places", "Address": "34 S Front St", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2022, "Total Visits": 528.0, "Total Visitors": 500.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 39.0, "Total Spend": 35775.0, "Total Transactions": 362.0, "Total Customers": 185.0, "Median Spend per Transaction": 86.4, "Median Spend per Customer": 165.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmc-vzz", "Name": "Chopstick House", "Category": "Restaurants and Other Eating Places", "Address": "1626 S Columbus Blvd", "LATITUDE": 39.926547, "LONGITUDE": -75.14612, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 80.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 8.0, "Total Spend": 2083.0, "Total Transactions": 96.0, "Total Customers": 42.0, "Median Spend per Transaction": 15.66, "Median Spend per Customer": 38.63 }, "geometry": { "type": "Point", "coordinates": [ -75.14612, 39.926547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-td9", "Name": "Volver", "Category": "Restaurants and Other Eating Places", "Address": "300 S Broad St", "LATITUDE": 39.946987, "LONGITUDE": -75.165701, "DATE_RANGE_START": 2022, "Total Visits": 1441.0, "Total Visitors": 1106.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 1.0, "Total Spend": 3970.0, "Total Transactions": 37.0, "Total Customers": 21.0, "Median Spend per Transaction": 61.3, "Median Spend per Customer": 156.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165701, 39.946987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "1527 Chestnut St", "LATITUDE": 39.951369, "LONGITUDE": -75.166562, "DATE_RANGE_START": 2022, "Total Visits": 390.0, "Total Visitors": 338.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 4.0, "Total Spend": 9137.0, "Total Transactions": 523.0, "Total Customers": 423.0, "Median Spend per Transaction": 17.1, "Median Spend per Customer": 17.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166562, 39.951369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "29 Snyder Ave", "LATITUDE": 39.923331, "LONGITUDE": -75.144837, "DATE_RANGE_START": 2022, "Total Visits": 1071.0, "Total Visitors": 753.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 10.0, "Total Spend": 220.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.8, "Median Spend per Customer": 17.18 }, "geometry": { "type": "Point", "coordinates": [ -75.144837, 39.923331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-q75", "Name": "Stacy's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7856 Haverford Ave", "LATITUDE": 39.979079, "LONGITUDE": -75.268686, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 49.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 6.0, "Total Spend": 398.0, "Total Transactions": 24.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.4, "Median Spend per Customer": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.268686, 39.979079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6738 Bustleton Ave", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 49.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 35.0, "Total Spend": 4360.0, "Total Transactions": 186.0, "Total Customers": 92.0, "Median Spend per Transaction": 17.8, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg9-ty9", "Name": "Brandywine Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1501 Spring Garden St", "LATITUDE": 39.962927, "LONGITUDE": -75.163263, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 52.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 1.0, "Total Spend": 561.0, "Total Transactions": 45.0, "Total Customers": 24.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.962927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pnw-m49", "Name": "One Shot Coffee", "Category": "Restaurants and Other Eating Places", "Address": "217 W George St", "LATITUDE": 39.96771, "LONGITUDE": -75.140654, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 1.0, "Total Spend": 22527.0, "Total Transactions": 1287.0, "Total Customers": 449.0, "Median Spend per Transaction": 14.28, "Median Spend per Customer": 37.16 }, "geometry": { "type": "Point", "coordinates": [ -75.140654, 39.96771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-phm-8gk", "Name": "Tri State Auto", "Category": "Automobile Dealers", "Address": "6626 N Broad St", "LATITUDE": 40.05453, "LONGITUDE": -75.141682, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 21.0, "POI_CBG": 421010268003.0, "Median Dwell Time": 238.0, "Total Spend": 1436.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 206.0, "Median Spend per Customer": 412.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141682, 40.05453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "Name": "Suit Corner", "Category": "Clothing Stores", "Address": "302 Market St", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2022, "Total Visits": 1148.0, "Total Visitors": 1028.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 20.0, "Total Spend": 3836.0, "Total Transactions": 24.0, "Total Customers": 10.0, "Median Spend per Transaction": 99.88, "Median Spend per Customer": 228.88 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-k75", "Name": "Best Buy", "Category": "Electronics and Appliance Stores", "Address": "9733 Roosevelt Blvd", "LATITUDE": 40.082306, "LONGITUDE": -75.023635, "DATE_RANGE_START": 2022, "Total Visits": 655.0, "Total Visitors": 571.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 12.0, "Total Spend": 4704.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 92.4, "Median Spend per Customer": 92.4 }, "geometry": { "type": "Point", "coordinates": [ -75.023635, 40.082306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2535 Aramingo Ave", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2022, "Total Visits": 1256.0, "Total Visitors": 871.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 4.0, "Total Spend": 185564.0, "Total Transactions": 7471.0, "Total Customers": 3984.0, "Median Spend per Transaction": 16.07, "Median Spend per Customer": 29.44 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "Name": "Green Farm", "Category": "Specialty Food Stores", "Address": "10690 Bustleton Ave", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2022, "Total Visits": 503.0, "Total Visitors": 394.0, "POI_CBG": 421010357012.0, "Median Dwell Time": 3.0, "Total Spend": 4105.0, "Total Transactions": 200.0, "Total Customers": 75.0, "Median Spend per Transaction": 19.29, "Median Spend per Customer": 42.26 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22h@628-pmf-n3q", "Name": "Genji", "Category": "Specialty Food Stores", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953358, "LONGITUDE": -75.165439, "DATE_RANGE_START": 2022, "Total Visits": 446.0, "Total Visitors": 331.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 43.0, "Total Spend": 664.0, "Total Transactions": 45.0, "Total Customers": 26.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.165439, 39.953358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "Name": "Abyssinia", "Category": "Restaurants and Other Eating Places", "Address": "229 S 45th St", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 42.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 17.0, "Total Spend": 6753.0, "Total Transactions": 199.0, "Total Customers": 103.0, "Median Spend per Transaction": 30.2, "Median Spend per Customer": 51.24 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-xbk", "Name": "Ricky Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2 N 4th St # 32", "LATITUDE": 39.951154, "LONGITUDE": -75.14673, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 51.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 3.0, "Total Spend": 464.0, "Total Transactions": 21.0, "Total Customers": 12.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14673, 39.951154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bzf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "649 Foulkrod St", "LATITUDE": 40.035481, "LONGITUDE": -75.10725, "DATE_RANGE_START": 2022, "Total Visits": 376.0, "Total Visitors": 244.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 42.0, "Total Spend": 1067.0, "Total Transactions": 141.0, "Total Customers": 92.0, "Median Spend per Transaction": 7.14, "Median Spend per Customer": 7.73 }, "geometry": { "type": "Point", "coordinates": [ -75.10725, 40.035481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pgg-b8v", "Name": "Shrimp Express II", "Category": "Restaurants and Other Eating Places", "Address": "2205 W Indiana Ave", "LATITUDE": 40.000369, "LONGITUDE": -75.16696, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010172013.0, "Median Dwell Time": 1.0, "Total Spend": 988.0, "Total Transactions": 30.0, "Total Customers": 14.0, "Median Spend per Transaction": 29.88, "Median Spend per Customer": 52.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16696, 40.000369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phy-h3q", "Name": "Latin Fashion", "Category": "Clothing Stores", "Address": "4648 N 5th St", "LATITUDE": 40.022384, "LONGITUDE": -75.133854, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 3.0, "Total Spend": 2648.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133854, 40.022384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-xt9", "Name": "Family Food Market", "Category": "Grocery Stores", "Address": "273 W York St", "LATITUDE": 39.987227, "LONGITUDE": -75.138158, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 17.0, "POI_CBG": 421010163004.0, "Median Dwell Time": 20.0, "Total Spend": 3239.0, "Total Transactions": 312.0, "Total Customers": 92.0, "Median Spend per Transaction": 7.8, "Median Spend per Customer": 20.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138158, 39.987227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "Name": "Mr. Tire", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6740 Frankford Ave", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 23.0, "POI_CBG": 421010316006.0, "Median Dwell Time": 21.0, "Total Spend": 2399.0, "Total Transactions": 12.0, "Total Customers": 9.0, "Median Spend per Transaction": 142.57, "Median Spend per Customer": 243.44 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phy-wx5", "Name": "Brother's Pizza House II", "Category": "Restaurants and Other Eating Places", "Address": "4948 Rising Sun Ave", "LATITUDE": 40.026513, "LONGITUDE": -75.12182, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 4.0, "Total Spend": 178.0, "Total Transactions": 9.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.84, "Median Spend per Customer": 50.96 }, "geometry": { "type": "Point", "coordinates": [ -75.12182, 40.026513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1190 E Luzerne St", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2022, "Total Visits": 247.0, "Total Visitors": 183.0, "POI_CBG": 421010191003.0, "Median Dwell Time": 2.0, "Total Spend": 169.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 7.23, "Median Spend per Customer": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-tsq", "Name": "Chaes Food LLC", "Category": "Specialty Food Stores", "Address": "2100 N American St", "LATITUDE": 39.983616, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2022, "Total Visits": 179.0, "Total Visitors": 61.0, "POI_CBG": 421010162002.0, "Median Dwell Time": 365.0, "Total Spend": 19528.0, "Total Transactions": 37.0, "Total Customers": 14.0, "Median Spend per Transaction": 247.5, "Median Spend per Customer": 295.03 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.983616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "Name": "Moore Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "601 Moore St", "LATITUDE": 39.926601, "LONGITUDE": -75.156132, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 197.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 2.0, "Total Spend": 22405.0, "Total Transactions": 662.0, "Total Customers": 214.0, "Median Spend per Transaction": 27.15, "Median Spend per Customer": 64.76 }, "geometry": { "type": "Point", "coordinates": [ -75.156132, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-92k", "Name": "Eddie Bauer Outlet", "Category": "Clothing Stores", "Address": "901 Market St Unit 2050", "LATITUDE": 39.951639, "LONGITUDE": -75.155758, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 2599.0, "Total Transactions": 51.0, "Total Customers": 47.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 37.98 }, "geometry": { "type": "Point", "coordinates": [ -75.155758, 39.951639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028739, "LONGITUDE": -75.099173, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 305.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 5.0, "Total Spend": 12775.0, "Total Transactions": 638.0, "Total Customers": 530.0, "Median Spend per Transaction": 14.53, "Median Spend per Customer": 17.34 }, "geometry": { "type": "Point", "coordinates": [ -75.099173, 40.028739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4617 N 5th St", "LATITUDE": 40.021323, "LONGITUDE": -75.133522, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 146.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 4.0, "Total Spend": 1322.0, "Total Transactions": 120.0, "Total Customers": 92.0, "Median Spend per Transaction": 8.28, "Median Spend per Customer": 9.83 }, "geometry": { "type": "Point", "coordinates": [ -75.133522, 40.021323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-p9k-2zf", "Name": "Dollar Surplus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103109, "LONGITUDE": -75.010252, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 500.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 16.0, "Total Spend": 569.0, "Total Transactions": 49.0, "Total Customers": 26.0, "Median Spend per Transaction": 10.09, "Median Spend per Customer": 20.18 }, "geometry": { "type": "Point", "coordinates": [ -75.010252, 40.103109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-73q", "Name": "Dr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.947797, "LONGITUDE": -75.193456, "DATE_RANGE_START": 2022, "Total Visits": 17711.0, "Total Visitors": 9317.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 114.0, "Total Spend": 9837.0, "Total Transactions": 1986.0, "Total Customers": 448.0, "Median Spend per Transaction": 4.43, "Median Spend per Customer": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.193456, 39.947797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-87q", "Name": "Marriott Hotels", "Category": "Traveler Accommodation", "Address": "1201 Market St", "LATITUDE": 39.952751, "LONGITUDE": -75.160485, "DATE_RANGE_START": 2022, "Total Visits": 16025.0, "Total Visitors": 9542.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 200.0, "Total Spend": 2935.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 104.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160485, 39.952751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phd-h3q", "Name": "North American Motor Inns", "Category": "Traveler Accommodation", "Address": "4444 City Ave", "LATITUDE": 40.003057, "LONGITUDE": -75.221338, "DATE_RANGE_START": 2022, "Total Visits": 322.0, "Total Visitors": 240.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 182.0, "Total Spend": 1351.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 387.68, "Median Spend per Customer": 387.68 }, "geometry": { "type": "Point", "coordinates": [ -75.221338, 40.003057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgd-zs5", "Name": "The Study at University City", "Category": "Traveler Accommodation", "Address": "20 S 33rd St", "LATITUDE": 39.954404, "LONGITUDE": -75.19003, "DATE_RANGE_START": 2022, "Total Visits": 1495.0, "Total Visitors": 831.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 477.0, "Total Spend": 149.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 21.34, "Median Spend per Customer": 42.67 }, "geometry": { "type": "Point", "coordinates": [ -75.19003, 39.954404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-66k", "Name": "Oloroso", "Category": "Restaurants and Other Eating Places", "Address": "1121 Walnut St", "LATITUDE": 39.948946, "LONGITUDE": -75.159995, "DATE_RANGE_START": 2022, "Total Visits": 2065.0, "Total Visitors": 1467.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 67.0, "Total Spend": 5589.0, "Total Transactions": 44.0, "Total Customers": 24.0, "Median Spend per Transaction": 79.0, "Median Spend per Customer": 174.55 }, "geometry": { "type": "Point", "coordinates": [ -75.159995, 39.948946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.913861, "LONGITUDE": -75.154438, "DATE_RANGE_START": 2022, "Total Visits": 2761.0, "Total Visitors": 1598.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 15.0, "Total Spend": 970.0, "Total Transactions": 12.0, "Total Customers": 10.0, "Median Spend per Transaction": 65.59, "Median Spend per Customer": 98.88 }, "geometry": { "type": "Point", "coordinates": [ -75.154438, 39.913861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9377 Krewstown Rd", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2022, "Total Visits": 1636.0, "Total Visitors": 1096.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 3.0, "Total Spend": 109601.0, "Total Transactions": 5617.0, "Total Customers": 2094.0, "Median Spend per Transaction": 12.3, "Median Spend per Customer": 25.49 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm3-vzz", "Name": "Barcelona Wine Bar & Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1709 E Passyunk Ave", "LATITUDE": 39.928118, "LONGITUDE": -75.165293, "DATE_RANGE_START": 2022, "Total Visits": 225.0, "Total Visitors": 157.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 97.0, "Total Spend": 3345.0, "Total Transactions": 31.0, "Total Customers": 19.0, "Median Spend per Transaction": 112.77, "Median Spend per Customer": 186.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165293, 39.928118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pm9-zs5", "Name": "Retrospect", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "508 South St", "LATITUDE": 39.941639, "LONGITUDE": -75.151247, "DATE_RANGE_START": 2022, "Total Visits": 859.0, "Total Visitors": 679.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 17.0, "Total Spend": 941.0, "Total Transactions": 45.0, "Total Customers": 26.0, "Median Spend per Transaction": 18.5, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151247, 39.941639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pgc-hh5", "Name": "Leidy's Food Market", "Category": "Grocery Stores", "Address": "4178 Leidy Ave", "LATITUDE": 39.974749, "LONGITUDE": -75.209918, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010110002.0, "Median Dwell Time": null, "Total Spend": 351.0, "Total Transactions": 38.0, "Total Customers": 17.0, "Median Spend per Transaction": 5.46, "Median Spend per Customer": 10.92 }, "geometry": { "type": "Point", "coordinates": [ -75.209918, 39.974749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj3-b8v", "Name": "The Stand", "Category": "Restaurants and Other Eating Places", "Address": "1844 W Hunting Park Ave", "LATITUDE": 40.01377, "LONGITUDE": -75.15794, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010202005.0, "Median Dwell Time": null, "Total Spend": 16325.0, "Total Transactions": 321.0, "Total Customers": 134.0, "Median Spend per Transaction": 36.53, "Median Spend per Customer": 82.24 }, "geometry": { "type": "Point", "coordinates": [ -75.15794, 40.01377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgh-vmk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1936 Liacouras Walk", "LATITUDE": 39.982434, "LONGITUDE": -75.155908, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 218.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 21.0, "Total Spend": 3383.0, "Total Transactions": 240.0, "Total Customers": 174.0, "Median Spend per Transaction": 13.16, "Median Spend per Customer": 15.04 }, "geometry": { "type": "Point", "coordinates": [ -75.155908, 39.982434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5753 Wayne Ave", "LATITUDE": 40.032663, "LONGITUDE": -75.179788, "DATE_RANGE_START": 2022, "Total Visits": 348.0, "Total Visitors": 211.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 4.0, "Total Spend": 11814.0, "Total Transactions": 1413.0, "Total Customers": 629.0, "Median Spend per Transaction": 7.38, "Median Spend per Customer": 10.15 }, "geometry": { "type": "Point", "coordinates": [ -75.179788, 40.032663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "Name": "Schmear It", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956751, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 58.0, "Total Spend": 3134.0, "Total Transactions": 321.0, "Total Customers": 136.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pjf-jvz", "Name": "Bahia Bowls Chestnut Hill", "Category": "Restaurants and Other Eating Places", "Address": "8136 Germantown Ave", "LATITUDE": 40.072819, "LONGITUDE": -75.202597, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 7.0, "Total Spend": 7044.0, "Total Transactions": 448.0, "Total Customers": 169.0, "Median Spend per Transaction": 12.36, "Median Spend per Customer": 32.04 }, "geometry": { "type": "Point", "coordinates": [ -75.202597, 40.072819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-wkz", "Name": "Garces Events", "Category": "Special Food Services", "Address": "2401 Walnut St", "LATITUDE": 39.951558, "LONGITUDE": -75.180009, "DATE_RANGE_START": 2022, "Total Visits": 521.0, "Total Visitors": 354.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 103.0, "Total Spend": 20414.0, "Total Transactions": 1228.0, "Total Customers": 578.0, "Median Spend per Transaction": 13.2, "Median Spend per Customer": 27.44 }, "geometry": { "type": "Point", "coordinates": [ -75.180009, 39.951558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-y7q", "Name": "Brothers Shoes", "Category": "Shoe Stores", "Address": "3619 Germantown Ave", "LATITUDE": 40.007979, "LONGITUDE": -75.150258, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 31.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 1.0, "Total Spend": 662.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 79.99, "Median Spend per Customer": 119.98 }, "geometry": { "type": "Point", "coordinates": [ -75.150258, 40.007979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.962963, "LONGITUDE": -75.174058, "DATE_RANGE_START": 2022, "Total Visits": 2455.0, "Total Visitors": 1474.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 19.0, "Total Spend": 178348.0, "Total Transactions": 4227.0, "Total Customers": 1777.0, "Median Spend per Transaction": 25.29, "Median Spend per Customer": 47.67 }, "geometry": { "type": "Point", "coordinates": [ -75.174058, 39.962963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-6rk", "Name": "The Bishop's Collar", "Category": "Restaurants and Other Eating Places", "Address": "2349 Fairmount Ave", "LATITUDE": 39.967569, "LONGITUDE": -75.176728, "DATE_RANGE_START": 2022, "Total Visits": 512.0, "Total Visitors": 397.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 58.0, "Total Spend": 9269.0, "Total Transactions": 221.0, "Total Customers": 84.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 85.78 }, "geometry": { "type": "Point", "coordinates": [ -75.176728, 39.967569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-jgk", "Name": "The Happy Rooster", "Category": "Restaurants and Other Eating Places", "Address": "118 S 16th St", "LATITUDE": 39.950462, "LONGITUDE": -75.16756, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 139.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 47.0, "Total Spend": 10298.0, "Total Transactions": 251.0, "Total Customers": 118.0, "Median Spend per Transaction": 35.2, "Median Spend per Customer": 69.95 }, "geometry": { "type": "Point", "coordinates": [ -75.16756, 39.950462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-ty9", "Name": "Shane Confectionery", "Category": "Specialty Food Stores", "Address": "110 Market St", "LATITUDE": 39.949497, "LONGITUDE": -75.14262, "DATE_RANGE_START": 2022, "Total Visits": 1265.0, "Total Visitors": 1058.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 31.0, "Total Spend": 4330.0, "Total Transactions": 155.0, "Total Customers": 82.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14262, 39.949497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6515 Castor Ave", "LATITUDE": 40.040851, "LONGITUDE": -75.075239, "DATE_RANGE_START": 2022, "Total Visits": 507.0, "Total Visitors": 326.0, "POI_CBG": 421010313004.0, "Median Dwell Time": 6.0, "Total Spend": 4258.0, "Total Transactions": 268.0, "Total Customers": 179.0, "Median Spend per Transaction": 11.43, "Median Spend per Customer": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.075239, 40.040851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3670 Richmond St", "LATITUDE": 39.989253, "LONGITUDE": -75.090212, "DATE_RANGE_START": 2022, "Total Visits": 2188.0, "Total Visitors": 1206.0, "POI_CBG": 421010379006.0, "Median Dwell Time": 4.0, "Total Spend": 443.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 16.3, "Median Spend per Customer": 35.25 }, "geometry": { "type": "Point", "coordinates": [ -75.090212, 39.989253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8t-vvf", "Name": "Skechers", "Category": "Shoe Stores", "Address": "1701 Franklin Mills Cir # 202", "LATITUDE": 40.089192, "LONGITUDE": -74.961438, "DATE_RANGE_START": 2022, "Total Visits": 211.0, "Total Visitors": 199.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 325.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 28.79, "Median Spend per Customer": 28.79 }, "geometry": { "type": "Point", "coordinates": [ -74.961438, 40.089192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-qzz", "Name": "Umai", "Category": "Restaurants and Other Eating Places", "Address": "1840 South St", "LATITUDE": 39.944367, "LONGITUDE": -75.173187, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 70.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 35.0, "Total Spend": 406.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 95.6, "Median Spend per Customer": 116.66 }, "geometry": { "type": "Point", "coordinates": [ -75.173187, 39.944367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-sbk", "Name": "Izzy's 33", "Category": "Restaurants and Other Eating Places", "Address": "1703 S 9th St", "LATITUDE": 39.927844, "LONGITUDE": -75.159073, "DATE_RANGE_START": 2022, "Total Visits": 300.0, "Total Visitors": 172.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 66.0, "Total Spend": 3430.0, "Total Transactions": 77.0, "Total Customers": 49.0, "Median Spend per Transaction": 43.94, "Median Spend per Customer": 50.59 }, "geometry": { "type": "Point", "coordinates": [ -75.159073, 39.927844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "Name": "Checkers Drive-In Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "3500 Aramingo Ave", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 91.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 6.0, "Total Spend": 5410.0, "Total Transactions": 380.0, "Total Customers": 305.0, "Median Spend per Transaction": 11.45, "Median Spend per Customer": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "942 Market St", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 202.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 6913.0, "Total Transactions": 519.0, "Total Customers": 394.0, "Median Spend per Transaction": 11.62, "Median Spend per Customer": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "Name": "RIM Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1172 S 9th St", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 54.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 1.0, "Total Spend": 2071.0, "Total Transactions": 115.0, "Total Customers": 52.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "145 N 11th St", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2022, "Total Visits": 5082.0, "Total Visitors": 3631.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 34.0, "Total Spend": 12900.0, "Total Transactions": 490.0, "Total Customers": 242.0, "Median Spend per Transaction": 21.06, "Median Spend per Customer": 40.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3400 Lancaster Ave Ste 10", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 261.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 34.0, "Total Spend": 19450.0, "Total Transactions": 1524.0, "Total Customers": 859.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "Name": "Scoop Deville", "Category": "Restaurants and Other Eating Places", "Address": "1315 Walnut St", "LATITUDE": 39.949429, "LONGITUDE": -75.162851, "DATE_RANGE_START": 2022, "Total Visits": 470.0, "Total Visitors": 326.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 47.0, "Total Spend": 12350.0, "Total Transactions": 909.0, "Total Customers": 474.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 19.25 }, "geometry": { "type": "Point", "coordinates": [ -75.162851, 39.949429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "Name": "Sprouts Farmers Market", "Category": "Grocery Stores", "Address": "1000 S Broad St", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2022, "Total Visits": 1918.0, "Total Visitors": 977.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 19.0, "Total Spend": 339915.0, "Total Transactions": 8702.0, "Total Customers": 4380.0, "Median Spend per Transaction": 24.82, "Median Spend per Customer": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3300 Market St", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2022, "Total Visits": 1909.0, "Total Visitors": 1012.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 6.0, "Total Spend": 75195.0, "Total Transactions": 7744.0, "Total Customers": 3127.0, "Median Spend per Transaction": 7.55, "Median Spend per Customer": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3854 Morrell Ave", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2022, "Total Visits": 502.0, "Total Visitors": 395.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 3.0, "Total Spend": 438.0, "Total Transactions": 26.0, "Total Customers": 16.0, "Median Spend per Transaction": 13.3, "Median Spend per Customer": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p85-p7q", "Name": "Kim's General Store", "Category": "Other Miscellaneous Store Retailers", "Address": "2849 Holme Ave", "LATITUDE": 40.057222, "LONGITUDE": -75.030807, "DATE_RANGE_START": 2022, "Total Visits": 946.0, "Total Visitors": 622.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 25.0, "Total Spend": 1922.0, "Total Transactions": 118.0, "Total Customers": 42.0, "Median Spend per Transaction": 12.83, "Median Spend per Customer": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.030807, 40.057222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "Name": "The Ranchito", "Category": "Restaurants and Other Eating Places", "Address": "4745 Rising Sun Ave", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 49.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 8.0, "Total Spend": 2225.0, "Total Transactions": 98.0, "Total Customers": 51.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "501 Franklin Mills Cir", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2022, "Total Visits": 793.0, "Total Visitors": 594.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 12076.0, "Total Transactions": 1017.0, "Total Customers": 739.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-226@628-pgb-3qz", "Name": "Jazzman's Cafe & Bakery", "Category": "Restaurants and Other Eating Places", "Address": "245 N 15th St", "LATITUDE": 39.957638, "LONGITUDE": -75.163879, "DATE_RANGE_START": 2022, "Total Visits": 632.0, "Total Visitors": 483.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 117.0, "Total Spend": 39.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.54, "Median Spend per Customer": 11.08 }, "geometry": { "type": "Point", "coordinates": [ -75.163879, 39.957638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2201 Penrose Ave", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2022, "Total Visits": 824.0, "Total Visitors": 472.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 2.0, "Total Spend": 13941.0, "Total Transactions": 1610.0, "Total Customers": 662.0, "Median Spend per Transaction": 6.95, "Median Spend per Customer": 11.36 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5719 Oxford Ave", "LATITUDE": 40.033268, "LONGITUDE": -75.084729, "DATE_RANGE_START": 2022, "Total Visits": 380.0, "Total Visitors": 280.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 4.0, "Total Spend": 1268.0, "Total Transactions": 179.0, "Total Customers": 124.0, "Median Spend per Transaction": 5.94, "Median Spend per Customer": 7.61 }, "geometry": { "type": "Point", "coordinates": [ -75.084729, 40.033268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj8-2ff", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "4310 E Roosevelt Blvd", "LATITUDE": 40.030225, "LONGITUDE": -75.104904, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 256.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 48.0, "Total Spend": 64.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.104904, 40.030225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "Name": "El Coqui Panaderia", "Category": "Restaurants and Other Eating Places", "Address": "3528 I St", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 207.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 7.0, "Total Spend": 22992.0, "Total Transactions": 782.0, "Total Customers": 274.0, "Median Spend per Transaction": 15.6, "Median Spend per Customer": 34.36 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "Name": "Vernick Food & Drink", "Category": "Restaurants and Other Eating Places", "Address": "2031 Walnut St", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2022, "Total Visits": 2063.0, "Total Visitors": 1380.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 90.0, "Total Spend": 25677.0, "Total Transactions": 153.0, "Total Customers": 77.0, "Median Spend per Transaction": 108.0, "Median Spend per Customer": 265.85 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg2-hdv", "Name": "Mi Puebla Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7157 Germantown Ave", "LATITUDE": 40.059999, "LONGITUDE": -75.19073, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 51.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 3.0, "Total Spend": 9857.0, "Total Transactions": 314.0, "Total Customers": 103.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 57.84 }, "geometry": { "type": "Point", "coordinates": [ -75.19073, 40.059999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-3kf", "Name": "Mirage Lounge", "Category": "Restaurants and Other Eating Places", "Address": "119 South St", "LATITUDE": 39.941399, "LONGITUDE": -75.144795, "DATE_RANGE_START": 2022, "Total Visits": 749.0, "Total Visitors": 596.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 38.0, "Total Spend": 32363.0, "Total Transactions": 268.0, "Total Customers": 110.0, "Median Spend per Transaction": 55.7, "Median Spend per Customer": 150.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144795, 39.941399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgf-kj9", "Name": "Cosmic Catering", "Category": "Special Food Services", "Address": "1 Boathouse Row", "LATITUDE": 39.969073, "LONGITUDE": -75.185313, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 152.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 31.0, "Total Spend": 11745.0, "Total Transactions": 1012.0, "Total Customers": 382.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.185313, 39.969073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnw-nnq", "Name": "Kung Fu Necktie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1250 N Front St", "LATITUDE": 39.970272, "LONGITUDE": -75.135925, "DATE_RANGE_START": 2022, "Total Visits": 672.0, "Total Visitors": 540.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 44.0, "Total Spend": 2077.0, "Total Transactions": 92.0, "Total Customers": 37.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 39.970272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "Name": "House of Kosher", "Category": "Restaurants and Other Eating Places", "Address": "9806 Bustleton Ave", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 190.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 7.0, "Total Spend": 28573.0, "Total Transactions": 322.0, "Total Customers": 96.0, "Median Spend per Transaction": 43.67, "Median Spend per Customer": 118.04 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-7bk", "Name": "Franky Bradley's", "Category": "Restaurants and Other Eating Places", "Address": "1320 Chancellor St", "LATITUDE": 39.948507, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2022, "Total Visits": 392.0, "Total Visitors": 308.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 31.0, "Total Spend": 585.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 43.0, "Median Spend per Customer": 86.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.948507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-mp9", "Name": "Concourse Dance Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1635 Market St", "LATITUDE": 39.95318, "LONGITUDE": -75.167893, "DATE_RANGE_START": 2022, "Total Visits": 937.0, "Total Visitors": 678.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 87.0, "Total Spend": 66160.0, "Total Transactions": 3188.0, "Total Customers": 768.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 70.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 39.95318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-s89", "Name": "Tequilas Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1602 Locust St", "LATITUDE": 39.948519, "LONGITUDE": -75.168054, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 223.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 39.0, "Total Spend": 1799.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 177.42, "Median Spend per Customer": 250.06 }, "geometry": { "type": "Point", "coordinates": [ -75.168054, 39.948519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "Name": "Thai Singha House", "Category": "Restaurants and Other Eating Places", "Address": "3906B Chestnut St", "LATITUDE": 39.95527, "LONGITUDE": -75.20037, "DATE_RANGE_START": 2022, "Total Visits": 1129.0, "Total Visitors": 564.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 353.0, "Total Spend": 1824.0, "Total Transactions": 51.0, "Total Customers": 30.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 45.52 }, "geometry": { "type": "Point", "coordinates": [ -75.20037, 39.95527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-phy-6kz", "Name": "La Casa Del Sandwich", "Category": "Restaurants and Other Eating Places", "Address": "101 E Rockland St", "LATITUDE": 40.024809, "LONGITUDE": -75.123343, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 195.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 38.0, "Total Spend": 209.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123343, 40.024809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4200 N Broad St", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2022, "Total Visits": 632.0, "Total Visitors": 399.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 10.0, "Total Spend": 8181.0, "Total Transactions": 695.0, "Total Customers": 558.0, "Median Spend per Transaction": 9.89, "Median Spend per Customer": 11.07 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3725 Aramingo Ave", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2022, "Total Visits": 479.0, "Total Visitors": 413.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 5.0, "Total Spend": 18199.0, "Total Transactions": 1108.0, "Total Customers": 819.0, "Median Spend per Transaction": 13.05, "Median Spend per Customer": 17.3 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2022, "Total Visits": 364.0, "Total Visitors": 317.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 3.0, "Total Spend": 7229.0, "Total Transactions": 542.0, "Total Customers": 406.0, "Median Spend per Transaction": 11.6, "Median Spend per Customer": 13.05 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "Name": "Shot Tower Coffee", "Category": "Restaurants and Other Eating Places", "Address": "542 Christian St", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 73.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 85.0, "Total Spend": 10302.0, "Total Transactions": 1145.0, "Total Customers": 321.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 19.38 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2001 Chestnut St", "LATITUDE": 39.952185, "LONGITUDE": -75.173618, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 159.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 1.0, "Total Spend": 6619.0, "Total Transactions": 1031.0, "Total Customers": 495.0, "Median Spend per Transaction": 5.47, "Median Spend per Customer": 7.32 }, "geometry": { "type": "Point", "coordinates": [ -75.173618, 39.952185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-h5z", "Name": "Ground Up Coffee Shop", "Category": "Restaurants and Other Eating Places", "Address": "1926 E Passyunk Ave", "LATITUDE": 39.926043, "LONGITUDE": -75.168183, "DATE_RANGE_START": 2022, "Total Visits": 1179.0, "Total Visitors": 744.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 174.0, "Total Spend": 3015.0, "Total Transactions": 324.0, "Total Customers": 124.0, "Median Spend per Transaction": 7.38, "Median Spend per Customer": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.168183, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-f2k", "Name": "Stina Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1705 Snyder Ave", "LATITUDE": 39.925216, "LONGITUDE": -75.174721, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 31.0, "Total Spend": 725.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174721, 39.925216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "Name": "Fishtown Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1802 Frankford Ave", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 17.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 4.0, "Total Spend": 2322.0, "Total Transactions": 105.0, "Total Customers": 38.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pj3-73q", "Name": "Duran Grocery", "Category": "Restaurants and Other Eating Places", "Address": "1501 W Courtland St", "LATITUDE": 40.023362, "LONGITUDE": -75.149988, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010280004.0, "Median Dwell Time": 2.0, "Total Spend": 731.0, "Total Transactions": 61.0, "Total Customers": 26.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 13.66 }, "geometry": { "type": "Point", "coordinates": [ -75.149988, 40.023362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgf-3bk", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "3550 Market St", "LATITUDE": 39.955764, "LONGITUDE": -75.194013, "DATE_RANGE_START": 2022, "Total Visits": 2303.0, "Total Visitors": 1484.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 63.0, "Total Spend": 76.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.08, "Median Spend per Customer": 7.08 }, "geometry": { "type": "Point", "coordinates": [ -75.194013, 39.955764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7001 Frankford Ave", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2022, "Total Visits": 500.0, "Total Visitors": 389.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 7.0, "Total Spend": 2292.0, "Total Transactions": 89.0, "Total Customers": 75.0, "Median Spend per Transaction": 19.45, "Median Spend per Customer": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pp5-gc5", "Name": "The Resource Exchange", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2829 Cedar St", "LATITUDE": 39.983924, "LONGITUDE": -75.113554, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 91.0, "POI_CBG": 421010180013.0, "Median Dwell Time": 38.0, "Total Spend": 142.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 32.13, "Median Spend per Customer": 40.77 }, "geometry": { "type": "Point", "coordinates": [ -75.113554, 39.983924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgf-575", "Name": "Crackn Crabs", "Category": "Restaurants and Other Eating Places", "Address": "3800 Lancaster Ave", "LATITUDE": 39.960125, "LONGITUDE": -75.197142, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 98.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 935.0, "Total Spend": 6423.0, "Total Transactions": 113.0, "Total Customers": 47.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 88.56 }, "geometry": { "type": "Point", "coordinates": [ -75.197142, 39.960125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-jsq", "Name": "Danny's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.045112, "LONGITUDE": -75.117134, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 20.0, "Total Spend": 19617.0, "Total Transactions": 423.0, "Total Customers": 195.0, "Median Spend per Transaction": 25.92, "Median Spend per Customer": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.117134, 40.045112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "Name": "Knead Bagels", "Category": "Restaurants and Other Eating Places", "Address": "725 Walnut St", "LATITUDE": 39.948165, "LONGITUDE": -75.153606, "DATE_RANGE_START": 2022, "Total Visits": 103.0, "Total Visitors": 64.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 181.0, "Total Spend": 7794.0, "Total Transactions": 516.0, "Total Customers": 258.0, "Median Spend per Transaction": 11.99, "Median Spend per Customer": 26.9 }, "geometry": { "type": "Point", "coordinates": [ -75.153606, 39.948165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3032 N Broad St", "LATITUDE": 39.999771, "LONGITUDE": -75.153727, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 71.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 332.0, "Total Spend": 550.0, "Total Transactions": 30.0, "Total Customers": 26.0, "Median Spend per Transaction": 17.91, "Median Spend per Customer": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.153727, 39.999771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pmb-ghq", "Name": "Alexander Inn", "Category": "Traveler Accommodation", "Address": "301 S 12th St", "LATITUDE": 39.946221, "LONGITUDE": -75.161018, "DATE_RANGE_START": 2022, "Total Visits": 1042.0, "Total Visitors": 568.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 459.0, "Total Spend": 2174.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 166.33, "Median Spend per Customer": 623.82 }, "geometry": { "type": "Point", "coordinates": [ -75.161018, 39.946221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "Name": "Morimoto", "Category": "Restaurants and Other Eating Places", "Address": "723 Chestnut St", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2022, "Total Visits": 261.0, "Total Visitors": 193.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 100.0, "Total Spend": 54723.0, "Total Transactions": 272.0, "Total Customers": 152.0, "Median Spend per Transaction": 171.49, "Median Spend per Customer": 320.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-qzz", "Name": "Randazzo's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1826 South St", "LATITUDE": 39.944329, "LONGITUDE": -75.172844, "DATE_RANGE_START": 2022, "Total Visits": 488.0, "Total Visitors": 272.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 297.0, "Total Spend": 9310.0, "Total Transactions": 474.0, "Total Customers": 200.0, "Median Spend per Transaction": 16.3, "Median Spend per Customer": 38.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172844, 39.944329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5zz", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "128 S 11th St", "LATITUDE": 39.949143, "LONGITUDE": -75.1591, "DATE_RANGE_START": 2022, "Total Visits": 2065.0, "Total Visitors": 1467.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 67.0, "Total Spend": 228.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 26.82, "Median Spend per Customer": 26.82 }, "geometry": { "type": "Point", "coordinates": [ -75.1591, 39.949143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "327 Spring Garden St", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 96.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 7.0, "Total Spend": 6401.0, "Total Transactions": 481.0, "Total Customers": 354.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3100 W Allegheny Ave", "LATITUDE": 40.004821, "LONGITUDE": -75.179811, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 214.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 6.0, "Total Spend": 8394.0, "Total Transactions": 749.0, "Total Customers": 575.0, "Median Spend per Transaction": 9.47, "Median Spend per Customer": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.179811, 40.004821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp5-5fz", "Name": "El Sabor Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "176 Diamond St", "LATITUDE": 39.981887, "LONGITUDE": -75.135939, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 5.0, "POI_CBG": 421010157001.0, "Median Dwell Time": 10.0, "Total Spend": 1582.0, "Total Transactions": 82.0, "Total Customers": 23.0, "Median Spend per Transaction": 17.36, "Median Spend per Customer": 62.72 }, "geometry": { "type": "Point", "coordinates": [ -75.135939, 39.981887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm4-6c5", "Name": "Gil Grocery 2", "Category": "Restaurants and Other Eating Places", "Address": "1426 S 19th St", "LATITUDE": 39.93326, "LONGITUDE": -75.176127, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 1.0, "Total Spend": 825.0, "Total Transactions": 61.0, "Total Customers": 17.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.176127, 39.93326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "Name": "Galaxy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1239 Cottman Ave", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010338004.0, "Median Dwell Time": 2.0, "Total Spend": 6706.0, "Total Transactions": 235.0, "Total Customers": 66.0, "Median Spend per Transaction": 25.86, "Median Spend per Customer": 75.41 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "710 Adams Ave", "LATITUDE": 40.032391, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2022, "Total Visits": 629.0, "Total Visitors": 524.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 4.0, "Total Spend": 18356.0, "Total Transactions": 1268.0, "Total Customers": 812.0, "Median Spend per Transaction": 11.74, "Median Spend per Customer": 15.95 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.032391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23c@628-pmf-mrk", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 204", "LATITUDE": 39.952393, "LONGITUDE": -75.168002, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 78.0, "Total Spend": 3368.0, "Total Transactions": 188.0, "Total Customers": 82.0, "Median Spend per Transaction": 13.81, "Median Spend per Customer": 27.62 }, "geometry": { "type": "Point", "coordinates": [ -75.168002, 39.952393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.029727, "LONGITUDE": -75.09938, "DATE_RANGE_START": 2022, "Total Visits": 354.0, "Total Visitors": 242.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 29.0, "Total Spend": 6563.0, "Total Transactions": 369.0, "Total Customers": 287.0, "Median Spend per Transaction": 14.13, "Median Spend per Customer": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.09938, 40.029727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2998A Welsh Rd", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2022, "Total Visits": 355.0, "Total Visitors": 268.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 2.0, "Total Spend": 5058.0, "Total Transactions": 599.0, "Total Customers": 267.0, "Median Spend per Transaction": 7.96, "Median Spend per Customer": 12.28 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-skf", "Name": "Elixr Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "207 S Sydenham St", "LATITUDE": 39.949308, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2022, "Total Visits": 3005.0, "Total Visitors": 2120.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 31.0, "Total Spend": 1691.0, "Total Transactions": 216.0, "Total Customers": 94.0, "Median Spend per Transaction": 6.27, "Median Spend per Customer": 12.92 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "Name": "Stenton Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7171 Stenton Ave", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2022, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 4.0, "Total Spend": 4559.0, "Total Transactions": 206.0, "Total Customers": 78.0, "Median Spend per Transaction": 19.86, "Median Spend per Customer": 45.26 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-xt9", "Name": "Taproom", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "7701 Walker St", "LATITUDE": 40.036887, "LONGITUDE": -75.031645, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 10.0, "POI_CBG": 421010329004.0, "Median Dwell Time": 1414.0, "Total Spend": 487.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 53.83, "Median Spend per Customer": 107.66 }, "geometry": { "type": "Point", "coordinates": [ -75.031645, 40.036887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgm-68v", "Name": "Shan Chuan", "Category": "Restaurants and Other Eating Places", "Address": "4211 Ridge Ave", "LATITUDE": 40.009211, "LONGITUDE": -75.194127, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010207004.0, "Median Dwell Time": null, "Total Spend": 370.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 44.61, "Median Spend per Customer": 45.39 }, "geometry": { "type": "Point", "coordinates": [ -75.194127, 40.009211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "Name": "Castor Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6038 Castor Ave", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 28.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 55.0, "Total Spend": 7194.0, "Total Transactions": 321.0, "Total Customers": 82.0, "Median Spend per Transaction": 22.5, "Median Spend per Customer": 36.35 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "Name": "Main Street Pho", "Category": "Restaurants and Other Eating Places", "Address": "4307 Main St", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 42.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 21.0, "Total Spend": 13584.0, "Total Transactions": 287.0, "Total Customers": 143.0, "Median Spend per Transaction": 37.78, "Median Spend per Customer": 69.1 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rx5", "Name": "Hair Hair", "Category": "Health and Personal Care Stores", "Address": "7618 City Ave", "LATITUDE": 39.978114, "LONGITUDE": -75.271405, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 132.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 9.0, "Total Spend": 26456.0, "Total Transactions": 828.0, "Total Customers": 362.0, "Median Spend per Transaction": 23.73, "Median Spend per Customer": 53.05 }, "geometry": { "type": "Point", "coordinates": [ -75.271405, 39.978114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "1851 S Columbus Blvd Ste 7", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 56.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 2.0, "Total Spend": 35069.0, "Total Transactions": 605.0, "Total Customers": 551.0, "Median Spend per Transaction": 44.22, "Median Spend per Customer": 48.48 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-6x5", "Name": "Bonobos", "Category": "Clothing Stores", "Address": "1519 Walnut St", "LATITUDE": 39.949913, "LONGITUDE": -75.166858, "DATE_RANGE_START": 2022, "Total Visits": 143.0, "Total Visitors": 127.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 3.0, "Total Spend": 906.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 128.5, "Median Spend per Customer": 128.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166858, 39.949913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-bhq", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "29 N 52nd St", "LATITUDE": 39.960816, "LONGITUDE": -75.224417, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 113.0, "POI_CBG": 421010093003.0, "Median Dwell Time": 7.0, "Total Spend": 1672.0, "Total Transactions": 157.0, "Total Customers": 115.0, "Median Spend per Transaction": 8.13, "Median Spend per Customer": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.224417, 39.960816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093157, "LONGITUDE": -75.032901, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 153.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 5.0, "Total Spend": 674.0, "Total Transactions": 49.0, "Total Customers": 35.0, "Median Spend per Transaction": 11.84, "Median Spend per Customer": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.032901, 40.093157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2290 W Oregon Ave", "LATITUDE": 39.91709, "LONGITUDE": -75.185434, "DATE_RANGE_START": 2022, "Total Visits": 298.0, "Total Visitors": 221.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 12.0, "Total Spend": 7725.0, "Total Transactions": 235.0, "Total Customers": 172.0, "Median Spend per Transaction": 22.09, "Median Spend per Customer": 21.54 }, "geometry": { "type": "Point", "coordinates": [ -75.185434, 39.91709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "Name": "R.E. Michel", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "333 E Hunting Park Ave", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2022, "Total Visits": 87.0, "Total Visitors": 61.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 10.0, "Total Spend": 24855.0, "Total Transactions": 44.0, "Total Customers": 16.0, "Median Spend per Transaction": 356.03, "Median Spend per Customer": 283.11 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-224@628-pg9-ty9", "Name": "Our Place", "Category": "Clothing Stores", "Address": "1509 Spring Garden St", "LATITUDE": 39.962959, "LONGITUDE": -75.163439, "DATE_RANGE_START": 2022, "Total Visits": 19.0, "Total Visitors": 10.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 307.0, "Total Spend": 2629.0, "Total Transactions": 23.0, "Total Customers": 17.0, "Median Spend per Transaction": 135.2, "Median Spend per Customer": 133.39 }, "geometry": { "type": "Point", "coordinates": [ -75.163439, 39.962959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pgb-6tv", "Name": "Fairmount Framing", "Category": "Home Furnishings Stores", "Address": "754 N 25th St", "LATITUDE": 39.968987, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010136012.0, "Median Dwell Time": null, "Total Spend": 1225.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 178.45, "Median Spend per Customer": 351.47 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.968987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "Name": "Friendship Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "3300 Cottman Ave", "LATITUDE": 40.03925, "LONGITUDE": -75.04588, "DATE_RANGE_START": 2022, "Total Visits": 21.0, "Total Visitors": 16.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 6.0, "Total Spend": 1407.0, "Total Transactions": 42.0, "Total Customers": 7.0, "Median Spend per Transaction": 21.93, "Median Spend per Customer": 176.64 }, "geometry": { "type": "Point", "coordinates": [ -75.04588, 40.03925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-p8f-9pv", "Name": "Nuts To You", "Category": "Specialty Food Stores", "Address": "4454 Penn St", "LATITUDE": 40.014668, "LONGITUDE": -75.088538, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 17.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 39.0, "Total Spend": 1036.0, "Total Transactions": 80.0, "Total Customers": 40.0, "Median Spend per Transaction": 10.98, "Median Spend per Customer": 21.96 }, "geometry": { "type": "Point", "coordinates": [ -75.088538, 40.014668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-pvz", "Name": "Midnight Iris", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1708 Lombard St", "LATITUDE": 39.945191, "LONGITUDE": -75.170462, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 19.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 566.0, "Total Spend": 13148.0, "Total Transactions": 244.0, "Total Customers": 73.0, "Median Spend per Transaction": 36.96, "Median Spend per Customer": 96.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "266-222@628-pm4-sh5", "Name": "Ramayana Store", "Category": "Specialty Food Stores", "Address": "1543 S 7th St", "LATITUDE": 39.929048, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010028011.0, "Median Dwell Time": 1.0, "Total Spend": 145.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.929048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "11701 Bustleton Ave", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2022, "Total Visits": 2810.0, "Total Visitors": 1648.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 12.0, "Total Spend": 56156.0, "Total Transactions": 1040.0, "Total Customers": 434.0, "Median Spend per Transaction": 30.96, "Median Spend per Customer": 77.04 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "Name": "The Beer Peddlers", "Category": "Beer, Wine, and Liquor Stores", "Address": "1942 S Columbus Blvd", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2022, "Total Visits": 190.0, "Total Visitors": 159.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 2.0, "Total Spend": 32788.0, "Total Transactions": 1002.0, "Total Customers": 430.0, "Median Spend per Transaction": 25.9, "Median Spend per Customer": 60.44 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "Name": "Medical Tower Pharmacy", "Category": "Health and Personal Care Stores", "Address": "255 S 17th St", "LATITUDE": 39.948045, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2022, "Total Visits": 1185.0, "Total Visitors": 833.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 57.0, "Total Spend": 3849.0, "Total Transactions": 159.0, "Total Customers": 63.0, "Median Spend per Transaction": 7.74, "Median Spend per Customer": 26.94 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.948045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8n-cqz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6400 Roosevelt Blvd", "LATITUDE": 40.03577, "LONGITUDE": -75.069964, "DATE_RANGE_START": 2022, "Total Visits": 927.0, "Total Visitors": 690.0, "POI_CBG": 421010313002.0, "Median Dwell Time": 4.0, "Total Spend": 449.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 33.89, "Median Spend per Customer": 33.89 }, "geometry": { "type": "Point", "coordinates": [ -75.069964, 40.03577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-nwk", "Name": "Centro Musical", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "464 W Lehigh Ave", "LATITUDE": 39.991818, "LONGITUDE": -75.139984, "DATE_RANGE_START": 2022, "Total Visits": 624.0, "Total Visitors": 307.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 819.0, "Total Spend": 377.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.139984, 39.991818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-z2k", "Name": "New Town Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "448 N 9th St", "LATITUDE": 39.960042, "LONGITUDE": -75.153453, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 12.0, "POI_CBG": 421010376001.0, "Median Dwell Time": 4.0, "Total Spend": 1080.0, "Total Transactions": 68.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.03, "Median Spend per Customer": 62.82 }, "geometry": { "type": "Point", "coordinates": [ -75.153453, 39.960042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22t@628-pmb-7yv", "Name": "De Village", "Category": "Clothing Stores", "Address": "51 N 12th St", "LATITUDE": 39.953424, "LONGITUDE": -75.1591, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 3454.0, "Total Transactions": 106.0, "Total Customers": 57.0, "Median Spend per Transaction": 29.6, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.1591, 39.953424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "Name": "The Pizza Store", "Category": "Restaurants and Other Eating Places", "Address": "2727 E Allegheny Ave", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 26.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 1.0, "Total Spend": 2701.0, "Total Transactions": 92.0, "Total Customers": 38.0, "Median Spend per Transaction": 28.64, "Median Spend per Customer": 44.87 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "Name": "In & Out Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7600 Ogontz Ave", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 31.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 365.0, "Total Spend": 1367.0, "Total Transactions": 45.0, "Total Customers": 19.0, "Median Spend per Transaction": 24.89, "Median Spend per Customer": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pg8-f2k", "Name": "Green Village", "Category": "Restaurants and Other Eating Places", "Address": "2900 Ridge Ave", "LATITUDE": 39.986829, "LONGITUDE": -75.18121, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 35.0, "POI_CBG": 421010151023.0, "Median Dwell Time": 3.0, "Total Spend": 373.0, "Total Transactions": 17.0, "Total Customers": 7.0, "Median Spend per Transaction": 20.65, "Median Spend per Customer": 41.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18121, 39.986829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "Name": "Lebel Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5601 W Girard Ave", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010112003.0, "Median Dwell Time": 4.0, "Total Spend": 4236.0, "Total Transactions": 183.0, "Total Customers": 64.0, "Median Spend per Transaction": 23.09, "Median Spend per Customer": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "Name": "Not Just Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2240 S 11th St", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 52.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 2.0, "Total Spend": 421.0, "Total Transactions": 31.0, "Total Customers": 16.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg4-bx5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6201 Germantown Ave", "LATITUDE": 40.042838, "LONGITUDE": -75.179833, "DATE_RANGE_START": 2022, "Total Visits": 247.0, "Total Visitors": 160.0, "POI_CBG": 421010252002.0, "Median Dwell Time": 7.0, "Total Spend": 13981.0, "Total Transactions": 646.0, "Total Customers": 385.0, "Median Spend per Transaction": 15.75, "Median Spend per Customer": 23.27 }, "geometry": { "type": "Point", "coordinates": [ -75.179833, 40.042838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8n5", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "1021 Market St # 1175", "LATITUDE": 39.951999, "LONGITUDE": -75.157711, "DATE_RANGE_START": 2022, "Total Visits": 21494.0, "Total Visitors": 13739.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 33.0, "Total Spend": 52111.0, "Total Transactions": 1132.0, "Total Customers": 1021.0, "Median Spend per Transaction": 34.55, "Median Spend per Customer": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157711, 39.951999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6240 Germantown Ave", "LATITUDE": 40.042819, "LONGITUDE": -75.181027, "DATE_RANGE_START": 2022, "Total Visits": 995.0, "Total Visitors": 580.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 4.0, "Total Spend": 2393.0, "Total Transactions": 92.0, "Total Customers": 44.0, "Median Spend per Transaction": 20.18, "Median Spend per Customer": 30.02 }, "geometry": { "type": "Point", "coordinates": [ -75.181027, 40.042819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pfz-bzf", "Name": "Gary Mann Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4349 Main St", "LATITUDE": 40.025665, "LONGITUDE": -75.223674, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 77.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 2.0, "Total Spend": 540.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 18.99, "Median Spend per Customer": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.223674, 40.025665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "Name": "Bok Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "800 Mifflin St", "LATITUDE": 39.925217, "LONGITUDE": -75.160024, "DATE_RANGE_START": 2022, "Total Visits": 1007.0, "Total Visitors": 674.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 97.0, "Total Spend": 15013.0, "Total Transactions": 587.0, "Total Customers": 216.0, "Median Spend per Transaction": 18.66, "Median Spend per Customer": 50.08 }, "geometry": { "type": "Point", "coordinates": [ -75.160024, 39.925217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "Name": "The Twisted Tail", "Category": "Restaurants and Other Eating Places", "Address": "509 S 2nd St", "LATITUDE": 39.941828, "LONGITUDE": -75.145203, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 68.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 72.0, "Total Spend": 29886.0, "Total Transactions": 416.0, "Total Customers": 211.0, "Median Spend per Transaction": 55.3, "Median Spend per Customer": 103.2 }, "geometry": { "type": "Point", "coordinates": [ -75.145203, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6602 Frankford Ave @ Magee Avenue", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 106.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 5.0, "Total Spend": 1809.0, "Total Transactions": 91.0, "Total Customers": 56.0, "Median Spend per Transaction": 15.59, "Median Spend per Customer": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.029744, "LONGITUDE": -75.099335, "DATE_RANGE_START": 2022, "Total Visits": 272.0, "Total Visitors": 179.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 29.0, "Total Spend": 579.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 35.6, "Median Spend per Customer": 36.94 }, "geometry": { "type": "Point", "coordinates": [ -75.099335, 40.029744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-pmf-n5z", "Name": "Di Bruno Bros", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd", "LATITUDE": 39.954896, "LONGITUDE": -75.168695, "DATE_RANGE_START": 2022, "Total Visits": 3279.0, "Total Visitors": 1596.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 392.0, "Total Spend": 51554.0, "Total Transactions": 1963.0, "Total Customers": 913.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 33.33 }, "geometry": { "type": "Point", "coordinates": [ -75.168695, 39.954896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pj6-k4v", "Name": "H Mart", "Category": "Grocery Stores", "Address": "6201 N Front St", "LATITUDE": 40.044993, "LONGITUDE": -75.117488, "DATE_RANGE_START": 2022, "Total Visits": 3176.0, "Total Visitors": 2253.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 20.0, "Total Spend": 192261.0, "Total Transactions": 8737.0, "Total Customers": 4504.0, "Median Spend per Transaction": 10.95, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.117488, 40.044993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p75-3nq", "Name": "Torresdale Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4315 Megargee St", "LATITUDE": 40.048663, "LONGITUDE": -75.011484, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 73.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 1.0, "Total Spend": 1847.0, "Total Transactions": 68.0, "Total Customers": 21.0, "Median Spend per Transaction": 28.06, "Median Spend per Customer": 45.34 }, "geometry": { "type": "Point", "coordinates": [ -75.011484, 40.048663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5690 Rising Sun Ave", "LATITUDE": 40.039629, "LONGITUDE": -75.109938, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 322.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 3.0, "Total Spend": 12496.0, "Total Transactions": 436.0, "Total Customers": 275.0, "Median Spend per Transaction": 27.05, "Median Spend per Customer": 33.73 }, "geometry": { "type": "Point", "coordinates": [ -75.109938, 40.039629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "Name": "Walmart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd Bldg G", "LATITUDE": 40.031276, "LONGITUDE": -75.099634, "DATE_RANGE_START": 2022, "Total Visits": 5946.0, "Total Visitors": 3946.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 29.0, "Total Spend": 246372.0, "Total Transactions": 3995.0, "Total Customers": 2756.0, "Median Spend per Transaction": 37.44, "Median Spend per Customer": 51.45 }, "geometry": { "type": "Point", "coordinates": [ -75.099634, 40.031276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-7dv", "Name": "Joe Santucci's Square Pizza Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "4050 Woodhaven Rd", "LATITUDE": 40.0859, "LONGITUDE": -74.971119, "DATE_RANGE_START": 2022, "Total Visits": 312.0, "Total Visitors": 186.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 233.0, "Total Spend": 1335.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 126.88, "Median Spend per Customer": 383.21 }, "geometry": { "type": "Point", "coordinates": [ -74.971119, 40.0859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "Name": "Parkway Corner Deli", "Category": "Restaurants and Other Eating Places", "Address": "2201 Pennsylvania Ave", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2022, "Total Visits": 193.0, "Total Visitors": 172.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 23.0, "Total Spend": 8256.0, "Total Transactions": 617.0, "Total Customers": 181.0, "Median Spend per Transaction": 11.97, "Median Spend per Customer": 25.84 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8vz", "Name": "Cosi", "Category": "Restaurants and Other Eating Places", "Address": "1035 Chestnut St", "LATITUDE": 39.950388, "LONGITUDE": -75.158367, "DATE_RANGE_START": 2022, "Total Visits": 1659.0, "Total Visitors": 1183.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 50.0, "Total Spend": 3032.0, "Total Transactions": 174.0, "Total Customers": 84.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158367, 39.950388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-nwk", "Name": "Pod", "Category": "Restaurants and Other Eating Places", "Address": "3600 Sansom St", "LATITUDE": 39.953599, "LONGITUDE": -75.195089, "DATE_RANGE_START": 2022, "Total Visits": 4342.0, "Total Visitors": 2699.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 91.0, "Total Spend": 74.0, "Total Transactions": 17.0, "Total Customers": 7.0, "Median Spend per Transaction": 4.68, "Median Spend per Customer": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.195089, 39.953599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j9z", "Name": "Rouge", "Category": "Restaurants and Other Eating Places", "Address": "205 S 18th St", "LATITUDE": 39.949689, "LONGITUDE": -75.1705, "DATE_RANGE_START": 2022, "Total Visits": 397.0, "Total Visitors": 193.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 389.0, "Total Spend": 14555.0, "Total Transactions": 204.0, "Total Customers": 99.0, "Median Spend per Transaction": 64.76, "Median Spend per Customer": 125.6 }, "geometry": { "type": "Point", "coordinates": [ -75.1705, 39.949689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "Name": "Little Italy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "901 South St", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 63.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 1.0, "Total Spend": 859.0, "Total Transactions": 82.0, "Total Customers": 33.0, "Median Spend per Transaction": 8.42, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "Name": "House of Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "3520 Cottman Ave", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2022, "Total Visits": 869.0, "Total Visitors": 641.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 7.0, "Total Spend": 3185.0, "Total Transactions": 78.0, "Total Customers": 33.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 103.9 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj2-mrk", "Name": "Texas Chicken and Burgers", "Category": "Restaurants and Other Eating Places", "Address": "3960 Kensington Ave # 80", "LATITUDE": 40.006514, "LONGITUDE": -75.095617, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 85.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 3.0, "Total Spend": 5932.0, "Total Transactions": 394.0, "Total Customers": 199.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 22.92 }, "geometry": { "type": "Point", "coordinates": [ -75.095617, 40.006514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9p-z75", "Name": "Ahi Sushi", "Category": "Restaurants and Other Eating Places", "Address": "9999 Bustleton Ave", "LATITUDE": 40.102378, "LONGITUDE": -75.028785, "DATE_RANGE_START": 2022, "Total Visits": 16016.0, "Total Visitors": 8004.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 2.0, "Total Spend": 9140.0, "Total Transactions": 246.0, "Total Customers": 124.0, "Median Spend per Transaction": 32.02, "Median Spend per Customer": 64.04 }, "geometry": { "type": "Point", "coordinates": [ -75.028785, 40.102378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "Name": "CHAPMAN NISSAN", "Category": "Automobile Dealers", "Address": "6723 Essington Ave", "LATITUDE": 39.910684, "LONGITUDE": -75.224285, "DATE_RANGE_START": 2022, "Total Visits": 397.0, "Total Visitors": 286.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 69.0, "Total Spend": 34885.0, "Total Transactions": 57.0, "Total Customers": 51.0, "Median Spend per Transaction": 174.5, "Median Spend per Customer": 174.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224285, 39.910684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwd-v9f", "Name": "RevZilla", "Category": "Other Motor Vehicle Dealers", "Address": "4020 S 26th St", "LATITUDE": 39.900369, "LONGITUDE": -75.195065, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 64.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 53.0, "Total Spend": 79533.0, "Total Transactions": 226.0, "Total Customers": 115.0, "Median Spend per Transaction": 222.24, "Median Spend per Customer": 352.35 }, "geometry": { "type": "Point", "coordinates": [ -75.195065, 39.900369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 Richmond St", "LATITUDE": 39.983382, "LONGITUDE": -75.10116, "DATE_RANGE_START": 2022, "Total Visits": 2857.0, "Total Visitors": 1909.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 4.0, "Total Spend": 1023.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 75.31, "Median Spend per Customer": 75.31 }, "geometry": { "type": "Point", "coordinates": [ -75.10116, 39.983382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "Name": "Uniqlo", "Category": "Clothing Stores", "Address": "1608 Chestnut St", "LATITUDE": 39.951014, "LONGITUDE": -75.167897, "DATE_RANGE_START": 2022, "Total Visits": 622.0, "Total Visitors": 439.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 134.0, "Total Spend": 29818.0, "Total Transactions": 495.0, "Total Customers": 448.0, "Median Spend per Transaction": 44.7, "Median Spend per Customer": 49.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.951014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "Name": "Claire's", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952045, "LONGITUDE": -75.16824, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 78.0, "Total Spend": 5648.0, "Total Transactions": 139.0, "Total Customers": 131.0, "Median Spend per Transaction": 28.06, "Median Spend per Customer": 27.95 }, "geometry": { "type": "Point", "coordinates": [ -75.16824, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "Name": "Accent On Animals", "Category": "Other Miscellaneous Store Retailers", "Address": "804 South St", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2022, "Total Visits": 657.0, "Total Visitors": 376.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 213.0, "Total Spend": 6402.0, "Total Transactions": 331.0, "Total Customers": 164.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm7-sh5", "Name": "Philip's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "2234 W Passyunk Ave", "LATITUDE": 39.922589, "LONGITUDE": -75.18482, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 30.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 17.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18482, 39.922589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "Name": "Pub & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1946 Lombard St", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 31.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 55.0, "Total Spend": 5965.0, "Total Transactions": 73.0, "Total Customers": 44.0, "Median Spend per Transaction": 64.07, "Median Spend per Customer": 110.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "Name": "New Zem Zem Pizza", "Category": "Restaurants and Other Eating Places", "Address": "117 E Chelten Ave", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 14.0, "Total Spend": 2730.0, "Total Transactions": 113.0, "Total Customers": 42.0, "Median Spend per Transaction": 20.02, "Median Spend per Customer": 46.82 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj6-99f", "Name": "Red Wine Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "701 Adams Ave", "LATITUDE": 40.033146, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 40.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 154.0, "Total Spend": 1832.0, "Total Transactions": 24.0, "Total Customers": 7.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 263.0 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.033146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-85f", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "5134 N 2nd St", "LATITUDE": 40.028399, "LONGITUDE": -75.127425, "DATE_RANGE_START": 2022, "Total Visits": 92.0, "Total Visitors": 57.0, "POI_CBG": 421010286006.0, "Median Dwell Time": 3.0, "Total Spend": 1717.0, "Total Transactions": 199.0, "Total Customers": 80.0, "Median Spend per Transaction": 6.38, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.127425, 40.028399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-v9f", "Name": "Liberty Gas Station", "Category": "Gasoline Stations", "Address": "274 Tasker St", "LATITUDE": 39.928013, "LONGITUDE": -75.15048, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 24.0, "POI_CBG": 421010027023.0, "Median Dwell Time": 2.0, "Total Spend": 1809.0, "Total Transactions": 73.0, "Total Customers": 37.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15048, 39.928013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-mrk", "Name": "Pat's King of Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1237 E Passyunk Ave", "LATITUDE": 39.933211, "LONGITUDE": -75.159243, "DATE_RANGE_START": 2022, "Total Visits": 1434.0, "Total Visitors": 1355.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 5.0, "Total Spend": 147.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 13.36, "Median Spend per Customer": 26.72 }, "geometry": { "type": "Point", "coordinates": [ -75.159243, 39.933211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-4sq", "Name": "Potbelly Sandwich Works", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave", "LATITUDE": 39.979564, "LONGITUDE": -75.153441, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 77.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 127.0, "Total Spend": 4092.0, "Total Transactions": 298.0, "Total Customers": 218.0, "Median Spend per Transaction": 13.15, "Median Spend per Customer": 14.8 }, "geometry": { "type": "Point", "coordinates": [ -75.153441, 39.979564 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-c89", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "100 W Erie Ave", "LATITUDE": 40.007079, "LONGITUDE": -75.128063, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 200.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 5.0, "Total Spend": 9755.0, "Total Transactions": 669.0, "Total Customers": 498.0, "Median Spend per Transaction": 12.12, "Median Spend per Customer": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.128063, 40.007079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-3nq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2640 S Carlisle St", "LATITUDE": 39.917267, "LONGITUDE": -75.172584, "DATE_RANGE_START": 2022, "Total Visits": 1080.0, "Total Visitors": 394.0, "POI_CBG": 421010039022.0, "Median Dwell Time": 653.0, "Total Spend": 289.0, "Total Transactions": 31.0, "Total Customers": 17.0, "Median Spend per Transaction": 6.03, "Median Spend per Customer": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.172584, 39.917267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2145 W Allegheny Ave", "LATITUDE": 40.003544, "LONGITUDE": -75.165622, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 59.0, "POI_CBG": 421010202001.0, "Median Dwell Time": 20.0, "Total Spend": 1970.0, "Total Transactions": 228.0, "Total Customers": 159.0, "Median Spend per Transaction": 7.97, "Median Spend per Customer": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.165622, 40.003544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-w49", "Name": "The Bakeshop on 20th", "Category": "Restaurants and Other Eating Places", "Address": "269 S 20th St", "LATITUDE": 39.948428, "LONGITUDE": -75.174139, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 23.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 57.0, "Total Spend": 2315.0, "Total Transactions": 148.0, "Total Customers": 61.0, "Median Spend per Transaction": 13.25, "Median Spend per Customer": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.174139, 39.948428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9v-k2k", "Name": "Alef Standard Packaging", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "12300 McNulty Rd", "LATITUDE": 40.110128, "LONGITUDE": -74.983606, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 26.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 217.0, "Total Spend": 262.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 37.59, "Median Spend per Customer": 75.18 }, "geometry": { "type": "Point", "coordinates": [ -74.983606, 40.110128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "Name": "Grace Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2229 Grays Ferry Ave", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 40.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 241.0, "Total Spend": 18227.0, "Total Transactions": 427.0, "Total Customers": 162.0, "Median Spend per Transaction": 35.15, "Median Spend per Customer": 69.94 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "3212 N Broad St", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2022, "Total Visits": 59.0, "Total Visitors": 47.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 34.0, "Total Spend": 3003.0, "Total Transactions": 64.0, "Total Customers": 19.0, "Median Spend per Transaction": 30.5, "Median Spend per Customer": 34.3 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j7q", "Name": "The Dandelion", "Category": "Restaurants and Other Eating Places", "Address": "124 S 18th St", "LATITUDE": 39.951011, "LONGITUDE": -75.170702, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 223.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 39.0, "Total Spend": 419.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 45.22, "Median Spend per Customer": 90.44 }, "geometry": { "type": "Point", "coordinates": [ -75.170702, 39.951011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2022, "Total Visits": 280.0, "Total Visitors": 218.0, "POI_CBG": 421010098011.0, "Median Dwell Time": 7.0, "Total Spend": 9034.0, "Total Transactions": 721.0, "Total Customers": 544.0, "Median Spend per Transaction": 10.24, "Median Spend per Customer": 11.32 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmd-vfz", "Name": "Tsuki Sushi", "Category": "Restaurants and Other Eating Places", "Address": "2135 Walnut St", "LATITUDE": 39.951096, "LONGITUDE": -75.177135, "DATE_RANGE_START": 2022, "Total Visits": 242.0, "Total Visitors": 225.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 2.0, "Total Spend": 2363.0, "Total Transactions": 87.0, "Total Customers": 44.0, "Median Spend per Transaction": 25.09, "Median Spend per Customer": 47.42 }, "geometry": { "type": "Point", "coordinates": [ -75.177135, 39.951096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgj-c5z", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1511 Cecil B Moore Ave", "LATITUDE": 39.979163, "LONGITUDE": -75.160092, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 178.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 12.0, "Total Spend": 2618.0, "Total Transactions": 197.0, "Total Customers": 159.0, "Median Spend per Transaction": 12.41, "Median Spend per Customer": 12.71 }, "geometry": { "type": "Point", "coordinates": [ -75.160092, 39.979163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-t5f", "Name": "Pho Viet", "Category": "Restaurants and Other Eating Places", "Address": "5520 Whitaker Ave", "LATITUDE": 40.035248, "LONGITUDE": -75.100976, "DATE_RANGE_START": 2022, "Total Visits": 237.0, "Total Visitors": 157.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 17.0, "Total Spend": 8537.0, "Total Transactions": 230.0, "Total Customers": 87.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.100976, 40.035248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pm5-2ff", "Name": "Wokano", "Category": "Restaurants and Other Eating Places", "Address": "1100 Washington Ave", "LATITUDE": 39.937057, "LONGITUDE": -75.161863, "DATE_RANGE_START": 2022, "Total Visits": 319.0, "Total Visitors": 268.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 31.0, "Total Spend": 3567.0, "Total Transactions": 56.0, "Total Customers": 30.0, "Median Spend per Transaction": 59.75, "Median Spend per Customer": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161863, 39.937057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "Name": "Ritz Diner", "Category": "Restaurants and Other Eating Places", "Address": "8000 Roosevelt Blvd", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2022, "Total Visits": 744.0, "Total Visitors": 589.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 37.0, "Total Spend": 21016.0, "Total Transactions": 610.0, "Total Customers": 254.0, "Median Spend per Transaction": 32.91, "Median Spend per Customer": 63.4 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "Name": "Chill On the Hill", "Category": "Restaurants and Other Eating Places", "Address": "5 E Highland Ave", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 92.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 11.0, "Total Spend": 9817.0, "Total Transactions": 868.0, "Total Customers": 348.0, "Median Spend per Transaction": 9.78, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-xwk", "Name": "The Daily", "Category": "Restaurants and Other Eating Places", "Address": "699 N Broad St", "LATITUDE": 39.96686, "LONGITUDE": -75.160091, "DATE_RANGE_START": 2022, "Total Visits": 2601.0, "Total Visitors": 1383.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 102.0, "Total Spend": 26161.0, "Total Transactions": 373.0, "Total Customers": 171.0, "Median Spend per Transaction": 51.85, "Median Spend per Customer": 110.73 }, "geometry": { "type": "Point", "coordinates": [ -75.160091, 39.96686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvr-7bk", "Name": "Woodland Village Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6234 Woodland Ave", "LATITUDE": 39.927328, "LONGITUDE": -75.231404, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 31.0, "POI_CBG": 421010066004.0, "Median Dwell Time": 22.0, "Total Spend": 37.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.36, "Median Spend per Customer": 10.72 }, "geometry": { "type": "Point", "coordinates": [ -75.231404, 39.927328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "Name": "Italian Express", "Category": "Restaurants and Other Eating Places", "Address": "2641 W Girard Ave", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 31.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 3.0, "Total Spend": 5238.0, "Total Transactions": 280.0, "Total Customers": 105.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 30.66 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5711 Ridge Ave", "LATITUDE": 40.027472, "LONGITUDE": -75.209408, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 31.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 16.0, "Total Spend": 10996.0, "Total Transactions": 402.0, "Total Customers": 289.0, "Median Spend per Transaction": 24.17, "Median Spend per Customer": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.209408, 40.027472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "Name": "The Book Trader", "Category": "Book Stores and News Dealers", "Address": "7 N 2nd St", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 35.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 77.0, "Total Spend": 2045.0, "Total Transactions": 127.0, "Total Customers": 73.0, "Median Spend per Transaction": 15.01, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgj-6hq", "Name": "Diamond Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1700 W Diamond St", "LATITUDE": 39.985195, "LONGITUDE": -75.161525, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 35.0, "POI_CBG": 421010153002.0, "Median Dwell Time": 30.0, "Total Spend": 3943.0, "Total Transactions": 228.0, "Total Customers": 99.0, "Median Spend per Transaction": 15.93, "Median Spend per Customer": 34.02 }, "geometry": { "type": "Point", "coordinates": [ -75.161525, 39.985195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "Name": "Triangle Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1338 S 10th St", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 51.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 25.0, "Total Spend": 52101.0, "Total Transactions": 1157.0, "Total Customers": 483.0, "Median Spend per Transaction": 39.18, "Median Spend per Customer": 87.28 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Ridge Ave", "LATITUDE": 40.030371, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2022, "Total Visits": 287.0, "Total Visitors": 251.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 5.0, "Total Spend": 787.0, "Total Transactions": 56.0, "Total Customers": 49.0, "Median Spend per Transaction": 13.48, "Median Spend per Customer": 13.63 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5840 Old York Rd", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2022, "Total Visits": 220.0, "Total Visitors": 143.0, "POI_CBG": 421010278002.0, "Median Dwell Time": 333.0, "Total Spend": 662.0, "Total Transactions": 38.0, "Total Customers": 35.0, "Median Spend per Transaction": 15.24, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5301 Chew Ave", "LATITUDE": 40.043491, "LONGITUDE": -75.159296, "DATE_RANGE_START": 2022, "Total Visits": 260.0, "Total Visitors": 178.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 3.0, "Total Spend": 5688.0, "Total Transactions": 695.0, "Total Customers": 362.0, "Median Spend per Transaction": 6.56, "Median Spend per Customer": 10.59 }, "geometry": { "type": "Point", "coordinates": [ -75.159296, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Spring Garden St", "LATITUDE": 39.962408, "LONGITUDE": -75.163643, "DATE_RANGE_START": 2022, "Total Visits": 294.0, "Total Visitors": 178.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 20.0, "Total Spend": 6755.0, "Total Transactions": 967.0, "Total Customers": 439.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 9.74 }, "geometry": { "type": "Point", "coordinates": [ -75.163643, 39.962408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-phz-tjv", "Name": "Pizza express", "Category": "Restaurants and Other Eating Places", "Address": "3324 Kensington Ave", "LATITUDE": 39.998436, "LONGITUDE": -75.110266, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 66.0, "POI_CBG": 421010192004.0, "Median Dwell Time": 9.0, "Total Spend": 156.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.32, "Median Spend per Customer": 44.63 }, "geometry": { "type": "Point", "coordinates": [ -75.110266, 39.998436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-zcq", "Name": "Savas", "Category": "Restaurants and Other Eating Places", "Address": "3505 Lancaster Ave", "LATITUDE": 39.958284, "LONGITUDE": -75.192713, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 251.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 31.0, "Total Spend": 893.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 120.09, "Median Spend per Customer": 240.18 }, "geometry": { "type": "Point", "coordinates": [ -75.192713, 39.958284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "Name": "Prohibition Taproom", "Category": "Restaurants and Other Eating Places", "Address": "501 N 13th St", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2022, "Total Visits": 80.0, "Total Visitors": 68.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 34.0, "Total Spend": 22740.0, "Total Transactions": 507.0, "Total Customers": 214.0, "Median Spend per Transaction": 35.4, "Median Spend per Customer": 78.78 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "101 E Olney Ave", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 232.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 6.0, "Total Spend": 9564.0, "Total Transactions": 650.0, "Total Customers": 474.0, "Median Spend per Transaction": 12.1, "Median Spend per Customer": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-zfz", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "60 N 23rd St", "LATITUDE": 39.956578, "LONGITUDE": -75.177927, "DATE_RANGE_START": 2022, "Total Visits": 552.0, "Total Visitors": 333.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 65.0, "Total Spend": 1451.0, "Total Transactions": 84.0, "Total Customers": 42.0, "Median Spend per Transaction": 13.58, "Median Spend per Customer": 27.15 }, "geometry": { "type": "Point", "coordinates": [ -75.177927, 39.956578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-td9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave Ste 2936", "LATITUDE": 39.902269, "LONGITUDE": -75.241997, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 57.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 1.0, "Total Spend": 2208.0, "Total Transactions": 129.0, "Total Customers": 101.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 16.65 }, "geometry": { "type": "Point", "coordinates": [ -75.241997, 39.902269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-8d9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1038 Arch St", "LATITUDE": 39.953621, "LONGITUDE": -75.157784, "DATE_RANGE_START": 2022, "Total Visits": 781.0, "Total Visitors": 652.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 12.0, "Total Spend": 5279.0, "Total Transactions": 786.0, "Total Customers": 472.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 8.18 }, "geometry": { "type": "Point", "coordinates": [ -75.157784, 39.953621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "Name": "Palm Tree Market", "Category": "Grocery Stores", "Address": "4368 Cresson St", "LATITUDE": 40.026206, "LONGITUDE": -75.22393, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 82.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 356.0, "Total Spend": 5947.0, "Total Transactions": 399.0, "Total Customers": 146.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 31.17 }, "geometry": { "type": "Point", "coordinates": [ -75.22393, 40.026206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvy-xwk", "Name": "TacoTaco Mexican", "Category": "Restaurants and Other Eating Places", "Address": "261 S 44th St", "LATITUDE": 39.953228, "LONGITUDE": -75.210287, "DATE_RANGE_START": 2022, "Total Visits": 30.0, "Total Visitors": 21.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 23.0, "Total Spend": 16086.0, "Total Transactions": 927.0, "Total Customers": 340.0, "Median Spend per Transaction": 13.31, "Median Spend per Customer": 35.26 }, "geometry": { "type": "Point", "coordinates": [ -75.210287, 39.953228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-xdv", "Name": "Tiffin", "Category": "Restaurants and Other Eating Places", "Address": "710 W Girard Ave", "LATITUDE": 39.970151, "LONGITUDE": -75.148856, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 30.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 410.0, "Total Spend": 3327.0, "Total Transactions": 73.0, "Total Customers": 42.0, "Median Spend per Transaction": 35.91, "Median Spend per Customer": 61.1 }, "geometry": { "type": "Point", "coordinates": [ -75.148856, 39.970151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "Name": "Rapoport Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6934 Bustleton Ave", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 38.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 295.0, "Total Spend": 460.0, "Total Transactions": 21.0, "Total Customers": 9.0, "Median Spend per Transaction": 19.98, "Median Spend per Customer": 52.88 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "Name": "Primal Nutrition", "Category": "Health and Personal Care Stores", "Address": "8114 Roosevelt Blvd", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 40.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 1.0, "Total Spend": 4278.0, "Total Transactions": 49.0, "Total Customers": 28.0, "Median Spend per Transaction": 87.88, "Median Spend per Customer": 175.76 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1851 S Columbus Blvd Ste 3", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 127.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 18027.0, "Total Transactions": 1122.0, "Total Customers": 826.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 15.56 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8113 Stenton Ave", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2022, "Total Visits": 228.0, "Total Visitors": 164.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 3.0, "Total Spend": 6740.0, "Total Transactions": 786.0, "Total Customers": 456.0, "Median Spend per Transaction": 7.61, "Median Spend per Customer": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "8920 Frankford Ave", "LATITUDE": 40.05212, "LONGITUDE": -75.010353, "DATE_RANGE_START": 2022, "Total Visits": 956.0, "Total Visitors": 570.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 6.0, "Total Spend": 177730.0, "Total Transactions": 4141.0, "Total Customers": 1251.0, "Median Spend per Transaction": 22.45, "Median Spend per Customer": 71.82 }, "geometry": { "type": "Point", "coordinates": [ -75.010353, 40.05212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "Name": "Fair Mart", "Category": "Grocery Stores", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.968488, "LONGITUDE": -75.180495, "DATE_RANGE_START": 2022, "Total Visits": 336.0, "Total Visitors": 232.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 337.0, "Total Spend": 6424.0, "Total Transactions": 606.0, "Total Customers": 169.0, "Median Spend per Transaction": 7.87, "Median Spend per Customer": 19.49 }, "geometry": { "type": "Point", "coordinates": [ -75.180495, 39.968488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgb-47q", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "1500 Spring Garden St", "LATITUDE": 39.962439, "LONGITUDE": -75.1634, "DATE_RANGE_START": 2022, "Total Visits": 1739.0, "Total Visitors": 794.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 240.0, "Total Spend": 12321.0, "Total Transactions": 925.0, "Total Customers": 577.0, "Median Spend per Transaction": 11.59, "Median Spend per Customer": 15.64 }, "geometry": { "type": "Point", "coordinates": [ -75.1634, 39.962439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "Name": "Rieker's Prime Meats", "Category": "Specialty Food Stores", "Address": "7979 Oxford Ave", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 138.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 6.0, "Total Spend": 372.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 53.45, "Median Spend per Customer": 106.9 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p8m-syv", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1607 Bridge St", "LATITUDE": 40.02299, "LONGITUDE": -75.075925, "DATE_RANGE_START": 2022, "Total Visits": 462.0, "Total Visitors": 369.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 6.0, "Total Spend": 1005.0, "Total Transactions": 54.0, "Total Customers": 35.0, "Median Spend per Transaction": 10.65, "Median Spend per Customer": 25.61 }, "geometry": { "type": "Point", "coordinates": [ -75.075925, 40.02299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7700 Crittenden St", "LATITUDE": 40.072233, "LONGITUDE": -75.194825, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 91.0, "POI_CBG": 421010257001.0, "Median Dwell Time": 5.0, "Total Spend": 12247.0, "Total Transactions": 502.0, "Total Customers": 282.0, "Median Spend per Transaction": 14.71, "Median Spend per Customer": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.194825, 40.072233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-x89", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5017 N Broad St # 25", "LATITUDE": 40.030078, "LONGITUDE": -75.146229, "DATE_RANGE_START": 2022, "Total Visits": 2176.0, "Total Visitors": 1333.0, "POI_CBG": 421010282001.0, "Median Dwell Time": 4.0, "Total Spend": 205.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146229, 40.030078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "Name": "University City Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4300 Walnut St", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 38.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 1.0, "Total Spend": 1084.0, "Total Transactions": 38.0, "Total Customers": 21.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 48.55 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-pjv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2401 E Venango St", "LATITUDE": 39.993233, "LONGITUDE": -75.096202, "DATE_RANGE_START": 2022, "Total Visits": 483.0, "Total Visitors": 392.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 5.0, "Total Spend": 9791.0, "Total Transactions": 458.0, "Total Customers": 354.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.096202, 39.993233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "1575 N 52nd St Ste 704", "LATITUDE": 39.978284, "LONGITUDE": -75.224461, "DATE_RANGE_START": 2022, "Total Visits": 193.0, "Total Visitors": 178.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 3.0, "Total Spend": 20927.0, "Total Transactions": 1082.0, "Total Customers": 199.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 34.78 }, "geometry": { "type": "Point", "coordinates": [ -75.224461, 39.978284 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "Name": "Skyline Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "505 Washington Ave", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2022, "Total Visits": 213.0, "Total Visitors": 148.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 8.0, "Total Spend": 6976.0, "Total Transactions": 30.0, "Total Customers": 12.0, "Median Spend per Transaction": 168.48, "Median Spend per Customer": 336.96 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pm9-y9z", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "417 South St # 421", "LATITUDE": 39.941946, "LONGITUDE": -75.149832, "DATE_RANGE_START": 2022, "Total Visits": 214.0, "Total Visitors": 174.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 11.0, "Total Spend": 261.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 37.45, "Median Spend per Customer": 74.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.941946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-66k", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2201 Cottman Ave Ste 245", "LATITUDE": 40.049027, "LONGITUDE": -75.060408, "DATE_RANGE_START": 2022, "Total Visits": 218.0, "Total Visitors": 179.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 3.0, "Total Spend": 9808.0, "Total Transactions": 120.0, "Total Customers": 89.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 34.42 }, "geometry": { "type": "Point", "coordinates": [ -75.060408, 40.049027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "Name": "Main Street Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4444 Main St", "LATITUDE": 40.026391, "LONGITUDE": -75.226268, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 103.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 153.0, "Total Spend": 2606.0, "Total Transactions": 40.0, "Total Customers": 28.0, "Median Spend per Transaction": 33.48, "Median Spend per Customer": 72.88 }, "geometry": { "type": "Point", "coordinates": [ -75.226268, 40.026391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "Name": "Roses", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "501 Adams Ave", "LATITUDE": 40.039098, "LONGITUDE": -75.107749, "DATE_RANGE_START": 2022, "Total Visits": 551.0, "Total Visitors": 406.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 16.0, "Total Spend": 41692.0, "Total Transactions": 1171.0, "Total Customers": 383.0, "Median Spend per Transaction": 23.61, "Median Spend per Customer": 63.55 }, "geometry": { "type": "Point", "coordinates": [ -75.107749, 40.039098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3000 Island Ave Ste M P", "LATITUDE": 39.898752, "LONGITUDE": -75.240579, "DATE_RANGE_START": 2022, "Total Visits": 416.0, "Total Visitors": 308.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 11.0, "Total Spend": 370.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240579, 39.898752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11749 Bustleton Ave Ste 14", "LATITUDE": 40.120348, "LONGITUDE": -75.015989, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 333.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 9.0, "Total Spend": 543.0, "Total Transactions": 30.0, "Total Customers": 23.0, "Median Spend per Transaction": 13.06, "Median Spend per Customer": 24.03 }, "geometry": { "type": "Point", "coordinates": [ -75.015989, 40.120348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "117 S 16th St", "LATITUDE": 39.950584, "LONGITUDE": -75.167188, "DATE_RANGE_START": 2022, "Total Visits": 308.0, "Total Visitors": 258.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 31.0, "Total Spend": 8234.0, "Total Transactions": 1382.0, "Total Customers": 547.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 8.45 }, "geometry": { "type": "Point", "coordinates": [ -75.167188, 39.950584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-k4v", "Name": "Kingstone Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2250 N 29th St", "LATITUDE": 39.990889, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 38.0, "POI_CBG": 421010169022.0, "Median Dwell Time": 157.0, "Total Spend": 2376.0, "Total Transactions": 146.0, "Total Customers": 35.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 45.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.990889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pj6-6hq", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "300 E Godfrey Ave", "LATITUDE": 40.042687, "LONGITUDE": -75.109486, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 49.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 300.0, "Total Spend": 823.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 87.09, "Median Spend per Customer": 133.89 }, "geometry": { "type": "Point", "coordinates": [ -75.109486, 40.042687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8h-g49", "Name": "Marjam Supply", "Category": "Building Material and Supplies Dealers", "Address": "6951 State Rd", "LATITUDE": 40.021268, "LONGITUDE": -75.037536, "DATE_RANGE_START": 2022, "Total Visits": 423.0, "Total Visitors": 375.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 1.0, "Total Spend": 4061.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 349.21, "Median Spend per Customer": 1165.5 }, "geometry": { "type": "Point", "coordinates": [ -75.037536, 40.021268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pg8-ks5", "Name": "Rybrew", "Category": "Restaurants and Other Eating Places", "Address": "2816 W Girard Ave", "LATITUDE": 39.974204, "LONGITUDE": -75.182529, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 30.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 23.0, "Total Spend": 31730.0, "Total Transactions": 2010.0, "Total Customers": 491.0, "Median Spend per Transaction": 13.01, "Median Spend per Customer": 40.6 }, "geometry": { "type": "Point", "coordinates": [ -75.182529, 39.974204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-y7q", "Name": "Friendship BBQ", "Category": "Restaurants and Other Eating Places", "Address": "927 Arch St", "LATITUDE": 39.953597, "LONGITUDE": -75.155857, "DATE_RANGE_START": 2022, "Total Visits": 5087.0, "Total Visitors": 3380.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 61.0, "Total Spend": 3249.0, "Total Transactions": 59.0, "Total Customers": 30.0, "Median Spend per Transaction": 40.11, "Median Spend per Customer": 80.74 }, "geometry": { "type": "Point", "coordinates": [ -75.155857, 39.953597 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "1930 Chestnut St", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2022, "Total Visits": 1537.0, "Total Visitors": 1240.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 3.0, "Total Spend": 17859.0, "Total Transactions": 331.0, "Total Customers": 150.0, "Median Spend per Transaction": 42.84, "Median Spend per Customer": 93.98 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7770 Dungan Rd", "LATITUDE": 40.065575, "LONGITUDE": -75.072105, "DATE_RANGE_START": 2022, "Total Visits": 397.0, "Total Visitors": 220.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 8.0, "Total Spend": 539.0, "Total Transactions": 28.0, "Total Customers": 21.0, "Median Spend per Transaction": 13.57, "Median Spend per Customer": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.072105, 40.065575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "Name": "Martinez Grocery", "Category": "Grocery Stores", "Address": "2655 W Sterner St", "LATITUDE": 39.997199, "LONGITUDE": -75.175295, "DATE_RANGE_START": 2022, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010172022.0, "Median Dwell Time": 2.0, "Total Spend": 1110.0, "Total Transactions": 82.0, "Total Customers": 23.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175295, 39.997199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5zz", "Name": "Moriartys Restaurant & Irish Pub", "Category": "Restaurants and Other Eating Places", "Address": "1116 Walnut St", "LATITUDE": 39.948666, "LONGITUDE": -75.159836, "DATE_RANGE_START": 2022, "Total Visits": 129.0, "Total Visitors": 112.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 43.0, "Total Spend": 24971.0, "Total Transactions": 432.0, "Total Customers": 235.0, "Median Spend per Transaction": 37.55, "Median Spend per Customer": 65.3 }, "geometry": { "type": "Point", "coordinates": [ -75.159836, 39.948666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "Name": "Yiro Yiro", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032303, "LONGITUDE": -75.214323, "DATE_RANGE_START": 2022, "Total Visits": 1571.0, "Total Visitors": 948.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 7.0, "Total Spend": 10543.0, "Total Transactions": 486.0, "Total Customers": 216.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.214323, 40.032303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "Name": "The Cheesecake Factory", "Category": "Restaurants and Other Eating Places", "Address": "1430 Walnut St", "LATITUDE": 39.949381, "LONGITUDE": -75.165741, "DATE_RANGE_START": 2022, "Total Visits": 1265.0, "Total Visitors": 997.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 57.0, "Total Spend": 29534.0, "Total Transactions": 542.0, "Total Customers": 474.0, "Median Spend per Transaction": 39.84, "Median Spend per Customer": 50.81 }, "geometry": { "type": "Point", "coordinates": [ -75.165741, 39.949381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "1708 N Broad St", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2022, "Total Visits": 333.0, "Total Visitors": 195.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 20.0, "Total Spend": 410.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 11.66, "Median Spend per Customer": 12.66 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pfx-s89", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "5125 Umbria St", "LATITUDE": 40.038452, "LONGITUDE": -75.239365, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 14.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 68.0, "Total Spend": 56589.0, "Total Transactions": 1437.0, "Total Customers": 559.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239365, 40.038452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-jjv", "Name": "Sweet Treat Hut", "Category": "Restaurants and Other Eating Places", "Address": "1240 N 50th St", "LATITUDE": 39.973199, "LONGITUDE": -75.222994, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010111003.0, "Median Dwell Time": 10.0, "Total Spend": 5623.0, "Total Transactions": 591.0, "Total Customers": 235.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222994, 39.973199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7x-b6k", "Name": "New England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6728 Bustleton Ave", "LATITUDE": 40.040059, "LONGITUDE": -75.066331, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 3.0, "Total Spend": 771.0, "Total Transactions": 31.0, "Total Customers": 16.0, "Median Spend per Transaction": 26.03, "Median Spend per Customer": 52.06 }, "geometry": { "type": "Point", "coordinates": [ -75.066331, 40.040059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-5xq", "Name": "Throwbaxx Bar & Grille", "Category": "Restaurants and Other Eating Places", "Address": "6800 Ridge Ave", "LATITUDE": 40.042336, "LONGITUDE": -75.226518, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 40.0, "POI_CBG": 421010216001.0, "Median Dwell Time": 46.0, "Total Spend": 1041.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.1, "Median Spend per Customer": 40.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226518, 40.042336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-33q", "Name": "Hello World", "Category": "Home Furnishings Stores", "Address": "3610 Sansom St", "LATITUDE": 39.953792, "LONGITUDE": -75.195373, "DATE_RANGE_START": 2022, "Total Visits": 679.0, "Total Visitors": 524.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 91.0, "Total Spend": 9610.0, "Total Transactions": 270.0, "Total Customers": 141.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195373, 39.953792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-435", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "2110 S Columbus Blvd", "LATITUDE": 39.918945, "LONGITUDE": -75.143088, "DATE_RANGE_START": 2022, "Total Visits": 239.0, "Total Visitors": 186.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 18.0, "Total Spend": 3036.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 871.45, "Median Spend per Customer": 871.45 }, "geometry": { "type": "Point", "coordinates": [ -75.143088, 39.918945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5601 Vine St", "LATITUDE": 39.966876, "LONGITUDE": -75.233151, "DATE_RANGE_START": 2022, "Total Visits": 728.0, "Total Visitors": 484.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 5.0, "Total Spend": 1495.0, "Total Transactions": 47.0, "Total Customers": 37.0, "Median Spend per Transaction": 25.64, "Median Spend per Customer": 27.79 }, "geometry": { "type": "Point", "coordinates": [ -75.233151, 39.966876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgy-kj9", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "701 E Cathedral Rd Ste 7", "LATITUDE": 40.062824, "LONGITUDE": -75.237514, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 44.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 14.0, "Total Spend": 4415.0, "Total Transactions": 77.0, "Total Customers": 64.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 34.66 }, "geometry": { "type": "Point", "coordinates": [ -75.237514, 40.062824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "715 S 2nd St", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 44.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 8.0, "Total Spend": 2667.0, "Total Transactions": 77.0, "Total Customers": 38.0, "Median Spend per Transaction": 25.9, "Median Spend per Customer": 53.92 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-phy-kmk", "Name": "Hong Kong", "Category": "Restaurants and Other Eating Places", "Address": "4901 N 5th St", "LATITUDE": 40.025945, "LONGITUDE": -75.132561, "DATE_RANGE_START": 2022, "Total Visits": 472.0, "Total Visitors": 261.0, "POI_CBG": 421010286003.0, "Median Dwell Time": 122.0, "Total Spend": 44482.0, "Total Transactions": 638.0, "Total Customers": 305.0, "Median Spend per Transaction": 39.93, "Median Spend per Customer": 66.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132561, 40.025945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3320 Grant Ave Unit 18B", "LATITUDE": 40.068041, "LONGITUDE": -75.007034, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 31.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 1.0, "Total Spend": 1391.0, "Total Transactions": 179.0, "Total Customers": 110.0, "Median Spend per Transaction": 5.16, "Median Spend per Customer": 8.19 }, "geometry": { "type": "Point", "coordinates": [ -75.007034, 40.068041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-v2k", "Name": "Philadelphia Gas Works", "Category": "Gasoline Stations", "Address": "1601 S Broad St", "LATITUDE": 39.930101, "LONGITUDE": -75.168102, "DATE_RANGE_START": 2022, "Total Visits": 674.0, "Total Visitors": 315.0, "POI_CBG": 421010029002.0, "Median Dwell Time": 148.0, "Total Spend": 7488.0, "Total Transactions": 115.0, "Total Customers": 64.0, "Median Spend per Transaction": 68.0, "Median Spend per Customer": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168102, 39.930101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-226@628-pmb-xnq", "Name": "Access Karaoke", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1016 Race St # 18", "LATITUDE": 39.955252, "LONGITUDE": -75.156508, "DATE_RANGE_START": 2022, "Total Visits": 5082.0, "Total Visitors": 3631.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 34.0, "Total Spend": 8206.0, "Total Transactions": 124.0, "Total Customers": 37.0, "Median Spend per Transaction": 20.6, "Median Spend per Customer": 125.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156508, 39.955252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "Name": "Pat's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "12317 Academy Rd", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 112.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 5440.0, "Total Transactions": 368.0, "Total Customers": 145.0, "Median Spend per Transaction": 12.09, "Median Spend per Customer": 27.67 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22m@628-pmb-835", "Name": "Little Thai Market", "Category": "Restaurants and Other Eating Places", "Address": "51 N 12th St", "LATITUDE": 39.953099, "LONGITUDE": -75.159123, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 11127.0, "Total Transactions": 617.0, "Total Customers": 268.0, "Median Spend per Transaction": 14.96, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.159123, 39.953099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j35", "Name": "Her Place", "Category": "Restaurants and Other Eating Places", "Address": "1740 Sansom St", "LATITUDE": 39.950724, "LONGITUDE": -75.170177, "DATE_RANGE_START": 2022, "Total Visits": 432.0, "Total Visitors": 338.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 44.0, "Total Spend": 3474.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 295.86, "Median Spend per Customer": 556.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170177, 39.950724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dwf-td9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2934 Island Ave", "LATITUDE": 39.902299, "LONGITUDE": -75.242062, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 105.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 2.0, "Total Spend": 6384.0, "Total Transactions": 394.0, "Total Customers": 312.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.242062, 39.902299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "Name": "Rustica", "Category": "Restaurants and Other Eating Places", "Address": "903 N 2nd St", "LATITUDE": 39.964423, "LONGITUDE": -75.140069, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 155.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 86.0, "Total Spend": 7977.0, "Total Transactions": 389.0, "Total Customers": 162.0, "Median Spend per Transaction": 17.24, "Median Spend per Customer": 37.44 }, "geometry": { "type": "Point", "coordinates": [ -75.140069, 39.964423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "6001 N Broad St", "LATITUDE": 40.044629, "LONGITUDE": -75.142895, "DATE_RANGE_START": 2022, "Total Visits": 432.0, "Total Visitors": 357.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 4.0, "Total Spend": 1213.0, "Total Transactions": 99.0, "Total Customers": 80.0, "Median Spend per Transaction": 11.1, "Median Spend per Customer": 12.66 }, "geometry": { "type": "Point", "coordinates": [ -75.142895, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-2tv", "Name": "Chick A Boom", "Category": "Restaurants and Other Eating Places", "Address": "4626 Lancaster Ave", "LATITUDE": 39.971007, "LONGITUDE": -75.21574, "DATE_RANGE_START": 2022, "Total Visits": 99.0, "Total Visitors": 87.0, "POI_CBG": 421010105002.0, "Median Dwell Time": 3.0, "Total Spend": 3246.0, "Total Transactions": 115.0, "Total Customers": 61.0, "Median Spend per Transaction": 18.89, "Median Spend per Customer": 36.7 }, "geometry": { "type": "Point", "coordinates": [ -75.21574, 39.971007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pmb-gtv", "Name": "Middle Child", "Category": "Restaurants and Other Eating Places", "Address": "248 S 11th St", "LATITUDE": 39.947198, "LONGITUDE": -75.159468, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 207.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 115.0, "Total Spend": 830.0, "Total Transactions": 31.0, "Total Customers": 16.0, "Median Spend per Transaction": 18.88, "Median Spend per Customer": 37.76 }, "geometry": { "type": "Point", "coordinates": [ -75.159468, 39.947198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-3h5", "Name": "19 Degrees", "Category": "Restaurants and Other Eating Places", "Address": "1847 Christian St", "LATITUDE": 39.941163, "LONGITUDE": -75.17414, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 59.0, "POI_CBG": 421010019001.0, "Median Dwell Time": 1.0, "Total Spend": 711.0, "Total Transactions": 47.0, "Total Customers": 23.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17414, 39.941163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-224@628-pg2-cdv", "Name": "Cherish Philly", "Category": "Restaurants and Other Eating Places", "Address": "7060 Germantown Ave", "LATITUDE": 40.058226, "LONGITUDE": -75.189354, "DATE_RANGE_START": 2022, "Total Visits": 94.0, "Total Visitors": 77.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 29.0, "Total Spend": 770.0, "Total Transactions": 45.0, "Total Customers": 12.0, "Median Spend per Transaction": 18.03, "Median Spend per Customer": 58.32 }, "geometry": { "type": "Point", "coordinates": [ -75.189354, 40.058226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "Name": "Function Coffee Labs", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 10th St", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2022, "Total Visits": 916.0, "Total Visitors": 655.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 28.0, "Total Spend": 1558.0, "Total Transactions": 152.0, "Total Customers": 51.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "9711 Roosevelt Blvd", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2022, "Total Visits": 1122.0, "Total Visitors": 815.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 9.0, "Total Spend": 39416.0, "Total Transactions": 2254.0, "Total Customers": 1504.0, "Median Spend per Transaction": 14.3, "Median Spend per Customer": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "Name": "Suraya", "Category": "Restaurants and Other Eating Places", "Address": "1528 Frankford Ave", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2022, "Total Visits": 469.0, "Total Visitors": 408.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 88.0, "Total Spend": 27602.0, "Total Transactions": 179.0, "Total Customers": 110.0, "Median Spend per Transaction": 134.32, "Median Spend per Customer": 193.31 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7yv", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "48 N 12th St", "LATITUDE": 39.953782, "LONGITUDE": -75.159676, "DATE_RANGE_START": 2022, "Total Visits": 1972.0, "Total Visitors": 1681.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 28.0, "Total Spend": 13700.0, "Total Transactions": 817.0, "Total Customers": 620.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.159676, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2025 S Broad St", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2022, "Total Visits": 991.0, "Total Visitors": 558.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 13.0, "Total Spend": 5318.0, "Total Transactions": 733.0, "Total Customers": 308.0, "Median Spend per Transaction": 6.84, "Median Spend per Customer": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4501 Castor Ave", "LATITUDE": 40.016586, "LONGITUDE": -75.096388, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 157.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 8.0, "Total Spend": 3651.0, "Total Transactions": 216.0, "Total Customers": 176.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 17.22 }, "geometry": { "type": "Point", "coordinates": [ -75.096388, 40.016586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5506 Chestnut St # 12", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2022, "Total Visits": 265.0, "Total Visitors": 171.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 3.0, "Total Spend": 6106.0, "Total Transactions": 740.0, "Total Customers": 397.0, "Median Spend per Transaction": 7.42, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "532 W Lehigh Ave # 46", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2022, "Total Visits": 117.0, "Total Visitors": 98.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 4.0, "Total Spend": 2767.0, "Total Transactions": 348.0, "Total Customers": 220.0, "Median Spend per Transaction": 6.03, "Median Spend per Customer": 8.15 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5901 Rising Sun Ave", "LATITUDE": 40.044029, "LONGITUDE": -75.102175, "DATE_RANGE_START": 2022, "Total Visits": 162.0, "Total Visitors": 89.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 4.0, "Total Spend": 4060.0, "Total Transactions": 516.0, "Total Customers": 237.0, "Median Spend per Transaction": 6.76, "Median Spend per Customer": 9.52 }, "geometry": { "type": "Point", "coordinates": [ -75.102175, 40.044029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "Name": "Frame Fatale", "Category": "Home Furnishings Stores", "Address": "1813 E Passyunk Ave", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2022, "Total Visits": 709.0, "Total Visitors": 484.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 46.0, "Total Spend": 2154.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 185.49, "Median Spend per Customer": 370.97 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "Name": "Greene Street", "Category": "Clothing Stores", "Address": "8524 Germantown Ave", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2022, "Total Visits": 443.0, "Total Visitors": 284.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 106.0, "Total Spend": 2313.0, "Total Transactions": 30.0, "Total Customers": 12.0, "Median Spend per Transaction": 42.9, "Median Spend per Customer": 142.36 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "Name": "Crash Bang Boom", "Category": "Clothing Stores", "Address": "528 S 4th St", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2022, "Total Visits": 949.0, "Total Visitors": 864.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 11.0, "Total Spend": 1597.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 75.0, "Median Spend per Customer": 157.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pj8-tgk", "Name": "New Ben City Supermarket", "Category": "Grocery Stores", "Address": "5520 Whitaker Ave", "LATITUDE": 40.035691, "LONGITUDE": -75.100546, "DATE_RANGE_START": 2022, "Total Visits": 1162.0, "Total Visitors": 659.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 9.0, "Total Spend": 3469.0, "Total Transactions": 267.0, "Total Customers": 94.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.100546, 40.035691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1801 W Hunting Park Ave", "LATITUDE": 40.014555, "LONGITUDE": -75.15728, "DATE_RANGE_START": 2022, "Total Visits": 1115.0, "Total Visitors": 768.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 4.0, "Total Spend": 4590.0, "Total Transactions": 110.0, "Total Customers": 56.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 47.56 }, "geometry": { "type": "Point", "coordinates": [ -75.15728, 40.014555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgm-hwk", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "4268 Ridge Ave", "LATITUDE": 40.009599, "LONGITUDE": -75.196284, "DATE_RANGE_START": 2022, "Total Visits": 467.0, "Total Visitors": 359.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 3.0, "Total Spend": 826.0, "Total Transactions": 37.0, "Total Customers": 23.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196284, 40.009599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "Name": "Tiffany & Co.", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1715 Walnut St", "LATITUDE": 39.950223, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 204.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 30129.0, "Total Transactions": 44.0, "Total Customers": 37.0, "Median Spend per Transaction": 378.0, "Median Spend per Customer": 459.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.950223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p8d-rp9", "Name": "Walmart Supercenter", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2200 Wheatsheaf Ln", "LATITUDE": 39.998893, "LONGITUDE": -75.091892, "DATE_RANGE_START": 2022, "Total Visits": 6265.0, "Total Visitors": 3704.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 29.0, "Total Spend": 225308.0, "Total Transactions": 3690.0, "Total Customers": 2253.0, "Median Spend per Transaction": 36.5, "Median Spend per Customer": 58.91 }, "geometry": { "type": "Point", "coordinates": [ -75.091892, 39.998893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "Name": "Giorgio On Pine", "Category": "Restaurants and Other Eating Places", "Address": "1328 Pine St", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 56.0, "Total Spend": 25882.0, "Total Transactions": 239.0, "Total Customers": 125.0, "Median Spend per Transaction": 89.52, "Median Spend per Customer": 169.86 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "Name": "Fairmart", "Category": "Grocery Stores", "Address": "623 Fairmount Ave", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 37.0, "POI_CBG": 421010131001.0, "Median Dwell Time": 3.0, "Total Spend": 3481.0, "Total Transactions": 321.0, "Total Customers": 94.0, "Median Spend per Transaction": 8.62, "Median Spend per Customer": 16.21 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "Name": "Boostin' Bowls", "Category": "Restaurants and Other Eating Places", "Address": "100 Levering St", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 37.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 2.0, "Total Spend": 11578.0, "Total Transactions": 652.0, "Total Customers": 274.0, "Median Spend per Transaction": 14.89, "Median Spend per Customer": 30.88 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p8h-yd9", "Name": "Al's Catering Service", "Category": "Special Food Services", "Address": "7940 Torresdale Ave", "LATITUDE": 40.035283, "LONGITUDE": -75.02565, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 129.0, "POI_CBG": 421010329002.0, "Median Dwell Time": 9.0, "Total Spend": 95.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 27.31, "Median Spend per Customer": 27.31 }, "geometry": { "type": "Point", "coordinates": [ -75.02565, 40.035283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "Name": "Ryan's Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4301 Main St", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2022, "Total Visits": 209.0, "Total Visitors": 178.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 30.0, "Total Spend": 52411.0, "Total Transactions": 1908.0, "Total Customers": 695.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 53.4 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "Name": "Sawatdee Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "534 S 15th St", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 59.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 1.0, "Total Spend": 96.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 27.57, "Median Spend per Customer": 27.62 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "Name": "Moy Fong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7411 Stenton Ave", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 52.0, "POI_CBG": 421010264005.0, "Median Dwell Time": 4.0, "Total Spend": 5139.0, "Total Transactions": 195.0, "Total Customers": 85.0, "Median Spend per Transaction": 20.96, "Median Spend per Customer": 41.14 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "Name": "Alaska King Crab House", "Category": "Restaurants and Other Eating Places", "Address": "4834 Lancaster Ave", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 124.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 4.0, "Total Spend": 961.0, "Total Transactions": 28.0, "Total Customers": 16.0, "Median Spend per Transaction": 39.93, "Median Spend per Customer": 69.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-7qz", "Name": "Vedge", "Category": "Restaurants and Other Eating Places", "Address": "1221 Locust St", "LATITUDE": 39.947987, "LONGITUDE": -75.161387, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 138.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 261.0, "Total Spend": 34636.0, "Total Transactions": 260.0, "Total Customers": 136.0, "Median Spend per Transaction": 129.16, "Median Spend per Customer": 243.46 }, "geometry": { "type": "Point", "coordinates": [ -75.161387, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9r-4y9", "Name": "Chuck E. Cheese's", "Category": "Restaurants and Other Eating Places", "Address": "9175 Roosevelt Blvd Ste 2", "LATITUDE": 40.076158, "LONGITUDE": -75.031371, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 321.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 6.0, "Total Spend": 2026.0, "Total Transactions": 84.0, "Total Customers": 49.0, "Median Spend per Transaction": 19.48, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031371, 40.076158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2940 Fox St", "LATITUDE": 40.010746, "LONGITUDE": -75.175382, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 240.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 3.0, "Total Spend": 509.0, "Total Transactions": 38.0, "Total Customers": 31.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 13.06 }, "geometry": { "type": "Point", "coordinates": [ -75.175382, 40.010746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm9-yd9", "Name": "Famous 4th Street Delicatessen", "Category": "Restaurants and Other Eating Places", "Address": "700 S 4th St", "LATITUDE": 39.940489, "LONGITUDE": -75.149633, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 84.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 34.0, "Total Spend": 23578.0, "Total Transactions": 606.0, "Total Customers": 287.0, "Median Spend per Transaction": 29.42, "Median Spend per Customer": 58.06 }, "geometry": { "type": "Point", "coordinates": [ -75.149633, 39.940489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-hnq", "Name": "Stock", "Category": "Restaurants and Other Eating Places", "Address": "1935 Chestnut St", "LATITUDE": 39.952182, "LONGITUDE": -75.173159, "DATE_RANGE_START": 2022, "Total Visits": 4984.0, "Total Visitors": 3396.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 6264.0, "Total Transactions": 38.0, "Total Customers": 24.0, "Median Spend per Transaction": 118.91, "Median Spend per Customer": 198.67 }, "geometry": { "type": "Point", "coordinates": [ -75.173159, 39.952182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-ygk", "Name": "Snow Show", "Category": "Restaurants and Other Eating Places", "Address": "1001 Arch St", "LATITUDE": 39.953739, "LONGITUDE": -75.15638, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 125.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 2.0, "Total Spend": 2905.0, "Total Transactions": 235.0, "Total Customers": 124.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.15638, 39.953739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@63s-dw9-7dv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "Philadelphia Int. Airport Terminal D Concourse B", "LATITUDE": 39.877241, "LONGITUDE": -75.244155, "DATE_RANGE_START": 2022, "Total Visits": 1699.0, "Total Visitors": 1578.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 2.0, "Total Spend": 12859.0, "Total Transactions": 1298.0, "Total Customers": 1078.0, "Median Spend per Transaction": 8.69, "Median Spend per Customer": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.244155, 39.877241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pp2-47q", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3118 Richmond St", "LATITUDE": 39.982157, "LONGITUDE": -75.10349, "DATE_RANGE_START": 2022, "Total Visits": 183.0, "Total Visitors": 71.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 922.0, "Total Spend": 464.0, "Total Transactions": 49.0, "Total Customers": 16.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 12.32 }, "geometry": { "type": "Point", "coordinates": [ -75.10349, 39.982157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "Name": "Beer Baron", "Category": "Beer, Wine, and Liquor Stores", "Address": "3290 Red Lion Rd", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2022, "Total Visits": 1896.0, "Total Visitors": 1035.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 8.0, "Total Spend": 16714.0, "Total Transactions": 503.0, "Total Customers": 152.0, "Median Spend per Transaction": 28.72, "Median Spend per Customer": 80.96 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2640 E Cumberland St", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2022, "Total Visits": 803.0, "Total Visitors": 551.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 3.0, "Total Spend": 21767.0, "Total Transactions": 1040.0, "Total Customers": 688.0, "Median Spend per Transaction": 15.87, "Median Spend per Customer": 22.13 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "Name": "Arch Pharmacy", "Category": "Health and Personal Care Stores", "Address": "933 Arch St", "LATITUDE": 39.953757, "LONGITUDE": -75.15607, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 221.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 12.0, "Total Spend": 1478.0, "Total Transactions": 33.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15607, 39.953757 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1101 Locust St", "LATITUDE": 39.947798, "LONGITUDE": -75.1598, "DATE_RANGE_START": 2022, "Total Visits": 1296.0, "Total Visitors": 876.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 138.0, "Total Spend": 6565.0, "Total Transactions": 350.0, "Total Customers": 226.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 16.27 }, "geometry": { "type": "Point", "coordinates": [ -75.1598, 39.947798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2201 Walnut St", "LATITUDE": 39.951277, "LONGITUDE": -75.177618, "DATE_RANGE_START": 2022, "Total Visits": 2239.0, "Total Visitors": 1798.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 4.0, "Total Spend": 3235.0, "Total Transactions": 92.0, "Total Customers": 77.0, "Median Spend per Transaction": 25.02, "Median Spend per Customer": 36.64 }, "geometry": { "type": "Point", "coordinates": [ -75.177618, 39.951277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4421 N Broad St", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2022, "Total Visits": 787.0, "Total Visitors": 575.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 4.0, "Total Spend": 10161.0, "Total Transactions": 434.0, "Total Customers": 268.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3850 Lancaster Ave", "LATITUDE": 39.961276, "LONGITUDE": -75.199304, "DATE_RANGE_START": 2022, "Total Visits": 420.0, "Total Visitors": 171.0, "POI_CBG": 421010091003.0, "Median Dwell Time": 430.0, "Total Spend": 14351.0, "Total Transactions": 186.0, "Total Customers": 77.0, "Median Spend per Transaction": 29.16, "Median Spend per Customer": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.199304, 39.961276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2250 S Columbus Blvd", "LATITUDE": 39.917114, "LONGITUDE": -75.139852, "DATE_RANGE_START": 2022, "Total Visits": 578.0, "Total Visitors": 521.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 7.0, "Total Spend": 23311.0, "Total Transactions": 1242.0, "Total Customers": 986.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 16.96 }, "geometry": { "type": "Point", "coordinates": [ -75.139852, 39.917114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1161 Franklin Mills Cir", "LATITUDE": 40.084266, "LONGITUDE": -74.961834, "DATE_RANGE_START": 2022, "Total Visits": 355.0, "Total Visitors": 333.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 11164.0, "Total Transactions": 781.0, "Total Customers": 641.0, "Median Spend per Transaction": 10.7, "Median Spend per Customer": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -74.961834, 40.084266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-x89", "Name": "Twin Smoke Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "1537 S 10th St", "LATITUDE": 39.929672, "LONGITUDE": -75.161301, "DATE_RANGE_START": 2022, "Total Visits": 183.0, "Total Visitors": 129.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 152.0, "Total Spend": 71.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.21, "Median Spend per Customer": 20.42 }, "geometry": { "type": "Point", "coordinates": [ -75.161301, 39.929672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "Name": "Spring Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3739 Lancaster Ave", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 78.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 9.0, "Total Spend": 5672.0, "Total Transactions": 293.0, "Total Customers": 129.0, "Median Spend per Transaction": 16.09, "Median Spend per Customer": 31.21 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4849 Market St", "LATITUDE": 39.959641, "LONGITUDE": -75.218508, "DATE_RANGE_START": 2022, "Total Visits": 362.0, "Total Visitors": 279.0, "POI_CBG": 421010104004.0, "Median Dwell Time": 9.0, "Total Spend": 3783.0, "Total Transactions": 235.0, "Total Customers": 157.0, "Median Spend per Transaction": 12.98, "Median Spend per Customer": 14.71 }, "geometry": { "type": "Point", "coordinates": [ -75.218508, 39.959641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "Name": "BP", "Category": "Gasoline Stations", "Address": "5801 Oxford Ave", "LATITUDE": 40.032516, "LONGITUDE": -75.084558, "DATE_RANGE_START": 2022, "Total Visits": 1321.0, "Total Visitors": 875.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 4.0, "Total Spend": 6122.0, "Total Transactions": 207.0, "Total Customers": 103.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 25.62 }, "geometry": { "type": "Point", "coordinates": [ -75.084558, 40.032516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-wx5", "Name": "Gap Factory Store", "Category": "Clothing Stores", "Address": "1875 Franklin Mills Cir Spc NO163", "LATITUDE": 40.090197, "LONGITUDE": -74.960879, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 190.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 13.0, "Total Spend": 1029.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 36.2, "Median Spend per Customer": 36.2 }, "geometry": { "type": "Point", "coordinates": [ -74.960879, 40.090197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "Name": "Wooden Shoe Books", "Category": "Book Stores and News Dealers", "Address": "704 South St", "LATITUDE": 39.942084, "LONGITUDE": -75.154166, "DATE_RANGE_START": 2022, "Total Visits": 85.0, "Total Visitors": 51.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 931.0, "Total Spend": 4150.0, "Total Transactions": 129.0, "Total Customers": 71.0, "Median Spend per Transaction": 26.79, "Median Spend per Customer": 39.95 }, "geometry": { "type": "Point", "coordinates": [ -75.154166, 39.942084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "Name": "Bloomingdale's Outlet Philadelphia", "Category": "Department Stores", "Address": "1625 Chestnut St Ste 240 248", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2022, "Total Visits": 12439.0, "Total Visitors": 7582.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 78.0, "Total Spend": 4696.0, "Total Transactions": 92.0, "Total Customers": 87.0, "Median Spend per Transaction": 34.99, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-835", "Name": "Pennsylvania General Store", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "51 N 12th St", "LATITUDE": 39.953203, "LONGITUDE": -75.159393, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 1633.0, "Total Transactions": 99.0, "Total Customers": 38.0, "Median Spend per Transaction": 12.88, "Median Spend per Customer": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.159393, 39.953203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmf-j5f", "Name": "Stir", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1705 Chancellor St", "LATITUDE": 39.949714, "LONGITUDE": -75.169724, "DATE_RANGE_START": 2022, "Total Visits": 3800.0, "Total Visitors": 2474.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 62.0, "Total Spend": 5678.0, "Total Transactions": 181.0, "Total Customers": 77.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169724, 39.949714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-ndv", "Name": "Kensington Quarters", "Category": "Restaurants and Other Eating Places", "Address": "1310 Frankford Ave", "LATITUDE": 39.97058, "LONGITUDE": -75.134713, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 103.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 31.0, "Total Spend": 24563.0, "Total Transactions": 169.0, "Total Customers": 92.0, "Median Spend per Transaction": 105.18, "Median Spend per Customer": 182.76 }, "geometry": { "type": "Point", "coordinates": [ -75.134713, 39.97058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "Name": "Fairmount Pizza and Grill", "Category": "Restaurants and Other Eating Places", "Address": "2000 Fairmount Ave", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 145.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 2.0, "Total Spend": 29492.0, "Total Transactions": 1747.0, "Total Customers": 685.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 31.42 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "Name": "Apricot Stone", "Category": "Restaurants and Other Eating Places", "Address": "1040 N American St Ste 601", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 26.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 86.0, "Total Spend": 12970.0, "Total Transactions": 160.0, "Total Customers": 77.0, "Median Spend per Transaction": 57.35, "Median Spend per Customer": 77.76 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phq-2ff", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "6242 Stenton Ave", "LATITUDE": 40.058682, "LONGITUDE": -75.164688, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 31.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 77.0, "Total Spend": 2733.0, "Total Transactions": 134.0, "Total Customers": 99.0, "Median Spend per Transaction": 16.72, "Median Spend per Customer": 20.96 }, "geometry": { "type": "Point", "coordinates": [ -75.164688, 40.058682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2400 Lombard St", "LATITUDE": 39.946402, "LONGITUDE": -75.180743, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 40.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 7.0, "Total Spend": 4101.0, "Total Transactions": 420.0, "Total Customers": 202.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180743, 39.946402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "Name": "King Wok Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "13631 Philmont Ave", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 45.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 2.0, "Total Spend": 3120.0, "Total Transactions": 96.0, "Total Customers": 42.0, "Median Spend per Transaction": 25.76, "Median Spend per Customer": 53.2 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7106 Ridge Ave", "LATITUDE": 40.043955, "LONGITUDE": -75.231236, "DATE_RANGE_START": 2022, "Total Visits": 223.0, "Total Visitors": 176.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 7.0, "Total Spend": 511.0, "Total Transactions": 31.0, "Total Customers": 23.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 20.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231236, 40.043955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3141 Frankford Ave Spc 41", "LATITUDE": 39.992401, "LONGITUDE": -75.110955, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 82.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 264.0, "Total Spend": 34.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 3.75, "Median Spend per Customer": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.110955, 39.992401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg9-tgk", "Name": "The Spring Gardens", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "1800 1898 N St", "LATITUDE": 39.963016, "LONGITUDE": -75.168206, "DATE_RANGE_START": 2022, "Total Visits": 1118.0, "Total Visitors": 481.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 260.0, "Total Spend": 35685.0, "Total Transactions": 869.0, "Total Customers": 371.0, "Median Spend per Transaction": 30.5, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168206, 39.963016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-jjv", "Name": "Pastrami & Things", "Category": "Restaurants and Other Eating Places", "Address": "1234 Market St Ste LL1", "LATITUDE": 39.952406, "LONGITUDE": -75.170418, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 132.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 45.0, "Total Spend": 852.0, "Total Transactions": 113.0, "Total Customers": 35.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 14.72 }, "geometry": { "type": "Point", "coordinates": [ -75.170418, 39.952406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1512 Walnut St", "LATITUDE": 39.949499, "LONGITUDE": -75.166653, "DATE_RANGE_START": 2022, "Total Visits": 467.0, "Total Visitors": 359.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 14.0, "Total Spend": 13714.0, "Total Transactions": 1101.0, "Total Customers": 807.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 13.61 }, "geometry": { "type": "Point", "coordinates": [ -75.166653, 39.949499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "Name": "Soy Cafe", "Category": "Restaurants and Other Eating Places", "Address": "630 N 2nd St", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 115.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 485.0, "Total Spend": 4490.0, "Total Transactions": 272.0, "Total Customers": 131.0, "Median Spend per Transaction": 15.07, "Median Spend per Customer": 24.24 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p7w-gc5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7965 Verree Rd", "LATITUDE": 40.072472, "LONGITUDE": -75.075745, "DATE_RANGE_START": 2022, "Total Visits": 848.0, "Total Visitors": 516.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 2.0, "Total Spend": 2114.0, "Total Transactions": 84.0, "Total Customers": 38.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 28.29 }, "geometry": { "type": "Point", "coordinates": [ -75.075745, 40.072472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmf-kvf", "Name": "Village Whiskey", "Category": "Specialty Food Stores", "Address": "118 S 20th St", "LATITUDE": 39.951382, "LONGITUDE": -75.173791, "DATE_RANGE_START": 2022, "Total Visits": 1801.0, "Total Visitors": 1275.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 100.0, "Total Spend": 16794.0, "Total Transactions": 284.0, "Total Customers": 139.0, "Median Spend per Transaction": 50.1, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173791, 39.951382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7v-vxq", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "7300 Algon Ave", "LATITUDE": 40.055747, "LONGITUDE": -75.073256, "DATE_RANGE_START": 2022, "Total Visits": 340.0, "Total Visitors": 192.0, "POI_CBG": 421010338002.0, "Median Dwell Time": 120.0, "Total Spend": 234.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 32.02, "Median Spend per Customer": 32.02 }, "geometry": { "type": "Point", "coordinates": [ -75.073256, 40.055747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8n5", "Name": "Columbia Sportswear", "Category": "Clothing Stores", "Address": "1001 Market St Unit C205", "LATITUDE": 39.951969, "LONGITUDE": -75.157009, "DATE_RANGE_START": 2022, "Total Visits": 1932.0, "Total Visitors": 1650.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 5706.0, "Total Transactions": 117.0, "Total Customers": 57.0, "Median Spend per Transaction": 44.98, "Median Spend per Customer": 76.81 }, "geometry": { "type": "Point", "coordinates": [ -75.157009, 39.951969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1600 E Wadsworth Ave Ste B", "LATITUDE": 40.080365, "LONGITUDE": -75.171922, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 84.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 8.0, "Total Spend": 1178.0, "Total Transactions": 134.0, "Total Customers": 110.0, "Median Spend per Transaction": 7.72, "Median Spend per Customer": 8.86 }, "geometry": { "type": "Point", "coordinates": [ -75.171922, 40.080365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "1651 S Columbus Blvd", "LATITUDE": 39.925864, "LONGITUDE": -75.142894, "DATE_RANGE_START": 2022, "Total Visits": 2784.0, "Total Visitors": 1946.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 12.0, "Total Spend": 164780.0, "Total Transactions": 1338.0, "Total Customers": 777.0, "Median Spend per Transaction": 45.5, "Median Spend per Customer": 51.77 }, "geometry": { "type": "Point", "coordinates": [ -75.142894, 39.925864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgk-sqz", "Name": "Sleep Number", "Category": "Furniture Stores", "Address": "4040 City Ave", "LATITUDE": 40.007451, "LONGITUDE": -75.21243, "DATE_RANGE_START": 2022, "Total Visits": 568.0, "Total Visitors": 469.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 9.0, "Total Spend": 21527.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 3089.08, "Median Spend per Customer": 6178.15 }, "geometry": { "type": "Point", "coordinates": [ -75.21243, 40.007451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "Name": "IKEA", "Category": "Furniture Stores", "Address": "2206 S Columbus Blvd", "LATITUDE": 39.917106, "LONGITUDE": -75.141639, "DATE_RANGE_START": 2022, "Total Visits": 5251.0, "Total Visitors": 4643.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 44.0, "Total Spend": 627964.0, "Total Transactions": 6089.0, "Total Customers": 4333.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 60.44 }, "geometry": { "type": "Point", "coordinates": [ -75.141639, 39.917106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dw7-gkz", "Name": "Aviation Grill", "Category": "Restaurants and Other Eating Places", "Address": "1 Arrivals Rd", "LATITUDE": 39.877894, "LONGITUDE": -75.244682, "DATE_RANGE_START": 2022, "Total Visits": 8028.0, "Total Visitors": 6237.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 163.0, "Total Spend": 6742.0, "Total Transactions": 59.0, "Total Customers": 30.0, "Median Spend per Transaction": 106.16, "Median Spend per Customer": 212.32 }, "geometry": { "type": "Point", "coordinates": [ -75.244682, 39.877894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "Name": "El Punto", "Category": "Restaurants and Other Eating Places", "Address": "4460 Whitaker Ave", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 115.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 3.0, "Total Spend": 8799.0, "Total Transactions": 305.0, "Total Customers": 150.0, "Median Spend per Transaction": 24.5, "Median Spend per Customer": 51.75 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "5632 Ridge Ave", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2022, "Total Visits": 430.0, "Total Visitors": 272.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 3.0, "Total Spend": 2671.0, "Total Transactions": 235.0, "Total Customers": 105.0, "Median Spend per Transaction": 6.68, "Median Spend per Customer": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8n5", "Name": "Kai Japanese Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "12 S 10th St", "LATITUDE": 39.950968, "LONGITUDE": -75.157061, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 162.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 9720.0, "Total Transactions": 223.0, "Total Customers": 77.0, "Median Spend per Transaction": 32.05, "Median Spend per Customer": 61.11 }, "geometry": { "type": "Point", "coordinates": [ -75.157061, 39.950968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032491, "LONGITUDE": -75.214429, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 112.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 4.0, "Total Spend": 831.0, "Total Transactions": 40.0, "Total Customers": 26.0, "Median Spend per Transaction": 15.81, "Median Spend per Customer": 31.62 }, "geometry": { "type": "Point", "coordinates": [ -75.214429, 40.032491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pmb-c3q", "Name": "Kin Boutique", "Category": "Clothing Stores", "Address": "1010 Pine St", "LATITUDE": 39.944553, "LONGITUDE": -75.158728, "DATE_RANGE_START": 2022, "Total Visits": 1044.0, "Total Visitors": 749.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 106.0, "Total Spend": 8370.0, "Total Transactions": 26.0, "Total Customers": 14.0, "Median Spend per Transaction": 298.08, "Median Spend per Customer": 632.48 }, "geometry": { "type": "Point", "coordinates": [ -75.158728, 39.944553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-54v", "Name": "United Fried Chicken", "Category": "Restaurants and Other Eating Places", "Address": "1339 W Olney Ave", "LATITUDE": 40.039073, "LONGITUDE": -75.143922, "DATE_RANGE_START": 2022, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 4.0, "Total Spend": 870.0, "Total Transactions": 75.0, "Total Customers": 33.0, "Median Spend per Transaction": 9.36, "Median Spend per Customer": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143922, 40.039073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "Name": "Repo Records", "Category": "Electronics and Appliance Stores", "Address": "506 South St", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2022, "Total Visits": 859.0, "Total Visitors": 679.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 17.0, "Total Spend": 33519.0, "Total Transactions": 730.0, "Total Customers": 371.0, "Median Spend per Transaction": 36.71, "Median Spend per Customer": 73.42 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-t5f", "Name": "Ta China Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "679 N Broad St", "LATITUDE": 39.965931, "LONGITUDE": -75.160374, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 31.0, "Total Spend": 92.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.25, "Median Spend per Customer": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160374, 39.965931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pj3-kfz", "Name": "Chocolates By Esonkee", "Category": "Specialty Food Stores", "Address": "4607 Wayne Ave Fl 1", "LATITUDE": 40.02334, "LONGITUDE": -75.163261, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010244002.0, "Median Dwell Time": null, "Total Spend": 586.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.57, "Median Spend per Customer": 45.14 }, "geometry": { "type": "Point", "coordinates": [ -75.163261, 40.02334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "Name": "Warwick Hotel Rittenhouse Square", "Category": "Traveler Accommodation", "Address": "220 S 17th St", "LATITUDE": 39.949172, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2022, "Total Visits": 2512.0, "Total Visitors": 1556.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 272.0, "Total Spend": 13087.0, "Total Transactions": 61.0, "Total Customers": 31.0, "Median Spend per Transaction": 206.52, "Median Spend per Customer": 397.46 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.949172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-8d9", "Name": "Sky Club", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1025 Arch St", "LATITUDE": 39.953909, "LONGITUDE": -75.15735, "DATE_RANGE_START": 2022, "Total Visits": 380.0, "Total Visitors": 256.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 169.0, "Total Spend": 5615.0, "Total Transactions": 35.0, "Total Customers": 16.0, "Median Spend per Transaction": 122.77, "Median Spend per Customer": 363.08 }, "geometry": { "type": "Point", "coordinates": [ -75.15735, 39.953909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-whq", "Name": "Mac's Tavern", "Category": "Restaurants and Other Eating Places", "Address": "226 Market St", "LATITUDE": 39.949782, "LONGITUDE": -75.144728, "DATE_RANGE_START": 2022, "Total Visits": 3399.0, "Total Visitors": 2453.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 70.0, "Total Spend": 8617.0, "Total Transactions": 260.0, "Total Customers": 118.0, "Median Spend per Transaction": 28.48, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144728, 39.949782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-7h5", "Name": "Estia", "Category": "Restaurants and Other Eating Places", "Address": "1405 Locust St", "LATITUDE": 39.948448, "LONGITUDE": -75.165269, "DATE_RANGE_START": 2022, "Total Visits": 653.0, "Total Visitors": 540.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 26.0, "Total Spend": 21992.0, "Total Transactions": 152.0, "Total Customers": 75.0, "Median Spend per Transaction": 115.0, "Median Spend per Customer": 214.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165269, 39.948448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-435", "Name": "Clock Bar", "Category": "Restaurants and Other Eating Places", "Address": "3649 Germantown Ave", "LATITUDE": 40.008873, "LONGITUDE": -75.15059, "DATE_RANGE_START": 2022, "Total Visits": 601.0, "Total Visitors": 437.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 32.0, "Total Spend": 1676.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 175.0, "Median Spend per Customer": 202.15 }, "geometry": { "type": "Point", "coordinates": [ -75.15059, 40.008873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-f2k", "Name": "New Eli", "Category": "Restaurants and Other Eating Places", "Address": "2956 Kensington Ave Ste 2", "LATITUDE": 39.993812, "LONGITUDE": -75.118652, "DATE_RANGE_START": 2022, "Total Visits": 347.0, "Total Visitors": 265.0, "POI_CBG": 421010177011.0, "Median Dwell Time": 57.0, "Total Spend": 700.0, "Total Transactions": 19.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.25, "Median Spend per Customer": 97.42 }, "geometry": { "type": "Point", "coordinates": [ -75.118652, 39.993812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "265 S Broad St", "LATITUDE": 39.947387, "LONGITUDE": -75.16433, "DATE_RANGE_START": 2022, "Total Visits": 3690.0, "Total Visitors": 2023.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 329.0, "Total Spend": 3067.0, "Total Transactions": 314.0, "Total Customers": 145.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16433, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y9z", "Name": "Delightful Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "906 Arch St", "LATITUDE": 39.953218, "LONGITUDE": -75.155064, "DATE_RANGE_START": 2022, "Total Visits": 124.0, "Total Visitors": 84.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 493.0, "Total Spend": 325.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 50.19 }, "geometry": { "type": "Point", "coordinates": [ -75.155064, 39.953218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pnx-st9", "Name": "Lmno", "Category": "Restaurants and Other Eating Places", "Address": "1739 N Front St # 49", "LATITUDE": 39.975936, "LONGITUDE": -75.133832, "DATE_RANGE_START": 2022, "Total Visits": 254.0, "Total Visitors": 240.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 70.0, "Total Spend": 2792.0, "Total Transactions": 37.0, "Total Customers": 19.0, "Median Spend per Transaction": 58.0, "Median Spend per Customer": 128.6 }, "geometry": { "type": "Point", "coordinates": [ -75.133832, 39.975936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "Name": "Dolce Carini Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1929 Chestnut St", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 101.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 20.0, "Total Spend": 2500.0, "Total Transactions": 186.0, "Total Customers": 80.0, "Median Spend per Transaction": 11.43, "Median Spend per Customer": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "942 Race St", "LATITUDE": 39.955218, "LONGITUDE": -75.155815, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 230.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 2.0, "Total Spend": 10721.0, "Total Transactions": 181.0, "Total Customers": 94.0, "Median Spend per Transaction": 43.56, "Median Spend per Customer": 93.87 }, "geometry": { "type": "Point", "coordinates": [ -75.155815, 39.955218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "Name": "Pho Palace", "Category": "Restaurants and Other Eating Places", "Address": "15501 Bustleton Ave", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2022, "Total Visits": 96.0, "Total Visitors": 63.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 219.0, "Total Spend": 8734.0, "Total Transactions": 169.0, "Total Customers": 87.0, "Median Spend per Transaction": 51.15, "Median Spend per Customer": 94.67 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "Name": "Tuna Bar", "Category": "Restaurants and Other Eating Places", "Address": "205 Race St", "LATITUDE": 39.954087, "LONGITUDE": -75.143167, "DATE_RANGE_START": 2022, "Total Visits": 155.0, "Total Visitors": 98.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 198.0, "Total Spend": 47613.0, "Total Transactions": 486.0, "Total Customers": 237.0, "Median Spend per Transaction": 86.23, "Median Spend per Customer": 160.2 }, "geometry": { "type": "Point", "coordinates": [ -75.143167, 39.954087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "701 W Lehigh Ave", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 59.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 3.0, "Total Spend": 1865.0, "Total Transactions": 118.0, "Total Customers": 85.0, "Median Spend per Transaction": 14.44, "Median Spend per Customer": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 188.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 10930.0, "Total Transactions": 631.0, "Total Customers": 448.0, "Median Spend per Transaction": 15.45, "Median Spend per Customer": 18.26 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-rzf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2300 E Butler St", "LATITUDE": 39.996049, "LONGITUDE": -75.092849, "DATE_RANGE_START": 2022, "Total Visits": 841.0, "Total Visitors": 359.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 4.0, "Total Spend": 1589.0, "Total Transactions": 211.0, "Total Customers": 145.0, "Median Spend per Transaction": 5.06, "Median Spend per Customer": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -75.092849, 39.996049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p85-2hq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8298 Bustleton Ave", "LATITUDE": 40.066275, "LONGITUDE": -75.051537, "DATE_RANGE_START": 2022, "Total Visits": 139.0, "Total Visitors": 117.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 3.0, "Total Spend": 825.0, "Total Transactions": 98.0, "Total Customers": 51.0, "Median Spend per Transaction": 4.56, "Median Spend per Customer": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.051537, 40.066275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "9000 Roosevelt Blvd", "LATITUDE": 40.074942, "LONGITUDE": -75.035038, "DATE_RANGE_START": 2022, "Total Visits": 2017.0, "Total Visitors": 1359.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 4.0, "Total Spend": 1000.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 51.31, "Median Spend per Customer": 51.31 }, "geometry": { "type": "Point", "coordinates": [ -75.035038, 40.074942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "Name": "Golden Nugget Jewelers III", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "800 Chestnut St", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2022, "Total Visits": 1373.0, "Total Visitors": 1031.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 34.0, "Total Spend": 114410.0, "Total Transactions": 105.0, "Total Customers": 37.0, "Median Spend per Transaction": 1000.0, "Median Spend per Customer": 1230.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmd-w49", "Name": "Cook", "Category": "Home Furnishings Stores", "Address": "253 S 20th St", "LATITUDE": 39.94873, "LONGITUDE": -75.174113, "DATE_RANGE_START": 2022, "Total Visits": 796.0, "Total Visitors": 537.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 32.0, "Total Spend": 543.0, "Total Transactions": 21.0, "Total Customers": 9.0, "Median Spend per Transaction": 28.12, "Median Spend per Customer": 70.56 }, "geometry": { "type": "Point", "coordinates": [ -75.174113, 39.94873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "2120 S Broad St", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 31.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 43.0, "Total Spend": 726.0, "Total Transactions": 37.0, "Total Customers": 17.0, "Median Spend per Transaction": 19.8, "Median Spend per Customer": 39.6 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "Name": "New Wave Cafe", "Category": "Restaurants and Other Eating Places", "Address": "784 S 3rd St", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2022, "Total Visits": 82.0, "Total Visitors": 47.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 80.0, "Total Spend": 8104.0, "Total Transactions": 150.0, "Total Customers": 77.0, "Median Spend per Transaction": 40.83, "Median Spend per Customer": 64.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "Name": "Villavillekula", "Category": "Clothing Stores", "Address": "8419 Germantown Ave", "LATITUDE": 40.075713, "LONGITUDE": -75.205415, "DATE_RANGE_START": 2022, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 1.0, "Total Spend": 1928.0, "Total Transactions": 38.0, "Total Customers": 17.0, "Median Spend per Transaction": 48.6, "Median Spend per Customer": 105.84 }, "geometry": { "type": "Point", "coordinates": [ -75.205415, 40.075713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfv-94v", "Name": "The Nesting House", "Category": "Clothing Stores", "Address": "542 Carpenter Ln", "LATITUDE": 40.04661, "LONGITUDE": -75.195379, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 14.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 297.0, "Total Spend": 47670.0, "Total Transactions": 66.0, "Total Customers": 7.0, "Median Spend per Transaction": 699.0, "Median Spend per Customer": 4544.0 }, "geometry": { "type": "Point", "coordinates": [ -75.195379, 40.04661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p7c-3dv", "Name": "Marathon", "Category": "Gasoline Stations", "Address": "9451 Academy Rd", "LATITUDE": 40.06844, "LONGITUDE": -75.007839, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 19.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 4.0, "Total Spend": 2755.0, "Total Transactions": 96.0, "Total Customers": 64.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 34.69 }, "geometry": { "type": "Point", "coordinates": [ -75.007839, 40.06844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "Name": "Mustard Greens Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "622 S 2nd St", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 66.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 13.0, "Total Spend": 2492.0, "Total Transactions": 33.0, "Total Customers": 17.0, "Median Spend per Transaction": 55.59, "Median Spend per Customer": 137.54 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "Name": "Tacodelphia", "Category": "Restaurants and Other Eating Places", "Address": "427 S Broad St", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2022, "Total Visits": 120.0, "Total Visitors": 73.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 243.0, "Total Spend": 6377.0, "Total Transactions": 413.0, "Total Customers": 141.0, "Median Spend per Transaction": 12.01, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "1200 N Broad St", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 139.0, "POI_CBG": 421010140001.0, "Median Dwell Time": 2.0, "Total Spend": 236.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmf-ht9", "Name": "Devon & Blakely", "Category": "Restaurants and Other Eating Places", "Address": "1801 Market St", "LATITUDE": 39.953611, "LONGITUDE": -75.170322, "DATE_RANGE_START": 2022, "Total Visits": 2838.0, "Total Visitors": 2044.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 8.0, "Total Spend": 8595.0, "Total Transactions": 547.0, "Total Customers": 216.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 25.22 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 39.953611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-v75", "Name": "Buffalo Billiards", "Category": "Restaurants and Other Eating Places", "Address": "118 Chestnut St", "LATITUDE": 39.948098, "LONGITUDE": -75.143221, "DATE_RANGE_START": 2022, "Total Visits": 481.0, "Total Visitors": 345.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 77.0, "Total Spend": 62297.0, "Total Transactions": 1892.0, "Total Customers": 721.0, "Median Spend per Transaction": 22.02, "Median Spend per Customer": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -75.143221, 39.948098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "Name": "The Plough & the Stars", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 167.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 60.0, "Total Spend": 6915.0, "Total Transactions": 132.0, "Total Customers": 82.0, "Median Spend per Transaction": 44.25, "Median Spend per Customer": 65.68 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22d@628-pmf-hkf", "Name": "Halal Kitch", "Category": "Restaurants and Other Eating Places", "Address": "2001 Market St", "LATITUDE": 39.954179, "LONGITUDE": -75.173698, "DATE_RANGE_START": 2022, "Total Visits": 2894.0, "Total Visitors": 1850.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 262.0, "Total Spend": 2971.0, "Total Transactions": 122.0, "Total Customers": 61.0, "Median Spend per Transaction": 16.15, "Median Spend per Customer": 32.3 }, "geometry": { "type": "Point", "coordinates": [ -75.173698, 39.954179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1201 S Broad St", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 38.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 4.0, "Total Spend": 4156.0, "Total Transactions": 24.0, "Total Customers": 17.0, "Median Spend per Transaction": 104.92, "Median Spend per Customer": 147.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-kvf", "Name": "20th Street Pizza", "Category": "Restaurants and Other Eating Places", "Address": "108 S 20th St", "LATITUDE": 39.951712, "LONGITUDE": -75.173725, "DATE_RANGE_START": 2022, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 182.0, "Total Spend": 366.0, "Total Transactions": 30.0, "Total Customers": 12.0, "Median Spend per Transaction": 12.16, "Median Spend per Customer": 26.6 }, "geometry": { "type": "Point", "coordinates": [ -75.173725, 39.951712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-qs5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "813 Adams Ave", "LATITUDE": 40.031776, "LONGITUDE": -75.104312, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 54.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 2.0, "Total Spend": 3441.0, "Total Transactions": 476.0, "Total Customers": 164.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.104312, 40.031776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "630 Walnut Ln", "LATITUDE": 40.028872, "LONGITUDE": -75.206199, "DATE_RANGE_START": 2022, "Total Visits": 1584.0, "Total Visitors": 1200.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 4.0, "Total Spend": 1698.0, "Total Transactions": 52.0, "Total Customers": 47.0, "Median Spend per Transaction": 24.87, "Median Spend per Customer": 28.59 }, "geometry": { "type": "Point", "coordinates": [ -75.206199, 40.028872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvy-9j9", "Name": "Gas & Mini Mart", "Category": "Gasoline Stations", "Address": "901 S 46th St", "LATITUDE": 39.948746, "LONGITUDE": -75.214523, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 89.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 90.0, "Total Spend": 348.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214523, 39.948746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6543 Roosevelt Blvd Unit 18A", "LATITUDE": 40.034799, "LONGITUDE": -75.06613, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 80.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 2.0, "Total Spend": 1615.0, "Total Transactions": 54.0, "Total Customers": 44.0, "Median Spend per Transaction": 25.26, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06613, 40.034799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "Name": "Menchie's", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd Unit 4", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2022, "Total Visits": 368.0, "Total Visitors": 319.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 6.0, "Total Spend": 639.0, "Total Transactions": 40.0, "Total Customers": 37.0, "Median Spend per Transaction": 13.95, "Median Spend per Customer": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-224@628-pm4-h5z", "Name": "Favors & Flavors", "Category": "Restaurants and Other Eating Places", "Address": "1919 E Passyunk Ave", "LATITUDE": 39.926083, "LONGITUDE": -75.167651, "DATE_RANGE_START": 2022, "Total Visits": 624.0, "Total Visitors": 378.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 95.0, "Total Spend": 293.0, "Total Transactions": 47.0, "Total Customers": 26.0, "Median Spend per Transaction": 5.62, "Median Spend per Customer": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.167651, 39.926083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pnw-x89", "Name": "Pretty Girls Cook", "Category": "Restaurants and Other Eating Places", "Address": "1016 N Marshall St", "LATITUDE": 39.97001, "LONGITUDE": -75.147605, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 37.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 49.0, "Total Spend": 456.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 90.0, "Median Spend per Customer": 130.95 }, "geometry": { "type": "Point", "coordinates": [ -75.147605, 39.97001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "4421 Main St", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 185.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 31.0, "Total Spend": 5630.0, "Total Transactions": 112.0, "Total Customers": 54.0, "Median Spend per Transaction": 40.48, "Median Spend per Customer": 85.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgj-9xq", "Name": "Brothers Food Market", "Category": "Grocery Stores", "Address": "2101 W York St", "LATITUDE": 39.990985, "LONGITUDE": -75.167059, "DATE_RANGE_START": 2022, "Total Visits": 24.0, "Total Visitors": 19.0, "POI_CBG": 421010168006.0, "Median Dwell Time": 162.0, "Total Spend": 297.0, "Total Transactions": 38.0, "Total Customers": 16.0, "Median Spend per Transaction": 4.88, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167059, 39.990985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "9990 Roosevelt Blvd", "LATITUDE": 40.094236, "LONGITUDE": -75.016653, "DATE_RANGE_START": 2022, "Total Visits": 787.0, "Total Visitors": 601.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 3.0, "Total Spend": 8273.0, "Total Transactions": 592.0, "Total Customers": 434.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 13.35 }, "geometry": { "type": "Point", "coordinates": [ -75.016653, 40.094236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-4jv", "Name": "Saxbys Coffee", "Category": "Restaurants and Other Eating Places", "Address": "65 N 34th St", "LATITUDE": 39.957412, "LONGITUDE": -75.190756, "DATE_RANGE_START": 2022, "Total Visits": 274.0, "Total Visitors": 171.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 162.0, "Total Spend": 114.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.69, "Median Spend per Customer": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.190756, 39.957412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-n5z", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3901 Walnut St", "LATITUDE": 39.954037, "LONGITUDE": -75.200292, "DATE_RANGE_START": 2022, "Total Visits": 1460.0, "Total Visitors": 1054.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 5.0, "Total Spend": 7653.0, "Total Transactions": 970.0, "Total Customers": 638.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.200292, 39.954037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2132 E Lehigh Ave", "LATITUDE": 39.984509, "LONGITUDE": -75.121352, "DATE_RANGE_START": 2022, "Total Visits": 204.0, "Total Visitors": 153.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 9.0, "Total Spend": 3569.0, "Total Transactions": 87.0, "Total Customers": 40.0, "Median Spend per Transaction": 21.76, "Median Spend per Customer": 38.08 }, "geometry": { "type": "Point", "coordinates": [ -75.121352, 39.984509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-gc5", "Name": "Verree Mini Mart", "Category": "Grocery Stores", "Address": "7955 Verree Rd", "LATITUDE": 40.072294, "LONGITUDE": -75.076111, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 174.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 45.0, "Total Spend": 298.0, "Total Transactions": 24.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.076111, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgm-28v", "Name": "East Falls Farmers' Market", "Category": "Specialty Food Stores", "Address": "4100 Ridge Ave", "LATITUDE": 40.007838, "LONGITUDE": -75.191777, "DATE_RANGE_START": 2022, "Total Visits": 6068.0, "Total Visitors": 4835.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 2.0, "Total Spend": 912.0, "Total Transactions": 52.0, "Total Customers": 19.0, "Median Spend per Transaction": 17.71, "Median Spend per Customer": 42.2 }, "geometry": { "type": "Point", "coordinates": [ -75.191777, 40.007838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgd-z9f", "Name": "UrHomeInPhilly", "Category": "Traveler Accommodation", "Address": "3601 Market St", "LATITUDE": 39.956628, "LONGITUDE": -75.194459, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 58.0, "Total Spend": 53.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.194459, 39.956628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-4sq", "Name": "NOTO Philadelphia", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1209 Vine St", "LATITUDE": 39.957795, "LONGITUDE": -75.159097, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 106.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 39.0, "Total Spend": 314.0, "Total Transactions": 12.0, "Total Customers": 3.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 90.01 }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.957795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y7q", "Name": "Day N Nite", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "908 Cherry St", "LATITUDE": 39.954252, "LONGITUDE": -75.1549, "DATE_RANGE_START": 2022, "Total Visits": 5087.0, "Total Visitors": 3380.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 61.0, "Total Spend": 9634.0, "Total Transactions": 166.0, "Total Customers": 45.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 138.96 }, "geometry": { "type": "Point", "coordinates": [ -75.1549, 39.954252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "8525 Frankford Ave", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2022, "Total Visits": 491.0, "Total Visitors": 340.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 4.0, "Total Spend": 3356.0, "Total Transactions": 152.0, "Total Customers": 106.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 18.95 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-rhq", "Name": "Tina's tacos", "Category": "Restaurants and Other Eating Places", "Address": "2327 E York St", "LATITUDE": 39.979315, "LONGITUDE": -75.125407, "DATE_RANGE_START": 2022, "Total Visits": 84.0, "Total Visitors": 56.0, "POI_CBG": 421010160007.0, "Median Dwell Time": 39.0, "Total Spend": 190.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 54.54, "Median Spend per Customer": 54.54 }, "geometry": { "type": "Point", "coordinates": [ -75.125407, 39.979315 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pnx-bp9", "Name": "Girard Food & Gas Mart", "Category": "Gasoline Stations", "Address": "1138 E Susquehanna Ave", "LATITUDE": 39.971685, "LONGITUDE": -75.124961, "DATE_RANGE_START": 2022, "Total Visits": 869.0, "Total Visitors": 524.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 3.0, "Total Spend": 21690.0, "Total Transactions": 850.0, "Total Customers": 246.0, "Median Spend per Transaction": 15.13, "Median Spend per Customer": 50.55 }, "geometry": { "type": "Point", "coordinates": [ -75.124961, 39.971685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-rhq", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "5675 N Front St", "LATITUDE": 40.038152, "LONGITUDE": -75.116908, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 99.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 6.0, "Total Spend": 1724.0, "Total Transactions": 44.0, "Total Customers": 40.0, "Median Spend per Transaction": 27.2, "Median Spend per Customer": 29.53 }, "geometry": { "type": "Point", "coordinates": [ -75.116908, 40.038152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 136.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 20.0, "Total Spend": 4832.0, "Total Transactions": 164.0, "Total Customers": 84.0, "Median Spend per Transaction": 17.92, "Median Spend per Customer": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "2422 W Passyunk Ave", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2022, "Total Visits": 73.0, "Total Visitors": 68.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 3.0, "Total Spend": 1651.0, "Total Transactions": 84.0, "Total Customers": 70.0, "Median Spend per Transaction": 17.36, "Median Spend per Customer": 19.19 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5601 Vine St", "LATITUDE": 39.96694, "LONGITUDE": -75.233446, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 253.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 5.0, "Total Spend": 2186.0, "Total Transactions": 192.0, "Total Customers": 139.0, "Median Spend per Transaction": 7.7, "Median Spend per Customer": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.233446, 39.96694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "10500 Roosevelt Blvd", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2022, "Total Visits": 503.0, "Total Visitors": 355.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 13.0, "Total Spend": 1513.0, "Total Transactions": 37.0, "Total Customers": 30.0, "Median Spend per Transaction": 42.55, "Median Spend per Customer": 43.63 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5001 Rising Sun Ave", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2022, "Total Visits": 324.0, "Total Visitors": 209.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 3.0, "Total Spend": 6768.0, "Total Transactions": 815.0, "Total Customers": 380.0, "Median Spend per Transaction": 6.36, "Median Spend per Customer": 11.06 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "Name": "Menagerie Coffee", "Category": "Restaurants and Other Eating Places", "Address": "18 S 3rd St", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2022, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 2.0, "Total Spend": 16429.0, "Total Transactions": 1836.0, "Total Customers": 596.0, "Median Spend per Transaction": 7.59, "Median Spend per Customer": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "Name": "Aura", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "628 N Front St", "LATITUDE": 39.961228, "LONGITUDE": -75.138826, "DATE_RANGE_START": 2022, "Total Visits": 148.0, "Total Visitors": 117.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 17.0, "Total Spend": 388843.0, "Total Transactions": 3955.0, "Total Customers": 1667.0, "Median Spend per Transaction": 49.52, "Median Spend per Customer": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138826, 39.961228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-6hq", "Name": "Hoshi's", "Category": "Restaurants and Other Eating Places", "Address": "126 S 11th St", "LATITUDE": 39.949331, "LONGITUDE": -75.159161, "DATE_RANGE_START": 2022, "Total Visits": 291.0, "Total Visitors": 157.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 226.0, "Total Spend": 1004.0, "Total Transactions": 47.0, "Total Customers": 24.0, "Median Spend per Transaction": 17.99, "Median Spend per Customer": 35.98 }, "geometry": { "type": "Point", "coordinates": [ -75.159161, 39.949331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "Name": "Steak 'Em Up", "Category": "Restaurants and Other Eating Places", "Address": "2600 S 11th St", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2022, "Total Visits": 106.0, "Total Visitors": 56.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 375.0, "Total Spend": 4374.0, "Total Transactions": 174.0, "Total Customers": 63.0, "Median Spend per Transaction": 22.52, "Median Spend per Customer": 56.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Henry Ave", "LATITUDE": 40.063794, "LONGITUDE": -75.238861, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 171.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 38.0, "Total Spend": 19626.0, "Total Transactions": 1775.0, "Total Customers": 1117.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.238861, 40.063794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5233 Torresdale Ave # 45", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2022, "Total Visits": 218.0, "Total Visitors": 143.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 3.0, "Total Spend": 3498.0, "Total Transactions": 389.0, "Total Customers": 178.0, "Median Spend per Transaction": 7.81, "Median Spend per Customer": 11.01 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pg9-vpv", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "2100 Fairmount Ave", "LATITUDE": 39.967164, "LONGITUDE": -75.172278, "DATE_RANGE_START": 2022, "Total Visits": 702.0, "Total Visitors": 490.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 60.0, "Total Spend": 10106.0, "Total Transactions": 937.0, "Total Customers": 354.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172278, 39.967164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "10050 Roosevelt Blvd", "LATITUDE": 40.095685, "LONGITUDE": -75.015058, "DATE_RANGE_START": 2022, "Total Visits": 340.0, "Total Visitors": 206.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 3.0, "Total Spend": 1767.0, "Total Transactions": 206.0, "Total Customers": 112.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 7.58 }, "geometry": { "type": "Point", "coordinates": [ -75.015058, 40.095685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "Name": "T cafe", "Category": "Restaurants and Other Eating Places", "Address": "108 Chestnut St", "LATITUDE": 39.947904, "LONGITUDE": -75.142953, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 192.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 13.0, "Total Spend": 20571.0, "Total Transactions": 1571.0, "Total Customers": 594.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.142953, 39.947904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnw-nt9", "Name": "Fishtown Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1301 Frankford Ave", "LATITUDE": 39.970532, "LONGITUDE": -75.134266, "DATE_RANGE_START": 2022, "Total Visits": 35.0, "Total Visitors": 30.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 60.0, "Total Spend": 33527.0, "Total Transactions": 1192.0, "Total Customers": 486.0, "Median Spend per Transaction": 21.8, "Median Spend per Customer": 47.5 }, "geometry": { "type": "Point", "coordinates": [ -75.134266, 39.970532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-cyv", "Name": "Holmesburg Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8039 Frankford Ave", "LATITUDE": 40.041745, "LONGITUDE": -75.026513, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 31.0, "POI_CBG": 421010329001.0, "Median Dwell Time": 251.0, "Total Spend": 456.0, "Total Transactions": 47.0, "Total Customers": 9.0, "Median Spend per Transaction": 6.06, "Median Spend per Customer": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.026513, 40.041745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@63s-dw2-4gk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "136 N 63rd St", "LATITUDE": 39.965722, "LONGITUDE": -75.246681, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 45.0, "POI_CBG": 421010096004.0, "Median Dwell Time": 2.0, "Total Spend": 4705.0, "Total Transactions": 206.0, "Total Customers": 153.0, "Median Spend per Transaction": 13.05, "Median Spend per Customer": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -75.246681, 39.965722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "Name": "Xian Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "902 Arch St", "LATITUDE": 39.9532, "LONGITUDE": -75.154945, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 45.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 1944.0, "Total Transactions": 66.0, "Total Customers": 31.0, "Median Spend per Transaction": 17.83, "Median Spend per Customer": 38.95 }, "geometry": { "type": "Point", "coordinates": [ -75.154945, 39.9532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-r49", "Name": "PA Auto Sales com", "Category": "Automobile Dealers", "Address": "11600 Roosevelt Blvd", "LATITUDE": 40.104341, "LONGITUDE": -75.003284, "DATE_RANGE_START": 2022, "Total Visits": 404.0, "Total Visitors": 328.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 10.0, "Total Spend": 36814.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 1460.0, "Median Spend per Customer": 2920.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003284, 40.104341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "35 E Chelten Ave", "LATITUDE": 40.037244, "LONGITUDE": -75.17465, "DATE_RANGE_START": 2022, "Total Visits": 315.0, "Total Visitors": 174.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 925.0, "Total Spend": 10485.0, "Total Transactions": 209.0, "Total Customers": 141.0, "Median Spend per Transaction": 33.93, "Median Spend per Customer": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.17465, 40.037244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-f75", "Name": "Beer City", "Category": "Grocery Stores", "Address": "701 E Girard Ave", "LATITUDE": 39.972301, "LONGITUDE": -75.125884, "DATE_RANGE_START": 2022, "Total Visits": 460.0, "Total Visitors": 230.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 3.0, "Total Spend": 22865.0, "Total Transactions": 885.0, "Total Customers": 310.0, "Median Spend per Transaction": 21.11, "Median Spend per Customer": 47.1 }, "geometry": { "type": "Point", "coordinates": [ -75.125884, 39.972301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phq-k75", "Name": "Rodriguez Mini Market", "Category": "Grocery Stores", "Address": "6731 Ogontz Ave", "LATITUDE": 40.057192, "LONGITUDE": -75.148867, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 146.0, "POI_CBG": 421010267007.0, "Median Dwell Time": 3.0, "Total Spend": 273.0, "Total Transactions": 17.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.05, "Median Spend per Customer": 34.88 }, "geometry": { "type": "Point", "coordinates": [ -75.148867, 40.057192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-c3q", "Name": "Foodery", "Category": "Restaurants and Other Eating Places", "Address": "324 S 10th St", "LATITUDE": 39.944856, "LONGITUDE": -75.158469, "DATE_RANGE_START": 2022, "Total Visits": 207.0, "Total Visitors": 171.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 5.0, "Total Spend": 33319.0, "Total Transactions": 1960.0, "Total Customers": 490.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 36.44 }, "geometry": { "type": "Point", "coordinates": [ -75.158469, 39.944856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2311 Cottman Ave", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 105.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 5.0, "Total Spend": 9561.0, "Total Transactions": 561.0, "Total Customers": 441.0, "Median Spend per Transaction": 13.26, "Median Spend per Customer": 18.66 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-zvf", "Name": "Tavern On the Hill", "Category": "Restaurants and Other Eating Places", "Address": "8636 Germantown Ave", "LATITUDE": 40.077151, "LONGITUDE": -75.208916, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 45.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 92.0, "Total Spend": 9807.0, "Total Transactions": 152.0, "Total Customers": 64.0, "Median Spend per Transaction": 52.64, "Median Spend per Customer": 116.16 }, "geometry": { "type": "Point", "coordinates": [ -75.208916, 40.077151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4530 N 5th St", "LATITUDE": 40.02088, "LONGITUDE": -75.134701, "DATE_RANGE_START": 2022, "Total Visits": 267.0, "Total Visitors": 190.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 5.0, "Total Spend": 7792.0, "Total Transactions": 380.0, "Total Customers": 207.0, "Median Spend per Transaction": 13.59, "Median Spend per Customer": 28.93 }, "geometry": { "type": "Point", "coordinates": [ -75.134701, 40.02088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-8sq", "Name": "Cinnabon", "Category": "Restaurants and Other Eating Places", "Address": "1101 Market St", "LATITUDE": 39.952174, "LONGITUDE": -75.158425, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 2261.0, "Total Transactions": 265.0, "Total Customers": 223.0, "Median Spend per Transaction": 5.72, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158425, 39.952174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24r-222@628-pm7-kmk", "Name": "8 Brothers Food Market", "Category": "Grocery Stores", "Address": "2639 Tasker St", "LATITUDE": 39.933486, "LONGITUDE": -75.18947, "DATE_RANGE_START": 2022, "Total Visits": 101.0, "Total Visitors": 51.0, "POI_CBG": 421010032006.0, "Median Dwell Time": 11.0, "Total Spend": 625.0, "Total Transactions": 71.0, "Total Customers": 26.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18947, 39.933486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "Name": "Jini Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "1319 Franklin Mills Cir", "LATITUDE": 40.085837, "LONGITUDE": -74.962154, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 134.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 7.0, "Total Spend": 8499.0, "Total Transactions": 314.0, "Total Customers": 127.0, "Median Spend per Transaction": 21.03, "Median Spend per Customer": 49.58 }, "geometry": { "type": "Point", "coordinates": [ -74.962154, 40.085837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4268 Ridge Ave", "LATITUDE": 40.009408, "LONGITUDE": -75.196533, "DATE_RANGE_START": 2022, "Total Visits": 174.0, "Total Visitors": 160.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 2.0, "Total Spend": 6721.0, "Total Transactions": 754.0, "Total Customers": 430.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 9.21 }, "geometry": { "type": "Point", "coordinates": [ -75.196533, 40.009408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2201 South St", "LATITUDE": 39.945401, "LONGITUDE": -75.178709, "DATE_RANGE_START": 2022, "Total Visits": 150.0, "Total Visitors": 145.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 2.0, "Total Spend": 9027.0, "Total Transactions": 598.0, "Total Customers": 376.0, "Median Spend per Transaction": 6.43, "Median Spend per Customer": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.178709, 39.945401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phk-yvz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "440 W Cheltenham Ave", "LATITUDE": 40.054755, "LONGITUDE": -75.125732, "DATE_RANGE_START": 2022, "Total Visits": 1206.0, "Total Visitors": 800.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 4.0, "Total Spend": 942.0, "Total Transactions": 33.0, "Total Customers": 23.0, "Median Spend per Transaction": 20.13, "Median Spend per Customer": 40.01 }, "geometry": { "type": "Point", "coordinates": [ -75.125732, 40.054755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6215 Roosevelt Blvd", "LATITUDE": 40.033829, "LONGITUDE": -75.072583, "DATE_RANGE_START": 2022, "Total Visits": 1080.0, "Total Visitors": 735.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 4.0, "Total Spend": 2134.0, "Total Transactions": 63.0, "Total Customers": 49.0, "Median Spend per Transaction": 30.17, "Median Spend per Customer": 39.59 }, "geometry": { "type": "Point", "coordinates": [ -75.072583, 40.033829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-zpv", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1575 N 52nd St Ste 707", "LATITUDE": 39.97922, "LONGITUDE": -75.22266, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 59.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 7.0, "Total Spend": 3475.0, "Total Transactions": 54.0, "Total Customers": 49.0, "Median Spend per Transaction": 43.19, "Median Spend per Customer": 51.64 }, "geometry": { "type": "Point", "coordinates": [ -75.22266, 39.97922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pnw-w8v", "Name": "Roar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "939 N Delaware Ave", "LATITUDE": 39.963353, "LONGITUDE": -75.1353, "DATE_RANGE_START": 2022, "Total Visits": 455.0, "Total Visitors": 321.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 62.0, "Total Spend": 87322.0, "Total Transactions": 695.0, "Total Customers": 221.0, "Median Spend per Transaction": 23.1, "Median Spend per Customer": 91.06 }, "geometry": { "type": "Point", "coordinates": [ -75.1353, 39.963353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pmb-7qz", "Name": "Voyeur Nightclub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1221 Saint James St", "LATITUDE": 39.948348, "LONGITUDE": -75.161699, "DATE_RANGE_START": 2022, "Total Visits": 319.0, "Total Visitors": 226.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 51.0, "Total Spend": 84694.0, "Total Transactions": 2976.0, "Total Customers": 890.0, "Median Spend per Transaction": 22.8, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161699, 39.948348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-5zz", "Name": "Crunchik'n", "Category": "Restaurants and Other Eating Places", "Address": "212 S 11th St", "LATITUDE": 39.948207, "LONGITUDE": -75.159314, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 112.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 58.0, "Total Spend": 1256.0, "Total Transactions": 51.0, "Total Customers": 23.0, "Median Spend per Transaction": 18.81, "Median Spend per Customer": 28.84 }, "geometry": { "type": "Point", "coordinates": [ -75.159314, 39.948207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6hq", "Name": "Sueno", "Category": "Restaurants and Other Eating Places", "Address": "114 S 12th St", "LATITUDE": 39.949738, "LONGITUDE": -75.16012, "DATE_RANGE_START": 2022, "Total Visits": 6244.0, "Total Visitors": 3777.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 55.0, "Total Spend": 37852.0, "Total Transactions": 549.0, "Total Customers": 289.0, "Median Spend per Transaction": 55.28, "Median Spend per Customer": 101.86 }, "geometry": { "type": "Point", "coordinates": [ -75.16012, 39.949738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-phy-v9f", "Name": "The Crab Shack 2", "Category": "Restaurants and Other Eating Places", "Address": "5305 Rising Sun Ave", "LATITUDE": 40.030196, "LONGITUDE": -75.117947, "DATE_RANGE_START": 2022, "Total Visits": 134.0, "Total Visitors": 105.0, "POI_CBG": 421010290004.0, "Median Dwell Time": 5.0, "Total Spend": 4635.0, "Total Transactions": 105.0, "Total Customers": 45.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 79.95 }, "geometry": { "type": "Point", "coordinates": [ -75.117947, 40.030196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "Name": "The Flavor Spot", "Category": "Restaurants and Other Eating Places", "Address": "5013 N Broad St", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 45.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 8.0, "Total Spend": 7489.0, "Total Transactions": 249.0, "Total Customers": 106.0, "Median Spend per Transaction": 25.92, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-tgk", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "5520 Whitaker Ave Ste 10", "LATITUDE": 40.035436, "LONGITUDE": -75.099754, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 51.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 3.0, "Total Spend": 311.0, "Total Transactions": 26.0, "Total Customers": 12.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.099754, 40.035436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dtm-v75", "Name": "Delta Hotels", "Category": "Traveler Accommodation", "Address": "500 Stevens Dr", "LATITUDE": 39.873088, "LONGITUDE": -75.27466, "DATE_RANGE_START": 2022, "Total Visits": 2023.0, "Total Visitors": 1014.0, "POI_CBG": 420454037012.0, "Median Dwell Time": 361.0, "Total Spend": 2970.0, "Total Transactions": 84.0, "Total Customers": 59.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.27466, 39.873088 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p85-hkf", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2417 Welsh Rd", "LATITUDE": 40.071857, "LONGITUDE": -75.030407, "DATE_RANGE_START": 2022, "Total Visits": 47.0, "Total Visitors": 17.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 238.0, "Total Spend": 2146.0, "Total Transactions": 94.0, "Total Customers": 45.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 29.13 }, "geometry": { "type": "Point", "coordinates": [ -75.030407, 40.071857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "Name": "Yakitori Boy", "Category": "Restaurants and Other Eating Places", "Address": "211 N 11th St", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2022, "Total Visits": 221.0, "Total Visitors": 127.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 80.0, "Total Spend": 45465.0, "Total Transactions": 631.0, "Total Customers": 249.0, "Median Spend per Transaction": 41.04, "Median Spend per Customer": 111.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "Name": "Sahara Grill", "Category": "Restaurants and Other Eating Places", "Address": "1334 Walnut St", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2022, "Total Visits": 6721.0, "Total Visitors": 4338.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 157.0, "Total Spend": 2700.0, "Total Transactions": 75.0, "Total Customers": 42.0, "Median Spend per Transaction": 34.21, "Median Spend per Customer": 55.22 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-8d9", "Name": "Tom's Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "59 N 11th St", "LATITUDE": 39.953328, "LONGITUDE": -75.157763, "DATE_RANGE_START": 2022, "Total Visits": 61057.0, "Total Visitors": 34034.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 71.0, "Total Spend": 21155.0, "Total Transactions": 441.0, "Total Customers": 244.0, "Median Spend per Transaction": 40.73, "Median Spend per Customer": 70.28 }, "geometry": { "type": "Point", "coordinates": [ -75.157763, 39.953328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "Name": "Tony Luke's", "Category": "Restaurants and Other Eating Places", "Address": "1 Citizens Bank Way", "LATITUDE": 39.906891, "LONGITUDE": -75.166013, "DATE_RANGE_START": 2022, "Total Visits": 2159.0, "Total Visitors": 2068.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 11.0, "Total Spend": 10206.0, "Total Transactions": 411.0, "Total Customers": 159.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.166013, 39.906891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "Name": "Oneals Pub", "Category": "Restaurants and Other Eating Places", "Address": "611 S 3rd St", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2022, "Total Visits": 31.0, "Total Visitors": 26.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 32.0, "Total Spend": 11558.0, "Total Transactions": 315.0, "Total Customers": 105.0, "Median Spend per Transaction": 33.9, "Median Spend per Customer": 70.16 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-rhq", "Name": "Moonshine Philly", "Category": "Restaurants and Other Eating Places", "Address": "1825 E Moyamensing Ave", "LATITUDE": 39.925012, "LONGITUDE": -75.151601, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 53.0, "Total Spend": 16975.0, "Total Transactions": 289.0, "Total Customers": 136.0, "Median Spend per Transaction": 53.4, "Median Spend per Customer": 109.89 }, "geometry": { "type": "Point", "coordinates": [ -75.151601, 39.925012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "315 Market St", "LATITUDE": 39.950471, "LONGITUDE": -75.146166, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 37.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 23379.0, "Total Transactions": 591.0, "Total Customers": 301.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 63.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146166, 39.950471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.080948, "LONGITUDE": -75.025099, "DATE_RANGE_START": 2022, "Total Visits": 7401.0, "Total Visitors": 4955.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 13.0, "Total Spend": 62283.0, "Total Transactions": 882.0, "Total Customers": 598.0, "Median Spend per Transaction": 21.98, "Median Spend per Customer": 25.88 }, "geometry": { "type": "Point", "coordinates": [ -75.025099, 40.080948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj7-w49", "Name": "Castor Avenue Market", "Category": "Grocery Stores", "Address": "900 Orthodox St", "LATITUDE": 40.01813, "LONGITUDE": -75.09505, "DATE_RANGE_START": 2022, "Total Visits": 848.0, "Total Visitors": 599.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 19.0, "Total Spend": 247.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.39, "Median Spend per Customer": 71.01 }, "geometry": { "type": "Point", "coordinates": [ -75.09505, 40.01813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6412 Castor Ave # 6422", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2022, "Total Visits": 498.0, "Total Visitors": 347.0, "POI_CBG": 421010311013.0, "Median Dwell Time": 6.0, "Total Spend": 624.0, "Total Transactions": 31.0, "Total Customers": 17.0, "Median Spend per Transaction": 11.11, "Median Spend per Customer": 25.15 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7615 Lindbergh Blvd", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2022, "Total Visits": 484.0, "Total Visitors": 333.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 6.0, "Total Spend": 10106.0, "Total Transactions": 409.0, "Total Customers": 303.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 21.46 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-p7x-7kf", "Name": "A Plus Mini Market", "Category": "Gasoline Stations", "Address": "7265 Castor Ave", "LATITUDE": 40.050709, "LONGITUDE": -75.06609, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 105.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 2.0, "Total Spend": 104.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 3.75, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.06609, 40.050709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-92k", "Name": "Levi Strauss & Co.", "Category": "Clothing Stores", "Address": "901 Market St Unit 2070", "LATITUDE": 39.95164, "LONGITUDE": -75.155746, "DATE_RANGE_START": 2022, "Total Visits": 37886.0, "Total Visitors": 23410.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 4072.0, "Total Transactions": 68.0, "Total Customers": 57.0, "Median Spend per Transaction": 33.38, "Median Spend per Customer": 34.69 }, "geometry": { "type": "Point", "coordinates": [ -75.155746, 39.95164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "229 W Allegheny Ave", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2022, "Total Visits": 152.0, "Total Visitors": 131.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 4.0, "Total Spend": 788.0, "Total Transactions": 125.0, "Total Customers": 73.0, "Median Spend per Transaction": 6.06, "Median Spend per Customer": 7.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8m-v2k", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6438 Sackett St Unit 19", "LATITUDE": 40.029571, "LONGITUDE": -75.058564, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 87.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 20.0, "Total Spend": 1532.0, "Total Transactions": 146.0, "Total Customers": 110.0, "Median Spend per Transaction": 6.92, "Median Spend per Customer": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.058564, 40.029571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4jv", "Name": "Embroidery King", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "6190 Rising Sun Ave", "LATITUDE": 40.046955, "LONGITUDE": -75.098445, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 26.0, "POI_CBG": 421010305021.0, "Median Dwell Time": 474.0, "Total Spend": 3286.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 247.74, "Median Spend per Customer": 495.48 }, "geometry": { "type": "Point", "coordinates": [ -75.098445, 40.046955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-435", "Name": "Fresh Gulf Seafood", "Category": "Specialty Food Stores", "Address": "2528 S 24th St", "LATITUDE": 39.920683, "LONGITUDE": -75.187828, "DATE_RANGE_START": 2022, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 10.0, "Total Spend": 835.0, "Total Transactions": 38.0, "Total Customers": 16.0, "Median Spend per Transaction": 20.37, "Median Spend per Customer": 43.4 }, "geometry": { "type": "Point", "coordinates": [ -75.187828, 39.920683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "Name": "China Royal", "Category": "Restaurants and Other Eating Places", "Address": "2620 Rhawn St", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2022, "Total Visits": 57.0, "Total Visitors": 38.0, "POI_CBG": 421010333003.0, "Median Dwell Time": 5.0, "Total Spend": 3019.0, "Total Transactions": 99.0, "Total Customers": 37.0, "Median Spend per Transaction": 26.65, "Median Spend per Customer": 53.3 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pjb-6c5", "Name": "Broadview Kitchen & Bath", "Category": "Home Furnishings Stores", "Address": "6330 N Broad St", "LATITUDE": 40.050005, "LONGITUDE": -75.142784, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 40.0, "POI_CBG": 421010277001.0, "Median Dwell Time": 9.0, "Total Spend": 3354.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.05, "Median Spend per Customer": 853.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142784, 40.050005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pzn-zj9", "Name": "La Casa Di Lucias", "Category": "Special Food Services", "Address": "14425 Bustleton Ave", "LATITUDE": 40.132324, "LONGITUDE": -75.010926, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 117.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 59.0, "Total Spend": 2765.0, "Total Transactions": 59.0, "Total Customers": 23.0, "Median Spend per Transaction": 32.11, "Median Spend per Customer": 64.58 }, "geometry": { "type": "Point", "coordinates": [ -75.010926, 40.132324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5mk", "Name": "U Bahn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1320 Chestnut St", "LATITUDE": 39.95079, "LONGITUDE": -75.16242, "DATE_RANGE_START": 2022, "Total Visits": 18324.0, "Total Visitors": 13202.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 31.0, "Total Spend": 5582.0, "Total Transactions": 167.0, "Total Customers": 63.0, "Median Spend per Transaction": 16.68, "Median Spend per Customer": 60.16 }, "geometry": { "type": "Point", "coordinates": [ -75.16242, 39.95079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "Name": "Miller's Ale House", "Category": "Restaurants and Other Eating Places", "Address": "9495 Roosevelt Blvd", "LATITUDE": 40.079795, "LONGITUDE": -75.028682, "DATE_RANGE_START": 2022, "Total Visits": 510.0, "Total Visitors": 441.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 54.0, "Total Spend": 36843.0, "Total Transactions": 625.0, "Total Customers": 542.0, "Median Spend per Transaction": 52.84, "Median Spend per Customer": 57.1 }, "geometry": { "type": "Point", "coordinates": [ -75.028682, 40.079795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pmb-ygk", "Name": "Oishii Poke", "Category": "Restaurants and Other Eating Places", "Address": "938 Arch St Fl Rear", "LATITUDE": 39.953252, "LONGITUDE": -75.15618, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 9349.0, "Total Transactions": 456.0, "Total Customers": 218.0, "Median Spend per Transaction": 16.29, "Median Spend per Customer": 33.92 }, "geometry": { "type": "Point", "coordinates": [ -75.15618, 39.953252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "Name": "Cleavers", "Category": "Restaurants and Other Eating Places", "Address": "108 S 18th St", "LATITUDE": 39.951397, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2022, "Total Visits": 263.0, "Total Visitors": 254.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 27.0, "Total Spend": 28648.0, "Total Transactions": 859.0, "Total Customers": 448.0, "Median Spend per Transaction": 26.89, "Median Spend per Customer": 48.66 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 39.951397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-59f", "Name": "Bellissima Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7816 Castor Ave", "LATITUDE": 40.058663, "LONGITUDE": -75.059466, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 35.0, "POI_CBG": 421010336002.0, "Median Dwell Time": 313.0, "Total Spend": 1175.0, "Total Transactions": 49.0, "Total Customers": 23.0, "Median Spend per Transaction": 22.2, "Median Spend per Customer": 46.5 }, "geometry": { "type": "Point", "coordinates": [ -75.059466, 40.058663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p9j-zj9", "Name": "Kabobi", "Category": "Restaurants and Other Eating Places", "Address": "10600 Roosevelt Blvd", "LATITUDE": 40.0995, "LONGITUDE": -75.010461, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 49.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 17.0, "Total Spend": 1660.0, "Total Transactions": 42.0, "Total Customers": 23.0, "Median Spend per Transaction": 37.72, "Median Spend per Customer": 60.3 }, "geometry": { "type": "Point", "coordinates": [ -75.010461, 40.0995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "Name": "Chestnut Hill Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "8138 Germantown Ave", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2022, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 380.0, "Total Spend": 376.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "Name": "The Tasty", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 12th St", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 6.0, "Total Spend": 7479.0, "Total Transactions": 242.0, "Total Customers": 98.0, "Median Spend per Transaction": 29.7, "Median Spend per Customer": 69.22 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "Name": "Fishtown Pizza", "Category": "Restaurants and Other Eating Places", "Address": "607 E Girard Ave", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 17.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 125.0, "Total Spend": 3012.0, "Total Transactions": 143.0, "Total Customers": 40.0, "Median Spend per Transaction": 17.21, "Median Spend per Customer": 77.56 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "Name": "Beijing Garden", "Category": "Restaurants and Other Eating Places", "Address": "5911 Ridge Ave", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 4.0, "Total Spend": 172.0, "Total Transactions": 10.0, "Total Customers": 7.0, "Median Spend per Transaction": 13.73, "Median Spend per Customer": 24.65 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4438 Chestnut St", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 26.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 108.0, "Total Spend": 13111.0, "Total Transactions": 500.0, "Total Customers": 397.0, "Median Spend per Transaction": 24.48, "Median Spend per Customer": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "Name": "China City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6612 Castor Ave", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2022, "Total Visits": 136.0, "Total Visitors": 28.0, "POI_CBG": 421010311011.0, "Median Dwell Time": 758.0, "Total Spend": 1728.0, "Total Transactions": 68.0, "Total Customers": 28.0, "Median Spend per Transaction": 24.09, "Median Spend per Customer": 50.4 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-fvf", "Name": "Jennifer Grocery", "Category": "Grocery Stores", "Address": "4824 Chester Ave", "LATITUDE": 39.944398, "LONGITUDE": -75.216558, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 30.0, "POI_CBG": 421010078002.0, "Median Dwell Time": 1.0, "Total Spend": 397.0, "Total Transactions": 64.0, "Total Customers": 12.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216558, 39.944398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1730 Washington Ave", "LATITUDE": 39.938146, "LONGITUDE": -75.172721, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 87.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 6.0, "Total Spend": 11845.0, "Total Transactions": 322.0, "Total Customers": 216.0, "Median Spend per Transaction": 12.41, "Median Spend per Customer": 27.53 }, "geometry": { "type": "Point", "coordinates": [ -75.172721, 39.938146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pgj-s3q", "Name": "Espinal Grocery", "Category": "Grocery Stores", "Address": "2001 N 8th St", "LATITUDE": 39.982055, "LONGITUDE": -75.147277, "DATE_RANGE_START": 2022, "Total Visits": 52.0, "Total Visitors": 28.0, "POI_CBG": 421010377003.0, "Median Dwell Time": 334.0, "Total Spend": 26.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 3.75, "Median Spend per Customer": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.147277, 39.982055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6801 Frankford Ave", "LATITUDE": 40.032157, "LONGITUDE": -75.050449, "DATE_RANGE_START": 2022, "Total Visits": 610.0, "Total Visitors": 448.0, "POI_CBG": 421010325001.0, "Median Dwell Time": 6.0, "Total Spend": 3304.0, "Total Transactions": 101.0, "Total Customers": 77.0, "Median Spend per Transaction": 29.41, "Median Spend per Customer": 36.07 }, "geometry": { "type": "Point", "coordinates": [ -75.050449, 40.032157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-y5f", "Name": "Haagen Dazs", "Category": "Restaurants and Other Eating Places", "Address": "242 South St", "LATITUDE": 39.941281, "LONGITUDE": -75.147232, "DATE_RANGE_START": 2022, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 3.0, "Total Spend": 3861.0, "Total Transactions": 355.0, "Total Customers": 310.0, "Median Spend per Transaction": 8.89, "Median Spend per Customer": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.147232, 39.941281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2300 S Broad St", "LATITUDE": 39.921823, "LONGITUDE": -75.170522, "DATE_RANGE_START": 2022, "Total Visits": 321.0, "Total Visitors": 242.0, "POI_CBG": 421010039012.0, "Median Dwell Time": 4.0, "Total Spend": 5777.0, "Total Transactions": 526.0, "Total Customers": 298.0, "Median Spend per Transaction": 9.01, "Median Spend per Customer": 10.28 }, "geometry": { "type": "Point", "coordinates": [ -75.170522, 39.921823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "Name": "Philadelphia Pharmacy", "Category": "Health and Personal Care Stores", "Address": "101 E Lehigh Ave # 03", "LATITUDE": 39.991113, "LONGITUDE": -75.130735, "DATE_RANGE_START": 2022, "Total Visits": 49.0, "Total Visitors": 44.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 4.0, "Total Spend": 2437.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130735, 39.991113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-r49", "Name": "The Richmond Bottle Shop", "Category": "Beer, Wine, and Liquor Stores", "Address": "2497 Aramingo Ave", "LATITUDE": 39.975358, "LONGITUDE": -75.119619, "DATE_RANGE_START": 2022, "Total Visits": 1281.0, "Total Visitors": 599.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 15.0, "Total Spend": 341.0, "Total Transactions": 14.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.62, "Median Spend per Customer": 50.73 }, "geometry": { "type": "Point", "coordinates": [ -75.119619, 39.975358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6151 N Broad St", "LATITUDE": 40.0471, "LONGITUDE": -75.142281, "DATE_RANGE_START": 2022, "Total Visits": 2247.0, "Total Visitors": 1476.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 5.0, "Total Spend": 7947.0, "Total Transactions": 172.0, "Total Customers": 134.0, "Median Spend per Transaction": 43.97, "Median Spend per Customer": 50.22 }, "geometry": { "type": "Point", "coordinates": [ -75.142281, 40.0471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8n5", "Name": "Primark", "Category": "Clothing Stores", "Address": "1033 Market St", "LATITUDE": 39.951745, "LONGITUDE": -75.15699, "DATE_RANGE_START": 2022, "Total Visits": 21494.0, "Total Visitors": 13739.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 33.0, "Total Spend": 1366.0, "Total Transactions": 35.0, "Total Customers": 33.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15699, 39.951745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "3621 Walnut St", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2022, "Total Visits": 395.0, "Total Visitors": 247.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 152.0, "Total Spend": 28034.0, "Total Transactions": 892.0, "Total Customers": 341.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 40.58 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8045 Frankford Ave Ste 1", "LATITUDE": 40.041766, "LONGITUDE": -75.026083, "DATE_RANGE_START": 2022, "Total Visits": 138.0, "Total Visitors": 131.0, "POI_CBG": 421010329001.0, "Median Dwell Time": 3.0, "Total Spend": 273.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 10.87, "Median Spend per Customer": 23.14 }, "geometry": { "type": "Point", "coordinates": [ -75.026083, 40.041766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-j7q", "Name": "Flowers & Company", "Category": "Florists", "Address": "267 S 19th St", "LATITUDE": 39.948248, "LONGITUDE": -75.172462, "DATE_RANGE_START": 2022, "Total Visits": 1338.0, "Total Visitors": 918.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 35.0, "Total Spend": 1631.0, "Total Transactions": 33.0, "Total Customers": 14.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 110.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172462, 39.948248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-t7q", "Name": "Craftsman Row Saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "112 S 8th St", "LATITUDE": 39.949101, "LONGITUDE": -75.154283, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 207.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 60.0, "Total Spend": 20887.0, "Total Transactions": 324.0, "Total Customers": 167.0, "Median Spend per Transaction": 53.24, "Median Spend per Customer": 104.2 }, "geometry": { "type": "Point", "coordinates": [ -75.154283, 39.949101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1500 Chestnut St", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2022, "Total Visits": 1787.0, "Total Visitors": 1317.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 149.0, "Total Spend": 12495.0, "Total Transactions": 401.0, "Total Customers": 329.0, "Median Spend per Transaction": 19.74, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "9000 Tinicum Blvd", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2022, "Total Visits": 1120.0, "Total Visitors": 739.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 504.0, "Total Spend": 42480.0, "Total Transactions": 233.0, "Total Customers": 70.0, "Median Spend per Transaction": 130.89, "Median Spend per Customer": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7nq", "Name": "Woody's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "202 S 13th St", "LATITUDE": 39.948953, "LONGITUDE": -75.162366, "DATE_RANGE_START": 2022, "Total Visits": 2385.0, "Total Visitors": 1331.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 271.0, "Total Spend": 131390.0, "Total Transactions": 4643.0, "Total Customers": 1458.0, "Median Spend per Transaction": 22.7, "Median Spend per Customer": 67.46 }, "geometry": { "type": "Point", "coordinates": [ -75.162366, 39.948953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-t5f", "Name": "Cavanaugh's Riverdeck", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "417 N Columbus Blvd", "LATITUDE": 39.957746, "LONGITUDE": -75.137247, "DATE_RANGE_START": 2022, "Total Visits": 382.0, "Total Visitors": 307.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 32.0, "Total Spend": 314.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 22.92, "Median Spend per Customer": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.137247, 39.957746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-qj9", "Name": "Suzani Palace", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd Ste 3", "LATITUDE": 40.103023, "LONGITUDE": -75.030669, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 139.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 101.0, "Total Spend": 281.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 80.57, "Median Spend per Customer": 80.57 }, "geometry": { "type": "Point", "coordinates": [ -75.030669, 40.103023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-6ff", "Name": "Barra Rossa Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "929 Walnut St", "LATITUDE": 39.948634, "LONGITUDE": -75.157218, "DATE_RANGE_START": 2022, "Total Visits": 1387.0, "Total Visitors": 1200.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 2.0, "Total Spend": 1561.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 97.7, "Median Spend per Customer": 105.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157218, 39.948634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfw-g6k", "Name": "Apollo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3542 Conrad St", "LATITUDE": 40.012812, "LONGITUDE": -75.190541, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010207003.0, "Median Dwell Time": null, "Total Spend": 821.0, "Total Transactions": 40.0, "Total Customers": 21.0, "Median Spend per Transaction": 16.62, "Median Spend per Customer": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.190541, 40.012812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-227@628-pm4-mff", "Name": "APlus", "Category": "Grocery Stores", "Address": "1100 S 10th St", "LATITUDE": 39.936496, "LONGITUDE": -75.160414, "DATE_RANGE_START": 2022, "Total Visits": 699.0, "Total Visitors": 582.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 3.0, "Total Spend": 1848.0, "Total Transactions": 162.0, "Total Customers": 54.0, "Median Spend per Transaction": 8.95, "Median Spend per Customer": 26.28 }, "geometry": { "type": "Point", "coordinates": [ -75.160414, 39.936496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvq-649", "Name": "Three Sister Grocery", "Category": "Grocery Stores", "Address": "5356 Delancey St", "LATITUDE": 39.954366, "LONGITUDE": -75.229741, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010085004.0, "Median Dwell Time": 1.0, "Total Spend": 2616.0, "Total Transactions": 216.0, "Total Customers": 59.0, "Median Spend per Transaction": 10.63, "Median Spend per Customer": 35.38 }, "geometry": { "type": "Point", "coordinates": [ -75.229741, 39.954366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-cqz", "Name": "Little Morocco", "Category": "Restaurants and Other Eating Places", "Address": "1431 W Passyunk Ave # 1F", "LATITUDE": 39.925459, "LONGITUDE": -75.170748, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 1.0, "Total Spend": 283.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.170748, 39.925459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-pvz", "Name": "12 Steps Down", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "831 Christian St", "LATITUDE": 39.939056, "LONGITUDE": -75.157629, "DATE_RANGE_START": 2022, "Total Visits": 122.0, "Total Visitors": 70.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 98.0, "Total Spend": 418.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157629, 39.939056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-xwk", "Name": "Walnut Street Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2929 Walnut St", "LATITUDE": 39.952066, "LONGITUDE": -75.183753, "DATE_RANGE_START": 2022, "Total Visits": 4190.0, "Total Visitors": 2770.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 268.0, "Total Spend": 4412.0, "Total Transactions": 66.0, "Total Customers": 37.0, "Median Spend per Transaction": 59.3, "Median Spend per Customer": 110.88 }, "geometry": { "type": "Point", "coordinates": [ -75.183753, 39.952066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pnt-3wk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2495 Aramingo Ave", "LATITUDE": 39.974268, "LONGITUDE": -75.119829, "DATE_RANGE_START": 2022, "Total Visits": 369.0, "Total Visitors": 267.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 7.0, "Total Spend": 1735.0, "Total Transactions": 59.0, "Total Customers": 40.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 18.26 }, "geometry": { "type": "Point", "coordinates": [ -75.119829, 39.974268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 2.0, "Total Spend": 8658.0, "Total Transactions": 134.0, "Total Customers": 71.0, "Median Spend per Transaction": 49.91, "Median Spend per Customer": 84.84 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "24th & Oregon St", "LATITUDE": 39.919412, "LONGITUDE": -75.187304, "DATE_RANGE_START": 2022, "Total Visits": 1004.0, "Total Visitors": 786.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 20805.0, "Total Transactions": 1500.0, "Total Customers": 929.0, "Median Spend per Transaction": 11.8, "Median Spend per Customer": 14.77 }, "geometry": { "type": "Point", "coordinates": [ -75.187304, 39.919412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm3-vpv", "Name": "Nice Things Handmade", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1731 E Passyunk Ave", "LATITUDE": 39.927868, "LONGITUDE": -75.165592, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 21.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 30.0, "Total Spend": 452.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 48.6, "Median Spend per Customer": 97.2 }, "geometry": { "type": "Point", "coordinates": [ -75.165592, 39.927868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-zmk", "Name": "Paul's Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "5624 N 5th St", "LATITUDE": 40.037166, "LONGITUDE": -75.130496, "DATE_RANGE_START": 2022, "Total Visits": 885.0, "Total Visitors": 420.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 363.0, "Total Spend": 296.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130496, 40.037166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22c@628-pm9-x3q", "Name": "B & R Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "800 Chestnut St", "LATITUDE": 39.949401, "LONGITUDE": -75.154312, "DATE_RANGE_START": 2022, "Total Visits": 1373.0, "Total Visitors": 1031.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 34.0, "Total Spend": 10537.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 1512.0, "Median Spend per Customer": 3024.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154312, 39.949401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-hh5", "Name": "Condesa", "Category": "Restaurants and Other Eating Places", "Address": "1830 Ludlow St", "LATITUDE": 39.952583, "LONGITUDE": -75.171276, "DATE_RANGE_START": 2022, "Total Visits": 2429.0, "Total Visitors": 1545.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 263.0, "Total Spend": 11409.0, "Total Transactions": 228.0, "Total Customers": 110.0, "Median Spend per Transaction": 29.83, "Median Spend per Customer": 67.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171276, 39.952583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1100 W Girard Ave", "LATITUDE": 39.970561, "LONGITUDE": -75.155313, "DATE_RANGE_START": 2022, "Total Visits": 275.0, "Total Visitors": 197.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 12.0, "Total Spend": 753.0, "Total Transactions": 49.0, "Total Customers": 42.0, "Median Spend per Transaction": 7.23, "Median Spend per Customer": 7.23 }, "geometry": { "type": "Point", "coordinates": [ -75.155313, 39.970561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "3745 Aramingo Ave", "LATITUDE": 39.99445, "LONGITUDE": -75.09179, "DATE_RANGE_START": 2022, "Total Visits": 3450.0, "Total Visitors": 1904.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 19.0, "Total Spend": 2665.0, "Total Transactions": 23.0, "Total Customers": 19.0, "Median Spend per Transaction": 116.83, "Median Spend per Customer": 83.15 }, "geometry": { "type": "Point", "coordinates": [ -75.09179, 39.99445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-nwk", "Name": "Louie Louie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3611 Walnut St", "LATITUDE": 39.953483, "LONGITUDE": -75.196032, "DATE_RANGE_START": 2022, "Total Visits": 197.0, "Total Visitors": 174.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 17.0, "Total Spend": 11240.0, "Total Transactions": 148.0, "Total Customers": 77.0, "Median Spend per Transaction": 63.5, "Median Spend per Customer": 116.48 }, "geometry": { "type": "Point", "coordinates": [ -75.196032, 39.953483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "Name": "Independence Prime", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 2.0, "Total Spend": 17574.0, "Total Transactions": 486.0, "Total Customers": 237.0, "Median Spend per Transaction": 30.08, "Median Spend per Customer": 53.86 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmf-54v", "Name": "Tyson Bees", "Category": "Restaurants and Other Eating Places", "Address": "Spruce St & S 33rd St", "LATITUDE": 39.950018, "LONGITUDE": -75.191759, "DATE_RANGE_START": 2022, "Total Visits": 18074.0, "Total Visitors": 7908.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 205.0, "Total Spend": 278.0, "Total Transactions": 23.0, "Total Customers": 12.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.191759, 39.950018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-n3q", "Name": "Pete's Clown House", "Category": "Restaurants and Other Eating Places", "Address": "3878 Frankford Ave", "LATITUDE": 40.003738, "LONGITUDE": -75.094646, "DATE_RANGE_START": 2022, "Total Visits": 118.0, "Total Visitors": 78.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 20.0, "Total Spend": 2351.0, "Total Transactions": 125.0, "Total Customers": 42.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 48.53 }, "geometry": { "type": "Point", "coordinates": [ -75.094646, 40.003738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "Name": "The Bagel Place", "Category": "Restaurants and Other Eating Places", "Address": "404 Queen St", "LATITUDE": 39.937457, "LONGITUDE": -75.15033, "DATE_RANGE_START": 2022, "Total Visits": 91.0, "Total Visitors": 59.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 749.0, "Total Spend": 11110.0, "Total Transactions": 704.0, "Total Customers": 274.0, "Median Spend per Transaction": 12.53, "Median Spend per Customer": 28.54 }, "geometry": { "type": "Point", "coordinates": [ -75.15033, 39.937457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6865 Rising Sun Ave", "LATITUDE": 40.055372, "LONGITUDE": -75.089592, "DATE_RANGE_START": 2022, "Total Visits": 869.0, "Total Visitors": 578.0, "POI_CBG": 421010307002.0, "Median Dwell Time": 3.0, "Total Spend": 1497.0, "Total Transactions": 35.0, "Total Customers": 28.0, "Median Spend per Transaction": 37.35, "Median Spend per Customer": 32.66 }, "geometry": { "type": "Point", "coordinates": [ -75.089592, 40.055372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-tqf", "Name": "Passeros Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "834 Chestnut St", "LATITUDE": 39.949637, "LONGITUDE": -75.155037, "DATE_RANGE_START": 2022, "Total Visits": 341.0, "Total Visitors": 246.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 20.0, "Total Spend": 3199.0, "Total Transactions": 395.0, "Total Customers": 124.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 16.84 }, "geometry": { "type": "Point", "coordinates": [ -75.155037, 39.949637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-grk", "Name": "Federal Donuts", "Category": "Restaurants and Other Eating Places", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.963015, "LONGITUDE": -75.174167, "DATE_RANGE_START": 2022, "Total Visits": 2455.0, "Total Visitors": 1474.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 19.0, "Total Spend": 4373.0, "Total Transactions": 296.0, "Total Customers": 164.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 19.94 }, "geometry": { "type": "Point", "coordinates": [ -75.174167, 39.963015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p74-vfz", "Name": "Liberty Bell Bicycle", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "7741 Frankford Ave", "LATITUDE": 40.03991, "LONGITUDE": -75.031204, "DATE_RANGE_START": 2022, "Total Visits": 68.0, "Total Visitors": 61.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 5.0, "Total Spend": 275.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 39.51, "Median Spend per Customer": 79.02 }, "geometry": { "type": "Point", "coordinates": [ -75.031204, 40.03991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7616 City Line Avenue Route 1 & 76th St", "LATITUDE": 39.978487, "LONGITUDE": -75.271145, "DATE_RANGE_START": 2022, "Total Visits": 666.0, "Total Visitors": 514.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 20.0, "Total Spend": 33352.0, "Total Transactions": 768.0, "Total Customers": 582.0, "Median Spend per Transaction": 31.3, "Median Spend per Customer": 35.24 }, "geometry": { "type": "Point", "coordinates": [ -75.271145, 39.978487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2044 Red Lion Rd.", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2022, "Total Visits": 4747.0, "Total Visitors": 3218.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 20.0, "Total Spend": 51705.0, "Total Transactions": 491.0, "Total Customers": 298.0, "Median Spend per Transaction": 69.37, "Median Spend per Customer": 101.31 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "801 E Cathedral Rd. Store #24", "LATITUDE": 40.064353, "LONGITUDE": -75.238205, "DATE_RANGE_START": 2022, "Total Visits": 160.0, "Total Visitors": 129.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 8.0, "Total Spend": 270.0, "Total Transactions": 19.0, "Total Customers": 17.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.238205, 40.064353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "Name": "Old Nelson Food Market", "Category": "Grocery Stores", "Address": "2000 Chestnut St", "LATITUDE": 39.951893, "LONGITUDE": -75.173688, "DATE_RANGE_START": 2022, "Total Visits": 293.0, "Total Visitors": 260.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 1.0, "Total Spend": 85983.0, "Total Transactions": 8018.0, "Total Customers": 2042.0, "Median Spend per Transaction": 9.13, "Median Spend per Customer": 22.99 }, "geometry": { "type": "Point", "coordinates": [ -75.173688, 39.951893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "Name": "2nd Street Brew House", "Category": "Restaurants and Other Eating Places", "Address": "1700 S 2nd St", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 45.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 23.0, "Total Spend": 6031.0, "Total Transactions": 214.0, "Total Customers": 44.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 80.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-mff", "Name": "Con Murphy's", "Category": "Restaurants and Other Eating Places", "Address": "1700 Benjamin Franklin Pkwy", "LATITUDE": 39.955696, "LONGITUDE": -75.167996, "DATE_RANGE_START": 2022, "Total Visits": 233.0, "Total Visitors": 171.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 46.0, "Total Spend": 365.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 64.89, "Median Spend per Customer": 66.66 }, "geometry": { "type": "Point", "coordinates": [ -75.167996, 39.955696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bzf", "Name": "Ramen", "Category": "Restaurants and Other Eating Places", "Address": "4357 Main St", "LATITUDE": 40.025762, "LONGITUDE": -75.22385, "DATE_RANGE_START": 2022, "Total Visits": 75.0, "Total Visitors": 61.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 249.0, "Total Spend": 5590.0, "Total Transactions": 195.0, "Total Customers": 56.0, "Median Spend per Transaction": 17.91, "Median Spend per Customer": 76.24 }, "geometry": { "type": "Point", "coordinates": [ -75.22385, 40.025762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3000 Reed St # 02", "LATITUDE": 39.936229, "LONGITUDE": -75.194533, "DATE_RANGE_START": 2022, "Total Visits": 70.0, "Total Visitors": 56.0, "POI_CBG": 421010033006.0, "Median Dwell Time": 5.0, "Total Spend": 6115.0, "Total Transactions": 331.0, "Total Customers": 209.0, "Median Spend per Transaction": 13.89, "Median Spend per Customer": 21.56 }, "geometry": { "type": "Point", "coordinates": [ -75.194533, 39.936229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph8-q75", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7564 Haverford Ave", "LATITUDE": 39.978744, "LONGITUDE": -75.268394, "DATE_RANGE_START": 2022, "Total Visits": 71.0, "Total Visitors": 56.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 32.0, "Total Spend": 687.0, "Total Transactions": 38.0, "Total Customers": 28.0, "Median Spend per Transaction": 12.76, "Median Spend per Customer": 20.57 }, "geometry": { "type": "Point", "coordinates": [ -75.268394, 39.978744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "Name": "Gia Pronto", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2022, "Total Visits": 56.0, "Total Visitors": 40.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 24.0, "Total Spend": 15257.0, "Total Transactions": 1688.0, "Total Customers": 531.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-47q", "Name": "The Lunar Inn", "Category": "Restaurants and Other Eating Places", "Address": "3124 Richmond St", "LATITUDE": 39.982358, "LONGITUDE": -75.103191, "DATE_RANGE_START": 2022, "Total Visits": 105.0, "Total Visitors": 42.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 30.0, "Total Spend": 13683.0, "Total Transactions": 263.0, "Total Customers": 98.0, "Median Spend per Transaction": 50.76, "Median Spend per Customer": 99.96 }, "geometry": { "type": "Point", "coordinates": [ -75.103191, 39.982358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "Name": "SouthHouse", "Category": "Restaurants and Other Eating Places", "Address": "2535 S 13th St", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2022, "Total Visits": 387.0, "Total Visitors": 220.0, "POI_CBG": 421010040023.0, "Median Dwell Time": 172.0, "Total Spend": 9100.0, "Total Transactions": 284.0, "Total Customers": 139.0, "Median Spend per Transaction": 27.87, "Median Spend per Customer": 49.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgd-z9f", "Name": "Bombay Dhabba Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956797, "LONGITUDE": -75.194135, "DATE_RANGE_START": 2022, "Total Visits": 7688.0, "Total Visitors": 3805.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 58.0, "Total Spend": 2346.0, "Total Transactions": 108.0, "Total Customers": 42.0, "Median Spend per Transaction": 15.65, "Median Spend per Customer": 47.17 }, "geometry": { "type": "Point", "coordinates": [ -75.194135, 39.956797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave Ste 5", "LATITUDE": 40.087324, "LONGITUDE": -75.039996, "DATE_RANGE_START": 2022, "Total Visits": 376.0, "Total Visitors": 230.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 4.0, "Total Spend": 1671.0, "Total Transactions": 246.0, "Total Customers": 118.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -75.039996, 40.087324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6191 Ridge Ave", "LATITUDE": 40.035531, "LONGITUDE": -75.217119, "DATE_RANGE_START": 2022, "Total Visits": 159.0, "Total Visitors": 134.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 3.0, "Total Spend": 5966.0, "Total Transactions": 646.0, "Total Customers": 328.0, "Median Spend per Transaction": 8.83, "Median Spend per Customer": 10.09 }, "geometry": { "type": "Point", "coordinates": [ -75.217119, 40.035531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1630 E Wadsworth Ave", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2022, "Total Visits": 228.0, "Total Visitors": 172.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 3.0, "Total Spend": 4365.0, "Total Transactions": 552.0, "Total Customers": 336.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dw4-rzf", "Name": "LOVE Grille", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895174, "LONGITUDE": -75.227972, "DATE_RANGE_START": 2022, "Total Visits": 631.0, "Total Visitors": 470.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 2.0, "Total Spend": 52615.0, "Total Transactions": 2524.0, "Total Customers": 1190.0, "Median Spend per Transaction": 16.27, "Median Spend per Customer": 33.36 }, "geometry": { "type": "Point", "coordinates": [ -75.227972, 39.895174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "Name": "LKQ", "Category": "Miscellaneous Durable Goods Merchant Wholesalers", "Address": "3350 S 61st St", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2022, "Total Visits": 167.0, "Total Visitors": 84.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 339.0, "Total Spend": 5693.0, "Total Transactions": 35.0, "Total Customers": 24.0, "Median Spend per Transaction": 88.59, "Median Spend per Customer": 88.59 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj4-zzz", "Name": "Wok Works", "Category": "Restaurants and Other Eating Places", "Address": "3401 N Broad St", "LATITUDE": 40.005065, "LONGITUDE": -75.150775, "DATE_RANGE_START": 2022, "Total Visits": 10615.0, "Total Visitors": 3632.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 331.0, "Total Spend": 288.0, "Total Transactions": 21.0, "Total Customers": 10.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.150775, 40.005065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-3kf", "Name": "Sheraton Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "201 N 17th St", "LATITUDE": 39.957083, "LONGITUDE": -75.167351, "DATE_RANGE_START": 2022, "Total Visits": 2134.0, "Total Visitors": 1028.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 466.0, "Total Spend": 9013.0, "Total Transactions": 40.0, "Total Customers": 21.0, "Median Spend per Transaction": 56.0, "Median Spend per Customer": 149.14 }, "geometry": { "type": "Point", "coordinates": [ -75.167351, 39.957083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "Name": "South Street Souvlaki", "Category": "Restaurants and Other Eating Places", "Address": "509 South St", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2022, "Total Visits": 718.0, "Total Visitors": 467.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 635.0, "Total Spend": 1760.0, "Total Transactions": 44.0, "Total Customers": 26.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 51.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg9-vs5", "Name": "The Fairview", "Category": "Restaurants and Other Eating Places", "Address": "601 N 21st St", "LATITUDE": 39.965375, "LONGITUDE": -75.172387, "DATE_RANGE_START": 2022, "Total Visits": 230.0, "Total Visitors": 118.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 136.0, "Total Spend": 21479.0, "Total Transactions": 352.0, "Total Customers": 160.0, "Median Spend per Transaction": 45.62, "Median Spend per Customer": 91.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172387, 39.965375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3110 W Cheltenham Ave", "LATITUDE": 40.081002, "LONGITUDE": -75.170911, "DATE_RANGE_START": 2022, "Total Visits": 336.0, "Total Visitors": 291.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 6.0, "Total Spend": 11649.0, "Total Transactions": 646.0, "Total Customers": 469.0, "Median Spend per Transaction": 13.26, "Median Spend per Customer": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.170911, 40.081002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm3-vzz", "Name": "LaScala's Birra", "Category": "Restaurants and Other Eating Places", "Address": "1700 E Passyunk Ave", "LATITUDE": 39.928592, "LONGITUDE": -75.165123, "DATE_RANGE_START": 2022, "Total Visits": 415.0, "Total Visitors": 336.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 24.0, "Total Spend": 22011.0, "Total Transactions": 401.0, "Total Customers": 186.0, "Median Spend per Transaction": 50.71, "Median Spend per Customer": 88.42 }, "geometry": { "type": "Point", "coordinates": [ -75.165123, 39.928592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "Name": "Vietnam Cafe", "Category": "Restaurants and Other Eating Places", "Address": "816 S 47th St", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2022, "Total Visits": 181.0, "Total Visitors": 131.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 62.0, "Total Spend": 2290.0, "Total Transactions": 35.0, "Total Customers": 17.0, "Median Spend per Transaction": 45.74, "Median Spend per Customer": 91.48 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7b-vmk", "Name": "Out Of Wack Jack", "Category": "Restaurants and Other Eating Places", "Address": "3156 Willits Rd", "LATITUDE": 40.057001, "LONGITUDE": -75.014587, "DATE_RANGE_START": 2022, "Total Visits": 192.0, "Total Visitors": 129.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 61.0, "Total Spend": 1104.0, "Total Transactions": 26.0, "Total Customers": 14.0, "Median Spend per Transaction": 49.75, "Median Spend per Customer": 73.63 }, "geometry": { "type": "Point", "coordinates": [ -75.014587, 40.057001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p74-wtv", "Name": "Oteri's Italian Bakery Frankford Ave", "Category": "Restaurants and Other Eating Places", "Address": "7518 Frankford Ave", "LATITUDE": 40.038952, "LONGITUDE": -75.035677, "DATE_RANGE_START": 2022, "Total Visits": 240.0, "Total Visitors": 176.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 13.0, "Total Spend": 159.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.83, "Median Spend per Customer": 45.66 }, "geometry": { "type": "Point", "coordinates": [ -75.035677, 40.038952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6417 Harbison Ave", "LATITUDE": 40.032699, "LONGITUDE": -75.063191, "DATE_RANGE_START": 2022, "Total Visits": 378.0, "Total Visitors": 298.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 3.0, "Total Spend": 1166.0, "Total Transactions": 66.0, "Total Customers": 54.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 18.11 }, "geometry": { "type": "Point", "coordinates": [ -75.063191, 40.032699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "Name": "Stock", "Category": "Restaurants and Other Eating Places", "Address": "308 E Girard Ave", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2022, "Total Visits": 89.0, "Total Visitors": 70.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 42.0, "Total Spend": 5279.0, "Total Transactions": 40.0, "Total Customers": 24.0, "Median Spend per Transaction": 140.06, "Median Spend per Customer": 183.59 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pfy-f75", "Name": "Halal Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "6193 Ridge Ave", "LATITUDE": 40.035603, "LONGITUDE": -75.217121, "DATE_RANGE_START": 2022, "Total Visits": 112.0, "Total Visitors": 87.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 4.0, "Total Spend": 216.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 31.01, "Median Spend per Customer": 62.01 }, "geometry": { "type": "Point", "coordinates": [ -75.217121, 40.035603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4046 Woodhaven Rd", "LATITUDE": 40.086321, "LONGITUDE": -74.971748, "DATE_RANGE_START": 2022, "Total Visits": 1927.0, "Total Visitors": 1061.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 2.0, "Total Spend": 9277.0, "Total Transactions": 1214.0, "Total Customers": 535.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 9.05 }, "geometry": { "type": "Point", "coordinates": [ -74.971748, 40.086321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "Name": "Xiandu Thai", "Category": "Restaurants and Other Eating Places", "Address": "1119 Walnut St", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2022, "Total Visits": 2065.0, "Total Visitors": 1467.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 67.0, "Total Spend": 11292.0, "Total Transactions": 253.0, "Total Customers": 118.0, "Median Spend per Transaction": 30.11, "Median Spend per Customer": 68.02 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "Name": "Blue Corn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "940 S 9th St", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2022, "Total Visits": 395.0, "Total Visitors": 305.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 56.0, "Total Spend": 3891.0, "Total Transactions": 101.0, "Total Customers": 45.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 68.58 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmc-2ff", "Name": "The Trestle Inn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "339 N 11th St", "LATITUDE": 39.958777, "LONGITUDE": -75.156489, "DATE_RANGE_START": 2022, "Total Visits": 164.0, "Total Visitors": 125.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 1.0, "Total Spend": 13539.0, "Total Transactions": 369.0, "Total Customers": 164.0, "Median Spend per Transaction": 26.1, "Median Spend per Customer": 69.98 }, "geometry": { "type": "Point", "coordinates": [ -75.156489, 39.958777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "Name": "Pasqually's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "200 S 43rd St", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2022, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 2.0, "Total Spend": 19642.0, "Total Transactions": 854.0, "Total Customers": 308.0, "Median Spend per Transaction": 18.7, "Median Spend per Customer": 51.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pp2-sdv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3829 Aramingo Ave", "LATITUDE": 39.995956, "LONGITUDE": -75.09064, "DATE_RANGE_START": 2022, "Total Visits": 286.0, "Total Visitors": 240.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 5.0, "Total Spend": 547.0, "Total Transactions": 31.0, "Total Customers": 21.0, "Median Spend per Transaction": 7.07, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.09064, 39.995956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@63s-dvw-f2k", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "5143 Haverford Ave", "LATITUDE": 39.964788, "LONGITUDE": -75.22346, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 17.0, "POI_CBG": 421010103002.0, "Median Dwell Time": 1.0, "Total Spend": 586.0, "Total Transactions": 33.0, "Total Customers": 14.0, "Median Spend per Transaction": 14.74, "Median Spend per Customer": 28.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22346, 39.964788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2022, "Total Visits": 251.0, "Total Visitors": 178.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 59.0, "Total Spend": 13793.0, "Total Transactions": 341.0, "Total Customers": 164.0, "Median Spend per Transaction": 34.57, "Median Spend per Customer": 60.77 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "575 Adams Ave", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2022, "Total Visits": 561.0, "Total Visitors": 449.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 20.0, "Total Spend": 16106.0, "Total Transactions": 472.0, "Total Customers": 223.0, "Median Spend per Transaction": 31.1, "Median Spend per Customer": 62.11 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-r6k", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "310 W Master St", "LATITUDE": 39.97237, "LONGITUDE": -75.140976, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 54.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 39.0, "Total Spend": 178.0, "Total Transactions": 24.0, "Total Customers": 10.0, "Median Spend per Transaction": 7.32, "Median Spend per Customer": 19.53 }, "geometry": { "type": "Point", "coordinates": [ -75.140976, 39.97237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "Name": "Seorabol Korean Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5734 Old Second St", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 115.0, "POI_CBG": 421010274023.0, "Median Dwell Time": 56.0, "Total Spend": 3879.0, "Total Transactions": 59.0, "Total Customers": 28.0, "Median Spend per Transaction": 71.95, "Median Spend per Customer": 126.73 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp5-qxq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "338 E Allegheny Ave Ste 80", "LATITUDE": 39.997222, "LONGITUDE": -75.123675, "DATE_RANGE_START": 2022, "Total Visits": 171.0, "Total Visitors": 138.0, "POI_CBG": 421010177025.0, "Median Dwell Time": 3.0, "Total Spend": 9188.0, "Total Transactions": 596.0, "Total Customers": 153.0, "Median Spend per Transaction": 9.44, "Median Spend per Customer": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.123675, 39.997222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "Name": "Academy Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10101 Academy Rd Ste 105", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2022, "Total Visits": 146.0, "Total Visitors": 84.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 6.0, "Total Spend": 1282.0, "Total Transactions": 24.0, "Total Customers": 10.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 44.02 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "Name": "Stanley's Hardware", "Category": "Building Material and Supplies Dealers", "Address": "5555 Ridge Ave", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2022, "Total Visits": 413.0, "Total Visitors": 291.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 6.0, "Total Spend": 105023.0, "Total Transactions": 2756.0, "Total Customers": 981.0, "Median Spend per Transaction": 25.43, "Median Spend per Customer": 56.14 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "Name": "Hibiscus Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4907 Catharine St", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2022, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 58.0, "Total Spend": 5792.0, "Total Transactions": 240.0, "Total Customers": 91.0, "Median Spend per Transaction": 16.72, "Median Spend per Customer": 37.43 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6758 Ridge Ave", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 96.0, "POI_CBG": 421010215001.0, "Median Dwell Time": 3.0, "Total Spend": 9207.0, "Total Transactions": 256.0, "Total Customers": 213.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@63s-dwc-cbk", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "6101 Passyunk Ave", "LATITUDE": 39.918372, "LONGITUDE": -75.209677, "DATE_RANGE_START": 2022, "Total Visits": 577.0, "Total Visitors": 453.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 415.0, "Total Transactions": 14.0, "Total Customers": 7.0, "Median Spend per Transaction": 30.25, "Median Spend per Customer": 60.5 }, "geometry": { "type": "Point", "coordinates": [ -75.209677, 39.918372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "Name": "Malelani Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6734 Germantown Ave", "LATITUDE": 40.05294, "LONGITUDE": -75.186129, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 2.0, "Total Spend": 2217.0, "Total Transactions": 84.0, "Total Customers": 37.0, "Median Spend per Transaction": 21.7, "Median Spend per Customer": 41.46 }, "geometry": { "type": "Point", "coordinates": [ -75.186129, 40.05294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-y5f", "Name": "Neighborhood Ramen", "Category": "Restaurants and Other Eating Places", "Address": "617 S 3rd St", "LATITUDE": 39.9409, "LONGITUDE": -75.147453, "DATE_RANGE_START": 2022, "Total Visits": 570.0, "Total Visitors": 455.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 38.0, "Total Spend": 9096.0, "Total Transactions": 230.0, "Total Customers": 117.0, "Median Spend per Transaction": 31.43, "Median Spend per Customer": 60.75 }, "geometry": { "type": "Point", "coordinates": [ -75.147453, 39.9409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-cyv", "Name": "El Provocon", "Category": "Restaurants and Other Eating Places", "Address": "2843 Tyson Ave", "LATITUDE": 40.039466, "LONGITUDE": -75.056309, "DATE_RANGE_START": 2022, "Total Visits": 113.0, "Total Visitors": 91.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 4.0, "Total Spend": 1282.0, "Total Transactions": 87.0, "Total Customers": 38.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056309, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmd-w49", "Name": "Twenty Manning", "Category": "Restaurants and Other Eating Places", "Address": "261 S 20th St", "LATITUDE": 39.948622, "LONGITUDE": -75.17407, "DATE_RANGE_START": 2022, "Total Visits": 178.0, "Total Visitors": 94.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 61.0, "Total Spend": 5949.0, "Total Transactions": 63.0, "Total Customers": 30.0, "Median Spend per Transaction": 75.69, "Median Spend per Customer": 159.12 }, "geometry": { "type": "Point", "coordinates": [ -75.17407, 39.948622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "Name": "NO 1 China", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2022, "Total Visits": 659.0, "Total Visitors": 500.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 16.0, "Total Spend": 539.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 45.68, "Median Spend per Customer": 45.68 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "8743 Frankford Ave", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2022, "Total Visits": 131.0, "Total Visitors": 99.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 7.0, "Total Spend": 4241.0, "Total Transactions": 157.0, "Total Customers": 75.0, "Median Spend per Transaction": 24.95, "Median Spend per Customer": 51.0 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-n3q", "Name": "Naya Market St", "Category": "Restaurants and Other Eating Places", "Address": "1601 Market St", "LATITUDE": 39.953238, "LONGITUDE": -75.167055, "DATE_RANGE_START": 2022, "Total Visits": 277.0, "Total Visitors": 207.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 206.0, "Total Spend": 1616.0, "Total Transactions": 129.0, "Total Customers": 52.0, "Median Spend per Transaction": 11.39, "Median Spend per Customer": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.953238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p9k-r8v", "Name": "The Union Tap", "Category": "Restaurants and Other Eating Places", "Address": "2711 Comly Rd", "LATITUDE": 40.10443, "LONGITUDE": -75.000432, "DATE_RANGE_START": 2022, "Total Visits": 181.0, "Total Visitors": 113.0, "POI_CBG": 421010361002.0, "Median Dwell Time": 60.0, "Total Spend": 1093.0, "Total Transactions": 37.0, "Total Customers": 17.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.000432, 40.10443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p72-9vf", "Name": "Maggie's Waterfront Cafe", "Category": "Restaurants and Other Eating Places", "Address": "9242 N Delaware Ave", "LATITUDE": 40.043666, "LONGITUDE": -74.989672, "DATE_RANGE_START": 2022, "Total Visits": 1204.0, "Total Visitors": 911.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 63.0, "Total Spend": 273.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 78.4, "Median Spend per Customer": 78.4 }, "geometry": { "type": "Point", "coordinates": [ -74.989672, 40.043666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "6470 Torresdale Ave", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2022, "Total Visits": 796.0, "Total Visitors": 523.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 5.0, "Total Spend": 16507.0, "Total Transactions": 1200.0, "Total Customers": 728.0, "Median Spend per Transaction": 11.66, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "Name": "Mammoth Coffee", "Category": "Restaurants and Other Eating Places", "Address": "534 W Girard Ave", "LATITUDE": 39.969701, "LONGITUDE": -75.146132, "DATE_RANGE_START": 2022, "Total Visits": 145.0, "Total Visitors": 78.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 4.0, "Total Spend": 3588.0, "Total Transactions": 326.0, "Total Customers": 84.0, "Median Spend per Transaction": 10.37, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.146132, 39.969701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-kfz", "Name": "SoBol UCity", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.951073, "LONGITUDE": -75.198726, "DATE_RANGE_START": 2022, "Total Visits": 777.0, "Total Visitors": 589.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 9.0, "Total Spend": 3510.0, "Total Transactions": 246.0, "Total Customers": 127.0, "Median Spend per Transaction": 12.69, "Median Spend per Customer": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.198726, 39.951073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-7wk", "Name": "Fuel", "Category": "Restaurants and Other Eating Places", "Address": "3200 Chestnut St", "LATITUDE": 39.953562, "LONGITUDE": -75.188092, "DATE_RANGE_START": 2022, "Total Visits": 371.0, "Total Visitors": 176.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 446.0, "Total Spend": 15042.0, "Total Transactions": 402.0, "Total Customers": 183.0, "Median Spend per Transaction": 40.51, "Median Spend per Customer": 86.36 }, "geometry": { "type": "Point", "coordinates": [ -75.188092, 39.953562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-8y9", "Name": "The Pharmacy", "Category": "Restaurants and Other Eating Places", "Address": "1300 S 18th St", "LATITUDE": 39.934901, "LONGITUDE": -75.174223, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 59.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 143.0, "Total Spend": 4690.0, "Total Transactions": 188.0, "Total Customers": 78.0, "Median Spend per Transaction": 10.53, "Median Spend per Customer": 24.02 }, "geometry": { "type": "Point", "coordinates": [ -75.174223, 39.934901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-jsq", "Name": "Rione", "Category": "Restaurants and Other Eating Places", "Address": "102 S 21st St", "LATITUDE": 39.951947, "LONGITUDE": -75.175845, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 57.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 9.0, "Total Spend": 1472.0, "Total Transactions": 117.0, "Total Customers": 51.0, "Median Spend per Transaction": 11.56, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.175845, 39.951947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "Name": "SquareBurger", "Category": "Restaurants and Other Eating Places", "Address": "200 N 6th St", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2022, "Total Visits": 176.0, "Total Visitors": 176.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 12.0, "Total Spend": 9733.0, "Total Transactions": 551.0, "Total Customers": 260.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 29.62 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "Name": "Balducci's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.875709, "LONGITUDE": -75.241464, "DATE_RANGE_START": 2022, "Total Visits": 313162.0, "Total Visitors": 180913.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 62.0, "Total Spend": 5045.0, "Total Transactions": 373.0, "Total Customers": 190.0, "Median Spend per Transaction": 10.02, "Median Spend per Customer": 18.94 }, "geometry": { "type": "Point", "coordinates": [ -75.241464, 39.875709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm6-jn5", "Name": "Kyoto Japan", "Category": "Restaurants and Other Eating Places", "Address": "37 Snyder Ave", "LATITUDE": 39.921763, "LONGITUDE": -75.14657, "DATE_RANGE_START": 2022, "Total Visits": 169.0, "Total Visitors": 155.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 5471.0, "Total Transactions": 237.0, "Total Customers": 85.0, "Median Spend per Transaction": 17.49, "Median Spend per Customer": 45.88 }, "geometry": { "type": "Point", "coordinates": [ -75.14657, 39.921763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-5zz", "Name": "Top Tomato Pizza Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1107 Walnut St", "LATITUDE": 39.948971, "LONGITUDE": -75.159389, "DATE_RANGE_START": 2022, "Total Visits": 77.0, "Total Visitors": 70.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 2351.0, "Total Transactions": 85.0, "Total Customers": 33.0, "Median Spend per Transaction": 15.48, "Median Spend per Customer": 60.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159389, 39.948971 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm4-s5z", "Name": "The Pizza Place", "Category": "Restaurants and Other Eating Places", "Address": "1648 S 7th St", "LATITUDE": 39.927861, "LONGITUDE": -75.157274, "DATE_RANGE_START": 2022, "Total Visits": 78.0, "Total Visitors": 73.0, "POI_CBG": 421010028011.0, "Median Dwell Time": 3.0, "Total Spend": 613.0, "Total Transactions": 31.0, "Total Customers": 14.0, "Median Spend per Transaction": 22.99, "Median Spend per Customer": 40.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157274, 39.927861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-w8v", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955482, "LONGITUDE": -75.18177, "DATE_RANGE_START": 2022, "Total Visits": 303.0, "Total Visitors": 286.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 3.0, "Total Spend": 14008.0, "Total Transactions": 1392.0, "Total Customers": 1159.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 10.29 }, "geometry": { "type": "Point", "coordinates": [ -75.18177, 39.955482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "Name": "Linden Italian Market", "Category": "Restaurants and Other Eating Places", "Address": "4011 Linden Ave", "LATITUDE": 40.054575, "LONGITUDE": -75.004237, "DATE_RANGE_START": 2022, "Total Visits": 110.0, "Total Visitors": 96.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 3.0, "Total Spend": 1712.0, "Total Transactions": 99.0, "Total Customers": 35.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 53.62 }, "geometry": { "type": "Point", "coordinates": [ -75.004237, 40.054575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-kcq", "Name": "Sweet Charlie's", "Category": "Restaurants and Other Eating Places", "Address": "1921 Walnut St", "LATITUDE": 39.95076, "LONGITUDE": -75.173342, "DATE_RANGE_START": 2022, "Total Visits": 1132.0, "Total Visitors": 854.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 33.0, "Total Spend": 2404.0, "Total Transactions": 167.0, "Total Customers": 96.0, "Median Spend per Transaction": 9.92, "Median Spend per Customer": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.173342, 39.95076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8000 Pine Rd", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2022, "Total Visits": 585.0, "Total Visitors": 338.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 3.0, "Total Spend": 10036.0, "Total Transactions": 1244.0, "Total Customers": 502.0, "Median Spend per Transaction": 6.85, "Median Spend per Customer": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1945 Callowhill St", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2022, "Total Visits": 258.0, "Total Visitors": 214.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 11.0, "Total Spend": 6685.0, "Total Transactions": 800.0, "Total Customers": 547.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "12375 Academy Rd", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2022, "Total Visits": 714.0, "Total Visitors": 408.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 9.0, "Total Spend": 9431.0, "Total Transactions": 1287.0, "Total Customers": 483.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "Name": "Ox Coffee", "Category": "Restaurants and Other Eating Places", "Address": "616 S 3rd St", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2022, "Total Visits": 1437.0, "Total Visitors": 1132.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 173.0, "Total Spend": 6322.0, "Total Transactions": 580.0, "Total Customers": 178.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "Name": "Brickbat Books", "Category": "Used Merchandise Stores", "Address": "709 S 4th St", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 59.0, "Total Spend": 2254.0, "Total Transactions": 80.0, "Total Customers": 44.0, "Median Spend per Transaction": 24.25, "Median Spend per Customer": 47.52 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "Name": "Uncle Oogie's", "Category": "Restaurants and Other Eating Places", "Address": "36 Snyder Ave", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2022, "Total Visits": 40.0, "Total Visitors": 30.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 2786.0, "Total Transactions": 145.0, "Total Customers": 63.0, "Median Spend per Transaction": 14.95, "Median Spend per Customer": 33.11 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "Name": "Thai Kuu", "Category": "Restaurants and Other Eating Places", "Address": "35 Bethlehem Pike Ste 109A", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 49.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 7.0, "Total Spend": 3057.0, "Total Transactions": 63.0, "Total Customers": 33.0, "Median Spend per Transaction": 45.63, "Median Spend per Customer": 89.64 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "1500 N 50th St", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2022, "Total Visits": 1688.0, "Total Visitors": 1150.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 17.0, "Total Spend": 113585.0, "Total Transactions": 1279.0, "Total Customers": 857.0, "Median Spend per Transaction": 27.06, "Median Spend per Customer": 23.95 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pgg-qs5", "Name": "32nd Street Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3200 W Allegheny Ave", "LATITUDE": 40.005082, "LONGITUDE": -75.181898, "DATE_RANGE_START": 2022, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 5.0, "Total Spend": 2453.0, "Total Transactions": 63.0, "Total Customers": 28.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 66.96 }, "geometry": { "type": "Point", "coordinates": [ -75.181898, 40.005082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pj9-jvz", "Name": "Soul Kitchen 5935", "Category": "Restaurants and Other Eating Places", "Address": "5935 Ogontz Ave", "LATITUDE": 40.044681, "LONGITUDE": -75.149272, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010278001.0, "Median Dwell Time": 30.0, "Total Spend": 1745.0, "Total Transactions": 49.0, "Total Customers": 28.0, "Median Spend per Transaction": 30.22, "Median Spend per Customer": 48.49 }, "geometry": { "type": "Point", "coordinates": [ -75.149272, 40.044681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.991664, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2022, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 152.0, "Total Spend": 363.0, "Total Transactions": 23.0, "Total Customers": 16.0, "Median Spend per Transaction": 10.45, "Median Spend per Customer": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.991664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "Name": "Evan's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4311 Locust St", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2022, "Total Visits": 37.0, "Total Visitors": 24.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 14.0, "Total Spend": 2557.0, "Total Transactions": 152.0, "Total Customers": 73.0, "Median Spend per Transaction": 13.69, "Median Spend per Customer": 29.02 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "Name": "Marcello's Pizza Grill", "Category": "Restaurants and Other Eating Places", "Address": "10849 Bustleton Ave", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2022, "Total Visits": 3105.0, "Total Visitors": 1814.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 5.0, "Total Spend": 2437.0, "Total Transactions": 89.0, "Total Customers": 35.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 31.98 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "Name": "Local 44", "Category": "Restaurants and Other Eating Places", "Address": "4333 Spruce St", "LATITUDE": 39.952832, "LONGITUDE": -75.210325, "DATE_RANGE_START": 2022, "Total Visits": 335.0, "Total Visitors": 181.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 480.0, "Total Spend": 40514.0, "Total Transactions": 833.0, "Total Customers": 371.0, "Median Spend per Transaction": 40.55, "Median Spend per Customer": 80.72 }, "geometry": { "type": "Point", "coordinates": [ -75.210325, 39.952832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "Name": "Munchies Cafe", "Category": "Restaurants and Other Eating Places", "Address": "728 Chestnut St", "LATITUDE": 39.949457, "LONGITUDE": -75.153676, "DATE_RANGE_START": 2022, "Total Visits": 98.0, "Total Visitors": 68.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 283.0, "Total Spend": 8069.0, "Total Transactions": 685.0, "Total Customers": 190.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 29.96 }, "geometry": { "type": "Point", "coordinates": [ -75.153676, 39.949457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-g8v", "Name": "Ultimo Coffee Bar", "Category": "Restaurants and Other Eating Places", "Address": "1900 S 15th St", "LATITUDE": 39.926977, "LONGITUDE": -75.171073, "DATE_RANGE_START": 2022, "Total Visits": 437.0, "Total Visitors": 186.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 300.0, "Total Spend": 58.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.28, "Median Spend per Customer": 16.56 }, "geometry": { "type": "Point", "coordinates": [ -75.171073, 39.926977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2054 Red Lion Rd", "LATITUDE": 40.099554, "LONGITUDE": -75.024268, "DATE_RANGE_START": 2022, "Total Visits": 1521.0, "Total Visitors": 1260.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 6.0, "Total Spend": 1334.0, "Total Transactions": 232.0, "Total Customers": 105.0, "Median Spend per Transaction": 3.24, "Median Spend per Customer": 7.59 }, "geometry": { "type": "Point", "coordinates": [ -75.024268, 40.099554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "Name": "1 Tippling Place", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2006 Chestnut St", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2022, "Total Visits": 44.0, "Total Visitors": 44.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 43.0, "Total Spend": 8062.0, "Total Transactions": 117.0, "Total Customers": 61.0, "Median Spend per Transaction": 54.55, "Median Spend per Customer": 109.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "5717 Rising Sun Ave", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2022, "Total Visits": 66.0, "Total Visitors": 63.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 5.0, "Total Spend": 22872.0, "Total Transactions": 331.0, "Total Customers": 174.0, "Median Spend per Transaction": 52.09, "Median Spend per Customer": 99.36 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "Name": "New London Pizza", "Category": "Restaurants and Other Eating Places", "Address": "500 E Wyoming Ave", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2022, "Total Visits": 2.0, "Total Visitors": 2.0, "POI_CBG": 421010289013.0, "Median Dwell Time": 5.0, "Total Spend": 6002.0, "Total Transactions": 172.0, "Total Customers": 63.0, "Median Spend per Transaction": 31.85, "Median Spend per Customer": 61.4 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm4-ct9", "Name": "Hibachi 2 Go", "Category": "Restaurants and Other Eating Places", "Address": "1414 Snyder Ave", "LATITUDE": 39.924257, "LONGITUDE": -75.170377, "DATE_RANGE_START": 2022, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 218.0, "Total Spend": 309.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 20.41, "Median Spend per Customer": 40.82 }, "geometry": { "type": "Point", "coordinates": [ -75.170377, 39.924257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "Name": "Talk of the Town", "Category": "Restaurants and Other Eating Places", "Address": "7804 Limekiln Pike", "LATITUDE": 40.071911, "LONGITUDE": -75.161398, "DATE_RANGE_START": 2022, "Total Visits": 64.0, "Total Visitors": 61.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 4.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.94, "Median Spend per Customer": 11.94 }, "geometry": { "type": "Point", "coordinates": [ -75.161398, 40.071911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pp4-zxq", "Name": "M R Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2510 N Front St", "LATITUDE": 39.988165, "LONGITUDE": -75.131689, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010163003.0, "Median Dwell Time": 4.0, "Total Spend": 4762.0, "Total Transactions": 322.0, "Total Customers": 164.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 15.22 }, "geometry": { "type": "Point", "coordinates": [ -75.131689, 39.988165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgh-45f", "Name": "City Food Market", "Category": "Grocery Stores", "Address": "3601 N 22nd St", "LATITUDE": 40.009428, "LONGITUDE": -75.164387, "DATE_RANGE_START": 2022, "Total Visits": 63.0, "Total Visitors": 38.0, "POI_CBG": 421010202004.0, "Median Dwell Time": 11.0, "Total Spend": 2183.0, "Total Transactions": 200.0, "Total Customers": 44.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 29.06 }, "geometry": { "type": "Point", "coordinates": [ -75.164387, 40.009428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@63s-dvy-pjv", "Name": "Chix & Chicks", "Category": "Restaurants and Other Eating Places", "Address": "32 S 40th St", "LATITUDE": 39.956274, "LONGITUDE": -75.202371, "DATE_RANGE_START": 2022, "Total Visits": 141.0, "Total Visitors": 49.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 366.0, "Total Spend": 936.0, "Total Transactions": 17.0, "Total Customers": 10.0, "Median Spend per Transaction": 39.32, "Median Spend per Customer": 81.14 }, "geometry": { "type": "Point", "coordinates": [ -75.202371, 39.956274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "Name": "Tap Room On 19th", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2400 S 19th St", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2022, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010038001.0, "Median Dwell Time": 52.0, "Total Spend": 10113.0, "Total Transactions": 195.0, "Total Customers": 80.0, "Median Spend per Transaction": 49.93, "Median Spend per Customer": 107.42 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "Name": "Nori Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1636 South St", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2022, "Total Visits": 61.0, "Total Visitors": 23.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 413.0, "Total Spend": 6304.0, "Total Transactions": 150.0, "Total Customers": 71.0, "Median Spend per Transaction": 40.54, "Median Spend per Customer": 72.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "Name": "King Wok's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Torresdale Ave", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2022, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010321001.0, "Median Dwell Time": 82.0, "Total Spend": 2655.0, "Total Transactions": 98.0, "Total Customers": 40.0, "Median Spend per Transaction": 25.4, "Median Spend per Customer": 49.6 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "Name": "Moshulu", "Category": "Restaurants and Other Eating Places", "Address": "401 S Columbus Blvd", "LATITUDE": 39.941589, "LONGITUDE": -75.141261, "DATE_RANGE_START": 2022, "Total Visits": 1312.0, "Total Visitors": 1166.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 3.0, "Total Spend": 10408.0, "Total Transactions": 181.0, "Total Customers": 75.0, "Median Spend per Transaction": 30.01, "Median Spend per Customer": 92.86 }, "geometry": { "type": "Point", "coordinates": [ -75.141261, 39.941589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-2x5", "Name": "LongHorn Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "2120 S Columbus Blvd", "LATITUDE": 39.919428, "LONGITUDE": -75.14118, "DATE_RANGE_START": 2022, "Total Visits": 564.0, "Total Visitors": 472.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 47.0, "Total Spend": 285.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 28.76, "Median Spend per Customer": 28.76 }, "geometry": { "type": "Point", "coordinates": [ -75.14118, 39.919428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "Name": "Quaker Diner", "Category": "Restaurants and Other Eating Places", "Address": "7241 Rising Sun Ave", "LATITUDE": 40.060542, "LONGITUDE": -75.084471, "DATE_RANGE_START": 2022, "Total Visits": 153.0, "Total Visitors": 134.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 20.0, "Total Spend": 8259.0, "Total Transactions": 260.0, "Total Customers": 106.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 58.98 }, "geometry": { "type": "Point", "coordinates": [ -75.084471, 40.060542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-v2k", "Name": "Original Village Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1006 Sandmeyer Ln", "LATITUDE": 40.107293, "LONGITUDE": -75.037623, "DATE_RANGE_START": 2022, "Total Visits": 108.0, "Total Visitors": 96.0, "POI_CBG": 421010357021.0, "Median Dwell Time": 4.0, "Total Spend": 11317.0, "Total Transactions": 287.0, "Total Customers": 106.0, "Median Spend per Transaction": 34.34, "Median Spend per Customer": 61.78 }, "geometry": { "type": "Point", "coordinates": [ -75.037623, 40.107293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pm9-s5z", "Name": "PJ Clarkes", "Category": "Restaurants and Other Eating Places", "Address": "601 Walnut St", "LATITUDE": 39.948105, "LONGITUDE": -75.151179, "DATE_RANGE_START": 2022, "Total Visits": 3836.0, "Total Visitors": 2890.0, "POI_CBG": 421010010011.0, "Median Dwell Time": 52.0, "Total Spend": 1360.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 81.3, "Median Spend per Customer": 147.6 }, "geometry": { "type": "Point", "coordinates": [ -75.151179, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "Name": "Chubby's Fox Chase Deli", "Category": "Restaurants and Other Eating Places", "Address": "537 Hoffnagle St", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2022, "Total Visits": 153.0, "Total Visitors": 63.0, "POI_CBG": 421010341006.0, "Median Dwell Time": 608.0, "Total Spend": 2492.0, "Total Transactions": 105.0, "Total Customers": 44.0, "Median Spend per Transaction": 19.68, "Median Spend per Customer": 42.08 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "Name": "Bellini", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "220 S 16th St", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2022, "Total Visits": 199.0, "Total Visitors": 169.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 4.0, "Total Spend": 8095.0, "Total Transactions": 87.0, "Total Customers": 45.0, "Median Spend per Transaction": 81.26, "Median Spend per Customer": 159.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-pn5", "Name": "Yiro Yiro", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St # 29", "LATITUDE": 39.954699, "LONGITUDE": -75.202157, "DATE_RANGE_START": 2022, "Total Visits": 244.0, "Total Visitors": 185.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 24.0, "Total Spend": 7870.0, "Total Transactions": 387.0, "Total Customers": 195.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 29.96 }, "geometry": { "type": "Point", "coordinates": [ -75.202157, 39.954699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-phy-kmk", "Name": "El Sabor De Maria", "Category": "Restaurants and Other Eating Places", "Address": "4903 N 5th St", "LATITUDE": 40.025858, "LONGITUDE": -75.132587, "DATE_RANGE_START": 2022, "Total Visits": 472.0, "Total Visitors": 261.0, "POI_CBG": 421010286003.0, "Median Dwell Time": 122.0, "Total Spend": 2107.0, "Total Transactions": 64.0, "Total Customers": 21.0, "Median Spend per Transaction": 26.96, "Median Spend per Customer": 69.53 }, "geometry": { "type": "Point", "coordinates": [ -75.132587, 40.025858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-6x5", "Name": "Su Xing House", "Category": "Restaurants and Other Eating Places", "Address": "1508 Sansom St", "LATITUDE": 39.950249, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2022, "Total Visits": 45.0, "Total Visitors": 37.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 19.0, "Total Spend": 4926.0, "Total Transactions": 122.0, "Total Customers": 52.0, "Median Spend per Transaction": 29.95, "Median Spend per Customer": 67.7 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "Name": "Sky Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1122 38 Washington Ave Ste B", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2022, "Total Visits": 213.0, "Total Visitors": 185.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 15.0, "Total Spend": 7160.0, "Total Transactions": 127.0, "Total Customers": 61.0, "Median Spend per Transaction": 39.14, "Median Spend per Customer": 90.7 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-224@63s-dvy-pjv", "Name": "Irie Entree", "Category": "Restaurants and Other Eating Places", "Address": "4001 Chestnut St", "LATITUDE": 39.955909, "LONGITUDE": -75.202374, "DATE_RANGE_START": 2022, "Total Visits": 186.0, "Total Visitors": 118.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 163.0, "Total Spend": 2530.0, "Total Transactions": 14.0, "Total Customers": 5.0, "Median Spend per Transaction": 215.0, "Median Spend per Customer": 430.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202374, 39.955909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "Name": "Vapordelphia", "Category": "Other Miscellaneous Store Retailers", "Address": "603 S 9th St", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2022, "Total Visits": 657.0, "Total Visitors": 376.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 213.0, "Total Spend": 7017.0, "Total Transactions": 155.0, "Total Customers": 54.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "Name": "Weavers Way Co Op", "Category": "Grocery Stores", "Address": "559 Carpenter Ln", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2022, "Total Visits": 125.0, "Total Visitors": 80.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 3.0, "Total Spend": 201334.0, "Total Transactions": 5164.0, "Total Customers": 1193.0, "Median Spend per Transaction": 26.71, "Median Spend per Customer": 72.34 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } } +] +} diff --git a/assets/data/data_2023.geojson b/assets/data/data_2023.geojson new file mode 100644 index 0000000..1b56279 --- /dev/null +++ b/assets/data/data_2023.geojson @@ -0,0 +1,2851 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "Name": "Stanley's Hardware", "Category": "Building Material and Supplies Dealers", "Address": "5555 Ridge Ave", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 195.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 10.0, "Total Spend": 11673.0, "Total Transactions": 288.0, "Total Customers": 163.0, "Median Spend per Transaction": 20.65, "Median Spend per Customer": 36.42 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "Name": "P.C. Richard & Son", "Category": "Electronics and Appliance Stores", "Address": "2420 Cottman Ave", "LATITUDE": 40.045946, "LONGITUDE": -75.060205, "DATE_RANGE_START": 2023, "Total Visits": 209.0, "Total Visitors": 99.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 522.0, "Total Spend": 4538.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 86.39, "Median Spend per Customer": 145.78 }, "geometry": { "type": "Point", "coordinates": [ -75.060205, 40.045946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3850 Lancaster Ave", "LATITUDE": 39.961315, "LONGITUDE": -75.199232, "DATE_RANGE_START": 2023, "Total Visits": 293.0, "Total Visitors": 90.0, "POI_CBG": 421010091003.0, "Median Dwell Time": 373.0, "Total Spend": 3655.0, "Total Transactions": 109.0, "Total Customers": 63.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 35.17 }, "geometry": { "type": "Point", "coordinates": [ -75.199232, 39.961315 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pj4-3qz", "Name": "Crazy Wave", "Category": "Health and Personal Care Stores", "Address": "4229 N Broad St", "LATITUDE": 40.017645, "LONGITUDE": -75.148812, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 132.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 22.0, "Total Spend": 2272.0, "Total Transactions": 84.0, "Total Customers": 76.0, "Median Spend per Transaction": 19.41, "Median Spend per Customer": 21.57 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 40.017645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-87q", "Name": "Rittenhouse Needlepoint", "Category": "Other Miscellaneous Store Retailers", "Address": "1216 Arch St Ste 2A", "LATITUDE": 39.953748, "LONGITUDE": -75.160376, "DATE_RANGE_START": 2023, "Total Visits": 5172.0, "Total Visitors": 3775.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 16.0, "Total Spend": 206.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 30.37, "Median Spend per Customer": 55.64 }, "geometry": { "type": "Point", "coordinates": [ -75.160376, 39.953748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-975", "Name": "Goldie", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.952988, "LONGITUDE": -75.192295, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 12.0, "Total Spend": 350.0, "Total Transactions": 15.0, "Total Customers": 14.0, "Median Spend per Transaction": 19.54, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192295, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St Ste 5", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 15.0, "Total Spend": 2000.0, "Total Transactions": 157.0, "Total Customers": 108.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.037805, "LONGITUDE": -75.117799, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 30.0, "Total Spend": 1025.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 73.3, "Median Spend per Customer": 98.28 }, "geometry": { "type": "Point", "coordinates": [ -75.117799, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2726 S Front St", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2023, "Total Visits": 377.0, "Total Visitors": 336.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 9.0, "Total Spend": 2889.0, "Total Transactions": 106.0, "Total Customers": 86.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1912 Liacouras Walk", "LATITUDE": 39.981985, "LONGITUDE": -75.156128, "DATE_RANGE_START": 2023, "Total Visits": 918.0, "Total Visitors": 431.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 17.0, "Total Spend": 1046.0, "Total Transactions": 118.0, "Total Customers": 73.0, "Median Spend per Transaction": 5.28, "Median Spend per Customer": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -75.156128, 39.981985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "Name": "The Beer Peddlers", "Category": "Beer, Wine, and Liquor Stores", "Address": "1942 S Columbus Blvd", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 170.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 13949.0, "Total Transactions": 466.0, "Total Customers": 341.0, "Median Spend per Transaction": 24.29, "Median Spend per Customer": 31.59 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-bp9", "Name": "Hidden River Yarns", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4358B Main St", "LATITUDE": 40.025482, "LONGITUDE": -75.223991, "DATE_RANGE_START": 2023, "Total Visits": 120.0, "Total Visitors": 113.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 220.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 35.09, "Median Spend per Customer": 35.09 }, "geometry": { "type": "Point", "coordinates": [ -75.223991, 40.025482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3141 Frankford Ave Spc 41", "LATITUDE": 39.99242, "LONGITUDE": -75.110931, "DATE_RANGE_START": 2023, "Total Visits": 421.0, "Total Visitors": 292.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 14.0, "Total Spend": 19.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.110931, 39.99242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-jd9", "Name": "Watch Co", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952218, "LONGITUDE": -75.168358, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 38.0, "Total Spend": 1333.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 51.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168358, 39.952218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "500 W Erie Ave", "LATITUDE": 40.007067, "LONGITUDE": -75.137329, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010199001.0, "Median Dwell Time": 4.0, "Total Spend": 319.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 13.62, "Median Spend per Customer": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.137329, 40.007067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "12311 Academy Rd", "LATITUDE": 40.095209, "LONGITUDE": -74.975929, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 15.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 15921.0, "Total Transactions": 669.0, "Total Customers": 331.0, "Median Spend per Transaction": 16.27, "Median Spend per Customer": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -74.975929, 40.095209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "Name": "Love Vape", "Category": "Other Miscellaneous Store Retailers", "Address": "608 S 5th St", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2023, "Total Visits": 116.0, "Total Visitors": 113.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 2.0, "Total Spend": 5180.0, "Total Transactions": 143.0, "Total Customers": 105.0, "Median Spend per Transaction": 29.16, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7265 Castor Ave", "LATITUDE": 40.050709, "LONGITUDE": -75.06609, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 3.0, "Total Spend": 875.0, "Total Transactions": 25.0, "Total Customers": 19.0, "Median Spend per Transaction": 30.27, "Median Spend per Customer": 30.37 }, "geometry": { "type": "Point", "coordinates": [ -75.06609, 40.050709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-68v", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "2101 Cottman Ave # 41", "LATITUDE": 40.050558, "LONGITUDE": -75.061669, "DATE_RANGE_START": 2023, "Total Visits": 2102.0, "Total Visitors": 1435.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 14.0, "Total Spend": 80200.0, "Total Transactions": 2017.0, "Total Customers": 968.0, "Median Spend per Transaction": 21.62, "Median Spend per Customer": 39.16 }, "geometry": { "type": "Point", "coordinates": [ -75.061669, 40.050558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8d-m8v", "Name": "Quicky Mart Express", "Category": "Grocery Stores", "Address": "4346 Frankford Ave", "LATITUDE": 40.012787, "LONGITUDE": -75.088276, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 14.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 14.0, "Total Spend": 1060.0, "Total Transactions": 25.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 15.45 }, "geometry": { "type": "Point", "coordinates": [ -75.088276, 40.012787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9200 Frankford Ave", "LATITUDE": 40.055484, "LONGITUDE": -75.004811, "DATE_RANGE_START": 2023, "Total Visits": 1157.0, "Total Visitors": 820.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 22.0, "Total Spend": 8159.0, "Total Transactions": 258.0, "Total Customers": 182.0, "Median Spend per Transaction": 23.58, "Median Spend per Customer": 26.79 }, "geometry": { "type": "Point", "coordinates": [ -75.004811, 40.055484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8m-snq", "Name": "Station Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "1609 Pratt St", "LATITUDE": 40.022158, "LONGITUDE": -75.077575, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 232.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 20.0, "Total Spend": 545.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 11.62, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.077575, 40.022158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pvz", "Name": "Fiorella's Sausage", "Category": "Specialty Food Stores", "Address": "817 Christian St", "LATITUDE": 39.939102, "LONGITUDE": -75.156801, "DATE_RANGE_START": 2023, "Total Visits": 143.0, "Total Visitors": 143.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 1.0, "Total Spend": 1626.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 198.04, "Median Spend per Customer": 198.04 }, "geometry": { "type": "Point", "coordinates": [ -75.156801, 39.939102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4211 N Broad St", "LATITUDE": 40.017797, "LONGITUDE": -75.148772, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 5.0, "Total Spend": 4083.0, "Total Transactions": 213.0, "Total Customers": 159.0, "Median Spend per Transaction": 15.37, "Median Spend per Customer": 24.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148772, 40.017797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4200 G St", "LATITUDE": 40.012393, "LONGITUDE": -75.112599, "DATE_RANGE_START": 2023, "Total Visits": 36.0, "Total Visitors": 24.0, "POI_CBG": 421010289012.0, "Median Dwell Time": 5.0, "Total Spend": 11605.0, "Total Transactions": 554.0, "Total Customers": 313.0, "Median Spend per Transaction": 19.13, "Median Spend per Customer": 28.03 }, "geometry": { "type": "Point", "coordinates": [ -75.112599, 40.012393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-j9z", "Name": "Cousins Fresh Market", "Category": "Grocery Stores", "Address": "6411 Woodland Ave", "LATITUDE": 39.926349, "LONGITUDE": -75.233762, "DATE_RANGE_START": 2023, "Total Visits": 371.0, "Total Visitors": 261.0, "POI_CBG": 421010066003.0, "Median Dwell Time": 8.0, "Total Spend": 140.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 55.86, "Median Spend per Customer": 55.86 }, "geometry": { "type": "Point", "coordinates": [ -75.233762, 39.926349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "Name": "Brandy Melville", "Category": "Clothing Stores", "Address": "1527 Walnut St", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2023, "Total Visits": 701.0, "Total Visitors": 590.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 30572.0, "Total Transactions": 539.0, "Total Customers": 467.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3604 Chestnut St", "LATITUDE": 39.954573, "LONGITUDE": -75.19487, "DATE_RANGE_START": 2023, "Total Visits": 740.0, "Total Visitors": 370.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 150.0, "Total Spend": 29393.0, "Total Transactions": 2972.0, "Total Customers": 1394.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 12.17 }, "geometry": { "type": "Point", "coordinates": [ -75.19487, 39.954573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3300 Market St", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2023, "Total Visits": 1841.0, "Total Visitors": 1018.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 9.0, "Total Spend": 22791.0, "Total Transactions": 2891.0, "Total Customers": 1413.0, "Median Spend per Transaction": 6.6, "Median Spend per Customer": 10.22 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg4-hyv", "Name": "City Blue", "Category": "Shoe Stores", "Address": "40 W Chelten Ave", "LATITUDE": 40.034857, "LONGITUDE": -75.175485, "DATE_RANGE_START": 2023, "Total Visits": 1132.0, "Total Visitors": 570.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 51.0, "Total Spend": 3544.0, "Total Transactions": 59.0, "Total Customers": 50.0, "Median Spend per Transaction": 51.0, "Median Spend per Customer": 54.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175485, 40.034857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "Name": "El Punto", "Category": "Restaurants and Other Eating Places", "Address": "4460 Whitaker Ave", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2023, "Total Visits": 148.0, "Total Visitors": 124.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 7.0, "Total Spend": 2834.0, "Total Transactions": 103.0, "Total Customers": 79.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-whq", "Name": "Kick Axe Throwing", "Category": "Restaurants and Other Eating Places", "Address": "232 Market St", "LATITUDE": 39.94991, "LONGITUDE": -75.145059, "DATE_RANGE_START": 2023, "Total Visits": 2528.0, "Total Visitors": 1506.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 65.0, "Total Spend": 178.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 70.9, "Median Spend per Customer": 70.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145059, 39.94991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@63s-dvq-jsq", "Name": "Torres Grocery", "Category": "Grocery Stores", "Address": "5800 Delancey St", "LATITUDE": 39.955389, "LONGITUDE": -75.238236, "DATE_RANGE_START": 2023, "Total Visits": 86.0, "Total Visitors": 69.0, "POI_CBG": 421010084005.0, "Median Dwell Time": 145.0, "Total Spend": 144.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 8.93, "Median Spend per Customer": 11.62 }, "geometry": { "type": "Point", "coordinates": [ -75.238236, 39.955389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "Name": "Oregon Steaks", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 160.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 7.0, "Total Spend": 6905.0, "Total Transactions": 467.0, "Total Customers": 292.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-fpv", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "7010 Germantown Ave", "LATITUDE": 40.056636, "LONGITUDE": -75.189574, "DATE_RANGE_START": 2023, "Total Visits": 1810.0, "Total Visitors": 1057.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 13.0, "Total Spend": 101887.0, "Total Transactions": 2855.0, "Total Customers": 1229.0, "Median Spend per Transaction": 22.57, "Median Spend per Customer": 38.64 }, "geometry": { "type": "Point", "coordinates": [ -75.189574, 40.056636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9440 State Rd", "LATITUDE": 40.04935, "LONGITUDE": -74.989527, "DATE_RANGE_START": 2023, "Total Visits": 1319.0, "Total Visitors": 858.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 5.0, "Total Spend": 17604.0, "Total Transactions": 1685.0, "Total Customers": 646.0, "Median Spend per Transaction": 8.41, "Median Spend per Customer": 13.67 }, "geometry": { "type": "Point", "coordinates": [ -74.989527, 40.04935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-22r@628-pmb-6tv", "Name": "Brooklyn Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St", "LATITUDE": 39.952448, "LONGITUDE": -75.167954, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 38.0, "Total Spend": 235.0, "Total Transactions": 23.0, "Total Customers": 13.0, "Median Spend per Transaction": 8.34, "Median Spend per Customer": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167954, 39.952448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "314 S 5th St", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2023, "Total Visits": 873.0, "Total Visitors": 745.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 4.0, "Total Spend": 8462.0, "Total Transactions": 451.0, "Total Customers": 274.0, "Median Spend per Transaction": 12.22, "Median Spend per Customer": 19.48 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "Name": "Perkins Restaurant & Bakery", "Category": "Restaurants and Other Eating Places", "Address": "1681 Grant Ave", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2023, "Total Visits": 524.0, "Total Visitors": 403.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 25.0, "Total Spend": 292.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 34.06, "Median Spend per Customer": 50.02 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p77-c3q", "Name": "Wingstop", "Category": "Restaurants and Other Eating Places", "Address": "9910 Frankford Ave Ste 262", "LATITUDE": 40.064934, "LONGITUDE": -74.983754, "DATE_RANGE_START": 2023, "Total Visits": 298.0, "Total Visitors": 276.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 6.0, "Total Spend": 9275.0, "Total Transactions": 486.0, "Total Customers": 432.0, "Median Spend per Transaction": 16.48, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -74.983754, 40.064934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "Name": "Double Knot", "Category": "Health and Personal Care Stores", "Address": "120 S 13th St", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 178.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 9761.0, "Total Transactions": 59.0, "Total Customers": 51.0, "Median Spend per Transaction": 111.88, "Median Spend per Customer": 111.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945906, "LONGITUDE": -75.239015, "DATE_RANGE_START": 2023, "Total Visits": 728.0, "Total Visitors": 485.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 8.0, "Total Spend": 1760.0, "Total Transactions": 145.0, "Total Customers": 116.0, "Median Spend per Transaction": 7.92, "Median Spend per Customer": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.239015, 39.945906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "Name": "A Lin Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1942 S 9th St", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 182.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 1.0, "Total Spend": 491.0, "Total Transactions": 15.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.68, "Median Spend per Customer": 54.85 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "Name": "Cafe Square One", "Category": "Restaurants and Other Eating Places", "Address": "311 Market St", "LATITUDE": 39.950385, "LONGITUDE": -75.146118, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 222.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 2723.0, "Total Transactions": 200.0, "Total Customers": 135.0, "Median Spend per Transaction": 12.98, "Median Spend per Customer": 16.6 }, "geometry": { "type": "Point", "coordinates": [ -75.146118, 39.950385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "Name": "Paradise Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1363 E Lycoming St", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 64.0, "POI_CBG": 421010190004.0, "Median Dwell Time": 1.0, "Total Spend": 651.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 25.98, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5301 Chew Ave", "LATITUDE": 40.043491, "LONGITUDE": -75.159322, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 5.0, "Total Spend": 4043.0, "Total Transactions": 585.0, "Total Customers": 266.0, "Median Spend per Transaction": 5.68, "Median Spend per Customer": 10.51 }, "geometry": { "type": "Point", "coordinates": [ -75.159322, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p9k-r8v", "Name": "The Union Tap", "Category": "Restaurants and Other Eating Places", "Address": "2711 Comly Rd", "LATITUDE": 40.10443, "LONGITUDE": -75.000432, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 239.0, "POI_CBG": 421010361002.0, "Median Dwell Time": 32.0, "Total Spend": 535.0, "Total Transactions": 14.0, "Total Customers": 4.0, "Median Spend per Transaction": 40.96, "Median Spend per Customer": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.000432, 40.10443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8vz", "Name": "Cosi", "Category": "Restaurants and Other Eating Places", "Address": "1035 Chestnut St", "LATITUDE": 39.950388, "LONGITUDE": -75.158367, "DATE_RANGE_START": 2023, "Total Visits": 1286.0, "Total Visitors": 942.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 11.0, "Total Spend": 1329.0, "Total Transactions": 75.0, "Total Customers": 64.0, "Median Spend per Transaction": 14.95, "Median Spend per Customer": 18.03 }, "geometry": { "type": "Point", "coordinates": [ -75.158367, 39.950388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "Name": "Just To Serve You", "Category": "Restaurants and Other Eating Places", "Address": "5622 W Girard Ave", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2023, "Total Visits": 61.0, "Total Visitors": 61.0, "POI_CBG": 421010102001.0, "Median Dwell Time": 3.0, "Total Spend": 1015.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 33.48, "Median Spend per Customer": 37.26 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jgk", "Name": "Dig Inn", "Category": "Restaurants and Other Eating Places", "Address": "1616 Chestnut St", "LATITUDE": 39.951262, "LONGITUDE": -75.16796, "DATE_RANGE_START": 2023, "Total Visits": 396.0, "Total Visitors": 292.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 4.0, "Total Spend": 132.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16796, 39.951262 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-224@628-pm4-mc5", "Name": "El Pueblo", "Category": "Restaurants and Other Eating Places", "Address": "1142 S 9th St", "LATITUDE": 39.935137, "LONGITUDE": -75.15898, "DATE_RANGE_START": 2023, "Total Visits": 703.0, "Total Visitors": 272.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 269.0, "Total Spend": 230.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 10.02, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15898, 39.935137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-6tv", "Name": "Smoothie King", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 207", "LATITUDE": 39.952108, "LONGITUDE": -75.167523, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 38.0, "Total Spend": 12171.0, "Total Transactions": 1052.0, "Total Customers": 619.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167523, 39.952108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "Name": "Pickwick Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1700 Market St", "LATITUDE": 39.952771, "LONGITUDE": -75.169222, "DATE_RANGE_START": 2023, "Total Visits": 3999.0, "Total Visitors": 2387.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 97.0, "Total Spend": 2326.0, "Total Transactions": 66.0, "Total Customers": 35.0, "Median Spend per Transaction": 5.22, "Median Spend per Customer": 12.38 }, "geometry": { "type": "Point", "coordinates": [ -75.169222, 39.952771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 214", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 38.0, "Total Spend": 1023.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 40.92, "Median Spend per Customer": 40.92 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5pv", "Name": "Hard Rock Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1113 Market St", "LATITUDE": 39.952216, "LONGITUDE": -75.159642, "DATE_RANGE_START": 2023, "Total Visits": 939.0, "Total Visitors": 719.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 52.0, "Total Spend": 18447.0, "Total Transactions": 274.0, "Total Customers": 246.0, "Median Spend per Transaction": 51.58, "Median Spend per Customer": 54.83 }, "geometry": { "type": "Point", "coordinates": [ -75.159642, 39.952216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1300 N Broad St", "LATITUDE": 39.973478, "LONGITUDE": -75.159321, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010140003.0, "Median Dwell Time": 5.0, "Total Spend": 2275.0, "Total Transactions": 96.0, "Total Customers": 69.0, "Median Spend per Transaction": 17.71, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159321, 39.973478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phn-9fz", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "1503 E Wadsworth Ave Ste A", "LATITUDE": 40.079281, "LONGITUDE": -75.174174, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 11.0, "Total Spend": 291.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 18.85, "Median Spend per Customer": 18.85 }, "geometry": { "type": "Point", "coordinates": [ -75.174174, 40.079281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1100 Pattison Ave", "LATITUDE": 39.904392, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2023, "Total Visits": 2431.0, "Total Visitors": 2124.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 46.0, "Total Spend": 6619.0, "Total Transactions": 317.0, "Total Customers": 301.0, "Median Spend per Transaction": 17.71, "Median Spend per Customer": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.904392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-d7q", "Name": "Alex's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "400 Leverington Ave", "LATITUDE": 40.034052, "LONGITUDE": -75.220933, "DATE_RANGE_START": 2023, "Total Visits": 98.0, "Total Visitors": 98.0, "POI_CBG": 421010213001.0, "Median Dwell Time": null, "Total Spend": 207.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 24.65, "Median Spend per Customer": 36.58 }, "geometry": { "type": "Point", "coordinates": [ -75.220933, 40.034052 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pm4-b8v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1325 Point Breeze Ave", "LATITUDE": 39.934782, "LONGITUDE": -75.178915, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 157.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 6.0, "Total Spend": 940.0, "Total Transactions": 73.0, "Total Customers": 55.0, "Median Spend per Transaction": 7.82, "Median Spend per Customer": 9.33 }, "geometry": { "type": "Point", "coordinates": [ -75.178915, 39.934782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4061 Lancaster Ave", "LATITUDE": 39.964844, "LONGITUDE": -75.204389, "DATE_RANGE_START": 2023, "Total Visits": 589.0, "Total Visitors": 377.0, "POI_CBG": 421010107002.0, "Median Dwell Time": 16.0, "Total Spend": 948.0, "Total Transactions": 66.0, "Total Customers": 46.0, "Median Spend per Transaction": 9.02, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.204389, 39.964844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-zmk", "Name": "The Fresh Grocer", "Category": "Grocery Stores", "Address": "3021 Grays Ferry Ave", "LATITUDE": 39.940294, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2023, "Total Visits": 1184.0, "Total Visitors": 661.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 13.0, "Total Spend": 492902.0, "Total Transactions": 13182.0, "Total Customers": 5322.0, "Median Spend per Transaction": 20.92, "Median Spend per Customer": 37.31 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 39.940294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1700 N 28th St", "LATITUDE": 39.98171, "LONGITUDE": -75.18045, "DATE_RANGE_START": 2023, "Total Visits": 103.0, "Total Visitors": 64.0, "POI_CBG": 421010149004.0, "Median Dwell Time": 61.0, "Total Spend": 1409.0, "Total Transactions": 128.0, "Total Customers": 78.0, "Median Spend per Transaction": 10.06, "Median Spend per Customer": 13.21 }, "geometry": { "type": "Point", "coordinates": [ -75.18045, 39.98171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "Name": "Rittenhouse Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2001 Pine St", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 31.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 847.0, "Total Spend": 470.0, "Total Transactions": 25.0, "Total Customers": 21.0, "Median Spend per Transaction": 13.52, "Median Spend per Customer": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-s3q", "Name": "Pennmark Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1735 South St # 1FLOOR", "LATITUDE": 39.94458, "LONGITUDE": -75.171446, "DATE_RANGE_START": 2023, "Total Visits": 481.0, "Total Visitors": 341.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 8.0, "Total Spend": 522.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 5.88, "Median Spend per Customer": 5.88 }, "geometry": { "type": "Point", "coordinates": [ -75.171446, 39.94458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7nq", "Name": "Woody's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "202 S 13th St", "LATITUDE": 39.948953, "LONGITUDE": -75.162366, "DATE_RANGE_START": 2023, "Total Visits": 1278.0, "Total Visitors": 782.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 46.0, "Total Spend": 46934.0, "Total Transactions": 1607.0, "Total Customers": 904.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162366, 39.948953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "Name": "Finn Mccools Ale House", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "118 S 12th St", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2023, "Total Visits": 296.0, "Total Visitors": 272.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 5816.0, "Total Transactions": 193.0, "Total Customers": 125.0, "Median Spend per Transaction": 20.68, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "Name": "Local 44", "Category": "Restaurants and Other Eating Places", "Address": "4333 Spruce St", "LATITUDE": 39.952917, "LONGITUDE": -75.210276, "DATE_RANGE_START": 2023, "Total Visits": 623.0, "Total Visitors": 368.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 18.0, "Total Spend": 14549.0, "Total Transactions": 317.0, "Total Customers": 252.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 45.6 }, "geometry": { "type": "Point", "coordinates": [ -75.210276, 39.952917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-2tv", "Name": "Tacony Latin Flavor", "Category": "Restaurants and Other Eating Places", "Address": "6300 Torresdale Ave Fl 1", "LATITUDE": 40.020803, "LONGITUDE": -75.053805, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 184.0, "POI_CBG": 421010323002.0, "Median Dwell Time": 1.0, "Total Spend": 202.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 80.5, "Median Spend per Customer": 80.5 }, "geometry": { "type": "Point", "coordinates": [ -75.053805, 40.020803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-phq-gff", "Name": "Takka Grill & Shrimpie's", "Category": "Restaurants and Other Eating Places", "Address": "1910 W Cheltenham Ave", "LATITUDE": 40.067474, "LONGITUDE": -75.147141, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 54.0, "POI_CBG": 421010266003.0, "Median Dwell Time": 703.0, "Total Spend": 734.0, "Total Transactions": 30.0, "Total Customers": 19.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147141, 40.067474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-gx5", "Name": "Mccrossens Tavern", "Category": "Restaurants and Other Eating Places", "Address": "529 N 20th St", "LATITUDE": 39.963099, "LONGITUDE": -75.170927, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 119.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 99.0, "Total Spend": 15116.0, "Total Transactions": 254.0, "Total Customers": 185.0, "Median Spend per Transaction": 45.05, "Median Spend per Customer": 56.32 }, "geometry": { "type": "Point", "coordinates": [ -75.170927, 39.963099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-ks5", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "57 N 63rd St # 3", "LATITUDE": 39.952045, "LONGITUDE": -75.14516, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 3518.0, "Total Transactions": 373.0, "Total Customers": 240.0, "Median Spend per Transaction": 7.65, "Median Spend per Customer": 10.82 }, "geometry": { "type": "Point", "coordinates": [ -75.14516, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "Name": "Nam Phuong", "Category": "Restaurants and Other Eating Places", "Address": "1100 Washington Ave", "LATITUDE": 39.936528, "LONGITUDE": -75.161971, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 11.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 3.0, "Total Spend": 5878.0, "Total Transactions": 101.0, "Total Customers": 88.0, "Median Spend per Transaction": 48.93, "Median Spend per Customer": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161971, 39.936528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "Name": "Buddakan", "Category": "Restaurants and Other Eating Places", "Address": "325 Chestnut St", "LATITUDE": 39.949021, "LONGITUDE": -75.147193, "DATE_RANGE_START": 2023, "Total Visits": 2629.0, "Total Visitors": 2012.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 27.0, "Total Spend": 30252.0, "Total Transactions": 184.0, "Total Customers": 174.0, "Median Spend per Transaction": 142.39, "Median Spend per Customer": 142.39 }, "geometry": { "type": "Point", "coordinates": [ -75.147193, 39.949021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2998A Welsh Rd", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2023, "Total Visits": 585.0, "Total Visitors": 555.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 5.0, "Total Spend": 3086.0, "Total Transactions": 415.0, "Total Customers": 177.0, "Median Spend per Transaction": 6.78, "Median Spend per Customer": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-228@628-p8t-w49", "Name": "Street Corner", "Category": "Gasoline Stations", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087342, "LONGITUDE": -74.961626, "DATE_RANGE_START": 2023, "Total Visits": 386.0, "Total Visitors": 322.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 57.0, "Total Spend": 462.0, "Total Transactions": 61.0, "Total Customers": 51.0, "Median Spend per Transaction": 4.99, "Median Spend per Customer": 5.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961626, 40.087342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Knights Rd", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2023, "Total Visits": 1474.0, "Total Visitors": 864.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 3.0, "Total Spend": 3282.0, "Total Transactions": 207.0, "Total Customers": 104.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 20.21 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "11725 Bustleton Ave", "LATITUDE": 40.11938, "LONGITUDE": -75.015073, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 169.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 15.0, "Total Spend": 47091.0, "Total Transactions": 398.0, "Total Customers": 193.0, "Median Spend per Transaction": 49.69, "Median Spend per Customer": 64.12 }, "geometry": { "type": "Point", "coordinates": [ -75.015073, 40.11938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "4424 N Broad St", "LATITUDE": 40.021239, "LONGITUDE": -75.149898, "DATE_RANGE_START": 2023, "Total Visits": 1130.0, "Total Visitors": 802.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 12.0, "Total Spend": 1239.0, "Total Transactions": 58.0, "Total Customers": 36.0, "Median Spend per Transaction": 13.78, "Median Spend per Customer": 24.46 }, "geometry": { "type": "Point", "coordinates": [ -75.149898, 40.021239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p7v-vxq", "Name": "Algon Auto Clinic", "Category": "Gasoline Stations", "Address": "7300 Algon Ave", "LATITUDE": 40.055758, "LONGITUDE": -75.073258, "DATE_RANGE_START": 2023, "Total Visits": 843.0, "Total Visitors": 792.0, "POI_CBG": 421010338002.0, "Median Dwell Time": 17.0, "Total Spend": 216.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 70.2, "Median Spend per Customer": 70.2 }, "geometry": { "type": "Point", "coordinates": [ -75.073258, 40.055758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "329 Spring Garden St", "LATITUDE": 39.961449, "LONGITUDE": -75.144246, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 25.0, "Total Spend": 3246.0, "Total Transactions": 430.0, "Total Customers": 209.0, "Median Spend per Transaction": 6.66, "Median Spend per Customer": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144246, 39.961449 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pj4-t7q", "Name": "Nexcare Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2941 N 5th St", "LATITUDE": 39.996106, "LONGITUDE": -75.13916, "DATE_RANGE_START": 2023, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010176012.0, "Median Dwell Time": 1.0, "Total Spend": 1172.0, "Total Transactions": 19.0, "Total Customers": 11.0, "Median Spend per Transaction": 20.53, "Median Spend per Customer": 37.07 }, "geometry": { "type": "Point", "coordinates": [ -75.13916, 39.996106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1939 Callowhill St", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 175.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 10.0, "Total Spend": 8940.0, "Total Transactions": 158.0, "Total Customers": 143.0, "Median Spend per Transaction": 47.03, "Median Spend per Customer": 51.85 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8d-yn5", "Name": "Joe's Market", "Category": "Grocery Stores", "Address": "2056 Bridge St", "LATITUDE": 40.014187, "LONGITUDE": -75.071015, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 30.0, "POI_CBG": 421010299003.0, "Median Dwell Time": 811.0, "Total Spend": 596.0, "Total Transactions": 55.0, "Total Customers": 30.0, "Median Spend per Transaction": 5.99, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.071015, 40.014187 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-223@628-pmb-kzz", "Name": "Perfumology", "Category": "Health and Personal Care Stores", "Address": "25 N 3rd St", "LATITUDE": 39.950987, "LONGITUDE": -75.145262, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 423.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 106.0, "Total Spend": 1541.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 110.16, "Median Spend per Customer": 110.16 }, "geometry": { "type": "Point", "coordinates": [ -75.145262, 39.950987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-zmk", "Name": "The Good King Tavern", "Category": "Restaurants and Other Eating Places", "Address": "614 S 7th St", "LATITUDE": 39.941737, "LONGITUDE": -75.15419, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 174.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 1.0, "Total Spend": 9037.0, "Total Transactions": 127.0, "Total Customers": 106.0, "Median Spend per Transaction": 63.43, "Median Spend per Customer": 74.59 }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 39.941737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4163 Whitaker Ave", "LATITUDE": 40.012417, "LONGITUDE": -75.118991, "DATE_RANGE_START": 2023, "Total Visits": 966.0, "Total Visitors": 595.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 5.0, "Total Spend": 15463.0, "Total Transactions": 982.0, "Total Customers": 596.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 19.65 }, "geometry": { "type": "Point", "coordinates": [ -75.118991, 40.012417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmf-6x5", "Name": "Gia Pronto", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.94766, "LONGITUDE": -75.192915, "DATE_RANGE_START": 2023, "Total Visits": 13803.0, "Total Visitors": 7404.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 99.0, "Total Spend": 6316.0, "Total Transactions": 671.0, "Total Customers": 443.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.192915, 39.94766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dvy-pn5", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "4001 Walnut St", "LATITUDE": 39.95442, "LONGITUDE": -75.202828, "DATE_RANGE_START": 2023, "Total Visits": 1450.0, "Total Visitors": 797.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 15.0, "Total Spend": 149262.0, "Total Transactions": 6252.0, "Total Customers": 2379.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 32.24 }, "geometry": { "type": "Point", "coordinates": [ -75.202828, 39.95442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-kj9", "Name": "Sassafras Market", "Category": "Grocery Stores", "Address": "163 N 3rd St", "LATITUDE": 39.953764, "LONGITUDE": -75.14458, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 172.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 7.0, "Total Spend": 3330.0, "Total Transactions": 188.0, "Total Customers": 118.0, "Median Spend per Transaction": 13.33, "Median Spend per Customer": 19.55 }, "geometry": { "type": "Point", "coordinates": [ -75.14458, 39.953764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "912 Walnut St # 916", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2023, "Total Visits": 958.0, "Total Visitors": 698.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 6.0, "Total Spend": 43277.0, "Total Transactions": 4546.0, "Total Customers": 2019.0, "Median Spend per Transaction": 7.97, "Median Spend per Customer": 12.26 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-ph6-cdv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6375 Lebanon Ave", "LATITUDE": 39.979947, "LONGITUDE": -75.248732, "DATE_RANGE_START": 2023, "Total Visits": 499.0, "Total Visitors": 282.0, "POI_CBG": 421010114001.0, "Median Dwell Time": 8.0, "Total Spend": 1154.0, "Total Transactions": 23.0, "Total Customers": 13.0, "Median Spend per Transaction": 7.29, "Median Spend per Customer": 8.02 }, "geometry": { "type": "Point", "coordinates": [ -75.248732, 39.979947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "Name": "Athleta", "Category": "Clothing Stores", "Address": "1722 Walnut St", "LATITUDE": 39.949792, "LONGITUDE": -75.170328, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 33.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 13.0, "Total Spend": 6090.0, "Total Transactions": 73.0, "Total Customers": 68.0, "Median Spend per Transaction": 58.5, "Median Spend per Customer": 58.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170328, 39.949792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-v9f", "Name": "Washington Square Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "241 S 6th St", "LATITUDE": 39.945913, "LONGITUDE": -75.151316, "DATE_RANGE_START": 2023, "Total Visits": 1121.0, "Total Visitors": 737.0, "POI_CBG": 421010010011.0, "Median Dwell Time": 35.0, "Total Spend": 119.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.49, "Median Spend per Customer": 20.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151316, 39.945913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "Name": "Convenient Food Market", "Category": "Grocery Stores", "Address": "7101 Frankford Ave", "LATITUDE": 40.034583, "LONGITUDE": -75.044296, "DATE_RANGE_START": 2023, "Total Visits": 400.0, "Total Visitors": 257.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 10.0, "Total Spend": 4543.0, "Total Transactions": 348.0, "Total Customers": 175.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.044296, 40.034583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2815 Ridge Ave Ste A", "LATITUDE": 39.986364, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010151021.0, "Median Dwell Time": 7.0, "Total Spend": 331.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 8.91, "Median Spend per Customer": 9.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.986364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1826 Chestnut St # 30", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2023, "Total Visits": 2022.0, "Total Visitors": 1293.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 36.0, "Total Spend": 16274.0, "Total Transactions": 871.0, "Total Customers": 625.0, "Median Spend per Transaction": 10.35, "Median Spend per Customer": 14.37 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 12008.0, "Total Transactions": 182.0, "Total Customers": 165.0, "Median Spend per Transaction": 52.37, "Median Spend per Customer": 54.95 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "Name": "Bistrot La Minette", "Category": "Restaurants and Other Eating Places", "Address": "623 S 6th St", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 115.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 86.0, "Total Spend": 2694.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 88.76, "Median Spend per Customer": 97.57 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2701 N 2nd St", "LATITUDE": 39.991624, "LONGITUDE": -75.134388, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 8.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 12.0, "Total Spend": 10323.0, "Total Transactions": 205.0, "Total Customers": 128.0, "Median Spend per Transaction": 37.73, "Median Spend per Customer": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.134388, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "Name": "Charley's", "Category": "Restaurants and Other Eating Places", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2023, "Total Visits": 981.0, "Total Visitors": 834.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 38.0, "Total Spend": 1487.0, "Total Transactions": 104.0, "Total Customers": 90.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 14.56 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-22f@628-pgj-cqz", "Name": "Touch Down Wings", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St", "LATITUDE": 39.978146, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 21.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 9.0, "Total Spend": 109.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 13.81, "Median Spend per Customer": 13.81 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.978146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-yqf", "Name": "Chubby Cattle", "Category": "Restaurants and Other Eating Places", "Address": "146 N 10th St", "LATITUDE": 39.954989, "LONGITUDE": -75.156236, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 2793.0, "Total Transactions": 24.0, "Total Customers": 23.0, "Median Spend per Transaction": 100.87, "Median Spend per Customer": 104.87 }, "geometry": { "type": "Point", "coordinates": [ -75.156236, 39.954989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-rzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "301 S Columbus Blvd", "LATITUDE": 39.94428, "LONGITUDE": -75.141509, "DATE_RANGE_START": 2023, "Total Visits": 385.0, "Total Visitors": 378.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 4.0, "Total Spend": 1422.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 32.23, "Median Spend per Customer": 36.28 }, "geometry": { "type": "Point", "coordinates": [ -75.141509, 39.94428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6323 Castor Ave", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2023, "Total Visits": 430.0, "Total Visitors": 289.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 5.0, "Total Spend": 1730.0, "Total Transactions": 224.0, "Total Customers": 122.0, "Median Spend per Transaction": 6.44, "Median Spend per Customer": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgy-k9f", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "701 E Cathedral Rd", "LATITUDE": 40.063848, "LONGITUDE": -75.236526, "DATE_RANGE_START": 2023, "Total Visits": 649.0, "Total Visitors": 524.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 19.0, "Total Spend": 50425.0, "Total Transactions": 1482.0, "Total Customers": 822.0, "Median Spend per Transaction": 21.49, "Median Spend per Customer": 28.11 }, "geometry": { "type": "Point", "coordinates": [ -75.236526, 40.063848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pp2-47q", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3118 Richmond St", "LATITUDE": 39.982157, "LONGITUDE": -75.10349, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 178.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 73.0, "Total Spend": 282.0, "Total Transactions": 26.0, "Total Customers": 13.0, "Median Spend per Transaction": 6.4, "Median Spend per Customer": 20.12 }, "geometry": { "type": "Point", "coordinates": [ -75.10349, 39.982157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "Name": "Vernick Food & Drink", "Category": "Restaurants and Other Eating Places", "Address": "2031 Walnut St", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2023, "Total Visits": 1702.0, "Total Visitors": 1169.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 36.0, "Total Spend": 6595.0, "Total Transactions": 45.0, "Total Customers": 36.0, "Median Spend per Transaction": 90.4, "Median Spend per Customer": 120.83 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "Name": "Little Fish", "Category": "Restaurants and Other Eating Places", "Address": "746 S 6th St", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010018001.0, "Median Dwell Time": 1.0, "Total Spend": 346.0, "Total Transactions": 30.0, "Total Customers": 13.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 20.38 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-yjv", "Name": "Amazing Crab House", "Category": "Restaurants and Other Eating Places", "Address": "604 S 2nd St", "LATITUDE": 39.940979, "LONGITUDE": -75.14584, "DATE_RANGE_START": 2023, "Total Visits": 489.0, "Total Visitors": 418.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 37.0, "Total Spend": 3371.0, "Total Transactions": 41.0, "Total Customers": 38.0, "Median Spend per Transaction": 65.85, "Median Spend per Customer": 88.6 }, "geometry": { "type": "Point", "coordinates": [ -75.14584, 39.940979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-ygk", "Name": "Shaxian Delicacies", "Category": "Restaurants and Other Eating Places", "Address": "106 N 10th St", "LATITUDE": 39.953952, "LONGITUDE": -75.156335, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 198.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 266.0, "Total Transactions": 18.0, "Total Customers": 10.0, "Median Spend per Transaction": 9.58, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156335, 39.953952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "101 S 52nd St", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2023, "Total Visits": 1445.0, "Total Visitors": 774.0, "POI_CBG": 421010085001.0, "Median Dwell Time": 33.0, "Total Spend": 9023.0, "Total Transactions": 636.0, "Total Customers": 453.0, "Median Spend per Transaction": 11.4, "Median Spend per Customer": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-phq-rp9", "Name": "Deli Delight", "Category": "Restaurants and Other Eating Places", "Address": "1903 E Washington Ln", "LATITUDE": 40.066189, "LONGITUDE": -75.159352, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 205.0, "POI_CBG": 421010263023.0, "Median Dwell Time": 2.0, "Total Spend": 205.0, "Total Transactions": 24.0, "Total Customers": 16.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159352, 40.066189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-223@628-pm4-mc5", "Name": "Casa Mexico", "Category": "Restaurants and Other Eating Places", "Address": "1134 S 9th St", "LATITUDE": 39.935496, "LONGITUDE": -75.15875, "DATE_RANGE_START": 2023, "Total Visits": 1067.0, "Total Visitors": 785.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 11.0, "Total Spend": 431.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 54.33, "Median Spend per Customer": 54.33 }, "geometry": { "type": "Point", "coordinates": [ -75.15875, 39.935496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-vcq", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "1851 S Columbus Blvd", "LATITUDE": 39.923936, "LONGITUDE": -75.13927, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 1244.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 70.99, "Median Spend per Customer": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.13927, 39.923936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-d9z", "Name": "Garden Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2025 Benjamin Franklin Pkwy", "LATITUDE": 39.960311, "LONGITUDE": -75.171912, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010125003.0, "Median Dwell Time": 78.0, "Total Spend": 116.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.14, "Median Spend per Customer": 20.14 }, "geometry": { "type": "Point", "coordinates": [ -75.171912, 39.960311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "Name": "La Rosa Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2106 S Broad St", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 110.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 200.0, "Total Spend": 28.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 11.08 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-6x5", "Name": "The North Face", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1515 Walnut St", "LATITUDE": 39.949897, "LONGITUDE": -75.166716, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 195.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 77.86, "Median Spend per Customer": 77.86 }, "geometry": { "type": "Point", "coordinates": [ -75.166716, 39.949897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7w-c89", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7970 Dungan Rd # 80", "LATITUDE": 40.068395, "LONGITUDE": -75.068368, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 6.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 4.0, "Total Spend": 5702.0, "Total Transactions": 720.0, "Total Customers": 259.0, "Median Spend per Transaction": 6.44, "Median Spend per Customer": 13.62 }, "geometry": { "type": "Point", "coordinates": [ -75.068368, 40.068395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4301 Market St", "LATITUDE": 39.958186, "LONGITUDE": -75.208259, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 6.0, "Total Spend": 5617.0, "Total Transactions": 706.0, "Total Customers": 372.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.208259, 39.958186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "Name": "Ruby Buffet", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2023, "Total Visits": 365.0, "Total Visitors": 324.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 41.0, "Total Spend": 14130.0, "Total Transactions": 281.0, "Total Customers": 219.0, "Median Spend per Transaction": 39.93, "Median Spend per Customer": 48.16 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwb-rkz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6600 Essington Ave", "LATITUDE": 39.914665, "LONGITUDE": -75.22061, "DATE_RANGE_START": 2023, "Total Visits": 1175.0, "Total Visitors": 926.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 5.0, "Total Spend": 588.0, "Total Transactions": 73.0, "Total Customers": 54.0, "Median Spend per Transaction": 7.64, "Median Spend per Customer": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -75.22061, 39.914665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2340 W Oregon Ave", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2023, "Total Visits": 416.0, "Total Visitors": 343.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 22.0, "Total Spend": 483.0, "Total Transactions": 38.0, "Total Customers": 29.0, "Median Spend per Transaction": 12.24, "Median Spend per Customer": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "Name": "King of Wings", "Category": "Restaurants and Other Eating Places", "Address": "2233 S Woodstock St", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010037021.0, "Median Dwell Time": 3.0, "Total Spend": 172.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 17.98, "Median Spend per Customer": 17.98 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "Name": "Unit Su Vege", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 106", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2023, "Total Visits": 377.0, "Total Visitors": 209.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 9.0, "Total Spend": 2747.0, "Total Transactions": 63.0, "Total Customers": 51.0, "Median Spend per Transaction": 38.84, "Median Spend per Customer": 47.85 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "Name": "Dick's Sporting Goods", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "20 Franklin Mills Blvd", "LATITUDE": 40.085722, "LONGITUDE": -74.967122, "DATE_RANGE_START": 2023, "Total Visits": 636.0, "Total Visitors": 525.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 26.0, "Total Spend": 744.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 98.66, "Median Spend per Customer": 98.66 }, "geometry": { "type": "Point", "coordinates": [ -74.967122, 40.085722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp4-r49", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "2401-2499 Aramingo Ave Spc 2499D", "LATITUDE": 39.975635, "LONGITUDE": -75.119843, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 6.0, "Total Spend": 1107.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 49.99, "Median Spend per Customer": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -75.119843, 39.975635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phz-z4v", "Name": "BooksRun com", "Category": "Book Stores and News Dealers", "Address": "620 E Erie Ave", "LATITUDE": 40.005848, "LONGITUDE": -75.117861, "DATE_RANGE_START": 2023, "Total Visits": 254.0, "Total Visitors": 144.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 10.0, "Total Spend": 3899.0, "Total Transactions": 86.0, "Total Customers": 75.0, "Median Spend per Transaction": 31.26, "Median Spend per Customer": 41.09 }, "geometry": { "type": "Point", "coordinates": [ -75.117861, 40.005848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-j5f", "Name": "Kitchen Kapers", "Category": "Electronics and Appliance Stores", "Address": "213 S 17th St", "LATITUDE": 39.949485, "LONGITUDE": -75.169064, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 123.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 2480.0, "Total Transactions": 55.0, "Total Customers": 43.0, "Median Spend per Transaction": 32.36, "Median Spend per Customer": 35.08 }, "geometry": { "type": "Point", "coordinates": [ -75.169064, 39.949485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pg4-pvz", "Name": "Torres Grocery", "Category": "Grocery Stores", "Address": "1048 E Chelten Ave", "LATITUDE": 40.049468, "LONGITUDE": -75.160392, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 100.0, "POI_CBG": 421010249003.0, "Median Dwell Time": 2.0, "Total Spend": 75.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 11.39, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.160392, 40.049468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "Name": "Race Supermarket", "Category": "Grocery Stores", "Address": "156 N 52nd St", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 43.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 29.0, "Total Spend": 730.0, "Total Transactions": 56.0, "Total Customers": 38.0, "Median Spend per Transaction": 11.42, "Median Spend per Customer": 12.22 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgb-47q", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "1500 Spring Garden St", "LATITUDE": 39.962385, "LONGITUDE": -75.163442, "DATE_RANGE_START": 2023, "Total Visits": 1379.0, "Total Visitors": 561.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 125.0, "Total Spend": 7741.0, "Total Transactions": 581.0, "Total Customers": 437.0, "Median Spend per Transaction": 11.43, "Median Spend per Customer": 13.92 }, "geometry": { "type": "Point", "coordinates": [ -75.163442, 39.962385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-y7q", "Name": "The Post", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "129 S 30th St", "LATITUDE": 39.952733, "LONGITUDE": -75.18366, "DATE_RANGE_START": 2023, "Total Visits": 532.0, "Total Visitors": 357.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 36.0, "Total Spend": 368.0, "Total Transactions": 15.0, "Total Customers": 14.0, "Median Spend per Transaction": 22.28, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.18366, 39.952733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wc5", "Name": "Abunai Poke", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949658, "LONGITUDE": -75.147567, "DATE_RANGE_START": 2023, "Total Visits": 537.0, "Total Visitors": 492.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 2.0, "Total Spend": 610.0, "Total Transactions": 40.0, "Total Customers": 38.0, "Median Spend per Transaction": 14.76, "Median Spend per Customer": 14.94 }, "geometry": { "type": "Point", "coordinates": [ -75.147567, 39.949658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pmf-pvz", "Name": "Bistro La Baia", "Category": "Restaurants and Other Eating Places", "Address": "1700 Lombard St", "LATITUDE": 39.945165, "LONGITUDE": -75.170267, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010012022.0, "Median Dwell Time": null, "Total Spend": 140.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 55.71, "Median Spend per Customer": 55.71 }, "geometry": { "type": "Point", "coordinates": [ -75.170267, 39.945165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "4201 N Broad St", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2023, "Total Visits": 914.0, "Total Visitors": 669.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 12.0, "Total Spend": 798.0, "Total Transactions": 45.0, "Total Customers": 39.0, "Median Spend per Transaction": 11.04, "Median Spend per Customer": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-232@628-p8t-w49", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087656, "LONGITUDE": -74.961053, "DATE_RANGE_START": 2023, "Total Visits": 981.0, "Total Visitors": 834.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 38.0, "Total Spend": 3750.0, "Total Transactions": 50.0, "Total Customers": 49.0, "Median Spend per Transaction": 71.87, "Median Spend per Customer": 78.74 }, "geometry": { "type": "Point", "coordinates": [ -74.961053, 40.087656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912525, "LONGITUDE": -75.154628, "DATE_RANGE_START": 2023, "Total Visits": 2042.0, "Total Visitors": 1844.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 62.0, "Total Spend": 1793.0, "Total Transactions": 50.0, "Total Customers": 39.0, "Median Spend per Transaction": 22.95, "Median Spend per Customer": 33.91 }, "geometry": { "type": "Point", "coordinates": [ -75.154628, 39.912525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pg8-kmk", "Name": "Young's Sneaker City", "Category": "Shoe Stores", "Address": "2735 W Girard Ave", "LATITUDE": 39.974536, "LONGITUDE": -75.181586, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 123.0, "POI_CBG": 421010137002.0, "Median Dwell Time": 2.0, "Total Spend": 1271.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 145.0, "Median Spend per Customer": 145.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181586, 39.974536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-zcq", "Name": "Savas", "Category": "Restaurants and Other Eating Places", "Address": "3505 Lancaster Ave", "LATITUDE": 39.958273, "LONGITUDE": -75.192694, "DATE_RANGE_START": 2023, "Total Visits": 397.0, "Total Visitors": 363.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 6.0, "Total Spend": 87.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.192694, 39.958273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@63s-dvz-2p9", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "4640 Chestnut St", "LATITUDE": 39.957038, "LONGITUDE": -75.215038, "DATE_RANGE_START": 2023, "Total Visits": 485.0, "Total Visitors": 383.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 8.0, "Total Spend": 425.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 17.67, "Median Spend per Customer": 23.01 }, "geometry": { "type": "Point", "coordinates": [ -75.215038, 39.957038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "Name": "A& A Grocery Store", "Category": "Grocery Stores", "Address": "5030 Haverford Ave", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2023, "Total Visits": 168.0, "Total Visitors": 124.0, "POI_CBG": 421010093001.0, "Median Dwell Time": 7.0, "Total Spend": 304.0, "Total Transactions": 53.0, "Total Customers": 31.0, "Median Spend per Transaction": 5.25, "Median Spend per Customer": 7.89 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgg-n3q", "Name": "Wine & Spirits Stores", "Category": "Beer, Wine, and Liquor Stores", "Address": "2913 N 22nd St", "LATITUDE": 39.998975, "LONGITUDE": -75.166581, "DATE_RANGE_START": 2023, "Total Visits": 413.0, "Total Visitors": 316.0, "POI_CBG": 421010173001.0, "Median Dwell Time": 5.0, "Total Spend": 45650.0, "Total Transactions": 753.0, "Total Customers": 381.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.166581, 39.998975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p8m-syv", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1607 Bridge St", "LATITUDE": 40.02299, "LONGITUDE": -75.075925, "DATE_RANGE_START": 2023, "Total Visits": 1175.0, "Total Visitors": 944.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 10.0, "Total Spend": 1756.0, "Total Transactions": 54.0, "Total Customers": 28.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 40.82 }, "geometry": { "type": "Point", "coordinates": [ -75.075925, 40.02299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "Name": "US Gas", "Category": "Gasoline Stations", "Address": "2652 Frankford Ave", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2023, "Total Visits": 301.0, "Total Visitors": 262.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 3.0, "Total Spend": 2694.0, "Total Transactions": 111.0, "Total Customers": 59.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pm5-2ff", "Name": "Pho Today", "Category": "Restaurants and Other Eating Places", "Address": "1110 Washington Ave", "LATITUDE": 39.936889, "LONGITUDE": -75.16188, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 6.0, "Total Spend": 1702.0, "Total Transactions": 39.0, "Total Customers": 26.0, "Median Spend per Transaction": 40.93, "Median Spend per Customer": 58.49 }, "geometry": { "type": "Point", "coordinates": [ -75.16188, 39.936889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pm9-wkz", "Name": "Viva Pizzas", "Category": "Restaurants and Other Eating Places", "Address": "215 Chestnut St", "LATITUDE": 39.948646, "LONGITUDE": -75.144734, "DATE_RANGE_START": 2023, "Total Visits": 2528.0, "Total Visitors": 1506.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 65.0, "Total Spend": 398.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 16.8, "Median Spend per Customer": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144734, 39.948646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-6x5", "Name": "Ocean Prime", "Category": "Restaurants and Other Eating Places", "Address": "124 S 15th St", "LATITUDE": 39.950182, "LONGITUDE": -75.165953, "DATE_RANGE_START": 2023, "Total Visits": 456.0, "Total Visitors": 396.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 1562.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 370.79, "Median Spend per Customer": 370.79 }, "geometry": { "type": "Point", "coordinates": [ -75.165953, 39.950182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm9-tn5", "Name": "Cafe Walnut", "Category": "Restaurants and Other Eating Places", "Address": "703 Walnut St", "LATITUDE": 39.948274, "LONGITUDE": -75.152798, "DATE_RANGE_START": 2023, "Total Visits": 1068.0, "Total Visitors": 532.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 159.0, "Total Spend": 2641.0, "Total Transactions": 199.0, "Total Customers": 110.0, "Median Spend per Transaction": 11.35, "Median Spend per Customer": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.152798, 39.948274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "Name": "Fuel", "Category": "Restaurants and Other Eating Places", "Address": "1917 E Passyunk Ave", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2023, "Total Visits": 150.0, "Total Visitors": 150.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 11.0, "Total Spend": 1206.0, "Total Transactions": 49.0, "Total Customers": 34.0, "Median Spend per Transaction": 14.31, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "7210 Cresheim Rd", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2023, "Total Visits": 254.0, "Total Visitors": 217.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 4.0, "Total Spend": 19.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.78, "Median Spend per Customer": 7.78 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-224@628-pnw-nqz", "Name": "Bagels & Co", "Category": "Restaurants and Other Eating Places", "Address": "1317 Frankford Ave", "LATITUDE": 39.970905, "LONGITUDE": -75.134233, "DATE_RANGE_START": 2023, "Total Visits": 625.0, "Total Visitors": 344.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 89.0, "Total Spend": 4023.0, "Total Transactions": 333.0, "Total Customers": 213.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 14.71 }, "geometry": { "type": "Point", "coordinates": [ -75.134233, 39.970905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pg4-j9z", "Name": "DTR/VILLA", "Category": "Clothing Stores", "Address": "5627 Germantown Ave # 33", "LATITUDE": 40.035849, "LONGITUDE": -75.174389, "DATE_RANGE_START": 2023, "Total Visits": 1306.0, "Total Visitors": 990.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 17.0, "Total Spend": 2596.0, "Total Transactions": 34.0, "Total Customers": 26.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174389, 40.035849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Susquehanna Ave", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2023, "Total Visits": 70.0, "Total Visitors": 58.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 3.0, "Total Spend": 25693.0, "Total Transactions": 2619.0, "Total Customers": 986.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 15.58 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfx-ks5", "Name": "Artesano Cafe", "Category": "Restaurants and Other Eating Places", "Address": "109 Green Ln", "LATITUDE": 40.027087, "LONGITUDE": -75.226817, "DATE_RANGE_START": 2023, "Total Visits": 615.0, "Total Visitors": 405.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 67.0, "Total Spend": 32.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 8.21, "Median Spend per Customer": 8.21 }, "geometry": { "type": "Point", "coordinates": [ -75.226817, 40.027087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-x89", "Name": "Sherwin-Williams", "Category": "Building Material and Supplies Dealers", "Address": "23 E Chelten Ave", "LATITUDE": 40.03653, "LONGITUDE": -75.174358, "DATE_RANGE_START": 2023, "Total Visits": 69.0, "Total Visitors": 36.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 119.0, "Total Spend": 155.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.174358, 40.03653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1190 E Luzerne St", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2023, "Total Visits": 571.0, "Total Visitors": 299.0, "POI_CBG": 421010191003.0, "Median Dwell Time": 6.0, "Total Spend": 706.0, "Total Transactions": 21.0, "Total Customers": 13.0, "Median Spend per Transaction": 18.84, "Median Spend per Customer": 21.61 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7913 Oxford Ave # 29", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2023, "Total Visits": 1194.0, "Total Visitors": 877.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 5.0, "Total Spend": 73372.0, "Total Transactions": 4191.0, "Total Customers": 1749.0, "Median Spend per Transaction": 11.9, "Median Spend per Customer": 24.77 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "Name": "Somerton Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "10853 Bustleton Ave", "LATITUDE": 40.110353, "LONGITUDE": -75.024095, "DATE_RANGE_START": 2023, "Total Visits": 69.0, "Total Visitors": 30.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 214.0, "Total Spend": 1800.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 137.5, "Median Spend per Customer": 137.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024095, 40.110353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvy-pgk", "Name": "New York Gyro Truck", "Category": "Restaurants and Other Eating Places", "Address": "41st @ Walnut", "LATITUDE": 39.954691, "LONGITUDE": -75.205207, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 127.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 4.0, "Total Spend": 43.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.205207, 39.954691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgj-cbk", "Name": "Pazzo Pazzo", "Category": "Restaurants and Other Eating Places", "Address": "1614 Cecil B Moore Ave", "LATITUDE": 39.979011, "LONGITUDE": -75.161757, "DATE_RANGE_START": 2023, "Total Visits": 1537.0, "Total Visitors": 1274.0, "POI_CBG": 421010147001.0, "Median Dwell Time": 4.0, "Total Spend": 2104.0, "Total Transactions": 152.0, "Total Customers": 104.0, "Median Spend per Transaction": 9.04, "Median Spend per Customer": 12.62 }, "geometry": { "type": "Point", "coordinates": [ -75.161757, 39.979011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "Name": "Balducci's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.894613, "LONGITUDE": -75.229277, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 24.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 3043.0, "Total Transactions": 267.0, "Total Customers": 240.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.229277, 39.894613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-skf", "Name": "Good Dog Bar", "Category": "Restaurants and Other Eating Places", "Address": "224 S 15th St", "LATITUDE": 39.948847, "LONGITUDE": -75.166287, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 230.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 101.0, "Total Spend": 590.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 37.6, "Median Spend per Customer": 50.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166287, 39.948847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-228@628-pjf-jvz", "Name": "Tokyo Sushi", "Category": "Restaurants and Other Eating Places", "Address": "8229 Germantown Ave", "LATITUDE": 40.074121, "LONGITUDE": -75.202557, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 400.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 14.0, "Total Spend": 2413.0, "Total Transactions": 89.0, "Total Customers": 70.0, "Median Spend per Transaction": 16.99, "Median Spend per Customer": 20.65 }, "geometry": { "type": "Point", "coordinates": [ -75.202557, 40.074121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-nkf", "Name": "Ho May House", "Category": "Restaurants and Other Eating Places", "Address": "4401 N 5th St", "LATITUDE": 40.01822, "LONGITUDE": -75.134281, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 138.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 6.0, "Total Spend": 148.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 26.95, "Median Spend per Customer": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.134281, 40.01822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-94v", "Name": "Mood Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4618 Baltimore Ave", "LATITUDE": 39.948631, "LONGITUDE": -75.215805, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 145.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 1.0, "Total Spend": 1271.0, "Total Transactions": 49.0, "Total Customers": 44.0, "Median Spend per Transaction": 23.58, "Median Spend per Customer": 24.41 }, "geometry": { "type": "Point", "coordinates": [ -75.215805, 39.948631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnw-mzf", "Name": "The Foodery", "Category": "Restaurants and Other Eating Places", "Address": "837 N 2nd St", "LATITUDE": 39.963842, "LONGITUDE": -75.140388, "DATE_RANGE_START": 2023, "Total Visits": 645.0, "Total Visitors": 519.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 29.0, "Total Spend": 22770.0, "Total Transactions": 1343.0, "Total Customers": 693.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 19.79 }, "geometry": { "type": "Point", "coordinates": [ -75.140388, 39.963842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-r6k", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "310 W Master St", "LATITUDE": 39.97237, "LONGITUDE": -75.140976, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 81.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 14.0, "Total Spend": 141.0, "Total Transactions": 15.0, "Total Customers": 10.0, "Median Spend per Transaction": 7.59, "Median Spend per Customer": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.140976, 39.97237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-v75", "Name": "Northeast Sandwich Co", "Category": "Restaurants and Other Eating Places", "Address": "1342 Bleigh Ave", "LATITUDE": 40.059019, "LONGITUDE": -75.075391, "DATE_RANGE_START": 2023, "Total Visits": 90.0, "Total Visitors": 60.0, "POI_CBG": 421010338003.0, "Median Dwell Time": 5.0, "Total Spend": 1624.0, "Total Transactions": 80.0, "Total Customers": 51.0, "Median Spend per Transaction": 16.69, "Median Spend per Customer": 24.73 }, "geometry": { "type": "Point", "coordinates": [ -75.075391, 40.059019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-223@628-pnx-2hq", "Name": "CARQUEST Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "401 W Girard Ave", "LATITUDE": 39.97016, "LONGITUDE": -75.14329, "DATE_RANGE_START": 2023, "Total Visits": 271.0, "Total Visitors": 234.0, "POI_CBG": 421010144001.0, "Median Dwell Time": 291.0, "Total Spend": 166.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 66.23, "Median Spend per Customer": 66.23 }, "geometry": { "type": "Point", "coordinates": [ -75.14329, 39.97016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "150 N Broad St", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2023, "Total Visits": 486.0, "Total Visitors": 376.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 3.0, "Total Spend": 441.0, "Total Transactions": 38.0, "Total Customers": 26.0, "Median Spend per Transaction": 6.87, "Median Spend per Customer": 11.19 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-pvz", "Name": "Red Lion Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "737 Red Lion Rd", "LATITUDE": 40.105639, "LONGITUDE": -75.033118, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 174.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 6.0, "Total Spend": 144.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 30.66, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.033118, 40.105639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-cyv", "Name": "Holmesburg Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8039 Frankford Ave", "LATITUDE": 40.041745, "LONGITUDE": -75.026513, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 163.0, "POI_CBG": 421010329001.0, "Median Dwell Time": 20.0, "Total Spend": 63.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 10.69, "Median Spend per Customer": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -75.026513, 40.041745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2503 Welsh Rd # 05", "LATITUDE": 40.070278, "LONGITUDE": -75.030552, "DATE_RANGE_START": 2023, "Total Visits": 857.0, "Total Visitors": 565.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 15422.0, "Total Transactions": 685.0, "Total Customers": 356.0, "Median Spend per Transaction": 15.49, "Median Spend per Customer": 23.25 }, "geometry": { "type": "Point", "coordinates": [ -75.030552, 40.070278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "Name": "Stenton Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7171 Stenton Ave", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 70.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 22.0, "Total Spend": 2932.0, "Total Transactions": 129.0, "Total Customers": 81.0, "Median Spend per Transaction": 18.11, "Median Spend per Customer": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwf-t9z", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "2900 Island Ave", "LATITUDE": 39.903301, "LONGITUDE": -75.240669, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 210.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 10.0, "Total Spend": 30318.0, "Total Transactions": 894.0, "Total Customers": 735.0, "Median Spend per Transaction": 21.97, "Median Spend per Customer": 28.04 }, "geometry": { "type": "Point", "coordinates": [ -75.240669, 39.903301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pg8-z2k", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1701 N 33rd St", "LATITUDE": 39.982903, "LONGITUDE": -75.187839, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 135.0, "POI_CBG": 421010149006.0, "Median Dwell Time": 12.0, "Total Spend": 783.0, "Total Transactions": 38.0, "Total Customers": 25.0, "Median Spend per Transaction": 16.09, "Median Spend per Customer": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.187839, 39.982903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pm3-xqz", "Name": "Green Eggs Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1306 Dickinson St", "LATITUDE": 39.931348, "LONGITUDE": -75.166497, "DATE_RANGE_START": 2023, "Total Visits": 137.0, "Total Visitors": 36.0, "POI_CBG": 421010029002.0, "Median Dwell Time": 265.0, "Total Spend": 180.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 71.75, "Median Spend per Customer": 71.75 }, "geometry": { "type": "Point", "coordinates": [ -75.166497, 39.931348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "Name": "lululemon athletica", "Category": "Clothing Stores", "Address": "1720 Walnut St", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2023, "Total Visits": 334.0, "Total Visitors": 314.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 26207.0, "Total Transactions": 233.0, "Total Customers": 195.0, "Median Spend per Transaction": 75.77, "Median Spend per Customer": 99.3 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmb-8n5", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "940 Market St", "LATITUDE": 39.951212, "LONGITUDE": -75.156618, "DATE_RANGE_START": 2023, "Total Visits": 1581.0, "Total Visitors": 1102.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 6283.0, "Total Transactions": 477.0, "Total Customers": 349.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 12.73 }, "geometry": { "type": "Point", "coordinates": [ -75.156618, 39.951212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2201 Penrose Ave", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2023, "Total Visits": 452.0, "Total Visitors": 398.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 11.0, "Total Spend": 8858.0, "Total Transactions": 1088.0, "Total Customers": 453.0, "Median Spend per Transaction": 6.89, "Median Spend per Customer": 11.12 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3218 Willits Rd", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2023, "Total Visits": 653.0, "Total Visitors": 411.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 14.0, "Total Spend": 1057.0, "Total Transactions": 135.0, "Total Customers": 75.0, "Median Spend per Transaction": 6.25, "Median Spend per Customer": 9.54 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-t5f", "Name": "Perla", "Category": "Restaurants and Other Eating Places", "Address": "1535 S 11th St", "LATITUDE": 39.930019, "LONGITUDE": -75.16283, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 13.0, "Total Spend": 1014.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 66.0, "Median Spend per Customer": 66.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16283, 39.930019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmd-w49", "Name": "Twenty Manning", "Category": "Restaurants and Other Eating Places", "Address": "261 S 20th St", "LATITUDE": 39.948622, "LONGITUDE": -75.17407, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 178.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 2.0, "Total Spend": 2755.0, "Total Transactions": 33.0, "Total Customers": 30.0, "Median Spend per Transaction": 91.4, "Median Spend per Customer": 84.64 }, "geometry": { "type": "Point", "coordinates": [ -75.17407, 39.948622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-f9f", "Name": "Dimension Latin Grill", "Category": "Restaurants and Other Eating Places", "Address": "7312 Castor Ave", "LATITUDE": 40.052617, "LONGITUDE": -75.0652, "DATE_RANGE_START": 2023, "Total Visits": 402.0, "Total Visitors": 297.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 96.0, "Total Spend": 1173.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 68.8, "Median Spend per Customer": 50.59 }, "geometry": { "type": "Point", "coordinates": [ -75.0652, 40.052617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6620 N Broad St", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2023, "Total Visits": 537.0, "Total Visitors": 342.0, "POI_CBG": 421010268003.0, "Median Dwell Time": 5.0, "Total Spend": 4447.0, "Total Transactions": 480.0, "Total Customers": 223.0, "Median Spend per Transaction": 7.93, "Median Spend per Customer": 11.91 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6301 Chew Ave", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2023, "Total Visits": 431.0, "Total Visitors": 288.0, "POI_CBG": 421010389003.0, "Median Dwell Time": 9.0, "Total Spend": 2879.0, "Total Transactions": 134.0, "Total Customers": 70.0, "Median Spend per Transaction": 8.88, "Median Spend per Customer": 23.23 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-qj9", "Name": "Erietronics", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "722 W Erie Ave", "LATITUDE": 40.007732, "LONGITUDE": -75.141252, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 103.0, "POI_CBG": 421010199002.0, "Median Dwell Time": 5.0, "Total Spend": 2166.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 62.09, "Median Spend per Customer": 110.69 }, "geometry": { "type": "Point", "coordinates": [ -75.141252, 40.007732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-bp9", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "9910 Frankford Ave", "LATITUDE": 40.064957, "LONGITUDE": -74.983604, "DATE_RANGE_START": 2023, "Total Visits": 2995.0, "Total Visitors": 1526.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 13.0, "Total Spend": 673.0, "Total Transactions": 23.0, "Total Customers": 6.0, "Median Spend per Transaction": 19.85, "Median Spend per Customer": 28.72 }, "geometry": { "type": "Point", "coordinates": [ -74.983604, 40.064957 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvr-d5f", "Name": "Banamba Market", "Category": "Grocery Stores", "Address": "6537 Elmwood Ave", "LATITUDE": 39.921774, "LONGITUDE": -75.231392, "DATE_RANGE_START": 2023, "Total Visits": 110.0, "Total Visitors": 90.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 6.0, "Total Spend": 298.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 24.5, "Median Spend per Customer": 30.75 }, "geometry": { "type": "Point", "coordinates": [ -75.231392, 39.921774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "15501 Bustleton Ave Ste A", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2023, "Total Visits": 2860.0, "Total Visitors": 1231.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 39.0, "Total Spend": 1344.0, "Total Transactions": 26.0, "Total Customers": 15.0, "Median Spend per Transaction": 18.33, "Median Spend per Customer": 58.11 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "Name": "Luke's Lobster", "Category": "Restaurants and Other Eating Places", "Address": "130 S 17th St", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 142.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 2813.0, "Total Transactions": 65.0, "Total Customers": 55.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 42.18 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "Name": "Suit Corner", "Category": "Clothing Stores", "Address": "302 Market St", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2023, "Total Visits": 665.0, "Total Visitors": 517.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 1200.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 85.0, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7x-dgk", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "6846 Bustleton Ave", "LATITUDE": 40.04172, "LONGITUDE": -75.064728, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 195.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 4.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.53, "Median Spend per Customer": 10.53 }, "geometry": { "type": "Point", "coordinates": [ -75.064728, 40.04172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "Name": "Munchie's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "728 Chestnut St", "LATITUDE": 39.949283, "LONGITUDE": -75.153687, "DATE_RANGE_START": 2023, "Total Visits": 832.0, "Total Visitors": 606.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 2.0, "Total Spend": 3624.0, "Total Transactions": 292.0, "Total Customers": 174.0, "Median Spend per Transaction": 10.69, "Median Spend per Customer": 14.32 }, "geometry": { "type": "Point", "coordinates": [ -75.153687, 39.949283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-4sq", "Name": "Blaze Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave", "LATITUDE": 39.979406, "LONGITUDE": -75.153407, "DATE_RANGE_START": 2023, "Total Visits": 328.0, "Total Visitors": 147.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 20.0, "Total Spend": 3707.0, "Total Transactions": 244.0, "Total Customers": 204.0, "Median Spend per Transaction": 13.6, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.153407, 39.979406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8m-x5z", "Name": "Goody's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6237 Frankford Ave", "LATITUDE": 40.027482, "LONGITUDE": -75.061166, "DATE_RANGE_START": 2023, "Total Visits": 139.0, "Total Visitors": 116.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 2.0, "Total Spend": 1258.0, "Total Transactions": 43.0, "Total Customers": 35.0, "Median Spend per Transaction": 27.63, "Median Spend per Customer": 33.63 }, "geometry": { "type": "Point", "coordinates": [ -75.061166, 40.027482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "Name": "Fishtown Pizza", "Category": "Restaurants and Other Eating Places", "Address": "607 E Girard Ave", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 1.0, "Total Spend": 833.0, "Total Transactions": 36.0, "Total Customers": 28.0, "Median Spend per Transaction": 19.18, "Median Spend per Customer": 19.28 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-yqf", "Name": "Nine Ting", "Category": "Restaurants and Other Eating Places", "Address": "926 Race St", "LATITUDE": 39.955155, "LONGITUDE": -75.15525, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 13.0, "Total Spend": 2350.0, "Total Transactions": 29.0, "Total Customers": 29.0, "Median Spend per Transaction": 61.82, "Median Spend per Customer": 61.82 }, "geometry": { "type": "Point", "coordinates": [ -75.15525, 39.955155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "Name": "Kashmir Garden Super Market", "Category": "Grocery Stores", "Address": "9325 Krewstown Rd", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2023, "Total Visits": 204.0, "Total Visitors": 167.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 6.0, "Total Spend": 6313.0, "Total Transactions": 139.0, "Total Customers": 81.0, "Median Spend per Transaction": 34.82, "Median Spend per Customer": 40.06 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-c89", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "100 W Erie Ave", "LATITUDE": 40.007079, "LONGITUDE": -75.128063, "DATE_RANGE_START": 2023, "Total Visits": 402.0, "Total Visitors": 302.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 11.0, "Total Spend": 6511.0, "Total Transactions": 455.0, "Total Customers": 342.0, "Median Spend per Transaction": 12.36, "Median Spend per Customer": 14.73 }, "geometry": { "type": "Point", "coordinates": [ -75.128063, 40.007079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-zmk", "Name": "Value Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "5901 Woodland Ave", "LATITUDE": 39.931942, "LONGITUDE": -75.2267, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 130.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 3.0, "Total Spend": 99.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.56, "Median Spend per Customer": 18.56 }, "geometry": { "type": "Point", "coordinates": [ -75.2267, 39.931942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm6-w49", "Name": "777 Supermarket", "Category": "Grocery Stores", "Address": "2849 Morris St", "LATITUDE": 39.9327, "LONGITUDE": -75.19274, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 106.0, "POI_CBG": 421010033005.0, "Median Dwell Time": 6.0, "Total Spend": 1052.0, "Total Transactions": 59.0, "Total Customers": 34.0, "Median Spend per Transaction": 11.96, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19274, 39.9327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-k9f", "Name": "Choi's Market", "Category": "Grocery Stores", "Address": "2201 Morris St", "LATITUDE": 39.93128, "LONGITUDE": -75.182015, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 113.0, "POI_CBG": 421010032003.0, "Median Dwell Time": 22.0, "Total Spend": 228.0, "Total Transactions": 31.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.1, "Median Spend per Customer": 91.04 }, "geometry": { "type": "Point", "coordinates": [ -75.182015, 39.93128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pg9-t9z", "Name": "A&A Food Market", "Category": "Grocery Stores", "Address": "1700 Wallace St", "LATITUDE": 39.965589, "LONGITUDE": -75.165842, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 80.0, "POI_CBG": 421010134022.0, "Median Dwell Time": 18.0, "Total Spend": 1391.0, "Total Transactions": 160.0, "Total Customers": 39.0, "Median Spend per Transaction": 7.79, "Median Spend per Customer": 5.98 }, "geometry": { "type": "Point", "coordinates": [ -75.165842, 39.965589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "3621 Walnut St", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2023, "Total Visits": 296.0, "Total Visitors": 128.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 180.0, "Total Spend": 1668.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 37.55, "Median Spend per Customer": 37.55 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "Name": "Royal Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4200 Baltimore Ave", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 165.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 1.0, "Total Spend": 474.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 17.64, "Median Spend per Customer": 25.94 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave Ste A", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2023, "Total Visits": 442.0, "Total Visitors": 293.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 4.0, "Total Spend": 17586.0, "Total Transactions": 1248.0, "Total Customers": 820.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "Name": "M & M Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2736 E Allegheny Ave", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2023, "Total Visits": 178.0, "Total Visitors": 106.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 27.0, "Total Spend": 911.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 24.5, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "Name": "In Riva", "Category": "Restaurants and Other Eating Places", "Address": "4116 Ridge Ave", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 239.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 8.0, "Total Spend": 26945.0, "Total Transactions": 214.0, "Total Customers": 175.0, "Median Spend per Transaction": 90.0, "Median Spend per Customer": 104.43 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "Name": "Fiesta Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "600 Jamestown St", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2023, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 408.0, "Total Spend": 2403.0, "Total Transactions": 100.0, "Total Customers": 74.0, "Median Spend per Transaction": 21.28, "Median Spend per Customer": 25.37 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 18th St", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2023, "Total Visits": 559.0, "Total Visitors": 199.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 2845.0, "Total Transactions": 393.0, "Total Customers": 213.0, "Median Spend per Transaction": 5.7, "Median Spend per Customer": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3900 Castor Ave", "LATITUDE": 40.006322, "LONGITUDE": -75.0995, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 20.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 10.0, "Total Spend": 5215.0, "Total Transactions": 286.0, "Total Customers": 170.0, "Median Spend per Transaction": 12.67, "Median Spend per Customer": 20.46 }, "geometry": { "type": "Point", "coordinates": [ -75.0995, 40.006322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pm3-xqz", "Name": "The Victor Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1303 Dickinson St", "LATITUDE": 39.931639, "LONGITUDE": -75.166324, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 133.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 79.0, "Total Spend": 7127.0, "Total Transactions": 58.0, "Total Customers": 51.0, "Median Spend per Transaction": 115.88, "Median Spend per Customer": 117.16 }, "geometry": { "type": "Point", "coordinates": [ -75.166324, 39.931639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-nwk", "Name": "Louie Louie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3611 Walnut St", "LATITUDE": 39.953483, "LONGITUDE": -75.196032, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 159.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 37.0, "Total Spend": 4744.0, "Total Transactions": 56.0, "Total Customers": 45.0, "Median Spend per Transaction": 60.29, "Median Spend per Customer": 85.03 }, "geometry": { "type": "Point", "coordinates": [ -75.196032, 39.953483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@63s-dvy-8y9", "Name": "48th Street Grille", "Category": "Restaurants and Other Eating Places", "Address": "310 S 48th St", "LATITUDE": 39.953128, "LONGITUDE": -75.218509, "DATE_RANGE_START": 2023, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 134.0, "Total Spend": 824.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 28.4, "Median Spend per Customer": 28.4 }, "geometry": { "type": "Point", "coordinates": [ -75.218509, 39.953128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2901 N Broad St", "LATITUDE": 39.997186, "LONGITUDE": -75.153515, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010174002.0, "Median Dwell Time": 3.0, "Total Spend": 5947.0, "Total Transactions": 286.0, "Total Customers": 154.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.153515, 39.997186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "Name": "Ritz Diner", "Category": "Restaurants and Other Eating Places", "Address": "8000 Roosevelt Blvd", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2023, "Total Visits": 540.0, "Total Visitors": 357.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 68.0, "Total Spend": 7889.0, "Total Transactions": 190.0, "Total Customers": 160.0, "Median Spend per Transaction": 38.71, "Median Spend per Customer": 43.79 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-v75", "Name": "Rotten Ralph's Pub & Eatery", "Category": "Restaurants and Other Eating Places", "Address": "201 Chestnut St", "LATITUDE": 39.94849, "LONGITUDE": -75.144173, "DATE_RANGE_START": 2023, "Total Visits": 200.0, "Total Visitors": 187.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 2.0, "Total Spend": 4103.0, "Total Transactions": 93.0, "Total Customers": 81.0, "Median Spend per Transaction": 34.62, "Median Spend per Customer": 35.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144173, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "Name": "Michaels Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "9739 Roosevelt Blvd", "LATITUDE": 40.082361, "LONGITUDE": -75.023372, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 59.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 18.0, "Total Spend": 29706.0, "Total Transactions": 937.0, "Total Customers": 770.0, "Median Spend per Transaction": 21.63, "Median Spend per Customer": 25.45 }, "geometry": { "type": "Point", "coordinates": [ -75.023372, 40.082361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j5f", "Name": "Paper Source", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1628 Walnut St", "LATITUDE": 39.949774, "LONGITUDE": -75.168686, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 144.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 7119.0, "Total Transactions": 239.0, "Total Customers": 217.0, "Median Spend per Transaction": 21.01, "Median Spend per Customer": 23.7 }, "geometry": { "type": "Point", "coordinates": [ -75.168686, 39.949774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-6x5", "Name": "Su Xing House", "Category": "Restaurants and Other Eating Places", "Address": "1508 Sansom St", "LATITUDE": 39.950249, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2023, "Total Visits": 247.0, "Total Visitors": 247.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 16.0, "Total Spend": 1605.0, "Total Transactions": 41.0, "Total Customers": 39.0, "Median Spend per Transaction": 34.62, "Median Spend per Customer": 36.6 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "245 N Broad St", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 182.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.12, "Median Spend per Customer": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "Name": "Peddler Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2100 Spring St", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 262.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 1.0, "Total Spend": 2412.0, "Total Transactions": 331.0, "Total Customers": 158.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "Name": "Mostly Books", "Category": "Book Stores and News Dealers", "Address": "529 Bainbridge St", "LATITUDE": 39.941299, "LONGITUDE": -75.151874, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 5.0, "Total Spend": 993.0, "Total Transactions": 49.0, "Total Customers": 46.0, "Median Spend per Transaction": 16.15, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151874, 39.941299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "Name": "The Bayou Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "4245 Main St", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 133.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 48.0, "Total Spend": 4038.0, "Total Transactions": 142.0, "Total Customers": 111.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "Name": "Lucha Cartel", "Category": "Restaurants and Other Eating Places", "Address": "207 Chestnut St", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 198.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 26.0, "Total Spend": 4517.0, "Total Transactions": 183.0, "Total Customers": 140.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfx-p7q", "Name": "China Wok", "Category": "Restaurants and Other Eating Places", "Address": "209 Green Ln", "LATITUDE": 40.029274, "LONGITUDE": -75.223513, "DATE_RANGE_START": 2023, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010214003.0, "Median Dwell Time": null, "Total Spend": 368.0, "Total Transactions": 8.0, "Total Customers": 3.0, "Median Spend per Transaction": 32.5, "Median Spend per Customer": 146.75 }, "geometry": { "type": "Point", "coordinates": [ -75.223513, 40.029274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "Name": "SouthHouse", "Category": "Restaurants and Other Eating Places", "Address": "2535 S 13th St", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2023, "Total Visits": 455.0, "Total Visitors": 298.0, "POI_CBG": 421010040023.0, "Median Dwell Time": 28.0, "Total Spend": 7171.0, "Total Transactions": 160.0, "Total Customers": 120.0, "Median Spend per Transaction": 37.78, "Median Spend per Customer": 45.27 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pg2-n5z", "Name": "Torres Grocery", "Category": "Grocery Stores", "Address": "152 E Sharpnack St", "LATITUDE": 40.051691, "LONGITUDE": -75.181363, "DATE_RANGE_START": 2023, "Total Visits": 40.0, "Total Visitors": 40.0, "POI_CBG": 421010253002.0, "Median Dwell Time": null, "Total Spend": 77.0, "Total Transactions": 9.0, "Total Customers": 6.0, "Median Spend per Transaction": 9.88, "Median Spend per Customer": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.051691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "7855 Oxford Ave", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2023, "Total Visits": 552.0, "Total Visitors": 516.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 9.0, "Total Spend": 6489.0, "Total Transactions": 408.0, "Total Customers": 302.0, "Median Spend per Transaction": 13.22, "Median Spend per Customer": 16.39 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-j5f", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "7700 Crittenden St", "LATITUDE": 40.071816, "LONGITUDE": -75.193896, "DATE_RANGE_START": 2023, "Total Visits": 1952.0, "Total Visitors": 943.0, "POI_CBG": 421010257001.0, "Median Dwell Time": 20.0, "Total Spend": 104479.0, "Total Transactions": 2748.0, "Total Customers": 1125.0, "Median Spend per Transaction": 23.99, "Median Spend per Customer": 49.12 }, "geometry": { "type": "Point", "coordinates": [ -75.193896, 40.071816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2101 S 10th St", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2023, "Total Visits": 504.0, "Total Visitors": 391.0, "POI_CBG": 421010041013.0, "Median Dwell Time": 7.0, "Total Spend": 194.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 7.46, "Median Spend per Customer": 11.32 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "Name": "Higher Grounds", "Category": "Restaurants and Other Eating Places", "Address": "631 N 3rd St", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 122.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 132.0, "Total Spend": 2078.0, "Total Transactions": 228.0, "Total Customers": 127.0, "Median Spend per Transaction": 8.02, "Median Spend per Customer": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2023, "Total Visits": 446.0, "Total Visitors": 371.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 7.0, "Total Spend": 6104.0, "Total Transactions": 773.0, "Total Customers": 322.0, "Median Spend per Transaction": 6.44, "Median Spend per Customer": 11.41 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p83-xdv", "Name": "Mayura Indian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "9321 Krewstown Rd # 23", "LATITUDE": 40.086185, "LONGITUDE": -75.045124, "DATE_RANGE_START": 2023, "Total Visits": 1865.0, "Total Visitors": 1091.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 17.0, "Total Spend": 114.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 45.32, "Median Spend per Customer": 45.32 }, "geometry": { "type": "Point", "coordinates": [ -75.045124, 40.086185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "401 Spring Garden St", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2023, "Total Visits": 2280.0, "Total Visitors": 1461.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 9.0, "Total Spend": 12192.0, "Total Transactions": 623.0, "Total Customers": 373.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 19.58 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "8261 Stenton Ave", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2023, "Total Visits": 1324.0, "Total Visitors": 968.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 6.0, "Total Spend": 4062.0, "Total Transactions": 168.0, "Total Customers": 69.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 31.72 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "Name": "Finish Line", "Category": "Shoe Stores", "Address": "1449 Franklin Mills Cir", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 210.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 50.0, "Total Spend": 2524.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 105.0, "Median Spend per Customer": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8n5", "Name": "Columbia Sportswear", "Category": "Clothing Stores", "Address": "1001 Market St Unit C205", "LATITUDE": 39.951969, "LONGITUDE": -75.157009, "DATE_RANGE_START": 2023, "Total Visits": 1414.0, "Total Visitors": 1040.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 19.0, "Total Spend": 4832.0, "Total Transactions": 64.0, "Total Customers": 48.0, "Median Spend per Transaction": 53.95, "Median Spend per Customer": 59.43 }, "geometry": { "type": "Point", "coordinates": [ -75.157009, 39.951969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8n-6kz", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6301 Frankford Ave", "LATITUDE": 40.027244, "LONGITUDE": -75.059172, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 209.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 9.0, "Total Spend": 44.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.54, "Median Spend per Customer": 17.54 }, "geometry": { "type": "Point", "coordinates": [ -75.059172, 40.027244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-6tv", "Name": "Dollar Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1523 Chestnut St", "LATITUDE": 39.951449, "LONGITUDE": -75.166353, "DATE_RANGE_START": 2023, "Total Visits": 70.0, "Total Visitors": 56.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 595.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 17.16, "Median Spend per Customer": 18.06 }, "geometry": { "type": "Point", "coordinates": [ -75.166353, 39.951449 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-cnq", "Name": "Vape O2", "Category": "Other Miscellaneous Store Retailers", "Address": "411 E Girard Ave", "LATITUDE": 39.970583, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 145.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 4.0, "Total Spend": 210.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 41.86, "Median Spend per Customer": 83.71 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.970583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "Name": "OfficeMax", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7231 Roosevelt Blvd", "LATITUDE": 40.043406, "LONGITUDE": -75.054428, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 8.0, "Total Spend": 8818.0, "Total Transactions": 269.0, "Total Customers": 185.0, "Median Spend per Transaction": 5.93, "Median Spend per Customer": 10.1 }, "geometry": { "type": "Point", "coordinates": [ -75.054428, 40.043406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "Name": "Thai Singha House", "Category": "Restaurants and Other Eating Places", "Address": "3906B Chestnut St", "LATITUDE": 39.955293, "LONGITUDE": -75.200428, "DATE_RANGE_START": 2023, "Total Visits": 779.0, "Total Visitors": 601.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 21.0, "Total Spend": 392.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 30.81, "Median Spend per Customer": 32.97 }, "geometry": { "type": "Point", "coordinates": [ -75.200428, 39.955293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-f75", "Name": "Taqueria Dos Hermanos", "Category": "Restaurants and Other Eating Places", "Address": "37 Spruce St", "LATITUDE": 39.946087, "LONGITUDE": -75.156048, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 223.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 1.0, "Total Spend": 1239.0, "Total Transactions": 59.0, "Total Customers": 54.0, "Median Spend per Transaction": 18.36, "Median Spend per Customer": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.156048, 39.946087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-t5f", "Name": "Cavanaugh's Riverdeck", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "417 N Columbus Blvd", "LATITUDE": 39.957739, "LONGITUDE": -75.137253, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 212.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 21.0, "Total Spend": 40002.0, "Total Transactions": 1663.0, "Total Customers": 794.0, "Median Spend per Transaction": 18.89, "Median Spend per Customer": 34.72 }, "geometry": { "type": "Point", "coordinates": [ -75.137253, 39.957739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-ph6-whq", "Name": "Cedar Park Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2035 N 63rd St", "LATITUDE": 39.986565, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2023, "Total Visits": 262.0, "Total Visitors": 15.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 312.0, "Total Spend": 1693.0, "Total Transactions": 55.0, "Total Customers": 49.0, "Median Spend per Transaction": 24.84, "Median Spend per Customer": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "Name": "New Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2800 W Dauphin St", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2023, "Total Visits": 515.0, "Total Visitors": 382.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 22.0, "Total Spend": 627.0, "Total Transactions": 35.0, "Total Customers": 29.0, "Median Spend per Transaction": 17.3, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-qzz", "Name": "For Pete's Sake", "Category": "Restaurants and Other Eating Places", "Address": "900 S Front St", "LATITUDE": 39.935493, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 184.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 42.0, "Total Spend": 2302.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 66.48, "Median Spend per Customer": 99.56 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.935493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9240 State Rd", "LATITUDE": 40.047016, "LONGITUDE": -74.99338, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 20.0, "Total Spend": 2568.0, "Total Transactions": 308.0, "Total Customers": 160.0, "Median Spend per Transaction": 7.62, "Median Spend per Customer": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -74.99338, 40.047016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "Name": "Cuba Libre Restaurant & Rum Bar Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "10 S 2nd St", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 145.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 55.0, "Total Spend": 19018.0, "Total Transactions": 328.0, "Total Customers": 262.0, "Median Spend per Transaction": 36.71, "Median Spend per Customer": 51.43 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-btv", "Name": "Tomorrow Gift", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2246 Ridge Ave", "LATITUDE": 39.980373, "LONGITUDE": -75.17232, "DATE_RANGE_START": 2023, "Total Visits": 271.0, "Total Visitors": 144.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 32.0, "Total Spend": 158.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 11.23, "Median Spend per Customer": 11.23 }, "geometry": { "type": "Point", "coordinates": [ -75.17232, 39.980373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "Name": "Apple Retail Store", "Category": "Electronics and Appliance Stores", "Address": "1607 Walnut St", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2023, "Total Visits": 832.0, "Total Visitors": 733.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 4.0, "Total Spend": 123037.0, "Total Transactions": 517.0, "Total Customers": 428.0, "Median Spend per Transaction": 72.36, "Median Spend per Customer": 85.32 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-225@628-pjf-j7q", "Name": "All The Way Live", "Category": "Restaurants and Other Eating Places", "Address": "8419 Germantown Ave", "LATITUDE": 40.075632, "LONGITUDE": -75.205446, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 195.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 166.0, "Total Spend": 659.0, "Total Transactions": 20.0, "Total Customers": 15.0, "Median Spend per Transaction": 28.48, "Median Spend per Customer": 38.56 }, "geometry": { "type": "Point", "coordinates": [ -75.205446, 40.075632 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "Name": "Pitchers Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4326 Main St", "LATITUDE": 40.025101, "LONGITUDE": -75.223018, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 2.0, "Total Spend": 10354.0, "Total Transactions": 376.0, "Total Customers": 259.0, "Median Spend per Transaction": 20.95, "Median Spend per Customer": 27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.223018, 40.025101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "Name": "Milkcrate Cafe", "Category": "Restaurants and Other Eating Places", "Address": "400 E Girard Ave", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2023, "Total Visits": 501.0, "Total Visitors": 432.0, "POI_CBG": 421010143002.0, "Median Dwell Time": 11.0, "Total Spend": 9704.0, "Total Transactions": 686.0, "Total Customers": 303.0, "Median Spend per Transaction": 10.51, "Median Spend per Customer": 19.06 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "917 Filbert St", "LATITUDE": 39.952689, "LONGITUDE": -75.155856, "DATE_RANGE_START": 2023, "Total Visits": 2225.0, "Total Visitors": 1643.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 405.0, "Total Transactions": 23.0, "Total Customers": 19.0, "Median Spend per Transaction": 4.44, "Median Spend per Customer": 7.27 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 39.952689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-28v", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "780 Adams Ave", "LATITUDE": 40.030559, "LONGITUDE": -75.104392, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 3.0, "Total Spend": 2430.0, "Total Transactions": 95.0, "Total Customers": 58.0, "Median Spend per Transaction": 20.02, "Median Spend per Customer": 35.81 }, "geometry": { "type": "Point", "coordinates": [ -75.104392, 40.030559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2489 Aramingo Ave", "LATITUDE": 39.974266, "LONGITUDE": -75.119833, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 6.0, "Total Spend": 463.0, "Total Transactions": 21.0, "Total Customers": 18.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.119833, 39.974266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1600 E Wadsworth Ave", "LATITUDE": 40.080372, "LONGITUDE": -75.171989, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 10.0, "Total Spend": 3591.0, "Total Transactions": 128.0, "Total Customers": 88.0, "Median Spend per Transaction": 10.43, "Median Spend per Customer": 12.49 }, "geometry": { "type": "Point", "coordinates": [ -75.171989, 40.080372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "Name": "Aura", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "628 N Front St", "LATITUDE": 39.961247, "LONGITUDE": -75.138825, "DATE_RANGE_START": 2023, "Total Visits": 425.0, "Total Visitors": 319.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 51.0, "Total Spend": 104154.0, "Total Transactions": 1171.0, "Total Customers": 931.0, "Median Spend per Transaction": 63.11, "Median Spend per Customer": 74.9 }, "geometry": { "type": "Point", "coordinates": [ -75.138825, 39.961247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@63s-dw2-bkz", "Name": "Betty & Bee", "Category": "Clothing Stores", "Address": "5 S 60th St", "LATITUDE": 39.961573, "LONGITUDE": -75.24073, "DATE_RANGE_START": 2023, "Total Visits": 1447.0, "Total Visitors": 730.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 4.0, "Total Spend": 397.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 39.8, "Median Spend per Customer": 39.8 }, "geometry": { "type": "Point", "coordinates": [ -75.24073, 39.961573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvw-wzf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5701 Walnut St", "LATITUDE": 39.958441, "LONGITUDE": -75.236, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 159.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 6.0, "Total Spend": 1316.0, "Total Transactions": 147.0, "Total Customers": 59.0, "Median Spend per Transaction": 5.9, "Median Spend per Customer": 9.47 }, "geometry": { "type": "Point", "coordinates": [ -75.236, 39.958441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pgf-7kf", "Name": "Lavish", "Category": "Restaurants and Other Eating Places", "Address": "4308 Lancaster Ave", "LATITUDE": 39.967761, "LONGITUDE": -75.210086, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 135.0, "POI_CBG": 421010106001.0, "Median Dwell Time": 29.0, "Total Spend": 1603.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 87.0, "Median Spend per Customer": 87.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210086, 39.967761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "Name": "The Gold Standard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4800 Baltimore Ave", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 160.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 2.0, "Total Spend": 799.0, "Total Transactions": 35.0, "Total Customers": 26.0, "Median Spend per Transaction": 21.49, "Median Spend per Customer": 28.25 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market St", "LATITUDE": 39.952554, "LONGITUDE": -75.166725, "DATE_RANGE_START": 2023, "Total Visits": 5390.0, "Total Visitors": 3301.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 9.0, "Total Spend": 3327.0, "Total Transactions": 408.0, "Total Customers": 298.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.166725, 39.952554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgh-45f", "Name": "City Food Market", "Category": "Grocery Stores", "Address": "3601 N 22nd St", "LATITUDE": 40.009428, "LONGITUDE": -75.164387, "DATE_RANGE_START": 2023, "Total Visits": 358.0, "Total Visitors": 148.0, "POI_CBG": 421010202004.0, "Median Dwell Time": 15.0, "Total Spend": 1675.0, "Total Transactions": 122.0, "Total Customers": 43.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 17.46 }, "geometry": { "type": "Point", "coordinates": [ -75.164387, 40.009428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "Name": "South Square Market", "Category": "Grocery Stores", "Address": "2221 South St", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2023, "Total Visits": 403.0, "Total Visitors": 204.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 5.0, "Total Spend": 30347.0, "Total Transactions": 1129.0, "Total Customers": 535.0, "Median Spend per Transaction": 16.97, "Median Spend per Customer": 27.96 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "Name": "Fairmart", "Category": "Grocery Stores", "Address": "623 Fairmount Ave", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 144.0, "POI_CBG": 421010131001.0, "Median Dwell Time": 23.0, "Total Spend": 2039.0, "Total Transactions": 187.0, "Total Customers": 94.0, "Median Spend per Transaction": 7.78, "Median Spend per Customer": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-xt9", "Name": "Taproom", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "7701 Walker St", "LATITUDE": 40.036887, "LONGITUDE": -75.031645, "DATE_RANGE_START": 2023, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010329004.0, "Median Dwell Time": 11.0, "Total Spend": 283.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 54.13, "Median Spend per Customer": 54.13 }, "geometry": { "type": "Point", "coordinates": [ -75.031645, 40.036887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pp4-ks5", "Name": "Caring Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "2541 Kensington Ave", "LATITUDE": 39.988275, "LONGITUDE": -75.128168, "DATE_RANGE_START": 2023, "Total Visits": 386.0, "Total Visitors": 366.0, "POI_CBG": 421010161003.0, "Median Dwell Time": 1.0, "Total Spend": 15.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.12, "Median Spend per Customer": 6.12 }, "geometry": { "type": "Point", "coordinates": [ -75.128168, 39.988275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-brk", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2539 Castor Ave Ste D", "LATITUDE": 39.993994, "LONGITUDE": -75.0915, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 193.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 25.0, "Total Spend": 1737.0, "Total Transactions": 40.0, "Total Customers": 36.0, "Median Spend per Transaction": 26.92, "Median Spend per Customer": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.0915, 39.993994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "Name": "Comfort & Floyd", "Category": "Restaurants and Other Eating Places", "Address": "1301 S 11th St", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2023, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 2.0, "Total Spend": 1254.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 38.23, "Median Spend per Customer": 42.77 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.996405, "LONGITUDE": -75.166707, "DATE_RANGE_START": 2023, "Total Visits": 983.0, "Total Visitors": 705.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 13.0, "Total Spend": 681.0, "Total Transactions": 43.0, "Total Customers": 28.0, "Median Spend per Transaction": 11.61, "Median Spend per Customer": 19.76 }, "geometry": { "type": "Point", "coordinates": [ -75.166707, 39.996405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "Name": "Four Seasons Hotels and Resorts", "Category": "Traveler Accommodation", "Address": "1 N 19th St", "LATITUDE": 39.95506, "LONGITUDE": -75.170758, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 187.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 286.0, "Total Spend": 54366.0, "Total Transactions": 635.0, "Total Customers": 517.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 29.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170758, 39.95506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-wc5", "Name": "Craft Hall", "Category": "Restaurants and Other Eating Places", "Address": "901 N Delaware Ave", "LATITUDE": 39.962419, "LONGITUDE": -75.136038, "DATE_RANGE_START": 2023, "Total Visits": 676.0, "Total Visitors": 562.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 76.0, "Total Spend": 2112.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 71.55, "Median Spend per Customer": 71.55 }, "geometry": { "type": "Point", "coordinates": [ -75.136038, 39.962419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "Name": "Fountain Porter", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1601 S 10th St", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 212.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 19.0, "Total Spend": 429.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 30.4, "Median Spend per Customer": 31.85 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1615 Chancellor St", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2023, "Total Visits": 302.0, "Total Visitors": 268.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 5.0, "Total Spend": 2642.0, "Total Transactions": 63.0, "Total Customers": 59.0, "Median Spend per Transaction": 33.28, "Median Spend per Customer": 34.16 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8n-cqz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6400 Roosevelt Blvd", "LATITUDE": 40.035677, "LONGITUDE": -75.070034, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010313002.0, "Median Dwell Time": 7.0, "Total Spend": 823.0, "Total Transactions": 23.0, "Total Customers": 11.0, "Median Spend per Transaction": 23.67, "Median Spend per Customer": 43.66 }, "geometry": { "type": "Point", "coordinates": [ -75.070034, 40.035677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "Name": "The Flavor Spot", "Category": "Restaurants and Other Eating Places", "Address": "5013 N Broad St", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2023, "Total Visits": 185.0, "Total Visitors": 148.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 15.0, "Total Spend": 2514.0, "Total Transactions": 95.0, "Total Customers": 65.0, "Median Spend per Transaction": 24.6, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-224@628-pnx-835", "Name": "Cafe An", "Category": "Restaurants and Other Eating Places", "Address": "809 N 2nd St", "LATITUDE": 39.96323, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2023, "Total Visits": 645.0, "Total Visitors": 519.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 29.0, "Total Spend": 736.0, "Total Transactions": 58.0, "Total Customers": 38.0, "Median Spend per Transaction": 11.36, "Median Spend per Customer": 15.26 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.96323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "Name": "Sang Kee Peking Duck House", "Category": "Restaurants and Other Eating Places", "Address": "238 N 9th St", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 252.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 8.0, "Total Spend": 10697.0, "Total Transactions": 254.0, "Total Customers": 224.0, "Median Spend per Transaction": 24.75, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5726 Baltimore Ave # 46", "LATITUDE": 39.945591, "LONGITUDE": -75.238096, "DATE_RANGE_START": 2023, "Total Visits": 728.0, "Total Visitors": 485.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 8.0, "Total Spend": 7726.0, "Total Transactions": 173.0, "Total Customers": 132.0, "Median Spend per Transaction": 26.44, "Median Spend per Customer": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.238096, 39.945591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p82-swk", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "6640 Oxford Ave", "LATITUDE": 40.050277, "LONGITUDE": -75.086994, "DATE_RANGE_START": 2023, "Total Visits": 1365.0, "Total Visitors": 534.0, "POI_CBG": 421010306001.0, "Median Dwell Time": 24.0, "Total Spend": 61231.0, "Total Transactions": 1726.0, "Total Customers": 800.0, "Median Spend per Transaction": 19.98, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.086994, 40.050277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-mrk", "Name": "Elixr Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "1600 Market St", "LATITUDE": 39.952527, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2023, "Total Visits": 1635.0, "Total Visitors": 933.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 91.0, "Total Spend": 333.0, "Total Transactions": 39.0, "Total Customers": 18.0, "Median Spend per Transaction": 5.05, "Median Spend per Customer": 13.13 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.952527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-nwk", "Name": "One Pound Cheesesteaks", "Category": "Restaurants and Other Eating Places", "Address": "2661 Kensington Ave", "LATITUDE": 39.989593, "LONGITUDE": -75.125509, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 175.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 8.0, "Total Spend": 630.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 20.25, "Median Spend per Customer": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.125509, 39.989593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "Name": "Sunny Side Diner", "Category": "Restaurants and Other Eating Places", "Address": "5948 Market St", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 152.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 1.0, "Total Spend": 1138.0, "Total Transactions": 69.0, "Total Customers": 48.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 16.06 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7221 Torresdale Ave", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 437.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 5.0, "Total Spend": 5306.0, "Total Transactions": 659.0, "Total Customers": 277.0, "Median Spend per Transaction": 7.04, "Median Spend per Customer": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm3-syv", "Name": "Bing Bing Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "1648 E Passyunk Ave", "LATITUDE": 39.928965, "LONGITUDE": -75.164747, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 127.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 21.0, "Total Spend": 1272.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 81.1, "Median Spend per Customer": 81.1 }, "geometry": { "type": "Point", "coordinates": [ -75.164747, 39.928965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7v-hkf", "Name": "Supreme Pizzeria & Bakery", "Category": "Restaurants and Other Eating Places", "Address": "7514 Castor Ave", "LATITUDE": 40.054943, "LONGITUDE": -75.063126, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 128.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 7.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 16.63, "Median Spend per Customer": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.063126, 40.054943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "Name": "Mission BBQ", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2023, "Total Visits": 450.0, "Total Visitors": 405.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 11.0, "Total Spend": 5429.0, "Total Transactions": 149.0, "Total Customers": 134.0, "Median Spend per Transaction": 25.12, "Median Spend per Customer": 31.18 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "177 W Allegheny Ave", "LATITUDE": 39.999377, "LONGITUDE": -75.132935, "DATE_RANGE_START": 2023, "Total Visits": 406.0, "Total Visitors": 392.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 10.0, "Total Spend": 3023.0, "Total Transactions": 184.0, "Total Customers": 123.0, "Median Spend per Transaction": 13.04, "Median Spend per Customer": 13.75 }, "geometry": { "type": "Point", "coordinates": [ -75.132935, 39.999377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "6350 Roosevelt Blvd", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2023, "Total Visits": 114.0, "Total Visitors": 105.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 4.0, "Total Spend": 3356.0, "Total Transactions": 162.0, "Total Customers": 129.0, "Median Spend per Transaction": 17.26, "Median Spend per Customer": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-68v", "Name": "J'aime French Bakery", "Category": "Restaurants and Other Eating Places", "Address": "212 S 12th St", "LATITUDE": 39.948054, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 197.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 85.0, "Total Spend": 314.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 9.91, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.948054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yqf", "Name": "Dia Boutique", "Category": "Clothing Stores", "Address": "931 Arch St", "LATITUDE": 39.955502, "LONGITUDE": -75.155375, "DATE_RANGE_START": 2023, "Total Visits": 21368.0, "Total Visitors": 14769.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 186.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 66.56, "Median Spend per Customer": 74.36 }, "geometry": { "type": "Point", "coordinates": [ -75.155375, 39.955502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7001 Roosevelt Blvd", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2023, "Total Visits": 2142.0, "Total Visitors": 1749.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 6.0, "Total Spend": 62019.0, "Total Transactions": 2951.0, "Total Customers": 1506.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 22.99 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2034 N Broad St", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 304.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 15.0, "Total Spend": 1714.0, "Total Transactions": 48.0, "Total Customers": 26.0, "Median Spend per Transaction": 11.64, "Median Spend per Customer": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-3yv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4701 N Mascher St", "LATITUDE": 40.022096, "LONGITUDE": -75.125775, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 348.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 5.0, "Total Spend": 843.0, "Total Transactions": 31.0, "Total Customers": 19.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 42.57 }, "geometry": { "type": "Point", "coordinates": [ -75.125775, 40.022096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-wtv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7720 Bustleton Ave", "LATITUDE": 40.054812, "LONGITUDE": -75.054903, "DATE_RANGE_START": 2023, "Total Visits": 669.0, "Total Visitors": 541.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 11.0, "Total Spend": 1643.0, "Total Transactions": 140.0, "Total Customers": 94.0, "Median Spend per Transaction": 7.29, "Median Spend per Customer": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.054903, 40.054812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2320 Fairmount Ave # 26", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2023, "Total Visits": 980.0, "Total Visitors": 659.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 7.0, "Total Spend": 15978.0, "Total Transactions": 813.0, "Total Customers": 485.0, "Median Spend per Transaction": 12.73, "Median Spend per Customer": 18.82 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "2000 Hamilton St", "LATITUDE": 39.962232, "LONGITUDE": -75.172217, "DATE_RANGE_START": 2023, "Total Visits": 3897.0, "Total Visitors": 2040.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 53.0, "Total Spend": 8313.0, "Total Transactions": 235.0, "Total Customers": 214.0, "Median Spend per Transaction": 25.88, "Median Spend per Customer": 27.21 }, "geometry": { "type": "Point", "coordinates": [ -75.172217, 39.962232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "Name": "Yummy Pho", "Category": "Restaurants and Other Eating Places", "Address": "2012 N Broad St", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 158.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 1.0, "Total Spend": 918.0, "Total Transactions": 43.0, "Total Customers": 35.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pzn-zj9", "Name": "Sweeney's Station Saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "13639 Philmont Ave", "LATITUDE": 40.131466, "LONGITUDE": -75.011396, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 101.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 34.0, "Total Spend": 228.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 40.39, "Median Spend per Customer": 90.99 }, "geometry": { "type": "Point", "coordinates": [ -75.011396, 40.131466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-kpv", "Name": "Foreign Bazaar", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1921 Chestnut St", "LATITUDE": 39.952051, "LONGITUDE": -75.172662, "DATE_RANGE_START": 2023, "Total Visits": 4324.0, "Total Visitors": 2851.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 11.0, "Total Spend": 569.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 25.84, "Median Spend per Customer": 25.84 }, "geometry": { "type": "Point", "coordinates": [ -75.172662, 39.952051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "490 N Broad St Ste 100", "LATITUDE": 39.962319, "LONGITUDE": -75.162376, "DATE_RANGE_START": 2023, "Total Visits": 536.0, "Total Visitors": 353.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 10.0, "Total Spend": 11394.0, "Total Transactions": 709.0, "Total Customers": 457.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.162376, 39.962319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9280 Krewstown Rd", "LATITUDE": 40.086019, "LONGITUDE": -75.046798, "DATE_RANGE_START": 2023, "Total Visits": 828.0, "Total Visitors": 381.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 23.0, "Total Spend": 9378.0, "Total Transactions": 451.0, "Total Customers": 238.0, "Median Spend per Transaction": 12.39, "Median Spend per Customer": 23.46 }, "geometry": { "type": "Point", "coordinates": [ -75.046798, 40.086019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-xt9", "Name": "Four Points By Sheraton", "Category": "Traveler Accommodation", "Address": "1201 Race St", "LATITUDE": 39.955962, "LONGITUDE": -75.159171, "DATE_RANGE_START": 2023, "Total Visits": 43.0, "Total Visitors": 31.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 10.0, "Total Spend": 1130.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 451.08, "Median Spend per Customer": 451.08 }, "geometry": { "type": "Point", "coordinates": [ -75.159171, 39.955962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pp4-r49", "Name": "Pet Supplies Plus", "Category": "Other Miscellaneous Store Retailers", "Address": "2475 Aramingo Ave", "LATITUDE": 39.974037, "LONGITUDE": -75.12038, "DATE_RANGE_START": 2023, "Total Visits": 204.0, "Total Visitors": 197.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 9.0, "Total Spend": 17253.0, "Total Transactions": 378.0, "Total Customers": 286.0, "Median Spend per Transaction": 36.96, "Median Spend per Customer": 44.22 }, "geometry": { "type": "Point", "coordinates": [ -75.12038, 39.974037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phy-h3q", "Name": "El Patron bar restaurant", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4637 N 5th St", "LATITUDE": 40.022108, "LONGITUDE": -75.133422, "DATE_RANGE_START": 2023, "Total Visits": 478.0, "Total Visitors": 138.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 805.0, "Total Spend": 293.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 116.9, "Median Spend per Customer": 116.9 }, "geometry": { "type": "Point", "coordinates": [ -75.133422, 40.022108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3501 Aramingo Ave", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2023, "Total Visits": 574.0, "Total Visitors": 445.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 7.0, "Total Spend": 8341.0, "Total Transactions": 987.0, "Total Customers": 472.0, "Median Spend per Transaction": 6.58, "Median Spend per Customer": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.01122, "LONGITUDE": -75.113025, "DATE_RANGE_START": 2023, "Total Visits": 571.0, "Total Visitors": 441.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 27.0, "Total Spend": 243.0, "Total Transactions": 21.0, "Total Customers": 15.0, "Median Spend per Transaction": 11.78, "Median Spend per Customer": 15.03 }, "geometry": { "type": "Point", "coordinates": [ -75.113025, 40.01122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-w6k", "Name": "Food & Friends", "Category": "Grocery Stores", "Address": "1933 Spruce St", "LATITUDE": 39.948295, "LONGITUDE": -75.174192, "DATE_RANGE_START": 2023, "Total Visits": 344.0, "Total Visitors": 239.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 1.0, "Total Spend": 8096.0, "Total Transactions": 412.0, "Total Customers": 259.0, "Median Spend per Transaction": 15.51, "Median Spend per Customer": 25.25 }, "geometry": { "type": "Point", "coordinates": [ -75.174192, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "Name": "Primal Nutrition", "Category": "Health and Personal Care Stores", "Address": "8114 Roosevelt Blvd", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 232.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 4.0, "Total Spend": 1387.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 51.75, "Median Spend per Customer": 59.75 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "143 W Fisher Ave", "LATITUDE": 40.031276, "LONGITUDE": -75.124753, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 178.0, "POI_CBG": 421010286005.0, "Median Dwell Time": 4.0, "Total Spend": 620.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 25.7, "Median Spend per Customer": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -75.124753, 40.031276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-phy-rc5", "Name": "King's Express", "Category": "Restaurants and Other Eating Places", "Address": "4529 N 5th St", "LATITUDE": 40.020448, "LONGITUDE": -75.133697, "DATE_RANGE_START": 2023, "Total Visits": 473.0, "Total Visitors": 209.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 127.0, "Total Spend": 208.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 61.95, "Median Spend per Customer": 82.93 }, "geometry": { "type": "Point", "coordinates": [ -75.133697, 40.020448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgj-n5z", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993437, "LONGITUDE": -75.144074, "DATE_RANGE_START": 2023, "Total Visits": 341.0, "Total Visitors": 182.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 17.0, "Total Spend": 1794.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 101.5, "Median Spend per Customer": 118.26 }, "geometry": { "type": "Point", "coordinates": [ -75.144074, 39.993437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "Name": "Produce Junction", "Category": "Florists", "Address": "2241 Bryn Mawr Ave", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2023, "Total Visits": 261.0, "Total Visitors": 93.0, "POI_CBG": 421010120001.0, "Median Dwell Time": 574.0, "Total Spend": 1130.0, "Total Transactions": 30.0, "Total Customers": 19.0, "Median Spend per Transaction": 29.65, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "3901 M St # 29", "LATITUDE": 40.006464, "LONGITUDE": -75.100401, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 25.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 11.0, "Total Spend": 654.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 20.48, "Median Spend per Customer": 22.8 }, "geometry": { "type": "Point", "coordinates": [ -75.100401, 40.006464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "Name": "Penn Hardware", "Category": "Building Material and Supplies Dealers", "Address": "7404 Frankford Ave", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2023, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 7.0, "Total Spend": 379.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 20.14, "Median Spend per Customer": 18.52 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "Name": "Green Farm", "Category": "Specialty Food Stores", "Address": "10690 Bustleton Ave", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 153.0, "POI_CBG": 421010357012.0, "Median Dwell Time": 6.0, "Total Spend": 195.0, "Total Transactions": 13.0, "Total Customers": 6.0, "Median Spend per Transaction": 15.52, "Median Spend per Customer": 25.08 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "Name": "Cafe Lift", "Category": "Restaurants and Other Eating Places", "Address": "428 N 13th St", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2023, "Total Visits": 115.0, "Total Visitors": 115.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 43.0, "Total Spend": 1111.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 32.81, "Median Spend per Customer": 32.81 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bzf", "Name": "Ramen", "Category": "Restaurants and Other Eating Places", "Address": "4357 Main St", "LATITUDE": 40.025762, "LONGITUDE": -75.22385, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 105.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 2.0, "Total Spend": 291.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 38.81, "Median Spend per Customer": 47.86 }, "geometry": { "type": "Point", "coordinates": [ -75.22385, 40.025762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "Name": "Locust Rendezvous", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1415 Locust St", "LATITUDE": 39.948577, "LONGITUDE": -75.165905, "DATE_RANGE_START": 2023, "Total Visits": 782.0, "Total Visitors": 494.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 8.0, "Total Spend": 9378.0, "Total Transactions": 199.0, "Total Customers": 149.0, "Median Spend per Transaction": 37.23, "Median Spend per Customer": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165905, 39.948577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pm9-whq", "Name": "Kurry Shack", "Category": "Restaurants and Other Eating Places", "Address": "6 N 3rd St", "LATITUDE": 39.950478, "LONGITUDE": -75.145895, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 8.0, "Total Spend": 185.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 26.58, "Median Spend per Customer": 34.13 }, "geometry": { "type": "Point", "coordinates": [ -75.145895, 39.950478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7v-whq", "Name": "NAPA Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1215 Cottman Ave", "LATITUDE": 40.059386, "LONGITUDE": -75.079587, "DATE_RANGE_START": 2023, "Total Visits": 55.0, "Total Visitors": 50.0, "POI_CBG": 421010338004.0, "Median Dwell Time": 7.0, "Total Spend": 15930.0, "Total Transactions": 108.0, "Total Customers": 83.0, "Median Spend per Transaction": 61.02, "Median Spend per Customer": 61.02 }, "geometry": { "type": "Point", "coordinates": [ -75.079587, 40.059386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1646 N 29th St", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2023, "Total Visits": 254.0, "Total Visitors": 244.0, "POI_CBG": 421010149005.0, "Median Dwell Time": 1.0, "Total Spend": 2120.0, "Total Transactions": 215.0, "Total Customers": 109.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "Name": "David's Mai Lai Wah", "Category": "Restaurants and Other Eating Places", "Address": "1001 Race St", "LATITUDE": 39.955619, "LONGITUDE": -75.156142, "DATE_RANGE_START": 2023, "Total Visits": 1959.0, "Total Visitors": 1383.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 11.0, "Total Spend": 4693.0, "Total Transactions": 147.0, "Total Customers": 129.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 39.955619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3yv", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.101772, "LONGITUDE": -75.007116, "DATE_RANGE_START": 2023, "Total Visits": 1571.0, "Total Visitors": 1135.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 56.0, "Total Spend": 1029.0, "Total Transactions": 26.0, "Total Customers": 25.0, "Median Spend per Transaction": 33.38, "Median Spend per Customer": 34.6 }, "geometry": { "type": "Point", "coordinates": [ -75.007116, 40.101772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-t9z", "Name": "Last Drop", "Category": "Restaurants and Other Eating Places", "Address": "1300 Pine St", "LATITUDE": 39.945156, "LONGITUDE": -75.163064, "DATE_RANGE_START": 2023, "Total Visits": 272.0, "Total Visitors": 225.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1.0, "Total Spend": 39.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.12, "Median Spend per Customer": 9.12 }, "geometry": { "type": "Point", "coordinates": [ -75.163064, 39.945156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-qs5", "Name": "Jet Wine Bar", "Category": "Restaurants and Other Eating Places", "Address": "1525 South St", "LATITUDE": 39.944107, "LONGITUDE": -75.168005, "DATE_RANGE_START": 2023, "Total Visits": 813.0, "Total Visitors": 282.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 232.0, "Total Spend": 2783.0, "Total Transactions": 74.0, "Total Customers": 59.0, "Median Spend per Transaction": 26.4, "Median Spend per Customer": 43.09 }, "geometry": { "type": "Point", "coordinates": [ -75.168005, 39.944107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7938 Dungan Rd", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2023, "Total Visits": 758.0, "Total Visitors": 554.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 12.0, "Total Spend": 598.0, "Total Transactions": 26.0, "Total Customers": 23.0, "Median Spend per Transaction": 18.3, "Median Spend per Customer": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "Name": "Rosario's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1256 S 15th St Fl 1", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 99.0, "POI_CBG": 421010022002.0, "Median Dwell Time": 11.0, "Total Spend": 2319.0, "Total Transactions": 75.0, "Total Customers": 58.0, "Median Spend per Transaction": 26.77, "Median Spend per Customer": 28.61 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pg9-ty9", "Name": "Stockyard Sandwich", "Category": "Restaurants and Other Eating Places", "Address": "1541 Spring Garden St", "LATITUDE": 39.96307, "LONGITUDE": -75.164329, "DATE_RANGE_START": 2023, "Total Visits": 100.0, "Total Visitors": 59.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 149.0, "Total Spend": 193.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 29.52, "Median Spend per Customer": 39.14 }, "geometry": { "type": "Point", "coordinates": [ -75.164329, 39.96307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "4030 City Ave", "LATITUDE": 40.007466, "LONGITUDE": -75.212296, "DATE_RANGE_START": 2023, "Total Visits": 772.0, "Total Visitors": 644.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 7.0, "Total Spend": 12786.0, "Total Transactions": 858.0, "Total Customers": 650.0, "Median Spend per Transaction": 12.69, "Median Spend per Customer": 14.95 }, "geometry": { "type": "Point", "coordinates": [ -75.212296, 40.007466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-ph8-qmk", "Name": "Blue Lagoon", "Category": "Restaurants and Other Eating Places", "Address": "7548 Haverford Ave", "LATITUDE": 39.978086, "LONGITUDE": -75.267183, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010098012.0, "Median Dwell Time": null, "Total Spend": 153.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.267183, 39.978086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-7wk", "Name": "Fuel", "Category": "Restaurants and Other Eating Places", "Address": "3200 Chestnut St", "LATITUDE": 39.953486, "LONGITUDE": -75.187952, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 15.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 304.0, "Total Spend": 2610.0, "Total Transactions": 155.0, "Total Customers": 113.0, "Median Spend per Transaction": 10.12, "Median Spend per Customer": 15.7 }, "geometry": { "type": "Point", "coordinates": [ -75.187952, 39.953486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnx-4jv", "Name": "Del Rossi's Cheesesteak", "Category": "Restaurants and Other Eating Places", "Address": "538 N 4th St", "LATITUDE": 39.961482, "LONGITUDE": -75.14504, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 78.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 113.0, "Total Spend": 5086.0, "Total Transactions": 183.0, "Total Customers": 152.0, "Median Spend per Transaction": 22.21, "Median Spend per Customer": 30.17 }, "geometry": { "type": "Point", "coordinates": [ -75.14504, 39.961482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-hnq", "Name": "TyeMeka's Soul Food", "Category": "Restaurants and Other Eating Places", "Address": "5920 Germantown Ave", "LATITUDE": 40.038113, "LONGITUDE": -75.176919, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 179.0, "POI_CBG": 421010238003.0, "Median Dwell Time": 178.0, "Total Spend": 364.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 24.3, "Median Spend per Customer": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.176919, 40.038113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3675 Market St", "LATITUDE": 39.956509, "LONGITUDE": -75.195045, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 15.0, "Total Spend": 1477.0, "Total Transactions": 188.0, "Total Customers": 162.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 6.94 }, "geometry": { "type": "Point", "coordinates": [ -75.195045, 39.956509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "Name": "LIDS", "Category": "Clothing Stores", "Address": "1301 Franklin Mills Cir", "LATITUDE": 40.085645, "LONGITUDE": -74.96201, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 66.0, "Total Spend": 2592.0, "Total Transactions": 50.0, "Total Customers": 46.0, "Median Spend per Transaction": 42.5, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96201, 40.085645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-p8m-v2k", "Name": "Moon Flower House", "Category": "Restaurants and Other Eating Places", "Address": "6414 Frankford Ave Unit 11", "LATITUDE": 40.029561, "LONGITUDE": -75.058358, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 64.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 66.0, "Total Spend": 259.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.058358, 40.029561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2211 Stenton Ave", "LATITUDE": 40.055835, "LONGITUDE": -75.157899, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 13.0, "POI_CBG": 421010265006.0, "Median Dwell Time": 26.0, "Total Spend": 7025.0, "Total Transactions": 517.0, "Total Customers": 326.0, "Median Spend per Transaction": 10.54, "Median Spend per Customer": 13.95 }, "geometry": { "type": "Point", "coordinates": [ -75.157899, 40.055835 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-dsq", "Name": "Mi Rancho Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "5498 Oxford Ave", "LATITUDE": 40.030773, "LONGITUDE": -75.08543, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 3.0, "Total Spend": 1182.0, "Total Transactions": 24.0, "Total Customers": 20.0, "Median Spend per Transaction": 38.34, "Median Spend per Customer": 50.29 }, "geometry": { "type": "Point", "coordinates": [ -75.08543, 40.030773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-t7q", "Name": "Maria's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4058 N 5th St", "LATITUDE": 40.013401, "LONGITUDE": -75.135844, "DATE_RANGE_START": 2023, "Total Visits": 200.0, "Total Visitors": 91.0, "POI_CBG": 421010197002.0, "Median Dwell Time": 10.0, "Total Spend": 1101.0, "Total Transactions": 58.0, "Total Customers": 46.0, "Median Spend per Transaction": 18.5, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135844, 40.013401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-8vz", "Name": "Old Madrid", "Category": "Restaurants and Other Eating Places", "Address": "5261 N 5th St", "LATITUDE": 40.031738, "LONGITUDE": -75.131244, "DATE_RANGE_START": 2023, "Total Visits": 98.0, "Total Visitors": 65.0, "POI_CBG": 421010286004.0, "Median Dwell Time": 44.0, "Total Spend": 703.0, "Total Transactions": 11.0, "Total Customers": 6.0, "Median Spend per Transaction": 48.0, "Median Spend per Customer": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131244, 40.031738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-qcq", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.038908, "LONGITUDE": -75.119161, "DATE_RANGE_START": 2023, "Total Visits": 592.0, "Total Visitors": 565.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 22.0, "Total Spend": 974.0, "Total Transactions": 18.0, "Total Customers": 10.0, "Median Spend per Transaction": 41.51, "Median Spend per Customer": 80.75 }, "geometry": { "type": "Point", "coordinates": [ -75.119161, 40.038908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvp-bff", "Name": "Beer Stop", "Category": "Beer, Wine, and Liquor Stores", "Address": "5746 Baltimore Ave", "LATITUDE": 39.945295, "LONGITUDE": -75.238695, "DATE_RANGE_START": 2023, "Total Visits": 728.0, "Total Visitors": 485.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 8.0, "Total Spend": 3516.0, "Total Transactions": 116.0, "Total Customers": 83.0, "Median Spend per Transaction": 27.97, "Median Spend per Customer": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.238695, 39.945295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5100 City Ave", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2023, "Total Visits": 601.0, "Total Visitors": 450.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 4.0, "Total Spend": 9375.0, "Total Transactions": 1136.0, "Total Customers": 559.0, "Median Spend per Transaction": 6.51, "Median Spend per Customer": 10.27 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7500 Frankford Ave", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2023, "Total Visits": 371.0, "Total Visitors": 256.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 10.0, "Total Spend": 6309.0, "Total Transactions": 739.0, "Total Customers": 271.0, "Median Spend per Transaction": 7.03, "Median Spend per Customer": 13.79 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zvf", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "2906 N Broad St # 08", "LATITUDE": 39.997217, "LONGITUDE": -75.154386, "DATE_RANGE_START": 2023, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 11.0, "Total Spend": 1262.0, "Total Transactions": 16.0, "Total Customers": 13.0, "Median Spend per Transaction": 38.15, "Median Spend per Customer": 57.31 }, "geometry": { "type": "Point", "coordinates": [ -75.154386, 39.997217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "Name": "Fiesta Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "8339 Germantown Ave", "LATITUDE": 40.075138, "LONGITUDE": -75.20454, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 184.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 12.0, "Total Spend": 1224.0, "Total Transactions": 65.0, "Total Customers": 48.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.20454, 40.075138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "8966 Frankford Ave", "LATITUDE": 40.052417, "LONGITUDE": -75.008753, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 11.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 111.0, "Total Spend": 8937.0, "Total Transactions": 224.0, "Total Customers": 173.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.008753, 40.052417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "266-222@628-pm4-sh5", "Name": "Ramayana Store", "Category": "Specialty Food Stores", "Address": "1941 S 8th St", "LATITUDE": 39.924377, "LONGITUDE": -75.159369, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 172.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 2.0, "Total Spend": 108.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159369, 39.924377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-tsq", "Name": "Chaes Food LLC", "Category": "Specialty Food Stores", "Address": "2100 N American St", "LATITUDE": 39.983616, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2023, "Total Visits": 426.0, "Total Visitors": 294.0, "POI_CBG": 421010162002.0, "Median Dwell Time": 156.0, "Total Spend": 7747.0, "Total Transactions": 36.0, "Total Customers": 19.0, "Median Spend per Transaction": 157.99, "Median Spend per Customer": 277.44 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.983616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "1575 N 52nd St Ste 704", "LATITUDE": 39.979432, "LONGITUDE": -75.222966, "DATE_RANGE_START": 2023, "Total Visits": 522.0, "Total Visitors": 467.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 18.0, "Total Spend": 25776.0, "Total Transactions": 808.0, "Total Customers": 698.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 25.87 }, "geometry": { "type": "Point", "coordinates": [ -75.222966, 39.979432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "Name": "1 Tippling Place", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2006 Chestnut St", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2023, "Total Visits": 307.0, "Total Visitors": 286.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 5.0, "Total Spend": 1949.0, "Total Transactions": 29.0, "Total Customers": 29.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "3711 Market St", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2023, "Total Visits": 6605.0, "Total Visitors": 3966.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 61.0, "Total Spend": 3954.0, "Total Transactions": 89.0, "Total Customers": 84.0, "Median Spend per Transaction": 42.7, "Median Spend per Customer": 46.96 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvx-vcq", "Name": "Gold Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1247 S 47th St", "LATITUDE": 39.943788, "LONGITUDE": -75.210959, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 173.0, "POI_CBG": 421010074001.0, "Median Dwell Time": 13.0, "Total Spend": 1078.0, "Total Transactions": 76.0, "Total Customers": 46.0, "Median Spend per Transaction": 12.9, "Median Spend per Customer": 14.59 }, "geometry": { "type": "Point", "coordinates": [ -75.210959, 39.943788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "Name": "The Sidecar Bar & Grille", "Category": "Restaurants and Other Eating Places", "Address": "2201 Christian St", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 138.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 38.0, "Total Spend": 762.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 58.93, "Median Spend per Customer": 58.93 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9p-z75", "Name": "Prince Of Pizza & Falafel", "Category": "Restaurants and Other Eating Places", "Address": "9987 Bustleton Ave", "LATITUDE": 40.101596, "LONGITUDE": -75.028395, "DATE_RANGE_START": 2023, "Total Visits": 1705.0, "Total Visitors": 1144.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 31.0, "Total Spend": 1450.0, "Total Transactions": 41.0, "Total Customers": 26.0, "Median Spend per Transaction": 20.7, "Median Spend per Customer": 25.68 }, "geometry": { "type": "Point", "coordinates": [ -75.028395, 40.101596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-w8v", "Name": "Friday Saturday Sunday", "Category": "Restaurants and Other Eating Places", "Address": "261 S 21st St", "LATITUDE": 39.948852, "LONGITUDE": -75.175934, "DATE_RANGE_START": 2023, "Total Visits": 1245.0, "Total Visitors": 884.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 29.0, "Total Spend": 5240.0, "Total Transactions": 49.0, "Total Customers": 41.0, "Median Spend per Transaction": 59.2, "Median Spend per Customer": 100.01 }, "geometry": { "type": "Point", "coordinates": [ -75.175934, 39.948852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "Name": "Spice C", "Category": "Restaurants and Other Eating Places", "Address": "131 N 10th St", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2023, "Total Visits": 296.0, "Total Visitors": 272.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 11.0, "Total Spend": 2295.0, "Total Transactions": 63.0, "Total Customers": 60.0, "Median Spend per Transaction": 33.6, "Median Spend per Customer": 33.68 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "Name": "Paisas Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4263 Frankford Ave", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2023, "Total Visits": 764.0, "Total Visitors": 515.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 2.0, "Total Spend": 505.0, "Total Transactions": 31.0, "Total Customers": 18.0, "Median Spend per Transaction": 13.62, "Median Spend per Customer": 22.28 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6543 Roosevelt Blvd Unit 18A", "LATITUDE": 40.034777, "LONGITUDE": -75.066117, "DATE_RANGE_START": 2023, "Total Visits": 851.0, "Total Visitors": 611.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 35.0, "Total Spend": 1418.0, "Total Transactions": 50.0, "Total Customers": 44.0, "Median Spend per Transaction": 25.54, "Median Spend per Customer": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.066117, 40.034777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-22g@628-pfy-h3q", "Name": "Rally House Ivy Ridge", "Category": "Clothing Stores", "Address": "7162 Ridge Ave", "LATITUDE": 40.044151, "LONGITUDE": -75.232923, "DATE_RANGE_START": 2023, "Total Visits": 2385.0, "Total Visitors": 1164.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 17.0, "Total Spend": 96.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.232923, 40.044151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hdv", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "1939 Callowhill St", "LATITUDE": 39.960789, "LONGITUDE": -75.170345, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 754.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 32.0, "Total Spend": 9765.0, "Total Transactions": 235.0, "Total Customers": 188.0, "Median Spend per Transaction": 32.2, "Median Spend per Customer": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.170345, 39.960789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvw-cdv", "Name": "Monica Restaurat", "Category": "Restaurants and Other Eating Places", "Address": "5501 Vine St", "LATITUDE": 39.965596, "LONGITUDE": -75.230016, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 89.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 3.0, "Total Spend": 35.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230016, 39.965596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2023, "Total Visits": 724.0, "Total Visitors": 618.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 9.0, "Total Spend": 6629.0, "Total Transactions": 400.0, "Total Customers": 314.0, "Median Spend per Transaction": 14.53, "Median Spend per Customer": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-rhq", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "5675 N Front St", "LATITUDE": 40.03837, "LONGITUDE": -75.117191, "DATE_RANGE_START": 2023, "Total Visits": 338.0, "Total Visitors": 327.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 52.0, "Total Spend": 3828.0, "Total Transactions": 106.0, "Total Customers": 90.0, "Median Spend per Transaction": 28.97, "Median Spend per Customer": 32.14 }, "geometry": { "type": "Point", "coordinates": [ -75.117191, 40.03837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "Name": "Bottle Bar East", "Category": "Restaurants and Other Eating Places", "Address": "1308 Frankford Ave", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2023, "Total Visits": 164.0, "Total Visitors": 145.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 5.0, "Total Spend": 16809.0, "Total Transactions": 595.0, "Total Customers": 372.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "401 N 21st St", "LATITUDE": 39.962248, "LONGITUDE": -75.172948, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 21.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 662.0, "Total Spend": 13099.0, "Total Transactions": 421.0, "Total Customers": 329.0, "Median Spend per Transaction": 28.37, "Median Spend per Customer": 33.35 }, "geometry": { "type": "Point", "coordinates": [ -75.172948, 39.962248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-hh5", "Name": "Goodfella's Vape Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "1800 W Ritner St", "LATITUDE": 39.921333, "LONGITUDE": -75.17706, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 19.0, "POI_CBG": 421010038001.0, "Median Dwell Time": 3.0, "Total Spend": 142.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17706, 39.921333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@628-p75-9cq", "Name": "Deals", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8290 Frankford Ave", "LATITUDE": 40.043742, "LONGITUDE": -75.019324, "DATE_RANGE_START": 2023, "Total Visits": 3458.0, "Total Visitors": 1551.0, "POI_CBG": 421019802001.0, "Median Dwell Time": 13.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 16.99, "Median Spend per Customer": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.019324, 40.043742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-6x5", "Name": "Harp & Crown", "Category": "Restaurants and Other Eating Places", "Address": "1525 Sansom St", "LATITUDE": 39.950579, "LONGITUDE": -75.166788, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 3242.0, "Total Transactions": 46.0, "Total Customers": 40.0, "Median Spend per Transaction": 38.62, "Median Spend per Customer": 54.68 }, "geometry": { "type": "Point", "coordinates": [ -75.166788, 39.950579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-d35", "Name": "honeygrow", "Category": "Restaurants and Other Eating Places", "Address": "1601 N Broad St", "LATITUDE": 39.978421, "LONGITUDE": -75.157332, "DATE_RANGE_START": 2023, "Total Visits": 517.0, "Total Visitors": 402.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 2.0, "Total Spend": 590.0, "Total Transactions": 29.0, "Total Customers": 20.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 24.59 }, "geometry": { "type": "Point", "coordinates": [ -75.157332, 39.978421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "Name": "Good Day Deli", "Category": "Restaurants and Other Eating Places", "Address": "37 S 20th St", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2023, "Total Visits": 309.0, "Total Visitors": 276.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 1431.0, "Total Transactions": 91.0, "Total Customers": 70.0, "Median Spend per Transaction": 15.51, "Median Spend per Customer": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "416 N 63rd St # 36", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2023, "Total Visits": 486.0, "Total Visitors": 383.0, "POI_CBG": 421010101005.0, "Median Dwell Time": 5.0, "Total Spend": 10582.0, "Total Transactions": 1036.0, "Total Customers": 328.0, "Median Spend per Transaction": 8.6, "Median Spend per Customer": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgh-vmk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1936 Liacouras Walk", "LATITUDE": 39.982441, "LONGITUDE": -75.155993, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 32.0, "Total Spend": 1595.0, "Total Transactions": 120.0, "Total Customers": 89.0, "Median Spend per Transaction": 13.17, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 39.982441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "Name": "Stateside", "Category": "Restaurants and Other Eating Places", "Address": "1536 E Passyunk Ave", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 157.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 20.0, "Total Spend": 6230.0, "Total Transactions": 134.0, "Total Customers": 109.0, "Median Spend per Transaction": 34.32, "Median Spend per Customer": 38.04 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "Name": "The Twisted Tail", "Category": "Restaurants and Other Eating Places", "Address": "509 S 2nd St", "LATITUDE": 39.941831, "LONGITUDE": -75.145229, "DATE_RANGE_START": 2023, "Total Visits": 301.0, "Total Visitors": 292.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 52.0, "Total Spend": 1824.0, "Total Transactions": 25.0, "Total Customers": 21.0, "Median Spend per Transaction": 54.53, "Median Spend per Customer": 68.9 }, "geometry": { "type": "Point", "coordinates": [ -75.145229, 39.941831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Butler St", "LATITUDE": 39.997309, "LONGITUDE": -75.092724, "DATE_RANGE_START": 2023, "Total Visits": 1811.0, "Total Visitors": 1483.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 12.0, "Total Spend": 32929.0, "Total Transactions": 1722.0, "Total Customers": 1157.0, "Median Spend per Transaction": 16.1, "Median Spend per Customer": 21.83 }, "geometry": { "type": "Point", "coordinates": [ -75.092724, 39.997309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "Name": "Jamba", "Category": "Restaurants and Other Eating Places", "Address": "Philadelphia Int L Airport Spc C-9A", "LATITUDE": 39.876746, "LONGITUDE": -75.247167, "DATE_RANGE_START": 2023, "Total Visits": 144.0, "Total Visitors": 132.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 492.0, "Total Transactions": 38.0, "Total Customers": 35.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.247167, 39.876746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "6863 Bustleton Ave", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2023, "Total Visits": 48.0, "Total Visitors": 48.0, "POI_CBG": 421010314022.0, "Median Dwell Time": 26.0, "Total Spend": 2704.0, "Total Transactions": 53.0, "Total Customers": 43.0, "Median Spend per Transaction": 36.19, "Median Spend per Customer": 49.36 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5233 Torresdale Ave # 45", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2023, "Total Visits": 341.0, "Total Visitors": 212.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 11.0, "Total Spend": 2157.0, "Total Transactions": 268.0, "Total Customers": 132.0, "Median Spend per Transaction": 6.96, "Median Spend per Customer": 9.89 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "Name": "Somerset Splits", "Category": "Restaurants and Other Eating Places", "Address": "2600 E Somerset St", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2023, "Total Visits": 143.0, "Total Visitors": 125.0, "POI_CBG": 421010180013.0, "Median Dwell Time": 93.0, "Total Spend": 1439.0, "Total Transactions": 71.0, "Total Customers": 63.0, "Median Spend per Transaction": 17.93, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-pm4-pjv", "Name": "Di Bruno Bros", "Category": "Restaurants and Other Eating Places", "Address": "930 S 9th St", "LATITUDE": 39.938055, "LONGITUDE": -75.158145, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 406.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 12.0, "Total Spend": 813.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 23.35, "Median Spend per Customer": 32.88 }, "geometry": { "type": "Point", "coordinates": [ -75.158145, 39.938055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "12375 Academy Rd", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2023, "Total Visits": 838.0, "Total Visitors": 577.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 7143.0, "Total Transactions": 897.0, "Total Customers": 319.0, "Median Spend per Transaction": 7.3, "Median Spend per Customer": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2620 Cottman Ave", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2023, "Total Visits": 383.0, "Total Visitors": 244.0, "POI_CBG": 421010314021.0, "Median Dwell Time": 14.0, "Total Spend": 12698.0, "Total Transactions": 321.0, "Total Customers": 219.0, "Median Spend per Transaction": 25.62, "Median Spend per Customer": 38.31 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "301 S 52nd St", "LATITUDE": 39.954266, "LONGITUDE": -75.225768, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010085003.0, "Median Dwell Time": 5.0, "Total Spend": 1398.0, "Total Transactions": 50.0, "Total Customers": 39.0, "Median Spend per Transaction": 21.93, "Median Spend per Customer": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225768, 39.954266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pj6-k4v", "Name": "H Mart", "Category": "Grocery Stores", "Address": "6201 N Front St", "LATITUDE": 40.044993, "LONGITUDE": -75.117488, "DATE_RANGE_START": 2023, "Total Visits": 4739.0, "Total Visitors": 2381.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 23.0, "Total Spend": 124221.0, "Total Transactions": 3798.0, "Total Customers": 2984.0, "Median Spend per Transaction": 15.65, "Median Spend per Customer": 16.59 }, "geometry": { "type": "Point", "coordinates": [ -75.117488, 40.044993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p7w-v2k", "Name": "Finish Line", "Category": "Shoe Stores", "Address": "2399 Cottman Ave", "LATITUDE": 40.046751, "LONGITUDE": -75.054635, "DATE_RANGE_START": 2023, "Total Visits": 2253.0, "Total Visitors": 1595.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 37.0, "Total Spend": 19944.0, "Total Transactions": 259.0, "Total Customers": 35.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 127.5 }, "geometry": { "type": "Point", "coordinates": [ -75.054635, 40.046751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj3-p7q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1955 W Hunting Park Ave", "LATITUDE": 40.01382, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 441.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 20.0, "Total Spend": 1729.0, "Total Transactions": 104.0, "Total Customers": 75.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 40.01382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "Name": "Harbor Freight Tools", "Category": "Building Material and Supplies Dealers", "Address": "151 Franklin Mills Blvd", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2023, "Total Visits": 565.0, "Total Visitors": 478.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 38693.0, "Total Transactions": 601.0, "Total Customers": 441.0, "Median Spend per Transaction": 29.35, "Median Spend per Customer": 41.01 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "1575 N 52nd St", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2023, "Total Visits": 142.0, "Total Visitors": 127.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 35.0, "Total Spend": 845.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 62.3, "Median Spend per Customer": 166.35 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "Name": "East Falls Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4024 Ridge Ave", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010170001.0, "Median Dwell Time": null, "Total Spend": 7670.0, "Total Transactions": 302.0, "Total Customers": 158.0, "Median Spend per Transaction": 22.46, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1500 Spruce St", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2023, "Total Visits": 778.0, "Total Visitors": 590.0, "POI_CBG": 421010012021.0, "Median Dwell Time": 5.0, "Total Spend": 27195.0, "Total Transactions": 1898.0, "Total Customers": 726.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 18.03 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "1356 Franklin Mills Cir", "LATITUDE": 40.085956, "LONGITUDE": -74.963406, "DATE_RANGE_START": 2023, "Total Visits": 1301.0, "Total Visitors": 1051.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 25.0, "Total Spend": 6521.0, "Total Transactions": 124.0, "Total Customers": 116.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -74.963406, 40.085956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-wp9", "Name": "Artist & Craftsman Supply", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "307 Market St", "LATITUDE": 39.950372, "LONGITUDE": -75.146048, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 8.0, "Total Spend": 594.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 17.52, "Median Spend per Customer": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.146048, 39.950372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "Name": "Gallelli Formal Wear", "Category": "Clothing Stores", "Address": "904 Cottman Ave", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 113.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 26.0, "Total Spend": 2280.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 140.0, "Median Spend per Customer": 160.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8m-v2k", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6438 Sackett St Unit 19", "LATITUDE": 40.029571, "LONGITUDE": -75.058564, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 144.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 24.0, "Total Spend": 1668.0, "Total Transactions": 144.0, "Total Customers": 88.0, "Median Spend per Transaction": 8.36, "Median Spend per Customer": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.058564, 40.029571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-223@628-pmb-5mk", "Name": "Paper On Pine", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1310 Sansom St", "LATITUDE": 39.949779, "LONGITUDE": -75.162653, "DATE_RANGE_START": 2023, "Total Visits": 4502.0, "Total Visitors": 2743.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 87.0, "Total Spend": 1001.0, "Total Transactions": 51.0, "Total Customers": 49.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.162653, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4201 Walnut St # 59", "LATITUDE": 39.954962, "LONGITUDE": -75.206929, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 18.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 197.0, "Total Spend": 487.0, "Total Transactions": 64.0, "Total Customers": 40.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.206929, 39.954962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6399 Oxford Ave", "LATITUDE": 40.045136, "LONGITUDE": -75.088252, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 3.0, "Total Spend": 3482.0, "Total Transactions": 167.0, "Total Customers": 91.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088252, 40.045136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "Name": "ALDO", "Category": "Shoe Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.951749, "LONGITUDE": -75.168187, "DATE_RANGE_START": 2023, "Total Visits": 876.0, "Total Visitors": 611.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 34.0, "Total Spend": 2930.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 79.97, "Median Spend per Customer": 79.97 }, "geometry": { "type": "Point", "coordinates": [ -75.168187, 39.951749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7770 Dungan Rd", "LATITUDE": 40.065634, "LONGITUDE": -75.071931, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 7.0, "Total Spend": 682.0, "Total Transactions": 28.0, "Total Customers": 20.0, "Median Spend per Transaction": 22.72, "Median Spend per Customer": 26.61 }, "geometry": { "type": "Point", "coordinates": [ -75.071931, 40.065634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pfz-ckf", "Name": "Manayunk Farmers Market", "Category": "Grocery Stores", "Address": "4120 Main St", "LATITUDE": 40.022685, "LONGITUDE": -75.219324, "DATE_RANGE_START": 2023, "Total Visits": 346.0, "Total Visitors": 298.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 59.0, "Total Spend": 115.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 35.62, "Median Spend per Customer": 35.62 }, "geometry": { "type": "Point", "coordinates": [ -75.219324, 40.022685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "Name": "The Fresh Market", "Category": "Grocery Stores", "Address": "8208 Germantown Ave # 18", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2023, "Total Visits": 608.0, "Total Visitors": 357.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 14.0, "Total Spend": 27247.0, "Total Transactions": 570.0, "Total Customers": 354.0, "Median Spend per Transaction": 31.28, "Median Spend per Customer": 39.43 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9p-qj9", "Name": "Green Farmers Market", "Category": "Specialty Food Stores", "Address": "824 Red Lion Rd", "LATITUDE": 40.102668, "LONGITUDE": -75.031061, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 40.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 3.0, "Total Spend": 48.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 19.11, "Median Spend per Customer": 19.11 }, "geometry": { "type": "Point", "coordinates": [ -75.031061, 40.102668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "Name": "Frankford Hall", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1210 Frankford Ave", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2023, "Total Visits": 633.0, "Total Visitors": 527.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 32.0, "Total Spend": 30732.0, "Total Transactions": 1180.0, "Total Customers": 829.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 29.83 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp5-djv", "Name": "Rico Mexican Tacos", "Category": "Restaurants and Other Eating Places", "Address": "2084 E Allegheny Ave", "LATITUDE": 39.992042, "LONGITUDE": -75.10984, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 155.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 17.0, "Total Spend": 113.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 25.58, "Median Spend per Customer": 45.05 }, "geometry": { "type": "Point", "coordinates": [ -75.10984, 39.992042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-whq", "Name": "Ocean City", "Category": "Restaurants and Other Eating Places", "Address": "234 N 9th St", "LATITUDE": 39.95631, "LONGITUDE": -75.15439, "DATE_RANGE_START": 2023, "Total Visits": 353.0, "Total Visitors": 342.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 43.0, "Total Spend": 2256.0, "Total Transactions": 38.0, "Total Customers": 31.0, "Median Spend per Transaction": 46.7, "Median Spend per Customer": 60.07 }, "geometry": { "type": "Point", "coordinates": [ -75.15439, 39.95631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-td9", "Name": "Volver", "Category": "Restaurants and Other Eating Places", "Address": "300 S Broad St", "LATITUDE": 39.947333, "LONGITUDE": -75.16571, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 10.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 4.0, "Total Spend": 2297.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 75.8, "Median Spend per Customer": 77.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16571, 39.947333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "4001 N 5th St", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 190.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 6.0, "Total Spend": 3108.0, "Total Transactions": 187.0, "Total Customers": 138.0, "Median Spend per Transaction": 13.21, "Median Spend per Customer": 17.56 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-9s5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "2809 S Front St", "LATITUDE": 39.912003, "LONGITUDE": -75.149828, "DATE_RANGE_START": 2023, "Total Visits": 2296.0, "Total Visitors": 1851.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 357.0, "Total Transactions": 21.0, "Total Customers": 13.0, "Median Spend per Transaction": 16.7, "Median Spend per Customer": 16.76 }, "geometry": { "type": "Point", "coordinates": [ -75.149828, 39.912003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "120 W Oregon Ave", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2023, "Total Visits": 401.0, "Total Visitors": 352.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 10.0, "Total Spend": 12648.0, "Total Transactions": 780.0, "Total Customers": 565.0, "Median Spend per Transaction": 12.79, "Median Spend per Customer": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@63s-dvy-xwk", "Name": "Lil' Pop Shop", "Category": "Restaurants and Other Eating Places", "Address": "265 S 44th St", "LATITUDE": 39.953164, "LONGITUDE": -75.210265, "DATE_RANGE_START": 2023, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010087013.0, "Median Dwell Time": null, "Total Spend": 235.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 5.78, "Median Spend per Customer": 5.78 }, "geometry": { "type": "Point", "coordinates": [ -75.210265, 39.953164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pn5", "Name": "Tortilleria San Roman", "Category": "Restaurants and Other Eating Places", "Address": "951 S 9th St", "LATITUDE": 39.937643, "LONGITUDE": -75.157989, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 5.0, "Total Spend": 128.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 19.75, "Median Spend per Customer": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.157989, 39.937643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "Name": "Two Brothers", "Category": "Grocery Stores", "Address": "5400 Willows Ave", "LATITUDE": 39.943876, "LONGITUDE": -75.228134, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 101.0, "POI_CBG": 421010071024.0, "Median Dwell Time": 4.0, "Total Spend": 168.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.228134, 39.943876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "263-222@628-pm3-y5f", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1248 S Clarion St", "LATITUDE": 39.934047, "LONGITUDE": -75.166056, "DATE_RANGE_START": 2023, "Total Visits": 89.0, "Total Visitors": 83.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 1.0, "Total Spend": 125.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 8.17, "Median Spend per Customer": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.166056, 39.934047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1301 Rhawn St", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2023, "Total Visits": 951.0, "Total Visitors": 714.0, "POI_CBG": 421010337022.0, "Median Dwell Time": 14.0, "Total Spend": 6763.0, "Total Transactions": 321.0, "Total Customers": 207.0, "Median Spend per Transaction": 11.72, "Median Spend per Customer": 21.14 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7972 Castor Ave", "LATITUDE": 40.06154, "LONGITUDE": -75.05684, "DATE_RANGE_START": 2023, "Total Visits": 980.0, "Total Visitors": 822.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 11.0, "Total Spend": 5727.0, "Total Transactions": 228.0, "Total Customers": 153.0, "Median Spend per Transaction": 17.2, "Median Spend per Customer": 21.68 }, "geometry": { "type": "Point", "coordinates": [ -75.05684, 40.06154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-v75", "Name": "Buffalo Billiards", "Category": "Restaurants and Other Eating Places", "Address": "118 Chestnut St", "LATITUDE": 39.948002, "LONGITUDE": -75.143309, "DATE_RANGE_START": 2023, "Total Visits": 1002.0, "Total Visitors": 759.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 49.0, "Total Spend": 25082.0, "Total Transactions": 882.0, "Total Customers": 566.0, "Median Spend per Transaction": 21.63, "Median Spend per Customer": 33.52 }, "geometry": { "type": "Point", "coordinates": [ -75.143309, 39.948002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3668 Aramingo Ave Ste 9A", "LATITUDE": 39.995182, "LONGITUDE": -75.095704, "DATE_RANGE_START": 2023, "Total Visits": 413.0, "Total Visitors": 371.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 8.0, "Total Spend": 476.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 16.95, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.095704, 39.995182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-t5f", "Name": "Sum Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "679 N Broad St", "LATITUDE": 39.965955, "LONGITUDE": -75.160323, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 209.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 1.0, "Total Spend": 379.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 44.7, "Median Spend per Customer": 52.51 }, "geometry": { "type": "Point", "coordinates": [ -75.160323, 39.965955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p82-nqz", "Name": "Matz Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "6520 Castor Ave", "LATITUDE": 40.04141, "LONGITUDE": -75.075896, "DATE_RANGE_START": 2023, "Total Visits": 120.0, "Total Visitors": 109.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 85.0, "Total Spend": 295.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 117.8, "Median Spend per Customer": 117.8 }, "geometry": { "type": "Point", "coordinates": [ -75.075896, 40.04141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-73q", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "121 S Broad St", "LATITUDE": 39.950321, "LONGITUDE": -75.163776, "DATE_RANGE_START": 2023, "Total Visits": 1052.0, "Total Visitors": 744.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 11.0, "Total Spend": 1655.0, "Total Transactions": 83.0, "Total Customers": 76.0, "Median Spend per Transaction": 17.6, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.163776, 39.950321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2054 Red Lion Rd", "LATITUDE": 40.099595, "LONGITUDE": -75.024526, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 133.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 17.0, "Total Spend": 954.0, "Total Transactions": 143.0, "Total Customers": 79.0, "Median Spend per Transaction": 5.34, "Median Spend per Customer": 7.21 }, "geometry": { "type": "Point", "coordinates": [ -75.024526, 40.099595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2749 W Hunting Park Ave Ste 130", "LATITUDE": 40.007696, "LONGITUDE": -75.174522, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 2.0, "Total Spend": 4851.0, "Total Transactions": 514.0, "Total Customers": 283.0, "Median Spend per Transaction": 7.74, "Median Spend per Customer": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174522, 40.007696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "1544 Christian St", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 58.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 3.0, "Total Spend": 655.0, "Total Transactions": 76.0, "Total Customers": 44.0, "Median Spend per Transaction": 6.87, "Median Spend per Customer": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j9z", "Name": "aka.", "Category": "Traveler Accommodation", "Address": "135 S 18th St", "LATITUDE": 39.95037, "LONGITUDE": -75.17042, "DATE_RANGE_START": 2023, "Total Visits": 2147.0, "Total Visitors": 1645.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 6.0, "Total Spend": 60.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.17042, 39.95037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pm5-2ff", "Name": "Wokano", "Category": "Restaurants and Other Eating Places", "Address": "1100 Washington Ave", "LATITUDE": 39.937034, "LONGITUDE": -75.161864, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 4.0, "Total Spend": 1279.0, "Total Transactions": 21.0, "Total Customers": 15.0, "Median Spend per Transaction": 58.5, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161864, 39.937034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-p89-nt9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5597 Tulip St", "LATITUDE": 40.012382, "LONGITUDE": -75.067917, "DATE_RANGE_START": 2023, "Total Visits": 297.0, "Total Visitors": 263.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 44.0, "Total Spend": 7093.0, "Total Transactions": 365.0, "Total Customers": 271.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 21.56 }, "geometry": { "type": "Point", "coordinates": [ -75.067917, 40.012382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5753 Wayne Ave", "LATITUDE": 40.032695, "LONGITUDE": -75.179789, "DATE_RANGE_START": 2023, "Total Visits": 351.0, "Total Visitors": 281.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 5.0, "Total Spend": 10344.0, "Total Transactions": 1284.0, "Total Customers": 582.0, "Median Spend per Transaction": 6.88, "Median Spend per Customer": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.179789, 40.032695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pnw-nkf", "Name": "Lost Bread Co", "Category": "Specialty Food Stores", "Address": "1313 N Howard St", "LATITUDE": 39.970863, "LONGITUDE": -75.13643, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 3.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 288.0, "Total Spend": 2521.0, "Total Transactions": 193.0, "Total Customers": 157.0, "Median Spend per Transaction": 11.37, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13643, 39.970863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "Name": "Academy Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10101 Academy Rd Ste 105", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 4.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 5.0, "Total Spend": 40.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 7.31, "Median Spend per Customer": 4.63 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2715 S Front St", "LATITUDE": 39.913049, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 6.0, "Total Spend": 153.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 17.23, "Median Spend per Customer": 15.15 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.913049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phz-6c5", "Name": "L & M Food Market", "Category": "Grocery Stores", "Address": "4863 D St", "LATITUDE": 40.0235, "LONGITUDE": -75.115742, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010289023.0, "Median Dwell Time": null, "Total Spend": 111.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.115742, 40.0235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp4-kxq", "Name": "Quick Stop", "Category": "Grocery Stores", "Address": "2518 Frankford Ave", "LATITUDE": 39.983855, "LONGITUDE": -75.125542, "DATE_RANGE_START": 2023, "Total Visits": 416.0, "Total Visitors": 248.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 5.0, "Total Spend": 3763.0, "Total Transactions": 306.0, "Total Customers": 155.0, "Median Spend per Transaction": 11.48, "Median Spend per Customer": 16.56 }, "geometry": { "type": "Point", "coordinates": [ -75.125542, 39.983855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "Name": "Northeast Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "7324 Castor Ave", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 142.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 14.0, "Total Spend": 2087.0, "Total Transactions": 60.0, "Total Customers": 49.0, "Median Spend per Transaction": 31.25, "Median Spend per Customer": 33.75 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "Name": "Angelo's Pizza House", "Category": "Restaurants and Other Eating Places", "Address": "3901 Frankford Ave", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 123.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 8.0, "Total Spend": 653.0, "Total Transactions": 35.0, "Total Customers": 25.0, "Median Spend per Transaction": 11.72, "Median Spend per Customer": 16.01 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "Name": "Frank's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3600 Fisk Ave", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 3.0, "Total Spend": 2045.0, "Total Transactions": 91.0, "Total Customers": 48.0, "Median Spend per Transaction": 19.18, "Median Spend per Customer": 33.58 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pmb-8y9", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "901 Market St", "LATITUDE": 39.951633, "LONGITUDE": -75.156013, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 1658.0, "Total Transactions": 203.0, "Total Customers": 138.0, "Median Spend per Transaction": 6.98, "Median Spend per Customer": 7.93 }, "geometry": { "type": "Point", "coordinates": [ -75.156013, 39.951633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "Name": "Green Leaf Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7522 Haverford Ave", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 215.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 62.0, "Total Spend": 1326.0, "Total Transactions": 60.0, "Total Customers": 51.0, "Median Spend per Transaction": 19.1, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p86-gtv", "Name": "All In Time", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "7948 Oxford Ave Ste 101", "LATITUDE": 40.075731, "LONGITUDE": -75.085308, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 213.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 6.0, "Total Spend": 311.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.085308, 40.075731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "Name": "Street Side", "Category": "Restaurants and Other Eating Places", "Address": "165 W Girard Ave", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 101.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 1.0, "Total Spend": 782.0, "Total Transactions": 39.0, "Total Customers": 38.0, "Median Spend per Transaction": 20.09, "Median Spend per Customer": 20.55 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-ghq", "Name": "Buccann", "Category": "Restaurants and Other Eating Places", "Address": "7254 Castor Ave", "LATITUDE": 40.051098, "LONGITUDE": -75.066611, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 155.0, "POI_CBG": 421010310001.0, "Median Dwell Time": 140.0, "Total Spend": 938.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 108.8, "Median Spend per Customer": 107.32 }, "geometry": { "type": "Point", "coordinates": [ -75.066611, 40.051098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-pm4-p5f", "Name": "Sophie's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "522 Washington Ave", "LATITUDE": 39.934749, "LONGITUDE": -75.153259, "DATE_RANGE_START": 2023, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 3.0, "Total Spend": 1216.0, "Total Transactions": 21.0, "Total Customers": 20.0, "Median Spend per Transaction": 62.1, "Median Spend per Customer": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153259, 39.934749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dvy-mx5", "Name": "Tea Do", "Category": "Restaurants and Other Eating Places", "Address": "3816 Chestnut St Ste 36", "LATITUDE": 39.95462, "LONGITUDE": -75.199919, "DATE_RANGE_START": 2023, "Total Visits": 1701.0, "Total Visitors": 1199.0, "POI_CBG": 421010088012.0, "Median Dwell Time": 9.0, "Total Spend": 45.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 12.29, "Median Spend per Customer": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.199919, 39.95462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-p35", "Name": "Gold Coast Market", "Category": "Grocery Stores", "Address": "6538 Castor Ave", "LATITUDE": 40.041915, "LONGITUDE": -75.075423, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 202.0, "POI_CBG": 421010311011.0, "Median Dwell Time": 1.0, "Total Spend": 645.0, "Total Transactions": 54.0, "Total Customers": 39.0, "Median Spend per Transaction": 8.43, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.075423, 40.041915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pj3-x89", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5017 N Broad St # 25", "LATITUDE": 40.030003, "LONGITUDE": -75.14637, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 11.0, "POI_CBG": 421010282001.0, "Median Dwell Time": 6.0, "Total Spend": 616.0, "Total Transactions": 16.0, "Total Customers": 13.0, "Median Spend per Transaction": 30.19, "Median Spend per Customer": 38.16 }, "geometry": { "type": "Point", "coordinates": [ -75.14637, 40.030003 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-zs5", "Name": "Lady Love", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "510 South St", "LATITUDE": 39.941785, "LONGITUDE": -75.151232, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 155.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 2.0, "Total Spend": 1093.0, "Total Transactions": 24.0, "Total Customers": 20.0, "Median Spend per Transaction": 47.5, "Median Spend per Customer": 51.29 }, "geometry": { "type": "Point", "coordinates": [ -75.151232, 39.941785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22b@628-pmb-7h5", "Name": "Bain's Deli", "Category": "Restaurants and Other Eating Places", "Address": "200 S Broad St Ste FC3", "LATITUDE": 39.949072, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2023, "Total Visits": 5351.0, "Total Visitors": 3774.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 9.0, "Total Spend": 77.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 9.67, "Median Spend per Customer": 9.67 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.949072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pp4-kxq", "Name": "Cloud 9 Clay", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2527 Frankford Ave", "LATITUDE": 39.983701, "LONGITUDE": -75.125112, "DATE_RANGE_START": 2023, "Total Visits": 29.0, "Total Visitors": 9.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 543.0, "Total Spend": 338.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 28.72, "Median Spend per Customer": 28.72 }, "geometry": { "type": "Point", "coordinates": [ -75.125112, 39.983701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm3-vzz", "Name": "LaScala's Birra", "Category": "Restaurants and Other Eating Places", "Address": "1700 E Passyunk Ave", "LATITUDE": 39.928592, "LONGITUDE": -75.165123, "DATE_RANGE_START": 2023, "Total Visits": 475.0, "Total Visitors": 312.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 18.0, "Total Spend": 5877.0, "Total Transactions": 93.0, "Total Customers": 86.0, "Median Spend per Transaction": 56.71, "Median Spend per Customer": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165123, 39.928592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "Name": "Giovanni's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "5604 Greene St", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2023, "Total Visits": 125.0, "Total Visitors": 114.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 5.0, "Total Spend": 456.0, "Total Transactions": 25.0, "Total Customers": 20.0, "Median Spend per Transaction": 15.45, "Median Spend per Customer": 15.04 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "Name": "Talk of the Town", "Category": "Restaurants and Other Eating Places", "Address": "7804 Limekiln Pike", "LATITUDE": 40.071898, "LONGITUDE": -75.161365, "DATE_RANGE_START": 2023, "Total Visits": 344.0, "Total Visitors": 283.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 4.0, "Total Spend": 1339.0, "Total Transactions": 51.0, "Total Customers": 43.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 28.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161365, 40.071898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@63s-dvy-mx5", "Name": "NAM Vietnamese Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3816 Chestnut St Spc 2", "LATITUDE": 39.95508, "LONGITUDE": -75.199446, "DATE_RANGE_START": 2023, "Total Visits": 1701.0, "Total Visitors": 1199.0, "POI_CBG": 421010088012.0, "Median Dwell Time": 9.0, "Total Spend": 3446.0, "Total Transactions": 120.0, "Total Customers": 94.0, "Median Spend per Transaction": 23.22, "Median Spend per Customer": 27.59 }, "geometry": { "type": "Point", "coordinates": [ -75.199446, 39.95508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1923 N 54th St", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 76.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 1.0, "Total Spend": 82.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "Name": "Pizzeria Stella", "Category": "Restaurants and Other Eating Places", "Address": "420 S 2nd St", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 373.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 6.0, "Total Spend": 5586.0, "Total Transactions": 78.0, "Total Customers": 70.0, "Median Spend per Transaction": 59.0, "Median Spend per Customer": 60.03 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "Name": "Cold Stone Creamery", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978197, "LONGITUDE": -75.119468, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 15.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 354.0, "Total Spend": 3921.0, "Total Transactions": 204.0, "Total Customers": 180.0, "Median Spend per Transaction": 16.09, "Median Spend per Customer": 16.23 }, "geometry": { "type": "Point", "coordinates": [ -75.119468, 39.978197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "Name": "J&J Super Market", "Category": "Grocery Stores", "Address": "1839 S 7th St", "LATITUDE": 39.925374, "LONGITUDE": -75.157469, "DATE_RANGE_START": 2023, "Total Visits": 323.0, "Total Visitors": 189.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 9.0, "Total Spend": 94.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 10.22 }, "geometry": { "type": "Point", "coordinates": [ -75.157469, 39.925374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2900 S 70th St", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2023, "Total Visits": 547.0, "Total Visitors": 402.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 6.0, "Total Spend": 151.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 8.17, "Median Spend per Customer": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "Name": "CLo", "Category": "Shoe Stores", "Address": "3511 N Lee St", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2023, "Total Visits": 99.0, "Total Visitors": 16.0, "POI_CBG": 421010195022.0, "Median Dwell Time": 11.0, "Total Spend": 1288.0, "Total Transactions": 48.0, "Total Customers": 44.0, "Median Spend per Transaction": 22.76, "Median Spend per Customer": 19.51 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pmf-kvf", "Name": "Buena Onda", "Category": "Restaurants and Other Eating Places", "Address": "114 S 20th St", "LATITUDE": 39.95152, "LONGITUDE": -75.173859, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 24.0, "Total Spend": 87.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.77, "Median Spend per Customer": 24.63 }, "geometry": { "type": "Point", "coordinates": [ -75.173859, 39.95152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "Name": "Yamitsuki Ramen", "Category": "Restaurants and Other Eating Places", "Address": "1028 Arch St", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2023, "Total Visits": 263.0, "Total Visitors": 184.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 19.0, "Total Spend": 3990.0, "Total Transactions": 93.0, "Total Customers": 88.0, "Median Spend per Transaction": 33.34, "Median Spend per Customer": 40.05 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pm9-s5z", "Name": "PJ Clarkes", "Category": "Restaurants and Other Eating Places", "Address": "601 Walnut St", "LATITUDE": 39.948105, "LONGITUDE": -75.151179, "DATE_RANGE_START": 2023, "Total Visits": 1630.0, "Total Visitors": 1025.0, "POI_CBG": 421010010011.0, "Median Dwell Time": 91.0, "Total Spend": 86.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 34.42, "Median Spend per Customer": 34.42 }, "geometry": { "type": "Point", "coordinates": [ -75.151179, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmf-y7q", "Name": "Sunset Social", "Category": "Restaurants and Other Eating Places", "Address": "129 S 30th St", "LATITUDE": 39.952424, "LONGITUDE": -75.183701, "DATE_RANGE_START": 2023, "Total Visits": 2052.0, "Total Visitors": 1169.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 60.0, "Total Spend": 3195.0, "Total Transactions": 127.0, "Total Customers": 94.0, "Median Spend per Transaction": 22.92, "Median Spend per Customer": 31.02 }, "geometry": { "type": "Point", "coordinates": [ -75.183701, 39.952424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pm9-yd9", "Name": "Famous 4th Street Delicatessen", "Category": "Restaurants and Other Eating Places", "Address": "700 S 4th St", "LATITUDE": 39.940489, "LONGITUDE": -75.149633, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 232.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 8.0, "Total Spend": 8728.0, "Total Transactions": 227.0, "Total Customers": 184.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 36.99 }, "geometry": { "type": "Point", "coordinates": [ -75.149633, 39.940489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-73q", "Name": "Dr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.947797, "LONGITUDE": -75.193456, "DATE_RANGE_START": 2023, "Total Visits": 13803.0, "Total Visitors": 7404.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 99.0, "Total Spend": 4699.0, "Total Transactions": 851.0, "Total Customers": 347.0, "Median Spend per Transaction": 4.65, "Median Spend per Customer": 8.45 }, "geometry": { "type": "Point", "coordinates": [ -75.193456, 39.947797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "Name": "Pub & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1946 Lombard St", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2023, "Total Visits": 154.0, "Total Visitors": 154.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 21.0, "Total Spend": 2213.0, "Total Transactions": 40.0, "Total Customers": 9.0, "Median Spend per Transaction": 44.25, "Median Spend per Customer": 95.4 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-223@628-p7x-7dv", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "2060 Cottman Ave", "LATITUDE": 40.05021, "LONGITUDE": -75.064783, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 128.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 9.0, "Total Spend": 116.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 42.61, "Median Spend per Customer": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.064783, 40.05021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-9cq", "Name": "Fu Wah Mini Market", "Category": "Grocery Stores", "Address": "810 S 47th St", "LATITUDE": 39.948295, "LONGITUDE": -75.217025, "DATE_RANGE_START": 2023, "Total Visits": 160.0, "Total Visitors": 143.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 1.0, "Total Spend": 6715.0, "Total Transactions": 395.0, "Total Customers": 243.0, "Median Spend per Transaction": 14.79, "Median Spend per Customer": 20.66 }, "geometry": { "type": "Point", "coordinates": [ -75.217025, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6417 Harbison Ave", "LATITUDE": 40.032694, "LONGITUDE": -75.063231, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 8.0, "Total Spend": 5985.0, "Total Transactions": 296.0, "Total Customers": 248.0, "Median Spend per Transaction": 16.17, "Median Spend per Customer": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.063231, 40.032694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9r-4y9", "Name": "Chuck E. Cheese's", "Category": "Restaurants and Other Eating Places", "Address": "9175 Roosevelt Blvd Ste 2", "LATITUDE": 40.076158, "LONGITUDE": -75.031371, "DATE_RANGE_START": 2023, "Total Visits": 375.0, "Total Visitors": 352.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 30.0, "Total Spend": 884.0, "Total Transactions": 29.0, "Total Customers": 25.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 26.36 }, "geometry": { "type": "Point", "coordinates": [ -75.031371, 40.076158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "3900 City Ave", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2023, "Total Visits": 1805.0, "Total Visitors": 1105.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 166.0, "Total Spend": 18347.0, "Total Transactions": 787.0, "Total Customers": 478.0, "Median Spend per Transaction": 13.81, "Median Spend per Customer": 20.29 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "Name": "Seorabol Korean Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5734 Old Second St", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2023, "Total Visits": 351.0, "Total Visitors": 86.0, "POI_CBG": 421010274023.0, "Median Dwell Time": 369.0, "Total Spend": 2253.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 68.85, "Median Spend per Customer": 86.36 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phy-bhq", "Name": "Old English Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9 Hunting Park Ave", "LATITUDE": 40.015571, "LONGITUDE": -75.140754, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 15.0, "POI_CBG": 421010197005.0, "Median Dwell Time": 80.0, "Total Spend": 1877.0, "Total Transactions": 69.0, "Total Customers": 56.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.140754, 40.015571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "Name": "Butcher Bar", "Category": "Restaurants and Other Eating Places", "Address": "2034 Chestnut St", "LATITUDE": 39.9521, "LONGITUDE": -75.174892, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 24.0, "Total Spend": 6639.0, "Total Transactions": 99.0, "Total Customers": 81.0, "Median Spend per Transaction": 49.43, "Median Spend per Customer": 57.31 }, "geometry": { "type": "Point", "coordinates": [ -75.174892, 39.9521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-xwk", "Name": "aka.", "Category": "Traveler Accommodation", "Address": "2929 Walnut St", "LATITUDE": 39.952015, "LONGITUDE": -75.18362, "DATE_RANGE_START": 2023, "Total Visits": 9106.0, "Total Visitors": 6194.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 21.0, "Total Spend": 158.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.18362, 39.952015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "Name": "Bleu Martini", "Category": "Restaurants and Other Eating Places", "Address": "24 S 2nd St", "LATITUDE": 39.949361, "LONGITUDE": -75.144203, "DATE_RANGE_START": 2023, "Total Visits": 876.0, "Total Visitors": 655.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 17.0, "Total Spend": 16737.0, "Total Transactions": 240.0, "Total Customers": 157.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 53.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144203, 39.949361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "Name": "So Korean Grill", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St Ste 120", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2023, "Total Visits": 401.0, "Total Visitors": 283.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 10.0, "Total Spend": 3231.0, "Total Transactions": 23.0, "Total Customers": 20.0, "Median Spend per Transaction": 131.55, "Median Spend per Customer": 137.33 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-j35", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "127 S 18th St", "LATITUDE": 39.950756, "LONGITUDE": -75.17035, "DATE_RANGE_START": 2023, "Total Visits": 271.0, "Total Visitors": 254.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 4.0, "Total Spend": 1146.0, "Total Transactions": 51.0, "Total Customers": 50.0, "Median Spend per Transaction": 20.38, "Median Spend per Customer": 20.38 }, "geometry": { "type": "Point", "coordinates": [ -75.17035, 39.950756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "942 Market St", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2023, "Total Visits": 430.0, "Total Visitors": 368.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 5971.0, "Total Transactions": 420.0, "Total Customers": 319.0, "Median Spend per Transaction": 11.99, "Median Spend per Customer": 13.18 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmd-zfz", "Name": "Small Oven Pastry Shop", "Category": "Restaurants and Other Eating Places", "Address": "2204 Washington Ave", "LATITUDE": 39.939225, "LONGITUDE": -75.180201, "DATE_RANGE_START": 2023, "Total Visits": 365.0, "Total Visitors": 324.0, "POI_CBG": 421010020001.0, "Median Dwell Time": 4.0, "Total Spend": 200.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 23.14, "Median Spend per Customer": 21.28 }, "geometry": { "type": "Point", "coordinates": [ -75.180201, 39.939225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "Name": "Secret Garden", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "7631 Ridge Ave", "LATITUDE": 40.051665, "LONGITUDE": -75.235851, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010218002.0, "Median Dwell Time": 22.0, "Total Spend": 4517.0, "Total Transactions": 65.0, "Total Customers": 53.0, "Median Spend per Transaction": 35.59, "Median Spend per Customer": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.235851, 40.051665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvt-zzz", "Name": "Island Food Market Corp", "Category": "Grocery Stores", "Address": "7298 Woodland Ave", "LATITUDE": 39.917119, "LONGITUDE": -75.246077, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 124.0, "POI_CBG": 421010063004.0, "Median Dwell Time": 5.0, "Total Spend": 44.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 1.0, "Median Spend per Customer": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -75.246077, 39.917119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7901 Frankford Ave", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2023, "Total Visits": 500.0, "Total Visitors": 359.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 7.0, "Total Spend": 71.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 19.58, "Median Spend per Customer": 28.17 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-68v", "Name": "Virgin Hair Outlet", "Category": "Clothing Stores", "Address": "2117 Cottman Ave", "LATITUDE": 40.050173, "LONGITUDE": -75.06287, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 34.0, "Total Spend": 570.0, "Total Transactions": 15.0, "Total Customers": 14.0, "Median Spend per Transaction": 14.02, "Median Spend per Customer": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.050173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6151 N Broad St", "LATITUDE": 40.047172, "LONGITUDE": -75.142507, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 19.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 124.0, "Total Spend": 4891.0, "Total Transactions": 187.0, "Total Customers": 129.0, "Median Spend per Transaction": 20.05, "Median Spend per Customer": 20.11 }, "geometry": { "type": "Point", "coordinates": [ -75.142507, 40.047172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5814 Woodland Ave", "LATITUDE": 39.931156, "LONGITUDE": -75.225634, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 19.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 9.0, "Total Spend": 592.0, "Total Transactions": 68.0, "Total Customers": 46.0, "Median Spend per Transaction": 6.85, "Median Spend per Customer": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -75.225634, 39.931156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-phy-kmk", "Name": "Hong Kong", "Category": "Restaurants and Other Eating Places", "Address": "4901 N 5th St", "LATITUDE": 40.025869, "LONGITUDE": -75.132575, "DATE_RANGE_START": 2023, "Total Visits": 1511.0, "Total Visitors": 1142.0, "POI_CBG": 421010286003.0, "Median Dwell Time": 23.0, "Total Spend": 14367.0, "Total Transactions": 321.0, "Total Customers": 213.0, "Median Spend per Transaction": 30.62, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.132575, 40.025869 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-224@628-pnx-ch5", "Name": "Goldie", "Category": "Restaurants and Other Eating Places", "Address": "1601 N Front St", "LATITUDE": 39.974539, "LONGITUDE": -75.134161, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 15.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 1.0, "Total Spend": 143.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 12.27, "Median Spend per Customer": 12.27 }, "geometry": { "type": "Point", "coordinates": [ -75.134161, 39.974539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@63s-dw4-rzf", "Name": "Gachi Sushi and Noodle", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895158, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 579.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 20.87, "Median Spend per Customer": 20.14 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.895158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "Name": "Pizza & Steak Master", "Category": "Restaurants and Other Eating Places", "Address": "6627 Chew Ave", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2023, "Total Visits": 30.0, "Total Visitors": 23.0, "POI_CBG": 421010253001.0, "Median Dwell Time": 5.0, "Total Spend": 621.0, "Total Transactions": 31.0, "Total Customers": 16.0, "Median Spend per Transaction": 16.68, "Median Spend per Customer": 24.07 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-j7q", "Name": "&pizza", "Category": "Restaurants and Other Eating Places", "Address": "1800 Chestnut St", "LATITUDE": 39.951498, "LONGITUDE": -75.170529, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 223.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 228.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 20.86, "Median Spend per Customer": 20.86 }, "geometry": { "type": "Point", "coordinates": [ -75.170529, 39.951498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgd-zfz", "Name": "Ramen Bar", "Category": "Restaurants and Other Eating Places", "Address": "3400 Lancaster Ave", "LATITUDE": 39.957167, "LONGITUDE": -75.192099, "DATE_RANGE_START": 2023, "Total Visits": 233.0, "Total Visitors": 179.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 21.0, "Total Spend": 3560.0, "Total Transactions": 70.0, "Total Customers": 68.0, "Median Spend per Transaction": 39.04, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.192099, 39.957167 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "Name": "Fishtown Social", "Category": "Restaurants and Other Eating Places", "Address": "1525 Frankford Ave", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 1.0, "Total Spend": 4327.0, "Total Transactions": 85.0, "Total Customers": 63.0, "Median Spend per Transaction": 42.92, "Median Spend per Customer": 51.54 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pm9-tqf", "Name": "Wetzel's Pretzels", "Category": "Restaurants and Other Eating Places", "Address": "1101 Market St Spc 2025", "LATITUDE": 39.952391, "LONGITUDE": -75.157424, "DATE_RANGE_START": 2023, "Total Visits": 686.0, "Total Visitors": 465.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 9.0, "Total Spend": 2673.0, "Total Transactions": 281.0, "Total Customers": 257.0, "Median Spend per Transaction": 7.87, "Median Spend per Customer": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.157424, 39.952391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "51 Bethlehem Pike", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 140.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 9.0, "Total Spend": 828.0, "Total Transactions": 46.0, "Total Customers": 43.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 16.35 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-6rk", "Name": "Magic Carpet Foods", "Category": "Restaurants and Other Eating Places", "Address": "36th @ Spruce St", "LATITUDE": 39.950491, "LONGITUDE": -75.195575, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 7.0, "Total Spend": 206.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.195575, 39.950491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1901 W Oregon Ave", "LATITUDE": 39.918394, "LONGITUDE": -75.180382, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 473.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 44.0, "Total Spend": 9352.0, "Total Transactions": 450.0, "Total Customers": 298.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 17.34 }, "geometry": { "type": "Point", "coordinates": [ -75.180382, 39.918394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p86-hbk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7941 Oxford Ave", "LATITUDE": 40.075681, "LONGITUDE": -75.084662, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 11.0, "Total Spend": 4586.0, "Total Transactions": 228.0, "Total Customers": 173.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.084662, 40.075681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-qfz", "Name": "Rex at the Royal", "Category": "Restaurants and Other Eating Places", "Address": "1524 South St", "LATITUDE": 39.943832, "LONGITUDE": -75.168235, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 46.0, "Total Spend": 231.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 92.4, "Median Spend per Customer": 92.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168235, 39.943832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgm-4vz", "Name": "Franklin's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3521 Bowman St", "LATITUDE": 40.01092, "LONGITUDE": -75.189423, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 212.0, "POI_CBG": 421010207003.0, "Median Dwell Time": 70.0, "Total Spend": 1301.0, "Total Transactions": 35.0, "Total Customers": 13.0, "Median Spend per Transaction": 29.68, "Median Spend per Customer": 31.6 }, "geometry": { "type": "Point", "coordinates": [ -75.189423, 40.01092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-9vf", "Name": "Soul Boat", "Category": "Restaurants and Other Eating Places", "Address": "1422 Dickinson St", "LATITUDE": 39.931707, "LONGITUDE": -75.169132, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 56.0, "POI_CBG": 421010030024.0, "Median Dwell Time": 230.0, "Total Spend": 127.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 17.12, "Median Spend per Customer": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.169132, 39.931707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-xyv", "Name": "Little Saigon Cafe", "Category": "Restaurants and Other Eating Places", "Address": "220 N 10th St", "LATITUDE": 39.956146, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2023, "Total Visits": 866.0, "Total Visitors": 608.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 11.0, "Total Spend": 1053.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 43.0, "Median Spend per Customer": 47.65 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.956146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "Name": "Kitchen Kapers", "Category": "Home Furnishings Stores", "Address": "8530 Germantown Ave", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2023, "Total Visits": 343.0, "Total Visitors": 269.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 17.0, "Total Spend": 3660.0, "Total Transactions": 59.0, "Total Customers": 53.0, "Median Spend per Transaction": 35.62, "Median Spend per Customer": 37.75 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3440 Market St", "LATITUDE": 39.9557, "LONGITUDE": -75.192556, "DATE_RANGE_START": 2023, "Total Visits": 2543.0, "Total Visitors": 1613.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 14.0, "Total Spend": 878.0, "Total Transactions": 83.0, "Total Customers": 38.0, "Median Spend per Transaction": 6.49, "Median Spend per Customer": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.192556, 39.9557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "Name": "O'Neals Pub", "Category": "Restaurants and Other Eating Places", "Address": "611 S 3rd St", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 165.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 25.0, "Total Spend": 4412.0, "Total Transactions": 120.0, "Total Customers": 86.0, "Median Spend per Transaction": 25.62, "Median Spend per Customer": 29.84 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pp2-2kz", "Name": "Aramingo Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992487, "LONGITUDE": -75.10127, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 18.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 28.0, "Total Spend": 6600.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 276.8, "Median Spend per Customer": 302.8 }, "geometry": { "type": "Point", "coordinates": [ -75.10127, 39.992487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p82-8y9", "Name": "Casa Del Mofongo", "Category": "Restaurants and Other Eating Places", "Address": "1059 Van Kirk St", "LATITUDE": 40.036175, "LONGITUDE": -75.088212, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010390002.0, "Median Dwell Time": 17.0, "Total Spend": 3035.0, "Total Transactions": 73.0, "Total Customers": 45.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 53.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088212, 40.036175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2301 W Passyunk Ave", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2023, "Total Visits": 497.0, "Total Visitors": 336.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 6.0, "Total Spend": 2208.0, "Total Transactions": 64.0, "Total Customers": 40.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pfv-649", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6555 Greene St", "LATITUDE": 40.043975, "LONGITUDE": -75.190733, "DATE_RANGE_START": 2023, "Total Visits": 292.0, "Total Visitors": 147.0, "POI_CBG": 421010237001.0, "Median Dwell Time": 44.0, "Total Spend": 1385.0, "Total Transactions": 134.0, "Total Customers": 104.0, "Median Spend per Transaction": 6.32, "Median Spend per Customer": 7.3 }, "geometry": { "type": "Point", "coordinates": [ -75.190733, 40.043975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "Name": "Accent On Animals", "Category": "Other Miscellaneous Store Retailers", "Address": "804 South St", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2023, "Total Visits": 857.0, "Total Visitors": 678.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 2.0, "Total Spend": 1831.0, "Total Transactions": 69.0, "Total Customers": 64.0, "Median Spend per Transaction": 20.63, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-hbk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2121 W Lehigh Ave Ste 5", "LATITUDE": 39.996446, "LONGITUDE": -75.165985, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 142.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 6.0, "Total Spend": 3401.0, "Total Transactions": 138.0, "Total Customers": 89.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.165985, 39.996446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pgm-68v", "Name": "The Black Squirrel Pub and Haunt", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3749 Midvale Ave", "LATITUDE": 40.009228, "LONGITUDE": -75.193913, "DATE_RANGE_START": 2023, "Total Visits": 486.0, "Total Visitors": 244.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 1000.0, "Total Spend": 4559.0, "Total Transactions": 60.0, "Total Customers": 48.0, "Median Spend per Transaction": 63.62, "Median Spend per Customer": 84.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193913, 40.009228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1900 Welsh Rd # 10", "LATITUDE": 40.081907, "LONGITUDE": -75.037884, "DATE_RANGE_START": 2023, "Total Visits": 351.0, "Total Visitors": 185.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 11.0, "Total Spend": 192.0, "Total Transactions": 20.0, "Total Customers": 9.0, "Median Spend per Transaction": 7.06, "Median Spend per Customer": 16.73 }, "geometry": { "type": "Point", "coordinates": [ -75.037884, 40.081907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg4-mx5", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "5301 Chew Ave Ste B", "LATITUDE": 40.043579, "LONGITUDE": -75.159459, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 9.0, "Total Spend": 1225.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 56.91, "Median Spend per Customer": 56.91 }, "geometry": { "type": "Point", "coordinates": [ -75.159459, 40.043579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj3-wzf", "Name": "Shop and Carry Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1301 Lindley Ave", "LATITUDE": 40.030414, "LONGITUDE": -75.144615, "DATE_RANGE_START": 2023, "Total Visits": 235.0, "Total Visitors": 184.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 3.0, "Total Spend": 225.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144615, 40.030414 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2001 Pennsylvania Ave", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2023, "Total Visits": 1650.0, "Total Visitors": 987.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 13.0, "Total Spend": 157482.0, "Total Transactions": 4660.0, "Total Customers": 2439.0, "Median Spend per Transaction": 23.31, "Median Spend per Customer": 37.27 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2201 W Allegheny Ave", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 137.0, "POI_CBG": 421010171003.0, "Median Dwell Time": 11.0, "Total Spend": 2196.0, "Total Transactions": 101.0, "Total Customers": 74.0, "Median Spend per Transaction": 14.12, "Median Spend per Customer": 19.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-zs5", "Name": "Golden Triangle", "Category": "Restaurants and Other Eating Places", "Address": "610 S 5th St", "LATITUDE": 39.94154, "LONGITUDE": -75.15097, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 188.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 1.0, "Total Spend": 132.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 39.42, "Median Spend per Customer": 39.42 }, "geometry": { "type": "Point", "coordinates": [ -75.15097, 39.94154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-sbk", "Name": "King Seafood", "Category": "Specialty Food Stores", "Address": "4429 N American St", "LATITUDE": 40.018964, "LONGITUDE": -75.130503, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 170.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 17.0, "Total Spend": 1160.0, "Total Transactions": 20.0, "Total Customers": 13.0, "Median Spend per Transaction": 41.58, "Median Spend per Customer": 91.58 }, "geometry": { "type": "Point", "coordinates": [ -75.130503, 40.018964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "2383 Cottman Ave Ste 38B", "LATITUDE": 40.046836, "LONGITUDE": -75.055497, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 170.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 24.0, "Total Spend": 2945.0, "Total Transactions": 78.0, "Total Customers": 25.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 30.74 }, "geometry": { "type": "Point", "coordinates": [ -75.055497, 40.046836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "31 Snyder Ave", "LATITUDE": 39.921804, "LONGITUDE": -75.146278, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 15.0, "Total Spend": 1434.0, "Total Transactions": 69.0, "Total Customers": 65.0, "Median Spend per Transaction": 17.79, "Median Spend per Customer": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -75.146278, 39.921804 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6429 Rising Sun Ave", "LATITUDE": 40.050212, "LONGITUDE": -75.09463, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010306003.0, "Median Dwell Time": 7.0, "Total Spend": 929.0, "Total Transactions": 125.0, "Total Customers": 80.0, "Median Spend per Transaction": 5.97, "Median Spend per Customer": 7.02 }, "geometry": { "type": "Point", "coordinates": [ -75.09463, 40.050212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "Name": "The Little Apple", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4361 Main St", "LATITUDE": 40.025783, "LONGITUDE": -75.223965, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 103.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 9.0, "Total Spend": 3732.0, "Total Transactions": 85.0, "Total Customers": 79.0, "Median Spend per Transaction": 27.54, "Median Spend per Customer": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.223965, 40.025783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1100 S 10th St", "LATITUDE": 39.936536, "LONGITUDE": -75.160372, "DATE_RANGE_START": 2023, "Total Visits": 942.0, "Total Visitors": 896.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 6.0, "Total Spend": 1972.0, "Total Transactions": 65.0, "Total Customers": 54.0, "Median Spend per Transaction": 29.63, "Median Spend per Customer": 31.97 }, "geometry": { "type": "Point", "coordinates": [ -75.160372, 39.936536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "Name": "Tandy Leather Factory", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "11000 Roosevelt Blvd Ste 300", "LATITUDE": 40.102488, "LONGITUDE": -75.008893, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 204.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 44.0, "Total Spend": 820.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 85.28, "Median Spend per Customer": 96.63 }, "geometry": { "type": "Point", "coordinates": [ -75.008893, 40.102488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7y-dn5", "Name": "China Panda", "Category": "Restaurants and Other Eating Places", "Address": "6421 Rising Sun Ave", "LATITUDE": 40.04995, "LONGITUDE": -75.094913, "DATE_RANGE_START": 2023, "Total Visits": 76.0, "Total Visitors": 39.0, "POI_CBG": 421010306003.0, "Median Dwell Time": 24.0, "Total Spend": 105.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 41.99, "Median Spend per Customer": 41.99 }, "geometry": { "type": "Point", "coordinates": [ -75.094913, 40.04995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8h-789", "Name": "Palm Tree Deli", "Category": "Restaurants and Other Eating Places", "Address": "7201 Torresdale Ave", "LATITUDE": 40.029254, "LONGITUDE": -75.03641, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 168.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 8.0, "Total Spend": 1188.0, "Total Transactions": 96.0, "Total Customers": 79.0, "Median Spend per Transaction": 11.74, "Median Spend per Customer": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.03641, 40.029254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm3-vpv", "Name": "Mesh Vintage", "Category": "Clothing Stores", "Address": "1820 E Passyunk Ave", "LATITUDE": 39.927333, "LONGITUDE": -75.166704, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 145.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 5.0, "Total Spend": 675.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166704, 39.927333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "Name": "Chubby's Fox Chase Deli", "Category": "Restaurants and Other Eating Places", "Address": "537 Hoffnagle St", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 39.0, "POI_CBG": 421010341006.0, "Median Dwell Time": 3.0, "Total Spend": 1079.0, "Total Transactions": 49.0, "Total Customers": 35.0, "Median Spend per Transaction": 17.84, "Median Spend per Customer": 26.48 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "1037 Chestnut St", "LATITUDE": 39.95033, "LONGITUDE": -75.158429, "DATE_RANGE_START": 2023, "Total Visits": 1286.0, "Total Visitors": 942.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 11.0, "Total Spend": 8676.0, "Total Transactions": 676.0, "Total Customers": 491.0, "Median Spend per Transaction": 11.48, "Median Spend per Customer": 13.64 }, "geometry": { "type": "Point", "coordinates": [ -75.158429, 39.95033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-s89", "Name": "Pen and Pencil", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1522 Latimer St", "LATITUDE": 39.948013, "LONGITUDE": -75.167208, "DATE_RANGE_START": 2023, "Total Visits": 257.0, "Total Visitors": 198.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 4.0, "Total Spend": 1428.0, "Total Transactions": 50.0, "Total Customers": 35.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167208, 39.948013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "Name": "Scrub Pro", "Category": "Clothing Stores", "Address": "817 Adams Ave # 819", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2023, "Total Visits": 2509.0, "Total Visitors": 1736.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 22.0, "Total Spend": 4519.0, "Total Transactions": 71.0, "Total Customers": 68.0, "Median Spend per Transaction": 49.57, "Median Spend per Customer": 48.79 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-5fz", "Name": "Fergie's Pub", "Category": "Restaurants and Other Eating Places", "Address": "1214 Sansom St", "LATITUDE": 39.949621, "LONGITUDE": -75.161121, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 190.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 44.0, "Total Spend": 80.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 31.9, "Median Spend per Customer": 31.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161121, 39.949621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7b-kpv", "Name": "China City", "Category": "Restaurants and Other Eating Places", "Address": "9200 Frankford Ave", "LATITUDE": 40.055685, "LONGITUDE": -75.004529, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010348031.0, "Median Dwell Time": null, "Total Spend": 68.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.004529, 40.055685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "Name": "Melograno", "Category": "Restaurants and Other Eating Places", "Address": "2012 Sansom St", "LATITUDE": 39.950954, "LONGITUDE": -75.17418, "DATE_RANGE_START": 2023, "Total Visits": 1702.0, "Total Visitors": 1169.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 36.0, "Total Spend": 687.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 116.12, "Median Spend per Customer": 101.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17418, 39.950954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm3-vzz", "Name": "A Novel Idea", "Category": "Book Stores and News Dealers", "Address": "1726 E Passyunk Ave", "LATITUDE": 39.928207, "LONGITUDE": -75.165695, "DATE_RANGE_START": 2023, "Total Visits": 475.0, "Total Visitors": 312.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 18.0, "Total Spend": 521.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.165695, 39.928207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "3800 Aramingo Ave", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2023, "Total Visits": 3222.0, "Total Visitors": 2336.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 22.0, "Total Spend": 43052.0, "Total Transactions": 509.0, "Total Customers": 334.0, "Median Spend per Transaction": 21.54, "Median Spend per Customer": 23.66 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 Castor Ave", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2023, "Total Visits": 6695.0, "Total Visitors": 4557.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 26.0, "Total Spend": 156505.0, "Total Transactions": 2866.0, "Total Customers": 1772.0, "Median Spend per Transaction": 34.99, "Median Spend per Customer": 53.04 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3401 Lancaster Ave", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2023, "Total Visits": 505.0, "Total Visitors": 347.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 4.0, "Total Spend": 1195.0, "Total Transactions": 145.0, "Total Customers": 64.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 15.45 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-xbk", "Name": "Yellow Front", "Category": "Specialty Food Stores", "Address": "1700 Ridge Ave", "LATITUDE": 39.970311, "LONGITUDE": -75.165314, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 128.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 11.0, "Total Spend": 5868.0, "Total Transactions": 321.0, "Total Customers": 118.0, "Median Spend per Transaction": 16.42, "Median Spend per Customer": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.165314, 39.970311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9m-gtv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3200 Red Lion Rd # 92", "LATITUDE": 40.080249, "LONGITUDE": -74.994665, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 6.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 5.0, "Total Spend": 5719.0, "Total Transactions": 254.0, "Total Customers": 144.0, "Median Spend per Transaction": 12.21, "Median Spend per Customer": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -74.994665, 40.080249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6337 N Broad St", "LATITUDE": 40.050107, "LONGITUDE": -75.14187, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 194.0, "POI_CBG": 421010268004.0, "Median Dwell Time": 3.0, "Total Spend": 841.0, "Total Transactions": 56.0, "Total Customers": 45.0, "Median Spend per Transaction": 7.64, "Median Spend per Customer": 10.31 }, "geometry": { "type": "Point", "coordinates": [ -75.14187, 40.050107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm9-w6k", "Name": "Old City Flowers", "Category": "Florists", "Address": "31 S 3rd St", "LATITUDE": 39.949403, "LONGITUDE": -75.145661, "DATE_RANGE_START": 2023, "Total Visits": 116.0, "Total Visitors": 83.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 2.0, "Total Spend": 244.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145661, 39.949403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-vcq", "Name": "United Refrigeration", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "8420 Enterprise Ave", "LATITUDE": 39.882256, "LONGITUDE": -75.227642, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 7.0, "Total Spend": 8877.0, "Total Transactions": 25.0, "Total Customers": 15.0, "Median Spend per Transaction": 118.81, "Median Spend per Customer": 89.4 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.882256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p9q-yn5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1619 Grant Ave", "LATITUDE": 40.087259, "LONGITUDE": -75.039036, "DATE_RANGE_START": 2023, "Total Visits": 1007.0, "Total Visitors": 853.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 111.0, "Total Spend": 489.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.039036, 40.087259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@63s-dvx-jjv", "Name": "Paulino Grocery", "Category": "Grocery Stores", "Address": "4984 W Thompson St", "LATITUDE": 39.973271, "LONGITUDE": -75.222149, "DATE_RANGE_START": 2023, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010111002.0, "Median Dwell Time": null, "Total Spend": 47.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 8.88, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222149, 39.973271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg4-bx5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6201 Germantown Ave", "LATITUDE": 40.042838, "LONGITUDE": -75.179833, "DATE_RANGE_START": 2023, "Total Visits": 316.0, "Total Visitors": 243.0, "POI_CBG": 421010252002.0, "Median Dwell Time": 11.0, "Total Spend": 10170.0, "Total Transactions": 427.0, "Total Customers": 261.0, "Median Spend per Transaction": 17.69, "Median Spend per Customer": 24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.179833, 40.042838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "1100 S Columbus Blvd # 20", "LATITUDE": 39.932573, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 16.0, "Total Spend": 2459.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 47.54, "Median Spend per Customer": 60.8 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-ygk", "Name": "Straight From the Heart Bookstore", "Category": "Book Stores and News Dealers", "Address": "13500 Philmont Ave", "LATITUDE": 40.130243, "LONGITUDE": -75.016695, "DATE_RANGE_START": 2023, "Total Visits": 1041.0, "Total Visitors": 542.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 89.0, "Total Spend": 494.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 38.5, "Median Spend per Customer": 44.6 }, "geometry": { "type": "Point", "coordinates": [ -75.016695, 40.130243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-k75", "Name": "Ross Stores", "Category": "Department Stores", "Address": "9906 Roosevelt Blvd", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2023, "Total Visits": 742.0, "Total Visitors": 716.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 28.0, "Total Spend": 6171.0, "Total Transactions": 165.0, "Total Customers": 118.0, "Median Spend per Transaction": 26.97, "Median Spend per Customer": 32.48 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph6-rkz", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "5256 W Jefferson St", "LATITUDE": 39.979911, "LONGITUDE": -75.227215, "DATE_RANGE_START": 2023, "Total Visits": 144.0, "Total Visitors": 78.0, "POI_CBG": 421010119003.0, "Median Dwell Time": 93.0, "Total Spend": 358.0, "Total Transactions": 43.0, "Total Customers": 35.0, "Median Spend per Transaction": 5.99, "Median Spend per Customer": 7.39 }, "geometry": { "type": "Point", "coordinates": [ -75.227215, 39.979911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj9-54v", "Name": "Smooth Like That", "Category": "Clothing Stores", "Address": "5705 N Broad St", "LATITUDE": 40.040013, "LONGITUDE": -75.144022, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 199.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 29.0, "Total Spend": 1102.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 69.99, "Median Spend per Customer": 97.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144022, 40.040013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1100 S Delaware Ave", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 215.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 46.0, "Total Spend": 3102.0, "Total Transactions": 51.0, "Total Customers": 44.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-ks5", "Name": "Nine", "Category": "Restaurants and Other Eating Places", "Address": "2829 W Girard Ave", "LATITUDE": 39.97475, "LONGITUDE": -75.182819, "DATE_RANGE_START": 2023, "Total Visits": 567.0, "Total Visitors": 222.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 570.0, "Total Spend": 1004.0, "Total Transactions": 83.0, "Total Customers": 45.0, "Median Spend per Transaction": 9.57, "Median Spend per Customer": 14.38 }, "geometry": { "type": "Point", "coordinates": [ -75.182819, 39.97475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "4010 Robbins Ave", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2023, "Total Visits": 440.0, "Total Visitors": 299.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 16.0, "Total Spend": 3128.0, "Total Transactions": 66.0, "Total Customers": 63.0, "Median Spend per Transaction": 38.59, "Median Spend per Customer": 39.77 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@63s-dvy-pn5", "Name": "Hatch & Coop", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954712, "LONGITUDE": -75.202101, "DATE_RANGE_START": 2023, "Total Visits": 436.0, "Total Visitors": 249.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 37.0, "Total Spend": 9349.0, "Total Transactions": 455.0, "Total Customers": 347.0, "Median Spend per Transaction": 17.64, "Median Spend per Customer": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.202101, 39.954712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-wx5", "Name": "Gap Factory Store", "Category": "Clothing Stores", "Address": "1875 Franklin Mills Cir Spc NO163", "LATITUDE": 40.09026, "LONGITUDE": -74.960858, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 36.0, "Total Spend": 844.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 36.47, "Median Spend per Customer": 36.47 }, "geometry": { "type": "Point", "coordinates": [ -74.960858, 40.09026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-dvz", "Name": "Pietro Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1501 Packer Ave", "LATITUDE": 39.912309, "LONGITUDE": -75.174217, "DATE_RANGE_START": 2023, "Total Visits": 83.0, "Total Visitors": 63.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 2.0, "Total Spend": 820.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 327.24, "Median Spend per Customer": 327.24 }, "geometry": { "type": "Point", "coordinates": [ -75.174217, 39.912309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm9-yn5", "Name": "Bluebond Guitars", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "511 S 4th St", "LATITUDE": 39.942296, "LONGITUDE": -75.148871, "DATE_RANGE_START": 2023, "Total Visits": 380.0, "Total Visitors": 257.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 1.0, "Total Spend": 616.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148871, 39.942296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7z-tgk", "Name": "Kitchen B & L", "Category": "Restaurants and Other Eating Places", "Address": "925 Levick St", "LATITUDE": 40.044921, "LONGITUDE": -75.086402, "DATE_RANGE_START": 2023, "Total Visits": 200.0, "Total Visitors": 194.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 8.0, "Total Spend": 4060.0, "Total Transactions": 194.0, "Total Customers": 114.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.086402, 40.044921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "Name": "Jack's place", "Category": "Restaurants and Other Eating Places", "Address": "7167 Hegerman St", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 23.0, "POI_CBG": 421010326007.0, "Median Dwell Time": 268.0, "Total Spend": 217.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 25.26, "Median Spend per Customer": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3400 Lancaster Ave Ste 10", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2023, "Total Visits": 365.0, "Total Visitors": 234.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 3.0, "Total Spend": 11724.0, "Total Transactions": 892.0, "Total Customers": 565.0, "Median Spend per Transaction": 12.1, "Median Spend per Customer": 14.31 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2440 Grant Ave", "LATITUDE": 40.079145, "LONGITUDE": -75.026625, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 17.0, "Total Spend": 8814.0, "Total Transactions": 492.0, "Total Customers": 365.0, "Median Spend per Transaction": 14.33, "Median Spend per Customer": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.026625, 40.079145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4314 Locust St", "LATITUDE": 39.953382, "LONGITUDE": -75.2097, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 9.0, "Total Spend": 32328.0, "Total Transactions": 1890.0, "Total Customers": 775.0, "Median Spend per Transaction": 11.8, "Median Spend per Customer": 21.68 }, "geometry": { "type": "Point", "coordinates": [ -75.2097, 39.953382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "1711 Walnut St", "LATITUDE": 39.950274, "LONGITUDE": -75.169549, "DATE_RANGE_START": 2023, "Total Visits": 2147.0, "Total Visitors": 1645.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 6.0, "Total Spend": 20748.0, "Total Transactions": 188.0, "Total Customers": 154.0, "Median Spend per Transaction": 127.5, "Median Spend per Customer": 135.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169549, 39.950274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7620 Lindbergh Blvd Ste B", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 190.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 10.0, "Total Spend": 377.0, "Total Transactions": 20.0, "Total Customers": 19.0, "Median Spend per Transaction": 9.59, "Median Spend per Customer": 10.54 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1635 Spruce St", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 189.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 8.0, "Total Spend": 271.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 48.94 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-435", "Name": "Atlas Pizza & Steaks", "Category": "Restaurants and Other Eating Places", "Address": "736 S 52nd St", "LATITUDE": 39.947544, "LONGITUDE": -75.227506, "DATE_RANGE_START": 2023, "Total Visits": 162.0, "Total Visitors": 162.0, "POI_CBG": 421010073004.0, "Median Dwell Time": 6.0, "Total Spend": 839.0, "Total Transactions": 36.0, "Total Customers": 29.0, "Median Spend per Transaction": 17.68, "Median Spend per Customer": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.227506, 39.947544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.030478, "LONGITUDE": -75.102624, "DATE_RANGE_START": 2023, "Total Visits": 3669.0, "Total Visitors": 2315.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 31.0, "Total Spend": 459.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.102624, 40.030478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-kvf", "Name": "Quirk Books", "Category": "Book Stores and News Dealers", "Address": "215 Church St", "LATITUDE": 39.95082, "LONGITUDE": -75.144651, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 423.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 106.0, "Total Spend": 31.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144651, 39.95082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "Name": "Fette Sau", "Category": "Restaurants and Other Eating Places", "Address": "1208 Frankford Ave", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 139.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 13.0, "Total Spend": 10312.0, "Total Transactions": 157.0, "Total Customers": 144.0, "Median Spend per Transaction": 51.94, "Median Spend per Customer": 58.2 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-5xq", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2100 Cottman Ave", "LATITUDE": 40.049544, "LONGITUDE": -75.064177, "DATE_RANGE_START": 2023, "Total Visits": 714.0, "Total Visitors": 477.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 13.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.95, "Median Spend per Customer": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.064177, 40.049544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-kzz", "Name": "Slice", "Category": "Restaurants and Other Eating Places", "Address": "1180 S 10th St", "LATITUDE": 39.934663, "LONGITUDE": -75.160581, "DATE_RANGE_START": 2023, "Total Visits": 127.0, "Total Visitors": 127.0, "POI_CBG": 421010023001.0, "Median Dwell Time": null, "Total Spend": 35.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.85, "Median Spend per Customer": 13.85 }, "geometry": { "type": "Point", "coordinates": [ -75.160581, 39.934663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7512 Bustleton Ave", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2023, "Total Visits": 405.0, "Total Visitors": 382.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 11.0, "Total Spend": 7633.0, "Total Transactions": 1040.0, "Total Customers": 410.0, "Median Spend per Transaction": 6.15, "Median Spend per Customer": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "9970 Bustleton Ave", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2023, "Total Visits": 1325.0, "Total Visitors": 992.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 10.0, "Total Spend": 15921.0, "Total Transactions": 1283.0, "Total Customers": 874.0, "Median Spend per Transaction": 10.04, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "Name": "Fairmount Pizza and Grill", "Category": "Restaurants and Other Eating Places", "Address": "2000 Fairmount Ave", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 93.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 345.0, "Total Spend": 13128.0, "Total Transactions": 721.0, "Total Customers": 514.0, "Median Spend per Transaction": 14.8, "Median Spend per Customer": 18.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2940 Fox St", "LATITUDE": 40.010731, "LONGITUDE": -75.175377, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 6.0, "Total Spend": 502.0, "Total Transactions": 23.0, "Total Customers": 21.0, "Median Spend per Transaction": 19.15, "Median Spend per Customer": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.175377, 40.010731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-tgk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "915 Levick St", "LATITUDE": 40.045215, "LONGITUDE": -75.086673, "DATE_RANGE_START": 2023, "Total Visits": 1184.0, "Total Visitors": 799.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 26.0, "Total Spend": 7940.0, "Total Transactions": 468.0, "Total Customers": 287.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 21.46 }, "geometry": { "type": "Point", "coordinates": [ -75.086673, 40.045215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pm9-y5f", "Name": "Brazas BBQ Chicken", "Category": "Restaurants and Other Eating Places", "Address": "326 South St", "LATITUDE": 39.941291, "LONGITUDE": -75.148482, "DATE_RANGE_START": 2023, "Total Visits": 904.0, "Total Visitors": 754.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 11.0, "Total Spend": 121.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 26.49, "Median Spend per Customer": 27.02 }, "geometry": { "type": "Point", "coordinates": [ -75.148482, 39.941291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Ridge Ave", "LATITUDE": 40.030377, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 3.0, "Total Spend": 407.0, "Total Transactions": 29.0, "Total Customers": 21.0, "Median Spend per Transaction": 11.82, "Median Spend per Customer": 13.92 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3320 Grant Ave Unit 18B", "LATITUDE": 40.06809, "LONGITUDE": -75.00688, "DATE_RANGE_START": 2023, "Total Visits": 1157.0, "Total Visitors": 723.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 13.0, "Total Spend": 1365.0, "Total Transactions": 172.0, "Total Customers": 83.0, "Median Spend per Transaction": 6.03, "Median Spend per Customer": 9.63 }, "geometry": { "type": "Point", "coordinates": [ -75.00688, 40.06809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5643 Ridge Ave", "LATITUDE": 40.026867, "LONGITUDE": -75.208832, "DATE_RANGE_START": 2023, "Total Visits": 142.0, "Total Visitors": 142.0, "POI_CBG": 421010211002.0, "Median Dwell Time": null, "Total Spend": 5910.0, "Total Transactions": 813.0, "Total Customers": 361.0, "Median Spend per Transaction": 5.74, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.208832, 40.026867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "Name": "Wadsworth Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Wadsworth Ave", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2023, "Total Visits": 140.0, "Total Visitors": 115.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 5.0, "Total Spend": 2505.0, "Total Transactions": 122.0, "Total Customers": 89.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 23.01 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp5-75z", "Name": "Pizza Brain", "Category": "Restaurants and Other Eating Places", "Address": "2313 Frankford Ave", "LATITUDE": 39.980624, "LONGITUDE": -75.128029, "DATE_RANGE_START": 2023, "Total Visits": 370.0, "Total Visitors": 277.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 3.0, "Total Spend": 6648.0, "Total Transactions": 154.0, "Total Customers": 80.0, "Median Spend per Transaction": 41.98, "Median Spend per Customer": 19.29 }, "geometry": { "type": "Point", "coordinates": [ -75.128029, 39.980624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "Name": "Barclay Prime", "Category": "Restaurants and Other Eating Places", "Address": "237 S 18th St", "LATITUDE": 39.948601, "LONGITUDE": -75.170643, "DATE_RANGE_START": 2023, "Total Visits": 440.0, "Total Visitors": 386.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 3.0, "Total Spend": 14335.0, "Total Transactions": 51.0, "Total Customers": 48.0, "Median Spend per Transaction": 279.1, "Median Spend per Customer": 297.88 }, "geometry": { "type": "Point", "coordinates": [ -75.170643, 39.948601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "Name": "Kiehl's", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 149.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 4720.0, "Total Transactions": 53.0, "Total Customers": 49.0, "Median Spend per Transaction": 61.56, "Median Spend per Customer": 71.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "Name": "Balducci's", "Category": "Grocery Stores", "Address": "1 Garage Access Rd Terminal # C", "LATITUDE": 39.879213, "LONGITUDE": -75.24445, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 516.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 7.0, "Total Spend": 1734.0, "Total Transactions": 145.0, "Total Customers": 133.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.24445, 39.879213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1101 Locust St", "LATITUDE": 39.947842, "LONGITUDE": -75.159451, "DATE_RANGE_START": 2023, "Total Visits": 1796.0, "Total Visitors": 1179.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 25.0, "Total Spend": 4175.0, "Total Transactions": 223.0, "Total Customers": 106.0, "Median Spend per Transaction": 10.99, "Median Spend per Customer": 20.04 }, "geometry": { "type": "Point", "coordinates": [ -75.159451, 39.947842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3925 Walnut St", "LATITUDE": 39.954191, "LONGITUDE": -75.201968, "DATE_RANGE_START": 2023, "Total Visits": 2588.0, "Total Visitors": 1727.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 11.0, "Total Spend": 17892.0, "Total Transactions": 1260.0, "Total Customers": 604.0, "Median Spend per Transaction": 9.81, "Median Spend per Customer": 15.2 }, "geometry": { "type": "Point", "coordinates": [ -75.201968, 39.954191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "Name": "Curran's Irish Inn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6900 State Rd", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 249.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 16.0, "Total Spend": 1652.0, "Total Transactions": 35.0, "Total Customers": 29.0, "Median Spend per Transaction": 42.23, "Median Spend per Customer": 44.45 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7715 Frankford Ave", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2023, "Total Visits": 1157.0, "Total Visitors": 679.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 5.0, "Total Spend": 17022.0, "Total Transactions": 1582.0, "Total Customers": 678.0, "Median Spend per Transaction": 8.97, "Median Spend per Customer": 13.97 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "Name": "Deluxe Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8749 Frankford Ave", "LATITUDE": 40.048253, "LONGITUDE": -75.012509, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010349002.0, "Median Dwell Time": null, "Total Spend": 109.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 14.48, "Median Spend per Customer": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.012509, 40.048253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "Name": "All The Way Live", "Category": "Restaurants and Other Eating Places", "Address": "6108 Germantown Ave", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 118.0, "Total Spend": 139.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 55.33, "Median Spend per Customer": 55.33 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "Name": "Macy's", "Category": "Department Stores", "Address": "1300 Market St", "LATITUDE": 39.95191, "LONGITUDE": -75.161773, "DATE_RANGE_START": 2023, "Total Visits": 13731.0, "Total Visitors": 8695.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 15.0, "Total Spend": 3637.0, "Total Transactions": 89.0, "Total Customers": 65.0, "Median Spend per Transaction": 19.93, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161773, 39.95191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5801 Roosevelt Blvd", "LATITUDE": 40.031542, "LONGITUDE": -75.083659, "DATE_RANGE_START": 2023, "Total Visits": 29.0, "Total Visitors": 13.0, "POI_CBG": 421010318004.0, "Median Dwell Time": 11.0, "Total Spend": 1048.0, "Total Transactions": 44.0, "Total Customers": 23.0, "Median Spend per Transaction": 8.47, "Median Spend per Customer": 16.62 }, "geometry": { "type": "Point", "coordinates": [ -75.083659, 40.031542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "Name": "JJ Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "2028 Chestnut St", "LATITUDE": 39.952114, "LONGITUDE": -75.174664, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 24.0, "Total Spend": 4574.0, "Total Transactions": 73.0, "Total Customers": 60.0, "Median Spend per Transaction": 40.34, "Median Spend per Customer": 52.98 }, "geometry": { "type": "Point", "coordinates": [ -75.174664, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "Name": "Tandoori bakery", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd Ste", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 164.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 3.0, "Total Spend": 6021.0, "Total Transactions": 83.0, "Total Customers": 48.0, "Median Spend per Transaction": 44.92, "Median Spend per Customer": 61.97 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-b6k", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "8200 Roosevelt Blvd", "LATITUDE": 40.060291, "LONGITUDE": -75.045502, "DATE_RANGE_START": 2023, "Total Visits": 998.0, "Total Visitors": 800.0, "POI_CBG": 421010337013.0, "Median Dwell Time": 12.0, "Total Spend": 60369.0, "Total Transactions": 1534.0, "Total Customers": 691.0, "Median Spend per Transaction": 25.79, "Median Spend per Customer": 37.86 }, "geometry": { "type": "Point", "coordinates": [ -75.045502, 40.060291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "Name": "Pinoy Groseri", "Category": "Grocery Stores", "Address": "7925 Bustleton Ave", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2023, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 11.0, "Total Spend": 926.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 66.4, "Median Spend per Customer": 55.83 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9n-cbk", "Name": "Sahara Enterprise", "Category": "Specialty Food Stores", "Address": "10981 Decatur Rd Ste 4", "LATITUDE": 40.092777, "LONGITUDE": -74.989688, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 9.0, "Total Spend": 2304.0, "Total Transactions": 25.0, "Total Customers": 18.0, "Median Spend per Transaction": 50.39, "Median Spend per Customer": 67.63 }, "geometry": { "type": "Point", "coordinates": [ -74.989688, 40.092777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "2120 S Broad St", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 11.0, "Total Spend": 108.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 20.1, "Median Spend per Customer": 20.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "Name": "Marcello's Pizza Grill", "Category": "Restaurants and Other Eating Places", "Address": "10849 Bustleton Ave", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2023, "Total Visits": 3009.0, "Total Visitors": 1638.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 9.0, "Total Spend": 842.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 22.23, "Median Spend per Customer": 19.74 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8t-vvf", "Name": "Steve Madden", "Category": "Shoe Stores", "Address": "1455 Franklin Mills Cir Spc 155", "LATITUDE": 40.089544, "LONGITUDE": -74.961668, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 367.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 51.0, "Total Spend": 5262.0, "Total Transactions": 66.0, "Total Customers": 41.0, "Median Spend per Transaction": 90.61, "Median Spend per Customer": 51.6 }, "geometry": { "type": "Point", "coordinates": [ -74.961668, 40.089544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "Name": "Front Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1253 N Front St", "LATITUDE": 39.970177, "LONGITUDE": -75.135546, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 21.0, "Total Spend": 24479.0, "Total Transactions": 422.0, "Total Customers": 361.0, "Median Spend per Transaction": 47.05, "Median Spend per Customer": 50.92 }, "geometry": { "type": "Point", "coordinates": [ -75.135546, 39.970177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8t-vvf", "Name": "Skechers", "Category": "Shoe Stores", "Address": "1701 Franklin Mills Cir # 202", "LATITUDE": 40.089192, "LONGITUDE": -74.961438, "DATE_RANGE_START": 2023, "Total Visits": 446.0, "Total Visitors": 396.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 55.0, "Total Spend": 261.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 35.67, "Median Spend per Customer": 35.67 }, "geometry": { "type": "Point", "coordinates": [ -74.961438, 40.089192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-yd9", "Name": "Somerton Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "13510 Bustleton Ave", "LATITUDE": 40.129213, "LONGITUDE": -75.014014, "DATE_RANGE_START": 2023, "Total Visits": 283.0, "Total Visitors": 148.0, "POI_CBG": 421010365013.0, "Median Dwell Time": 5.0, "Total Spend": 2830.0, "Total Transactions": 89.0, "Total Customers": 63.0, "Median Spend per Transaction": 30.21, "Median Spend per Customer": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.014014, 40.129213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-zj9", "Name": "Little Istanbul", "Category": "Restaurants and Other Eating Places", "Address": "11728 Bustleton Ave", "LATITUDE": 40.119798, "LONGITUDE": -75.018085, "DATE_RANGE_START": 2023, "Total Visits": 2084.0, "Total Visitors": 1126.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 10.0, "Total Spend": 2203.0, "Total Transactions": 60.0, "Total Customers": 43.0, "Median Spend per Transaction": 28.91, "Median Spend per Customer": 44.87 }, "geometry": { "type": "Point", "coordinates": [ -75.018085, 40.119798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8n5", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "1021 Market St # 1175", "LATITUDE": 39.951999, "LONGITUDE": -75.157711, "DATE_RANGE_START": 2023, "Total Visits": 14076.0, "Total Visitors": 8436.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 37495.0, "Total Transactions": 863.0, "Total Customers": 763.0, "Median Spend per Transaction": 32.18, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.157711, 39.951999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pnw-pjv", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "115 E Girard Ave", "LATITUDE": 39.969267, "LONGITUDE": -75.133945, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 224.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 27.0, "Total Spend": 242.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 15.7, "Median Spend per Customer": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.133945, 39.969267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "Name": "Sam's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5450 Rutland St", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 110.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 17.0, "Total Spend": 795.0, "Total Transactions": 26.0, "Total Customers": 18.0, "Median Spend per Transaction": 29.74, "Median Spend per Customer": 40.09 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pj9-q4v", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "1624 W Olney Ave", "LATITUDE": 40.038791, "LONGITUDE": -75.149331, "DATE_RANGE_START": 2023, "Total Visits": 282.0, "Total Visitors": 197.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 63.0, "Total Spend": 523.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 28.3, "Median Spend per Customer": 38.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149331, 40.038791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-k4v", "Name": "Paradise Pizza", "Category": "Restaurants and Other Eating Places", "Address": "106 W Girard Ave", "LATITUDE": 39.968728, "LONGITUDE": -75.136484, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 420.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 3.0, "Total Spend": 1405.0, "Total Transactions": 39.0, "Total Customers": 26.0, "Median Spend per Transaction": 31.23, "Median Spend per Customer": 51.91 }, "geometry": { "type": "Point", "coordinates": [ -75.136484, 39.968728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-xbk", "Name": "Gear N Up", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2326 N Front St", "LATITUDE": 39.985537, "LONGITUDE": -75.132208, "DATE_RANGE_START": 2023, "Total Visits": 4470.0, "Total Visitors": 1969.0, "POI_CBG": 421010163004.0, "Median Dwell Time": 7.0, "Total Spend": 496.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132208, 39.985537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9w-sbk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "13000 Bustleton Ave", "LATITUDE": 40.124548, "LONGITUDE": -75.015541, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010365013.0, "Median Dwell Time": 4.0, "Total Spend": 158.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015541, 40.124548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "Name": "Spice 28", "Category": "Restaurants and Other Eating Places", "Address": "1228 Chestnut St", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 178.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 5732.0, "Total Transactions": 127.0, "Total Customers": 93.0, "Median Spend per Transaction": 36.72, "Median Spend per Customer": 37.27 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1617 John F Kennedy Blvd", "LATITUDE": 39.95433, "LONGITUDE": -75.167985, "DATE_RANGE_START": 2023, "Total Visits": 60.0, "Total Visitors": 39.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 4.0, "Total Spend": 3057.0, "Total Transactions": 159.0, "Total Customers": 122.0, "Median Spend per Transaction": 11.99, "Median Spend per Customer": 17.74 }, "geometry": { "type": "Point", "coordinates": [ -75.167985, 39.95433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "704 E Passyunk Ave # 20", "LATITUDE": 39.94021, "LONGITUDE": -75.151622, "DATE_RANGE_START": 2023, "Total Visits": 1370.0, "Total Visitors": 1137.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 17.0, "Total Spend": 30067.0, "Total Transactions": 1477.0, "Total Customers": 620.0, "Median Spend per Transaction": 13.45, "Median Spend per Customer": 24.93 }, "geometry": { "type": "Point", "coordinates": [ -75.151622, 39.94021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-225@628-pm4-djv", "Name": "Kiku sushi", "Category": "Restaurants and Other Eating Places", "Address": "2146 S Broad St", "LATITUDE": 39.923305, "LONGITUDE": -75.170389, "DATE_RANGE_START": 2023, "Total Visits": 956.0, "Total Visitors": 631.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 22.0, "Total Spend": 1983.0, "Total Transactions": 56.0, "Total Customers": 51.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 32.35 }, "geometry": { "type": "Point", "coordinates": [ -75.170389, 39.923305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8n5", "Name": "Primark", "Category": "Clothing Stores", "Address": "1033 Market St", "LATITUDE": 39.951874, "LONGITUDE": -75.15803, "DATE_RANGE_START": 2023, "Total Visits": 14076.0, "Total Visitors": 8436.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 72410.0, "Total Transactions": 1995.0, "Total Customers": 1623.0, "Median Spend per Transaction": 24.64, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15803, 39.951874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph8-q75", "Name": "Bryn Mawr Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "7572 Haverford Ave", "LATITUDE": 39.978684, "LONGITUDE": -75.268113, "DATE_RANGE_START": 2023, "Total Visits": 452.0, "Total Visitors": 342.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 9.0, "Total Spend": 889.0, "Total Transactions": 41.0, "Total Customers": 33.0, "Median Spend per Transaction": 20.25, "Median Spend per Customer": 20.88 }, "geometry": { "type": "Point", "coordinates": [ -75.268113, 39.978684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm9-whq", "Name": "Old City Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "240 Market St", "LATITUDE": 39.949752, "LONGITUDE": -75.145531, "DATE_RANGE_START": 2023, "Total Visits": 582.0, "Total Visitors": 401.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 8129.0, "Total Transactions": 327.0, "Total Customers": 247.0, "Median Spend per Transaction": 16.56, "Median Spend per Customer": 23.84 }, "geometry": { "type": "Point", "coordinates": [ -75.145531, 39.949752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "Name": "Dollar Mart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4902 Baltimore Ave", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2023, "Total Visits": 757.0, "Total Visitors": 521.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 42.0, "Total Spend": 1020.0, "Total Transactions": 58.0, "Total Customers": 43.0, "Median Spend per Transaction": 13.41, "Median Spend per Customer": 17.67 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "Name": "Uncle Oogie's", "Category": "Restaurants and Other Eating Places", "Address": "36 Snyder Ave", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 115.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 422.0, "Total Spend": 155.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 14.52, "Median Spend per Customer": 14.52 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-qmk", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028704, "LONGITUDE": -75.099151, "DATE_RANGE_START": 2023, "Total Visits": 758.0, "Total Visitors": 669.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 25.0, "Total Spend": 3490.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 742.97, "Median Spend per Customer": 742.97 }, "geometry": { "type": "Point", "coordinates": [ -75.099151, 40.028704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7615 Lindbergh Blvd", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2023, "Total Visits": 1610.0, "Total Visitors": 892.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 29.0, "Total Spend": 7114.0, "Total Transactions": 334.0, "Total Customers": 225.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 19.09 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6601 N Broad St", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2023, "Total Visits": 764.0, "Total Visitors": 432.0, "POI_CBG": 421010268002.0, "Median Dwell Time": 30.0, "Total Spend": 2498.0, "Total Transactions": 157.0, "Total Customers": 95.0, "Median Spend per Transaction": 7.98, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave Ste 5", "LATITUDE": 40.087323, "LONGITUDE": -75.039984, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 5.0, "Total Spend": 1654.0, "Total Transactions": 204.0, "Total Customers": 120.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.039984, 40.087323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-t7q", "Name": "Robert Lance Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "803 Sansom St", "LATITUDE": 39.948987, "LONGITUDE": -75.154346, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 1046.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 417.5, "Median Spend per Customer": 417.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154346, 39.948987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@63s-dw4-rzf", "Name": "Mezzogiorno", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895195, "LONGITUDE": -75.227968, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 13286.0, "Total Transactions": 1055.0, "Total Customers": 927.0, "Median Spend per Transaction": 9.49, "Median Spend per Customer": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.227968, 39.895195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "Name": "Romeo Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1608 W Passyunk Ave", "LATITUDE": 39.924608, "LONGITUDE": -75.173116, "DATE_RANGE_START": 2023, "Total Visits": 435.0, "Total Visitors": 179.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 34.0, "Total Spend": 1029.0, "Total Transactions": 46.0, "Total Customers": 38.0, "Median Spend per Transaction": 21.42, "Median Spend per Customer": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.173116, 39.924608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmd-yjv", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "2001 Federal St", "LATITUDE": 39.937442, "LONGITUDE": -75.176792, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 157.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 5.0, "Total Spend": 3024.0, "Total Transactions": 276.0, "Total Customers": 219.0, "Median Spend per Transaction": 8.68, "Median Spend per Customer": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.176792, 39.937442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "Name": "Sam's Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1000 Franklin Mills Cir", "LATITUDE": 40.093031, "LONGITUDE": -74.958589, "DATE_RANGE_START": 2023, "Total Visits": 5550.0, "Total Visitors": 3604.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 25.0, "Total Spend": 264496.0, "Total Transactions": 3640.0, "Total Customers": 1551.0, "Median Spend per Transaction": 43.86, "Median Spend per Customer": 99.97 }, "geometry": { "type": "Point", "coordinates": [ -74.958589, 40.093031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-zpv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4322 Market St", "LATITUDE": 39.957784, "LONGITUDE": -75.209056, "DATE_RANGE_START": 2023, "Total Visits": 316.0, "Total Visitors": 254.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 7.0, "Total Spend": 8424.0, "Total Transactions": 546.0, "Total Customers": 362.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.209056, 39.957784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5536 Torresdale Ave", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 45.0, "POI_CBG": 421010298002.0, "Median Dwell Time": 59.0, "Total Spend": 789.0, "Total Transactions": 39.0, "Total Customers": 33.0, "Median Spend per Transaction": 17.33, "Median Spend per Customer": 18.87 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "Name": "Asia On the Parkway", "Category": "Restaurants and Other Eating Places", "Address": "1700 Benjamin Franklin Pkwy", "LATITUDE": 39.955852, "LONGITUDE": -75.168299, "DATE_RANGE_START": 2023, "Total Visits": 876.0, "Total Visitors": 618.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 39.0, "Total Spend": 4049.0, "Total Transactions": 98.0, "Total Customers": 63.0, "Median Spend per Transaction": 27.48, "Median Spend per Customer": 42.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168299, 39.955852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2201 Walnut St", "LATITUDE": 39.95129, "LONGITUDE": -75.177478, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 49.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 4.0, "Total Spend": 2132.0, "Total Transactions": 78.0, "Total Customers": 71.0, "Median Spend per Transaction": 26.25, "Median Spend per Customer": 27.23 }, "geometry": { "type": "Point", "coordinates": [ -75.177478, 39.95129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "Name": "Smokey Joe's Tavern", "Category": "Restaurants and Other Eating Places", "Address": "210 S 40th St", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 187.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 29.0, "Total Spend": 3849.0, "Total Transactions": 128.0, "Total Customers": 105.0, "Median Spend per Transaction": 25.35, "Median Spend per Customer": 24.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1128 Walnut St", "LATITUDE": 39.948784, "LONGITUDE": -75.160455, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 1.0, "Total Spend": 4277.0, "Total Transactions": 566.0, "Total Customers": 354.0, "Median Spend per Transaction": 6.43, "Median Spend per Customer": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.160455, 39.948784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pj5-qs5", "Name": "Craytaste", "Category": "Restaurants and Other Eating Places", "Address": "3865 N 7th St", "LATITUDE": 40.010836, "LONGITUDE": -75.139631, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010198004.0, "Median Dwell Time": 20.0, "Total Spend": 1093.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 84.4, "Median Spend per Customer": 82.74 }, "geometry": { "type": "Point", "coordinates": [ -75.139631, 40.010836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7b-kj9", "Name": "Villagio Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9233 Frankford Ave", "LATITUDE": 40.055388, "LONGITUDE": -75.003512, "DATE_RANGE_START": 2023, "Total Visits": 127.0, "Total Visitors": 127.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 8.0, "Total Spend": 626.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 22.37, "Median Spend per Customer": 23.09 }, "geometry": { "type": "Point", "coordinates": [ -75.003512, 40.055388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "Name": "Arby's", "Category": "Restaurants and Other Eating Places", "Address": "577 Franklin Mills Cir", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2023, "Total Visits": 339.0, "Total Visitors": 274.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 14.0, "Total Spend": 4238.0, "Total Transactions": 267.0, "Total Customers": 188.0, "Median Spend per Transaction": 13.39, "Median Spend per Customer": 15.04 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "4600 City Ave", "LATITUDE": 40.002558, "LONGITUDE": -75.222575, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 6.0, "Total Spend": 7490.0, "Total Transactions": 649.0, "Total Customers": 400.0, "Median Spend per Transaction": 9.88, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.222575, 40.002558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pg8-ks5", "Name": "Harper's Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "2827 W Girard Ave", "LATITUDE": 39.974726, "LONGITUDE": -75.182771, "DATE_RANGE_START": 2023, "Total Visits": 567.0, "Total Visitors": 222.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 570.0, "Total Spend": 2220.0, "Total Transactions": 165.0, "Total Customers": 120.0, "Median Spend per Transaction": 10.72, "Median Spend per Customer": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182771, 39.974726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-224@628-pm4-h5z", "Name": "Favors & Flavors", "Category": "Restaurants and Other Eating Places", "Address": "1919 E Passyunk Ave", "LATITUDE": 39.926083, "LONGITUDE": -75.167651, "DATE_RANGE_START": 2023, "Total Visits": 551.0, "Total Visitors": 443.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 8.0, "Total Spend": 297.0, "Total Transactions": 34.0, "Total Customers": 33.0, "Median Spend per Transaction": 8.93, "Median Spend per Customer": 8.96 }, "geometry": { "type": "Point", "coordinates": [ -75.167651, 39.926083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 Richmond St", "LATITUDE": 39.98332, "LONGITUDE": -75.101162, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 3.0, "Total Spend": 1793.0, "Total Transactions": 70.0, "Total Customers": 54.0, "Median Spend per Transaction": 20.1, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101162, 39.98332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7z-xnq", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "5822 Roosevelt Blvd", "LATITUDE": 40.032765, "LONGITUDE": -75.083361, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 408.0, "POI_CBG": 421010312003.0, "Median Dwell Time": 9.0, "Total Spend": 4983.0, "Total Transactions": 354.0, "Total Customers": 266.0, "Median Spend per Transaction": 12.36, "Median Spend per Customer": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.083361, 40.032765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-jgk", "Name": "The Foto Club", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3743 Frankford Ave", "LATITUDE": 40.000866, "LONGITUDE": -75.097152, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 185.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 27.0, "Total Spend": 1249.0, "Total Transactions": 39.0, "Total Customers": 34.0, "Median Spend per Transaction": 23.85, "Median Spend per Customer": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.097152, 40.000866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3900 N Broad St", "LATITUDE": 40.012964, "LONGITUDE": -75.15104, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 23.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 12.0, "Total Spend": 11748.0, "Total Transactions": 224.0, "Total Customers": 158.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 40.26 }, "geometry": { "type": "Point", "coordinates": [ -75.15104, 40.012964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-mc5", "Name": "Mole Poblano Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1144 S 9th St", "LATITUDE": 39.935124, "LONGITUDE": -75.158821, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 133.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 11.0, "Total Spend": 1808.0, "Total Transactions": 43.0, "Total Customers": 31.0, "Median Spend per Transaction": 39.06, "Median Spend per Customer": 44.68 }, "geometry": { "type": "Point", "coordinates": [ -75.158821, 39.935124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-k4v", "Name": "Kingstone Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2250 N 29th St", "LATITUDE": 39.990889, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 35.0, "POI_CBG": 421010169022.0, "Median Dwell Time": 165.0, "Total Spend": 678.0, "Total Transactions": 41.0, "Total Customers": 30.0, "Median Spend per Transaction": 15.98, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.990889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "Name": "Axis Pizza", "Category": "Restaurants and Other Eating Places", "Address": "20 S 36th St", "LATITUDE": 39.955236, "LONGITUDE": -75.194658, "DATE_RANGE_START": 2023, "Total Visits": 433.0, "Total Visitors": 328.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 8.0, "Total Spend": 2193.0, "Total Transactions": 155.0, "Total Customers": 109.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 15.39 }, "geometry": { "type": "Point", "coordinates": [ -75.194658, 39.955236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-pmf-qpv", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "615 S Broad St", "LATITUDE": 39.94287, "LONGITUDE": -75.165374, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 167.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 5.0, "Total Spend": 250.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 10.07, "Median Spend per Customer": 12.57 }, "geometry": { "type": "Point", "coordinates": [ -75.165374, 39.94287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj7-54v", "Name": "New China Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5815 Rising Sun Ave", "LATITUDE": 40.04309, "LONGITUDE": -75.103706, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 1.0, "Total Spend": 893.0, "Total Transactions": 30.0, "Total Customers": 23.0, "Median Spend per Transaction": 25.28, "Median Spend per Customer": 31.06 }, "geometry": { "type": "Point", "coordinates": [ -75.103706, 40.04309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-jgk", "Name": "John's Roast Pork", "Category": "Restaurants and Other Eating Places", "Address": "14 Snyder Ave", "LATITUDE": 39.92105, "LONGITUDE": -75.145001, "DATE_RANGE_START": 2023, "Total Visits": 207.0, "Total Visitors": 188.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 4496.0, "Total Transactions": 155.0, "Total Customers": 133.0, "Median Spend per Transaction": 30.51, "Median Spend per Customer": 32.84 }, "geometry": { "type": "Point", "coordinates": [ -75.145001, 39.92105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Verree Rd", "LATITUDE": 40.105522, "LONGITUDE": -75.032843, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 3.0, "Total Spend": 463.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 21.98, "Median Spend per Customer": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.032843, 40.105522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj3-9cq", "Name": "Yummy Garden", "Category": "Restaurants and Other Eating Places", "Address": "3901 N Broad St", "LATITUDE": 40.0124, "LONGITUDE": -75.15023, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 180.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 7.0, "Total Spend": 184.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15023, 40.0124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7350 Oxford Ave", "LATITUDE": 40.062607, "LONGITUDE": -75.083816, "DATE_RANGE_START": 2023, "Total Visits": 951.0, "Total Visitors": 787.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 8.0, "Total Spend": 10940.0, "Total Transactions": 252.0, "Total Customers": 185.0, "Median Spend per Transaction": 31.96, "Median Spend per Customer": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.083816, 40.062607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-4sq", "Name": "Potbelly Sandwich Works", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave", "LATITUDE": 39.979534, "LONGITUDE": -75.153522, "DATE_RANGE_START": 2023, "Total Visits": 1249.0, "Total Visitors": 446.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 37.0, "Total Spend": 3953.0, "Total Transactions": 247.0, "Total Customers": 188.0, "Median Spend per Transaction": 14.62, "Median Spend per Customer": 16.16 }, "geometry": { "type": "Point", "coordinates": [ -75.153522, 39.979534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1575 N 52nd St", "LATITUDE": 39.979965, "LONGITUDE": -75.224332, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 18.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 15.0, "Total Spend": 11901.0, "Total Transactions": 990.0, "Total Customers": 701.0, "Median Spend per Transaction": 10.03, "Median Spend per Customer": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.224332, 39.979965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "6001 N Broad St", "LATITUDE": 40.044629, "LONGITUDE": -75.142839, "DATE_RANGE_START": 2023, "Total Visits": 496.0, "Total Visitors": 427.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 11.0, "Total Spend": 21975.0, "Total Transactions": 1734.0, "Total Customers": 1349.0, "Median Spend per Transaction": 11.42, "Median Spend per Customer": 12.37 }, "geometry": { "type": "Point", "coordinates": [ -75.142839, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "Name": "Beijing Garden", "Category": "Restaurants and Other Eating Places", "Address": "5911 Ridge Ave", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 194.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 14.0, "Total Spend": 510.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 29.2, "Median Spend per Customer": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "1464 Philadelphia Mls", "LATITUDE": 40.087684, "LONGITUDE": -74.961421, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 47.0, "Total Spend": 366.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 69.0, "Median Spend per Customer": 69.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961421, 40.087684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1501 Cecil B Moore Ave", "LATITUDE": 39.979092, "LONGITUDE": -75.159657, "DATE_RANGE_START": 2023, "Total Visits": 1102.0, "Total Visitors": 853.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 6.0, "Total Spend": 568.0, "Total Transactions": 89.0, "Total Customers": 30.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159657, 39.979092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pnw-nnq", "Name": "DAWA Sushi & Ramen Bar", "Category": "Restaurants and Other Eating Places", "Address": "1204 N Front St", "LATITUDE": 39.969247, "LONGITUDE": -75.136377, "DATE_RANGE_START": 2023, "Total Visits": 635.0, "Total Visitors": 473.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 1.0, "Total Spend": 2580.0, "Total Transactions": 35.0, "Total Customers": 33.0, "Median Spend per Transaction": 54.81, "Median Spend per Customer": 49.93 }, "geometry": { "type": "Point", "coordinates": [ -75.136377, 39.969247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-p9q-hqz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079547, "LONGITUDE": -75.027317, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 137.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 1211.0, "Total Transactions": 65.0, "Total Customers": 50.0, "Median Spend per Transaction": 16.88, "Median Spend per Customer": 19.28 }, "geometry": { "type": "Point", "coordinates": [ -75.027317, 40.079547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7104 Ridge Ave", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2023, "Total Visits": 797.0, "Total Visitors": 615.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 5.0, "Total Spend": 9603.0, "Total Transactions": 1125.0, "Total Customers": 526.0, "Median Spend per Transaction": 7.32, "Median Spend per Customer": 11.25 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "Name": "Thai Square Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2521 Christian St", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010013005.0, "Median Dwell Time": 46.0, "Total Spend": 1856.0, "Total Transactions": 38.0, "Total Customers": 35.0, "Median Spend per Transaction": 52.16, "Median Spend per Customer": 55.56 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pj8-j35", "Name": "Lee Brothers Deli", "Category": "Restaurants and Other Eating Places", "Address": "4852 Frankford Ave", "LATITUDE": 40.019162, "LONGITUDE": -75.081821, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 174.0, "POI_CBG": 421010300007.0, "Median Dwell Time": 4.0, "Total Spend": 43.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.07, "Median Spend per Customer": 17.07 }, "geometry": { "type": "Point", "coordinates": [ -75.081821, 40.019162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-mrk", "Name": "Auntie Anne's", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 206", "LATITUDE": 39.952007, "LONGITUDE": -75.167497, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 38.0, "Total Spend": 79.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 9.22, "Median Spend per Customer": 16.73 }, "geometry": { "type": "Point", "coordinates": [ -75.167497, 39.952007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pgd-zj9", "Name": "Mr Wish Drexel", "Category": "Restaurants and Other Eating Places", "Address": "3630 Lancaster Ave", "LATITUDE": 39.958848, "LONGITUDE": -75.194519, "DATE_RANGE_START": 2023, "Total Visits": 407.0, "Total Visitors": 242.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 9.0, "Total Spend": 454.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 181.15, "Median Spend per Customer": 181.15 }, "geometry": { "type": "Point", "coordinates": [ -75.194519, 39.958848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pfy-f4v", "Name": "WorldWide Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "508 Green Ln", "LATITUDE": 40.034557, "LONGITUDE": -75.215587, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 200.0, "Total Spend": 56.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.38, "Median Spend per Customer": 22.38 }, "geometry": { "type": "Point", "coordinates": [ -75.215587, 40.034557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phy-v9f", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "5302 Rising Sun Ave", "LATITUDE": 40.030432, "LONGITUDE": -75.118462, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 127.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 149.0, "Total Spend": 155.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118462, 40.030432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-hwk", "Name": "The Men's Wearhouse", "Category": "Clothing Stores", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079413, "LONGITUDE": -75.029146, "DATE_RANGE_START": 2023, "Total Visits": 311.0, "Total Visitors": 296.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 1180.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 59.99, "Median Spend per Customer": 119.98 }, "geometry": { "type": "Point", "coordinates": [ -75.029146, 40.079413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "Name": "R.E. Michel", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "333 E Hunting Park Ave", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 75.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 24.0, "Total Spend": 3776.0, "Total Transactions": 19.0, "Total Customers": 11.0, "Median Spend per Transaction": 119.98, "Median Spend per Customer": 239.96 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "9875 Bustleton Ave", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2023, "Total Visits": 932.0, "Total Visitors": 661.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 10.0, "Total Spend": 11376.0, "Total Transactions": 551.0, "Total Customers": 362.0, "Median Spend per Transaction": 11.57, "Median Spend per Customer": 17.78 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-22n@628-pnw-psq", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "180 W Girard Ave", "LATITUDE": 39.968442, "LONGITUDE": -75.13901, "DATE_RANGE_START": 2023, "Total Visits": 2836.0, "Total Visitors": 1501.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 30.0, "Total Spend": 9992.0, "Total Transactions": 165.0, "Total Customers": 144.0, "Median Spend per Transaction": 54.52, "Median Spend per Customer": 56.7 }, "geometry": { "type": "Point", "coordinates": [ -75.13901, 39.968442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-87q", "Name": "Kabuki Sushi", "Category": "Restaurants and Other Eating Places", "Address": "45 N 13th St", "LATITUDE": 39.953616, "LONGITUDE": -75.160916, "DATE_RANGE_START": 2023, "Total Visits": 291.0, "Total Visitors": 162.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 19.0, "Total Spend": 956.0, "Total Transactions": 36.0, "Total Customers": 23.0, "Median Spend per Transaction": 15.91, "Median Spend per Customer": 27.41 }, "geometry": { "type": "Point", "coordinates": [ -75.160916, 39.953616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5733 N Broad St", "LATITUDE": 40.040643, "LONGITUDE": -75.143875, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 9.0, "Total Spend": 3063.0, "Total Transactions": 111.0, "Total Customers": 88.0, "Median Spend per Transaction": 23.39, "Median Spend per Customer": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.143875, 40.040643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "Name": "Amada", "Category": "Restaurants and Other Eating Places", "Address": "217 Chestnut St", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2023, "Total Visits": 294.0, "Total Visitors": 240.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 63.0, "Total Spend": 17330.0, "Total Transactions": 125.0, "Total Customers": 114.0, "Median Spend per Transaction": 95.56, "Median Spend per Customer": 101.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@63s-dvq-6ff", "Name": "Citizens Beer", "Category": "Restaurants and Other Eating Places", "Address": "5400 Spruce St", "LATITUDE": 39.954856, "LONGITUDE": -75.229978, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010085004.0, "Median Dwell Time": null, "Total Spend": 4858.0, "Total Transactions": 170.0, "Total Customers": 104.0, "Median Spend per Transaction": 24.1, "Median Spend per Customer": 36.69 }, "geometry": { "type": "Point", "coordinates": [ -75.229978, 39.954856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-223@628-pg8-k9f", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "1350 N 29th St", "LATITUDE": 39.977261, "LONGITUDE": -75.183103, "DATE_RANGE_START": 2023, "Total Visits": 516.0, "Total Visitors": 244.0, "POI_CBG": 421010137001.0, "Median Dwell Time": 122.0, "Total Spend": 476.0, "Total Transactions": 49.0, "Total Customers": 35.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.183103, 39.977261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-qj9", "Name": "Mack Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "6120 Vine St", "LATITUDE": 39.967928, "LONGITUDE": -75.243798, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 79.0, "POI_CBG": 421010096001.0, "Median Dwell Time": 259.0, "Total Spend": 1405.0, "Total Transactions": 63.0, "Total Customers": 44.0, "Median Spend per Transaction": 13.52, "Median Spend per Customer": 18.72 }, "geometry": { "type": "Point", "coordinates": [ -75.243798, 39.967928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-kvf", "Name": "Long In the Tooth", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2027 Sansom St", "LATITUDE": 39.951536, "LONGITUDE": -75.174727, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 24.0, "Total Spend": 239.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 76.65, "Median Spend per Customer": 76.65 }, "geometry": { "type": "Point", "coordinates": [ -75.174727, 39.951536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993473, "LONGITUDE": -75.143851, "DATE_RANGE_START": 2023, "Total Visits": 341.0, "Total Visitors": 182.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 17.0, "Total Spend": 1336.0, "Total Transactions": 91.0, "Total Customers": 74.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.143851, 39.993473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-224@628-pnw-k4v", "Name": "Humpty's Dumplings", "Category": "Restaurants and Other Eating Places", "Address": "102 W Girard Ave", "LATITUDE": 39.96876, "LONGITUDE": -75.136611, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 420.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 3.0, "Total Spend": 734.0, "Total Transactions": 43.0, "Total Customers": 39.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 17.08 }, "geometry": { "type": "Point", "coordinates": [ -75.136611, 39.96876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-xt9", "Name": "Family Food Market", "Category": "Grocery Stores", "Address": "273 W York St", "LATITUDE": 39.987227, "LONGITUDE": -75.138158, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010163004.0, "Median Dwell Time": 3.0, "Total Spend": 1222.0, "Total Transactions": 140.0, "Total Customers": 76.0, "Median Spend per Transaction": 7.79, "Median Spend per Customer": 10.49 }, "geometry": { "type": "Point", "coordinates": [ -75.138158, 39.987227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "801 S 9th St", "LATITUDE": 39.939347, "LONGITUDE": -75.157238, "DATE_RANGE_START": 2023, "Total Visits": 916.0, "Total Visitors": 775.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 19.0, "Total Spend": 25275.0, "Total Transactions": 1399.0, "Total Customers": 651.0, "Median Spend per Transaction": 11.99, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.157238, 39.939347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-q9f", "Name": "BEL Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "10101 Verree Rd Ste C", "LATITUDE": 40.105145, "LONGITUDE": -75.032134, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 158.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 3.0, "Total Spend": 41.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.032134, 40.105145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "Name": "Liberty Smokes", "Category": "Other Miscellaneous Store Retailers", "Address": "2740 S Front St", "LATITUDE": 39.91245, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2023, "Total Visits": 678.0, "Total Visitors": 343.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 155.0, "Total Spend": 392.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 31.56, "Median Spend per Customer": 29.24 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.91245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pg8-jgk", "Name": "Over The Moon Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "2623 W Girard Ave", "LATITUDE": 39.974318, "LONGITUDE": -75.179761, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 33.0, "Total Spend": 885.0, "Total Transactions": 95.0, "Total Customers": 74.0, "Median Spend per Transaction": 7.78, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.179761, 39.974318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgk-psq", "Name": "West Village Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "3901 Conshohocken Ave", "LATITUDE": 40.003357, "LONGITUDE": -75.206899, "DATE_RANGE_START": 2023, "Total Visits": 539.0, "Total Visitors": 139.0, "POI_CBG": 421010122012.0, "Median Dwell Time": 474.0, "Total Spend": 294.0, "Total Transactions": 50.0, "Total Customers": 9.0, "Median Spend per Transaction": 2.5, "Median Spend per Customer": 22.97 }, "geometry": { "type": "Point", "coordinates": [ -75.206899, 40.003357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "Name": "Nova Star Pharmacy", "Category": "Health and Personal Care Stores", "Address": "301 E Girard Ave", "LATITUDE": 39.969978, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2023, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 1.0, "Total Spend": 837.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 26.01 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "Name": "Victoria's Secret", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087662, "LONGITUDE": -74.96104, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 144.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 20.0, "Total Spend": 1373.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 60.68, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -74.96104, 40.087662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "Name": "Windsor", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Spc 731", "LATITUDE": 40.085923, "LONGITUDE": -74.96247, "DATE_RANGE_START": 2023, "Total Visits": 475.0, "Total Visitors": 421.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 36.0, "Total Spend": 5942.0, "Total Transactions": 116.0, "Total Customers": 108.0, "Median Spend per Transaction": 39.9, "Median Spend per Customer": 41.85 }, "geometry": { "type": "Point", "coordinates": [ -74.96247, 40.085923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-djv", "Name": "Quality Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6438 Rising Sun Ave", "LATITUDE": 40.050951, "LONGITUDE": -75.094665, "DATE_RANGE_START": 2023, "Total Visits": 1388.0, "Total Visitors": 1337.0, "POI_CBG": 421010306007.0, "Median Dwell Time": 7.0, "Total Spend": 1807.0, "Total Transactions": 73.0, "Total Customers": 53.0, "Median Spend per Transaction": 23.99, "Median Spend per Customer": 29.88 }, "geometry": { "type": "Point", "coordinates": [ -75.094665, 40.050951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "Name": "Mammoth Coffee", "Category": "Restaurants and Other Eating Places", "Address": "534 W Girard Ave", "LATITUDE": 39.970172, "LONGITUDE": -75.146375, "DATE_RANGE_START": 2023, "Total Visits": 352.0, "Total Visitors": 168.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 985.0, "Total Spend": 2201.0, "Total Transactions": 237.0, "Total Customers": 80.0, "Median Spend per Transaction": 8.56, "Median Spend per Customer": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.146375, 39.970172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-phz-tjv", "Name": "Pizza express", "Category": "Restaurants and Other Eating Places", "Address": "3324 Kensington Ave", "LATITUDE": 39.998436, "LONGITUDE": -75.110266, "DATE_RANGE_START": 2023, "Total Visits": 95.0, "Total Visitors": 78.0, "POI_CBG": 421010192004.0, "Median Dwell Time": 23.0, "Total Spend": 306.0, "Total Transactions": 16.0, "Total Customers": 15.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.110266, 39.998436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "Name": "Kei Sushi Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1711 South St", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 1.0, "Total Spend": 3928.0, "Total Transactions": 81.0, "Total Customers": 75.0, "Median Spend per Transaction": 40.82, "Median Spend per Customer": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvr-7bk", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "6309 Woodland Ave", "LATITUDE": 39.927395, "LONGITUDE": -75.232174, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010066004.0, "Median Dwell Time": 9.0, "Total Spend": 1214.0, "Total Transactions": 31.0, "Total Customers": 31.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.232174, 39.927395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "Name": "Main Street Pho", "Category": "Restaurants and Other Eating Places", "Address": "4307 Main St", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 157.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 34.0, "Total Spend": 2672.0, "Total Transactions": 55.0, "Total Customers": 50.0, "Median Spend per Transaction": 40.66, "Median Spend per Customer": 43.44 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-t9z", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "7500 Bustleton Ave", "LATITUDE": 40.051349, "LONGITUDE": -75.057526, "DATE_RANGE_START": 2023, "Total Visits": 694.0, "Total Visitors": 601.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 7.0, "Total Spend": 148.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 17.09, "Median Spend per Customer": 30.76 }, "geometry": { "type": "Point", "coordinates": [ -75.057526, 40.051349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "Name": "Pub On Passyunk East", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1501 E Passyunk Ave", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2023, "Total Visits": 278.0, "Total Visitors": 251.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 26.0, "Total Spend": 208.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 75.54, "Median Spend per Customer": 75.54 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8j-bp9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4011 Cottman Ave", "LATITUDE": 40.035834, "LONGITUDE": -75.039406, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010330006.0, "Median Dwell Time": 19.0, "Total Spend": 5637.0, "Total Transactions": 292.0, "Total Customers": 195.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.039406, 40.035834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7z-6x5", "Name": "Rising Sun Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6919 Rising Sun Ave", "LATITUDE": 40.056616, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2023, "Total Visits": 128.0, "Total Visitors": 96.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 298.0, "Total Spend": 1184.0, "Total Transactions": 51.0, "Total Customers": 46.0, "Median Spend per Transaction": 21.02, "Median Spend per Customer": 21.51 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.056616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "Name": "Weavers Way Co op", "Category": "Grocery Stores", "Address": "8424 Germantown Ave", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2023, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 1.0, "Total Spend": 2072.0, "Total Transactions": 43.0, "Total Customers": 15.0, "Median Spend per Transaction": 36.18, "Median Spend per Customer": 57.75 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pmf-s3q", "Name": "South Deli and Grocery", "Category": "Restaurants and Other Eating Places", "Address": "1739 South St", "LATITUDE": 39.944603, "LONGITUDE": -75.17157, "DATE_RANGE_START": 2023, "Total Visits": 481.0, "Total Visitors": 341.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 8.0, "Total Spend": 726.0, "Total Transactions": 50.0, "Total Customers": 34.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17157, 39.944603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-224@628-pmb-5fz", "Name": "Bread & Butter Gourmet Deli", "Category": "Restaurants and Other Eating Places", "Address": "1225 Sansom St", "LATITUDE": 39.950062, "LONGITUDE": -75.161286, "DATE_RANGE_START": 2023, "Total Visits": 1228.0, "Total Visitors": 911.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 44.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161286, 39.950062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-d35", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2201-2219 S Broad Street Commerce Plz", "LATITUDE": 39.922454, "LONGITUDE": -75.169871, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 6.0, "Total Spend": 3783.0, "Total Transactions": 343.0, "Total Customers": 233.0, "Median Spend per Transaction": 10.18, "Median Spend per Customer": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.169871, 39.922454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "Name": "Skyline Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "505 Washington Ave", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2023, "Total Visits": 453.0, "Total Visitors": 338.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 1.0, "Total Spend": 693.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 84.24, "Median Spend per Customer": 276.67 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6865 Rising Sun Ave", "LATITUDE": 40.055418, "LONGITUDE": -75.089672, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 159.0, "POI_CBG": 421010307002.0, "Median Dwell Time": 5.0, "Total Spend": 1362.0, "Total Transactions": 44.0, "Total Customers": 26.0, "Median Spend per Transaction": 25.07, "Median Spend per Customer": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089672, 40.055418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11749 Bustleton Ave Ste 14", "LATITUDE": 40.120321, "LONGITUDE": -75.016067, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 15.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 5.0, "Total Spend": 376.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 13.12, "Median Spend per Customer": 20.96 }, "geometry": { "type": "Point", "coordinates": [ -75.016067, 40.120321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2023, "Total Visits": 442.0, "Total Visitors": 154.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 330.0, "Total Spend": 7796.0, "Total Transactions": 467.0, "Total Customers": 351.0, "Median Spend per Transaction": 13.59, "Median Spend per Customer": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "Name": "Lombard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "542 Lombard St", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2023, "Total Visits": 98.0, "Total Visitors": 98.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 1.0, "Total Spend": 1165.0, "Total Transactions": 159.0, "Total Customers": 78.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1618 Chestnut St # 22", "LATITUDE": 39.951058, "LONGITUDE": -75.168149, "DATE_RANGE_START": 2023, "Total Visits": 40.0, "Total Visitors": 33.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 3013.0, "Total Transactions": 81.0, "Total Customers": 74.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 30.16 }, "geometry": { "type": "Point", "coordinates": [ -75.168149, 39.951058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pj4-tqf", "Name": "China Dragon", "Category": "Restaurants and Other Eating Places", "Address": "2763 N Reese St", "LATITUDE": 39.993654, "LONGITUDE": -75.140353, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010175003.0, "Median Dwell Time": null, "Total Spend": 55.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140353, 39.993654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yjv", "Name": "Prince Tea House", "Category": "Restaurants and Other Eating Places", "Address": "203 N 9th St", "LATITUDE": 39.955371, "LONGITUDE": -75.154071, "DATE_RANGE_START": 2023, "Total Visits": 333.0, "Total Visitors": 296.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 58.0, "Total Spend": 2622.0, "Total Transactions": 53.0, "Total Customers": 50.0, "Median Spend per Transaction": 44.97, "Median Spend per Customer": 43.76 }, "geometry": { "type": "Point", "coordinates": [ -75.154071, 39.955371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7601 Lindbergh Blvd", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2023, "Total Visits": 861.0, "Total Visitors": 618.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 13.0, "Total Spend": 4752.0, "Total Transactions": 565.0, "Total Customers": 302.0, "Median Spend per Transaction": 7.11, "Median Spend per Customer": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2023, "Total Visits": 506.0, "Total Visitors": 385.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 6533.0, "Total Transactions": 814.0, "Total Customers": 388.0, "Median Spend per Transaction": 6.95, "Median Spend per Customer": 9.85 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-226@628-pfz-bhq", "Name": "Mr Wish", "Category": "Grocery Stores", "Address": "4321 Main St", "LATITUDE": 40.025309, "LONGITUDE": -75.222661, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 128.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 10.26, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.222661, 40.025309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-vpv", "Name": "P'unk Burger", "Category": "Restaurants and Other Eating Places", "Address": "1823 E Passyunk Ave", "LATITUDE": 39.927124, "LONGITUDE": -75.166327, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 405.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 46.0, "Total Spend": 256.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 101.99, "Median Spend per Customer": 101.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.927124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "106 S 40th St", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 140.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 85.0, "Total Spend": 2287.0, "Total Transactions": 63.0, "Total Customers": 59.0, "Median Spend per Transaction": 29.84, "Median Spend per Customer": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2801 Cottman Ave", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2023, "Total Visits": 951.0, "Total Visitors": 703.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 11.0, "Total Spend": 14001.0, "Total Transactions": 933.0, "Total Customers": 689.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 15.45 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-ygk", "Name": "Snow Show", "Category": "Restaurants and Other Eating Places", "Address": "1001 Arch St", "LATITUDE": 39.953739, "LONGITUDE": -75.15638, "DATE_RANGE_START": 2023, "Total Visits": 307.0, "Total Visitors": 302.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 454.0, "Total Transactions": 39.0, "Total Customers": 34.0, "Median Spend per Transaction": 9.2, "Median Spend per Customer": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.15638, 39.953739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "Name": "Greene Street", "Category": "Clothing Stores", "Address": "8524 Germantown Ave", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2023, "Total Visits": 343.0, "Total Visitors": 269.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 17.0, "Total Spend": 505.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 26.7, "Median Spend per Customer": 26.45 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm4-dsq", "Name": "Barrel's Fine Food", "Category": "Restaurants and Other Eating Places", "Address": "1725 Wolf St", "LATITUDE": 39.922841, "LONGITUDE": -75.17594, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010039013.0, "Median Dwell Time": 1.0, "Total Spend": 1083.0, "Total Transactions": 23.0, "Total Customers": 20.0, "Median Spend per Transaction": 34.94, "Median Spend per Customer": 37.82 }, "geometry": { "type": "Point", "coordinates": [ -75.17594, 39.922841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "Name": "Domenic's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "14258 Bustleton Ave", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 118.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 24.0, "Total Spend": 285.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 32.56 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "Name": "Thai Kuu", "Category": "Restaurants and Other Eating Places", "Address": "35 Bethlehem Pike Ste 109A", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2023, "Total Visits": 278.0, "Total Visitors": 225.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 2.0, "Total Spend": 1062.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 50.01, "Median Spend per Customer": 50.82 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-p8j-94v", "Name": "Tei Japanese Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "7111 Frankford Ave", "LATITUDE": 40.034643, "LONGITUDE": -75.043989, "DATE_RANGE_START": 2023, "Total Visits": 400.0, "Total Visitors": 257.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 10.0, "Total Spend": 773.0, "Total Transactions": 30.0, "Total Customers": 21.0, "Median Spend per Transaction": 19.4, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043989, 40.034643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "Name": "Sprouts Farmers Market", "Category": "Grocery Stores", "Address": "1000 S Broad St", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2023, "Total Visits": 893.0, "Total Visitors": 492.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 19.0, "Total Spend": 207980.0, "Total Transactions": 6015.0, "Total Customers": 2774.0, "Median Spend per Transaction": 20.81, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-mzf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1601 John F Kennedy Blvd", "LATITUDE": 39.954224, "LONGITUDE": -75.167482, "DATE_RANGE_START": 2023, "Total Visits": 5142.0, "Total Visitors": 2887.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 717.0, "Total Transactions": 100.0, "Total Customers": 43.0, "Median Spend per Transaction": 5.04, "Median Spend per Customer": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.167482, 39.954224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj3-b8v", "Name": "The Stand", "Category": "Restaurants and Other Eating Places", "Address": "1844 W Hunting Park Ave", "LATITUDE": 40.013776, "LONGITUDE": -75.15796, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010202005.0, "Median Dwell Time": 1.0, "Total Spend": 398.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 30.75, "Median Spend per Customer": 30.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15796, 40.013776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "Name": "Bassetts Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "45 N 12th St", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 198.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 5017.0, "Total Transactions": 381.0, "Total Customers": 348.0, "Median Spend per Transaction": 9.55, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-4sq", "Name": "Best Western Plus Philadelphia Convention Center Hotel", "Category": "Traveler Accommodation", "Address": "1225 Vine St", "LATITUDE": 39.957993, "LONGITUDE": -75.159443, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 8.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 388.0, "Total Spend": 23.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159443, 39.957993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-pn5", "Name": "Yiro Yiro", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St # 29", "LATITUDE": 39.954699, "LONGITUDE": -75.202157, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 164.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 18.0, "Total Spend": 2395.0, "Total Transactions": 119.0, "Total Customers": 104.0, "Median Spend per Transaction": 16.15, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.202157, 39.954699 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3750 W Girard Ave", "LATITUDE": 39.974455, "LONGITUDE": -75.199174, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010110001.0, "Median Dwell Time": 4.0, "Total Spend": 4680.0, "Total Transactions": 108.0, "Total Customers": 79.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 30.15 }, "geometry": { "type": "Point", "coordinates": [ -75.199174, 39.974455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pne-xt9", "Name": "Capitol Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "2035 Richmond St", "LATITUDE": 39.971321, "LONGITUDE": -75.120197, "DATE_RANGE_START": 2023, "Total Visits": 312.0, "Total Visitors": 228.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 65.0, "Total Spend": 538.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 79.38, "Median Spend per Customer": 158.76 }, "geometry": { "type": "Point", "coordinates": [ -75.120197, 39.971321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvx-3dv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "801 N 48th St", "LATITUDE": 39.967246, "LONGITUDE": -75.215954, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010105001.0, "Median Dwell Time": 14.0, "Total Spend": 475.0, "Total Transactions": 28.0, "Total Customers": 19.0, "Median Spend per Transaction": 12.66, "Median Spend per Customer": 17.55 }, "geometry": { "type": "Point", "coordinates": [ -75.215954, 39.967246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "138 W Chelten Ave", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2023, "Total Visits": 318.0, "Total Visitors": 230.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 9.0, "Total Spend": 376.0, "Total Transactions": 41.0, "Total Customers": 25.0, "Median Spend per Transaction": 6.51, "Median Spend per Customer": 10.91 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-gkz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5301 Chew Ave", "LATITUDE": 40.043254, "LONGITUDE": -75.158799, "DATE_RANGE_START": 2023, "Total Visits": 393.0, "Total Visitors": 261.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 9.0, "Total Spend": 4852.0, "Total Transactions": 352.0, "Total Customers": 163.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 18.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158799, 40.043254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6602 Frankford Ave @ Magee Ave", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2023, "Total Visits": 219.0, "Total Visitors": 118.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 98.0, "Total Spend": 1035.0, "Total Transactions": 49.0, "Total Customers": 44.0, "Median Spend per Transaction": 19.71, "Median Spend per Customer": 19.92 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmb-7h5", "Name": "Tuscany Cafe", "Category": "Restaurants and Other Eating Places", "Address": "230 S Broad St", "LATITUDE": 39.948378, "LONGITUDE": -75.165027, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 224.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 2.0, "Total Spend": 315.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 17.46, "Median Spend per Customer": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.165027, 39.948378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-59f", "Name": "Bellissima Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7816 Castor Ave", "LATITUDE": 40.058663, "LONGITUDE": -75.059466, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 128.0, "POI_CBG": 421010336002.0, "Median Dwell Time": 9.0, "Total Spend": 251.0, "Total Transactions": 13.0, "Total Customers": 3.0, "Median Spend per Transaction": 19.35, "Median Spend per Customer": 100.22 }, "geometry": { "type": "Point", "coordinates": [ -75.059466, 40.058663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm5-sdv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "411 W Oregon Ave", "LATITUDE": 39.915109, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 152.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 23.0, "Total Spend": 1988.0, "Total Transactions": 114.0, "Total Customers": 93.0, "Median Spend per Transaction": 13.28, "Median Spend per Customer": 14.78 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.915109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@63s-dvy-mx5", "Name": "Surreal Creamery", "Category": "Restaurants and Other Eating Places", "Address": "3818 Pa-3", "LATITUDE": 39.955025, "LONGITUDE": -75.199293, "DATE_RANGE_START": 2023, "Total Visits": 1701.0, "Total Visitors": 1199.0, "POI_CBG": 421010088012.0, "Median Dwell Time": 9.0, "Total Spend": 2234.0, "Total Transactions": 155.0, "Total Customers": 133.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.199293, 39.955025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "8880 Bartram Ave", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2023, "Total Visits": 646.0, "Total Visitors": 147.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1100.0, "Total Spend": 9254.0, "Total Transactions": 29.0, "Total Customers": 14.0, "Median Spend per Transaction": 146.59, "Median Spend per Customer": 321.22 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "Name": "Sawatdee Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "534 S 15th St", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2023, "Total Visits": 169.0, "Total Visitors": 134.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 1.0, "Total Spend": 173.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 18.72, "Median Spend per Customer": 18.72 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6587 Roosevelt Blvd", "LATITUDE": 40.035406, "LONGITUDE": -75.064931, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 1.0, "Total Spend": 194.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 16.66, "Median Spend per Customer": 24.45 }, "geometry": { "type": "Point", "coordinates": [ -75.064931, 40.035406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9212 Frankford Ave", "LATITUDE": 40.055982, "LONGITUDE": -75.005099, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 10.0, "Total Spend": 861.0, "Total Transactions": 38.0, "Total Customers": 25.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 28.94 }, "geometry": { "type": "Point", "coordinates": [ -75.005099, 40.055982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-tvz", "Name": "Via Locusta", "Category": "Restaurants and Other Eating Places", "Address": "1723 Locust St", "LATITUDE": 39.949069, "LONGITUDE": -75.170305, "DATE_RANGE_START": 2023, "Total Visits": 832.0, "Total Visitors": 497.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 209.0, "Total Spend": 2452.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 70.13, "Median Spend per Customer": 67.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170305, 39.949069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "Name": "Morgan's Pier", "Category": "Restaurants and Other Eating Places", "Address": "221 N Columbus Blvd", "LATITUDE": 39.954787, "LONGITUDE": -75.138888, "DATE_RANGE_START": 2023, "Total Visits": 343.0, "Total Visitors": 259.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 51.0, "Total Spend": 15199.0, "Total Transactions": 470.0, "Total Customers": 233.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 46.61 }, "geometry": { "type": "Point", "coordinates": [ -75.138888, 39.954787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-ffz", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "1528 W Ritner St", "LATITUDE": 39.92086, "LONGITUDE": -75.173341, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 124.0, "POI_CBG": 421010039021.0, "Median Dwell Time": 11.0, "Total Spend": 167.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.21, "Median Spend per Customer": 15.21 }, "geometry": { "type": "Point", "coordinates": [ -75.173341, 39.92086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "501 Franklin Mills Cir", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2023, "Total Visits": 964.0, "Total Visitors": 780.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 18.0, "Total Spend": 13263.0, "Total Transactions": 1080.0, "Total Customers": 721.0, "Median Spend per Transaction": 10.54, "Median Spend per Customer": 13.04 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "Name": "Reggae Reggae Vibes", "Category": "Restaurants and Other Eating Places", "Address": "517 W Girard Ave", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2023, "Total Visits": 39.0, "Total Visitors": 39.0, "POI_CBG": 421010144003.0, "Median Dwell Time": null, "Total Spend": 122.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 8.92, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978016, "LONGITUDE": -75.119436, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 15.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 354.0, "Total Spend": 8224.0, "Total Transactions": 996.0, "Total Customers": 500.0, "Median Spend per Transaction": 6.54, "Median Spend per Customer": 10.04 }, "geometry": { "type": "Point", "coordinates": [ -75.119436, 39.978016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "527 Franklin Mills Cir", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 199.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 4109.0, "Total Transactions": 219.0, "Total Customers": 200.0, "Median Spend per Transaction": 15.44, "Median Spend per Customer": 15.78 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "Name": "Bok Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "800 Mifflin St", "LATITUDE": 39.925319, "LONGITUDE": -75.160317, "DATE_RANGE_START": 2023, "Total Visits": 1053.0, "Total Visitors": 780.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 77.0, "Total Spend": 3173.0, "Total Transactions": 120.0, "Total Customers": 83.0, "Median Spend per Transaction": 21.44, "Median Spend per Customer": 28.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160317, 39.925319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1 Penn Sq E", "LATITUDE": 39.952549, "LONGITUDE": -75.162244, "DATE_RANGE_START": 2023, "Total Visits": 1782.0, "Total Visitors": 1251.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 29.0, "Total Spend": 6291.0, "Total Transactions": 913.0, "Total Customers": 447.0, "Median Spend per Transaction": 5.73, "Median Spend per Customer": 8.19 }, "geometry": { "type": "Point", "coordinates": [ -75.162244, 39.952549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "Name": "The Love", "Category": "Restaurants and Other Eating Places", "Address": "130 S 18th St", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2023, "Total Visits": 2842.0, "Total Visitors": 1860.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 34654.0, "Total Transactions": 311.0, "Total Customers": 272.0, "Median Spend per Transaction": 88.74, "Median Spend per Customer": 93.56 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "Name": "The Cheesecake Factory", "Category": "Restaurants and Other Eating Places", "Address": "1430 Walnut St", "LATITUDE": 39.949197, "LONGITUDE": -75.165815, "DATE_RANGE_START": 2023, "Total Visits": 713.0, "Total Visitors": 441.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 21.0, "Total Spend": 25479.0, "Total Transactions": 425.0, "Total Customers": 377.0, "Median Spend per Transaction": 46.48, "Median Spend per Customer": 57.42 }, "geometry": { "type": "Point", "coordinates": [ -75.165815, 39.949197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "Name": "The Plough & the Stars", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 209.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 47.0, "Total Spend": 2398.0, "Total Transactions": 49.0, "Total Customers": 44.0, "Median Spend per Transaction": 35.62, "Median Spend per Customer": 40.36 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-pqf", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6749 Germantown Ave", "LATITUDE": 40.05323, "LONGITUDE": -75.185876, "DATE_RANGE_START": 2023, "Total Visits": 66.0, "Total Visitors": 53.0, "POI_CBG": 421010253003.0, "Median Dwell Time": null, "Total Spend": 1374.0, "Total Transactions": 43.0, "Total Customers": 9.0, "Median Spend per Transaction": 36.1, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185876, 40.05323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "Name": "Girard Meat Market", "Category": "Specialty Food Stores", "Address": "4725 W Girard Ave", "LATITUDE": 39.972919, "LONGITUDE": -75.217579, "DATE_RANGE_START": 2023, "Total Visits": 294.0, "Total Visitors": 223.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 7.0, "Total Spend": 2320.0, "Total Transactions": 56.0, "Total Customers": 40.0, "Median Spend per Transaction": 36.59, "Median Spend per Customer": 30.26 }, "geometry": { "type": "Point", "coordinates": [ -75.217579, 39.972919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1601 S Columbus Blvd", "LATITUDE": 39.927199, "LONGITUDE": -75.144501, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 174.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 14.0, "Total Spend": 13899.0, "Total Transactions": 1172.0, "Total Customers": 828.0, "Median Spend per Transaction": 10.46, "Median Spend per Customer": 11.96 }, "geometry": { "type": "Point", "coordinates": [ -75.144501, 39.927199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "Name": "Capriccio Cafe and Bar", "Category": "Restaurants and Other Eating Places", "Address": "110 N 16th St", "LATITUDE": 39.955441, "LONGITUDE": -75.166519, "DATE_RANGE_START": 2023, "Total Visits": 349.0, "Total Visitors": 292.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 10.0, "Total Spend": 176.0, "Total Transactions": 16.0, "Total Customers": 13.0, "Median Spend per Transaction": 8.21, "Median Spend per Customer": 13.84 }, "geometry": { "type": "Point", "coordinates": [ -75.166519, 39.955441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2751 W Passyunk Ave", "LATITUDE": 39.92153, "LONGITUDE": -75.193325, "DATE_RANGE_START": 2023, "Total Visits": 772.0, "Total Visitors": 649.0, "POI_CBG": 421010036003.0, "Median Dwell Time": 5.0, "Total Spend": 1460.0, "Total Transactions": 40.0, "Total Customers": 36.0, "Median Spend per Transaction": 30.26, "Median Spend per Customer": 37.67 }, "geometry": { "type": "Point", "coordinates": [ -75.193325, 39.92153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "Name": "Main Street Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4444 Main St", "LATITUDE": 40.026401, "LONGITUDE": -75.226197, "DATE_RANGE_START": 2023, "Total Visits": 597.0, "Total Visitors": 436.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 17.0, "Total Spend": 467.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 34.55, "Median Spend per Customer": 34.55 }, "geometry": { "type": "Point", "coordinates": [ -75.226197, 40.026401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7nq", "Name": "Mitchell & Ness", "Category": "Clothing Stores", "Address": "1306 Walnut St", "LATITUDE": 39.948835, "LONGITUDE": -75.162377, "DATE_RANGE_START": 2023, "Total Visits": 1278.0, "Total Visitors": 782.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 46.0, "Total Spend": 3932.0, "Total Transactions": 31.0, "Total Customers": 30.0, "Median Spend per Transaction": 123.92, "Median Spend per Customer": 125.87 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.948835 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "2047 Cottman Ave", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2023, "Total Visits": 262.0, "Total Visitors": 262.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 28.0, "Total Spend": 1829.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 81.18, "Median Spend per Customer": 81.18 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w49", "Name": "Sam Ash Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1887 Franklin Mills Cir", "LATITUDE": 40.087105, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2023, "Total Visits": 385.0, "Total Visitors": 309.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 90.0, "Total Spend": 12073.0, "Total Transactions": 59.0, "Total Customers": 50.0, "Median Spend per Transaction": 101.51, "Median Spend per Customer": 118.11 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "Name": "HKS pharmacy", "Category": "Health and Personal Care Stores", "Address": "3357 N Front St", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2023, "Total Visits": 140.0, "Total Visitors": 51.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 12.0, "Total Spend": 5352.0, "Total Transactions": 248.0, "Total Customers": 173.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-phz-xbk", "Name": "Premium Pizza", "Category": "Restaurants and Other Eating Places", "Address": "953 E Tioga St", "LATITUDE": 40.001089, "LONGITUDE": -75.110473, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 8.0, "Total Spend": 1750.0, "Total Transactions": 70.0, "Total Customers": 48.0, "Median Spend per Transaction": 23.73, "Median Spend per Customer": 30.72 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.001089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pmb-yqf", "Name": "Vivi Bubble Tea", "Category": "Restaurants and Other Eating Places", "Address": "145 N 10th St", "LATITUDE": 39.954838, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 213.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 2.0, "Total Spend": 2791.0, "Total Transactions": 286.0, "Total Customers": 240.0, "Median Spend per Transaction": 7.07, "Median Spend per Customer": 7.65 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.954838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "Name": "Philly's Famous Italian Ices", "Category": "Restaurants and Other Eating Places", "Address": "1950 E Lehigh Ave", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 114.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 3.0, "Total Spend": 1705.0, "Total Transactions": 54.0, "Total Customers": 35.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "Name": "San Lucas Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2000 S Bouvier St", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 38.0, "Total Spend": 368.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 16.36, "Median Spend per Customer": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvw-bhq", "Name": "Top Taste", "Category": "Restaurants and Other Eating Places", "Address": "40 N 52nd St", "LATITUDE": 39.961231, "LONGITUDE": -75.224868, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 142.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 7.0, "Total Spend": 391.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224868, 39.961231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "Name": "Chew Deli", "Category": "Restaurants and Other Eating Places", "Address": "6302 Chew Ave", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2023, "Total Visits": 164.0, "Total Visitors": 56.0, "POI_CBG": 421010252007.0, "Median Dwell Time": 162.0, "Total Spend": 1360.0, "Total Transactions": 143.0, "Total Customers": 43.0, "Median Spend per Transaction": 9.62, "Median Spend per Customer": 17.24 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "Name": "Chuck E. Cheese's", "Category": "Restaurants and Other Eating Places", "Address": "9 Snyder Ave Frnt", "LATITUDE": 39.921668, "LONGITUDE": -75.14493, "DATE_RANGE_START": 2023, "Total Visits": 511.0, "Total Visitors": 480.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 26.0, "Total Spend": 890.0, "Total Transactions": 30.0, "Total Customers": 13.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 46.66 }, "geometry": { "type": "Point", "coordinates": [ -75.14493, 39.921668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-nkf", "Name": "Alexander Pizza", "Category": "Restaurants and Other Eating Places", "Address": "500 W Lehigh Ave", "LATITUDE": 39.991846, "LONGITUDE": -75.140337, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 167.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 1.0, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.140337, 39.991846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914428, "LONGITUDE": -75.156268, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 7.0, "Total Spend": 6946.0, "Total Transactions": 909.0, "Total Customers": 336.0, "Median Spend per Transaction": 6.31, "Median Spend per Customer": 9.39 }, "geometry": { "type": "Point", "coordinates": [ -75.156268, 39.914428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "2237 Cecil B Moore Ave", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 220.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 2.0, "Total Spend": 113.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 7.68 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "Name": "Cafe La Maude", "Category": "Restaurants and Other Eating Places", "Address": "816 N 4th St", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 104.0, "POI_CBG": 421010367002.0, "Median Dwell Time": 67.0, "Total Spend": 1663.0, "Total Transactions": 25.0, "Total Customers": 23.0, "Median Spend per Transaction": 63.61, "Median Spend per Customer": 63.61 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-7yv", "Name": "Home2 Suites", "Category": "Traveler Accommodation", "Address": "1200 Arch St", "LATITUDE": 39.953662, "LONGITUDE": -75.15975, "DATE_RANGE_START": 2023, "Total Visits": 3189.0, "Total Visitors": 2384.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 15.0, "Total Spend": 5607.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 239.9, "Median Spend per Customer": 239.9 }, "geometry": { "type": "Point", "coordinates": [ -75.15975, 39.953662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-whq", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "304 Market St", "LATITUDE": 39.949985, "LONGITUDE": -75.146017, "DATE_RANGE_START": 2023, "Total Visits": 128.0, "Total Visitors": 111.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 198.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 14.21, "Median Spend per Customer": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.146017, 39.949985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "Name": "Total Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "2431 Castor Ave Ste A", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 81.0, "Total Spend": 3134.0, "Total Transactions": 118.0, "Total Customers": 86.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 29.25 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-2hq", "Name": "O Sole Mio", "Category": "Restaurants and Other Eating Places", "Address": "824 S 8th St", "LATITUDE": 39.937827, "LONGITUDE": -75.148269, "DATE_RANGE_START": 2023, "Total Visits": 114.0, "Total Visitors": 114.0, "POI_CBG": 421010017001.0, "Median Dwell Time": 1.0, "Total Spend": 1141.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 34.46, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148269, 39.937827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm6-jn5", "Name": "Kyoto Japan", "Category": "Restaurants and Other Eating Places", "Address": "37 Snyder Ave", "LATITUDE": 39.921763, "LONGITUDE": -75.14657, "DATE_RANGE_START": 2023, "Total Visits": 276.0, "Total Visitors": 247.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 21.0, "Total Spend": 1625.0, "Total Transactions": 83.0, "Total Customers": 60.0, "Median Spend per Transaction": 14.92, "Median Spend per Customer": 18.65 }, "geometry": { "type": "Point", "coordinates": [ -75.14657, 39.921763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "Name": "CB2", "Category": "Furniture Stores", "Address": "1422 Walnut St", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2023, "Total Visits": 1025.0, "Total Visitors": 678.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 18.0, "Total Spend": 2156.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 73.35, "Median Spend per Customer": 73.35 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pj4-y35", "Name": "Checo Grocery", "Category": "Grocery Stores", "Address": "1227 W Venango St", "LATITUDE": 40.007608, "LONGITUDE": -75.14884, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 244.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 2.0, "Total Spend": 102.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14884, 40.007608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phy-gzf", "Name": "Pharmacy of America VII", "Category": "Health and Personal Care Stores", "Address": "4654 N 5th St", "LATITUDE": 40.022544, "LONGITUDE": -75.133834, "DATE_RANGE_START": 2023, "Total Visits": 725.0, "Total Visitors": 566.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 11.0, "Total Spend": 750.0, "Total Transactions": 41.0, "Total Customers": 39.0, "Median Spend per Transaction": 5.8, "Median Spend per Customer": 5.8 }, "geometry": { "type": "Point", "coordinates": [ -75.133834, 40.022544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "8005 Ogontz Ave", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2023, "Total Visits": 1020.0, "Total Visitors": 737.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 4.0, "Total Spend": 12300.0, "Total Transactions": 490.0, "Total Customers": 332.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "Name": "Atomic City Comics", "Category": "Book Stores and News Dealers", "Address": "638 South St", "LATITUDE": 39.94191, "LONGITUDE": -75.153432, "DATE_RANGE_START": 2023, "Total Visits": 849.0, "Total Visitors": 698.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 6.0, "Total Spend": 1317.0, "Total Transactions": 25.0, "Total Customers": 23.0, "Median Spend per Transaction": 42.08, "Median Spend per Customer": 56.11 }, "geometry": { "type": "Point", "coordinates": [ -75.153432, 39.94191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "Name": "Bloomingdale's Outlet Philadelphia", "Category": "Department Stores", "Address": "1625 Chestnut St Ste 240-248", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 38.0, "Total Spend": 3656.0, "Total Transactions": 49.0, "Total Customers": 41.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bzf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "649 Foulkrod St", "LATITUDE": 40.035403, "LONGITUDE": -75.107326, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 7.0, "Total Spend": 688.0, "Total Transactions": 55.0, "Total Customers": 38.0, "Median Spend per Transaction": 7.85, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107326, 40.035403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-rkz", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "7702 City Ave", "LATITUDE": 39.977315, "LONGITUDE": -75.273101, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 4.0, "Total Spend": 483.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 130.0, "Median Spend per Customer": 130.0 }, "geometry": { "type": "Point", "coordinates": [ -75.273101, 39.977315 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-22t@628-pgb-k75", "Name": "Rock N' Rolls", "Category": "Special Food Services", "Address": "1308 W Girard Ave", "LATITUDE": 39.970765, "LONGITUDE": -75.15777, "DATE_RANGE_START": 2023, "Total Visits": 440.0, "Total Visitors": 312.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 5.0, "Total Spend": 757.0, "Total Transactions": 33.0, "Total Customers": 26.0, "Median Spend per Transaction": 20.24, "Median Spend per Customer": 26.45 }, "geometry": { "type": "Point", "coordinates": [ -75.15777, 39.970765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3951 E Roosevelt Blvd", "LATITUDE": 40.026951, "LONGITUDE": -75.1112, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010292001.0, "Median Dwell Time": 1.0, "Total Spend": 1136.0, "Total Transactions": 38.0, "Total Customers": 29.0, "Median Spend per Transaction": 22.55, "Median Spend per Customer": 25.03 }, "geometry": { "type": "Point", "coordinates": [ -75.1112, 40.026951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7261 Roosevelt Blvd", "LATITUDE": 40.043941, "LONGITUDE": -75.054036, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 28.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 5.0, "Total Spend": 806.0, "Total Transactions": 26.0, "Total Customers": 23.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054036, 40.043941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "Name": "Schmear It", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956711, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 15.0, "Total Spend": 992.0, "Total Transactions": 95.0, "Total Customers": 70.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1200 Walnut St Ste B", "LATITUDE": 39.948755, "LONGITUDE": -75.160687, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 7.0, "Total Spend": 12566.0, "Total Transactions": 907.0, "Total Customers": 601.0, "Median Spend per Transaction": 12.81, "Median Spend per Customer": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.160687, 39.948755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4900 City Ave", "LATITUDE": 40.000821, "LONGITUDE": -75.226777, "DATE_RANGE_START": 2023, "Total Visits": 1205.0, "Total Visitors": 848.0, "POI_CBG": 421010121002.0, "Median Dwell Time": 5.0, "Total Spend": 3311.0, "Total Transactions": 89.0, "Total Customers": 61.0, "Median Spend per Transaction": 37.62, "Median Spend per Customer": 41.62 }, "geometry": { "type": "Point", "coordinates": [ -75.226777, 40.000821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "Name": "Gap Factory Store", "Category": "Clothing Stores", "Address": "2123-25 Cottman Avenue And 41 Spc 40", "LATITUDE": 40.049988, "LONGITUDE": -75.062581, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 6.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 21.0, "Total Spend": 1117.0, "Total Transactions": 23.0, "Total Customers": 20.0, "Median Spend per Transaction": 32.74, "Median Spend per Customer": 51.98 }, "geometry": { "type": "Point", "coordinates": [ -75.062581, 40.049988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp4-kfz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2459 Kensington Ave", "LATITUDE": 39.987233, "LONGITUDE": -75.129676, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 138.0, "POI_CBG": 421010161004.0, "Median Dwell Time": 10.0, "Total Spend": 347.0, "Total Transactions": 31.0, "Total Customers": 21.0, "Median Spend per Transaction": 6.69, "Median Spend per Customer": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.129676, 39.987233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnz-zj9", "Name": "Flower Shop", "Category": "Florists", "Address": "3399 Agate St", "LATITUDE": 39.991576, "LONGITUDE": -75.102383, "DATE_RANGE_START": 2023, "Total Visits": 258.0, "Total Visitors": 185.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 23.0, "Total Spend": 221.0, "Total Transactions": 23.0, "Total Customers": 19.0, "Median Spend per Transaction": 6.9, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.102383, 39.991576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "Name": "Buffalo Exchange", "Category": "Used Merchandise Stores", "Address": "1520 Chestnut St", "LATITUDE": 39.950921, "LONGITUDE": -75.166594, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 9562.0, "Total Transactions": 230.0, "Total Customers": 213.0, "Median Spend per Transaction": 33.57, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166594, 39.950921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pmb-7qz", "Name": "Voyeur Nightclub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1221 Saint James St", "LATITUDE": 39.948333, "LONGITUDE": -75.16191, "DATE_RANGE_START": 2023, "Total Visits": 615.0, "Total Visitors": 306.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 60.0, "Total Spend": 2849.0, "Total Transactions": 76.0, "Total Customers": 54.0, "Median Spend per Transaction": 30.05, "Median Spend per Customer": 35.01 }, "geometry": { "type": "Point", "coordinates": [ -75.16191, 39.948333 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "Name": "Broad Street Diner", "Category": "Restaurants and Other Eating Places", "Address": "1135 S Broad St", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 168.0, "POI_CBG": 421010023001.0, "Median Dwell Time": 70.0, "Total Spend": 4913.0, "Total Transactions": 139.0, "Total Customers": 100.0, "Median Spend per Transaction": 33.44, "Median Spend per Customer": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "Name": "New Wave Cafe", "Category": "Restaurants and Other Eating Places", "Address": "784 S 3rd St", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 149.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 77.0, "Total Spend": 6150.0, "Total Transactions": 132.0, "Total Customers": 90.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 44.86 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "Name": "Philly Auto", "Category": "Automobile Dealers", "Address": "4530 Torresdale Ave", "LATITUDE": 40.010175, "LONGITUDE": -75.080992, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010294003.0, "Median Dwell Time": 12.0, "Total Spend": 23239.0, "Total Transactions": 26.0, "Total Customers": 25.0, "Median Spend per Transaction": 49.28, "Median Spend per Customer": 49.24 }, "geometry": { "type": "Point", "coordinates": [ -75.080992, 40.010175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pgb-st9", "Name": "South", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1410 Mount Vernon St", "LATITUDE": 39.964359, "LONGITUDE": -75.161465, "DATE_RANGE_START": 2023, "Total Visits": 500.0, "Total Visitors": 381.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 39.0, "Total Spend": 1127.0, "Total Transactions": 34.0, "Total Customers": 31.0, "Median Spend per Transaction": 29.48, "Median Spend per Customer": 29.76 }, "geometry": { "type": "Point", "coordinates": [ -75.161465, 39.964359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-ph5-py9", "Name": "Papp's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6001 Hazelhurst St", "LATITUDE": 39.982659, "LONGITUDE": -75.241682, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 138.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 3.0, "Total Spend": 377.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 28.57, "Median Spend per Customer": 37.76 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.982659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-6p9", "Name": "W Hotels", "Category": "Traveler Accommodation", "Address": "1439 Chestnut St", "LATITUDE": 39.951198, "LONGITUDE": -75.165103, "DATE_RANGE_START": 2023, "Total Visits": 48.0, "Total Visitors": 40.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 23736.0, "Total Transactions": 56.0, "Total Customers": 49.0, "Median Spend per Transaction": 397.46, "Median Spend per Customer": 394.48 }, "geometry": { "type": "Point", "coordinates": [ -75.165103, 39.951198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pfx-kmk", "Name": "Blondie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4417 Main St", "LATITUDE": 40.026272, "LONGITUDE": -75.225359, "DATE_RANGE_START": 2023, "Total Visits": 1616.0, "Total Visitors": 1477.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 12.0, "Total Spend": 3061.0, "Total Transactions": 26.0, "Total Customers": 25.0, "Median Spend per Transaction": 87.6, "Median Spend per Customer": 97.13 }, "geometry": { "type": "Point", "coordinates": [ -75.225359, 40.026272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "Name": "Crazy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1837 Chestnut St", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2023, "Total Visits": 253.0, "Total Visitors": 244.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 1295.0, "Total Transactions": 54.0, "Total Customers": 45.0, "Median Spend per Transaction": 20.12, "Median Spend per Customer": 21.98 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-kcq", "Name": "Sushi Ya", "Category": "Restaurants and Other Eating Places", "Address": "1418 W Girard Ave", "LATITUDE": 39.97144, "LONGITUDE": -75.160502, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 34.0, "POI_CBG": 421010140001.0, "Median Dwell Time": 21.0, "Total Spend": 764.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 24.79, "Median Spend per Customer": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.160502, 39.97144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm8-9fz", "Name": "Philadium", "Category": "Restaurants and Other Eating Places", "Address": "1631 Packer Ave", "LATITUDE": 39.91258, "LONGITUDE": -75.17636, "DATE_RANGE_START": 2023, "Total Visits": 127.0, "Total Visitors": 101.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 106.0, "Total Spend": 563.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 52.0, "Median Spend per Customer": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17636, 39.91258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "161 W Chelten Ave", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 194.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 8.0, "Total Spend": 1286.0, "Total Transactions": 68.0, "Total Customers": 61.0, "Median Spend per Transaction": 15.72, "Median Spend per Customer": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "Name": "Chill On the Hill", "Category": "Restaurants and Other Eating Places", "Address": "5 E Highland Ave", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2023, "Total Visits": 204.0, "Total Visitors": 116.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 77.0, "Total Spend": 5264.0, "Total Transactions": 489.0, "Total Customers": 331.0, "Median Spend per Transaction": 8.3, "Median Spend per Customer": 11.54 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "848 S 2nd St", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 228.0, "POI_CBG": 421010017001.0, "Median Dwell Time": 16.0, "Total Spend": 273.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 54.17, "Median Spend per Customer": 54.17 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-n3q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.95343, "LONGITUDE": -75.165858, "DATE_RANGE_START": 2023, "Total Visits": 2563.0, "Total Visitors": 1698.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 58.0, "Total Spend": 1254.0, "Total Transactions": 224.0, "Total Customers": 103.0, "Median Spend per Transaction": 4.1, "Median Spend per Customer": 6.98 }, "geometry": { "type": "Point", "coordinates": [ -75.165858, 39.95343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8902 Frankford Ave", "LATITUDE": 40.050992, "LONGITUDE": -75.010133, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 5.0, "Total Spend": 4752.0, "Total Transactions": 566.0, "Total Customers": 261.0, "Median Spend per Transaction": 7.09, "Median Spend per Customer": 10.85 }, "geometry": { "type": "Point", "coordinates": [ -75.010133, 40.050992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23h@63s-dw9-7nq", "Name": "Sky Asian Bistro", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.894615, "LONGITUDE": -75.229133, "DATE_RANGE_START": 2023, "Total Visits": 1045.0, "Total Visitors": 817.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 2428.0, "Total Transactions": 93.0, "Total Customers": 78.0, "Median Spend per Transaction": 21.55, "Median Spend per Customer": 25.04 }, "geometry": { "type": "Point", "coordinates": [ -75.229133, 39.894615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pg9-vpv", "Name": "OCF Coffee House", "Category": "Restaurants and Other Eating Places", "Address": "2100 Fairmount Ave", "LATITUDE": 39.967164, "LONGITUDE": -75.172278, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 339.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 38.0, "Total Spend": 9265.0, "Total Transactions": 844.0, "Total Customers": 525.0, "Median Spend per Transaction": 8.29, "Median Spend per Customer": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.172278, 39.967164 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-5vf", "Name": "Mario Brothers Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2224 Cottman Ave", "LATITUDE": 40.048464, "LONGITUDE": -75.061807, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 147.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 15.0, "Total Spend": 2566.0, "Total Transactions": 113.0, "Total Customers": 73.0, "Median Spend per Transaction": 20.75, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061807, 40.048464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "Name": "Banana Leaf", "Category": "Restaurants and Other Eating Places", "Address": "1009 Arch St", "LATITUDE": 39.95374, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 214.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 4.0, "Total Spend": 3184.0, "Total Transactions": 69.0, "Total Customers": 64.0, "Median Spend per Transaction": 36.02, "Median Spend per Customer": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.95374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-xyv", "Name": "Pho 20", "Category": "Restaurants and Other Eating Places", "Address": "234 N 10th St # 236", "LATITUDE": 39.956547, "LONGITUDE": -75.15583, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 210.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 3.0, "Total Spend": 1619.0, "Total Transactions": 59.0, "Total Customers": 54.0, "Median Spend per Transaction": 22.09, "Median Spend per Customer": 22.94 }, "geometry": { "type": "Point", "coordinates": [ -75.15583, 39.956547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "Name": "Yiro Yiro", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032317, "LONGITUDE": -75.214274, "DATE_RANGE_START": 2023, "Total Visits": 903.0, "Total Visitors": 499.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 5.0, "Total Spend": 627.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.214274, 40.032317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm4-ckf", "Name": "Sherwin-Williams", "Category": "Building Material and Supplies Dealers", "Address": "1603 Snyder Ave", "LATITUDE": 39.925078, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 25.0, "Total Spend": 220.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 23.86, "Median Spend per Customer": 88.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.925078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7434 Ogontz Ave", "LATITUDE": 40.068132, "LONGITUDE": -75.157028, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 4.0, "Total Spend": 1783.0, "Total Transactions": 56.0, "Total Customers": 49.0, "Median Spend per Transaction": 26.01, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157028, 40.068132 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5750 Baltimore Ave", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 187.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 7.0, "Total Spend": 3340.0, "Total Transactions": 50.0, "Total Customers": 46.0, "Median Spend per Transaction": 45.36, "Median Spend per Customer": 45.5 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-z75", "Name": "Pierogi Factory", "Category": "Restaurants and Other Eating Places", "Address": "9965 Bustleton Ave", "LATITUDE": 40.101174, "LONGITUDE": -75.028995, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 154.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 46.0, "Total Spend": 1222.0, "Total Transactions": 36.0, "Total Customers": 35.0, "Median Spend per Transaction": 30.22, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028995, 40.101174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "Name": "Burlington", "Category": "Clothing Stores", "Address": "833 Market St", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2023, "Total Visits": 13135.0, "Total Visitors": 7881.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 19.0, "Total Spend": 4310.0, "Total Transactions": 119.0, "Total Customers": 93.0, "Median Spend per Transaction": 26.52, "Median Spend per Customer": 31.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030246, "LONGITUDE": -75.101356, "DATE_RANGE_START": 2023, "Total Visits": 914.0, "Total Visitors": 719.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 36.0, "Total Spend": 37879.0, "Total Transactions": 814.0, "Total Customers": 738.0, "Median Spend per Transaction": 33.23, "Median Spend per Customer": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.101356, 40.030246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044605, "LONGITUDE": -75.101135, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 4.0, "Total Spend": 379.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 10.12, "Median Spend per Customer": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.101135, 40.044605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7901 Oxford Ave", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2023, "Total Visits": 1112.0, "Total Visitors": 834.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 9.0, "Total Spend": 18549.0, "Total Transactions": 1335.0, "Total Customers": 748.0, "Median Spend per Transaction": 11.96, "Median Spend per Customer": 16.79 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "Name": "Academy Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "3091 Holme Ave", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 2.0, "Total Spend": 2845.0, "Total Transactions": 96.0, "Total Customers": 36.0, "Median Spend per Transaction": 26.49, "Median Spend per Customer": 38.22 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj4-zzz", "Name": "Wok Works", "Category": "Restaurants and Other Eating Places", "Address": "3401 N Broad St", "LATITUDE": 40.005445, "LONGITUDE": -75.150737, "DATE_RANGE_START": 2023, "Total Visits": 7869.0, "Total Visitors": 3352.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 202.0, "Total Spend": 160.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.150737, 40.005445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7124 Ridge Ave # 62", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2023, "Total Visits": 373.0, "Total Visitors": 373.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 4.0, "Total Spend": 6868.0, "Total Transactions": 395.0, "Total Customers": 311.0, "Median Spend per Transaction": 13.81, "Median Spend per Customer": 15.26 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-73q", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.947698, "LONGITUDE": -75.193491, "DATE_RANGE_START": 2023, "Total Visits": 1005.0, "Total Visitors": 660.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 4.0, "Total Spend": 5653.0, "Total Transactions": 654.0, "Total Customers": 415.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.193491, 39.947698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2149 Catharine St", "LATITUDE": 39.942566, "LONGITUDE": -75.179038, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 109.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 39.0, "Total Spend": 2829.0, "Total Transactions": 297.0, "Total Customers": 223.0, "Median Spend per Transaction": 7.32, "Median Spend per Customer": 9.56 }, "geometry": { "type": "Point", "coordinates": [ -75.179038, 39.942566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5s5", "Name": "Loews Philadelphia Hotel", "Category": "Traveler Accommodation", "Address": "1200 Market St", "LATITUDE": 39.951621, "LONGITUDE": -75.160379, "DATE_RANGE_START": 2023, "Total Visits": 14228.0, "Total Visitors": 8935.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 11.0, "Total Spend": 39894.0, "Total Transactions": 401.0, "Total Customers": 264.0, "Median Spend per Transaction": 25.97, "Median Spend per Customer": 49.82 }, "geometry": { "type": "Point", "coordinates": [ -75.160379, 39.951621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "Name": "Bardot Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "447 Poplar St", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2023, "Total Visits": 660.0, "Total Visitors": 451.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 37.0, "Total Spend": 5875.0, "Total Transactions": 165.0, "Total Customers": 103.0, "Median Spend per Transaction": 23.1, "Median Spend per Customer": 30.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm4-pvz", "Name": "George's Sandwich Shop", "Category": "Restaurants and Other Eating Places", "Address": "900 S 9th St", "LATITUDE": 39.938842, "LONGITUDE": -75.157973, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 248.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 1.0, "Total Spend": 343.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157973, 39.938842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "Name": "King Food Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7426 Frankford Ave", "LATITUDE": 40.038461, "LONGITUDE": -75.036728, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 133.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 252.0, "Total Spend": 775.0, "Total Transactions": 31.0, "Total Customers": 23.0, "Median Spend per Transaction": 23.17, "Median Spend per Customer": 33.9 }, "geometry": { "type": "Point", "coordinates": [ -75.036728, 40.038461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-789", "Name": "The Wine Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5019 Baltimore Ave", "LATITUDE": 39.948079, "LONGITUDE": -75.224265, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 177.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 50.0, "Total Spend": 173.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224265, 39.948079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-9s5", "Name": "Parkside Beef & Ale", "Category": "Restaurants and Other Eating Places", "Address": "1433 Arch St", "LATITUDE": 39.954703, "LONGITUDE": -75.164618, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 15.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 51.0, "Total Spend": 4403.0, "Total Transactions": 134.0, "Total Customers": 69.0, "Median Spend per Transaction": 28.64, "Median Spend per Customer": 47.84 }, "geometry": { "type": "Point", "coordinates": [ -75.164618, 39.954703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "Name": "General Tso", "Category": "Restaurants and Other Eating Places", "Address": "2350 Orthodox St", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 90.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 8.0, "Total Spend": 1567.0, "Total Transactions": 45.0, "Total Customers": 31.0, "Median Spend per Transaction": 32.13, "Median Spend per Customer": 43.58 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-7bk", "Name": "Franky Bradley's", "Category": "Restaurants and Other Eating Places", "Address": "1320 Chancellor St", "LATITUDE": 39.948507, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2023, "Total Visits": 297.0, "Total Visitors": 237.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 32.0, "Total Spend": 448.0, "Total Transactions": 39.0, "Total Customers": 24.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 14.18 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.948507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "Name": "Kostas Bar Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "15 W Girard Ave", "LATITUDE": 39.968854, "LONGITUDE": -75.13498, "DATE_RANGE_START": 2023, "Total Visits": 829.0, "Total Visitors": 648.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 32.0, "Total Spend": 10048.0, "Total Transactions": 366.0, "Total Customers": 253.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 24.75 }, "geometry": { "type": "Point", "coordinates": [ -75.13498, 39.968854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "3212 N Broad St", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 157.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 16.0, "Total Spend": 145.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 20.13, "Median Spend per Customer": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@63s-dvw-j5f", "Name": "Montego Grill", "Category": "Restaurants and Other Eating Places", "Address": "5222 Walnut St", "LATITUDE": 39.956818, "LONGITUDE": -75.226326, "DATE_RANGE_START": 2023, "Total Visits": 44.0, "Total Visitors": 44.0, "POI_CBG": 421010085006.0, "Median Dwell Time": 1.0, "Total Spend": 103.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.226326, 39.956818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2023, "Total Visits": 476.0, "Total Visitors": 380.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 10.0, "Total Spend": 5767.0, "Total Transactions": 421.0, "Total Customers": 288.0, "Median Spend per Transaction": 12.23, "Median Spend per Customer": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pmb-6hq", "Name": "Top Tomato Bar & Pizza", "Category": "Restaurants and Other Eating Places", "Address": "116 S 11th St", "LATITUDE": 39.949587, "LONGITUDE": -75.158979, "DATE_RANGE_START": 2023, "Total Visits": 4640.0, "Total Visitors": 2981.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 12.0, "Total Spend": 129.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 18.49, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.158979, 39.949587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "Name": "Asia Express", "Category": "Restaurants and Other Eating Places", "Address": "7246 Castor Ave", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 195.0, "POI_CBG": 421010310001.0, "Median Dwell Time": 5.0, "Total Spend": 935.0, "Total Transactions": 35.0, "Total Customers": 28.0, "Median Spend per Transaction": 26.05, "Median Spend per Customer": 26.22 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-p9z", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "214 S 40th St", "LATITUDE": 39.953635, "LONGITUDE": -75.203154, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 98.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 65.0, "Total Spend": 534.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 14.55, "Median Spend per Customer": 14.55 }, "geometry": { "type": "Point", "coordinates": [ -75.203154, 39.953635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "Name": "Claire's", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952035, "LONGITUDE": -75.1683, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 38.0, "Total Spend": 4604.0, "Total Transactions": 116.0, "Total Customers": 116.0, "Median Spend per Transaction": 29.45, "Median Spend per Customer": 29.45 }, "geometry": { "type": "Point", "coordinates": [ -75.1683, 39.952035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj2-94v", "Name": "Classic Pizza", "Category": "Restaurants and Other Eating Places", "Address": "748 E Tioga St", "LATITUDE": 40.001175, "LONGITUDE": -75.114716, "DATE_RANGE_START": 2023, "Total Visits": 154.0, "Total Visitors": 132.0, "POI_CBG": 421010192002.0, "Median Dwell Time": null, "Total Spend": 491.0, "Total Transactions": 23.0, "Total Customers": 20.0, "Median Spend per Transaction": 15.74, "Median Spend per Customer": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.114716, 40.001175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1700 John F Kennedy Blvd", "LATITUDE": 39.953728, "LONGITUDE": -75.16849, "DATE_RANGE_START": 2023, "Total Visits": 908.0, "Total Visitors": 670.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 5.0, "Total Spend": 5506.0, "Total Transactions": 1080.0, "Total Customers": 475.0, "Median Spend per Transaction": 4.1, "Median Spend per Customer": 6.25 }, "geometry": { "type": "Point", "coordinates": [ -75.16849, 39.953728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "Name": "Head House Books", "Category": "Book Stores and News Dealers", "Address": "619 S 2nd St", "LATITUDE": 39.940559, "LONGITUDE": -75.145469, "DATE_RANGE_START": 2023, "Total Visits": 663.0, "Total Visitors": 596.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 14.0, "Total Spend": 2583.0, "Total Transactions": 71.0, "Total Customers": 64.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.145469, 39.940559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2500 Wharton St", "LATITUDE": 39.936256, "LONGITUDE": -75.186116, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 133.0, "POI_CBG": 421010032004.0, "Median Dwell Time": 19.0, "Total Spend": 583.0, "Total Transactions": 31.0, "Total Customers": 19.0, "Median Spend per Transaction": 13.1, "Median Spend per Customer": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.186116, 39.936256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "Name": "El Fuego", "Category": "Restaurants and Other Eating Places", "Address": "723 Walnut St", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 349.0, "Total Transactions": 21.0, "Total Customers": 11.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 14.69 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "Name": "Ross Stores", "Category": "Department Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.91264, "LONGITUDE": -75.155856, "DATE_RANGE_START": 2023, "Total Visits": 1828.0, "Total Visitors": 1571.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 23.0, "Total Spend": 5925.0, "Total Transactions": 162.0, "Total Customers": 132.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 29.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155856, 39.91264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2300 W Oregon Ave", "LATITUDE": 39.916142, "LONGITUDE": -75.188352, "DATE_RANGE_START": 2023, "Total Visits": 2154.0, "Total Visitors": 1688.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 24.0, "Total Spend": 32017.0, "Total Transactions": 286.0, "Total Customers": 194.0, "Median Spend per Transaction": 64.84, "Median Spend per Customer": 73.03 }, "geometry": { "type": "Point", "coordinates": [ -75.188352, 39.916142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-4y9", "Name": "Ez Dollar Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1013 Snyder Ave", "LATITUDE": 39.923795, "LONGITUDE": -75.163036, "DATE_RANGE_START": 2023, "Total Visits": 154.0, "Total Visitors": 127.0, "POI_CBG": 421010040011.0, "Median Dwell Time": 3.0, "Total Spend": 87.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 11.17, "Median Spend per Customer": 11.17 }, "geometry": { "type": "Point", "coordinates": [ -75.163036, 39.923795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24p-222@628-pmf-kcq", "Name": "Liberty Art & Framing", "Category": "Home Furnishings Stores", "Address": "136 S 20th St", "LATITUDE": 39.950849, "LONGITUDE": -75.173904, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 158.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 1.0, "Total Spend": 806.0, "Total Transactions": 11.0, "Total Customers": 6.0, "Median Spend per Transaction": 74.04, "Median Spend per Customer": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.173904, 39.950849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "Name": "Tavares Grocery", "Category": "Grocery Stores", "Address": "364 E Chelten Ave", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 130.0, "POI_CBG": 421010247005.0, "Median Dwell Time": 7.0, "Total Spend": 67.0, "Total Transactions": 8.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 26.63 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "Name": "University City Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4300 Walnut St", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010087013.0, "Median Dwell Time": null, "Total Spend": 358.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 26.88, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "Name": "Tiffany & Co.", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1715 Walnut St", "LATITUDE": 39.950221, "LONGITUDE": -75.169775, "DATE_RANGE_START": 2023, "Total Visits": 36.0, "Total Visitors": 28.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 21.0, "Total Spend": 4382.0, "Total Transactions": 15.0, "Total Customers": 14.0, "Median Spend per Transaction": 310.5, "Median Spend per Customer": 324.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169775, 39.950221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "1130 Market St", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2023, "Total Visits": 7024.0, "Total Visitors": 4781.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 4198.0, "Total Transactions": 147.0, "Total Customers": 125.0, "Median Spend per Transaction": 11.18, "Median Spend per Customer": 13.51 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7616 Highway City Line Ave @ 1 St", "LATITUDE": 39.978386, "LONGITUDE": -75.27109, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 15.0, "Total Spend": 36660.0, "Total Transactions": 749.0, "Total Customers": 555.0, "Median Spend per Transaction": 32.33, "Median Spend per Customer": 42.54 }, "geometry": { "type": "Point", "coordinates": [ -75.27109, 39.978386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j7q", "Name": "Boyds Philadelphia", "Category": "Clothing Stores", "Address": "1818 Chestnut St", "LATITUDE": 39.951667, "LONGITUDE": -75.171279, "DATE_RANGE_START": 2023, "Total Visits": 365.0, "Total Visitors": 257.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 16.0, "Total Spend": 29800.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 298.42, "Median Spend per Customer": 346.5 }, "geometry": { "type": "Point", "coordinates": [ -75.171279, 39.951667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm3-wc5", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "1400 E Passyunk Ave", "LATITUDE": 39.932286, "LONGITUDE": -75.162307, "DATE_RANGE_START": 2023, "Total Visits": 2339.0, "Total Visitors": 1215.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 13.0, "Total Spend": 183809.0, "Total Transactions": 5266.0, "Total Customers": 1918.0, "Median Spend per Transaction": 21.99, "Median Spend per Customer": 51.83 }, "geometry": { "type": "Point", "coordinates": [ -75.162307, 39.932286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd Ste F2", "LATITUDE": 40.031543, "LONGITUDE": -75.100254, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 60.0, "Total Spend": 1849.0, "Total Transactions": 40.0, "Total Customers": 30.0, "Median Spend per Transaction": 44.99, "Median Spend per Customer": 46.59 }, "geometry": { "type": "Point", "coordinates": [ -75.100254, 40.031543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dwf-bhq", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2910 S 70th St Unit 3B", "LATITUDE": 39.912346, "LONGITUDE": -75.233779, "DATE_RANGE_START": 2023, "Total Visits": 422.0, "Total Visitors": 217.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 13.0, "Total Spend": 609.0, "Total Transactions": 34.0, "Total Customers": 20.0, "Median Spend per Transaction": 13.81, "Median Spend per Customer": 17.35 }, "geometry": { "type": "Point", "coordinates": [ -75.233779, 39.912346 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8m-st9", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "5200 Frankford Ave", "LATITUDE": 40.022444, "LONGITUDE": -75.07849, "DATE_RANGE_START": 2023, "Total Visits": 61.0, "Total Visitors": 28.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 3.0, "Total Spend": 3403.0, "Total Transactions": 417.0, "Total Customers": 368.0, "Median Spend per Transaction": 7.12, "Median Spend per Customer": 7.57 }, "geometry": { "type": "Point", "coordinates": [ -75.07849, 40.022444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "Name": "Moy Fong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7411 Stenton Ave", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2023, "Total Visits": 268.0, "Total Visitors": 237.0, "POI_CBG": 421010264005.0, "Median Dwell Time": 10.0, "Total Spend": 2955.0, "Total Transactions": 129.0, "Total Customers": 101.0, "Median Spend per Transaction": 19.84, "Median Spend per Customer": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-yqf", "Name": "New Cira", "Category": "Grocery Stores", "Address": "2929 Arch St", "LATITUDE": 39.957232, "LONGITUDE": -75.182193, "DATE_RANGE_START": 2023, "Total Visits": 9630.0, "Total Visitors": 6969.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 5.0, "Total Spend": 170.0, "Total Transactions": 36.0, "Total Customers": 18.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 4.48 }, "geometry": { "type": "Point", "coordinates": [ -75.182193, 39.957232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjb-6ff", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "6200 N Broad St", "LATITUDE": 40.048119, "LONGITUDE": -75.143076, "DATE_RANGE_START": 2023, "Total Visits": 44.0, "Total Visitors": 21.0, "POI_CBG": 421010277001.0, "Median Dwell Time": 81.0, "Total Spend": 72.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 28.78, "Median Spend per Customer": 28.78 }, "geometry": { "type": "Point", "coordinates": [ -75.143076, 40.048119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-5pv", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2703 E Clearfield St", "LATITUDE": 39.982882, "LONGITUDE": -75.10466, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 5.0, "Total Spend": 150.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 19.93, "Median Spend per Customer": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.10466, 39.982882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-5j9", "Name": "Dollar Up & Gifts", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "10833 Bustleton Ave", "LATITUDE": 40.110031, "LONGITUDE": -75.024308, "DATE_RANGE_START": 2023, "Total Visits": 327.0, "Total Visitors": 244.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 4.0, "Total Spend": 828.0, "Total Transactions": 38.0, "Total Customers": 35.0, "Median Spend per Transaction": 14.53, "Median Spend per Customer": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.024308, 40.110031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "Name": "Windfall Gallery", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7944 Germantown Ave", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 111.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 10.0, "Total Spend": 165.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 43.74, "Median Spend per Customer": 43.74 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-47q", "Name": "Halal Food", "Category": "Restaurants and Other Eating Places", "Address": "SE @ Spring St", "LATITUDE": 39.95835, "LONGITUDE": -75.174953, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 1.0, "Total Spend": 451.0, "Total Transactions": 54.0, "Total Customers": 36.0, "Median Spend per Transaction": 7.7, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174953, 39.95835 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "Name": "South Street Souvlaki", "Category": "Restaurants and Other Eating Places", "Address": "509 South St", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 412.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 18.0, "Total Spend": 2829.0, "Total Transactions": 65.0, "Total Customers": 48.0, "Median Spend per Transaction": 34.92, "Median Spend per Customer": 43.03 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-zmk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5601 Chestnut St", "LATITUDE": 39.959909, "LONGITUDE": -75.233482, "DATE_RANGE_START": 2023, "Total Visits": 1938.0, "Total Visitors": 1122.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 20.0, "Total Spend": 529.0, "Total Transactions": 35.0, "Total Customers": 23.0, "Median Spend per Transaction": 14.24, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233482, 39.959909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "8500 Henry Ave Ste 10", "LATITUDE": 40.062998, "LONGITUDE": -75.237715, "DATE_RANGE_START": 2023, "Total Visits": 48.0, "Total Visitors": 40.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 18.0, "Total Spend": 22117.0, "Total Transactions": 441.0, "Total Customers": 337.0, "Median Spend per Transaction": 36.95, "Median Spend per Customer": 50.82 }, "geometry": { "type": "Point", "coordinates": [ -75.237715, 40.062998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "Name": "Mr. Tire", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6740 Frankford Ave", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010316006.0, "Median Dwell Time": 91.0, "Total Spend": 2276.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 225.41, "Median Spend per Customer": 218.6 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "Name": "Capital Beer", "Category": "Restaurants and Other Eating Places", "Address": "2661 E Cumberland St", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 154.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 4.0, "Total Spend": 5548.0, "Total Transactions": 209.0, "Total Customers": 122.0, "Median Spend per Transaction": 26.3, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "Name": "Real Food Eatery", "Category": "Restaurants and Other Eating Places", "Address": "207 S 16th St", "LATITUDE": 39.949411, "LONGITUDE": -75.16733, "DATE_RANGE_START": 2023, "Total Visits": 317.0, "Total Visitors": 145.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 387.0, "Total Spend": 225.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 19.39, "Median Spend per Customer": 15.29 }, "geometry": { "type": "Point", "coordinates": [ -75.16733, 39.949411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfy-zfz", "Name": "The Rook Manayunk", "Category": "Restaurants and Other Eating Places", "Address": "4001 Cresson St", "LATITUDE": 40.021721, "LONGITUDE": -75.215726, "DATE_RANGE_START": 2023, "Total Visits": 401.0, "Total Visitors": 349.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 6.0, "Total Spend": 11295.0, "Total Transactions": 202.0, "Total Customers": 163.0, "Median Spend per Transaction": 46.72, "Median Spend per Customer": 50.06 }, "geometry": { "type": "Point", "coordinates": [ -75.215726, 40.021721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-6p9", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "1515 Chestnut St", "LATITUDE": 39.951312, "LONGITUDE": -75.166086, "DATE_RANGE_START": 2023, "Total Visits": 481.0, "Total Visitors": 365.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 14.0, "Total Spend": 183.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 8.4, "Median Spend per Customer": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -75.166086, 39.951312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "3939 Chestnut St Fl 2", "LATITUDE": 39.955722, "LONGITUDE": -75.201818, "DATE_RANGE_START": 2023, "Total Visits": 2148.0, "Total Visitors": 1095.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 363.0, "Total Spend": 401.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 64.8, "Median Spend per Customer": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.201818, 39.955722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg2-2zf", "Name": "The Goat's Beard", "Category": "Restaurants and Other Eating Places", "Address": "4201 Main St", "LATITUDE": 40.023836, "LONGITUDE": -75.220118, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 152.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 20.0, "Total Spend": 5319.0, "Total Transactions": 124.0, "Total Customers": 105.0, "Median Spend per Transaction": 38.16, "Median Spend per Customer": 42.2 }, "geometry": { "type": "Point", "coordinates": [ -75.220118, 40.023836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7w-psq", "Name": "Rayaki Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "2818 Cottman Ave", "LATITUDE": 40.043746, "LONGITUDE": -75.053495, "DATE_RANGE_START": 2023, "Total Visits": 462.0, "Total Visitors": 344.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 30.0, "Total Spend": 481.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 49.14, "Median Spend per Customer": 49.68 }, "geometry": { "type": "Point", "coordinates": [ -75.053495, 40.043746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "7350 Oxford Ave", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 154.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 11.0, "Total Spend": 3567.0, "Total Transactions": 179.0, "Total Customers": 143.0, "Median Spend per Transaction": 16.28, "Median Spend per Customer": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-n5z", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St", "LATITUDE": 39.954209, "LONGITUDE": -75.200978, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 3.0, "Total Spend": 93.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 14.45, "Median Spend per Customer": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.200978, 39.954209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-223@628-pmb-yd9", "Name": "Happy Lamb Hot Pot", "Category": "Restaurants and Other Eating Places", "Address": "1017 Arch St Fl 1", "LATITUDE": 39.953782, "LONGITUDE": -75.157183, "DATE_RANGE_START": 2023, "Total Visits": 1556.0, "Total Visitors": 1121.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 16.0, "Total Spend": 5492.0, "Total Transactions": 103.0, "Total Customers": 93.0, "Median Spend per Transaction": 48.71, "Median Spend per Customer": 53.33 }, "geometry": { "type": "Point", "coordinates": [ -75.157183, 39.953782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "Name": "Nom Nom Ramen", "Category": "Restaurants and Other Eating Places", "Address": "20 S 18th St", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2023, "Total Visits": 276.0, "Total Visitors": 222.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 1647.0, "Total Transactions": 41.0, "Total Customers": 33.0, "Median Spend per Transaction": 41.96, "Median Spend per Customer": 49.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "Name": "DJ Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4040 City Ave", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2023, "Total Visits": 353.0, "Total Visitors": 282.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 9.0, "Total Spend": 1430.0, "Total Transactions": 31.0, "Total Customers": 28.0, "Median Spend per Transaction": 45.38, "Median Spend per Customer": 52.42 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2130 S Columbus Blvd", "LATITUDE": 39.918938, "LONGITUDE": -75.140855, "DATE_RANGE_START": 2023, "Total Visits": 554.0, "Total Visitors": 435.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 20.0, "Total Spend": 181.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 7.71, "Median Spend per Customer": 11.46 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 39.918938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "Name": "Palm Tree Gourmet", "Category": "Grocery Stores", "Address": "1940 Pine St", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 110.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 1.0, "Total Spend": 10782.0, "Total Transactions": 822.0, "Total Customers": 442.0, "Median Spend per Transaction": 11.56, "Median Spend per Customer": 15.97 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-224@628-pmb-66k", "Name": "Cosmic Cafe", "Category": "Restaurants and Other Eating Places", "Address": "122 S 12th St", "LATITUDE": 39.949349, "LONGITUDE": -75.160742, "DATE_RANGE_START": 2023, "Total Visits": 3282.0, "Total Visitors": 2360.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 6.0, "Total Spend": 572.0, "Total Transactions": 38.0, "Total Customers": 35.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 13.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160742, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2535 Aramingo Ave", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2023, "Total Visits": 1925.0, "Total Visitors": 1010.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 14.0, "Total Spend": 104899.0, "Total Transactions": 5035.0, "Total Customers": 2454.0, "Median Spend per Transaction": 15.15, "Median Spend per Customer": 26.41 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "Name": "The Ranchito", "Category": "Restaurants and Other Eating Places", "Address": "4745 Rising Sun Ave", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 162.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 5.0, "Total Spend": 2662.0, "Total Transactions": 119.0, "Total Customers": 85.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-r49", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6391 Oxford Ave", "LATITUDE": 40.044234, "LONGITUDE": -75.087246, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 42.0, "Total Spend": 4778.0, "Total Transactions": 175.0, "Total Customers": 120.0, "Median Spend per Transaction": 23.95, "Median Spend per Customer": 33.35 }, "geometry": { "type": "Point", "coordinates": [ -75.087246, 40.044234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p7w-6zf", "Name": "Broncos Brazilian Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "7634 Castor Ave", "LATITUDE": 40.057369, "LONGITUDE": -75.060783, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 163.0, "POI_CBG": 421010336003.0, "Median Dwell Time": 9.0, "Total Spend": 92.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.060783, 40.057369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pnx-cbk", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "1451 E Columbia Ave", "LATITUDE": 39.97443, "LONGITUDE": -75.13265, "DATE_RANGE_START": 2023, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 56.0, "Total Spend": 67.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 20.9, "Median Spend per Customer": 20.9 }, "geometry": { "type": "Point", "coordinates": [ -75.13265, 39.97443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-9cq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3437 Walnut St", "LATITUDE": 39.95317, "LONGITUDE": -75.193541, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 12.0, "Total Spend": 8047.0, "Total Transactions": 1429.0, "Total Customers": 506.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 8.79 }, "geometry": { "type": "Point", "coordinates": [ -75.193541, 39.95317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-t7q", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "2900 Island Ave Ste 2946", "LATITUDE": 39.901479, "LONGITUDE": -75.241623, "DATE_RANGE_START": 2023, "Total Visits": 1955.0, "Total Visitors": 1182.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 17.0, "Total Spend": 928.0, "Total Transactions": 6.0, "Total Customers": 3.0, "Median Spend per Transaction": 152.91, "Median Spend per Customer": 370.38 }, "geometry": { "type": "Point", "coordinates": [ -75.241623, 39.901479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pjb-8qf", "Name": "Kim's Market", "Category": "Grocery Stores", "Address": "6349 N Broad St", "LATITUDE": 40.050403, "LONGITUDE": -75.141786, "DATE_RANGE_START": 2023, "Total Visits": 441.0, "Total Visitors": 341.0, "POI_CBG": 421010268004.0, "Median Dwell Time": 4.0, "Total Spend": 1100.0, "Total Transactions": 36.0, "Total Customers": 28.0, "Median Spend per Transaction": 16.28, "Median Spend per Customer": 20.47 }, "geometry": { "type": "Point", "coordinates": [ -75.141786, 40.050403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pjf-zvf", "Name": "Chestnut Hill Sports", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "8628 Germantown Ave", "LATITUDE": 40.077007, "LONGITUDE": -75.208666, "DATE_RANGE_START": 2023, "Total Visits": 489.0, "Total Visitors": 368.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 58.0, "Total Spend": 1685.0, "Total Transactions": 25.0, "Total Customers": 19.0, "Median Spend per Transaction": 44.25, "Median Spend per Customer": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.208666, 40.077007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-pqf", "Name": "Tico's Tacos Tex Mex", "Category": "Restaurants and Other Eating Places", "Address": "1627 South St", "LATITUDE": 39.944355, "LONGITUDE": -75.169738, "DATE_RANGE_START": 2023, "Total Visits": 148.0, "Total Visitors": 80.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 18.0, "Total Spend": 65.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.72, "Median Spend per Customer": 26.14 }, "geometry": { "type": "Point", "coordinates": [ -75.169738, 39.944355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "Name": "SquareBurger", "Category": "Restaurants and Other Eating Places", "Address": "200 N 6th St", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 133.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 116.0, "Total Spend": 2165.0, "Total Transactions": 120.0, "Total Customers": 99.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-zs5", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "508 South St", "LATITUDE": 39.941661, "LONGITUDE": -75.151237, "DATE_RANGE_START": 2023, "Total Visits": 605.0, "Total Visitors": 524.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 5.0, "Total Spend": 60.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151237, 39.941661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "Name": "Dragon Phoenix House", "Category": "Restaurants and Other Eating Places", "Address": "2839 Tyson Ave", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 130.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 6.0, "Total Spend": 595.0, "Total Transactions": 19.0, "Total Customers": 18.0, "Median Spend per Transaction": 31.17, "Median Spend per Customer": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pmb-v75", "Name": "Mei Mei Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "33 S 2nd St", "LATITUDE": 39.948931, "LONGITUDE": -75.143532, "DATE_RANGE_START": 2023, "Total Visits": 326.0, "Total Visitors": 262.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 63.0, "Total Spend": 179.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 71.6, "Median Spend per Customer": 71.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143532, 39.948931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "Name": "IKEA", "Category": "Furniture Stores", "Address": "2206 S Columbus Blvd", "LATITUDE": 39.917103, "LONGITUDE": -75.141625, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 180.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 54.0, "Total Spend": 373514.0, "Total Transactions": 3943.0, "Total Customers": 2593.0, "Median Spend per Transaction": 32.08, "Median Spend per Customer": 57.81 }, "geometry": { "type": "Point", "coordinates": [ -75.141625, 39.917103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6412 Castor Ave # 6422", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2023, "Total Visits": 413.0, "Total Visitors": 311.0, "POI_CBG": 421010311013.0, "Median Dwell Time": 12.0, "Total Spend": 1368.0, "Total Transactions": 44.0, "Total Customers": 33.0, "Median Spend per Transaction": 14.98, "Median Spend per Customer": 18.73 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "Name": "Ocean Harbor", "Category": "Restaurants and Other Eating Places", "Address": "1023 Race St", "LATITUDE": 39.955678, "LONGITUDE": -75.156826, "DATE_RANGE_START": 2023, "Total Visits": 1959.0, "Total Visitors": 1383.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 11.0, "Total Spend": 9881.0, "Total Transactions": 76.0, "Total Customers": 40.0, "Median Spend per Transaction": 168.92, "Median Spend per Customer": 88.32 }, "geometry": { "type": "Point", "coordinates": [ -75.156826, 39.955678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-6x5", "Name": "Giuseppe & Sons", "Category": "Restaurants and Other Eating Places", "Address": "1523 Sansom St", "LATITUDE": 39.950507, "LONGITUDE": -75.166681, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 1296.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 70.03, "Median Spend per Customer": 70.03 }, "geometry": { "type": "Point", "coordinates": [ -75.166681, 39.950507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "265 S Broad St", "LATITUDE": 39.947381, "LONGITUDE": -75.164227, "DATE_RANGE_START": 2023, "Total Visits": 3146.0, "Total Visitors": 1786.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 211.0, "Total Spend": 2437.0, "Total Transactions": 203.0, "Total Customers": 140.0, "Median Spend per Transaction": 11.27, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.164227, 39.947381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "Name": "Italian Express", "Category": "Restaurants and Other Eating Places", "Address": "2641 W Girard Ave", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 180.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 9.0, "Total Spend": 2373.0, "Total Transactions": 130.0, "Total Customers": 84.0, "Median Spend per Transaction": 18.16, "Median Spend per Customer": 18.12 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-8vz", "Name": "Dizengoff", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.953032, "LONGITUDE": -75.192553, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 12.0, "Total Spend": 131.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.192553, 39.953032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfx-kxq", "Name": "Funny Monk Emporium", "Category": "Other Miscellaneous Store Retailers", "Address": "4369 Cresson St", "LATITUDE": 40.026687, "LONGITUDE": -75.224098, "DATE_RANGE_START": 2023, "Total Visits": 114.0, "Total Visitors": 108.0, "POI_CBG": 421010214003.0, "Median Dwell Time": 5.0, "Total Spend": 6805.0, "Total Transactions": 209.0, "Total Customers": 167.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224098, 40.026687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-w8v", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955767, "LONGITUDE": -75.181994, "DATE_RANGE_START": 2023, "Total Visits": 11074.0, "Total Visitors": 6611.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 20.0, "Total Spend": 12436.0, "Total Transactions": 1126.0, "Total Customers": 951.0, "Median Spend per Transaction": 10.72, "Median Spend per Customer": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.181994, 39.955767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-gff", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2920 Roberts Ave Ste 1040", "LATITUDE": 40.011096, "LONGITUDE": -75.176576, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 9.0, "Total Spend": 1805.0, "Total Transactions": 127.0, "Total Customers": 89.0, "Median Spend per Transaction": 14.23, "Median Spend per Customer": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.176576, 40.011096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4n5", "Name": "Julian's Soul Food", "Category": "Restaurants and Other Eating Places", "Address": "1320 W Olney Ave", "LATITUDE": 40.038548, "LONGITUDE": -75.143351, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 104.0, "POI_CBG": 421010282003.0, "Median Dwell Time": null, "Total Spend": 139.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 16.47, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.143351, 40.038548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm4-b8v", "Name": "Hyon's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1320 S 21st St", "LATITUDE": 39.935029, "LONGITUDE": -75.179358, "DATE_RANGE_START": 2023, "Total Visits": 135.0, "Total Visitors": 135.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 14.0, "Total Spend": 1445.0, "Total Transactions": 80.0, "Total Customers": 65.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 18.3 }, "geometry": { "type": "Point", "coordinates": [ -75.179358, 39.935029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "29 Snyder Ave", "LATITUDE": 39.92325, "LONGITUDE": -75.144846, "DATE_RANGE_START": 2023, "Total Visits": 2550.0, "Total Visitors": 1487.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 12.0, "Total Spend": 3924.0, "Total Transactions": 393.0, "Total Customers": 268.0, "Median Spend per Transaction": 8.54, "Median Spend per Customer": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.144846, 39.92325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "Name": "Shot Tower Coffee", "Category": "Restaurants and Other Eating Places", "Address": "542 Christian St", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2023, "Total Visits": 351.0, "Total Visitors": 252.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 12.0, "Total Spend": 3449.0, "Total Transactions": 410.0, "Total Customers": 207.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 10.82 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-75z", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "4090 Lancaster Ave", "LATITUDE": 39.964575, "LONGITUDE": -75.205355, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 9.0, "Total Spend": 324.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 28.98, "Median Spend per Customer": 28.98 }, "geometry": { "type": "Point", "coordinates": [ -75.205355, 39.964575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5200 Germantown Ave", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2023, "Total Visits": 338.0, "Total Visitors": 130.0, "POI_CBG": 421010242001.0, "Median Dwell Time": 110.0, "Total Spend": 1300.0, "Total Transactions": 101.0, "Total Customers": 70.0, "Median Spend per Transaction": 7.85, "Median Spend per Customer": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "Name": "Brewer's Outlet", "Category": "Beer, Wine, and Liquor Stores", "Address": "309 S 48th St", "LATITUDE": 39.953065, "LONGITUDE": -75.217898, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 284.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 16.0, "Total Spend": 24162.0, "Total Transactions": 651.0, "Total Customers": 423.0, "Median Spend per Transaction": 28.07, "Median Spend per Customer": 39.11 }, "geometry": { "type": "Point", "coordinates": [ -75.217898, 39.953065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-9mk", "Name": "Bravo Pizza & Halal Food", "Category": "Restaurants and Other Eating Places", "Address": "3748 Germantown Ave", "LATITUDE": 40.010647, "LONGITUDE": -75.151533, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010201021.0, "Median Dwell Time": 15.0, "Total Spend": 119.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.51, "Median Spend per Customer": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.151533, 40.010647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "8743 Frankford Ave", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 150.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 62.0, "Total Spend": 2448.0, "Total Transactions": 93.0, "Total Customers": 76.0, "Median Spend per Transaction": 24.65, "Median Spend per Customer": 29.59 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dwf-wkz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "3000 Island Ave", "LATITUDE": 39.902609, "LONGITUDE": -75.240437, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 309.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 13.0, "Total Spend": 395.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 13.06, "Median Spend per Customer": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.240437, 39.902609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "Name": "Royal Farms", "Category": "Grocery Stores", "Address": "2501 Church St", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2023, "Total Visits": 1076.0, "Total Visitors": 961.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 9.0, "Total Spend": 23107.0, "Total Transactions": 1202.0, "Total Customers": 684.0, "Median Spend per Transaction": 13.42, "Median Spend per Customer": 21.11 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pfx-kzz", "Name": "Haggerty Deli", "Category": "Grocery Stores", "Address": "4528 Wilde St", "LATITUDE": 40.029194, "LONGITUDE": -75.225585, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010214004.0, "Median Dwell Time": 5.0, "Total Spend": 993.0, "Total Transactions": 59.0, "Total Customers": 33.0, "Median Spend per Transaction": 17.38, "Median Spend per Customer": 20.46 }, "geometry": { "type": "Point", "coordinates": [ -75.225585, 40.029194 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "Name": "Javies Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "4901 Umbria St", "LATITUDE": 40.034351, "LONGITUDE": -75.234113, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 180.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 2.0, "Total Spend": 9707.0, "Total Transactions": 371.0, "Total Customers": 246.0, "Median Spend per Transaction": 22.13, "Median Spend per Customer": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.234113, 40.034351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-3kf", "Name": "Sheraton Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "201 N 17th St", "LATITUDE": 39.957083, "LONGITUDE": -75.167351, "DATE_RANGE_START": 2023, "Total Visits": 1978.0, "Total Visitors": 1214.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 217.0, "Total Spend": 2847.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 526.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167351, 39.957083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm6-6tv", "Name": "Hook & Reel", "Category": "Restaurants and Other Eating Places", "Address": "1936 S Columbus Blvd", "LATITUDE": 39.921762, "LONGITUDE": -75.142528, "DATE_RANGE_START": 2023, "Total Visits": 465.0, "Total Visitors": 442.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 20.0, "Total Spend": 283.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 57.5, "Median Spend per Customer": 57.5 }, "geometry": { "type": "Point", "coordinates": [ -75.142528, 39.921762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-3kf", "Name": "South Side Pizza", "Category": "Restaurants and Other Eating Places", "Address": "740 Mifflin St", "LATITUDE": 39.925364, "LONGITUDE": -75.159106, "DATE_RANGE_START": 2023, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 4.0, "Total Spend": 58.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 23.01 }, "geometry": { "type": "Point", "coordinates": [ -75.159106, 39.925364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "Name": "Scoop Deville", "Category": "Restaurants and Other Eating Places", "Address": "1315 Walnut St", "LATITUDE": 39.949587, "LONGITUDE": -75.16288, "DATE_RANGE_START": 2023, "Total Visits": 4502.0, "Total Visitors": 2743.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 87.0, "Total Spend": 3192.0, "Total Transactions": 220.0, "Total Customers": 199.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16288, 39.949587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg4-47q", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "100 W Queen Ln", "LATITUDE": 40.030004, "LONGITUDE": -75.170345, "DATE_RANGE_START": 2023, "Total Visits": 148.0, "Total Visitors": 148.0, "POI_CBG": 421010242001.0, "Median Dwell Time": 4.0, "Total Spend": 880.0, "Total Transactions": 28.0, "Total Customers": 15.0, "Median Spend per Transaction": 15.83, "Median Spend per Customer": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -75.170345, 40.030004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-j5f", "Name": "Free People", "Category": "Clothing Stores", "Address": "1632 Walnut St", "LATITUDE": 39.949714, "LONGITUDE": -75.168891, "DATE_RANGE_START": 2023, "Total Visits": 526.0, "Total Visitors": 499.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 435534.0, "Total Transactions": 3708.0, "Total Customers": 2654.0, "Median Spend per Transaction": 84.24, "Median Spend per Customer": 103.88 }, "geometry": { "type": "Point", "coordinates": [ -75.168891, 39.949714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "Name": "Lets Grub", "Category": "Restaurants and Other Eating Places", "Address": "4040 Lancaster Ave", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 104.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 7.0, "Total Spend": 318.0, "Total Transactions": 30.0, "Total Customers": 19.0, "Median Spend per Transaction": 8.37, "Median Spend per Customer": 14.31 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-h3q", "Name": "Gennaro's Famous Pizza", "Category": "Restaurants and Other Eating Places", "Address": "210 W Chelten Ave", "LATITUDE": 40.031242, "LONGITUDE": -75.179104, "DATE_RANGE_START": 2023, "Total Visits": 329.0, "Total Visitors": 299.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 13.0, "Total Spend": 3049.0, "Total Transactions": 118.0, "Total Customers": 89.0, "Median Spend per Transaction": 23.25, "Median Spend per Customer": 25.22 }, "geometry": { "type": "Point", "coordinates": [ -75.179104, 40.031242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "Name": "New Zem Zem Pizza", "Category": "Restaurants and Other Eating Places", "Address": "117 E Chelten Ave", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 78.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 177.0, "Total Spend": 1632.0, "Total Transactions": 78.0, "Total Customers": 44.0, "Median Spend per Transaction": 16.4, "Median Spend per Customer": 23.15 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-y5f", "Name": "ALDI", "Category": "Grocery Stores", "Address": "9303 Krewstown Rd", "LATITUDE": 40.085283, "LONGITUDE": -75.045679, "DATE_RANGE_START": 2023, "Total Visits": 803.0, "Total Visitors": 666.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 15.0, "Total Spend": 393.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 83.03, "Median Spend per Customer": 107.42 }, "geometry": { "type": "Point", "coordinates": [ -75.045679, 40.085283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-52k", "Name": "Indian Sizzler", "Category": "Restaurants and Other Eating Places", "Address": "3651 Lancaster Ave", "LATITUDE": 39.959458, "LONGITUDE": -75.194962, "DATE_RANGE_START": 2023, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010091002.0, "Median Dwell Time": null, "Total Spend": 670.0, "Total Transactions": 28.0, "Total Customers": 23.0, "Median Spend per Transaction": 23.42, "Median Spend per Customer": 24.66 }, "geometry": { "type": "Point", "coordinates": [ -75.194962, 39.959458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p7x-q4v", "Name": "Tom's Corner Grill & Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7375 Crabtree St", "LATITUDE": 40.04063, "LONGITUDE": -75.043816, "DATE_RANGE_START": 2023, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010332002.0, "Median Dwell Time": null, "Total Spend": 183.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 14.13, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.043816, 40.04063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmc-qcq", "Name": "2 Street Pub", "Category": "Restaurants and Other Eating Places", "Address": "1400 S 2nd St", "LATITUDE": 39.930224, "LONGITUDE": -75.148223, "DATE_RANGE_START": 2023, "Total Visits": 69.0, "Total Visitors": 69.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 95.0, "Total Spend": 156.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 25.6, "Median Spend per Customer": 25.6 }, "geometry": { "type": "Point", "coordinates": [ -75.148223, 39.930224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-jgk", "Name": "DanDan", "Category": "Restaurants and Other Eating Places", "Address": "126 S 16th St", "LATITUDE": 39.950261, "LONGITUDE": -75.167616, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 6290.0, "Total Transactions": 125.0, "Total Customers": 118.0, "Median Spend per Transaction": 39.62, "Median Spend per Customer": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167616, 39.950261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-y5f", "Name": "Mineralistic", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "319 South St", "LATITUDE": 39.941629, "LONGITUDE": -75.148231, "DATE_RANGE_START": 2023, "Total Visits": 91.0, "Total Visitors": 91.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 1136.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 42.12, "Median Spend per Customer": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.148231, 39.941629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "Name": "Davis Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4523 Baltimore Ave", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 3.0, "Total Spend": 855.0, "Total Transactions": 49.0, "Total Customers": 40.0, "Median Spend per Transaction": 11.19, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22h@628-pmf-n3q", "Name": "Genji", "Category": "Specialty Food Stores", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953358, "LONGITUDE": -75.165439, "DATE_RANGE_START": 2023, "Total Visits": 298.0, "Total Visitors": 227.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 19.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.61, "Median Spend per Customer": 11.61 }, "geometry": { "type": "Point", "coordinates": [ -75.165439, 39.953358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgy-kj9", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "701 E Cathedral Rd Ste 7", "LATITUDE": 40.062838, "LONGITUDE": -75.23752, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 182.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 8.0, "Total Spend": 1081.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.23752, 40.062838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pnw-v4v", "Name": "Jack's Bar Grill", "Category": "Restaurants and Other Eating Places", "Address": "1001 N Delaware Ave", "LATITUDE": 39.963822, "LONGITUDE": -75.13244, "DATE_RANGE_START": 2023, "Total Visits": 4042.0, "Total Visitors": 1739.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 150.0, "Total Spend": 2203.0, "Total Transactions": 70.0, "Total Customers": 63.0, "Median Spend per Transaction": 26.84, "Median Spend per Customer": 30.12 }, "geometry": { "type": "Point", "coordinates": [ -75.13244, 39.963822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@628-pm4-ckf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2101 S 17th St", "LATITUDE": 39.924823, "LONGITUDE": -75.174196, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 4.0, "Total Spend": 613.0, "Total Transactions": 24.0, "Total Customers": 14.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174196, 39.924823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "29 E Chelten Ave", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2023, "Total Visits": 819.0, "Total Visitors": 605.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 10.0, "Total Spend": 9787.0, "Total Transactions": 753.0, "Total Customers": 526.0, "Median Spend per Transaction": 11.31, "Median Spend per Customer": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "Name": "Evo Brickoven Pizza", "Category": "Restaurants and Other Eating Places", "Address": "277 W Mount Pleasant Ave", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2023, "Total Visits": 103.0, "Total Visitors": 103.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 1.0, "Total Spend": 671.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 30.35, "Median Spend per Customer": 34.2 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "Name": "La Calaca Feliz", "Category": "Restaurants and Other Eating Places", "Address": "2321 Fairmount Ave", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 103.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 147.0, "Total Spend": 1631.0, "Total Transactions": 21.0, "Total Customers": 20.0, "Median Spend per Transaction": 56.91, "Median Spend per Customer": 59.05 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "Name": "Nori Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1636 South St", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 116.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 8.0, "Total Spend": 981.0, "Total Transactions": 23.0, "Total Customers": 20.0, "Median Spend per Transaction": 36.4, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "Name": "European Republic", "Category": "Restaurants and Other Eating Places", "Address": "213 Chestnut St", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2023, "Total Visits": 2528.0, "Total Visitors": 1506.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 65.0, "Total Spend": 1232.0, "Total Transactions": 89.0, "Total Customers": 70.0, "Median Spend per Transaction": 13.16, "Median Spend per Customer": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2310 W Oregon Ave", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2023, "Total Visits": 847.0, "Total Visitors": 729.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 9.0, "Total Spend": 4893.0, "Total Transactions": 162.0, "Total Customers": 109.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "Name": "Zumiez", "Category": "Clothing Stores", "Address": "1441 Franklin Mills Cir", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2023, "Total Visits": 537.0, "Total Visitors": 456.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 51.0, "Total Spend": 5746.0, "Total Transactions": 93.0, "Total Customers": 90.0, "Median Spend per Transaction": 46.27, "Median Spend per Customer": 53.79 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "456 N 5th St", "LATITUDE": 39.960101, "LONGITUDE": -75.147636, "DATE_RANGE_START": 2023, "Total Visits": 1994.0, "Total Visitors": 1761.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 5.0, "Total Spend": 180243.0, "Total Transactions": 4559.0, "Total Customers": 2546.0, "Median Spend per Transaction": 24.99, "Median Spend per Customer": 44.33 }, "geometry": { "type": "Point", "coordinates": [ -75.147636, 39.960101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-h89", "Name": "King of Tandoor", "Category": "Restaurants and Other Eating Places", "Address": "1824 Callowhill St", "LATITUDE": 39.960321, "LONGITUDE": -75.169299, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 109.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 19.0, "Total Spend": 909.0, "Total Transactions": 24.0, "Total Customers": 23.0, "Median Spend per Transaction": 33.03, "Median Spend per Customer": 36.31 }, "geometry": { "type": "Point", "coordinates": [ -75.169299, 39.960321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pgk-z9f", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "3977 Ford Rd", "LATITUDE": 39.999874, "LONGITUDE": -75.209033, "DATE_RANGE_START": 2023, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010122041.0, "Median Dwell Time": 19.0, "Total Spend": 620.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 32.7, "Median Spend per Customer": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.209033, 39.999874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "Name": "Desi Chaat House", "Category": "Restaurants and Other Eating Places", "Address": "501 S 42nd St", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2023, "Total Visits": 110.0, "Total Visitors": 78.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 3.0, "Total Spend": 327.0, "Total Transactions": 19.0, "Total Customers": 15.0, "Median Spend per Transaction": 15.54, "Median Spend per Customer": 14.09 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp4-tsq", "Name": "Green Rock Tavern", "Category": "Restaurants and Other Eating Places", "Address": "2546 E Lehigh Ave", "LATITUDE": 39.979669, "LONGITUDE": -75.116167, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 122.0, "POI_CBG": 421010378003.0, "Median Dwell Time": 29.0, "Total Spend": 2774.0, "Total Transactions": 76.0, "Total Customers": 40.0, "Median Spend per Transaction": 27.5, "Median Spend per Customer": 41.63 }, "geometry": { "type": "Point", "coordinates": [ -75.116167, 39.979669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p8h-vvf", "Name": "Lee's Deli", "Category": "Restaurants and Other Eating Places", "Address": "7601 Torresdale Ave", "LATITUDE": 40.032772, "LONGITUDE": -75.029499, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 101.0, "POI_CBG": 421010330004.0, "Median Dwell Time": 76.0, "Total Spend": 1568.0, "Total Transactions": 68.0, "Total Customers": 56.0, "Median Spend per Transaction": 19.12, "Median Spend per Customer": 19.12 }, "geometry": { "type": "Point", "coordinates": [ -75.029499, 40.032772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3655 Aramingo Ave", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 143.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 614.0, "Total Spend": 4167.0, "Total Transactions": 212.0, "Total Customers": 174.0, "Median Spend per Transaction": 17.91, "Median Spend per Customer": 19.03 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "90 Franklin Mills Blvd", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2023, "Total Visits": 522.0, "Total Visitors": 478.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 2557.0, "Total Transactions": 163.0, "Total Customers": 129.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "221 W Hunting Park Ave", "LATITUDE": 40.01469, "LONGITUDE": -75.13035, "DATE_RANGE_START": 2023, "Total Visits": 502.0, "Total Visitors": 390.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 4.0, "Total Spend": 6755.0, "Total Transactions": 556.0, "Total Customers": 262.0, "Median Spend per Transaction": 9.58, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.13035, 40.01469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-x89", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "630 W Girard Ave", "LATITUDE": 39.970205, "LONGITUDE": -75.147863, "DATE_RANGE_START": 2023, "Total Visits": 695.0, "Total Visitors": 318.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 211.0, "Total Spend": 775.0, "Total Transactions": 66.0, "Total Customers": 53.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 12.13 }, "geometry": { "type": "Point", "coordinates": [ -75.147863, 39.970205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm9-5zz", "Name": "Caffe Chicco", "Category": "Restaurants and Other Eating Places", "Address": "2532 S Broad St", "LATITUDE": 39.918638, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2023, "Total Visits": 125.0, "Total Visitors": 63.0, "POI_CBG": 421010039021.0, "Median Dwell Time": null, "Total Spend": 78.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 31.25, "Median Spend per Customer": 31.25 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.918638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4017 N 5th St # 59", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2023, "Total Visits": 545.0, "Total Visitors": 496.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 5.0, "Total Spend": 2743.0, "Total Transactions": 279.0, "Total Customers": 96.0, "Median Spend per Transaction": 8.62, "Median Spend per Customer": 13.46 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "337 Spring Garden St", "LATITUDE": 39.961452, "LONGITUDE": -75.14456, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 7.0, "Total Spend": 3898.0, "Total Transactions": 115.0, "Total Customers": 95.0, "Median Spend per Transaction": 22.28, "Median Spend per Customer": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.14456, 39.961452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "Name": "Southgate", "Category": "Restaurants and Other Eating Places", "Address": "1801 Lombard St", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2023, "Total Visits": 590.0, "Total Visitors": 411.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 55.0, "Total Spend": 1036.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 79.22, "Median Spend per Customer": 79.22 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-435", "Name": "America's Best Wings", "Category": "Restaurants and Other Eating Places", "Address": "5694 Rising Sun Ave", "LATITUDE": 40.040358, "LONGITUDE": -75.109129, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 13.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 10.0, "Total Spend": 466.0, "Total Transactions": 21.0, "Total Customers": 18.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109129, 40.040358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "Name": "Saigon Noodle Bar", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074116, "LONGITUDE": -75.202579, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 400.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 14.0, "Total Spend": 885.0, "Total Transactions": 48.0, "Total Customers": 41.0, "Median Spend per Transaction": 15.57, "Median Spend per Customer": 15.71 }, "geometry": { "type": "Point", "coordinates": [ -75.202579, 40.074116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-xt9", "Name": "La Colombe Coffee", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.878148, "LONGITUDE": -75.237782, "DATE_RANGE_START": 2023, "Total Visits": 1828.0, "Total Visitors": 1450.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 7.0, "Total Spend": 6579.0, "Total Transactions": 381.0, "Total Customers": 238.0, "Median Spend per Transaction": 9.82, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.237782, 39.878148 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "9711 Roosevelt Blvd", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2023, "Total Visits": 1739.0, "Total Visitors": 1223.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 18.0, "Total Spend": 39916.0, "Total Transactions": 1999.0, "Total Customers": 1201.0, "Median Spend per Transaction": 16.63, "Median Spend per Customer": 22.03 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22b@628-phd-q75", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4160 Monument Rd", "LATITUDE": 40.002688, "LONGITUDE": -75.214249, "DATE_RANGE_START": 2023, "Total Visits": 2146.0, "Total Visitors": 1136.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 15.0, "Total Spend": 5563.0, "Total Transactions": 361.0, "Total Customers": 258.0, "Median Spend per Transaction": 11.93, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.214249, 40.002688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "Name": "Burlington", "Category": "Clothing Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.05135, "LONGITUDE": -75.065288, "DATE_RANGE_START": 2023, "Total Visits": 1686.0, "Total Visitors": 1357.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 33.0, "Total Spend": 162555.0, "Total Transactions": 3269.0, "Total Customers": 2433.0, "Median Spend per Transaction": 34.49, "Median Spend per Customer": 44.54 }, "geometry": { "type": "Point", "coordinates": [ -75.065288, 40.05135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm9-zs5", "Name": "The Philly Game Shop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "519 S 5th St", "LATITUDE": 39.942073, "LONGITUDE": -75.150513, "DATE_RANGE_START": 2023, "Total Visits": 1554.0, "Total Visitors": 1443.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 15.0, "Total Spend": 4156.0, "Total Transactions": 139.0, "Total Customers": 80.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 35.61 }, "geometry": { "type": "Point", "coordinates": [ -75.150513, 39.942073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "Name": "Bourbon & Branch", "Category": "Restaurants and Other Eating Places", "Address": "705 N 2nd St", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 124.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 166.0, "Total Spend": 719.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 46.33, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-php-ygk", "Name": "Stop One Food Market & Deli", "Category": "Grocery Stores", "Address": "6510 N 21st St", "LATITUDE": 40.053727, "LONGITUDE": -75.155505, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 184.0, "POI_CBG": 421010277006.0, "Median Dwell Time": 5.0, "Total Spend": 1198.0, "Total Transactions": 105.0, "Total Customers": 70.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 12.83 }, "geometry": { "type": "Point", "coordinates": [ -75.155505, 40.053727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvp-bff", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5752 Baltimore Ave", "LATITUDE": 39.946253, "LONGITUDE": -75.239448, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010081012.0, "Median Dwell Time": 5.0, "Total Spend": 4171.0, "Total Transactions": 154.0, "Total Customers": 106.0, "Median Spend per Transaction": 24.03, "Median Spend per Customer": 31.29 }, "geometry": { "type": "Point", "coordinates": [ -75.239448, 39.946253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-g8v", "Name": "Khaamar Baari Supermarket", "Category": "Grocery Stores", "Address": "6919 Castor Ave", "LATITUDE": 40.046046, "LONGITUDE": -75.070809, "DATE_RANGE_START": 2023, "Total Visits": 235.0, "Total Visitors": 170.0, "POI_CBG": 421010314015.0, "Median Dwell Time": 4.0, "Total Spend": 392.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 156.49, "Median Spend per Customer": 156.49 }, "geometry": { "type": "Point", "coordinates": [ -75.070809, 40.046046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4390 Richmond St", "LATITUDE": 39.997394, "LONGITUDE": -75.074105, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 93.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 15.0, "Total Spend": 7169.0, "Total Transactions": 351.0, "Total Customers": 160.0, "Median Spend per Transaction": 15.14, "Median Spend per Customer": 24.6 }, "geometry": { "type": "Point", "coordinates": [ -75.074105, 39.997394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2400 Castor Ave", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2023, "Total Visits": 415.0, "Total Visitors": 327.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 17.0, "Total Spend": 8875.0, "Total Transactions": 574.0, "Total Customers": 397.0, "Median Spend per Transaction": 13.28, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pgh-h3q", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "2800 Fox St", "LATITUDE": 40.00873, "LONGITUDE": -75.176539, "DATE_RANGE_START": 2023, "Total Visits": 894.0, "Total Visitors": 556.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 48.0, "Total Spend": 7237.0, "Total Transactions": 436.0, "Total Customers": 342.0, "Median Spend per Transaction": 13.89, "Median Spend per Customer": 15.61 }, "geometry": { "type": "Point", "coordinates": [ -75.176539, 40.00873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "2335 Cottman Ave Spc 10", "LATITUDE": 40.047953, "LONGITUDE": -75.055758, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 40.0, "Total Spend": 4467.0, "Total Transactions": 59.0, "Total Customers": 48.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 72.5 }, "geometry": { "type": "Point", "coordinates": [ -75.055758, 40.047953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "Name": "Grossman Furniture", "Category": "Furniture Stores", "Address": "206 Arch St", "LATITUDE": 39.951807, "LONGITUDE": -75.143634, "DATE_RANGE_START": 2023, "Total Visits": 272.0, "Total Visitors": 96.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 276.0, "Total Spend": 3285.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 1311.46, "Median Spend per Customer": 1311.46 }, "geometry": { "type": "Point", "coordinates": [ -75.143634, 39.951807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-p85-6kz", "Name": "IGA", "Category": "Grocery Stores", "Address": "8330 Bustleton Ave", "LATITUDE": 40.068401, "LONGITUDE": -75.051737, "DATE_RANGE_START": 2023, "Total Visits": 2028.0, "Total Visitors": 1189.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 10.0, "Total Spend": 297.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 59.21, "Median Spend per Customer": 118.43 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.068401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "Name": "Medical Tower Pharmacy", "Category": "Health and Personal Care Stores", "Address": "255 S 17th St", "LATITUDE": 39.948135, "LONGITUDE": -75.169286, "DATE_RANGE_START": 2023, "Total Visits": 983.0, "Total Visitors": 857.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 1139.0, "Total Transactions": 44.0, "Total Customers": 39.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 24.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169286, 39.948135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg9-x89", "Name": "Spicy Masala Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1601 Parrish St", "LATITUDE": 39.969531, "LONGITUDE": -75.163321, "DATE_RANGE_START": 2023, "Total Visits": 407.0, "Total Visitors": 370.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 5.0, "Total Spend": 3133.0, "Total Transactions": 189.0, "Total Customers": 163.0, "Median Spend per Transaction": 13.98, "Median Spend per Customer": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.163321, 39.969531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1500 Chestnut St", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2023, "Total Visits": 1602.0, "Total Visitors": 1251.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 7515.0, "Total Transactions": 298.0, "Total Customers": 223.0, "Median Spend per Transaction": 17.85, "Median Spend per Customer": 20.77 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-p7x-6ff", "Name": "Goubaa Grub", "Category": "Restaurants and Other Eating Places", "Address": "2300 Cottman Ave", "LATITUDE": 40.047077, "LONGITUDE": -75.05972, "DATE_RANGE_START": 2023, "Total Visits": 328.0, "Total Visitors": 303.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 16.0, "Total Spend": 261.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 16.65, "Median Spend per Customer": 16.65 }, "geometry": { "type": "Point", "coordinates": [ -75.05972, 40.047077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "Name": "Lee's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "930 N 29th St", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 13.0, "Total Spend": 1189.0, "Total Transactions": 73.0, "Total Customers": 55.0, "Median Spend per Transaction": 14.85, "Median Spend per Customer": 19.48 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8000 Pine Rd", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2023, "Total Visits": 525.0, "Total Visitors": 324.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 6.0, "Total Spend": 7058.0, "Total Transactions": 893.0, "Total Customers": 370.0, "Median Spend per Transaction": 6.45, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4400 City Ave", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2023, "Total Visits": 1348.0, "Total Visitors": 1154.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 5.0, "Total Spend": 39372.0, "Total Transactions": 1667.0, "Total Customers": 1114.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9990 Bustleton Ave", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 227.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 4.0, "Total Spend": 7646.0, "Total Transactions": 160.0, "Total Customers": 135.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 24.7 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-qmk", "Name": "Sheraton Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "4101 B Island Ave", "LATITUDE": 39.890384, "LONGITUDE": -75.23155, "DATE_RANGE_START": 2023, "Total Visits": 1997.0, "Total Visitors": 1338.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 267.0, "Total Spend": 110.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 38.32, "Median Spend per Customer": 38.32 }, "geometry": { "type": "Point", "coordinates": [ -75.23155, 39.890384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-223@628-pmc-q75", "Name": "Brulee Catering", "Category": "Special Food Services", "Address": "1406 S Front St", "LATITUDE": 39.929931, "LONGITUDE": -75.146822, "DATE_RANGE_START": 2023, "Total Visits": 284.0, "Total Visitors": 233.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 39.0, "Total Spend": 51.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146822, 39.929931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "Name": "King Wok's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Torresdale Ave", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2023, "Total Visits": 132.0, "Total Visitors": 120.0, "POI_CBG": 421010321001.0, "Median Dwell Time": 11.0, "Total Spend": 1706.0, "Total Transactions": 60.0, "Total Customers": 48.0, "Median Spend per Transaction": 20.9, "Median Spend per Customer": 23.13 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6rk", "Name": "Le Pain Quotidien", "Category": "Restaurants and Other Eating Places", "Address": "1425 Walnut St", "LATITUDE": 39.949701, "LONGITUDE": -75.165264, "DATE_RANGE_START": 2023, "Total Visits": 803.0, "Total Visitors": 654.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 28.0, "Total Spend": 10237.0, "Total Transactions": 514.0, "Total Customers": 391.0, "Median Spend per Transaction": 15.35, "Median Spend per Customer": 18.93 }, "geometry": { "type": "Point", "coordinates": [ -75.165264, 39.949701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pmb-gtv", "Name": "Middle Child", "Category": "Restaurants and Other Eating Places", "Address": "248 S 11th St", "LATITUDE": 39.947198, "LONGITUDE": -75.159468, "DATE_RANGE_START": 2023, "Total Visits": 468.0, "Total Visitors": 312.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 11.0, "Total Spend": 1794.0, "Total Transactions": 43.0, "Total Customers": 33.0, "Median Spend per Transaction": 29.32, "Median Spend per Customer": 42.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159468, 39.947198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "Name": "Golden Crust Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "3732 Midvale Ave", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2023, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010207004.0, "Median Dwell Time": null, "Total Spend": 881.0, "Total Transactions": 50.0, "Total Customers": 40.0, "Median Spend per Transaction": 15.66, "Median Spend per Customer": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "Name": "J&P Seafood", "Category": "Restaurants and Other Eating Places", "Address": "4820 Spruce St", "LATITUDE": 39.953499, "LONGITUDE": -75.218972, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 9.0, "Total Spend": 2713.0, "Total Transactions": 75.0, "Total Customers": 69.0, "Median Spend per Transaction": 28.09, "Median Spend per Customer": 35.27 }, "geometry": { "type": "Point", "coordinates": [ -75.218972, 39.953499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@63s-dvq-649", "Name": "Three Sister Grocery", "Category": "Grocery Stores", "Address": "5356 Delancey St", "LATITUDE": 39.954366, "LONGITUDE": -75.229741, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 9.0, "POI_CBG": 421010085004.0, "Median Dwell Time": 5.0, "Total Spend": 412.0, "Total Transactions": 31.0, "Total Customers": 19.0, "Median Spend per Transaction": 14.24, "Median Spend per Customer": 21.54 }, "geometry": { "type": "Point", "coordinates": [ -75.229741, 39.954366 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "Name": "Burlington", "Category": "Clothing Stores", "Address": "3401 Aramingo Ave", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2023, "Total Visits": 1350.0, "Total Visitors": 1211.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 14.0, "Total Spend": 2703.0, "Total Transactions": 39.0, "Total Customers": 35.0, "Median Spend per Transaction": 47.1, "Median Spend per Customer": 58.06 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-94v", "Name": "Journeys", "Category": "Shoe Stores", "Address": "1001 Market St", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2023, "Total Visits": 14076.0, "Total Visitors": 8436.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 3921.0, "Total Transactions": 51.0, "Total Customers": 51.0, "Median Spend per Transaction": 64.99, "Median Spend per Customer": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "4358 Main St", "LATITUDE": 40.02544, "LONGITUDE": -75.22391, "DATE_RANGE_START": 2023, "Total Visits": 512.0, "Total Visitors": 376.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 12.0, "Total Spend": 3880.0, "Total Transactions": 35.0, "Total Customers": 35.0, "Median Spend per Transaction": 115.0, "Median Spend per Customer": 115.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22391, 40.02544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "Name": "1 Stop Smoke Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "10103 Verree Rd Unit C", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 132.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 2.0, "Total Spend": 563.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 28.61, "Median Spend per Customer": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pmf-hnq", "Name": "Accent on Animals", "Category": "Other Miscellaneous Store Retailers", "Address": "1935 Chestnut St", "LATITUDE": 39.952176, "LONGITUDE": -75.173168, "DATE_RANGE_START": 2023, "Total Visits": 4324.0, "Total Visitors": 2851.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 11.0, "Total Spend": 619.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 25.9, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.173168, 39.952176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "Name": "Repo Records", "Category": "Electronics and Appliance Stores", "Address": "506 South St", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2023, "Total Visits": 605.0, "Total Visitors": 524.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 5.0, "Total Spend": 13444.0, "Total Transactions": 307.0, "Total Customers": 279.0, "Median Spend per Transaction": 34.55, "Median Spend per Customer": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mff", "Name": "Family Food Market", "Category": "Grocery Stores", "Address": "1607 E Erie Ave", "LATITUDE": 40.006057, "LONGITUDE": -75.096664, "DATE_RANGE_START": 2023, "Total Visits": 363.0, "Total Visitors": 238.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 5.0, "Total Spend": 141.0, "Total Transactions": 26.0, "Total Customers": 23.0, "Median Spend per Transaction": 3.64, "Median Spend per Customer": 6.24 }, "geometry": { "type": "Point", "coordinates": [ -75.096664, 40.006057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-835", "Name": "3J's Food Market", "Category": "Grocery Stores", "Address": "801 N 2nd St", "LATITUDE": 39.963054, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010367001.0, "Median Dwell Time": null, "Total Spend": 2108.0, "Total Transactions": 158.0, "Total Customers": 115.0, "Median Spend per Transaction": 11.96, "Median Spend per Customer": 16.13 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.963054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj6-bx5", "Name": "Nam Vang Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "571 Adams Ave", "LATITUDE": 40.037327, "LONGITUDE": -75.108009, "DATE_RANGE_START": 2023, "Total Visits": 421.0, "Total Visitors": 329.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 8.0, "Total Spend": 75.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 25.82 }, "geometry": { "type": "Point", "coordinates": [ -75.108009, 40.037327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmf-jjv", "Name": "Green Eggs Cafe", "Category": "Restaurants and Other Eating Places", "Address": "33 S 18th St", "LATITUDE": 39.952196, "LONGITUDE": -75.169546, "DATE_RANGE_START": 2023, "Total Visits": 3999.0, "Total Visitors": 2387.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 97.0, "Total Spend": 562.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 61.75, "Median Spend per Customer": 61.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169546, 39.952196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2109 N Broad St", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2023, "Total Visits": 1106.0, "Total Visitors": 833.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 17.0, "Total Spend": 14172.0, "Total Transactions": 1207.0, "Total Customers": 835.0, "Median Spend per Transaction": 9.9, "Median Spend per Customer": 12.58 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "Name": "Colonial Pizza", "Category": "Restaurants and Other Eating Places", "Address": "400 S 43rd St", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010087011.0, "Median Dwell Time": null, "Total Spend": 1033.0, "Total Transactions": 56.0, "Total Customers": 45.0, "Median Spend per Transaction": 15.1, "Median Spend per Customer": 19.62 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-ph6-gkz", "Name": "How Choy", "Category": "Restaurants and Other Eating Places", "Address": "1725 N 54th St", "LATITUDE": 39.983761, "LONGITUDE": -75.230935, "DATE_RANGE_START": 2023, "Total Visits": 98.0, "Total Visitors": 98.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 3.0, "Total Spend": 160.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 31.99, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.230935, 39.983761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "575 Adams Ave", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2023, "Total Visits": 348.0, "Total Visitors": 278.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 19.0, "Total Spend": 4328.0, "Total Transactions": 103.0, "Total Customers": 96.0, "Median Spend per Transaction": 35.24, "Median Spend per Customer": 38.64 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-5mk", "Name": "West Elm", "Category": "Home Furnishings Stores", "Address": "1330 Chestnut St # 873", "LATITUDE": 39.950577, "LONGITUDE": -75.163155, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 18.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 24.0, "Total Spend": 1718.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 43.19, "Median Spend per Customer": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.163155, 39.950577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-s89", "Name": "SuitSupply", "Category": "Clothing Stores", "Address": "1601 Locust St", "LATITUDE": 39.948761, "LONGITUDE": -75.167888, "DATE_RANGE_START": 2023, "Total Visits": 595.0, "Total Visitors": 373.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 13.0, "Total Spend": 12322.0, "Total Transactions": 31.0, "Total Customers": 26.0, "Median Spend per Transaction": 171.72, "Median Spend per Customer": 208.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167888, 39.948761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "Name": "Vince.", "Category": "Clothing Stores", "Address": "1701 Walnut St", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2023, "Total Visits": 2147.0, "Total Visitors": 1645.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 6.0, "Total Spend": 4257.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 228.5, "Median Spend per Customer": 232.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22p@628-pmb-8y9", "Name": "Carter's", "Category": "Clothing Stores", "Address": "907-937A Market St # C220", "LATITUDE": 39.952104, "LONGITUDE": -75.155399, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 12.0, "Total Spend": 1192.0, "Total Transactions": 35.0, "Total Customers": 33.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155399, 39.952104 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8045 Frankford Ave Ste 1", "LATITUDE": 40.041865, "LONGITUDE": -75.026033, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010329001.0, "Median Dwell Time": 4.0, "Total Spend": 358.0, "Total Transactions": 29.0, "Total Customers": 15.0, "Median Spend per Transaction": 11.96, "Median Spend per Customer": 15.94 }, "geometry": { "type": "Point", "coordinates": [ -75.026033, 40.041865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "Name": "Le Meridien", "Category": "Traveler Accommodation", "Address": "1421 Arch St", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2023, "Total Visits": 1025.0, "Total Visitors": 643.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 173.0, "Total Spend": 16355.0, "Total Transactions": 90.0, "Total Customers": 73.0, "Median Spend per Transaction": 58.12, "Median Spend per Customer": 71.19 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-sbk", "Name": "Howl at the Moon Philadelphia", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "258 S 15th St", "LATITUDE": 39.947671, "LONGITUDE": -75.16657, "DATE_RANGE_START": 2023, "Total Visits": 1492.0, "Total Visitors": 916.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 18.0, "Total Spend": 19507.0, "Total Transactions": 958.0, "Total Customers": 407.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16657, 39.947671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "Name": "Canto House", "Category": "Restaurants and Other Eating Places", "Address": "941 Race St", "LATITUDE": 39.955547, "LONGITUDE": -75.15551, "DATE_RANGE_START": 2023, "Total Visits": 21368.0, "Total Visitors": 14769.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 955.0, "Total Transactions": 28.0, "Total Customers": 25.0, "Median Spend per Transaction": 32.01, "Median Spend per Customer": 29.21 }, "geometry": { "type": "Point", "coordinates": [ -75.15551, 39.955547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-pmd-skf", "Name": "Social House", "Category": "Restaurants and Other Eating Places", "Address": "2100 South St", "LATITUDE": 39.944966, "LONGITUDE": -75.177113, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 1.0, "Total Spend": 1613.0, "Total Transactions": 177.0, "Total Customers": 119.0, "Median Spend per Transaction": 7.35, "Median Spend per Customer": 10.94 }, "geometry": { "type": "Point", "coordinates": [ -75.177113, 39.944966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1440 E Erie Ave", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2023, "Total Visits": 209.0, "Total Visitors": 173.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 5.0, "Total Spend": 10401.0, "Total Transactions": 273.0, "Total Customers": 210.0, "Median Spend per Transaction": 28.87, "Median Spend per Customer": 34.97 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "901 Levick St", "LATITUDE": 40.044504, "LONGITUDE": -75.086891, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 5.0, "Total Spend": 42477.0, "Total Transactions": 20.0, "Total Customers": 13.0, "Median Spend per Transaction": 33.25, "Median Spend per Customer": 21.09 }, "geometry": { "type": "Point", "coordinates": [ -75.086891, 40.044504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6137 Frankford Ave", "LATITUDE": 40.027118, "LONGITUDE": -75.063023, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 15.0, "POI_CBG": 421010319001.0, "Median Dwell Time": 9.0, "Total Spend": 17332.0, "Total Transactions": 309.0, "Total Customers": 198.0, "Median Spend per Transaction": 29.98, "Median Spend per Customer": 39.2 }, "geometry": { "type": "Point", "coordinates": [ -75.063023, 40.027118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2800 Fox St", "LATITUDE": 40.008577, "LONGITUDE": -75.175611, "DATE_RANGE_START": 2023, "Total Visits": 903.0, "Total Visitors": 708.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 10.0, "Total Spend": 797.0, "Total Transactions": 54.0, "Total Customers": 49.0, "Median Spend per Transaction": 10.98, "Median Spend per Customer": 10.94 }, "geometry": { "type": "Point", "coordinates": [ -75.175611, 40.008577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-ph8-rtv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7740 City Ave", "LATITUDE": 39.976875, "LONGITUDE": -75.274713, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 11.0, "Total Spend": 131.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 47.17, "Median Spend per Customer": 47.17 }, "geometry": { "type": "Point", "coordinates": [ -75.274713, 39.976875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "Name": "Nike Factory Store", "Category": "Shoe Stores", "Address": "901 Market St Unit 1095", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2023, "Total Visits": 542.0, "Total Visitors": 339.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 30948.0, "Total Transactions": 461.0, "Total Customers": 418.0, "Median Spend per Transaction": 50.98, "Median Spend per Customer": 54.99 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm5-9pv", "Name": "Edible Arrangements", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2715 S Front St", "LATITUDE": 39.913418, "LONGITUDE": -75.149482, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 9.0, "Total Spend": 757.0, "Total Transactions": 15.0, "Total Customers": 14.0, "Median Spend per Transaction": 31.8, "Median Spend per Customer": 41.98 }, "geometry": { "type": "Point", "coordinates": [ -75.149482, 39.913418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5627 Chestnut St # 99", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2023, "Total Visits": 462.0, "Total Visitors": 349.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 10.0, "Total Spend": 10037.0, "Total Transactions": 560.0, "Total Customers": 287.0, "Median Spend per Transaction": 8.99, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-7h5", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2301 N 29th St", "LATITUDE": 39.991295, "LONGITUDE": -75.177941, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 198.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 6.0, "Total Spend": 981.0, "Total Transactions": 24.0, "Total Customers": 23.0, "Median Spend per Transaction": 24.01, "Median Spend per Customer": 24.24 }, "geometry": { "type": "Point", "coordinates": [ -75.177941, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-tvz", "Name": "Material Culture", "Category": "Used Merchandise Stores", "Address": "4700 Wissahickon Ave Ste 101", "LATITUDE": 40.015276, "LONGITUDE": -75.173527, "DATE_RANGE_START": 2023, "Total Visits": 688.0, "Total Visitors": 592.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 36.0, "Total Spend": 849.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 106.79, "Median Spend per Customer": 213.57 }, "geometry": { "type": "Point", "coordinates": [ -75.173527, 40.015276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pmf-j35", "Name": "Head Start Shoes", "Category": "Shoe Stores", "Address": "126 S 17th St", "LATITUDE": 39.950646, "LONGITUDE": -75.169071, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 239.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 702.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 280.3, "Median Spend per Customer": 280.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169071, 39.950646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-b49", "Name": "E Cigs International", "Category": "Other Miscellaneous Store Retailers", "Address": "6212 Ridge Ave", "LATITUDE": 40.03586, "LONGITUDE": -75.217916, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 80.0, "POI_CBG": 421010213001.0, "Median Dwell Time": 119.0, "Total Spend": 2420.0, "Total Transactions": 59.0, "Total Customers": 44.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 45.36 }, "geometry": { "type": "Point", "coordinates": [ -75.217916, 40.03586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg9-ty9", "Name": "Milano Di Rouge", "Category": "Clothing Stores", "Address": "1509 Spring Garden St", "LATITUDE": 39.962944, "LONGITUDE": -75.163384, "DATE_RANGE_START": 2023, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 48.0, "Total Spend": 1797.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 85.87, "Median Spend per Customer": 85.87 }, "geometry": { "type": "Point", "coordinates": [ -75.163384, 39.962944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pp5-2p9", "Name": "Izlas Latin Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "2725 N American St", "LATITUDE": 39.992275, "LONGITUDE": -75.135578, "DATE_RANGE_START": 2023, "Total Visits": 982.0, "Total Visitors": 664.0, "POI_CBG": 421010176015.0, "Median Dwell Time": 11.0, "Total Spend": 5227.0, "Total Transactions": 71.0, "Total Customers": 44.0, "Median Spend per Transaction": 62.0, "Median Spend per Customer": 101.54 }, "geometry": { "type": "Point", "coordinates": [ -75.135578, 39.992275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "Name": "Walnut Supermarket", "Category": "Grocery Stores", "Address": "5131 Walnut St", "LATITUDE": 39.95707, "LONGITUDE": -75.224522, "DATE_RANGE_START": 2023, "Total Visits": 1343.0, "Total Visitors": 1075.0, "POI_CBG": 421010085002.0, "Median Dwell Time": 12.0, "Total Spend": 4040.0, "Total Transactions": 89.0, "Total Customers": 73.0, "Median Spend per Transaction": 23.14, "Median Spend per Customer": 25.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224522, 39.95707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pg3-789", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "8103 Stenton Ave", "LATITUDE": 40.067023, "LONGITUDE": -75.178027, "DATE_RANGE_START": 2023, "Total Visits": 150.0, "Total Visitors": 113.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 16.0, "Total Spend": 491.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 24.63, "Median Spend per Customer": 29.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178027, 40.067023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "Name": "Cleavers", "Category": "Restaurants and Other Eating Places", "Address": "108 S 18th St", "LATITUDE": 39.951401, "LONGITUDE": -75.170622, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 14.0, "Total Spend": 11714.0, "Total Transactions": 362.0, "Total Customers": 294.0, "Median Spend per Transaction": 22.2, "Median Spend per Customer": 26.69 }, "geometry": { "type": "Point", "coordinates": [ -75.170622, 39.951401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "Name": "La Tienda MiniMarket", "Category": "Restaurants and Other Eating Places", "Address": "1247 Snyder Ave", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2023, "Total Visits": 44.0, "Total Visitors": 44.0, "POI_CBG": 421010040014.0, "Median Dwell Time": null, "Total Spend": 87.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.06, "Median Spend per Customer": 15.06 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-66k", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1201 Walnut St", "LATITUDE": 39.949053, "LONGITUDE": -75.160719, "DATE_RANGE_START": 2023, "Total Visits": 3282.0, "Total Visitors": 2360.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 6.0, "Total Spend": 3502.0, "Total Transactions": 163.0, "Total Customers": 103.0, "Median Spend per Transaction": 15.42, "Median Spend per Customer": 20.29 }, "geometry": { "type": "Point", "coordinates": [ -75.160719, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "Name": "Hair Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4160 Monument Rd", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2023, "Total Visits": 2146.0, "Total Visitors": 1136.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 15.0, "Total Spend": 4652.0, "Total Transactions": 173.0, "Total Customers": 148.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 24.81 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1601 Market St", "LATITUDE": 39.953117, "LONGITUDE": -75.167361, "DATE_RANGE_START": 2023, "Total Visits": 5142.0, "Total Visitors": 2887.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 386.0, "Total Transactions": 26.0, "Total Customers": 15.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.167361, 39.953117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "Name": "John's Diner", "Category": "Restaurants and Other Eating Places", "Address": "119 E Chelten Ave", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2023, "Total Visits": 185.0, "Total Visitors": 81.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 188.0, "Total Spend": 389.0, "Total Transactions": 21.0, "Total Customers": 20.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 17.63 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "Name": "Castor Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6038 Castor Ave", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2023, "Total Visits": 169.0, "Total Visitors": 104.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 14.0, "Total Spend": 1659.0, "Total Transactions": 80.0, "Total Customers": 58.0, "Median Spend per Transaction": 15.47, "Median Spend per Customer": 20.96 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "Name": "Solly Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8108 Bustleton Ave", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2023, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010336001.0, "Median Dwell Time": null, "Total Spend": 1170.0, "Total Transactions": 34.0, "Total Customers": 26.0, "Median Spend per Transaction": 22.63, "Median Spend per Customer": 23.35 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-5xq", "Name": "Throwbaxx Bar & Grille", "Category": "Restaurants and Other Eating Places", "Address": "6800 Ridge Ave", "LATITUDE": 40.042336, "LONGITUDE": -75.226518, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 143.0, "POI_CBG": 421010216001.0, "Median Dwell Time": 1.0, "Total Spend": 75.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 29.9, "Median Spend per Customer": 29.9 }, "geometry": { "type": "Point", "coordinates": [ -75.226518, 40.042336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-p74-cyv", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "8016 Frankford Ave", "LATITUDE": 40.041879, "LONGITUDE": -75.027519, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 119.0, "POI_CBG": 421010331022.0, "Median Dwell Time": 1.0, "Total Spend": 33.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.027519, 40.041879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "Name": "Hatville Deli", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2023, "Total Visits": 301.0, "Total Visitors": 287.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 1029.0, "Total Transactions": 63.0, "Total Customers": 53.0, "Median Spend per Transaction": 12.98, "Median Spend per Customer": 14.48 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1516 Chestnut St", "LATITUDE": 39.951018, "LONGITUDE": -75.166333, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 7664.0, "Total Transactions": 604.0, "Total Customers": 326.0, "Median Spend per Transaction": 12.41, "Median Spend per Customer": 12.65 }, "geometry": { "type": "Point", "coordinates": [ -75.166333, 39.951018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "551 Franklin Mills Cir", "LATITUDE": 40.089384, "LONGITUDE": -74.964343, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 5180.0, "Total Transactions": 433.0, "Total Customers": 262.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -74.964343, 40.089384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvx-xkf", "Name": "Dottie's Donuts", "Category": "Restaurants and Other Eating Places", "Address": "4529 Springfield Ave", "LATITUDE": 39.948402, "LONGITUDE": -75.213616, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 3.0, "Total Spend": 69.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 13.07, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213616, 39.948402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgf-33q", "Name": "Urban Outfitters", "Category": "Clothing Stores", "Address": "110 S 36th St", "LATITUDE": 39.953788, "LONGITUDE": -75.194952, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 505.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 2.0, "Total Spend": 6400.0, "Total Transactions": 157.0, "Total Customers": 149.0, "Median Spend per Transaction": 28.4, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.194952, 39.953788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6430 Castor Ave", "LATITUDE": 40.040675, "LONGITUDE": -75.076814, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 11.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 6.0, "Total Spend": 1257.0, "Total Transactions": 96.0, "Total Customers": 61.0, "Median Spend per Transaction": 7.98, "Median Spend per Customer": 10.68 }, "geometry": { "type": "Point", "coordinates": [ -75.076814, 40.040675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8901 Frankford Ave", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2023, "Total Visits": 906.0, "Total Visitors": 614.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 11.0, "Total Spend": 16826.0, "Total Transactions": 1243.0, "Total Customers": 772.0, "Median Spend per Transaction": 11.14, "Median Spend per Customer": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-4jv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "490 N Broad St", "LATITUDE": 39.96223, "LONGITUDE": -75.161973, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 1.0, "Total Spend": 3572.0, "Total Transactions": 400.0, "Total Customers": 235.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 10.66 }, "geometry": { "type": "Point", "coordinates": [ -75.161973, 39.96223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-223@628-phy-rc5", "Name": "Tierra Colombiana Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4535 N 5th St", "LATITUDE": 40.020572, "LONGITUDE": -75.133736, "DATE_RANGE_START": 2023, "Total Visits": 293.0, "Total Visitors": 164.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 81.0, "Total Spend": 668.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 134.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133736, 40.020572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-49z", "Name": "Greek From Greece", "Category": "Restaurants and Other Eating Places", "Address": "107 N 33rd St", "LATITUDE": 39.957875, "LONGITUDE": -75.188864, "DATE_RANGE_START": 2023, "Total Visits": 680.0, "Total Visitors": 276.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 68.0, "Total Spend": 100.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.12, "Median Spend per Customer": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.188864, 39.957875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-r8v", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1900 W Olney Ave", "LATITUDE": 40.037689, "LONGITUDE": -75.152867, "DATE_RANGE_START": 2023, "Total Visits": 1593.0, "Total Visitors": 456.0, "POI_CBG": 421010279022.0, "Median Dwell Time": 72.0, "Total Spend": 32.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152867, 40.037689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2400 Castor Ave", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2023, "Total Visits": 3034.0, "Total Visitors": 2032.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 7.0, "Total Spend": 3547.0, "Total Transactions": 197.0, "Total Customers": 116.0, "Median Spend per Transaction": 13.62, "Median Spend per Customer": 16.81 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-tsq", "Name": "J's Mini Market", "Category": "Grocery Stores", "Address": "4601 Horrocks St", "LATITUDE": 40.017868, "LONGITUDE": -75.091027, "DATE_RANGE_START": 2023, "Total Visits": 336.0, "Total Visitors": 284.0, "POI_CBG": 421010301003.0, "Median Dwell Time": 4.0, "Total Spend": 39.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 15.5 }, "geometry": { "type": "Point", "coordinates": [ -75.091027, 40.017868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8m-st9", "Name": "E Z Brunch", "Category": "Restaurants and Other Eating Places", "Address": "1540 Pratt St", "LATITUDE": 40.022624, "LONGITUDE": -75.078903, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 43.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 518.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.078903, 40.022624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pm4-3kf", "Name": "Miles Table", "Category": "Restaurants and Other Eating Places", "Address": "821 Dudley St", "LATITUDE": 39.925054, "LONGITUDE": -75.160226, "DATE_RANGE_START": 2023, "Total Visits": 1053.0, "Total Visitors": 780.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 77.0, "Total Spend": 1872.0, "Total Transactions": 91.0, "Total Customers": 71.0, "Median Spend per Transaction": 19.17, "Median Spend per Customer": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.160226, 39.925054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9q-jsq", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "9801 Roosevelt Blvd Ste 6", "LATITUDE": 40.084384, "LONGITUDE": -75.022786, "DATE_RANGE_START": 2023, "Total Visits": 473.0, "Total Visitors": 440.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 29.0, "Total Spend": 213.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 59.99, "Median Spend per Customer": 84.99 }, "geometry": { "type": "Point", "coordinates": [ -75.022786, 40.084384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5mk", "Name": "Fogo de Chão", "Category": "Restaurants and Other Eating Places", "Address": "1337 Chestnut St", "LATITUDE": 39.950936, "LONGITUDE": -75.162912, "DATE_RANGE_START": 2023, "Total Visits": 13731.0, "Total Visitors": 8695.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 15.0, "Total Spend": 33096.0, "Total Transactions": 195.0, "Total Customers": 178.0, "Median Spend per Transaction": 157.14, "Median Spend per Customer": 163.41 }, "geometry": { "type": "Point", "coordinates": [ -75.162912, 39.950936 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "Name": "The Bottle Shop", "Category": "Beer, Wine, and Liquor Stores", "Address": "1616 E Passyunk Ave", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 105.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 29.0, "Total Spend": 12964.0, "Total Transactions": 511.0, "Total Customers": 302.0, "Median Spend per Transaction": 21.29, "Median Spend per Customer": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992468, "LONGITUDE": -75.101245, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 18.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 28.0, "Total Spend": 10127.0, "Total Transactions": 204.0, "Total Customers": 177.0, "Median Spend per Transaction": 38.83, "Median Spend per Customer": 39.93 }, "geometry": { "type": "Point", "coordinates": [ -75.101245, 39.992468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgf-33q", "Name": "Dig Inn", "Category": "Restaurants and Other Eating Places", "Address": "140 S 36th St", "LATITUDE": 39.953642, "LONGITUDE": -75.195173, "DATE_RANGE_START": 2023, "Total Visits": 4222.0, "Total Visitors": 2643.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 43.0, "Total Spend": 114.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 16.03 }, "geometry": { "type": "Point", "coordinates": [ -75.195173, 39.953642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "Name": "Sampan", "Category": "Traveler Accommodation", "Address": "124 S 13th St", "LATITUDE": 39.94953, "LONGITUDE": -75.162238, "DATE_RANGE_START": 2023, "Total Visits": 4502.0, "Total Visitors": 2743.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 87.0, "Total Spend": 6745.0, "Total Transactions": 81.0, "Total Customers": 69.0, "Median Spend per Transaction": 58.84, "Median Spend per Customer": 82.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162238, 39.94953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgg-p5f", "Name": "Mimmo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3000 W Allegheny Ave", "LATITUDE": 40.004649, "LONGITUDE": -75.17882, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010171004.0, "Median Dwell Time": 19.0, "Total Spend": 1901.0, "Total Transactions": 90.0, "Total Customers": 69.0, "Median Spend per Transaction": 17.83, "Median Spend per Customer": 20.46 }, "geometry": { "type": "Point", "coordinates": [ -75.17882, 40.004649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@63s-dvr-9zz", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6047 Woodland Ave", "LATITUDE": 39.929568, "LONGITUDE": -75.229061, "DATE_RANGE_START": 2023, "Total Visits": 322.0, "Total Visitors": 133.0, "POI_CBG": 421010066002.0, "Median Dwell Time": 583.0, "Total Spend": 4013.0, "Total Transactions": 190.0, "Total Customers": 127.0, "Median Spend per Transaction": 15.18, "Median Spend per Customer": 23.12 }, "geometry": { "type": "Point", "coordinates": [ -75.229061, 39.929568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "10 Snyder Ave", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2023, "Total Visits": 840.0, "Total Visitors": 526.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 6.0, "Total Spend": 8248.0, "Total Transactions": 550.0, "Total Customers": 222.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "3745 Aramingo Ave", "LATITUDE": 39.994586, "LONGITUDE": -75.091606, "DATE_RANGE_START": 2023, "Total Visits": 2833.0, "Total Visitors": 1696.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 20.0, "Total Spend": 1358458.0, "Total Transactions": 30112.0, "Total Customers": 11963.0, "Median Spend per Transaction": 24.5, "Median Spend per Customer": 50.02 }, "geometry": { "type": "Point", "coordinates": [ -75.091606, 39.994586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1219 S 9th St", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 433.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 6.0, "Total Spend": 2205.0, "Total Transactions": 109.0, "Total Customers": 104.0, "Median Spend per Transaction": 19.81, "Median Spend per Customer": 19.81 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnz-zj9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3398 Aramingo And Ontario", "LATITUDE": 39.991151, "LONGITUDE": -75.102101, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 4.0, "Total Spend": 271.0, "Total Transactions": 13.0, "Total Customers": 9.0, "Median Spend per Transaction": 25.15, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102101, 39.991151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-68v", "Name": "Alpha Jeweler", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "2141 Cottman Ave", "LATITUDE": 40.049666, "LONGITUDE": -75.062081, "DATE_RANGE_START": 2023, "Total Visits": 148.0, "Total Visitors": 148.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 19.0, "Total Spend": 514.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 151.2, "Median Spend per Customer": 151.2 }, "geometry": { "type": "Point", "coordinates": [ -75.062081, 40.049666 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm3-vzz", "Name": "Sermania Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1719 E Passyunk Ave", "LATITUDE": 39.928072, "LONGITUDE": -75.165393, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 85.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 129.0, "Total Spend": 154.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165393, 39.928072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.068105, "LONGITUDE": -75.198516, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 10.0, "Total Spend": 10735.0, "Total Transactions": 281.0, "Total Customers": 213.0, "Median Spend per Transaction": 18.24, "Median Spend per Customer": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.198516, 40.068105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-sbk", "Name": "Woven Treasures", "Category": "Used Merchandise Stores", "Address": "2221 Grays Ferry Ave", "LATITUDE": 39.945195, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2023, "Total Visits": 129.0, "Total Visitors": 75.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 69.0, "Total Spend": 603.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 48.6, "Median Spend per Customer": 64.26 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.945195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pg2-zs5", "Name": "South Philly Italian Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "311 W Mount Pleasant Ave", "LATITUDE": 40.054139, "LONGITUDE": -75.194452, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010388004.0, "Median Dwell Time": null, "Total Spend": 338.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 45.79, "Median Spend per Customer": 66.81 }, "geometry": { "type": "Point", "coordinates": [ -75.194452, 40.054139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phq-gtv", "Name": "Bruno's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7362 N 19th St", "LATITUDE": 40.067212, "LONGITUDE": -75.146516, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 64.0, "Total Spend": 194.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.146516, 40.067212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "Name": "El Camino Real", "Category": "Restaurants and Other Eating Places", "Address": "1040 N 2nd St", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 208.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 10.0, "Total Spend": 2407.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 74.48, "Median Spend per Customer": 74.48 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-qzz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "3600 Aramingo Ave", "LATITUDE": 39.993902, "LONGITUDE": -75.096793, "DATE_RANGE_START": 2023, "Total Visits": 564.0, "Total Visitors": 522.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 13.0, "Total Spend": 450.0, "Total Transactions": 29.0, "Total Customers": 23.0, "Median Spend per Transaction": 13.64, "Median Spend per Customer": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.096793, 39.993902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "Name": "Cambria Suites", "Category": "Traveler Accommodation", "Address": "219 S Broad St", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2023, "Total Visits": 8192.0, "Total Visitors": 5756.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 10.0, "Total Spend": 22358.0, "Total Transactions": 120.0, "Total Customers": 79.0, "Median Spend per Transaction": 27.68, "Median Spend per Customer": 95.96 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-33q", "Name": "Hello World", "Category": "Home Furnishings Stores", "Address": "3610 Sansom St", "LATITUDE": 39.953734, "LONGITUDE": -75.19539, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 11.0, "Total Spend": 4322.0, "Total Transactions": 118.0, "Total Customers": 104.0, "Median Spend per Transaction": 28.05, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.19539, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7941 Bustleton Ave @ Loney St", "LATITUDE": 40.058173, "LONGITUDE": -75.052406, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 3.0, "Total Spend": 3110.0, "Total Transactions": 91.0, "Total Customers": 58.0, "Median Spend per Transaction": 32.36, "Median Spend per Customer": 41.68 }, "geometry": { "type": "Point", "coordinates": [ -75.052406, 40.058173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-p8d-kxq", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4342 Frankford Ave", "LATITUDE": 40.012695, "LONGITUDE": -75.088391, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 17.0, "Total Spend": 46.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 2.71, "Median Spend per Customer": 5.84 }, "geometry": { "type": "Point", "coordinates": [ -75.088391, 40.012695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-87q", "Name": "Marriott Hotels", "Category": "Traveler Accommodation", "Address": "1201 Market St", "LATITUDE": 39.95272, "LONGITUDE": -75.160544, "DATE_RANGE_START": 2023, "Total Visits": 738.0, "Total Visitors": 460.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 149.0, "Total Spend": 312.0, "Total Transactions": 9.0, "Total Customers": 4.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 31.44 }, "geometry": { "type": "Point", "coordinates": [ -75.160544, 39.95272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "Name": "Vientiane Bistro", "Category": "Restaurants and Other Eating Places", "Address": "2537 Kensington Ave", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2023, "Total Visits": 127.0, "Total Visitors": 127.0, "POI_CBG": 421010161003.0, "Median Dwell Time": 1.0, "Total Spend": 1149.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 49.44, "Median Spend per Customer": 61.44 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "Name": "Palm Tree Market", "Category": "Restaurants and Other Eating Places", "Address": "717 N 2nd St", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 100.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 3.0, "Total Spend": 977.0, "Total Transactions": 51.0, "Total Customers": 39.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 18.78 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2311 Cottman Ave", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2023, "Total Visits": 139.0, "Total Visitors": 139.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 14.0, "Total Spend": 5776.0, "Total Transactions": 371.0, "Total Customers": 262.0, "Median Spend per Transaction": 11.98, "Median Spend per Customer": 17.15 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "242 Market St # 244", "LATITUDE": 39.949727, "LONGITUDE": -75.145549, "DATE_RANGE_START": 2023, "Total Visits": 582.0, "Total Visitors": 401.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 553.0, "Total Transactions": 49.0, "Total Customers": 33.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.145549, 39.949727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "532 W Lehigh Ave # 46", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 244.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 8.0, "Total Spend": 2140.0, "Total Transactions": 238.0, "Total Customers": 163.0, "Median Spend per Transaction": 8.13, "Median Spend per Customer": 9.94 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p85-2tv", "Name": "S S Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8275 Bustleton Ave", "LATITUDE": 40.066075, "LONGITUDE": -75.050826, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 198.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 4.0, "Total Spend": 307.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 54.14, "Median Spend per Customer": 58.29 }, "geometry": { "type": "Point", "coordinates": [ -75.050826, 40.066075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-jd9", "Name": "The Body Shop", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 148", "LATITUDE": 39.952033, "LONGITUDE": -75.168125, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 140.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 6.0, "Total Spend": 432.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 30.78, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "Name": "Parkway Corner Deli", "Category": "Restaurants and Other Eating Places", "Address": "2201 Pennsylvania Ave", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 210.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 1.0, "Total Spend": 4806.0, "Total Transactions": 326.0, "Total Customers": 163.0, "Median Spend per Transaction": 12.41, "Median Spend per Customer": 20.03 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7241 Torresdale Ave", "LATITUDE": 40.029718, "LONGITUDE": -75.035335, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 144.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 13.0, "Total Spend": 491.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 20.08, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.035335, 40.029718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-225@628-pmf-j7q", "Name": "Van Leeuwen Artisan Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "115 S 18th St", "LATITUDE": 39.951193, "LONGITUDE": -75.170331, "DATE_RANGE_START": 2023, "Total Visits": 1325.0, "Total Visitors": 847.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 19.0, "Total Spend": 1860.0, "Total Transactions": 132.0, "Total Customers": 125.0, "Median Spend per Transaction": 11.1, "Median Spend per Customer": 13.09 }, "geometry": { "type": "Point", "coordinates": [ -75.170331, 39.951193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1434 Frankford Ave", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2023, "Total Visits": 1290.0, "Total Visitors": 645.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 40.0, "Total Spend": 11581.0, "Total Transactions": 359.0, "Total Customers": 308.0, "Median Spend per Transaction": 23.09, "Median Spend per Customer": 27.18 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "Name": "Morimoto", "Category": "Restaurants and Other Eating Places", "Address": "723 Chestnut St", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2023, "Total Visits": 328.0, "Total Visitors": 278.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 82.0, "Total Spend": 26169.0, "Total Transactions": 110.0, "Total Customers": 103.0, "Median Spend per Transaction": 185.07, "Median Spend per Customer": 187.91 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgj-pgk", "Name": "Arthurs Dog House", "Category": "Restaurants and Other Eating Places", "Address": "2650 Germantown Ave", "LATITUDE": 39.992776, "LONGITUDE": -75.148159, "DATE_RANGE_START": 2023, "Total Visits": 562.0, "Total Visitors": 421.0, "POI_CBG": 421010165003.0, "Median Dwell Time": 2.0, "Total Spend": 77.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 16.75, "Median Spend per Customer": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.148159, 39.992776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "9000 Tinicum Blvd", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2023, "Total Visits": 562.0, "Total Visitors": 380.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 199.0, "Total Spend": 7051.0, "Total Transactions": 29.0, "Total Customers": 18.0, "Median Spend per Transaction": 134.97, "Median Spend per Customer": 178.86 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm9-5xq", "Name": "The Pizza Shack", "Category": "Restaurants and Other Eating Places", "Address": "1500 W Porter St", "LATITUDE": 39.919497, "LONGITUDE": -75.172624, "DATE_RANGE_START": 2023, "Total Visits": 164.0, "Total Visitors": 148.0, "POI_CBG": 421010039021.0, "Median Dwell Time": 55.0, "Total Spend": 314.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 53.73, "Median Spend per Customer": 53.73 }, "geometry": { "type": "Point", "coordinates": [ -75.172624, 39.919497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-nkf", "Name": "Dave & Buster's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "325 N Columbus Blvd", "LATITUDE": 39.956224, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2023, "Total Visits": 3307.0, "Total Visitors": 1724.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 186.0, "Total Spend": 3311.0, "Total Transactions": 73.0, "Total Customers": 49.0, "Median Spend per Transaction": 32.68, "Median Spend per Customer": 53.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.956224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kcq", "Name": "Almaz Cafe", "Category": "Restaurants and Other Eating Places", "Address": "140 S 20th St", "LATITUDE": 39.950642, "LONGITUDE": -75.173954, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 158.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 1.0, "Total Spend": 1038.0, "Total Transactions": 34.0, "Total Customers": 29.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 35.53 }, "geometry": { "type": "Point", "coordinates": [ -75.173954, 39.950642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-php-y5f", "Name": "Clark's Tires", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6430 N Beechwood St", "LATITUDE": 40.052584, "LONGITUDE": -75.157104, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 33.0, "POI_CBG": 421010277006.0, "Median Dwell Time": 5.0, "Total Spend": 572.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157104, 40.052584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "6470 Torresdale Ave", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2023, "Total Visits": 1271.0, "Total Visitors": 852.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 12.0, "Total Spend": 8925.0, "Total Transactions": 571.0, "Total Customers": 418.0, "Median Spend per Transaction": 12.97, "Median Spend per Customer": 16.42 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg9-7h5", "Name": "Hair Town", "Category": "Health and Personal Care Stores", "Address": "2301 N 29th St", "LATITUDE": 39.991296, "LONGITUDE": -75.180135, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 198.0, "POI_CBG": 421010169022.0, "Median Dwell Time": 6.0, "Total Spend": 1801.0, "Total Transactions": 64.0, "Total Customers": 53.0, "Median Spend per Transaction": 21.55, "Median Spend per Customer": 26.24 }, "geometry": { "type": "Point", "coordinates": [ -75.180135, 39.991296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-224@628-pmb-xkf", "Name": "Moon Flower House", "Category": "Restaurants and Other Eating Places", "Address": "225 N 11th St", "LATITUDE": 39.956389, "LONGITUDE": -75.157042, "DATE_RANGE_START": 2023, "Total Visits": 403.0, "Total Visitors": 361.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 2.0, "Total Spend": 27.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.157042, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@63s-dvr-qj9", "Name": "Trendsetters Bar & Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5301 Woodland Ave", "LATITUDE": 39.937385, "LONGITUDE": -75.217901, "DATE_RANGE_START": 2023, "Total Visits": 185.0, "Total Visitors": 127.0, "POI_CBG": 421010070001.0, "Median Dwell Time": 109.0, "Total Spend": 631.0, "Total Transactions": 16.0, "Total Customers": 11.0, "Median Spend per Transaction": 28.76, "Median Spend per Customer": 28.76 }, "geometry": { "type": "Point", "coordinates": [ -75.217901, 39.937385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "Name": "Menchie's", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd Unit 4", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2023, "Total Visits": 303.0, "Total Visitors": 287.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 30.0, "Total Spend": 3952.0, "Total Transactions": 264.0, "Total Customers": 230.0, "Median Spend per Transaction": 13.41, "Median Spend per Customer": 14.72 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "801 E Cathedral Rd", "LATITUDE": 40.064377, "LONGITUDE": -75.23812, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 13.0, "Total Spend": 459.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 16.6, "Median Spend per Customer": 16.25 }, "geometry": { "type": "Point", "coordinates": [ -75.23812, 40.064377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-pn5", "Name": "&pizza", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St", "LATITUDE": 39.954318, "LONGITUDE": -75.201459, "DATE_RANGE_START": 2023, "Total Visits": 2588.0, "Total Visitors": 1727.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 11.0, "Total Spend": 331.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 35.44, "Median Spend per Customer": 35.44 }, "geometry": { "type": "Point", "coordinates": [ -75.201459, 39.954318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pg4-2p9", "Name": "Bargain Thrift Center", "Category": "Used Merchandise Stores", "Address": "5245 Germantown Ave", "LATITUDE": 40.031821, "LONGITUDE": -75.167835, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 120.0, "POI_CBG": 421010245004.0, "Median Dwell Time": 27.0, "Total Spend": 395.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 33.78, "Median Spend per Customer": 34.53 }, "geometry": { "type": "Point", "coordinates": [ -75.167835, 40.031821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pjk-rff", "Name": "The Cedars House", "Category": "Restaurants and Other Eating Places", "Address": "200 W Northwestern Ave", "LATITUDE": 40.083013, "LONGITUDE": -75.232411, "DATE_RANGE_START": 2023, "Total Visits": 95.0, "Total Visitors": 85.0, "POI_CBG": 421010384001.0, "Median Dwell Time": 6.0, "Total Spend": 2862.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 1142.5, "Median Spend per Customer": 1142.5 }, "geometry": { "type": "Point", "coordinates": [ -75.232411, 40.083013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7z-qs5", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "6301 Oxford Ave", "LATITUDE": 40.044023, "LONGITUDE": -75.088364, "DATE_RANGE_START": 2023, "Total Visits": 2913.0, "Total Visitors": 1561.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 24.0, "Total Spend": 415.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 86.87 }, "geometry": { "type": "Point", "coordinates": [ -75.088364, 40.044023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market St", "LATITUDE": 39.952204, "LONGITUDE": -75.166429, "DATE_RANGE_START": 2023, "Total Visits": 5390.0, "Total Visitors": 3301.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 9.0, "Total Spend": 2131.0, "Total Transactions": 354.0, "Total Customers": 172.0, "Median Spend per Transaction": 5.27, "Median Spend per Customer": 7.12 }, "geometry": { "type": "Point", "coordinates": [ -75.166429, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-227@628-pm4-mff", "Name": "APlus", "Category": "Grocery Stores", "Address": "1100 S 10th St", "LATITUDE": 39.936496, "LONGITUDE": -75.160414, "DATE_RANGE_START": 2023, "Total Visits": 942.0, "Total Visitors": 896.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 6.0, "Total Spend": 233.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 12.75, "Median Spend per Customer": 13.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160414, 39.936496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6800 Bustleton Ave", "LATITUDE": 40.040927, "LONGITUDE": -75.065636, "DATE_RANGE_START": 2023, "Total Visits": 403.0, "Total Visitors": 239.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 6.0, "Total Spend": 817.0, "Total Transactions": 48.0, "Total Customers": 18.0, "Median Spend per Transaction": 13.86, "Median Spend per Customer": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.065636, 40.040927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-skf", "Name": "Hunnies Crispy Chicken", "Category": "Restaurants and Other Eating Places", "Address": "223 S Sydenham St", "LATITUDE": 39.948974, "LONGITUDE": -75.166579, "DATE_RANGE_START": 2023, "Total Visits": 2172.0, "Total Visitors": 1549.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 3.0, "Total Spend": 503.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 12.06, "Median Spend per Customer": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.166579, 39.948974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-zzz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1315 E Washington Ln", "LATITUDE": 40.058549, "LONGITUDE": -75.166373, "DATE_RANGE_START": 2023, "Total Visits": 385.0, "Total Visitors": 214.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 23.0, "Total Spend": 3707.0, "Total Transactions": 173.0, "Total Customers": 129.0, "Median Spend per Transaction": 13.94, "Median Spend per Customer": 20.34 }, "geometry": { "type": "Point", "coordinates": [ -75.166373, 40.058549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "Name": "Bellini", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "220 S 16th St", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 148.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 4446.0, "Total Transactions": 35.0, "Total Customers": 30.0, "Median Spend per Transaction": 107.32, "Median Spend per Customer": 118.57 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "Name": "A Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "135 S 18th St", "LATITUDE": 39.950401, "LONGITUDE": -75.170434, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 11.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 75.0, "Total Spend": 5843.0, "Total Transactions": 349.0, "Total Customers": 276.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 15.72 }, "geometry": { "type": "Point", "coordinates": [ -75.170434, 39.950401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1325 E Washington Ln", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2023, "Total Visits": 342.0, "Total Visitors": 143.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 60.0, "Total Spend": 6475.0, "Total Transactions": 754.0, "Total Customers": 314.0, "Median Spend per Transaction": 6.94, "Median Spend per Customer": 10.22 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pmb-fpv", "Name": "Shaking Seafood", "Category": "Restaurants and Other Eating Places", "Address": "243 S 10th St", "LATITUDE": 39.946982, "LONGITUDE": -75.157365, "DATE_RANGE_START": 2023, "Total Visits": 342.0, "Total Visitors": 214.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 3.0, "Total Spend": 2258.0, "Total Transactions": 54.0, "Total Customers": 46.0, "Median Spend per Transaction": 31.98, "Median Spend per Customer": 45.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157365, 39.946982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@63s-dvr-hyv", "Name": "African Small Pot", "Category": "Restaurants and Other Eating Places", "Address": "6505 Woodland Ave", "LATITUDE": 39.925607, "LONGITUDE": -75.234713, "DATE_RANGE_START": 2023, "Total Visits": 451.0, "Total Visitors": 381.0, "POI_CBG": 421010063001.0, "Median Dwell Time": 23.0, "Total Spend": 92.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 26.75, "Median Spend per Customer": 26.75 }, "geometry": { "type": "Point", "coordinates": [ -75.234713, 39.925607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5800 Woodland Ave", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 373.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 15.0, "Total Spend": 842.0, "Total Transactions": 38.0, "Total Customers": 30.0, "Median Spend per Transaction": 16.65, "Median Spend per Customer": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-3wk", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2437 S 24th St", "LATITUDE": 39.920421, "LONGITUDE": -75.186389, "DATE_RANGE_START": 2023, "Total Visits": 1151.0, "Total Visitors": 829.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 25.0, "Total Spend": 1613.0, "Total Transactions": 59.0, "Total Customers": 49.0, "Median Spend per Transaction": 22.99, "Median Spend per Customer": 29.98 }, "geometry": { "type": "Point", "coordinates": [ -75.186389, 39.920421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "Name": "Ruby Tuesday", "Category": "Restaurants and Other Eating Places", "Address": "8680 Bartram Ave", "LATITUDE": 39.887825, "LONGITUDE": -75.24699, "DATE_RANGE_START": 2023, "Total Visits": 529.0, "Total Visitors": 438.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 48.0, "Total Spend": 11512.0, "Total Transactions": 235.0, "Total Customers": 173.0, "Median Spend per Transaction": 40.33, "Median Spend per Customer": 50.81 }, "geometry": { "type": "Point", "coordinates": [ -75.24699, 39.887825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm4-k2k", "Name": "Four Seasons", "Category": "Restaurants and Other Eating Places", "Address": "612 Washington Ave", "LATITUDE": 39.934372, "LONGITUDE": -75.154357, "DATE_RANGE_START": 2023, "Total Visits": 1826.0, "Total Visitors": 1516.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 13.0, "Total Spend": 175.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.43, "Median Spend per Customer": 35.26 }, "geometry": { "type": "Point", "coordinates": [ -75.154357, 39.934372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3110 W Cheltenham Ave", "LATITUDE": 40.080996, "LONGITUDE": -75.170897, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 15.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 6.0, "Total Spend": 7699.0, "Total Transactions": 448.0, "Total Customers": 351.0, "Median Spend per Transaction": 12.83, "Median Spend per Customer": 17.05 }, "geometry": { "type": "Point", "coordinates": [ -75.170897, 40.080996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "Name": "Asian Bamboo House", "Category": "Restaurants and Other Eating Places", "Address": "9456 State Rd", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2023, "Total Visits": 304.0, "Total Visitors": 267.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 20.0, "Total Spend": 2235.0, "Total Transactions": 65.0, "Total Customers": 59.0, "Median Spend per Transaction": 36.43, "Median Spend per Customer": 38.29 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-tjv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "808 Chestnut St", "LATITUDE": 39.949522, "LONGITUDE": -75.154256, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 1525.0, "Total Transactions": 267.0, "Total Customers": 140.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154256, 39.949522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2539 Castor Ave", "LATITUDE": 39.99191, "LONGITUDE": -75.090695, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 124.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 16.0, "Total Spend": 63013.0, "Total Transactions": 500.0, "Total Customers": 219.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 90.49 }, "geometry": { "type": "Point", "coordinates": [ -75.090695, 39.99191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3725 Aramingo Ave", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2023, "Total Visits": 998.0, "Total Visitors": 847.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 23.0, "Total Spend": 16172.0, "Total Transactions": 972.0, "Total Customers": 699.0, "Median Spend per Transaction": 13.74, "Median Spend per Customer": 17.71 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "839 N Broad St", "LATITUDE": 39.969384, "LONGITUDE": -75.159456, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 155.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 25.0, "Total Spend": 5083.0, "Total Transactions": 618.0, "Total Customers": 318.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159456, 39.969384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-jjv", "Name": "Hakim's Bookstore", "Category": "Book Stores and News Dealers", "Address": "210 S 52nd St", "LATITUDE": 39.95665, "LONGITUDE": -75.225827, "DATE_RANGE_START": 2023, "Total Visits": 39.0, "Total Visitors": 39.0, "POI_CBG": 421010085006.0, "Median Dwell Time": 1.0, "Total Spend": 1241.0, "Total Transactions": 110.0, "Total Customers": 103.0, "Median Spend per Transaction": 5.64, "Median Spend per Customer": 6.53 }, "geometry": { "type": "Point", "coordinates": [ -75.225827, 39.95665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "Name": "Miller's Ale House", "Category": "Restaurants and Other Eating Places", "Address": "9495 Roosevelt Blvd", "LATITUDE": 40.07979, "LONGITUDE": -75.028617, "DATE_RANGE_START": 2023, "Total Visits": 909.0, "Total Visitors": 734.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 77.0, "Total Spend": 28655.0, "Total Transactions": 453.0, "Total Customers": 383.0, "Median Spend per Transaction": 55.86, "Median Spend per Customer": 59.63 }, "geometry": { "type": "Point", "coordinates": [ -75.028617, 40.07979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23g@63s-dw9-7nq", "Name": "Gachi Sushi and Noodle", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave # A", "LATITUDE": 39.894656, "LONGITUDE": -75.229135, "DATE_RANGE_START": 2023, "Total Visits": 1045.0, "Total Visitors": 817.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 697.0, "Total Transactions": 44.0, "Total Customers": 41.0, "Median Spend per Transaction": 14.78, "Median Spend per Customer": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.229135, 39.894656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pm3-t5f", "Name": "River Twice", "Category": "Restaurants and Other Eating Places", "Address": "1601 E Passyunk Ave", "LATITUDE": 39.929748, "LONGITUDE": -75.163402, "DATE_RANGE_START": 2023, "Total Visits": 103.0, "Total Visitors": 86.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 11.0, "Total Spend": 877.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 256.58, "Median Spend per Customer": 256.58 }, "geometry": { "type": "Point", "coordinates": [ -75.163402, 39.929748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044953, "LONGITUDE": -75.143968, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 352.0, "Total Spend": 2566.0, "Total Transactions": 101.0, "Total Customers": 81.0, "Median Spend per Transaction": 23.2, "Median Spend per Customer": 25.1 }, "geometry": { "type": "Point", "coordinates": [ -75.143968, 40.044953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "Name": "The Tasty", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 12th St", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 150.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 1.0, "Total Spend": 2873.0, "Total Transactions": 93.0, "Total Customers": 64.0, "Median Spend per Transaction": 27.41, "Median Spend per Customer": 38.34 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "Name": "Union Tap House", "Category": "Restaurants and Other Eating Places", "Address": "4801 Umbria St", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 132.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 73.0, "Total Spend": 724.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 69.34, "Median Spend per Customer": 75.96 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-y35", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "11725 Bustleton Ave", "LATITUDE": 40.119166, "LONGITUDE": -75.017086, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 169.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 15.0, "Total Spend": 5665.0, "Total Transactions": 752.0, "Total Customers": 269.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -75.017086, 40.119166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-4vz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "9201 Roosevelt Blvd", "LATITUDE": 40.077481, "LONGITUDE": -75.031225, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 198.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 11.0, "Total Spend": 1210.0, "Total Transactions": 83.0, "Total Customers": 68.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 11.49 }, "geometry": { "type": "Point", "coordinates": [ -75.031225, 40.077481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8f-djv", "Name": "Neighborhood Market", "Category": "Grocery Stores", "Address": "4676 Frankford Ave", "LATITUDE": 40.016721, "LONGITUDE": -75.084303, "DATE_RANGE_START": 2023, "Total Visits": 140.0, "Total Visitors": 110.0, "POI_CBG": 421010300006.0, "Median Dwell Time": 4.0, "Total Spend": 863.0, "Total Transactions": 114.0, "Total Customers": 46.0, "Median Spend per Transaction": 5.98, "Median Spend per Customer": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084303, 40.016721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "229 W Allegheny Ave", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 261.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 56.0, "Total Spend": 717.0, "Total Transactions": 59.0, "Total Customers": 49.0, "Median Spend per Transaction": 7.67, "Median Spend per Customer": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "301 W Chelten Ave Ste F", "LATITUDE": 40.030546, "LONGITUDE": -75.181382, "DATE_RANGE_START": 2023, "Total Visits": 66.0, "Total Visitors": 39.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 17.0, "Total Spend": 849.0, "Total Transactions": 53.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.13, "Median Spend per Customer": 19.55 }, "geometry": { "type": "Point", "coordinates": [ -75.181382, 40.030546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgy-mzf", "Name": "Doc's World of Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "701 E Cathedral Rd", "LATITUDE": 40.063477, "LONGITUDE": -75.238345, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 88.0, "Total Spend": 7353.0, "Total Transactions": 278.0, "Total Customers": 185.0, "Median Spend per Transaction": 23.54, "Median Spend per Customer": 27.84 }, "geometry": { "type": "Point", "coordinates": [ -75.238345, 40.063477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "518 Port Royal Ave", "LATITUDE": 40.061147, "LONGITUDE": -75.237239, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 20.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 8.0, "Total Spend": 5935.0, "Total Transactions": 276.0, "Total Customers": 180.0, "Median Spend per Transaction": 13.67, "Median Spend per Customer": 17.93 }, "geometry": { "type": "Point", "coordinates": [ -75.237239, 40.061147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "Name": "Dollar Value", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2007 S Broad St", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 197.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 7.0, "Total Spend": 2157.0, "Total Transactions": 132.0, "Total Customers": 98.0, "Median Spend per Transaction": 12.94, "Median Spend per Customer": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-psq", "Name": "Magic Noodles", "Category": "Restaurants and Other Eating Places", "Address": "2833 Cottman Ave", "LATITUDE": 40.043529, "LONGITUDE": -75.052298, "DATE_RANGE_START": 2023, "Total Visits": 105.0, "Total Visitors": 105.0, "POI_CBG": 421010332001.0, "Median Dwell Time": null, "Total Spend": 520.0, "Total Transactions": 16.0, "Total Customers": 15.0, "Median Spend per Transaction": 30.81, "Median Spend per Customer": 32.09 }, "geometry": { "type": "Point", "coordinates": [ -75.052298, 40.043529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "Name": "YOLO Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1632 W Susquehanna Ave # 1662", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2023, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010167024.0, "Median Dwell Time": 2.0, "Total Spend": 582.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-226@628-pgb-grk", "Name": "Goldie", "Category": "Restaurants and Other Eating Places", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.962781, "LONGITUDE": -75.173743, "DATE_RANGE_START": 2023, "Total Visits": 2049.0, "Total Visitors": 1144.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 29.0, "Total Spend": 716.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 26.19 }, "geometry": { "type": "Point", "coordinates": [ -75.173743, 39.962781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1018 N 2nd St", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2023, "Total Visits": 949.0, "Total Visitors": 753.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 10.0, "Total Spend": 2952.0, "Total Transactions": 328.0, "Total Customers": 220.0, "Median Spend per Transaction": 7.98, "Median Spend per Customer": 9.84 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4530 N 5th St", "LATITUDE": 40.020901, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 4.0, "Total Spend": 5462.0, "Total Transactions": 337.0, "Total Customers": 185.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 40.020901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-226@628-pg4-m6k", "Name": "HubSpot", "Category": "Restaurants and Other Eating Places", "Address": "740 E Chelten Ave", "LATITUDE": 40.045146, "LONGITUDE": -75.164878, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 110.0, "POI_CBG": 421010247001.0, "Median Dwell Time": 7.0, "Total Spend": 142.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 19.66, "Median Spend per Customer": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.164878, 40.045146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "8101 Oxford Ave", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2023, "Total Visits": 596.0, "Total Visitors": 279.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 9.0, "Total Spend": 1059.0, "Total Transactions": 38.0, "Total Customers": 11.0, "Median Spend per Transaction": 13.13, "Median Spend per Customer": 22.81 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@63s-dvp-bff", "Name": "Total Beauty Supplies", "Category": "Health and Personal Care Stores", "Address": "5746 Baltimore Ave", "LATITUDE": 39.945299, "LONGITUDE": -75.238685, "DATE_RANGE_START": 2023, "Total Visits": 728.0, "Total Visitors": 485.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 8.0, "Total Spend": 3672.0, "Total Transactions": 147.0, "Total Customers": 116.0, "Median Spend per Transaction": 19.19, "Median Spend per Customer": 23.51 }, "geometry": { "type": "Point", "coordinates": [ -75.238685, 39.945299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-bhq", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "29 N 52nd St", "LATITUDE": 39.960805, "LONGITUDE": -75.22438, "DATE_RANGE_START": 2023, "Total Visits": 264.0, "Total Visitors": 183.0, "POI_CBG": 421010093003.0, "Median Dwell Time": 10.0, "Total Spend": 615.0, "Total Transactions": 50.0, "Total Customers": 39.0, "Median Spend per Transaction": 8.66, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.22438, 39.960805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "Name": "DFTI Boutique", "Category": "Clothing Stores", "Address": "2032 Chestnut St", "LATITUDE": 39.951956, "LONGITUDE": -75.174859, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 24.0, "Total Spend": 6533.0, "Total Transactions": 58.0, "Total Customers": 49.0, "Median Spend per Transaction": 80.0, "Median Spend per Customer": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174859, 39.951956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-227@628-p9k-2zf", "Name": "Beer Center", "Category": "Beer, Wine, and Liquor Stores", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103141, "LONGITUDE": -75.010331, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 485.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 24.0, "Total Spend": 1773.0, "Total Transactions": 78.0, "Total Customers": 25.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.010331, 40.103141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kpv", "Name": "Citi Gas", "Category": "Gasoline Stations", "Address": "4067 Frankford Ave", "LATITUDE": 40.006375, "LONGITUDE": -75.09134, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 31.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 3.0, "Total Spend": 13198.0, "Total Transactions": 575.0, "Total Customers": 298.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.02 }, "geometry": { "type": "Point", "coordinates": [ -75.09134, 40.006375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "Name": "Loco Dollar", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "201 E Allegheny Ave", "LATITUDE": 39.998812, "LONGITUDE": -75.12698, "DATE_RANGE_START": 2023, "Total Visits": 653.0, "Total Visitors": 381.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 12.0, "Total Spend": 1834.0, "Total Transactions": 79.0, "Total Customers": 61.0, "Median Spend per Transaction": 17.81, "Median Spend per Customer": 20.56 }, "geometry": { "type": "Point", "coordinates": [ -75.12698, 39.998812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "5632 Ridge Ave", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2023, "Total Visits": 540.0, "Total Visitors": 363.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 6.0, "Total Spend": 1944.0, "Total Transactions": 130.0, "Total Customers": 58.0, "Median Spend per Transaction": 7.24, "Median Spend per Customer": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "Name": "1 Stop Mini Market", "Category": "Grocery Stores", "Address": "700 S 8th St", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 157.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 6.0, "Total Spend": 14351.0, "Total Transactions": 783.0, "Total Customers": 324.0, "Median Spend per Transaction": 15.01, "Median Spend per Customer": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "Name": "The Ritz-Carlton", "Category": "Traveler Accommodation", "Address": "10 Avenue of the Arts", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2023, "Total Visits": 3468.0, "Total Visitors": 2486.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 4581.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 335.14, "Median Spend per Customer": 153.53 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-brk", "Name": "East Coast Wings + Grill", "Category": "Restaurants and Other Eating Places", "Address": "2539 Castor Ave", "LATITUDE": 39.99402, "LONGITUDE": -75.091507, "DATE_RANGE_START": 2023, "Total Visits": 502.0, "Total Visitors": 386.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 24.0, "Total Spend": 5657.0, "Total Transactions": 86.0, "Total Customers": 70.0, "Median Spend per Transaction": 66.58, "Median Spend per Customer": 70.57 }, "geometry": { "type": "Point", "coordinates": [ -75.091507, 39.99402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pnx-bhq", "Name": "Tommy's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "465 E Girard Ave", "LATITUDE": 39.971034, "LONGITUDE": -75.128711, "DATE_RANGE_START": 2023, "Total Visits": 460.0, "Total Visitors": 259.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 55.0, "Total Spend": 1903.0, "Total Transactions": 90.0, "Total Customers": 56.0, "Median Spend per Transaction": 17.81, "Median Spend per Customer": 23.19 }, "geometry": { "type": "Point", "coordinates": [ -75.128711, 39.971034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-jgk", "Name": "Saxbys Coffee", "Category": "Restaurants and Other Eating Places", "Address": "4000 Locust St", "LATITUDE": 39.952783, "LONGITUDE": -75.203063, "DATE_RANGE_START": 2023, "Total Visits": 557.0, "Total Visitors": 351.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 15.0, "Total Spend": 94.0, "Total Transactions": 19.0, "Total Customers": 4.0, "Median Spend per Transaction": 4.23, "Median Spend per Customer": 30.88 }, "geometry": { "type": "Point", "coordinates": [ -75.203063, 39.952783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p7b-qfz", "Name": "Salvito's Pizza Palace", "Category": "Restaurants and Other Eating Places", "Address": "9045 Ashton Rd", "LATITUDE": 40.062458, "LONGITUDE": -75.022048, "DATE_RANGE_START": 2023, "Total Visits": 437.0, "Total Visitors": 259.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 17.0, "Total Spend": 672.0, "Total Transactions": 39.0, "Total Customers": 29.0, "Median Spend per Transaction": 14.74, "Median Spend per Customer": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.022048, 40.062458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "12301 Academy Rd", "LATITUDE": 40.095741, "LONGITUDE": -74.976103, "DATE_RANGE_START": 2023, "Total Visits": 2211.0, "Total Visitors": 1410.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 89304.0, "Total Transactions": 4895.0, "Total Customers": 1417.0, "Median Spend per Transaction": 11.69, "Median Spend per Customer": 28.09 }, "geometry": { "type": "Point", "coordinates": [ -74.976103, 40.095741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7x-vzz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "7350 Bustleton Ave", "LATITUDE": 40.051233, "LONGITUDE": -75.059566, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 37.0, "Total Spend": 9900.0, "Total Transactions": 840.0, "Total Customers": 412.0, "Median Spend per Transaction": 10.18, "Median Spend per Customer": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.059566, 40.051233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-wx5", "Name": "Rita's Water Ice", "Category": "Specialty Food Stores", "Address": "1712 Franklin Mills Cir", "LATITUDE": 40.092807, "LONGITUDE": -74.961929, "DATE_RANGE_START": 2023, "Total Visits": 52933.0, "Total Visitors": 27304.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 57.0, "Total Spend": 64.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 8.29, "Median Spend per Customer": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -74.961929, 40.092807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pj9-4d9", "Name": "Ron's Caribbean Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "5726 N Broad St", "LATITUDE": 40.040726, "LONGITUDE": -75.144789, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 149.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 8.0, "Total Spend": 70.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 27.75, "Median Spend per Customer": 27.75 }, "geometry": { "type": "Point", "coordinates": [ -75.144789, 40.040726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-hdv", "Name": "The Juice Room", "Category": "Restaurants and Other Eating Places", "Address": "7127 Germantown Ave", "LATITUDE": 40.0592, "LONGITUDE": -75.189995, "DATE_RANGE_START": 2023, "Total Visits": 128.0, "Total Visitors": 96.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 92.0, "Total Spend": 68.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 9.95, "Median Spend per Customer": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.189995, 40.0592 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-ty9", "Name": "Shane Confectionery", "Category": "Specialty Food Stores", "Address": "110 Market St", "LATITUDE": 39.949497, "LONGITUDE": -75.14262, "DATE_RANGE_START": 2023, "Total Visits": 1420.0, "Total Visitors": 947.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 212.0, "Total Spend": 2170.0, "Total Transactions": 83.0, "Total Customers": 81.0, "Median Spend per Transaction": 15.25, "Median Spend per Customer": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14262, 39.949497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "Name": "Rieker's Prime Meats", "Category": "Specialty Food Stores", "Address": "7979 Oxford Ave", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 203.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 7.0, "Total Spend": 1241.0, "Total Transactions": 29.0, "Total Customers": 19.0, "Median Spend per Transaction": 39.48, "Median Spend per Customer": 60.55 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6363 Frankford Ave", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 219.0, "POI_CBG": 421010320003.0, "Median Dwell Time": 8.0, "Total Spend": 7185.0, "Total Transactions": 314.0, "Total Customers": 184.0, "Median Spend per Transaction": 17.66, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2601 Penrose Ave", "LATITUDE": 39.907731, "LONGITUDE": -75.189099, "DATE_RANGE_START": 2023, "Total Visits": 567.0, "Total Visitors": 440.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 6.0, "Total Spend": 2032.0, "Total Transactions": 83.0, "Total Customers": 55.0, "Median Spend per Transaction": 18.03, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189099, 39.907731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5680 Rising Sun Ave", "LATITUDE": 40.039108, "LONGITUDE": -75.110396, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 5.0, "Total Spend": 2230.0, "Total Transactions": 75.0, "Total Customers": 48.0, "Median Spend per Transaction": 28.05, "Median Spend per Customer": 41.02 }, "geometry": { "type": "Point", "coordinates": [ -75.110396, 40.039108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-2kz", "Name": "Skechers", "Category": "Shoe Stores", "Address": "9161 Roosevelt Blvd # 17", "LATITUDE": 40.074571, "LONGITUDE": -75.032796, "DATE_RANGE_START": 2023, "Total Visits": 362.0, "Total Visitors": 313.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 31.0, "Total Spend": 536.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 83.23, "Median Spend per Customer": 83.23 }, "geometry": { "type": "Point", "coordinates": [ -75.032796, 40.074571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "Name": "Jack B Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "748 S 4th St", "LATITUDE": 39.939139, "LONGITUDE": -75.149852, "DATE_RANGE_START": 2023, "Total Visits": 550.0, "Total Visitors": 297.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 119.0, "Total Spend": 2458.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 103.1, "Median Spend per Customer": 86.4 }, "geometry": { "type": "Point", "coordinates": [ -75.149852, 39.939139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "Name": "Tommy Hilfiger", "Category": "Clothing Stores", "Address": "1800 Franklin Mills Cir", "LATITUDE": 40.089955, "LONGITUDE": -74.96205, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 6.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 24.0, "Total Spend": 2118.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 53.98, "Median Spend per Customer": 53.98 }, "geometry": { "type": "Point", "coordinates": [ -74.96205, 40.089955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "Name": "Golden Nugget Jewelers III", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "800 Chestnut St", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 68010.0, "Total Transactions": 23.0, "Total Customers": 21.0, "Median Spend per Transaction": 400.0, "Median Spend per Customer": 400.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-jjv", "Name": "Pastrami & Things", "Category": "Restaurants and Other Eating Places", "Address": "1234 Market St Ste LL1", "LATITUDE": 39.952406, "LONGITUDE": -75.170418, "DATE_RANGE_START": 2023, "Total Visits": 258.0, "Total Visitors": 228.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 1292.0, "Total Transactions": 188.0, "Total Customers": 81.0, "Median Spend per Transaction": 6.88, "Median Spend per Customer": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.170418, 39.952406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmd-vj9", "Name": "Nature's Gallery Florist", "Category": "Florists", "Address": "2124 Walnut St", "LATITUDE": 39.950794, "LONGITUDE": -75.177008, "DATE_RANGE_START": 2023, "Total Visits": 1017.0, "Total Visitors": 623.0, "POI_CBG": 421010008031.0, "Median Dwell Time": 79.0, "Total Spend": 624.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 38.34 }, "geometry": { "type": "Point", "coordinates": [ -75.177008, 39.950794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "331 S 22nd St", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 257.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 4.0, "Total Spend": 752.0, "Total Transactions": 49.0, "Total Customers": 45.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p85-2hq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8298 Bustleton Ave", "LATITUDE": 40.066275, "LONGITUDE": -75.051537, "DATE_RANGE_START": 2023, "Total Visits": 575.0, "Total Visitors": 370.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 14.0, "Total Spend": 677.0, "Total Transactions": 91.0, "Total Customers": 46.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 8.19 }, "geometry": { "type": "Point", "coordinates": [ -75.051537, 40.066275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phn-qmk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "8235 Stenton Ave", "LATITUDE": 40.068844, "LONGITUDE": -75.18088, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 122.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 12.0, "Total Spend": 4537.0, "Total Transactions": 219.0, "Total Customers": 153.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 20.28 }, "geometry": { "type": "Point", "coordinates": [ -75.18088, 40.068844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7x-5zz", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2118 Cottman Ave Ste 4", "LATITUDE": 40.048987, "LONGITUDE": -75.063458, "DATE_RANGE_START": 2023, "Total Visits": 387.0, "Total Visitors": 352.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 5.0, "Total Spend": 780.0, "Total Transactions": 34.0, "Total Customers": 28.0, "Median Spend per Transaction": 20.82, "Median Spend per Customer": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.063458, 40.048987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p7w-gc5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7965 Verree Rd", "LATITUDE": 40.072432, "LONGITUDE": -75.075727, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 4.0, "Total Spend": 826.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 38.84, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.075727, 40.072432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-zfz", "Name": "Ontario Street Comics", "Category": "Book Stores and News Dealers", "Address": "2235 E Ontario St", "LATITUDE": 39.993208, "LONGITUDE": -75.103007, "DATE_RANGE_START": 2023, "Total Visits": 426.0, "Total Visitors": 395.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 12.0, "Total Spend": 164.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.103007, 39.993208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5051 Wissahickon Ave", "LATITUDE": 40.019938, "LONGITUDE": -75.174444, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010243002.0, "Median Dwell Time": 6.0, "Total Spend": 1838.0, "Total Transactions": 205.0, "Total Customers": 124.0, "Median Spend per Transaction": 7.51, "Median Spend per Customer": 10.32 }, "geometry": { "type": "Point", "coordinates": [ -75.174444, 40.019938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-td9", "Name": "Jamaica Way", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave Ste 2930", "LATITUDE": 39.90332, "LONGITUDE": -75.240643, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 210.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 10.0, "Total Spend": 1049.0, "Total Transactions": 55.0, "Total Customers": 43.0, "Median Spend per Transaction": 17.19, "Median Spend per Customer": 20.31 }, "geometry": { "type": "Point", "coordinates": [ -75.240643, 39.90332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3670 Richmond St", "LATITUDE": 39.989246, "LONGITUDE": -75.090206, "DATE_RANGE_START": 2023, "Total Visits": 68.0, "Total Visitors": 39.0, "POI_CBG": 421010379006.0, "Median Dwell Time": 10.0, "Total Spend": 1836.0, "Total Transactions": 85.0, "Total Customers": 49.0, "Median Spend per Transaction": 15.93, "Median Spend per Customer": 30.6 }, "geometry": { "type": "Point", "coordinates": [ -75.090206, 39.989246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5700 Roosevelt Blvd", "LATITUDE": 40.032452, "LONGITUDE": -75.085235, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 17.0, "Total Spend": 2351.0, "Total Transactions": 75.0, "Total Customers": 45.0, "Median Spend per Transaction": 22.38, "Median Spend per Customer": 33.3 }, "geometry": { "type": "Point", "coordinates": [ -75.085235, 40.032452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914496, "LONGITUDE": -75.156757, "DATE_RANGE_START": 2023, "Total Visits": 185.0, "Total Visitors": 185.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 27.0, "Total Spend": 959.0, "Total Transactions": 51.0, "Total Customers": 43.0, "Median Spend per Transaction": 14.94, "Median Spend per Customer": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156757, 39.914496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5601 Lancaster Ave", "LATITUDE": 39.980218, "LONGITUDE": -75.235063, "DATE_RANGE_START": 2023, "Total Visits": 40.0, "Total Visitors": 34.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 6.0, "Total Spend": 3464.0, "Total Transactions": 203.0, "Total Customers": 167.0, "Median Spend per Transaction": 14.34, "Median Spend per Customer": 16.34 }, "geometry": { "type": "Point", "coordinates": [ -75.235063, 39.980218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "Name": "Blue Corn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "940 S 9th St", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 406.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 12.0, "Total Spend": 1224.0, "Total Transactions": 19.0, "Total Customers": 13.0, "Median Spend per Transaction": 47.52, "Median Spend per Customer": 58.54 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pm6-hbk", "Name": "La Canasta Mexican Food", "Category": "Restaurants and Other Eating Places", "Address": "2341 S 4th St", "LATITUDE": 39.91868, "LONGITUDE": -75.15377, "DATE_RANGE_START": 2023, "Total Visits": 372.0, "Total Visitors": 372.0, "POI_CBG": 421010042024.0, "Median Dwell Time": 1.0, "Total Spend": 623.0, "Total Transactions": 15.0, "Total Customers": 14.0, "Median Spend per Transaction": 43.01, "Median Spend per Customer": 43.01 }, "geometry": { "type": "Point", "coordinates": [ -75.15377, 39.91868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgd-z9f", "Name": "Bombay Dhabba Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956756, "LONGITUDE": -75.194135, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 15.0, "Total Spend": 707.0, "Total Transactions": 35.0, "Total Customers": 31.0, "Median Spend per Transaction": 13.92, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.194135, 39.956756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "Name": "Spring Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3739 Lancaster Ave", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 137.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 78.0, "Total Spend": 2047.0, "Total Transactions": 101.0, "Total Customers": 70.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 24.87 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3359 Kensington Ave", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2023, "Total Visits": 495.0, "Total Visitors": 318.0, "POI_CBG": 421010188007.0, "Median Dwell Time": 7.0, "Total Spend": 183.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-229@628-pmb-xnq", "Name": "Surreal Creamery", "Category": "Restaurants and Other Eating Places", "Address": "1016 Race St", "LATITUDE": 39.955246, "LONGITUDE": -75.156456, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 5338.0, "Total Transactions": 343.0, "Total Customers": 276.0, "Median Spend per Transaction": 12.3, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.156456, 39.955246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p85-p7q", "Name": "Kim's General Store", "Category": "Other Miscellaneous Store Retailers", "Address": "2849 Holme Ave", "LATITUDE": 40.057219, "LONGITUDE": -75.030765, "DATE_RANGE_START": 2023, "Total Visits": 990.0, "Total Visitors": 750.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 28.0, "Total Spend": 459.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.030765, 40.057219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "Name": "Jo-Ann Fabric and Craft Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2023, "Total Visits": 591.0, "Total Visitors": 545.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 21.0, "Total Spend": 10011.0, "Total Transactions": 268.0, "Total Customers": 148.0, "Median Spend per Transaction": 39.05, "Median Spend per Customer": 29.06 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5719 Oxford Ave", "LATITUDE": 40.033212, "LONGITUDE": -75.084726, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 111.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 34.0, "Total Spend": 1561.0, "Total Transactions": 148.0, "Total Customers": 95.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 10.24 }, "geometry": { "type": "Point", "coordinates": [ -75.084726, 40.033212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.03106, "LONGITUDE": -75.09906, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 36.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 21.0, "Total Spend": 7701.0, "Total Transactions": 262.0, "Total Customers": 133.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 20.09 }, "geometry": { "type": "Point", "coordinates": [ -75.09906, 40.03106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2131 South St", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2023, "Total Visits": 297.0, "Total Visitors": 165.0, "POI_CBG": 421010012013.0, "Median Dwell Time": 4.0, "Total Spend": 36245.0, "Total Transactions": 3334.0, "Total Customers": 1479.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "Name": "Monde Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "100 S 21st St", "LATITUDE": 39.952036, "LONGITUDE": -75.175759, "DATE_RANGE_START": 2023, "Total Visits": 616.0, "Total Visitors": 382.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 17.0, "Total Spend": 13304.0, "Total Transactions": 957.0, "Total Customers": 378.0, "Median Spend per Transaction": 9.81, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.175759, 39.952036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pfx-s89", "Name": "Eagle Mart", "Category": "Gasoline Stations", "Address": "5125 Umbria St", "LATITUDE": 40.038436, "LONGITUDE": -75.239356, "DATE_RANGE_START": 2023, "Total Visits": 263.0, "Total Visitors": 263.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 291.0, "Total Spend": 1620.0, "Total Transactions": 89.0, "Total Customers": 69.0, "Median Spend per Transaction": 14.6, "Median Spend per Customer": 17.25 }, "geometry": { "type": "Point", "coordinates": [ -75.239356, 40.038436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmd-tvz", "Name": "The Indie Shelf", "Category": "Health and Personal Care Stores", "Address": "2247 Grays Ferry Ave", "LATITUDE": 39.944748, "LONGITUDE": -75.180225, "DATE_RANGE_START": 2023, "Total Visits": 478.0, "Total Visitors": 370.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 1.0, "Total Spend": 184.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.180225, 39.944748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "Name": "Express Fuel", "Category": "Gasoline Stations", "Address": "5201 Oxford Ave", "LATITUDE": 40.026572, "LONGITUDE": -75.084707, "DATE_RANGE_START": 2023, "Total Visits": 287.0, "Total Visitors": 215.0, "POI_CBG": 421010302004.0, "Median Dwell Time": 2.0, "Total Spend": 14932.0, "Total Transactions": 744.0, "Total Customers": 332.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 29.6 }, "geometry": { "type": "Point", "coordinates": [ -75.084707, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "Name": "Shoe Carnival", "Category": "Shoe Stores", "Address": "2135 Cottman Ave", "LATITUDE": 40.049912, "LONGITUDE": -75.06237, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 22.0, "Total Spend": 8732.0, "Total Transactions": 142.0, "Total Customers": 129.0, "Median Spend per Transaction": 54.98, "Median Spend per Customer": 57.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06237, 40.049912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1700 Washington Ave", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2023, "Total Visits": 319.0, "Total Visitors": 274.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 9.0, "Total Spend": 1457.0, "Total Transactions": 133.0, "Total Customers": 88.0, "Median Spend per Transaction": 7.14, "Median Spend per Customer": 10.85 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1529 Chestnut St", "LATITUDE": 39.951517, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2023, "Total Visits": 8987.0, "Total Visitors": 5624.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 13.0, "Total Spend": 12623.0, "Total Transactions": 939.0, "Total Customers": 753.0, "Median Spend per Transaction": 9.34, "Median Spend per Customer": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.951517 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "Name": "El Balconcito", "Category": "Restaurants and Other Eating Places", "Address": "658 E Godfrey Ave", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 184.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 59.0, "Total Spend": 146.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 58.16, "Median Spend per Customer": 58.16 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "Name": "Vapordelphia", "Category": "Other Miscellaneous Store Retailers", "Address": "603 S 9th St", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2023, "Total Visits": 857.0, "Total Visitors": 678.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 2.0, "Total Spend": 726.0, "Total Transactions": 29.0, "Total Customers": 21.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "8515 Germantown Ave", "LATITUDE": 40.076442, "LONGITUDE": -75.206646, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 21.0, "Total Spend": 30325.0, "Total Transactions": 343.0, "Total Customers": 233.0, "Median Spend per Transaction": 9.13, "Median Spend per Customer": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -75.206646, 40.076442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6758 Ridge Ave", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2023, "Total Visits": 426.0, "Total Visitors": 299.0, "POI_CBG": 421010215001.0, "Median Dwell Time": 14.0, "Total Spend": 7126.0, "Total Transactions": 175.0, "Total Customers": 143.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 23.9 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6401 Harbison Ave", "LATITUDE": 40.032189, "LONGITUDE": -75.063077, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 3.0, "Total Spend": 3910.0, "Total Transactions": 223.0, "Total Customers": 114.0, "Median Spend per Transaction": 13.32, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063077, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-6rk", "Name": "The Bishop's Collar", "Category": "Restaurants and Other Eating Places", "Address": "2349 Fairmount Ave", "LATITUDE": 39.967569, "LONGITUDE": -75.176669, "DATE_RANGE_START": 2023, "Total Visits": 549.0, "Total Visitors": 293.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 95.0, "Total Spend": 9930.0, "Total Transactions": 227.0, "Total Customers": 162.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176669, 39.967569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "Name": "Penang", "Category": "Restaurants and Other Eating Places", "Address": "117 N 10th St", "LATITUDE": 39.954054, "LONGITUDE": -75.155967, "DATE_RANGE_START": 2023, "Total Visits": 4224.0, "Total Visitors": 2510.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 36.0, "Total Spend": 9482.0, "Total Transactions": 138.0, "Total Customers": 132.0, "Median Spend per Transaction": 60.58, "Median Spend per Customer": 61.88 }, "geometry": { "type": "Point", "coordinates": [ -75.155967, 39.954054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "Name": "Tampopo", "Category": "Restaurants and Other Eating Places", "Address": "269 S 44th St", "LATITUDE": 39.953019, "LONGITUDE": -75.210337, "DATE_RANGE_START": 2023, "Total Visits": 623.0, "Total Visitors": 368.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 18.0, "Total Spend": 429.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.210337, 39.953019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-qmk", "Name": "Yeeroh", "Category": "Restaurants and Other Eating Places", "Address": "1412 South St", "LATITUDE": 39.943614, "LONGITUDE": -75.166117, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 2.0, "Total Spend": 890.0, "Total Transactions": 54.0, "Total Customers": 49.0, "Median Spend per Transaction": 14.12, "Median Spend per Customer": 16.84 }, "geometry": { "type": "Point", "coordinates": [ -75.166117, 39.943614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j7q", "Name": "The Dandelion", "Category": "Restaurants and Other Eating Places", "Address": "124 S 18th St", "LATITUDE": 39.951011, "LONGITUDE": -75.170702, "DATE_RANGE_START": 2023, "Total Visits": 293.0, "Total Visitors": 277.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 33.0, "Total Spend": 1244.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 53.9, "Median Spend per Customer": 53.9 }, "geometry": { "type": "Point", "coordinates": [ -75.170702, 39.951011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "942 Race St", "LATITUDE": 39.955168, "LONGITUDE": -75.155663, "DATE_RANGE_START": 2023, "Total Visits": 845.0, "Total Visitors": 686.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 4.0, "Total Spend": 820.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 42.57, "Median Spend per Customer": 51.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155663, 39.955168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@63s-dvy-k9f", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "3714 Spruce St", "LATITUDE": 39.951004, "LONGITUDE": -75.198123, "DATE_RANGE_START": 2023, "Total Visits": 1095.0, "Total Visitors": 485.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 49.0, "Total Spend": 5735.0, "Total Transactions": 278.0, "Total Customers": 212.0, "Median Spend per Transaction": 19.63, "Median Spend per Customer": 21.04 }, "geometry": { "type": "Point", "coordinates": [ -75.198123, 39.951004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-3nq", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "399 Franklin Mills Cir", "LATITUDE": 40.084019, "LONGITUDE": -74.96509, "DATE_RANGE_START": 2023, "Total Visits": 689.0, "Total Visitors": 530.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 23.0, "Total Spend": 118.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 13.43, "Median Spend per Customer": 13.43 }, "geometry": { "type": "Point", "coordinates": [ -74.96509, 40.084019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pgf-73q", "Name": "Great Taste", "Category": "Restaurants and Other Eating Places", "Address": "4101 Lancaster Ave", "LATITUDE": 39.965419, "LONGITUDE": -75.205676, "DATE_RANGE_START": 2023, "Total Visits": 475.0, "Total Visitors": 289.0, "POI_CBG": 421010107002.0, "Median Dwell Time": 6.0, "Total Spend": 549.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 42.5, "Median Spend per Customer": 83.5 }, "geometry": { "type": "Point", "coordinates": [ -75.205676, 39.965419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "320 W Oregon Ave Ste 1", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2023, "Total Visits": 665.0, "Total Visitors": 461.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 19.0, "Total Spend": 1813.0, "Total Transactions": 53.0, "Total Customers": 50.0, "Median Spend per Transaction": 30.48, "Median Spend per Customer": 31.26 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "Name": "Fairfield Inn & Suites by Marriott", "Category": "Traveler Accommodation", "Address": "8800 Bartram Ave", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2023, "Total Visits": 1015.0, "Total Visitors": 601.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 229.0, "Total Spend": 5689.0, "Total Transactions": 43.0, "Total Customers": 38.0, "Median Spend per Transaction": 148.23, "Median Spend per Customer": 164.37 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "Name": "Big Ben Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7266 Rising Sun Ave", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 130.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 20.0, "Total Spend": 5110.0, "Total Transactions": 177.0, "Total Customers": 106.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 33.15 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "Name": "Tuna Bar", "Category": "Restaurants and Other Eating Places", "Address": "205 Race St", "LATITUDE": 39.954039, "LONGITUDE": -75.143175, "DATE_RANGE_START": 2023, "Total Visits": 292.0, "Total Visitors": 251.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 1.0, "Total Spend": 18650.0, "Total Transactions": 204.0, "Total Customers": 170.0, "Median Spend per Transaction": 76.24, "Median Spend per Customer": 89.6 }, "geometry": { "type": "Point", "coordinates": [ -75.143175, 39.954039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "7700 City Ave", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2023, "Total Visits": 505.0, "Total Visitors": 471.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 5.0, "Total Spend": 242.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 16.7, "Median Spend per Customer": 16.7 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-ks5", "Name": "Sharetea", "Category": "Restaurants and Other Eating Places", "Address": "600 Washington Ave Unit 5", "LATITUDE": 39.934458, "LONGITUDE": -75.154631, "DATE_RANGE_START": 2023, "Total Visits": 1826.0, "Total Visitors": 1516.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 13.0, "Total Spend": 452.0, "Total Transactions": 41.0, "Total Customers": 36.0, "Median Spend per Transaction": 7.29, "Median Spend per Customer": 7.47 }, "geometry": { "type": "Point", "coordinates": [ -75.154631, 39.934458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "Name": "Time Out Sports Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3709 Schuyler St", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 91.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 37.0, "Total Spend": 1579.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 43.0, "Median Spend per Customer": 48.28 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "9000 Roosevelt Blvd", "LATITUDE": 40.075107, "LONGITUDE": -75.034947, "DATE_RANGE_START": 2023, "Total Visits": 495.0, "Total Visitors": 400.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 5.0, "Total Spend": 2038.0, "Total Transactions": 76.0, "Total Customers": 35.0, "Median Spend per Transaction": 21.94, "Median Spend per Customer": 37.91 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.075107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pjf-kvf", "Name": "Hideaway Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "8232 Germantown Ave", "LATITUDE": 40.076825, "LONGITUDE": -75.208128, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 132.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 1.0, "Total Spend": 1497.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 25.89, "Median Spend per Customer": 25.89 }, "geometry": { "type": "Point", "coordinates": [ -75.208128, 40.076825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7b-qpv", "Name": "Alfreds Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "9218 Ashton Rd", "LATITUDE": 40.06438, "LONGITUDE": -75.021323, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 183.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 1085.0, "Total Transactions": 39.0, "Total Customers": 10.0, "Median Spend per Transaction": 27.01, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.021323, 40.06438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-phq-rp9", "Name": "Liberty Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1926 E Washington Ln", "LATITUDE": 40.066348, "LONGITUDE": -75.158578, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 86.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 3.0, "Total Spend": 132.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158578, 40.066348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgf-d5f", "Name": "Dollar Warehouse", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4007 Market St", "LATITUDE": 39.957461, "LONGITUDE": -75.202195, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 154.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 4.0, "Total Spend": 34.0, "Total Transactions": 6.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.79, "Median Spend per Customer": 13.52 }, "geometry": { "type": "Point", "coordinates": [ -75.202195, 39.957461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "Name": "Charlie Was a Sinner", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "131 S 13th St", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 237.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 34.0, "Total Spend": 12035.0, "Total Transactions": 160.0, "Total Customers": 152.0, "Median Spend per Transaction": 62.8, "Median Spend per Customer": 70.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "Name": "Wah Gi Wah", "Category": "Restaurants and Other Eating Places", "Address": "4447 Chestnut St", "LATITUDE": 39.956891, "LONGITUDE": -75.211198, "DATE_RANGE_START": 2023, "Total Visits": 529.0, "Total Visitors": 406.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 48.0, "Total Spend": 1608.0, "Total Transactions": 19.0, "Total Customers": 18.0, "Median Spend per Transaction": 56.14, "Median Spend per Customer": 56.14 }, "geometry": { "type": "Point", "coordinates": [ -75.211198, 39.956891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "Name": "Mariposa Food Co op", "Category": "Grocery Stores", "Address": "4824 Baltimore Ave", "LATITUDE": 39.947985, "LONGITUDE": -75.220614, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 83.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 6.0, "Total Spend": 24280.0, "Total Transactions": 807.0, "Total Customers": 375.0, "Median Spend per Transaction": 20.87, "Median Spend per Customer": 35.49 }, "geometry": { "type": "Point", "coordinates": [ -75.220614, 39.947985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp5-qxq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "338 E Allegheny Ave", "LATITUDE": 39.997243, "LONGITUDE": -75.123704, "DATE_RANGE_START": 2023, "Total Visits": 832.0, "Total Visitors": 665.0, "POI_CBG": 421010177025.0, "Median Dwell Time": 13.0, "Total Spend": 1282.0, "Total Transactions": 75.0, "Total Customers": 65.0, "Median Spend per Transaction": 12.28, "Median Spend per Customer": 14.34 }, "geometry": { "type": "Point", "coordinates": [ -75.123704, 39.997243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "Name": "Chestnut Hill Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "8138 Germantown Ave", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2023, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010231001.0, "Median Dwell Time": null, "Total Spend": 5523.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 288.3, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8445 Frankford Ave Ste C", "LATITUDE": 40.043786, "LONGITUDE": -75.017617, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 4.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 5.0, "Total Spend": 313.0, "Total Transactions": 25.0, "Total Customers": 16.0, "Median Spend per Transaction": 10.34, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.017617, 40.043786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9s-j9z", "Name": "Room Service 360", "Category": "Furniture Stores", "Address": "2031 Byberry Rd", "LATITUDE": 40.111386, "LONGITUDE": -75.002818, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 130.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 143.0, "Total Spend": 3301.0, "Total Transactions": 26.0, "Total Customers": 20.0, "Median Spend per Transaction": 28.8, "Median Spend per Customer": 27.7 }, "geometry": { "type": "Point", "coordinates": [ -75.002818, 40.111386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "Name": "Ibis Lounge", "Category": "Restaurants and Other Eating Places", "Address": "5420 Lancaster Ave", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010113002.0, "Median Dwell Time": 7.0, "Total Spend": 1082.0, "Total Transactions": 51.0, "Total Customers": 25.0, "Median Spend per Transaction": 19.48, "Median Spend per Customer": 20.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-t7q", "Name": "Vetri Cucina", "Category": "Restaurants and Other Eating Places", "Address": "1312 Spruce St", "LATITUDE": 39.946687, "LONGITUDE": -75.163203, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 189.0, "POI_CBG": 421010011014.0, "Median Dwell Time": 1.0, "Total Spend": 1461.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 356.4, "Median Spend per Customer": 356.4 }, "geometry": { "type": "Point", "coordinates": [ -75.163203, 39.946687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2023, "Total Visits": 416.0, "Total Visitors": 230.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 21.0, "Total Spend": 594.0, "Total Transactions": 46.0, "Total Customers": 28.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23p@63s-dw9-7nq", "Name": "InMotion", "Category": "Electronics and Appliance Stores", "Address": "8500 Essington Ave", "LATITUDE": 39.87912, "LONGITUDE": -75.239453, "DATE_RANGE_START": 2023, "Total Visits": 29.0, "Total Visitors": 28.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 7273.0, "Total Transactions": 100.0, "Total Customers": 96.0, "Median Spend per Transaction": 53.99, "Median Spend per Customer": 53.99 }, "geometry": { "type": "Point", "coordinates": [ -75.239453, 39.87912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p8v-8y9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "12301 Knights Rd", "LATITUDE": 40.088382, "LONGITUDE": -74.969584, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 6.0, "Total Spend": 111.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 10.78, "Median Spend per Customer": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -74.969584, 40.088382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "Name": "Ruckus Gallery", "Category": "Other Miscellaneous Store Retailers", "Address": "27 N 2nd St", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2023, "Total Visits": 535.0, "Total Visitors": 455.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 5718.0, "Total Transactions": 142.0, "Total Customers": 96.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 35.72 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St Ste 128", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2023, "Total Visits": 362.0, "Total Visitors": 328.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 2.0, "Total Spend": 8232.0, "Total Transactions": 661.0, "Total Customers": 395.0, "Median Spend per Transaction": 11.13, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-7wk", "Name": "Boba King", "Category": "Restaurants and Other Eating Places", "Address": "3200 Chestnut St", "LATITUDE": 39.95355, "LONGITUDE": -75.18835, "DATE_RANGE_START": 2023, "Total Visits": 927.0, "Total Visitors": 446.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 57.0, "Total Spend": 5101.0, "Total Transactions": 525.0, "Total Customers": 417.0, "Median Spend per Transaction": 7.61, "Median Spend per Customer": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.18835, 39.95355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1425 Locust St", "LATITUDE": 39.948526, "LONGITUDE": -75.166042, "DATE_RANGE_START": 2023, "Total Visits": 782.0, "Total Visitors": 494.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 8.0, "Total Spend": 9659.0, "Total Transactions": 1569.0, "Total Customers": 440.0, "Median Spend per Transaction": 5.16, "Median Spend per Customer": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -75.166042, 39.948526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pgc-hh5", "Name": "Leidy's Food Market", "Category": "Grocery Stores", "Address": "4178 Leidy Ave", "LATITUDE": 39.974749, "LONGITUDE": -75.209918, "DATE_RANGE_START": 2023, "Total Visits": 65.0, "Total Visitors": 38.0, "POI_CBG": 421010110002.0, "Median Dwell Time": 420.0, "Total Spend": 464.0, "Total Transactions": 49.0, "Total Customers": 30.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.209918, 39.974749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "3899 Aramingo Ave", "LATITUDE": 39.996691, "LONGITUDE": -75.089542, "DATE_RANGE_START": 2023, "Total Visits": 349.0, "Total Visitors": 302.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 15.0, "Total Spend": 672.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 65.68, "Median Spend per Customer": 84.04 }, "geometry": { "type": "Point", "coordinates": [ -75.089542, 39.996691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993418, "LONGITUDE": -75.144072, "DATE_RANGE_START": 2023, "Total Visits": 341.0, "Total Visitors": 182.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 17.0, "Total Spend": 699.0, "Total Transactions": 28.0, "Total Customers": 19.0, "Median Spend per Transaction": 9.49, "Median Spend per Customer": 15.87 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.993418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-jjv", "Name": "Copabanana", "Category": "Restaurants and Other Eating Places", "Address": "4000 Spruce St", "LATITUDE": 39.951555, "LONGITUDE": -75.203266, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 205.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 36.0, "Total Spend": 125.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 49.91, "Median Spend per Customer": 49.91 }, "geometry": { "type": "Point", "coordinates": [ -75.203266, 39.951555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "501 W Lehigh Ave", "LATITUDE": 39.992372, "LONGITUDE": -75.140437, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 3.0, "Total Spend": 1580.0, "Total Transactions": 70.0, "Total Customers": 41.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.140437, 39.992372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "Name": "George's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 W Girard Ave", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2023, "Total Visits": 169.0, "Total Visitors": 148.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 2.0, "Total Spend": 1803.0, "Total Transactions": 96.0, "Total Customers": 64.0, "Median Spend per Transaction": 16.3, "Median Spend per Customer": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "Name": "China Gate", "Category": "Restaurants and Other Eating Places", "Address": "3822 Morrell Ave", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 331.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 13.0, "Total Spend": 1568.0, "Total Transactions": 69.0, "Total Customers": 45.0, "Median Spend per Transaction": 19.09, "Median Spend per Customer": 32.05 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-b8v", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "8130 Roosevelt Blvd", "LATITUDE": 40.059227, "LONGITUDE": -75.045575, "DATE_RANGE_START": 2023, "Total Visits": 353.0, "Total Visitors": 298.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 7.0, "Total Spend": 5333.0, "Total Transactions": 214.0, "Total Customers": 130.0, "Median Spend per Transaction": 16.39, "Median Spend per Customer": 20.95 }, "geometry": { "type": "Point", "coordinates": [ -75.045575, 40.059227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "Name": "China Royal", "Category": "Restaurants and Other Eating Places", "Address": "2620 Rhawn St", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 84.0, "POI_CBG": 421010333003.0, "Median Dwell Time": null, "Total Spend": 796.0, "Total Transactions": 28.0, "Total Customers": 23.0, "Median Spend per Transaction": 27.2, "Median Spend per Customer": 26.85 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "26j-222@628-pgb-6x5", "Name": "The Black Taxi", "Category": "Restaurants and Other Eating Places", "Address": "745 N 25th St # 747", "LATITUDE": 39.968738, "LONGITUDE": -75.178186, "DATE_RANGE_START": 2023, "Total Visits": 79.0, "Total Visitors": 53.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 73.0, "Total Spend": 14908.0, "Total Transactions": 344.0, "Total Customers": 230.0, "Median Spend per Transaction": 34.32, "Median Spend per Customer": 46.76 }, "geometry": { "type": "Point", "coordinates": [ -75.178186, 39.968738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "Name": "Journeys", "Category": "Shoe Stores", "Address": "1559 Franklin Mills Cir", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2023, "Total Visits": 393.0, "Total Visitors": 351.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 1468.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 64.99, "Median Spend per Customer": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-kj9", "Name": "The Pleasure Chest", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "2039 Walnut St", "LATITUDE": 39.950864, "LONGITUDE": -75.175215, "DATE_RANGE_START": 2023, "Total Visits": 105.0, "Total Visitors": 98.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 109.0, "Total Spend": 918.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 40.93, "Median Spend per Customer": 40.93 }, "geometry": { "type": "Point", "coordinates": [ -75.175215, 39.950864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmb-kj9", "Name": "Oui", "Category": "Restaurants and Other Eating Places", "Address": "160 N 3rd St", "LATITUDE": 39.953818, "LONGITUDE": -75.144977, "DATE_RANGE_START": 2023, "Total Visits": 576.0, "Total Visitors": 349.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 4.0, "Total Spend": 640.0, "Total Transactions": 23.0, "Total Customers": 19.0, "Median Spend per Transaction": 24.84, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144977, 39.953818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2501 S 70th St", "LATITUDE": 39.917009, "LONGITUDE": -75.236625, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 24.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 32.0, "Total Spend": 11659.0, "Total Transactions": 258.0, "Total Customers": 165.0, "Median Spend per Transaction": 28.33, "Median Spend per Customer": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.236625, 39.917009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2027 W Oregon Ave", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2023, "Total Visits": 1139.0, "Total Visitors": 762.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 13.0, "Total Spend": 898.0, "Total Transactions": 36.0, "Total Customers": 25.0, "Median Spend per Transaction": 14.85, "Median Spend per Customer": 22.83 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "Name": "CAVA", "Category": "Restaurants and Other Eating Places", "Address": "1713 Chestnut St", "LATITUDE": 39.95176, "LONGITUDE": -75.169268, "DATE_RANGE_START": 2023, "Total Visits": 29.0, "Total Visitors": 24.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 4.0, "Total Spend": 17060.0, "Total Transactions": 988.0, "Total Customers": 803.0, "Median Spend per Transaction": 14.96, "Median Spend per Customer": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.169268, 39.95176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-n5z", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3901 Walnut St", "LATITUDE": 39.954029, "LONGITUDE": -75.200316, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 4.0, "Total Spend": 6210.0, "Total Transactions": 666.0, "Total Customers": 388.0, "Median Spend per Transaction": 7.21, "Median Spend per Customer": 10.29 }, "geometry": { "type": "Point", "coordinates": [ -75.200316, 39.954029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "Name": "Petrovsky Market", "Category": "Specialty Food Stores", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2023, "Total Visits": 571.0, "Total Visitors": 377.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 6.0, "Total Spend": 28407.0, "Total Transactions": 706.0, "Total Customers": 353.0, "Median Spend per Transaction": 28.06, "Median Spend per Customer": 47.87 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "Name": "Philadelphia Bikesmith", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1822 Spring Garden St", "LATITUDE": 39.962887, "LONGITUDE": -75.169323, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 16.0, "Total Spend": 6745.0, "Total Transactions": 53.0, "Total Customers": 44.0, "Median Spend per Transaction": 66.43, "Median Spend per Customer": 76.04 }, "geometry": { "type": "Point", "coordinates": [ -75.169323, 39.962887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7x-4n5", "Name": "Shoe Factory", "Category": "Shoe Stores", "Address": "7000 Castor Ave", "LATITUDE": 40.047111, "LONGITUDE": -75.070347, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 179.0, "POI_CBG": 421010310003.0, "Median Dwell Time": 5.0, "Total Spend": 6402.0, "Total Transactions": 49.0, "Total Customers": 44.0, "Median Spend per Transaction": 29.97, "Median Spend per Customer": 34.97 }, "geometry": { "type": "Point", "coordinates": [ -75.070347, 40.047111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "Name": "Joe's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "122 S 16th St", "LATITUDE": 39.950331, "LONGITUDE": -75.167579, "DATE_RANGE_START": 2023, "Total Visits": 251.0, "Total Visitors": 197.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 923.0, "Total Transactions": 31.0, "Total Customers": 28.0, "Median Spend per Transaction": 33.76, "Median Spend per Customer": 34.64 }, "geometry": { "type": "Point", "coordinates": [ -75.167579, 39.950331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmd-yvz", "Name": "Billows Electric Supply Company", "Category": "Electronics and Appliance Stores", "Address": "1900 Washington Ave", "LATITUDE": 39.938764, "LONGITUDE": -75.183945, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 137.0, "POI_CBG": 421010020001.0, "Median Dwell Time": 1.0, "Total Spend": 39.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183945, 39.938764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "Name": "Reyes Food Market", "Category": "Grocery Stores", "Address": "6161 Chestnut St", "LATITUDE": 39.961191, "LONGITUDE": -75.244841, "DATE_RANGE_START": 2023, "Total Visits": 148.0, "Total Visitors": 64.0, "POI_CBG": 421010083011.0, "Median Dwell Time": 7.0, "Total Spend": 757.0, "Total Transactions": 90.0, "Total Customers": 36.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 13.24 }, "geometry": { "type": "Point", "coordinates": [ -75.244841, 39.961191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6771 N 5th St", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2023, "Total Visits": 550.0, "Total Visitors": 456.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 5.0, "Total Spend": 92.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 9.18, "Median Spend per Customer": 10.16 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-psq", "Name": "Sherwin-Williams", "Category": "Building Material and Supplies Dealers", "Address": "1001 Washington Ave", "LATITUDE": 39.93725, "LONGITUDE": -75.160107, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 129.0, "Total Spend": 72294.0, "Total Transactions": 608.0, "Total Customers": 278.0, "Median Spend per Transaction": 54.74, "Median Spend per Customer": 74.72 }, "geometry": { "type": "Point", "coordinates": [ -75.160107, 39.93725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "4004 W Girard Ave", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010110003.0, "Median Dwell Time": 41.0, "Total Spend": 203.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 81.0, "Median Spend per Customer": 81.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm8-2kz", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "3300 Grays Ferry Ave", "LATITUDE": 39.939239, "LONGITUDE": -75.197843, "DATE_RANGE_START": 2023, "Total Visits": 408.0, "Total Visitors": 336.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 7.0, "Total Spend": 530.0, "Total Transactions": 16.0, "Total Customers": 15.0, "Median Spend per Transaction": 29.93, "Median Spend per Customer": 27.87 }, "geometry": { "type": "Point", "coordinates": [ -75.197843, 39.939239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "Name": "Mega Mart", "Category": "Grocery Stores", "Address": "6340 Ogontz Ave", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2023, "Total Visits": 450.0, "Total Visitors": 391.0, "POI_CBG": 421010277003.0, "Median Dwell Time": 6.0, "Total Spend": 1602.0, "Total Transactions": 111.0, "Total Customers": 63.0, "Median Spend per Transaction": 8.2, "Median Spend per Customer": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "259 Market St", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2023, "Total Visits": 453.0, "Total Visitors": 336.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 3.0, "Total Spend": 14686.0, "Total Transactions": 986.0, "Total Customers": 535.0, "Median Spend per Transaction": 10.76, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvy-89z", "Name": "Common Beat Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4916 Baltimore Ave", "LATITUDE": 39.947856, "LONGITUDE": -75.222011, "DATE_RANGE_START": 2023, "Total Visits": 116.0, "Total Visitors": 95.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 58.0, "Total Spend": 1912.0, "Total Transactions": 40.0, "Total Customers": 29.0, "Median Spend per Transaction": 34.3, "Median Spend per Customer": 59.4 }, "geometry": { "type": "Point", "coordinates": [ -75.222011, 39.947856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1032 Pine St", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2023, "Total Visits": 680.0, "Total Visitors": 371.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 352.0, "Total Spend": 12625.0, "Total Transactions": 396.0, "Total Customers": 344.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj4-zvf", "Name": "Tony Express", "Category": "Restaurants and Other Eating Places", "Address": "3334 N Broad St", "LATITUDE": 40.004503, "LONGITUDE": -75.152785, "DATE_RANGE_START": 2023, "Total Visits": 392.0, "Total Visitors": 168.0, "POI_CBG": 421010201011.0, "Median Dwell Time": 33.0, "Total Spend": 311.0, "Total Transactions": 33.0, "Total Customers": 20.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.152785, 40.004503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "7129 Frankford Ave", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 127.0, "POI_CBG": 421010326001.0, "Median Dwell Time": null, "Total Spend": 1892.0, "Total Transactions": 61.0, "Total Customers": 58.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 22.94 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "901 S 2nd St", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 159.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 5.0, "Total Spend": 2730.0, "Total Transactions": 197.0, "Total Customers": 163.0, "Median Spend per Transaction": 12.54, "Median Spend per Customer": 14.22 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "Name": "Hadramout", "Category": "Restaurants and Other Eating Places", "Address": "136 S 45th St", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 177.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 11.0, "Total Spend": 1713.0, "Total Transactions": 50.0, "Total Customers": 43.0, "Median Spend per Transaction": 27.84, "Median Spend per Customer": 30.63 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-7yv", "Name": "7 Brothers Supermarket", "Category": "Grocery Stores", "Address": "180 W Duncannon Ave", "LATITUDE": 40.027871, "LONGITUDE": -75.125835, "DATE_RANGE_START": 2023, "Total Visits": 522.0, "Total Visitors": 324.0, "POI_CBG": 421010286001.0, "Median Dwell Time": 28.0, "Total Spend": 16.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.53, "Median Spend per Customer": 6.53 }, "geometry": { "type": "Point", "coordinates": [ -75.125835, 40.027871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7106 Ridge Ave", "LATITUDE": 40.043958, "LONGITUDE": -75.231219, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 9.0, "Total Spend": 434.0, "Total Transactions": 36.0, "Total Customers": 25.0, "Median Spend per Transaction": 6.45, "Median Spend per Customer": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.231219, 40.043958 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2417 Welsh Rd", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2023, "Total Visits": 279.0, "Total Visitors": 152.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 6.0, "Total Spend": 1080.0, "Total Transactions": 65.0, "Total Customers": 36.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "Name": "Spice Finch", "Category": "Restaurants and Other Eating Places", "Address": "220 S 17th St", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2023, "Total Visits": 1680.0, "Total Visitors": 1080.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 154.0, "Total Spend": 9255.0, "Total Transactions": 78.0, "Total Customers": 70.0, "Median Spend per Transaction": 72.7, "Median Spend per Customer": 85.51 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "Name": "LKQ", "Category": "Miscellaneous Durable Goods Merchant Wholesalers", "Address": "3350 S 61st St", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 66.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 472.0, "Total Spend": 3493.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 105.0, "Median Spend per Customer": 118.8 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1046 Market St", "LATITUDE": 39.951375, "LONGITUDE": -75.158237, "DATE_RANGE_START": 2023, "Total Visits": 1859.0, "Total Visitors": 1338.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 15983.0, "Total Transactions": 1073.0, "Total Customers": 769.0, "Median Spend per Transaction": 9.02, "Median Spend per Customer": 12.39 }, "geometry": { "type": "Point", "coordinates": [ -75.158237, 39.951375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-3wk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10950 E Roosevelt Blvd", "LATITUDE": 40.100046, "LONGITUDE": -75.009277, "DATE_RANGE_START": 2023, "Total Visits": 465.0, "Total Visitors": 406.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 3.0, "Total Spend": 542.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 20.29, "Median Spend per Customer": 32.85 }, "geometry": { "type": "Point", "coordinates": [ -75.009277, 40.100046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "Name": "Boss Outlet", "Category": "Clothing Stores", "Address": "1613 Franklin Mills Cir", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2023, "Total Visits": 671.0, "Total Visitors": 571.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 35.0, "Total Spend": 11008.0, "Total Transactions": 170.0, "Total Customers": 152.0, "Median Spend per Transaction": 41.52, "Median Spend per Customer": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2250 S Columbus Blvd", "LATITUDE": 39.917148, "LONGITUDE": -75.139881, "DATE_RANGE_START": 2023, "Total Visits": 665.0, "Total Visitors": 561.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 27.0, "Total Spend": 15922.0, "Total Transactions": 774.0, "Total Customers": 660.0, "Median Spend per Transaction": 15.68, "Median Spend per Customer": 17.32 }, "geometry": { "type": "Point", "coordinates": [ -75.139881, 39.917148 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.029731, "LONGITUDE": -75.099365, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 10.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 47.0, "Total Spend": 1922.0, "Total Transactions": 70.0, "Total Customers": 50.0, "Median Spend per Transaction": 26.74, "Median Spend per Customer": 31.25 }, "geometry": { "type": "Point", "coordinates": [ -75.099365, 40.029731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "145 N 11th St", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 1735.0, "Total Transactions": 80.0, "Total Customers": 74.0, "Median Spend per Transaction": 15.79, "Median Spend per Customer": 18.51 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Spring Garden St", "LATITUDE": 39.962523, "LONGITUDE": -75.163702, "DATE_RANGE_START": 2023, "Total Visits": 1379.0, "Total Visitors": 561.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 125.0, "Total Spend": 6655.0, "Total Transactions": 943.0, "Total Customers": 407.0, "Median Spend per Transaction": 6.14, "Median Spend per Customer": 9.04 }, "geometry": { "type": "Point", "coordinates": [ -75.163702, 39.962523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "Name": "Triangle Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1338 S 10th St", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 162.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 21.0, "Total Spend": 23952.0, "Total Transactions": 486.0, "Total Customers": 377.0, "Median Spend per Transaction": 40.59, "Median Spend per Customer": 46.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-2zf", "Name": "Vapor Funky Monkey", "Category": "Other Miscellaneous Store Retailers", "Address": "4221 Main St", "LATITUDE": 40.024206, "LONGITUDE": -75.220514, "DATE_RANGE_START": 2023, "Total Visits": 715.0, "Total Visitors": 619.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 12.0, "Total Spend": 250.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 33.63, "Median Spend per Customer": 33.63 }, "geometry": { "type": "Point", "coordinates": [ -75.220514, 40.024206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgj-dsq", "Name": "Strictly Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1707 Cecil B Moore Ave", "LATITUDE": 39.979543, "LONGITUDE": -75.162959, "DATE_RANGE_START": 2023, "Total Visits": 403.0, "Total Visitors": 297.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 2.0, "Total Spend": 174.0, "Total Transactions": 9.0, "Total Customers": 6.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162959, 39.979543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pgj-grk", "Name": "Mexican Grill Stand", "Category": "Restaurants and Other Eating Places", "Address": "1736 N 13th St", "LATITUDE": 39.979536, "LONGITUDE": -75.155265, "DATE_RANGE_START": 2023, "Total Visits": 2519.0, "Total Visitors": 1479.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 29.0, "Total Spend": 62.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 24.62, "Median Spend per Customer": 24.62 }, "geometry": { "type": "Point", "coordinates": [ -75.155265, 39.979536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "Name": "Aldo Lamberti Trattoria", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.874826, "LONGITUDE": -75.241153, "DATE_RANGE_START": 2023, "Total Visits": 5609.0, "Total Visitors": 4720.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 18.0, "Total Spend": 50.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.241153, 39.874826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3qz", "Name": "Grand China Buffet", "Category": "Restaurants and Other Eating Places", "Address": "29 Franklin Mills Blvd", "LATITUDE": 40.085175, "LONGITUDE": -74.967524, "DATE_RANGE_START": 2023, "Total Visits": 1210.0, "Total Visitors": 1075.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 41.0, "Total Spend": 11841.0, "Total Transactions": 223.0, "Total Customers": 205.0, "Median Spend per Transaction": 47.04, "Median Spend per Customer": 47.14 }, "geometry": { "type": "Point", "coordinates": [ -74.967524, 40.085175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 10th St", "LATITUDE": 39.931643, "LONGITUDE": -75.160584, "DATE_RANGE_START": 2023, "Total Visits": 971.0, "Total Visitors": 618.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 11.0, "Total Spend": 3359.0, "Total Transactions": 423.0, "Total Customers": 185.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 10.65 }, "geometry": { "type": "Point", "coordinates": [ -75.160584, 39.931643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5fz", "Name": "Pressed Juicery", "Category": "Restaurants and Other Eating Places", "Address": "113 S 13th St", "LATITUDE": 39.950032, "LONGITUDE": -75.161637, "DATE_RANGE_START": 2023, "Total Visits": 683.0, "Total Visitors": 426.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 73.0, "Total Spend": 1462.0, "Total Transactions": 113.0, "Total Customers": 83.0, "Median Spend per Transaction": 7.99, "Median Spend per Customer": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.161637, 39.950032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2200 W Oregon Ave", "LATITUDE": 39.915427, "LONGITUDE": -75.185895, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 9.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 60929.0, "Total Transactions": 547.0, "Total Customers": 278.0, "Median Spend per Transaction": 56.1, "Median Spend per Customer": 76.38 }, "geometry": { "type": "Point", "coordinates": [ -75.185895, 39.915427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5001 Rising Sun Ave", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2023, "Total Visits": 485.0, "Total Visitors": 281.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 5.0, "Total Spend": 6295.0, "Total Transactions": 883.0, "Total Customers": 293.0, "Median Spend per Transaction": 5.09, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-229@628-p85-hkf", "Name": "Bluegrass Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2417 Welsh Rd", "LATITUDE": 40.07142, "LONGITUDE": -75.030648, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 337.0, "Total Transactions": 11.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 72.93 }, "geometry": { "type": "Point", "coordinates": [ -75.030648, 40.07142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "11500 Roosevelt Blvd", "LATITUDE": 40.103472, "LONGITUDE": -75.007161, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 15.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 461.0, "Total Spend": 11316.0, "Total Transactions": 24.0, "Total Customers": 14.0, "Median Spend per Transaction": 275.4, "Median Spend per Customer": 571.69 }, "geometry": { "type": "Point", "coordinates": [ -75.007161, 40.103472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-ysq", "Name": "C & R Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "1601 S 49th St", "LATITUDE": 39.93947, "LONGITUDE": -75.209529, "DATE_RANGE_START": 2023, "Total Visits": 209.0, "Total Visitors": 149.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 11.0, "Total Spend": 650.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 145.75, "Median Spend per Customer": 259.64 }, "geometry": { "type": "Point", "coordinates": [ -75.209529, 39.93947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-qvf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.03237, "LONGITUDE": -75.101559, "DATE_RANGE_START": 2023, "Total Visits": 287.0, "Total Visitors": 269.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 26.0, "Total Spend": 2905.0, "Total Transactions": 30.0, "Total Customers": 29.0, "Median Spend per Transaction": 62.19, "Median Spend per Customer": 59.59 }, "geometry": { "type": "Point", "coordinates": [ -75.101559, 40.03237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.067756, "LONGITUDE": -75.198044, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 23.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 10.0, "Total Spend": 5143.0, "Total Transactions": 238.0, "Total Customers": 177.0, "Median Spend per Transaction": 14.41, "Median Spend per Customer": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.198044, 40.067756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "Name": "Xi'an Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "4000 Chestnut St", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2023, "Total Visits": 253.0, "Total Visitors": 203.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 5.0, "Total Spend": 527.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 29.1, "Median Spend per Customer": 32.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pgb-nkf", "Name": "Cameron Seafood", "Category": "Specialty Food Stores", "Address": "906 N Broad St", "LATITUDE": 39.970695, "LONGITUDE": -75.160162, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 157.0, "POI_CBG": 421010140001.0, "Median Dwell Time": 140.0, "Total Spend": 826.0, "Total Transactions": 31.0, "Total Customers": 26.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 32.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160162, 39.970695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22q@628-pmf-jd9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1628 Chestnut St # 36", "LATITUDE": 39.9512, "LONGITUDE": -75.168379, "DATE_RANGE_START": 2023, "Total Visits": 73.0, "Total Visitors": 49.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 21.0, "Total Spend": 25765.0, "Total Transactions": 1720.0, "Total Customers": 1032.0, "Median Spend per Transaction": 10.12, "Median Spend per Customer": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.168379, 39.9512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.036425, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 33.0, "Total Spend": 5333.0, "Total Transactions": 133.0, "Total Customers": 124.0, "Median Spend per Transaction": 24.95, "Median Spend per Customer": 27.3 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-g8v", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2920 Roberts Ave", "LATITUDE": 40.011165, "LONGITUDE": -75.176365, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 199.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 2.0, "Total Spend": 5114.0, "Total Transactions": 148.0, "Total Customers": 125.0, "Median Spend per Transaction": 24.76, "Median Spend per Customer": 29.91 }, "geometry": { "type": "Point", "coordinates": [ -75.176365, 40.011165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7w-v4v", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "2339 Cottman Ave", "LATITUDE": 40.048227, "LONGITUDE": -75.056011, "DATE_RANGE_START": 2023, "Total Visits": 319.0, "Total Visitors": 287.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 27.0, "Total Spend": 1302.0, "Total Transactions": 13.0, "Total Customers": 9.0, "Median Spend per Transaction": 118.81, "Median Spend per Customer": 118.81 }, "geometry": { "type": "Point", "coordinates": [ -75.056011, 40.048227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@63s-dvv-rx5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6731 Woodland Ave", "LATITUDE": 39.923209, "LONGITUDE": -75.238375, "DATE_RANGE_START": 2023, "Total Visits": 426.0, "Total Visitors": 287.0, "POI_CBG": 421010063003.0, "Median Dwell Time": 12.0, "Total Spend": 6574.0, "Total Transactions": 284.0, "Total Customers": 174.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.238375, 39.923209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pgy-ks5", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "701 E Cathedral Rd", "LATITUDE": 40.064304, "LONGITUDE": -75.236768, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 271.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 61.0, "Total Spend": 8351.0, "Total Transactions": 222.0, "Total Customers": 178.0, "Median Spend per Transaction": 22.66, "Median Spend per Customer": 28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.236768, 40.064304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pgb-tsq", "Name": "Spring Garden Flowers", "Category": "Florists", "Address": "1209 Ridge Ave", "LATITUDE": 39.962555, "LONGITUDE": -75.157889, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 154.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 1.0, "Total Spend": 184.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157889, 39.962555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "Name": "Soy Cafe", "Category": "Restaurants and Other Eating Places", "Address": "630 N 2nd St", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2023, "Total Visits": 408.0, "Total Visitors": 373.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1.0, "Total Spend": 1062.0, "Total Transactions": 68.0, "Total Customers": 53.0, "Median Spend per Transaction": 13.34, "Median Spend per Customer": 17.76 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-kj9", "Name": "Olc", "Category": "Furniture Stores", "Address": "152 N 3rd St", "LATITUDE": 39.953669, "LONGITUDE": -75.145037, "DATE_RANGE_START": 2023, "Total Visits": 576.0, "Total Visitors": 349.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 4.0, "Total Spend": 2029.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 65.67, "Median Spend per Customer": 65.67 }, "geometry": { "type": "Point", "coordinates": [ -75.145037, 39.953669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "Name": "Mulberry Market", "Category": "Grocery Stores", "Address": "236 Arch St", "LATITUDE": 39.951954, "LONGITUDE": -75.144617, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 3.0, "Total Spend": 9761.0, "Total Transactions": 497.0, "Total Customers": 248.0, "Median Spend per Transaction": 15.94, "Median Spend per Customer": 18.67 }, "geometry": { "type": "Point", "coordinates": [ -75.144617, 39.951954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgd-w49", "Name": "Chris'pizza", "Category": "Restaurants and Other Eating Places", "Address": "3701 Haverford Ave", "LATITUDE": 39.963715, "LONGITUDE": -75.196155, "DATE_RANGE_START": 2023, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010108003.0, "Median Dwell Time": null, "Total Spend": 119.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 18.98, "Median Spend per Customer": 18.98 }, "geometry": { "type": "Point", "coordinates": [ -75.196155, 39.963715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-p82-rkz", "Name": "C1 Bakery Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6610 Castor Ave", "LATITUDE": 40.042432, "LONGITUDE": -75.07497, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010311011.0, "Median Dwell Time": 7.0, "Total Spend": 84.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 33.53, "Median Spend per Customer": 33.53 }, "geometry": { "type": "Point", "coordinates": [ -75.07497, 40.042432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pg9-ty9", "Name": "Veganish", "Category": "Restaurants and Other Eating Places", "Address": "1519 Spring Garden St", "LATITUDE": 39.963011, "LONGITUDE": -75.163722, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010133001.0, "Median Dwell Time": null, "Total Spend": 254.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 36.4, "Median Spend per Customer": 47.68 }, "geometry": { "type": "Point", "coordinates": [ -75.163722, 39.963011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "1500 N 50th St", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2023, "Total Visits": 3254.0, "Total Visitors": 1860.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 23.0, "Total Spend": 55766.0, "Total Transactions": 956.0, "Total Customers": 585.0, "Median Spend per Transaction": 25.52, "Median Spend per Customer": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-kfz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2801 W Dauphin St", "LATITUDE": 39.991851, "LONGITUDE": -75.178913, "DATE_RANGE_START": 2023, "Total Visits": 814.0, "Total Visitors": 481.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 25.0, "Total Spend": 4053.0, "Total Transactions": 212.0, "Total Customers": 116.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 22.98 }, "geometry": { "type": "Point", "coordinates": [ -75.178913, 39.991851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg8-kmk", "Name": "Brewerytown Beats", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1517 N Bailey St", "LATITUDE": 39.979092, "LONGITUDE": -75.178265, "DATE_RANGE_START": 2023, "Total Visits": 575.0, "Total Visitors": 91.0, "POI_CBG": 421010138001.0, "Median Dwell Time": 473.0, "Total Spend": 91.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 36.51, "Median Spend per Customer": 36.51 }, "geometry": { "type": "Point", "coordinates": [ -75.178265, 39.979092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-p7q", "Name": "Garage Fishtown", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 E Girard Ave", "LATITUDE": 39.968647, "LONGITUDE": -75.134215, "DATE_RANGE_START": 2023, "Total Visits": 272.0, "Total Visitors": 170.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 68.0, "Total Spend": 33853.0, "Total Transactions": 1037.0, "Total Customers": 716.0, "Median Spend per Transaction": 24.05, "Median Spend per Customer": 31.99 }, "geometry": { "type": "Point", "coordinates": [ -75.134215, 39.968647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8n-92k", "Name": "Bamboo Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6238 Bustleton Ave", "LATITUDE": 40.034106, "LONGITUDE": -75.071773, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 118.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 73.0, "Total Spend": 290.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 52.85, "Median Spend per Customer": 115.7 }, "geometry": { "type": "Point", "coordinates": [ -75.071773, 40.034106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "Name": "Aya Asian Fusion", "Category": "Restaurants and Other Eating Places", "Address": "7313 Frankford Ave # 15", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 175.0, "POI_CBG": 421010330006.0, "Median Dwell Time": 1.0, "Total Spend": 1833.0, "Total Transactions": 66.0, "Total Customers": 59.0, "Median Spend per Transaction": 22.41, "Median Spend per Customer": 26.06 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-9j9", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "S 15th St @ Market St", "LATITUDE": 39.953077, "LONGITUDE": -75.170262, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 34.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 6.0, "Total Spend": 91.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 15.66, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.170262, 39.953077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pj5-3nq", "Name": "New York Deli", "Category": "Restaurants and Other Eating Places", "Address": "1416 W Erie Ave", "LATITUDE": 40.009138, "LONGITUDE": -75.152203, "DATE_RANGE_START": 2023, "Total Visits": 663.0, "Total Visitors": 299.0, "POI_CBG": 421010201022.0, "Median Dwell Time": 50.0, "Total Spend": 1022.0, "Total Transactions": 78.0, "Total Customers": 44.0, "Median Spend per Transaction": 11.66, "Median Spend per Customer": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.152203, 40.009138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "Name": "Beauty Point", "Category": "Health and Personal Care Stores", "Address": "5610 Lancaster Ave Ste 600", "LATITUDE": 39.980056, "LONGITUDE": -75.235035, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 484.0, "Total Spend": 2200.0, "Total Transactions": 69.0, "Total Customers": 55.0, "Median Spend per Transaction": 17.25, "Median Spend per Customer": 19.4 }, "geometry": { "type": "Point", "coordinates": [ -75.235035, 39.980056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "4430 N Broad St", "LATITUDE": 40.021267, "LONGITUDE": -75.148854, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 5.0, "Total Spend": 4021.0, "Total Transactions": 247.0, "Total Customers": 203.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 15.84 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 40.021267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5mk", "Name": "The Halal Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "100 S 13th St", "LATITUDE": 39.950807, "LONGITUDE": -75.161908, "DATE_RANGE_START": 2023, "Total Visits": 13731.0, "Total Visitors": 8695.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 15.0, "Total Spend": 2278.0, "Total Transactions": 99.0, "Total Customers": 90.0, "Median Spend per Transaction": 16.85, "Median Spend per Customer": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.161908, 39.950807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8j-ct9", "Name": "Hunan Star", "Category": "Restaurants and Other Eating Places", "Address": "7203 Frankford Ave", "LATITUDE": 40.035881, "LONGITUDE": -75.042073, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 230.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 1.0, "Total Spend": 708.0, "Total Transactions": 19.0, "Total Customers": 13.0, "Median Spend per Transaction": 31.93, "Median Spend per Customer": 36.39 }, "geometry": { "type": "Point", "coordinates": [ -75.042073, 40.035881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-6p9", "Name": "Pret A Manger", "Category": "Restaurants and Other Eating Places", "Address": "30 S 15th St", "LATITUDE": 39.951392, "LONGITUDE": -75.16582, "DATE_RANGE_START": 2023, "Total Visits": 8987.0, "Total Visitors": 5624.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 13.0, "Total Spend": 13333.0, "Total Transactions": 1112.0, "Total Customers": 876.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16582, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-dqf", "Name": "Asian Palace", "Category": "Restaurants and Other Eating Places", "Address": "2001 W Oregon Ave", "LATITUDE": 39.918335, "LONGITUDE": -75.181058, "DATE_RANGE_START": 2023, "Total Visits": 279.0, "Total Visitors": 229.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 9.0, "Total Spend": 271.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 27.41, "Median Spend per Customer": 27.41 }, "geometry": { "type": "Point", "coordinates": [ -75.181058, 39.918335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "Name": "Weavers Way Co Op", "Category": "Grocery Stores", "Address": "559 Carpenter Ln", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 70.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 9.0, "Total Spend": 1145.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 44.41, "Median Spend per Customer": 46.93 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-hqz", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "1833 John F Kennedy Blvd", "LATITUDE": 39.954526, "LONGITUDE": -75.17109, "DATE_RANGE_START": 2023, "Total Visits": 312.0, "Total Visitors": 203.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 4.0, "Total Spend": 51963.0, "Total Transactions": 3599.0, "Total Customers": 1726.0, "Median Spend per Transaction": 11.72, "Median Spend per Customer": 18.96 }, "geometry": { "type": "Point", "coordinates": [ -75.17109, 39.954526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "Name": "Khyber Pass Pub", "Category": "Restaurants and Other Eating Places", "Address": "56 S 2nd St", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 168.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 13.0, "Total Spend": 2444.0, "Total Transactions": 53.0, "Total Customers": 41.0, "Median Spend per Transaction": 37.35, "Median Spend per Customer": 44.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1801 W Hunting Park Ave", "LATITUDE": 40.014636, "LONGITUDE": -75.157128, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 21.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 2.0, "Total Spend": 3543.0, "Total Transactions": 133.0, "Total Customers": 86.0, "Median Spend per Transaction": 18.52, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157128, 40.014636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4813 Tacony St # 25", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2023, "Total Visits": 1408.0, "Total Visitors": 1095.0, "POI_CBG": 421010380002.0, "Median Dwell Time": 4.0, "Total Spend": 15198.0, "Total Transactions": 581.0, "Total Customers": 373.0, "Median Spend per Transaction": 20.44, "Median Spend per Customer": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-jjv", "Name": "Allen Edmonds", "Category": "Shoe Stores", "Address": "1731 Chestnut St", "LATITUDE": 39.951392, "LONGITUDE": -75.170139, "DATE_RANGE_START": 2023, "Total Visits": 1325.0, "Total Visitors": 847.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 19.0, "Total Spend": 1732.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 64.8, "Median Spend per Customer": 236.06 }, "geometry": { "type": "Point", "coordinates": [ -75.170139, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-3wk", "Name": "Cavanaughs Headhouse", "Category": "Restaurants and Other Eating Places", "Address": "421 S 2nd St", "LATITUDE": 39.942297, "LONGITUDE": -75.144978, "DATE_RANGE_START": 2023, "Total Visits": 2162.0, "Total Visitors": 1442.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 43.0, "Total Spend": 399.0, "Total Transactions": 20.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 35.5 }, "geometry": { "type": "Point", "coordinates": [ -75.144978, 39.942297 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2300 S Broad St", "LATITUDE": 39.921743, "LONGITUDE": -75.170535, "DATE_RANGE_START": 2023, "Total Visits": 669.0, "Total Visitors": 324.0, "POI_CBG": 421010039012.0, "Median Dwell Time": 5.0, "Total Spend": 1206.0, "Total Transactions": 36.0, "Total Customers": 26.0, "Median Spend per Transaction": 11.9, "Median Spend per Customer": 12.28 }, "geometry": { "type": "Point", "coordinates": [ -75.170535, 39.921743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-j35", "Name": "18th Street Apothecary", "Category": "Health and Personal Care Stores", "Address": "113 S 18th St", "LATITUDE": 39.951252, "LONGITUDE": -75.170272, "DATE_RANGE_START": 2023, "Total Visits": 304.0, "Total Visitors": 215.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 8.0, "Total Spend": 217.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 26.81, "Median Spend per Customer": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.170272, 39.951252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "Name": "Muslim Fashion", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "5210 Chestnut St", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2023, "Total Visits": 815.0, "Total Visitors": 549.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 18.0, "Total Spend": 753.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 48.0, "Median Spend per Customer": 48.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5715 N Broad St", "LATITUDE": 40.040306, "LONGITUDE": -75.143929, "DATE_RANGE_START": 2023, "Total Visits": 577.0, "Total Visitors": 344.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 16.0, "Total Spend": 215.0, "Total Transactions": 16.0, "Total Customers": 15.0, "Median Spend per Transaction": 9.08, "Median Spend per Customer": 9.55 }, "geometry": { "type": "Point", "coordinates": [ -75.143929, 40.040306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6858 Rising Sun Ave", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2023, "Total Visits": 1812.0, "Total Visitors": 1308.0, "POI_CBG": 421010307003.0, "Median Dwell Time": 6.0, "Total Spend": 90278.0, "Total Transactions": 4831.0, "Total Customers": 1790.0, "Median Spend per Transaction": 12.75, "Median Spend per Customer": 24.25 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5040 City Ave", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2023, "Total Visits": 373.0, "Total Visitors": 279.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 12.0, "Total Spend": 11832.0, "Total Transactions": 544.0, "Total Customers": 367.0, "Median Spend per Transaction": 14.08, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5mk", "Name": "U Bahn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1320 Chestnut St", "LATITUDE": 39.950467, "LONGITUDE": -75.162591, "DATE_RANGE_START": 2023, "Total Visits": 13731.0, "Total Visitors": 8695.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 15.0, "Total Spend": 59.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 23.59, "Median Spend per Customer": 23.59 }, "geometry": { "type": "Point", "coordinates": [ -75.162591, 39.950467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ygk", "Name": "QT Vietnamese Sandwich", "Category": "Restaurants and Other Eating Places", "Address": "48 N 10th St", "LATITUDE": 39.953408, "LONGITUDE": -75.156559, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 222.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 441.0, "Total Transactions": 31.0, "Total Customers": 30.0, "Median Spend per Transaction": 11.99, "Median Spend per Customer": 12.73 }, "geometry": { "type": "Point", "coordinates": [ -75.156559, 39.953408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-n3q", "Name": "Pete's Clown House", "Category": "Restaurants and Other Eating Places", "Address": "3878 Frankford Ave", "LATITUDE": 40.003738, "LONGITUDE": -75.094646, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 34.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 28.0, "Total Spend": 688.0, "Total Transactions": 31.0, "Total Customers": 26.0, "Median Spend per Transaction": 21.13, "Median Spend per Customer": 25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.094646, 40.003738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9q-ht9", "Name": "Vince's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2550 Grant Ave Ste 350", "LATITUDE": 40.078713, "LONGITUDE": -75.027145, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 158.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 17.0, "Total Spend": 304.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 21.67, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027145, 40.078713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "Name": "Saks Off Fifth", "Category": "Department Stores", "Address": "1618 Franklin Mills Cir", "LATITUDE": 40.08814, "LONGITUDE": -74.961754, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 31.0, "Total Spend": 11643.0, "Total Transactions": 98.0, "Total Customers": 91.0, "Median Spend per Transaction": 62.99, "Median Spend per Customer": 62.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961754, 40.08814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-p7w-wtv", "Name": "Twistee Treat", "Category": "Restaurants and Other Eating Places", "Address": "3401 Longshore Ave", "LATITUDE": 40.033208, "LONGITUDE": -75.048855, "DATE_RANGE_START": 2023, "Total Visits": 135.0, "Total Visitors": 101.0, "POI_CBG": 421010315013.0, "Median Dwell Time": 1.0, "Total Spend": 808.0, "Total Transactions": 58.0, "Total Customers": 44.0, "Median Spend per Transaction": 11.53, "Median Spend per Customer": 13.39 }, "geometry": { "type": "Point", "coordinates": [ -75.048855, 40.033208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm6-jn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "49 Snyder Ave", "LATITUDE": 39.921877, "LONGITUDE": -75.147214, "DATE_RANGE_START": 2023, "Total Visits": 347.0, "Total Visitors": 307.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 7.0, "Total Spend": 565.0, "Total Transactions": 70.0, "Total Customers": 30.0, "Median Spend per Transaction": 7.32, "Median Spend per Customer": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.147214, 39.921877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "Name": "VaporFi", "Category": "Other Miscellaneous Store Retailers", "Address": "1240 South St Unit B", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2023, "Total Visits": 699.0, "Total Visitors": 471.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 37.0, "Total Spend": 522.0, "Total Transactions": 13.0, "Total Customers": 9.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm4-d35", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2217 S Broad St", "LATITUDE": 39.922448, "LONGITUDE": -75.1698, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010040013.0, "Median Dwell Time": 5.0, "Total Spend": 855.0, "Total Transactions": 53.0, "Total Customers": 44.0, "Median Spend per Transaction": 14.83, "Median Spend per Customer": 17.78 }, "geometry": { "type": "Point", "coordinates": [ -75.1698, 39.922448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "315 N 12th St", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2023, "Total Visits": 313.0, "Total Visitors": 113.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 79.0, "Total Spend": 10973.0, "Total Transactions": 1243.0, "Total Customers": 757.0, "Median Spend per Transaction": 6.94, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1551 Washington Ave", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2023, "Total Visits": 425.0, "Total Visitors": 425.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 8.0, "Total Spend": 3196.0, "Total Transactions": 392.0, "Total Customers": 238.0, "Median Spend per Transaction": 6.68, "Median Spend per Customer": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-sdv", "Name": "Independence Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 S Independence Mall W", "LATITUDE": 39.950358, "LONGITUDE": -75.150993, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 450.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 14.0, "Total Spend": 4685.0, "Total Transactions": 26.0, "Total Customers": 23.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150993, 39.950358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "Name": "New Delhi Indian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4004 Chestnut St", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2023, "Total Visits": 227.0, "Total Visitors": 215.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 10.0, "Total Spend": 7061.0, "Total Transactions": 174.0, "Total Customers": 157.0, "Median Spend per Transaction": 33.25, "Median Spend per Customer": 38.78 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2200 Wheatsheaf Ln Ste E3", "LATITUDE": 39.999135, "LONGITUDE": -75.093295, "DATE_RANGE_START": 2023, "Total Visits": 4863.0, "Total Visitors": 3448.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 24.0, "Total Spend": 1391.0, "Total Transactions": 54.0, "Total Customers": 46.0, "Median Spend per Transaction": 18.87, "Median Spend per Customer": 25.67 }, "geometry": { "type": "Point", "coordinates": [ -75.093295, 39.999135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "Name": "Dragon City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "923 Levick St", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2023, "Total Visits": 203.0, "Total Visitors": 189.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 17.0, "Total Spend": 3146.0, "Total Transactions": 139.0, "Total Customers": 84.0, "Median Spend per Transaction": 21.2, "Median Spend per Customer": 32.65 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p82-4jv", "Name": "Jc Mini Market", "Category": "Grocery Stores", "Address": "500 Devereaux Ave", "LATITUDE": 40.04695, "LONGITUDE": -75.097959, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 163.0, "POI_CBG": 421010305011.0, "Median Dwell Time": 15.0, "Total Spend": 274.0, "Total Transactions": 31.0, "Total Customers": 25.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 6.73 }, "geometry": { "type": "Point", "coordinates": [ -75.097959, 40.04695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@63s-dw9-7dv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895178, "LONGITUDE": -75.227973, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 730.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 10192.0, "Total Transactions": 983.0, "Total Customers": 799.0, "Median Spend per Transaction": 8.41, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227973, 39.895178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-rzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895169, "LONGITUDE": -75.227984, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 424.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 21.43, "Median Spend per Customer": 21.43 }, "geometry": { "type": "Point", "coordinates": [ -75.227984, 39.895169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "Name": "Keller Market", "Category": "Restaurants and Other Eating Places", "Address": "7964 Verree Rd", "LATITUDE": 40.072468, "LONGITUDE": -75.076652, "DATE_RANGE_START": 2023, "Total Visits": 392.0, "Total Visitors": 167.0, "POI_CBG": 421010341002.0, "Median Dwell Time": 35.0, "Total Spend": 430.0, "Total Transactions": 15.0, "Total Customers": 9.0, "Median Spend per Transaction": 22.1, "Median Spend per Customer": 51.3 }, "geometry": { "type": "Point", "coordinates": [ -75.076652, 40.072468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-rx5", "Name": "Choice Beer Deli", "Category": "Restaurants and Other Eating Places", "Address": "1642 South St", "LATITUDE": 39.944126, "LONGITUDE": -75.170213, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 157.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 1.0, "Total Spend": 267.0, "Total Transactions": 19.0, "Total Customers": 10.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 12.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170213, 39.944126 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "Name": "Park Manor Deli", "Category": "Restaurants and Other Eating Places", "Address": "240 W Chelten Ave", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2023, "Total Visits": 314.0, "Total Visitors": 238.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 6.0, "Total Spend": 3829.0, "Total Transactions": 279.0, "Total Customers": 130.0, "Median Spend per Transaction": 12.83, "Median Spend per Customer": 14.71 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "Name": "Lazos Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "2533 Poplar St", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2023, "Total Visits": 96.0, "Total Visitors": 96.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 1.0, "Total Spend": 2125.0, "Total Transactions": 111.0, "Total Customers": 81.0, "Median Spend per Transaction": 14.53, "Median Spend per Customer": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pp4-m6k", "Name": "OG Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2500 Frankford Ave", "LATITUDE": 39.983648, "LONGITUDE": -75.125756, "DATE_RANGE_START": 2023, "Total Visits": 344.0, "Total Visitors": 296.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 5.0, "Total Spend": 4608.0, "Total Transactions": 277.0, "Total Customers": 220.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 15.81 }, "geometry": { "type": "Point", "coordinates": [ -75.125756, 39.983648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y9z", "Name": "Delightful Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "906 Arch St", "LATITUDE": 39.953218, "LONGITUDE": -75.155064, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 207.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 11.0, "Total Spend": 201.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 17.36, "Median Spend per Customer": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.155064, 39.953218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1420 Cecil B Moore Ave", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2023, "Total Visits": 2256.0, "Total Visitors": 1166.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 370.0, "Total Spend": 6464.0, "Total Transactions": 968.0, "Total Customers": 495.0, "Median Spend per Transaction": 5.17, "Median Spend per Customer": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-228@628-pj9-73q", "Name": "Crab Du Jour", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044904, "LONGITUDE": -75.144393, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 150.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 11.0, "Total Spend": 876.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 43.46, "Median Spend per Customer": 43.46 }, "geometry": { "type": "Point", "coordinates": [ -75.144393, 40.044904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "Name": "Little Pete's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2401 Pennsylvania Ave", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2023, "Total Visits": 1329.0, "Total Visitors": 695.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 154.0, "Total Spend": 130.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 23.11, "Median Spend per Customer": 23.11 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "Name": "Royal Boucherie", "Category": "Restaurants and Other Eating Places", "Address": "52 S 2nd St", "LATITUDE": 39.948704, "LONGITUDE": -75.144309, "DATE_RANGE_START": 2023, "Total Visits": 606.0, "Total Visitors": 470.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 41.0, "Total Spend": 709.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 162.76, "Median Spend per Customer": 160.2 }, "geometry": { "type": "Point", "coordinates": [ -75.144309, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "Name": "New Deck Tavern", "Category": "Restaurants and Other Eating Places", "Address": "3408 Sansom St", "LATITUDE": 39.953465, "LONGITUDE": -75.192584, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 12.0, "Total Spend": 14140.0, "Total Transactions": 257.0, "Total Customers": 175.0, "Median Spend per Transaction": 49.02, "Median Spend per Customer": 51.32 }, "geometry": { "type": "Point", "coordinates": [ -75.192584, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.979849, "LONGITUDE": -75.269307, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 8.0, "Total Spend": 13050.0, "Total Transactions": 732.0, "Total Customers": 587.0, "Median Spend per Transaction": 13.81, "Median Spend per Customer": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.269307, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-4d9", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "309 S 5th St", "LATITUDE": 39.944335, "LONGITUDE": -75.150023, "DATE_RANGE_START": 2023, "Total Visits": 512.0, "Total Visitors": 321.0, "POI_CBG": 421010010022.0, "Median Dwell Time": 5.0, "Total Spend": 78816.0, "Total Transactions": 2749.0, "Total Customers": 1021.0, "Median Spend per Transaction": 19.76, "Median Spend per Customer": 33.81 }, "geometry": { "type": "Point", "coordinates": [ -75.150023, 39.944335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "7422 Bustleton Ave", "LATITUDE": 40.052503, "LONGITUDE": -75.058497, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 9.0, "Total Spend": 5264.0, "Total Transactions": 177.0, "Total Customers": 130.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.058497, 40.052503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "Name": "Revolution House", "Category": "Restaurants and Other Eating Places", "Address": "200 Market St", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 172.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 9647.0, "Total Transactions": 173.0, "Total Customers": 152.0, "Median Spend per Transaction": 44.91, "Median Spend per Customer": 53.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-28v", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "9159 Roosevelt Blvd", "LATITUDE": 40.074524, "LONGITUDE": -75.032955, "DATE_RANGE_START": 2023, "Total Visits": 219.0, "Total Visitors": 116.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 56.0, "Total Spend": 704.0, "Total Transactions": 24.0, "Total Customers": 15.0, "Median Spend per Transaction": 13.78, "Median Spend per Customer": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -75.032955, 40.074524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-q4v", "Name": "Los Potrillos", "Category": "Restaurants and Other Eating Places", "Address": "4200 G St", "LATITUDE": 40.012389, "LONGITUDE": -75.11245, "DATE_RANGE_START": 2023, "Total Visits": 199.0, "Total Visitors": 115.0, "POI_CBG": 421010289012.0, "Median Dwell Time": 6.0, "Total Spend": 160.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.11245, 40.012389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p9k-dy9", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "920 Red Lion Rd", "LATITUDE": 40.100611, "LONGITUDE": -75.026503, "DATE_RANGE_START": 2023, "Total Visits": 2856.0, "Total Visitors": 1776.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 13.0, "Total Spend": 61139.0, "Total Transactions": 1646.0, "Total Customers": 799.0, "Median Spend per Transaction": 24.96, "Median Spend per Customer": 37.83 }, "geometry": { "type": "Point", "coordinates": [ -75.026503, 40.100611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4001 Woodhaven Rd", "LATITUDE": 40.087573, "LONGITUDE": -74.970531, "DATE_RANGE_START": 2023, "Total Visits": 40.0, "Total Visitors": 20.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 1100.0, "Total Transactions": 48.0, "Total Customers": 33.0, "Median Spend per Transaction": 20.12, "Median Spend per Customer": 21.46 }, "geometry": { "type": "Point", "coordinates": [ -74.970531, 40.087573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "Name": "Kennedy Food Garden", "Category": "Grocery Stores", "Address": "1901 John F Kennedy Blvd", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2023, "Total Visits": 326.0, "Total Visitors": 199.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 22.0, "Total Spend": 3525.0, "Total Transactions": 180.0, "Total Customers": 100.0, "Median Spend per Transaction": 14.88, "Median Spend per Customer": 15.06 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvr-d5f", "Name": "Y & B Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6547 Elmwood Ave", "LATITUDE": 39.921556, "LONGITUDE": -75.231623, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 100.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 193.0, "Total Spend": 18962.0, "Total Transactions": 1185.0, "Total Customers": 5.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 93.63 }, "geometry": { "type": "Point", "coordinates": [ -75.231623, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "Name": "Brick House Bar & Grille", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3334 Grant Ave", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 207.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 52.0, "Total Spend": 322.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 21.76, "Median Spend per Customer": 21.17 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "Name": "Mustard Greens Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "622 S 2nd St", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 192.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 1.0, "Total Spend": 1499.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 90.08, "Median Spend per Customer": 90.08 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4501 Castor Ave", "LATITUDE": 40.016245, "LONGITUDE": -75.09649, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 18.0, "Total Spend": 880.0, "Total Transactions": 93.0, "Total Customers": 66.0, "Median Spend per Transaction": 6.45, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09649, 40.016245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "Name": "Burlington", "Category": "Clothing Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.9125, "LONGITUDE": -75.156968, "DATE_RANGE_START": 2023, "Total Visits": 66.0, "Total Visitors": 54.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 28.0, "Total Spend": 1983.0, "Total Transactions": 43.0, "Total Customers": 39.0, "Median Spend per Transaction": 34.21, "Median Spend per Customer": 34.25 }, "geometry": { "type": "Point", "coordinates": [ -75.156968, 39.9125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "242-222@628-pm9-zmk", "Name": "Touch of Gold", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "640 South St Ste A", "LATITUDE": 39.941928, "LONGITUDE": -75.15354, "DATE_RANGE_START": 2023, "Total Visits": 849.0, "Total Visitors": 698.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 6.0, "Total Spend": 2280.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 910.0, "Median Spend per Customer": 910.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15354, 39.941928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4160 Monument Rd", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2023, "Total Visits": 654.0, "Total Visitors": 502.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 8.0, "Total Spend": 446.0, "Total Transactions": 28.0, "Total Customers": 25.0, "Median Spend per Transaction": 9.99, "Median Spend per Customer": 13.98 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pr4-d35", "Name": "Rush Order Tees", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2727 Commerce Way", "LATITUDE": 40.112433, "LONGITUDE": -74.979188, "DATE_RANGE_START": 2023, "Total Visits": 143.0, "Total Visitors": 56.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 89.0, "Total Spend": 129.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 41.0, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -74.979188, 40.112433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "Name": "American Sardine Bar", "Category": "Restaurants and Other Eating Places", "Address": "1800 Federal St", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2023, "Total Visits": 194.0, "Total Visitors": 178.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 28.0, "Total Spend": 2600.0, "Total Transactions": 33.0, "Total Customers": 26.0, "Median Spend per Transaction": 69.5, "Median Spend per Customer": 60.28 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "2360 W Oregon Ave", "LATITUDE": 39.918026, "LONGITUDE": -75.188933, "DATE_RANGE_START": 2023, "Total Visits": 774.0, "Total Visitors": 590.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 18.0, "Total Spend": 11912.0, "Total Transactions": 269.0, "Total Customers": 204.0, "Median Spend per Transaction": 35.38, "Median Spend per Customer": 35.39 }, "geometry": { "type": "Point", "coordinates": [ -75.188933, 39.918026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-vj9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3780 Main St", "LATITUDE": 40.018604, "LONGITUDE": -75.214313, "DATE_RANGE_START": 2023, "Total Visits": 591.0, "Total Visitors": 471.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 5.0, "Total Spend": 8816.0, "Total Transactions": 499.0, "Total Customers": 302.0, "Median Spend per Transaction": 11.54, "Median Spend per Customer": 18.6 }, "geometry": { "type": "Point", "coordinates": [ -75.214313, 40.018604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "42 W Chelten Ave", "LATITUDE": 40.034618, "LONGITUDE": -75.175433, "DATE_RANGE_START": 2023, "Total Visits": 1132.0, "Total Visitors": 570.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 51.0, "Total Spend": 720.0, "Total Transactions": 95.0, "Total Customers": 65.0, "Median Spend per Transaction": 5.41, "Median Spend per Customer": 8.39 }, "geometry": { "type": "Point", "coordinates": [ -75.175433, 40.034618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzp-2zf", "Name": "Illadelph by All in One Smoke Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "14230 Bustleton Ave", "LATITUDE": 40.132389, "LONGITUDE": -75.012029, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 91.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 141.0, "Total Spend": 883.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 31.2, "Median Spend per Customer": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.012029, 40.132389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1 Franklin Town Blvd", "LATITUDE": 39.960086, "LONGITUDE": -75.167468, "DATE_RANGE_START": 2023, "Total Visits": 789.0, "Total Visitors": 323.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 1299.0, "Total Spend": 933.0, "Total Transactions": 86.0, "Total Customers": 45.0, "Median Spend per Transaction": 7.58, "Median Spend per Customer": 9.98 }, "geometry": { "type": "Point", "coordinates": [ -75.167468, 39.960086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgb-grk", "Name": "Federal Donuts", "Category": "Restaurants and Other Eating Places", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.963245, "LONGITUDE": -75.174323, "DATE_RANGE_START": 2023, "Total Visits": 2049.0, "Total Visitors": 1144.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 29.0, "Total Spend": 1044.0, "Total Transactions": 71.0, "Total Customers": 60.0, "Median Spend per Transaction": 13.04, "Median Spend per Customer": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.174323, 39.963245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093159, "LONGITUDE": -75.032892, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 30.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 11.0, "Total Spend": 540.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 26.95, "Median Spend per Customer": 32.37 }, "geometry": { "type": "Point", "coordinates": [ -75.032892, 40.093159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "Name": "Bar Bombon", "Category": "Restaurants and Other Eating Places", "Address": "133 S 18th St", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2023, "Total Visits": 314.0, "Total Visitors": 306.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 1731.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 57.66, "Median Spend per Customer": 57.66 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-t7q", "Name": "Paprica Modern Mediterranean Grill", "Category": "Restaurants and Other Eating Places", "Address": "811 Sansom St", "LATITUDE": 39.949133, "LONGITUDE": -75.154633, "DATE_RANGE_START": 2023, "Total Visits": 415.0, "Total Visitors": 393.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 1974.0, "Total Transactions": 48.0, "Total Customers": 36.0, "Median Spend per Transaction": 33.95, "Median Spend per Customer": 49.15 }, "geometry": { "type": "Point", "coordinates": [ -75.154633, 39.949133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-75z", "Name": "Ninja Bao", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd Ste Penn", "LATITUDE": 39.953417, "LONGITUDE": -75.165928, "DATE_RANGE_START": 2023, "Total Visits": 2563.0, "Total Visitors": 1698.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 58.0, "Total Spend": 410.0, "Total Transactions": 23.0, "Total Customers": 20.0, "Median Spend per Transaction": 17.56, "Median Spend per Customer": 17.6 }, "geometry": { "type": "Point", "coordinates": [ -75.165928, 39.953417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "Name": "Station Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9319 Krewstown Rd", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 230.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 9.0, "Total Spend": 1832.0, "Total Transactions": 69.0, "Total Customers": 51.0, "Median Spend per Transaction": 24.53, "Median Spend per Customer": 27.92 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-435", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "2110 S Columbus Blvd", "LATITUDE": 39.918945, "LONGITUDE": -75.143088, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 209.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 42.0, "Total Spend": 923.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 190.0, "Median Spend per Customer": 190.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143088, 39.918945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030294, "LONGITUDE": -75.097997, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 73.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 18.0, "Total Spend": 72034.0, "Total Transactions": 525.0, "Total Customers": 253.0, "Median Spend per Transaction": 50.28, "Median Spend per Customer": 88.41 }, "geometry": { "type": "Point", "coordinates": [ -75.097997, 40.030294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg9-cyv", "Name": "Mercado Food Market", "Category": "Grocery Stores", "Address": "1859 N Van Pelt St", "LATITUDE": 39.983185, "LONGITUDE": -75.169254, "DATE_RANGE_START": 2023, "Total Visits": 110.0, "Total Visitors": 85.0, "POI_CBG": 421010152004.0, "Median Dwell Time": 14.0, "Total Spend": 679.0, "Total Transactions": 90.0, "Total Customers": 24.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169254, 39.983185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg2-jgk", "Name": "Grocery Outlet", "Category": "Grocery Stores", "Address": "25 W Hortter St Unit B", "LATITUDE": 40.05001, "LONGITUDE": -75.1853, "DATE_RANGE_START": 2023, "Total Visits": 545.0, "Total Visitors": 545.0, "POI_CBG": 421010237004.0, "Median Dwell Time": 83.0, "Total Spend": 102861.0, "Total Transactions": 3029.0, "Total Customers": 1464.0, "Median Spend per Transaction": 21.52, "Median Spend per Customer": 42.28 }, "geometry": { "type": "Point", "coordinates": [ -75.1853, 40.05001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pm9-t9z", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "804 Walnut St", "LATITUDE": 39.947883, "LONGITUDE": -75.154475, "DATE_RANGE_START": 2023, "Total Visits": 1218.0, "Total Visitors": 651.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 167.0, "Total Spend": 408.0, "Total Transactions": 38.0, "Total Customers": 31.0, "Median Spend per Transaction": 6.41, "Median Spend per Customer": 8.49 }, "geometry": { "type": "Point", "coordinates": [ -75.154475, 39.947883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "Name": "Destination XL", "Category": "Clothing Stores", "Address": "2329 Cottman Ave Spc 51", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 165.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 21.0, "Total Spend": 8441.0, "Total Transactions": 123.0, "Total Customers": 28.0, "Median Spend per Transaction": 55.0, "Median Spend per Customer": 96.6 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pm4-gtv", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2009 S Broad St", "LATITUDE": 39.925222, "LONGITUDE": -75.169039, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 119.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 28.0, "Total Spend": 610.0, "Total Transactions": 25.0, "Total Customers": 23.0, "Median Spend per Transaction": 20.49, "Median Spend per Customer": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169039, 39.925222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave # B", "LATITUDE": 39.913457, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 453.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@63s-dw9-8n5", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "8800 Essington Ave", "LATITUDE": 39.877273, "LONGITUDE": -75.245918, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 3.0, "Total Spend": 7657.0, "Total Transactions": 478.0, "Total Customers": 408.0, "Median Spend per Transaction": 14.13, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.245918, 39.877273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7yv", "Name": "Hunger Burger", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St Unit 427", "LATITUDE": 39.953665, "LONGITUDE": -75.159753, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 213.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 469.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 13.77, "Median Spend per Customer": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.159753, 39.953665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 Walnut St", "LATITUDE": 39.948587, "LONGITUDE": -75.159205, "DATE_RANGE_START": 2023, "Total Visits": 546.0, "Total Visitors": 283.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 54.0, "Total Spend": 7806.0, "Total Transactions": 954.0, "Total Customers": 343.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 7.97 }, "geometry": { "type": "Point", "coordinates": [ -75.159205, 39.948587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1509 Chestnut St", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2023, "Total Visits": 331.0, "Total Visitors": 302.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 6.0, "Total Spend": 4714.0, "Total Transactions": 829.0, "Total Customers": 213.0, "Median Spend per Transaction": 4.49, "Median Spend per Customer": 8.33 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1528 Walnut St", "LATITUDE": 39.94965, "LONGITUDE": -75.167379, "DATE_RANGE_START": 2023, "Total Visits": 63.0, "Total Visitors": 49.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 4.0, "Total Spend": 6359.0, "Total Transactions": 754.0, "Total Customers": 534.0, "Median Spend per Transaction": 6.97, "Median Spend per Customer": 8.17 }, "geometry": { "type": "Point", "coordinates": [ -75.167379, 39.94965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-389", "Name": "Raymour & Flanigan Showroom", "Category": "Furniture Stores", "Address": "30 Franklin Mills Blvd", "LATITUDE": 40.084522, "LONGITUDE": -74.967251, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 218.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 51.0, "Total Spend": 4326.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 126.9, "Median Spend per Customer": 126.9 }, "geometry": { "type": "Point", "coordinates": [ -74.967251, 40.084522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dwb-rkz", "Name": "Debo Brothers Auto Sales", "Category": "Automobile Dealers", "Address": "6600 Essington Ave", "LATITUDE": 39.914212, "LONGITUDE": -75.220931, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 15.0, "POI_CBG": 421019809001.0, "Median Dwell Time": null, "Total Spend": 195.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 78.0, "Median Spend per Customer": 78.0 }, "geometry": { "type": "Point", "coordinates": [ -75.220931, 39.914212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "Name": "Blick Art Materials", "Category": "Other Miscellaneous Store Retailers", "Address": "1330 Chestnut St", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2023, "Total Visits": 183.0, "Total Visitors": 100.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 13.0, "Total Spend": 17718.0, "Total Transactions": 442.0, "Total Customers": 371.0, "Median Spend per Transaction": 27.38, "Median Spend per Customer": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "710 Adams Ave", "LATITUDE": 40.03231, "LONGITUDE": -75.106561, "DATE_RANGE_START": 2023, "Total Visits": 1145.0, "Total Visitors": 631.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 18.0, "Total Spend": 16159.0, "Total Transactions": 1092.0, "Total Customers": 693.0, "Median Spend per Transaction": 12.09, "Median Spend per Customer": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.106561, 40.03231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-qs5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "813 Adams Ave", "LATITUDE": 40.03173, "LONGITUDE": -75.104308, "DATE_RANGE_START": 2023, "Total Visits": 2509.0, "Total Visitors": 1736.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 22.0, "Total Spend": 70.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 27.97, "Median Spend per Customer": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.104308, 40.03173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "Name": "Marine Layer", "Category": "Clothing Stores", "Address": "1604 Walnut St", "LATITUDE": 39.949598, "LONGITUDE": -75.167845, "DATE_RANGE_START": 2023, "Total Visits": 969.0, "Total Visitors": 596.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 73.0, "Total Spend": 4727.0, "Total Transactions": 41.0, "Total Customers": 35.0, "Median Spend per Transaction": 88.0, "Median Spend per Customer": 113.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167845, 39.949598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pfy-b6k", "Name": "Barry's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "471 Leverington Ave", "LATITUDE": 40.035119, "LONGITUDE": -75.217909, "DATE_RANGE_START": 2023, "Total Visits": 263.0, "Total Visitors": 203.0, "POI_CBG": 421010213001.0, "Median Dwell Time": 5.0, "Total Spend": 1770.0, "Total Transactions": 66.0, "Total Customers": 58.0, "Median Spend per Transaction": 22.18, "Median Spend per Customer": 24.61 }, "geometry": { "type": "Point", "coordinates": [ -75.217909, 40.035119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "Name": "DiNapoli Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Front St", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2023, "Total Visits": 261.0, "Total Visitors": 220.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 5.0, "Total Spend": 1071.0, "Total Transactions": 43.0, "Total Customers": 29.0, "Median Spend per Transaction": 21.74, "Median Spend per Customer": 25.19 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "Name": "The Quick Fixx", "Category": "Restaurants and Other Eating Places", "Address": "1511 South St", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 175.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 11.0, "Total Spend": 2641.0, "Total Transactions": 130.0, "Total Customers": 99.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 20.47 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7325 Castor Ave", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2023, "Total Visits": 125.0, "Total Visitors": 113.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 23.0, "Total Spend": 3516.0, "Total Transactions": 142.0, "Total Customers": 113.0, "Median Spend per Transaction": 23.3, "Median Spend per Customer": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-tn5", "Name": "Koto Sushi", "Category": "Restaurants and Other Eating Places", "Address": "719 Sansom St", "LATITUDE": 39.948858, "LONGITUDE": -75.153256, "DATE_RANGE_START": 2023, "Total Visits": 584.0, "Total Visitors": 458.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 7.0, "Total Spend": 2039.0, "Total Transactions": 60.0, "Total Customers": 46.0, "Median Spend per Transaction": 26.68, "Median Spend per Customer": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -75.153256, 39.948858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvx-59f", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4701 W Girard Ave", "LATITUDE": 39.972923, "LONGITUDE": -75.217413, "DATE_RANGE_START": 2023, "Total Visits": 294.0, "Total Visitors": 223.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 7.0, "Total Spend": 1028.0, "Total Transactions": 90.0, "Total Customers": 41.0, "Median Spend per Transaction": 10.26, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.217413, 39.972923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "Name": "ALDI", "Category": "Grocery Stores", "Address": "3101 W Girard Ave", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2023, "Total Visits": 653.0, "Total Visitors": 451.0, "POI_CBG": 421010137005.0, "Median Dwell Time": 11.0, "Total Spend": 997.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 40.35, "Median Spend per Customer": 40.35 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pm8-d35", "Name": "King Grocery", "Category": "Grocery Stores", "Address": "2848 S 16th St", "LATITUDE": 39.914766, "LONGITUDE": -75.174988, "DATE_RANGE_START": 2023, "Total Visits": 213.0, "Total Visitors": 173.0, "POI_CBG": 421010039022.0, "Median Dwell Time": 261.0, "Total Spend": 155.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 61.89, "Median Spend per Customer": 61.89 }, "geometry": { "type": "Point", "coordinates": [ -75.174988, 39.914766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "Name": "Sue's Market", "Category": "Grocery Stores", "Address": "275 Saint James Pl", "LATITUDE": 39.946196, "LONGITUDE": -75.145508, "DATE_RANGE_START": 2023, "Total Visits": 450.0, "Total Visitors": 402.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 41.0, "Total Spend": 2902.0, "Total Transactions": 225.0, "Total Customers": 85.0, "Median Spend per Transaction": 10.85, "Median Spend per Customer": 19.45 }, "geometry": { "type": "Point", "coordinates": [ -75.145508, 39.946196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-brk", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "6601 Roosevelt Blvd", "LATITUDE": 40.035928, "LONGITUDE": -75.062301, "DATE_RANGE_START": 2023, "Total Visits": 1060.0, "Total Visitors": 655.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 15.0, "Total Spend": 51216.0, "Total Transactions": 1544.0, "Total Customers": 813.0, "Median Spend per Transaction": 21.4, "Median Spend per Customer": 34.35 }, "geometry": { "type": "Point", "coordinates": [ -75.062301, 40.035928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "Name": "Cottman Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "7544 Frankford Ave", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 219.0, "POI_CBG": 421010331013.0, "Median Dwell Time": 4.0, "Total Spend": 3319.0, "Total Transactions": 142.0, "Total Customers": 68.0, "Median Spend per Transaction": 20.51, "Median Spend per Customer": 39.67 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jy9", "Name": "The Dive Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "947 E Passyunk Ave", "LATITUDE": 39.936867, "LONGITUDE": -75.154753, "DATE_RANGE_START": 2023, "Total Visits": 402.0, "Total Visitors": 367.0, "POI_CBG": 421010024001.0, "Median Dwell Time": 16.0, "Total Spend": 1702.0, "Total Transactions": 28.0, "Total Customers": 13.0, "Median Spend per Transaction": 63.5, "Median Spend per Customer": 63.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154753, 39.936867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-dy9", "Name": "Little Italy Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "6 10 Fitzwater St", "LATITUDE": 39.942767, "LONGITUDE": -75.175334, "DATE_RANGE_START": 2023, "Total Visits": 73.0, "Total Visitors": 73.0, "POI_CBG": 421010014001.0, "Median Dwell Time": null, "Total Spend": 435.0, "Total Transactions": 35.0, "Total Customers": 26.0, "Median Spend per Transaction": 9.81, "Median Spend per Customer": 10.84 }, "geometry": { "type": "Point", "coordinates": [ -75.175334, 39.942767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm9-wp9", "Name": "3j's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "317 Market St", "LATITUDE": 39.950423, "LONGITUDE": -75.146258, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 8.0, "Total Spend": 133.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146258, 39.950423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-v2k", "Name": "Original Village Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1006 Sandmeyer Ln", "LATITUDE": 40.107293, "LONGITUDE": -75.037623, "DATE_RANGE_START": 2023, "Total Visits": 225.0, "Total Visitors": 198.0, "POI_CBG": 421010357021.0, "Median Dwell Time": 12.0, "Total Spend": 2820.0, "Total Transactions": 86.0, "Total Customers": 61.0, "Median Spend per Transaction": 25.49, "Median Spend per Customer": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.037623, 40.107293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "Name": "RIM Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1172 S 9th St", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 192.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 4.0, "Total Spend": 687.0, "Total Transactions": 40.0, "Total Customers": 40.0, "Median Spend per Transaction": 15.08, "Median Spend per Customer": 15.08 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-rzf", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2400 E Butler St", "LATITUDE": 39.995312, "LONGITUDE": -75.092003, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 240.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 13.0, "Total Spend": 483.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 31.31, "Median Spend per Customer": 85.84 }, "geometry": { "type": "Point", "coordinates": [ -75.092003, 39.995312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-nnq", "Name": "M & M Food Market", "Category": "Grocery Stores", "Address": "458 Markle St", "LATITUDE": 40.02486, "LONGITUDE": -75.210261, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010210003.0, "Median Dwell Time": null, "Total Spend": 795.0, "Total Transactions": 68.0, "Total Customers": 25.0, "Median Spend per Transaction": 8.68, "Median Spend per Customer": 17.87 }, "geometry": { "type": "Point", "coordinates": [ -75.210261, 40.02486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9q-hqz", "Name": "Pearle Vision", "Category": "Health and Personal Care Stores", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079188, "LONGITUDE": -75.028586, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 153.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 75.0, "Total Spend": 666.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 153.15, "Median Spend per Customer": 153.15 }, "geometry": { "type": "Point", "coordinates": [ -75.028586, 40.079188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "Name": "S and J Seafood", "Category": "Specialty Food Stores", "Address": "713 S 52nd St", "LATITUDE": 39.948562, "LONGITUDE": -75.227098, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 251.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 5.0, "Total Spend": 4687.0, "Total Transactions": 165.0, "Total Customers": 34.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 32.15 }, "geometry": { "type": "Point", "coordinates": [ -75.227098, 39.948562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8h-mzf", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "6725 Frankford Ave", "LATITUDE": 40.031622, "LONGITUDE": -75.051232, "DATE_RANGE_START": 2023, "Total Visits": 2992.0, "Total Visitors": 1578.0, "POI_CBG": 421010320001.0, "Median Dwell Time": 22.0, "Total Spend": 246.0, "Total Transactions": 6.0, "Total Customers": 3.0, "Median Spend per Transaction": 48.96, "Median Spend per Customer": 98.14 }, "geometry": { "type": "Point", "coordinates": [ -75.051232, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg2-zs5", "Name": "Mount Airy Tap Room", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "300 W Mount Pleasant Ave", "LATITUDE": 40.053904, "LONGITUDE": -75.194197, "DATE_RANGE_START": 2023, "Total Visits": 132.0, "Total Visitors": 104.0, "POI_CBG": 421010388004.0, "Median Dwell Time": 119.0, "Total Spend": 307.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.77, "Median Spend per Customer": 35.91 }, "geometry": { "type": "Point", "coordinates": [ -75.194197, 40.053904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "715 S 2nd St", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2023, "Total Visits": 81.0, "Total Visitors": 71.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 2.0, "Total Spend": 1569.0, "Total Transactions": 48.0, "Total Customers": 45.0, "Median Spend per Transaction": 22.12, "Median Spend per Customer": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-223@628-pj4-t7q", "Name": "Reyes Grocery", "Category": "Grocery Stores", "Address": "440 W Indiana Ave", "LATITUDE": 39.996491, "LONGITUDE": -75.138647, "DATE_RANGE_START": 2023, "Total Visits": 76.0, "Total Visitors": 55.0, "POI_CBG": 421010176012.0, "Median Dwell Time": 1.0, "Total Spend": 575.0, "Total Transactions": 55.0, "Total Customers": 34.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.138647, 39.996491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "Name": "Dim Sum & Noodle", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 104", "LATITUDE": 39.962306, "LONGITUDE": -75.172679, "DATE_RANGE_START": 2023, "Total Visits": 3897.0, "Total Visitors": 2040.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 53.0, "Total Spend": 2926.0, "Total Transactions": 84.0, "Total Customers": 69.0, "Median Spend per Transaction": 29.05, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172679, 39.962306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "Name": "Tradesman's", "Category": "Restaurants and Other Eating Places", "Address": "1322 Chestnut St", "LATITUDE": 39.950491, "LONGITUDE": -75.162734, "DATE_RANGE_START": 2023, "Total Visits": 361.0, "Total Visitors": 283.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 10.0, "Total Spend": 21617.0, "Total Transactions": 579.0, "Total Customers": 422.0, "Median Spend per Transaction": 26.8, "Median Spend per Customer": 35.36 }, "geometry": { "type": "Point", "coordinates": [ -75.162734, 39.950491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "Name": "Quetzally", "Category": "Restaurants and Other Eating Places", "Address": "1225 Fitzwater St", "LATITUDE": 39.941599, "LONGITUDE": -75.163088, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010015002.0, "Median Dwell Time": null, "Total Spend": 114.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 45.34, "Median Spend per Customer": 45.34 }, "geometry": { "type": "Point", "coordinates": [ -75.163088, 39.941599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-y35", "Name": "Dave & Buster's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1995 Franklin Mills Cir", "LATITUDE": 40.091725, "LONGITUDE": -74.960996, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 51.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 87.0, "Total Spend": 40516.0, "Total Transactions": 813.0, "Total Customers": 517.0, "Median Spend per Transaction": 39.94, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -74.960996, 40.091725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "700 E", "LATITUDE": 40.011588, "LONGITUDE": -75.1128, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 20.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 15.0, "Total Spend": 165.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.1128, 40.011588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "Name": "Tavern On Camac", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "243 S Camac St", "LATITUDE": 39.947273, "LONGITUDE": -75.161626, "DATE_RANGE_START": 2023, "Total Visits": 261.0, "Total Visitors": 205.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 18.0, "Total Spend": 14079.0, "Total Transactions": 602.0, "Total Customers": 331.0, "Median Spend per Transaction": 19.4, "Median Spend per Customer": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.161626, 39.947273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dvw-bhq", "Name": "Yummy Diner", "Category": "Restaurants and Other Eating Places", "Address": "34 N 52nd St", "LATITUDE": 39.961114, "LONGITUDE": -75.224901, "DATE_RANGE_START": 2023, "Total Visits": 154.0, "Total Visitors": 135.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 2.0, "Total Spend": 391.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 15.08, "Median Spend per Customer": 19.64 }, "geometry": { "type": "Point", "coordinates": [ -75.224901, 39.961114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "Name": "Cook and Shaker", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Albert St", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 193.0, "POI_CBG": 421010160001.0, "Median Dwell Time": 577.0, "Total Spend": 5910.0, "Total Transactions": 80.0, "Total Customers": 63.0, "Median Spend per Transaction": 66.97, "Median Spend per Customer": 72.81 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7v-w49", "Name": "China Ruby", "Category": "Restaurants and Other Eating Places", "Address": "1535 Cottman Ave", "LATITUDE": 40.055952, "LONGITUDE": -75.07383, "DATE_RANGE_START": 2023, "Total Visits": 150.0, "Total Visitors": 150.0, "POI_CBG": 421010338002.0, "Median Dwell Time": 25.0, "Total Spend": 107.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 20.1, "Median Spend per Customer": 27.86 }, "geometry": { "type": "Point", "coordinates": [ -75.07383, 40.055952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-5mk", "Name": "McGillin's Olde Ale House", "Category": "Restaurants and Other Eating Places", "Address": "1310 Drury St", "LATITUDE": 39.95021, "LONGITUDE": -75.162564, "DATE_RANGE_START": 2023, "Total Visits": 333.0, "Total Visitors": 264.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 48.0, "Total Spend": 43005.0, "Total Transactions": 1585.0, "Total Customers": 1046.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 29.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162564, 39.95021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-hh5", "Name": "Square on Square", "Category": "Restaurants and Other Eating Places", "Address": "274 S 20th St", "LATITUDE": 39.94849, "LONGITUDE": -75.174456, "DATE_RANGE_START": 2023, "Total Visits": 1245.0, "Total Visitors": 884.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 29.0, "Total Spend": 939.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 25.83, "Median Spend per Customer": 25.83 }, "geometry": { "type": "Point", "coordinates": [ -75.174456, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9p-z75", "Name": "Ahi Sushi", "Category": "Restaurants and Other Eating Places", "Address": "9999 Bustleton Ave", "LATITUDE": 40.101907, "LONGITUDE": -75.02821, "DATE_RANGE_START": 2023, "Total Visits": 8804.0, "Total Visitors": 3175.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 92.0, "Total Spend": 3773.0, "Total Transactions": 93.0, "Total Customers": 70.0, "Median Spend per Transaction": 33.52, "Median Spend per Customer": 39.96 }, "geometry": { "type": "Point", "coordinates": [ -75.02821, 40.101907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-wkz", "Name": "Garces Events", "Category": "Special Food Services", "Address": "2401 Walnut St", "LATITUDE": 39.951558, "LONGITUDE": -75.180009, "DATE_RANGE_START": 2023, "Total Visits": 745.0, "Total Visitors": 639.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 2.0, "Total Spend": 5925.0, "Total Transactions": 286.0, "Total Customers": 223.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 20.14 }, "geometry": { "type": "Point", "coordinates": [ -75.180009, 39.951558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5911 Ridge Ave # 5933", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2023, "Total Visits": 848.0, "Total Visitors": 684.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 10.0, "Total Spend": 16948.0, "Total Transactions": 788.0, "Total Customers": 494.0, "Median Spend per Transaction": 15.82, "Median Spend per Customer": 24.18 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-pn5", "Name": "U Town", "Category": "Restaurants and Other Eating Places", "Address": "110 S 40th St", "LATITUDE": 39.954979, "LONGITUDE": -75.202634, "DATE_RANGE_START": 2023, "Total Visits": 150.0, "Total Visitors": 118.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 43.0, "Total Spend": 3423.0, "Total Transactions": 90.0, "Total Customers": 78.0, "Median Spend per Transaction": 35.26, "Median Spend per Customer": 34.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202634, 39.954979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.02987, "LONGITUDE": -75.099395, "DATE_RANGE_START": 2023, "Total Visits": 555.0, "Total Visitors": 368.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 47.0, "Total Spend": 7497.0, "Total Transactions": 435.0, "Total Customers": 264.0, "Median Spend per Transaction": 13.39, "Median Spend per Customer": 22.09 }, "geometry": { "type": "Point", "coordinates": [ -75.099395, 40.02987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "1651 S Columbus Blvd", "LATITUDE": 39.925926, "LONGITUDE": -75.143002, "DATE_RANGE_START": 2023, "Total Visits": 3193.0, "Total Visitors": 1984.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 29.0, "Total Spend": 92571.0, "Total Transactions": 673.0, "Total Customers": 358.0, "Median Spend per Transaction": 63.26, "Median Spend per Customer": 82.48 }, "geometry": { "type": "Point", "coordinates": [ -75.143002, 39.925926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phj-rp9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7900 Ogontz Ave", "LATITUDE": 40.072698, "LONGITUDE": -75.158433, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 11.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 8.0, "Total Spend": 256.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 29.0, "Median Spend per Customer": 46.28 }, "geometry": { "type": "Point", "coordinates": [ -75.158433, 40.072698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "2141 Cottman Ave Unit D", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 143.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 22.0, "Total Spend": 2747.0, "Total Transactions": 39.0, "Total Customers": 36.0, "Median Spend per Transaction": 57.24, "Median Spend per Customer": 58.32 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "1521 S Columbus Blvd", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2023, "Total Visits": 456.0, "Total Visitors": 276.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 12.0, "Total Spend": 9034.0, "Total Transactions": 576.0, "Total Customers": 417.0, "Median Spend per Transaction": 13.17, "Median Spend per Customer": 15.31 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-rp9", "Name": "Sunrise Breakfast", "Category": "Restaurants and Other Eating Places", "Address": "1916 E Washington Ln", "LATITUDE": 40.066142, "LONGITUDE": -75.158748, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 1.0, "Total Spend": 797.0, "Total Transactions": 43.0, "Total Customers": 23.0, "Median Spend per Transaction": 14.88, "Median Spend per Customer": 30.84 }, "geometry": { "type": "Point", "coordinates": [ -75.158748, 40.066142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1142 Crease St", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2023, "Total Visits": 103.0, "Total Visitors": 91.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 11.0, "Total Spend": 871.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 44.71, "Median Spend per Customer": 49.97 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p85-7nq", "Name": "Tuscany Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "2418 Rhawn St", "LATITUDE": 40.056919, "LONGITUDE": -75.047895, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 108.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 13.0, "Total Spend": 595.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 61.89, "Median Spend per Customer": 122.09 }, "geometry": { "type": "Point", "coordinates": [ -75.047895, 40.056919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7520 City Ave", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2023, "Total Visits": 956.0, "Total Visitors": 803.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 13.0, "Total Spend": 4748.0, "Total Transactions": 271.0, "Total Customers": 220.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 12.34 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "4356 Main St", "LATITUDE": 40.025407, "LONGITUDE": -75.223856, "DATE_RANGE_START": 2023, "Total Visits": 512.0, "Total Visitors": 376.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 12.0, "Total Spend": 1219.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 39.56, "Median Spend per Customer": 42.07 }, "geometry": { "type": "Point", "coordinates": [ -75.223856, 40.025407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-p5f", "Name": "Beaty American", "Category": "Furniture Stores", "Address": "1800 N American St Unit G", "LATITUDE": 39.978754, "LONGITUDE": -75.139823, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 159.0, "POI_CBG": 421010156001.0, "Median Dwell Time": 32.0, "Total Spend": 654.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 91.3, "Median Spend per Customer": 75.6 }, "geometry": { "type": "Point", "coordinates": [ -75.139823, 39.978754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2145 W Allegheny Ave", "LATITUDE": 40.003522, "LONGITUDE": -75.165598, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 403.0, "POI_CBG": 421010202001.0, "Median Dwell Time": 8.0, "Total Spend": 1241.0, "Total Transactions": 153.0, "Total Customers": 100.0, "Median Spend per Transaction": 7.66, "Median Spend per Customer": 9.14 }, "geometry": { "type": "Point", "coordinates": [ -75.165598, 40.003522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4268 Ridge Ave", "LATITUDE": 40.009412, "LONGITUDE": -75.196512, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 4.0, "Total Spend": 5901.0, "Total Transactions": 732.0, "Total Customers": 383.0, "Median Spend per Transaction": 6.15, "Median Spend per Customer": 8.93 }, "geometry": { "type": "Point", "coordinates": [ -75.196512, 40.009412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "Name": "Beck's Cajun Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2023, "Total Visits": 11074.0, "Total Visitors": 6611.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 20.0, "Total Spend": 5588.0, "Total Transactions": 259.0, "Total Customers": 243.0, "Median Spend per Transaction": 16.62, "Median Spend per Customer": 17.79 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pmf-skf", "Name": "Butcher and Singer", "Category": "Restaurants and Other Eating Places", "Address": "1500 Walnut St", "LATITUDE": 39.949462, "LONGITUDE": -75.166241, "DATE_RANGE_START": 2023, "Total Visits": 2172.0, "Total Visitors": 1549.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 3.0, "Total Spend": 25305.0, "Total Transactions": 99.0, "Total Customers": 86.0, "Median Spend per Transaction": 218.8, "Median Spend per Customer": 253.08 }, "geometry": { "type": "Point", "coordinates": [ -75.166241, 39.949462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-w49", "Name": "The Bakeshop on 20th", "Category": "Restaurants and Other Eating Places", "Address": "269 S 20th St", "LATITUDE": 39.948428, "LONGITUDE": -75.174139, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 149.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 2.0, "Total Spend": 106.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 10.11 }, "geometry": { "type": "Point", "coordinates": [ -75.174139, 39.948428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmc-s3q", "Name": "Philadelphia Java Company", "Category": "Restaurants and Other Eating Places", "Address": "852 S 2nd St", "LATITUDE": 39.93617, "LONGITUDE": -75.146983, "DATE_RANGE_START": 2023, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010017001.0, "Median Dwell Time": null, "Total Spend": 35.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -75.146983, 39.93617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "Name": "Anastasi Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1039 S 9th St", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2023, "Total Visits": 282.0, "Total Visitors": 266.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 1.0, "Total Spend": 5687.0, "Total Transactions": 98.0, "Total Customers": 84.0, "Median Spend per Transaction": 43.93, "Median Spend per Customer": 50.58 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-zvf", "Name": "Tavern On the Hill", "Category": "Restaurants and Other Eating Places", "Address": "8636 Germantown Ave", "LATITUDE": 40.077151, "LONGITUDE": -75.208916, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 152.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 36.0, "Total Spend": 1695.0, "Total Transactions": 36.0, "Total Customers": 31.0, "Median Spend per Transaction": 45.64, "Median Spend per Customer": 45.64 }, "geometry": { "type": "Point", "coordinates": [ -75.208916, 40.077151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6hq", "Name": "Nurses Uniform Place", "Category": "Clothing Stores", "Address": "1104 Chestnut St", "LATITUDE": 39.950135, "LONGITUDE": -75.158882, "DATE_RANGE_START": 2023, "Total Visits": 4640.0, "Total Visitors": 2981.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 12.0, "Total Spend": 88.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158882, 39.950135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2801 W Dauphin St", "LATITUDE": 39.991919, "LONGITUDE": -75.178907, "DATE_RANGE_START": 2023, "Total Visits": 814.0, "Total Visitors": 481.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 25.0, "Total Spend": 1201.0, "Total Transactions": 38.0, "Total Customers": 26.0, "Median Spend per Transaction": 8.08, "Median Spend per Customer": 13.57 }, "geometry": { "type": "Point", "coordinates": [ -75.178907, 39.991919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1730 Washington Ave", "LATITUDE": 39.93815, "LONGITUDE": -75.172716, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 135.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 10.0, "Total Spend": 9754.0, "Total Transactions": 219.0, "Total Customers": 149.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 23.62 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.93815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pnw-py9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1138 N 2nd St Unit 1", "LATITUDE": 39.969281, "LONGITUDE": -75.140143, "DATE_RANGE_START": 2023, "Total Visits": 852.0, "Total Visitors": 802.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 5.0, "Total Spend": 1511.0, "Total Transactions": 79.0, "Total Customers": 58.0, "Median Spend per Transaction": 15.58, "Median Spend per Customer": 22.74 }, "geometry": { "type": "Point", "coordinates": [ -75.140143, 39.969281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4849 Market St", "LATITUDE": 39.959641, "LONGITUDE": -75.218508, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010104004.0, "Median Dwell Time": 10.0, "Total Spend": 4044.0, "Total Transactions": 185.0, "Total Customers": 129.0, "Median Spend per Transaction": 11.64, "Median Spend per Customer": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.218508, 39.959641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5756 Baltimore Ave # 74", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2023, "Total Visits": 1126.0, "Total Visitors": 815.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 4.0, "Total Spend": 7836.0, "Total Transactions": 367.0, "Total Customers": 268.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1825 W Oregon Ave # 33", "LATITUDE": 39.918089, "LONGITUDE": -75.178743, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 4.0, "Total Spend": 1396.0, "Total Transactions": 46.0, "Total Customers": 34.0, "Median Spend per Transaction": 30.26, "Median Spend per Customer": 35.36 }, "geometry": { "type": "Point", "coordinates": [ -75.178743, 39.918089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "Name": "Xi'an Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "902 Arch St", "LATITUDE": 39.953264, "LONGITUDE": -75.154923, "DATE_RANGE_START": 2023, "Total Visits": 2225.0, "Total Visitors": 1643.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 1371.0, "Total Transactions": 48.0, "Total Customers": 43.0, "Median Spend per Transaction": 24.78, "Median Spend per Customer": 24.78 }, "geometry": { "type": "Point", "coordinates": [ -75.154923, 39.953264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "Name": "Brauhaus Schmitz", "Category": "Restaurants and Other Eating Places", "Address": "718 South St", "LATITUDE": 39.942071, "LONGITUDE": -75.154606, "DATE_RANGE_START": 2023, "Total Visits": 822.0, "Total Visitors": 693.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 6.0, "Total Spend": 4158.0, "Total Transactions": 19.0, "Total Customers": 18.0, "Median Spend per Transaction": 47.02, "Median Spend per Customer": 43.85 }, "geometry": { "type": "Point", "coordinates": [ -75.154606, 39.942071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "59 E Oregon Ave", "LATITUDE": 39.914321, "LONGITUDE": -75.149506, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 38.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 2.0, "Total Spend": 2248.0, "Total Transactions": 88.0, "Total Customers": 56.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 30.3 }, "geometry": { "type": "Point", "coordinates": [ -75.149506, 39.914321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23g@628-pmf-sqz", "Name": "New Balance Philadelphia", "Category": "Shoe Stores", "Address": "1615 Walnut St", "LATITUDE": 39.950046, "LONGITUDE": -75.168022, "DATE_RANGE_START": 2023, "Total Visits": 2314.0, "Total Visitors": 1744.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 3.0, "Total Spend": 5058.0, "Total Transactions": 39.0, "Total Customers": 38.0, "Median Spend per Transaction": 119.99, "Median Spend per Customer": 124.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168022, 39.950046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "Name": "Champ's Diner", "Category": "Restaurants and Other Eating Places", "Address": "1539 Cecil B Moore Ave", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 168.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 5.0, "Total Spend": 2883.0, "Total Transactions": 178.0, "Total Customers": 134.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 17.47 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-p8v-7h5", "Name": "Nine Ting", "Category": "Restaurants and Other Eating Places", "Address": "103 Franklin Mills Blvd", "LATITUDE": 40.088807, "LONGITUDE": -74.967966, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 410.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 744.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 89.88, "Median Spend per Customer": 89.88 }, "geometry": { "type": "Point", "coordinates": [ -74.967966, 40.088807 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3541 Aramingo Ave", "LATITUDE": 39.99276, "LONGITUDE": -75.097642, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 9.0, "Total Spend": 6568.0, "Total Transactions": 346.0, "Total Customers": 283.0, "Median Spend per Transaction": 14.34, "Median Spend per Customer": 16.57 }, "geometry": { "type": "Point", "coordinates": [ -75.097642, 39.99276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "Name": "Engimono Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1811 Fairmount Ave", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2023, "Total Visits": 406.0, "Total Visitors": 284.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 2.0, "Total Spend": 3177.0, "Total Transactions": 78.0, "Total Customers": 63.0, "Median Spend per Transaction": 28.8, "Median Spend per Customer": 26.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-68v", "Name": "The Bike Stop", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "206 S Quince St", "LATITUDE": 39.948357, "LONGITUDE": -75.159979, "DATE_RANGE_START": 2023, "Total Visits": 254.0, "Total Visitors": 110.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 138.0, "Total Spend": 11235.0, "Total Transactions": 623.0, "Total Customers": 254.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159979, 39.948357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgb-c3q", "Name": "Lucky Goat Coffeehouse", "Category": "Restaurants and Other Eating Places", "Address": "888 N 26th St", "LATITUDE": 39.972559, "LONGITUDE": -75.179343, "DATE_RANGE_START": 2023, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 9.0, "Total Spend": 37.0, "Total Transactions": 6.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.32, "Median Spend per Customer": 14.92 }, "geometry": { "type": "Point", "coordinates": [ -75.179343, 39.972559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgm-28v", "Name": "East Falls Farmers' Market", "Category": "Specialty Food Stores", "Address": "4100 Ridge Ave", "LATITUDE": 40.007838, "LONGITUDE": -75.191777, "DATE_RANGE_START": 2023, "Total Visits": 4060.0, "Total Visitors": 2435.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 6.0, "Total Spend": 46.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.191777, 40.007838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pp4-x3q", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2342 N Front St", "LATITUDE": 39.985935, "LONGITUDE": -75.132315, "DATE_RANGE_START": 2023, "Total Visits": 4470.0, "Total Visitors": 1969.0, "POI_CBG": 421010163004.0, "Median Dwell Time": 7.0, "Total Spend": 870.0, "Total Transactions": 33.0, "Total Customers": 25.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.132315, 39.985935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "Name": "Off Broadway Shoe Warehouse", "Category": "Shoe Stores", "Address": "1477 Franklin Mills Cir", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2023, "Total Visits": 472.0, "Total Visitors": 408.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 40.0, "Total Spend": 5725.0, "Total Transactions": 73.0, "Total Customers": 68.0, "Median Spend per Transaction": 68.28, "Median Spend per Customer": 71.47 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "Name": "Dolce Carini", "Category": "Restaurants and Other Eating Places", "Address": "1929 Chestnut St", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2023, "Total Visits": 317.0, "Total Visitors": 253.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 6.0, "Total Spend": 1784.0, "Total Transactions": 122.0, "Total Customers": 89.0, "Median Spend per Transaction": 11.48, "Median Spend per Customer": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj8-qs5", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "811 Adams Ave", "LATITUDE": 40.031843, "LONGITUDE": -75.10443, "DATE_RANGE_START": 2023, "Total Visits": 2509.0, "Total Visitors": 1736.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 22.0, "Total Spend": 83290.0, "Total Transactions": 5023.0, "Total Customers": 3460.0, "Median Spend per Transaction": 13.38, "Median Spend per Customer": 17.88 }, "geometry": { "type": "Point", "coordinates": [ -75.10443, 40.031843 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-bff", "Name": "Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5801 Torresdale Ave", "LATITUDE": 40.016286, "LONGITUDE": -75.061606, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010321001.0, "Median Dwell Time": 1.0, "Total Spend": 465.0, "Total Transactions": 24.0, "Total Customers": 23.0, "Median Spend per Transaction": 18.3, "Median Spend per Customer": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061606, 40.016286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pg8-kmk", "Name": "Green Eggs Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2800 W Girard Ave", "LATITUDE": 39.974211, "LONGITUDE": -75.182048, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 177.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 27.0, "Total Spend": 232.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 41.75, "Median Spend per Customer": 41.75 }, "geometry": { "type": "Point", "coordinates": [ -75.182048, 39.974211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "Name": "New Quality Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "105 E Allegheny Ave", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 29.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 387.0, "Total Spend": 342.0, "Total Transactions": 19.0, "Total Customers": 11.0, "Median Spend per Transaction": 17.94, "Median Spend per Customer": 28.68 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pmd-rtv", "Name": "Sally", "Category": "Restaurants and Other Eating Places", "Address": "2229 Spruce St", "LATITUDE": 39.948932, "LONGITUDE": -75.178843, "DATE_RANGE_START": 2023, "Total Visits": 447.0, "Total Visitors": 405.0, "POI_CBG": 421010008011.0, "Median Dwell Time": 7.0, "Total Spend": 4177.0, "Total Transactions": 58.0, "Total Customers": 45.0, "Median Spend per Transaction": 66.84, "Median Spend per Customer": 81.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178843, 39.948932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgg-b8v", "Name": "Fingers & Wings Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3032 N 22nd St", "LATITUDE": 40.001078, "LONGITUDE": -75.166601, "DATE_RANGE_START": 2023, "Total Visits": 78.0, "Total Visitors": 78.0, "POI_CBG": 421010172013.0, "Median Dwell Time": 17.0, "Total Spend": 656.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 28.9, "Median Spend per Customer": 36.07 }, "geometry": { "type": "Point", "coordinates": [ -75.166601, 40.001078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfy-wkz", "Name": "Dawson Street Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 Dawson St", "LATITUDE": 40.018548, "LONGITUDE": -75.21277, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 60.0, "POI_CBG": 421010209004.0, "Median Dwell Time": 93.0, "Total Spend": 4707.0, "Total Transactions": 188.0, "Total Customers": 73.0, "Median Spend per Transaction": 21.79, "Median Spend per Customer": 42.13 }, "geometry": { "type": "Point", "coordinates": [ -75.21277, 40.018548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pj8-pgk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd # 5103", "LATITUDE": 40.031719, "LONGITUDE": -75.099544, "DATE_RANGE_START": 2023, "Total Visits": 3669.0, "Total Visitors": 2315.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 31.0, "Total Spend": 2461.0, "Total Transactions": 189.0, "Total Customers": 128.0, "Median Spend per Transaction": 11.6, "Median Spend per Customer": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.099544, 40.031719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pm3-vpv", "Name": "Flannel", "Category": "Restaurants and Other Eating Places", "Address": "1819 E Passyunk Ave", "LATITUDE": 39.927131, "LONGITUDE": -75.166347, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 104.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 5.0, "Total Spend": 8743.0, "Total Transactions": 152.0, "Total Customers": 130.0, "Median Spend per Transaction": 45.55, "Median Spend per Customer": 54.08 }, "geometry": { "type": "Point", "coordinates": [ -75.166347, 39.927131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "Name": "Rice & Mix", "Category": "Restaurants and Other Eating Places", "Address": "128 S 12th St", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 195.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 1565.0, "Total Transactions": 70.0, "Total Customers": 46.0, "Median Spend per Transaction": 18.41, "Median Spend per Customer": 21.49 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "Name": "South", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "600 N Broad St", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2023, "Total Visits": 291.0, "Total Visitors": 279.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 100.0, "Total Spend": 517.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 29.17, "Median Spend per Customer": 29.17 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-224@628-pmf-kj9", "Name": "Alchemy Coffee", "Category": "Restaurants and Other Eating Places", "Address": "119 S 21st St", "LATITUDE": 39.951158, "LONGITUDE": -75.175492, "DATE_RANGE_START": 2023, "Total Visits": 1702.0, "Total Visitors": 1169.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 36.0, "Total Spend": 4018.0, "Total Transactions": 476.0, "Total Customers": 274.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 10.53 }, "geometry": { "type": "Point", "coordinates": [ -75.175492, 39.951158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2743 S Front St", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2023, "Total Visits": 274.0, "Total Visitors": 243.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 8.0, "Total Spend": 5905.0, "Total Transactions": 327.0, "Total Customers": 243.0, "Median Spend per Transaction": 14.66, "Median Spend per Customer": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-jjv", "Name": "MAC Cosmetics", "Category": "Health and Personal Care Stores", "Address": "1734 Chestnut St Spc # Unit A", "LATITUDE": 39.951489, "LONGITUDE": -75.170193, "DATE_RANGE_START": 2023, "Total Visits": 1325.0, "Total Visitors": 847.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 19.0, "Total Spend": 89.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 35.64, "Median Spend per Customer": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.170193, 39.951489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6hq", "Name": "MilkBoy", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1100 Chestnut St", "LATITUDE": 39.950114, "LONGITUDE": -75.15876, "DATE_RANGE_START": 2023, "Total Visits": 4640.0, "Total Visitors": 2981.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 12.0, "Total Spend": 2729.0, "Total Transactions": 51.0, "Total Customers": 44.0, "Median Spend per Transaction": 37.32, "Median Spend per Customer": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15876, 39.950114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2043 Chestnut St", "LATITUDE": 39.95261, "LONGITUDE": -75.174958, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 1.0, "Total Spend": 1979.0, "Total Transactions": 79.0, "Total Customers": 73.0, "Median Spend per Transaction": 18.89, "Median Spend per Customer": 18.95 }, "geometry": { "type": "Point", "coordinates": [ -75.174958, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "8920 Frankford Ave", "LATITUDE": 40.052252, "LONGITUDE": -75.010446, "DATE_RANGE_START": 2023, "Total Visits": 799.0, "Total Visitors": 501.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 7.0, "Total Spend": 1532.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 76.38, "Median Spend per Customer": 76.38 }, "geometry": { "type": "Point", "coordinates": [ -75.010446, 40.052252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-v4v", "Name": "Nick's Bar and Grille", "Category": "Restaurants and Other Eating Places", "Address": "16 S 2nd St", "LATITUDE": 39.949498, "LONGITUDE": -75.144137, "DATE_RANGE_START": 2023, "Total Visits": 876.0, "Total Visitors": 655.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 17.0, "Total Spend": 3868.0, "Total Transactions": 85.0, "Total Customers": 60.0, "Median Spend per Transaction": 43.8, "Median Spend per Customer": 52.07 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 39.949498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmd-vfz", "Name": "Tsuki Sushi", "Category": "Restaurants and Other Eating Places", "Address": "2135 Walnut St", "LATITUDE": 39.951096, "LONGITUDE": -75.177135, "DATE_RANGE_START": 2023, "Total Visits": 271.0, "Total Visitors": 251.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 1.0, "Total Spend": 828.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 18.31, "Median Spend per Customer": 24.25 }, "geometry": { "type": "Point", "coordinates": [ -75.177135, 39.951096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7700 Island Ave", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2023, "Total Visits": 1207.0, "Total Visitors": 943.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 9.0, "Total Spend": 12338.0, "Total Transactions": 1012.0, "Total Customers": 608.0, "Median Spend per Transaction": 10.43, "Median Spend per Customer": 13.51 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-vzz", "Name": "Jollibee", "Category": "Restaurants and Other Eating Places", "Address": "7340 Bustleton Ave", "LATITUDE": 40.048717, "LONGITUDE": -75.0598, "DATE_RANGE_START": 2023, "Total Visits": 31491.0, "Total Visitors": 13974.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 32.0, "Total Spend": 11166.0, "Total Transactions": 446.0, "Total Customers": 357.0, "Median Spend per Transaction": 20.77, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.0598, 40.048717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2025 S Broad St", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2023, "Total Visits": 1924.0, "Total Visitors": 1150.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 12.0, "Total Spend": 2792.0, "Total Transactions": 470.0, "Total Customers": 194.0, "Median Spend per Transaction": 4.85, "Median Spend per Customer": 8.12 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.933044, "LONGITUDE": -75.144605, "DATE_RANGE_START": 2023, "Total Visits": 356.0, "Total Visitors": 302.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 6.0, "Total Spend": 10598.0, "Total Transactions": 1335.0, "Total Customers": 629.0, "Median Spend per Transaction": 6.49, "Median Spend per Customer": 10.07 }, "geometry": { "type": "Point", "coordinates": [ -75.144605, 39.933044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-6p9", "Name": "Samsun Footwear", "Category": "Shoe Stores", "Address": "1514 Chestnut St", "LATITUDE": 39.95084, "LONGITUDE": -75.166508, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 125.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166508, 39.95084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "Name": "Spring Garden Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "400 Spring Garden St", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2023, "Total Visits": 476.0, "Total Visitors": 367.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 12.0, "Total Spend": 1780.0, "Total Transactions": 90.0, "Total Customers": 63.0, "Median Spend per Transaction": 18.13, "Median Spend per Customer": 23.24 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-d5f", "Name": "Best Deal Discount Store", "Category": "Department Stores", "Address": "4005 Market St", "LATITUDE": 39.957506, "LONGITUDE": -75.202207, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 154.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 4.0, "Total Spend": 322.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 11.44, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.202207, 39.957506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-p82-nqz", "Name": "On Charcoal", "Category": "Restaurants and Other Eating Places", "Address": "6516 Castor Ave", "LATITUDE": 40.041319, "LONGITUDE": -75.075986, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 1.0, "Total Spend": 155.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 43.16, "Median Spend per Customer": 43.16 }, "geometry": { "type": "Point", "coordinates": [ -75.075986, 40.041319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-5fz", "Name": "Madison K", "Category": "Health and Personal Care Stores", "Address": "600 N 2nd St", "LATITUDE": 39.961127, "LONGITUDE": -75.141646, "DATE_RANGE_START": 2023, "Total Visits": 312.0, "Total Visitors": 289.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 7.0, "Total Spend": 101.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 40.25, "Median Spend per Customer": 40.25 }, "geometry": { "type": "Point", "coordinates": [ -75.141646, 39.961127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "2101 S 11th St", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2023, "Total Visits": 1310.0, "Total Visitors": 758.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 3.0, "Total Spend": 15088.0, "Total Transactions": 592.0, "Total Customers": 329.0, "Median Spend per Transaction": 21.23, "Median Spend per Customer": 34.41 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3032 N Broad St", "LATITUDE": 39.99978, "LONGITUDE": -75.15379, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 7.0, "Total Spend": 3535.0, "Total Transactions": 238.0, "Total Customers": 173.0, "Median Spend per Transaction": 12.19, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.15379, 39.99978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-qxq", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "3451 Aramingo Ave", "LATITUDE": 39.991686, "LONGITUDE": -75.099246, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 6.0, "Total Spend": 896.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 56.5, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099246, 39.991686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "Name": "Hilltown Tavern", "Category": "Restaurants and Other Eating Places", "Address": "326 Roxborough Ave", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 162.0, "POI_CBG": 421010213004.0, "Median Dwell Time": 68.0, "Total Spend": 25392.0, "Total Transactions": 462.0, "Total Customers": 313.0, "Median Spend per Transaction": 44.9, "Median Spend per Customer": 59.01 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-cbk", "Name": "Oregon Diner", "Category": "Restaurants and Other Eating Places", "Address": "302 W Oregon Ave", "LATITUDE": 39.913868, "LONGITUDE": -75.152939, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 422.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 35.0, "Total Spend": 259.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 30.36, "Median Spend per Customer": 30.36 }, "geometry": { "type": "Point", "coordinates": [ -75.152939, 39.913868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "Name": "Vietnam Cafe", "Category": "Restaurants and Other Eating Places", "Address": "816 S 47th St", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2023, "Total Visits": 359.0, "Total Visitors": 341.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 37.0, "Total Spend": 397.0, "Total Transactions": 9.0, "Total Customers": 6.0, "Median Spend per Transaction": 59.3, "Median Spend per Customer": 26.79 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p9q-ht9", "Name": "Bubbakoo's Burritos", "Category": "Restaurants and Other Eating Places", "Address": "2550 Grant Ave", "LATITUDE": 40.078769, "LONGITUDE": -75.027229, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 133.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 12.0, "Total Spend": 1603.0, "Total Transactions": 68.0, "Total Customers": 59.0, "Median Spend per Transaction": 18.46, "Median Spend per Customer": 19.72 }, "geometry": { "type": "Point", "coordinates": [ -75.027229, 40.078769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-575", "Name": "Aldo's Pizzarama", "Category": "Restaurants and Other Eating Places", "Address": "10201 Bustleton Ave", "LATITUDE": 40.108537, "LONGITUDE": -75.025505, "DATE_RANGE_START": 2023, "Total Visits": 237.0, "Total Visitors": 94.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 192.0, "Total Spend": 739.0, "Total Transactions": 54.0, "Total Customers": 40.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 19.21 }, "geometry": { "type": "Point", "coordinates": [ -75.025505, 40.108537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3313 Wharton St", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2023, "Total Visits": 565.0, "Total Visitors": 352.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 7.0, "Total Spend": 7934.0, "Total Transactions": 978.0, "Total Customers": 426.0, "Median Spend per Transaction": 7.08, "Median Spend per Customer": 10.77 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7b-vmk", "Name": "Out of Wack Jacks Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "3156 Willits Rd", "LATITUDE": 40.057001, "LONGITUDE": -75.014587, "DATE_RANGE_START": 2023, "Total Visits": 456.0, "Total Visitors": 370.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 27.0, "Total Spend": 1035.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 38.28, "Median Spend per Customer": 46.54 }, "geometry": { "type": "Point", "coordinates": [ -75.014587, 40.057001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "Name": "Xiandu Thai", "Category": "Restaurants and Other Eating Places", "Address": "1119 Walnut St", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2023, "Total Visits": 2347.0, "Total Visitors": 1807.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 4.0, "Total Spend": 4726.0, "Total Transactions": 104.0, "Total Customers": 95.0, "Median Spend per Transaction": 35.08, "Median Spend per Customer": 37.13 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032496, "LONGITUDE": -75.21442, "DATE_RANGE_START": 2023, "Total Visits": 903.0, "Total Visitors": 499.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 5.0, "Total Spend": 638.0, "Total Transactions": 41.0, "Total Customers": 41.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.21442, 40.032496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "Name": "Popi's Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3120 S 20th St", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2023, "Total Visits": 81.0, "Total Visitors": 70.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 14.0, "Total Spend": 660.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 171.22, "Median Spend per Customer": 171.22 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "1501 E Susquehanna Ave", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 65.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 7.0, "Total Spend": 114.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22m@63s-dw4-rzf", "Name": "Currito", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895176, "LONGITUDE": -75.227955, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 645.0, "Total Transactions": 34.0, "Total Customers": 31.0, "Median Spend per Transaction": 17.92, "Median Spend per Customer": 19.41 }, "geometry": { "type": "Point", "coordinates": [ -75.227955, 39.895176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5945 Woodland Ave", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2023, "Total Visits": 1727.0, "Total Visitors": 840.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 10.0, "Total Spend": 9303.0, "Total Transactions": 685.0, "Total Customers": 436.0, "Median Spend per Transaction": 10.88, "Median Spend per Customer": 14.37 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1900 Market St", "LATITUDE": 39.953319, "LONGITUDE": -75.17307, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 3.0, "Total Spend": 3507.0, "Total Transactions": 435.0, "Total Customers": 261.0, "Median Spend per Transaction": 6.43, "Median Spend per Customer": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.17307, 39.953319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1945 Callowhill St", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2023, "Total Visits": 934.0, "Total Visitors": 879.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 3.0, "Total Spend": 4771.0, "Total Transactions": 476.0, "Total Customers": 329.0, "Median Spend per Transaction": 8.43, "Median Spend per Customer": 10.94 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-p7q", "Name": "The Wardrobe Philadelphia", "Category": "Clothing Stores", "Address": "413 N 4th St", "LATITUDE": 39.958203, "LONGITUDE": -75.145206, "DATE_RANGE_START": 2023, "Total Visits": 931.0, "Total Visitors": 718.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 122.0, "Total Spend": 575.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 24.96 }, "geometry": { "type": "Point", "coordinates": [ -75.145206, 39.958203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-ch5", "Name": "La Roca", "Category": "Restaurants and Other Eating Places", "Address": "4161 Main St", "LATITUDE": 40.023561, "LONGITUDE": -75.219763, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 220.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 27.0, "Total Spend": 1038.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 41.2, "Median Spend per Customer": 42.97 }, "geometry": { "type": "Point", "coordinates": [ -75.219763, 40.023561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-5pv", "Name": "Bank & Bourbon", "Category": "Restaurants and Other Eating Places", "Address": "1200 Market St", "LATITUDE": 39.951655, "LONGITUDE": -75.160201, "DATE_RANGE_START": 2023, "Total Visits": 1474.0, "Total Visitors": 1026.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 120.0, "Total Spend": 163.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 65.14, "Median Spend per Customer": 65.14 }, "geometry": { "type": "Point", "coordinates": [ -75.160201, 39.951655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-yvz", "Name": "Panda Garden", "Category": "Restaurants and Other Eating Places", "Address": "5651 N 5th St", "LATITUDE": 40.037582, "LONGITUDE": -75.130053, "DATE_RANGE_START": 2023, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010274012.0, "Median Dwell Time": 1.0, "Total Spend": 418.0, "Total Transactions": 23.0, "Total Customers": 18.0, "Median Spend per Transaction": 14.34, "Median Spend per Customer": 16.27 }, "geometry": { "type": "Point", "coordinates": [ -75.130053, 40.037582 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5zz", "Name": "Moriarty's Restaurant and Bar", "Category": "Restaurants and Other Eating Places", "Address": "1116 Walnut St", "LATITUDE": 39.948634, "LONGITUDE": -75.159865, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 13.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 33.0, "Total Spend": 9027.0, "Total Transactions": 187.0, "Total Customers": 162.0, "Median Spend per Transaction": 38.3, "Median Spend per Customer": 47.06 }, "geometry": { "type": "Point", "coordinates": [ -75.159865, 39.948634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dwf-q9f", "Name": "Shotz", "Category": "Restaurants and Other Eating Places", "Address": "7417 Buist Ave", "LATITUDE": 39.911065, "LONGITUDE": -75.243379, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 84.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 83.0, "Total Spend": 41.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 16.55, "Median Spend per Customer": 16.55 }, "geometry": { "type": "Point", "coordinates": [ -75.243379, 39.911065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pnx-dsq", "Name": "Loco Pez", "Category": "Restaurants and Other Eating Places", "Address": "2401 E Norris St", "LATITUDE": 39.976842, "LONGITUDE": -75.127118, "DATE_RANGE_START": 2023, "Total Visits": 39.0, "Total Visitors": 31.0, "POI_CBG": 421010160002.0, "Median Dwell Time": 19.0, "Total Spend": 3946.0, "Total Transactions": 86.0, "Total Customers": 58.0, "Median Spend per Transaction": 39.81, "Median Spend per Customer": 54.68 }, "geometry": { "type": "Point", "coordinates": [ -75.127118, 39.976842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3101 W Allegheny Ave", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2023, "Total Visits": 371.0, "Total Visitors": 337.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 12.0, "Total Spend": 13261.0, "Total Transactions": 269.0, "Total Customers": 163.0, "Median Spend per Transaction": 28.18, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgf-dvz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4301 Market St", "LATITUDE": 39.958298, "LONGITUDE": -75.208207, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 4.0, "Total Spend": 3159.0, "Total Transactions": 139.0, "Total Customers": 116.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.208207, 39.958298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9w-575", "Name": "Taste King Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "10763 Bustleton Ave", "LATITUDE": 40.108989, "LONGITUDE": -75.025021, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 207.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 25.0, "Total Spend": 1288.0, "Total Transactions": 25.0, "Total Customers": 19.0, "Median Spend per Transaction": 51.98, "Median Spend per Customer": 56.39 }, "geometry": { "type": "Point", "coordinates": [ -75.025021, 40.108989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmb-dd9", "Name": "Town Food Market", "Category": "Grocery Stores", "Address": "428 S 13th St", "LATITUDE": 39.944522, "LONGITUDE": -75.163234, "DATE_RANGE_START": 2023, "Total Visits": 392.0, "Total Visitors": 392.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1.0, "Total Spend": 2276.0, "Total Transactions": 114.0, "Total Customers": 74.0, "Median Spend per Transaction": 16.3, "Median Spend per Customer": 18.39 }, "geometry": { "type": "Point", "coordinates": [ -75.163234, 39.944522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "Name": "Claudio's Specialty Foods", "Category": "Specialty Food Stores", "Address": "924 S 9th St # 26", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 58.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 5.0, "Total Spend": 7749.0, "Total Transactions": 153.0, "Total Customers": 115.0, "Median Spend per Transaction": 26.96, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "Name": "Beer Express", "Category": "Beer, Wine, and Liquor Stores", "Address": "11718 Bustleton Ave", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 148.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 3.0, "Total Spend": 7380.0, "Total Transactions": 240.0, "Total Customers": 152.0, "Median Spend per Transaction": 23.69, "Median Spend per Customer": 34.73 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pfz-bhq", "Name": "Pizza Jawn", "Category": "Restaurants and Other Eating Places", "Address": "4330 Main St", "LATITUDE": 40.025115, "LONGITUDE": -75.223217, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 3.0, "Total Spend": 765.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 21.11 }, "geometry": { "type": "Point", "coordinates": [ -75.223217, 40.025115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj5-fs5", "Name": "Billows Electric Supply Company", "Category": "Electronics and Appliance Stores", "Address": "101 E Luzerne St", "LATITUDE": 40.011251, "LONGITUDE": -75.125532, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 253.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 8.0, "Total Spend": 1134.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 106.94, "Median Spend per Customer": 106.94 }, "geometry": { "type": "Point", "coordinates": [ -75.125532, 40.011251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p8n-btv", "Name": "El New Sunrise Mini Market", "Category": "Grocery Stores", "Address": "2701 Levick St", "LATITUDE": 40.033488, "LONGITUDE": -75.066195, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010317004.0, "Median Dwell Time": null, "Total Spend": 55.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 6.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066195, 40.033488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste F6", "LATITUDE": 39.952106, "LONGITUDE": -75.16843, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 27.0, "Total Spend": 5730.0, "Total Transactions": 437.0, "Total Customers": 341.0, "Median Spend per Transaction": 12.64, "Median Spend per Customer": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.16843, 39.952106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1201 S Broad St", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 178.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 33.0, "Total Spend": 1005.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 101.51, "Median Spend per Customer": 101.51 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvr-z75", "Name": "Kim A Grocery & Deli", "Category": "Grocery Stores", "Address": "1840 S 58th St", "LATITUDE": 39.935748, "LONGITUDE": -75.228814, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 108.0, "POI_CBG": 421010065003.0, "Median Dwell Time": 9.0, "Total Spend": 82.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.228814, 39.935748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7z-6tv", "Name": "Dollar Discount", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6812 Rising Sun Ave", "LATITUDE": 40.055124, "LONGITUDE": -75.090736, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010307003.0, "Median Dwell Time": 6.0, "Total Spend": 120.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 7.87, "Median Spend per Customer": 7.87 }, "geometry": { "type": "Point", "coordinates": [ -75.090736, 40.055124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p7w-gc5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7965 Verree Rd", "LATITUDE": 40.072472, "LONGITUDE": -75.075745, "DATE_RANGE_START": 2023, "Total Visits": 686.0, "Total Visitors": 531.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 4.0, "Total Spend": 361.0, "Total Transactions": 28.0, "Total Customers": 15.0, "Median Spend per Transaction": 8.93, "Median Spend per Customer": 23.86 }, "geometry": { "type": "Point", "coordinates": [ -75.075745, 40.072472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1800 South St", "LATITUDE": 39.944247, "LONGITUDE": -75.172187, "DATE_RANGE_START": 2023, "Total Visits": 770.0, "Total Visitors": 534.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 1.0, "Total Spend": 5907.0, "Total Transactions": 302.0, "Total Customers": 153.0, "Median Spend per Transaction": 13.58, "Median Spend per Customer": 23.66 }, "geometry": { "type": "Point", "coordinates": [ -75.172187, 39.944247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-qfz", "Name": "Workshop Underground", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1544 South St", "LATITUDE": 39.943884, "LONGITUDE": -75.16864, "DATE_RANGE_START": 2023, "Total Visits": 288.0, "Total Visitors": 154.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 38.0, "Total Spend": 552.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 220.32, "Median Spend per Customer": 220.32 }, "geometry": { "type": "Point", "coordinates": [ -75.16864, 39.943884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj4-y7q", "Name": "Brothers Shoes", "Category": "Shoe Stores", "Address": "3619 Germantown Ave", "LATITUDE": 40.007976, "LONGITUDE": -75.150257, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010203001.0, "Median Dwell Time": null, "Total Spend": 244.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 74.99, "Median Spend per Customer": 74.99 }, "geometry": { "type": "Point", "coordinates": [ -75.150257, 40.007976 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7730 City Ave", "LATITUDE": 39.977115, "LONGITUDE": -75.274328, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 10.0, "Total Spend": 12541.0, "Total Transactions": 243.0, "Total Customers": 204.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.274328, 39.977115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgy-ks5", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "701 E Cathedral Rd", "LATITUDE": 40.06356, "LONGITUDE": -75.238235, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 271.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 61.0, "Total Spend": 11372.0, "Total Transactions": 684.0, "Total Customers": 462.0, "Median Spend per Transaction": 14.39, "Median Spend per Customer": 17.98 }, "geometry": { "type": "Point", "coordinates": [ -75.238235, 40.06356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-6p9", "Name": "Element by Westin", "Category": "Traveler Accommodation", "Address": "1441 Chestnut St", "LATITUDE": 39.951602, "LONGITUDE": -75.164908, "DATE_RANGE_START": 2023, "Total Visits": 268.0, "Total Visitors": 200.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 2544.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 1015.32, "Median Spend per Customer": 1015.32 }, "geometry": { "type": "Point", "coordinates": [ -75.164908, 39.951602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "Name": "Taco Loco", "Category": "Restaurants and Other Eating Places", "Address": "400 Washington Ave", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2023, "Total Visits": 78.0, "Total Visitors": 59.0, "POI_CBG": 421010025004.0, "Median Dwell Time": null, "Total Spend": 554.0, "Total Transactions": 30.0, "Total Customers": 29.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-226@628-pmb-z9f", "Name": "School of Rock", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "421 N 7th St", "LATITUDE": 39.95914, "LONGITUDE": -75.150047, "DATE_RANGE_START": 2023, "Total Visits": 643.0, "Total Visitors": 535.0, "POI_CBG": 421010376001.0, "Median Dwell Time": 138.0, "Total Spend": 590.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 40.07, "Median Spend per Customer": 64.29 }, "geometry": { "type": "Point", "coordinates": [ -75.150047, 39.95914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "Name": "Royal's Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "7802 Limekiln Pike", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 1.0, "Total Spend": 2537.0, "Total Transactions": 61.0, "Total Customers": 48.0, "Median Spend per Transaction": 30.66, "Median Spend per Customer": 42.58 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6017 N Broad St", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2023, "Total Visits": 521.0, "Total Visitors": 377.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 6.0, "Total Spend": 9107.0, "Total Transactions": 1124.0, "Total Customers": 562.0, "Median Spend per Transaction": 6.98, "Median Spend per Customer": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "Name": "Mac Mart Food Truck", "Category": "Restaurants and Other Eating Places", "Address": "104 S 18th St", "LATITUDE": 39.951439, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 223.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 1544.0, "Total Transactions": 99.0, "Total Customers": 90.0, "Median Spend per Transaction": 13.48, "Median Spend per Customer": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgm-249", "Name": "Alice Alexander", "Category": "Clothing Stores", "Address": "4056 Ridge Ave", "LATITUDE": 40.007621, "LONGITUDE": -75.190832, "DATE_RANGE_START": 2023, "Total Visits": 401.0, "Total Visitors": 383.0, "POI_CBG": 421010170001.0, "Median Dwell Time": 1.0, "Total Spend": 76.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 16.24, "Median Spend per Customer": 16.24 }, "geometry": { "type": "Point", "coordinates": [ -75.190832, 40.007621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-223@628-pm3-vpv", "Name": "Asian Fusion", "Category": "Restaurants and Other Eating Places", "Address": "1739 E Passyunk Ave", "LATITUDE": 39.927745, "LONGITUDE": -75.16578, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 99.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 1.0, "Total Spend": 499.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 29.95, "Median Spend per Customer": 29.29 }, "geometry": { "type": "Point", "coordinates": [ -75.16578, 39.927745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "Name": "Giorgio On Pine", "Category": "Restaurants and Other Eating Places", "Address": "1328 Pine St", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2023, "Total Visits": 153.0, "Total Visitors": 153.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 65.0, "Total Spend": 12334.0, "Total Transactions": 142.0, "Total Customers": 101.0, "Median Spend per Transaction": 58.16, "Median Spend per Customer": 80.9 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2023, "Total Visits": 278.0, "Total Visitors": 271.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 24.0, "Total Spend": 5492.0, "Total Transactions": 138.0, "Total Customers": 122.0, "Median Spend per Transaction": 30.08, "Median Spend per Customer": 33.8 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "Name": "Gallo's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "8101 Roosevelt Blvd", "LATITUDE": 40.057623, "LONGITUDE": -75.044487, "DATE_RANGE_START": 2023, "Total Visits": 710.0, "Total Visitors": 402.0, "POI_CBG": 421010333001.0, "Median Dwell Time": 129.0, "Total Spend": 5375.0, "Total Transactions": 81.0, "Total Customers": 69.0, "Median Spend per Transaction": 60.76, "Median Spend per Customer": 65.14 }, "geometry": { "type": "Point", "coordinates": [ -75.044487, 40.057623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "Name": "Linden Italian Market", "Category": "Restaurants and Other Eating Places", "Address": "4011 Linden Ave", "LATITUDE": 40.05451, "LONGITUDE": -75.004313, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 234.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 9.0, "Total Spend": 709.0, "Total Transactions": 46.0, "Total Customers": 30.0, "Median Spend per Transaction": 12.29, "Median Spend per Customer": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.004313, 40.05451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dw9-835", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave # E8A", "LATITUDE": 39.878274, "LONGITUDE": -75.238945, "DATE_RANGE_START": 2023, "Total Visits": 427.0, "Total Visitors": 347.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 7564.0, "Total Transactions": 476.0, "Total Customers": 445.0, "Median Spend per Transaction": 14.38, "Median Spend per Customer": 15.28 }, "geometry": { "type": "Point", "coordinates": [ -75.238945, 39.878274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9900 Frankford Ave", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2023, "Total Visits": 716.0, "Total Visitors": 489.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 6.0, "Total Spend": 4577.0, "Total Transactions": 587.0, "Total Customers": 276.0, "Median Spend per Transaction": 6.28, "Median Spend per Customer": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-228@628-pm8-rx5", "Name": "The Perfect Scoop", "Category": "Restaurants and Other Eating Places", "Address": "2020 Penrose Ave", "LATITUDE": 39.91198, "LONGITUDE": -75.183207, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 98.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 11.0, "Total Spend": 25.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.85, "Median Spend per Customer": 9.85 }, "geometry": { "type": "Point", "coordinates": [ -75.183207, 39.91198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnw-nnq", "Name": "Kung Fu Necktie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1250 N Front St", "LATITUDE": 39.970274, "LONGITUDE": -75.135922, "DATE_RANGE_START": 2023, "Total Visits": 492.0, "Total Visitors": 447.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 30.0, "Total Spend": 209.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 73.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135922, 39.970274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6101 Ridge Ave", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2023, "Total Visits": 485.0, "Total Visitors": 318.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 4.0, "Total Spend": 314.0, "Total Transactions": 21.0, "Total Customers": 18.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 9.41 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmd-vmk", "Name": "Erawan Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "123 S 23rd St", "LATITUDE": 39.951764, "LONGITUDE": -75.178105, "DATE_RANGE_START": 2023, "Total Visits": 272.0, "Total Visitors": 90.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 242.0, "Total Spend": 280.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 39.64, "Median Spend per Customer": 39.64 }, "geometry": { "type": "Point", "coordinates": [ -75.178105, 39.951764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "Name": "L'anima", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 17th St", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2023, "Total Visits": 820.0, "Total Visitors": 526.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 6.0, "Total Spend": 236.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 94.11, "Median Spend per Customer": 94.11 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-vs5", "Name": "New S & D Coffee Shop", "Category": "Restaurants and Other Eating Places", "Address": "601 Dickinson St", "LATITUDE": 39.930165, "LONGITUDE": -75.155106, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 215.0, "POI_CBG": 421010028013.0, "Median Dwell Time": 2.0, "Total Spend": 77.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 19.49 }, "geometry": { "type": "Point", "coordinates": [ -75.155106, 39.930165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-w49", "Name": "Seafood Unlimited", "Category": "Restaurants and Other Eating Places", "Address": "270 S 20th St", "LATITUDE": 39.948416, "LONGITUDE": -75.174494, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 189.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 6.0, "Total Spend": 504.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 44.48, "Median Spend per Customer": 98.76 }, "geometry": { "type": "Point", "coordinates": [ -75.174494, 39.948416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11000 Roosevelt Blvd Ste 3", "LATITUDE": 40.102146, "LONGITUDE": -75.010909, "DATE_RANGE_START": 2023, "Total Visits": 1144.0, "Total Visitors": 942.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 21.0, "Total Spend": 387392.0, "Total Transactions": 9996.0, "Total Customers": 5643.0, "Median Spend per Transaction": 24.99, "Median Spend per Customer": 41.09 }, "geometry": { "type": "Point", "coordinates": [ -75.010909, 40.102146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-224@628-phq-rp9", "Name": "Dollar Plus Outlet", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1909 E Washington Ln", "LATITUDE": 40.066543, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2023, "Total Visits": 496.0, "Total Visitors": 425.0, "POI_CBG": 421010263023.0, "Median Dwell Time": 26.0, "Total Spend": 1355.0, "Total Transactions": 71.0, "Total Customers": 61.0, "Median Spend per Transaction": 13.08, "Median Spend per Customer": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 40.066543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "Name": "Fishtown Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1802 Frankford Ave", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2023, "Total Visits": 65.0, "Total Visitors": 54.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 10.0, "Total Spend": 856.0, "Total Transactions": 39.0, "Total Customers": 36.0, "Median Spend per Transaction": 13.47, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pj8-f2k", "Name": "Yee Garden", "Category": "Restaurants and Other Eating Places", "Address": "5361 Oxford Ave", "LATITUDE": 40.029872, "LONGITUDE": -75.084693, "DATE_RANGE_START": 2023, "Total Visits": 114.0, "Total Visitors": 114.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 4.0, "Total Spend": 81.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 32.5, "Median Spend per Customer": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.084693, 40.029872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@63s-dvx-xh5", "Name": "Joe's Food Market", "Category": "Specialty Food Stores", "Address": "4517 Baltimore Ave", "LATITUDE": 39.949235, "LONGITUDE": -75.21368, "DATE_RANGE_START": 2023, "Total Visits": 405.0, "Total Visitors": 268.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 12.0, "Total Spend": 28.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21368, 39.949235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "Name": "Beer Love", "Category": "Beer, Wine, and Liquor Stores", "Address": "714 S 4th St", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2023, "Total Visits": 380.0, "Total Visitors": 324.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 5.0, "Total Spend": 3015.0, "Total Transactions": 99.0, "Total Customers": 71.0, "Median Spend per Transaction": 19.26, "Median Spend per Customer": 24.19 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p82-92k", "Name": "Pharmacy of America II", "Category": "Health and Personal Care Stores", "Address": "5872 Oxford Ave", "LATITUDE": 40.034587, "LONGITUDE": -75.087194, "DATE_RANGE_START": 2023, "Total Visits": 914.0, "Total Visitors": 589.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 74.0, "Total Spend": 101.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 4.0 }, "geometry": { "type": "Point", "coordinates": [ -75.087194, 40.034587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "Name": "T cafe", "Category": "Restaurants and Other Eating Places", "Address": "108 Chestnut St", "LATITUDE": 39.947994, "LONGITUDE": -75.142941, "DATE_RANGE_START": 2023, "Total Visits": 397.0, "Total Visitors": 356.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 6.0, "Total Spend": 4098.0, "Total Transactions": 228.0, "Total Customers": 184.0, "Median Spend per Transaction": 11.45, "Median Spend per Customer": 13.53 }, "geometry": { "type": "Point", "coordinates": [ -75.142941, 39.947994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vfz", "Name": "Four Worlds Bakery", "Category": "Restaurants and Other Eating Places", "Address": "4634 Woodland Ave", "LATITUDE": 39.943416, "LONGITUDE": -75.210531, "DATE_RANGE_START": 2023, "Total Visits": 289.0, "Total Visitors": 125.0, "POI_CBG": 421010074001.0, "Median Dwell Time": 140.0, "Total Spend": 765.0, "Total Transactions": 61.0, "Total Customers": 44.0, "Median Spend per Transaction": 10.2, "Median Spend per Customer": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.210531, 39.943416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "Name": "Sumo Sushi", "Category": "Restaurants and Other Eating Places", "Address": "401 S 13th St", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010011014.0, "Median Dwell Time": 1.0, "Total Spend": 500.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 15.61, "Median Spend per Customer": 15.61 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5690 Rising Sun Ave", "LATITUDE": 40.039487, "LONGITUDE": -75.109924, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 80.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 5.0, "Total Spend": 9818.0, "Total Transactions": 341.0, "Total Customers": 229.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 32.11 }, "geometry": { "type": "Point", "coordinates": [ -75.109924, 40.039487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "Name": "Castle Roxx", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "105 Shurs Ln", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 175.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 5.0, "Total Spend": 2528.0, "Total Transactions": 115.0, "Total Customers": 76.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-p9k-2zf", "Name": "Dollar Surplus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103109, "LONGITUDE": -75.010252, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 485.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 24.0, "Total Spend": 243.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 12.54, "Median Spend per Customer": 12.54 }, "geometry": { "type": "Point", "coordinates": [ -75.010252, 40.103109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgj-cqz", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St Ste 5", "LATITUDE": 39.977801, "LONGITUDE": -75.158494, "DATE_RANGE_START": 2023, "Total Visits": 2743.0, "Total Visitors": 1938.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 21.0, "Total Spend": 898.0, "Total Transactions": 49.0, "Total Customers": 43.0, "Median Spend per Transaction": 11.9, "Median Spend per Customer": 16.47 }, "geometry": { "type": "Point", "coordinates": [ -75.158494, 39.977801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "Name": "Circle Thrift", "Category": "Used Merchandise Stores", "Address": "2233 Frankford Ave", "LATITUDE": 39.980275, "LONGITUDE": -75.128604, "DATE_RANGE_START": 2023, "Total Visits": 405.0, "Total Visitors": 152.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 45.0, "Total Spend": 4109.0, "Total Transactions": 247.0, "Total Customers": 167.0, "Median Spend per Transaction": 10.2, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.128604, 39.980275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-w49", "Name": "The Royal Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "272 S 20th St", "LATITUDE": 39.948373, "LONGITUDE": -75.174503, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 163.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 19.0, "Total Spend": 298.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.42, "Median Spend per Customer": 25.42 }, "geometry": { "type": "Point", "coordinates": [ -75.174503, 39.948373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "Name": "H&M (Hennes & Mauritz)", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.08882, "LONGITUDE": -74.961808, "DATE_RANGE_START": 2023, "Total Visits": 981.0, "Total Visitors": 834.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 38.0, "Total Spend": 11272.0, "Total Transactions": 356.0, "Total Customers": 104.0, "Median Spend per Transaction": 12.99, "Median Spend per Customer": 38.07 }, "geometry": { "type": "Point", "coordinates": [ -74.961808, 40.08882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnw-nt9", "Name": "Fishtown Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1301 Frankford Ave", "LATITUDE": 39.970532, "LONGITUDE": -75.134266, "DATE_RANGE_START": 2023, "Total Visits": 272.0, "Total Visitors": 262.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 1.0, "Total Spend": 13008.0, "Total Transactions": 489.0, "Total Customers": 328.0, "Median Spend per Transaction": 22.8, "Median Spend per Customer": 28.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134266, 39.970532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phz-q4v", "Name": "Jj's Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3800 J St", "LATITUDE": 40.005715, "LONGITUDE": -75.107525, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 204.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 31.0, "Total Spend": 1456.0, "Total Transactions": 35.0, "Total Customers": 29.0, "Median Spend per Transaction": 38.5, "Median Spend per Customer": 37.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107525, 40.005715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "3208 Red Lion Rd", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 129.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 28.0, "Total Spend": 3703.0, "Total Transactions": 143.0, "Total Customers": 130.0, "Median Spend per Transaction": 25.71, "Median Spend per Customer": 26.42 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-8y9", "Name": "Accu Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4802 Spruce St", "LATITUDE": 39.953369, "LONGITUDE": -75.218457, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 195.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 5.0, "Total Spend": 2867.0, "Total Transactions": 127.0, "Total Customers": 93.0, "Median Spend per Transaction": 19.63, "Median Spend per Customer": 26.24 }, "geometry": { "type": "Point", "coordinates": [ -75.218457, 39.953369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2023, "Total Visits": 1090.0, "Total Visitors": 665.0, "POI_CBG": 421010098011.0, "Median Dwell Time": 18.0, "Total Spend": 9997.0, "Total Transactions": 832.0, "Total Customers": 566.0, "Median Spend per Transaction": 10.16, "Median Spend per Customer": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-224@628-pm9-tjv", "Name": "Destiny Jewelery and Perfume", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "810 Chestnut St", "LATITUDE": 39.949441, "LONGITUDE": -75.154313, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 113.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154313, 39.949441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "Name": "Alexa Pharmacy", "Category": "Health and Personal Care Stores", "Address": "919 Tyson Ave", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 38.0, "POI_CBG": 421010308003.0, "Median Dwell Time": 370.0, "Total Spend": 1975.0, "Total Transactions": 38.0, "Total Customers": 31.0, "Median Spend per Transaction": 37.5, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "Name": "A Plus", "Category": "Grocery Stores", "Address": "5240 Torresdale Ave", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2023, "Total Visits": 609.0, "Total Visitors": 569.0, "POI_CBG": 421010298005.0, "Median Dwell Time": 5.0, "Total Spend": 1175.0, "Total Transactions": 81.0, "Total Customers": 54.0, "Median Spend per Transaction": 12.51, "Median Spend per Customer": 13.62 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-fvf", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "138 W Chelten Ave", "LATITUDE": 40.0328, "LONGITUDE": -75.177311, "DATE_RANGE_START": 2023, "Total Visits": 322.0, "Total Visitors": 292.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 11.0, "Total Spend": 1698.0, "Total Transactions": 63.0, "Total Customers": 50.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 20.16 }, "geometry": { "type": "Point", "coordinates": [ -75.177311, 40.0328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pgf-3bk", "Name": "Promed Market", "Category": "Specialty Food Stores", "Address": "3535 Science Ctr", "LATITUDE": 39.956577, "LONGITUDE": -75.193707, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 15.0, "Total Spend": 893.0, "Total Transactions": 19.0, "Total Customers": 15.0, "Median Spend per Transaction": 48.43, "Median Spend per Customer": 56.92 }, "geometry": { "type": "Point", "coordinates": [ -75.193707, 39.956577 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "2800 Fox St Ste 110 Unit D", "LATITUDE": 40.008832, "LONGITUDE": -75.176518, "DATE_RANGE_START": 2023, "Total Visits": 894.0, "Total Visitors": 556.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 48.0, "Total Spend": 23772.0, "Total Transactions": 685.0, "Total Customers": 596.0, "Median Spend per Transaction": 24.78, "Median Spend per Customer": 28.13 }, "geometry": { "type": "Point", "coordinates": [ -75.176518, 40.008832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-snq", "Name": "Motel 6", "Category": "Traveler Accommodation", "Address": "11580 Roosevelt Blvd", "LATITUDE": 40.103327, "LONGITUDE": -75.005156, "DATE_RANGE_START": 2023, "Total Visits": 288.0, "Total Visitors": 194.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 122.0, "Total Spend": 2925.0, "Total Transactions": 19.0, "Total Customers": 15.0, "Median Spend per Transaction": 139.49, "Median Spend per Customer": 136.58 }, "geometry": { "type": "Point", "coordinates": [ -75.005156, 40.103327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmf-jgk", "Name": "Dizengoff", "Category": "Restaurants and Other Eating Places", "Address": "1625 Sansom St", "LATITUDE": 39.950806, "LONGITUDE": -75.168522, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 6.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 242.0, "Total Spend": 258.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168522, 39.950806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pmf-ht9", "Name": "Sonesta Philadelphia Rittenhouse Square", "Category": "Traveler Accommodation", "Address": "1800 Market St", "LATITUDE": 39.952877, "LONGITUDE": -75.170604, "DATE_RANGE_START": 2023, "Total Visits": 1015.0, "Total Visitors": 695.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 126.0, "Total Spend": 139.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170604, 39.952877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgh-vs5", "Name": "Honey Truck", "Category": "Restaurants and Other Eating Places", "Address": "W Norris St @ N 12th St", "LATITUDE": 39.982937, "LONGITUDE": -75.15332, "DATE_RANGE_START": 2023, "Total Visits": 621.0, "Total Visitors": 297.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 145.0, "Total Spend": 18.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.29, "Median Spend per Customer": 7.29 }, "geometry": { "type": "Point", "coordinates": [ -75.15332, 39.982937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "Name": "Garden Court Eatery & Beer", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4725 Pine St", "LATITUDE": 39.952634, "LONGITUDE": -75.216952, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 284.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 16.0, "Total Spend": 1273.0, "Total Transactions": 81.0, "Total Customers": 55.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.216952, 39.952634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm4-b6k", "Name": "Two Eagles Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 20th St", "LATITUDE": 39.934031, "LONGITUDE": -75.177208, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 11.0, "Total Spend": 2577.0, "Total Transactions": 106.0, "Total Customers": 83.0, "Median Spend per Transaction": 18.22, "Median Spend per Customer": 24.68 }, "geometry": { "type": "Point", "coordinates": [ -75.177208, 39.934031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "Name": "Bubblefish", "Category": "Restaurants and Other Eating Places", "Address": "909 Arch St", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2023, "Total Visits": 4224.0, "Total Visitors": 2510.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 36.0, "Total Spend": 4223.0, "Total Transactions": 95.0, "Total Customers": 94.0, "Median Spend per Transaction": 38.98, "Median Spend per Customer": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgj-6hq", "Name": "Diamond Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1700 W Diamond St", "LATITUDE": 39.985195, "LONGITUDE": -75.161525, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 188.0, "POI_CBG": 421010153002.0, "Median Dwell Time": 7.0, "Total Spend": 1294.0, "Total Transactions": 93.0, "Total Customers": 70.0, "Median Spend per Transaction": 12.09, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161525, 39.985195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmb-xnq", "Name": "Sakura Mandarin", "Category": "Restaurants and Other Eating Places", "Address": "1038 Race St", "LATITUDE": 39.955481, "LONGITUDE": -75.157295, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 1380.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 54.39, "Median Spend per Customer": 59.64 }, "geometry": { "type": "Point", "coordinates": [ -75.157295, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1511 Locust St", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2023, "Total Visits": 284.0, "Total Visitors": 253.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 2.0, "Total Spend": 6817.0, "Total Transactions": 190.0, "Total Customers": 135.0, "Median Spend per Transaction": 30.38, "Median Spend per Customer": 38.81 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pjb-6c5", "Name": "Broadview Kitchen & Bath", "Category": "Home Furnishings Stores", "Address": "6330 N Broad St", "LATITUDE": 40.050005, "LONGITUDE": -75.142784, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 94.0, "POI_CBG": 421010277001.0, "Median Dwell Time": 9.0, "Total Spend": 1153.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 460.08, "Median Spend per Customer": 460.08 }, "geometry": { "type": "Point", "coordinates": [ -75.142784, 40.050005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-975", "Name": "DK Sushi", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.952998, "LONGITUDE": -75.192279, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 12.0, "Total Spend": 338.0, "Total Transactions": 15.0, "Total Customers": 11.0, "Median Spend per Transaction": 19.65, "Median Spend per Customer": 31.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192279, 39.952998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-nqz", "Name": "Thanal Indian Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1939 Arch St", "LATITUDE": 39.955758, "LONGITUDE": -75.172555, "DATE_RANGE_START": 2023, "Total Visits": 276.0, "Total Visitors": 48.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 669.0, "Total Spend": 669.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 71.76, "Median Spend per Customer": 71.76 }, "geometry": { "type": "Point", "coordinates": [ -75.172555, 39.955758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "Name": "Crab Shack", "Category": "Specialty Food Stores", "Address": "4800 N 16th St", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2023, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 7.0, "Total Spend": 3801.0, "Total Transactions": 100.0, "Total Customers": 84.0, "Median Spend per Transaction": 27.49, "Median Spend per Customer": 38.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "Name": "Pizzeria Cappelli", "Category": "Restaurants and Other Eating Places", "Address": "209 S 13th St", "LATITUDE": 39.948424, "LONGITUDE": -75.162117, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 5.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 4.0, "Total Spend": 11581.0, "Total Transactions": 477.0, "Total Customers": 395.0, "Median Spend per Transaction": 19.86, "Median Spend per Customer": 23.61 }, "geometry": { "type": "Point", "coordinates": [ -75.162117, 39.948424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2023, "Total Visits": 179.0, "Total Visitors": 170.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 11.0, "Total Spend": 441.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-wkz", "Name": "Sassafras Bar", "Category": "Restaurants and Other Eating Places", "Address": "48 S 2nd St", "LATITUDE": 39.948812, "LONGITUDE": -75.144182, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 184.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 301.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 78.84, "Median Spend per Customer": 78.84 }, "geometry": { "type": "Point", "coordinates": [ -75.144182, 39.948812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6240 Stenton Ave", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 106.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 32.0, "Total Spend": 3261.0, "Total Transactions": 197.0, "Total Customers": 144.0, "Median Spend per Transaction": 12.73, "Median Spend per Customer": 16.61 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm8-rp9", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "2308 W Oregon Ave Ste C", "LATITUDE": 39.918195, "LONGITUDE": -75.185015, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 21.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 85.0, "Total Spend": 2429.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 99.95, "Median Spend per Customer": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185015, 39.918195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phd-h89", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "4600 City Ave", "LATITUDE": 40.002664, "LONGITUDE": -75.222755, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 144.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 9.0, "Total Spend": 1445.0, "Total Transactions": 79.0, "Total Customers": 75.0, "Median Spend per Transaction": 15.06, "Median Spend per Customer": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.222755, 40.002664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "Name": "Malelani Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6734 Germantown Ave", "LATITUDE": 40.05292, "LONGITUDE": -75.18611, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 109.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 4.0, "Total Spend": 1467.0, "Total Transactions": 53.0, "Total Customers": 38.0, "Median Spend per Transaction": 25.46, "Median Spend per Customer": 24.01 }, "geometry": { "type": "Point", "coordinates": [ -75.18611, 40.05292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pp2-8d9", "Name": "Bee Flowers", "Category": "Florists", "Address": "2637 E Allegheny Ave", "LATITUDE": 39.984969, "LONGITUDE": -75.102796, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 410.0, "Total Spend": 56.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.5, "Median Spend per Customer": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102796, 39.984969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p7x-6tv", "Name": "Artifax", "Category": "Other Miscellaneous Store Retailers", "Address": "2446 Cottman Ave", "LATITUDE": 40.046392, "LONGITUDE": -75.058077, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010314023.0, "Median Dwell Time": null, "Total Spend": 4116.0, "Total Transactions": 100.0, "Total Customers": 65.0, "Median Spend per Transaction": 32.35, "Median Spend per Customer": 36.54 }, "geometry": { "type": "Point", "coordinates": [ -75.058077, 40.046392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p75-3nq", "Name": "Torresdale Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4315 Megargee St", "LATITUDE": 40.048663, "LONGITUDE": -75.011484, "DATE_RANGE_START": 2023, "Total Visits": 200.0, "Total Visitors": 111.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 2.0, "Total Spend": 386.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 24.83 }, "geometry": { "type": "Point", "coordinates": [ -75.011484, 40.048663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-ty9", "Name": "La Famiglia Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "8 S Front St", "LATITUDE": 39.949369, "LONGITUDE": -75.142406, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 182.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 33.0, "Total Spend": 7738.0, "Total Transactions": 73.0, "Total Customers": 71.0, "Median Spend per Transaction": 97.77, "Median Spend per Customer": 102.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142406, 39.949369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-td9", "Name": "NY Bagel & Deli Shop", "Category": "Restaurants and Other Eating Places", "Address": "1120 Buttonwood St", "LATITUDE": 39.96081, "LONGITUDE": -75.157392, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 101.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 49.0, "Total Spend": 2378.0, "Total Transactions": 128.0, "Total Customers": 100.0, "Median Spend per Transaction": 15.02, "Median Spend per Customer": 16.62 }, "geometry": { "type": "Point", "coordinates": [ -75.157392, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm6-gx5", "Name": "King Food", "Category": "Restaurants and Other Eating Places", "Address": "2554 S American St", "LATITUDE": 39.915882, "LONGITUDE": -75.152424, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 11.0, "Total Spend": 48.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.152424, 39.915882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5601 Vine St", "LATITUDE": 39.966684, "LONGITUDE": -75.232973, "DATE_RANGE_START": 2023, "Total Visits": 2742.0, "Total Visitors": 1328.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 21.0, "Total Spend": 1954.0, "Total Transactions": 83.0, "Total Customers": 54.0, "Median Spend per Transaction": 15.76, "Median Spend per Customer": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.232973, 39.966684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "Name": "CHAPMAN NISSAN", "Category": "Automobile Dealers", "Address": "6723 Essington Ave", "LATITUDE": 39.910462, "LONGITUDE": -75.223311, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 28.0, "Total Spend": 14084.0, "Total Transactions": 36.0, "Total Customers": 31.0, "Median Spend per Transaction": 150.0, "Median Spend per Customer": 198.78 }, "geometry": { "type": "Point", "coordinates": [ -75.223311, 39.910462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8t-wc5", "Name": "Claire's", "Category": "Clothing Stores", "Address": "1425 Woodhaven And Knights Rd", "LATITUDE": 40.086553, "LONGITUDE": -74.962297, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 483.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 26.0, "Total Spend": 63.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962297, 40.086553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "Name": "Riverwards Produce", "Category": "Grocery Stores", "Address": "2200 E Norris St", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2023, "Total Visits": 284.0, "Total Visitors": 172.0, "POI_CBG": 421010158001.0, "Median Dwell Time": 6.0, "Total Spend": 16882.0, "Total Transactions": 602.0, "Total Customers": 190.0, "Median Spend per Transaction": 19.95, "Median Spend per Customer": 51.89 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "3348 Grant Ave", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 247.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 6.0, "Total Spend": 201.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 26.1, "Median Spend per Customer": 26.1 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22v@628-pmb-8sq", "Name": "American Eagle & Aerie Outlet Fashion District Phila", "Category": "Clothing Stores", "Address": "1101 Market St Ste 2145", "LATITUDE": 39.951824, "LONGITUDE": -75.155936, "DATE_RANGE_START": 2023, "Total Visits": 458.0, "Total Visitors": 426.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 26068.0, "Total Transactions": 556.0, "Total Customers": 472.0, "Median Spend per Transaction": 33.97, "Median Spend per Customer": 39.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155936, 39.951824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1851 S Columbus Blvd Ste G", "LATITUDE": 39.92355, "LONGITUDE": -75.13918, "DATE_RANGE_START": 2023, "Total Visits": 913.0, "Total Visitors": 729.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 14.0, "Total Spend": 4064.0, "Total Transactions": 79.0, "Total Customers": 74.0, "Median Spend per Transaction": 42.34, "Median Spend per Customer": 43.64 }, "geometry": { "type": "Point", "coordinates": [ -75.13918, 39.92355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "Name": "Suraya", "Category": "Restaurants and Other Eating Places", "Address": "1528 Frankford Ave", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2023, "Total Visits": 366.0, "Total Visitors": 366.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 58.0, "Total Spend": 6496.0, "Total Transactions": 46.0, "Total Customers": 41.0, "Median Spend per Transaction": 117.55, "Median Spend per Customer": 121.84 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6201 N Front St", "LATITUDE": 40.045779, "LONGITUDE": -75.118702, "DATE_RANGE_START": 2023, "Total Visits": 4739.0, "Total Visitors": 2381.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 23.0, "Total Spend": 855.0, "Total Transactions": 74.0, "Total Customers": 58.0, "Median Spend per Transaction": 7.81, "Median Spend per Customer": 9.24 }, "geometry": { "type": "Point", "coordinates": [ -75.118702, 40.045779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmb-xyv", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "216 N 10th St", "LATITUDE": 39.955925, "LONGITUDE": -75.155901, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 189.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 3.0, "Total Spend": 294.0, "Total Transactions": 29.0, "Total Customers": 25.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.155901, 39.955925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvr-fzz", "Name": "Lucky Star", "Category": "Restaurants and Other Eating Places", "Address": "6727 Elmwood Ave", "LATITUDE": 39.920023, "LONGITUDE": -75.233805, "DATE_RANGE_START": 2023, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 7.0, "Total Spend": 522.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 38.0, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.233805, 39.920023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm8-ffz", "Name": "Phil's Battery Service", "Category": "Electronics and Appliance Stores", "Address": "1854 E Moyamensing Ave", "LATITUDE": 39.924742, "LONGITUDE": -75.152309, "DATE_RANGE_START": 2023, "Total Visits": 420.0, "Total Visitors": 341.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 16.0, "Total Spend": 319.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 85.0, "Median Spend per Customer": 127.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152309, 39.924742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "4371 Richmond St", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2023, "Total Visits": 1781.0, "Total Visitors": 799.0, "POI_CBG": 421010183001.0, "Median Dwell Time": 8.0, "Total Spend": 19445.0, "Total Transactions": 1541.0, "Total Customers": 426.0, "Median Spend per Transaction": 10.07, "Median Spend per Customer": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22g@628-phd-q75", "Name": "Monument Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4160 Monument Rd", "LATITUDE": 40.002596, "LONGITUDE": -75.214314, "DATE_RANGE_START": 2023, "Total Visits": 2146.0, "Total Visitors": 1136.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 15.0, "Total Spend": 22.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.59, "Median Spend per Customer": 8.59 }, "geometry": { "type": "Point", "coordinates": [ -75.214314, 40.002596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "Name": "Microtel Inn and Suites", "Category": "Traveler Accommodation", "Address": "8840 Tinicum Blvd", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2023, "Total Visits": 496.0, "Total Visitors": 307.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 154.0, "Total Spend": 5559.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 159.29, "Median Spend per Customer": 172.63 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sbk", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.913274, "LONGITUDE": -75.154575, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 31.0, "Total Spend": 2101.0, "Total Transactions": 46.0, "Total Customers": 44.0, "Median Spend per Transaction": 33.62, "Median Spend per Customer": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.154575, 39.913274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "Name": "House of Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "3520 Cottman Ave", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2023, "Total Visits": 778.0, "Total Visitors": 535.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 9.0, "Total Spend": 618.0, "Total Transactions": 16.0, "Total Customers": 15.0, "Median Spend per Transaction": 33.32, "Median Spend per Customer": 32.81 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-8jv", "Name": "Newmans Grill", "Category": "Restaurants and Other Eating Places", "Address": "5946 Germantown Ave", "LATITUDE": 40.038927, "LONGITUDE": -75.177558, "DATE_RANGE_START": 2023, "Total Visits": 178.0, "Total Visitors": 178.0, "POI_CBG": 421010238003.0, "Median Dwell Time": 6.0, "Total Spend": 420.0, "Total Transactions": 24.0, "Total Customers": 23.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 17.85 }, "geometry": { "type": "Point", "coordinates": [ -75.177558, 40.038927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "Name": "Kaffa Crossing", "Category": "Restaurants and Other Eating Places", "Address": "4421 Chestnut St", "LATITUDE": 39.956913, "LONGITUDE": -75.210358, "DATE_RANGE_START": 2023, "Total Visits": 529.0, "Total Visitors": 406.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 48.0, "Total Spend": 1060.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 34.02, "Median Spend per Customer": 34.02 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 39.956913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-ph8-qmk", "Name": "Main Line Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "7553 Haverford Ave", "LATITUDE": 39.979583, "LONGITUDE": -75.26816, "DATE_RANGE_START": 2023, "Total Visits": 178.0, "Total Visitors": 162.0, "POI_CBG": 421010098011.0, "Median Dwell Time": 2.0, "Total Spend": 165.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.26816, 39.979583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Girard Ave", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2023, "Total Visits": 317.0, "Total Visitors": 253.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 1.0, "Total Spend": 6124.0, "Total Transactions": 323.0, "Total Customers": 224.0, "Median Spend per Transaction": 15.25, "Median Spend per Customer": 19.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-mrk", "Name": "Dollar Plus Discount", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "27 S 52nd St", "LATITUDE": 39.95912, "LONGITUDE": -75.224819, "DATE_RANGE_START": 2023, "Total Visits": 396.0, "Total Visitors": 328.0, "POI_CBG": 421010085001.0, "Median Dwell Time": 3.0, "Total Spend": 21.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.224819, 39.95912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4156 Ridge Ave # 78", "LATITUDE": 40.008547, "LONGITUDE": -75.193814, "DATE_RANGE_START": 2023, "Total Visits": 89.0, "Total Visitors": 69.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 5.0, "Total Spend": 3589.0, "Total Transactions": 94.0, "Total Customers": 73.0, "Median Spend per Transaction": 38.91, "Median Spend per Customer": 46.27 }, "geometry": { "type": "Point", "coordinates": [ -75.193814, 40.008547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-5mk", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "313 Spring Garden St", "LATITUDE": 39.961206, "LONGITUDE": -75.1437, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 412.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1.0, "Total Spend": 565.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 225.45, "Median Spend per Customer": 225.45 }, "geometry": { "type": "Point", "coordinates": [ -75.1437, 39.961206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-v2k", "Name": "Lane Bryant", "Category": "Clothing Stores", "Address": "1851 S Columbus Blvd", "LATITUDE": 39.923469, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 23.0, "Total Spend": 916.0, "Total Transactions": 21.0, "Total Customers": 18.0, "Median Spend per Transaction": 42.42, "Median Spend per Customer": 43.7 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-pmb-8qf", "Name": "Jefferson Farmers' Market", "Category": "Specialty Food Stores", "Address": "925 Chestnut St", "LATITUDE": 39.950512, "LONGITUDE": -75.156532, "DATE_RANGE_START": 2023, "Total Visits": 1754.0, "Total Visitors": 1192.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 83.0, "Total Spend": 28.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.22, "Median Spend per Customer": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.156532, 39.950512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "919A Levick St", "LATITUDE": 40.04525, "LONGITUDE": -75.086615, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 21.0, "Total Spend": 460.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 12.76, "Median Spend per Customer": 25.25 }, "geometry": { "type": "Point", "coordinates": [ -75.086615, 40.04525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1919 Market St Ste 150", "LATITUDE": 39.953725, "LONGITUDE": -75.172706, "DATE_RANGE_START": 2023, "Total Visits": 1400.0, "Total Visitors": 869.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 15.0, "Total Spend": 11222.0, "Total Transactions": 758.0, "Total Customers": 529.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.172706, 39.953725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "Name": "Arch Pharmacy", "Category": "Health and Personal Care Stores", "Address": "933 Arch St", "LATITUDE": 39.953744, "LONGITUDE": -75.156057, "DATE_RANGE_START": 2023, "Total Visits": 4224.0, "Total Visitors": 2510.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 36.0, "Total Spend": 167.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 9.8, "Median Spend per Customer": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156057, 39.953744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph6-pqf", "Name": "Ace Diner", "Category": "Restaurants and Other Eating Places", "Address": "5517 Lancaster Ave", "LATITUDE": 39.980407, "LONGITUDE": -75.233631, "DATE_RANGE_START": 2023, "Total Visits": 169.0, "Total Visitors": 158.0, "POI_CBG": 421010118003.0, "Median Dwell Time": 5.0, "Total Spend": 73.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.233631, 39.980407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "180 W Duncannon Ave", "LATITUDE": 40.029055, "LONGITUDE": -75.125258, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 6.0, "POI_CBG": 421010286001.0, "Median Dwell Time": 19.0, "Total Spend": 16280.0, "Total Transactions": 338.0, "Total Customers": 234.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.125258, 40.029055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-6ff", "Name": "Barra Rossa Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "929 Walnut St", "LATITUDE": 39.948581, "LONGITUDE": -75.157229, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 46.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 252.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 30.52, "Median Spend per Customer": 100.72 }, "geometry": { "type": "Point", "coordinates": [ -75.157229, 39.948581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-ndv", "Name": "Kensington Quarters", "Category": "Restaurants and Other Eating Places", "Address": "1310 Frankford Ave", "LATITUDE": 39.97058, "LONGITUDE": -75.134713, "DATE_RANGE_START": 2023, "Total Visits": 219.0, "Total Visitors": 213.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 4.0, "Total Spend": 9752.0, "Total Transactions": 60.0, "Total Customers": 56.0, "Median Spend per Transaction": 163.29, "Median Spend per Customer": 163.29 }, "geometry": { "type": "Point", "coordinates": [ -75.134713, 39.97058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "Name": "Rustica", "Category": "Restaurants and Other Eating Places", "Address": "903 N 2nd St", "LATITUDE": 39.964223, "LONGITUDE": -75.140493, "DATE_RANGE_START": 2023, "Total Visits": 646.0, "Total Visitors": 575.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 58.0, "Total Spend": 2452.0, "Total Transactions": 170.0, "Total Customers": 120.0, "Median Spend per Transaction": 10.13, "Median Spend per Customer": 12.63 }, "geometry": { "type": "Point", "coordinates": [ -75.140493, 39.964223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmf-dd9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2901 Grays Ferry Ave", "LATITUDE": 39.939546, "LONGITUDE": -75.191189, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 34.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 9.0, "Total Spend": 21915.0, "Total Transactions": 1615.0, "Total Customers": 892.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 16.37 }, "geometry": { "type": "Point", "coordinates": [ -75.191189, 39.939546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "Name": "Danny's Wok 3", "Category": "Restaurants and Other Eating Places", "Address": "4322 N Broad St", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2023, "Total Visits": 273.0, "Total Visitors": 273.0, "POI_CBG": 421010204002.0, "Median Dwell Time": 8.0, "Total Spend": 37.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wc5", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "29 Snyder Ave", "LATITUDE": 39.923237, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2023, "Total Visits": 378.0, "Total Visitors": 240.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 6.0, "Total Spend": 94124.0, "Total Transactions": 2315.0, "Total Customers": 1150.0, "Median Spend per Transaction": 21.24, "Median Spend per Customer": 34.95 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.923237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-jgk", "Name": "The Happy Rooster", "Category": "Restaurants and Other Eating Places", "Address": "118 S 16th St", "LATITUDE": 39.950357, "LONGITUDE": -75.167508, "DATE_RANGE_START": 2023, "Total Visits": 251.0, "Total Visitors": 197.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 6942.0, "Total Transactions": 133.0, "Total Customers": 109.0, "Median Spend per Transaction": 39.55, "Median Spend per Customer": 44.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167508, 39.950357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-zmk", "Name": "Colney Deli", "Category": "Restaurants and Other Eating Places", "Address": "5610 N 5th St", "LATITUDE": 40.036792, "LONGITUDE": -75.130653, "DATE_RANGE_START": 2023, "Total Visits": 787.0, "Total Visitors": 412.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 22.0, "Total Spend": 1407.0, "Total Transactions": 80.0, "Total Customers": 40.0, "Median Spend per Transaction": 16.9, "Median Spend per Customer": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.130653, 40.036792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25d-222@628-pm3-vpv", "Name": "Favors & Flavors", "Category": "Specialty Food Stores", "Address": "1827 E Passyunk Ave", "LATITUDE": 39.92705, "LONGITUDE": -75.166412, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 405.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 46.0, "Total Spend": 264.0, "Total Transactions": 28.0, "Total Customers": 23.0, "Median Spend per Transaction": 7.7, "Median Spend per Customer": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.166412, 39.92705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6240 Germantown Ave", "LATITUDE": 40.042919, "LONGITUDE": -75.181039, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 5.0, "Total Spend": 2689.0, "Total Transactions": 123.0, "Total Customers": 54.0, "Median Spend per Transaction": 17.16, "Median Spend per Customer": 30.19 }, "geometry": { "type": "Point", "coordinates": [ -75.181039, 40.042919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "300 E Erie Ave", "LATITUDE": 40.006866, "LONGITUDE": -75.123098, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 10.0, "Total Spend": 2955.0, "Total Transactions": 286.0, "Total Customers": 189.0, "Median Spend per Transaction": 8.45, "Median Spend per Customer": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.123098, 40.006866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9k-t9z", "Name": "Millevoi Brothers", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2075 Byberry Rd", "LATITUDE": 40.108397, "LONGITUDE": -75.000602, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 150.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 19.0, "Total Spend": 2345.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 276.71, "Median Spend per Customer": 276.71 }, "geometry": { "type": "Point", "coordinates": [ -75.000602, 40.108397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-p5f", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5165 Lancaster Ave", "LATITUDE": 39.97706, "LONGITUDE": -75.225666, "DATE_RANGE_START": 2023, "Total Visits": 608.0, "Total Visitors": 463.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 6.0, "Total Spend": 187.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 9.74, "Median Spend per Customer": 22.46 }, "geometry": { "type": "Point", "coordinates": [ -75.225666, 39.97706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-8n5", "Name": "Kai Japanese Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "12 S 10th St", "LATITUDE": 39.950968, "LONGITUDE": -75.157061, "DATE_RANGE_START": 2023, "Total Visits": 298.0, "Total Visitors": 234.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 1504.0, "Total Transactions": 34.0, "Total Customers": 31.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 33.13 }, "geometry": { "type": "Point", "coordinates": [ -75.157061, 39.950968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmf-hwk", "Name": "Chima Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "1901 John F Kennedy Blvd", "LATITUDE": 39.95482, "LONGITUDE": -75.172571, "DATE_RANGE_START": 2023, "Total Visits": 2283.0, "Total Visitors": 1732.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 1.0, "Total Spend": 2044.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 117.01, "Median Spend per Customer": 117.01 }, "geometry": { "type": "Point", "coordinates": [ -75.172571, 39.95482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8318 Bustleton Ave", "LATITUDE": 40.069651, "LONGITUDE": -75.051721, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 9.0, "Total Spend": 496.0, "Total Transactions": 48.0, "Total Customers": 31.0, "Median Spend per Transaction": 9.4, "Median Spend per Customer": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.051721, 40.069651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "Name": "Ruth's Chris Steak House", "Category": "Restaurants and Other Eating Places", "Address": "1800 Market St", "LATITUDE": 39.952828, "LONGITUDE": -75.170297, "DATE_RANGE_START": 2023, "Total Visits": 1747.0, "Total Visitors": 953.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 321.0, "Total Spend": 13796.0, "Total Transactions": 98.0, "Total Customers": 61.0, "Median Spend per Transaction": 134.24, "Median Spend per Customer": 137.92 }, "geometry": { "type": "Point", "coordinates": [ -75.170297, 39.952828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "Name": "Desi Village", "Category": "Restaurants and Other Eating Places", "Address": "4527 Baltimore Ave", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2023, "Total Visits": 108.0, "Total Visitors": 108.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 5.0, "Total Spend": 178.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 17.23, "Median Spend per Customer": 27.97 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "Name": "China City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6612 Castor Ave", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 106.0, "POI_CBG": 421010311011.0, "Median Dwell Time": 1.0, "Total Spend": 1346.0, "Total Transactions": 59.0, "Total Customers": 40.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 25.59 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-t7q", "Name": "Craftsman Row Saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "112 S 8th St", "LATITUDE": 39.949105, "LONGITUDE": -75.154365, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 3548.0, "Total Transactions": 66.0, "Total Customers": 63.0, "Median Spend per Transaction": 37.7, "Median Spend per Customer": 44.39 }, "geometry": { "type": "Point", "coordinates": [ -75.154365, 39.949105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "Name": "Trattoria Carina", "Category": "Restaurants and Other Eating Places", "Address": "2201 Spruce St", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2023, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010008011.0, "Median Dwell Time": 15.0, "Total Spend": 1380.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 99.92, "Median Spend per Customer": 99.92 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p8t-w8v", "Name": "Cinnabon", "Category": "Restaurants and Other Eating Places", "Address": "1502 Franklin Mills Cir", "LATITUDE": 40.087404, "LONGITUDE": -74.961902, "DATE_RANGE_START": 2023, "Total Visits": 542.0, "Total Visitors": 514.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 57.0, "Total Spend": 2085.0, "Total Transactions": 193.0, "Total Customers": 174.0, "Median Spend per Transaction": 9.16, "Median Spend per Customer": 9.27 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.087404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "499 Franklin Mills Cir", "LATITUDE": 40.087567, "LONGITUDE": -74.965278, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 13.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 20.0, "Total Spend": 10792.0, "Total Transactions": 628.0, "Total Customers": 457.0, "Median Spend per Transaction": 15.72, "Median Spend per Customer": 18.11 }, "geometry": { "type": "Point", "coordinates": [ -74.965278, 40.087567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6190 N Front St", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2023, "Total Visits": 579.0, "Total Visitors": 495.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 4.0, "Total Spend": 4323.0, "Total Transactions": 447.0, "Total Customers": 219.0, "Median Spend per Transaction": 8.17, "Median Spend per Customer": 12.59 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954762, "LONGITUDE": -75.202298, "DATE_RANGE_START": 2023, "Total Visits": 436.0, "Total Visitors": 249.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 37.0, "Total Spend": 5995.0, "Total Transactions": 919.0, "Total Customers": 387.0, "Median Spend per Transaction": 5.73, "Median Spend per Customer": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.202298, 39.954762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "Name": "Apricot Stone", "Category": "Restaurants and Other Eating Places", "Address": "1040 N American St Ste 601", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 124.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 1.0, "Total Spend": 3806.0, "Total Transactions": 53.0, "Total Customers": 46.0, "Median Spend per Transaction": 59.7, "Median Spend per Customer": 77.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "129 S 30th St", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2023, "Total Visits": 500.0, "Total Visitors": 390.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 21.0, "Total Spend": 5121.0, "Total Transactions": 405.0, "Total Customers": 318.0, "Median Spend per Transaction": 10.48, "Median Spend per Customer": 12.64 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "314 W Lehigh Ave", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2023, "Total Visits": 319.0, "Total Visitors": 223.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 12.0, "Total Spend": 5267.0, "Total Transactions": 240.0, "Total Customers": 189.0, "Median Spend per Transaction": 16.61, "Median Spend per Customer": 21.04 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-2ff", "Name": "Corner Bakery Cafe", "Category": "Restaurants and Other Eating Places", "Address": "3737 Market St", "LATITUDE": 39.95695, "LONGITUDE": -75.19698, "DATE_RANGE_START": 2023, "Total Visits": 6605.0, "Total Visitors": 3966.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 61.0, "Total Spend": 3441.0, "Total Transactions": 259.0, "Total Customers": 193.0, "Median Spend per Transaction": 10.03, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.19698, 39.95695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7520 City Ave", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2023, "Total Visits": 555.0, "Total Visitors": 512.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 5.0, "Total Spend": 6781.0, "Total Transactions": 767.0, "Total Customers": 412.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2201 South St", "LATITUDE": 39.945484, "LONGITUDE": -75.178667, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 6.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 8.0, "Total Spend": 3216.0, "Total Transactions": 336.0, "Total Customers": 217.0, "Median Spend per Transaction": 7.24, "Median Spend per Customer": 10.1 }, "geometry": { "type": "Point", "coordinates": [ -75.178667, 39.945484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8j-bx5", "Name": "Moe's Deli Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7360 Frankford Ave", "LATITUDE": 40.037856, "LONGITUDE": -75.038561, "DATE_RANGE_START": 2023, "Total Visits": 110.0, "Total Visitors": 110.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 5.0, "Total Spend": 291.0, "Total Transactions": 20.0, "Total Customers": 19.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.038561, 40.037856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-yd9", "Name": "Kungfu Hotpot", "Category": "Restaurants and Other Eating Places", "Address": "1008 Cherry St Fl 3", "LATITUDE": 39.954413, "LONGITUDE": -75.156594, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 4033.0, "Total Transactions": 40.0, "Total Customers": 36.0, "Median Spend per Transaction": 97.78, "Median Spend per Customer": 98.0 }, "geometry": { "type": "Point", "coordinates": [ -75.156594, 39.954413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmb-gzf", "Name": "Cloud Factory Hookah Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1201 Spruce St", "LATITUDE": 39.946774, "LONGITUDE": -75.161129, "DATE_RANGE_START": 2023, "Total Visits": 261.0, "Total Visitors": 244.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 1.0, "Total Spend": 282.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 40.92, "Median Spend per Customer": 54.87 }, "geometry": { "type": "Point", "coordinates": [ -75.161129, 39.946774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-6p9", "Name": "Dolce Italian Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "1437 Chestnut St", "LATITUDE": 39.951188, "LONGITUDE": -75.165178, "DATE_RANGE_START": 2023, "Total Visits": 1794.0, "Total Visitors": 1192.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 66.0, "Total Spend": 3417.0, "Total Transactions": 44.0, "Total Customers": 43.0, "Median Spend per Transaction": 65.76, "Median Spend per Customer": 65.76 }, "geometry": { "type": "Point", "coordinates": [ -75.165178, 39.951188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "Name": "Overbrook Pizza Shop", "Category": "Restaurants and Other Eating Places", "Address": "2099 N 63rd St", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 8.0, "Total Spend": 1800.0, "Total Transactions": 81.0, "Total Customers": 60.0, "Median Spend per Transaction": 19.66, "Median Spend per Customer": 19.49 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "Name": "Guzman Grocery", "Category": "Grocery Stores", "Address": "3100 E St", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 83.0, "POI_CBG": 421010177023.0, "Median Dwell Time": 1.0, "Total Spend": 645.0, "Total Transactions": 50.0, "Total Customers": 28.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-w49", "Name": "Sweet Lucy's Smokehouse", "Category": "Restaurants and Other Eating Places", "Address": "7500 State Rd", "LATITUDE": 40.028508, "LONGITUDE": -75.027023, "DATE_RANGE_START": 2023, "Total Visits": 451.0, "Total Visitors": 443.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 13.0, "Total Spend": 2652.0, "Total Transactions": 16.0, "Total Customers": 15.0, "Median Spend per Transaction": 51.83, "Median Spend per Customer": 60.69 }, "geometry": { "type": "Point", "coordinates": [ -75.027023, 40.028508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "Name": "Oyster House", "Category": "Restaurants and Other Eating Places", "Address": "1516 Sansom St", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2023, "Total Visits": 334.0, "Total Visitors": 286.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 35.0, "Total Spend": 25222.0, "Total Transactions": 209.0, "Total Customers": 183.0, "Median Spend per Transaction": 87.92, "Median Spend per Customer": 106.44 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "Name": "Tio Flores", "Category": "Restaurants and Other Eating Places", "Address": "1600 South St", "LATITUDE": 39.943911, "LONGITUDE": -75.168936, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 5.0, "Total Spend": 1002.0, "Total Transactions": 15.0, "Total Customers": 14.0, "Median Spend per Transaction": 66.6, "Median Spend per Customer": 68.35 }, "geometry": { "type": "Point", "coordinates": [ -75.168936, 39.943911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "Name": "Tony Luke's", "Category": "Restaurants and Other Eating Places", "Address": "1 Citizens Bank Way", "LATITUDE": 39.906965, "LONGITUDE": -75.166723, "DATE_RANGE_START": 2023, "Total Visits": 1886.0, "Total Visitors": 1716.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 46.0, "Total Spend": 291.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 21.17, "Median Spend per Customer": 21.17 }, "geometry": { "type": "Point", "coordinates": [ -75.166723, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pfx-s89", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "5125 Umbria St", "LATITUDE": 40.038452, "LONGITUDE": -75.239365, "DATE_RANGE_START": 2023, "Total Visits": 263.0, "Total Visitors": 263.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 291.0, "Total Spend": 13856.0, "Total Transactions": 560.0, "Total Customers": 297.0, "Median Spend per Transaction": 21.25, "Median Spend per Customer": 35.8 }, "geometry": { "type": "Point", "coordinates": [ -75.239365, 40.038452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "Name": "Neighborhood Books", "Category": "Book Stores and News Dealers", "Address": "1906 South St", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2023, "Total Visits": 339.0, "Total Visitors": 251.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 36.0, "Total Spend": 73.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.01, "Median Spend per Customer": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmf-9cq", "Name": "White Dog Cafe", "Category": "Restaurants and Other Eating Places", "Address": "3420 Sansom St", "LATITUDE": 39.953546, "LONGITUDE": -75.192949, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 12.0, "Total Spend": 7698.0, "Total Transactions": 76.0, "Total Customers": 71.0, "Median Spend per Transaction": 72.15, "Median Spend per Customer": 72.15 }, "geometry": { "type": "Point", "coordinates": [ -75.192949, 39.953546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-phn-qj9", "Name": "Uptown Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8131 Stenton Ave", "LATITUDE": 40.067574, "LONGITUDE": -75.179009, "DATE_RANGE_START": 2023, "Total Visits": 91.0, "Total Visitors": 54.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 166.0, "Total Spend": 660.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179009, 40.067574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "Name": "Tacodelphia", "Category": "Restaurants and Other Eating Places", "Address": "427 S Broad St", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 159.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1.0, "Total Spend": 347.0, "Total Transactions": 26.0, "Total Customers": 14.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "Name": "Giovani's Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "1533 Chestnut St", "LATITUDE": 39.951522, "LONGITUDE": -75.166747, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 312.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 21.0, "Total Spend": 11975.0, "Total Transactions": 539.0, "Total Customers": 329.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166747, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-225@628-pmf-kcq", "Name": "Bluestone Lane", "Category": "Restaurants and Other Eating Places", "Address": "2000 Walnut St", "LATITUDE": 39.95042, "LONGITUDE": -75.174061, "DATE_RANGE_START": 2023, "Total Visits": 495.0, "Total Visitors": 357.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 5.0, "Total Spend": 76.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 18.77, "Median Spend per Customer": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.174061, 39.95042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-94v", "Name": "La tapenade", "Category": "Restaurants and Other Eating Places", "Address": "Terminal Ave", "LATITUDE": 39.87309, "LONGITUDE": -75.252083, "DATE_RANGE_START": 2023, "Total Visits": 9591.0, "Total Visitors": 7569.0, "POI_CBG": 420459800001.0, "Median Dwell Time": 24.0, "Total Spend": 1280.0, "Total Transactions": 58.0, "Total Customers": 51.0, "Median Spend per Transaction": 18.52, "Median Spend per Customer": 18.75 }, "geometry": { "type": "Point", "coordinates": [ -75.252083, 39.87309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5272 Frankford Ave", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2023, "Total Visits": 344.0, "Total Visitors": 202.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 5.0, "Total Spend": 3076.0, "Total Transactions": 542.0, "Total Customers": 198.0, "Median Spend per Transaction": 4.62, "Median Spend per Customer": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-rzf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2300 E Butler St", "LATITUDE": 39.996137, "LONGITUDE": -75.092818, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 12.0, "Total Spend": 1680.0, "Total Transactions": 228.0, "Total Customers": 101.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 7.01 }, "geometry": { "type": "Point", "coordinates": [ -75.092818, 39.996137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5201 Rising Sun Ave", "LATITUDE": 40.029204, "LONGITUDE": -75.118815, "DATE_RANGE_START": 2023, "Total Visits": 509.0, "Total Visitors": 326.0, "POI_CBG": 421010290004.0, "Median Dwell Time": 17.0, "Total Spend": 1197.0, "Total Transactions": 43.0, "Total Customers": 33.0, "Median Spend per Transaction": 15.77, "Median Spend per Customer": 20.01 }, "geometry": { "type": "Point", "coordinates": [ -75.118815, 40.029204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "4037 N 5th St", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2023, "Total Visits": 777.0, "Total Visitors": 514.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 15.0, "Total Spend": 2776.0, "Total Transactions": 44.0, "Total Customers": 34.0, "Median Spend per Transaction": 47.55, "Median Spend per Customer": 52.86 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgf-3bk", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "3550 Market St", "LATITUDE": 39.955764, "LONGITUDE": -75.194013, "DATE_RANGE_START": 2023, "Total Visits": 2543.0, "Total Visitors": 1613.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 14.0, "Total Spend": 342.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 44.05, "Median Spend per Customer": 55.47 }, "geometry": { "type": "Point", "coordinates": [ -75.194013, 39.955764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph5-v4v", "Name": "United Auto Repair", "Category": "Automobile Dealers", "Address": "6163 Lancaster Ave", "LATITUDE": 39.984323, "LONGITUDE": -75.245013, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 159.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 10.0, "Total Spend": 176.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 70.15, "Median Spend per Customer": 70.15 }, "geometry": { "type": "Point", "coordinates": [ -75.245013, 39.984323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23h@628-pmf-sqz", "Name": "LUSH", "Category": "Health and Personal Care Stores", "Address": "1525 Walnut St", "LATITUDE": 39.949934, "LONGITUDE": -75.167007, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 3.0, "Total Spend": 454.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 29.69, "Median Spend per Customer": 29.69 }, "geometry": { "type": "Point", "coordinates": [ -75.167007, 39.949934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "Name": "Barcade", "Category": "Restaurants and Other Eating Places", "Address": "1114 Frankford Ave", "LATITUDE": 39.967458, "LONGITUDE": -75.134606, "DATE_RANGE_START": 2023, "Total Visits": 556.0, "Total Visitors": 422.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 54.0, "Total Spend": 13089.0, "Total Transactions": 499.0, "Total Customers": 402.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 27.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134606, 39.967458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5401 N 5th St", "LATITUDE": 40.033486, "LONGITUDE": -75.130876, "DATE_RANGE_START": 2023, "Total Visits": 405.0, "Total Visitors": 252.0, "POI_CBG": 421010274013.0, "Median Dwell Time": 5.0, "Total Spend": 5447.0, "Total Transactions": 718.0, "Total Customers": 307.0, "Median Spend per Transaction": 6.26, "Median Spend per Customer": 11.14 }, "geometry": { "type": "Point", "coordinates": [ -75.130876, 40.033486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1405 S 10th St", "LATITUDE": 39.93143, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2023, "Total Visits": 971.0, "Total Visitors": 618.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 11.0, "Total Spend": 17365.0, "Total Transactions": 981.0, "Total Customers": 567.0, "Median Spend per Transaction": 12.4, "Median Spend per Customer": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.93143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "Name": "Jomici Apothecary", "Category": "Health and Personal Care Stores", "Address": "273 S 15th St", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2023, "Total Visits": 289.0, "Total Visitors": 199.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 1.0, "Total Spend": 108.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.79, "Median Spend per Customer": 43.21 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "Name": "Madrag", "Category": "Clothing Stores", "Address": "2250 W Oregon Ave", "LATITUDE": 39.917769, "LONGITUDE": -75.18518, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 10.0, "Total Spend": 11125.0, "Total Transactions": 279.0, "Total Customers": 228.0, "Median Spend per Transaction": 26.23, "Median Spend per Customer": 33.22 }, "geometry": { "type": "Point", "coordinates": [ -75.18518, 39.917769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-6p9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6101 N Broad St", "LATITUDE": 40.046037, "LONGITUDE": -75.142328, "DATE_RANGE_START": 2023, "Total Visits": 55.0, "Total Visitors": 34.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 20.0, "Total Spend": 10061.0, "Total Transactions": 532.0, "Total Customers": 309.0, "Median Spend per Transaction": 14.13, "Median Spend per Customer": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.142328, 40.046037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "4501 Aramingo Ave", "LATITUDE": 40.002303, "LONGITUDE": -75.079252, "DATE_RANGE_START": 2023, "Total Visits": 349.0, "Total Visitors": 313.0, "POI_CBG": 421010183003.0, "Median Dwell Time": 7.0, "Total Spend": 11923.0, "Total Transactions": 18.0, "Total Customers": 10.0, "Median Spend per Transaction": 481.31, "Median Spend per Customer": 873.25 }, "geometry": { "type": "Point", "coordinates": [ -75.079252, 40.002303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25g-222@63s-dw2-9zz", "Name": "Market Grocery", "Category": "Grocery Stores", "Address": "6033 Market St", "LATITUDE": 39.962365, "LONGITUDE": -75.242054, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 71.0, "POI_CBG": 421010096002.0, "Median Dwell Time": 1.0, "Total Spend": 26.0, "Total Transactions": 10.0, "Total Customers": 3.0, "Median Spend per Transaction": 2.6, "Median Spend per Customer": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.242054, 39.962365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7v-f2k", "Name": "Bob's Discount Furniture", "Category": "Furniture Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051401, "LONGITUDE": -75.065206, "DATE_RANGE_START": 2023, "Total Visits": 1686.0, "Total Visitors": 1357.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 33.0, "Total Spend": 2834.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 226.79, "Median Spend per Customer": 226.79 }, "geometry": { "type": "Point", "coordinates": [ -75.065206, 40.051401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-zxq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3260 N Broad St", "LATITUDE": 40.002859, "LONGITUDE": -75.152972, "DATE_RANGE_START": 2023, "Total Visits": 2027.0, "Total Visitors": 1136.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 47.0, "Total Spend": 5306.0, "Total Transactions": 333.0, "Total Customers": 209.0, "Median Spend per Transaction": 11.18, "Median Spend per Customer": 14.14 }, "geometry": { "type": "Point", "coordinates": [ -75.152972, 40.002859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-229@63s-dvy-kfz", "Name": "University Gyro", "Category": "Restaurants and Other Eating Places", "Address": "38 Spruce St", "LATITUDE": 39.95092, "LONGITUDE": -75.198948, "DATE_RANGE_START": 2023, "Total Visits": 1095.0, "Total Visitors": 485.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 49.0, "Total Spend": 593.0, "Total Transactions": 69.0, "Total Customers": 40.0, "Median Spend per Transaction": 7.99, "Median Spend per Customer": 8.99 }, "geometry": { "type": "Point", "coordinates": [ -75.198948, 39.95092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "Name": "Talula's Garden", "Category": "Restaurants and Other Eating Places", "Address": "210 W Washington Sq", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2023, "Total Visits": 501.0, "Total Visitors": 311.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 108.0, "Total Spend": 42965.0, "Total Transactions": 839.0, "Total Customers": 540.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "Name": "Lucky 13 Pub", "Category": "Restaurants and Other Eating Places", "Address": "1820 S 13th St", "LATITUDE": 39.927169, "LONGITUDE": -75.167129, "DATE_RANGE_START": 2023, "Total Visits": 105.0, "Total Visitors": 88.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 150.0, "Total Spend": 3479.0, "Total Transactions": 95.0, "Total Customers": 68.0, "Median Spend per Transaction": 30.88, "Median Spend per Customer": 37.44 }, "geometry": { "type": "Point", "coordinates": [ -75.167129, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1268 Franklin Mills Cir", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2023, "Total Visits": 422.0, "Total Visitors": 403.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 29.0, "Total Spend": 2758.0, "Total Transactions": 54.0, "Total Customers": 53.0, "Median Spend per Transaction": 43.19, "Median Spend per Customer": 39.41 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj2-sh5", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012155, "LONGITUDE": -75.114952, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 159.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 31.0, "Total Spend": 3244.0, "Total Transactions": 80.0, "Total Customers": 66.0, "Median Spend per Transaction": 32.48, "Median Spend per Customer": 36.97 }, "geometry": { "type": "Point", "coordinates": [ -75.114952, 40.012155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-q2k", "Name": "On & Sons Seafood", "Category": "Restaurants and Other Eating Places", "Address": "100 W Olney Ave", "LATITUDE": 40.035163, "LONGITUDE": -75.121651, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 165.0, "POI_CBG": 421010273002.0, "Median Dwell Time": 10.0, "Total Spend": 190.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 39.66, "Median Spend per Customer": 57.74 }, "geometry": { "type": "Point", "coordinates": [ -75.121651, 40.035163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "Name": "Four Seasons Market", "Category": "Specialty Food Stores", "Address": "6130 Woodland Ave", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 183.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 13.0, "Total Spend": 1365.0, "Total Transactions": 60.0, "Total Customers": 43.0, "Median Spend per Transaction": 15.29, "Median Spend per Customer": 24.43 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-pgk", "Name": "Best Sunny Diner", "Category": "Restaurants and Other Eating Places", "Address": "2650 Germantown Ave", "LATITUDE": 39.992784, "LONGITUDE": -75.148123, "DATE_RANGE_START": 2023, "Total Visits": 96.0, "Total Visitors": 96.0, "POI_CBG": 421010165003.0, "Median Dwell Time": 1.0, "Total Spend": 82.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 11.8, "Median Spend per Customer": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.148123, 39.992784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pj9-4d9", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "5723 N Broad St", "LATITUDE": 40.04031, "LONGITUDE": -75.143956, "DATE_RANGE_START": 2023, "Total Visits": 645.0, "Total Visitors": 382.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 16.0, "Total Spend": 231.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 19.82, "Median Spend per Customer": 20.91 }, "geometry": { "type": "Point", "coordinates": [ -75.143956, 40.04031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "5717 Rising Sun Ave", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 215.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 9.0, "Total Spend": 732.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-hbk", "Name": "Jyoti Indian Bistro", "Category": "Restaurants and Other Eating Places", "Address": "7220 Germantown Ave", "LATITUDE": 40.060418, "LONGITUDE": -75.191506, "DATE_RANGE_START": 2023, "Total Visits": 125.0, "Total Visitors": 115.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 2.0, "Total Spend": 125.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 31.59, "Median Spend per Customer": 31.59 }, "geometry": { "type": "Point", "coordinates": [ -75.191506, 40.060418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6515 Castor Ave", "LATITUDE": 40.040894, "LONGITUDE": -75.075357, "DATE_RANGE_START": 2023, "Total Visits": 937.0, "Total Visitors": 504.0, "POI_CBG": 421010313004.0, "Median Dwell Time": 9.0, "Total Spend": 6625.0, "Total Transactions": 302.0, "Total Customers": 162.0, "Median Spend per Transaction": 16.92, "Median Spend per Customer": 19.03 }, "geometry": { "type": "Point", "coordinates": [ -75.075357, 40.040894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj8-mp9", "Name": "Crown Chicken & Grill", "Category": "Restaurants and Other Eating Places", "Address": "5106 Frankford Ave", "LATITUDE": 40.021661, "LONGITUDE": -75.079451, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 7.0, "Total Spend": 2214.0, "Total Transactions": 162.0, "Total Customers": 122.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 13.19 }, "geometry": { "type": "Point", "coordinates": [ -75.079451, 40.021661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "Name": "Wyndham", "Category": "Traveler Accommodation", "Address": "400 Arch St", "LATITUDE": 39.952205, "LONGITUDE": -75.147298, "DATE_RANGE_START": 2023, "Total Visits": 2386.0, "Total Visitors": 1476.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 118.0, "Total Spend": 25344.0, "Total Transactions": 115.0, "Total Customers": 104.0, "Median Spend per Transaction": 97.64, "Median Spend per Customer": 128.63 }, "geometry": { "type": "Point", "coordinates": [ -75.147298, 39.952205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-225@628-pmf-jgk", "Name": "Rec & Royal", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "111 S 17th St", "LATITUDE": 39.951042, "LONGITUDE": -75.168615, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 32.0, "Total Spend": 500.0, "Total Transactions": 23.0, "Total Customers": 11.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 55.98 }, "geometry": { "type": "Point", "coordinates": [ -75.168615, 39.951042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg9-vs5", "Name": "The Fairview", "Category": "Restaurants and Other Eating Places", "Address": "601 N 21st St", "LATITUDE": 39.965379, "LONGITUDE": -75.172387, "DATE_RANGE_START": 2023, "Total Visits": 626.0, "Total Visitors": 319.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 58.0, "Total Spend": 912.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 36.52, "Median Spend per Customer": 52.7 }, "geometry": { "type": "Point", "coordinates": [ -75.172387, 39.965379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-m8v", "Name": "Sugarcube", "Category": "Clothing Stores", "Address": "124 N 3rd St", "LATITUDE": 39.9529, "LONGITUDE": -75.145191, "DATE_RANGE_START": 2023, "Total Visits": 504.0, "Total Visitors": 321.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 97.0, "Total Spend": 246.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 98.0, "Median Spend per Customer": 98.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145191, 39.9529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-jjv", "Name": "Just Salad", "Category": "Restaurants and Other Eating Places", "Address": "1729 Chestnut St", "LATITUDE": 39.951891, "LONGITUDE": -75.169803, "DATE_RANGE_START": 2023, "Total Visits": 327.0, "Total Visitors": 317.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 5242.0, "Total Transactions": 323.0, "Total Customers": 222.0, "Median Spend per Transaction": 15.63, "Median Spend per Customer": 16.91 }, "geometry": { "type": "Point", "coordinates": [ -75.169803, 39.951891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7000 Chester Ave", "LATITUDE": 39.923603, "LONGITUDE": -75.245299, "DATE_RANGE_START": 2023, "Total Visits": 554.0, "Total Visitors": 440.0, "POI_CBG": 421010064003.0, "Median Dwell Time": 5.0, "Total Spend": 1966.0, "Total Transactions": 267.0, "Total Customers": 140.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.245299, 39.923603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pm6-jsq", "Name": "Taste of Punjab", "Category": "Restaurants and Other Eating Places", "Address": "2015 E Moyamensing Ave", "LATITUDE": 39.922877, "LONGITUDE": -75.15251, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010042014.0, "Median Dwell Time": 2.0, "Total Spend": 997.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 35.52, "Median Spend per Customer": 35.52 }, "geometry": { "type": "Point", "coordinates": [ -75.15251, 39.922877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "Name": "King Wok Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "13631 Philmont Ave", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2023, "Total Visits": 162.0, "Total Visitors": 154.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 3.0, "Total Spend": 514.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 29.7, "Median Spend per Customer": 29.7 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "Name": "TGI Fridays", "Category": "Restaurants and Other Eating Places", "Address": "4000 City Ave", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2023, "Total Visits": 739.0, "Total Visitors": 602.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 48.0, "Total Spend": 18943.0, "Total Transactions": 308.0, "Total Customers": 263.0, "Median Spend per Transaction": 55.12, "Median Spend per Customer": 57.75 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "Name": "Buffalo Wild Wings", "Category": "Restaurants and Other Eating Places", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.082789, "LONGITUDE": -75.025889, "DATE_RANGE_START": 2023, "Total Visits": 992.0, "Total Visitors": 753.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 30.0, "Total Spend": 7967.0, "Total Transactions": 145.0, "Total Customers": 128.0, "Median Spend per Transaction": 39.41, "Median Spend per Customer": 51.42 }, "geometry": { "type": "Point", "coordinates": [ -75.025889, 40.082789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg2-hdv", "Name": "Golden Crust Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "7153 Germantown Ave", "LATITUDE": 40.059871, "LONGITUDE": -75.190661, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 74.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 11.0, "Total Spend": 3738.0, "Total Transactions": 147.0, "Total Customers": 89.0, "Median Spend per Transaction": 22.41, "Median Spend per Customer": 23.88 }, "geometry": { "type": "Point", "coordinates": [ -75.190661, 40.059871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "1851 S Columbus Blvd Ste 7", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2023, "Total Visits": 911.0, "Total Visitors": 785.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 32.0, "Total Spend": 28621.0, "Total Transactions": 520.0, "Total Customers": 477.0, "Median Spend per Transaction": 41.56, "Median Spend per Customer": 46.44 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-td9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave Ste 2936", "LATITUDE": 39.902273, "LONGITUDE": -75.241987, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 7.0, "Total Spend": 1200.0, "Total Transactions": 65.0, "Total Customers": 56.0, "Median Spend per Transaction": 16.26, "Median Spend per Customer": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.241987, 39.902273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-d35", "Name": "Dipinto Guitars", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "407 E Girard Ave", "LATITUDE": 39.970499, "LONGITUDE": -75.13019, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 193.0, "POI_CBG": 421010158003.0, "Median Dwell Time": null, "Total Spend": 687.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 32.54, "Median Spend per Customer": 32.54 }, "geometry": { "type": "Point", "coordinates": [ -75.13019, 39.970499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-zpv", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1575 N 52nd St Ste 707", "LATITUDE": 39.979361, "LONGITUDE": -75.222567, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 200.0, "Total Spend": 2738.0, "Total Transactions": 40.0, "Total Customers": 35.0, "Median Spend per Transaction": 35.9, "Median Spend per Customer": 44.78 }, "geometry": { "type": "Point", "coordinates": [ -75.222567, 39.979361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "Name": "Quails", "Category": "Clothing Stores", "Address": "1428 Franklin Mills Cir", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2023, "Total Visits": 314.0, "Total Visitors": 288.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 44.0, "Total Spend": 3010.0, "Total Transactions": 19.0, "Total Customers": 18.0, "Median Spend per Transaction": 80.0, "Median Spend per Customer": 85.5 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1002 S Broad St", "LATITUDE": 39.938273, "LONGITUDE": -75.166962, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 1.0, "Total Spend": 4824.0, "Total Transactions": 551.0, "Total Customers": 312.0, "Median Spend per Transaction": 7.1, "Median Spend per Customer": 9.82 }, "geometry": { "type": "Point", "coordinates": [ -75.166962, 39.938273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pgb-nh5", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "827 N Broad St", "LATITUDE": 39.969208, "LONGITUDE": -75.159358, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 155.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 25.0, "Total Spend": 1154.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 117.7, "Median Spend per Customer": 117.7 }, "geometry": { "type": "Point", "coordinates": [ -75.159358, 39.969208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kj9", "Name": "Fleur De Lis Boutique", "Category": "Clothing Stores", "Address": "2107 Walnut St", "LATITUDE": 39.950921, "LONGITUDE": -75.176153, "DATE_RANGE_START": 2023, "Total Visits": 3259.0, "Total Visitors": 1964.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 2.0, "Total Spend": 370.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 49.0, "Median Spend per Customer": 49.0 }, "geometry": { "type": "Point", "coordinates": [ -75.176153, 39.950921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "Name": "Dairy Queen", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave", "LATITUDE": 40.087367, "LONGITUDE": -75.039942, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 3.0, "Total Spend": 2115.0, "Total Transactions": 159.0, "Total Customers": 133.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 12.27 }, "geometry": { "type": "Point", "coordinates": [ -75.039942, 40.087367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "Name": "Triple Joy", "Category": "Restaurants and Other Eating Places", "Address": "2301 N 29th St", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 177.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 4.0, "Total Spend": 1931.0, "Total Transactions": 120.0, "Total Customers": 44.0, "Median Spend per Transaction": 14.67, "Median Spend per Customer": 35.37 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm3-wrk", "Name": "El Paisano Supermarket 1", "Category": "Grocery Stores", "Address": "1356 E Passyunk Ave", "LATITUDE": 39.932161, "LONGITUDE": -75.160824, "DATE_RANGE_START": 2023, "Total Visits": 485.0, "Total Visitors": 393.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 7.0, "Total Spend": 992.0, "Total Transactions": 55.0, "Total Customers": 46.0, "Median Spend per Transaction": 15.42, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.160824, 39.932161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-v75", "Name": "Margherita Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "60 S 2nd St", "LATITUDE": 39.948535, "LONGITUDE": -75.144159, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 174.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 2310.0, "Total Transactions": 179.0, "Total Customers": 144.0, "Median Spend per Transaction": 12.47, "Median Spend per Customer": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "555 Adams Ave", "LATITUDE": 40.036501, "LONGITUDE": -75.108093, "DATE_RANGE_START": 2023, "Total Visits": 287.0, "Total Visitors": 203.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 16.0, "Total Spend": 5990.0, "Total Transactions": 135.0, "Total Customers": 114.0, "Median Spend per Transaction": 23.31, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.108093, 40.036501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "2552 Grant Ave", "LATITUDE": 40.079219, "LONGITUDE": -75.026617, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 17.0, "Total Spend": 5507.0, "Total Transactions": 227.0, "Total Customers": 192.0, "Median Spend per Transaction": 20.55, "Median Spend per Customer": 22.34 }, "geometry": { "type": "Point", "coordinates": [ -75.026617, 40.079219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-v4v", "Name": "Food Point Deli", "Category": "Grocery Stores", "Address": "1711 S Broad St", "LATITUDE": 39.928702, "LONGITUDE": -75.168281, "DATE_RANGE_START": 2023, "Total Visits": 339.0, "Total Visitors": 238.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 5.0, "Total Spend": 328.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 11.4, "Median Spend per Customer": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.168281, 39.928702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-ks5", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "218 Arch St", "LATITUDE": 39.951831, "LONGITUDE": -75.144233, "DATE_RANGE_START": 2023, "Total Visits": 830.0, "Total Visitors": 316.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 256.0, "Total Spend": 66.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 26.48, "Median Spend per Customer": 26.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144233, 39.951831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgh-xh5", "Name": "Cure Discount Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2310 N Broad St Frnt A", "LATITUDE": 39.988199, "LONGITUDE": -75.156168, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 45.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 31.0, "Total Spend": 58.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 23.31, "Median Spend per Customer": 23.31 }, "geometry": { "type": "Point", "coordinates": [ -75.156168, 39.988199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4421 N Broad St", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2023, "Total Visits": 703.0, "Total Visitors": 604.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 4.0, "Total Spend": 7057.0, "Total Transactions": 313.0, "Total Customers": 214.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.55 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3366 Grant Ave", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2023, "Total Visits": 1005.0, "Total Visitors": 726.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 12.0, "Total Spend": 554.0, "Total Transactions": 34.0, "Total Customers": 11.0, "Median Spend per Transaction": 6.45, "Median Spend per Customer": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph8-q75", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7564 Haverford Ave", "LATITUDE": 39.978744, "LONGITUDE": -75.268394, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 244.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 4.0, "Total Spend": 614.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 19.79, "Median Spend per Customer": 19.79 }, "geometry": { "type": "Point", "coordinates": [ -75.268394, 39.978744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-2p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4600 Chestnut St", "LATITUDE": 39.956864, "LONGITUDE": -75.214028, "DATE_RANGE_START": 2023, "Total Visits": 458.0, "Total Visitors": 358.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 5.0, "Total Spend": 1390.0, "Total Transactions": 50.0, "Total Customers": 38.0, "Median Spend per Transaction": 25.15, "Median Spend per Customer": 31.06 }, "geometry": { "type": "Point", "coordinates": [ -75.214028, 39.956864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj8-2ff", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "4310 E Roosevelt Blvd", "LATITUDE": 40.030244, "LONGITUDE": -75.104955, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 45.0, "Total Spend": 65.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 13.95, "Median Spend per Customer": 13.95 }, "geometry": { "type": "Point", "coordinates": [ -75.104955, 40.030244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7300 Rising Sun Ave", "LATITUDE": 40.061829, "LONGITUDE": -75.084028, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 5.0, "Total Spend": 2529.0, "Total Transactions": 346.0, "Total Customers": 170.0, "Median Spend per Transaction": 5.92, "Median Spend per Customer": 9.23 }, "geometry": { "type": "Point", "coordinates": [ -75.084028, 40.061829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phm-8sq", "Name": "Oak Lane Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6724 Old York Rd", "LATITUDE": 40.055908, "LONGITUDE": -75.140617, "DATE_RANGE_START": 2023, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010268003.0, "Median Dwell Time": 9.0, "Total Spend": 207.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 53.27, "Median Spend per Customer": 53.27 }, "geometry": { "type": "Point", "coordinates": [ -75.140617, 40.055908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3300 S Broad St # 10", "LATITUDE": 39.909192, "LONGITUDE": -75.174029, "DATE_RANGE_START": 2023, "Total Visits": 1734.0, "Total Visitors": 1539.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 9.0, "Total Spend": 4514.0, "Total Transactions": 229.0, "Total Customers": 167.0, "Median Spend per Transaction": 14.1, "Median Spend per Customer": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174029, 39.909192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7001 Frankford Ave", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2023, "Total Visits": 1117.0, "Total Visitors": 934.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 13.0, "Total Spend": 1448.0, "Total Transactions": 64.0, "Total Customers": 55.0, "Median Spend per Transaction": 18.39, "Median Spend per Customer": 18.39 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-yn5", "Name": "Encore", "Category": "Restaurants and Other Eating Places", "Address": "4002 W Girard Ave", "LATITUDE": 39.973824, "LONGITUDE": -75.204593, "DATE_RANGE_START": 2023, "Total Visits": 89.0, "Total Visitors": 89.0, "POI_CBG": 421010110003.0, "Median Dwell Time": 93.0, "Total Spend": 327.0, "Total Transactions": 9.0, "Total Customers": 6.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204593, 39.973824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-3bk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1500 W Moyamensing Ave", "LATITUDE": 39.916145, "LONGITUDE": -75.173459, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 154.0, "POI_CBG": 421010039022.0, "Median Dwell Time": 6.0, "Total Spend": 11083.0, "Total Transactions": 443.0, "Total Customers": 276.0, "Median Spend per Transaction": 17.76, "Median Spend per Customer": 20.08 }, "geometry": { "type": "Point", "coordinates": [ -75.173459, 39.916145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "Name": "The Capital Grille", "Category": "Restaurants and Other Eating Places", "Address": "1338 Chestnut St # 46", "LATITUDE": 39.950687, "LONGITUDE": -75.163728, "DATE_RANGE_START": 2023, "Total Visits": 1572.0, "Total Visitors": 1091.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 17962.0, "Total Transactions": 101.0, "Total Customers": 79.0, "Median Spend per Transaction": 160.68, "Median Spend per Customer": 204.32 }, "geometry": { "type": "Point", "coordinates": [ -75.163728, 39.950687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5650 Ridge Ave", "LATITUDE": 40.026568, "LONGITUDE": -75.209601, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 152.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 44.0, "Total Spend": 1095.0, "Total Transactions": 31.0, "Total Customers": 23.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 37.03 }, "geometry": { "type": "Point", "coordinates": [ -75.209601, 40.026568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "Name": "Carter's", "Category": "Clothing Stores", "Address": "9171 Roosevelt Blvd Ste C", "LATITUDE": 40.07594, "LONGITUDE": -75.031523, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 15.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 2338.0, "Total Transactions": 51.0, "Total Customers": 38.0, "Median Spend per Transaction": 32.99, "Median Spend per Customer": 38.72 }, "geometry": { "type": "Point", "coordinates": [ -75.031523, 40.07594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "Name": "Sahara Grill", "Category": "Restaurants and Other Eating Places", "Address": "1334 Walnut St", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2023, "Total Visits": 5620.0, "Total Visitors": 3899.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 23.0, "Total Spend": 1342.0, "Total Transactions": 28.0, "Total Customers": 23.0, "Median Spend per Transaction": 40.14, "Median Spend per Customer": 59.04 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-94v", "Name": "Skechers", "Category": "Shoe Stores", "Address": "1001 Market St Unit C215", "LATITUDE": 39.95224, "LONGITUDE": -75.15683, "DATE_RANGE_START": 2023, "Total Visits": 14076.0, "Total Visitors": 8436.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 216.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 49.99, "Median Spend per Customer": 52.18 }, "geometry": { "type": "Point", "coordinates": [ -75.15683, 39.95224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pp5-jgk", "Name": "Tin Can Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2537 E Somerset St", "LATITUDE": 39.981701, "LONGITUDE": -75.113705, "DATE_RANGE_START": 2023, "Total Visits": 481.0, "Total Visitors": 272.0, "POI_CBG": 421010180013.0, "Median Dwell Time": 26.0, "Total Spend": 5087.0, "Total Transactions": 125.0, "Total Customers": 91.0, "Median Spend per Transaction": 34.4, "Median Spend per Customer": 40.1 }, "geometry": { "type": "Point", "coordinates": [ -75.113705, 39.981701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5506 Chestnut St # 12", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2023, "Total Visits": 362.0, "Total Visitors": 291.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 5.0, "Total Spend": 6962.0, "Total Transactions": 743.0, "Total Customers": 344.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2200 Wheatsheaf Ln Ste E6", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2023, "Total Visits": 946.0, "Total Visitors": 847.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 17.0, "Total Spend": 12210.0, "Total Transactions": 576.0, "Total Customers": 430.0, "Median Spend per Transaction": 17.83, "Median Spend per Customer": 18.46 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "Name": "Monk's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "264 S 16th St", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2023, "Total Visits": 288.0, "Total Visitors": 254.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 80.0, "Total Spend": 17196.0, "Total Transactions": 272.0, "Total Customers": 234.0, "Median Spend per Transaction": 51.11, "Median Spend per Customer": 55.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmf-rx5", "Name": "Viet Bistro", "Category": "Restaurants and Other Eating Places", "Address": "1640 South St", "LATITUDE": 39.944017, "LONGITUDE": -75.170118, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 504.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 8.0, "Total Spend": 662.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 17.52, "Median Spend per Customer": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.170118, 39.944017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pmf-qfz", "Name": "Entree Byob", "Category": "Restaurants and Other Eating Places", "Address": "1608 South St", "LATITUDE": 39.943935, "LONGITUDE": -75.169156, "DATE_RANGE_START": 2023, "Total Visits": 60.0, "Total Visitors": 60.0, "POI_CBG": 421010014003.0, "Median Dwell Time": null, "Total Spend": 1280.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 146.52, "Median Spend per Customer": 146.52 }, "geometry": { "type": "Point", "coordinates": [ -75.169156, 39.943935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "Name": "Lebel Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5601 W Girard Ave", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2023, "Total Visits": 189.0, "Total Visitors": 162.0, "POI_CBG": 421010112003.0, "Median Dwell Time": 20.0, "Total Spend": 1658.0, "Total Transactions": 79.0, "Total Customers": 51.0, "Median Spend per Transaction": 18.9, "Median Spend per Customer": 27.24 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "Name": "Moonlight Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "6834 Limekiln Pike", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 256.0, "POI_CBG": 421010265004.0, "Median Dwell Time": 6.0, "Total Spend": 3115.0, "Total Transactions": 76.0, "Total Customers": 55.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 40.56 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "Name": "Asian Chopsticks", "Category": "Restaurants and Other Eating Places", "Address": "4044 Woodhaven Rd", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 195.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 12.0, "Total Spend": 1558.0, "Total Transactions": 100.0, "Total Customers": 29.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 23.49 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pj5-j9z", "Name": "Pizza Power", "Category": "Restaurants and Other Eating Places", "Address": "123 E Allegheny Ave", "LATITUDE": 39.998737, "LONGITUDE": -75.128356, "DATE_RANGE_START": 2023, "Total Visits": 105.0, "Total Visitors": 105.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 16.0, "Total Spend": 973.0, "Total Transactions": 60.0, "Total Customers": 9.0, "Median Spend per Transaction": 13.7, "Median Spend per Customer": 45.9 }, "geometry": { "type": "Point", "coordinates": [ -75.128356, 39.998737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pgj-zcq", "Name": "Vito's Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "2821 N Broad St", "LATITUDE": 39.996183, "LONGITUDE": -75.153714, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 154.0, "POI_CBG": 421010174002.0, "Median Dwell Time": 19.0, "Total Spend": 248.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 34.15, "Median Spend per Customer": 54.5 }, "geometry": { "type": "Point", "coordinates": [ -75.153714, 39.996183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "4700 N 15th St", "LATITUDE": 40.025465, "LONGITUDE": -75.149639, "DATE_RANGE_START": 2023, "Total Visits": 283.0, "Total Visitors": 111.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 76.0, "Total Spend": 241.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149639, 40.025465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6001 Lancaster Ave Ste A", "LATITUDE": 39.983076, "LONGITUDE": -75.241701, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 7.0, "Total Spend": 4481.0, "Total Transactions": 187.0, "Total Customers": 142.0, "Median Spend per Transaction": 24.09, "Median Spend per Customer": 28.03 }, "geometry": { "type": "Point", "coordinates": [ -75.241701, 39.983076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2308 W Oregon Ave Ste A", "LATITUDE": 39.917828, "LONGITUDE": -75.186813, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 29.0, "Total Spend": 3275.0, "Total Transactions": 60.0, "Total Customers": 33.0, "Median Spend per Transaction": 35.5, "Median Spend per Customer": 48.59 }, "geometry": { "type": "Point", "coordinates": [ -75.186813, 39.917828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-mp9", "Name": "Concourse Dance Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1635 Market St", "LATITUDE": 39.953195, "LONGITUDE": -75.167899, "DATE_RANGE_START": 2023, "Total Visits": 815.0, "Total Visitors": 556.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 64.0, "Total Spend": 30725.0, "Total Transactions": 1301.0, "Total Customers": 611.0, "Median Spend per Transaction": 15.56, "Median Spend per Customer": 34.29 }, "geometry": { "type": "Point", "coordinates": [ -75.167899, 39.953195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfx-ks5", "Name": "Greg's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4460 Main St", "LATITUDE": 40.026455, "LONGITUDE": -75.226382, "DATE_RANGE_START": 2023, "Total Visits": 597.0, "Total Visitors": 436.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 17.0, "Total Spend": 2170.0, "Total Transactions": 105.0, "Total Customers": 86.0, "Median Spend per Transaction": 17.2, "Median Spend per Customer": 21.25 }, "geometry": { "type": "Point", "coordinates": [ -75.226382, 40.026455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-6c5", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "8914 Frankford Ave", "LATITUDE": 40.052141, "LONGITUDE": -75.010272, "DATE_RANGE_START": 2023, "Total Visits": 799.0, "Total Visitors": 501.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 7.0, "Total Spend": 3228.0, "Total Transactions": 192.0, "Total Customers": 145.0, "Median Spend per Transaction": 12.52, "Median Spend per Customer": 19.94 }, "geometry": { "type": "Point", "coordinates": [ -75.010272, 40.052141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pfy-zj9", "Name": "Mike's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4111 Main St", "LATITUDE": 40.022539, "LONGITUDE": -75.218415, "DATE_RANGE_START": 2023, "Total Visits": 725.0, "Total Visitors": 564.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 9.0, "Total Spend": 2103.0, "Total Transactions": 163.0, "Total Customers": 128.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218415, 40.022539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "Name": "Crown Chicken and Grill", "Category": "Restaurants and Other Eating Places", "Address": "7275 Rising Sun Ave", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 180.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 10.0, "Total Spend": 2790.0, "Total Transactions": 222.0, "Total Customers": 158.0, "Median Spend per Transaction": 10.62, "Median Spend per Customer": 12.02 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6391 Oxford Ave", "LATITUDE": 40.044965, "LONGITUDE": -75.087836, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 9.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 9.0, "Total Spend": 8391.0, "Total Transactions": 1077.0, "Total Customers": 490.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 10.41 }, "geometry": { "type": "Point", "coordinates": [ -75.087836, 40.044965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9w-q4v", "Name": "Cafe Michelangelo", "Category": "Restaurants and Other Eating Places", "Address": "11901 Bustleton Ave", "LATITUDE": 40.12143, "LONGITUDE": -75.016007, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 243.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 33.0, "Total Spend": 4593.0, "Total Transactions": 79.0, "Total Customers": 59.0, "Median Spend per Transaction": 46.71, "Median Spend per Customer": 74.58 }, "geometry": { "type": "Point", "coordinates": [ -75.016007, 40.12143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-whq", "Name": "Pho Xe Lua Viet Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "907 Race St", "LATITUDE": 39.955481, "LONGITUDE": -75.154675, "DATE_RANGE_START": 2023, "Total Visits": 264.0, "Total Visitors": 264.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 27.0, "Total Spend": 2104.0, "Total Transactions": 58.0, "Total Customers": 53.0, "Median Spend per Transaction": 31.96, "Median Spend per Customer": 33.62 }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "9475 Roosevelt Blvd Ste 8", "LATITUDE": 40.079127, "LONGITUDE": -75.027686, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 1.0, "Total Spend": 4059.0, "Total Transactions": 25.0, "Total Customers": 14.0, "Median Spend per Transaction": 61.06, "Median Spend per Customer": 105.81 }, "geometry": { "type": "Point", "coordinates": [ -75.027686, 40.079127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3000 Reed St # 02", "LATITUDE": 39.936107, "LONGITUDE": -75.194561, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010033006.0, "Median Dwell Time": 20.0, "Total Spend": 5293.0, "Total Transactions": 297.0, "Total Customers": 163.0, "Median Spend per Transaction": 11.48, "Median Spend per Customer": 20.95 }, "geometry": { "type": "Point", "coordinates": [ -75.194561, 39.936107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7v-skf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1560 Cottman Ave", "LATITUDE": 40.055285, "LONGITUDE": -75.073863, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 7.0, "Total Spend": 1143.0, "Total Transactions": 43.0, "Total Customers": 25.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 36.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073863, 40.055285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St # 08", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2023, "Total Visits": 354.0, "Total Visitors": 312.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 13.0, "Total Spend": 5472.0, "Total Transactions": 387.0, "Total Customers": 244.0, "Median Spend per Transaction": 12.33, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Henry Ave", "LATITUDE": 40.063818, "LONGITUDE": -75.23885, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 33.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 6.0, "Total Spend": 17534.0, "Total Transactions": 1323.0, "Total Customers": 818.0, "Median Spend per Transaction": 11.52, "Median Spend per Customer": 14.55 }, "geometry": { "type": "Point", "coordinates": [ -75.23885, 40.063818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1501 N 52nd St", "LATITUDE": 39.977332, "LONGITUDE": -75.226013, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 4.0, "Total Spend": 2926.0, "Total Transactions": 372.0, "Total Customers": 193.0, "Median Spend per Transaction": 6.04, "Median Spend per Customer": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.226013, 39.977332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "3000 Island Ave", "LATITUDE": 39.899912, "LONGITUDE": -75.241449, "DATE_RANGE_START": 2023, "Total Visits": 432.0, "Total Visitors": 309.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 13.0, "Total Spend": 4907.0, "Total Transactions": 147.0, "Total Customers": 113.0, "Median Spend per Transaction": 20.02, "Median Spend per Customer": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.241449, 39.899912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-yd9", "Name": "Ciocca Subaru of Philadelphia", "Category": "Automobile Dealers", "Address": "1400 S 33rd St", "LATITUDE": 39.936465, "LONGITUDE": -75.198692, "DATE_RANGE_START": 2023, "Total Visits": 382.0, "Total Visitors": 246.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 450.0, "Total Spend": 67128.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 299.93, "Median Spend per Customer": 599.86 }, "geometry": { "type": "Point", "coordinates": [ -75.198692, 39.936465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgc-wzf", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "1575 N 52nd St Ste 400", "LATITUDE": 39.978022, "LONGITUDE": -75.223843, "DATE_RANGE_START": 2023, "Total Visits": 2455.0, "Total Visitors": 1448.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 21.0, "Total Spend": 160.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 21.13, "Median Spend per Customer": 63.72 }, "geometry": { "type": "Point", "coordinates": [ -75.223843, 39.978022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "Name": "East Coast Tropicals", "Category": "Grocery Stores", "Address": "1615 N Hancock St", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2023, "Total Visits": 482.0, "Total Visitors": 185.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 47.0, "Total Spend": 3724.0, "Total Transactions": 29.0, "Total Customers": 10.0, "Median Spend per Transaction": 95.59, "Median Spend per Customer": 289.52 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "56 Snyder Ave Spc 25", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2023, "Total Visits": 462.0, "Total Visitors": 407.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 8.0, "Total Spend": 395.0, "Total Transactions": 20.0, "Total Customers": 19.0, "Median Spend per Transaction": 20.67, "Median Spend per Customer": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-5zz", "Name": "The Dining Car & Market", "Category": "Restaurants and Other Eating Places", "Address": "8826 Frankford Ave", "LATITUDE": 40.050127, "LONGITUDE": -75.01115, "DATE_RANGE_START": 2023, "Total Visits": 526.0, "Total Visitors": 182.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 450.0, "Total Spend": 180.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 35.13, "Median Spend per Customer": 35.13 }, "geometry": { "type": "Point", "coordinates": [ -75.01115, 40.050127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj5-jqf", "Name": "Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3366 N 2nd St", "LATITUDE": 40.002083, "LONGITUDE": -75.132811, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 101.0, "POI_CBG": 421010195011.0, "Median Dwell Time": null, "Total Spend": 663.0, "Total Transactions": 51.0, "Total Customers": 48.0, "Median Spend per Transaction": 11.45, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.132811, 40.002083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "Name": "Frieda", "Category": "Restaurants and Other Eating Places", "Address": "320 Walnut St", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 138.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 42.0, "Total Spend": 3241.0, "Total Transactions": 101.0, "Total Customers": 70.0, "Median Spend per Transaction": 22.72, "Median Spend per Customer": 36.96 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "701 Chestnut St", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2023, "Total Visits": 400.0, "Total Visitors": 375.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 763.0, "Total Transactions": 65.0, "Total Customers": 59.0, "Median Spend per Transaction": 9.96, "Median Spend per Customer": 12.53 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "201 W Lehigh Ave", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2023, "Total Visits": 769.0, "Total Visitors": 477.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 4.0, "Total Spend": 7006.0, "Total Transactions": 321.0, "Total Customers": 225.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 21.21 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vvf", "Name": "Zales Philadelphia", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1777 Franklin Mills Cir Ste 150", "LATITUDE": 40.089623, "LONGITUDE": -74.961878, "DATE_RANGE_START": 2023, "Total Visits": 314.0, "Total Visitors": 283.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 57.0, "Total Spend": 1983.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 129.58, "Median Spend per Customer": 129.58 }, "geometry": { "type": "Point", "coordinates": [ -74.961878, 40.089623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "Name": "Nifty Fifty's", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 46.0, "POI_CBG": 421010372003.0, "Median Dwell Time": 237.0, "Total Spend": 271.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 19.8, "Median Spend per Customer": 19.8 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-229@628-pj2-mrk", "Name": "Universal Dollar", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3908 Kensington Ave", "LATITUDE": 40.006684, "LONGITUDE": -75.096267, "DATE_RANGE_START": 2023, "Total Visits": 997.0, "Total Visitors": 714.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 7.0, "Total Spend": 254.0, "Total Transactions": 14.0, "Total Customers": 8.0, "Median Spend per Transaction": 13.36, "Median Spend per Customer": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.096267, 40.006684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "Name": "Warwick Hotel Rittenhouse Square", "Category": "Traveler Accommodation", "Address": "220 S 17th St", "LATITUDE": 39.94925, "LONGITUDE": -75.16935, "DATE_RANGE_START": 2023, "Total Visits": 1680.0, "Total Visitors": 1080.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 154.0, "Total Spend": 5921.0, "Total Transactions": 55.0, "Total Customers": 50.0, "Median Spend per Transaction": 33.7, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16935, 39.94925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pgb-gx5", "Name": "Made With Love Juicery", "Category": "Restaurants and Other Eating Places", "Address": "547 N 20th St", "LATITUDE": 39.963871, "LONGITUDE": -75.170728, "DATE_RANGE_START": 2023, "Total Visits": 145.0, "Total Visitors": 132.0, "POI_CBG": 421010134023.0, "Median Dwell Time": 1.0, "Total Spend": 147.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 16.58, "Median Spend per Customer": 50.37 }, "geometry": { "type": "Point", "coordinates": [ -75.170728, 39.963871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23b@63s-dw4-rzf", "Name": "Bar Symon", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.89519, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 91.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 36.26, "Median Spend per Customer": 36.26 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7236 Germantown Ave # 40", "LATITUDE": 40.060811, "LONGITUDE": -75.191937, "DATE_RANGE_START": 2023, "Total Visits": 963.0, "Total Visitors": 812.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 5.0, "Total Spend": 36300.0, "Total Transactions": 3146.0, "Total Customers": 1410.0, "Median Spend per Transaction": 9.06, "Median Spend per Customer": 13.97 }, "geometry": { "type": "Point", "coordinates": [ -75.191937, 40.060811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "Name": "Papa Joe's", "Category": "Restaurants and Other Eating Places", "Address": "7204 Ogontz Ave", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 94.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 73.0, "Total Spend": 140.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 11.26, "Median Spend per Customer": 11.26 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pmb-cwk", "Name": "Sushi Poke", "Category": "Restaurants and Other Eating Places", "Address": "1310 South St", "LATITUDE": 39.943263, "LONGITUDE": -75.163741, "DATE_RANGE_START": 2023, "Total Visits": 465.0, "Total Visitors": 432.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 1.0, "Total Spend": 349.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 39.38, "Median Spend per Customer": 39.38 }, "geometry": { "type": "Point", "coordinates": [ -75.163741, 39.943263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-fvf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "122 W Chelten Ave", "LATITUDE": 40.033401, "LONGITUDE": -75.176995, "DATE_RANGE_START": 2023, "Total Visits": 1630.0, "Total Visitors": 978.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 11.0, "Total Spend": 3028.0, "Total Transactions": 188.0, "Total Customers": 145.0, "Median Spend per Transaction": 13.37, "Median Spend per Customer": 16.03 }, "geometry": { "type": "Point", "coordinates": [ -75.176995, 40.033401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "10000 Roosevelt Blvd", "LATITUDE": 40.095304, "LONGITUDE": -75.015597, "DATE_RANGE_START": 2023, "Total Visits": 28.0, "Total Visitors": 18.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 12.0, "Total Spend": 4006.0, "Total Transactions": 349.0, "Total Customers": 228.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.47 }, "geometry": { "type": "Point", "coordinates": [ -75.015597, 40.095304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgb-389", "Name": "Callowhill Greens", "Category": "Restaurants and Other Eating Places", "Address": "1800 Callowhill St", "LATITUDE": 39.960219, "LONGITUDE": -75.168614, "DATE_RANGE_START": 2023, "Total Visits": 291.0, "Total Visitors": 261.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 11.0, "Total Spend": 329.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.64, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168614, 39.960219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "600 S 9th St", "LATITUDE": 39.942512, "LONGITUDE": -75.157213, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 20.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 1.0, "Total Spend": 3381.0, "Total Transactions": 411.0, "Total Customers": 279.0, "Median Spend per Transaction": 6.43, "Median Spend per Customer": 7.89 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.942512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgj-xkf", "Name": "Sunny's Diner", "Category": "Restaurants and Other Eating Places", "Address": "2501 N Broad St", "LATITUDE": 39.990908, "LONGITUDE": -75.154807, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 133.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 39.0, "Total Spend": 293.0, "Total Transactions": 9.0, "Total Customers": 6.0, "Median Spend per Transaction": 10.31, "Median Spend per Customer": 20.66 }, "geometry": { "type": "Point", "coordinates": [ -75.154807, 39.990908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-89z", "Name": "Dasiwa", "Category": "Restaurants and Other Eating Places", "Address": "735 N 26th St", "LATITUDE": 39.969169, "LONGITUDE": -75.179702, "DATE_RANGE_START": 2023, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 1.0, "Total Spend": 782.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 28.62, "Median Spend per Customer": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.969169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-6kz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4301 Byberry Rd # 2650", "LATITUDE": 40.085677, "LONGITUDE": -74.967871, "DATE_RANGE_START": 2023, "Total Visits": 1751.0, "Total Visitors": 1221.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 27.0, "Total Spend": 1890.0, "Total Transactions": 148.0, "Total Customers": 109.0, "Median Spend per Transaction": 9.86, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -74.967871, 40.085677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5mk", "Name": "Boba King", "Category": "Restaurants and Other Eating Places", "Address": "1232 Chestnut St", "LATITUDE": 39.950488, "LONGITUDE": -75.161675, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 25.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 5.0, "Total Spend": 423.0, "Total Transactions": 39.0, "Total Customers": 34.0, "Median Spend per Transaction": 9.58, "Median Spend per Customer": 9.43 }, "geometry": { "type": "Point", "coordinates": [ -75.161675, 39.950488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23v@63s-dw9-7nq", "Name": "InMotion", "Category": "Electronics and Appliance Stores", "Address": "8500 Essington Ave Uppr", "LATITUDE": 39.894631, "LONGITUDE": -75.2293, "DATE_RANGE_START": 2023, "Total Visits": 5484.0, "Total Visitors": 3809.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 5591.0, "Total Transactions": 90.0, "Total Customers": 90.0, "Median Spend per Transaction": 33.47, "Median Spend per Customer": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.2293, 39.894631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "537 Adams Ave", "LATITUDE": 40.03825, "LONGITUDE": -75.106651, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 169.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 11.0, "Total Spend": 44.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.37, "Median Spend per Customer": 17.37 }, "geometry": { "type": "Point", "coordinates": [ -75.106651, 40.03825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-223@628-p8d-yd9", "Name": "Tavares Grocery", "Category": "Grocery Stores", "Address": "5200 Burton St", "LATITUDE": 40.015015, "LONGITUDE": -75.070972, "DATE_RANGE_START": 2023, "Total Visits": 94.0, "Total Visitors": 74.0, "POI_CBG": 421010298005.0, "Median Dwell Time": 400.0, "Total Spend": 52.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 4.25, "Median Spend per Customer": 3.88 }, "geometry": { "type": "Point", "coordinates": [ -75.070972, 40.015015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1240 W Erie Ave", "LATITUDE": 40.00463, "LONGITUDE": -75.104417, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 8.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 7.0, "Total Spend": 148.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 11.41, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.104417, 40.00463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22r@628-p7x-5s5", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "2201 Cottman Ave", "LATITUDE": 40.04942, "LONGITUDE": -75.061163, "DATE_RANGE_START": 2023, "Total Visits": 3988.0, "Total Visitors": 2148.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 32.0, "Total Spend": 536.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 15.64, "Median Spend per Customer": 15.64 }, "geometry": { "type": "Point", "coordinates": [ -75.061163, 40.04942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4424 N Broad St", "LATITUDE": 40.021237, "LONGITUDE": -75.149867, "DATE_RANGE_START": 2023, "Total Visits": 1130.0, "Total Visitors": 802.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 12.0, "Total Spend": 310.0, "Total Transactions": 26.0, "Total Customers": 19.0, "Median Spend per Transaction": 7.8, "Median Spend per Customer": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.149867, 40.021237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmc-v2k", "Name": "Bath & Body Works", "Category": "Health and Personal Care Stores", "Address": "1851 S Columbus Blvd Ste 6", "LATITUDE": 39.923559, "LONGITUDE": -75.14048, "DATE_RANGE_START": 2023, "Total Visits": 494.0, "Total Visitors": 446.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 25.0, "Total Spend": 36670.0, "Total Transactions": 932.0, "Total Customers": 832.0, "Median Spend per Transaction": 31.5, "Median Spend per Customer": 33.37 }, "geometry": { "type": "Point", "coordinates": [ -75.14048, 39.923559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "Name": "Eye Encounters", "Category": "Health and Personal Care Stores", "Address": "1925 Chestnut St", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2023, "Total Visits": 4324.0, "Total Visitors": 2851.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 11.0, "Total Spend": 1705.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 191.4, "Median Spend per Customer": 102.8 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6201 Ridge Ave", "LATITUDE": 40.036034, "LONGITUDE": -75.217348, "DATE_RANGE_START": 2023, "Total Visits": 683.0, "Total Visitors": 472.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 3.0, "Total Spend": 2294.0, "Total Transactions": 76.0, "Total Customers": 43.0, "Median Spend per Transaction": 27.44, "Median Spend per Customer": 47.16 }, "geometry": { "type": "Point", "coordinates": [ -75.217348, 40.036034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1600 John F Kennedy Blvd", "LATITUDE": 39.953744, "LONGITUDE": -75.167214, "DATE_RANGE_START": 2023, "Total Visits": 3027.0, "Total Visitors": 1916.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 16.0, "Total Spend": 9984.0, "Total Transactions": 1691.0, "Total Customers": 777.0, "Median Spend per Transaction": 4.96, "Median Spend per Customer": 7.43 }, "geometry": { "type": "Point", "coordinates": [ -75.167214, 39.953744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8m-v2k", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "6406 Sackett St", "LATITUDE": 40.029454, "LONGITUDE": -75.058288, "DATE_RANGE_START": 2023, "Total Visits": 277.0, "Total Visitors": 213.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 16.0, "Total Spend": 1944.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 42.47, "Median Spend per Customer": 43.19 }, "geometry": { "type": "Point", "coordinates": [ -75.058288, 40.029454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1300 S Columbus Blvd", "LATITUDE": 39.930199, "LONGITUDE": -75.144817, "DATE_RANGE_START": 2023, "Total Visits": 581.0, "Total Visitors": 500.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 7.0, "Total Spend": 17569.0, "Total Transactions": 338.0, "Total Customers": 237.0, "Median Spend per Transaction": 25.48, "Median Spend per Customer": 34.97 }, "geometry": { "type": "Point", "coordinates": [ -75.144817, 39.930199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "Name": "Shing Kee", "Category": "Restaurants and Other Eating Places", "Address": "600 Washington Ave Ste 18A", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2023, "Total Visits": 212.0, "Total Visitors": 188.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 6.0, "Total Spend": 1147.0, "Total Transactions": 19.0, "Total Customers": 18.0, "Median Spend per Transaction": 46.88, "Median Spend per Customer": 46.01 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "3300 Aramingo Ave", "LATITUDE": 39.990675, "LONGITUDE": -75.102947, "DATE_RANGE_START": 2023, "Total Visits": 530.0, "Total Visitors": 309.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 20.0, "Total Spend": 17864.0, "Total Transactions": 383.0, "Total Customers": 309.0, "Median Spend per Transaction": 34.55, "Median Spend per Customer": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.102947, 39.990675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-fcq", "Name": "Litterpaw Pet Supply", "Category": "Other Miscellaneous Store Retailers", "Address": "267 S 10th St", "LATITUDE": 39.946481, "LONGITUDE": -75.157646, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 119.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 5.0, "Total Spend": 190.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 37.9, "Median Spend per Customer": 75.8 }, "geometry": { "type": "Point", "coordinates": [ -75.157646, 39.946481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-rhq", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "3200 Red Lion Rd # 09", "LATITUDE": 40.079335, "LONGITUDE": -74.993338, "DATE_RANGE_START": 2023, "Total Visits": 2071.0, "Total Visitors": 887.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 8.0, "Total Spend": 47122.0, "Total Transactions": 1380.0, "Total Customers": 532.0, "Median Spend per Transaction": 20.43, "Median Spend per Customer": 36.81 }, "geometry": { "type": "Point", "coordinates": [ -74.993338, 40.079335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-mrk", "Name": "Pat's King Of Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1237 E Passyunk Ave", "LATITUDE": 39.933211, "LONGITUDE": -75.159243, "DATE_RANGE_START": 2023, "Total Visits": 306.0, "Total Visitors": 293.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 6.0, "Total Spend": 341.0, "Total Transactions": 19.0, "Total Customers": 14.0, "Median Spend per Transaction": 15.49, "Median Spend per Customer": 30.97 }, "geometry": { "type": "Point", "coordinates": [ -75.159243, 39.933211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-j7q", "Name": "Frecon Farms", "Category": "Specialty Food Stores", "Address": "1819 Walnut St", "LATITUDE": 39.950808, "LONGITUDE": -75.171348, "DATE_RANGE_START": 2023, "Total Visits": 2842.0, "Total Visitors": 1860.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 1905.0, "Total Transactions": 108.0, "Total Customers": 90.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171348, 39.950808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dvz-26k", "Name": "New York Gyro Halal Food", "Category": "Restaurants and Other Eating Places", "Address": "188 S 43rd St", "LATITUDE": 39.955023, "LONGITUDE": -75.20893, "DATE_RANGE_START": 2023, "Total Visits": 571.0, "Total Visitors": 339.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 6.0, "Total Spend": 79.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20893, 39.955023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "9990 Roosevelt Blvd", "LATITUDE": 40.094173, "LONGITUDE": -75.016684, "DATE_RANGE_START": 2023, "Total Visits": 470.0, "Total Visitors": 356.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 9.0, "Total Spend": 6791.0, "Total Transactions": 500.0, "Total Customers": 344.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 12.51 }, "geometry": { "type": "Point", "coordinates": [ -75.016684, 40.094173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-td9", "Name": "NY Bagel Cafe & Deli", "Category": "Restaurants and Other Eating Places", "Address": "103 Turner St", "LATITUDE": 39.96081, "LONGITUDE": -75.157391, "DATE_RANGE_START": 2023, "Total Visits": 282.0, "Total Visitors": 150.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 49.0, "Total Spend": 252.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 13.15, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.157391, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5901 Wissahickon Ave", "LATITUDE": 40.029929, "LONGITUDE": -75.186202, "DATE_RANGE_START": 2023, "Total Visits": 412.0, "Total Visitors": 294.0, "POI_CBG": 421010239002.0, "Median Dwell Time": 3.0, "Total Spend": 2862.0, "Total Transactions": 103.0, "Total Customers": 79.0, "Median Spend per Transaction": 20.11, "Median Spend per Customer": 27.43 }, "geometry": { "type": "Point", "coordinates": [ -75.186202, 40.029929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm9-zs5", "Name": "Ishkabibble's", "Category": "Restaurants and Other Eating Places", "Address": "517 South St", "LATITUDE": 39.942066, "LONGITUDE": -75.151372, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 209.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 11.0, "Total Spend": 116.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151372, 39.942066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-phj-rrk", "Name": "BBQ Town", "Category": "Restaurants and Other Eating Places", "Address": "7711 Ogontz Ave", "LATITUDE": 40.071208, "LONGITUDE": -75.157221, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 104.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 12.0, "Total Spend": 252.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 30.86, "Median Spend per Customer": 30.06 }, "geometry": { "type": "Point", "coordinates": [ -75.157221, 40.071208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "Name": "Macaroni's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "9315 Old Bustleton Ave", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 183.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 55.0, "Total Spend": 10290.0, "Total Transactions": 81.0, "Total Customers": 71.0, "Median Spend per Transaction": 111.76, "Median Spend per Customer": 137.24 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj6-99f", "Name": "Red Wine Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "701 Adams Ave", "LATITUDE": 40.033146, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 187.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 28.0, "Total Spend": 1203.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 97.2, "Median Spend per Customer": 119.48 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.033146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6344 Stenton Ave", "LATITUDE": 40.05985, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2023, "Total Visits": 685.0, "Total Visitors": 407.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 14.0, "Total Spend": 1998.0, "Total Transactions": 140.0, "Total Customers": 90.0, "Median Spend per Transaction": 6.98, "Median Spend per Customer": 11.94 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 40.05985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-223@628-pmf-j35", "Name": "Premium Steap", "Category": "Restaurants and Other Eating Places", "Address": "111 S 18th St", "LATITUDE": 39.951336, "LONGITUDE": -75.170234, "DATE_RANGE_START": 2023, "Total Visits": 1325.0, "Total Visitors": 847.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 19.0, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.170234, 39.951336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-4vz", "Name": "Cafe Tinto", "Category": "Restaurants and Other Eating Places", "Address": "143 E Wyoming Ave", "LATITUDE": 40.02156, "LONGITUDE": -75.122622, "DATE_RANGE_START": 2023, "Total Visits": 199.0, "Total Visitors": 76.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 3.0, "Total Spend": 2559.0, "Total Transactions": 218.0, "Total Customers": 83.0, "Median Spend per Transaction": 9.13, "Median Spend per Customer": 20.12 }, "geometry": { "type": "Point", "coordinates": [ -75.122622, 40.02156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Frankford Ave", "LATITUDE": 40.065234, "LONGITUDE": -74.981906, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010362033.0, "Median Dwell Time": 3.0, "Total Spend": 429.0, "Total Transactions": 25.0, "Total Customers": 15.0, "Median Spend per Transaction": 14.08, "Median Spend per Customer": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -74.981906, 40.065234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "Name": "Fleishman Fabrics & Supplies", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "737 S 4th St", "LATITUDE": 39.939359, "LONGITUDE": -75.149441, "DATE_RANGE_START": 2023, "Total Visits": 468.0, "Total Visitors": 173.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 361.0, "Total Spend": 3148.0, "Total Transactions": 76.0, "Total Customers": 63.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 38.9 }, "geometry": { "type": "Point", "coordinates": [ -75.149441, 39.939359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj7-sqz", "Name": "Pizza Hut", "Category": "Restaurants and Other Eating Places", "Address": "4501 Castor Ave", "LATITUDE": 40.017079, "LONGITUDE": -75.096442, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 6.0, "Total Spend": 7610.0, "Total Transactions": 301.0, "Total Customers": 267.0, "Median Spend per Transaction": 22.47, "Median Spend per Customer": 24.38 }, "geometry": { "type": "Point", "coordinates": [ -75.096442, 40.017079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2120 S 23rd St", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2023, "Total Visits": 259.0, "Total Visitors": 242.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 9.0, "Total Spend": 116.0, "Total Transactions": 15.0, "Total Customers": 6.0, "Median Spend per Transaction": 3.45, "Median Spend per Customer": 15.28 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "Name": "Varga Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "941 Spruce St", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 147.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 39.0, "Total Spend": 4302.0, "Total Transactions": 81.0, "Total Customers": 66.0, "Median Spend per Transaction": 39.9, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p9j-zj9", "Name": "Kabobi", "Category": "Restaurants and Other Eating Places", "Address": "10600 Roosevelt Blvd", "LATITUDE": 40.0995, "LONGITUDE": -75.010461, "DATE_RANGE_START": 2023, "Total Visits": 274.0, "Total Visitors": 158.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 8.0, "Total Spend": 1433.0, "Total Transactions": 30.0, "Total Customers": 21.0, "Median Spend per Transaction": 37.39, "Median Spend per Customer": 39.16 }, "geometry": { "type": "Point", "coordinates": [ -75.010461, 40.0995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "Name": "Henry James Saloon", "Category": "Restaurants and Other Eating Places", "Address": "577 Jamestown St", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 137.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 101.0, "Total Spend": 1447.0, "Total Transactions": 34.0, "Total Customers": 25.0, "Median Spend per Transaction": 39.52, "Median Spend per Customer": 51.59 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj4-rrk", "Name": "La Villa", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "430 W Indiana Ave", "LATITUDE": 39.996458, "LONGITUDE": -75.138434, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 152.0, "POI_CBG": 421010176012.0, "Median Dwell Time": 1.0, "Total Spend": 1161.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 107.5, "Median Spend per Customer": 123.15 }, "geometry": { "type": "Point", "coordinates": [ -75.138434, 39.996458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1443 S 7th St", "LATITUDE": 39.930298, "LONGITUDE": -75.155924, "DATE_RANGE_START": 2023, "Total Visits": 1304.0, "Total Visitors": 897.0, "POI_CBG": 421010028013.0, "Median Dwell Time": 5.0, "Total Spend": 9574.0, "Total Transactions": 546.0, "Total Customers": 278.0, "Median Spend per Transaction": 13.17, "Median Spend per Customer": 18.82 }, "geometry": { "type": "Point", "coordinates": [ -75.155924, 39.930298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8m-snq", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "5231 Frankford Ave", "LATITUDE": 40.022739, "LONGITUDE": -75.07728, "DATE_RANGE_START": 2023, "Total Visits": 247.0, "Total Visitors": 174.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 7.0, "Total Spend": 579.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 200.0, "Median Spend per Customer": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.07728, 40.022739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmd-xt9", "Name": "Cava Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "2007 Washington Ave", "LATITUDE": 39.939271, "LONGITUDE": -75.176627, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 210.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 7.0, "Total Spend": 35276.0, "Total Transactions": 34.0, "Total Customers": 19.0, "Median Spend per Transaction": 216.27, "Median Spend per Customer": 162.54 }, "geometry": { "type": "Point", "coordinates": [ -75.176627, 39.939271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pnw-psq", "Name": "Lodge", "Category": "Clothing Stores", "Address": "177 W Girard Ave", "LATITUDE": 39.96959, "LONGITUDE": -75.138853, "DATE_RANGE_START": 2023, "Total Visits": 649.0, "Total Visitors": 362.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 7.0, "Total Spend": 936.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 17.88, "Median Spend per Customer": 31.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138853, 39.96959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8f-djv", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "4710 Oxford Ave", "LATITUDE": 40.017133, "LONGITUDE": -75.084023, "DATE_RANGE_START": 2023, "Total Visits": 489.0, "Total Visitors": 368.0, "POI_CBG": 421010300006.0, "Median Dwell Time": 1.0, "Total Spend": 1012.0, "Total Transactions": 33.0, "Total Customers": 26.0, "Median Spend per Transaction": 24.3, "Median Spend per Customer": 28.3 }, "geometry": { "type": "Point", "coordinates": [ -75.084023, 40.017133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "Name": "Bad Brother", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "726 N 24th St", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2023, "Total Visits": 65.0, "Total Visitors": 65.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 115.0, "Total Spend": 1064.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 78.99, "Median Spend per Customer": 78.99 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-sdv", "Name": "P S & Co", "Category": "Specialty Food Stores", "Address": "1706 Locust St", "LATITUDE": 39.94866, "LONGITUDE": -75.16974, "DATE_RANGE_START": 2023, "Total Visits": 507.0, "Total Visitors": 448.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 109.0, "Total Spend": 2014.0, "Total Transactions": 45.0, "Total Customers": 35.0, "Median Spend per Transaction": 33.15, "Median Spend per Customer": 40.29 }, "geometry": { "type": "Point", "coordinates": [ -75.16974, 39.94866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnt-435", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2427 Aramingo Ave Ste 8", "LATITUDE": 39.974273, "LONGITUDE": -75.120323, "DATE_RANGE_START": 2023, "Total Visits": 1749.0, "Total Visitors": 889.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 23.0, "Total Spend": 7946.0, "Total Transactions": 68.0, "Total Customers": 45.0, "Median Spend per Transaction": 85.15, "Median Spend per Customer": 42.57 }, "geometry": { "type": "Point", "coordinates": [ -75.120323, 39.974273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pm6-f2k", "Name": "Bobs Food Market", "Category": "Specialty Food Stores", "Address": "2200 S 3rd St", "LATITUDE": 39.920704, "LONGITUDE": -75.15184, "DATE_RANGE_START": 2023, "Total Visits": 78.0, "Total Visitors": 41.0, "POI_CBG": 421010042012.0, "Median Dwell Time": 8.0, "Total Spend": 97.0, "Total Transactions": 11.0, "Total Customers": 6.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15184, 39.920704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pfy-h3q", "Name": "Accent on Animals", "Category": "Other Miscellaneous Store Retailers", "Address": "7142 Ridge Ave", "LATITUDE": 40.044128, "LONGITUDE": -75.232181, "DATE_RANGE_START": 2023, "Total Visits": 332.0, "Total Visitors": 262.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 5.0, "Total Spend": 1881.0, "Total Transactions": 76.0, "Total Customers": 74.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 16.76 }, "geometry": { "type": "Point", "coordinates": [ -75.232181, 40.044128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1 Mifflin St", "LATITUDE": 39.924423, "LONGITUDE": -75.145957, "DATE_RANGE_START": 2023, "Total Visits": 6662.0, "Total Visitors": 4472.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 21.0, "Total Spend": 290105.0, "Total Transactions": 5197.0, "Total Customers": 3143.0, "Median Spend per Transaction": 34.86, "Median Spend per Customer": 55.68 }, "geometry": { "type": "Point", "coordinates": [ -75.145957, 39.924423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3617 Lancaster Ave Fl 1", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2023, "Total Visits": 303.0, "Total Visitors": 108.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 1033.0, "Total Spend": 2243.0, "Total Transactions": 78.0, "Total Customers": 48.0, "Median Spend per Transaction": 16.56, "Median Spend per Customer": 29.72 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "Name": "Bindlestiff Books", "Category": "Book Stores and News Dealers", "Address": "4530 Baltimore Ave", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010078005.0, "Median Dwell Time": null, "Total Spend": 347.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 45.9, "Median Spend per Customer": 45.9 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pnw-x89", "Name": "Pretty Girls Cook", "Category": "Restaurants and Other Eating Places", "Address": "1016 N Marshall St", "LATITUDE": 39.97001, "LONGITUDE": -75.147605, "DATE_RANGE_START": 2023, "Total Visits": 110.0, "Total Visitors": 110.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 184.0, "Total Spend": 267.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 106.56, "Median Spend per Customer": 106.56 }, "geometry": { "type": "Point", "coordinates": [ -75.147605, 39.97001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "Name": "Roses Florist", "Category": "Florists", "Address": "3551 Chestnut St", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2023, "Total Visits": 410.0, "Total Visitors": 312.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 18.0, "Total Spend": 535.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 28.61, "Median Spend per Customer": 28.61 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pp2-sdv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3829 Aramingo Ave", "LATITUDE": 39.996078, "LONGITUDE": -75.090398, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 24.0, "Total Spend": 524.0, "Total Transactions": 26.0, "Total Customers": 20.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.090398, 39.996078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-xyv", "Name": "M S Mart", "Category": "Health and Personal Care Stores", "Address": "222 N 10th St", "LATITUDE": 39.956183, "LONGITUDE": -75.155912, "DATE_RANGE_START": 2023, "Total Visits": 866.0, "Total Visitors": 608.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 11.0, "Total Spend": 4537.0, "Total Transactions": 137.0, "Total Customers": 51.0, "Median Spend per Transaction": 39.63, "Median Spend per Customer": 40.33 }, "geometry": { "type": "Point", "coordinates": [ -75.155912, 39.956183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3601 Midvale Ave", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2023, "Total Visits": 854.0, "Total Visitors": 507.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 11.0, "Total Spend": 19174.0, "Total Transactions": 887.0, "Total Customers": 516.0, "Median Spend per Transaction": 15.18, "Median Spend per Customer": 26.01 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm5-fj9", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "80 E Oregon Ave", "LATITUDE": 39.913658, "LONGITUDE": -75.149869, "DATE_RANGE_START": 2023, "Total Visits": 294.0, "Total Visitors": 271.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 94.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149869, 39.913658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-w6k", "Name": "National Mechanics", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "22 S 3rd St", "LATITUDE": 39.94956, "LONGITUDE": -75.146014, "DATE_RANGE_START": 2023, "Total Visits": 251.0, "Total Visitors": 230.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 40.0, "Total Spend": 1244.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 59.41, "Median Spend per Customer": 55.46 }, "geometry": { "type": "Point", "coordinates": [ -75.146014, 39.94956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "Name": "Bookhaven", "Category": "Book Stores and News Dealers", "Address": "2202 Fairmount Ave", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 222.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 21.0, "Total Spend": 1474.0, "Total Transactions": 53.0, "Total Customers": 46.0, "Median Spend per Transaction": 25.92, "Median Spend per Customer": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nnq", "Name": "Liberty Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1244 N Front St", "LATITUDE": 39.970136, "LONGITUDE": -75.136058, "DATE_RANGE_START": 2023, "Total Visits": 492.0, "Total Visitors": 447.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 30.0, "Total Spend": 6190.0, "Total Transactions": 183.0, "Total Customers": 143.0, "Median Spend per Transaction": 23.03, "Median Spend per Customer": 27.06 }, "geometry": { "type": "Point", "coordinates": [ -75.136058, 39.970136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-7t9", "Name": "Rybread", "Category": "Restaurants and Other Eating Places", "Address": "1711 Fairmount Ave", "LATITUDE": 39.967471, "LONGITUDE": -75.165645, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 5.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 13.0, "Total Spend": 8045.0, "Total Transactions": 560.0, "Total Customers": 336.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 17.78 }, "geometry": { "type": "Point", "coordinates": [ -75.165645, 39.967471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1345 W Olney Ave", "LATITUDE": 40.039119, "LONGITUDE": -75.144123, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 29.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 10.0, "Total Spend": 2604.0, "Total Transactions": 446.0, "Total Customers": 174.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.144123, 40.039119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "11701 Bustleton Ave", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2023, "Total Visits": 2215.0, "Total Visitors": 1200.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 12.0, "Total Spend": 52127.0, "Total Transactions": 1083.0, "Total Customers": 596.0, "Median Spend per Transaction": 27.57, "Median Spend per Customer": 49.98 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-7h5", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "861 N 3rd St", "LATITUDE": 39.96478, "LONGITUDE": -75.14241, "DATE_RANGE_START": 2023, "Total Visits": 361.0, "Total Visitors": 254.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 47.0, "Total Spend": 1869.0, "Total Transactions": 61.0, "Total Customers": 48.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.14241, 39.96478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-m6k", "Name": "Arch Street Lighting", "Category": "Home Furnishings Stores", "Address": "120 Arch St", "LATITUDE": 39.951738, "LONGITUDE": -75.142429, "DATE_RANGE_START": 2023, "Total Visits": 1104.0, "Total Visitors": 556.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 339.0, "Total Spend": 3906.0, "Total Transactions": 14.0, "Total Customers": 5.0, "Median Spend per Transaction": 174.32, "Median Spend per Customer": 708.85 }, "geometry": { "type": "Point", "coordinates": [ -75.142429, 39.951738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "Name": "Fairdale Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4019 Fairdale Rd", "LATITUDE": 40.084505, "LONGITUDE": -74.972665, "DATE_RANGE_START": 2023, "Total Visits": 96.0, "Total Visitors": 53.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 127.0, "Total Spend": 194.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 33.42 }, "geometry": { "type": "Point", "coordinates": [ -74.972665, 40.084505 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-mzf", "Name": "Tir na nOg Irish Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1600 Arch St", "LATITUDE": 39.954415, "LONGITUDE": -75.16676, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 170.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 82.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16676, 39.954415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-cqz", "Name": "Little Morocco", "Category": "Restaurants and Other Eating Places", "Address": "1431 W Passyunk Ave # 1F", "LATITUDE": 39.925459, "LONGITUDE": -75.170748, "DATE_RANGE_START": 2023, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 72.0, "Total Spend": 231.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.170748, 39.925459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pnx-bp9", "Name": "Girard Food & Gas Mart", "Category": "Gasoline Stations", "Address": "1138 E Susquehanna Ave", "LATITUDE": 39.971679, "LONGITUDE": -75.124958, "DATE_RANGE_START": 2023, "Total Visits": 843.0, "Total Visitors": 634.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 3.0, "Total Spend": 7353.0, "Total Transactions": 407.0, "Total Customers": 190.0, "Median Spend per Transaction": 13.98, "Median Spend per Customer": 21.87 }, "geometry": { "type": "Point", "coordinates": [ -75.124958, 39.971679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028738, "LONGITUDE": -75.099166, "DATE_RANGE_START": 2023, "Total Visits": 1410.0, "Total Visitors": 1233.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 55.0, "Total Spend": 7704.0, "Total Transactions": 178.0, "Total Customers": 148.0, "Median Spend per Transaction": 26.47, "Median Spend per Customer": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.099166, 40.028738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "Name": "Pizza Boli's", "Category": "Restaurants and Other Eating Places", "Address": "3883 Glendale St", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010190001.0, "Median Dwell Time": 16.0, "Total Spend": 282.0, "Total Transactions": 15.0, "Total Customers": 14.0, "Median Spend per Transaction": 17.94, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "10500 Roosevelt Blvd", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2023, "Total Visits": 679.0, "Total Visitors": 654.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 8.0, "Total Spend": 1572.0, "Total Transactions": 40.0, "Total Customers": 34.0, "Median Spend per Transaction": 36.18, "Median Spend per Customer": 40.07 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@628-pmf-mrk", "Name": "Bain's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St", "LATITUDE": 39.952352, "LONGITUDE": -75.168112, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 38.0, "Total Spend": 206.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.168112, 39.952352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "Name": "New Panda", "Category": "Restaurants and Other Eating Places", "Address": "8340 Bustleton Ave", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 159.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 25.0, "Total Spend": 1558.0, "Total Transactions": 63.0, "Total Customers": 44.0, "Median Spend per Transaction": 24.19, "Median Spend per Customer": 26.14 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp4-x3q", "Name": "Ska", "Category": "Restaurants and Other Eating Places", "Address": "2416 Kensington Ave Fl 1", "LATITUDE": 39.986824, "LONGITUDE": -75.131408, "DATE_RANGE_START": 2023, "Total Visits": 695.0, "Total Visitors": 284.0, "POI_CBG": 421010163004.0, "Median Dwell Time": 1191.0, "Total Spend": 392.0, "Total Transactions": 13.0, "Total Customers": 6.0, "Median Spend per Transaction": 31.84, "Median Spend per Customer": 34.45 }, "geometry": { "type": "Point", "coordinates": [ -75.131408, 39.986824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pnw-nh5", "Name": "Johnny Brenda's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1201 Frankford Ave", "LATITUDE": 39.969072, "LONGITUDE": -75.134263, "DATE_RANGE_START": 2023, "Total Visits": 253.0, "Total Visitors": 175.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 43.0, "Total Spend": 1680.0, "Total Transactions": 35.0, "Total Customers": 24.0, "Median Spend per Transaction": 45.36, "Median Spend per Customer": 50.24 }, "geometry": { "type": "Point", "coordinates": [ -75.134263, 39.969072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7x-b6k", "Name": "New England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6728 Bustleton Ave", "LATITUDE": 40.040059, "LONGITUDE": -75.066331, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 133.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 17.0, "Total Spend": 2069.0, "Total Transactions": 105.0, "Total Customers": 23.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 25.74 }, "geometry": { "type": "Point", "coordinates": [ -75.066331, 40.040059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvx-w49", "Name": "Grindcore House", "Category": "Restaurants and Other Eating Places", "Address": "4134 Chester Ave", "LATITUDE": 39.948198, "LONGITUDE": -75.206865, "DATE_RANGE_START": 2023, "Total Visits": 457.0, "Total Visitors": 289.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 9.0, "Total Spend": 4189.0, "Total Transactions": 326.0, "Total Customers": 227.0, "Median Spend per Transaction": 10.97, "Median Spend per Customer": 15.23 }, "geometry": { "type": "Point", "coordinates": [ -75.206865, 39.948198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-vs5", "Name": "Ys Market", "Category": "Restaurants and Other Eating Places", "Address": "3468 Kensington Ave", "LATITUDE": 40.000195, "LONGITUDE": -75.106917, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 174.0, "POI_CBG": 421010192004.0, "Median Dwell Time": 4.0, "Total Spend": 155.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 32.22, "Median Spend per Customer": 32.22 }, "geometry": { "type": "Point", "coordinates": [ -75.106917, 40.000195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.046221, "LONGITUDE": -75.056536, "DATE_RANGE_START": 2023, "Total Visits": 780.0, "Total Visitors": 545.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 19.0, "Total Spend": 9623.0, "Total Transactions": 1226.0, "Total Customers": 559.0, "Median Spend per Transaction": 6.02, "Median Spend per Customer": 9.21 }, "geometry": { "type": "Point", "coordinates": [ -75.056536, 40.046221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "Name": "Barbuzzo", "Category": "Restaurants and Other Eating Places", "Address": "110 S 13th St", "LATITUDE": 39.950022, "LONGITUDE": -75.162129, "DATE_RANGE_START": 2023, "Total Visits": 3089.0, "Total Visitors": 1864.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 43.0, "Total Spend": 1988.0, "Total Transactions": 21.0, "Total Customers": 20.0, "Median Spend per Transaction": 85.41, "Median Spend per Customer": 84.03 }, "geometry": { "type": "Point", "coordinates": [ -75.162129, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "1230 Arch St", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 198.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 486.0, "Total Transactions": 30.0, "Total Customers": 25.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pm8-pgk", "Name": "Kasumi Sushi", "Category": "Restaurants and Other Eating Places", "Address": "2201 Penrose Ave Ste 3", "LATITUDE": 39.910232, "LONGITUDE": -75.186866, "DATE_RANGE_START": 2023, "Total Visits": 407.0, "Total Visitors": 293.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 7.0, "Total Spend": 2358.0, "Total Transactions": 78.0, "Total Customers": 64.0, "Median Spend per Transaction": 23.93, "Median Spend per Customer": 29.73 }, "geometry": { "type": "Point", "coordinates": [ -75.186866, 39.910232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "Name": "Honey Bee Gourmet Deli", "Category": "Restaurants and Other Eating Places", "Address": "1034 Spruce St", "LATITUDE": 39.945983, "LONGITUDE": -75.159401, "DATE_RANGE_START": 2023, "Total Visits": 453.0, "Total Visitors": 225.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 195.0, "Total Spend": 64.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.159401, 39.945983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-cqz", "Name": "Tropical Smoothie Café", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St Ste 4", "LATITUDE": 39.977828, "LONGITUDE": -75.158485, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 20.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 41.0, "Total Spend": 5655.0, "Total Transactions": 511.0, "Total Customers": 353.0, "Median Spend per Transaction": 8.51, "Median Spend per Customer": 13.26 }, "geometry": { "type": "Point", "coordinates": [ -75.158485, 39.977828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "Name": "Tomo Sushi & Ramen", "Category": "Restaurants and Other Eating Places", "Address": "228 Arch St", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 103.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1004.0, "Total Spend": 597.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 75.81, "Median Spend per Customer": 75.81 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-xnq", "Name": "Bai Wei", "Category": "Restaurants and Other Eating Places", "Address": "1038 Race St", "LATITUDE": 39.95547, "LONGITUDE": -75.157324, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 430.0, "Total Transactions": 10.0, "Total Customers": 5.0, "Median Spend per Transaction": 35.65, "Median Spend per Customer": 80.36 }, "geometry": { "type": "Point", "coordinates": [ -75.157324, 39.95547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvs-2ff", "Name": "Kim's Market", "Category": "Grocery Stores", "Address": "5548 Chester Ave", "LATITUDE": 39.938046, "LONGITUDE": -75.225575, "DATE_RANGE_START": 2023, "Total Visits": 476.0, "Total Visitors": 199.0, "POI_CBG": 421010071012.0, "Median Dwell Time": 34.0, "Total Spend": 61.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 15.47, "Median Spend per Customer": 15.47 }, "geometry": { "type": "Point", "coordinates": [ -75.225575, 39.938046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pj7-5fz", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "5843 Rising Sun Ave # 45", "LATITUDE": 40.043618, "LONGITUDE": -75.102863, "DATE_RANGE_START": 2023, "Total Visits": 288.0, "Total Visitors": 200.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 15.0, "Total Spend": 1653.0, "Total Transactions": 116.0, "Total Customers": 78.0, "Median Spend per Transaction": 10.84, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.102863, 40.043618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6215 Roosevelt Blvd", "LATITUDE": 40.034029, "LONGITUDE": -75.072579, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 3.0, "Total Spend": 2127.0, "Total Transactions": 74.0, "Total Customers": 61.0, "Median Spend per Transaction": 19.12, "Median Spend per Customer": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -75.072579, 40.034029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "Name": "Harbison Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "5725 Harbison Ave", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 157.0, "POI_CBG": 421010321003.0, "Median Dwell Time": 3.0, "Total Spend": 4667.0, "Total Transactions": 220.0, "Total Customers": 85.0, "Median Spend per Transaction": 20.78, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030072, "LONGITUDE": -75.101462, "DATE_RANGE_START": 2023, "Total Visits": 758.0, "Total Visitors": 669.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 25.0, "Total Spend": 49967.0, "Total Transactions": 2108.0, "Total Customers": 1826.0, "Median Spend per Transaction": 17.45, "Median Spend per Customer": 19.76 }, "geometry": { "type": "Point", "coordinates": [ -75.101462, 40.030072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4334 Frankford Ave", "LATITUDE": 40.012036, "LONGITUDE": -75.088981, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 5.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 6.0, "Total Spend": 480.0, "Total Transactions": 78.0, "Total Customers": 38.0, "Median Spend per Transaction": 5.72, "Median Spend per Customer": 8.89 }, "geometry": { "type": "Point", "coordinates": [ -75.088981, 40.012036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7yv", "Name": "BurgerFi", "Category": "Restaurants and Other Eating Places", "Address": "44 N 12th St", "LATITUDE": 39.953658, "LONGITUDE": -75.159719, "DATE_RANGE_START": 2023, "Total Visits": 5172.0, "Total Visitors": 3775.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 16.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.55, "Median Spend per Customer": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.159719, 39.953658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "Name": "Prohibition Taproom", "Category": "Restaurants and Other Eating Places", "Address": "501 N 13th St", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2023, "Total Visits": 233.0, "Total Visitors": 213.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 43.0, "Total Spend": 9058.0, "Total Transactions": 185.0, "Total Customers": 143.0, "Median Spend per Transaction": 39.74, "Median Spend per Customer": 48.49 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "Name": "Sweet Creations Unlimited", "Category": "Specialty Food Stores", "Address": "5940 Torresdale Ave", "LATITUDE": 40.017729, "LONGITUDE": -75.059726, "DATE_RANGE_START": 2023, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010321003.0, "Median Dwell Time": null, "Total Spend": 310.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 78.98, "Median Spend per Customer": 78.98 }, "geometry": { "type": "Point", "coordinates": [ -75.059726, 40.017729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "Name": "Friendship Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "3300 Cottman Ave", "LATITUDE": 40.039276, "LONGITUDE": -75.045861, "DATE_RANGE_START": 2023, "Total Visits": 277.0, "Total Visitors": 277.0, "POI_CBG": 421010315011.0, "Median Dwell Time": null, "Total Spend": 781.0, "Total Transactions": 18.0, "Total Customers": 6.0, "Median Spend per Transaction": 40.11, "Median Spend per Customer": 168.01 }, "geometry": { "type": "Point", "coordinates": [ -75.045861, 40.039276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5601 Vine St # 55", "LATITUDE": 39.966, "LONGITUDE": -75.233618, "DATE_RANGE_START": 2023, "Total Visits": 224.0, "Total Visitors": 167.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 11.0, "Total Spend": 9102.0, "Total Transactions": 212.0, "Total Customers": 163.0, "Median Spend per Transaction": 32.12, "Median Spend per Customer": 35.73 }, "geometry": { "type": "Point", "coordinates": [ -75.233618, 39.966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgj-3qz", "Name": "Pharmacy of America IV", "Category": "Health and Personal Care Stores", "Address": "1900 N 9th St", "LATITUDE": 39.981474, "LONGITUDE": -75.148733, "DATE_RANGE_START": 2023, "Total Visits": 966.0, "Total Visitors": 611.0, "POI_CBG": 421010377002.0, "Median Dwell Time": 7.0, "Total Spend": 290.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 6.62, "Median Spend per Customer": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.148733, 39.981474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2023, "Total Visits": 1413.0, "Total Visitors": 1236.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 32.0, "Total Spend": 24211.0, "Total Transactions": 467.0, "Total Customers": 387.0, "Median Spend per Transaction": 40.17, "Median Spend per Customer": 46.42 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-5fz", "Name": "Beyond Hello Center City", "Category": "Drugs and Druggists' Sundries Merchant Wholesalers", "Address": "1206 Sansom St", "LATITUDE": 39.94959, "LONGITUDE": -75.160732, "DATE_RANGE_START": 2023, "Total Visits": 3282.0, "Total Visitors": 2360.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 6.0, "Total Spend": 60419.0, "Total Transactions": 636.0, "Total Customers": 346.0, "Median Spend per Transaction": 78.5, "Median Spend per Customer": 134.23 }, "geometry": { "type": "Point", "coordinates": [ -75.160732, 39.94959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgm-3qz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4168 Ridge Ave", "LATITUDE": 40.008324, "LONGITUDE": -75.193602, "DATE_RANGE_START": 2023, "Total Visits": 580.0, "Total Visitors": 511.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 6.0, "Total Spend": 1505.0, "Total Transactions": 109.0, "Total Customers": 74.0, "Median Spend per Transaction": 10.83, "Median Spend per Customer": 11.76 }, "geometry": { "type": "Point", "coordinates": [ -75.193602, 40.008324 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pp5-ht9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2750 Aramingo Ave", "LATITUDE": 39.983661, "LONGITUDE": -75.115943, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010179005.0, "Median Dwell Time": 7.0, "Total Spend": 490.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 26.76, "Median Spend per Customer": 21.76 }, "geometry": { "type": "Point", "coordinates": [ -75.115943, 39.983661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "Name": "Theory", "Category": "Clothing Stores", "Address": "1616 Walnut St", "LATITUDE": 39.949758, "LONGITUDE": -75.168428, "DATE_RANGE_START": 2023, "Total Visits": 893.0, "Total Visitors": 690.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 14.0, "Total Spend": 7626.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 475.0, "Median Spend per Customer": 475.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168428, 39.949758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1900 Chestnut St", "LATITUDE": 39.951658, "LONGITUDE": -75.172295, "DATE_RANGE_START": 2023, "Total Visits": 2870.0, "Total Visitors": 2053.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 7.0, "Total Spend": 77406.0, "Total Transactions": 2974.0, "Total Customers": 1682.0, "Median Spend per Transaction": 18.13, "Median Spend per Customer": 27.55 }, "geometry": { "type": "Point", "coordinates": [ -75.172295, 39.951658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-t5f", "Name": "Pho Viet", "Category": "Restaurants and Other Eating Places", "Address": "5520 Whitaker Ave", "LATITUDE": 40.035248, "LONGITUDE": -75.100976, "DATE_RANGE_START": 2023, "Total Visits": 338.0, "Total Visitors": 327.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 20.0, "Total Spend": 4950.0, "Total Transactions": 104.0, "Total Customers": 89.0, "Median Spend per Transaction": 35.48, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100976, 40.035248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-btv", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "2300 Cecil B Moore Ave", "LATITUDE": 39.98043, "LONGITUDE": -75.172676, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 3.0, "POI_CBG": 421010149001.0, "Median Dwell Time": 150.0, "Total Spend": 133.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 19.09, "Median Spend per Customer": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.172676, 39.98043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-wkz", "Name": "Perakis Frames", "Category": "Home Furnishings Stores", "Address": "18 S Bank St", "LATITUDE": 39.949359, "LONGITUDE": -75.145196, "DATE_RANGE_START": 2023, "Total Visits": 2528.0, "Total Visitors": 1506.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 65.0, "Total Spend": 148.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 58.93, "Median Spend per Customer": 58.93 }, "geometry": { "type": "Point", "coordinates": [ -75.145196, 39.949359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-2p9", "Name": "Amazing Beauty Supply", "Category": "Grocery Stores", "Address": "108 S Farragut St", "LATITUDE": 39.956811, "LONGITUDE": -75.214634, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 6.0, "Total Spend": 79.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 31.38, "Median Spend per Customer": 31.38 }, "geometry": { "type": "Point", "coordinates": [ -75.214634, 39.956811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951605, "LONGITUDE": -75.168872, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 15.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 5.0, "Total Spend": 113.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 34.99, "Median Spend per Customer": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168872, 39.951605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-6tv", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "2901 Abbottsford Ave", "LATITUDE": 40.015035, "LONGITUDE": -75.178463, "DATE_RANGE_START": 2023, "Total Visits": 723.0, "Total Visitors": 557.0, "POI_CBG": 421010206001.0, "Median Dwell Time": 4.0, "Total Spend": 200.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.73, "Median Spend per Customer": 36.17 }, "geometry": { "type": "Point", "coordinates": [ -75.178463, 40.015035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2634 N Broad St # 44", "LATITUDE": 39.993628, "LONGITUDE": -75.15501, "DATE_RANGE_START": 2023, "Total Visits": 358.0, "Total Visitors": 220.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 7.0, "Total Spend": 737.0, "Total Transactions": 30.0, "Total Customers": 23.0, "Median Spend per Transaction": 19.45, "Median Spend per Customer": 20.12 }, "geometry": { "type": "Point", "coordinates": [ -75.15501, 39.993628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2600 Grant Ave", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2023, "Total Visits": 2151.0, "Total Visitors": 1534.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 79245.0, "Total Transactions": 4354.0, "Total Customers": 1760.0, "Median Spend per Transaction": 12.45, "Median Spend per Customer": 20.06 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2601 W Girard Ave", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2023, "Total Visits": 467.0, "Total Visitors": 294.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 14.0, "Total Spend": 201.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 7.33, "Median Spend per Customer": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@63s-dvx-hkf", "Name": "Plant and People", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1431 N 52nd St", "LATITUDE": 39.975294, "LONGITUDE": -75.226351, "DATE_RANGE_START": 2023, "Total Visits": 418.0, "Total Visitors": 418.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 91.0, "Total Spend": 126.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 50.31, "Median Spend per Customer": 50.31 }, "geometry": { "type": "Point", "coordinates": [ -75.226351, 39.975294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-28v", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1717 N 12th St Unit F", "LATITUDE": 39.978491, "LONGITUDE": -75.153508, "DATE_RANGE_START": 2023, "Total Visits": 928.0, "Total Visitors": 324.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 103.0, "Total Spend": 19759.0, "Total Transactions": 1481.0, "Total Customers": 698.0, "Median Spend per Transaction": 8.58, "Median Spend per Customer": 15.41 }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.978491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-tgk", "Name": "Angelina's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "327 W York St", "LATITUDE": 39.987407, "LONGITUDE": -75.139218, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 10.0, "POI_CBG": 421010163004.0, "Median Dwell Time": 2.0, "Total Spend": 165.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 11.07, "Median Spend per Customer": 11.07 }, "geometry": { "type": "Point", "coordinates": [ -75.139218, 39.987407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2344 N Broad St", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2023, "Total Visits": 401.0, "Total Visitors": 343.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 5.0, "Total Spend": 5317.0, "Total Transactions": 681.0, "Total Customers": 366.0, "Median Spend per Transaction": 6.62, "Median Spend per Customer": 9.42 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-y9z", "Name": "The Pet Snobs Boutique", "Category": "Other Miscellaneous Store Retailers", "Address": "606 S 9th St", "LATITUDE": 39.942339, "LONGITUDE": -75.157237, "DATE_RANGE_START": 2023, "Total Visits": 2361.0, "Total Visitors": 1576.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 5.0, "Total Spend": 191.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 46.43 }, "geometry": { "type": "Point", "coordinates": [ -75.157237, 39.942339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "Name": "Gennaro's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1315 Bainbridge St", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 238.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 2.0, "Total Spend": 345.0, "Total Transactions": 19.0, "Total Customers": 15.0, "Median Spend per Transaction": 16.53, "Median Spend per Customer": 18.67 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032068, "LONGITUDE": -75.213943, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 10.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 2.0, "Total Spend": 4243.0, "Total Transactions": 411.0, "Total Customers": 289.0, "Median Spend per Transaction": 8.97, "Median Spend per Customer": 11.24 }, "geometry": { "type": "Point", "coordinates": [ -75.213943, 40.032068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pgh-vs5", "Name": "Temple Teppanyaki", "Category": "Restaurants and Other Eating Places", "Address": "1928 N 12th St", "LATITUDE": 39.982244, "LONGITUDE": -75.153601, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 168.0, "Total Spend": 1763.0, "Total Transactions": 38.0, "Total Customers": 35.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 43.26 }, "geometry": { "type": "Point", "coordinates": [ -75.153601, 39.982244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "Name": "Hair Fashion & Beyond", "Category": "Health and Personal Care Stores", "Address": "1600 N Broad St Ste 9", "LATITUDE": 39.978105, "LONGITUDE": -75.158429, "DATE_RANGE_START": 2023, "Total Visits": 2743.0, "Total Visitors": 1938.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 21.0, "Total Spend": 5538.0, "Total Transactions": 208.0, "Total Customers": 163.0, "Median Spend per Transaction": 17.22, "Median Spend per Customer": 19.41 }, "geometry": { "type": "Point", "coordinates": [ -75.158429, 39.978105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yd9", "Name": "Tai Lake Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "134 N 10th St", "LATITUDE": 39.954672, "LONGITUDE": -75.156344, "DATE_RANGE_START": 2023, "Total Visits": 239.0, "Total Visitors": 239.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 16.0, "Total Spend": 3351.0, "Total Transactions": 35.0, "Total Customers": 33.0, "Median Spend per Transaction": 88.33, "Median Spend per Customer": 97.13 }, "geometry": { "type": "Point", "coordinates": [ -75.156344, 39.954672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "Name": "Dollar Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7578 Haverford Ave", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2023, "Total Visits": 452.0, "Total Visitors": 342.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 9.0, "Total Spend": 4599.0, "Total Transactions": 192.0, "Total Customers": 173.0, "Median Spend per Transaction": 15.89, "Median Spend per Customer": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3854 Morrell Ave", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2023, "Total Visits": 715.0, "Total Visitors": 402.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 11.0, "Total Spend": 276.0, "Total Transactions": 15.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.62, "Median Spend per Customer": 20.47 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1115 Cottman Ave", "LATITUDE": 40.060452, "LONGITUDE": -75.08143, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 4.0, "Total Spend": 959.0, "Total Transactions": 33.0, "Total Customers": 18.0, "Median Spend per Transaction": 18.67, "Median Spend per Customer": 49.58 }, "geometry": { "type": "Point", "coordinates": [ -75.08143, 40.060452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-225@628-pmf-j35", "Name": "Sofitel", "Category": "Traveler Accommodation", "Address": "120 S 17th St", "LATITUDE": 39.950868, "LONGITUDE": -75.169235, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 110.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 35.0, "Total Spend": 5983.0, "Total Transactions": 16.0, "Total Customers": 13.0, "Median Spend per Transaction": 312.88, "Median Spend per Customer": 350.66 }, "geometry": { "type": "Point", "coordinates": [ -75.169235, 39.950868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "10000 Bustleton Ave", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2023, "Total Visits": 957.0, "Total Visitors": 729.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 7.0, "Total Spend": 1738.0, "Total Transactions": 83.0, "Total Customers": 64.0, "Median Spend per Transaction": 15.15, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "Name": "Evan's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4311 Locust St", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2023, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 11.0, "Total Spend": 2011.0, "Total Transactions": 91.0, "Total Customers": 63.0, "Median Spend per Transaction": 17.73, "Median Spend per Customer": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgg-jsq", "Name": "BBQ Town", "Category": "Restaurants and Other Eating Places", "Address": "2150 W Sedge Ave", "LATITUDE": 39.995114, "LONGITUDE": -75.167387, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010168006.0, "Median Dwell Time": 80.0, "Total Spend": 329.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 22.56, "Median Spend per Customer": 21.84 }, "geometry": { "type": "Point", "coordinates": [ -75.167387, 39.995114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "Name": "Pizzeria Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1925 S Broad St", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 134.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 1.0, "Total Spend": 1066.0, "Total Transactions": 46.0, "Total Customers": 30.0, "Median Spend per Transaction": 20.9, "Median Spend per Customer": 29.73 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "321 E Allegheny Ave # 25", "LATITUDE": 39.998136, "LONGITUDE": -75.1245, "DATE_RANGE_START": 2023, "Total Visits": 34.0, "Total Visitors": 21.0, "POI_CBG": 421010177025.0, "Median Dwell Time": 10.0, "Total Spend": 649.0, "Total Transactions": 70.0, "Total Customers": 36.0, "Median Spend per Transaction": 5.33, "Median Spend per Customer": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.1245, 39.998136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2001 Chestnut St", "LATITUDE": 39.952358, "LONGITUDE": -75.17353, "DATE_RANGE_START": 2023, "Total Visits": 2334.0, "Total Visitors": 1566.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 9.0, "Total Spend": 5718.0, "Total Transactions": 908.0, "Total Customers": 378.0, "Median Spend per Transaction": 4.99, "Median Spend per Customer": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17353, 39.952358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7v-sqz", "Name": "Sloane Toyota of Philadelphia", "Category": "Automobile Dealers", "Address": "1546 Cottman Ave", "LATITUDE": 40.054964, "LONGITUDE": -75.075228, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 19.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 43.0, "Total Spend": 40808.0, "Total Transactions": 68.0, "Total Customers": 59.0, "Median Spend per Transaction": 126.4, "Median Spend per Customer": 126.26 }, "geometry": { "type": "Point", "coordinates": [ -75.075228, 40.054964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-k4v", "Name": "Kisso Sushi", "Category": "Restaurants and Other Eating Places", "Address": "205 N 4th St", "LATITUDE": 39.954281, "LONGITUDE": -75.146239, "DATE_RANGE_START": 2023, "Total Visits": 1144.0, "Total Visitors": 787.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 224.0, "Total Spend": 1280.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 67.13, "Median Spend per Customer": 73.18 }, "geometry": { "type": "Point", "coordinates": [ -75.146239, 39.954281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pgb-tn5", "Name": "JC Food Market", "Category": "Grocery Stores", "Address": "600 N 11th St", "LATITUDE": 39.962905, "LONGITUDE": -75.15611, "DATE_RANGE_START": 2023, "Total Visits": 471.0, "Total Visitors": 357.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 8.0, "Total Spend": 1274.0, "Total Transactions": 106.0, "Total Customers": 53.0, "Median Spend per Transaction": 10.24, "Median Spend per Customer": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15611, 39.962905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7z-7kf", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "901 Cottman Ave", "LATITUDE": 40.062355, "LONGITUDE": -75.08469, "DATE_RANGE_START": 2023, "Total Visits": 445.0, "Total Visitors": 273.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 64.0, "Total Spend": 165.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.08469, 40.062355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992707, "LONGITUDE": -75.100219, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 5.0, "Total Spend": 7422.0, "Total Transactions": 223.0, "Total Customers": 155.0, "Median Spend per Transaction": 32.5, "Median Spend per Customer": 34.67 }, "geometry": { "type": "Point", "coordinates": [ -75.100219, 39.992707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phq-rp9", "Name": "Hesaias Wigs", "Category": "Health and Personal Care Stores", "Address": "1905 E Washington Ln", "LATITUDE": 40.066299, "LONGITUDE": -75.159298, "DATE_RANGE_START": 2023, "Total Visits": 108.0, "Total Visitors": 108.0, "POI_CBG": 421010263023.0, "Median Dwell Time": 4.0, "Total Spend": 202.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 10.12, "Median Spend per Customer": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.159298, 40.066299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pgj-cqz", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "1600 N Broad St", "LATITUDE": 39.978249, "LONGITUDE": -75.157576, "DATE_RANGE_START": 2023, "Total Visits": 517.0, "Total Visitors": 402.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 2.0, "Total Spend": 860.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 79.98, "Median Spend per Customer": 79.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157576, 39.978249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2400 Lombard St", "LATITUDE": 39.946498, "LONGITUDE": -75.180667, "DATE_RANGE_START": 2023, "Total Visits": 311.0, "Total Visitors": 220.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 1.0, "Total Spend": 6846.0, "Total Transactions": 759.0, "Total Customers": 437.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 11.57 }, "geometry": { "type": "Point", "coordinates": [ -75.180667, 39.946498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phc-xbk", "Name": "Wynnecare Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2230 Bryn Mawr Ave", "LATITUDE": 39.991185, "LONGITUDE": -75.226906, "DATE_RANGE_START": 2023, "Total Visits": 800.0, "Total Visitors": 375.0, "POI_CBG": 421010119004.0, "Median Dwell Time": 5.0, "Total Spend": 495.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.28, "Median Spend per Customer": 29.56 }, "geometry": { "type": "Point", "coordinates": [ -75.226906, 39.991185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4601 Walnut St", "LATITUDE": 39.95576, "LONGITUDE": -75.214101, "DATE_RANGE_START": 2023, "Total Visits": 515.0, "Total Visitors": 392.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 4.0, "Total Spend": 1079.0, "Total Transactions": 50.0, "Total Customers": 39.0, "Median Spend per Transaction": 20.21, "Median Spend per Customer": 26.32 }, "geometry": { "type": "Point", "coordinates": [ -75.214101, 39.95576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "Name": "Trader Joe's", "Category": "Grocery Stores", "Address": "2121 Market St", "LATITUDE": 39.954198, "LONGITUDE": -75.176074, "DATE_RANGE_START": 2023, "Total Visits": 7237.0, "Total Visitors": 4348.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 9.0, "Total Spend": 522271.0, "Total Transactions": 10921.0, "Total Customers": 5716.0, "Median Spend per Transaction": 35.73, "Median Spend per Customer": 64.81 }, "geometry": { "type": "Point", "coordinates": [ -75.176074, 39.954198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p74-vs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7830 Frankford Ave", "LATITUDE": 40.040823, "LONGITUDE": -75.030397, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 178.0, "POI_CBG": 421010331023.0, "Median Dwell Time": 3.0, "Total Spend": 610.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 33.39, "Median Spend per Customer": 56.77 }, "geometry": { "type": "Point", "coordinates": [ -75.030397, 40.040823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pp5-5fz", "Name": "El Sabor Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "176 Diamond St", "LATITUDE": 39.981887, "LONGITUDE": -75.135939, "DATE_RANGE_START": 2023, "Total Visits": 81.0, "Total Visitors": 81.0, "POI_CBG": 421010157001.0, "Median Dwell Time": 1.0, "Total Spend": 162.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 46.09, "Median Spend per Customer": 46.09 }, "geometry": { "type": "Point", "coordinates": [ -75.135939, 39.981887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4438 Chestnut St", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2023, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 24.0, "Total Spend": 10374.0, "Total Transactions": 403.0, "Total Customers": 298.0, "Median Spend per Transaction": 23.56, "Median Spend per Customer": 26.93 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6401 Oxford Ave", "LATITUDE": 40.045462, "LONGITUDE": -75.087593, "DATE_RANGE_START": 2023, "Total Visits": 882.0, "Total Visitors": 580.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 11.0, "Total Spend": 11359.0, "Total Transactions": 516.0, "Total Customers": 336.0, "Median Spend per Transaction": 15.14, "Median Spend per Customer": 21.66 }, "geometry": { "type": "Point", "coordinates": [ -75.087593, 40.045462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2132 South St", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2023, "Total Visits": 909.0, "Total Visitors": 571.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 6.0, "Total Spend": 21137.0, "Total Transactions": 1045.0, "Total Customers": 562.0, "Median Spend per Transaction": 13.1, "Median Spend per Customer": 21.19 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "Name": "Thunderbird Salvage", "Category": "Used Merchandise Stores", "Address": "2441 Frankford Ave", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 128.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 5.0, "Total Spend": 399.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "Name": "Drury Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1311 Sansom St", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2023, "Total Visits": 256.0, "Total Visitors": 190.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 24.0, "Total Spend": 25127.0, "Total Transactions": 696.0, "Total Customers": 471.0, "Median Spend per Transaction": 24.32, "Median Spend per Customer": 33.85 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "3901 Chestnut St", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 4.0, "Total Spend": 1139.0, "Total Transactions": 61.0, "Total Customers": 56.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-5zz", "Name": "Crunchik'n", "Category": "Restaurants and Other Eating Places", "Address": "212 S 11th St", "LATITUDE": 39.948207, "LONGITUDE": -75.159314, "DATE_RANGE_START": 2023, "Total Visits": 287.0, "Total Visitors": 224.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 3.0, "Total Spend": 119.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 15.83, "Median Spend per Customer": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.159314, 39.948207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pjf-kpv", "Name": "El Quetzal", "Category": "Clothing Stores", "Address": "8440 Germantown Ave", "LATITUDE": 40.075688, "LONGITUDE": -75.206238, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 10.0, "Total Spend": 61.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 10.69, "Median Spend per Customer": 10.69 }, "geometry": { "type": "Point", "coordinates": [ -75.206238, 40.075688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pm9-tjv", "Name": "Watches Etc", "Category": "Clothing Stores", "Address": "105 S 8th St # A", "LATITUDE": 39.949318, "LONGITUDE": -75.153835, "DATE_RANGE_START": 2023, "Total Visits": 832.0, "Total Visitors": 606.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 2.0, "Total Spend": 99.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153835, 39.949318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6191 Ridge Ave", "LATITUDE": 40.035587, "LONGITUDE": -75.217074, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 149.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 10.0, "Total Spend": 4335.0, "Total Transactions": 540.0, "Total Customers": 271.0, "Median Spend per Transaction": 7.07, "Median Spend per Customer": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -75.217074, 40.035587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "630 Walnut Ln", "LATITUDE": 40.028767, "LONGITUDE": -75.206205, "DATE_RANGE_START": 2023, "Total Visits": 34.0, "Total Visitors": 26.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 5.0, "Total Spend": 2423.0, "Total Transactions": 110.0, "Total Customers": 75.0, "Median Spend per Transaction": 17.49, "Median Spend per Customer": 25.26 }, "geometry": { "type": "Point", "coordinates": [ -75.206205, 40.028767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.081559, "LONGITUDE": -75.024279, "DATE_RANGE_START": 2023, "Total Visits": 4351.0, "Total Visitors": 3039.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 20.0, "Total Spend": 37177.0, "Total Transactions": 575.0, "Total Customers": 402.0, "Median Spend per Transaction": 20.46, "Median Spend per Customer": 20.48 }, "geometry": { "type": "Point", "coordinates": [ -75.024279, 40.081559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvw-hwk", "Name": "Keren Food Market", "Category": "Grocery Stores", "Address": "4808 Spruce St", "LATITUDE": 39.953492, "LONGITUDE": -75.218599, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 3.0, "Total Spend": 14.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 3.64, "Median Spend per Customer": 5.59 }, "geometry": { "type": "Point", "coordinates": [ -75.218599, 39.953492 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9910 Frankford Ave Ste 250", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2023, "Total Visits": 421.0, "Total Visitors": 329.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 5.0, "Total Spend": 7543.0, "Total Transactions": 334.0, "Total Customers": 178.0, "Median Spend per Transaction": 15.75, "Median Spend per Customer": 24.17 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pmf-jgk", "Name": "Square 1682", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "121 S 17th St", "LATITUDE": 39.950843, "LONGITUDE": -75.168591, "DATE_RANGE_START": 2023, "Total Visits": 571.0, "Total Visitors": 382.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 81.0, "Total Spend": 2834.0, "Total Transactions": 51.0, "Total Customers": 41.0, "Median Spend per Transaction": 33.22, "Median Spend per Customer": 49.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168591, 39.950843 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "Name": "Cafe Saigon", "Category": "Restaurants and Other Eating Places", "Address": "827 Adams Ave", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2023, "Total Visits": 258.0, "Total Visitors": 215.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 5.0, "Total Spend": 1307.0, "Total Transactions": 44.0, "Total Customers": 34.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dw9-wtv", "Name": "Revive 21", "Category": "Restaurants and Other Eating Places", "Address": "Phildelphia Airport Terminal # F", "LATITUDE": 39.88045, "LONGITUDE": -75.241472, "DATE_RANGE_START": 2023, "Total Visits": 89.0, "Total Visitors": 63.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 2.0, "Total Spend": 44.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.42, "Median Spend per Customer": 17.42 }, "geometry": { "type": "Point", "coordinates": [ -75.241472, 39.88045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-sbk", "Name": "Izzy's 33", "Category": "Restaurants and Other Eating Places", "Address": "1703 S 9th St", "LATITUDE": 39.927844, "LONGITUDE": -75.159073, "DATE_RANGE_START": 2023, "Total Visits": 582.0, "Total Visitors": 382.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 31.0, "Total Spend": 1216.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 56.34, "Median Spend per Customer": 56.34 }, "geometry": { "type": "Point", "coordinates": [ -75.159073, 39.927844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pnw-ndv", "Name": "Cake Life Bake Shop", "Category": "Restaurants and Other Eating Places", "Address": "1306 Frankford Ave", "LATITUDE": 39.970456, "LONGITUDE": -75.134588, "DATE_RANGE_START": 2023, "Total Visits": 909.0, "Total Visitors": 711.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 14.0, "Total Spend": 681.0, "Total Transactions": 34.0, "Total Customers": 25.0, "Median Spend per Transaction": 13.35, "Median Spend per Customer": 18.87 }, "geometry": { "type": "Point", "coordinates": [ -75.134588, 39.970456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "917 W Girard Ave # 31", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2023, "Total Visits": 462.0, "Total Visitors": 346.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 6.0, "Total Spend": 12412.0, "Total Transactions": 1529.0, "Total Customers": 635.0, "Median Spend per Transaction": 7.23, "Median Spend per Customer": 11.81 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7607 Ridge Ave", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2023, "Total Visits": 569.0, "Total Visitors": 490.0, "POI_CBG": 421010218002.0, "Median Dwell Time": 2.0, "Total Spend": 1272.0, "Total Transactions": 28.0, "Total Customers": 15.0, "Median Spend per Transaction": 9.59, "Median Spend per Customer": 17.14 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "Name": "Evergreen Deli", "Category": "Grocery Stores", "Address": "46 S 4th St", "LATITUDE": 39.949157, "LONGITUDE": -75.147635, "DATE_RANGE_START": 2023, "Total Visits": 700.0, "Total Visitors": 609.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 2333.0, "Total Transactions": 215.0, "Total Customers": 96.0, "Median Spend per Transaction": 11.22, "Median Spend per Customer": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.147635, 39.949157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "102 E Chelten Ave", "LATITUDE": 40.037163, "LONGITUDE": -75.173091, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 6.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 6.0, "Total Spend": 114059.0, "Total Transactions": 3889.0, "Total Customers": 2221.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173091, 40.037163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgb-h89", "Name": "Franklin Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "1830 Callowhill St", "LATITUDE": 39.960316, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2023, "Total Visits": 246.0, "Total Visitors": 93.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 152.0, "Total Spend": 4723.0, "Total Transactions": 182.0, "Total Customers": 144.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.960316 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "Name": "Mid Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2800 W Dauphin St Ste 420", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2023, "Total Visits": 104.0, "Total Visitors": 79.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 48.0, "Total Spend": 220.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 9.71, "Median Spend per Customer": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pm4-pn5", "Name": "Charlie's Produce", "Category": "Grocery Stores", "Address": "1001 S 9th St", "LATITUDE": 39.93743, "LONGITUDE": -75.158033, "DATE_RANGE_START": 2023, "Total Visits": 499.0, "Total Visitors": 445.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 5.0, "Total Spend": 80.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158033, 39.93743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "35 S 13th St", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2023, "Total Visits": 375.0, "Total Visitors": 348.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 2496.0, "Total Transactions": 162.0, "Total Customers": 144.0, "Median Spend per Transaction": 13.19, "Median Spend per Customer": 14.63 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-qxq", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992469, "LONGITUDE": -75.100197, "DATE_RANGE_START": 2023, "Total Visits": 372.0, "Total Visitors": 319.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 17.0, "Total Spend": 7348.0, "Total Transactions": 159.0, "Total Customers": 130.0, "Median Spend per Transaction": 37.19, "Median Spend per Customer": 42.62 }, "geometry": { "type": "Point", "coordinates": [ -75.100197, 39.992469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-2kz", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "9169 Roosevelt Blvd", "LATITUDE": 40.075387, "LONGITUDE": -75.032059, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 44.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 18.0, "Total Spend": 6907.0, "Total Transactions": 149.0, "Total Customers": 134.0, "Median Spend per Transaction": 31.5, "Median Spend per Customer": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.032059, 40.075387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "Name": "Kohl's", "Category": "Department Stores", "Address": "8500 Henry Ave", "LATITUDE": 40.063862, "LONGITUDE": -75.238823, "DATE_RANGE_START": 2023, "Total Visits": 292.0, "Total Visitors": 257.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 6.0, "Total Spend": 26890.0, "Total Transactions": 525.0, "Total Customers": 428.0, "Median Spend per Transaction": 31.97, "Median Spend per Customer": 36.97 }, "geometry": { "type": "Point", "coordinates": [ -75.238823, 40.063862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pmb-kzz", "Name": "Philadelphia Independents", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "35 N 3rd St", "LATITUDE": 39.951299, "LONGITUDE": -75.145296, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 423.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 106.0, "Total Spend": 214.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 37.28, "Median Spend per Customer": 37.28 }, "geometry": { "type": "Point", "coordinates": [ -75.145296, 39.951299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "Name": "Cantinho Brasileiro Restaurante", "Category": "Restaurants and Other Eating Places", "Address": "7536 Castor Ave", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 71.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 31.0, "Total Spend": 966.0, "Total Transactions": 44.0, "Total Customers": 20.0, "Median Spend per Transaction": 20.51, "Median Spend per Customer": 33.75 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "Name": "Cafe Soho", "Category": "Restaurants and Other Eating Places", "Address": "468 W Cheltenham Ave", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 220.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 7.0, "Total Spend": 7453.0, "Total Transactions": 137.0, "Total Customers": 122.0, "Median Spend per Transaction": 45.34, "Median Spend per Customer": 49.66 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "Name": "Drinker's Pub", "Category": "Restaurants and Other Eating Places", "Address": "1903 Chestnut St", "LATITUDE": 39.952102, "LONGITUDE": -75.172078, "DATE_RANGE_START": 2023, "Total Visits": 4324.0, "Total Visitors": 2851.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 11.0, "Total Spend": 20366.0, "Total Transactions": 745.0, "Total Customers": 465.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 29.01 }, "geometry": { "type": "Point", "coordinates": [ -75.172078, 39.952102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "Name": "Ox Coffee", "Category": "Restaurants and Other Eating Places", "Address": "616 S 3rd St", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2023, "Total Visits": 904.0, "Total Visitors": 754.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 11.0, "Total Spend": 1947.0, "Total Transactions": 199.0, "Total Customers": 100.0, "Median Spend per Transaction": 6.2, "Median Spend per Customer": 12.12 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "Name": "S & S Foods", "Category": "Grocery Stores", "Address": "1800 S Columbus Blvd", "LATITUDE": 39.924761, "LONGITUDE": -75.144764, "DATE_RANGE_START": 2023, "Total Visits": 327.0, "Total Visitors": 256.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 13330.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 276.43, "Median Spend per Customer": 350.7 }, "geometry": { "type": "Point", "coordinates": [ -75.144764, 39.924761 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "35 E Chelten Ave", "LATITUDE": 40.037101, "LONGITUDE": -75.174649, "DATE_RANGE_START": 2023, "Total Visits": 605.0, "Total Visitors": 443.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 20.0, "Total Spend": 5979.0, "Total Transactions": 138.0, "Total Customers": 104.0, "Median Spend per Transaction": 21.86, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.174649, 40.037101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "Name": "Wilson's Market", "Category": "Grocery Stores", "Address": "1337 W Olney Ave", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 132.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 5.0, "Total Spend": 476.0, "Total Transactions": 34.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.57, "Median Spend per Customer": 16.23 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-p35", "Name": "Fiore Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2608 Kensington Ave", "LATITUDE": 39.989223, "LONGITUDE": -75.127044, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 227.0, "POI_CBG": 421010163001.0, "Median Dwell Time": 3.0, "Total Spend": 1667.0, "Total Transactions": 53.0, "Total Customers": 34.0, "Median Spend per Transaction": 23.61, "Median Spend per Customer": 31.35 }, "geometry": { "type": "Point", "coordinates": [ -75.127044, 39.989223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "Name": "Venu", "Category": "Restaurants and Other Eating Places", "Address": "13th @ Packer Ave", "LATITUDE": 39.911206, "LONGITUDE": -75.170107, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 179.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 62.0, "Total Spend": 3446.0, "Total Transactions": 61.0, "Total Customers": 51.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170107, 39.911206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "Name": "Bruno's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1838 W Cheltenham Ave", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2023, "Total Visits": 269.0, "Total Visitors": 269.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 18.0, "Total Spend": 279.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 15.96, "Median Spend per Customer": 15.71 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-pvz", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "3680 Aramingo Ave", "LATITUDE": 39.994647, "LONGITUDE": -75.095265, "DATE_RANGE_START": 2023, "Total Visits": 142.0, "Total Visitors": 122.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 5.0, "Total Spend": 1576.0, "Total Transactions": 75.0, "Total Customers": 66.0, "Median Spend per Transaction": 20.77, "Median Spend per Customer": 23.72 }, "geometry": { "type": "Point", "coordinates": [ -75.095265, 39.994647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "Name": "Volo Coffeehouse", "Category": "Restaurants and Other Eating Places", "Address": "4360 Main St", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 104.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 12.0, "Total Spend": 11016.0, "Total Transactions": 861.0, "Total Customers": 495.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 15.9 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-5s5", "Name": "Schmear It", "Category": "Restaurants and Other Eating Places", "Address": "19 S 12th St", "LATITUDE": 39.94245, "LONGITUDE": -75.161634, "DATE_RANGE_START": 2023, "Total Visits": 297.0, "Total Visitors": 190.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 657.0, "Total Spend": 1032.0, "Total Transactions": 105.0, "Total Customers": 89.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161634, 39.94245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "801 S Broad St", "LATITUDE": 39.940574, "LONGITUDE": -75.165859, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 5.0, "Total Spend": 2043.0, "Total Transactions": 65.0, "Total Customers": 43.0, "Median Spend per Transaction": 29.69, "Median Spend per Customer": 43.96 }, "geometry": { "type": "Point", "coordinates": [ -75.165859, 39.940574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp2-p5f", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "3668 Aramingo Ave", "LATITUDE": 39.995054, "LONGITUDE": -75.095664, "DATE_RANGE_START": 2023, "Total Visits": 413.0, "Total Visitors": 371.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 8.0, "Total Spend": 167.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 44.25, "Median Spend per Customer": 44.25 }, "geometry": { "type": "Point", "coordinates": [ -75.095664, 39.995054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@63s-dvw-f2k", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "5143 Haverford Ave", "LATITUDE": 39.964788, "LONGITUDE": -75.22346, "DATE_RANGE_START": 2023, "Total Visits": 152.0, "Total Visitors": 118.0, "POI_CBG": 421010103002.0, "Median Dwell Time": 1.0, "Total Spend": 371.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 16.95, "Median Spend per Customer": 15.85 }, "geometry": { "type": "Point", "coordinates": [ -75.22346, 39.964788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7v-gkz", "Name": "Villagio Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1817 Cottman Ave", "LATITUDE": 40.053089, "LONGITUDE": -75.068847, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 106.0, "POI_CBG": 421010335003.0, "Median Dwell Time": 76.0, "Total Spend": 1548.0, "Total Transactions": 55.0, "Total Customers": 34.0, "Median Spend per Transaction": 25.95, "Median Spend per Customer": 39.26 }, "geometry": { "type": "Point", "coordinates": [ -75.068847, 40.053089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "Name": "Alaska King Crab House", "Category": "Restaurants and Other Eating Places", "Address": "4834 Lancaster Ave", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2023, "Total Visits": 207.0, "Total Visitors": 183.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 9.0, "Total Spend": 1530.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 39.95, "Median Spend per Customer": 42.56 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "Name": "Crown Deli", "Category": "Restaurants and Other Eating Places", "Address": "3806 Morrell Ave", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 331.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 13.0, "Total Spend": 2027.0, "Total Transactions": 88.0, "Total Customers": 71.0, "Median Spend per Transaction": 20.53, "Median Spend per Customer": 24.39 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7201 Castor Ave", "LATITUDE": 40.050173, "LONGITUDE": -75.066675, "DATE_RANGE_START": 2023, "Total Visits": 645.0, "Total Visitors": 480.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 10.0, "Total Spend": 751.0, "Total Transactions": 65.0, "Total Customers": 31.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.066675, 40.050173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pjf-kvf", "Name": "Tailored Home", "Category": "Home Furnishings Stores", "Address": "8528 Germantown Ave", "LATITUDE": 40.076272, "LONGITUDE": -75.207332, "DATE_RANGE_START": 2023, "Total Visits": 343.0, "Total Visitors": 269.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 17.0, "Total Spend": 1117.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 445.77, "Median Spend per Customer": 445.77 }, "geometry": { "type": "Point", "coordinates": [ -75.207332, 40.076272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-q9f", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3224 Byberry Rd", "LATITUDE": 40.096122, "LONGITUDE": -74.9773, "DATE_RANGE_START": 2023, "Total Visits": 601.0, "Total Visitors": 427.0, "POI_CBG": 421010363021.0, "Median Dwell Time": 9.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 26.75, "Median Spend per Customer": 26.75 }, "geometry": { "type": "Point", "coordinates": [ -74.9773, 40.096122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6501 Harbison Ave", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2023, "Total Visits": 1471.0, "Total Visitors": 1021.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 10.0, "Total Spend": 16063.0, "Total Transactions": 799.0, "Total Customers": 505.0, "Median Spend per Transaction": 13.41, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "Name": "Claire's", "Category": "Clothing Stores", "Address": "2329 Cottman Ave", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2023, "Total Visits": 415.0, "Total Visitors": 415.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 15.0, "Total Spend": 5544.0, "Total Transactions": 158.0, "Total Customers": 68.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 27.99 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "Name": "Fiorino", "Category": "Restaurants and Other Eating Places", "Address": "3572 Indian Queen Ln", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 56.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 3.0, "Total Spend": 2464.0, "Total Transactions": 24.0, "Total Customers": 23.0, "Median Spend per Transaction": 101.54, "Median Spend per Customer": 109.64 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-yqf", "Name": "Cily Chicken Rice", "Category": "Restaurants and Other Eating Places", "Address": "933 Race St", "LATITUDE": 39.955428, "LONGITUDE": -75.155481, "DATE_RANGE_START": 2023, "Total Visits": 21368.0, "Total Visitors": 14769.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 1980.0, "Total Transactions": 58.0, "Total Customers": 58.0, "Median Spend per Transaction": 31.29, "Median Spend per Customer": 31.29 }, "geometry": { "type": "Point", "coordinates": [ -75.155481, 39.955428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-9j9", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953355, "LONGITUDE": -75.165457, "DATE_RANGE_START": 2023, "Total Visits": 2563.0, "Total Visitors": 1698.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 58.0, "Total Spend": 38.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.165457, 39.953355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "Name": "Sorrento's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1624 W Olney Ave", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 134.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 340.0, "Total Spend": 2024.0, "Total Transactions": 89.0, "Total Customers": 61.0, "Median Spend per Transaction": 19.81, "Median Spend per Customer": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "Name": "Vintage Wine Bar", "Category": "Restaurants and Other Eating Places", "Address": "129 S 13th St", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 33.0, "Total Spend": 5758.0, "Total Transactions": 96.0, "Total Customers": 83.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 59.79 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-vcq", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "400 W Allegheny Ave Ste C2", "LATITUDE": 39.99836, "LONGITUDE": -75.136275, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 163.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 6.0, "Total Spend": 137.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 27.31, "Median Spend per Customer": 54.61 }, "geometry": { "type": "Point", "coordinates": [ -75.136275, 39.99836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pp5-7wk", "Name": "La Esquina del Bronco", "Category": "Restaurants and Other Eating Places", "Address": "2265 N Howard St", "LATITUDE": 39.984841, "LONGITUDE": -75.133065, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 90.0, "POI_CBG": 421010162001.0, "Median Dwell Time": 26.0, "Total Spend": 217.0, "Total Transactions": 14.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.133065, 39.984841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfx-kmk", "Name": "Tsaocaa", "Category": "Restaurants and Other Eating Places", "Address": "4415 Main St", "LATITUDE": 40.02624, "LONGITUDE": -75.225272, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 180.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 7.0, "Total Spend": 268.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 12.11, "Median Spend per Customer": 12.11 }, "geometry": { "type": "Point", "coordinates": [ -75.225272, 40.02624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "Name": "BP", "Category": "Gasoline Stations", "Address": "5801 Oxford Ave", "LATITUDE": 40.032529, "LONGITUDE": -75.084542, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 129.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 5.0, "Total Spend": 23.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.08, "Median Spend per Customer": 9.08 }, "geometry": { "type": "Point", "coordinates": [ -75.084542, 40.032529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "Name": "A Z Budget", "Category": "Department Stores", "Address": "2914 N Broad St", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2023, "Total Visits": 420.0, "Total Visitors": 388.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 9.0, "Total Spend": 1007.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 22.92, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-yqf", "Name": "Matcha Cafe Maiko", "Category": "Restaurants and Other Eating Places", "Address": "923 Race St", "LATITUDE": 39.95548, "LONGITUDE": -75.155132, "DATE_RANGE_START": 2023, "Total Visits": 21368.0, "Total Visitors": 14769.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 2112.0, "Total Transactions": 207.0, "Total Customers": 173.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 8.43 }, "geometry": { "type": "Point", "coordinates": [ -75.155132, 39.95548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "Name": "Ristorante Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1915 S Broad St", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 133.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 22.0, "Total Spend": 3380.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 136.55, "Median Spend per Customer": 136.55 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-223@628-pm4-n3q", "Name": "Los Taquitos de Puebla", "Category": "Restaurants and Other Eating Places", "Address": "1201 S 9th St", "LATITUDE": 39.93412, "LONGITUDE": -75.158732, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 192.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 1.0, "Total Spend": 132.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 21.06, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.158732, 39.93412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6114 Lancaster Ave", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2023, "Total Visits": 224.0, "Total Visitors": 199.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 6.0, "Total Spend": 3626.0, "Total Transactions": 198.0, "Total Customers": 154.0, "Median Spend per Transaction": 14.3, "Median Spend per Customer": 18.13 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "Name": "John's Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "128 W Chelten Ave", "LATITUDE": 40.033242, "LONGITUDE": -75.177084, "DATE_RANGE_START": 2023, "Total Visits": 1630.0, "Total Visitors": 978.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 11.0, "Total Spend": 3805.0, "Total Transactions": 155.0, "Total Customers": 115.0, "Median Spend per Transaction": 17.35, "Median Spend per Customer": 20.32 }, "geometry": { "type": "Point", "coordinates": [ -75.177084, 40.033242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "Name": "Suburban Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10875 Bustleton Ave", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 208.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 1.0, "Total Spend": 242.0, "Total Transactions": 9.0, "Total Customers": 6.0, "Median Spend per Transaction": 22.63, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@63s-dw9-7kf", "Name": "InMotion", "Category": "Electronics and Appliance Stores", "Address": "Tech Showcase Terminal D-E Spc DE1", "LATITUDE": 39.877238, "LONGITUDE": -75.244112, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 730.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 2082.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 49.11, "Median Spend per Customer": 49.11 }, "geometry": { "type": "Point", "coordinates": [ -75.244112, 39.877238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "Name": "Galaxy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1239 Cottman Ave", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010338004.0, "Median Dwell Time": 12.0, "Total Spend": 3064.0, "Total Transactions": 106.0, "Total Customers": 70.0, "Median Spend per Transaction": 26.09, "Median Spend per Customer": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-whq", "Name": "ALDI", "Category": "Grocery Stores", "Address": "1300 Fairmount Ave", "LATITUDE": 39.966425, "LONGITUDE": -75.160013, "DATE_RANGE_START": 2023, "Total Visits": 2344.0, "Total Visitors": 1363.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 44.0, "Total Spend": 247.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 98.55, "Median Spend per Customer": 98.55 }, "geometry": { "type": "Point", "coordinates": [ -75.160013, 39.966425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3901 Aramingo Ave", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2023, "Total Visits": 1434.0, "Total Visitors": 1015.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 9.0, "Total Spend": 45829.0, "Total Transactions": 2371.0, "Total Customers": 1261.0, "Median Spend per Transaction": 13.28, "Median Spend per Customer": 20.4 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-35z", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4055 Market St # 89", "LATITUDE": 39.957828, "LONGITUDE": -75.204349, "DATE_RANGE_START": 2023, "Total Visits": 867.0, "Total Visitors": 577.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 10.0, "Total Spend": 15090.0, "Total Transactions": 742.0, "Total Customers": 435.0, "Median Spend per Transaction": 13.38, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.204349, 39.957828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4140 N Broad St", "LATITUDE": 40.01646, "LONGITUDE": -75.150569, "DATE_RANGE_START": 2023, "Total Visits": 351.0, "Total Visitors": 187.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 402.0, "Total Spend": 936.0, "Total Transactions": 33.0, "Total Customers": 30.0, "Median Spend per Transaction": 20.2, "Median Spend per Customer": 21.42 }, "geometry": { "type": "Point", "coordinates": [ -75.150569, 40.01646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "9173 Roosevelt Blvd Ste 10", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2023, "Total Visits": 509.0, "Total Visitors": 482.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 19.0, "Total Spend": 27433.0, "Total Transactions": 453.0, "Total Customers": 390.0, "Median Spend per Transaction": 42.38, "Median Spend per Customer": 42.64 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-j35", "Name": "Barnes and Noble", "Category": "Book Stores and News Dealers", "Address": "1708 Chestnut St", "LATITUDE": 39.951378, "LONGITUDE": -75.169175, "DATE_RANGE_START": 2023, "Total Visits": 713.0, "Total Visitors": 490.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 312.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.1, "Median Spend per Customer": 25.1 }, "geometry": { "type": "Point", "coordinates": [ -75.169175, 39.951378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9w-sdv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "12050 Bustleton Ave", "LATITUDE": 40.123431, "LONGITUDE": -75.01617, "DATE_RANGE_START": 2023, "Total Visits": 730.0, "Total Visitors": 602.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 10.0, "Total Spend": 24.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 5.08, "Median Spend per Customer": 5.08 }, "geometry": { "type": "Point", "coordinates": [ -75.01617, 40.123431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pm3-vpv", "Name": "Philadelphia Scooters", "Category": "Other Motor Vehicle Dealers", "Address": "2501 Wharton St Ste G", "LATITUDE": 39.936705, "LONGITUDE": -75.186573, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 224.0, "POI_CBG": 421010020002.0, "Median Dwell Time": 24.0, "Total Spend": 1677.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 172.79, "Median Spend per Customer": 259.19 }, "geometry": { "type": "Point", "coordinates": [ -75.186573, 39.936705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pgb-47q", "Name": "Curbside gyro", "Category": "Restaurants and Other Eating Places", "Address": "1498 Spring Garden St", "LATITUDE": 39.962373, "LONGITUDE": -75.162918, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 15.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 1.0, "Total Spend": 120.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 14.84 }, "geometry": { "type": "Point", "coordinates": [ -75.162918, 39.962373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "164 W Chelten Ave", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2023, "Total Visits": 1043.0, "Total Visitors": 660.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 17.0, "Total Spend": 8994.0, "Total Transactions": 524.0, "Total Customers": 267.0, "Median Spend per Transaction": 13.27, "Median Spend per Customer": 17.54 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg4-grk", "Name": "1beautysupplypa", "Category": "Health and Personal Care Stores", "Address": "301 W Chelten Ave Ste C", "LATITUDE": 40.030388, "LONGITUDE": -75.181136, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 132.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 15.0, "Total Spend": 4520.0, "Total Transactions": 155.0, "Total Customers": 114.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 19.15 }, "geometry": { "type": "Point", "coordinates": [ -75.181136, 40.030388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2290 W Oregon Ave", "LATITUDE": 39.917209, "LONGITUDE": -75.185417, "DATE_RANGE_START": 2023, "Total Visits": 539.0, "Total Visitors": 448.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 17.0, "Total Spend": 10016.0, "Total Transactions": 500.0, "Total Customers": 147.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.185417, 39.917209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pj9-6kz", "Name": "Imperial Palace Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5921 N Broad St", "LATITUDE": 40.043524, "LONGITUDE": -75.14338, "DATE_RANGE_START": 2023, "Total Visits": 199.0, "Total Visitors": 199.0, "POI_CBG": 421010276003.0, "Median Dwell Time": 10.0, "Total Spend": 23796.0, "Total Transactions": 74.0, "Total Customers": 25.0, "Median Spend per Transaction": 220.0, "Median Spend per Customer": 695.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14338, 40.043524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3301 Aramingo Ave", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2023, "Total Visits": 53.0, "Total Visitors": 36.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 16.0, "Total Spend": 26783.0, "Total Transactions": 354.0, "Total Customers": 291.0, "Median Spend per Transaction": 36.71, "Median Spend per Customer": 50.65 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St Ste 103", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2023, "Total Visits": 11074.0, "Total Visitors": 6611.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 20.0, "Total Spend": 7539.0, "Total Transactions": 536.0, "Total Customers": 418.0, "Median Spend per Transaction": 11.83, "Median Spend per Customer": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmb-9mk", "Name": "Trader Joe's", "Category": "Grocery Stores", "Address": "1324 Arch St", "LATITUDE": 39.954113, "LONGITUDE": -75.16243, "DATE_RANGE_START": 2023, "Total Visits": 1919.0, "Total Visitors": 1353.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 8.0, "Total Spend": 1719.0, "Total Transactions": 26.0, "Total Customers": 23.0, "Median Spend per Transaction": 36.21, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16243, 39.954113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "238 S 20th St", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2023, "Total Visits": 328.0, "Total Visitors": 328.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 1.0, "Total Spend": 7733.0, "Total Transactions": 842.0, "Total Customers": 478.0, "Median Spend per Transaction": 7.32, "Median Spend per Customer": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dtn-hqz", "Name": "Bruegger's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.89519, "LONGITUDE": -75.227949, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 4186.0, "Total Transactions": 276.0, "Total Customers": 252.0, "Median Spend per Transaction": 12.89, "Median Spend per Customer": 13.97 }, "geometry": { "type": "Point", "coordinates": [ -75.227949, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6608 Frankford Ave", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2023, "Total Visits": 705.0, "Total Visitors": 482.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 7.0, "Total Spend": 4746.0, "Total Transactions": 597.0, "Total Customers": 183.0, "Median Spend per Transaction": 5.99, "Median Spend per Customer": 9.23 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2550 Welsh Rd", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2023, "Total Visits": 442.0, "Total Visitors": 205.0, "POI_CBG": 421010347013.0, "Median Dwell Time": 86.0, "Total Spend": 4544.0, "Total Transactions": 318.0, "Total Customers": 230.0, "Median Spend per Transaction": 12.55, "Median Spend per Customer": 14.86 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "Name": "The Book Trader", "Category": "Book Stores and News Dealers", "Address": "7 N 2nd St", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2023, "Total Visits": 165.0, "Total Visitors": 157.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 18.0, "Total Spend": 1403.0, "Total Transactions": 58.0, "Total Customers": 56.0, "Median Spend per Transaction": 16.69, "Median Spend per Customer": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4000 Monument Rd", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2023, "Total Visits": 7435.0, "Total Visitors": 4989.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 22.0, "Total Spend": 394336.0, "Total Transactions": 7784.0, "Total Customers": 4328.0, "Median Spend per Transaction": 30.77, "Median Spend per Customer": 54.28 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pmf-mx5", "Name": "Real Food Eatery", "Category": "Restaurants and Other Eating Places", "Address": "1700 Market St", "LATITUDE": 39.952801, "LONGITUDE": -75.169226, "DATE_RANGE_START": 2023, "Total Visits": 3999.0, "Total Visitors": 2387.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 97.0, "Total Spend": 1938.0, "Total Transactions": 110.0, "Total Customers": 78.0, "Median Spend per Transaction": 15.29, "Median Spend per Customer": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.169226, 39.952801 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p8j-94v", "Name": "Panda Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7105 Frankford Ave", "LATITUDE": 40.034643, "LONGITUDE": -75.044103, "DATE_RANGE_START": 2023, "Total Visits": 400.0, "Total Visitors": 257.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 10.0, "Total Spend": 310.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 16.85, "Median Spend per Customer": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -75.044103, 40.034643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1000 S Broad St", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2023, "Total Visits": 783.0, "Total Visitors": 609.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 7.0, "Total Spend": 12259.0, "Total Transactions": 787.0, "Total Customers": 509.0, "Median Spend per Transaction": 13.77, "Median Spend per Customer": 17.47 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-phy-kmk", "Name": "El Sabor De Maria", "Category": "Restaurants and Other Eating Places", "Address": "4903 N 5th St", "LATITUDE": 40.025858, "LONGITUDE": -75.132587, "DATE_RANGE_START": 2023, "Total Visits": 1511.0, "Total Visitors": 1142.0, "POI_CBG": 421010286003.0, "Median Dwell Time": 23.0, "Total Spend": 760.0, "Total Transactions": 21.0, "Total Customers": 15.0, "Median Spend per Transaction": 26.68, "Median Spend per Customer": 44.79 }, "geometry": { "type": "Point", "coordinates": [ -75.132587, 40.025858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "602 Carpenter Ln", "LATITUDE": 40.046178, "LONGITUDE": -75.195832, "DATE_RANGE_START": 2023, "Total Visits": 282.0, "Total Visitors": 187.0, "POI_CBG": 421010236003.0, "Median Dwell Time": 9.0, "Total Spend": 732.0, "Total Transactions": 53.0, "Total Customers": 36.0, "Median Spend per Transaction": 11.06, "Median Spend per Customer": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.195832, 40.046178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pp2-85f", "Name": "Tony's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "3128 Belgrade St", "LATITUDE": 39.985499, "LONGITUDE": -75.106228, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010180021.0, "Median Dwell Time": 4.0, "Total Spend": 1645.0, "Total Transactions": 63.0, "Total Customers": 34.0, "Median Spend per Transaction": 19.12, "Median Spend per Customer": 32.21 }, "geometry": { "type": "Point", "coordinates": [ -75.106228, 39.985499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8144 Castor Ave # 8152", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2023, "Total Visits": 1438.0, "Total Visitors": 987.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 6.0, "Total Spend": 95062.0, "Total Transactions": 5956.0, "Total Customers": 2628.0, "Median Spend per Transaction": 10.57, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "Name": "Pat's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "12317 Academy Rd", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 138.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 46.0, "Total Spend": 2226.0, "Total Transactions": 153.0, "Total Customers": 104.0, "Median Spend per Transaction": 9.24, "Median Spend per Customer": 15.59 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "4670 E Roosevelt Blvd", "LATITUDE": 40.029054, "LONGITUDE": -75.099607, "DATE_RANGE_START": 2023, "Total Visits": 2440.0, "Total Visitors": 1968.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 16.0, "Total Spend": 41043.0, "Total Transactions": 2217.0, "Total Customers": 1383.0, "Median Spend per Transaction": 15.3, "Median Spend per Customer": 21.69 }, "geometry": { "type": "Point", "coordinates": [ -75.099607, 40.029054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2023, "Total Visits": 392.0, "Total Visitors": 329.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 7.0, "Total Spend": 3295.0, "Total Transactions": 207.0, "Total Customers": 150.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 15.43 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "Name": "Red Poke Express", "Category": "Restaurants and Other Eating Places", "Address": "135 South St", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2023, "Total Visits": 94.0, "Total Visitors": 94.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 19.0, "Total Spend": 894.0, "Total Transactions": 53.0, "Total Customers": 43.0, "Median Spend per Transaction": 15.91, "Median Spend per Customer": 16.11 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-pgk", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2645 Germantown Ave", "LATITUDE": 39.992681, "LONGITUDE": -75.14772, "DATE_RANGE_START": 2023, "Total Visits": 169.0, "Total Visitors": 169.0, "POI_CBG": 421010164003.0, "Median Dwell Time": 2.0, "Total Spend": 724.0, "Total Transactions": 23.0, "Total Customers": 20.0, "Median Spend per Transaction": 20.08, "Median Spend per Customer": 27.1 }, "geometry": { "type": "Point", "coordinates": [ -75.14772, 39.992681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "Name": "Tony Luke's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2023, "Total Visits": 262.0, "Total Visitors": 147.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 8.0, "Total Spend": 185.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 20.91, "Median Spend per Customer": 20.91 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "Name": "Old English Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6015 N 5th St", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 167.0, "POI_CBG": 421010274011.0, "Median Dwell Time": 6.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.68, "Median Spend per Customer": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2116 S Columbus Blvd", "LATITUDE": 39.915658, "LONGITUDE": -75.139581, "DATE_RANGE_START": 2023, "Total Visits": 41.0, "Total Visitors": 28.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 22.0, "Total Spend": 1442.0, "Total Transactions": 75.0, "Total Customers": 56.0, "Median Spend per Transaction": 11.98, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.139581, 39.915658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "Name": "Cafe Old Nelson", "Category": "Restaurants and Other Eating Places", "Address": "1435 Arch St", "LATITUDE": 39.954821, "LONGITUDE": -75.164693, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 18.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 6.0, "Total Spend": 2218.0, "Total Transactions": 188.0, "Total Customers": 105.0, "Median Spend per Transaction": 11.75, "Median Spend per Customer": 13.84 }, "geometry": { "type": "Point", "coordinates": [ -75.164693, 39.954821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-224@628-pmf-tvz", "Name": "Rittenhouse Grill", "Category": "Restaurants and Other Eating Places", "Address": "1701 Locust St", "LATITUDE": 39.948989, "LONGITUDE": -75.169546, "DATE_RANGE_START": 2023, "Total Visits": 1680.0, "Total Visitors": 1080.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 154.0, "Total Spend": 6153.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 114.62, "Median Spend per Customer": 114.62 }, "geometry": { "type": "Point", "coordinates": [ -75.169546, 39.948989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1434 E Washington Ln", "LATITUDE": 40.060398, "LONGITUDE": -75.164249, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 3.0, "Total Spend": 19850.0, "Total Transactions": 328.0, "Total Customers": 264.0, "Median Spend per Transaction": 32.93, "Median Spend per Customer": 36.15 }, "geometry": { "type": "Point", "coordinates": [ -75.164249, 40.060398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-qpv", "Name": "Shalom Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "7598 Haverford Ave Ste A", "LATITUDE": 39.979511, "LONGITUDE": -75.26908, "DATE_RANGE_START": 2023, "Total Visits": 482.0, "Total Visitors": 421.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 33.0, "Total Spend": 126.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 11.18, "Median Spend per Customer": 11.18 }, "geometry": { "type": "Point", "coordinates": [ -75.26908, 39.979511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-xbk", "Name": "Ricky Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2 N 4th St # 32", "LATITUDE": 39.951154, "LONGITUDE": -75.14673, "DATE_RANGE_START": 2023, "Total Visits": 436.0, "Total Visitors": 393.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 295.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 36.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14673, 39.951154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-dd9", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "3084 Frankford Ave", "LATITUDE": 39.991806, "LONGITUDE": -75.113116, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010178003.0, "Median Dwell Time": 12.0, "Total Spend": 624.0, "Total Transactions": 35.0, "Total Customers": 31.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.113116, 39.991806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmd-vj9", "Name": "4 Seasons Food Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "236 S 21st St", "LATITUDE": 39.949894, "LONGITUDE": -75.176084, "DATE_RANGE_START": 2023, "Total Visits": 1017.0, "Total Visitors": 623.0, "POI_CBG": 421010008031.0, "Median Dwell Time": 79.0, "Total Spend": 36.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.23, "Median Spend per Customer": 14.23 }, "geometry": { "type": "Point", "coordinates": [ -75.176084, 39.949894 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwg-f4v", "Name": "Lucky Star Food Market", "Category": "Grocery Stores", "Address": "7329 Elmwood Ave", "LATITUDE": 39.913533, "LONGITUDE": -75.242365, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 174.0, "POI_CBG": 421010060004.0, "Median Dwell Time": 3.0, "Total Spend": 56.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.94, "Median Spend per Customer": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.242365, 39.913533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2023, "Total Visits": 502.0, "Total Visitors": 327.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 17.0, "Total Spend": 9103.0, "Total Transactions": 497.0, "Total Customers": 359.0, "Median Spend per Transaction": 15.56, "Median Spend per Customer": 20.31 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "Name": "The Last Word Bookshop", "Category": "Book Stores and News Dealers", "Address": "220 S 40th St", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 16.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 12.0, "Total Spend": 2361.0, "Total Transactions": 106.0, "Total Customers": 95.0, "Median Spend per Transaction": 19.28, "Median Spend per Customer": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-49z", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "2400 W Passyunk Ave", "LATITUDE": 39.921875, "LONGITUDE": -75.18741, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 12.0, "Total Spend": 24821.0, "Total Transactions": 1701.0, "Total Customers": 1172.0, "Median Spend per Transaction": 12.73, "Median Spend per Customer": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.18741, 39.921875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pp4-snq", "Name": "Good Time Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2501 E York St", "LATITUDE": 39.97726, "LONGITUDE": -75.123641, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 84.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 36.0, "Total Spend": 1672.0, "Total Transactions": 25.0, "Total Customers": 18.0, "Median Spend per Transaction": 37.42, "Median Spend per Customer": 36.78 }, "geometry": { "type": "Point", "coordinates": [ -75.123641, 39.97726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1851 S Columbus Blvd Ste 3", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2023, "Total Visits": 704.0, "Total Visitors": 645.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 23.0, "Total Spend": 12580.0, "Total Transactions": 740.0, "Total Customers": 552.0, "Median Spend per Transaction": 14.91, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pj8-rp9", "Name": "Kid City", "Category": "Clothing Stores", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.032633, "LONGITUDE": -75.101129, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 37.0, "Total Spend": 5052.0, "Total Transactions": 106.0, "Total Customers": 71.0, "Median Spend per Transaction": 27.17, "Median Spend per Customer": 26.76 }, "geometry": { "type": "Point", "coordinates": [ -75.101129, 40.032633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1512 Walnut St", "LATITUDE": 39.949481, "LONGITUDE": -75.166658, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 1.0, "Total Spend": 10978.0, "Total Transactions": 859.0, "Total Customers": 571.0, "Median Spend per Transaction": 12.1, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166658, 39.949481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phz-8n5", "Name": "Main Garden Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5150 N 5th St", "LATITUDE": 40.029984, "LONGITUDE": -75.132152, "DATE_RANGE_START": 2023, "Total Visits": 417.0, "Total Visitors": 160.0, "POI_CBG": 421010285001.0, "Median Dwell Time": 718.0, "Total Spend": 251.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 100.0, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132152, 40.029984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5534 Wayne Ave", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2023, "Total Visits": 507.0, "Total Visitors": 418.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 8.0, "Total Spend": 253.0, "Total Transactions": 19.0, "Total Customers": 16.0, "Median Spend per Transaction": 11.09, "Median Spend per Customer": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-wrk", "Name": "Lulu Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4508 Walnut St", "LATITUDE": 39.955024, "LONGITUDE": -75.212218, "DATE_RANGE_START": 2023, "Total Visits": 178.0, "Total Visitors": 178.0, "POI_CBG": 421010086012.0, "Median Dwell Time": 6.0, "Total Spend": 576.0, "Total Transactions": 48.0, "Total Customers": 44.0, "Median Spend per Transaction": 8.85, "Median Spend per Customer": 8.89 }, "geometry": { "type": "Point", "coordinates": [ -75.212218, 39.955024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-gc5", "Name": "Vault Vine", "Category": "Florists", "Address": "3507 Midvale Ave", "LATITUDE": 40.013647, "LONGITUDE": -75.192647, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 79.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 6.0, "Total Spend": 307.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 18.76, "Median Spend per Customer": 31.27 }, "geometry": { "type": "Point", "coordinates": [ -75.192647, 40.013647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22c@628-pj6-jsq", "Name": "Jopok Topokki", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.044523, "LONGITUDE": -75.117651, "DATE_RANGE_START": 2023, "Total Visits": 4739.0, "Total Visitors": 2381.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 23.0, "Total Spend": 1362.0, "Total Transactions": 63.0, "Total Customers": 56.0, "Median Spend per Transaction": 17.21, "Median Spend per Customer": 18.44 }, "geometry": { "type": "Point", "coordinates": [ -75.117651, 40.044523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1700 W Cheltenham Ave", "LATITUDE": 40.065978, "LONGITUDE": -75.144349, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010266001.0, "Median Dwell Time": 2.0, "Total Spend": 1067.0, "Total Transactions": 36.0, "Total Customers": 31.0, "Median Spend per Transaction": 29.3, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144349, 40.065978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "Name": "Grace Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2229 Grays Ferry Ave", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 152.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 64.0, "Total Spend": 447.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 33.28, "Median Spend per Customer": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "Name": "Philly Tacos", "Category": "Restaurants and Other Eating Places", "Address": "2011 Reed St", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2023, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 35.0, "Total Spend": 7392.0, "Total Transactions": 413.0, "Total Customers": 365.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "Name": "City View Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1434 Cecil B Moore Ave", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 144.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 33.0, "Total Spend": 3476.0, "Total Transactions": 235.0, "Total Customers": 174.0, "Median Spend per Transaction": 11.07, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "Name": "Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1309 Sansom St", "LATITUDE": 39.950043, "LONGITUDE": -75.162325, "DATE_RANGE_START": 2023, "Total Visits": 61.0, "Total Visitors": 39.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 60.0, "Total Spend": 88481.0, "Total Transactions": 1920.0, "Total Customers": 1511.0, "Median Spend per Transaction": 33.16, "Median Spend per Customer": 41.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162325, 39.950043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "Name": "Brickbat Books", "Category": "Used Merchandise Stores", "Address": "709 S 4th St", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010016001.0, "Median Dwell Time": null, "Total Spend": 1125.0, "Total Transactions": 46.0, "Total Customers": 33.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 20.95 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pgh-v2k", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2131 N Broad St # 59", "LATITUDE": 39.98581, "LONGITUDE": -75.155604, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 18.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 10.0, "Total Spend": 8396.0, "Total Transactions": 478.0, "Total Customers": 296.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 16.97 }, "geometry": { "type": "Point", "coordinates": [ -75.155604, 39.98581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7yv", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "48 N 12th St", "LATITUDE": 39.953671, "LONGITUDE": -75.159795, "DATE_RANGE_START": 2023, "Total Visits": 5172.0, "Total Visitors": 3775.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 16.0, "Total Spend": 6800.0, "Total Transactions": 458.0, "Total Customers": 336.0, "Median Spend per Transaction": 13.43, "Median Spend per Customer": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.159795, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmd-rx5", "Name": "Cotoletta Fitler Square", "Category": "Restaurants and Other Eating Places", "Address": "2227 Pine St", "LATITUDE": 39.947447, "LONGITUDE": -75.179191, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 122.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 5.0, "Total Spend": 531.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 158.27, "Median Spend per Customer": 211.81 }, "geometry": { "type": "Point", "coordinates": [ -75.179191, 39.947447 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pfz-bhq", "Name": "Valerio Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "4373 Main St", "LATITUDE": 40.025342, "LONGITUDE": -75.222719, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 159.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 20.0, "Total Spend": 1322.0, "Total Transactions": 140.0, "Total Customers": 89.0, "Median Spend per Transaction": 7.58, "Median Spend per Customer": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -75.222719, 40.025342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "Name": "Chicko Tako", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 145.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 21.0, "Total Spend": 1606.0, "Total Transactions": 89.0, "Total Customers": 73.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 18.16 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-9cq", "Name": "Lee's Deli", "Category": "Restaurants and Other Eating Places", "Address": "4700 Baltimore Ave", "LATITUDE": 39.948415, "LONGITUDE": -75.217146, "DATE_RANGE_START": 2023, "Total Visits": 130.0, "Total Visitors": 130.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 1.0, "Total Spend": 1622.0, "Total Transactions": 66.0, "Total Customers": 61.0, "Median Spend per Transaction": 16.96, "Median Spend per Customer": 15.88 }, "geometry": { "type": "Point", "coordinates": [ -75.217146, 39.948415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22j@628-pmf-8vz", "Name": "University Of Penn Food Court", "Category": "Restaurants and Other Eating Places", "Address": "3401-3509 Sansom St Univ Of", "LATITUDE": 39.95305, "LONGITUDE": -75.192581, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 12.0, "Total Spend": 357.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 142.45, "Median Spend per Customer": 142.45 }, "geometry": { "type": "Point", "coordinates": [ -75.192581, 39.95305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-pj4-xwk", "Name": "Tribeca Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3509 N Broad St", "LATITUDE": 40.007053, "LONGITUDE": -75.151464, "DATE_RANGE_START": 2023, "Total Visits": 7869.0, "Total Visitors": 3352.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 202.0, "Total Spend": 888.0, "Total Transactions": 125.0, "Total Customers": 51.0, "Median Spend per Transaction": 5.22, "Median Spend per Customer": 11.42 }, "geometry": { "type": "Point", "coordinates": [ -75.151464, 40.007053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvw-hwk", "Name": "Quick Stop Deli", "Category": "Grocery Stores", "Address": "4832 Spruce St", "LATITUDE": 39.953566, "LONGITUDE": -75.219295, "DATE_RANGE_START": 2023, "Total Visits": 164.0, "Total Visitors": 120.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 5.0, "Total Spend": 21.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -75.219295, 39.953566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3724 Spruce St # 3744", "LATITUDE": 39.9511, "LONGITUDE": -75.199, "DATE_RANGE_START": 2023, "Total Visits": 1095.0, "Total Visitors": 485.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 49.0, "Total Spend": 37874.0, "Total Transactions": 4270.0, "Total Customers": 1610.0, "Median Spend per Transaction": 7.01, "Median Spend per Customer": 13.33 }, "geometry": { "type": "Point", "coordinates": [ -75.199, 39.9511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5214 Baltimore Ave # 30", "LATITUDE": 39.947361, "LONGITUDE": -75.228904, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010073004.0, "Median Dwell Time": 5.0, "Total Spend": 9994.0, "Total Transactions": 514.0, "Total Customers": 306.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.228904, 39.947361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "300 N 63rd St", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2023, "Total Visits": 631.0, "Total Visitors": 504.0, "POI_CBG": 421010096001.0, "Median Dwell Time": 12.0, "Total Spend": 1813.0, "Total Transactions": 108.0, "Total Customers": 56.0, "Median Spend per Transaction": 7.52, "Median Spend per Customer": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2201 W Oregon Ave", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2023, "Total Visits": 268.0, "Total Visitors": 227.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 422.0, "Total Transactions": 16.0, "Total Customers": 11.0, "Median Spend per Transaction": 19.6, "Median Spend per Customer": 29.78 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-73q", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "1338 Chestnut St", "LATITUDE": 39.950611, "LONGITUDE": -75.163568, "DATE_RANGE_START": 2023, "Total Visits": 1572.0, "Total Visitors": 1091.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 6270.0, "Total Transactions": 218.0, "Total Customers": 195.0, "Median Spend per Transaction": 21.98, "Median Spend per Customer": 24.97 }, "geometry": { "type": "Point", "coordinates": [ -75.163568, 39.950611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnw-yvz", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "901 W Girard Ave Ste 1B", "LATITUDE": 39.971141, "LONGITUDE": -75.151064, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 11.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 11.0, "Total Spend": 638.0, "Total Transactions": 28.0, "Total Customers": 21.0, "Median Spend per Transaction": 11.48, "Median Spend per Customer": 24.93 }, "geometry": { "type": "Point", "coordinates": [ -75.151064, 39.971141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8f-djv", "Name": "Kim's Market", "Category": "Grocery Stores", "Address": "4708 Oxford Ave", "LATITUDE": 40.01711, "LONGITUDE": -75.084033, "DATE_RANGE_START": 2023, "Total Visits": 489.0, "Total Visitors": 368.0, "POI_CBG": 421010300006.0, "Median Dwell Time": 1.0, "Total Spend": 297.0, "Total Transactions": 25.0, "Total Customers": 19.0, "Median Spend per Transaction": 9.84, "Median Spend per Customer": 11.79 }, "geometry": { "type": "Point", "coordinates": [ -75.084033, 40.01711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-p8n-cnq", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6400 Bustleton Ave", "LATITUDE": 40.036246, "LONGITUDE": -75.070259, "DATE_RANGE_START": 2023, "Total Visits": 1399.0, "Total Visitors": 953.0, "POI_CBG": 421010313003.0, "Median Dwell Time": 8.0, "Total Spend": 50068.0, "Total Transactions": 2687.0, "Total Customers": 1171.0, "Median Spend per Transaction": 12.62, "Median Spend per Customer": 23.02 }, "geometry": { "type": "Point", "coordinates": [ -75.070259, 40.036246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-mzf", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "38 S 52nd St # 42", "LATITUDE": 39.958752, "LONGITUDE": -75.225344, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 9.0, "Total Spend": 652.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 85.0, "Median Spend per Customer": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225344, 39.958752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "Name": "Spasso Italian Grill", "Category": "Restaurants and Other Eating Places", "Address": "34 S Front St", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2023, "Total Visits": 316.0, "Total Visitors": 213.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 93.0, "Total Spend": 10461.0, "Total Transactions": 98.0, "Total Customers": 83.0, "Median Spend per Transaction": 99.84, "Median Spend per Customer": 118.98 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-gtv", "Name": "Cosi", "Category": "Restaurants and Other Eating Places", "Address": "1800 N Broad St", "LATITUDE": 39.980925, "LONGITUDE": -75.157606, "DATE_RANGE_START": 2023, "Total Visits": 3701.0, "Total Visitors": 2096.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 49.0, "Total Spend": 1716.0, "Total Transactions": 90.0, "Total Customers": 73.0, "Median Spend per Transaction": 16.9, "Median Spend per Customer": 17.45 }, "geometry": { "type": "Point", "coordinates": [ -75.157606, 39.980925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-yd9", "Name": "The Merrygold Shop", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "707 S 4th St", "LATITUDE": 39.940234, "LONGITUDE": -75.149251, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 64.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 21.0, "Total Spend": 232.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 92.5, "Median Spend per Customer": 92.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149251, 39.940234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2951 Market St", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2023, "Total Visits": 11074.0, "Total Visitors": 6611.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 20.0, "Total Spend": 2599.0, "Total Transactions": 529.0, "Total Customers": 294.0, "Median Spend per Transaction": 4.2, "Median Spend per Customer": 5.63 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-pn5", "Name": "Sam's Super Market", "Category": "Grocery Stores", "Address": "2852 N Front St", "LATITUDE": 39.993874, "LONGITUDE": -75.130398, "DATE_RANGE_START": 2023, "Total Visits": 478.0, "Total Visitors": 339.0, "POI_CBG": 421010176014.0, "Median Dwell Time": 2.0, "Total Spend": 706.0, "Total Transactions": 81.0, "Total Customers": 31.0, "Median Spend per Transaction": 5.2, "Median Spend per Customer": 15.6 }, "geometry": { "type": "Point", "coordinates": [ -75.130398, 39.993874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-wkz", "Name": "rue21", "Category": "Clothing Stores", "Address": "1259 Franklin Mills Cir", "LATITUDE": 40.088728, "LONGITUDE": -74.961198, "DATE_RANGE_START": 2023, "Total Visits": 592.0, "Total Visitors": 496.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 59.0, "Total Spend": 2006.0, "Total Transactions": 58.0, "Total Customers": 54.0, "Median Spend per Transaction": 23.99, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961198, 40.088728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-649", "Name": "The Barn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4901 Catharine St", "LATITUDE": 39.948417, "LONGITUDE": -75.22137, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 94.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 20.0, "Total Spend": 3549.0, "Total Transactions": 101.0, "Total Customers": 71.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 28.35 }, "geometry": { "type": "Point", "coordinates": [ -75.22137, 39.948417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm4-pvz", "Name": "12 Steps Down", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "831 Christian St", "LATITUDE": 39.939056, "LONGITUDE": -75.157629, "DATE_RANGE_START": 2023, "Total Visits": 276.0, "Total Visitors": 242.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 57.0, "Total Spend": 96.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 38.5, "Median Spend per Customer": 38.5 }, "geometry": { "type": "Point", "coordinates": [ -75.157629, 39.939056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phd-h89", "Name": "El Limon", "Category": "Restaurants and Other Eating Places", "Address": "4514 City Ave", "LATITUDE": 40.002817, "LONGITUDE": -75.22227, "DATE_RANGE_START": 2023, "Total Visits": 485.0, "Total Visitors": 426.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 13.0, "Total Spend": 305.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 30.82, "Median Spend per Customer": 30.82 }, "geometry": { "type": "Point", "coordinates": [ -75.22227, 40.002817 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pnx-7yv", "Name": "Creep Records", "Category": "Electronics and Appliance Stores", "Address": "608 N 2nd St", "LATITUDE": 39.961361, "LONGITUDE": -75.141595, "DATE_RANGE_START": 2023, "Total Visits": 312.0, "Total Visitors": 289.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 7.0, "Total Spend": 3284.0, "Total Transactions": 120.0, "Total Customers": 94.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 29.15 }, "geometry": { "type": "Point", "coordinates": [ -75.141595, 39.961361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dwf-td9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2934 Island Ave", "LATITUDE": 39.902302, "LONGITUDE": -75.242047, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 7.0, "Total Spend": 5029.0, "Total Transactions": 296.0, "Total Customers": 232.0, "Median Spend per Transaction": 13.27, "Median Spend per Customer": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.242047, 39.902302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "Name": "Clarkville", "Category": "Restaurants and Other Eating Places", "Address": "4301 Baltimore Ave", "LATITUDE": 39.949709, "LONGITUDE": -75.209372, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010087011.0, "Median Dwell Time": 12.0, "Total Spend": 10511.0, "Total Transactions": 257.0, "Total Customers": 232.0, "Median Spend per Transaction": 33.45, "Median Spend per Customer": 37.14 }, "geometry": { "type": "Point", "coordinates": [ -75.209372, 39.949709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd # 4", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2023, "Total Visits": 13803.0, "Total Visitors": 7404.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 99.0, "Total Spend": 8955.0, "Total Transactions": 640.0, "Total Customers": 430.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 14.77 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "Name": "Trio Delight Cafe", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.037712, "LONGITUDE": -75.118145, "DATE_RANGE_START": 2023, "Total Visits": 381.0, "Total Visitors": 341.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 38.0, "Total Spend": 1304.0, "Total Transactions": 69.0, "Total Customers": 45.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 20.2 }, "geometry": { "type": "Point", "coordinates": [ -75.118145, 40.037712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pfz-ch5", "Name": "Pilgrim Roasters", "Category": "Restaurants and Other Eating Places", "Address": "4120 Main St", "LATITUDE": 40.022764, "LONGITUDE": -75.219439, "DATE_RANGE_START": 2023, "Total Visits": 299.0, "Total Visitors": 291.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 4.0, "Total Spend": 3704.0, "Total Transactions": 358.0, "Total Customers": 197.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219439, 40.022764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5fz", "Name": "Zio's Brick Oven Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "111 S 13th St", "LATITUDE": 39.950079, "LONGITUDE": -75.161743, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 213.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 4766.0, "Total Transactions": 353.0, "Total Customers": 218.0, "Median Spend per Transaction": 11.96, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.161743, 39.950079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8113 Stenton Ave", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2023, "Total Visits": 445.0, "Total Visitors": 349.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 8.0, "Total Spend": 5202.0, "Total Transactions": 651.0, "Total Customers": 341.0, "Median Spend per Transaction": 6.85, "Median Spend per Customer": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-phy-hdv", "Name": "Kim's Market", "Category": "Grocery Stores", "Address": "4701 N 5th St", "LATITUDE": 40.022409, "LONGITUDE": -75.133408, "DATE_RANGE_START": 2023, "Total Visits": 478.0, "Total Visitors": 138.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 805.0, "Total Spend": 75.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 19.69, "Median Spend per Customer": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.133408, 40.022409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "1234 Locust St", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2023, "Total Visits": 1741.0, "Total Visitors": 770.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 802.0, "Total Spend": 14351.0, "Total Transactions": 271.0, "Total Customers": 229.0, "Median Spend per Transaction": 40.7, "Median Spend per Customer": 53.82 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-pmb-5fz", "Name": "Express Weed Mart", "Category": "Health and Personal Care Stores", "Address": "1206 Sansom St", "LATITUDE": 39.949594, "LONGITUDE": -75.16074, "DATE_RANGE_START": 2023, "Total Visits": 3282.0, "Total Visitors": 2360.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 6.0, "Total Spend": 800.0, "Total Transactions": 28.0, "Total Customers": 20.0, "Median Spend per Transaction": 22.17, "Median Spend per Customer": 26.84 }, "geometry": { "type": "Point", "coordinates": [ -75.16074, 39.949594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-225@628-pgb-8y9", "Name": "Parkway Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2401 Pennsylvania Ave", "LATITUDE": 39.966726, "LONGITUDE": -75.177662, "DATE_RANGE_START": 2023, "Total Visits": 1329.0, "Total Visitors": 695.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 154.0, "Total Spend": 1611.0, "Total Transactions": 38.0, "Total Customers": 26.0, "Median Spend per Transaction": 18.23, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.177662, 39.966726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-3h5", "Name": "19 Degrees", "Category": "Restaurants and Other Eating Places", "Address": "1847 Christian St", "LATITUDE": 39.941163, "LONGITUDE": -75.17414, "DATE_RANGE_START": 2023, "Total Visits": 74.0, "Total Visitors": 74.0, "POI_CBG": 421010019001.0, "Median Dwell Time": 1.0, "Total Spend": 187.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 7.7, "Median Spend per Customer": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.17414, 39.941163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-pg2-2zf", "Name": "Mi 'N Tea", "Category": "Restaurants and Other Eating Places", "Address": "4229 Main St", "LATITUDE": 40.024353, "LONGITUDE": -75.220723, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 114.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 58.0, "Total Spend": 2524.0, "Total Transactions": 108.0, "Total Customers": 94.0, "Median Spend per Transaction": 21.66, "Median Spend per Customer": 24.37 }, "geometry": { "type": "Point", "coordinates": [ -75.220723, 40.024353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "Name": "Gaffney Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "5401 Germantown Ave", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2023, "Total Visits": 115.0, "Total Visitors": 90.0, "POI_CBG": 421010246001.0, "Median Dwell Time": 16.0, "Total Spend": 2580.0, "Total Transactions": 65.0, "Total Customers": 54.0, "Median Spend per Transaction": 23.18, "Median Spend per Customer": 20.95 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-xh5", "Name": "C & R Building Supplies", "Category": "Building Material and Supplies Dealers", "Address": "1322 Washington Ave", "LATITUDE": 39.937501, "LONGITUDE": -75.165521, "DATE_RANGE_START": 2023, "Total Visits": 802.0, "Total Visitors": 624.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 5.0, "Total Spend": 1759.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 565.9, "Median Spend per Customer": 701.96 }, "geometry": { "type": "Point", "coordinates": [ -75.165521, 39.937501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-649", "Name": "Cedar Park Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4914 Baltimore Ave", "LATITUDE": 39.947827, "LONGITUDE": -75.221935, "DATE_RANGE_START": 2023, "Total Visits": 757.0, "Total Visitors": 521.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 42.0, "Total Spend": 1428.0, "Total Transactions": 46.0, "Total Customers": 40.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.221935, 39.947827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "Name": "Pho Palace", "Category": "Restaurants and Other Eating Places", "Address": "15501 Bustleton Ave", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 229.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 16.0, "Total Spend": 3942.0, "Total Transactions": 110.0, "Total Customers": 63.0, "Median Spend per Transaction": 26.46, "Median Spend per Customer": 41.74 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-syv", "Name": "China Star", "Category": "Restaurants and Other Eating Places", "Address": "2000 Germantown Ave", "LATITUDE": 39.981642, "LONGITUDE": -75.144056, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 109.0, "POI_CBG": 421010156002.0, "Median Dwell Time": 1.0, "Total Spend": 321.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.144056, 39.981642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "1622 South St", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 1.0, "Total Spend": 4700.0, "Total Transactions": 187.0, "Total Customers": 172.0, "Median Spend per Transaction": 18.66, "Median Spend per Customer": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pm9-hyv", "Name": "Grove Supply", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "2626 S 18th St", "LATITUDE": 39.918444, "LONGITUDE": -75.177883, "DATE_RANGE_START": 2023, "Total Visits": 100.0, "Total Visitors": 84.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 1.0, "Total Spend": 697.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 213.37, "Median Spend per Customer": 278.21 }, "geometry": { "type": "Point", "coordinates": [ -75.177883, 39.918444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "Name": "Girard Mini Market", "Category": "Grocery Stores", "Address": "2901 W Girard Ave", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 149.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 10.0, "Total Spend": 1048.0, "Total Transactions": 104.0, "Total Customers": 56.0, "Median Spend per Transaction": 9.88, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2640 E Cumberland St # A", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2023, "Total Visits": 883.0, "Total Visitors": 462.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 13.0, "Total Spend": 15161.0, "Total Transactions": 730.0, "Total Customers": 507.0, "Median Spend per Transaction": 13.8, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@63s-dw2-4gk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "136 N 63rd St", "LATITUDE": 39.96557, "LONGITUDE": -75.24667, "DATE_RANGE_START": 2023, "Total Visits": 218.0, "Total Visitors": 140.0, "POI_CBG": 421010096004.0, "Median Dwell Time": 11.0, "Total Spend": 2563.0, "Total Transactions": 134.0, "Total Customers": 98.0, "Median Spend per Transaction": 12.44, "Median Spend per Customer": 14.81 }, "geometry": { "type": "Point", "coordinates": [ -75.24667, 39.96557 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "Name": "Easy Pickins", "Category": "Clothing Stores", "Address": "1207 Chestnut St", "LATITUDE": 39.950717, "LONGITUDE": -75.160517, "DATE_RANGE_START": 2023, "Total Visits": 4506.0, "Total Visitors": 3150.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 659.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 19.99 }, "geometry": { "type": "Point", "coordinates": [ -75.160517, 39.950717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6140 Woodland Ave", "LATITUDE": 39.928144, "LONGITUDE": -75.230166, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 9.0, "Total Spend": 103.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 40.99, "Median Spend per Customer": 40.99 }, "geometry": { "type": "Point", "coordinates": [ -75.230166, 39.928144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "1415 Washington Ave", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 450.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 5.0, "Total Spend": 43719.0, "Total Transactions": 953.0, "Total Customers": 641.0, "Median Spend per Transaction": 33.46, "Median Spend per Customer": 46.27 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj3-brk", "Name": "Brothers Grocery", "Category": "Grocery Stores", "Address": "1540 W Butler St", "LATITUDE": 40.011083, "LONGITUDE": -75.154035, "DATE_RANGE_START": 2023, "Total Visits": 91.0, "Total Visitors": 84.0, "POI_CBG": 421010201021.0, "Median Dwell Time": 1.0, "Total Spend": 80.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.154035, 40.011083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "Name": "Wooden Shoe Books", "Category": "Book Stores and News Dealers", "Address": "704 South St", "LATITUDE": 39.94201, "LONGITUDE": -75.154214, "DATE_RANGE_START": 2023, "Total Visits": 822.0, "Total Visitors": 693.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 6.0, "Total Spend": 2456.0, "Total Transactions": 81.0, "Total Customers": 66.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 24.79 }, "geometry": { "type": "Point", "coordinates": [ -75.154214, 39.94201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-snq", "Name": "Atlanta Wings", "Category": "Restaurants and Other Eating Places", "Address": "2355 S Bucknell St", "LATITUDE": 39.922758, "LONGITUDE": -75.186158, "DATE_RANGE_START": 2023, "Total Visits": 199.0, "Total Visitors": 177.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 13.0, "Total Spend": 801.0, "Total Transactions": 36.0, "Total Customers": 29.0, "Median Spend per Transaction": 20.43, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.186158, 39.922758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6738 Bustleton Ave", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 148.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 12.0, "Total Spend": 3850.0, "Total Transactions": 152.0, "Total Customers": 113.0, "Median Spend per Transaction": 18.19, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2027 S Broad St", "LATITUDE": 39.924715, "LONGITUDE": -75.169142, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 13.0, "Total Spend": 2726.0, "Total Transactions": 185.0, "Total Customers": 135.0, "Median Spend per Transaction": 12.63, "Median Spend per Customer": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169142, 39.924715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "Name": "City Pizza", "Category": "Restaurants and Other Eating Places", "Address": "100 Snyder Ave", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010042013.0, "Median Dwell Time": 4.0, "Total Spend": 2933.0, "Total Transactions": 115.0, "Total Customers": 99.0, "Median Spend per Transaction": 24.25, "Median Spend per Customer": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "Name": "Hong Kong Supermarket", "Category": "Grocery Stores", "Address": "571 Adams Ave Ste 4", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2023, "Total Visits": 827.0, "Total Visitors": 576.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 10.0, "Total Spend": 1155.0, "Total Transactions": 23.0, "Total Customers": 18.0, "Median Spend per Transaction": 43.27, "Median Spend per Customer": 46.23 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvr-7bk", "Name": "Woodland Village Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6234 Woodland Ave", "LATITUDE": 39.927376, "LONGITUDE": -75.23139, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 105.0, "POI_CBG": 421010066004.0, "Median Dwell Time": 18.0, "Total Spend": 193.0, "Total Transactions": 26.0, "Total Customers": 18.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 7.02 }, "geometry": { "type": "Point", "coordinates": [ -75.23139, 39.927376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "929 South St", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2023, "Total Visits": 2147.0, "Total Visitors": 1291.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 17.0, "Total Spend": 57396.0, "Total Transactions": 1483.0, "Total Customers": 659.0, "Median Spend per Transaction": 22.88, "Median Spend per Customer": 34.23 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4160 Monument Rd", "LATITUDE": 40.002735, "LONGITUDE": -75.214447, "DATE_RANGE_START": 2023, "Total Visits": 2146.0, "Total Visitors": 1136.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 15.0, "Total Spend": 8086.0, "Total Transactions": 1088.0, "Total Customers": 430.0, "Median Spend per Transaction": 6.67, "Median Spend per Customer": 9.42 }, "geometry": { "type": "Point", "coordinates": [ -75.214447, 40.002735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5840 Old York Rd", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 184.0, "POI_CBG": 421010278002.0, "Median Dwell Time": 5.0, "Total Spend": 3951.0, "Total Transactions": 264.0, "Total Customers": 225.0, "Median Spend per Transaction": 13.16, "Median Spend per Customer": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-7wk", "Name": "The Board & Brew", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3200 Chestnut St", "LATITUDE": 39.953697, "LONGITUDE": -75.189364, "DATE_RANGE_START": 2023, "Total Visits": 580.0, "Total Visitors": 367.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 16.0, "Total Spend": 676.0, "Total Transactions": 25.0, "Total Customers": 23.0, "Median Spend per Transaction": 17.95, "Median Spend per Customer": 21.98 }, "geometry": { "type": "Point", "coordinates": [ -75.189364, 39.953697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "Name": "New England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2417 Welsh Rd", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2023, "Total Visits": 332.0, "Total Visitors": 278.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 6.0, "Total Spend": 1671.0, "Total Transactions": 55.0, "Total Customers": 14.0, "Median Spend per Transaction": 33.5, "Median Spend per Customer": 26.55 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7v-ghq", "Name": "New Olympia House", "Category": "Restaurants and Other Eating Places", "Address": "7242 Castor Ave", "LATITUDE": 40.050865, "LONGITUDE": -75.06694, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010310001.0, "Median Dwell Time": 50.0, "Total Spend": 89.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 35.4, "Median Spend per Customer": 35.4 }, "geometry": { "type": "Point", "coordinates": [ -75.06694, 40.050865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-jd9", "Name": "LongHorn Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "9769 Roosevelt Blvd", "LATITUDE": 40.084409, "LONGITUDE": -75.024098, "DATE_RANGE_START": 2023, "Total Visits": 1080.0, "Total Visitors": 1020.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 41.0, "Total Spend": 27037.0, "Total Transactions": 353.0, "Total Customers": 306.0, "Median Spend per Transaction": 68.08, "Median Spend per Customer": 77.08 }, "geometry": { "type": "Point", "coordinates": [ -75.024098, 40.084409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "Name": "Uniqlo", "Category": "Clothing Stores", "Address": "1608 Chestnut St", "LATITUDE": 39.951166, "LONGITUDE": -75.167764, "DATE_RANGE_START": 2023, "Total Visits": 1353.0, "Total Visitors": 936.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 26.0, "Total Spend": 26677.0, "Total Transactions": 458.0, "Total Customers": 406.0, "Median Spend per Transaction": 40.01, "Median Spend per Customer": 44.8 }, "geometry": { "type": "Point", "coordinates": [ -75.167764, 39.951166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-dvz", "Name": "Quick Stop", "Category": "Grocery Stores", "Address": "3001 Kensington Ave", "LATITUDE": 39.993791, "LONGITUDE": -75.117865, "DATE_RANGE_START": 2023, "Total Visits": 447.0, "Total Visitors": 309.0, "POI_CBG": 421010178005.0, "Median Dwell Time": 5.0, "Total Spend": 2591.0, "Total Transactions": 219.0, "Total Customers": 129.0, "Median Spend per Transaction": 9.22, "Median Spend per Customer": 15.16 }, "geometry": { "type": "Point", "coordinates": [ -75.117865, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pmb-c3q", "Name": "Kin Boutique", "Category": "Clothing Stores", "Address": "1010 Pine St", "LATITUDE": 39.944553, "LONGITUDE": -75.158728, "DATE_RANGE_START": 2023, "Total Visits": 680.0, "Total Visitors": 371.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 352.0, "Total Spend": 1446.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 128.0, "Median Spend per Customer": 128.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158728, 39.944553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "Name": "Steak 'Em Up", "Category": "Restaurants and Other Eating Places", "Address": "2600 S 11th St", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 114.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 3.0, "Total Spend": 1803.0, "Total Transactions": 63.0, "Total Customers": 49.0, "Median Spend per Transaction": 27.7, "Median Spend per Customer": 34.05 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmb-fpv", "Name": "Locust Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "235 S 10th St", "LATITUDE": 39.947237, "LONGITUDE": -75.157431, "DATE_RANGE_START": 2023, "Total Visits": 153.0, "Total Visitors": 30.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 423.0, "Total Spend": 149.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 29.96, "Median Spend per Customer": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157431, 39.947237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pg4-52k", "Name": "Duran Food Market", "Category": "Grocery Stores", "Address": "5355 Lena St", "LATITUDE": 40.034871, "LONGITUDE": -75.168706, "DATE_RANGE_START": 2023, "Total Visits": 108.0, "Total Visitors": 63.0, "POI_CBG": 421010246001.0, "Median Dwell Time": 23.0, "Total Spend": 1759.0, "Total Transactions": 115.0, "Total Customers": 69.0, "Median Spend per Transaction": 9.9, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168706, 40.034871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-qs5", "Name": "Panasian Buffet", "Category": "Restaurants and Other Eating Places", "Address": "833 Adams Ave", "LATITUDE": 40.030993, "LONGITUDE": -75.10376, "DATE_RANGE_START": 2023, "Total Visits": 410.0, "Total Visitors": 323.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 33.0, "Total Spend": 6103.0, "Total Transactions": 137.0, "Total Customers": 111.0, "Median Spend per Transaction": 41.0, "Median Spend per Customer": 48.45 }, "geometry": { "type": "Point", "coordinates": [ -75.10376, 40.030993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm4-kfz", "Name": "Tamalex Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1163 S 7th St", "LATITUDE": 39.933915, "LONGITUDE": -75.155605, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 137.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 16.0, "Total Spend": 1980.0, "Total Transactions": 44.0, "Total Customers": 36.0, "Median Spend per Transaction": 41.0, "Median Spend per Customer": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155605, 39.933915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "104 S 40th St", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2023, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 3.0, "Total Spend": 3505.0, "Total Transactions": 163.0, "Total Customers": 130.0, "Median Spend per Transaction": 17.26, "Median Spend per Customer": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7911 Ogontz Ave # 17", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2023, "Total Visits": 1231.0, "Total Visitors": 887.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 12.0, "Total Spend": 32806.0, "Total Transactions": 2008.0, "Total Customers": 1152.0, "Median Spend per Transaction": 12.94, "Median Spend per Customer": 16.32 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2014 S Broad St", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2023, "Total Visits": 1878.0, "Total Visitors": 1140.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 20.0, "Total Spend": 2452.0, "Total Transactions": 118.0, "Total Customers": 65.0, "Median Spend per Transaction": 14.3, "Median Spend per Customer": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@63s-dwc-cbk", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "6101 Passyunk Ave", "LATITUDE": 39.918414, "LONGITUDE": -75.209648, "DATE_RANGE_START": 2023, "Total Visits": 882.0, "Total Visitors": 755.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 5.0, "Total Spend": 918.0, "Total Transactions": 41.0, "Total Customers": 30.0, "Median Spend per Transaction": 15.02, "Median Spend per Customer": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.209648, 39.918414 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-hkf", "Name": "The Coventry Deli", "Category": "Restaurants and Other Eating Places", "Address": "2000 Market St", "LATITUDE": 39.953273, "LONGITUDE": -75.173676, "DATE_RANGE_START": 2023, "Total Visits": 886.0, "Total Visitors": 537.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 137.0, "Total Spend": 475.0, "Total Transactions": 65.0, "Total Customers": 33.0, "Median Spend per Transaction": 5.56, "Median Spend per Customer": 9.08 }, "geometry": { "type": "Point", "coordinates": [ -75.173676, 39.953273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-68v", "Name": "Strangelove's", "Category": "Restaurants and Other Eating Places", "Address": "216 S 11th St", "LATITUDE": 39.947987, "LONGITUDE": -75.159475, "DATE_RANGE_START": 2023, "Total Visits": 1796.0, "Total Visitors": 1179.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 25.0, "Total Spend": 345.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159475, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "5901 Wayne Ave", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010238003.0, "Median Dwell Time": null, "Total Spend": 4788.0, "Total Transactions": 549.0, "Total Customers": 362.0, "Median Spend per Transaction": 7.05, "Median Spend per Customer": 9.43 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rx5", "Name": "Hair Hair", "Category": "Health and Personal Care Stores", "Address": "7618 City Ave", "LATITUDE": 39.978116, "LONGITUDE": -75.271408, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 6.0, "Total Spend": 2658.0, "Total Transactions": 88.0, "Total Customers": 81.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 25.89 }, "geometry": { "type": "Point", "coordinates": [ -75.271408, 39.978116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9377 Krewstown Rd", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2023, "Total Visits": 1509.0, "Total Visitors": 1060.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 6.0, "Total Spend": 69873.0, "Total Transactions": 3931.0, "Total Customers": 1543.0, "Median Spend per Transaction": 11.47, "Median Spend per Customer": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-66k", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2201 Cottman Ave Ste 245", "LATITUDE": 40.049004, "LONGITUDE": -75.060431, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 17.0, "Total Spend": 3348.0, "Total Transactions": 59.0, "Total Customers": 51.0, "Median Spend per Transaction": 49.66, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.060431, 40.049004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1034 Washington Ave # 38", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2023, "Total Visits": 487.0, "Total Visitors": 347.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 10.0, "Total Spend": 867.0, "Total Transactions": 50.0, "Total Customers": 26.0, "Median Spend per Transaction": 13.83, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "2106 S Columbus Blvd", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2023, "Total Visits": 2855.0, "Total Visitors": 2176.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 19.0, "Total Spend": 49742.0, "Total Transactions": 760.0, "Total Customers": 524.0, "Median Spend per Transaction": 16.72, "Median Spend per Customer": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3331 Grant Ave", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2023, "Total Visits": 1017.0, "Total Visitors": 728.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 8.0, "Total Spend": 4012.0, "Total Transactions": 169.0, "Total Customers": 119.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 15.51 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "Name": "Eyes Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "327 South St", "LATITUDE": 39.941812, "LONGITUDE": -75.14844, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 190.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 1.0, "Total Spend": 1375.0, "Total Transactions": 31.0, "Total Customers": 29.0, "Median Spend per Transaction": 32.94, "Median Spend per Customer": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.14844, 39.941812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6138 Ridge Ave", "LATITUDE": 40.034272, "LONGITUDE": -75.216378, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 123.0, "POI_CBG": 421010213002.0, "Median Dwell Time": 4.0, "Total Spend": 1003.0, "Total Transactions": 122.0, "Total Customers": 76.0, "Median Spend per Transaction": 7.34, "Median Spend per Customer": 9.88 }, "geometry": { "type": "Point", "coordinates": [ -75.216378, 40.034272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "Name": "Sonny's Famous Steaks", "Category": "Restaurants and Other Eating Places", "Address": "228 Market St", "LATITUDE": 39.949809, "LONGITUDE": -75.144793, "DATE_RANGE_START": 2023, "Total Visits": 2528.0, "Total Visitors": 1506.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 65.0, "Total Spend": 10346.0, "Total Transactions": 357.0, "Total Customers": 307.0, "Median Spend per Transaction": 22.76, "Median Spend per Customer": 23.64 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.949809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1207 Franklin Mills Cir", "LATITUDE": 40.084661, "LONGITUDE": -74.961824, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 7.0, "Total Spend": 1708.0, "Total Transactions": 38.0, "Total Customers": 36.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961824, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5020 City Ave", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2023, "Total Visits": 1318.0, "Total Visitors": 1139.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 10.0, "Total Spend": 15895.0, "Total Transactions": 1249.0, "Total Customers": 916.0, "Median Spend per Transaction": 11.04, "Median Spend per Customer": 12.14 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-226@628-pmb-6x5", "Name": "Goldie", "Category": "Restaurants and Other Eating Places", "Address": "1911 Sansom St", "LATITUDE": 39.950344, "LONGITUDE": -75.166847, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 179.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 26.0, "Total Spend": 748.0, "Total Transactions": 33.0, "Total Customers": 31.0, "Median Spend per Transaction": 17.89, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166847, 39.950344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pnw-m6k", "Name": "GIANT Heirloom Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "1004 N 2nd St", "LATITUDE": 39.966473, "LONGITUDE": -75.140367, "DATE_RANGE_START": 2023, "Total Visits": 544.0, "Total Visitors": 412.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 5.0, "Total Spend": 6204.0, "Total Transactions": 225.0, "Total Customers": 172.0, "Median Spend per Transaction": 17.7, "Median Spend per Customer": 23.51 }, "geometry": { "type": "Point", "coordinates": [ -75.140367, 39.966473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1100 Tasker St", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2023, "Total Visits": 214.0, "Total Visitors": 158.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 11.0, "Total Spend": 6545.0, "Total Transactions": 693.0, "Total Customers": 432.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pm9-tjv", "Name": "Eden Jewelry", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "800 Chestnut St", "LATITUDE": 39.949361, "LONGITUDE": -75.154322, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 2045.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 220.0, "Median Spend per Customer": 351.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154322, 39.949361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2023, "Total Visits": 164.0, "Total Visitors": 150.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 4.0, "Total Spend": 2848.0, "Total Transactions": 132.0, "Total Customers": 110.0, "Median Spend per Transaction": 16.47, "Median Spend per Customer": 17.93 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg9-xh5", "Name": "Coffee Cream & Dreams", "Category": "Restaurants and Other Eating Places", "Address": "1436 Fairmount Ave", "LATITUDE": 39.966924, "LONGITUDE": -75.162284, "DATE_RANGE_START": 2023, "Total Visits": 116.0, "Total Visitors": 116.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 1.0, "Total Spend": 675.0, "Total Transactions": 66.0, "Total Customers": 18.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 15.33 }, "geometry": { "type": "Point", "coordinates": [ -75.162284, 39.966924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "Name": "Knead Bagels", "Category": "Restaurants and Other Eating Places", "Address": "725 Walnut St", "LATITUDE": 39.948382, "LONGITUDE": -75.153598, "DATE_RANGE_START": 2023, "Total Visits": 1068.0, "Total Visitors": 532.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 159.0, "Total Spend": 3118.0, "Total Transactions": 203.0, "Total Customers": 159.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 15.36 }, "geometry": { "type": "Point", "coordinates": [ -75.153598, 39.948382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "Name": "Not Just Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2240 S 11th St", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 163.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 6.0, "Total Spend": 986.0, "Total Transactions": 44.0, "Total Customers": 30.0, "Median Spend per Transaction": 20.41, "Median Spend per Customer": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj6-8y9", "Name": "El Rinconcito", "Category": "Restaurants and Other Eating Places", "Address": "734 Adams Ave", "LATITUDE": 40.031821, "LONGITUDE": -75.1072, "DATE_RANGE_START": 2023, "Total Visits": 344.0, "Total Visitors": 234.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 7.0, "Total Spend": 211.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 24.15, "Median Spend per Customer": 24.15 }, "geometry": { "type": "Point", "coordinates": [ -75.1072, 40.031821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6401 Roosevelt Blvd", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2023, "Total Visits": 386.0, "Total Visitors": 254.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 5.0, "Total Spend": 3211.0, "Total Transactions": 400.0, "Total Customers": 188.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-hh5", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "1821 Chestnut St", "LATITUDE": 39.951989, "LONGITUDE": -75.171131, "DATE_RANGE_START": 2023, "Total Visits": 373.0, "Total Visitors": 331.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 27.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.171131, 39.951989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-kpv", "Name": "Sophy Curson", "Category": "Clothing Stores", "Address": "19th St @ Sansom St", "LATITUDE": 39.951064, "LONGITUDE": -75.172395, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 3240.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 606.6, "Median Spend per Customer": 853.2 }, "geometry": { "type": "Point", "coordinates": [ -75.172395, 39.951064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4617 N 5th St", "LATITUDE": 40.021349, "LONGITUDE": -75.133421, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 6.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 134.0, "Total Spend": 716.0, "Total Transactions": 48.0, "Total Customers": 40.0, "Median Spend per Transaction": 8.24, "Median Spend per Customer": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.133421, 40.021349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-2p9", "Name": "Pharmacy of America III", "Category": "Health and Personal Care Stores", "Address": "217 W Lehigh Ave Ste", "LATITUDE": 39.992042, "LONGITUDE": -75.135673, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 25.0, "POI_CBG": 421010176015.0, "Median Dwell Time": 11.0, "Total Spend": 574.0, "Total Transactions": 43.0, "Total Customers": 40.0, "Median Spend per Transaction": 3.63, "Median Spend per Customer": 4.52 }, "geometry": { "type": "Point", "coordinates": [ -75.135673, 39.992042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1105 N 63rd St # 09", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2023, "Total Visits": 301.0, "Total Visitors": 169.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 16.0, "Total Spend": 11111.0, "Total Transactions": 298.0, "Total Customers": 182.0, "Median Spend per Transaction": 13.59, "Median Spend per Customer": 18.73 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2100 Red Lion Rd", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2023, "Total Visits": 339.0, "Total Visitors": 162.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 80.0, "Total Spend": 16922.0, "Total Transactions": 1357.0, "Total Customers": 936.0, "Median Spend per Transaction": 10.7, "Median Spend per Customer": 13.17 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-4qf", "Name": "Burrito Feliz Philly", "Category": "Restaurants and Other Eating Places", "Address": "2000 S 7th St", "LATITUDE": 39.924044, "LONGITUDE": -75.158163, "DATE_RANGE_START": 2023, "Total Visits": 524.0, "Total Visitors": 415.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 3.0, "Total Spend": 2818.0, "Total Transactions": 123.0, "Total Customers": 108.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 22.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158163, 39.924044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm8-gzf", "Name": "Shake Shack", "Category": "Restaurants and Other Eating Places", "Address": "3601 S Broad St", "LATITUDE": 39.901198, "LONGITUDE": -75.171974, "DATE_RANGE_START": 2023, "Total Visits": 1955.0, "Total Visitors": 1499.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 169.0, "Total Spend": 421.0, "Total Transactions": 46.0, "Total Customers": 35.0, "Median Spend per Transaction": 4.45, "Median Spend per Customer": 9.78 }, "geometry": { "type": "Point", "coordinates": [ -75.171974, 39.901198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mx5", "Name": "Jos. A. Bank Clothiers", "Category": "Clothing Stores", "Address": "1650 Market St", "LATITUDE": 39.952575, "LONGITUDE": -75.168323, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 38.0, "Total Spend": 5370.0, "Total Transactions": 48.0, "Total Customers": 41.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 62.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168323, 39.952575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-2c5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.073464, "LONGITUDE": -75.033702, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 6.0, "Total Spend": 3795.0, "Total Transactions": 473.0, "Total Customers": 261.0, "Median Spend per Transaction": 6.9, "Median Spend per Customer": 9.78 }, "geometry": { "type": "Point", "coordinates": [ -75.033702, 40.073464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2800 Fox St", "LATITUDE": 40.009087, "LONGITUDE": -75.175142, "DATE_RANGE_START": 2023, "Total Visits": 894.0, "Total Visitors": 556.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 48.0, "Total Spend": 11872.0, "Total Transactions": 309.0, "Total Customers": 243.0, "Median Spend per Transaction": 27.58, "Median Spend per Customer": 34.39 }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 40.009087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "Name": "Macy's", "Category": "Department Stores", "Address": "2399 Cottman Ave", "LATITUDE": 40.046858, "LONGITUDE": -75.054712, "DATE_RANGE_START": 2023, "Total Visits": 2253.0, "Total Visitors": 1595.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 37.0, "Total Spend": 7492.0, "Total Transactions": 79.0, "Total Customers": 63.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 94.55 }, "geometry": { "type": "Point", "coordinates": [ -75.054712, 40.046858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "Name": "Roses", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "501 Adams Ave", "LATITUDE": 40.039275, "LONGITUDE": -75.108052, "DATE_RANGE_START": 2023, "Total Visits": 630.0, "Total Visitors": 301.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 59.0, "Total Spend": 18411.0, "Total Transactions": 472.0, "Total Customers": 352.0, "Median Spend per Transaction": 24.06, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.108052, 40.039275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "Name": "Fat Tuesday", "Category": "Specialty Food Stores", "Address": "431 South St", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2023, "Total Visits": 2202.0, "Total Visitors": 2202.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 17.0, "Total Spend": 7670.0, "Total Transactions": 326.0, "Total Customers": 279.0, "Median Spend per Transaction": 19.8, "Median Spend per Customer": 23.76 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "Name": "C Town Supermarkets", "Category": "Grocery Stores", "Address": "2438 W Lehigh Ave", "LATITUDE": 39.995922, "LONGITUDE": -75.172212, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 34.0, "POI_CBG": 421010169011.0, "Median Dwell Time": 201.0, "Total Spend": 2034.0, "Total Transactions": 203.0, "Total Customers": 95.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.172212, 39.995922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "Name": "Jini Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "1319 Franklin Mills Cir", "LATITUDE": 40.085911, "LONGITUDE": -74.962082, "DATE_RANGE_START": 2023, "Total Visits": 321.0, "Total Visitors": 294.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 20.0, "Total Spend": 2112.0, "Total Transactions": 73.0, "Total Customers": 64.0, "Median Spend per Transaction": 23.7, "Median Spend per Customer": 26.41 }, "geometry": { "type": "Point", "coordinates": [ -74.962082, 40.085911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "Name": "Sunglass Hut", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952006, "LONGITUDE": -75.16828, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 38.0, "Total Spend": 1715.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 215.46, "Median Spend per Customer": 247.85 }, "geometry": { "type": "Point", "coordinates": [ -75.16828, 39.952006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "Name": "Anthropologie", "Category": "Clothing Stores", "Address": "1801 Walnut St", "LATITUDE": 39.950348, "LONGITUDE": -75.170813, "DATE_RANGE_START": 2023, "Total Visits": 2842.0, "Total Visitors": 1860.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 525435.0, "Total Transactions": 3783.0, "Total Customers": 2508.0, "Median Spend per Transaction": 91.14, "Median Spend per Customer": 120.34 }, "geometry": { "type": "Point", "coordinates": [ -75.170813, 39.950348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22f@628-p9r-28v", "Name": "Lane Bryant", "Category": "Clothing Stores", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.074277, "LONGITUDE": -75.033112, "DATE_RANGE_START": 2023, "Total Visits": 94.0, "Total Visitors": 94.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 21.0, "Total Spend": 774.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 34.7, "Median Spend per Customer": 45.49 }, "geometry": { "type": "Point", "coordinates": [ -75.033112, 40.074277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2201 Cottman Ave", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2023, "Total Visits": 502.0, "Total Visitors": 462.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 14.0, "Total Spend": 13715.0, "Total Transactions": 403.0, "Total Customers": 356.0, "Median Spend per Transaction": 24.3, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phz-cdv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5338 N 5th St", "LATITUDE": 40.033281, "LONGITUDE": -75.131582, "DATE_RANGE_START": 2023, "Total Visits": 16.0, "Total Visitors": 10.0, "POI_CBG": 421010275003.0, "Median Dwell Time": 4.0, "Total Spend": 576.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 142.75, "Median Spend per Customer": 142.75 }, "geometry": { "type": "Point", "coordinates": [ -75.131582, 40.033281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgh-cwk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1925 W Allegheny Ave", "LATITUDE": 40.003103, "LONGITUDE": -75.162138, "DATE_RANGE_START": 2023, "Total Visits": 203.0, "Total Visitors": 128.0, "POI_CBG": 421010202001.0, "Median Dwell Time": 13.0, "Total Spend": 641.0, "Total Transactions": 56.0, "Total Customers": 38.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.162138, 40.003103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yd9", "Name": "Sleep Inn", "Category": "Traveler Accommodation", "Address": "1020 Cherry St", "LATITUDE": 39.954446, "LONGITUDE": -75.157043, "DATE_RANGE_START": 2023, "Total Visits": 383.0, "Total Visitors": 319.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 60.0, "Total Spend": 1954.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 149.0, "Median Spend per Customer": 174.41 }, "geometry": { "type": "Point", "coordinates": [ -75.157043, 39.954446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pp2-2kz", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992485, "LONGITUDE": -75.101233, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 18.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 28.0, "Total Spend": 2453.0, "Total Transactions": 80.0, "Total Customers": 55.0, "Median Spend per Transaction": 22.69, "Median Spend per Customer": 23.66 }, "geometry": { "type": "Point", "coordinates": [ -75.101233, 39.992485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-k75", "Name": "Lendy's Food Market", "Category": "Grocery Stores", "Address": "617 W York St", "LATITUDE": 39.988027, "LONGITUDE": -75.143801, "DATE_RANGE_START": 2023, "Total Visits": 88.0, "Total Visitors": 44.0, "POI_CBG": 421010164004.0, "Median Dwell Time": 164.0, "Total Spend": 415.0, "Total Transactions": 43.0, "Total Customers": 21.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 10.91 }, "geometry": { "type": "Point", "coordinates": [ -75.143801, 39.988027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4000 Woodhaven Rd", "LATITUDE": 40.084831, "LONGITUDE": -74.972304, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 3.0, "Total Spend": 8154.0, "Total Transactions": 362.0, "Total Customers": 205.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 19.13 }, "geometry": { "type": "Point", "coordinates": [ -74.972304, 40.084831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "Name": "Taproom On 19th", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2400 S 19th St", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2023, "Total Visits": 116.0, "Total Visitors": 88.0, "POI_CBG": 421010038001.0, "Median Dwell Time": 101.0, "Total Spend": 4528.0, "Total Transactions": 86.0, "Total Customers": 53.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 56.54 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3301 Tyson Ave", "LATITUDE": 40.035421, "LONGITUDE": -75.049037, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 11.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 7.0, "Total Spend": 2994.0, "Total Transactions": 94.0, "Total Customers": 65.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 42.19 }, "geometry": { "type": "Point", "coordinates": [ -75.049037, 40.035421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-223@628-p8n-389", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6327 Torresdale Ave # 43", "LATITUDE": 40.020851, "LONGITUDE": -75.052211, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010323001.0, "Median Dwell Time": 11.0, "Total Spend": 4088.0, "Total Transactions": 215.0, "Total Customers": 157.0, "Median Spend per Transaction": 14.52, "Median Spend per Customer": 18.37 }, "geometry": { "type": "Point", "coordinates": [ -75.052211, 40.020851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912684, "LONGITUDE": -75.156333, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 3707.0, "Total Transactions": 83.0, "Total Customers": 46.0, "Median Spend per Transaction": 38.84, "Median Spend per Customer": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.156333, 39.912684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "Name": "My Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2200 South St", "LATITUDE": 39.945125, "LONGITUDE": -75.178759, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 6.0, "Total Spend": 223.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.178759, 39.945125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5700 Oxford Ave", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 208.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 6.0, "Total Spend": 485.0, "Total Transactions": 30.0, "Total Customers": 19.0, "Median Spend per Transaction": 12.13, "Median Spend per Customer": 22.89 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "237 S 10th St", "LATITUDE": 39.947184, "LONGITUDE": -75.157462, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 8.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 34.0, "Total Spend": 1087.0, "Total Transactions": 48.0, "Total Customers": 39.0, "Median Spend per Transaction": 21.46, "Median Spend per Customer": 25.06 }, "geometry": { "type": "Point", "coordinates": [ -75.157462, 39.947184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912999, "LONGITUDE": -75.154783, "DATE_RANGE_START": 2023, "Total Visits": 2042.0, "Total Visitors": 1844.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 62.0, "Total Spend": 3986.0, "Total Transactions": 50.0, "Total Customers": 44.0, "Median Spend per Transaction": 51.29, "Median Spend per Customer": 51.29 }, "geometry": { "type": "Point", "coordinates": [ -75.154783, 39.912999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2204 S Columbus Blvd", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2023, "Total Visits": 1496.0, "Total Visitors": 894.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 17.0, "Total Spend": 49137.0, "Total Transactions": 2658.0, "Total Customers": 1829.0, "Median Spend per Transaction": 15.09, "Median Spend per Customer": 20.05 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4100 Chester Ave", "LATITUDE": 39.94827, "LONGITUDE": -75.206321, "DATE_RANGE_START": 2023, "Total Visits": 457.0, "Total Visitors": 289.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 9.0, "Total Spend": 3494.0, "Total Transactions": 467.0, "Total Customers": 243.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.206321, 39.94827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-2hq", "Name": "Venus Video", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "6307 Passyunk Ave", "LATITUDE": 39.917037, "LONGITUDE": -75.216799, "DATE_RANGE_START": 2023, "Total Visits": 128.0, "Total Visitors": 94.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 54.0, "Total Spend": 2490.0, "Total Transactions": 56.0, "Total Customers": 50.0, "Median Spend per Transaction": 38.5, "Median Spend per Customer": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.216799, 39.917037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-bp9", "Name": "Sang Kee Noodle House", "Category": "Restaurants and Other Eating Places", "Address": "900 Packer Ave", "LATITUDE": 39.909183, "LONGITUDE": -75.16467, "DATE_RANGE_START": 2023, "Total Visits": 4147.0, "Total Visitors": 2127.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 104.0, "Total Spend": 6338.0, "Total Transactions": 235.0, "Total Customers": 209.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16467, 39.909183 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-jd9", "Name": "The Children's Boutique", "Category": "Clothing Stores", "Address": "128 S 17th St", "LATITUDE": 39.950539, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2023, "Total Visits": 601.0, "Total Visitors": 486.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 1800.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 114.04, "Median Spend per Customer": 116.41 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5s5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1201 Chestnut St", "LATITUDE": 39.950726, "LONGITUDE": -75.160316, "DATE_RANGE_START": 2023, "Total Visits": 4506.0, "Total Visitors": 3150.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 1255.0, "Total Transactions": 93.0, "Total Customers": 80.0, "Median Spend per Transaction": 7.96, "Median Spend per Customer": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.160316, 39.950726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd Unit 22", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2023, "Total Visits": 293.0, "Total Visitors": 273.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 30.0, "Total Spend": 965.0, "Total Transactions": 34.0, "Total Customers": 28.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 32.21 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-rc5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2545 Aramingo Ave", "LATITUDE": 39.97775, "LONGITUDE": -75.118406, "DATE_RANGE_START": 2023, "Total Visits": 582.0, "Total Visitors": 303.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 17.0, "Total Spend": 12987.0, "Total Transactions": 566.0, "Total Customers": 342.0, "Median Spend per Transaction": 17.58, "Median Spend per Customer": 24.77 }, "geometry": { "type": "Point", "coordinates": [ -75.118406, 39.97775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8m-snq", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "5223 Frankford Ave", "LATITUDE": 40.022472, "LONGITUDE": -75.077322, "DATE_RANGE_START": 2023, "Total Visits": 370.0, "Total Visitors": 282.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 6.0, "Total Spend": 1102.0, "Total Transactions": 43.0, "Total Customers": 30.0, "Median Spend per Transaction": 21.99, "Median Spend per Customer": 36.21 }, "geometry": { "type": "Point", "coordinates": [ -75.077322, 40.022472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5601 Vine St", "LATITUDE": 39.966795, "LONGITUDE": -75.233387, "DATE_RANGE_START": 2023, "Total Visits": 2742.0, "Total Visitors": 1328.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 21.0, "Total Spend": 1937.0, "Total Transactions": 172.0, "Total Customers": 96.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 9.91 }, "geometry": { "type": "Point", "coordinates": [ -75.233387, 39.966795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pmf-mff", "Name": "Con Murphy's", "Category": "Restaurants and Other Eating Places", "Address": "1700 Benjamin Franklin Pkwy", "LATITUDE": 39.955696, "LONGITUDE": -75.167996, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 142.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 7.0, "Total Spend": 577.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 48.52, "Median Spend per Customer": 63.52 }, "geometry": { "type": "Point", "coordinates": [ -75.167996, 39.955696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5834 Pulaski Ave", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2023, "Total Visits": 456.0, "Total Visitors": 337.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 19.0, "Total Spend": 125854.0, "Total Transactions": 4635.0, "Total Customers": 2524.0, "Median Spend per Transaction": 15.75, "Median Spend per Customer": 25.76 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "Name": "Forever 21", "Category": "Clothing Stores", "Address": "1706 Franklin Mills Cir", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2023, "Total Visits": 2342.0, "Total Visitors": 1871.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 32.0, "Total Spend": 1880.0, "Total Transactions": 39.0, "Total Customers": 31.0, "Median Spend per Transaction": 29.24, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8220 Bartram Ave", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2023, "Total Visits": 3103.0, "Total Visitors": 2329.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 7.0, "Total Spend": 110056.0, "Total Transactions": 6278.0, "Total Customers": 3155.0, "Median Spend per Transaction": 12.17, "Median Spend per Customer": 21.47 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-s3q", "Name": "Lore's Chocolates", "Category": "Specialty Food Stores", "Address": "34 S 7th St", "LATITUDE": 39.949838, "LONGITUDE": -75.152455, "DATE_RANGE_START": 2023, "Total Visits": 476.0, "Total Visitors": 388.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 331.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 37.8, "Median Spend per Customer": 56.1 }, "geometry": { "type": "Point", "coordinates": [ -75.152455, 39.949838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "Name": "Burlington", "Category": "Clothing Stores", "Address": "1563 Franklin Mills Cir", "LATITUDE": 40.087322, "LONGITUDE": -74.960366, "DATE_RANGE_START": 2023, "Total Visits": 78.0, "Total Visitors": 56.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 44.0, "Total Spend": 1686.0, "Total Transactions": 69.0, "Total Customers": 31.0, "Median Spend per Transaction": 9.22, "Median Spend per Customer": 31.96 }, "geometry": { "type": "Point", "coordinates": [ -74.960366, 40.087322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "Name": "Martinez Grocery", "Category": "Grocery Stores", "Address": "2655 W Sterner St", "LATITUDE": 39.997209, "LONGITUDE": -75.175291, "DATE_RANGE_START": 2023, "Total Visits": 127.0, "Total Visitors": 106.0, "POI_CBG": 421010172022.0, "Median Dwell Time": 170.0, "Total Spend": 531.0, "Total Transactions": 54.0, "Total Customers": 23.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175291, 39.997209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-kpv", "Name": "The Goat Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "1907 Sansom St", "LATITUDE": 39.951177, "LONGITUDE": -75.172386, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 244.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 7.0, "Total Spend": 10716.0, "Total Transactions": 113.0, "Total Customers": 93.0, "Median Spend per Transaction": 35.92, "Median Spend per Customer": 38.5 }, "geometry": { "type": "Point", "coordinates": [ -75.172386, 39.951177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "1243 S Broad St", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2023, "Total Visits": 1155.0, "Total Visitors": 787.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 4.0, "Total Spend": 26877.0, "Total Transactions": 1111.0, "Total Customers": 602.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 32.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "15500 Bustleton Ave", "LATITUDE": 40.134399, "LONGITUDE": -75.01003, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 7.0, "Total Spend": 4094.0, "Total Transactions": 199.0, "Total Customers": 127.0, "Median Spend per Transaction": 10.61, "Median Spend per Customer": 19.08 }, "geometry": { "type": "Point", "coordinates": [ -75.01003, 40.134399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-zvf", "Name": "Philly AIDS Thrift", "Category": "Used Merchandise Stores", "Address": "710 S 5th St", "LATITUDE": 39.940653, "LONGITUDE": -75.151169, "DATE_RANGE_START": 2023, "Total Visits": 1370.0, "Total Visitors": 1137.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 17.0, "Total Spend": 12878.0, "Total Transactions": 735.0, "Total Customers": 592.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 14.02 }, "geometry": { "type": "Point", "coordinates": [ -75.151169, 39.940653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj9-zmk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5612 N 5th St", "LATITUDE": 40.036808, "LONGITUDE": -75.130605, "DATE_RANGE_START": 2023, "Total Visits": 787.0, "Total Visitors": 412.0, "POI_CBG": 421010275002.0, "Median Dwell Time": 22.0, "Total Spend": 1990.0, "Total Transactions": 101.0, "Total Customers": 64.0, "Median Spend per Transaction": 12.99, "Median Spend per Customer": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -75.130605, 40.036808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pnw-py9", "Name": "Pharmacy of America V", "Category": "Health and Personal Care Stores", "Address": "232 W Girard Ave", "LATITUDE": 39.969421, "LONGITUDE": -75.140859, "DATE_RANGE_START": 2023, "Total Visits": 695.0, "Total Visitors": 499.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 5.0, "Total Spend": 122.0, "Total Transactions": 15.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 9.19 }, "geometry": { "type": "Point", "coordinates": [ -75.140859, 39.969421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4113 G St", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2023, "Total Visits": 251.0, "Total Visitors": 207.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 12.0, "Total Spend": 908.0, "Total Transactions": 85.0, "Total Customers": 54.0, "Median Spend per Transaction": 7.8, "Median Spend per Customer": 9.76 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-wtv", "Name": "Captain's Choice", "Category": "Restaurants and Other Eating Places", "Address": "6900 Frankford Ave", "LATITUDE": 40.033393, "LONGITUDE": -75.048839, "DATE_RANGE_START": 2023, "Total Visits": 309.0, "Total Visitors": 162.0, "POI_CBG": 421010315013.0, "Median Dwell Time": 5.0, "Total Spend": 15.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -75.048839, 40.033393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9355 Krewstown Rd", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2023, "Total Visits": 589.0, "Total Visitors": 411.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 13.0, "Total Spend": 512.0, "Total Transactions": 30.0, "Total Customers": 26.0, "Median Spend per Transaction": 8.85, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22d@628-pmf-7yv", "Name": "Lemon Grass Thai", "Category": "Restaurants and Other Eating Places", "Address": "3131 Walnut St", "LATITUDE": 39.952768, "LONGITUDE": -75.186879, "DATE_RANGE_START": 2023, "Total Visits": 41.0, "Total Visitors": 21.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 182.0, "Total Spend": 2176.0, "Total Transactions": 88.0, "Total Customers": 70.0, "Median Spend per Transaction": 18.49, "Median Spend per Customer": 23.85 }, "geometry": { "type": "Point", "coordinates": [ -75.186879, 39.952768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "Name": "Penrose Diner", "Category": "Restaurants and Other Eating Places", "Address": "2016 Penrose Ave", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2023, "Total Visits": 380.0, "Total Visitors": 324.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 38.0, "Total Spend": 1101.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 41.78, "Median Spend per Customer": 72.27 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "Name": "El Taco", "Category": "Restaurants and Other Eating Places", "Address": "3233 Powelton Ave", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 109.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 41.0, "Total Spend": 306.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 15.32, "Median Spend per Customer": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmd-tvz", "Name": "GIANT Heirloom Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "2303 Bainbridge St", "LATITUDE": 39.944771, "LONGITUDE": -75.180795, "DATE_RANGE_START": 2023, "Total Visits": 889.0, "Total Visitors": 376.0, "POI_CBG": 421010013005.0, "Median Dwell Time": 6.0, "Total Spend": 15725.0, "Total Transactions": 701.0, "Total Customers": 415.0, "Median Spend per Transaction": 16.65, "Median Spend per Customer": 26.82 }, "geometry": { "type": "Point", "coordinates": [ -75.180795, 39.944771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj3-tqf", "Name": "Lucky Garden", "Category": "Restaurants and Other Eating Places", "Address": "4901 N Broad St", "LATITUDE": 40.027775, "LONGITUDE": -75.14691, "DATE_RANGE_START": 2023, "Total Visits": 91.0, "Total Visitors": 91.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 8.0, "Total Spend": 58.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 23.22, "Median Spend per Customer": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.14691, 40.027775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "Name": "Boostin' Bowls", "Category": "Restaurants and Other Eating Places", "Address": "100 Levering St", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2023, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 11.0, "Total Spend": 4953.0, "Total Transactions": 277.0, "Total Customers": 194.0, "Median Spend per Transaction": 14.36, "Median Spend per Customer": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-47q", "Name": "Beauty Time", "Category": "Health and Personal Care Stores", "Address": "5694 Rising Sun Ave Ste 9", "LATITUDE": 40.040657, "LONGITUDE": -75.109627, "DATE_RANGE_START": 2023, "Total Visits": 353.0, "Total Visitors": 282.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 17.0, "Total Spend": 3776.0, "Total Transactions": 133.0, "Total Customers": 103.0, "Median Spend per Transaction": 21.07, "Median Spend per Customer": 22.48 }, "geometry": { "type": "Point", "coordinates": [ -75.109627, 40.040657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1707 Arch St", "LATITUDE": 39.955163, "LONGITUDE": -75.168339, "DATE_RANGE_START": 2023, "Total Visits": 934.0, "Total Visitors": 552.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 4.0, "Total Spend": 33525.0, "Total Transactions": 3720.0, "Total Customers": 1437.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.168339, 39.955163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3401 Walnut St", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2023, "Total Visits": 4088.0, "Total Visitors": 2498.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 12.0, "Total Spend": 28415.0, "Total Transactions": 1705.0, "Total Customers": 982.0, "Median Spend per Transaction": 10.48, "Median Spend per Customer": 18.84 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2133 Cottman Ave", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2023, "Total Visits": 867.0, "Total Visitors": 730.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 13.0, "Total Spend": 8830.0, "Total Transactions": 524.0, "Total Customers": 412.0, "Median Spend per Transaction": 11.83, "Median Spend per Customer": 15.22 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-5xq", "Name": "Liberty Choice", "Category": "Restaurants and Other Eating Places", "Address": "1939 N Front St", "LATITUDE": 39.979685, "LONGITUDE": -75.132953, "DATE_RANGE_START": 2023, "Total Visits": 333.0, "Total Visitors": 264.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 3.0, "Total Spend": 5748.0, "Total Transactions": 402.0, "Total Customers": 222.0, "Median Spend per Transaction": 10.97, "Median Spend per Customer": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.132953, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj4-vj9", "Name": "Freddy & Tony's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "201 W Allegheny Ave", "LATITUDE": 39.999255, "LONGITUDE": -75.133375, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 155.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 2.0, "Total Spend": 57.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.69, "Median Spend per Customer": 22.69 }, "geometry": { "type": "Point", "coordinates": [ -75.133375, 39.999255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "Name": "Dancewear On Broad LLC", "Category": "Clothing Stores", "Address": "1129 S Broad St", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010024005.0, "Median Dwell Time": null, "Total Spend": 714.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 95.04, "Median Spend per Customer": 95.04 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5fz", "Name": "Shake Shack", "Category": "Restaurants and Other Eating Places", "Address": "105 S 12th St", "LATITUDE": 39.950262, "LONGITUDE": -75.160108, "DATE_RANGE_START": 2023, "Total Visits": 654.0, "Total Visitors": 635.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 60.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 23.91, "Median Spend per Customer": 23.91 }, "geometry": { "type": "Point", "coordinates": [ -75.160108, 39.950262 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "Name": "Burlington", "Category": "Clothing Stores", "Address": "9940 Roosevelt Blvd", "LATITUDE": 40.094952, "LONGITUDE": -75.017962, "DATE_RANGE_START": 2023, "Total Visits": 1334.0, "Total Visitors": 1187.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 21.0, "Total Spend": 3653.0, "Total Transactions": 64.0, "Total Customers": 59.0, "Median Spend per Transaction": 40.01, "Median Spend per Customer": 44.01 }, "geometry": { "type": "Point", "coordinates": [ -75.017962, 40.094952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7162 Ridge Ave", "LATITUDE": 40.044147, "LONGITUDE": -75.233047, "DATE_RANGE_START": 2023, "Total Visits": 2385.0, "Total Visitors": 1164.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 17.0, "Total Spend": 117034.0, "Total Transactions": 3080.0, "Total Customers": 1643.0, "Median Spend per Transaction": 24.75, "Median Spend per Customer": 43.8 }, "geometry": { "type": "Point", "coordinates": [ -75.233047, 40.044147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1500 E Erie Ave", "LATITUDE": 40.005445, "LONGITUDE": -75.098152, "DATE_RANGE_START": 2023, "Total Visits": 366.0, "Total Visitors": 334.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 67.0, "Total Spend": 392.0, "Total Transactions": 44.0, "Total Customers": 34.0, "Median Spend per Transaction": 7.84, "Median Spend per Customer": 9.61 }, "geometry": { "type": "Point", "coordinates": [ -75.098152, 40.005445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgk-28v", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1300 W Lehigh Ave", "LATITUDE": 39.993135, "LONGITUDE": -75.152859, "DATE_RANGE_START": 2023, "Total Visits": 336.0, "Total Visitors": 197.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 13.0, "Total Spend": 226.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 11.08, "Median Spend per Customer": 11.63 }, "geometry": { "type": "Point", "coordinates": [ -75.152859, 39.993135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3000 Island Ave Ste M-P", "LATITUDE": 39.898772, "LONGITUDE": -75.240567, "DATE_RANGE_START": 2023, "Total Visits": 54.0, "Total Visitors": 28.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 18.0, "Total Spend": 358.0, "Total Transactions": 23.0, "Total Customers": 19.0, "Median Spend per Transaction": 15.13, "Median Spend per Customer": 16.89 }, "geometry": { "type": "Point", "coordinates": [ -75.240567, 39.898772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-dqf", "Name": "Pulaski Hall", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1653 W Hunting Park Ave", "LATITUDE": 40.015833, "LONGITUDE": -75.154849, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 116.0, "Total Spend": 371.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154849, 40.015833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-789", "Name": "Bayou", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5025 Baltimore Ave", "LATITUDE": 39.948002, "LONGITUDE": -75.22436, "DATE_RANGE_START": 2023, "Total Visits": 89.0, "Total Visitors": 89.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 77.0, "Total Spend": 830.0, "Total Transactions": 16.0, "Total Customers": 11.0, "Median Spend per Transaction": 53.76, "Median Spend per Customer": 58.88 }, "geometry": { "type": "Point", "coordinates": [ -75.22436, 39.948002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmf-rx5", "Name": "Miles Table", "Category": "Restaurants and Other Eating Places", "Address": "1620 South St", "LATITUDE": 39.943903, "LONGITUDE": -75.169551, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 504.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 8.0, "Total Spend": 2549.0, "Total Transactions": 118.0, "Total Customers": 96.0, "Median Spend per Transaction": 17.18, "Median Spend per Customer": 19.76 }, "geometry": { "type": "Point", "coordinates": [ -75.169551, 39.943903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "Name": "Four Seasons Diner", "Category": "Restaurants and Other Eating Places", "Address": "2811 Cottman Ave", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2023, "Total Visits": 412.0, "Total Visitors": 361.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 51.0, "Total Spend": 10389.0, "Total Transactions": 225.0, "Total Customers": 179.0, "Median Spend per Transaction": 40.4, "Median Spend per Customer": 45.33 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "Name": "El Coqui Panaderia", "Category": "Restaurants and Other Eating Places", "Address": "3528 I St", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 122.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 8.0, "Total Spend": 4045.0, "Total Transactions": 222.0, "Total Customers": 134.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3100 W Allegheny Ave", "LATITUDE": 40.004813, "LONGITUDE": -75.179813, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 10.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 258.0, "Total Spend": 8738.0, "Total Transactions": 658.0, "Total Customers": 440.0, "Median Spend per Transaction": 10.64, "Median Spend per Customer": 13.65 }, "geometry": { "type": "Point", "coordinates": [ -75.179813, 40.004813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4501 Castor Ave", "LATITUDE": 40.01658, "LONGITUDE": -75.096378, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 7.0, "Total Spend": 3410.0, "Total Transactions": 147.0, "Total Customers": 122.0, "Median Spend per Transaction": 23.09, "Median Spend per Customer": 25.44 }, "geometry": { "type": "Point", "coordinates": [ -75.096378, 40.01658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-skf", "Name": "Elixr Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "207 S Sydenham St", "LATITUDE": 39.949308, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2023, "Total Visits": 2172.0, "Total Visitors": 1549.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 3.0, "Total Spend": 20.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 5.86, "Median Spend per Customer": 5.86 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm9-y9z", "Name": "Lil' Pop Shop", "Category": "Restaurants and Other Eating Places", "Address": "534 S 4th St", "LATITUDE": 39.94178, "LONGITUDE": -75.149245, "DATE_RANGE_START": 2023, "Total Visits": 468.0, "Total Visitors": 421.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 22.0, "Total Spend": 976.0, "Total Transactions": 90.0, "Total Customers": 81.0, "Median Spend per Transaction": 7.74, "Median Spend per Customer": 7.73 }, "geometry": { "type": "Point", "coordinates": [ -75.149245, 39.94178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3705 Germantown Ave", "LATITUDE": 40.009461, "LONGITUDE": -75.150664, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 4.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 1.0, "Total Spend": 2440.0, "Total Transactions": 318.0, "Total Customers": 118.0, "Median Spend per Transaction": 6.61, "Median Spend per Customer": 7.92 }, "geometry": { "type": "Point", "coordinates": [ -75.150664, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "Name": "Villavillekula", "Category": "Clothing Stores", "Address": "8419 Germantown Ave", "LATITUDE": 40.075643, "LONGITUDE": -75.205445, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 195.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 166.0, "Total Spend": 341.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 77.94, "Median Spend per Customer": 77.94 }, "geometry": { "type": "Point", "coordinates": [ -75.205445, 40.075643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "9001 Frankford Ave", "LATITUDE": 40.051616, "LONGITUDE": -75.008393, "DATE_RANGE_START": 2023, "Total Visits": 623.0, "Total Visitors": 507.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 8.0, "Total Spend": 260.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.008393, 40.051616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p89-nt9", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "5597 Tulip St # 99", "LATITUDE": 40.012441, "LONGITUDE": -75.065497, "DATE_RANGE_START": 2023, "Total Visits": 1710.0, "Total Visitors": 1156.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 6.0, "Total Spend": 759.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 201.99, "Median Spend per Customer": 302.99 }, "geometry": { "type": "Point", "coordinates": [ -75.065497, 40.012441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "Name": "Prince Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 E Wyoming Ave", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 160.0, "POI_CBG": 421010288002.0, "Median Dwell Time": 8.0, "Total Spend": 2368.0, "Total Transactions": 99.0, "Total Customers": 64.0, "Median Spend per Transaction": 21.54, "Median Spend per Customer": 25.8 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm9-y5f", "Name": "Sushi Planet", "Category": "Restaurants and Other Eating Places", "Address": "624 S 3rd St", "LATITUDE": 39.940725, "LONGITUDE": -75.14792, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 162.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 1.0, "Total Spend": 496.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 39.36, "Median Spend per Customer": 39.36 }, "geometry": { "type": "Point", "coordinates": [ -75.14792, 39.940725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5700 Baltimore Ave", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 51.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 236.0, "Total Spend": 3143.0, "Total Transactions": 207.0, "Total Customers": 168.0, "Median Spend per Transaction": 11.66, "Median Spend per Customer": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-rkz", "Name": "Hunting Park Tire Shop", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "440 E Hunting Park Ave", "LATITUDE": 40.012562, "LONGITUDE": -75.118169, "DATE_RANGE_START": 2023, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 15.0, "Total Spend": 729.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 61.79, "Median Spend per Customer": 61.79 }, "geometry": { "type": "Point", "coordinates": [ -75.118169, 40.012562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2100 Market St", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2023, "Total Visits": 382.0, "Total Visitors": 262.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 3.0, "Total Spend": 4904.0, "Total Transactions": 760.0, "Total Customers": 339.0, "Median Spend per Transaction": 5.07, "Median Spend per Customer": 9.69 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-5vf", "Name": "Kung Fu Tea", "Category": "Restaurants and Other Eating Places", "Address": "2222 Cottman Ave", "LATITUDE": 40.048498, "LONGITUDE": -75.061863, "DATE_RANGE_START": 2023, "Total Visits": 219.0, "Total Visitors": 203.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 4.0, "Total Spend": 506.0, "Total Transactions": 35.0, "Total Customers": 29.0, "Median Spend per Transaction": 13.57, "Median Spend per Customer": 13.57 }, "geometry": { "type": "Point", "coordinates": [ -75.061863, 40.048498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-yvz", "Name": "Girard Beer Distributors", "Category": "Beer, Wine, and Liquor Stores", "Address": "820 W Girard Ave", "LATITUDE": 39.970277, "LONGITUDE": -75.150793, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 154.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 7.0, "Total Spend": 6896.0, "Total Transactions": 308.0, "Total Customers": 158.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 30.25 }, "geometry": { "type": "Point", "coordinates": [ -75.150793, 39.970277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-227@628-phd-btv", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "5110 City Ave", "LATITUDE": 39.998022, "LONGITUDE": -75.232795, "DATE_RANGE_START": 2023, "Total Visits": 586.0, "Total Visitors": 526.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 5.0, "Total Spend": 235.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 38.28, "Median Spend per Customer": 38.28 }, "geometry": { "type": "Point", "coordinates": [ -75.232795, 39.998022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "Name": "Smiley's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4251 Main St", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2023, "Total Visits": 184.0, "Total Visitors": 164.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 11.0, "Total Spend": 258.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 16.32, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg9-x5z", "Name": "Vineyards Cafe", "Category": "Restaurants and Other Eating Places", "Address": "847 N 16th St", "LATITUDE": 39.96989, "LONGITUDE": -75.162961, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 94.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 117.0, "Total Spend": 3732.0, "Total Transactions": 362.0, "Total Customers": 150.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.162961, 39.96989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg9-ty9", "Name": "Brandywine Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1501 Spring Garden St", "LATITUDE": 39.962927, "LONGITUDE": -75.163263, "DATE_RANGE_START": 2023, "Total Visits": 243.0, "Total Visitors": 155.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 72.0, "Total Spend": 93.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.962927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg2-hdv", "Name": "Mi Puebla Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7157 Germantown Ave", "LATITUDE": 40.059999, "LONGITUDE": -75.19073, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 8.0, "Total Spend": 1905.0, "Total Transactions": 56.0, "Total Customers": 41.0, "Median Spend per Transaction": 30.08, "Median Spend per Customer": 31.58 }, "geometry": { "type": "Point", "coordinates": [ -75.19073, 40.059999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-f2k", "Name": "New Eli", "Category": "Restaurants and Other Eating Places", "Address": "2956 Kensington Ave Ste 2", "LATITUDE": 39.993812, "LONGITUDE": -75.118652, "DATE_RANGE_START": 2023, "Total Visits": 410.0, "Total Visitors": 299.0, "POI_CBG": 421010177011.0, "Median Dwell Time": 15.0, "Total Spend": 104.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 21.98, "Median Spend per Customer": 41.64 }, "geometry": { "type": "Point", "coordinates": [ -75.118652, 39.993812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2400 W Oregon Ave", "LATITUDE": 39.919408, "LONGITUDE": -75.187278, "DATE_RANGE_START": 2023, "Total Visits": 323.0, "Total Visitors": 219.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 19.0, "Total Spend": 33699.0, "Total Transactions": 2066.0, "Total Customers": 1432.0, "Median Spend per Transaction": 14.76, "Median Spend per Customer": 18.1 }, "geometry": { "type": "Point", "coordinates": [ -75.187278, 39.919408 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-vxq", "Name": "Jersey Mike's", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.955112, "LONGITUDE": -75.18233, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 219.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 8.0, "Total Spend": 6436.0, "Total Transactions": 432.0, "Total Customers": 386.0, "Median Spend per Transaction": 13.45, "Median Spend per Customer": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.18233, 39.955112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "809 S Broad St", "LATITUDE": 39.940155, "LONGITUDE": -75.165823, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 5.0, "Total Spend": 4388.0, "Total Transactions": 534.0, "Total Customers": 287.0, "Median Spend per Transaction": 7.64, "Median Spend per Customer": 9.59 }, "geometry": { "type": "Point", "coordinates": [ -75.165823, 39.940155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "3914 Lancaster Ave", "LATITUDE": 39.962159, "LONGITUDE": -75.201119, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 182.0, "POI_CBG": 421010108004.0, "Median Dwell Time": null, "Total Spend": 273.0, "Total Transactions": 28.0, "Total Customers": 28.0, "Median Spend per Transaction": 7.98, "Median Spend per Customer": 7.98 }, "geometry": { "type": "Point", "coordinates": [ -75.201119, 39.962159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6506 Frankford Ave", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2023, "Total Visits": 2260.0, "Total Visitors": 1497.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 6.0, "Total Spend": 23327.0, "Total Transactions": 1978.0, "Total Customers": 733.0, "Median Spend per Transaction": 8.95, "Median Spend per Customer": 13.64 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "10740 Roosevelt Blvd", "LATITUDE": 40.099682, "LONGITUDE": -75.01017, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 100.0, "Total Spend": 4878.0, "Total Transactions": 118.0, "Total Customers": 103.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 38.23 }, "geometry": { "type": "Point", "coordinates": [ -75.01017, 40.099682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "Name": "Pac A Deli", "Category": "Grocery Stores", "Address": "1200 Walnut St", "LATITUDE": 39.948686, "LONGITUDE": -75.160743, "DATE_RANGE_START": 2023, "Total Visits": 61.0, "Total Visitors": 51.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 4.0, "Total Spend": 7941.0, "Total Transactions": 421.0, "Total Customers": 185.0, "Median Spend per Transaction": 16.92, "Median Spend per Customer": 21.87 }, "geometry": { "type": "Point", "coordinates": [ -75.160743, 39.948686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7700 Crittenden St", "LATITUDE": 40.072377, "LONGITUDE": -75.194639, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010257001.0, "Median Dwell Time": 62.0, "Total Spend": 8183.0, "Total Transactions": 367.0, "Total Customers": 220.0, "Median Spend per Transaction": 15.92, "Median Spend per Customer": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.194639, 40.072377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pgb-54v", "Name": "Night Market Callowhill", "Category": "Specialty Food Stores", "Address": "1200 Callowhill St Ste 900", "LATITUDE": 39.959051, "LONGITUDE": -75.158731, "DATE_RANGE_START": 2023, "Total Visits": 921.0, "Total Visitors": 346.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 181.0, "Total Spend": 21.0, "Total Transactions": 18.0, "Total Customers": 8.0, "Median Spend per Transaction": 1.0, "Median Spend per Customer": 2.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158731, 39.959051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-v4v", "Name": "Easy Pickins", "Category": "Clothing Stores", "Address": "2311 Cottman Ave", "LATITUDE": 40.048272, "LONGITUDE": -75.05631, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 184.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 19.0, "Total Spend": 5440.0, "Total Transactions": 157.0, "Total Customers": 148.0, "Median Spend per Transaction": 27.45, "Median Spend per Customer": 28.24 }, "geometry": { "type": "Point", "coordinates": [ -75.05631, 40.048272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-249", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3401 Aramingo Ave", "LATITUDE": 39.991221, "LONGITUDE": -75.100297, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 186.0, "Total Spend": 193.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 11.29, "Median Spend per Customer": 14.89 }, "geometry": { "type": "Point", "coordinates": [ -75.100297, 39.991221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6919 Torresdale Ave # 27", "LATITUDE": 40.02615, "LONGITUDE": -75.04234, "DATE_RANGE_START": 2023, "Total Visits": 587.0, "Total Visitors": 385.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 7.0, "Total Spend": 75.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 6.63, "Median Spend per Customer": 6.63 }, "geometry": { "type": "Point", "coordinates": [ -75.04234, 40.02615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "Name": "Moore Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "601 Moore St", "LATITUDE": 39.926601, "LONGITUDE": -75.156133, "DATE_RANGE_START": 2023, "Total Visits": 348.0, "Total Visitors": 246.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 5.0, "Total Spend": 7879.0, "Total Transactions": 297.0, "Total Customers": 143.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.156133, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "Delaware Ave @ Spring Garden St", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2023, "Total Visits": 1404.0, "Total Visitors": 1065.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 6.0, "Total Spend": 61323.0, "Total Transactions": 2722.0, "Total Customers": 1538.0, "Median Spend per Transaction": 18.15, "Median Spend per Customer": 25.4 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-w6k", "Name": "Pizza Roma", "Category": "Restaurants and Other Eating Places", "Address": "7300 Bustleton Ave", "LATITUDE": 40.049594, "LONGITUDE": -75.059819, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 125.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 32.0, "Total Spend": 3485.0, "Total Transactions": 225.0, "Total Customers": 134.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.059819, 40.049594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pp5-nqz", "Name": "Edgar Mini Market", "Category": "Grocery Stores", "Address": "2970 Rosehill St", "LATITUDE": 39.994664, "LONGITUDE": -75.124771, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 48.0, "POI_CBG": 421010177024.0, "Median Dwell Time": 126.0, "Total Spend": 166.0, "Total Transactions": 15.0, "Total Customers": 11.0, "Median Spend per Transaction": 6.37, "Median Spend per Customer": 10.39 }, "geometry": { "type": "Point", "coordinates": [ -75.124771, 39.994664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "3000 B St", "LATITUDE": 39.995106, "LONGITUDE": -75.126203, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 54.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 239.0, "Total Spend": 643.0, "Total Transactions": 69.0, "Total Customers": 38.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 10.63 }, "geometry": { "type": "Point", "coordinates": [ -75.126203, 39.995106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "634 Market St", "LATITUDE": 39.950694, "LONGITUDE": -75.151921, "DATE_RANGE_START": 2023, "Total Visits": 833.0, "Total Visitors": 694.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 2.0, "Total Spend": 4178.0, "Total Transactions": 629.0, "Total Customers": 411.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 6.77 }, "geometry": { "type": "Point", "coordinates": [ -75.151921, 39.950694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj4-v4v", "Name": "Taqueria La Raza", "Category": "Restaurants and Other Eating Places", "Address": "227 W Allegheny Ave", "LATITUDE": 39.999423, "LONGITUDE": -75.134255, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 155.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 4.0, "Total Spend": 272.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 13.31, "Median Spend per Customer": 17.1 }, "geometry": { "type": "Point", "coordinates": [ -75.134255, 39.999423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-jjv", "Name": "Blue Sole Shoes", "Category": "Shoe Stores", "Address": "1805 Chestnut St", "LATITUDE": 39.951895, "LONGITUDE": -75.17055, "DATE_RANGE_START": 2023, "Total Visits": 1427.0, "Total Visitors": 1094.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 15.0, "Total Spend": 1438.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 574.0, "Median Spend per Customer": 574.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17055, 39.951895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-235@628-pmf-jd9", "Name": "The Men's Wearhouse", "Category": "Clothing Stores", "Address": "1624 Chestnut St # 1626", "LATITUDE": 39.951245, "LONGITUDE": -75.168347, "DATE_RANGE_START": 2023, "Total Visits": 696.0, "Total Visitors": 485.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 14.0, "Total Spend": 2941.0, "Total Transactions": 29.0, "Total Customers": 28.0, "Median Spend per Transaction": 87.49, "Median Spend per Customer": 87.49 }, "geometry": { "type": "Point", "coordinates": [ -75.168347, 39.951245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-94v", "Name": "Torrid", "Category": "Clothing Stores", "Address": "1001 Market St", "LATITUDE": 39.952294, "LONGITUDE": -75.15687, "DATE_RANGE_START": 2023, "Total Visits": 14076.0, "Total Visitors": 8436.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 22.0, "Total Spend": 2199.0, "Total Transactions": 29.0, "Total Customers": 29.0, "Median Spend per Transaction": 59.5, "Median Spend per Customer": 59.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15687, 39.952294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8m-b8v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5807 Torresdale Ave", "LATITUDE": 40.016197, "LONGITUDE": -75.061352, "DATE_RANGE_START": 2023, "Total Visits": 223.0, "Total Visitors": 184.0, "POI_CBG": 421010321001.0, "Median Dwell Time": 9.0, "Total Spend": 731.0, "Total Transactions": 103.0, "Total Customers": 49.0, "Median Spend per Transaction": 6.36, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.061352, 40.016197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-ks5", "Name": "Born Yesterday", "Category": "Clothing Stores", "Address": "1901 Walnut St", "LATITUDE": 39.950495, "LONGITUDE": -75.17265, "DATE_RANGE_START": 2023, "Total Visits": 408.0, "Total Visitors": 332.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 4.0, "Total Spend": 121.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 48.33, "Median Spend per Customer": 48.33 }, "geometry": { "type": "Point", "coordinates": [ -75.17265, 39.950495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7065 Lincoln Dr", "LATITUDE": 40.054056, "LONGITUDE": -75.193224, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 11.0, "Total Spend": 5511.0, "Total Transactions": 284.0, "Total Customers": 207.0, "Median Spend per Transaction": 10.93, "Median Spend per Customer": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.193224, 40.054056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5711 Ridge Ave", "LATITUDE": 40.027513, "LONGITUDE": -75.209445, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 285.0, "Total Spend": 8510.0, "Total Transactions": 289.0, "Total Customers": 220.0, "Median Spend per Transaction": 27.33, "Median Spend per Customer": 30.22 }, "geometry": { "type": "Point", "coordinates": [ -75.209445, 40.027513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "1708 N Broad St", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2023, "Total Visits": 1042.0, "Total Visitors": 914.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 14.0, "Total Spend": 171.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 14.97, "Median Spend per Customer": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "322 N Broad St", "LATITUDE": 39.959117, "LONGITUDE": -75.162552, "DATE_RANGE_START": 2023, "Total Visits": 737.0, "Total Visitors": 425.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 61.0, "Total Spend": 10317.0, "Total Transactions": 769.0, "Total Customers": 417.0, "Median Spend per Transaction": 11.49, "Median Spend per Customer": 16.87 }, "geometry": { "type": "Point", "coordinates": [ -75.162552, 39.959117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "Name": "Chillin Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6545 Elmwood Ave", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2023, "Total Visits": 235.0, "Total Visitors": 149.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 129.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 26.86, "Median Spend per Customer": 26.86 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave Ste 104", "LATITUDE": 40.032146, "LONGITUDE": -75.21395, "DATE_RANGE_START": 2023, "Total Visits": 903.0, "Total Visitors": 499.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 5.0, "Total Spend": 1862.0, "Total Transactions": 106.0, "Total Customers": 80.0, "Median Spend per Transaction": 14.28, "Median Spend per Customer": 18.66 }, "geometry": { "type": "Point", "coordinates": [ -75.21395, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-sqz", "Name": "Ashton Cigar Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1522 Walnut St Fl 2", "LATITUDE": 39.949464, "LONGITUDE": -75.167106, "DATE_RANGE_START": 2023, "Total Visits": 249.0, "Total Visitors": 229.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 1.0, "Total Spend": 1473.0, "Total Transactions": 28.0, "Total Customers": 19.0, "Median Spend per Transaction": 48.45, "Median Spend per Customer": 64.86 }, "geometry": { "type": "Point", "coordinates": [ -75.167106, 39.949464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "Name": "Independence Prime", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 162.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 33.33, "Median Spend per Customer": 40.22 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-ty9", "Name": "La Fontana Della Citta", "Category": "Restaurants and Other Eating Places", "Address": "1701 Spruce St", "LATITUDE": 39.947768, "LONGITUDE": -75.169697, "DATE_RANGE_START": 2023, "Total Visits": 292.0, "Total Visitors": 204.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 30.0, "Total Spend": 259.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 103.51, "Median Spend per Customer": 103.51 }, "geometry": { "type": "Point", "coordinates": [ -75.169697, 39.947768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm4-hnq", "Name": "Los Cuatro Soles", "Category": "Restaurants and Other Eating Places", "Address": "1801 S Chadwick St", "LATITUDE": 39.928485, "LONGITUDE": -75.173061, "DATE_RANGE_START": 2023, "Total Visits": 132.0, "Total Visitors": 113.0, "POI_CBG": 421010030013.0, "Median Dwell Time": 3.0, "Total Spend": 1198.0, "Total Transactions": 41.0, "Total Customers": 25.0, "Median Spend per Transaction": 29.84, "Median Spend per Customer": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.173061, 39.928485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm4-h5z", "Name": "Pistola's Del Sur", "Category": "Restaurants and Other Eating Places", "Address": "1934 E Passyunk Ave", "LATITUDE": 39.925885, "LONGITUDE": -75.168342, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 230.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 43.0, "Total Spend": 10465.0, "Total Transactions": 199.0, "Total Customers": 147.0, "Median Spend per Transaction": 42.52, "Median Spend per Customer": 55.79 }, "geometry": { "type": "Point", "coordinates": [ -75.168342, 39.925885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-s89", "Name": "Best Buy Furniture", "Category": "Furniture Stores", "Address": "2558 Grant Ave", "LATITUDE": 40.077822, "LONGITUDE": -75.024585, "DATE_RANGE_START": 2023, "Total Visits": 774.0, "Total Visitors": 487.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 57.0, "Total Spend": 3056.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 1155.0, "Median Spend per Customer": 1155.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024585, 40.077822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "Name": "Hoagie Factory", "Category": "Restaurants and Other Eating Places", "Address": "2121 72nd Ave", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2023, "Total Visits": 193.0, "Total Visitors": 180.0, "POI_CBG": 421010266007.0, "Median Dwell Time": 5.0, "Total Spend": 3053.0, "Total Transactions": 168.0, "Total Customers": 104.0, "Median Spend per Transaction": 14.91, "Median Spend per Customer": 26.66 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "Name": "Platinum", "Category": "Clothing Stores", "Address": "526 South St", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 224.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 22.0, "Total Spend": 2187.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-qpv", "Name": "Sherwin-Williams", "Category": "Building Material and Supplies Dealers", "Address": "700 S Broad St", "LATITUDE": 39.942648, "LONGITUDE": -75.166062, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 5.0, "Total Spend": 404.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 36.87, "Median Spend per Customer": 161.11 }, "geometry": { "type": "Point", "coordinates": [ -75.166062, 39.942648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "200 W Washington Sq", "LATITUDE": 39.9479, "LONGITUDE": -75.154009, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 8.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 27.0, "Total Spend": 4108.0, "Total Transactions": 468.0, "Total Customers": 294.0, "Median Spend per Transaction": 7.89, "Median Spend per Customer": 9.18 }, "geometry": { "type": "Point", "coordinates": [ -75.154009, 39.9479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "Name": "Liberty Time", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2023, "Total Visits": 1440.0, "Total Visitors": 1101.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 827.0, "Total Transactions": 20.0, "Total Customers": 19.0, "Median Spend per Transaction": 29.7, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1334 Bainbridge St", "LATITUDE": 39.942537, "LONGITUDE": -75.164845, "DATE_RANGE_START": 2023, "Total Visits": 888.0, "Total Visitors": 792.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 22.0, "Total Spend": 479.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 25.16 }, "geometry": { "type": "Point", "coordinates": [ -75.164845, 39.942537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "Name": "Sang Kee Noodle House", "Category": "Restaurants and Other Eating Places", "Address": "3549 Chestnut St", "LATITUDE": 39.955027, "LONGITUDE": -75.194015, "DATE_RANGE_START": 2023, "Total Visits": 49.0, "Total Visitors": 33.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 176.0, "Total Spend": 10189.0, "Total Transactions": 407.0, "Total Customers": 359.0, "Median Spend per Transaction": 22.99, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194015, 39.955027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "Name": "El Rey", "Category": "Restaurants and Other Eating Places", "Address": "2013 Chestnut St", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2023, "Total Visits": 235.0, "Total Visitors": 219.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 5.0, "Total Spend": 15858.0, "Total Transactions": 246.0, "Total Customers": 233.0, "Median Spend per Transaction": 55.5, "Median Spend per Customer": 55.68 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@63s-dwg-f9f", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7229 Passyunk Ave", "LATITUDE": 39.913707, "LONGITUDE": -75.240275, "DATE_RANGE_START": 2023, "Total Visits": 74.0, "Total Visitors": 74.0, "POI_CBG": 421010060004.0, "Median Dwell Time": 6.0, "Total Spend": 104.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 16.71, "Median Spend per Customer": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.240275, 39.913707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "Name": "Mr Wings", "Category": "Restaurants and Other Eating Places", "Address": "500 W Oregon Ave", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2023, "Total Visits": 93.0, "Total Visitors": 76.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 13.0, "Total Spend": 1903.0, "Total Transactions": 69.0, "Total Customers": 43.0, "Median Spend per Transaction": 19.91, "Median Spend per Customer": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "Name": "Oregon Express", "Category": "Restaurants and Other Eating Places", "Address": "2700 S Marvine St", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2023, "Total Visits": 94.0, "Total Visitors": 94.0, "POI_CBG": 421010372001.0, "Median Dwell Time": 9.0, "Total Spend": 139.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.17, "Median Spend per Customer": 14.17 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "Name": "New Pizza Villa", "Category": "Restaurants and Other Eating Places", "Address": "7159 Torresdale Ave", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2023, "Total Visits": 81.0, "Total Visitors": 81.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 5.0, "Total Spend": 320.0, "Total Transactions": 15.0, "Total Customers": 13.0, "Median Spend per Transaction": 16.51, "Median Spend per Customer": 17.41 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "Name": "No 1 Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2731 E Allegheny Ave", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 130.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 73.0, "Total Spend": 416.0, "Total Transactions": 16.0, "Total Customers": 13.0, "Median Spend per Transaction": 22.55, "Median Spend per Customer": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-hdv", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "2800 Fox St", "LATITUDE": 40.008701, "LONGITUDE": -75.176514, "DATE_RANGE_START": 2023, "Total Visits": 1569.0, "Total Visitors": 823.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 33.0, "Total Spend": 227.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 11.98, "Median Spend per Customer": 20.31 }, "geometry": { "type": "Point", "coordinates": [ -75.176514, 40.008701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-p35", "Name": "Jhoandra Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3661 N 6th St", "LATITUDE": 40.007461, "LONGITUDE": -75.138722, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 65.0, "POI_CBG": 421010199001.0, "Median Dwell Time": 503.0, "Total Spend": 265.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.138722, 40.007461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-8y9", "Name": "The Pharmacy", "Category": "Restaurants and Other Eating Places", "Address": "1300 S 18th St", "LATITUDE": 39.934901, "LONGITUDE": -75.174223, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 93.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 163.0, "Total Spend": 2995.0, "Total Transactions": 75.0, "Total Customers": 49.0, "Median Spend per Transaction": 18.66, "Median Spend per Customer": 20.27 }, "geometry": { "type": "Point", "coordinates": [ -75.174223, 39.934901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p83-zcq", "Name": "Dim Sum Factory Krewstown", "Category": "Restaurants and Other Eating Places", "Address": "8925 Krewstown Rd", "LATITUDE": 40.083328, "LONGITUDE": -75.048212, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 34.0, "Total Spend": 1097.0, "Total Transactions": 24.0, "Total Customers": 13.0, "Median Spend per Transaction": 39.98, "Median Spend per Customer": 57.08 }, "geometry": { "type": "Point", "coordinates": [ -75.048212, 40.083328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "Name": "Ryan's Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4301 Main St", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2023, "Total Visits": 274.0, "Total Visitors": 240.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 20.0, "Total Spend": 15724.0, "Total Transactions": 597.0, "Total Customers": 421.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 25.56 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "6842 Bustleton Ave", "LATITUDE": 40.04161, "LONGITUDE": -75.06478, "DATE_RANGE_START": 2023, "Total Visits": 163.0, "Total Visitors": 147.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 4.0, "Total Spend": 2043.0, "Total Transactions": 58.0, "Total Customers": 53.0, "Median Spend per Transaction": 34.11, "Median Spend per Customer": 35.86 }, "geometry": { "type": "Point", "coordinates": [ -75.06478, 40.04161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "Name": "Garden's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1902 W Girard Ave", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2023, "Total Visits": 162.0, "Total Visitors": 155.0, "POI_CBG": 421010139003.0, "Median Dwell Time": 3.0, "Total Spend": 804.0, "Total Transactions": 51.0, "Total Customers": 35.0, "Median Spend per Transaction": 11.66, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "1556 E Wadsworth Ave", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2023, "Total Visits": 124.0, "Total Visitors": 124.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 1.0, "Total Spend": 619.0, "Total Transactions": 18.0, "Total Customers": 15.0, "Median Spend per Transaction": 27.02, "Median Spend per Customer": 32.77 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5200 Woodland Ave", "LATITUDE": 39.938273, "LONGITUDE": -75.215585, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 8.0, "POI_CBG": 421010074005.0, "Median Dwell Time": 9.0, "Total Spend": 5598.0, "Total Transactions": 293.0, "Total Customers": 229.0, "Median Spend per Transaction": 14.94, "Median Spend per Customer": 19.61 }, "geometry": { "type": "Point", "coordinates": [ -75.215585, 39.938273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5fz", "Name": "Van Leeuwen Artisan Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "119 S 13th St", "LATITUDE": 39.950007, "LONGITUDE": -75.161725, "DATE_RANGE_START": 2023, "Total Visits": 683.0, "Total Visitors": 426.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 73.0, "Total Spend": 4421.0, "Total Transactions": 306.0, "Total Customers": 267.0, "Median Spend per Transaction": 12.16, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161725, 39.950007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "Name": "Georgian Bread Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "10865 Bustleton Ave", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2023, "Total Visits": 284.0, "Total Visitors": 228.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 4.0, "Total Spend": 1641.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 37.13, "Median Spend per Customer": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "Name": "Yummy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1807 John F Kennedy Blvd", "LATITUDE": 39.954445, "LONGITUDE": -75.170031, "DATE_RANGE_START": 2023, "Total Visits": 2466.0, "Total Visitors": 1347.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 34.0, "Total Spend": 1408.0, "Total Transactions": 58.0, "Total Customers": 49.0, "Median Spend per Transaction": 21.19, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.170031, 39.954445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xkf", "Name": "Lee How Fook", "Category": "Restaurants and Other Eating Places", "Address": "219 N 11th St", "LATITUDE": 39.956243, "LONGITUDE": -75.157042, "DATE_RANGE_START": 2023, "Total Visits": 403.0, "Total Visitors": 361.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 2.0, "Total Spend": 127.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 34.91, "Median Spend per Customer": 34.91 }, "geometry": { "type": "Point", "coordinates": [ -75.157042, 39.956243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "713 W Girard Ave", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 25.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 866.0, "Total Spend": 6799.0, "Total Transactions": 219.0, "Total Customers": 174.0, "Median Spend per Transaction": 28.96, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnt-435", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2401 Aramingo Ave", "LATITUDE": 39.974852, "LONGITUDE": -75.120942, "DATE_RANGE_START": 2023, "Total Visits": 873.0, "Total Visitors": 309.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 177.0, "Total Spend": 9844.0, "Total Transactions": 851.0, "Total Customers": 515.0, "Median Spend per Transaction": 10.37, "Median Spend per Customer": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.120942, 39.974852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "10901C Bustleton Ave", "LATITUDE": 40.112282, "LONGITUDE": -75.022903, "DATE_RANGE_START": 2023, "Total Visits": 768.0, "Total Visitors": 641.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 8.0, "Total Spend": 4458.0, "Total Transactions": 247.0, "Total Customers": 195.0, "Median Spend per Transaction": 9.93, "Median Spend per Customer": 10.04 }, "geometry": { "type": "Point", "coordinates": [ -75.022903, 40.112282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgc-x5z", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "1575 N 52nd St", "LATITUDE": 39.978303, "LONGITUDE": -75.224165, "DATE_RANGE_START": 2023, "Total Visits": 267.0, "Total Visitors": 177.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 53.0, "Total Spend": 6841.0, "Total Transactions": 179.0, "Total Customers": 101.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 32.98 }, "geometry": { "type": "Point", "coordinates": [ -75.224165, 39.978303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Broad St", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2023, "Total Visits": 1061.0, "Total Visitors": 757.0, "POI_CBG": 421010200001.0, "Median Dwell Time": 13.0, "Total Spend": 5786.0, "Total Transactions": 515.0, "Total Customers": 383.0, "Median Spend per Transaction": 9.36, "Median Spend per Customer": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6000 N Broad St Ste", "LATITUDE": 40.044989, "LONGITUDE": -75.144293, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 15.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 9.0, "Total Spend": 973.0, "Total Transactions": 54.0, "Total Customers": 38.0, "Median Spend per Transaction": 15.24, "Median Spend per Customer": 16.69 }, "geometry": { "type": "Point", "coordinates": [ -75.144293, 40.044989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p83-y5f", "Name": "Pennypack Flowers", "Category": "Florists", "Address": "9315 Krewstown Rd", "LATITUDE": 40.08536, "LONGITUDE": -75.045648, "DATE_RANGE_START": 2023, "Total Visits": 690.0, "Total Visitors": 576.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 20.0, "Total Spend": 190.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.045648, 40.08536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1324 Walnut St", "LATITUDE": 39.949016, "LONGITUDE": -75.163281, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 5.0, "Total Spend": 1726.0, "Total Transactions": 279.0, "Total Customers": 149.0, "Median Spend per Transaction": 4.94, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163281, 39.949016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "Name": "Trio", "Category": "Restaurants and Other Eating Places", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.968736, "LONGITUDE": -75.180755, "DATE_RANGE_START": 2023, "Total Visits": 293.0, "Total Visitors": 137.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 230.0, "Total Spend": 2547.0, "Total Transactions": 148.0, "Total Customers": 78.0, "Median Spend per Transaction": 14.6, "Median Spend per Customer": 22.17 }, "geometry": { "type": "Point", "coordinates": [ -75.180755, 39.968736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "800 E Washington Ln", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2023, "Total Visits": 740.0, "Total Visitors": 560.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 4.0, "Total Spend": 10094.0, "Total Transactions": 499.0, "Total Customers": 268.0, "Median Spend per Transaction": 18.21, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-75z", "Name": "Cosi", "Category": "Restaurants and Other Eating Places", "Address": "3500 Civic Center Blvd", "LATITUDE": 39.947096, "LONGITUDE": -75.193946, "DATE_RANGE_START": 2023, "Total Visits": 13803.0, "Total Visitors": 7404.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 99.0, "Total Spend": 1234.0, "Total Transactions": 78.0, "Total Customers": 64.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.193946, 39.947096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2017 S Broad St # 2023", "LATITUDE": 39.924902, "LONGITUDE": -75.1691, "DATE_RANGE_START": 2023, "Total Visits": 1924.0, "Total Visitors": 1150.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 12.0, "Total Spend": 13326.0, "Total Transactions": 685.0, "Total Customers": 372.0, "Median Spend per Transaction": 13.39, "Median Spend per Customer": 22.66 }, "geometry": { "type": "Point", "coordinates": [ -75.1691, 39.924902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5601 Vine St", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2023, "Total Visits": 475.0, "Total Visitors": 341.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 10.0, "Total Spend": 10537.0, "Total Transactions": 719.0, "Total Customers": 388.0, "Median Spend per Transaction": 11.76, "Median Spend per Customer": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-r6k", "Name": "Grindcore House", "Category": "Restaurants and Other Eating Places", "Address": "1515 S 4th St", "LATITUDE": 39.929019, "LONGITUDE": -75.151738, "DATE_RANGE_START": 2023, "Total Visits": 74.0, "Total Visitors": 74.0, "POI_CBG": 421010027023.0, "Median Dwell Time": null, "Total Spend": 3313.0, "Total Transactions": 240.0, "Total Customers": 163.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 13.68 }, "geometry": { "type": "Point", "coordinates": [ -75.151738, 39.929019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "Name": "Banana Republic Outlet", "Category": "Clothing Stores", "Address": "1911 Chestnut St", "LATITUDE": 39.952114, "LONGITUDE": -75.172439, "DATE_RANGE_START": 2023, "Total Visits": 21.0, "Total Visitors": 19.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 5.0, "Total Spend": 2248.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 50.83, "Median Spend per Customer": 50.83 }, "geometry": { "type": "Point", "coordinates": [ -75.172439, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7912 Roosevelt Blvd", "LATITUDE": 40.055386, "LONGITUDE": -75.049698, "DATE_RANGE_START": 2023, "Total Visits": 961.0, "Total Visitors": 511.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 29.0, "Total Spend": 67910.0, "Total Transactions": 3570.0, "Total Customers": 1596.0, "Median Spend per Transaction": 14.06, "Median Spend per Customer": 23.21 }, "geometry": { "type": "Point", "coordinates": [ -75.049698, 40.055386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2419 S 24th St", "LATITUDE": 39.921556, "LONGITUDE": -75.186008, "DATE_RANGE_START": 2023, "Total Visits": 1151.0, "Total Visitors": 829.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 25.0, "Total Spend": 12161.0, "Total Transactions": 239.0, "Total Customers": 188.0, "Median Spend per Transaction": 34.58, "Median Spend per Customer": 42.56 }, "geometry": { "type": "Point", "coordinates": [ -75.186008, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6801 Frankford Ave", "LATITUDE": 40.032001, "LONGITUDE": -75.050379, "DATE_RANGE_START": 2023, "Total Visits": 554.0, "Total Visitors": 366.0, "POI_CBG": 421010325001.0, "Median Dwell Time": 11.0, "Total Spend": 2714.0, "Total Transactions": 101.0, "Total Customers": 59.0, "Median Spend per Transaction": 16.07, "Median Spend per Customer": 24.99 }, "geometry": { "type": "Point", "coordinates": [ -75.050379, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "Name": "Ross Stores", "Category": "Department Stores", "Address": "7720 City Ave", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2023, "Total Visits": 591.0, "Total Visitors": 514.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 16.0, "Total Spend": 13849.0, "Total Transactions": 304.0, "Total Customers": 258.0, "Median Spend per Transaction": 31.01, "Median Spend per Customer": 37.46 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "Name": "iMunch Cafe", "Category": "Health and Personal Care Stores", "Address": "1233 N 31st St", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010137005.0, "Median Dwell Time": null, "Total Spend": 3468.0, "Total Transactions": 194.0, "Total Customers": 104.0, "Median Spend per Transaction": 14.9, "Median Spend per Customer": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-wkz", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "2000 S Swanson St", "LATITUDE": 39.922494, "LONGITUDE": -75.146453, "DATE_RANGE_START": 2023, "Total Visits": 311.0, "Total Visitors": 251.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 25.0, "Total Spend": 11032.0, "Total Transactions": 228.0, "Total Customers": 199.0, "Median Spend per Transaction": 31.13, "Median Spend per Customer": 35.61 }, "geometry": { "type": "Point", "coordinates": [ -75.146453, 39.922494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7z-r49", "Name": "Halal food King Gyro", "Category": "Restaurants and Other Eating Places", "Address": "929 Levick St", "LATITUDE": 40.04461, "LONGITUDE": -75.087074, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 12.0, "Total Spend": 667.0, "Total Transactions": 30.0, "Total Customers": 21.0, "Median Spend per Transaction": 17.34, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.087074, 40.04461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pm9-wp9", "Name": "Charlie's", "Category": "Clothing Stores", "Address": "302 Market St Fl 2", "LATITUDE": 39.950465, "LONGITUDE": -75.146104, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 8.0, "Total Spend": 667.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 15.84 }, "geometry": { "type": "Point", "coordinates": [ -75.146104, 39.950465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2445 N Broad St", "LATITUDE": 39.990664, "LONGITUDE": -75.154878, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 9.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 225.0, "Total Spend": 11233.0, "Total Transactions": 253.0, "Total Customers": 208.0, "Median Spend per Transaction": 25.9, "Median Spend per Customer": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.154878, 39.990664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-mx5", "Name": "ALDI", "Category": "Grocery Stores", "Address": "3975 Castor Ave", "LATITUDE": 40.006782, "LONGITUDE": -75.097589, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 15.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 10.0, "Total Spend": 343.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 8.46, "Median Spend per Customer": 8.46 }, "geometry": { "type": "Point", "coordinates": [ -75.097589, 40.006782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-grk", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "1901 Johnston St", "LATITUDE": 39.916944, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2023, "Total Visits": 35.0, "Total Visitors": 25.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 12.0, "Total Spend": 133390.0, "Total Transactions": 3209.0, "Total Customers": 1275.0, "Median Spend per Transaction": 25.29, "Median Spend per Customer": 49.28 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.916944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6701 Ridge Ave Ste 1", "LATITUDE": 40.040999, "LONGITUDE": -75.223815, "DATE_RANGE_START": 2023, "Total Visits": 625.0, "Total Visitors": 412.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 9.0, "Total Spend": 12974.0, "Total Transactions": 620.0, "Total Customers": 436.0, "Median Spend per Transaction": 12.99, "Median Spend per Customer": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.223815, 40.040999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-92k", "Name": "Kate Spade", "Category": "Clothing Stores", "Address": "901 Market St Unit 1065", "LATITUDE": 39.952238, "LONGITUDE": -75.155945, "DATE_RANGE_START": 2023, "Total Visits": 427.0, "Total Visitors": 302.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 6.0, "Total Spend": 5827.0, "Total Transactions": 59.0, "Total Customers": 53.0, "Median Spend per Transaction": 85.32, "Median Spend per Customer": 103.39 }, "geometry": { "type": "Point", "coordinates": [ -75.155945, 39.952238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1020 S Broad St", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2023, "Total Visits": 959.0, "Total Visitors": 835.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 6.0, "Total Spend": 76400.0, "Total Transactions": 2592.0, "Total Customers": 1244.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 37.39 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1602 S Columbus Blvd # 04", "LATITUDE": 39.926449, "LONGITUDE": -75.14542, "DATE_RANGE_START": 2023, "Total Visits": 1152.0, "Total Visitors": 851.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 51692.0, "Total Transactions": 4234.0, "Total Customers": 2156.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.14542, 39.926449 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9920 Bustleton Ave", "LATITUDE": 40.101415, "LONGITUDE": -75.03027, "DATE_RANGE_START": 2023, "Total Visits": 978.0, "Total Visitors": 757.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 9.0, "Total Spend": 224.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 39.4, "Median Spend per Customer": 89.4 }, "geometry": { "type": "Point", "coordinates": [ -75.03027, 40.101415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-p7b-qs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "9200 Ashton Rd", "LATITUDE": 40.063765, "LONGITUDE": -75.021897, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 362.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 811.0, "Total Transactions": 35.0, "Total Customers": 16.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 21.44 }, "geometry": { "type": "Point", "coordinates": [ -75.021897, 40.063765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6409 Torresdale Ave # 13", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2023, "Total Visits": 752.0, "Total Visitors": 604.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 11.0, "Total Spend": 6355.0, "Total Transactions": 734.0, "Total Customers": 253.0, "Median Spend per Transaction": 7.27, "Median Spend per Customer": 14.36 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-rff", "Name": "Montana Grill", "Category": "Restaurants and Other Eating Places", "Address": "6651 Castor Ave", "LATITUDE": 40.042892, "LONGITUDE": -75.073677, "DATE_RANGE_START": 2023, "Total Visits": 203.0, "Total Visitors": 187.0, "POI_CBG": 421010313004.0, "Median Dwell Time": 10.0, "Total Spend": 257.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 26.38, "Median Spend per Customer": 24.19 }, "geometry": { "type": "Point", "coordinates": [ -75.073677, 40.042892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm4-h5z", "Name": "Le Virtu", "Category": "Restaurants and Other Eating Places", "Address": "1927 E Passyunk Ave", "LATITUDE": 39.925948, "LONGITUDE": -75.16776, "DATE_RANGE_START": 2023, "Total Visits": 238.0, "Total Visitors": 208.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 38.0, "Total Spend": 5295.0, "Total Transactions": 49.0, "Total Customers": 43.0, "Median Spend per Transaction": 83.52, "Median Spend per Customer": 99.96 }, "geometry": { "type": "Point", "coordinates": [ -75.16776, 39.925948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wzf", "Name": "Bravo Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "1323 Lindley Ave", "LATITUDE": 40.030409, "LONGITUDE": -75.145574, "DATE_RANGE_START": 2023, "Total Visits": 168.0, "Total Visitors": 80.0, "POI_CBG": 421010282001.0, "Median Dwell Time": 29.0, "Total Spend": 411.0, "Total Transactions": 23.0, "Total Customers": 19.0, "Median Spend per Transaction": 13.93, "Median Spend per Customer": 19.47 }, "geometry": { "type": "Point", "coordinates": [ -75.145574, 40.030409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp4-r49", "Name": "Port Richmond Thriftway Market", "Category": "Grocery Stores", "Address": "2497 Aramingo Ave", "LATITUDE": 39.975523, "LONGITUDE": -75.119684, "DATE_RANGE_START": 2023, "Total Visits": 995.0, "Total Visitors": 570.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 8.0, "Total Spend": 90.0, "Total Transactions": 8.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.58, "Median Spend per Customer": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.119684, 39.975523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8f-9cq", "Name": "D & R Food Market", "Category": "Grocery Stores", "Address": "1801 Orthodox St", "LATITUDE": 40.012762, "LONGITUDE": -75.081478, "DATE_RANGE_START": 2023, "Total Visits": 215.0, "Total Visitors": 36.0, "POI_CBG": 421010300005.0, "Median Dwell Time": 246.0, "Total Spend": 808.0, "Total Transactions": 84.0, "Total Customers": 34.0, "Median Spend per Transaction": 8.03, "Median Spend per Customer": 10.53 }, "geometry": { "type": "Point", "coordinates": [ -75.081478, 40.012762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmb-gkz", "Name": "Effie's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1127 Pine St", "LATITUDE": 39.945113, "LONGITUDE": -75.160611, "DATE_RANGE_START": 2023, "Total Visits": 103.0, "Total Visitors": 103.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 19.0, "Total Spend": 1117.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 49.78, "Median Spend per Customer": 49.78 }, "geometry": { "type": "Point", "coordinates": [ -75.160611, 39.945113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "Name": "Le Viet Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1019 S 11th St", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2023, "Total Visits": 605.0, "Total Visitors": 341.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 72.0, "Total Spend": 308.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 62.5, "Median Spend per Customer": 62.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-54v", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "2875 W Dauphin St", "LATITUDE": 39.991295, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 163.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 10.0, "Total Spend": 1950.0, "Total Transactions": 124.0, "Total Customers": 90.0, "Median Spend per Transaction": 11.44, "Median Spend per Customer": 15.43 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pm9-y5f", "Name": "Neighborhood Ramen", "Category": "Restaurants and Other Eating Places", "Address": "617 S 3rd St", "LATITUDE": 39.940906, "LONGITUDE": -75.147499, "DATE_RANGE_START": 2023, "Total Visits": 754.0, "Total Visitors": 635.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 21.0, "Total Spend": 3964.0, "Total Transactions": 85.0, "Total Customers": 68.0, "Median Spend per Transaction": 51.84, "Median Spend per Customer": 53.73 }, "geometry": { "type": "Point", "coordinates": [ -75.147499, 39.940906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmf-ht9", "Name": "Devon & Blakely", "Category": "Restaurants and Other Eating Places", "Address": "1801 Market St", "LATITUDE": 39.953611, "LONGITUDE": -75.170322, "DATE_RANGE_START": 2023, "Total Visits": 2235.0, "Total Visitors": 1449.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 12.0, "Total Spend": 2307.0, "Total Transactions": 192.0, "Total Customers": 122.0, "Median Spend per Transaction": 12.64, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 39.953611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "Name": "Stock", "Category": "Restaurants and Other Eating Places", "Address": "308 E Girard Ave", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2023, "Total Visits": 23.0, "Total Visitors": 23.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 42.0, "Total Spend": 979.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 149.95, "Median Spend per Customer": 149.95 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-djv", "Name": "Pastificio", "Category": "Restaurants and Other Eating Places", "Address": "1528 Packer Ave", "LATITUDE": 39.911518, "LONGITUDE": -75.174701, "DATE_RANGE_START": 2023, "Total Visits": 853.0, "Total Visitors": 688.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 50.0, "Total Spend": 6281.0, "Total Transactions": 214.0, "Total Customers": 160.0, "Median Spend per Transaction": 21.85, "Median Spend per Customer": 30.13 }, "geometry": { "type": "Point", "coordinates": [ -75.174701, 39.911518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7bk", "Name": "Attico Rooftop Lounge", "Category": "Restaurants and Other Eating Places", "Address": "219 S Broad St", "LATITUDE": 39.948632, "LONGITUDE": -75.164198, "DATE_RANGE_START": 2023, "Total Visits": 5620.0, "Total Visitors": 3899.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 23.0, "Total Spend": 3751.0, "Total Transactions": 50.0, "Total Customers": 44.0, "Median Spend per Transaction": 62.75, "Median Spend per Customer": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164198, 39.948632 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-v75", "Name": "Buk Chon Korean Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "132 Chestnut St", "LATITUDE": 39.948233, "LONGITUDE": -75.143798, "DATE_RANGE_START": 2023, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 25.0, "Total Spend": 411.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 48.72, "Median Spend per Customer": 47.91 }, "geometry": { "type": "Point", "coordinates": [ -75.143798, 39.948233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm8-djv", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "1526 Packer Ave", "LATITUDE": 39.911588, "LONGITUDE": -75.17455, "DATE_RANGE_START": 2023, "Total Visits": 2697.0, "Total Visitors": 2192.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 46.0, "Total Spend": 819.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 49.56, "Median Spend per Customer": 49.56 }, "geometry": { "type": "Point", "coordinates": [ -75.17455, 39.911588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "327 Spring Garden St", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2023, "Total Visits": 405.0, "Total Visitors": 359.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 13.0, "Total Spend": 4750.0, "Total Transactions": 311.0, "Total Customers": 219.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 15.74 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "171 W Chelten Ave", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2023, "Total Visits": 489.0, "Total Visitors": 397.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 11.0, "Total Spend": 6462.0, "Total Transactions": 506.0, "Total Customers": 365.0, "Median Spend per Transaction": 11.71, "Median Spend per Customer": 13.58 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pj3-fxq", "Name": "T & N Food Market", "Category": "Grocery Stores", "Address": "4907 Wayne Ave", "LATITUDE": 40.024855, "LONGITUDE": -75.166215, "DATE_RANGE_START": 2023, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010244003.0, "Median Dwell Time": 101.0, "Total Spend": 727.0, "Total Transactions": 70.0, "Total Customers": 28.0, "Median Spend per Transaction": 7.88, "Median Spend per Customer": 11.11 }, "geometry": { "type": "Point", "coordinates": [ -75.166215, 40.024855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj9-grk", "Name": "Nedro Food Market", "Category": "Grocery Stores", "Address": "5900 N 21st St", "LATITUDE": 40.043815, "LONGITUDE": -75.156105, "DATE_RANGE_START": 2023, "Total Visits": 170.0, "Total Visitors": 113.0, "POI_CBG": 421010279014.0, "Median Dwell Time": 3.0, "Total Spend": 39.0, "Total Transactions": 6.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 15.63 }, "geometry": { "type": "Point", "coordinates": [ -75.156105, 40.043815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "Name": "Open House", "Category": "Home Furnishings Stores", "Address": "107 S 13th St", "LATITUDE": 39.950281, "LONGITUDE": -75.161742, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 9235.0, "Total Transactions": 228.0, "Total Customers": 190.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.161742, 39.950281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992302, "LONGITUDE": -75.09981, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 24.0, "Total Spend": 6373.0, "Total Transactions": 99.0, "Total Customers": 80.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.09981, 39.992302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "Name": "3 Brothers Pizza & Pasta", "Category": "Restaurants and Other Eating Places", "Address": "2621 E Ontario St", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 31.0, "POI_CBG": 421010379002.0, "Median Dwell Time": null, "Total Spend": 455.0, "Total Transactions": 19.0, "Total Customers": 19.0, "Median Spend per Transaction": 26.27, "Median Spend per Customer": 26.27 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5158 Haverford Ave", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2023, "Total Visits": 155.0, "Total Visitors": 108.0, "POI_CBG": 421010093005.0, "Median Dwell Time": 5.0, "Total Spend": 94.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 16.61, "Median Spend per Customer": 16.61 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "Name": "Old Nelson Food Market", "Category": "Grocery Stores", "Address": "2000 Chestnut St", "LATITUDE": 39.951898, "LONGITUDE": -75.173697, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 45.0, "Total Spend": 38009.0, "Total Transactions": 3650.0, "Total Customers": 1678.0, "Median Spend per Transaction": 9.27, "Median Spend per Customer": 12.94 }, "geometry": { "type": "Point", "coordinates": [ -75.173697, 39.951898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgf-3dv", "Name": "Sheraton Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "3549 Chestnut St", "LATITUDE": 39.95502, "LONGITUDE": -75.193986, "DATE_RANGE_START": 2023, "Total Visits": 2349.0, "Total Visitors": 1442.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 267.0, "Total Spend": 155.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.193986, 39.95502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pgg-qs5", "Name": "32nd Street Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3200 W Allegheny Ave", "LATITUDE": 40.005082, "LONGITUDE": -75.181898, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 61.0, "Total Spend": 484.0, "Total Transactions": 14.0, "Total Customers": 10.0, "Median Spend per Transaction": 33.0, "Median Spend per Customer": 47.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181898, 40.005082 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "Name": "DaMo Pasta Lab", "Category": "Restaurants and Other Eating Places", "Address": "105 S 12th St", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2023, "Total Visits": 233.0, "Total Visitors": 218.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 1785.0, "Total Transactions": 85.0, "Total Customers": 61.0, "Median Spend per Transaction": 18.68, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pj3-gx5", "Name": "Beijing Garden", "Category": "Restaurants and Other Eating Places", "Address": "4527 Wayne Ave", "LATITUDE": 40.022567, "LONGITUDE": -75.162046, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 119.0, "POI_CBG": 421010244002.0, "Median Dwell Time": 9.0, "Total Spend": 356.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 25.85, "Median Spend per Customer": 31.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162046, 40.022567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "Name": "Pasqually's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "200 S 43rd St", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2023, "Total Visits": 173.0, "Total Visitors": 118.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 12.0, "Total Spend": 5730.0, "Total Transactions": 277.0, "Total Customers": 160.0, "Median Spend per Transaction": 14.95, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-rhq", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7600 City Ave Ste 1", "LATITUDE": 39.978964, "LONGITUDE": -75.271417, "DATE_RANGE_START": 2023, "Total Visits": 975.0, "Total Visitors": 926.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 14.0, "Total Spend": 1585.0, "Total Transactions": 104.0, "Total Customers": 94.0, "Median Spend per Transaction": 12.85, "Median Spend per Customer": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.271417, 39.978964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2301 Cottman Ave", "LATITUDE": 40.047834, "LONGITUDE": -75.059433, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 10.0, "Total Spend": 407.0, "Total Transactions": 23.0, "Total Customers": 20.0, "Median Spend per Transaction": 14.98, "Median Spend per Customer": 20.85 }, "geometry": { "type": "Point", "coordinates": [ -75.059433, 40.047834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-224@628-pm9-whq", "Name": "Istanbul Cafe", "Category": "Restaurants and Other Eating Places", "Address": "301 Market St", "LATITUDE": 39.950481, "LONGITUDE": -75.145893, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 8.0, "Total Spend": 1559.0, "Total Transactions": 133.0, "Total Customers": 113.0, "Median Spend per Transaction": 8.4, "Median Spend per Customer": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.145893, 39.950481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2805 S Front St # 2809", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2023, "Total Visits": 46.0, "Total Visitors": 41.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 7.0, "Total Spend": 5908.0, "Total Transactions": 664.0, "Total Customers": 376.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 9.85 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-3nq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2640 S Carlisle St", "LATITUDE": 39.917267, "LONGITUDE": -75.172584, "DATE_RANGE_START": 2023, "Total Visits": 1263.0, "Total Visitors": 561.0, "POI_CBG": 421010039022.0, "Median Dwell Time": 42.0, "Total Spend": 417.0, "Total Transactions": 46.0, "Total Customers": 19.0, "Median Spend per Transaction": 8.81, "Median Spend per Customer": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.172584, 39.917267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-fcq", "Name": "Rustic Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "259 S 10th St", "LATITUDE": 39.946665, "LONGITUDE": -75.157591, "DATE_RANGE_START": 2023, "Total Visits": 168.0, "Total Visitors": 128.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 55.0, "Total Spend": 245.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 16.15, "Median Spend per Customer": 16.66 }, "geometry": { "type": "Point", "coordinates": [ -75.157591, 39.946665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm8-2c5", "Name": "Mr Jerk", "Category": "Restaurants and Other Eating Places", "Address": "2750 Wharton St", "LATITUDE": 39.93693, "LONGITUDE": -75.190362, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010033003.0, "Median Dwell Time": null, "Total Spend": 289.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 15.71, "Median Spend per Customer": 16.89 }, "geometry": { "type": "Point", "coordinates": [ -75.190362, 39.93693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p8h-td9", "Name": "Bravo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6702 Torresdale Ave", "LATITUDE": 40.024518, "LONGITUDE": -75.046521, "DATE_RANGE_START": 2023, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010325002.0, "Median Dwell Time": 1.0, "Total Spend": 637.0, "Total Transactions": 31.0, "Total Customers": 19.0, "Median Spend per Transaction": 12.85, "Median Spend per Customer": 27.88 }, "geometry": { "type": "Point", "coordinates": [ -75.046521, 40.024518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.038445, "LONGITUDE": -75.10676, "DATE_RANGE_START": 2023, "Total Visits": 630.0, "Total Visitors": 301.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 59.0, "Total Spend": 5381.0, "Total Transactions": 278.0, "Total Customers": 224.0, "Median Spend per Transaction": 14.34, "Median Spend per Customer": 20.03 }, "geometry": { "type": "Point", "coordinates": [ -75.10676, 40.038445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph6-whq", "Name": "Italian Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2035 N 63rd St", "LATITUDE": 39.986561, "LONGITUDE": -75.247783, "DATE_RANGE_START": 2023, "Total Visits": 262.0, "Total Visitors": 14.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 322.0, "Total Spend": 830.0, "Total Transactions": 34.0, "Total Customers": 26.0, "Median Spend per Transaction": 21.55, "Median Spend per Customer": 27.26 }, "geometry": { "type": "Point", "coordinates": [ -75.247783, 39.986561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "Name": "The Pizza Store", "Category": "Restaurants and Other Eating Places", "Address": "2727 E Allegheny Ave", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2023, "Total Visits": 210.0, "Total Visitors": 99.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 40.0, "Total Spend": 2077.0, "Total Transactions": 83.0, "Total Customers": 38.0, "Median Spend per Transaction": 20.8, "Median Spend per Customer": 32.91 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1924 Fairmount Ave", "LATITUDE": 39.967006, "LONGITUDE": -75.169701, "DATE_RANGE_START": 2023, "Total Visits": 1080.0, "Total Visitors": 802.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 6.0, "Total Spend": 31411.0, "Total Transactions": 1816.0, "Total Customers": 975.0, "Median Spend per Transaction": 11.99, "Median Spend per Customer": 18.06 }, "geometry": { "type": "Point", "coordinates": [ -75.169701, 39.967006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "Name": "Cafe Thanh Truc", "Category": "Restaurants and Other Eating Places", "Address": "1037 S 8th St", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2023, "Total Visits": 65.0, "Total Visitors": 65.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 18.0, "Total Spend": 147.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-w8v", "Name": "Pro Image Sports", "Category": "Clothing Stores", "Address": "1491 Franklin Mills Cir", "LATITUDE": 40.087124, "LONGITUDE": -74.961763, "DATE_RANGE_START": 2023, "Total Visits": 402.0, "Total Visitors": 372.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 43.0, "Total Spend": 1578.0, "Total Transactions": 31.0, "Total Customers": 30.0, "Median Spend per Transaction": 41.99, "Median Spend per Customer": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961763, 40.087124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2044 Red Lion Rd", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2023, "Total Visits": 4414.0, "Total Visitors": 2722.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 22.0, "Total Spend": 28609.0, "Total Transactions": 308.0, "Total Customers": 194.0, "Median Spend per Transaction": 65.85, "Median Spend per Customer": 84.88 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1801 Torresdale Ave", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2023, "Total Visits": 1008.0, "Total Visitors": 461.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 27.0, "Total Spend": 9420.0, "Total Transactions": 580.0, "Total Customers": 415.0, "Median Spend per Transaction": 13.06, "Median Spend per Customer": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "1930 Chestnut St", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2023, "Total Visits": 1740.0, "Total Visitors": 1450.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 14604.0, "Total Transactions": 239.0, "Total Customers": 115.0, "Median Spend per Transaction": 44.04, "Median Spend per Customer": 74.44 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2ff", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2615 N American St", "LATITUDE": 39.99066, "LONGITUDE": -75.135816, "DATE_RANGE_START": 2023, "Total Visits": 510.0, "Total Visitors": 397.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 13.0, "Total Spend": 318.0, "Total Transactions": 19.0, "Total Customers": 13.0, "Median Spend per Transaction": 14.29, "Median Spend per Customer": 20.73 }, "geometry": { "type": "Point", "coordinates": [ -75.135816, 39.99066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956717, "LONGITUDE": -75.194268, "DATE_RANGE_START": 2023, "Total Visits": 6666.0, "Total Visitors": 3515.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 15.0, "Total Spend": 8907.0, "Total Transactions": 1345.0, "Total Customers": 594.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.194268, 39.956717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-fmk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "1624 Cottman Ave", "LATITUDE": 40.054375, "LONGITUDE": -75.072167, "DATE_RANGE_START": 2023, "Total Visits": 348.0, "Total Visitors": 311.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 11.0, "Total Spend": 5237.0, "Total Transactions": 358.0, "Total Customers": 278.0, "Median Spend per Transaction": 12.73, "Median Spend per Customer": 13.89 }, "geometry": { "type": "Point", "coordinates": [ -75.072167, 40.054375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j5f", "Name": "Vans", "Category": "Shoe Stores", "Address": "1702 Walnut St", "LATITUDE": 39.949842, "LONGITUDE": -75.169276, "DATE_RANGE_START": 2023, "Total Visits": 20.0, "Total Visitors": 18.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 9.0, "Total Spend": 12776.0, "Total Transactions": 122.0, "Total Customers": 109.0, "Median Spend per Transaction": 64.95, "Median Spend per Customer": 72.42 }, "geometry": { "type": "Point", "coordinates": [ -75.169276, 39.949842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "Name": "Standard Tap", "Category": "Restaurants and Other Eating Places", "Address": "901 N 2nd St", "LATITUDE": 39.96415, "LONGITUDE": -75.140513, "DATE_RANGE_START": 2023, "Total Visits": 646.0, "Total Visitors": 575.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 58.0, "Total Spend": 2060.0, "Total Transactions": 30.0, "Total Customers": 18.0, "Median Spend per Transaction": 60.48, "Median Spend per Customer": 93.88 }, "geometry": { "type": "Point", "coordinates": [ -75.140513, 39.96415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "701 W Lehigh Ave", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2023, "Total Visits": 349.0, "Total Visitors": 326.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 15.0, "Total Spend": 5462.0, "Total Transactions": 367.0, "Total Customers": 299.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "Name": "Museum Deli", "Category": "Restaurants and Other Eating Places", "Address": "333 Spring Garden St", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2023, "Total Visits": 134.0, "Total Visitors": 128.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 49.0, "Total Spend": 3266.0, "Total Transactions": 217.0, "Total Customers": 139.0, "Median Spend per Transaction": 13.22, "Median Spend per Customer": 18.61 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "Name": "Rapoport Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6934 Bustleton Ave", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2023, "Total Visits": 132.0, "Total Visitors": 132.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 12.0, "Total Spend": 107.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.19, "Median Spend per Customer": 16.37 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-6tv", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "1519 Chestnut St", "LATITUDE": 39.951362, "LONGITUDE": -75.166293, "DATE_RANGE_START": 2023, "Total Visits": 48.0, "Total Visitors": 41.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 3435.0, "Total Transactions": 53.0, "Total Customers": 51.0, "Median Spend per Transaction": 62.5, "Median Spend per Customer": 64.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166293, 39.951362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1801 Spruce St", "LATITUDE": 39.947898, "LONGITUDE": -75.171322, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 1.0, "Total Spend": 3458.0, "Total Transactions": 447.0, "Total Customers": 279.0, "Median Spend per Transaction": 6.56, "Median Spend per Customer": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.171322, 39.947898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4jv", "Name": "Embroidery King", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "6190 Rising Sun Ave", "LATITUDE": 40.047142, "LONGITUDE": -75.098509, "DATE_RANGE_START": 2023, "Total Visits": 370.0, "Total Visitors": 308.0, "POI_CBG": 421010305021.0, "Median Dwell Time": 1.0, "Total Spend": 852.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 200.0, "Median Spend per Customer": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098509, 40.047142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7400 Bustleton Ave", "LATITUDE": 40.051189, "LONGITUDE": -75.059475, "DATE_RANGE_START": 2023, "Total Visits": 4646.0, "Total Visitors": 3286.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 21.0, "Total Spend": 154188.0, "Total Transactions": 3461.0, "Total Customers": 2003.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 49.71 }, "geometry": { "type": "Point", "coordinates": [ -75.059475, 40.051189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 W Hunting Park Ave", "LATITUDE": 40.008138, "LONGITUDE": -75.173207, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 7.0, "Total Spend": 1611.0, "Total Transactions": 134.0, "Total Customers": 111.0, "Median Spend per Transaction": 7.45, "Median Spend per Customer": 7.72 }, "geometry": { "type": "Point", "coordinates": [ -75.173207, 40.008138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-qzz", "Name": "Randazzo's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1826 South St", "LATITUDE": 39.944329, "LONGITUDE": -75.172844, "DATE_RANGE_START": 2023, "Total Visits": 1254.0, "Total Visitors": 441.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 325.0, "Total Spend": 2623.0, "Total Transactions": 122.0, "Total Customers": 94.0, "Median Spend per Transaction": 15.42, "Median Spend per Customer": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.172844, 39.944329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jvz", "Name": "Thin & Crispy", "Category": "Restaurants and Other Eating Places", "Address": "2563 Trenton Ave", "LATITUDE": 39.98312, "LONGITUDE": -75.123059, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010160004.0, "Median Dwell Time": null, "Total Spend": 238.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 38.42, "Median Spend per Customer": 69.82 }, "geometry": { "type": "Point", "coordinates": [ -75.123059, 39.98312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-nwk", "Name": "The El Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1356 N Front St", "LATITUDE": 39.971812, "LONGITUDE": -75.135557, "DATE_RANGE_START": 2023, "Total Visits": 240.0, "Total Visitors": 111.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 126.0, "Total Spend": 373.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 44.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135557, 39.971812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "Name": "China Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "2842 Saint Vincent St", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2023, "Total Visits": 570.0, "Total Visitors": 408.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 46.0, "Total Spend": 1121.0, "Total Transactions": 19.0, "Total Customers": 18.0, "Median Spend per Transaction": 60.63, "Median Spend per Customer": 67.81 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "Name": "Jetro Cash & Carry", "Category": "Grocery and Related Product Merchant Wholesalers", "Address": "700 Pattison Ave", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2023, "Total Visits": 2458.0, "Total Visitors": 1766.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 40.0, "Total Spend": 357565.0, "Total Transactions": 507.0, "Total Customers": 132.0, "Median Spend per Transaction": 534.44, "Median Spend per Customer": 524.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7613 Castor Ave", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2023, "Total Visits": 909.0, "Total Visitors": 775.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 8.0, "Total Spend": 13628.0, "Total Transactions": 995.0, "Total Customers": 542.0, "Median Spend per Transaction": 11.7, "Median Spend per Customer": 17.01 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-k75", "Name": "Best Buy", "Category": "Electronics and Appliance Stores", "Address": "9733 Roosevelt Blvd", "LATITUDE": 40.082306, "LONGITUDE": -75.023635, "DATE_RANGE_START": 2023, "Total Visits": 1532.0, "Total Visitors": 1407.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 25.0, "Total Spend": 122099.0, "Total Transactions": 785.0, "Total Customers": 569.0, "Median Spend per Transaction": 54.92, "Median Spend per Customer": 86.37 }, "geometry": { "type": "Point", "coordinates": [ -75.023635, 40.082306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-p9z", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4160 N American St", "LATITUDE": 40.014261, "LONGITUDE": -75.13161, "DATE_RANGE_START": 2023, "Total Visits": 9.0, "Total Visitors": 4.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 37.0, "Total Spend": 570.0, "Total Transactions": 23.0, "Total Customers": 11.0, "Median Spend per Transaction": 16.24, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.13161, 40.014261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pgf-fj9", "Name": "Cleopatra Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4145 Chestnut St", "LATITUDE": 39.956516, "LONGITUDE": -75.206034, "DATE_RANGE_START": 2023, "Total Visits": 413.0, "Total Visitors": 338.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 1.0, "Total Spend": 1006.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 46.0, "Median Spend per Customer": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206034, 39.956516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.99585, "LONGITUDE": -75.166133, "DATE_RANGE_START": 2023, "Total Visits": 942.0, "Total Visitors": 744.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 11.0, "Total Spend": 4208.0, "Total Transactions": 343.0, "Total Customers": 278.0, "Median Spend per Transaction": 10.13, "Median Spend per Customer": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.166133, 39.99585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pg8-bp9", "Name": "WokWorks", "Category": "Restaurants and Other Eating Places", "Address": "3000 W Sedgley Ave", "LATITUDE": 39.983989, "LONGITUDE": -75.183024, "DATE_RANGE_START": 2023, "Total Visits": 633.0, "Total Visitors": 529.0, "POI_CBG": 421010151022.0, "Median Dwell Time": 9.0, "Total Spend": 25.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.183024, 39.983989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8h-5xq", "Name": "New Station Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6904 Torresdale Ave", "LATITUDE": 40.026249, "LONGITUDE": -75.043153, "DATE_RANGE_START": 2023, "Total Visits": 188.0, "Total Visitors": 94.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 9.0, "Total Spend": 2126.0, "Total Transactions": 111.0, "Total Customers": 85.0, "Median Spend per Transaction": 17.88, "Median Spend per Customer": 24.26 }, "geometry": { "type": "Point", "coordinates": [ -75.043153, 40.026249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dvy-k9f", "Name": "El Taco", "Category": "Restaurants and Other Eating Places", "Address": "3716 Spruce St", "LATITUDE": 39.951008, "LONGITUDE": -75.198241, "DATE_RANGE_START": 2023, "Total Visits": 1095.0, "Total Visitors": 485.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 49.0, "Total Spend": 113.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 15.2, "Median Spend per Customer": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.198241, 39.951008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-v75", "Name": "JJ Bootleggers", "Category": "Restaurants and Other Eating Places", "Address": "35 S 2nd St", "LATITUDE": 39.94896, "LONGITUDE": -75.143844, "DATE_RANGE_START": 2023, "Total Visits": 61.0, "Total Visitors": 45.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 16.0, "Total Spend": 10982.0, "Total Transactions": 421.0, "Total Customers": 244.0, "Median Spend per Transaction": 17.84, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.143844, 39.94896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "22 W Girard Ave", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2023, "Total Visits": 906.0, "Total Visitors": 711.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 8.0, "Total Spend": 13859.0, "Total Transactions": 1294.0, "Total Customers": 823.0, "Median Spend per Transaction": 9.33, "Median Spend per Customer": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfy-2ff", "Name": "Tasty Twisters Bakery", "Category": "Restaurants and Other Eating Places", "Address": "5002 Umbria St", "LATITUDE": 40.035673, "LONGITUDE": -75.236122, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 36.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 1.0, "Total Spend": 343.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 10.66 }, "geometry": { "type": "Point", "coordinates": [ -75.236122, 40.035673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1820 Torresdale Ave", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2023, "Total Visits": 660.0, "Total Visitors": 514.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 5.0, "Total Spend": 5197.0, "Total Transactions": 624.0, "Total Customers": 258.0, "Median Spend per Transaction": 6.8, "Median Spend per Customer": 11.19 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "Name": "Frame Fatale", "Category": "Home Furnishings Stores", "Address": "1813 E Passyunk Ave", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2023, "Total Visits": 659.0, "Total Visitors": 405.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 46.0, "Total Spend": 580.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 173.01, "Median Spend per Customer": 173.01 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-jd9", "Name": "Westin Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "99 S 17th St @ Liberty Pl", "LATITUDE": 39.952114, "LONGITUDE": -75.168477, "DATE_RANGE_START": 2023, "Total Visits": 7905.0, "Total Visitors": 4482.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 38.0, "Total Spend": 19076.0, "Total Transactions": 66.0, "Total Customers": 48.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 94.37 }, "geometry": { "type": "Point", "coordinates": [ -75.168477, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmc-vzz", "Name": "Chopstick House", "Category": "Restaurants and Other Eating Places", "Address": "1626 S Columbus Blvd", "LATITUDE": 39.926547, "LONGITUDE": -75.14612, "DATE_RANGE_START": 2023, "Total Visits": 225.0, "Total Visitors": 106.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 83.0, "Total Spend": 620.0, "Total Transactions": 31.0, "Total Customers": 20.0, "Median Spend per Transaction": 17.55, "Median Spend per Customer": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.14612, 39.926547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "Name": "John's Place", "Category": "Restaurants and Other Eating Places", "Address": "1529 Spring Garden St", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 144.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 18.0, "Total Spend": 842.0, "Total Transactions": 84.0, "Total Customers": 45.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "6100 Frankford Ave", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2023, "Total Visits": 386.0, "Total Visitors": 319.0, "POI_CBG": 421010317003.0, "Median Dwell Time": 7.0, "Total Spend": 8833.0, "Total Transactions": 651.0, "Total Customers": 382.0, "Median Spend per Transaction": 12.38, "Median Spend per Customer": 18.38 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-234@628-pmf-jd9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste F1", "LATITUDE": 39.95232, "LONGITUDE": -75.167812, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 2928.0, "Total Transactions": 248.0, "Total Customers": 139.0, "Median Spend per Transaction": 11.78, "Median Spend per Customer": 13.65 }, "geometry": { "type": "Point", "coordinates": [ -75.167812, 39.95232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "Name": "Christie's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1822 Spring Garden St Unit B", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2023, "Total Visits": 108.0, "Total Visitors": 68.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 5.0, "Total Spend": 4063.0, "Total Transactions": 292.0, "Total Customers": 163.0, "Median Spend per Transaction": 12.61, "Median Spend per Customer": 18.33 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-224@628-pmb-fcq", "Name": "Poke Burri Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "255 S 10th St", "LATITUDE": 39.946753, "LONGITUDE": -75.15758, "DATE_RANGE_START": 2023, "Total Visits": 343.0, "Total Visitors": 159.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 7.0, "Total Spend": 629.0, "Total Transactions": 33.0, "Total Customers": 23.0, "Median Spend per Transaction": 16.88, "Median Spend per Customer": 24.41 }, "geometry": { "type": "Point", "coordinates": [ -75.15758, 39.946753 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-223@628-pfz-bzf", "Name": "Yanako", "Category": "Restaurants and Other Eating Places", "Address": "4345 Main St", "LATITUDE": 40.025622, "LONGITUDE": -75.223563, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 59.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 174.0, "Total Spend": 4362.0, "Total Transactions": 65.0, "Total Customers": 61.0, "Median Spend per Transaction": 60.96, "Median Spend per Customer": 61.16 }, "geometry": { "type": "Point", "coordinates": [ -75.223563, 40.025622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "Name": "Falafel Time", "Category": "Restaurants and Other Eating Places", "Address": "2214 South St", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 124.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 8.0, "Total Spend": 423.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 14.41, "Median Spend per Customer": 13.87 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "2422 W Passyunk Ave", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2023, "Total Visits": 144.0, "Total Visitors": 115.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 9.0, "Total Spend": 5163.0, "Total Transactions": 344.0, "Total Customers": 273.0, "Median Spend per Transaction": 12.46, "Median Spend per Customer": 14.46 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-bp9", "Name": "Brown Street Coffee & Banhery", "Category": "Restaurants and Other Eating Places", "Address": "2545 Brown St", "LATITUDE": 39.970469, "LONGITUDE": -75.179503, "DATE_RANGE_START": 2023, "Total Visits": 247.0, "Total Visitors": 214.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 2.0, "Total Spend": 886.0, "Total Transactions": 74.0, "Total Customers": 33.0, "Median Spend per Transaction": 10.26, "Median Spend per Customer": 21.35 }, "geometry": { "type": "Point", "coordinates": [ -75.179503, 39.970469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-n89", "Name": "Southside Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "5213 Market St", "LATITUDE": 39.960341, "LONGITUDE": -75.225407, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 13.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 230.0, "Total Spend": 462.0, "Total Transactions": 33.0, "Total Customers": 30.0, "Median Spend per Transaction": 12.12, "Median Spend per Customer": 12.27 }, "geometry": { "type": "Point", "coordinates": [ -75.225407, 39.960341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "Name": "Quaker Diner", "Category": "Restaurants and Other Eating Places", "Address": "7241 Rising Sun Ave", "LATITUDE": 40.060575, "LONGITUDE": -75.084417, "DATE_RANGE_START": 2023, "Total Visits": 10.0, "Total Visitors": 9.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 47.0, "Total Spend": 3071.0, "Total Transactions": 109.0, "Total Customers": 69.0, "Median Spend per Transaction": 25.76, "Median Spend per Customer": 34.29 }, "geometry": { "type": "Point", "coordinates": [ -75.084417, 40.060575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "Name": "Ganaan Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5909 N 5th St", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010274011.0, "Median Dwell Time": null, "Total Spend": 2765.0, "Total Transactions": 85.0, "Total Customers": 68.0, "Median Spend per Transaction": 29.0, "Median Spend per Customer": 36.75 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-td9", "Name": "Campus Pizza Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1000 Diamond St Ste 114", "LATITUDE": 39.983716, "LONGITUDE": -75.149807, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 114.0, "POI_CBG": 421010377002.0, "Median Dwell Time": 69.0, "Total Spend": 41.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 16.45, "Median Spend per Customer": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.149807, 39.983716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "Name": "Tattooed Mom", "Category": "Restaurants and Other Eating Places", "Address": "530 South St", "LATITUDE": 39.941715, "LONGITUDE": -75.151895, "DATE_RANGE_START": 2023, "Total Visits": 461.0, "Total Visitors": 461.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 35.0, "Total Spend": 22767.0, "Total Transactions": 664.0, "Total Customers": 539.0, "Median Spend per Transaction": 27.05, "Median Spend per Customer": 31.87 }, "geometry": { "type": "Point", "coordinates": [ -75.151895, 39.941715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "Name": "New Star Express Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5202 Lancaster Ave", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 188.0, "POI_CBG": 421010111004.0, "Median Dwell Time": 6.0, "Total Spend": 2507.0, "Total Transactions": 78.0, "Total Customers": 59.0, "Median Spend per Transaction": 30.27, "Median Spend per Customer": 31.71 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "716 Adams Ave", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 185.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 13.0, "Total Spend": 2015.0, "Total Transactions": 119.0, "Total Customers": 106.0, "Median Spend per Transaction": 13.43, "Median Spend per Customer": 15.44 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5fz", "Name": "Cogito Coffee", "Category": "Restaurants and Other Eating Places", "Address": "105 S 12th St", "LATITUDE": 39.949868, "LONGITUDE": -75.160219, "DATE_RANGE_START": 2023, "Total Visits": 4640.0, "Total Visitors": 2981.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 12.0, "Total Spend": 92.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 5.63, "Median Spend per Customer": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160219, 39.949868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-st9", "Name": "Osteria", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "640 N Broad St", "LATITUDE": 39.965024, "LONGITUDE": -75.161082, "DATE_RANGE_START": 2023, "Total Visits": 738.0, "Total Visitors": 524.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 85.0, "Total Spend": 2492.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 88.0, "Median Spend per Customer": 96.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161082, 39.965024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1801 John F Kennedy Blvd", "LATITUDE": 39.954427, "LONGITUDE": -75.169903, "DATE_RANGE_START": 2023, "Total Visits": 209.0, "Total Visitors": 147.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 15695.0, "Total Transactions": 306.0, "Total Customers": 228.0, "Median Spend per Transaction": 34.9, "Median Spend per Customer": 40.95 }, "geometry": { "type": "Point", "coordinates": [ -75.169903, 39.954427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "Name": "Red Lobster", "Category": "Restaurants and Other Eating Places", "Address": "9140 Roosevelt Blvd", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2023, "Total Visits": 669.0, "Total Visitors": 536.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 70.0, "Total Spend": 14439.0, "Total Transactions": 169.0, "Total Customers": 157.0, "Median Spend per Transaction": 78.22, "Median Spend per Customer": 81.3 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm4-ct9", "Name": "Hibachi 2 Go", "Category": "Restaurants and Other Eating Places", "Address": "1414 Snyder Ave", "LATITUDE": 39.924257, "LONGITUDE": -75.170377, "DATE_RANGE_START": 2023, "Total Visits": 60.0, "Total Visitors": 60.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 9.0, "Total Spend": 324.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 24.82, "Median Spend per Customer": 22.67 }, "geometry": { "type": "Point", "coordinates": [ -75.170377, 39.924257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "Name": "Little Italy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "901 South St", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2023, "Total Visits": 167.0, "Total Visitors": 167.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 51.0, "Total Spend": 2988.0, "Total Transactions": 164.0, "Total Customers": 124.0, "Median Spend per Transaction": 14.42, "Median Spend per Customer": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2901 Abbottsford Ave", "LATITUDE": 40.01513, "LONGITUDE": -75.178205, "DATE_RANGE_START": 2023, "Total Visits": 44.0, "Total Visitors": 35.0, "POI_CBG": 421010206001.0, "Median Dwell Time": 8.0, "Total Spend": 3309.0, "Total Transactions": 457.0, "Total Customers": 205.0, "Median Spend per Transaction": 6.69, "Median Spend per Customer": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.178205, 40.01513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St", "LATITUDE": 40.024675, "LONGITUDE": -75.147531, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010283003.0, "Median Dwell Time": 5.0, "Total Spend": 3536.0, "Total Transactions": 431.0, "Total Customers": 182.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 7.83 }, "geometry": { "type": "Point", "coordinates": [ -75.147531, 40.024675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "Name": "Olive Garden", "Category": "Restaurants and Other Eating Places", "Address": "9280 Roosevelt Blvd", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2023, "Total Visits": 1264.0, "Total Visitors": 1230.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 44.0, "Total Spend": 17586.0, "Total Transactions": 257.0, "Total Customers": 238.0, "Median Spend per Transaction": 62.05, "Median Spend per Customer": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-xnq", "Name": "The Halal Guys", "Category": "Restaurants and Other Eating Places", "Address": "1016 Race St", "LATITUDE": 39.955232, "LONGITUDE": -75.156428, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 284.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 18.07 }, "geometry": { "type": "Point", "coordinates": [ -75.156428, 39.955232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvr-5pv", "Name": "Jim's Food Market", "Category": "Restaurants and Other Eating Places", "Address": "2900 S 61st St", "LATITUDE": 39.923383, "LONGITUDE": -75.221531, "DATE_RANGE_START": 2023, "Total Visits": 122.0, "Total Visitors": 110.0, "POI_CBG": 421010067001.0, "Median Dwell Time": 196.0, "Total Spend": 174.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 20.15, "Median Spend per Customer": 20.15 }, "geometry": { "type": "Point", "coordinates": [ -75.221531, 39.923383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "Name": "Ray's Cafe & Teahouse", "Category": "Restaurants and Other Eating Places", "Address": "141 N 9th St", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2023, "Total Visits": 185.0, "Total Visitors": 185.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 44.0, "Total Spend": 142.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 56.6, "Median Spend per Customer": 56.6 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-ty9", "Name": "Sakura Japanese Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1521 Spring Garden St", "LATITUDE": 39.962988, "LONGITUDE": -75.163765, "DATE_RANGE_START": 2023, "Total Visits": 70.0, "Total Visitors": 70.0, "POI_CBG": 421010133001.0, "Median Dwell Time": null, "Total Spend": 404.0, "Total Transactions": 19.0, "Total Customers": 15.0, "Median Spend per Transaction": 15.71, "Median Spend per Customer": 17.14 }, "geometry": { "type": "Point", "coordinates": [ -75.163765, 39.962988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.962997, "LONGITUDE": -75.174044, "DATE_RANGE_START": 2023, "Total Visits": 2444.0, "Total Visitors": 1404.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 16.0, "Total Spend": 118155.0, "Total Transactions": 2856.0, "Total Customers": 1165.0, "Median Spend per Transaction": 24.38, "Median Spend per Customer": 48.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174044, 39.962997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgd-zxq", "Name": "GIANT Heirloom Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "3401 Chestnut St", "LATITUDE": 39.954753, "LONGITUDE": -75.191926, "DATE_RANGE_START": 2023, "Total Visits": 1368.0, "Total Visitors": 770.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 74.0, "Total Spend": 18998.0, "Total Transactions": 833.0, "Total Customers": 460.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.191926, 39.954753 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5400 Rising Sun Ave", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2023, "Total Visits": 391.0, "Total Visitors": 246.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 11.0, "Total Spend": 5623.0, "Total Transactions": 274.0, "Total Customers": 192.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmb-5cq", "Name": "AHF Pharmacy Philadelphia", "Category": "Health and Personal Care Stores", "Address": "1211 Chestnut St Ste 405", "LATITUDE": 39.950759, "LONGITUDE": -75.160674, "DATE_RANGE_START": 2023, "Total Visits": 4506.0, "Total Visitors": 3150.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 133.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 53.03, "Median Spend per Customer": 53.03 }, "geometry": { "type": "Point", "coordinates": [ -75.160674, 39.950759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "3551 Aramingo Ave", "LATITUDE": 39.992771, "LONGITUDE": -75.09764, "DATE_RANGE_START": 2023, "Total Visits": 18.0, "Total Visitors": 15.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 5.0, "Total Spend": 7740.0, "Total Transactions": 441.0, "Total Customers": 318.0, "Median Spend per Transaction": 14.3, "Median Spend per Customer": 17.77 }, "geometry": { "type": "Point", "coordinates": [ -75.09764, 39.992771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "4421 Main St", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2023, "Total Visits": 190.0, "Total Visitors": 180.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 36.0, "Total Spend": 274.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 30.46, "Median Spend per Customer": 30.46 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9w-psq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "11750 Bustleton Ave", "LATITUDE": 40.120488, "LONGITUDE": -75.01815, "DATE_RANGE_START": 2023, "Total Visits": 679.0, "Total Visitors": 526.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 8.0, "Total Spend": 7195.0, "Total Transactions": 373.0, "Total Customers": 202.0, "Median Spend per Transaction": 11.17, "Median Spend per Customer": 27.23 }, "geometry": { "type": "Point", "coordinates": [ -75.01815, 40.120488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "Name": "Moshulu", "Category": "Restaurants and Other Eating Places", "Address": "401 S Columbus Blvd", "LATITUDE": 39.942327, "LONGITUDE": -75.141319, "DATE_RANGE_START": 2023, "Total Visits": 1685.0, "Total Visitors": 1207.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 37.0, "Total Spend": 8792.0, "Total Transactions": 94.0, "Total Customers": 78.0, "Median Spend per Transaction": 43.04, "Median Spend per Customer": 57.33 }, "geometry": { "type": "Point", "coordinates": [ -75.141319, 39.942327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "9499 Roosevelt Blvd", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2023, "Total Visits": 1036.0, "Total Visitors": 757.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 4226.0, "Total Transactions": 184.0, "Total Customers": 144.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 24.91 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "Name": "Crunchik'n", "Category": "Restaurants and Other Eating Places", "Address": "1428 Cecil B Moore Ave", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2023, "Total Visits": 2256.0, "Total Visitors": 1166.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 370.0, "Total Spend": 161.0, "Total Transactions": 10.0, "Total Customers": 9.0, "Median Spend per Transaction": 16.18, "Median Spend per Customer": 13.91 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "Name": "Race Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "208 Race St", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2023, "Total Visits": 158.0, "Total Visitors": 139.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 46.0, "Total Spend": 495.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 46.58, "Median Spend per Customer": 46.58 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4201 N Marshall St", "LATITUDE": 40.015674, "LONGITUDE": -75.137715, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 10.0, "POI_CBG": 421010197004.0, "Median Dwell Time": 7.0, "Total Spend": 15080.0, "Total Transactions": 249.0, "Total Customers": 104.0, "Median Spend per Transaction": 9.17, "Median Spend per Customer": 37.35 }, "geometry": { "type": "Point", "coordinates": [ -75.137715, 40.015674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-p7x-b6k", "Name": "Amana Food Market", "Category": "Restaurants and Other Eating Places", "Address": "6746 Bustleton Ave", "LATITUDE": 40.040393, "LONGITUDE": -75.065848, "DATE_RANGE_START": 2023, "Total Visits": 888.0, "Total Visitors": 572.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 25.0, "Total Spend": 859.0, "Total Transactions": 43.0, "Total Customers": 30.0, "Median Spend per Transaction": 15.42, "Median Spend per Customer": 25.31 }, "geometry": { "type": "Point", "coordinates": [ -75.065848, 40.040393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "Name": "Philadelphia Pharmacy", "Category": "Health and Personal Care Stores", "Address": "101 E Lehigh Ave # 03", "LATITUDE": 39.99116, "LONGITUDE": -75.130662, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 2.0, "Total Spend": 327.0, "Total Transactions": 20.0, "Total Customers": 10.0, "Median Spend per Transaction": 17.22, "Median Spend per Customer": 22.63 }, "geometry": { "type": "Point", "coordinates": [ -75.130662, 39.99116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.914004, "LONGITUDE": -75.154448, "DATE_RANGE_START": 2023, "Total Visits": 2042.0, "Total Visitors": 1844.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 62.0, "Total Spend": 733.0, "Total Transactions": 9.0, "Total Customers": 4.0, "Median Spend per Transaction": 85.23, "Median Spend per Customer": 234.97 }, "geometry": { "type": "Point", "coordinates": [ -75.154448, 39.914004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-s5z", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.011063, "LONGITUDE": -75.115609, "DATE_RANGE_START": 2023, "Total Visits": 43.0, "Total Visitors": 26.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 24.0, "Total Spend": 2221.0, "Total Transactions": 33.0, "Total Customers": 31.0, "Median Spend per Transaction": 24.56, "Median Spend per Customer": 19.98 }, "geometry": { "type": "Point", "coordinates": [ -75.115609, 40.011063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2327 Cottman Ave", "LATITUDE": 40.047627, "LONGITUDE": -75.055186, "DATE_RANGE_START": 2023, "Total Visits": 411.0, "Total Visitors": 386.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 28.0, "Total Spend": 11145.0, "Total Transactions": 269.0, "Total Customers": 205.0, "Median Spend per Transaction": 23.98, "Median Spend per Customer": 38.75 }, "geometry": { "type": "Point", "coordinates": [ -75.055186, 40.047627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-v4v", "Name": "Olde City Food Market", "Category": "Grocery Stores", "Address": "202 Market St", "LATITUDE": 39.949742, "LONGITUDE": -75.144049, "DATE_RANGE_START": 2023, "Total Visits": 234.0, "Total Visitors": 198.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 82.0, "Total Transactions": 8.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 32.61 }, "geometry": { "type": "Point", "coordinates": [ -75.144049, 39.949742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm3-wff", "Name": "Passyunk Market", "Category": "Grocery Stores", "Address": "1407 E Passyunk Ave", "LATITUDE": 39.931431, "LONGITUDE": -75.161312, "DATE_RANGE_START": 2023, "Total Visits": 390.0, "Total Visitors": 233.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 92.0, "Total Spend": 572.0, "Total Transactions": 29.0, "Total Customers": 16.0, "Median Spend per Transaction": 22.35, "Median Spend per Customer": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.161312, 39.931431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kpv", "Name": "Pearl", "Category": "Restaurants and Other Eating Places", "Address": "1904 Chestnut St", "LATITUDE": 39.951744, "LONGITUDE": -75.172393, "DATE_RANGE_START": 2023, "Total Visits": 2870.0, "Total Visitors": 2053.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 7.0, "Total Spend": 154.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 41.24, "Median Spend per Customer": 41.24 }, "geometry": { "type": "Point", "coordinates": [ -75.172393, 39.951744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6110 Woodland Ave", "LATITUDE": 39.928884, "LONGITUDE": -75.229306, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 4.0, "Total Spend": 2854.0, "Total Transactions": 302.0, "Total Customers": 157.0, "Median Spend per Transaction": 7.83, "Median Spend per Customer": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -75.229306, 39.928884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "717 E Girard Ave", "LATITUDE": 39.972302, "LONGITUDE": -75.125646, "DATE_RANGE_START": 2023, "Total Visits": 675.0, "Total Visitors": 306.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 59.0, "Total Spend": 2771.0, "Total Transactions": 410.0, "Total Customers": 213.0, "Median Spend per Transaction": 5.67, "Median Spend per Customer": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -75.125646, 39.972302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "101 E Olney Ave", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2023, "Total Visits": 354.0, "Total Visitors": 333.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 20.0, "Total Spend": 7178.0, "Total Transactions": 512.0, "Total Customers": 363.0, "Median Spend per Transaction": 12.07, "Median Spend per Customer": 15.58 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "Name": "Monster Pets", "Category": "Other Miscellaneous Store Retailers", "Address": "1946 S Columbus Blvd", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2023, "Total Visits": 296.0, "Total Visitors": 258.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 7.0, "Total Spend": 524.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 63.68, "Median Spend per Customer": 63.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pzp-2zf", "Name": "Station Pizza", "Category": "Restaurants and Other Eating Places", "Address": "14102 Bustleton Ave", "LATITUDE": 40.131988, "LONGITUDE": -75.012285, "DATE_RANGE_START": 2023, "Total Visits": 252.0, "Total Visitors": 222.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 11.0, "Total Spend": 3250.0, "Total Transactions": 96.0, "Total Customers": 68.0, "Median Spend per Transaction": 24.53, "Median Spend per Customer": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.012285, 40.131988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "Name": "Luigi's Pizza Fresca", "Category": "Restaurants and Other Eating Places", "Address": "2401 Fairmount Ave", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2023, "Total Visits": 532.0, "Total Visitors": 279.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 32.0, "Total Spend": 443.0, "Total Transactions": 20.0, "Total Customers": 19.0, "Median Spend per Transaction": 18.85, "Median Spend per Customer": 18.52 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pm9-wc5", "Name": "Rustica Rosticceria", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949727, "LONGITUDE": -75.148072, "DATE_RANGE_START": 2023, "Total Visits": 2253.0, "Total Visitors": 1931.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 16.0, "Total Spend": 96.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 15.55, "Median Spend per Customer": 15.55 }, "geometry": { "type": "Point", "coordinates": [ -75.148072, 39.949727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pm4-pvz", "Name": "Lorenzo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "900 Christian St", "LATITUDE": 39.938858, "LONGITUDE": -75.157989, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 248.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 1.0, "Total Spend": 190.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 35.74, "Median Spend per Customer": 35.74 }, "geometry": { "type": "Point", "coordinates": [ -75.157989, 39.938858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-6tv", "Name": "Allen Tire & Service", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6301 Rising Sun Ave", "LATITUDE": 40.048405, "LONGITUDE": -75.096529, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 44.0, "POI_CBG": 421010306003.0, "Median Dwell Time": null, "Total Spend": 1900.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 388.36, "Median Spend per Customer": 388.36 }, "geometry": { "type": "Point", "coordinates": [ -75.096529, 40.048405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-py9", "Name": "Colomy Paint & Decorating Llc", "Category": "Building Material and Supplies Dealers", "Address": "210 W Girard Ave", "LATITUDE": 39.969376, "LONGITUDE": -75.140197, "DATE_RANGE_START": 2023, "Total Visits": 852.0, "Total Visitors": 802.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 5.0, "Total Spend": 116.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 46.4, "Median Spend per Customer": 46.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140197, 39.969376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnw-psq", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "180 W Girard Ave", "LATITUDE": 39.969094, "LONGITUDE": -75.139046, "DATE_RANGE_START": 2023, "Total Visits": 2058.0, "Total Visitors": 1046.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 29.0, "Total Spend": 176472.0, "Total Transactions": 4569.0, "Total Customers": 2086.0, "Median Spend per Transaction": 24.19, "Median Spend per Customer": 41.46 }, "geometry": { "type": "Point", "coordinates": [ -75.139046, 39.969094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6001 Ridge Ave", "LATITUDE": 40.031983, "LONGITUDE": -75.213303, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 94.0, "Total Spend": 2006.0, "Total Transactions": 73.0, "Total Customers": 55.0, "Median Spend per Transaction": 27.17, "Median Spend per Customer": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.213303, 40.031983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5901 Rising Sun Ave", "LATITUDE": 40.044002, "LONGITUDE": -75.10221, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 5.0, "Total Spend": 6262.0, "Total Transactions": 695.0, "Total Customers": 209.0, "Median Spend per Transaction": 10.12, "Median Spend per Customer": 10.52 }, "geometry": { "type": "Point", "coordinates": [ -75.10221, 40.044002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-ph5-wc5", "Name": "Four Seasons", "Category": "Traveler Accommodation", "Address": "1468 N 60th St", "LATITUDE": 39.97425, "LONGITUDE": -75.240201, "DATE_RANGE_START": 2023, "Total Visits": 217.0, "Total Visitors": 44.0, "POI_CBG": 421010101001.0, "Median Dwell Time": 363.0, "Total Spend": 461.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 22.9, "Median Spend per Customer": 33.95 }, "geometry": { "type": "Point", "coordinates": [ -75.240201, 39.97425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj9-6p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5810 N Broad St", "LATITUDE": 40.042511, "LONGITUDE": -75.144222, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010278002.0, "Median Dwell Time": 3.0, "Total Spend": 2461.0, "Total Transactions": 56.0, "Total Customers": 35.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 27.59 }, "geometry": { "type": "Point", "coordinates": [ -75.144222, 40.042511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-qs5", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2500 Island Ave @ Elmwood Ave", "LATITUDE": 39.912638, "LONGITUDE": -75.243535, "DATE_RANGE_START": 2023, "Total Visits": 218.0, "Total Visitors": 138.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 4.0, "Total Spend": 1547.0, "Total Transactions": 51.0, "Total Customers": 33.0, "Median Spend per Transaction": 28.02, "Median Spend per Customer": 41.86 }, "geometry": { "type": "Point", "coordinates": [ -75.243535, 39.912638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "Name": "NO 1 China", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2023, "Total Visits": 572.0, "Total Visitors": 485.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 24.0, "Total Spend": 539.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 20.48, "Median Spend per Customer": 30.19 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgf-g49", "Name": "Texas Wiener", "Category": "Restaurants and Other Eating Places", "Address": "3963 Lancaster Ave", "LATITUDE": 39.963218, "LONGITUDE": -75.20203, "DATE_RANGE_START": 2023, "Total Visits": 331.0, "Total Visitors": 195.0, "POI_CBG": 421010108004.0, "Median Dwell Time": 42.0, "Total Spend": 784.0, "Total Transactions": 59.0, "Total Customers": 43.0, "Median Spend per Transaction": 9.33, "Median Spend per Customer": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.20203, 39.963218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvy-p9z", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "200 S 40th St", "LATITUDE": 39.953836, "LONGITUDE": -75.203059, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 48.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 11.0, "Total Spend": 5058.0, "Total Transactions": 347.0, "Total Customers": 244.0, "Median Spend per Transaction": 12.25, "Median Spend per Customer": 16.31 }, "geometry": { "type": "Point", "coordinates": [ -75.203059, 39.953836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9834 Bustleton Ave", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2023, "Total Visits": 630.0, "Total Visitors": 531.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 7.0, "Total Spend": 5304.0, "Total Transactions": 658.0, "Total Customers": 263.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2023, "Total Visits": 758.0, "Total Visitors": 669.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 25.0, "Total Spend": 55381.0, "Total Transactions": 1471.0, "Total Customers": 1185.0, "Median Spend per Transaction": 24.81, "Median Spend per Customer": 28.56 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-phy-4vz", "Name": "Paulino Grocery", "Category": "Grocery Stores", "Address": "140 E Wyoming Ave", "LATITUDE": 40.021133, "LONGITUDE": -75.122686, "DATE_RANGE_START": 2023, "Total Visits": 133.0, "Total Visitors": 109.0, "POI_CBG": 421010288001.0, "Median Dwell Time": 12.0, "Total Spend": 181.0, "Total Transactions": 19.0, "Total Customers": 6.0, "Median Spend per Transaction": 10.49, "Median Spend per Customer": 21.24 }, "geometry": { "type": "Point", "coordinates": [ -75.122686, 40.021133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-ks5", "Name": "Ribs R' Us", "Category": "Restaurants and Other Eating Places", "Address": "4912 N 5th St", "LATITUDE": 40.026224, "LONGITUDE": -75.133, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010285001.0, "Median Dwell Time": 14.0, "Total Spend": 335.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 41.57, "Median Spend per Customer": 41.57 }, "geometry": { "type": "Point", "coordinates": [ -75.133, 40.026224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "Name": "Best Buy Furniture", "Category": "Furniture Stores", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.07668, "LONGITUDE": -75.026214, "DATE_RANGE_START": 2023, "Total Visits": 774.0, "Total Visitors": 487.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 57.0, "Total Spend": 8293.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 592.0, "Median Spend per Customer": 592.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026214, 40.07668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-pjv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2401 E Venango St", "LATITUDE": 39.993233, "LONGITUDE": -75.096202, "DATE_RANGE_START": 2023, "Total Visits": 536.0, "Total Visitors": 457.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 11.0, "Total Spend": 6259.0, "Total Transactions": 292.0, "Total Customers": 213.0, "Median Spend per Transaction": 15.42, "Median Spend per Customer": 19.95 }, "geometry": { "type": "Point", "coordinates": [ -75.096202, 39.993233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7z-tgk", "Name": "Pharmacy of America VI", "Category": "Health and Personal Care Stores", "Address": "919 Levick St", "LATITUDE": 40.045178, "LONGITUDE": -75.086639, "DATE_RANGE_START": 2023, "Total Visits": 1184.0, "Total Visitors": 799.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 26.0, "Total Spend": 1181.0, "Total Transactions": 61.0, "Total Customers": 36.0, "Median Spend per Transaction": 19.33, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.086639, 40.045178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1675 S Columbus Blvd", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2023, "Total Visits": 7794.0, "Total Visitors": 5033.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 38.0, "Total Spend": 4028.0, "Total Transactions": 539.0, "Total Customers": 230.0, "Median Spend per Transaction": 5.92, "Median Spend per Customer": 10.37 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm3-t5f", "Name": "Black & Brew", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Passyunk Ave", "LATITUDE": 39.93027, "LONGITUDE": -75.162757, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 7.0, "Total Spend": 285.0, "Total Transactions": 10.0, "Total Customers": 6.0, "Median Spend per Transaction": 27.85, "Median Spend per Customer": 47.44 }, "geometry": { "type": "Point", "coordinates": [ -75.162757, 39.93027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "2104 Market St", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2023, "Total Visits": 319.0, "Total Visitors": 229.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 5.0, "Total Spend": 197.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 14.63 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "3619 Aramingo Ave", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2023, "Total Visits": 581.0, "Total Visitors": 456.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 10.0, "Total Spend": 10092.0, "Total Transactions": 601.0, "Total Customers": 446.0, "Median Spend per Transaction": 14.18, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9p-z75", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "9920 Bustleton Ave", "LATITUDE": 40.101327, "LONGITUDE": -75.030153, "DATE_RANGE_START": 2023, "Total Visits": 978.0, "Total Visitors": 757.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 9.0, "Total Spend": 12391.0, "Total Transactions": 494.0, "Total Customers": 348.0, "Median Spend per Transaction": 19.53, "Median Spend per Customer": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.030153, 40.101327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "Name": "Calvin Klein", "Category": "Clothing Stores", "Address": "1889 Franklin Mills Cir", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2023, "Total Visits": 302.0, "Total Visitors": 302.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 53.0, "Total Spend": 3114.0, "Total Transactions": 53.0, "Total Customers": 46.0, "Median Spend per Transaction": 28.96, "Median Spend per Customer": 29.12 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "117 S 16th St", "LATITUDE": 39.950573, "LONGITUDE": -75.167127, "DATE_RANGE_START": 2023, "Total Visits": 6674.0, "Total Visitors": 4842.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 5593.0, "Total Transactions": 893.0, "Total Customers": 357.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 6.14 }, "geometry": { "type": "Point", "coordinates": [ -75.167127, 39.950573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dwg-cbk", "Name": "Hot Spot Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7000 Elmwood Ave", "LATITUDE": 39.916984, "LONGITUDE": -75.237394, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 187.0, "POI_CBG": 421010060005.0, "Median Dwell Time": 9.0, "Total Spend": 83.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 10.77, "Median Spend per Customer": 14.28 }, "geometry": { "type": "Point", "coordinates": [ -75.237394, 39.916984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "Name": "Yakitori Boy", "Category": "Restaurants and Other Eating Places", "Address": "211 N 11th St", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2023, "Total Visits": 276.0, "Total Visitors": 263.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 16.0, "Total Spend": 14116.0, "Total Transactions": 132.0, "Total Customers": 115.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 52.49 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-yqf", "Name": "Shiao Lan Kung", "Category": "Restaurants and Other Eating Places", "Address": "930 Race St", "LATITUDE": 39.955118, "LONGITUDE": -75.15524, "DATE_RANGE_START": 2023, "Total Visits": 21368.0, "Total Visitors": 14769.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 484.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 74.82, "Median Spend per Customer": 74.82 }, "geometry": { "type": "Point", "coordinates": [ -75.15524, 39.955118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zxq", "Name": "Sky Store", "Category": "Other Miscellaneous Store Retailers", "Address": "632 South St", "LATITUDE": 39.941905, "LONGITUDE": -75.153237, "DATE_RANGE_START": 2023, "Total Visits": 849.0, "Total Visitors": 698.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 6.0, "Total Spend": 2848.0, "Total Transactions": 154.0, "Total Customers": 65.0, "Median Spend per Transaction": 14.16, "Median Spend per Customer": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.153237, 39.941905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "Name": "Cry Baby Pasta", "Category": "Restaurants and Other Eating Places", "Address": "627 S 3rd St", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2023, "Total Visits": 754.0, "Total Visitors": 635.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 21.0, "Total Spend": 1538.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 93.77, "Median Spend per Customer": 95.18 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "8525 Frankford Ave", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2023, "Total Visits": 679.0, "Total Visitors": 532.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 10.0, "Total Spend": 2641.0, "Total Transactions": 106.0, "Total Customers": 83.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "Name": "Bloomsday Cafe", "Category": "Restaurants and Other Eating Places", "Address": "414 S 2nd St", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2023, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010010021.0, "Median Dwell Time": null, "Total Spend": 1581.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 46.74, "Median Spend per Customer": 49.96 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-h5z", "Name": "Ground Up Coffee Shop", "Category": "Restaurants and Other Eating Places", "Address": "1926 E Passyunk Ave", "LATITUDE": 39.926043, "LONGITUDE": -75.168183, "DATE_RANGE_START": 2023, "Total Visits": 501.0, "Total Visitors": 365.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 15.0, "Total Spend": 111.0, "Total Transactions": 14.0, "Total Customers": 8.0, "Median Spend per Transaction": 4.99, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.168183, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@63s-dvr-cyv", "Name": "A&j Supermarket", "Category": "Grocery Stores", "Address": "6530 Elmwood Ave", "LATITUDE": 39.921213, "LONGITUDE": -75.231221, "DATE_RANGE_START": 2023, "Total Visits": 232.0, "Total Visitors": 212.0, "POI_CBG": 421010062001.0, "Median Dwell Time": 6.0, "Total Spend": 123.0, "Total Transactions": 13.0, "Total Customers": 6.0, "Median Spend per Transaction": 8.39, "Median Spend per Customer": 14.79 }, "geometry": { "type": "Point", "coordinates": [ -75.231221, 39.921213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pnw-n89", "Name": "Bagels & Co", "Category": "Restaurants and Other Eating Places", "Address": "1001 N 2nd St Ste Ef", "LATITUDE": 39.966819, "LONGITUDE": -75.139896, "DATE_RANGE_START": 2023, "Total Visits": 317.0, "Total Visitors": 228.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 4.0, "Total Spend": 3029.0, "Total Transactions": 264.0, "Total Customers": 179.0, "Median Spend per Transaction": 9.97, "Median Spend per Customer": 13.04 }, "geometry": { "type": "Point", "coordinates": [ -75.139896, 39.966819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6900 Lindbergh Blvd", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2023, "Total Visits": 825.0, "Total Visitors": 664.0, "POI_CBG": 421010061001.0, "Median Dwell Time": 11.0, "Total Spend": 2416.0, "Total Transactions": 153.0, "Total Customers": 113.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp5-7wk", "Name": "Friendly Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2258 N Front St", "LATITUDE": 39.984702, "LONGITUDE": -75.132436, "DATE_RANGE_START": 2023, "Total Visits": 4470.0, "Total Visitors": 1969.0, "POI_CBG": 421010162001.0, "Median Dwell Time": 7.0, "Total Spend": 44.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.69, "Median Spend per Customer": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.132436, 39.984702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pmf-kpv", "Name": "Je Suis Jolie", "Category": "Clothing Stores", "Address": "114 S 19th St", "LATITUDE": 39.951335, "LONGITUDE": -75.172169, "DATE_RANGE_START": 2023, "Total Visits": 2870.0, "Total Visitors": 2053.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 7.0, "Total Spend": 426.0, "Total Transactions": 6.0, "Total Customers": 6.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172169, 39.951335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-xqz", "Name": "The Original Turkey", "Category": "Restaurants and Other Eating Places", "Address": "45 N 12th St", "LATITUDE": 39.956427, "LONGITUDE": -75.158805, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 198.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 4317.0, "Total Transactions": 276.0, "Total Customers": 228.0, "Median Spend per Transaction": 14.44, "Median Spend per Customer": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.158805, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1812 W Cheltenham Ave", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2023, "Total Visits": 292.0, "Total Visitors": 169.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 30.0, "Total Spend": 1308.0, "Total Transactions": 115.0, "Total Customers": 90.0, "Median Spend per Transaction": 7.36, "Median Spend per Customer": 8.15 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "Name": "Menagerie Coffee", "Category": "Restaurants and Other Eating Places", "Address": "18 S 3rd St", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2023, "Total Visits": 230.0, "Total Visitors": 100.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 10.0, "Total Spend": 6608.0, "Total Transactions": 728.0, "Total Customers": 416.0, "Median Spend per Transaction": 7.59, "Median Spend per Customer": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2023, "Total Visits": 490.0, "Total Visitors": 441.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 15.0, "Total Spend": 6029.0, "Total Transactions": 525.0, "Total Customers": 232.0, "Median Spend per Transaction": 8.29, "Median Spend per Customer": 11.63 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "Name": "New London Pizza", "Category": "Restaurants and Other Eating Places", "Address": "500 E Wyoming Ave", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2023, "Total Visits": 159.0, "Total Visitors": 74.0, "POI_CBG": 421010289013.0, "Median Dwell Time": 15.0, "Total Spend": 5241.0, "Total Transactions": 180.0, "Total Customers": 114.0, "Median Spend per Transaction": 25.25, "Median Spend per Customer": 32.85 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-vpv", "Name": "Urban Saloon", "Category": "Restaurants and Other Eating Places", "Address": "2120 Fairmount Ave", "LATITUDE": 39.967182, "LONGITUDE": -75.172904, "DATE_RANGE_START": 2023, "Total Visits": 491.0, "Total Visitors": 339.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 38.0, "Total Spend": 26658.0, "Total Transactions": 478.0, "Total Customers": 347.0, "Median Spend per Transaction": 43.11, "Median Spend per Customer": 54.6 }, "geometry": { "type": "Point", "coordinates": [ -75.172904, 39.967182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pj3-k9f", "Name": "Deke's BBQ", "Category": "Restaurants and Other Eating Places", "Address": "137 W Berkley St", "LATITUDE": 40.023086, "LONGITUDE": -75.161807, "DATE_RANGE_START": 2023, "Total Visits": 440.0, "Total Visitors": 352.0, "POI_CBG": 421010244002.0, "Median Dwell Time": 76.0, "Total Spend": 8051.0, "Total Transactions": 148.0, "Total Customers": 128.0, "Median Spend per Transaction": 36.12, "Median Spend per Customer": 38.34 }, "geometry": { "type": "Point", "coordinates": [ -75.161807, 40.023086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-kvf", "Name": "Bolo", "Category": "Restaurants and Other Eating Places", "Address": "2025 Sansom St", "LATITUDE": 39.951589, "LONGITUDE": -75.174566, "DATE_RANGE_START": 2023, "Total Visits": 1374.0, "Total Visitors": 1131.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 24.0, "Total Spend": 1179.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 146.49, "Median Spend per Customer": 146.49 }, "geometry": { "type": "Point", "coordinates": [ -75.174566, 39.951589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-224@628-pg2-cdv", "Name": "Cherish Philly", "Category": "Restaurants and Other Eating Places", "Address": "7060 Germantown Ave", "LATITUDE": 40.058226, "LONGITUDE": -75.189354, "DATE_RANGE_START": 2023, "Total Visits": 289.0, "Total Visitors": 230.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 3.0, "Total Spend": 236.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 17.76, "Median Spend per Customer": 17.76 }, "geometry": { "type": "Point", "coordinates": [ -75.189354, 40.058226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp4-syv", "Name": "Memphis Market & Grill", "Category": "Restaurants and Other Eating Places", "Address": "2327 E Huntingdon St", "LATITUDE": 39.98172, "LONGITUDE": -75.120871, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 94.0, "POI_CBG": 421010160001.0, "Median Dwell Time": 134.0, "Total Spend": 2811.0, "Total Transactions": 187.0, "Total Customers": 53.0, "Median Spend per Transaction": 13.9, "Median Spend per Customer": 17.91 }, "geometry": { "type": "Point", "coordinates": [ -75.120871, 39.98172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-zvf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "800 S Broad St", "LATITUDE": 39.940644, "LONGITUDE": -75.166616, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 14.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 6.0, "Total Spend": 8223.0, "Total Transactions": 550.0, "Total Customers": 416.0, "Median Spend per Transaction": 12.52, "Median Spend per Customer": 15.8 }, "geometry": { "type": "Point", "coordinates": [ -75.166616, 39.940644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "Name": "Gia Pronto", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 115.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 46.0, "Total Spend": 1412.0, "Total Transactions": 173.0, "Total Customers": 140.0, "Median Spend per Transaction": 6.31, "Median Spend per Customer": 8.81 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "1200 N Broad St", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2023, "Total Visits": 229.0, "Total Visitors": 178.0, "POI_CBG": 421010140001.0, "Median Dwell Time": 8.0, "Total Spend": 1511.0, "Total Transactions": 103.0, "Total Customers": 95.0, "Median Spend per Transaction": 12.07, "Median Spend per Customer": 12.07 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "Name": "Hibiscus Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4907 Catharine St", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2023, "Total Visits": 178.0, "Total Visitors": 165.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 1.0, "Total Spend": 2193.0, "Total Transactions": 106.0, "Total Customers": 69.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "Name": "El Poquito", "Category": "Restaurants and Other Eating Places", "Address": "8201 Germantown Ave", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2023, "Total Visits": 378.0, "Total Visitors": 338.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 2.0, "Total Spend": 1700.0, "Total Transactions": 19.0, "Total Customers": 18.0, "Median Spend per Transaction": 102.66, "Median Spend per Customer": 93.77 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "Name": "El Merkury", "Category": "Restaurants and Other Eating Places", "Address": "2104 Chestnut St", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 192.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 100.0, "Total Spend": 3751.0, "Total Transactions": 224.0, "Total Customers": 200.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-92k", "Name": "Francesca's", "Category": "Clothing Stores", "Address": "901 Market St # 2045", "LATITUDE": 39.952109, "LONGITUDE": -75.155803, "DATE_RANGE_START": 2023, "Total Visits": 195.0, "Total Visitors": 162.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 4647.0, "Total Transactions": 88.0, "Total Customers": 81.0, "Median Spend per Transaction": 36.93, "Median Spend per Customer": 43.2 }, "geometry": { "type": "Point", "coordinates": [ -75.155803, 39.952109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-z9f", "Name": "Rosarios Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1501 Wharton St", "LATITUDE": 39.934489, "LONGITUDE": -75.169442, "DATE_RANGE_START": 2023, "Total Visits": 172.0, "Total Visitors": 119.0, "POI_CBG": 421010022002.0, "Median Dwell Time": 2.0, "Total Spend": 765.0, "Total Transactions": 39.0, "Total Customers": 25.0, "Median Spend per Transaction": 17.58, "Median Spend per Customer": 26.31 }, "geometry": { "type": "Point", "coordinates": [ -75.169442, 39.934489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm4-s5z", "Name": "The Pizza Place", "Category": "Restaurants and Other Eating Places", "Address": "1648 S 7th St", "LATITUDE": 39.927861, "LONGITUDE": -75.157274, "DATE_RANGE_START": 2023, "Total Visits": 81.0, "Total Visitors": 81.0, "POI_CBG": 421010028011.0, "Median Dwell Time": 9.0, "Total Spend": 457.0, "Total Transactions": 25.0, "Total Customers": 20.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157274, 39.927861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pnt-3wk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2495 Aramingo Ave", "LATITUDE": 39.974925, "LONGITUDE": -75.119418, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 6.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 7.0, "Total Spend": 944.0, "Total Transactions": 51.0, "Total Customers": 39.0, "Median Spend per Transaction": 12.69, "Median Spend per Customer": 14.18 }, "geometry": { "type": "Point", "coordinates": [ -75.119418, 39.974925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p9p-z2k", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9979 Bustleton Ave", "LATITUDE": 40.101429, "LONGITUDE": -75.028579, "DATE_RANGE_START": 2023, "Total Visits": 1705.0, "Total Visitors": 1144.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 31.0, "Total Spend": 849.0, "Total Transactions": 49.0, "Total Customers": 40.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 15.76 }, "geometry": { "type": "Point", "coordinates": [ -75.028579, 40.101429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "Name": "Bistro SouthEast", "Category": "Restaurants and Other Eating Places", "Address": "1824 South St", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2023, "Total Visits": 1254.0, "Total Visitors": 441.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 325.0, "Total Spend": 2414.0, "Total Transactions": 90.0, "Total Customers": 53.0, "Median Spend per Transaction": 22.63, "Median Spend per Customer": 27.41 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-xwk", "Name": "Hive Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1444 S Broad St", "LATITUDE": 39.931826, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 5.0, "POI_CBG": 421010030021.0, "Median Dwell Time": 5.0, "Total Spend": 3146.0, "Total Transactions": 299.0, "Total Customers": 132.0, "Median Spend per Transaction": 7.78, "Median Spend per Customer": 16.68 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.931826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "Name": "Vic Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "2035 Sansom St", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2023, "Total Visits": 368.0, "Total Visitors": 354.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 69.0, "Total Spend": 5599.0, "Total Transactions": 137.0, "Total Customers": 111.0, "Median Spend per Transaction": 32.35, "Median Spend per Customer": 37.46 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "255-222@628-pm9-y9z", "Name": "Milkboy", "Category": "Restaurants and Other Eating Places", "Address": "401 South St", "LATITUDE": 39.941731, "LONGITUDE": -75.1493, "DATE_RANGE_START": 2023, "Total Visits": 468.0, "Total Visitors": 421.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 22.0, "Total Spend": 1811.0, "Total Transactions": 48.0, "Total Customers": 35.0, "Median Spend per Transaction": 28.15, "Median Spend per Customer": 41.65 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.941731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "2946 Island Ave", "LATITUDE": 39.901275, "LONGITUDE": -75.241497, "DATE_RANGE_START": 2023, "Total Visits": 1097.0, "Total Visitors": 742.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 13.0, "Total Spend": 8697.0, "Total Transactions": 507.0, "Total Customers": 380.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.241497, 39.901275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "2417 Welsh Rd", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 762.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 10.0, "Total Spend": 40344.0, "Total Transactions": 917.0, "Total Customers": 496.0, "Median Spend per Transaction": 29.69, "Median Spend per Customer": 48.5 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-v75", "Name": "Oishii", "Category": "Restaurants and Other Eating Places", "Address": "138 Chestnut St", "LATITUDE": 39.948308, "LONGITUDE": -75.143991, "DATE_RANGE_START": 2023, "Total Visits": 1002.0, "Total Visitors": 759.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 49.0, "Total Spend": 8886.0, "Total Transactions": 359.0, "Total Customers": 319.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143991, 39.948308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3341 Grant Ave", "LATITUDE": 40.068966, "LONGITUDE": -75.005145, "DATE_RANGE_START": 2023, "Total Visits": 53.0, "Total Visitors": 34.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 3.0, "Total Spend": 30957.0, "Total Transactions": 1903.0, "Total Customers": 757.0, "Median Spend per Transaction": 11.39, "Median Spend per Customer": 23.62 }, "geometry": { "type": "Point", "coordinates": [ -75.005145, 40.068966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4133 G St", "LATITUDE": 40.011535, "LONGITUDE": -75.111696, "DATE_RANGE_START": 2023, "Total Visits": 857.0, "Total Visitors": 634.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 13.0, "Total Spend": 6244.0, "Total Transactions": 407.0, "Total Customers": 281.0, "Median Spend per Transaction": 10.58, "Median Spend per Customer": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.111696, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p7w-wzf", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "7000 Frankford Ave", "LATITUDE": 40.034002, "LONGITUDE": -75.046571, "DATE_RANGE_START": 2023, "Total Visits": 615.0, "Total Visitors": 428.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 6.0, "Total Spend": 329.0, "Total Transactions": 10.0, "Total Customers": 10.0, "Median Spend per Transaction": 25.04, "Median Spend per Customer": 25.04 }, "geometry": { "type": "Point", "coordinates": [ -75.046571, 40.034002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp4-r49", "Name": "IGA", "Category": "Grocery Stores", "Address": "2497 Aramingo Ave", "LATITUDE": 39.975344, "LONGITUDE": -75.119619, "DATE_RANGE_START": 2023, "Total Visits": 79.0, "Total Visitors": 46.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 8.0, "Total Spend": 168.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.57, "Median Spend per Customer": 22.57 }, "geometry": { "type": "Point", "coordinates": [ -75.119619, 39.975344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@63s-dvq-5cq", "Name": "Sanchez Tire Shop", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5417 Baltimore Ave", "LATITUDE": 39.947772, "LONGITUDE": -75.232416, "DATE_RANGE_START": 2023, "Total Visits": 430.0, "Total Visitors": 393.0, "POI_CBG": 421010081011.0, "Median Dwell Time": 6.0, "Total Spend": 560.0, "Total Transactions": 8.0, "Total Customers": 6.0, "Median Spend per Transaction": 62.4, "Median Spend per Customer": 83.2 }, "geometry": { "type": "Point", "coordinates": [ -75.232416, 39.947772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-9s5", "Name": "Bell Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "2809 S Front St", "LATITUDE": 39.912004, "LONGITUDE": -75.149871, "DATE_RANGE_START": 2023, "Total Visits": 2296.0, "Total Visitors": 1851.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 5613.0, "Total Transactions": 173.0, "Total Customers": 119.0, "Median Spend per Transaction": 29.22, "Median Spend per Customer": 33.92 }, "geometry": { "type": "Point", "coordinates": [ -75.149871, 39.912004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "Name": "Ross Stores", "Category": "Department Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028753, "LONGITUDE": -75.099174, "DATE_RANGE_START": 2023, "Total Visits": 1410.0, "Total Visitors": 1233.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 55.0, "Total Spend": 20381.0, "Total Transactions": 386.0, "Total Customers": 268.0, "Median Spend per Transaction": 35.63, "Median Spend per Customer": 42.67 }, "geometry": { "type": "Point", "coordinates": [ -75.099174, 40.028753 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-gkz", "Name": "Wynnefield Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1819 N 54th St", "LATITUDE": 39.984663, "LONGITUDE": -75.231132, "DATE_RANGE_START": 2023, "Total Visits": 109.0, "Total Visitors": 88.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 27.0, "Total Spend": 2729.0, "Total Transactions": 100.0, "Total Customers": 69.0, "Median Spend per Transaction": 22.1, "Median Spend per Customer": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.231132, 39.984663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5801 Oxford Ave", "LATITUDE": 40.032656, "LONGITUDE": -75.084461, "DATE_RANGE_START": 2023, "Total Visits": 31.0, "Total Visitors": 21.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 12.0, "Total Spend": 1819.0, "Total Transactions": 233.0, "Total Customers": 108.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 9.14 }, "geometry": { "type": "Point", "coordinates": [ -75.084461, 40.032656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 W Cheltenham Ave", "LATITUDE": 40.081792, "LONGITUDE": -75.172107, "DATE_RANGE_START": 2023, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 5.0, "Total Spend": 1769.0, "Total Transactions": 63.0, "Total Customers": 48.0, "Median Spend per Transaction": 23.38, "Median Spend per Customer": 30.01 }, "geometry": { "type": "Point", "coordinates": [ -75.172107, 40.081792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvv-249", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2210 Island Ave", "LATITUDE": 39.916025, "LONGITUDE": -75.24632, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 3.0, "Total Spend": 197.0, "Total Transactions": 9.0, "Total Customers": 6.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.24632, 39.916025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-223@628-pmb-fxq", "Name": "Greene Street", "Category": "Clothing Stores", "Address": "700 South St", "LATITUDE": 39.941983, "LONGITUDE": -75.154087, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 10.0, "Total Spend": 70.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 22.63, "Median Spend per Customer": 22.63 }, "geometry": { "type": "Point", "coordinates": [ -75.154087, 39.941983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm9-y5f", "Name": "SJ Cigar Co", "Category": "Other Miscellaneous Store Retailers", "Address": "524 S 3rd St", "LATITUDE": 39.941758, "LONGITUDE": -75.147715, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 30.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 241.0, "Total Spend": 720.0, "Total Transactions": 13.0, "Total Customers": 10.0, "Median Spend per Transaction": 18.78, "Median Spend per Customer": 26.06 }, "geometry": { "type": "Point", "coordinates": [ -75.147715, 39.941758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-hh5", "Name": "Mandarin Palace", "Category": "Restaurants and Other Eating Places", "Address": "1835 Chestnut St", "LATITUDE": 39.952035, "LONGITUDE": -75.171616, "DATE_RANGE_START": 2023, "Total Visits": 248.0, "Total Visitors": 230.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 1619.0, "Total Transactions": 61.0, "Total Customers": 50.0, "Median Spend per Transaction": 19.93, "Median Spend per Customer": 25.78 }, "geometry": { "type": "Point", "coordinates": [ -75.171616, 39.952035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "Name": "Super Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7340 Frankford Ave", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2023, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 6.0, "Total Spend": 797.0, "Total Transactions": 33.0, "Total Customers": 25.0, "Median Spend per Transaction": 22.64, "Median Spend per Customer": 25.81 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-226@628-pmb-xnq", "Name": "Access Karaoke", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1016 Race St # 18", "LATITUDE": 39.955238, "LONGITUDE": -75.156452, "DATE_RANGE_START": 2023, "Total Visits": 4346.0, "Total Visitors": 2987.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 2711.0, "Total Transactions": 43.0, "Total Customers": 33.0, "Median Spend per Transaction": 18.7, "Median Spend per Customer": 21.3 }, "geometry": { "type": "Point", "coordinates": [ -75.156452, 39.955238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-xdv", "Name": "Tiffin", "Category": "Restaurants and Other Eating Places", "Address": "710 W Girard Ave", "LATITUDE": 39.970144, "LONGITUDE": -75.148679, "DATE_RANGE_START": 2023, "Total Visits": 451.0, "Total Visitors": 441.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 6.0, "Total Spend": 852.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 49.68, "Median Spend per Customer": 49.68 }, "geometry": { "type": "Point", "coordinates": [ -75.148679, 39.970144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pm9-wc5", "Name": "Scoop DeVille", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949779, "LONGITUDE": -75.148514, "DATE_RANGE_START": 2023, "Total Visits": 70.0, "Total Visitors": 63.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 3515.0, "Total Transactions": 235.0, "Total Customers": 224.0, "Median Spend per Transaction": 12.78, "Median Spend per Customer": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.148514, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "10050 Roosevelt Blvd", "LATITUDE": 40.095709, "LONGITUDE": -75.015088, "DATE_RANGE_START": 2023, "Total Visits": 26.0, "Total Visitors": 23.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 7.0, "Total Spend": 1289.0, "Total Transactions": 164.0, "Total Customers": 83.0, "Median Spend per Transaction": 6.44, "Median Spend per Customer": 9.44 }, "geometry": { "type": "Point", "coordinates": [ -75.015088, 40.095709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "Name": "Bleu Sushi", "Category": "Restaurants and Other Eating Places", "Address": "262 S 10th St", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2023, "Total Visits": 175.0, "Total Visitors": 158.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 9.0, "Total Spend": 227.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 40.14, "Median Spend per Customer": 59.33 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "Name": "Polo Ralph Lauren Factory Store", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Ste 92", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2023, "Total Visits": 119.0, "Total Visitors": 105.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 71.0, "Total Spend": 9516.0, "Total Transactions": 119.0, "Total Customers": 98.0, "Median Spend per Transaction": 54.82, "Median Spend per Customer": 67.42 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwd-pjv", "Name": "Urban Shop 543", "Category": "Restaurants and Other Eating Places", "Address": "5000 S Broad St", "LATITUDE": 39.887709, "LONGITUDE": -75.176019, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 11.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 76.0, "Total Spend": 398.0, "Total Transactions": 40.0, "Total Customers": 6.0, "Median Spend per Transaction": 8.54, "Median Spend per Customer": 50.09 }, "geometry": { "type": "Point", "coordinates": [ -75.176019, 39.887709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "Name": "2nd Street Brew House", "Category": "Restaurants and Other Eating Places", "Address": "1700 S 2nd St", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 31.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 163.0, "Total Spend": 3152.0, "Total Transactions": 90.0, "Total Customers": 38.0, "Median Spend per Transaction": 33.13, "Median Spend per Customer": 33.13 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "Name": "Einstein Brothers", "Category": "Restaurants and Other Eating Places", "Address": "5600 City Ave", "LATITUDE": 39.994394, "LONGITUDE": -75.238422, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 6.0, "POI_CBG": 421010117001.0, "Median Dwell Time": 1.0, "Total Spend": 248.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 17.09, "Median Spend per Customer": 20.94 }, "geometry": { "type": "Point", "coordinates": [ -75.238422, 39.994394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "910 Chestnut St", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2023, "Total Visits": 328.0, "Total Visitors": 273.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 1899.0, "Total Transactions": 177.0, "Total Customers": 140.0, "Median Spend per Transaction": 10.45, "Median Spend per Customer": 11.11 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "1527 Chestnut St", "LATITUDE": 39.951478, "LONGITUDE": -75.166517, "DATE_RANGE_START": 2023, "Total Visits": 50.0, "Total Visitors": 39.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 6567.0, "Total Transactions": 303.0, "Total Customers": 257.0, "Median Spend per Transaction": 18.76, "Median Spend per Customer": 20.46 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 39.951478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pp5-5vf", "Name": "Buzz Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1800 N Howard St", "LATITUDE": 39.977401, "LONGITUDE": -75.135043, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 58.0, "POI_CBG": 421010157002.0, "Median Dwell Time": 8.0, "Total Spend": 138.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.34, "Median Spend per Customer": 20.34 }, "geometry": { "type": "Point", "coordinates": [ -75.135043, 39.977401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgf-52k", "Name": "Woosa Bubble Tea", "Category": "Restaurants and Other Eating Places", "Address": "3639 Lancaster Ave", "LATITUDE": 39.959251, "LONGITUDE": -75.194643, "DATE_RANGE_START": 2023, "Total Visits": 118.0, "Total Visitors": 6.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 884.0, "Total Spend": 413.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 13.05, "Median Spend per Customer": 13.14 }, "geometry": { "type": "Point", "coordinates": [ -75.194643, 39.959251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-fcq", "Name": "Ace Hardware", "Category": "Building Material and Supplies Dealers", "Address": "257 S 10th St", "LATITUDE": 39.946716, "LONGITUDE": -75.157593, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 149.0, "Total Spend": 2970.0, "Total Transactions": 130.0, "Total Customers": 101.0, "Median Spend per Transaction": 17.24, "Median Spend per Customer": 25.67 }, "geometry": { "type": "Point", "coordinates": [ -75.157593, 39.946716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-229@628-pmf-mff", "Name": "Federal Donuts", "Category": "Restaurants and Other Eating Places", "Address": "1776 Benjamin Franklin Pkwy", "LATITUDE": 39.956193, "LONGITUDE": -75.1692, "DATE_RANGE_START": 2023, "Total Visits": 2329.0, "Total Visitors": 1725.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 53.0, "Total Spend": 129.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 6.94, "Median Spend per Customer": 6.94 }, "geometry": { "type": "Point", "coordinates": [ -75.1692, 39.956193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "Name": "Mr Sushi", "Category": "Restaurants and Other Eating Places", "Address": "7324 Oxford Ave", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2023, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 3.0, "Total Spend": 1798.0, "Total Transactions": 45.0, "Total Customers": 39.0, "Median Spend per Transaction": 36.59, "Median Spend per Customer": 39.37 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4200 N Broad St", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2023, "Total Visits": 907.0, "Total Visitors": 762.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 13.0, "Total Spend": 10072.0, "Total Transactions": 759.0, "Total Customers": 511.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "Name": "Heng Fa Food Market", "Category": "Grocery Stores", "Address": "130 N 10th St", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2023, "Total Visits": 338.0, "Total Visitors": 263.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 13930.0, "Total Transactions": 511.0, "Total Customers": 385.0, "Median Spend per Transaction": 16.24, "Median Spend per Customer": 18.12 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "Name": "Function Coffee Labs", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 10th St", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2023, "Total Visits": 749.0, "Total Visitors": 432.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 18.0, "Total Spend": 1034.0, "Total Transactions": 83.0, "Total Customers": 39.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 12.25 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1100 W Girard Ave", "LATITUDE": 39.970551, "LONGITUDE": -75.155052, "DATE_RANGE_START": 2023, "Total Visits": 502.0, "Total Visitors": 417.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 11.0, "Total Spend": 223.0, "Total Transactions": 24.0, "Total Customers": 16.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.155052, 39.970551 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "9430 Academy Rd", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2023, "Total Visits": 903.0, "Total Visitors": 695.0, "POI_CBG": 421010348022.0, "Median Dwell Time": 8.0, "Total Spend": 3793.0, "Total Transactions": 334.0, "Total Customers": 215.0, "Median Spend per Transaction": 9.4, "Median Spend per Customer": 11.97 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-y5f", "Name": "Southside Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "917 S 20th St", "LATITUDE": 39.940448, "LONGITUDE": -75.17585, "DATE_RANGE_START": 2023, "Total Visits": 123.0, "Total Visitors": 88.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 328.0, "Total Spend": 81.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.89, "Median Spend per Customer": 14.36 }, "geometry": { "type": "Point", "coordinates": [ -75.17585, 39.940448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pmf-j35", "Name": "Sephora", "Category": "Health and Personal Care Stores", "Address": "1714 Chestnut St", "LATITUDE": 39.951248, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 31.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 38.0, "Total Spend": 91132.0, "Total Transactions": 1392.0, "Total Customers": 1206.0, "Median Spend per Transaction": 48.6, "Median Spend per Customer": 52.92 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.951248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgj-wrk", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2701 N Broad St", "LATITUDE": 39.99344, "LONGITUDE": -75.155189, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 24.0, "Total Spend": 8650.0, "Total Transactions": 266.0, "Total Customers": 209.0, "Median Spend per Transaction": 31.15, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.155189, 39.99344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Roosevelt Blvd", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2023, "Total Visits": 1870.0, "Total Visitors": 1468.0, "POI_CBG": 421010361002.0, "Median Dwell Time": 5.0, "Total Spend": 7976.0, "Total Transactions": 321.0, "Total Customers": 178.0, "Median Spend per Transaction": 19.87, "Median Spend per Customer": 29.42 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "Name": "Revolution Taco", "Category": "Restaurants and Other Eating Places", "Address": "2015 Walnut St", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2023, "Total Visits": 244.0, "Total Visitors": 227.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 10.0, "Total Spend": 1345.0, "Total Transactions": 59.0, "Total Customers": 53.0, "Median Spend per Transaction": 17.25, "Median Spend per Customer": 18.16 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgh-h5z", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2749 W Hunting Park Ave", "LATITUDE": 40.007766, "LONGITUDE": -75.174356, "DATE_RANGE_START": 2023, "Total Visits": 11.0, "Total Visitors": 10.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 10.0, "Total Spend": 6791.0, "Total Transactions": 380.0, "Total Customers": 274.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 19.96 }, "geometry": { "type": "Point", "coordinates": [ -75.174356, 40.007766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2 Lehigh Ave", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2023, "Total Visits": 1358.0, "Total Visitors": 676.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 39.0, "Total Spend": 12565.0, "Total Transactions": 762.0, "Total Customers": 521.0, "Median Spend per Transaction": 13.34, "Median Spend per Customer": 17.37 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pj4-y7q", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "3610 Germantown Ave", "LATITUDE": 40.007948, "LONGITUDE": -75.150636, "DATE_RANGE_START": 2023, "Total Visits": 1109.0, "Total Visitors": 671.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 17.0, "Total Spend": 1419.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 25.48, "Median Spend per Customer": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.150636, 40.007948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfv-26k", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "5927 Ridge Ave # 59", "LATITUDE": 40.031707, "LONGITUDE": -75.211248, "DATE_RANGE_START": 2023, "Total Visits": 1353.0, "Total Visitors": 665.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 11.0, "Total Spend": 229454.0, "Total Transactions": 5685.0, "Total Customers": 2142.0, "Median Spend per Transaction": 26.13, "Median Spend per Customer": 57.66 }, "geometry": { "type": "Point", "coordinates": [ -75.211248, 40.031707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6919 Castor Ave # 6935", "LATITUDE": 40.045972, "LONGITUDE": -75.070633, "DATE_RANGE_START": 2023, "Total Visits": 737.0, "Total Visitors": 521.0, "POI_CBG": 421010314015.0, "Median Dwell Time": 5.0, "Total Spend": 15432.0, "Total Transactions": 1284.0, "Total Customers": 704.0, "Median Spend per Transaction": 9.38, "Median Spend per Customer": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.070633, 40.045972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1630 E Wadsworth Ave", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2023, "Total Visits": 466.0, "Total Visitors": 377.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 10.0, "Total Spend": 3122.0, "Total Transactions": 368.0, "Total Customers": 227.0, "Median Spend per Transaction": 7.06, "Median Spend per Customer": 9.8 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "260 W Lehigh Ave Ste 80", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2023, "Total Visits": 636.0, "Total Visitors": 475.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 11.0, "Total Spend": 5233.0, "Total Transactions": 292.0, "Total Customers": 219.0, "Median Spend per Transaction": 11.99, "Median Spend per Customer": 14.47 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3200 Red Lion Rd", "LATITUDE": 40.081209, "LONGITUDE": -74.994945, "DATE_RANGE_START": 2023, "Total Visits": 187.0, "Total Visitors": 123.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 5.0, "Total Spend": 2956.0, "Total Transactions": 390.0, "Total Customers": 152.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 9.99 }, "geometry": { "type": "Point", "coordinates": [ -74.994945, 40.081209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9163 Roosevelt Blvd @ Welsh Rd", "LATITUDE": 40.074724, "LONGITUDE": -75.032595, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 18.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 715.0, "Total Transactions": 49.0, "Total Customers": 33.0, "Median Spend per Transaction": 13.3, "Median Spend per Customer": 13.04 }, "geometry": { "type": "Point", "coordinates": [ -75.032595, 40.074724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1215 Filbert St", "LATITUDE": 39.953287, "LONGITUDE": -75.160529, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 86.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 1459.0, "Total Transactions": 118.0, "Total Customers": 66.0, "Median Spend per Transaction": 7.65, "Median Spend per Customer": 12.59 }, "geometry": { "type": "Point", "coordinates": [ -75.160529, 39.953287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-fcq", "Name": "Beer Harbor II", "Category": "Beer, Wine, and Liquor Stores", "Address": "5450 Large St", "LATITUDE": 40.030534, "LONGITUDE": -75.082846, "DATE_RANGE_START": 2023, "Total Visits": 130.0, "Total Visitors": 95.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 1.0, "Total Spend": 70.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.082846, 40.030534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3230 Richmond St", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2023, "Total Visits": 1680.0, "Total Visitors": 1248.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 5.0, "Total Spend": 20832.0, "Total Transactions": 1834.0, "Total Customers": 757.0, "Median Spend per Transaction": 8.96, "Median Spend per Customer": 13.42 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@63s-dvr-q75", "Name": "Fastbreak", "Category": "Restaurants and Other Eating Places", "Address": "5411 Woodland Ave", "LATITUDE": 39.936276, "LONGITUDE": -75.219483, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010070001.0, "Median Dwell Time": 7.0, "Total Spend": 428.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219483, 39.936276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgk-nwk", "Name": "Sharon Reed Book Store", "Category": "Book Stores and News Dealers", "Address": "3955 Conshohocken Ave", "LATITUDE": 40.003494, "LONGITUDE": -75.210472, "DATE_RANGE_START": 2023, "Total Visits": 385.0, "Total Visitors": 291.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 69.0, "Total Spend": 282.0, "Total Transactions": 29.0, "Total Customers": 29.0, "Median Spend per Transaction": 5.99, "Median Spend per Customer": 5.99 }, "geometry": { "type": "Point", "coordinates": [ -75.210472, 40.003494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-k9f", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8500 Henry Ave Ste 40A", "LATITUDE": 40.063373, "LONGITUDE": -75.236259, "DATE_RANGE_START": 2023, "Total Visits": 691.0, "Total Visitors": 691.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 49.0, "Total Spend": 2192.0, "Total Transactions": 113.0, "Total Customers": 90.0, "Median Spend per Transaction": 12.9, "Median Spend per Customer": 16.52 }, "geometry": { "type": "Point", "coordinates": [ -75.236259, 40.063373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dwg-g6k", "Name": "United", "Category": "Gasoline Stations", "Address": "6901 Buist Ave", "LATITUDE": 39.917055, "LONGITUDE": -75.235223, "DATE_RANGE_START": 2023, "Total Visits": 312.0, "Total Visitors": 229.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 6.0, "Total Spend": 6272.0, "Total Transactions": 286.0, "Total Customers": 157.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 26.06 }, "geometry": { "type": "Point", "coordinates": [ -75.235223, 39.917055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgm-hwk", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "4268 Ridge Ave", "LATITUDE": 40.009599, "LONGITUDE": -75.196284, "DATE_RANGE_START": 2023, "Total Visits": 839.0, "Total Visitors": 690.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 5.0, "Total Spend": 338.0, "Total Transactions": 21.0, "Total Customers": 11.0, "Median Spend per Transaction": 16.74, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.196284, 40.009599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgj-c5z", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1511 Cecil B Moore Ave", "LATITUDE": 39.979109, "LONGITUDE": -75.160028, "DATE_RANGE_START": 2023, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 1.0, "Total Spend": 1819.0, "Total Transactions": 115.0, "Total Customers": 98.0, "Median Spend per Transaction": 14.23, "Median Spend per Customer": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.160028, 39.979109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvw-zj9", "Name": "Lucky Seven Food Market", "Category": "Grocery Stores", "Address": "54 N 57th St", "LATITUDE": 39.962742, "LONGITUDE": -75.234853, "DATE_RANGE_START": 2023, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010094004.0, "Median Dwell Time": 473.0, "Total Spend": 116.0, "Total Transactions": 13.0, "Total Customers": 9.0, "Median Spend per Transaction": 8.05, "Median Spend per Customer": 13.78 }, "geometry": { "type": "Point", "coordinates": [ -75.234853, 39.962742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1000 E Erie Ave", "LATITUDE": 40.005152, "LONGITUDE": -75.109029, "DATE_RANGE_START": 2023, "Total Visits": 6.0, "Total Visitors": 4.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 6.0, "Total Spend": 6209.0, "Total Transactions": 202.0, "Total Customers": 89.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.109029, 40.005152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "8828 Frankford Ave", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2023, "Total Visits": 1053.0, "Total Visitors": 777.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 11.0, "Total Spend": 1246.0, "Total Transactions": 49.0, "Total Customers": 39.0, "Median Spend per Transaction": 13.38, "Median Spend per Customer": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "Name": "Crash Bang Boom", "Category": "Clothing Stores", "Address": "528 S 4th St", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2023, "Total Visits": 468.0, "Total Visitors": 421.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 22.0, "Total Spend": 341.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 136.0, "Median Spend per Customer": 136.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "Name": "Walmart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9745 Roosevelt Blvd Ste A", "LATITUDE": 40.082982, "LONGITUDE": -75.022614, "DATE_RANGE_START": 2023, "Total Visits": 9988.0, "Total Visitors": 6511.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 27.0, "Total Spend": 311646.0, "Total Transactions": 5104.0, "Total Customers": 2843.0, "Median Spend per Transaction": 37.7, "Median Spend per Customer": 53.48 }, "geometry": { "type": "Point", "coordinates": [ -75.022614, 40.082982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "Name": "Beer Stop", "Category": "Beer, Wine, and Liquor Stores", "Address": "4252 Rising Sun Ave", "LATITUDE": 40.015845, "LONGITUDE": -75.130258, "DATE_RANGE_START": 2023, "Total Visits": 308.0, "Total Visitors": 175.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 35.0, "Total Spend": 683.0, "Total Transactions": 15.0, "Total Customers": 15.0, "Median Spend per Transaction": 22.82, "Median Spend per Customer": 22.82 }, "geometry": { "type": "Point", "coordinates": [ -75.130258, 40.015845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "Name": "El Vez", "Category": "Restaurants and Other Eating Places", "Address": "121 S 13th St", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2023, "Total Visits": 321.0, "Total Visitors": 232.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 47.0, "Total Spend": 57203.0, "Total Transactions": 740.0, "Total Customers": 659.0, "Median Spend per Transaction": 60.92, "Median Spend per Customer": 66.7 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "Name": "Abyssinia", "Category": "Restaurants and Other Eating Places", "Address": "229 S 45th St", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2023, "Total Visits": 182.0, "Total Visitors": 163.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 12.0, "Total Spend": 5114.0, "Total Transactions": 144.0, "Total Customers": 111.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 33.64 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "Name": "Allegro Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3942 Spruce St", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2023, "Total Visits": 297.0, "Total Visitors": 152.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 11.0, "Total Spend": 7734.0, "Total Transactions": 483.0, "Total Customers": 322.0, "Median Spend per Transaction": 13.39, "Median Spend per Customer": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7bk", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "1320 Walnut St", "LATITUDE": 39.948985, "LONGITUDE": -75.163065, "DATE_RANGE_START": 2023, "Total Visits": 13.0, "Total Visitors": 11.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 41.0, "Total Spend": 150.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 40.98, "Median Spend per Customer": 40.98 }, "geometry": { "type": "Point", "coordinates": [ -75.163065, 39.948985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-wzf", "Name": "Mayfair Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7424 Frankford Ave", "LATITUDE": 40.038525, "LONGITUDE": -75.036899, "DATE_RANGE_START": 2023, "Total Visits": 85.0, "Total Visitors": 85.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 11.0, "Total Spend": 667.0, "Total Transactions": 21.0, "Total Customers": 15.0, "Median Spend per Transaction": 35.35, "Median Spend per Customer": 34.33 }, "geometry": { "type": "Point", "coordinates": [ -75.036899, 40.038525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-85f", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "5134 N 2nd St", "LATITUDE": 40.028399, "LONGITUDE": -75.127425, "DATE_RANGE_START": 2023, "Total Visits": 274.0, "Total Visitors": 116.0, "POI_CBG": 421010286006.0, "Median Dwell Time": 5.0, "Total Spend": 396.0, "Total Transactions": 44.0, "Total Customers": 26.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127425, 40.028399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "Name": "Makkah Market", "Category": "Restaurants and Other Eating Places", "Address": "4249 Walnut St", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2023, "Total Visits": 208.0, "Total Visitors": 123.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 9.0, "Total Spend": 11177.0, "Total Transactions": 541.0, "Total Customers": 256.0, "Median Spend per Transaction": 11.81, "Median Spend per Customer": 21.46 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "1900 N 5th St", "LATITUDE": 39.980938, "LONGITUDE": -75.144183, "DATE_RANGE_START": 2023, "Total Visits": 64.0, "Total Visitors": 50.0, "POI_CBG": 421010156002.0, "Median Dwell Time": 15.0, "Total Spend": 2811.0, "Total Transactions": 71.0, "Total Customers": 63.0, "Median Spend per Transaction": 24.8, "Median Spend per Customer": 27.43 }, "geometry": { "type": "Point", "coordinates": [ -75.144183, 39.980938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "Name": "Pho Don", "Category": "Restaurants and Other Eating Places", "Address": "3528 Germantown Ave", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2023, "Total Visits": 98.0, "Total Visitors": 98.0, "POI_CBG": 421010200002.0, "Median Dwell Time": null, "Total Spend": 1311.0, "Total Transactions": 63.0, "Total Customers": 40.0, "Median Spend per Transaction": 17.9, "Median Spend per Customer": 21.66 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2300 Fairmount Ave # 16", "LATITUDE": 39.967205, "LONGITUDE": -75.175753, "DATE_RANGE_START": 2023, "Total Visits": 456.0, "Total Visitors": 401.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 3.0, "Total Spend": 1894.0, "Total Transactions": 60.0, "Total Customers": 45.0, "Median Spend per Transaction": 31.67, "Median Spend per Customer": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.175753, 39.967205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "Name": "The Bagel Place", "Category": "Restaurants and Other Eating Places", "Address": "404 Queen St", "LATITUDE": 39.937484, "LONGITUDE": -75.150444, "DATE_RANGE_START": 2023, "Total Visits": 254.0, "Total Visitors": 172.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 23.0, "Total Spend": 4230.0, "Total Transactions": 308.0, "Total Customers": 184.0, "Median Spend per Transaction": 12.8, "Median Spend per Customer": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.150444, 39.937484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "400 W Allegheny Ave", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2023, "Total Visits": 719.0, "Total Visitors": 561.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 2.0, "Total Spend": 844.0, "Total Transactions": 24.0, "Total Customers": 19.0, "Median Spend per Transaction": 15.62, "Median Spend per Customer": 17.76 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "Name": "Checkers Drive-In Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "3500 Aramingo Ave", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2023, "Total Visits": 157.0, "Total Visitors": 132.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 5.0, "Total Spend": 6388.0, "Total Transactions": 390.0, "Total Customers": 298.0, "Median Spend per Transaction": 13.15, "Median Spend per Customer": 16.82 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "Name": "Cappuccio's Meats", "Category": "Specialty Food Stores", "Address": "1019 S 9th St", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2023, "Total Visits": 174.0, "Total Visitors": 165.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 1.0, "Total Spend": 1565.0, "Total Transactions": 33.0, "Total Customers": 31.0, "Median Spend per Transaction": 24.35, "Median Spend per Customer": 20.94 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "Name": "Arctic Scoop", "Category": "Restaurants and Other Eating Places", "Address": "1812 E Passyunk Ave", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2023, "Total Visits": 198.0, "Total Visitors": 184.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 3.0, "Total Spend": 2702.0, "Total Transactions": 215.0, "Total Customers": 192.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "9220 Frankford Ave", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2023, "Total Visits": 530.0, "Total Visitors": 463.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 7.0, "Total Spend": 4473.0, "Total Transactions": 306.0, "Total Customers": 222.0, "Median Spend per Transaction": 12.97, "Median Spend per Customer": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.011202, "LONGITUDE": -75.113033, "DATE_RANGE_START": 2023, "Total Visits": 473.0, "Total Visitors": 227.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 5.0, "Total Spend": 7879.0, "Total Transactions": 818.0, "Total Customers": 381.0, "Median Spend per Transaction": 8.48, "Median Spend per Customer": 13.4 }, "geometry": { "type": "Point", "coordinates": [ -75.113033, 40.011202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "1100 W Montgomery Ave Ste D", "LATITUDE": 39.979435, "LONGITUDE": -75.153173, "DATE_RANGE_START": 2023, "Total Visits": 1249.0, "Total Visitors": 446.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 37.0, "Total Spend": 2517.0, "Total Transactions": 204.0, "Total Customers": 189.0, "Median Spend per Transaction": 10.99, "Median Spend per Customer": 11.83 }, "geometry": { "type": "Point", "coordinates": [ -75.153173, 39.979435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "Name": "Pho Cyclo Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2124 S Broad St", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2023, "Total Visits": 956.0, "Total Visitors": 631.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 22.0, "Total Spend": 1013.0, "Total Transactions": 28.0, "Total Customers": 26.0, "Median Spend per Transaction": 26.8, "Median Spend per Customer": 23.36 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1600 E Wadsworth Ave Ste B", "LATITUDE": 40.080371, "LONGITUDE": -75.171982, "DATE_RANGE_START": 2023, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 5.0, "Total Spend": 2071.0, "Total Transactions": 153.0, "Total Customers": 119.0, "Median Spend per Transaction": 7.83, "Median Spend per Customer": 7.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171982, 40.080371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phk-yvz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6744 N 5th St # 46", "LATITUDE": 40.054784, "LONGITUDE": -75.126802, "DATE_RANGE_START": 2023, "Total Visits": 395.0, "Total Visitors": 286.0, "POI_CBG": 421010269001.0, "Median Dwell Time": 15.0, "Total Spend": 5265.0, "Total Transactions": 251.0, "Total Customers": 168.0, "Median Spend per Transaction": 13.92, "Median Spend per Customer": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.126802, 40.054784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-gp9", "Name": "Umai Umai", "Category": "Restaurants and Other Eating Places", "Address": "533 N 22nd St", "LATITUDE": 39.964683, "LONGITUDE": -75.174102, "DATE_RANGE_START": 2023, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 14.0, "Total Spend": 160.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174102, 39.964683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "Name": "Tokyo Sushi & Catering", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd Ste C120", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2023, "Total Visits": 6693.0, "Total Visitors": 3705.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 79.0, "Total Spend": 3791.0, "Total Transactions": 262.0, "Total Customers": 178.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm8-djv", "Name": "Celebre Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1536 Packer Ave", "LATITUDE": 39.911364, "LONGITUDE": -75.175337, "DATE_RANGE_START": 2023, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 21.0, "Total Spend": 1810.0, "Total Transactions": 59.0, "Total Customers": 50.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 29.0 }, "geometry": { "type": "Point", "coordinates": [ -75.175337, 39.911364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "Name": "Stargazy", "Category": "Restaurants and Other Eating Places", "Address": "1838 E Passyunk Ave", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2023, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 4.0, "Total Spend": 1257.0, "Total Transactions": 39.0, "Total Customers": 33.0, "Median Spend per Transaction": 24.84, "Median Spend per Customer": 24.09 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-225@628-p85-p35", "Name": "Cafe Carmela", "Category": "Restaurants and Other Eating Places", "Address": "2859 Holme Ave", "LATITUDE": 40.05717, "LONGITUDE": -75.030373, "DATE_RANGE_START": 2023, "Total Visits": 256.0, "Total Visitors": 240.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 10.0, "Total Spend": 415.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 44.99, "Median Spend per Customer": 44.99 }, "geometry": { "type": "Point", "coordinates": [ -75.030373, 40.05717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-9cq", "Name": "Chili Garden", "Category": "Restaurants and Other Eating Places", "Address": "4626 Baltimore Ave", "LATITUDE": 39.948488, "LONGITUDE": -75.216299, "DATE_RANGE_START": 2023, "Total Visits": 695.0, "Total Visitors": 638.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 2.0, "Total Spend": 1354.0, "Total Transactions": 36.0, "Total Customers": 31.0, "Median Spend per Transaction": 24.54, "Median Spend per Customer": 36.22 }, "geometry": { "type": "Point", "coordinates": [ -75.216299, 39.948488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "Name": "Sky Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1122-38 Washington Ave Ste B", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2023, "Total Visits": 192.0, "Total Visitors": 187.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 24.0, "Total Spend": 1547.0, "Total Transactions": 35.0, "Total Customers": 35.0, "Median Spend per Transaction": 35.69, "Median Spend per Customer": 35.69 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-r6k", "Name": "United Buffet", "Category": "Restaurants and Other Eating Places", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029584, "LONGITUDE": -75.100403, "DATE_RANGE_START": 2023, "Total Visits": 1410.0, "Total Visitors": 1233.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 55.0, "Total Spend": 14312.0, "Total Transactions": 314.0, "Total Customers": 257.0, "Median Spend per Transaction": 41.64, "Median Spend per Customer": 41.64 }, "geometry": { "type": "Point", "coordinates": [ -75.100403, 40.029584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "Name": "Best In Town Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7971 Castor Ave", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2023, "Total Visits": 142.0, "Total Visitors": 56.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 738.0, "Total Spend": 1629.0, "Total Transactions": 59.0, "Total Customers": 45.0, "Median Spend per Transaction": 26.32, "Median Spend per Customer": 28.43 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-zs5", "Name": "Samsun Footwear", "Category": "Shoe Stores", "Address": "532 South St", "LATITUDE": 39.941852, "LONGITUDE": -75.15198, "DATE_RANGE_START": 2023, "Total Visits": 242.0, "Total Visitors": 242.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 28.0, "Total Spend": 75.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15198, 39.941852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2000 Hamilton St", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2023, "Total Visits": 281.0, "Total Visitors": 134.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 290.0, "Total Spend": 35451.0, "Total Transactions": 3094.0, "Total Customers": 1509.0, "Median Spend per Transaction": 9.67, "Median Spend per Customer": 13.1 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-224@628-pm9-whq", "Name": "Penzeys Spices", "Category": "Specialty Food Stores", "Address": "233 Market St", "LATITUDE": 39.95039, "LONGITUDE": -75.144816, "DATE_RANGE_START": 2023, "Total Visits": 929.0, "Total Visitors": 689.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 343.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 63.79, "Median Spend per Customer": 63.79 }, "geometry": { "type": "Point", "coordinates": [ -75.144816, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6150 N 5th St", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2023, "Total Visits": 743.0, "Total Visitors": 507.0, "POI_CBG": 421010275001.0, "Median Dwell Time": 13.0, "Total Spend": 6678.0, "Total Transactions": 322.0, "Total Customers": 203.0, "Median Spend per Transaction": 9.79, "Median Spend per Customer": 19.08 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2524 Aramingo Ave", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2023, "Total Visits": 205.0, "Total Visitors": 164.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 8.0, "Total Spend": 8400.0, "Total Transactions": 179.0, "Total Customers": 139.0, "Median Spend per Transaction": 27.52, "Median Spend per Customer": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "Name": "Walmart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd Bldg G", "LATITUDE": 40.031541, "LONGITUDE": -75.099668, "DATE_RANGE_START": 2023, "Total Visits": 3669.0, "Total Visitors": 2315.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 31.0, "Total Spend": 239322.0, "Total Transactions": 4167.0, "Total Customers": 2526.0, "Median Spend per Transaction": 32.56, "Median Spend per Customer": 52.72 }, "geometry": { "type": "Point", "coordinates": [ -75.099668, 40.031541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7w-c89", "Name": "Philly's Finest Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7962 Dungan Rd", "LATITUDE": 40.068215, "LONGITUDE": -75.06872, "DATE_RANGE_START": 2023, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 23.0, "Total Spend": 1158.0, "Total Transactions": 31.0, "Total Customers": 24.0, "Median Spend per Transaction": 27.76, "Median Spend per Customer": 29.43 }, "geometry": { "type": "Point", "coordinates": [ -75.06872, 40.068215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4046 Woodhaven Rd", "LATITUDE": 40.086351, "LONGITUDE": -74.971824, "DATE_RANGE_START": 2023, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 4.0, "Total Spend": 8886.0, "Total Transactions": 1253.0, "Total Customers": 392.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 8.82 }, "geometry": { "type": "Point", "coordinates": [ -74.971824, 40.086351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "9717 Roosevelt Blvd", "LATITUDE": 40.081433, "LONGITUDE": -75.026481, "DATE_RANGE_START": 2023, "Total Visits": 565.0, "Total Visitors": 437.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 30.0, "Total Spend": 9093.0, "Total Transactions": 200.0, "Total Customers": 165.0, "Median Spend per Transaction": 28.59, "Median Spend per Customer": 35.55 }, "geometry": { "type": "Point", "coordinates": [ -75.026481, 40.081433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "Name": "Papa Nick's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "199 W Godfrey Ave", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 89.0, "POI_CBG": 421010272003.0, "Median Dwell Time": 6.0, "Total Spend": 2933.0, "Total Transactions": 114.0, "Total Customers": 85.0, "Median Spend per Transaction": 22.46, "Median Spend per Customer": 26.96 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgb-2tv", "Name": "Local", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "201 N 17th St", "LATITUDE": 39.957095, "LONGITUDE": -75.167019, "DATE_RANGE_START": 2023, "Total Visits": 4621.0, "Total Visitors": 2540.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 255.0, "Total Spend": 331.0, "Total Transactions": 23.0, "Total Customers": 16.0, "Median Spend per Transaction": 11.97, "Median Spend per Customer": 12.93 }, "geometry": { "type": "Point", "coordinates": [ -75.167019, 39.957095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgd-zvf", "Name": "Nafi Food Express", "Category": "Restaurants and Other Eating Places", "Address": "3400 Market St", "LATITUDE": 39.955563, "LONGITUDE": -75.193294, "DATE_RANGE_START": 2023, "Total Visits": 2543.0, "Total Visitors": 1613.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 14.0, "Total Spend": 47.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.193294, 39.955563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-qfz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5440 Lansdowne Ave", "LATITUDE": 39.976582, "LONGITUDE": -75.231079, "DATE_RANGE_START": 2023, "Total Visits": 566.0, "Total Visitors": 477.0, "POI_CBG": 421010112001.0, "Median Dwell Time": 11.0, "Total Spend": 2385.0, "Total Transactions": 124.0, "Total Customers": 66.0, "Median Spend per Transaction": 15.58, "Median Spend per Customer": 20.99 }, "geometry": { "type": "Point", "coordinates": [ -75.231079, 39.976582 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "Name": "Baltimore Pet Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "4532 Baltimore Ave", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2023, "Total Visits": 150.0, "Total Visitors": 130.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 4.0, "Total Spend": 389.0, "Total Transactions": 10.0, "Total Customers": 8.0, "Median Spend per Transaction": 35.07, "Median Spend per Customer": 36.14 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj7-tjv", "Name": "Romano's Catering", "Category": "Special Food Services", "Address": "1523 E Wingohocking St", "LATITUDE": 40.014747, "LONGITUDE": -75.095868, "DATE_RANGE_START": 2023, "Total Visits": 262.0, "Total Visitors": 256.0, "POI_CBG": 421010190003.0, "Median Dwell Time": 145.0, "Total Spend": 91.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.095868, 40.014747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnt-3qz", "Name": "JR's saloon", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2663 E Norris St", "LATITUDE": 39.97411, "LONGITUDE": -75.12273, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 65.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 168.0, "Total Spend": 679.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 43.56, "Median Spend per Customer": 43.56 }, "geometry": { "type": "Point", "coordinates": [ -75.12273, 39.97411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw4-rzf", "Name": "La Tapenade Mediterranean Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895188, "LONGITUDE": -75.227951, "DATE_RANGE_START": 2023, "Total Visits": 1099.0, "Total Visitors": 881.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 3.0, "Total Spend": 3492.0, "Total Transactions": 152.0, "Total Customers": 132.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227951, 39.895188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "Name": "House of Kosher", "Category": "Restaurants and Other Eating Places", "Address": "9806 Bustleton Ave", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2023, "Total Visits": 496.0, "Total Visitors": 465.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 14.0, "Total Spend": 11937.0, "Total Transactions": 147.0, "Total Customers": 64.0, "Median Spend per Transaction": 46.89, "Median Spend per Customer": 80.28 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmf-j5f", "Name": "Lagos", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1735 Walnut St", "LATITUDE": 39.950375, "LONGITUDE": -75.170461, "DATE_RANGE_START": 2023, "Total Visits": 2147.0, "Total Visitors": 1645.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 6.0, "Total Spend": 480.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 191.7, "Median Spend per Customer": 191.7 }, "geometry": { "type": "Point", "coordinates": [ -75.170461, 39.950375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pm9-y9z", "Name": "Shyne Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "339 South St", "LATITUDE": 39.941833, "LONGITUDE": -75.148783, "DATE_RANGE_START": 2023, "Total Visits": 1337.0, "Total Visitors": 907.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 24.0, "Total Spend": 6599.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 768.0, "Median Spend per Customer": 768.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148783, 39.941833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@63s-dvy-nwk", "Name": "Pod", "Category": "Restaurants and Other Eating Places", "Address": "3600 Sansom St", "LATITUDE": 39.953664, "LONGITUDE": -75.19557, "DATE_RANGE_START": 2023, "Total Visits": 4222.0, "Total Visitors": 2643.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 43.0, "Total Spend": 292.0, "Total Transactions": 6.0, "Total Customers": 4.0, "Median Spend per Transaction": 38.36, "Median Spend per Customer": 93.96 }, "geometry": { "type": "Point", "coordinates": [ -75.19557, 39.953664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "Name": "Tires Plus", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "800 Franklin Mills Cir", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2023, "Total Visits": 130.0, "Total Visitors": 118.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 27.0, "Total Spend": 431.0, "Total Transactions": 6.0, "Total Customers": 5.0, "Median Spend per Transaction": 58.49, "Median Spend per Customer": 91.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pgg-yvz", "Name": "Favors", "Category": "Restaurants and Other Eating Places", "Address": "2867 N Taylor St", "LATITUDE": 39.9991, "LONGITUDE": -75.171017, "DATE_RANGE_START": 2023, "Total Visits": 207.0, "Total Visitors": 189.0, "POI_CBG": 421010172024.0, "Median Dwell Time": 5.0, "Total Spend": 77.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 15.8, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.171017, 39.9991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "Name": "Palm Tree Market", "Category": "Grocery Stores", "Address": "4368 Cresson St", "LATITUDE": 40.026203, "LONGITUDE": -75.223957, "DATE_RANGE_START": 2023, "Total Visits": 220.0, "Total Visitors": 194.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 2.0, "Total Spend": 8839.0, "Total Transactions": 580.0, "Total Customers": 322.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.223957, 40.026203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p75-cdv", "Name": "Holiday Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "8601 Torresdale Ave", "LATITUDE": 40.042928, "LONGITUDE": -75.010389, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 6.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 100.0, "Total Spend": 2009.0, "Total Transactions": 83.0, "Total Customers": 26.0, "Median Spend per Transaction": 21.26, "Median Spend per Customer": 59.45 }, "geometry": { "type": "Point", "coordinates": [ -75.010389, 40.042928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-3dv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "810 S Broad St", "LATITUDE": 39.940442, "LONGITUDE": -75.166876, "DATE_RANGE_START": 2023, "Total Visits": 282.0, "Total Visitors": 274.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 9.0, "Total Spend": 9663.0, "Total Transactions": 510.0, "Total Customers": 354.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166876, 39.940442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1161 Franklin Mills Cir", "LATITUDE": 40.088158, "LONGITUDE": -74.961561, "DATE_RANGE_START": 2023, "Total Visits": 56.0, "Total Visitors": 48.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 26.0, "Total Spend": 12771.0, "Total Transactions": 830.0, "Total Customers": 605.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 14.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961561, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.99223, "LONGITUDE": -75.099719, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 18.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 28.0, "Total Spend": 5148.0, "Total Transactions": 124.0, "Total Customers": 114.0, "Median Spend per Transaction": 40.92, "Median Spend per Customer": 42.8 }, "geometry": { "type": "Point", "coordinates": [ -75.099719, 39.99223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-hnq", "Name": "The Ranstead Room", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2013 Ranstead St", "LATITUDE": 39.952444, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2023, "Total Visits": 2334.0, "Total Visitors": 1566.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 9.0, "Total Spend": 2613.0, "Total Transactions": 41.0, "Total Customers": 40.0, "Median Spend per Transaction": 51.68, "Median Spend per Customer": 52.22 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.952444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p7w-6zf", "Name": "Sweets & Curry House", "Category": "Restaurants and Other Eating Places", "Address": "7630 Castor Ave", "LATITUDE": 40.057241, "LONGITUDE": -75.060927, "DATE_RANGE_START": 2023, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010336003.0, "Median Dwell Time": 14.0, "Total Spend": 423.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 41.79, "Median Spend per Customer": 41.79 }, "geometry": { "type": "Point", "coordinates": [ -75.060927, 40.057241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "Name": "In & Out Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7600 Ogontz Ave", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2023, "Total Visits": 197.0, "Total Visitors": 48.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 430.0, "Total Spend": 6086.0, "Total Transactions": 249.0, "Total Customers": 183.0, "Median Spend per Transaction": 21.93, "Median Spend per Customer": 25.34 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmf-n5z", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd", "LATITUDE": 39.954715, "LONGITUDE": -75.168495, "DATE_RANGE_START": 2023, "Total Visits": 6693.0, "Total Visitors": 3705.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 79.0, "Total Spend": 1962.0, "Total Transactions": 162.0, "Total Customers": 128.0, "Median Spend per Transaction": 11.77, "Median Spend per Customer": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.168495, 39.954715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "Name": "Ginza", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Front St", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2023, "Total Visits": 202.0, "Total Visitors": 190.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 109.0, "Total Spend": 2399.0, "Total Transactions": 49.0, "Total Customers": 43.0, "Median Spend per Transaction": 47.13, "Median Spend per Customer": 55.94 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "Name": "Nordstrom Rack", "Category": "Clothing Stores", "Address": "1700 Chestnut St", "LATITUDE": 39.951362, "LONGITUDE": -75.169014, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 31.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 7.0, "Total Spend": 41542.0, "Total Transactions": 752.0, "Total Customers": 660.0, "Median Spend per Transaction": 39.97, "Median Spend per Customer": 44.83 }, "geometry": { "type": "Point", "coordinates": [ -75.169014, 39.951362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p9r-mrk", "Name": "Jewelry Art", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "9831 Bustleton Ave Ste 3", "LATITUDE": 40.090567, "LONGITUDE": -75.032389, "DATE_RANGE_START": 2023, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010355003.0, "Median Dwell Time": null, "Total Spend": 501.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 200.0, "Median Spend per Customer": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.032389, 40.090567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100656, "LONGITUDE": -75.010623, "DATE_RANGE_START": 2023, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 13.0, "Total Spend": 4022.0, "Total Transactions": 118.0, "Total Customers": 95.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 28.92 }, "geometry": { "type": "Point", "coordinates": [ -75.010623, 40.100656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-x5z", "Name": "Broad And Lehigh Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1300 W Lehigh Ave Ste 102", "LATITUDE": 39.993056, "LONGITUDE": -75.153626, "DATE_RANGE_START": 2023, "Total Visits": 358.0, "Total Visitors": 169.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 448.0, "Total Spend": 64.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153626, 39.993056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "716 South St", "LATITUDE": 39.942192, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2023, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 3.0, "Total Spend": 14176.0, "Total Transactions": 442.0, "Total Customers": 356.0, "Median Spend per Transaction": 29.98, "Median Spend per Customer": 33.8 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.942192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phy-m49", "Name": "4 U Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "4931 N 5th St", "LATITUDE": 40.026652, "LONGITUDE": -75.132326, "DATE_RANGE_START": 2023, "Total Visits": 1511.0, "Total Visitors": 1142.0, "POI_CBG": 421010286003.0, "Median Dwell Time": 23.0, "Total Spend": 108.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 26.7, "Median Spend per Customer": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.132326, 40.026652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1334 Windrim Ave", "LATITUDE": 40.029611, "LONGITUDE": -75.145496, "DATE_RANGE_START": 2023, "Total Visits": 15.0, "Total Visitors": 11.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 13.0, "Total Spend": 6249.0, "Total Transactions": 367.0, "Total Customers": 218.0, "Median Spend per Transaction": 12.89, "Median Spend per Customer": 21.34 }, "geometry": { "type": "Point", "coordinates": [ -75.145496, 40.029611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22n@63s-dw9-7nq", "Name": "Sunglass Hut", "Category": "Health and Personal Care Stores", "Address": "8500 Essington Ave", "LATITUDE": 39.87352, "LONGITUDE": -75.247344, "DATE_RANGE_START": 2023, "Total Visits": 3933.0, "Total Visitors": 3532.0, "POI_CBG": 420459800001.0, "Median Dwell Time": 18.0, "Total Spend": 743.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 296.46, "Median Spend per Customer": 296.46 }, "geometry": { "type": "Point", "coordinates": [ -75.247344, 39.87352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "Name": "Nautica", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.088001, "LONGITUDE": -74.961007, "DATE_RANGE_START": 2023, "Total Visits": 981.0, "Total Visitors": 834.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 38.0, "Total Spend": 699.0, "Total Transactions": 21.0, "Total Customers": 19.0, "Median Spend per Transaction": 25.98, "Median Spend per Customer": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -74.961007, 40.088001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "Name": "Rittenhouse Market", "Category": "Grocery Stores", "Address": "1733 Spruce St", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2023, "Total Visits": 840.0, "Total Visitors": 614.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 2.0, "Total Spend": 17488.0, "Total Transactions": 666.0, "Total Customers": 301.0, "Median Spend per Transaction": 18.06, "Median Spend per Customer": 27.28 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-p8m-b49", "Name": "Chin's Food Market", "Category": "Grocery Stores", "Address": "5537 Torresdale Ave", "LATITUDE": 40.015049, "LONGITUDE": -75.063889, "DATE_RANGE_START": 2023, "Total Visits": 45.0, "Total Visitors": 38.0, "POI_CBG": 421010298002.0, "Median Dwell Time": 6.0, "Total Spend": 2378.0, "Total Transactions": 105.0, "Total Customers": 70.0, "Median Spend per Transaction": 19.89, "Median Spend per Customer": 20.54 }, "geometry": { "type": "Point", "coordinates": [ -75.063889, 40.015049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "Name": "Beer Baron", "Category": "Beer, Wine, and Liquor Stores", "Address": "3290 Red Lion Rd", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2023, "Total Visits": 2071.0, "Total Visitors": 887.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 8.0, "Total Spend": 6485.0, "Total Transactions": 199.0, "Total Customers": 104.0, "Median Spend per Transaction": 27.53, "Median Spend per Customer": 46.61 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-q2k", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912266, "LONGITUDE": -75.155082, "DATE_RANGE_START": 2023, "Total Visits": 271.0, "Total Visitors": 238.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 12.0, "Total Spend": 685.0, "Total Transactions": 16.0, "Total Customers": 15.0, "Median Spend per Transaction": 32.61, "Median Spend per Customer": 44.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155082, 39.912266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "315 Market St", "LATITUDE": 39.950635, "LONGITUDE": -75.146046, "DATE_RANGE_START": 2023, "Total Visits": 1170.0, "Total Visitors": 898.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 8.0, "Total Spend": 5171.0, "Total Transactions": 165.0, "Total Customers": 149.0, "Median Spend per Transaction": 22.06, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.146046, 39.950635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm4-k9f", "Name": "AnaOno Intimates", "Category": "Clothing Stores", "Address": "S 6th St", "LATITUDE": 39.932899, "LONGITUDE": -75.154204, "DATE_RANGE_START": 2023, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010025003.0, "Median Dwell Time": null, "Total Spend": 212.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 84.82, "Median Spend per Customer": 84.82 }, "geometry": { "type": "Point", "coordinates": [ -75.154204, 39.932899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-pvz", "Name": "Furniture Mecca", "Category": "Furniture Stores", "Address": "5648 Lancaster Ave", "LATITUDE": 39.980517, "LONGITUDE": -75.235459, "DATE_RANGE_START": 2023, "Total Visits": 177.0, "Total Visitors": 177.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 19.0, "Total Spend": 1582.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 631.68, "Median Spend per Customer": 631.68 }, "geometry": { "type": "Point", "coordinates": [ -75.235459, 39.980517 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-bkz", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "1001 South St", "LATITUDE": 39.943074, "LONGITUDE": -75.158893, "DATE_RANGE_START": 2023, "Total Visits": 944.0, "Total Visitors": 630.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 7.0, "Total Spend": 116398.0, "Total Transactions": 4176.0, "Total Customers": 1616.0, "Median Spend per Transaction": 17.91, "Median Spend per Customer": 33.55 }, "geometry": { "type": "Point", "coordinates": [ -75.158893, 39.943074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-yd9", "Name": "C & R Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "1600 Washington Ave", "LATITUDE": 39.938175, "LONGITUDE": -75.170566, "DATE_RANGE_START": 2023, "Total Visits": 604.0, "Total Visitors": 371.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 93.0, "Total Spend": 2687.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 401.55, "Median Spend per Customer": 511.53 }, "geometry": { "type": "Point", "coordinates": [ -75.170566, 39.938175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6701 Ridge Ave", "LATITUDE": 40.040588, "LONGITUDE": -75.223539, "DATE_RANGE_START": 2023, "Total Visits": 2530.0, "Total Visitors": 1794.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 8.0, "Total Spend": 122448.0, "Total Transactions": 6527.0, "Total Customers": 2729.0, "Median Spend per Transaction": 13.01, "Median Spend per Customer": 25.64 }, "geometry": { "type": "Point", "coordinates": [ -75.223539, 40.040588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "Name": "Urban Outfitters", "Category": "Clothing Stores", "Address": "1627 Walnut St", "LATITUDE": 39.950062, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2023, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 19907.0, "Total Transactions": 391.0, "Total Customers": 366.0, "Median Spend per Transaction": 38.59, "Median Spend per Customer": 43.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-t7q", "Name": "Pamma Tools", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "809 Sansom St", "LATITUDE": 39.948955, "LONGITUDE": -75.154372, "DATE_RANGE_START": 2023, "Total Visits": 884.0, "Total Visitors": 645.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 1646.0, "Total Transactions": 14.0, "Total Customers": 8.0, "Median Spend per Transaction": 87.0, "Median Spend per Customer": 159.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154372, 39.948955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "Name": "Navy Exchange", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 Robbins St Bldg NO5", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2023, "Total Visits": 289.0, "Total Visitors": 170.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 48.0, "Total Spend": 2317.0, "Total Transactions": 104.0, "Total Customers": 48.0, "Median Spend per Transaction": 7.17, "Median Spend per Customer": 12.18 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9171 Roosevelt Blvd", "LATITUDE": 40.076054, "LONGITUDE": -75.031621, "DATE_RANGE_START": 2023, "Total Visits": 58.0, "Total Visitors": 46.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 22.0, "Total Spend": 11110.0, "Total Transactions": 649.0, "Total Customers": 497.0, "Median Spend per Transaction": 11.43, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.031621, 40.076054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "Name": "Adobe Cafe", "Category": "Restaurants and Other Eating Places", "Address": "800 Fitzwater St", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2023, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010018002.0, "Median Dwell Time": null, "Total Spend": 2180.0, "Total Transactions": 56.0, "Total Customers": 45.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 38.02 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "199 Franklin Mills Blvd Ste A", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2023, "Total Visits": 798.0, "Total Visitors": 661.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 22.0, "Total Spend": 808.0, "Total Transactions": 11.0, "Total Customers": 10.0, "Median Spend per Transaction": 49.15, "Median Spend per Customer": 39.33 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "Name": "Greek Lady", "Category": "Restaurants and Other Eating Places", "Address": "224 S 40th St", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2023, "Total Visits": 266.0, "Total Visitors": 193.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 12.0, "Total Spend": 10554.0, "Total Transactions": 461.0, "Total Customers": 302.0, "Median Spend per Transaction": 18.85, "Median Spend per Customer": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-45f", "Name": "Las Maraca Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2100 Saint Vincent St", "LATITUDE": 40.045072, "LONGITUDE": -75.060626, "DATE_RANGE_START": 2023, "Total Visits": 247.0, "Total Visitors": 220.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 9.0, "Total Spend": 393.0, "Total Transactions": 29.0, "Total Customers": 11.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.060626, 40.045072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2132 E Lehigh Ave", "LATITUDE": 39.984484, "LONGITUDE": -75.121386, "DATE_RANGE_START": 2023, "Total Visits": 19.0, "Total Visitors": 16.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 10.0, "Total Spend": 1778.0, "Total Transactions": 66.0, "Total Customers": 28.0, "Median Spend per Transaction": 19.36, "Median Spend per Customer": 41.01 }, "geometry": { "type": "Point", "coordinates": [ -75.121386, 39.984484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "Name": "Annies Seafood", "Category": "Specialty Food Stores", "Address": "6600 Haverford Ave", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2023, "Total Visits": 33.0, "Total Visitors": 13.0, "POI_CBG": 421010100004.0, "Median Dwell Time": 5.0, "Total Spend": 286.0, "Total Transactions": 9.0, "Total Customers": 6.0, "Median Spend per Transaction": 32.14, "Median Spend per Customer": 49.45 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "Name": "Fair Mart", "Category": "Grocery Stores", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.96876, "LONGITUDE": -75.180744, "DATE_RANGE_START": 2023, "Total Visits": 448.0, "Total Visitors": 187.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 697.0, "Total Spend": 2549.0, "Total Transactions": 222.0, "Total Customers": 106.0, "Median Spend per Transaction": 7.6, "Median Spend per Customer": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.180744, 39.96876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "Name": "Hunan Palace", "Category": "Restaurants and Other Eating Places", "Address": "6118 Lancaster Ave", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2023, "Total Visits": 138.0, "Total Visitors": 124.0, "POI_CBG": 421010114006.0, "Median Dwell Time": null, "Total Spend": 2986.0, "Total Transactions": 178.0, "Total Customers": 74.0, "Median Spend per Transaction": 17.82, "Median Spend per Customer": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-c3q", "Name": "Foodery", "Category": "Restaurants and Other Eating Places", "Address": "324 S 10th St", "LATITUDE": 39.944856, "LONGITUDE": -75.158469, "DATE_RANGE_START": 2023, "Total Visits": 222.0, "Total Visitors": 187.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 1.0, "Total Spend": 650.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 13.06, "Median Spend per Customer": 15.37 }, "geometry": { "type": "Point", "coordinates": [ -75.158469, 39.944856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-gzf", "Name": "Tria Cafe Wash West", "Category": "Beer, Wine, and Liquor Stores", "Address": "1137 Spruce St", "LATITUDE": 39.946658, "LONGITUDE": -75.160853, "DATE_RANGE_START": 2023, "Total Visits": 111.0, "Total Visitors": 111.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 10.0, "Total Spend": 120.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 47.86, "Median Spend per Customer": 47.86 }, "geometry": { "type": "Point", "coordinates": [ -75.160853, 39.946658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@628-pj6-6hq", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "300 E Godfrey Ave", "LATITUDE": 40.042494, "LONGITUDE": -75.1091, "DATE_RANGE_START": 2023, "Total Visits": 228.0, "Total Visitors": 180.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 19.0, "Total Spend": 5531.0, "Total Transactions": 104.0, "Total Customers": 76.0, "Median Spend per Transaction": 45.81, "Median Spend per Customer": 56.87 }, "geometry": { "type": "Point", "coordinates": [ -75.1091, 40.042494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "Name": "Maggiano's Little Italy", "Category": "Restaurants and Other Eating Places", "Address": "1201 Filbert St", "LATITUDE": 39.953257, "LONGITUDE": -75.160271, "DATE_RANGE_START": 2023, "Total Visits": 106.0, "Total Visitors": 84.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 24.0, "Total Spend": 20722.0, "Total Transactions": 235.0, "Total Customers": 210.0, "Median Spend per Transaction": 59.53, "Median Spend per Customer": 66.06 }, "geometry": { "type": "Point", "coordinates": [ -75.160271, 39.953257 ] } } +] +} diff --git a/assets/data/data_2024.geojson b/assets/data/data_2024.geojson new file mode 100644 index 0000000..53de31d --- /dev/null +++ b/assets/data/data_2024.geojson @@ -0,0 +1,2626 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-skf", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1511 Locust St", "LATITUDE": 39.948709, "LONGITUDE": -75.166626, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 287.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 3.0, "Total Spend": 8158.0, "Total Transactions": 204.0, "Total Customers": 159.0, "Median Spend per Transaction": 33.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166626, 39.948709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-w6k", "Name": "Pizza Roma", "Category": "Restaurants and Other Eating Places", "Address": "7300 Bustleton Ave", "LATITUDE": 40.049594, "LONGITUDE": -75.059819, "DATE_RANGE_START": 2024, "Total Visits": 204.0, "Total Visitors": 167.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 16.0, "Total Spend": 4602.0, "Total Transactions": 269.0, "Total Customers": 188.0, "Median Spend per Transaction": 11.72, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.059819, 40.049594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-pmb-fpv", "Name": "Shaking Seafood", "Category": "Restaurants and Other Eating Places", "Address": "243 S 10th St", "LATITUDE": 39.946982, "LONGITUDE": -75.157365, "DATE_RANGE_START": 2024, "Total Visits": 330.0, "Total Visitors": 178.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 1.0, "Total Spend": 3600.0, "Total Transactions": 97.0, "Total Customers": 28.0, "Median Spend per Transaction": 29.17, "Median Spend per Customer": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157365, 39.946982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6hq", "Name": "DaMo Pasta Lab", "Category": "Restaurants and Other Eating Places", "Address": "105 S 12th St", "LATITUDE": 39.949786, "LONGITUDE": -75.160216, "DATE_RANGE_START": 2024, "Total Visits": 234.0, "Total Visitors": 234.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 1509.0, "Total Transactions": 57.0, "Total Customers": 49.0, "Median Spend per Transaction": 20.63, "Median Spend per Customer": 20.63 }, "geometry": { "type": "Point", "coordinates": [ -75.160216, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pp5-k2k", "Name": "Momentos Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2317 E Clearfield St", "LATITUDE": 39.988005, "LONGITUDE": -75.109231, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 71.0, "POI_CBG": 421010179002.0, "Median Dwell Time": 66.0, "Total Spend": 55.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.8, "Median Spend per Customer": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.109231, 39.988005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-zj9", "Name": "Little Istanbul", "Category": "Restaurants and Other Eating Places", "Address": "11728 Bustleton Ave", "LATITUDE": 40.119755, "LONGITUDE": -75.018108, "DATE_RANGE_START": 2024, "Total Visits": 1058.0, "Total Visitors": 689.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 5.0, "Total Spend": 4219.0, "Total Transactions": 67.0, "Total Customers": 58.0, "Median Spend per Transaction": 59.83, "Median Spend per Customer": 69.18 }, "geometry": { "type": "Point", "coordinates": [ -75.018108, 40.119755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pft-zpv", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Ridge Ave", "LATITUDE": 40.030377, "LONGITUDE": -75.211174, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 5.0, "Total Spend": 345.0, "Total Transactions": 29.0, "Total Customers": 21.0, "Median Spend per Transaction": 10.72, "Median Spend per Customer": 12.68 }, "geometry": { "type": "Point", "coordinates": [ -75.211174, 40.030377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-p9p-y5f", "Name": "Petrovsky Market", "Category": "Specialty Food Stores", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093723, "LONGITUDE": -75.032312, "DATE_RANGE_START": 2024, "Total Visits": 407.0, "Total Visitors": 288.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 5.0, "Total Spend": 24399.0, "Total Transactions": 696.0, "Total Customers": 345.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 45.33 }, "geometry": { "type": "Point", "coordinates": [ -75.032312, 40.093723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-pvz", "Name": "Kei Sushi Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1711 South St", "LATITUDE": 39.944416, "LONGITUDE": -75.170739, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 106.0, "Total Spend": 2259.0, "Total Transactions": 46.0, "Total Customers": 42.0, "Median Spend per Transaction": 34.4, "Median Spend per Customer": 44.64 }, "geometry": { "type": "Point", "coordinates": [ -75.170739, 39.944416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22f@628-pmb-9j9", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "S 15th St @ Market St", "LATITUDE": 39.953077, "LONGITUDE": -75.170262, "DATE_RANGE_START": 2024, "Total Visits": 70.0, "Total Visitors": 50.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 12.0, "Total Spend": 135.0, "Total Transactions": 9.0, "Total Customers": 4.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.170262, 39.953077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-ygk", "Name": "Shaxian Delicacies", "Category": "Restaurants and Other Eating Places", "Address": "106 N 10th St", "LATITUDE": 39.953861, "LONGITUDE": -75.156353, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 190.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 300.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156353, 39.953861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgd-z9f", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St Ste 5", "LATITUDE": 39.956704, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2024, "Total Visits": 6012.0, "Total Visitors": 2975.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 10.0, "Total Spend": 3585.0, "Total Transactions": 211.0, "Total Customers": 159.0, "Median Spend per Transaction": 13.59, "Median Spend per Customer": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.956704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3wk", "Name": "Mission BBQ", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100644, "LONGITUDE": -75.009279, "DATE_RANGE_START": 2024, "Total Visits": 465.0, "Total Visitors": 387.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 24.0, "Total Spend": 4061.0, "Total Transactions": 124.0, "Total Customers": 109.0, "Median Spend per Transaction": 26.91, "Median Spend per Customer": 36.48 }, "geometry": { "type": "Point", "coordinates": [ -75.009279, 40.100644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@63s-dw2-brk", "Name": "Sunny Side Diner", "Category": "Restaurants and Other Eating Places", "Address": "5948 Market St", "LATITUDE": 39.961774, "LONGITUDE": -75.240689, "DATE_RANGE_START": 2024, "Total Visits": 174.0, "Total Visitors": 141.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 337.0, "Total Spend": 1013.0, "Total Transactions": 67.0, "Total Customers": 43.0, "Median Spend per Transaction": 14.45, "Median Spend per Customer": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.240689, 39.961774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg4-mx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5301 Chew Ave", "LATITUDE": 40.043491, "LONGITUDE": -75.159322, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 7.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 345.0, "Total Spend": 5338.0, "Total Transactions": 802.0, "Total Customers": 299.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 12.39 }, "geometry": { "type": "Point", "coordinates": [ -75.159322, 40.043491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tjv", "Name": "Michael Jay Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "800 Chestnut St", "LATITUDE": 39.949451, "LONGITUDE": -75.154286, "DATE_RANGE_START": 2024, "Total Visits": 828.0, "Total Visitors": 604.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 8.0, "Total Spend": 78.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 29.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154286, 39.949451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "314 S 5th St", "LATITUDE": 39.944478, "LONGITUDE": -75.150404, "DATE_RANGE_START": 2024, "Total Visits": 529.0, "Total Visitors": 432.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 5.0, "Total Spend": 5262.0, "Total Transactions": 212.0, "Total Customers": 142.0, "Median Spend per Transaction": 13.32, "Median Spend per Customer": 19.89 }, "geometry": { "type": "Point", "coordinates": [ -75.150404, 39.944478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-fmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1825 W Oregon Ave # 33", "LATITUDE": 39.918019, "LONGITUDE": -75.17898, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 2.0, "Total Spend": 161.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.5, "Median Spend per Customer": 23.62 }, "geometry": { "type": "Point", "coordinates": [ -75.17898, 39.918019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9j-zj9", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "10500 Roosevelt Blvd", "LATITUDE": 40.099233, "LONGITUDE": -75.010914, "DATE_RANGE_START": 2024, "Total Visits": 660.0, "Total Visitors": 612.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 6.0, "Total Spend": 992.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 30.78, "Median Spend per Customer": 33.05 }, "geometry": { "type": "Point", "coordinates": [ -75.010914, 40.099233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-5mk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1 Franklin Town Blvd", "LATITUDE": 39.960047, "LONGITUDE": -75.167488, "DATE_RANGE_START": 2024, "Total Visits": 585.0, "Total Visitors": 212.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 1298.0, "Total Spend": 3480.0, "Total Transactions": 254.0, "Total Customers": 129.0, "Median Spend per Transaction": 8.8, "Median Spend per Customer": 14.19 }, "geometry": { "type": "Point", "coordinates": [ -75.167488, 39.960047 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8d-z2k", "Name": "Wawa", "Category": "Grocery Stores", "Address": "5597 Tulip St", "LATITUDE": 40.01218, "LONGITUDE": -75.068378, "DATE_RANGE_START": 2024, "Total Visits": 1048.0, "Total Visitors": 699.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 4.0, "Total Spend": 52901.0, "Total Transactions": 2981.0, "Total Customers": 1353.0, "Median Spend per Transaction": 11.84, "Median Spend per Customer": 20.57 }, "geometry": { "type": "Point", "coordinates": [ -75.068378, 40.01218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@63s-dw2-7bk", "Name": "Reyes Food Market", "Category": "Grocery Stores", "Address": "6161 Chestnut St", "LATITUDE": 39.961179, "LONGITUDE": -75.244847, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 53.0, "POI_CBG": 421010083011.0, "Median Dwell Time": 9.0, "Total Spend": 707.0, "Total Transactions": 104.0, "Total Customers": 59.0, "Median Spend per Transaction": 4.68, "Median Spend per Customer": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -75.244847, 39.961179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmb-5cq", "Name": "AHF Pharmacy Philadelphia", "Category": "Health and Personal Care Stores", "Address": "1211 Chestnut St Ste 405", "LATITUDE": 39.950759, "LONGITUDE": -75.160674, "DATE_RANGE_START": 2024, "Total Visits": 2597.0, "Total Visitors": 2089.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 459.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 54.34 }, "geometry": { "type": "Point", "coordinates": [ -75.160674, 39.950759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-6tv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "33 S 16th St", "LATITUDE": 39.951521, "LONGITUDE": -75.166834, "DATE_RANGE_START": 2024, "Total Visits": 8743.0, "Total Visitors": 5302.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 22013.0, "Total Transactions": 2992.0, "Total Customers": 1515.0, "Median Spend per Transaction": 6.33, "Median Spend per Customer": 8.98 }, "geometry": { "type": "Point", "coordinates": [ -75.166834, 39.951521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-cyv", "Name": "Holmesburg Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8039 Frankford Ave", "LATITUDE": 40.041745, "LONGITUDE": -75.026513, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 157.0, "POI_CBG": 421010329001.0, "Median Dwell Time": 25.0, "Total Spend": 92.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.026513, 40.041745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-wrk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2634 N Broad St # 44", "LATITUDE": 39.993628, "LONGITUDE": -75.15501, "DATE_RANGE_START": 2024, "Total Visits": 287.0, "Total Visitors": 226.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 3.0, "Total Spend": 97.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 5.07, "Median Spend per Customer": 5.07 }, "geometry": { "type": "Point", "coordinates": [ -75.15501, 39.993628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj4-zxq", "Name": "Mediterranean Lunch Truck", "Category": "Restaurants and Other Eating Places", "Address": "3300 N Broad St", "LATITUDE": 40.003342, "LONGITUDE": -75.152885, "DATE_RANGE_START": 2024, "Total Visits": 1370.0, "Total Visitors": 954.0, "POI_CBG": 421010201011.0, "Median Dwell Time": 1.0, "Total Spend": 171.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 47.52, "Median Spend per Customer": 64.8 }, "geometry": { "type": "Point", "coordinates": [ -75.152885, 40.003342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-224@628-pmb-66k", "Name": "Cosmic Cafe", "Category": "Restaurants and Other Eating Places", "Address": "122 S 12th St", "LATITUDE": 39.949349, "LONGITUDE": -75.160742, "DATE_RANGE_START": 2024, "Total Visits": 2667.0, "Total Visitors": 1723.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 316.0, "Total Transactions": 30.0, "Total Customers": 22.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160742, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9p-qj9", "Name": "Green Farmers Market", "Category": "Specialty Food Stores", "Address": "824 Red Lion Rd", "LATITUDE": 40.102668, "LONGITUDE": -75.031061, "DATE_RANGE_START": 2024, "Total Visits": 57.0, "Total Visitors": 41.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 4.0, "Total Spend": 78.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 21.1, "Median Spend per Customer": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.031061, 40.102668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm9-zs5", "Name": "The Philly Game Shop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "519 S 5th St", "LATITUDE": 39.942073, "LONGITUDE": -75.150513, "DATE_RANGE_START": 2024, "Total Visits": 1428.0, "Total Visitors": 1252.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 8.0, "Total Spend": 8596.0, "Total Transactions": 312.0, "Total Customers": 140.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150513, 39.942073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmd-vj9", "Name": "Nature's Gallery Florist", "Category": "Florists", "Address": "2124 Walnut St", "LATITUDE": 39.950794, "LONGITUDE": -75.177008, "DATE_RANGE_START": 2024, "Total Visits": 945.0, "Total Visitors": 706.0, "POI_CBG": 421010008031.0, "Median Dwell Time": 10.0, "Total Spend": 575.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 178.2, "Median Spend per Customer": 178.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177008, 39.950794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-skf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5601 Vine St", "LATITUDE": 39.965979, "LONGITUDE": -75.232268, "DATE_RANGE_START": 2024, "Total Visits": 398.0, "Total Visitors": 308.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 2.0, "Total Spend": 10629.0, "Total Transactions": 881.0, "Total Customers": 446.0, "Median Spend per Transaction": 10.13, "Median Spend per Customer": 14.55 }, "geometry": { "type": "Point", "coordinates": [ -75.232268, 39.965979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-4qf", "Name": "Fairdale Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4019 Fairdale Rd", "LATITUDE": 40.084505, "LONGITUDE": -74.972665, "DATE_RANGE_START": 2024, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 11.0, "Total Spend": 348.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 132.27, "Median Spend per Customer": 132.27 }, "geometry": { "type": "Point", "coordinates": [ -74.972665, 40.084505 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-2tv", "Name": "Pizzeria Stella", "Category": "Restaurants and Other Eating Places", "Address": "420 S 2nd St", "LATITUDE": 39.942419, "LONGITUDE": -75.145725, "DATE_RANGE_START": 2024, "Total Visits": 412.0, "Total Visitors": 390.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 39.0, "Total Spend": 14076.0, "Total Transactions": 174.0, "Total Customers": 153.0, "Median Spend per Transaction": 65.79, "Median Spend per Customer": 69.24 }, "geometry": { "type": "Point", "coordinates": [ -75.145725, 39.942419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-xh5", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "1575 N 52nd St Ste 704", "LATITUDE": 39.978252, "LONGITUDE": -75.224493, "DATE_RANGE_START": 2024, "Total Visits": 528.0, "Total Visitors": 494.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 7.0, "Total Spend": 26785.0, "Total Transactions": 766.0, "Total Customers": 694.0, "Median Spend per Transaction": 22.34, "Median Spend per Customer": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.224493, 39.978252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-9s5", "Name": "Cafe Old Nelson", "Category": "Restaurants and Other Eating Places", "Address": "1435 Arch St", "LATITUDE": 39.954821, "LONGITUDE": -75.164693, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 21.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 45.0, "Total Spend": 3528.0, "Total Transactions": 303.0, "Total Customers": 120.0, "Median Spend per Transaction": 11.63, "Median Spend per Customer": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.164693, 39.954821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pjf-kpv", "Name": "El Quetzal", "Category": "Clothing Stores", "Address": "8440 Germantown Ave", "LATITUDE": 40.075646, "LONGITUDE": -75.20631, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 1.0, "Total Spend": 1332.0, "Total Transactions": 32.0, "Total Customers": 22.0, "Median Spend per Transaction": 34.45, "Median Spend per Customer": 19.39 }, "geometry": { "type": "Point", "coordinates": [ -75.20631, 40.075646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-73q", "Name": "The Capital Grille", "Category": "Restaurants and Other Eating Places", "Address": "1338 Chestnut St # 46", "LATITUDE": 39.950603, "LONGITUDE": -75.163569, "DATE_RANGE_START": 2024, "Total Visits": 1676.0, "Total Visitors": 1424.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 10732.0, "Total Transactions": 66.0, "Total Customers": 59.0, "Median Spend per Transaction": 137.38, "Median Spend per Customer": 150.0 }, "geometry": { "type": "Point", "coordinates": [ -75.163569, 39.950603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-8vz", "Name": "Old Madrid", "Category": "Restaurants and Other Eating Places", "Address": "5261 N 5th St", "LATITUDE": 40.031738, "LONGITUDE": -75.131244, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 39.0, "POI_CBG": 421010286004.0, "Median Dwell Time": null, "Total Spend": 87.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 33.0, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.131244, 40.031738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj8-qs5", "Name": "Scrub Pro", "Category": "Clothing Stores", "Address": "817 Adams Ave # 819", "LATITUDE": 40.031622, "LONGITUDE": -75.104033, "DATE_RANGE_START": 2024, "Total Visits": 2079.0, "Total Visitors": 1523.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 19.0, "Total Spend": 388.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 44.17, "Median Spend per Customer": 44.17 }, "geometry": { "type": "Point", "coordinates": [ -75.104033, 40.031622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm5-sbk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave # B", "LATITUDE": 39.913457, "LONGITUDE": -75.154534, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 1.0, "Total Spend": 79.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.154534, 39.913457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dwf-td9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2934 Island Ave", "LATITUDE": 39.902283, "LONGITUDE": -75.241987, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 1.0, "Total Spend": 5730.0, "Total Transactions": 336.0, "Total Customers": 251.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.241987, 39.902283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-224@628-phq-rp9", "Name": "Dollar Plus Outlet", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1909 E Washington Ln", "LATITUDE": 40.066543, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 265.0, "POI_CBG": 421010263023.0, "Median Dwell Time": 32.0, "Total Spend": 2372.0, "Total Transactions": 109.0, "Total Customers": 87.0, "Median Spend per Transaction": 15.01, "Median Spend per Customer": 20.67 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 40.066543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-649", "Name": "Cedar Park Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4914 Baltimore Ave", "LATITUDE": 39.947827, "LONGITUDE": -75.221935, "DATE_RANGE_START": 2024, "Total Visits": 629.0, "Total Visitors": 420.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 26.0, "Total Spend": 1296.0, "Total Transactions": 62.0, "Total Customers": 57.0, "Median Spend per Transaction": 17.82, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.221935, 39.947827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v4v", "Name": "Cuba Libre Restaurant & Rum Bar Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "10 S 2nd St", "LATITUDE": 39.949565, "LONGITUDE": -75.144004, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 176.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 35.0, "Total Spend": 18308.0, "Total Transactions": 313.0, "Total Customers": 249.0, "Median Spend per Transaction": 36.78, "Median Spend per Customer": 53.95 }, "geometry": { "type": "Point", "coordinates": [ -75.144004, 39.949565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-jsq", "Name": "El Merkury", "Category": "Restaurants and Other Eating Places", "Address": "2104 Chestnut St", "LATITUDE": 39.952178, "LONGITUDE": -75.175842, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 299.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 22.0, "Total Spend": 3637.0, "Total Transactions": 220.0, "Total Customers": 203.0, "Median Spend per Transaction": 14.76, "Median Spend per Customer": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.175842, 39.952178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-ckf", "Name": "Brauhaus Schmitz", "Category": "Restaurants and Other Eating Places", "Address": "718 South St", "LATITUDE": 39.942071, "LONGITUDE": -75.154606, "DATE_RANGE_START": 2024, "Total Visits": 752.0, "Total Visitors": 664.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 4.0, "Total Spend": 1689.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 32.3, "Median Spend per Customer": 32.75 }, "geometry": { "type": "Point", "coordinates": [ -75.154606, 39.942071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-j7q", "Name": "Giovanni's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "5604 Greene St", "LATITUDE": 40.033474, "LONGITUDE": -75.175844, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 150.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 11.0, "Total Spend": 1043.0, "Total Transactions": 51.0, "Total Customers": 41.0, "Median Spend per Transaction": 17.69, "Median Spend per Customer": 20.33 }, "geometry": { "type": "Point", "coordinates": [ -75.175844, 40.033474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pg2-zs5", "Name": "South Philly Italian Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "311 W Mount Pleasant Ave", "LATITUDE": 40.054139, "LONGITUDE": -75.194452, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010388004.0, "Median Dwell Time": 5.0, "Total Spend": 1211.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 78.12, "Median Spend per Customer": 75.99 }, "geometry": { "type": "Point", "coordinates": [ -75.194452, 40.054139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-223@628-pm4-mff", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1100 S 10th St", "LATITUDE": 39.936536, "LONGITUDE": -75.160372, "DATE_RANGE_START": 2024, "Total Visits": 923.0, "Total Visitors": 824.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 3.0, "Total Spend": 273.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 19.52, "Median Spend per Customer": 19.52 }, "geometry": { "type": "Point", "coordinates": [ -75.160372, 39.936536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvy-kfz", "Name": "Ahmad Gyro King", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.951086, "LONGITUDE": -75.19875, "DATE_RANGE_START": 2024, "Total Visits": 1051.0, "Total Visitors": 503.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 7.0, "Total Spend": 140.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.19875, 39.951086 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-v2k", "Name": "Rainbow Apparel", "Category": "Clothing Stores", "Address": "6429 Sackett St", "LATITUDE": 40.029689, "LONGITUDE": -75.058779, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 163.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 3.0, "Total Spend": 155.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 22.91 }, "geometry": { "type": "Point", "coordinates": [ -75.058779, 40.029689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-jgk", "Name": "Joe's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "122 S 16th St", "LATITUDE": 39.950331, "LONGITUDE": -75.167579, "DATE_RANGE_START": 2024, "Total Visits": 400.0, "Total Visitors": 259.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 4.0, "Total Spend": 2629.0, "Total Transactions": 83.0, "Total Customers": 70.0, "Median Spend per Transaction": 27.78, "Median Spend per Customer": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167579, 39.950331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8h-sqz", "Name": "Curran's Irish Inn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6900 State Rd", "LATITUDE": 40.02207, "LONGITUDE": -75.040068, "DATE_RANGE_START": 2024, "Total Visits": 274.0, "Total Visitors": 251.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 43.0, "Total Spend": 1452.0, "Total Transactions": 34.0, "Total Customers": 33.0, "Median Spend per Transaction": 36.5, "Median Spend per Customer": 39.5 }, "geometry": { "type": "Point", "coordinates": [ -75.040068, 40.02207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-php-435", "Name": "Talk of the Town", "Category": "Restaurants and Other Eating Places", "Address": "7804 Limekiln Pike", "LATITUDE": 40.071921, "LONGITUDE": -75.161395, "DATE_RANGE_START": 2024, "Total Visits": 284.0, "Total Visitors": 200.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 3.0, "Total Spend": 1196.0, "Total Transactions": 45.0, "Total Customers": 34.0, "Median Spend per Transaction": 21.14, "Median Spend per Customer": 21.77 }, "geometry": { "type": "Point", "coordinates": [ -75.161395, 40.071921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pjf-zvf", "Name": "Cosimos Pizza Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8624 Germantown Ave", "LATITUDE": 40.076999, "LONGITUDE": -75.208567, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 3.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 14.0, "Total Spend": 582.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 24.63, "Median Spend per Customer": 27.87 }, "geometry": { "type": "Point", "coordinates": [ -75.208567, 40.076999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-y7q", "Name": "Spice C", "Category": "Restaurants and Other Eating Places", "Address": "131 N 10th St", "LATITUDE": 39.954376, "LONGITUDE": -75.155782, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 304.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 16.0, "Total Spend": 4271.0, "Total Transactions": 101.0, "Total Customers": 96.0, "Median Spend per Transaction": 36.1, "Median Spend per Customer": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.954376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-73q", "Name": "Dr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.947797, "LONGITUDE": -75.193456, "DATE_RANGE_START": 2024, "Total Visits": 14692.0, "Total Visitors": 7742.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 63.0, "Total Spend": 48.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 6.2, "Median Spend per Customer": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.193456, 39.947797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p7x-5s5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2133 Cottman Ave", "LATITUDE": 40.049742, "LONGITUDE": -75.062238, "DATE_RANGE_START": 2024, "Total Visits": 904.0, "Total Visitors": 858.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 6.0, "Total Spend": 8526.0, "Total Transactions": 506.0, "Total Customers": 396.0, "Median Spend per Transaction": 11.49, "Median Spend per Customer": 15.59 }, "geometry": { "type": "Point", "coordinates": [ -75.062238, 40.049742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@63s-dw9-7kf", "Name": "InMotion", "Category": "Electronics and Appliance Stores", "Address": "Tech Showcase Terminal D-E Spc DE1", "LATITUDE": 39.877238, "LONGITUDE": -75.244112, "DATE_RANGE_START": 2024, "Total Visits": 823.0, "Total Visitors": 808.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 3347.0, "Total Transactions": 50.0, "Total Customers": 47.0, "Median Spend per Transaction": 40.43, "Median Spend per Customer": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.244112, 39.877238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmf-sqz", "Name": "Ashton Cigar Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1522 Walnut St Fl 2", "LATITUDE": 39.949464, "LONGITUDE": -75.167106, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 187.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 5.0, "Total Spend": 9121.0, "Total Transactions": 122.0, "Total Customers": 82.0, "Median Spend per Transaction": 57.22, "Median Spend per Customer": 70.16 }, "geometry": { "type": "Point", "coordinates": [ -75.167106, 39.949464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-3t9", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2419 S 24th St", "LATITUDE": 39.921556, "LONGITUDE": -75.186008, "DATE_RANGE_START": 2024, "Total Visits": 1035.0, "Total Visitors": 642.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 20.0, "Total Spend": 18570.0, "Total Transactions": 404.0, "Total Customers": 315.0, "Median Spend per Transaction": 33.5, "Median Spend per Customer": 40.73 }, "geometry": { "type": "Point", "coordinates": [ -75.186008, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm4-k9f", "Name": "AnaOno Intimates", "Category": "Clothing Stores", "Address": "S 6th St", "LATITUDE": 39.932899, "LONGITUDE": -75.154204, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 79.0, "POI_CBG": 421010025003.0, "Median Dwell Time": 1038.0, "Total Spend": 518.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 81.47, "Median Spend per Customer": 81.47 }, "geometry": { "type": "Point", "coordinates": [ -75.154204, 39.932899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-wrk", "Name": "Lulu Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4508 Walnut St", "LATITUDE": 39.955024, "LONGITUDE": -75.212218, "DATE_RANGE_START": 2024, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010086012.0, "Median Dwell Time": null, "Total Spend": 330.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.64, "Median Spend per Customer": 12.97 }, "geometry": { "type": "Point", "coordinates": [ -75.212218, 39.955024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-8sq", "Name": "CHAPMAN NISSAN", "Category": "Automobile Dealers", "Address": "6723 Essington Ave", "LATITUDE": 39.910484, "LONGITUDE": -75.223905, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 65.0, "Total Spend": 48363.0, "Total Transactions": 207.0, "Total Customers": 63.0, "Median Spend per Transaction": 194.25, "Median Spend per Customer": 254.14 }, "geometry": { "type": "Point", "coordinates": [ -75.223905, 39.910484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7w-py9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7261 Roosevelt Blvd", "LATITUDE": 40.043941, "LONGITUDE": -75.054036, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 21.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 3.0, "Total Spend": 178.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 33.91, "Median Spend per Customer": 33.91 }, "geometry": { "type": "Point", "coordinates": [ -75.054036, 40.043941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-249", "Name": "Burlington", "Category": "Clothing Stores", "Address": "3401 Aramingo Ave", "LATITUDE": 39.989949, "LONGITUDE": -75.100216, "DATE_RANGE_START": 2024, "Total Visits": 4218.0, "Total Visitors": 2170.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 28.0, "Total Spend": 3682.0, "Total Transactions": 47.0, "Total Customers": 46.0, "Median Spend per Transaction": 61.0, "Median Spend per Customer": 64.82 }, "geometry": { "type": "Point", "coordinates": [ -75.100216, 39.989949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-8y9", "Name": "Klein's Supermarket", "Category": "Specialty Food Stores", "Address": "2401 Pennsylvania Ave", "LATITUDE": 39.966995, "LONGITUDE": -75.177428, "DATE_RANGE_START": 2024, "Total Visits": 1342.0, "Total Visitors": 710.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 154.0, "Total Spend": 261.0, "Total Transactions": 32.0, "Total Customers": 29.0, "Median Spend per Transaction": 6.24, "Median Spend per Customer": 7.41 }, "geometry": { "type": "Point", "coordinates": [ -75.177428, 39.966995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "247-222@628-pg9-vj9", "Name": "Fairmount Pizza and Grill", "Category": "Restaurants and Other Eating Places", "Address": "2000 Fairmount Ave", "LATITUDE": 39.967027, "LONGITUDE": -75.170353, "DATE_RANGE_START": 2024, "Total Visits": 162.0, "Total Visitors": 162.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 2.0, "Total Spend": 14475.0, "Total Transactions": 895.0, "Total Customers": 570.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 19.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.967027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pmb-6p9", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1500 Chestnut St", "LATITUDE": 39.950876, "LONGITUDE": -75.16591, "DATE_RANGE_START": 2024, "Total Visits": 1389.0, "Total Visitors": 1003.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 780.0, "Total Transactions": 36.0, "Total Customers": 32.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.38 }, "geometry": { "type": "Point", "coordinates": [ -75.16591, 39.950876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-87q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1215 Filbert St", "LATITUDE": 39.953286, "LONGITUDE": -75.160518, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 93.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 1372.0, "Total Transactions": 145.0, "Total Customers": 112.0, "Median Spend per Transaction": 8.05, "Median Spend per Customer": 8.54 }, "geometry": { "type": "Point", "coordinates": [ -75.160518, 39.953286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj3-wzf", "Name": "Shop and Carry Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1301 Lindley Ave", "LATITUDE": 40.030414, "LONGITUDE": -75.144615, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 166.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 7.0, "Total Spend": 681.0, "Total Transactions": 87.0, "Total Customers": 28.0, "Median Spend per Transaction": 3.99, "Median Spend per Customer": 11.54 }, "geometry": { "type": "Point", "coordinates": [ -75.144615, 40.030414 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-7wk", "Name": "Primal Nutrition", "Category": "Health and Personal Care Stores", "Address": "8114 Roosevelt Blvd", "LATITUDE": 40.05875, "LONGITUDE": -75.045951, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 134.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 22.0, "Total Spend": 1499.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 91.75, "Median Spend per Customer": 91.75 }, "geometry": { "type": "Point", "coordinates": [ -75.045951, 40.05875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj8-dqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5700 Oxford Ave", "LATITUDE": 40.033033, "LONGITUDE": -75.085393, "DATE_RANGE_START": 2024, "Total Visits": 269.0, "Total Visitors": 207.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 5.0, "Total Spend": 120.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 5.94, "Median Spend per Customer": 5.94 }, "geometry": { "type": "Point", "coordinates": [ -75.085393, 40.033033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgb-bx5", "Name": "Lazos Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "2533 Poplar St", "LATITUDE": 39.972532, "LONGITUDE": -75.178977, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 1.0, "Total Spend": 13262.0, "Total Transactions": 758.0, "Total Customers": 430.0, "Median Spend per Transaction": 13.16, "Median Spend per Customer": 20.77 }, "geometry": { "type": "Point", "coordinates": [ -75.178977, 39.972532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvw-mzf", "Name": "Muslim Fashion", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "5210 Chestnut St", "LATITUDE": 39.958396, "LONGITUDE": -75.225664, "DATE_RANGE_START": 2024, "Total Visits": 595.0, "Total Visitors": 471.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 10.0, "Total Spend": 989.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 67.5, "Median Spend per Customer": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225664, 39.958396 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-j35", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "127 S 18th St", "LATITUDE": 39.950756, "LONGITUDE": -75.17035, "DATE_RANGE_START": 2024, "Total Visits": 255.0, "Total Visitors": 255.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 967.0, "Total Transactions": 58.0, "Total Customers": 55.0, "Median Spend per Transaction": 14.68, "Median Spend per Customer": 14.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17035, 39.950756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-v9f", "Name": "Washington Square Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "241 S 6th St", "LATITUDE": 39.945902, "LONGITUDE": -75.151317, "DATE_RANGE_START": 2024, "Total Visits": 1018.0, "Total Visitors": 625.0, "POI_CBG": 421010010011.0, "Median Dwell Time": 77.0, "Total Spend": 11.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 2.62, "Median Spend per Customer": 4.24 }, "geometry": { "type": "Point", "coordinates": [ -75.151317, 39.945902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-phd-btv", "Name": "Exxon Mobil", "Category": "Gasoline Stations", "Address": "5110 City Ave", "LATITUDE": 39.997914, "LONGITUDE": -75.232695, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 36.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 4.0, "Total Spend": 244.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 35.05, "Median Spend per Customer": 46.38 }, "geometry": { "type": "Point", "coordinates": [ -75.232695, 39.997914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phz-zvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "300 E Erie Ave", "LATITUDE": 40.006866, "LONGITUDE": -75.123098, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 9.0, "Total Spend": 4110.0, "Total Transactions": 440.0, "Total Customers": 230.0, "Median Spend per Transaction": 7.11, "Median Spend per Customer": 12.04 }, "geometry": { "type": "Point", "coordinates": [ -75.123098, 40.006866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-mx5", "Name": "ALDI", "Category": "Grocery Stores", "Address": "3975 Castor Ave", "LATITUDE": 40.006782, "LONGITUDE": -75.097589, "DATE_RANGE_START": 2024, "Total Visits": 45.0, "Total Visitors": 21.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 12.0, "Total Spend": 900.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 69.3, "Median Spend per Customer": 69.3 }, "geometry": { "type": "Point", "coordinates": [ -75.097589, 40.006782 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-jjv", "Name": "Pelicana", "Category": "Restaurants and Other Eating Places", "Address": "4002 Spruce St", "LATITUDE": 39.95156, "LONGITUDE": -75.203327, "DATE_RANGE_START": 2024, "Total Visits": 128.0, "Total Visitors": 128.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 19.0, "Total Spend": 48.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.36, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.203327, 39.95156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg5-35z", "Name": "Chew Deli", "Category": "Restaurants and Other Eating Places", "Address": "6302 Chew Ave", "LATITUDE": 40.05069, "LONGITUDE": -75.173602, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 61.0, "POI_CBG": 421010252007.0, "Median Dwell Time": 120.0, "Total Spend": 3057.0, "Total Transactions": 452.0, "Total Customers": 92.0, "Median Spend per Transaction": 5.35, "Median Spend per Customer": 13.51 }, "geometry": { "type": "Point", "coordinates": [ -75.173602, 40.05069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-q9f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2211 Stenton Ave", "LATITUDE": 40.055835, "LONGITUDE": -75.157899, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010265006.0, "Median Dwell Time": 4.0, "Total Spend": 8738.0, "Total Transactions": 664.0, "Total Customers": 449.0, "Median Spend per Transaction": 10.97, "Median Spend per Customer": 14.53 }, "geometry": { "type": "Point", "coordinates": [ -75.157899, 40.055835 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgj-3qz", "Name": "Pharmacy of America IV", "Category": "Health and Personal Care Stores", "Address": "1900 N 9th St", "LATITUDE": 39.981476, "LONGITUDE": -75.148722, "DATE_RANGE_START": 2024, "Total Visits": 983.0, "Total Visitors": 542.0, "POI_CBG": 421010377002.0, "Median Dwell Time": 59.0, "Total Spend": 944.0, "Total Transactions": 75.0, "Total Customers": 66.0, "Median Spend per Transaction": 7.88, "Median Spend per Customer": 7.46 }, "geometry": { "type": "Point", "coordinates": [ -75.148722, 39.981476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vvf", "Name": "H&M (Hennes & Mauritz)", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087652, "LONGITUDE": -74.961051, "DATE_RANGE_START": 2024, "Total Visits": 958.0, "Total Visitors": 893.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 2098.0, "Total Transactions": 57.0, "Total Customers": 45.0, "Median Spend per Transaction": 18.89, "Median Spend per Customer": 31.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961051, 40.087652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-qmk", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.038399, "LONGITUDE": -75.119512, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 117.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 3.0, "Total Spend": 380.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.119512, 40.038399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7x-5s5", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "2141 Cottman Ave Unit D", "LATITUDE": 40.049772, "LONGITUDE": -75.061876, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 151.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 2.0, "Total Spend": 3695.0, "Total Transactions": 65.0, "Total Customers": 62.0, "Median Spend per Transaction": 42.16, "Median Spend per Customer": 42.16 }, "geometry": { "type": "Point", "coordinates": [ -75.061876, 40.049772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj2-sh5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "700 E", "LATITUDE": 40.011588, "LONGITUDE": -75.1128, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 16.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 47.0, "Total Spend": 166.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 15.37, "Median Spend per Customer": 14.25 }, "geometry": { "type": "Point", "coordinates": [ -75.1128, 40.011588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1924 Fairmount Ave", "LATITUDE": 39.967044, "LONGITUDE": -75.16965, "DATE_RANGE_START": 2024, "Total Visits": 1014.0, "Total Visitors": 778.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 1.0, "Total Spend": 2855.0, "Total Transactions": 230.0, "Total Customers": 194.0, "Median Spend per Transaction": 8.76, "Median Spend per Customer": 11.02 }, "geometry": { "type": "Point", "coordinates": [ -75.16965, 39.967044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pm5-bzf", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.913305, "LONGITUDE": -75.157295, "DATE_RANGE_START": 2024, "Total Visits": 1697.0, "Total Visitors": 1697.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 20.0, "Total Spend": 948.0, "Total Transactions": 28.0, "Total Customers": 25.0, "Median Spend per Transaction": 30.56, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157295, 39.913305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvx-6rk", "Name": "Alaska King Crab House", "Category": "Restaurants and Other Eating Places", "Address": "4834 Lancaster Ave", "LATITUDE": 39.973057, "LONGITUDE": -75.218945, "DATE_RANGE_START": 2024, "Total Visits": 220.0, "Total Visitors": 216.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 6.0, "Total Spend": 8314.0, "Total Transactions": 175.0, "Total Customers": 154.0, "Median Spend per Transaction": 39.94, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.218945, 39.973057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-p8m-b49", "Name": "Chin's Food Market", "Category": "Grocery Stores", "Address": "5537 Torresdale Ave", "LATITUDE": 40.015049, "LONGITUDE": -75.063889, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 53.0, "POI_CBG": 421010298002.0, "Median Dwell Time": 202.0, "Total Spend": 2267.0, "Total Transactions": 100.0, "Total Customers": 61.0, "Median Spend per Transaction": 18.69, "Median Spend per Customer": 23.58 }, "geometry": { "type": "Point", "coordinates": [ -75.063889, 40.015049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgm-28v", "Name": "East Falls Farmers' Market", "Category": "Specialty Food Stores", "Address": "4100 Ridge Ave", "LATITUDE": 40.007838, "LONGITUDE": -75.191777, "DATE_RANGE_START": 2024, "Total Visits": 4019.0, "Total Visitors": 2357.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 1.0, "Total Spend": 68.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.35, "Median Spend per Customer": 10.35 }, "geometry": { "type": "Point", "coordinates": [ -75.191777, 40.007838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgd-z9f", "Name": "Bombay Dhabba Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956756, "LONGITUDE": -75.194135, "DATE_RANGE_START": 2024, "Total Visits": 6012.0, "Total Visitors": 2975.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 10.0, "Total Spend": 640.0, "Total Transactions": 39.0, "Total Customers": 33.0, "Median Spend per Transaction": 15.38, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.194135, 39.956756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-wff", "Name": "The Beer Peddlers", "Category": "Beer, Wine, and Liquor Stores", "Address": "1942 S Columbus Blvd", "LATITUDE": 39.921677, "LONGITUDE": -75.144032, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 147.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 16204.0, "Total Transactions": 567.0, "Total Customers": 354.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.144032, 39.921677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm9-tjv", "Name": "Morimoto", "Category": "Restaurants and Other Eating Places", "Address": "723 Chestnut St", "LATITUDE": 39.94964, "LONGITUDE": -75.153268, "DATE_RANGE_START": 2024, "Total Visits": 349.0, "Total Visitors": 183.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 106.0, "Total Spend": 26478.0, "Total Transactions": 129.0, "Total Customers": 124.0, "Median Spend per Transaction": 157.64, "Median Spend per Customer": 159.07 }, "geometry": { "type": "Point", "coordinates": [ -75.153268, 39.94964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-phj-rp9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7911 Ogontz Ave # 17", "LATITUDE": 40.072921, "LONGITUDE": -75.157675, "DATE_RANGE_START": 2024, "Total Visits": 1101.0, "Total Visitors": 550.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 9.0, "Total Spend": 25997.0, "Total Transactions": 1784.0, "Total Customers": 1082.0, "Median Spend per Transaction": 12.17, "Median Spend per Customer": 16.05 }, "geometry": { "type": "Point", "coordinates": [ -75.157675, 40.072921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-75z", "Name": "Ninja Bao", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd Ste Penn", "LATITUDE": 39.953417, "LONGITUDE": -75.165928, "DATE_RANGE_START": 2024, "Total Visits": 1817.0, "Total Visitors": 1289.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 19.0, "Total Spend": 529.0, "Total Transactions": 32.0, "Total Customers": 26.0, "Median Spend per Transaction": 15.38, "Median Spend per Customer": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.165928, 39.953417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvp-brk", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5700 Baltimore Ave", "LATITUDE": 39.946113, "LONGITUDE": -75.23756, "DATE_RANGE_START": 2024, "Total Visits": 100.0, "Total Visitors": 90.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 5.0, "Total Spend": 4197.0, "Total Transactions": 257.0, "Total Customers": 180.0, "Median Spend per Transaction": 14.36, "Median Spend per Customer": 18.34 }, "geometry": { "type": "Point", "coordinates": [ -75.23756, 39.946113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6rk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.047905, "LONGITUDE": -75.058258, "DATE_RANGE_START": 2024, "Total Visits": 798.0, "Total Visitors": 721.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 3.0, "Total Spend": 13528.0, "Total Transactions": 752.0, "Total Customers": 554.0, "Median Spend per Transaction": 15.66, "Median Spend per Customer": 19.06 }, "geometry": { "type": "Point", "coordinates": [ -75.058258, 40.047905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xkf", "Name": "Lee How Fook", "Category": "Restaurants and Other Eating Places", "Address": "219 N 11th St", "LATITUDE": 39.956243, "LONGITUDE": -75.157042, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 334.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 479.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 39.31, "Median Spend per Customer": 57.78 }, "geometry": { "type": "Point", "coordinates": [ -75.157042, 39.956243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-rc5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5643 Ridge Ave", "LATITUDE": 40.026867, "LONGITUDE": -75.208832, "DATE_RANGE_START": 2024, "Total Visits": 320.0, "Total Visitors": 224.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 1.0, "Total Spend": 6942.0, "Total Transactions": 916.0, "Total Customers": 378.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.208832, 40.026867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-rp9", "Name": "T cafe", "Category": "Restaurants and Other Eating Places", "Address": "108 Chestnut St", "LATITUDE": 39.947994, "LONGITUDE": -75.142941, "DATE_RANGE_START": 2024, "Total Visits": 407.0, "Total Visitors": 332.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 10.0, "Total Spend": 10796.0, "Total Transactions": 652.0, "Total Customers": 309.0, "Median Spend per Transaction": 10.72, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.142941, 39.947994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-kcq", "Name": "Sushi Ya", "Category": "Restaurants and Other Eating Places", "Address": "1418 W Girard Ave", "LATITUDE": 39.971439, "LONGITUDE": -75.160429, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 14.0, "POI_CBG": 421010140001.0, "Median Dwell Time": 265.0, "Total Spend": 1138.0, "Total Transactions": 41.0, "Total Customers": 26.0, "Median Spend per Transaction": 26.0, "Median Spend per Customer": 27.85 }, "geometry": { "type": "Point", "coordinates": [ -75.160429, 39.971439 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-3h5", "Name": "19 Degrees", "Category": "Restaurants and Other Eating Places", "Address": "1847 Christian St", "LATITUDE": 39.941163, "LONGITUDE": -75.17414, "DATE_RANGE_START": 2024, "Total Visits": 158.0, "Total Visitors": 158.0, "POI_CBG": 421010019001.0, "Median Dwell Time": 1.0, "Total Spend": 1734.0, "Total Transactions": 79.0, "Total Customers": 33.0, "Median Spend per Transaction": 17.6, "Median Spend per Customer": 35.2 }, "geometry": { "type": "Point", "coordinates": [ -75.17414, 39.941163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-223@628-pg9-xnq", "Name": "Cameron's Seafood Philly", "Category": "Restaurants and Other Eating Places", "Address": "1600 Fairmount Ave", "LATITUDE": 39.966964, "LONGITUDE": -75.163941, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 179.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 3.0, "Total Spend": 2962.0, "Total Transactions": 80.0, "Total Customers": 62.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.163941, 39.966964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zj9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2400 W Oregon Ave", "LATITUDE": 39.919417, "LONGITUDE": -75.187291, "DATE_RANGE_START": 2024, "Total Visits": 291.0, "Total Visitors": 171.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 13.0, "Total Spend": 34325.0, "Total Transactions": 2043.0, "Total Customers": 1405.0, "Median Spend per Transaction": 15.98, "Median Spend per Customer": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.187291, 39.919417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pmc-sh5", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "901 S 2nd St", "LATITUDE": 39.935833, "LONGITUDE": -75.146655, "DATE_RANGE_START": 2024, "Total Visits": 138.0, "Total Visitors": 130.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 15.0, "Total Spend": 939.0, "Total Transactions": 74.0, "Total Customers": 66.0, "Median Spend per Transaction": 9.79, "Median Spend per Customer": 12.43 }, "geometry": { "type": "Point", "coordinates": [ -75.146655, 39.935833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pm5-2ff", "Name": "Pho Today", "Category": "Restaurants and Other Eating Places", "Address": "1110 Washington Ave", "LATITUDE": 39.936889, "LONGITUDE": -75.16188, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 4.0, "Total Spend": 3172.0, "Total Transactions": 53.0, "Total Customers": 46.0, "Median Spend per Transaction": 43.72, "Median Spend per Customer": 39.26 }, "geometry": { "type": "Point", "coordinates": [ -75.16188, 39.936889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p82-nqz", "Name": "Matz Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "6520 Castor Ave", "LATITUDE": 40.04141, "LONGITUDE": -75.075896, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 124.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 19.0, "Total Spend": 1047.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 358.2, "Median Spend per Customer": 358.2 }, "geometry": { "type": "Point", "coordinates": [ -75.075896, 40.04141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6tv", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1268 Franklin Mills Cir", "LATITUDE": 40.084943, "LONGITUDE": -74.962359, "DATE_RANGE_START": 2024, "Total Visits": 337.0, "Total Visitors": 316.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 1419.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 30.77, "Median Spend per Customer": 30.77 }, "geometry": { "type": "Point", "coordinates": [ -74.962359, 40.084943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm9-yn5", "Name": "Bluebond Guitars", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "511 S 4th St", "LATITUDE": 39.94235, "LONGITUDE": -75.148924, "DATE_RANGE_START": 2024, "Total Visits": 399.0, "Total Visitors": 354.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 1.0, "Total Spend": 773.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 28.53, "Median Spend per Customer": 28.53 }, "geometry": { "type": "Point", "coordinates": [ -75.148924, 39.94235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-k75", "Name": "Trader Joe's", "Category": "Grocery Stores", "Address": "2121 Market St", "LATITUDE": 39.954204, "LONGITUDE": -75.175956, "DATE_RANGE_START": 2024, "Total Visits": 6310.0, "Total Visitors": 4027.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 2.0, "Total Spend": 534304.0, "Total Transactions": 12512.0, "Total Customers": 6160.0, "Median Spend per Transaction": 30.7, "Median Spend per Customer": 54.59 }, "geometry": { "type": "Point", "coordinates": [ -75.175956, 39.954204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pm7-snq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2301 W Passyunk Ave", "LATITUDE": 39.923084, "LONGITUDE": -75.185349, "DATE_RANGE_START": 2024, "Total Visits": 474.0, "Total Visitors": 336.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 4.0, "Total Spend": 971.0, "Total Transactions": 68.0, "Total Customers": 43.0, "Median Spend per Transaction": 10.43, "Median Spend per Customer": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.185349, 39.923084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j7q", "Name": "J Mclaughlin", "Category": "Clothing Stores", "Address": "8401 Germantown Ave", "LATITUDE": 40.075451, "LONGITUDE": -75.204853, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010387001.0, "Median Dwell Time": null, "Total Spend": 1677.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 321.0, "Median Spend per Customer": 321.0 }, "geometry": { "type": "Point", "coordinates": [ -75.204853, 40.075451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph6-p5f", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5165 Lancaster Ave", "LATITUDE": 39.977232, "LONGITUDE": -75.226077, "DATE_RANGE_START": 2024, "Total Visits": 558.0, "Total Visitors": 432.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 4.0, "Total Spend": 678.0, "Total Transactions": 39.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 16.37 }, "geometry": { "type": "Point", "coordinates": [ -75.226077, 39.977232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj3-brk", "Name": "Brothers Grocery", "Category": "Grocery Stores", "Address": "1540 W Butler St", "LATITUDE": 40.011083, "LONGITUDE": -75.154035, "DATE_RANGE_START": 2024, "Total Visits": 111.0, "Total Visitors": 62.0, "POI_CBG": 421010201021.0, "Median Dwell Time": 21.0, "Total Spend": 213.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 4.25 }, "geometry": { "type": "Point", "coordinates": [ -75.154035, 40.011083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-cqz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5200 Woodland Ave", "LATITUDE": 39.938273, "LONGITUDE": -75.215585, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010074005.0, "Median Dwell Time": 5.0, "Total Spend": 5182.0, "Total Transactions": 280.0, "Total Customers": 215.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.215585, 39.938273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-rhq", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "5675 N Front St", "LATITUDE": 40.038152, "LONGITUDE": -75.116908, "DATE_RANGE_START": 2024, "Total Visits": 317.0, "Total Visitors": 296.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 5.0, "Total Spend": 3988.0, "Total Transactions": 115.0, "Total Customers": 101.0, "Median Spend per Transaction": 26.52, "Median Spend per Customer": 31.94 }, "geometry": { "type": "Point", "coordinates": [ -75.116908, 40.038152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-6tv", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "1519 Chestnut St", "LATITUDE": 39.951362, "LONGITUDE": -75.166293, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 32.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 2310.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 110.0, "Median Spend per Customer": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166293, 39.951362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-t7q", "Name": "H& T Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "807 Sansom St", "LATITUDE": 39.949022, "LONGITUDE": -75.154349, "DATE_RANGE_START": 2024, "Total Visits": 828.0, "Total Visitors": 604.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 8.0, "Total Spend": 1027.0, "Total Transactions": 8.0, "Total Customers": 3.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 390.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154349, 39.949022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-54v", "Name": "Mid Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2800 W Dauphin St Ste 420", "LATITUDE": 39.991043, "LONGITUDE": -75.17842, "DATE_RANGE_START": 2024, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 1.0, "Total Spend": 228.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 26.82, "Median Spend per Customer": 25.37 }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.991043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmd-xt9", "Name": "Cava Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "2007 Washington Ave", "LATITUDE": 39.939271, "LONGITUDE": -75.176627, "DATE_RANGE_START": 2024, "Total Visits": 236.0, "Total Visitors": 219.0, "POI_CBG": 421010019002.0, "Median Dwell Time": 1.0, "Total Spend": 15243.0, "Total Transactions": 61.0, "Total Customers": 24.0, "Median Spend per Transaction": 125.55, "Median Spend per Customer": 355.11 }, "geometry": { "type": "Point", "coordinates": [ -75.176627, 39.939271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-ks5", "Name": "Sharetea", "Category": "Restaurants and Other Eating Places", "Address": "600 Washington Ave Unit 5", "LATITUDE": 39.934458, "LONGITUDE": -75.154631, "DATE_RANGE_START": 2024, "Total Visits": 1983.0, "Total Visitors": 1393.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 15.0, "Total Spend": 1238.0, "Total Transactions": 97.0, "Total Customers": 80.0, "Median Spend per Transaction": 9.21, "Median Spend per Customer": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.154631, 39.934458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-j9z", "Name": "Fiesta Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "8339 Germantown Ave", "LATITUDE": 40.075222, "LONGITUDE": -75.204582, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 195.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 45.0, "Total Spend": 636.0, "Total Transactions": 29.0, "Total Customers": 28.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 20.3 }, "geometry": { "type": "Point", "coordinates": [ -75.204582, 40.075222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgj-zvf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2901 N Broad St", "LATITUDE": 39.997186, "LONGITUDE": -75.153515, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 13.0, "POI_CBG": 421010174002.0, "Median Dwell Time": 4.0, "Total Spend": 6837.0, "Total Transactions": 276.0, "Total Customers": 172.0, "Median Spend per Transaction": 21.12, "Median Spend per Customer": 25.03 }, "geometry": { "type": "Point", "coordinates": [ -75.153515, 39.997186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p82-g8v", "Name": "Khaamar Baari Supermarket", "Category": "Grocery Stores", "Address": "6919 Castor Ave", "LATITUDE": 40.046044, "LONGITUDE": -75.070773, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 182.0, "POI_CBG": 421010314015.0, "Median Dwell Time": 10.0, "Total Spend": 180.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 20.28, "Median Spend per Customer": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -75.070773, 40.046044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pg8-nwk", "Name": "Oxford Food Shop", "Category": "Grocery Stores", "Address": "2801 W Oxford St", "LATITUDE": 39.980357, "LONGITUDE": -75.18068, "DATE_RANGE_START": 2024, "Total Visits": 724.0, "Total Visitors": 234.0, "POI_CBG": 421010149004.0, "Median Dwell Time": 193.0, "Total Spend": 184.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 10.4, "Median Spend per Customer": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.18068, 39.980357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-9s5", "Name": "Parkside Beef & Ale", "Category": "Restaurants and Other Eating Places", "Address": "1433 Arch St", "LATITUDE": 39.954826, "LONGITUDE": -75.164594, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 17.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 4.0, "Total Spend": 3780.0, "Total Transactions": 72.0, "Total Customers": 47.0, "Median Spend per Transaction": 40.96, "Median Spend per Customer": 59.64 }, "geometry": { "type": "Point", "coordinates": [ -75.164594, 39.954826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pnw-m6k", "Name": "GIANT Heirloom Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "1004 N 2nd St", "LATITUDE": 39.966473, "LONGITUDE": -75.140367, "DATE_RANGE_START": 2024, "Total Visits": 500.0, "Total Visitors": 312.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 9.0, "Total Spend": 3958.0, "Total Transactions": 137.0, "Total Customers": 109.0, "Median Spend per Transaction": 20.27, "Median Spend per Customer": 22.16 }, "geometry": { "type": "Point", "coordinates": [ -75.140367, 39.966473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pj9-6tv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "5840 Old York Rd", "LATITUDE": 40.042675, "LONGITUDE": -75.144672, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 195.0, "POI_CBG": 421010278002.0, "Median Dwell Time": 6.0, "Total Spend": 4896.0, "Total Transactions": 308.0, "Total Customers": 245.0, "Median Spend per Transaction": 14.25, "Median Spend per Customer": 15.24 }, "geometry": { "type": "Point", "coordinates": [ -75.144672, 40.042675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgy-nyv", "Name": "Secret Garden", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "7631 Ridge Ave", "LATITUDE": 40.051859, "LONGITUDE": -75.235556, "DATE_RANGE_START": 2024, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010218002.0, "Median Dwell Time": null, "Total Spend": 1924.0, "Total Transactions": 45.0, "Total Customers": 38.0, "Median Spend per Transaction": 40.47, "Median Spend per Customer": 49.65 }, "geometry": { "type": "Point", "coordinates": [ -75.235556, 40.051859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-6x5", "Name": "Ocean Prime", "Category": "Restaurants and Other Eating Places", "Address": "124 S 15th St", "LATITUDE": 39.950182, "LONGITUDE": -75.165953, "DATE_RANGE_START": 2024, "Total Visits": 496.0, "Total Visitors": 412.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 894.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 339.52, "Median Spend per Customer": 339.52 }, "geometry": { "type": "Point", "coordinates": [ -75.165953, 39.950182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@63s-dvr-9zz", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6047 Woodland Ave", "LATITUDE": 39.929568, "LONGITUDE": -75.229061, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 126.0, "POI_CBG": 421010066002.0, "Median Dwell Time": 537.0, "Total Spend": 1059.0, "Total Transactions": 54.0, "Total Customers": 50.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 17.22 }, "geometry": { "type": "Point", "coordinates": [ -75.229061, 39.929568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p8t-w8v", "Name": "Cinnabon", "Category": "Restaurants and Other Eating Places", "Address": "1502 Franklin Mills Cir", "LATITUDE": 40.087404, "LONGITUDE": -74.961902, "DATE_RANGE_START": 2024, "Total Visits": 581.0, "Total Visitors": 561.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 3518.0, "Total Transactions": 355.0, "Total Customers": 295.0, "Median Spend per Transaction": 7.23, "Median Spend per Customer": 8.63 }, "geometry": { "type": "Point", "coordinates": [ -74.961902, 40.087404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-fs5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2201 W Oregon Ave", "LATITUDE": 39.919075, "LONGITUDE": -75.185019, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 195.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 345.0, "Total Transactions": 22.0, "Total Customers": 21.0, "Median Spend per Transaction": 11.54, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185019, 39.919075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-n3q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.95343, "LONGITUDE": -75.165858, "DATE_RANGE_START": 2024, "Total Visits": 1817.0, "Total Visitors": 1289.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 19.0, "Total Spend": 1294.0, "Total Transactions": 234.0, "Total Customers": 125.0, "Median Spend per Transaction": 4.73, "Median Spend per Customer": 6.26 }, "geometry": { "type": "Point", "coordinates": [ -75.165858, 39.95343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-8y9", "Name": "Accu Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4802 Spruce St", "LATITUDE": 39.953369, "LONGITUDE": -75.218457, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 211.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 3.0, "Total Spend": 3006.0, "Total Transactions": 120.0, "Total Customers": 96.0, "Median Spend per Transaction": 21.01, "Median Spend per Customer": 25.18 }, "geometry": { "type": "Point", "coordinates": [ -75.218457, 39.953369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7v-f2k", "Name": "Burlington", "Category": "Clothing Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.05144, "LONGITUDE": -75.065063, "DATE_RANGE_START": 2024, "Total Visits": 1374.0, "Total Visitors": 1081.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 26.0, "Total Spend": 182931.0, "Total Transactions": 3702.0, "Total Customers": 2850.0, "Median Spend per Transaction": 34.31, "Median Spend per Customer": 40.58 }, "geometry": { "type": "Point", "coordinates": [ -75.065063, 40.05144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-kpv", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "9220 Frankford Ave", "LATITUDE": 40.055823, "LONGITUDE": -75.00382, "DATE_RANGE_START": 2024, "Total Visits": 488.0, "Total Visitors": 405.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 3.0, "Total Spend": 4658.0, "Total Transactions": 324.0, "Total Customers": 225.0, "Median Spend per Transaction": 12.32, "Median Spend per Customer": 14.95 }, "geometry": { "type": "Point", "coordinates": [ -75.00382, 40.055823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-ks5", "Name": "Weavers Way Co op", "Category": "Grocery Stores", "Address": "8424 Germantown Ave", "LATITUDE": 40.075464, "LONGITUDE": -75.205783, "DATE_RANGE_START": 2024, "Total Visits": 92.0, "Total Visitors": 76.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 1.0, "Total Spend": 7328.0, "Total Transactions": 182.0, "Total Customers": 86.0, "Median Spend per Transaction": 26.36, "Median Spend per Customer": 47.88 }, "geometry": { "type": "Point", "coordinates": [ -75.205783, 40.075464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-p7q", "Name": "Garage Fishtown", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 E Girard Ave", "LATITUDE": 39.968647, "LONGITUDE": -75.134215, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 258.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 1.0, "Total Spend": 31285.0, "Total Transactions": 1068.0, "Total Customers": 729.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.134215, 39.968647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgj-28v", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1717 N 12th St Unit F", "LATITUDE": 39.978491, "LONGITUDE": -75.153508, "DATE_RANGE_START": 2024, "Total Visits": 929.0, "Total Visitors": 491.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 24.0, "Total Spend": 8472.0, "Total Transactions": 567.0, "Total Customers": 295.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.978491 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phc-r8v", "Name": "Sherwin-Williams", "Category": "Building Material and Supplies Dealers", "Address": "5058 City Ave", "LATITUDE": 39.998271, "LONGITUDE": -75.23164, "DATE_RANGE_START": 2024, "Total Visits": 199.0, "Total Visitors": 174.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 6.0, "Total Spend": 59.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.27, "Median Spend per Customer": 22.54 }, "geometry": { "type": "Point", "coordinates": [ -75.23164, 39.998271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-hbk", "Name": "Jyoti Indian Bistro", "Category": "Restaurants and Other Eating Places", "Address": "7220 Germantown Ave", "LATITUDE": 40.060418, "LONGITUDE": -75.191506, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 88.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 19.0, "Total Spend": 63.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 23.9, "Median Spend per Customer": 23.9 }, "geometry": { "type": "Point", "coordinates": [ -75.191506, 40.060418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-rkz", "Name": "Hunting Park Tire Shop", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "440 E Hunting Park Ave", "LATITUDE": 40.012562, "LONGITUDE": -75.118169, "DATE_RANGE_START": 2024, "Total Visits": 65.0, "Total Visitors": 65.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 12.0, "Total Spend": 1932.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 61.79, "Median Spend per Customer": 255.42 }, "geometry": { "type": "Point", "coordinates": [ -75.118169, 40.012562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9w-xwk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "11725 Bustleton Ave", "LATITUDE": 40.11938, "LONGITUDE": -75.015073, "DATE_RANGE_START": 2024, "Total Visits": 249.0, "Total Visitors": 171.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 12.0, "Total Spend": 54948.0, "Total Transactions": 470.0, "Total Customers": 183.0, "Median Spend per Transaction": 50.3, "Median Spend per Customer": 77.34 }, "geometry": { "type": "Point", "coordinates": [ -75.015073, 40.11938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pne-xt9", "Name": "Capitol Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "2035 Richmond St", "LATITUDE": 39.971321, "LONGITUDE": -75.120197, "DATE_RANGE_START": 2024, "Total Visits": 301.0, "Total Visitors": 241.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 3.0, "Total Spend": 1149.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 132.6, "Median Spend per Customer": 436.33 }, "geometry": { "type": "Point", "coordinates": [ -75.120197, 39.971321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@63s-dwc-cbk", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "6101 Passyunk Ave", "LATITUDE": 39.918372, "LONGITUDE": -75.209677, "DATE_RANGE_START": 2024, "Total Visits": 893.0, "Total Visitors": 627.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 7.0, "Total Spend": 661.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 33.13, "Median Spend per Customer": 33.13 }, "geometry": { "type": "Point", "coordinates": [ -75.209677, 39.918372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@63s-dwg-f9f", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7229 Passyunk Ave", "LATITUDE": 39.913707, "LONGITUDE": -75.240275, "DATE_RANGE_START": 2024, "Total Visits": 87.0, "Total Visitors": 87.0, "POI_CBG": 421010060004.0, "Median Dwell Time": 4.0, "Total Spend": 1269.0, "Total Transactions": 67.0, "Total Customers": 57.0, "Median Spend per Transaction": 15.62, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240275, 39.913707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24m-222@628-pmb-2hq", "Name": "New Wave Cafe", "Category": "Restaurants and Other Eating Places", "Address": "784 S 3rd St", "LATITUDE": 39.938092, "LONGITUDE": -75.148547, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 145.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 114.0, "Total Spend": 8540.0, "Total Transactions": 183.0, "Total Customers": 108.0, "Median Spend per Transaction": 40.2, "Median Spend per Customer": 49.48 }, "geometry": { "type": "Point", "coordinates": [ -75.148547, 39.938092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-94v", "Name": "Skechers", "Category": "Shoe Stores", "Address": "1001 Market St Unit C215", "LATITUDE": 39.951985, "LONGITUDE": -75.157156, "DATE_RANGE_START": 2024, "Total Visits": 13727.0, "Total Visitors": 7998.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 609.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 99.98, "Median Spend per Customer": 99.98 }, "geometry": { "type": "Point", "coordinates": [ -75.157156, 39.951985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8j-bkz", "Name": "Super Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7340 Frankford Ave", "LATITUDE": 40.037601, "LONGITUDE": -75.039321, "DATE_RANGE_START": 2024, "Total Visits": 115.0, "Total Visitors": 82.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 10.0, "Total Spend": 1378.0, "Total Transactions": 53.0, "Total Customers": 28.0, "Median Spend per Transaction": 23.99, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.039321, 40.037601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-68v", "Name": "Picanha Brazilian Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "1111 Locust St", "LATITUDE": 39.947781, "LONGITUDE": -75.159791, "DATE_RANGE_START": 2024, "Total Visits": 1402.0, "Total Visitors": 931.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 18.0, "Total Spend": 93.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 35.29, "Median Spend per Customer": 35.29 }, "geometry": { "type": "Point", "coordinates": [ -75.159791, 39.947781 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-y9z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "1521 S Columbus Blvd", "LATITUDE": 39.927937, "LONGITUDE": -75.145412, "DATE_RANGE_START": 2024, "Total Visits": 459.0, "Total Visitors": 400.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 7.0, "Total Spend": 7987.0, "Total Transactions": 562.0, "Total Customers": 398.0, "Median Spend per Transaction": 12.3, "Median Spend per Customer": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.145412, 39.927937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-nwk", "Name": "La Casa Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "3871 L St", "LATITUDE": 40.005788, "LONGITUDE": -75.102968, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 151.0, "POI_CBG": 421010190001.0, "Median Dwell Time": 5.0, "Total Spend": 2879.0, "Total Transactions": 120.0, "Total Customers": 95.0, "Median Spend per Transaction": 21.55, "Median Spend per Customer": 23.56 }, "geometry": { "type": "Point", "coordinates": [ -75.102968, 40.005788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7c-3yv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3366 Grant Ave", "LATITUDE": 40.067458, "LONGITUDE": -75.005095, "DATE_RANGE_START": 2024, "Total Visits": 894.0, "Total Visitors": 724.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 9.0, "Total Spend": 322.0, "Total Transactions": 30.0, "Total Customers": 14.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.005095, 40.067458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-sbk", "Name": "Grace Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2229 Grays Ferry Ave", "LATITUDE": 39.945098, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2024, "Total Visits": 143.0, "Total Visitors": 143.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 69.0, "Total Spend": 918.0, "Total Transactions": 28.0, "Total Customers": 22.0, "Median Spend per Transaction": 25.9, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.945098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-td9", "Name": "NY Bagel & Deli Shop", "Category": "Restaurants and Other Eating Places", "Address": "1120 Buttonwood St", "LATITUDE": 39.96081, "LONGITUDE": -75.157392, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 121.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 25.0, "Total Spend": 1820.0, "Total Transactions": 124.0, "Total Customers": 74.0, "Median Spend per Transaction": 12.81, "Median Spend per Customer": 16.55 }, "geometry": { "type": "Point", "coordinates": [ -75.157392, 39.96081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmf-k2k", "Name": "Kook Burger & Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2102 Market St", "LATITUDE": 39.953634, "LONGITUDE": -75.175294, "DATE_RANGE_START": 2024, "Total Visits": 623.0, "Total Visitors": 500.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 10.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.12, "Median Spend per Customer": 11.12 }, "geometry": { "type": "Point", "coordinates": [ -75.175294, 39.953634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p9k-d9z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "10000 Bustleton Ave", "LATITUDE": 40.103266, "LONGITUDE": -75.029086, "DATE_RANGE_START": 2024, "Total Visits": 912.0, "Total Visitors": 799.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 5.0, "Total Spend": 2444.0, "Total Transactions": 132.0, "Total Customers": 78.0, "Median Spend per Transaction": 12.08, "Median Spend per Customer": 19.53 }, "geometry": { "type": "Point", "coordinates": [ -75.029086, 40.103266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-s89", "Name": "Best Buy Furniture", "Category": "Furniture Stores", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.078042, "LONGITUDE": -75.024894, "DATE_RANGE_START": 2024, "Total Visits": 952.0, "Total Visitors": 642.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 62.0, "Total Spend": 167.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 63.5, "Median Spend per Customer": 63.5 }, "geometry": { "type": "Point", "coordinates": [ -75.024894, 40.078042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dw9-835", "Name": "Jamba", "Category": "Restaurants and Other Eating Places", "Address": "Philadelphia Int L Airport Spc C-9A", "LATITUDE": 39.876746, "LONGITUDE": -75.247167, "DATE_RANGE_START": 2024, "Total Visits": 199.0, "Total Visitors": 178.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 1295.0, "Total Transactions": 72.0, "Total Customers": 66.0, "Median Spend per Transaction": 15.29, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.247167, 39.876746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7bk", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "1320 Walnut St", "LATITUDE": 39.949071, "LONGITUDE": -75.163035, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 31.0, "Total Spend": 5324.0, "Total Transactions": 142.0, "Total Customers": 117.0, "Median Spend per Transaction": 34.27, "Median Spend per Customer": 42.72 }, "geometry": { "type": "Point", "coordinates": [ -75.163035, 39.949071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-jqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2500 Wharton St", "LATITUDE": 39.936264, "LONGITUDE": -75.186107, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 183.0, "POI_CBG": 421010032004.0, "Median Dwell Time": 8.0, "Total Spend": 157.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 12.18 }, "geometry": { "type": "Point", "coordinates": [ -75.186107, 39.936264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmc-v2k", "Name": "Bath & Body Works", "Category": "Health and Personal Care Stores", "Address": "1851 S Columbus Blvd Ste 6", "LATITUDE": 39.923559, "LONGITUDE": -75.14048, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 391.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 37080.0, "Total Transactions": 1032.0, "Total Customers": 919.0, "Median Spend per Transaction": 27.97, "Median Spend per Customer": 29.94 }, "geometry": { "type": "Point", "coordinates": [ -75.14048, 39.923559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg8-dsq", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1646 N 29th St", "LATITUDE": 39.981719, "LONGITUDE": -75.18217, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 157.0, "POI_CBG": 421010149005.0, "Median Dwell Time": 15.0, "Total Spend": 5208.0, "Total Transactions": 492.0, "Total Customers": 204.0, "Median Spend per Transaction": 8.31, "Median Spend per Customer": 15.44 }, "geometry": { "type": "Point", "coordinates": [ -75.18217, 39.981719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-229@628-pmb-xnq", "Name": "Surreal Creamery", "Category": "Restaurants and Other Eating Places", "Address": "1016 Race St", "LATITUDE": 39.955246, "LONGITUDE": -75.156456, "DATE_RANGE_START": 2024, "Total Visits": 3782.0, "Total Visitors": 2650.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 14.0, "Total Spend": 1472.0, "Total Transactions": 97.0, "Total Customers": 92.0, "Median Spend per Transaction": 11.85, "Median Spend per Customer": 11.85 }, "geometry": { "type": "Point", "coordinates": [ -75.156456, 39.955246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p74-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7901 Frankford Ave", "LATITUDE": 40.040565, "LONGITUDE": -75.029533, "DATE_RANGE_START": 2024, "Total Visits": 475.0, "Total Visitors": 258.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 2.0, "Total Spend": 753.0, "Total Transactions": 50.0, "Total Customers": 22.0, "Median Spend per Transaction": 10.51, "Median Spend per Customer": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.029533, 40.040565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-mc5", "Name": "Wings & More", "Category": "Beer, Wine, and Liquor Stores", "Address": "900 Washington Ave", "LATITUDE": 39.936211, "LONGITUDE": -75.158643, "DATE_RANGE_START": 2024, "Total Visits": 974.0, "Total Visitors": 717.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 7.0, "Total Spend": 171.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 32.5, "Median Spend per Customer": 65.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158643, 39.936211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-gp9", "Name": "Parkway Corner Deli", "Category": "Restaurants and Other Eating Places", "Address": "2201 Pennsylvania Ave", "LATITUDE": 39.963918, "LONGITUDE": -75.1747, "DATE_RANGE_START": 2024, "Total Visits": 229.0, "Total Visitors": 145.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 32.0, "Total Spend": 12523.0, "Total Transactions": 995.0, "Total Customers": 359.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 16.34 }, "geometry": { "type": "Point", "coordinates": [ -75.1747, 39.963918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pg9-t9z", "Name": "A&A Food Market", "Category": "Grocery Stores", "Address": "1700 Wallace St", "LATITUDE": 39.965619, "LONGITUDE": -75.165824, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 122.0, "POI_CBG": 421010134022.0, "Median Dwell Time": 1.0, "Total Spend": 971.0, "Total Transactions": 91.0, "Total Customers": 58.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 10.64 }, "geometry": { "type": "Point", "coordinates": [ -75.165824, 39.965619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vvf", "Name": "Champion", "Category": "Clothing Stores", "Address": "1519 Franklin Mills Cir Ste 313", "LATITUDE": 40.089655, "LONGITUDE": -74.961736, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 163.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 43.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 5.84, "Median Spend per Customer": 5.84 }, "geometry": { "type": "Point", "coordinates": [ -74.961736, 40.089655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vfz", "Name": "Four Worlds Bakery", "Category": "Restaurants and Other Eating Places", "Address": "4634 Woodland Ave", "LATITUDE": 39.94341, "LONGITUDE": -75.210507, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 136.0, "POI_CBG": 421010074001.0, "Median Dwell Time": 14.0, "Total Spend": 921.0, "Total Transactions": 93.0, "Total Customers": 50.0, "Median Spend per Transaction": 8.05, "Median Spend per Customer": 11.52 }, "geometry": { "type": "Point", "coordinates": [ -75.210507, 39.94341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-j35", "Name": "Gran Caffe L'Aquila", "Category": "Restaurants and Other Eating Places", "Address": "1716 Chestnut St", "LATITUDE": 39.951186, "LONGITUDE": -75.169528, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 12.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 24.0, "Total Spend": 28538.0, "Total Transactions": 831.0, "Total Customers": 565.0, "Median Spend per Transaction": 15.52, "Median Spend per Customer": 22.18 }, "geometry": { "type": "Point", "coordinates": [ -75.169528, 39.951186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm6-jn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "49 Snyder Ave", "LATITUDE": 39.921871, "LONGITUDE": -75.14714, "DATE_RANGE_START": 2024, "Total Visits": 299.0, "Total Visitors": 299.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 2.0, "Total Spend": 442.0, "Total Transactions": 57.0, "Total Customers": 16.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.14714, 39.921871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pmb-49z", "Name": "Lombard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "542 Lombard St", "LATITUDE": 39.942913, "LONGITUDE": -75.15203, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010010012.0, "Median Dwell Time": null, "Total Spend": 1352.0, "Total Transactions": 124.0, "Total Customers": 88.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.942913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pgj-cqz", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "1600 N Broad St", "LATITUDE": 39.978457, "LONGITUDE": -75.157473, "DATE_RANGE_START": 2024, "Total Visits": 645.0, "Total Visitors": 344.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 7.0, "Total Spend": 494.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 79.99, "Median Spend per Customer": 79.99 }, "geometry": { "type": "Point", "coordinates": [ -75.157473, 39.978457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-nbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "10000 Roosevelt Blvd", "LATITUDE": 40.095304, "LONGITUDE": -75.015597, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 30.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 6.0, "Total Spend": 4410.0, "Total Transactions": 440.0, "Total Customers": 241.0, "Median Spend per Transaction": 8.21, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.015597, 40.095304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-r6k", "Name": "Grindcore House", "Category": "Restaurants and Other Eating Places", "Address": "1515 S 4th St", "LATITUDE": 39.929019, "LONGITUDE": -75.151738, "DATE_RANGE_START": 2024, "Total Visits": 121.0, "Total Visitors": 121.0, "POI_CBG": 421010027023.0, "Median Dwell Time": 42.0, "Total Spend": 1797.0, "Total Transactions": 146.0, "Total Customers": 113.0, "Median Spend per Transaction": 10.99, "Median Spend per Customer": 12.73 }, "geometry": { "type": "Point", "coordinates": [ -75.151738, 39.929019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-6tv", "Name": "Smoothie King", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 207", "LATITUDE": 39.951843, "LONGITUDE": -75.167554, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 12430.0, "Total Transactions": 1023.0, "Total Customers": 642.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 12.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167554, 39.951843 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-ks5", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "57 N 63rd St # 3", "LATITUDE": 39.952045, "LONGITUDE": -75.14516, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 3551.0, "Total Transactions": 358.0, "Total Customers": 234.0, "Median Spend per Transaction": 8.12, "Median Spend per Customer": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.14516, 39.952045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmf-kj9", "Name": "The Pleasure Chest", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "2039 Walnut St", "LATITUDE": 39.950848, "LONGITUDE": -75.175157, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 96.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 7.0, "Total Spend": 1386.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 43.71, "Median Spend per Customer": 70.68 }, "geometry": { "type": "Point", "coordinates": [ -75.175157, 39.950848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22w@628-pmf-jd9", "Name": "Claire's", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952031, "LONGITUDE": -75.168299, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 2943.0, "Total Transactions": 75.0, "Total Customers": 72.0, "Median Spend per Transaction": 27.28, "Median Spend per Customer": 27.28 }, "geometry": { "type": "Point", "coordinates": [ -75.168299, 39.952031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-wc5", "Name": "Comfort & Floyd", "Category": "Restaurants and Other Eating Places", "Address": "1301 S 11th St", "LATITUDE": 39.933341, "LONGITUDE": -75.162074, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 44.0, "Total Spend": 2212.0, "Total Transactions": 47.0, "Total Customers": 47.0, "Median Spend per Transaction": 48.26, "Median Spend per Customer": 48.26 }, "geometry": { "type": "Point", "coordinates": [ -75.162074, 39.933341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-pn5", "Name": "Terakawa Ramen", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954646, "LONGITUDE": -75.202289, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 162.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 2.0, "Total Spend": 1485.0, "Total Transactions": 38.0, "Total Customers": 34.0, "Median Spend per Transaction": 36.9, "Median Spend per Customer": 38.56 }, "geometry": { "type": "Point", "coordinates": [ -75.202289, 39.954646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-d9z", "Name": "Garden Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2025 Benjamin Franklin Pkwy", "LATITUDE": 39.960516, "LONGITUDE": -75.172536, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 30.0, "POI_CBG": 421010125003.0, "Median Dwell Time": 33.0, "Total Spend": 463.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 33.66, "Median Spend per Customer": 33.66 }, "geometry": { "type": "Point", "coordinates": [ -75.172536, 39.960516 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-j5f", "Name": "Moshulu", "Category": "Restaurants and Other Eating Places", "Address": "401 S Columbus Blvd", "LATITUDE": 39.941589, "LONGITUDE": -75.141261, "DATE_RANGE_START": 2024, "Total Visits": 1468.0, "Total Visitors": 1268.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 7.0, "Total Spend": 8250.0, "Total Transactions": 115.0, "Total Customers": 87.0, "Median Spend per Transaction": 45.41, "Median Spend per Customer": 76.48 }, "geometry": { "type": "Point", "coordinates": [ -75.141261, 39.941589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-c5z", "Name": "Champ's Diner", "Category": "Restaurants and Other Eating Places", "Address": "1539 Cecil B Moore Ave", "LATITUDE": 39.979325, "LONGITUDE": -75.16097, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 4.0, "Total Spend": 2870.0, "Total Transactions": 163.0, "Total Customers": 126.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.16097, 39.979325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-7yv", "Name": "Trio", "Category": "Restaurants and Other Eating Places", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.968734, "LONGITUDE": -75.180757, "DATE_RANGE_START": 2024, "Total Visits": 253.0, "Total Visitors": 233.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 5.0, "Total Spend": 2699.0, "Total Transactions": 183.0, "Total Customers": 109.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180757, 39.968734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj8-dqf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5719 Oxford Ave", "LATITUDE": 40.033212, "LONGITUDE": -75.084726, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 126.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 6.0, "Total Spend": 799.0, "Total Transactions": 41.0, "Total Customers": 25.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.084726, 40.033212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-jjv", "Name": "MAC Cosmetics", "Category": "Health and Personal Care Stores", "Address": "1734 Chestnut St Spc # Unit A", "LATITUDE": 39.951489, "LONGITUDE": -75.170193, "DATE_RANGE_START": 2024, "Total Visits": 1203.0, "Total Visitors": 831.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 11.0, "Total Spend": 216.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 52.52, "Median Spend per Customer": 52.52 }, "geometry": { "type": "Point", "coordinates": [ -75.170193, 39.951489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p7z-6p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6865 Rising Sun Ave", "LATITUDE": 40.055418, "LONGITUDE": -75.089672, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 175.0, "POI_CBG": 421010307002.0, "Median Dwell Time": 2.0, "Total Spend": 44.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 16.55, "Median Spend per Customer": 16.55 }, "geometry": { "type": "Point", "coordinates": [ -75.089672, 40.055418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-9mk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Frankford Ave", "LATITUDE": 40.065017, "LONGITUDE": -74.981943, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010362033.0, "Median Dwell Time": 2.0, "Total Spend": 148.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.48, "Median Spend per Customer": 30.48 }, "geometry": { "type": "Point", "coordinates": [ -74.981943, 40.065017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wc5", "Name": "Windsor", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Spc 731", "LATITUDE": 40.08613, "LONGITUDE": -74.962864, "DATE_RANGE_START": 2024, "Total Visits": 513.0, "Total Visitors": 417.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 15218.0, "Total Transactions": 134.0, "Total Customers": 117.0, "Median Spend per Transaction": 48.4, "Median Spend per Customer": 64.69 }, "geometry": { "type": "Point", "coordinates": [ -74.962864, 40.08613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-ysq", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.100669, "LONGITUDE": -75.010644, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 6.0, "Total Spend": 3984.0, "Total Transactions": 101.0, "Total Customers": 62.0, "Median Spend per Transaction": 30.22, "Median Spend per Customer": 41.87 }, "geometry": { "type": "Point", "coordinates": [ -75.010644, 40.100669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-cbk", "Name": "Oregon Diner", "Category": "Restaurants and Other Eating Places", "Address": "302 W Oregon Ave", "LATITUDE": 39.913868, "LONGITUDE": -75.152939, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 330.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 32.0, "Total Spend": 589.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 44.27, "Median Spend per Customer": 45.58 }, "geometry": { "type": "Point", "coordinates": [ -75.152939, 39.913868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pmc-qcq", "Name": "2 Street Pub", "Category": "Restaurants and Other Eating Places", "Address": "1400 S 2nd St", "LATITUDE": 39.930224, "LONGITUDE": -75.148223, "DATE_RANGE_START": 2024, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010027021.0, "Median Dwell Time": 4.0, "Total Spend": 260.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 30.5, "Median Spend per Customer": 33.32 }, "geometry": { "type": "Point", "coordinates": [ -75.148223, 39.930224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-r6k", "Name": "United Buffet", "Category": "Restaurants and Other Eating Places", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029584, "LONGITUDE": -75.100403, "DATE_RANGE_START": 2024, "Total Visits": 1363.0, "Total Visitors": 679.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 251.0, "Total Spend": 28124.0, "Total Transactions": 575.0, "Total Customers": 432.0, "Median Spend per Transaction": 43.16, "Median Spend per Customer": 43.16 }, "geometry": { "type": "Point", "coordinates": [ -75.100403, 40.029584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9p-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "9970 Bustleton Ave", "LATITUDE": 40.102202, "LONGITUDE": -75.029489, "DATE_RANGE_START": 2024, "Total Visits": 1319.0, "Total Visitors": 972.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 5.0, "Total Spend": 13698.0, "Total Transactions": 1035.0, "Total Customers": 666.0, "Median Spend per Transaction": 11.11, "Median Spend per Customer": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.029489, 40.102202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-jgk", "Name": "Philly's Famous Italian Ices", "Category": "Restaurants and Other Eating Places", "Address": "1950 E Lehigh Ave", "LATITUDE": 39.987842, "LONGITUDE": -75.123747, "DATE_RANGE_START": 2024, "Total Visits": 124.0, "Total Visitors": 101.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 1.0, "Total Spend": 987.0, "Total Transactions": 51.0, "Total Customers": 42.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123747, 39.987842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-s3q", "Name": "SS Franklin Fountain", "Category": "Restaurants and Other Eating Places", "Address": "299 S Columbus Blvd", "LATITUDE": 39.945259, "LONGITUDE": -75.141583, "DATE_RANGE_START": 2024, "Total Visits": 4576.0, "Total Visitors": 2903.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 140.0, "Total Spend": 14858.0, "Total Transactions": 662.0, "Total Customers": 602.0, "Median Spend per Transaction": 19.07, "Median Spend per Customer": 19.84 }, "geometry": { "type": "Point", "coordinates": [ -75.141583, 39.945259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-p9z", "Name": "Fabrika Fishtown", "Category": "Restaurants and Other Eating Places", "Address": "1108 Frankford Ave", "LATITUDE": 39.967294, "LONGITUDE": -75.134683, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 374.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 138.0, "Total Spend": 1116.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 69.47, "Median Spend per Customer": 95.53 }, "geometry": { "type": "Point", "coordinates": [ -75.134683, 39.967294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-tn5", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "2383 Cottman Ave Ste 38B", "LATITUDE": 40.046836, "LONGITUDE": -75.055497, "DATE_RANGE_START": 2024, "Total Visits": 228.0, "Total Visitors": 145.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 12.0, "Total Spend": 2732.0, "Total Transactions": 93.0, "Total Customers": 51.0, "Median Spend per Transaction": 14.39, "Median Spend per Customer": 40.57 }, "geometry": { "type": "Point", "coordinates": [ -75.055497, 40.046836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-sqz", "Name": "Theory", "Category": "Clothing Stores", "Address": "1616 Walnut St", "LATITUDE": 39.949604, "LONGITUDE": -75.168129, "DATE_RANGE_START": 2024, "Total Visits": 897.0, "Total Visitors": 631.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 4.0, "Total Spend": 961.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 237.5, "Median Spend per Customer": 237.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168129, 39.949604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-92k", "Name": "Kate Spade", "Category": "Clothing Stores", "Address": "901 Market St Unit 1065", "LATITUDE": 39.952238, "LONGITUDE": -75.155945, "DATE_RANGE_START": 2024, "Total Visits": 423.0, "Total Visitors": 396.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 4967.0, "Total Transactions": 58.0, "Total Customers": 53.0, "Median Spend per Transaction": 80.02, "Median Spend per Customer": 82.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155945, 39.952238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9k-dd9", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "10101 Bustleton Ave", "LATITUDE": 40.102537, "LONGITUDE": -75.02791, "DATE_RANGE_START": 2024, "Total Visits": 743.0, "Total Visitors": 557.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 6.0, "Total Spend": 87.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 5.4, "Median Spend per Customer": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -75.02791, 40.102537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pzn-zmk", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "15501 Bustleton Ave Ste A", "LATITUDE": 40.133182, "LONGITUDE": -75.009467, "DATE_RANGE_START": 2024, "Total Visits": 4030.0, "Total Visitors": 1660.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 58.0, "Total Spend": 1140.0, "Total Transactions": 22.0, "Total Customers": 12.0, "Median Spend per Transaction": 15.04, "Median Spend per Customer": 53.21 }, "geometry": { "type": "Point", "coordinates": [ -75.009467, 40.133182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pgj-ct9", "Name": "Wingstop", "Category": "Restaurants and Other Eating Places", "Address": "1501 N Broad St", "LATITUDE": 39.976245, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 10.0, "Total Spend": 76.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 28.79, "Median Spend per Customer": 28.79 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.976245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-qcq", "Name": "Wayne Supermarket", "Category": "Grocery Stores", "Address": "5348 Wayne Ave", "LATITUDE": 40.029009, "LONGITUDE": -75.17466, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 141.0, "POI_CBG": 421010240003.0, "Median Dwell Time": 4.0, "Total Spend": 69.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.1, "Median Spend per Customer": 26.23 }, "geometry": { "type": "Point", "coordinates": [ -75.17466, 40.029009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-cwk", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1142 Crease St", "LATITUDE": 39.969407, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 11.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 1.0, "Total Spend": 754.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 27.05, "Median Spend per Customer": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "262-222@628-pm9-59f", "Name": "Steak 'Em Up", "Category": "Restaurants and Other Eating Places", "Address": "2600 S 11th St", "LATITUDE": 39.917409, "LONGITUDE": -75.166007, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 109.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 3.0, "Total Spend": 2911.0, "Total Transactions": 112.0, "Total Customers": 72.0, "Median Spend per Transaction": 23.23, "Median Spend per Customer": 30.13 }, "geometry": { "type": "Point", "coordinates": [ -75.166007, 39.917409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p9s-ct9", "Name": "City Cigars", "Category": "Other Miscellaneous Store Retailers", "Address": "615 Byberry Rd", "LATITUDE": 40.123362, "LONGITUDE": -75.014645, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 80.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 115.0, "Total Spend": 1733.0, "Total Transactions": 43.0, "Total Customers": 20.0, "Median Spend per Transaction": 21.34, "Median Spend per Customer": 71.14 }, "geometry": { "type": "Point", "coordinates": [ -75.014645, 40.123362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pg9-wff", "Name": "Christie's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1822 Spring Garden St Unit B", "LATITUDE": 39.963121, "LONGITUDE": -75.169284, "DATE_RANGE_START": 2024, "Total Visits": 121.0, "Total Visitors": 121.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 1.0, "Total Spend": 4644.0, "Total Transactions": 344.0, "Total Customers": 187.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 17.23 }, "geometry": { "type": "Point", "coordinates": [ -75.169284, 39.963121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj9-4d9", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5733 N Broad St", "LATITUDE": 40.040643, "LONGITUDE": -75.143875, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 20.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 25.0, "Total Spend": 3423.0, "Total Transactions": 118.0, "Total Customers": 92.0, "Median Spend per Transaction": 24.88, "Median Spend per Customer": 27.38 }, "geometry": { "type": "Point", "coordinates": [ -75.143875, 40.040643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "401 Spring Garden St", "LATITUDE": 39.961356, "LONGITUDE": -75.145509, "DATE_RANGE_START": 2024, "Total Visits": 2393.0, "Total Visitors": 1569.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 7.0, "Total Spend": 6160.0, "Total Transactions": 273.0, "Total Customers": 165.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.145509, 39.961356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm9-fzz", "Name": "Madrag", "Category": "Clothing Stores", "Address": "2250 W Oregon Ave", "LATITUDE": 39.917769, "LONGITUDE": -75.18518, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 9.0, "Total Spend": 10932.0, "Total Transactions": 263.0, "Total Customers": 205.0, "Median Spend per Transaction": 27.97, "Median Spend per Customer": 27.43 }, "geometry": { "type": "Point", "coordinates": [ -75.18518, 39.917769 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-v4v", "Name": "Vista Peru", "Category": "Restaurants and Other Eating Places", "Address": "20 S 2nd St", "LATITUDE": 39.949458, "LONGITUDE": -75.144144, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 103.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 132.0, "Total Spend": 228.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 86.68, "Median Spend per Customer": 86.68 }, "geometry": { "type": "Point", "coordinates": [ -75.144144, 39.949458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-ks5", "Name": "Tomo Sushi & Ramen", "Category": "Restaurants and Other Eating Places", "Address": "228 Arch St", "LATITUDE": 39.951909, "LONGITUDE": -75.144308, "DATE_RANGE_START": 2024, "Total Visits": 174.0, "Total Visitors": 33.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 227.0, "Total Spend": 1091.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 54.36, "Median Spend per Customer": 53.42 }, "geometry": { "type": "Point", "coordinates": [ -75.144308, 39.951909 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm9-y5f", "Name": "SJ Cigar Co", "Category": "Other Miscellaneous Store Retailers", "Address": "524 S 3rd St", "LATITUDE": 39.941758, "LONGITUDE": -75.147715, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 107.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 4.0, "Total Spend": 323.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 37.96, "Median Spend per Customer": 37.96 }, "geometry": { "type": "Point", "coordinates": [ -75.147715, 39.941758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-87q", "Name": "Maggiano's Little Italy", "Category": "Restaurants and Other Eating Places", "Address": "1201 Filbert St", "LATITUDE": 39.953256, "LONGITUDE": -75.160263, "DATE_RANGE_START": 2024, "Total Visits": 104.0, "Total Visitors": 79.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 29.0, "Total Spend": 25118.0, "Total Transactions": 258.0, "Total Customers": 236.0, "Median Spend per Transaction": 70.24, "Median Spend per Customer": 76.98 }, "geometry": { "type": "Point", "coordinates": [ -75.160263, 39.953256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8h-5xq", "Name": "New Station Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6904 Torresdale Ave", "LATITUDE": 40.026249, "LONGITUDE": -75.043153, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 80.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 7.0, "Total Spend": 2769.0, "Total Transactions": 120.0, "Total Customers": 86.0, "Median Spend per Transaction": 18.52, "Median Spend per Customer": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.043153, 40.026249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgd-z9f", "Name": "Schmear It", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956711, "LONGITUDE": -75.194155, "DATE_RANGE_START": 2024, "Total Visits": 6012.0, "Total Visitors": 2975.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 10.0, "Total Spend": 397.0, "Total Transactions": 39.0, "Total Customers": 29.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.194155, 39.956711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-23m@63s-dw4-rzf", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895159, "LONGITUDE": -75.227965, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 21.0, "Total Spend": 42.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 12.1, "Median Spend per Customer": 12.1 }, "geometry": { "type": "Point", "coordinates": [ -75.227965, 39.895159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9p-z75", "Name": "Ahi Sushi", "Category": "Restaurants and Other Eating Places", "Address": "9999 Bustleton Ave", "LATITUDE": 40.102378, "LONGITUDE": -75.028785, "DATE_RANGE_START": 2024, "Total Visits": 9341.0, "Total Visitors": 3437.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 71.0, "Total Spend": 3661.0, "Total Transactions": 95.0, "Total Customers": 66.0, "Median Spend per Transaction": 31.53, "Median Spend per Customer": 47.85 }, "geometry": { "type": "Point", "coordinates": [ -75.028785, 40.102378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-6ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6391 Oxford Ave", "LATITUDE": 40.044965, "LONGITUDE": -75.087836, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 3.0, "Total Spend": 12205.0, "Total Transactions": 1423.0, "Total Customers": 542.0, "Median Spend per Transaction": 7.08, "Median Spend per Customer": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -75.087836, 40.044965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-zvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "801 S Broad St", "LATITUDE": 39.940574, "LONGITUDE": -75.165859, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 3.0, "Total Spend": 202.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.05, "Median Spend per Customer": 25.05 }, "geometry": { "type": "Point", "coordinates": [ -75.165859, 39.940574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-tsq", "Name": "Alexa Pharmacy", "Category": "Health and Personal Care Stores", "Address": "919 Tyson Ave", "LATITUDE": 40.052626, "LONGITUDE": -75.08015, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 33.0, "POI_CBG": 421010308003.0, "Median Dwell Time": 244.0, "Total Spend": 2633.0, "Total Transactions": 78.0, "Total Customers": 55.0, "Median Spend per Transaction": 27.59, "Median Spend per Customer": 47.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08015, 40.052626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgy-r6k", "Name": "Hopkins Pharmacy", "Category": "Health and Personal Care Stores", "Address": "7700 Ridge Ave", "LATITUDE": 40.051828, "LONGITUDE": -75.236578, "DATE_RANGE_START": 2024, "Total Visits": 259.0, "Total Visitors": 229.0, "POI_CBG": 421010219001.0, "Median Dwell Time": 7.0, "Total Spend": 681.0, "Total Transactions": 11.0, "Total Customers": 7.0, "Median Spend per Transaction": 23.22, "Median Spend per Customer": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.236578, 40.051828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-wzf", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "102 E Chelten Ave", "LATITUDE": 40.037163, "LONGITUDE": -75.173091, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 11.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 3.0, "Total Spend": 115818.0, "Total Transactions": 4110.0, "Total Customers": 2251.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.173091, 40.037163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-223@628-pnx-bp9", "Name": "Girard Food & Gas Mart", "Category": "Gasoline Stations", "Address": "1138 E Susquehanna Ave", "LATITUDE": 39.971685, "LONGITUDE": -75.124961, "DATE_RANGE_START": 2024, "Total Visits": 820.0, "Total Visitors": 641.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 3.0, "Total Spend": 22524.0, "Total Transactions": 774.0, "Total Customers": 457.0, "Median Spend per Transaction": 28.07, "Median Spend per Customer": 35.67 }, "geometry": { "type": "Point", "coordinates": [ -75.124961, 39.971685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pgb-tsq", "Name": "Spring Garden Flowers", "Category": "Florists", "Address": "1209 Ridge Ave", "LATITUDE": 39.962555, "LONGITUDE": -75.157889, "DATE_RANGE_START": 2024, "Total Visits": 157.0, "Total Visitors": 143.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 3.0, "Total Spend": 268.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 48.3, "Median Spend per Customer": 48.3 }, "geometry": { "type": "Point", "coordinates": [ -75.157889, 39.962555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw8-bx5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8220 Bartram Ave", "LATITUDE": 39.891242, "LONGITUDE": -75.241868, "DATE_RANGE_START": 2024, "Total Visits": 3119.0, "Total Visitors": 1780.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 6.0, "Total Spend": 125931.0, "Total Transactions": 7447.0, "Total Customers": 3647.0, "Median Spend per Transaction": 11.8, "Median Spend per Customer": 20.32 }, "geometry": { "type": "Point", "coordinates": [ -75.241868, 39.891242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7b-vmk", "Name": "Academy Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "3091 Holme Ave", "LATITUDE": 40.056942, "LONGITUDE": -75.015162, "DATE_RANGE_START": 2024, "Total Visits": 108.0, "Total Visitors": 87.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 3.0, "Total Spend": 3288.0, "Total Transactions": 97.0, "Total Customers": 39.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.015162, 40.056942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pfx-s89", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "5125 Umbria St", "LATITUDE": 40.038452, "LONGITUDE": -75.239365, "DATE_RANGE_START": 2024, "Total Visits": 276.0, "Total Visitors": 276.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 4.0, "Total Spend": 3348.0, "Total Transactions": 65.0, "Total Customers": 58.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239365, 40.038452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-226@628-pmb-z9f", "Name": "School of Rock", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "421 N 7th St", "LATITUDE": 39.95914, "LONGITUDE": -75.150047, "DATE_RANGE_START": 2024, "Total Visits": 520.0, "Total Visitors": 411.0, "POI_CBG": 421010376001.0, "Median Dwell Time": 199.0, "Total Spend": 186.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 35.75, "Median Spend per Customer": 51.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150047, 39.95914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-5fz", "Name": "Finn Mccools Ale House", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "118 S 12th St", "LATITUDE": 39.949734, "LONGITUDE": -75.160545, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 257.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 7475.0, "Total Transactions": 219.0, "Total Customers": 140.0, "Median Spend per Transaction": 24.62, "Median Spend per Customer": 30.91 }, "geometry": { "type": "Point", "coordinates": [ -75.160545, 39.949734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfz-bx5", "Name": "Main Street Pho", "Category": "Restaurants and Other Eating Places", "Address": "4307 Main St", "LATITUDE": 40.025058, "LONGITUDE": -75.222067, "DATE_RANGE_START": 2024, "Total Visits": 108.0, "Total Visitors": 108.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 1.0, "Total Spend": 2145.0, "Total Transactions": 51.0, "Total Customers": 51.0, "Median Spend per Transaction": 37.82, "Median Spend per Customer": 37.82 }, "geometry": { "type": "Point", "coordinates": [ -75.222067, 40.025058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-nqz", "Name": "Thanal Indian Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1939 Arch St", "LATITUDE": 39.955758, "LONGITUDE": -75.172555, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 54.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 141.0, "Total Spend": 376.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 64.85, "Median Spend per Customer": 64.85 }, "geometry": { "type": "Point", "coordinates": [ -75.172555, 39.955758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-gzf", "Name": "Walnut Supermarket", "Category": "Grocery Stores", "Address": "5131 Walnut St", "LATITUDE": 39.95707, "LONGITUDE": -75.224522, "DATE_RANGE_START": 2024, "Total Visits": 1318.0, "Total Visitors": 873.0, "POI_CBG": 421010085002.0, "Median Dwell Time": 17.0, "Total Spend": 4756.0, "Total Transactions": 128.0, "Total Customers": 107.0, "Median Spend per Transaction": 25.73, "Median Spend per Customer": 28.54 }, "geometry": { "type": "Point", "coordinates": [ -75.224522, 39.95707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-f4v", "Name": "Papa Joe's", "Category": "Restaurants and Other Eating Places", "Address": "7204 Ogontz Ave", "LATITUDE": 40.064237, "LONGITUDE": -75.153944, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 117.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 3.0, "Total Spend": 4040.0, "Total Transactions": 150.0, "Total Customers": 65.0, "Median Spend per Transaction": 28.02, "Median Spend per Customer": 30.7 }, "geometry": { "type": "Point", "coordinates": [ -75.153944, 40.064237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-sh5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5601 Vine St", "LATITUDE": 39.966684, "LONGITUDE": -75.232973, "DATE_RANGE_START": 2024, "Total Visits": 1887.0, "Total Visitors": 856.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 40.0, "Total Spend": 1837.0, "Total Transactions": 80.0, "Total Customers": 49.0, "Median Spend per Transaction": 13.17, "Median Spend per Customer": 21.1 }, "geometry": { "type": "Point", "coordinates": [ -75.232973, 39.966684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp4-nwk", "Name": "One Pound Cheesesteaks", "Category": "Restaurants and Other Eating Places", "Address": "2661 Kensington Ave", "LATITUDE": 39.989593, "LONGITUDE": -75.125509, "DATE_RANGE_START": 2024, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 15.0, "Total Spend": 607.0, "Total Transactions": 28.0, "Total Customers": 22.0, "Median Spend per Transaction": 20.75, "Median Spend per Customer": 26.25 }, "geometry": { "type": "Point", "coordinates": [ -75.125509, 39.989593 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pm4-3kf", "Name": "Bok Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "800 Mifflin St", "LATITUDE": 39.925358, "LONGITUDE": -75.160304, "DATE_RANGE_START": 2024, "Total Visits": 843.0, "Total Visitors": 656.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 73.0, "Total Spend": 4278.0, "Total Transactions": 126.0, "Total Customers": 96.0, "Median Spend per Transaction": 25.72, "Median Spend per Customer": 34.2 }, "geometry": { "type": "Point", "coordinates": [ -75.160304, 39.925358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pjf-kvf", "Name": "Serendipity Shops", "Category": "Clothing Stores", "Address": "8506 Germantown Ave", "LATITUDE": 40.07605, "LONGITUDE": -75.206841, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 340.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 8.0, "Total Spend": 60.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.78, "Median Spend per Customer": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.206841, 40.07605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgd-zxq", "Name": "GIANT Heirloom Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "3401 Chestnut St", "LATITUDE": 39.954746, "LONGITUDE": -75.191875, "DATE_RANGE_START": 2024, "Total Visits": 1294.0, "Total Visitors": 727.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 62.0, "Total Spend": 13205.0, "Total Transactions": 641.0, "Total Customers": 386.0, "Median Spend per Transaction": 15.88, "Median Spend per Customer": 22.85 }, "geometry": { "type": "Point", "coordinates": [ -75.191875, 39.954746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pp4-ks5", "Name": "Vientiane Bistro", "Category": "Restaurants and Other Eating Places", "Address": "2537 Kensington Ave", "LATITUDE": 39.988137, "LONGITUDE": -75.128253, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 134.0, "POI_CBG": 421010161003.0, "Median Dwell Time": 1.0, "Total Spend": 1088.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 48.74, "Median Spend per Customer": 53.33 }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.988137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj2-sh5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012072, "LONGITUDE": -75.115243, "DATE_RANGE_START": 2024, "Total Visits": 508.0, "Total Visitors": 395.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 49.0, "Total Spend": 437.0, "Total Transactions": 21.0, "Total Customers": 18.0, "Median Spend per Transaction": 16.32, "Median Spend per Customer": 21.14 }, "geometry": { "type": "Point", "coordinates": [ -75.115243, 40.012072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pmd-s5z", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "2101 South St # 102", "LATITUDE": 39.945275, "LONGITUDE": -75.177239, "DATE_RANGE_START": 2024, "Total Visits": 86.0, "Total Visitors": 53.0, "POI_CBG": 421010012013.0, "Median Dwell Time": 5.0, "Total Spend": 5904.0, "Total Transactions": 142.0, "Total Customers": 132.0, "Median Spend per Transaction": 29.12, "Median Spend per Customer": 30.21 }, "geometry": { "type": "Point", "coordinates": [ -75.177239, 39.945275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-t5f", "Name": "Perla", "Category": "Restaurants and Other Eating Places", "Address": "1535 S 11th St", "LATITUDE": 39.930019, "LONGITUDE": -75.16283, "DATE_RANGE_START": 2024, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 3.0, "Total Spend": 1500.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 130.3, "Median Spend per Customer": 129.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16283, 39.930019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-5fz", "Name": "Zio's Brick Oven Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "111 S 13th St", "LATITUDE": 39.950079, "LONGITUDE": -75.161743, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 200.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 33.0, "Total Spend": 9877.0, "Total Transactions": 377.0, "Total Customers": 253.0, "Median Spend per Transaction": 12.22, "Median Spend per Customer": 14.82 }, "geometry": { "type": "Point", "coordinates": [ -75.161743, 39.950079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgj-n5z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993418, "LONGITUDE": -75.144072, "DATE_RANGE_START": 2024, "Total Visits": 324.0, "Total Visitors": 241.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 7.0, "Total Spend": 829.0, "Total Transactions": 33.0, "Total Customers": 26.0, "Median Spend per Transaction": 18.72, "Median Spend per Customer": 18.64 }, "geometry": { "type": "Point", "coordinates": [ -75.144072, 39.993418 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p82-p35", "Name": "Gold Coast Market", "Category": "Grocery Stores", "Address": "6538 Castor Ave", "LATITUDE": 40.041915, "LONGITUDE": -75.075423, "DATE_RANGE_START": 2024, "Total Visits": 244.0, "Total Visitors": 182.0, "POI_CBG": 421010311011.0, "Median Dwell Time": 5.0, "Total Spend": 1147.0, "Total Transactions": 84.0, "Total Customers": 46.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 12.44 }, "geometry": { "type": "Point", "coordinates": [ -75.075423, 40.041915 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p6z-bhq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9240 State Rd", "LATITUDE": 40.047019, "LONGITUDE": -74.993384, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 5.0, "Total Spend": 3529.0, "Total Transactions": 434.0, "Total Customers": 203.0, "Median Spend per Transaction": 7.06, "Median Spend per Customer": 9.58 }, "geometry": { "type": "Point", "coordinates": [ -74.993384, 40.047019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@63s-dvr-cyv", "Name": "A&j Supermarket", "Category": "Grocery Stores", "Address": "6530 Elmwood Ave", "LATITUDE": 39.921263, "LONGITUDE": -75.231281, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 99.0, "POI_CBG": 421010062001.0, "Median Dwell Time": null, "Total Spend": 2340.0, "Total Transactions": 187.0, "Total Customers": 33.0, "Median Spend per Transaction": 12.25, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231281, 39.921263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-tvz", "Name": "Barclay Prime", "Category": "Restaurants and Other Eating Places", "Address": "237 S 18th St", "LATITUDE": 39.948498, "LONGITUDE": -75.170757, "DATE_RANGE_START": 2024, "Total Visits": 487.0, "Total Visitors": 423.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 9.0, "Total Spend": 26343.0, "Total Transactions": 80.0, "Total Customers": 63.0, "Median Spend per Transaction": 311.22, "Median Spend per Customer": 311.22 }, "geometry": { "type": "Point", "coordinates": [ -75.170757, 39.948498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-v4v", "Name": "Nick's Bar and Grille", "Category": "Restaurants and Other Eating Places", "Address": "16 S 2nd St", "LATITUDE": 39.949498, "LONGITUDE": -75.144137, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 853.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 2590.0, "Total Transactions": 66.0, "Total Customers": 49.0, "Median Spend per Transaction": 29.75, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144137, 39.949498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnw-snq", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "Delaware Ave @ Spring Garden St", "LATITUDE": 39.960628, "LONGITUDE": -75.137579, "DATE_RANGE_START": 2024, "Total Visits": 1418.0, "Total Visitors": 1087.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 4.0, "Total Spend": 12182.0, "Total Transactions": 598.0, "Total Customers": 445.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 20.19 }, "geometry": { "type": "Point", "coordinates": [ -75.137579, 39.960628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm8-d7q", "Name": "A & S Deli", "Category": "Restaurants and Other Eating Places", "Address": "2848 S 17th St", "LATITUDE": 39.914908, "LONGITUDE": -75.176184, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 82.0, "POI_CBG": 421010039023.0, "Median Dwell Time": 1.0, "Total Spend": 308.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 14.3, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.176184, 39.914908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p83-y5f", "Name": "Pennypack Flowers", "Category": "Florists", "Address": "9315 Krewstown Rd", "LATITUDE": 40.085429, "LONGITUDE": -75.045472, "DATE_RANGE_START": 2024, "Total Visits": 704.0, "Total Visitors": 462.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 11.0, "Total Spend": 171.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045472, 40.085429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pmf-j35", "Name": "Sephora", "Category": "Health and Personal Care Stores", "Address": "1714 Chestnut St", "LATITUDE": 39.951248, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 41.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 14.0, "Total Spend": 118956.0, "Total Transactions": 1843.0, "Total Customers": 1550.0, "Median Spend per Transaction": 48.33, "Median Spend per Customer": 51.84 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.951248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-s5z", "Name": "Park Manor Deli", "Category": "Restaurants and Other Eating Places", "Address": "240 W Chelten Ave", "LATITUDE": 40.030374, "LONGITUDE": -75.179912, "DATE_RANGE_START": 2024, "Total Visits": 328.0, "Total Visitors": 242.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 10.0, "Total Spend": 4580.0, "Total Transactions": 333.0, "Total Customers": 142.0, "Median Spend per Transaction": 12.75, "Median Spend per Customer": 16.31 }, "geometry": { "type": "Point", "coordinates": [ -75.179912, 40.030374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-hkf", "Name": "The Coventry Deli", "Category": "Restaurants and Other Eating Places", "Address": "2000 Market St", "LATITUDE": 39.953273, "LONGITUDE": -75.173676, "DATE_RANGE_START": 2024, "Total Visits": 829.0, "Total Visitors": 465.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 40.0, "Total Spend": 825.0, "Total Transactions": 100.0, "Total Customers": 43.0, "Median Spend per Transaction": 7.13, "Median Spend per Customer": 16.03 }, "geometry": { "type": "Point", "coordinates": [ -75.173676, 39.953273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-wkz", "Name": "Saks Off Fifth", "Category": "Department Stores", "Address": "1618 Franklin Mills Cir", "LATITUDE": 40.08814, "LONGITUDE": -74.961754, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 5686.0, "Total Transactions": 61.0, "Total Customers": 57.0, "Median Spend per Transaction": 59.99, "Median Spend per Customer": 61.78 }, "geometry": { "type": "Point", "coordinates": [ -74.961754, 40.08814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pm5-bzf", "Name": "Mr Wish USA", "Category": "Restaurants and Other Eating Places", "Address": "320 W Oregon Ave", "LATITUDE": 39.912953, "LONGITUDE": -75.153917, "DATE_RANGE_START": 2024, "Total Visits": 298.0, "Total Visitors": 226.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 23.0, "Total Spend": 40.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.23, "Median Spend per Customer": 15.23 }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.912953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-phq-rp9", "Name": "Deli Delight", "Category": "Restaurants and Other Eating Places", "Address": "1903 E Washington Ln", "LATITUDE": 40.066189, "LONGITUDE": -75.159352, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 222.0, "POI_CBG": 421010263023.0, "Median Dwell Time": 7.0, "Total Spend": 142.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 10.68, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.159352, 40.066189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-st9", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4000 Monument Rd", "LATITUDE": 40.006197, "LONGITUDE": -75.211921, "DATE_RANGE_START": 2024, "Total Visits": 6242.0, "Total Visitors": 4587.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 10.0, "Total Spend": 81044.0, "Total Transactions": 1507.0, "Total Customers": 1220.0, "Median Spend per Transaction": 34.95, "Median Spend per Customer": 45.45 }, "geometry": { "type": "Point", "coordinates": [ -75.211921, 40.006197 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgd-zfz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3400 Lancaster Ave Ste 10", "LATITUDE": 39.957286, "LONGITUDE": -75.191436, "DATE_RANGE_START": 2024, "Total Visits": 323.0, "Total Visitors": 221.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 3.0, "Total Spend": 15491.0, "Total Transactions": 1168.0, "Total Customers": 654.0, "Median Spend per Transaction": 12.21, "Median Spend per Customer": 14.74 }, "geometry": { "type": "Point", "coordinates": [ -75.191436, 39.957286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-tgk", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "5520 Whitaker Ave Ste 10", "LATITUDE": 40.035436, "LONGITUDE": -75.099754, "DATE_RANGE_START": 2024, "Total Visits": 169.0, "Total Visitors": 153.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 3.0, "Total Spend": 235.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 8.02, "Median Spend per Customer": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.099754, 40.035436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-zs5", "Name": "Platinum", "Category": "Clothing Stores", "Address": "526 South St", "LATITUDE": 39.941783, "LONGITUDE": -75.151794, "DATE_RANGE_START": 2024, "Total Visits": 208.0, "Total Visitors": 166.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 26.0, "Total Spend": 2302.0, "Total Transactions": 66.0, "Total Customers": 61.0, "Median Spend per Transaction": 6.0, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151794, 39.941783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg9-x5z", "Name": "Vineyards Cafe", "Category": "Restaurants and Other Eating Places", "Address": "847 N 16th St", "LATITUDE": 39.96989, "LONGITUDE": -75.162961, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 74.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 1.0, "Total Spend": 2942.0, "Total Transactions": 291.0, "Total Customers": 145.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.162961, 39.96989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pg4-fvf", "Name": "John's Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "128 W Chelten Ave", "LATITUDE": 40.033242, "LONGITUDE": -75.177084, "DATE_RANGE_START": 2024, "Total Visits": 1220.0, "Total Visitors": 671.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 17.0, "Total Spend": 5689.0, "Total Transactions": 219.0, "Total Customers": 151.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 22.48 }, "geometry": { "type": "Point", "coordinates": [ -75.177084, 40.033242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj8-qs5", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "811 Adams Ave", "LATITUDE": 40.031843, "LONGITUDE": -75.10443, "DATE_RANGE_START": 2024, "Total Visits": 2079.0, "Total Visitors": 1523.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 19.0, "Total Spend": 109113.0, "Total Transactions": 6248.0, "Total Customers": 4213.0, "Median Spend per Transaction": 14.37, "Median Spend per Customer": 20.35 }, "geometry": { "type": "Point", "coordinates": [ -75.10443, 40.031843 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p77-c3q", "Name": "Wingstop", "Category": "Restaurants and Other Eating Places", "Address": "9910 Frankford Ave Ste 262", "LATITUDE": 40.064934, "LONGITUDE": -74.983754, "DATE_RANGE_START": 2024, "Total Visits": 300.0, "Total Visitors": 200.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 2.0, "Total Spend": 45040.0, "Total Transactions": 2021.0, "Total Customers": 1588.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -74.983754, 40.064934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-st9", "Name": "Osteria", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "640 N Broad St", "LATITUDE": 39.965053, "LONGITUDE": -75.161077, "DATE_RANGE_START": 2024, "Total Visits": 711.0, "Total Visitors": 429.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 153.0, "Total Spend": 3825.0, "Total Transactions": 25.0, "Total Customers": 22.0, "Median Spend per Transaction": 152.61, "Median Spend per Customer": 166.56 }, "geometry": { "type": "Point", "coordinates": [ -75.161077, 39.965053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-jvz", "Name": "Chestnut Hill Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "8138 Germantown Ave", "LATITUDE": 40.072902, "LONGITUDE": -75.202695, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010231001.0, "Median Dwell Time": null, "Total Spend": 338.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.202695, 40.072902 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgm-3qz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4168 Ridge Ave", "LATITUDE": 40.008377, "LONGITUDE": -75.193545, "DATE_RANGE_START": 2024, "Total Visits": 560.0, "Total Visitors": 453.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 4.0, "Total Spend": 1600.0, "Total Transactions": 157.0, "Total Customers": 101.0, "Median Spend per Transaction": 7.09, "Median Spend per Customer": 9.87 }, "geometry": { "type": "Point", "coordinates": [ -75.193545, 40.008377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-ygk", "Name": "Arch Pharmacy", "Category": "Health and Personal Care Stores", "Address": "933 Arch St", "LATITUDE": 39.953655, "LONGITUDE": -75.156082, "DATE_RANGE_START": 2024, "Total Visits": 4262.0, "Total Visitors": 2963.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 131.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 14.36, "Median Spend per Customer": 11.8 }, "geometry": { "type": "Point", "coordinates": [ -75.156082, 39.953655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-224@628-p8t-wc5", "Name": "American Eagle Outlet Franklin Mills", "Category": "Clothing Stores", "Address": "1420 Franklin Mills Cir", "LATITUDE": 40.086569, "LONGITUDE": -74.962587, "DATE_RANGE_START": 2024, "Total Visits": 954.0, "Total Visitors": 924.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 965.0, "Total Transactions": 29.0, "Total Customers": 22.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -74.962587, 40.086569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phd-h89", "Name": "El Limon", "Category": "Restaurants and Other Eating Places", "Address": "4514 City Ave", "LATITUDE": 40.002787, "LONGITUDE": -75.222273, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 320.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 18.0, "Total Spend": 185.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.6, "Median Spend per Customer": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.222273, 40.002787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-b49", "Name": "E Cigs International", "Category": "Other Miscellaneous Store Retailers", "Address": "6212 Ridge Ave", "LATITUDE": 40.03586, "LONGITUDE": -75.217916, "DATE_RANGE_START": 2024, "Total Visits": 111.0, "Total Visitors": 28.0, "POI_CBG": 421010213001.0, "Median Dwell Time": 255.0, "Total Spend": 216.0, "Total Transactions": 7.0, "Total Customers": 4.0, "Median Spend per Transaction": 20.78, "Median Spend per Customer": 69.64 }, "geometry": { "type": "Point", "coordinates": [ -75.217916, 40.03586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgh-v4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2109 N Broad St", "LATITUDE": 39.985226, "LONGITUDE": -75.156032, "DATE_RANGE_START": 2024, "Total Visits": 1061.0, "Total Visitors": 729.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 4.0, "Total Spend": 12698.0, "Total Transactions": 1095.0, "Total Customers": 723.0, "Median Spend per Transaction": 9.75, "Median Spend per Customer": 12.06 }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.985226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-3qz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5690 Rising Sun Ave", "LATITUDE": 40.039487, "LONGITUDE": -75.109924, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 46.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 5.0, "Total Spend": 2913.0, "Total Transactions": 93.0, "Total Customers": 84.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.06 }, "geometry": { "type": "Point", "coordinates": [ -75.109924, 40.039487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvq-jjv", "Name": "The Breakfast Joint", "Category": "Restaurants and Other Eating Places", "Address": "271 S 60th St", "LATITUDE": 39.956756, "LONGITUDE": -75.241627, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 92.0, "POI_CBG": 421010083023.0, "Median Dwell Time": 49.0, "Total Spend": 91.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 22.94, "Median Spend per Customer": 22.94 }, "geometry": { "type": "Point", "coordinates": [ -75.241627, 39.956756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vs5", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1 Mifflin St", "LATITUDE": 39.924535, "LONGITUDE": -75.145912, "DATE_RANGE_START": 2024, "Total Visits": 5997.0, "Total Visitors": 3853.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 17.0, "Total Spend": 76700.0, "Total Transactions": 1347.0, "Total Customers": 1115.0, "Median Spend per Transaction": 35.2, "Median Spend per Customer": 44.07 }, "geometry": { "type": "Point", "coordinates": [ -75.145912, 39.924535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-p83-d7q", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8318 Bustleton Ave", "LATITUDE": 40.069651, "LONGITUDE": -75.051721, "DATE_RANGE_START": 2024, "Total Visits": 17.0, "Total Visitors": 16.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 7.0, "Total Spend": 285.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 9.4, "Median Spend per Customer": 9.45 }, "geometry": { "type": "Point", "coordinates": [ -75.051721, 40.069651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm8-rp9", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "2308 W Oregon Ave Ste C", "LATITUDE": 39.918195, "LONGITUDE": -75.185015, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 18.0, "Total Spend": 949.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.185015, 39.918195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pp2-47q", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3118 Richmond St", "LATITUDE": 39.982157, "LONGITUDE": -75.10349, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 186.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 2.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.86, "Median Spend per Customer": 10.86 }, "geometry": { "type": "Point", "coordinates": [ -75.10349, 39.982157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmc-n89", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd Unit 22", "LATITUDE": 39.932676, "LONGITUDE": -75.144483, "DATE_RANGE_START": 2024, "Total Visits": 279.0, "Total Visitors": 250.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 10.0, "Total Spend": 1937.0, "Total Transactions": 54.0, "Total Customers": 46.0, "Median Spend per Transaction": 29.39, "Median Spend per Customer": 31.54 }, "geometry": { "type": "Point", "coordinates": [ -75.144483, 39.932676 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg4-8gk", "Name": "All The Way Live", "Category": "Restaurants and Other Eating Places", "Address": "6108 Germantown Ave", "LATITUDE": 40.040645, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2024, "Total Visits": 74.0, "Total Visitors": 74.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 50.0, "Total Spend": 490.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 71.77, "Median Spend per Customer": 73.18 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.040645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phk-yvz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "440 W Cheltenham Ave", "LATITUDE": 40.054562, "LONGITUDE": -75.125607, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 2.0, "Total Spend": 355.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 27.56, "Median Spend per Customer": 27.56 }, "geometry": { "type": "Point", "coordinates": [ -75.125607, 40.054562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pj6-tqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5901 Rising Sun Ave", "LATITUDE": 40.044002, "LONGITUDE": -75.10221, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 5.0, "Total Spend": 2483.0, "Total Transactions": 345.0, "Total Customers": 166.0, "Median Spend per Transaction": 5.98, "Median Spend per Customer": 10.91 }, "geometry": { "type": "Point", "coordinates": [ -75.10221, 40.044002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-8sq", "Name": "Garden Court Eatery & Beer", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4725 Pine St", "LATITUDE": 39.952665, "LONGITUDE": -75.217701, "DATE_RANGE_START": 2024, "Total Visits": 465.0, "Total Visitors": 307.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 21.0, "Total Spend": 762.0, "Total Transactions": 39.0, "Total Customers": 36.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217701, 39.952665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-j9z", "Name": "The Love", "Category": "Restaurants and Other Eating Places", "Address": "130 S 18th St", "LATITUDE": 39.95062, "LONGITUDE": -75.170931, "DATE_RANGE_START": 2024, "Total Visits": 2509.0, "Total Visitors": 2009.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 6.0, "Total Spend": 30524.0, "Total Transactions": 255.0, "Total Customers": 226.0, "Median Spend per Transaction": 114.0, "Median Spend per Customer": 124.79 }, "geometry": { "type": "Point", "coordinates": [ -75.170931, 39.95062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-r6k", "Name": "Trio Delight Cafe", "Category": "Restaurants and Other Eating Places", "Address": "5675 N Front St", "LATITUDE": 40.037587, "LONGITUDE": -75.118044, "DATE_RANGE_START": 2024, "Total Visits": 388.0, "Total Visitors": 295.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 10.0, "Total Spend": 1424.0, "Total Transactions": 88.0, "Total Customers": 63.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.118044, 40.037587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7b-cwk", "Name": "Brick House Bar & Grille", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3334 Grant Ave", "LATITUDE": 40.067965, "LONGITUDE": -75.006329, "DATE_RANGE_START": 2024, "Total Visits": 234.0, "Total Visitors": 201.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 60.0, "Total Spend": 3839.0, "Total Transactions": 91.0, "Total Customers": 65.0, "Median Spend per Transaction": 31.75, "Median Spend per Customer": 46.42 }, "geometry": { "type": "Point", "coordinates": [ -75.006329, 40.067965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8t-wkz", "Name": "Nautica", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087648, "LONGITUDE": -74.961047, "DATE_RANGE_START": 2024, "Total Visits": 958.0, "Total Visitors": 893.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 1733.0, "Total Transactions": 34.0, "Total Customers": 30.0, "Median Spend per Transaction": 42.68, "Median Spend per Customer": 48.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961047, 40.087648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-mrk", "Name": "Dollar Plus Discount", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "27 S 52nd St", "LATITUDE": 39.959217, "LONGITUDE": -75.224578, "DATE_RANGE_START": 2024, "Total Visits": 373.0, "Total Visitors": 308.0, "POI_CBG": 421010085001.0, "Median Dwell Time": 1.0, "Total Spend": 51.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.224578, 39.959217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-gkz", "Name": "Wynnefield Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1819 N 54th St", "LATITUDE": 39.984663, "LONGITUDE": -75.231132, "DATE_RANGE_START": 2024, "Total Visits": 78.0, "Total Visitors": 78.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 31.0, "Total Spend": 2598.0, "Total Transactions": 118.0, "Total Customers": 90.0, "Median Spend per Transaction": 19.4, "Median Spend per Customer": 23.12 }, "geometry": { "type": "Point", "coordinates": [ -75.231132, 39.984663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p75-9pv", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "8423-8445 Frankford Ave Ste A", "LATITUDE": 40.044008, "LONGITUDE": -75.017305, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 121.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 5.0, "Total Spend": 688.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 248.36, "Median Spend per Customer": 248.36 }, "geometry": { "type": "Point", "coordinates": [ -75.017305, 40.044008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-qpv", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "800 W Erie Ave", "LATITUDE": 40.007797, "LONGITUDE": -75.141965, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 61.0, "POI_CBG": 421010199002.0, "Median Dwell Time": null, "Total Spend": 446.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 18.2, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.141965, 40.007797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-9s5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "2809 S Front St", "LATITUDE": 39.911861, "LONGITUDE": -75.150069, "DATE_RANGE_START": 2024, "Total Visits": 2389.0, "Total Visitors": 1804.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 541.0, "Total Transactions": 39.0, "Total Customers": 29.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.150069, 39.911861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p9k-rff", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "12000 Roosevelt Blvd", "LATITUDE": 40.105266, "LONGITUDE": -75.002553, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 128.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 8.0, "Total Spend": 22412.0, "Total Transactions": 1377.0, "Total Customers": 850.0, "Median Spend per Transaction": 13.17, "Median Spend per Customer": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.002553, 40.105266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-gtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2025 S Broad St", "LATITUDE": 39.924783, "LONGITUDE": -75.169103, "DATE_RANGE_START": 2024, "Total Visits": 1588.0, "Total Visitors": 754.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 21.0, "Total Spend": 2989.0, "Total Transactions": 433.0, "Total Customers": 176.0, "Median Spend per Transaction": 5.9, "Median Spend per Customer": 9.76 }, "geometry": { "type": "Point", "coordinates": [ -75.169103, 39.924783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pj4-7wk", "Name": "Vernie's Soul Food", "Category": "Restaurants and Other Eating Places", "Address": "1800 W Eleanor St", "LATITUDE": 40.027362, "LONGITUDE": -75.153997, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010280003.0, "Median Dwell Time": null, "Total Spend": 585.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 30.71, "Median Spend per Customer": 30.92 }, "geometry": { "type": "Point", "coordinates": [ -75.153997, 40.027362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-238@63s-dw4-rzf", "Name": "Mezzogiorno", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895195, "LONGITUDE": -75.227968, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 21.0, "Total Spend": 920.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 25.58, "Median Spend per Customer": 25.85 }, "geometry": { "type": "Point", "coordinates": [ -75.227968, 39.895195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-j7q", "Name": "Academy Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10101 Academy Rd Ste 105", "LATITUDE": 40.078916, "LONGITUDE": -74.997636, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 6.0, "Total Spend": 24.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 4.39, "Median Spend per Customer": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -74.997636, 40.078916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pzn-yd9", "Name": "Somerton Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "13510 Bustleton Ave", "LATITUDE": 40.129213, "LONGITUDE": -75.014014, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 166.0, "POI_CBG": 421010365013.0, "Median Dwell Time": 3.0, "Total Spend": 1533.0, "Total Transactions": 62.0, "Total Customers": 47.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 25.29 }, "geometry": { "type": "Point", "coordinates": [ -75.014014, 40.129213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-87q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "180 W Duncannon Ave", "LATITUDE": 40.029016, "LONGITUDE": -75.125267, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010286001.0, "Median Dwell Time": 13.0, "Total Spend": 4753.0, "Total Transactions": 78.0, "Total Customers": 67.0, "Median Spend per Transaction": 37.77, "Median Spend per Customer": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.125267, 40.029016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-5zz", "Name": "Moriarty's Restaurant and Irish Pub", "Category": "Restaurants and Other Eating Places", "Address": "1116 Walnut St", "LATITUDE": 39.948634, "LONGITUDE": -75.159865, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 8.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 95.0, "Total Spend": 8373.0, "Total Transactions": 178.0, "Total Customers": 155.0, "Median Spend per Transaction": 36.14, "Median Spend per Customer": 46.81 }, "geometry": { "type": "Point", "coordinates": [ -75.159865, 39.948634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p77-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9910 Frankford Ave Ste 250", "LATITUDE": 40.064969, "LONGITUDE": -74.984037, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 340.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 5.0, "Total Spend": 3994.0, "Total Transactions": 242.0, "Total Customers": 132.0, "Median Spend per Transaction": 10.82, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -74.984037, 40.064969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pp5-dvz", "Name": "The Medicine Shoppe", "Category": "Health and Personal Care Stores", "Address": "3027 Kensington Ave", "LATITUDE": 39.99404, "LONGITUDE": -75.117468, "DATE_RANGE_START": 2024, "Total Visits": 80.0, "Total Visitors": 80.0, "POI_CBG": 421010178005.0, "Median Dwell Time": 46.0, "Total Spend": 53.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.117468, 39.99404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phq-2ff", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6240 Stenton Ave", "LATITUDE": 40.058515, "LONGITUDE": -75.164325, "DATE_RANGE_START": 2024, "Total Visits": 213.0, "Total Visitors": 113.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 8.0, "Total Spend": 2875.0, "Total Transactions": 187.0, "Total Customers": 146.0, "Median Spend per Transaction": 11.43, "Median Spend per Customer": 14.67 }, "geometry": { "type": "Point", "coordinates": [ -75.164325, 40.058515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-kfz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "801 E Cathedral Rd", "LATITUDE": 40.064377, "LONGITUDE": -75.23812, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 7.0, "Total Spend": 616.0, "Total Transactions": 43.0, "Total Customers": 39.0, "Median Spend per Transaction": 12.09, "Median Spend per Customer": 12.3 }, "geometry": { "type": "Point", "coordinates": [ -75.23812, 40.064377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22v@628-pmb-8sq", "Name": "American Eagle & Aerie Outlet Fashion District Phila", "Category": "Clothing Stores", "Address": "1101 Market St Ste 2145", "LATITUDE": 39.951824, "LONGITUDE": -75.155936, "DATE_RANGE_START": 2024, "Total Visits": 470.0, "Total Visitors": 470.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 21344.0, "Total Transactions": 421.0, "Total Customers": 388.0, "Median Spend per Transaction": 39.22, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155936, 39.951824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph8-qpv", "Name": "Shalom Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "7598 Haverford Ave Ste A", "LATITUDE": 39.979511, "LONGITUDE": -75.26908, "DATE_RANGE_START": 2024, "Total Visits": 456.0, "Total Visitors": 366.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 22.0, "Total Spend": 1583.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 126.18, "Median Spend per Customer": 102.45 }, "geometry": { "type": "Point", "coordinates": [ -75.26908, 39.979511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-6ff", "Name": "Barra Rossa Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "929 Walnut St", "LATITUDE": 39.948634, "LONGITUDE": -75.157218, "DATE_RANGE_START": 2024, "Total Visits": 68.0, "Total Visitors": 55.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 248.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 31.46, "Median Spend per Customer": 37.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157218, 39.948634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-bzf", "Name": "Little Italy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "901 South St", "LATITUDE": 39.942932, "LONGITUDE": -75.157207, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 195.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 2.0, "Total Spend": 2004.0, "Total Transactions": 130.0, "Total Customers": 103.0, "Median Spend per Transaction": 11.78, "Median Spend per Customer": 14.43 }, "geometry": { "type": "Point", "coordinates": [ -75.157207, 39.942932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-223@628-pmf-rx5", "Name": "Viet Bistro", "Category": "Restaurants and Other Eating Places", "Address": "1640 South St", "LATITUDE": 39.944017, "LONGITUDE": -75.170118, "DATE_RANGE_START": 2024, "Total Visits": 604.0, "Total Visitors": 473.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 2.0, "Total Spend": 419.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170118, 39.944017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p75-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8901 Frankford Ave", "LATITUDE": 40.050402, "LONGITUDE": -75.009486, "DATE_RANGE_START": 2024, "Total Visits": 858.0, "Total Visitors": 332.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 368.0, "Total Spend": 20659.0, "Total Transactions": 1336.0, "Total Customers": 707.0, "Median Spend per Transaction": 12.99, "Median Spend per Customer": 17.04 }, "geometry": { "type": "Point", "coordinates": [ -75.009486, 40.050402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj9-6x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "6001 N Broad St", "LATITUDE": 40.044629, "LONGITUDE": -75.142895, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 462.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 5.0, "Total Spend": 533.0, "Total Transactions": 28.0, "Total Customers": 22.0, "Median Spend per Transaction": 17.95, "Median Spend per Customer": 17.95 }, "geometry": { "type": "Point", "coordinates": [ -75.142895, 40.044629 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pjf-kpv", "Name": "Chill On the Hill", "Category": "Restaurants and Other Eating Places", "Address": "5 E Highland Ave", "LATITUDE": 40.076501, "LONGITUDE": -75.206203, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 165.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 10.0, "Total Spend": 8705.0, "Total Transactions": 790.0, "Total Customers": 545.0, "Median Spend per Transaction": 9.52, "Median Spend per Customer": 11.73 }, "geometry": { "type": "Point", "coordinates": [ -75.206203, 40.076501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-kcq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4046 Woodhaven Rd", "LATITUDE": 40.086442, "LONGITUDE": -74.971753, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 1.0, "Total Spend": 7260.0, "Total Transactions": 1027.0, "Total Customers": 391.0, "Median Spend per Transaction": 5.97, "Median Spend per Customer": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -74.971753, 40.086442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jgk", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "3 Snyder Ave", "LATITUDE": 39.921407, "LONGITUDE": -75.144983, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 171.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 12.0, "Total Spend": 8315.0, "Total Transactions": 158.0, "Total Customers": 140.0, "Median Spend per Transaction": 45.89, "Median Spend per Customer": 46.59 }, "geometry": { "type": "Point", "coordinates": [ -75.144983, 39.921407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvz-2x5", "Name": "Daleng Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4653 Walnut St", "LATITUDE": 39.955999, "LONGITUDE": -75.215415, "DATE_RANGE_START": 2024, "Total Visits": 108.0, "Total Visitors": 82.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 2.0, "Total Spend": 1035.0, "Total Transactions": 53.0, "Total Customers": 32.0, "Median Spend per Transaction": 21.92, "Median Spend per Customer": 24.55 }, "geometry": { "type": "Point", "coordinates": [ -75.215415, 39.955999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-3qz", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4211 N Broad St", "LATITUDE": 40.017798, "LONGITUDE": -75.148781, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 11.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 7.0, "Total Spend": 3981.0, "Total Transactions": 222.0, "Total Customers": 166.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.148781, 40.017798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9m-gzf", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "3208 Red Lion Rd", "LATITUDE": 40.080885, "LONGITUDE": -74.995177, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 141.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 1.0, "Total Spend": 2553.0, "Total Transactions": 93.0, "Total Customers": 80.0, "Median Spend per Transaction": 23.56, "Median Spend per Customer": 23.82 }, "geometry": { "type": "Point", "coordinates": [ -74.995177, 40.080885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg9-59f", "Name": "Charlies Country Ribs", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2528 W Diamond St", "LATITUDE": 39.98708, "LONGITUDE": -75.175955, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010151021.0, "Median Dwell Time": null, "Total Spend": 201.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 33.21 }, "geometry": { "type": "Point", "coordinates": [ -75.175955, 39.98708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-k9f", "Name": "Choi's Market", "Category": "Grocery Stores", "Address": "2201 Morris St", "LATITUDE": 39.9313, "LONGITUDE": -75.182024, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 150.0, "POI_CBG": 421010032003.0, "Median Dwell Time": 5.0, "Total Spend": 12.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 4.57, "Median Spend per Customer": 4.57 }, "geometry": { "type": "Point", "coordinates": [ -75.182024, 39.9313 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-k75", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "9916 Roosevelt Blvd", "LATITUDE": 40.094473, "LONGITUDE": -75.018339, "DATE_RANGE_START": 2024, "Total Visits": 163.0, "Total Visitors": 163.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 5.0, "Total Spend": 664.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 28.35, "Median Spend per Customer": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.018339, 40.094473 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-jn5", "Name": "Cafe Thanh Truc", "Category": "Restaurants and Other Eating Places", "Address": "1037 S 8th St", "LATITUDE": 39.936106, "LONGITUDE": -75.156691, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 57.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 34.0, "Total Spend": 93.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 35.32, "Median Spend per Customer": 35.32 }, "geometry": { "type": "Point", "coordinates": [ -75.156691, 39.936106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-zfz", "Name": "Mostly Books", "Category": "Book Stores and News Dealers", "Address": "529 Bainbridge St", "LATITUDE": 39.941299, "LONGITUDE": -75.151874, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 10.0, "Total Spend": 1106.0, "Total Transactions": 68.0, "Total Customers": 59.0, "Median Spend per Transaction": 11.74, "Median Spend per Customer": 11.77 }, "geometry": { "type": "Point", "coordinates": [ -75.151874, 39.941299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@63s-dwf-wkz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "3000 Island Ave", "LATITUDE": 39.902609, "LONGITUDE": -75.240437, "DATE_RANGE_START": 2024, "Total Visits": 405.0, "Total Visitors": 305.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 8.0, "Total Spend": 242.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 13.41, "Median Spend per Customer": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -75.240437, 39.902609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1700 John F Kennedy Blvd", "LATITUDE": 39.953728, "LONGITUDE": -75.16849, "DATE_RANGE_START": 2024, "Total Visits": 756.0, "Total Visitors": 639.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 7628.0, "Total Transactions": 1397.0, "Total Customers": 499.0, "Median Spend per Transaction": 4.42, "Median Spend per Customer": 7.45 }, "geometry": { "type": "Point", "coordinates": [ -75.16849, 39.953728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@63s-dvy-p9z", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "214 S 40th St", "LATITUDE": 39.953596, "LONGITUDE": -75.203164, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 61.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 21.0, "Total Spend": 1506.0, "Total Transactions": 79.0, "Total Customers": 58.0, "Median Spend per Transaction": 19.88, "Median Spend per Customer": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.203164, 39.953596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvy-zmk", "Name": "Wah Gi Wah", "Category": "Restaurants and Other Eating Places", "Address": "4447 Chestnut St", "LATITUDE": 39.956875, "LONGITUDE": -75.211177, "DATE_RANGE_START": 2024, "Total Visits": 440.0, "Total Visitors": 240.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 150.0, "Total Spend": 1603.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 63.55, "Median Spend per Customer": 65.93 }, "geometry": { "type": "Point", "coordinates": [ -75.211177, 39.956875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgk-swk", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "3900 City Ave", "LATITUDE": 40.008292, "LONGITUDE": -75.209769, "DATE_RANGE_START": 2024, "Total Visits": 1918.0, "Total Visitors": 1210.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 219.0, "Total Spend": 11009.0, "Total Transactions": 683.0, "Total Customers": 388.0, "Median Spend per Transaction": 14.23, "Median Spend per Customer": 18.98 }, "geometry": { "type": "Point", "coordinates": [ -75.209769, 40.008292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-pm8-9fz", "Name": "Philadium", "Category": "Restaurants and Other Eating Places", "Address": "1631 Packer Ave", "LATITUDE": 39.91258, "LONGITUDE": -75.17636, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 117.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 27.0, "Total Spend": 357.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 72.5, "Median Spend per Customer": 72.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17636, 39.91258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-5mk", "Name": "Boba King", "Category": "Restaurants and Other Eating Places", "Address": "1232 Chestnut St", "LATITUDE": 39.950488, "LONGITUDE": -75.161675, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 34.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 2316.0, "Total Transactions": 201.0, "Total Customers": 178.0, "Median Spend per Transaction": 8.91, "Median Spend per Customer": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.161675, 39.950488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pnx-ch5", "Name": "Fishtown Social", "Category": "Restaurants and Other Eating Places", "Address": "1525 Frankford Ave", "LATITUDE": 39.973892, "LONGITUDE": -75.133377, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 167.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 1.0, "Total Spend": 5754.0, "Total Transactions": 115.0, "Total Customers": 82.0, "Median Spend per Transaction": 43.2, "Median Spend per Customer": 56.3 }, "geometry": { "type": "Point", "coordinates": [ -75.133377, 39.973892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj8-fcq", "Name": "Beer Harbor II", "Category": "Beer, Wine, and Liquor Stores", "Address": "5450 Large St", "LATITUDE": 40.030534, "LONGITUDE": -75.082846, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 45.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 12.0, "Total Spend": 103.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.082846, 40.030534 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-9s5", "Name": "Bell Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "2809 S Front St", "LATITUDE": 39.912004, "LONGITUDE": -75.149871, "DATE_RANGE_START": 2024, "Total Visits": 2389.0, "Total Visitors": 1804.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 4.0, "Total Spend": 6299.0, "Total Transactions": 201.0, "Total Customers": 133.0, "Median Spend per Transaction": 25.6, "Median Spend per Customer": 35.93 }, "geometry": { "type": "Point", "coordinates": [ -75.149871, 39.912004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pmb-dd9", "Name": "Town Food Market", "Category": "Grocery Stores", "Address": "428 S 13th St", "LATITUDE": 39.944522, "LONGITUDE": -75.163234, "DATE_RANGE_START": 2024, "Total Visits": 345.0, "Total Visitors": 345.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1.0, "Total Spend": 1377.0, "Total Transactions": 72.0, "Total Customers": 63.0, "Median Spend per Transaction": 16.35, "Median Spend per Customer": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.163234, 39.944522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-99f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7001 Frankford Ave", "LATITUDE": 40.034024, "LONGITUDE": -75.045614, "DATE_RANGE_START": 2024, "Total Visits": 1264.0, "Total Visitors": 1037.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 11.0, "Total Spend": 1047.0, "Total Transactions": 55.0, "Total Customers": 38.0, "Median Spend per Transaction": 13.98, "Median Spend per Customer": 28.58 }, "geometry": { "type": "Point", "coordinates": [ -75.045614, 40.034024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pj6-rx5", "Name": "Seorabol Korean Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5734 Old Second St", "LATITUDE": 40.038471, "LONGITUDE": -75.124292, "DATE_RANGE_START": 2024, "Total Visits": 345.0, "Total Visitors": 326.0, "POI_CBG": 421010274023.0, "Median Dwell Time": 66.0, "Total Spend": 1761.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 64.75, "Median Spend per Customer": 79.0 }, "geometry": { "type": "Point", "coordinates": [ -75.124292, 40.038471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phk-yvz", "Name": "Cafe Soho", "Category": "Restaurants and Other Eating Places", "Address": "468 W Cheltenham Ave", "LATITUDE": 40.055016, "LONGITUDE": -75.126031, "DATE_RANGE_START": 2024, "Total Visits": 230.0, "Total Visitors": 230.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 26.0, "Total Spend": 7423.0, "Total Transactions": 138.0, "Total Customers": 112.0, "Median Spend per Transaction": 42.1, "Median Spend per Customer": 43.71 }, "geometry": { "type": "Point", "coordinates": [ -75.126031, 40.055016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8m-x5z", "Name": "Goody's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6237 Frankford Ave", "LATITUDE": 40.027482, "LONGITUDE": -75.061166, "DATE_RANGE_START": 2024, "Total Visits": 111.0, "Total Visitors": 92.0, "POI_CBG": 421010320005.0, "Median Dwell Time": null, "Total Spend": 933.0, "Total Transactions": 32.0, "Total Customers": 24.0, "Median Spend per Transaction": 29.03, "Median Spend per Customer": 33.58 }, "geometry": { "type": "Point", "coordinates": [ -75.061166, 40.027482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj9-54v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1345 W Olney Ave", "LATITUDE": 40.039119, "LONGITUDE": -75.144123, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 9.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 8.0, "Total Spend": 3216.0, "Total Transactions": 502.0, "Total Customers": 226.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 9.09 }, "geometry": { "type": "Point", "coordinates": [ -75.144123, 40.039119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-68v", "Name": "The Bike Stop", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "206 S Quince St", "LATITUDE": 39.948357, "LONGITUDE": -75.159979, "DATE_RANGE_START": 2024, "Total Visits": 257.0, "Total Visitors": 171.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 136.0, "Total Spend": 11930.0, "Total Transactions": 664.0, "Total Customers": 194.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.159979, 39.948357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm5-pd9", "Name": "Mr Wings", "Category": "Restaurants and Other Eating Places", "Address": "500 W Oregon Ave", "LATITUDE": 39.914518, "LONGITUDE": -75.156915, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 159.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 1.0, "Total Spend": 2076.0, "Total Transactions": 68.0, "Total Customers": 51.0, "Median Spend per Transaction": 26.93, "Median Spend per Customer": 32.29 }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.914518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-vj9", "Name": "Fairmount Pet Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "2024 Fairmount Ave", "LATITUDE": 39.967037, "LONGITUDE": -75.171149, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010134021.0, "Median Dwell Time": 16.0, "Total Spend": 715.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 30.23, "Median Spend per Customer": 25.89 }, "geometry": { "type": "Point", "coordinates": [ -75.171149, 39.967037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p7v-vxq", "Name": "Algon Auto Clinic", "Category": "Gasoline Stations", "Address": "7300 Algon Ave", "LATITUDE": 40.055758, "LONGITUDE": -75.073258, "DATE_RANGE_START": 2024, "Total Visits": 720.0, "Total Visitors": 592.0, "POI_CBG": 421010338002.0, "Median Dwell Time": 8.0, "Total Spend": 230.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 87.5, "Median Spend per Customer": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.073258, 40.055758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-ch5", "Name": "Fishtown Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1617 Frankford Ave", "LATITUDE": 39.974407, "LONGITUDE": -75.132997, "DATE_RANGE_START": 2024, "Total Visits": 65.0, "Total Visitors": 65.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 1.0, "Total Spend": 270.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 41.63, "Median Spend per Customer": 41.63 }, "geometry": { "type": "Point", "coordinates": [ -75.132997, 39.974407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-9s5", "Name": "Le Meridien", "Category": "Traveler Accommodation", "Address": "1421 Arch St", "LATITUDE": 39.954845, "LONGITUDE": -75.164199, "DATE_RANGE_START": 2024, "Total Visits": 1047.0, "Total Visitors": 585.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 112.0, "Total Spend": 2468.0, "Total Transactions": 50.0, "Total Customers": 30.0, "Median Spend per Transaction": 31.43, "Median Spend per Customer": 60.7 }, "geometry": { "type": "Point", "coordinates": [ -75.164199, 39.954845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-5xq", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "8828 Frankford Ave", "LATITUDE": 40.050643, "LONGITUDE": -75.011246, "DATE_RANGE_START": 2024, "Total Visits": 1240.0, "Total Visitors": 840.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 6.0, "Total Spend": 1221.0, "Total Transactions": 38.0, "Total Customers": 34.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 24.12 }, "geometry": { "type": "Point", "coordinates": [ -75.011246, 40.050643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pj5-ht9", "Name": "New Shanghai", "Category": "Restaurants and Other Eating Places", "Address": "115 E Ontario St", "LATITUDE": 40.001677, "LONGITUDE": -75.127847, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010195022.0, "Median Dwell Time": null, "Total Spend": 58.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127847, 40.001677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-4sq", "Name": "Georgian Bread Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "10865 Bustleton Ave", "LATITUDE": 40.110558, "LONGITUDE": -75.023842, "DATE_RANGE_START": 2024, "Total Visits": 284.0, "Total Visitors": 200.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 3.0, "Total Spend": 1250.0, "Total Transactions": 43.0, "Total Customers": 39.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 26.52 }, "geometry": { "type": "Point", "coordinates": [ -75.023842, 40.110558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-223@628-pp5-sqz", "Name": "Pizza Express", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Front St", "LATITUDE": 39.998117, "LONGITUDE": -75.129195, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 151.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 95.0, "Total Spend": 192.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 27.13, "Median Spend per Customer": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.129195, 39.998117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-8sq", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "1130 Market St", "LATITUDE": 39.951617, "LONGITUDE": -75.159052, "DATE_RANGE_START": 2024, "Total Visits": 7027.0, "Total Visitors": 4946.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 8149.0, "Total Transactions": 283.0, "Total Customers": 251.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.159052, 39.951617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-fs5", "Name": "Buffalo Wild Wings", "Category": "Restaurants and Other Eating Places", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.082615, "LONGITUDE": -75.025718, "DATE_RANGE_START": 2024, "Total Visits": 870.0, "Total Visitors": 723.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 10.0, "Total Spend": 7571.0, "Total Transactions": 190.0, "Total Customers": 175.0, "Median Spend per Transaction": 28.81, "Median Spend per Customer": 32.78 }, "geometry": { "type": "Point", "coordinates": [ -75.025718, 40.082615 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-226@628-pgb-grk", "Name": "Goldie", "Category": "Restaurants and Other Eating Places", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.96289, "LONGITUDE": -75.173697, "DATE_RANGE_START": 2024, "Total Visits": 1951.0, "Total Visitors": 1024.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 21.0, "Total Spend": 251.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.173697, 39.96289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7124 Ridge Ave # 62", "LATITUDE": 40.04433, "LONGITUDE": -75.231527, "DATE_RANGE_START": 2024, "Total Visits": 415.0, "Total Visitors": 326.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 1.0, "Total Spend": 6899.0, "Total Transactions": 429.0, "Total Customers": 308.0, "Median Spend per Transaction": 13.6, "Median Spend per Customer": 15.37 }, "geometry": { "type": "Point", "coordinates": [ -75.231527, 40.04433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jgk", "Name": "Dig Inn", "Category": "Restaurants and Other Eating Places", "Address": "1616 Chestnut St", "LATITUDE": 39.951075, "LONGITUDE": -75.167966, "DATE_RANGE_START": 2024, "Total Visits": 407.0, "Total Visitors": 321.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 131.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167966, 39.951075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j5f", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1615 Chancellor St", "LATITUDE": 39.949706, "LONGITUDE": -75.168626, "DATE_RANGE_START": 2024, "Total Visits": 340.0, "Total Visitors": 325.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 3.0, "Total Spend": 5942.0, "Total Transactions": 101.0, "Total Customers": 96.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168626, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-x89", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "630 W Girard Ave", "LATITUDE": 39.970205, "LONGITUDE": -75.147863, "DATE_RANGE_START": 2024, "Total Visits": 619.0, "Total Visitors": 483.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 9.0, "Total Spend": 1203.0, "Total Transactions": 112.0, "Total Customers": 80.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.147863, 39.970205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-bx5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7938 Dungan Rd", "LATITUDE": 40.067837, "LONGITUDE": -75.06921, "DATE_RANGE_START": 2024, "Total Visits": 857.0, "Total Visitors": 541.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 11.0, "Total Spend": 368.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.15, "Median Spend per Customer": 10.35 }, "geometry": { "type": "Point", "coordinates": [ -75.06921, 40.067837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p7x-vzz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "7350 Bustleton Ave", "LATITUDE": 40.051233, "LONGITUDE": -75.059566, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 1.0, "Total Spend": 6945.0, "Total Transactions": 569.0, "Total Customers": 320.0, "Median Spend per Transaction": 10.7, "Median Spend per Customer": 14.97 }, "geometry": { "type": "Point", "coordinates": [ -75.059566, 40.051233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pj3-975", "Name": "Phillips 66", "Category": "Gasoline Stations", "Address": "4043 Germantown Ave", "LATITUDE": 40.015817, "LONGITUDE": -75.153359, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 255.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 4.0, "Total Spend": 53.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153359, 40.015817 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-ph8-rrk", "Name": "Ross Stores", "Category": "Department Stores", "Address": "7720 City Ave", "LATITUDE": 39.977201, "LONGITUDE": -75.273846, "DATE_RANGE_START": 2024, "Total Visits": 620.0, "Total Visitors": 492.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 15.0, "Total Spend": 18295.0, "Total Transactions": 408.0, "Total Customers": 326.0, "Median Spend per Transaction": 31.65, "Median Spend per Customer": 40.81 }, "geometry": { "type": "Point", "coordinates": [ -75.273846, 39.977201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pfy-f75", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6201 Ridge Ave", "LATITUDE": 40.036043, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2024, "Total Visits": 611.0, "Total Visitors": 377.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 1.0, "Total Spend": 99.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 16.5 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.036043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wc5", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "29 Snyder Ave", "LATITUDE": 39.923237, "LONGITUDE": -75.144605, "DATE_RANGE_START": 2024, "Total Visits": 461.0, "Total Visitors": 341.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 5.0, "Total Spend": 90649.0, "Total Transactions": 2549.0, "Total Customers": 1153.0, "Median Spend per Transaction": 20.43, "Median Spend per Customer": 35.6 }, "geometry": { "type": "Point", "coordinates": [ -75.144605, 39.923237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-php-zs5", "Name": "Moy Fong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7411 Stenton Ave", "LATITUDE": 40.060866, "LONGITUDE": -75.167236, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 117.0, "POI_CBG": 421010264005.0, "Median Dwell Time": 6.0, "Total Spend": 4515.0, "Total Transactions": 180.0, "Total Customers": 107.0, "Median Spend per Transaction": 22.41, "Median Spend per Customer": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.167236, 40.060866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p82-4sq", "Name": "Navy Exchange", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "700 Robbins St Bldg NO5", "LATITUDE": 40.042008, "LONGITUDE": -75.094903, "DATE_RANGE_START": 2024, "Total Visits": 241.0, "Total Visitors": 68.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 42.0, "Total Spend": 2293.0, "Total Transactions": 175.0, "Total Customers": 80.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 15.29 }, "geometry": { "type": "Point", "coordinates": [ -75.094903, 40.042008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pm5-2zf", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "1544 Christian St", "LATITUDE": 39.940243, "LONGITUDE": -75.169478, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 109.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 5.0, "Total Spend": 442.0, "Total Transactions": 49.0, "Total Customers": 34.0, "Median Spend per Transaction": 6.84, "Median Spend per Customer": 11.99 }, "geometry": { "type": "Point", "coordinates": [ -75.169478, 39.940243 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmb-gkz", "Name": "Effie's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1127 Pine St", "LATITUDE": 39.945113, "LONGITUDE": -75.160611, "DATE_RANGE_START": 2024, "Total Visits": 219.0, "Total Visitors": 219.0, "POI_CBG": 421010011013.0, "Median Dwell Time": 1.0, "Total Spend": 1018.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 64.0, "Median Spend per Customer": 63.34 }, "geometry": { "type": "Point", "coordinates": [ -75.160611, 39.945113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-dqf", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2027 W Oregon Ave", "LATITUDE": 39.918558, "LONGITUDE": -75.181706, "DATE_RANGE_START": 2024, "Total Visits": 1010.0, "Total Visitors": 660.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 13.0, "Total Spend": 460.0, "Total Transactions": 33.0, "Total Customers": 26.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 16.34 }, "geometry": { "type": "Point", "coordinates": [ -75.181706, 39.918558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pmf-hnq", "Name": "Accent on Animals", "Category": "Other Miscellaneous Store Retailers", "Address": "1935 Chestnut St", "LATITUDE": 39.952176, "LONGITUDE": -75.173168, "DATE_RANGE_START": 2024, "Total Visits": 4467.0, "Total Visitors": 2948.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 398.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 24.56, "Median Spend per Customer": 24.56 }, "geometry": { "type": "Point", "coordinates": [ -75.173168, 39.952176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-hwk", "Name": "The Men's Wearhouse", "Category": "Clothing Stores", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.079413, "LONGITUDE": -75.029146, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 261.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 10.0, "Total Spend": 761.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 289.03, "Median Spend per Customer": 289.03 }, "geometry": { "type": "Point", "coordinates": [ -75.029146, 40.079413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-pgk", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2645 Germantown Ave", "LATITUDE": 39.992681, "LONGITUDE": -75.14772, "DATE_RANGE_START": 2024, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010164003.0, "Median Dwell Time": 1.0, "Total Spend": 1015.0, "Total Transactions": 33.0, "Total Customers": 33.0, "Median Spend per Transaction": 28.98, "Median Spend per Customer": 28.98 }, "geometry": { "type": "Point", "coordinates": [ -75.14772, 39.992681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-k75", "Name": "Michaels Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "9739 Roosevelt Blvd", "LATITUDE": 40.082361, "LONGITUDE": -75.023372, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 49.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 4.0, "Total Spend": 28113.0, "Total Transactions": 1026.0, "Total Customers": 841.0, "Median Spend per Transaction": 17.26, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.023372, 40.082361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-9zz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1801 W Hunting Park Ave", "LATITUDE": 40.014636, "LONGITUDE": -75.157128, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 3.0, "Total Spend": 3378.0, "Total Transactions": 137.0, "Total Customers": 79.0, "Median Spend per Transaction": 15.1, "Median Spend per Customer": 23.4 }, "geometry": { "type": "Point", "coordinates": [ -75.157128, 40.014636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm9-y9z", "Name": "Bella Boutique", "Category": "Clothing Stores", "Address": "527 S 4th St", "LATITUDE": 39.941863, "LONGITUDE": -75.148989, "DATE_RANGE_START": 2024, "Total Visits": 1340.0, "Total Visitors": 1206.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 5.0, "Total Spend": 601.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148989, 39.941863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-h3q", "Name": "Taproom On 19th", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2400 S 19th St", "LATITUDE": 39.9216, "LONGITUDE": -75.178684, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010038001.0, "Median Dwell Time": null, "Total Spend": 5645.0, "Total Transactions": 115.0, "Total Customers": 71.0, "Median Spend per Transaction": 38.0, "Median Spend per Customer": 48.73 }, "geometry": { "type": "Point", "coordinates": [ -75.178684, 39.9216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-224@628-pmf-skf", "Name": "The Cheesecake Factory", "Category": "Restaurants and Other Eating Places", "Address": "1430 Walnut St", "LATITUDE": 39.949046, "LONGITUDE": -75.165867, "DATE_RANGE_START": 2024, "Total Visits": 741.0, "Total Visitors": 421.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 20.0, "Total Spend": 28579.0, "Total Transactions": 384.0, "Total Customers": 359.0, "Median Spend per Transaction": 58.28, "Median Spend per Customer": 62.49 }, "geometry": { "type": "Point", "coordinates": [ -75.165867, 39.949046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmb-xnq", "Name": "The Halal Guys", "Category": "Restaurants and Other Eating Places", "Address": "1016 Race St", "LATITUDE": 39.955232, "LONGITUDE": -75.156428, "DATE_RANGE_START": 2024, "Total Visits": 3782.0, "Total Visitors": 2650.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 14.0, "Total Spend": 1706.0, "Total Transactions": 100.0, "Total Customers": 68.0, "Median Spend per Transaction": 14.19, "Median Spend per Customer": 15.96 }, "geometry": { "type": "Point", "coordinates": [ -75.156428, 39.955232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dtn-hqz", "Name": "Bruegger's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.89519, "LONGITUDE": -75.227949, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 21.0, "Total Spend": 6639.0, "Total Transactions": 379.0, "Total Customers": 349.0, "Median Spend per Transaction": 15.03, "Median Spend per Customer": 15.14 }, "geometry": { "type": "Point", "coordinates": [ -75.227949, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "10050 Roosevelt Blvd", "LATITUDE": 40.095811, "LONGITUDE": -75.015254, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 24.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 4.0, "Total Spend": 1458.0, "Total Transactions": 176.0, "Total Customers": 87.0, "Median Spend per Transaction": 6.47, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.015254, 40.095811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-vzz", "Name": "Jollibee", "Category": "Restaurants and Other Eating Places", "Address": "7340 Bustleton Ave", "LATITUDE": 40.048717, "LONGITUDE": -75.0598, "DATE_RANGE_START": 2024, "Total Visits": 30775.0, "Total Visitors": 13207.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 23.0, "Total Spend": 13245.0, "Total Transactions": 529.0, "Total Customers": 415.0, "Median Spend per Transaction": 20.89, "Median Spend per Customer": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.0598, 40.048717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-whq", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave", "LATITUDE": 39.903285, "LONGITUDE": -75.240646, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 319.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 9.0, "Total Spend": 5617.0, "Total Transactions": 375.0, "Total Customers": 291.0, "Median Spend per Transaction": 12.63, "Median Spend per Customer": 14.45 }, "geometry": { "type": "Point", "coordinates": [ -75.240646, 39.903285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-7wk", "Name": "Boba King", "Category": "Restaurants and Other Eating Places", "Address": "3200 Chestnut St", "LATITUDE": 39.953548, "LONGITUDE": -75.188324, "DATE_RANGE_START": 2024, "Total Visits": 615.0, "Total Visitors": 325.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 37.0, "Total Spend": 2725.0, "Total Transactions": 262.0, "Total Customers": 237.0, "Median Spend per Transaction": 8.81, "Median Spend per Customer": 8.91 }, "geometry": { "type": "Point", "coordinates": [ -75.188324, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pzn-zj9", "Name": "King Wok Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "13631 Philmont Ave", "LATITUDE": 40.131488, "LONGITUDE": -75.010849, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 159.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 5.0, "Total Spend": 280.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 22.6, "Median Spend per Customer": 22.6 }, "geometry": { "type": "Point", "coordinates": [ -75.010849, 40.131488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-xnq", "Name": "Ocean Harbor", "Category": "Restaurants and Other Eating Places", "Address": "1023 Race St", "LATITUDE": 39.95567, "LONGITUDE": -75.156821, "DATE_RANGE_START": 2024, "Total Visits": 1923.0, "Total Visitors": 1384.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 3.0, "Total Spend": 3090.0, "Total Transactions": 42.0, "Total Customers": 39.0, "Median Spend per Transaction": 64.98, "Median Spend per Customer": 70.59 }, "geometry": { "type": "Point", "coordinates": [ -75.156821, 39.95567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph8-q75", "Name": "Bryn Mawr Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "7572 Haverford Ave", "LATITUDE": 39.978684, "LONGITUDE": -75.268113, "DATE_RANGE_START": 2024, "Total Visits": 449.0, "Total Visitors": 316.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 16.0, "Total Spend": 1926.0, "Total Transactions": 58.0, "Total Customers": 42.0, "Median Spend per Transaction": 20.31, "Median Spend per Customer": 25.51 }, "geometry": { "type": "Point", "coordinates": [ -75.268113, 39.978684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfx-kmk", "Name": "Tsaocaa", "Category": "Restaurants and Other Eating Places", "Address": "4415 Main St", "LATITUDE": 40.02624, "LONGITUDE": -75.225272, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 128.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 4.0, "Total Spend": 227.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 12.67, "Median Spend per Customer": 13.78 }, "geometry": { "type": "Point", "coordinates": [ -75.225272, 40.02624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-mrk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market St", "LATITUDE": 39.952554, "LONGITUDE": -75.166725, "DATE_RANGE_START": 2024, "Total Visits": 4047.0, "Total Visitors": 2230.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 25.0, "Total Spend": 2086.0, "Total Transactions": 250.0, "Total Customers": 190.0, "Median Spend per Transaction": 6.97, "Median Spend per Customer": 7.73 }, "geometry": { "type": "Point", "coordinates": [ -75.166725, 39.952554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-224@628-pmf-kj9", "Name": "Alchemy Coffee", "Category": "Restaurants and Other Eating Places", "Address": "119 S 21st St", "LATITUDE": 39.951158, "LONGITUDE": -75.175492, "DATE_RANGE_START": 2024, "Total Visits": 1210.0, "Total Visitors": 899.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 6.0, "Total Spend": 3226.0, "Total Transactions": 388.0, "Total Customers": 233.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.175492, 39.951158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-yvz", "Name": "Panda Garden", "Category": "Restaurants and Other Eating Places", "Address": "5651 N 5th St", "LATITUDE": 40.037582, "LONGITUDE": -75.130053, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 41.0, "POI_CBG": 421010274012.0, "Median Dwell Time": 6.0, "Total Spend": 40.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.29, "Median Spend per Customer": 9.29 }, "geometry": { "type": "Point", "coordinates": [ -75.130053, 40.037582 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm9-y5f", "Name": "Sushi Planet", "Category": "Restaurants and Other Eating Places", "Address": "624 S 3rd St", "LATITUDE": 39.940725, "LONGITUDE": -75.14792, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 159.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 1.0, "Total Spend": 567.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 27.68, "Median Spend per Customer": 39.65 }, "geometry": { "type": "Point", "coordinates": [ -75.14792, 39.940725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-y35", "Name": "Dave & Buster's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1995 Franklin Mills Cir", "LATITUDE": 40.091986, "LONGITUDE": -74.961247, "DATE_RANGE_START": 2024, "Total Visits": 43.0, "Total Visitors": 39.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 59.0, "Total Spend": 31194.0, "Total Transactions": 657.0, "Total Customers": 446.0, "Median Spend per Transaction": 36.0, "Median Spend per Customer": 54.41 }, "geometry": { "type": "Point", "coordinates": [ -74.961247, 40.091986 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-zj9", "Name": "Gray Ferry Deli", "Category": "Restaurants and Other Eating Places", "Address": "1204 S 31st St", "LATITUDE": 39.938862, "LONGITUDE": -75.195136, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 134.0, "POI_CBG": 421010033004.0, "Median Dwell Time": 5.0, "Total Spend": 1139.0, "Total Transactions": 121.0, "Total Customers": 33.0, "Median Spend per Transaction": 6.76, "Median Spend per Customer": 26.23 }, "geometry": { "type": "Point", "coordinates": [ -75.195136, 39.938862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pnw-mzf", "Name": "Standard Tap", "Category": "Restaurants and Other Eating Places", "Address": "901 N 2nd St", "LATITUDE": 39.96415, "LONGITUDE": -75.140513, "DATE_RANGE_START": 2024, "Total Visits": 768.0, "Total Visitors": 357.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 197.0, "Total Spend": 1799.0, "Total Transactions": 28.0, "Total Customers": 25.0, "Median Spend per Transaction": 51.99, "Median Spend per Customer": 48.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140513, 39.96415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-tvz", "Name": "Devon Seafood Grill", "Category": "Restaurants and Other Eating Places", "Address": "225 S 18th St", "LATITUDE": 39.949365, "LONGITUDE": -75.170568, "DATE_RANGE_START": 2024, "Total Visits": 765.0, "Total Visitors": 415.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 106.0, "Total Spend": 2302.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 92.76, "Median Spend per Customer": 122.89 }, "geometry": { "type": "Point", "coordinates": [ -75.170568, 39.949365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-54v", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "2875 W Dauphin St", "LATITUDE": 39.991295, "LONGITUDE": -75.17957, "DATE_RANGE_START": 2024, "Total Visits": 215.0, "Total Visitors": 191.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 5.0, "Total Spend": 2105.0, "Total Transactions": 132.0, "Total Customers": 97.0, "Median Spend per Transaction": 13.27, "Median Spend per Customer": 17.02 }, "geometry": { "type": "Point", "coordinates": [ -75.17957, 39.991295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-223@628-pmb-xnq", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "145 N 11th St", "LATITUDE": 39.955158, "LONGITUDE": -75.157312, "DATE_RANGE_START": 2024, "Total Visits": 3782.0, "Total Visitors": 2650.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 14.0, "Total Spend": 3036.0, "Total Transactions": 140.0, "Total Customers": 132.0, "Median Spend per Transaction": 18.74, "Median Spend per Customer": 18.95 }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.955158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pmc-sdv", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "848 S 2nd St", "LATITUDE": 39.936361, "LONGITUDE": -75.146969, "DATE_RANGE_START": 2024, "Total Visits": 230.0, "Total Visitors": 230.0, "POI_CBG": 421010017001.0, "Median Dwell Time": 49.0, "Total Spend": 371.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 43.48, "Median Spend per Customer": 43.48 }, "geometry": { "type": "Point", "coordinates": [ -75.146969, 39.936361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p74-vpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7715 Frankford Ave", "LATITUDE": 40.039511, "LONGITUDE": -75.032649, "DATE_RANGE_START": 2024, "Total Visits": 1205.0, "Total Visitors": 695.0, "POI_CBG": 421010329005.0, "Median Dwell Time": 4.0, "Total Spend": 3782.0, "Total Transactions": 359.0, "Total Customers": 245.0, "Median Spend per Transaction": 8.72, "Median Spend per Customer": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.032649, 40.039511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgb-6x5", "Name": "Figs", "Category": "Restaurants and Other Eating Places", "Address": "2501 Meredith St", "LATITUDE": 39.968509, "LONGITUDE": -75.178527, "DATE_RANGE_START": 2024, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 4.0, "Total Spend": 374.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 121.65, "Median Spend per Customer": 121.65 }, "geometry": { "type": "Point", "coordinates": [ -75.178527, 39.968509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-psq", "Name": "Function Coffee Labs", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 10th St", "LATITUDE": 39.937825, "LONGITUDE": -75.159525, "DATE_RANGE_START": 2024, "Total Visits": 595.0, "Total Visitors": 462.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 3.0, "Total Spend": 747.0, "Total Transactions": 74.0, "Total Customers": 28.0, "Median Spend per Transaction": 8.88, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.159525, 39.937825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-v75", "Name": "Rotten Ralph's Pub & Eatery", "Category": "Restaurants and Other Eating Places", "Address": "201 Chestnut St", "LATITUDE": 39.94849, "LONGITUDE": -75.144173, "DATE_RANGE_START": 2024, "Total Visits": 162.0, "Total Visitors": 158.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 5748.0, "Total Transactions": 161.0, "Total Customers": 130.0, "Median Spend per Transaction": 29.09, "Median Spend per Customer": 33.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144173, 39.94849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgb-tjv", "Name": "Prohibition Taproom", "Category": "Restaurants and Other Eating Places", "Address": "501 N 13th St", "LATITUDE": 39.961305, "LONGITUDE": -75.159312, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 127.0, "Total Spend": 8539.0, "Total Transactions": 145.0, "Total Customers": 133.0, "Median Spend per Transaction": 46.63, "Median Spend per Customer": 47.04 }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.961305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw9-8d9", "Name": "Balducci's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.875925, "LONGITUDE": -75.241184, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 54.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 6.0, "Total Spend": 3949.0, "Total Transactions": 292.0, "Total Customers": 276.0, "Median Spend per Transaction": 11.61, "Median Spend per Customer": 12.4 }, "geometry": { "type": "Point", "coordinates": [ -75.241184, 39.875925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-975", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3401 Walnut St", "LATITUDE": 39.952991, "LONGITUDE": -75.192292, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 9.0, "Total Spend": 15441.0, "Total Transactions": 870.0, "Total Customers": 458.0, "Median Spend per Transaction": 10.58, "Median Spend per Customer": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.192292, 39.952991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9r-4y9", "Name": "Chuck E. Cheese's", "Category": "Restaurants and Other Eating Places", "Address": "9175 Roosevelt Blvd Ste 2", "LATITUDE": 40.076158, "LONGITUDE": -75.031371, "DATE_RANGE_START": 2024, "Total Visits": 353.0, "Total Visitors": 328.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 959.0, "Total Transactions": 34.0, "Total Customers": 24.0, "Median Spend per Transaction": 18.41, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031371, 40.076158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-p7x-dgk", "Name": "La Famiglia Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "6832 Bustleton Ave", "LATITUDE": 40.041424, "LONGITUDE": -75.064995, "DATE_RANGE_START": 2024, "Total Visits": 133.0, "Total Visitors": 133.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 18.0, "Total Spend": 39.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 10.11, "Median Spend per Customer": 10.11 }, "geometry": { "type": "Point", "coordinates": [ -75.064995, 40.041424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg3-wzf", "Name": "John's Diner", "Category": "Restaurants and Other Eating Places", "Address": "119 E Chelten Ave", "LATITUDE": 40.037703, "LONGITUDE": -75.173141, "DATE_RANGE_START": 2024, "Total Visits": 111.0, "Total Visitors": 111.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 7.0, "Total Spend": 482.0, "Total Transactions": 24.0, "Total Customers": 17.0, "Median Spend per Transaction": 17.52, "Median Spend per Customer": 23.29 }, "geometry": { "type": "Point", "coordinates": [ -75.173141, 40.037703 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-ph6-p5f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5201 Lancaster Ave", "LATITUDE": 39.977661, "LONGITUDE": -75.227185, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010118003.0, "Median Dwell Time": 2.0, "Total Spend": 146.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 13.95, "Median Spend per Customer": 13.95 }, "geometry": { "type": "Point", "coordinates": [ -75.227185, 39.977661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-227@628-pp2-pvz", "Name": "News Plus Newsstand", "Category": "Book Stores and News Dealers", "Address": "2400 Castor Ave", "LATITUDE": 39.993738, "LONGITUDE": -75.094512, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 150.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 6.0, "Total Spend": 551.0, "Total Transactions": 39.0, "Total Customers": 25.0, "Median Spend per Transaction": 5.75, "Median Spend per Customer": 13.25 }, "geometry": { "type": "Point", "coordinates": [ -75.094512, 39.993738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pnw-n89", "Name": "Bagels & Co", "Category": "Restaurants and Other Eating Places", "Address": "1001 N 2nd St Ste Ef", "LATITUDE": 39.966846, "LONGITUDE": -75.139879, "DATE_RANGE_START": 2024, "Total Visits": 334.0, "Total Visitors": 323.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 2.0, "Total Spend": 60.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 11.95, "Median Spend per Customer": 13.11 }, "geometry": { "type": "Point", "coordinates": [ -75.139879, 39.966846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-22g@628-pfy-h3q", "Name": "Rally House Ivy Ridge", "Category": "Clothing Stores", "Address": "7162 Ridge Ave", "LATITUDE": 40.044151, "LONGITUDE": -75.232923, "DATE_RANGE_START": 2024, "Total Visits": 2565.0, "Total Visitors": 1602.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 6.0, "Total Spend": 5474.0, "Total Transactions": 101.0, "Total Customers": 95.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.232923, 40.044151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pg4-gzf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5753 Wayne Ave", "LATITUDE": 40.032663, "LONGITUDE": -75.179788, "DATE_RANGE_START": 2024, "Total Visits": 352.0, "Total Visitors": 303.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 2.0, "Total Spend": 11076.0, "Total Transactions": 1392.0, "Total Customers": 575.0, "Median Spend per Transaction": 6.78, "Median Spend per Customer": 11.04 }, "geometry": { "type": "Point", "coordinates": [ -75.179788, 40.032663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp4-tsq", "Name": "Green Rock Tavern", "Category": "Restaurants and Other Eating Places", "Address": "2546 E Lehigh Ave", "LATITUDE": 39.979669, "LONGITUDE": -75.116167, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 108.0, "POI_CBG": 421010378003.0, "Median Dwell Time": 78.0, "Total Spend": 4452.0, "Total Transactions": 118.0, "Total Customers": 59.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 47.33 }, "geometry": { "type": "Point", "coordinates": [ -75.116167, 39.979669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22c@628-pj4-xwk", "Name": "Tribeca Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3509 N Broad St", "LATITUDE": 40.007053, "LONGITUDE": -75.151464, "DATE_RANGE_START": 2024, "Total Visits": 3137.0, "Total Visitors": 1393.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 167.0, "Total Spend": 1194.0, "Total Transactions": 155.0, "Total Customers": 86.0, "Median Spend per Transaction": 5.39, "Median Spend per Customer": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.151464, 40.007053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pnw-pjv", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "115 E Girard Ave", "LATITUDE": 39.969267, "LONGITUDE": -75.133945, "DATE_RANGE_START": 2024, "Total Visits": 346.0, "Total Visitors": 300.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 4.0, "Total Spend": 544.0, "Total Transactions": 32.0, "Total Customers": 20.0, "Median Spend per Transaction": 14.43, "Median Spend per Customer": 23.11 }, "geometry": { "type": "Point", "coordinates": [ -75.133945, 39.969267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvp-btv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5726 Baltimore Ave # 46", "LATITUDE": 39.945591, "LONGITUDE": -75.238096, "DATE_RANGE_START": 2024, "Total Visits": 619.0, "Total Visitors": 359.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 14.0, "Total Spend": 1052.0, "Total Transactions": 30.0, "Total Customers": 26.0, "Median Spend per Transaction": 34.54, "Median Spend per Customer": 28.61 }, "geometry": { "type": "Point", "coordinates": [ -75.238096, 39.945591 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-j5f", "Name": "Free People", "Category": "Clothing Stores", "Address": "1632 Walnut St", "LATITUDE": 39.949714, "LONGITUDE": -75.168891, "DATE_RANGE_START": 2024, "Total Visits": 531.0, "Total Visitors": 484.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 564125.0, "Total Transactions": 5482.0, "Total Customers": 3584.0, "Median Spend per Transaction": 76.0, "Median Spend per Customer": 103.18 }, "geometry": { "type": "Point", "coordinates": [ -75.168891, 39.949714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnz-zj9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3398 Aramingo And Ontario", "LATITUDE": 39.991151, "LONGITUDE": -75.102101, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 3.0, "Total Spend": 46.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.46, "Median Spend per Customer": 17.46 }, "geometry": { "type": "Point", "coordinates": [ -75.102101, 39.991151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjf-kvf", "Name": "Caleb Meyer Studio", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "8520 Germantown Ave", "LATITUDE": 40.076277, "LONGITUDE": -75.207225, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 340.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 8.0, "Total Spend": 329.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 125.01, "Median Spend per Customer": 125.01 }, "geometry": { "type": "Point", "coordinates": [ -75.207225, 40.076277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvx-w6k", "Name": "Clarkville", "Category": "Restaurants and Other Eating Places", "Address": "4301 Baltimore Ave", "LATITUDE": 39.949709, "LONGITUDE": -75.209372, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010087011.0, "Median Dwell Time": 24.0, "Total Spend": 7929.0, "Total Transactions": 186.0, "Total Customers": 167.0, "Median Spend per Transaction": 34.28, "Median Spend per Customer": 39.39 }, "geometry": { "type": "Point", "coordinates": [ -75.209372, 39.949709 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-ph8-rhq", "Name": "Smoothie King", "Category": "Restaurants and Other Eating Places", "Address": "7630 City Ave", "LATITUDE": 39.977878, "LONGITUDE": -75.27194, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 190.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 6.0, "Total Spend": 18325.0, "Total Transactions": 1318.0, "Total Customers": 711.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 15.14 }, "geometry": { "type": "Point", "coordinates": [ -75.27194, 39.977878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-fcq", "Name": "Ace Hardware", "Category": "Building Material and Supplies Dealers", "Address": "257 S 10th St", "LATITUDE": 39.946716, "LONGITUDE": -75.157593, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 5.0, "Total Spend": 925.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 31.29, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157593, 39.946716 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-whq", "Name": "Ocean City", "Category": "Restaurants and Other Eating Places", "Address": "234 N 9th St", "LATITUDE": 39.95631, "LONGITUDE": -75.15439, "DATE_RANGE_START": 2024, "Total Visits": 334.0, "Total Visitors": 287.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 46.0, "Total Spend": 598.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 48.64, "Median Spend per Customer": 48.64 }, "geometry": { "type": "Point", "coordinates": [ -75.15439, 39.95631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pmf-skf", "Name": "Butcher and Singer", "Category": "Restaurants and Other Eating Places", "Address": "1500 Walnut St", "LATITUDE": 39.948984, "LONGITUDE": -75.166282, "DATE_RANGE_START": 2024, "Total Visits": 2043.0, "Total Visitors": 1291.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 5.0, "Total Spend": 20209.0, "Total Transactions": 74.0, "Total Customers": 67.0, "Median Spend per Transaction": 208.59, "Median Spend per Customer": 208.3 }, "geometry": { "type": "Point", "coordinates": [ -75.166282, 39.948984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-kcq", "Name": "Revolution Taco", "Category": "Restaurants and Other Eating Places", "Address": "2015 Walnut St", "LATITUDE": 39.950768, "LONGITUDE": -75.17433, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 1.0, "Total Spend": 701.0, "Total Transactions": 38.0, "Total Customers": 37.0, "Median Spend per Transaction": 16.3, "Median Spend per Customer": 15.31 }, "geometry": { "type": "Point", "coordinates": [ -75.17433, 39.950768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9q-zfz", "Name": "Red Lobster", "Category": "Restaurants and Other Eating Places", "Address": "9140 Roosevelt Blvd", "LATITUDE": 40.076141, "LONGITUDE": -75.0344, "DATE_RANGE_START": 2024, "Total Visits": 590.0, "Total Visitors": 554.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 41.0, "Total Spend": 10038.0, "Total Transactions": 104.0, "Total Customers": 103.0, "Median Spend per Transaction": 90.1, "Median Spend per Customer": 91.48 }, "geometry": { "type": "Point", "coordinates": [ -75.0344, 40.076141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-6tv", "Name": "Giovani's Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "1533 Chestnut St", "LATITUDE": 39.951522, "LONGITUDE": -75.166746, "DATE_RANGE_START": 2024, "Total Visits": 346.0, "Total Visitors": 265.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 12538.0, "Total Transactions": 606.0, "Total Customers": 357.0, "Median Spend per Transaction": 13.1, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.166746, 39.951522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-n5z", "Name": "Tokyo Sushi & Catering", "Category": "Restaurants and Other Eating Places", "Address": "1701 John F Kennedy Blvd Ste C120", "LATITUDE": 39.954563, "LONGITUDE": -75.168487, "DATE_RANGE_START": 2024, "Total Visits": 3294.0, "Total Visitors": 1700.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 60.0, "Total Spend": 5399.0, "Total Transactions": 333.0, "Total Customers": 212.0, "Median Spend per Transaction": 15.42, "Median Spend per Customer": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.954563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-4qf", "Name": "Tai's Vietnamese Food", "Category": "Restaurants and Other Eating Places", "Address": "1835 N 12th St", "LATITUDE": 39.980895, "LONGITUDE": -75.153323, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 1.0, "Total Spend": 919.0, "Total Transactions": 83.0, "Total Customers": 54.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 12.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153323, 39.980895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvx-vzz", "Name": "Desi Chaat House", "Category": "Restaurants and Other Eating Places", "Address": "501 S 42nd St", "LATITUDE": 39.949657, "LONGITUDE": -75.206943, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010077001.0, "Median Dwell Time": null, "Total Spend": 513.0, "Total Transactions": 38.0, "Total Customers": 28.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 16.73 }, "geometry": { "type": "Point", "coordinates": [ -75.206943, 39.949657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-xkf", "Name": "Vietnam Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "221 N 11th St", "LATITUDE": 39.956332, "LONGITUDE": -75.157056, "DATE_RANGE_START": 2024, "Total Visits": 253.0, "Total Visitors": 221.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 15.0, "Total Spend": 191.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 48.46, "Median Spend per Customer": 48.46 }, "geometry": { "type": "Point", "coordinates": [ -75.157056, 39.956332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmb-5fz", "Name": "Pressed Juicery", "Category": "Restaurants and Other Eating Places", "Address": "113 S 13th St", "LATITUDE": 39.950032, "LONGITUDE": -75.161637, "DATE_RANGE_START": 2024, "Total Visits": 588.0, "Total Visitors": 467.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 10.0, "Total Spend": 2290.0, "Total Transactions": 124.0, "Total Customers": 104.0, "Median Spend per Transaction": 13.82, "Median Spend per Customer": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.161637, 39.950032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pm9-s5z", "Name": "PJ Clarkes", "Category": "Restaurants and Other Eating Places", "Address": "601 Walnut St", "LATITUDE": 39.948105, "LONGITUDE": -75.151179, "DATE_RANGE_START": 2024, "Total Visits": 1789.0, "Total Visitors": 1032.0, "POI_CBG": 421010010011.0, "Median Dwell Time": 69.0, "Total Spend": 7817.0, "Total Transactions": 108.0, "Total Customers": 99.0, "Median Spend per Transaction": 60.61, "Median Spend per Customer": 71.41 }, "geometry": { "type": "Point", "coordinates": [ -75.151179, 39.948105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-4jv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "490 N Broad St Ste 100", "LATITUDE": 39.962319, "LONGITUDE": -75.162376, "DATE_RANGE_START": 2024, "Total Visits": 569.0, "Total Visitors": 450.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 4.0, "Total Spend": 3916.0, "Total Transactions": 234.0, "Total Customers": 149.0, "Median Spend per Transaction": 9.74, "Median Spend per Customer": 17.87 }, "geometry": { "type": "Point", "coordinates": [ -75.162376, 39.962319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wff", "Name": "Chuck E. Cheese's", "Category": "Restaurants and Other Eating Places", "Address": "9 Snyder Ave Frnt", "LATITUDE": 39.921668, "LONGITUDE": -75.14493, "DATE_RANGE_START": 2024, "Total Visits": 429.0, "Total Visitors": 367.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 53.0, "Total Spend": 355.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 15.63, "Median Spend per Customer": 19.96 }, "geometry": { "type": "Point", "coordinates": [ -75.14493, 39.921668 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pj2-kmk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1240 W Erie Ave", "LATITUDE": 40.00463, "LONGITUDE": -75.104417, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 13.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 9.0, "Total Spend": 247.0, "Total Transactions": 17.0, "Total Customers": 11.0, "Median Spend per Transaction": 11.72, "Median Spend per Customer": 19.29 }, "geometry": { "type": "Point", "coordinates": [ -75.104417, 40.00463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p83-zcq", "Name": "Dim Sum Factory Krewstown", "Category": "Restaurants and Other Eating Places", "Address": "8925 Krewstown Rd", "LATITUDE": 40.083311, "LONGITUDE": -75.048238, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 129.0, "Total Spend": 1387.0, "Total Transactions": 29.0, "Total Customers": 28.0, "Median Spend per Transaction": 47.5, "Median Spend per Customer": 46.98 }, "geometry": { "type": "Point", "coordinates": [ -75.048238, 40.083311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-kj9", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "8500 Henry Ave Ste 10", "LATITUDE": 40.06279, "LONGITUDE": -75.235256, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 38.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 12.0, "Total Spend": 29122.0, "Total Transactions": 590.0, "Total Customers": 429.0, "Median Spend per Transaction": 38.88, "Median Spend per Customer": 44.79 }, "geometry": { "type": "Point", "coordinates": [ -75.235256, 40.06279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-cqz", "Name": "Vapordelphia", "Category": "Other Miscellaneous Store Retailers", "Address": "603 S 9th St", "LATITUDE": 39.942426, "LONGITUDE": -75.156906, "DATE_RANGE_START": 2024, "Total Visits": 853.0, "Total Visitors": 735.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 1.0, "Total Spend": 933.0, "Total Transactions": 29.0, "Total Customers": 22.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.156906, 39.942426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pjv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "3619 Aramingo Ave", "LATITUDE": 39.993581, "LONGITUDE": -75.09573, "DATE_RANGE_START": 2024, "Total Visits": 502.0, "Total Visitors": 424.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 7.0, "Total Spend": 11804.0, "Total Transactions": 675.0, "Total Customers": 482.0, "Median Spend per Transaction": 14.4, "Median Spend per Customer": 18.12 }, "geometry": { "type": "Point", "coordinates": [ -75.09573, 39.993581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7c-3yv", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "3348 Grant Ave", "LATITUDE": 40.067787, "LONGITUDE": -75.005889, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 200.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 7.0, "Total Spend": 989.0, "Total Transactions": 30.0, "Total Customers": 29.0, "Median Spend per Transaction": 31.75, "Median Spend per Customer": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.005889, 40.067787 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9w-4sq", "Name": "Somerton Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "10853 Bustleton Ave", "LATITUDE": 40.110348, "LONGITUDE": -75.024076, "DATE_RANGE_START": 2024, "Total Visits": 43.0, "Total Visitors": 18.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 141.0, "Total Spend": 6097.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 226.0, "Median Spend per Customer": 226.0 }, "geometry": { "type": "Point", "coordinates": [ -75.024076, 40.110348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-gtv", "Name": "Dollar Value", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2007 S Broad St", "LATITUDE": 39.925328, "LONGITUDE": -75.169026, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 145.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 5.0, "Total Spend": 2019.0, "Total Transactions": 103.0, "Total Customers": 93.0, "Median Spend per Transaction": 17.44, "Median Spend per Customer": 17.79 }, "geometry": { "type": "Point", "coordinates": [ -75.169026, 39.925328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pfy-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7104 Ridge Ave", "LATITUDE": 40.044342, "LONGITUDE": -75.230633, "DATE_RANGE_START": 2024, "Total Visits": 779.0, "Total Visitors": 637.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 3.0, "Total Spend": 10748.0, "Total Transactions": 1281.0, "Total Customers": 557.0, "Median Spend per Transaction": 7.21, "Median Spend per Customer": 11.56 }, "geometry": { "type": "Point", "coordinates": [ -75.230633, 40.044342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-5cq", "Name": "Oregon Steaks", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.91616, "LONGITUDE": -75.164638, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 167.0, "POI_CBG": 421010040022.0, "Median Dwell Time": 3.0, "Total Spend": 6281.0, "Total Transactions": 391.0, "Total Customers": 238.0, "Median Spend per Transaction": 13.25, "Median Spend per Customer": 20.25 }, "geometry": { "type": "Point", "coordinates": [ -75.164638, 39.91616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-y7q", "Name": "Shang Hai 1", "Category": "Restaurants and Other Eating Places", "Address": "123 N 10th St", "LATITUDE": 39.95416, "LONGITUDE": -75.155891, "DATE_RANGE_START": 2024, "Total Visits": 4262.0, "Total Visitors": 2963.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 203.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 28.37, "Median Spend per Customer": 34.11 }, "geometry": { "type": "Point", "coordinates": [ -75.155891, 39.95416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgh-cbk", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "3212 N Broad St", "LATITUDE": 40.002075, "LONGITUDE": -75.153118, "DATE_RANGE_START": 2024, "Total Visits": 174.0, "Total Visitors": 133.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 5.0, "Total Spend": 183.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 21.38, "Median Spend per Customer": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 40.002075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg8-x5z", "Name": "ALDI", "Category": "Grocery Stores", "Address": "3101 W Girard Ave", "LATITUDE": 39.976026, "LONGITUDE": -75.186871, "DATE_RANGE_START": 2024, "Total Visits": 692.0, "Total Visitors": 382.0, "POI_CBG": 421010137005.0, "Median Dwell Time": 7.0, "Total Spend": 640.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 36.8, "Median Spend per Customer": 36.8 }, "geometry": { "type": "Point", "coordinates": [ -75.186871, 39.976026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-sbk", "Name": "South Square Market", "Category": "Grocery Stores", "Address": "2221 South St", "LATITUDE": 39.945651, "LONGITUDE": -75.179355, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 309.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 3.0, "Total Spend": 30208.0, "Total Transactions": 1327.0, "Total Customers": 587.0, "Median Spend per Transaction": 15.32, "Median Spend per Customer": 29.52 }, "geometry": { "type": "Point", "coordinates": [ -75.179355, 39.945651 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-w49", "Name": "Destination XL", "Category": "Clothing Stores", "Address": "2329 Cottman Ave Spc 51", "LATITUDE": 40.048392, "LONGITUDE": -75.057512, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 161.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 5.0, "Total Spend": 3081.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 75.0, "Median Spend per Customer": 80.99 }, "geometry": { "type": "Point", "coordinates": [ -75.057512, 40.048392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgc-x5z", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "1575 N 52nd St", "LATITUDE": 39.9785, "LONGITUDE": -75.225466, "DATE_RANGE_START": 2024, "Total Visits": 248.0, "Total Visitors": 138.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 27.0, "Total Spend": 5345.0, "Total Transactions": 151.0, "Total Customers": 116.0, "Median Spend per Transaction": 26.11, "Median Spend per Customer": 32.35 }, "geometry": { "type": "Point", "coordinates": [ -75.225466, 39.9785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7w-v4v", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2327 Cottman Ave", "LATITUDE": 40.048258, "LONGITUDE": -75.056175, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 378.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 6.0, "Total Spend": 21011.0, "Total Transactions": 413.0, "Total Customers": 312.0, "Median Spend per Transaction": 34.97, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.056175, 40.048258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-p7v-cbk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7770 Dungan Rd", "LATITUDE": 40.065634, "LONGITUDE": -75.071931, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 10.0, "Total Spend": 752.0, "Total Transactions": 45.0, "Total Customers": 32.0, "Median Spend per Transaction": 14.61, "Median Spend per Customer": 24.86 }, "geometry": { "type": "Point", "coordinates": [ -75.071931, 40.065634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp5-d5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3141 Frankford Ave Spc 41", "LATITUDE": 39.99242, "LONGITUDE": -75.110931, "DATE_RANGE_START": 2024, "Total Visits": 433.0, "Total Visitors": 288.0, "POI_CBG": 421010178002.0, "Median Dwell Time": 7.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.78, "Median Spend per Customer": 9.78 }, "geometry": { "type": "Point", "coordinates": [ -75.110931, 39.99242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-tvz", "Name": "Material Culture", "Category": "Used Merchandise Stores", "Address": "4700 Wissahickon Ave Ste 101", "LATITUDE": 40.015276, "LONGITUDE": -75.173527, "DATE_RANGE_START": 2024, "Total Visits": 606.0, "Total Visitors": 477.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 35.0, "Total Spend": 1265.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 167.4, "Median Spend per Customer": 167.4 }, "geometry": { "type": "Point", "coordinates": [ -75.173527, 40.015276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7v-gkz", "Name": "Villagio Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1817 Cottman Ave", "LATITUDE": 40.053089, "LONGITUDE": -75.068847, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 163.0, "POI_CBG": 421010335003.0, "Median Dwell Time": 18.0, "Total Spend": 1532.0, "Total Transactions": 45.0, "Total Customers": 41.0, "Median Spend per Transaction": 27.91, "Median Spend per Customer": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.068847, 40.053089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm6-2hq", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2250 S Columbus Blvd", "LATITUDE": 39.917148, "LONGITUDE": -75.139881, "DATE_RANGE_START": 2024, "Total Visits": 671.0, "Total Visitors": 513.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 12.0, "Total Spend": 17156.0, "Total Transactions": 864.0, "Total Customers": 686.0, "Median Spend per Transaction": 14.86, "Median Spend per Customer": 17.06 }, "geometry": { "type": "Point", "coordinates": [ -75.139881, 39.917148 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6x5", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1161 Franklin Mills Cir", "LATITUDE": 40.088158, "LONGITUDE": -74.961561, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 55.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 10786.0, "Total Transactions": 700.0, "Total Customers": 515.0, "Median Spend per Transaction": 10.53, "Median Spend per Customer": 12.56 }, "geometry": { "type": "Point", "coordinates": [ -74.961561, 40.088158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22f@628-p85-hkf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2417 Welsh Rd", "LATITUDE": 40.072083, "LONGITUDE": -75.030728, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 116.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 12.0, "Total Spend": 1041.0, "Total Transactions": 62.0, "Total Customers": 45.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 14.5 }, "geometry": { "type": "Point", "coordinates": [ -75.030728, 40.072083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-zvf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "800 S Broad St", "LATITUDE": 39.940644, "LONGITUDE": -75.166616, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 8.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 2.0, "Total Spend": 7841.0, "Total Transactions": 513.0, "Total Customers": 325.0, "Median Spend per Transaction": 12.73, "Median Spend per Customer": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.166616, 39.940644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j9z", "Name": "Lovesac", "Category": "Furniture Stores", "Address": "1724 Walnut St", "LATITUDE": 39.949786, "LONGITUDE": -75.170367, "DATE_RANGE_START": 2024, "Total Visits": 3738.0, "Total Visitors": 2712.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 19.0, "Total Spend": 10423.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 3958.49, "Median Spend per Customer": 3958.49 }, "geometry": { "type": "Point", "coordinates": [ -75.170367, 39.949786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p8n-92k", "Name": "Bamboo Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6238 Bustleton Ave", "LATITUDE": 40.034106, "LONGITUDE": -75.071773, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 169.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 36.0, "Total Spend": 1114.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 33.2, "Median Spend per Customer": 36.84 }, "geometry": { "type": "Point", "coordinates": [ -75.071773, 40.034106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-ty9", "Name": "John's Place", "Category": "Restaurants and Other Eating Places", "Address": "1529 Spring Garden St", "LATITUDE": 39.96302, "LONGITUDE": -75.163942, "DATE_RANGE_START": 2024, "Total Visits": 105.0, "Total Visitors": 96.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 33.0, "Total Spend": 1094.0, "Total Transactions": 93.0, "Total Customers": 50.0, "Median Spend per Transaction": 10.52, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -75.163942, 39.96302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p85-6kz", "Name": "New Panda", "Category": "Restaurants and Other Eating Places", "Address": "8340 Bustleton Ave", "LATITUDE": 40.069106, "LONGITUDE": -75.051861, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 117.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 7.0, "Total Spend": 2446.0, "Total Transactions": 88.0, "Total Customers": 66.0, "Median Spend per Transaction": 24.35, "Median Spend per Customer": 25.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051861, 40.069106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm9-wp9", "Name": "3j's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "317 Market St", "LATITUDE": 39.950423, "LONGITUDE": -75.146258, "DATE_RANGE_START": 2024, "Total Visits": 1195.0, "Total Visitors": 972.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 563.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 48.88, "Median Spend per Customer": 48.88 }, "geometry": { "type": "Point", "coordinates": [ -75.146258, 39.950423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-phz-s3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3359 Kensington Ave", "LATITUDE": 39.998645, "LONGITUDE": -75.108833, "DATE_RANGE_START": 2024, "Total Visits": 531.0, "Total Visitors": 209.0, "POI_CBG": 421010188007.0, "Median Dwell Time": 5.0, "Total Spend": 1635.0, "Total Transactions": 47.0, "Total Customers": 21.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 14.33 }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.998645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-j5f", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2440 Grant Ave", "LATITUDE": 40.079145, "LONGITUDE": -75.026625, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 9066.0, "Total Transactions": 491.0, "Total Customers": 371.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 20.61 }, "geometry": { "type": "Point", "coordinates": [ -75.026625, 40.079145 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22m@63s-dw4-rzf", "Name": "Currito", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895176, "LONGITUDE": -75.227955, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 21.0, "Total Spend": 634.0, "Total Transactions": 25.0, "Total Customers": 22.0, "Median Spend per Transaction": 21.07, "Median Spend per Customer": 23.72 }, "geometry": { "type": "Point", "coordinates": [ -75.227955, 39.895176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-5vf", "Name": "Macy's", "Category": "Department Stores", "Address": "1300 Market St", "LATITUDE": 39.95191, "LONGITUDE": -75.161773, "DATE_RANGE_START": 2024, "Total Visits": 10572.0, "Total Visitors": 6846.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 9078.0, "Total Transactions": 456.0, "Total Customers": 286.0, "Median Spend per Transaction": 8.16, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161773, 39.95191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pm9-hyv", "Name": "Grove Supply", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "2626 S 18th St", "LATITUDE": 39.918444, "LONGITUDE": -75.177883, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 2.0, "Total Spend": 2231.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 73.31, "Median Spend per Customer": 73.31 }, "geometry": { "type": "Point", "coordinates": [ -75.177883, 39.918444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-gtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.99585, "LONGITUDE": -75.166133, "DATE_RANGE_START": 2024, "Total Visits": 902.0, "Total Visitors": 754.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 5.0, "Total Spend": 4631.0, "Total Transactions": 384.0, "Total Customers": 274.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166133, 39.99585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qzz", "Name": "Checkers Drive-In Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "3500 Aramingo Ave", "LATITUDE": 39.993572, "LONGITUDE": -75.097627, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 3.0, "Total Spend": 1226.0, "Total Transactions": 72.0, "Total Customers": 63.0, "Median Spend per Transaction": 15.71, "Median Spend per Customer": 18.26 }, "geometry": { "type": "Point", "coordinates": [ -75.097627, 39.993572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwg-gc5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2501 S 70th St", "LATITUDE": 39.917009, "LONGITUDE": -75.236625, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 17.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 31.0, "Total Spend": 2679.0, "Total Transactions": 58.0, "Total Customers": 43.0, "Median Spend per Transaction": 31.3, "Median Spend per Customer": 35.63 }, "geometry": { "type": "Point", "coordinates": [ -75.236625, 39.917009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-tjv", "Name": "Munchie's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "728 Chestnut St", "LATITUDE": 39.949283, "LONGITUDE": -75.153687, "DATE_RANGE_START": 2024, "Total Visits": 840.0, "Total Visitors": 585.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 5.0, "Total Spend": 3975.0, "Total Transactions": 332.0, "Total Customers": 187.0, "Median Spend per Transaction": 11.12, "Median Spend per Customer": 14.05 }, "geometry": { "type": "Point", "coordinates": [ -75.153687, 39.949283 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm8-2p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3313 Wharton St", "LATITUDE": 39.93851, "LONGITUDE": -75.198178, "DATE_RANGE_START": 2024, "Total Visits": 563.0, "Total Visitors": 427.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 4.0, "Total Spend": 7474.0, "Total Transactions": 945.0, "Total Customers": 479.0, "Median Spend per Transaction": 6.69, "Median Spend per Customer": 10.75 }, "geometry": { "type": "Point", "coordinates": [ -75.198178, 39.93851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-pgk", "Name": "Beacon Building Products", "Category": "Building Material and Supplies Dealers", "Address": "2430 E Tioga St", "LATITUDE": 39.990643, "LONGITUDE": -75.098575, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 74.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 7.0, "Total Spend": 50616.0, "Total Transactions": 849.0, "Total Customers": 735.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.098575, 39.990643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwd-pjv", "Name": "Urban Shop 543", "Category": "Restaurants and Other Eating Places", "Address": "5000 S Broad St", "LATITUDE": 39.889671, "LONGITUDE": -75.175464, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 16.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 484.0, "Total Spend": 251.0, "Total Transactions": 33.0, "Total Customers": 7.0, "Median Spend per Transaction": 7.33, "Median Spend per Customer": 19.82 }, "geometry": { "type": "Point", "coordinates": [ -75.175464, 39.889671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-223@628-pmf-j7q", "Name": "Mac Mart", "Category": "Restaurants and Other Eating Places", "Address": "104 S 18th St", "LATITUDE": 39.951438, "LONGITUDE": -75.170519, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 230.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 2224.0, "Total Transactions": 120.0, "Total Customers": 113.0, "Median Spend per Transaction": 15.42, "Median Spend per Customer": 15.42 }, "geometry": { "type": "Point", "coordinates": [ -75.170519, 39.951438 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vvf", "Name": "Zales Philadelphia", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1777 Franklin Mills Cir Ste 150", "LATITUDE": 40.089623, "LONGITUDE": -74.961878, "DATE_RANGE_START": 2024, "Total Visits": 305.0, "Total Visitors": 229.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 375.0, "Total Spend": 3517.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 167.4, "Median Spend per Customer": 167.4 }, "geometry": { "type": "Point", "coordinates": [ -74.961878, 40.089623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgm-28v", "Name": "In Riva", "Category": "Restaurants and Other Eating Places", "Address": "4116 Ridge Ave", "LATITUDE": 40.007857, "LONGITUDE": -75.192355, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 222.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 6.0, "Total Spend": 18660.0, "Total Transactions": 203.0, "Total Customers": 170.0, "Median Spend per Transaction": 82.48, "Median Spend per Customer": 89.42 }, "geometry": { "type": "Point", "coordinates": [ -75.192355, 40.007857 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnw-psq", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "180 W Girard Ave", "LATITUDE": 39.969094, "LONGITUDE": -75.139046, "DATE_RANGE_START": 2024, "Total Visits": 1935.0, "Total Visitors": 1231.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 7.0, "Total Spend": 203386.0, "Total Transactions": 5029.0, "Total Customers": 2204.0, "Median Spend per Transaction": 24.13, "Median Spend per Customer": 45.13 }, "geometry": { "type": "Point", "coordinates": [ -75.139046, 39.969094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-223@63s-dvs-26k", "Name": "Drexel Line Food", "Category": "Grocery Stores", "Address": "5406 Chester Ave", "LATITUDE": 39.939005, "LONGITUDE": -75.223043, "DATE_RANGE_START": 2024, "Total Visits": 466.0, "Total Visitors": 287.0, "POI_CBG": 421010071013.0, "Median Dwell Time": 13.0, "Total Spend": 213.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 80.95, "Median Spend per Customer": 80.95 }, "geometry": { "type": "Point", "coordinates": [ -75.223043, 39.939005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-y7q", "Name": "K & A Gift Shop", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "911 Arch St", "LATITUDE": 39.953734, "LONGITUDE": -75.155203, "DATE_RANGE_START": 2024, "Total Visits": 4262.0, "Total Visitors": 2963.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 25.38, "Median Spend per Customer": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.155203, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pfz-bp9", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "4356 Main St", "LATITUDE": 40.025407, "LONGITUDE": -75.223856, "DATE_RANGE_START": 2024, "Total Visits": 531.0, "Total Visitors": 452.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 10.0, "Total Spend": 2787.0, "Total Transactions": 63.0, "Total Customers": 63.0, "Median Spend per Transaction": 38.38, "Median Spend per Customer": 38.38 }, "geometry": { "type": "Point", "coordinates": [ -75.223856, 40.025407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmf-rc5", "Name": "Southgate", "Category": "Restaurants and Other Eating Places", "Address": "1801 Lombard St", "LATITUDE": 39.945602, "LONGITUDE": -75.171757, "DATE_RANGE_START": 2024, "Total Visits": 591.0, "Total Visitors": 353.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 175.0, "Total Spend": 181.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 68.66, "Median Spend per Customer": 68.66 }, "geometry": { "type": "Point", "coordinates": [ -75.171757, 39.945602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@63s-dvw-hwk", "Name": "Quick & Quality", "Category": "Restaurants and Other Eating Places", "Address": "4836 Spruce St", "LATITUDE": 39.953576, "LONGITUDE": -75.219432, "DATE_RANGE_START": 2024, "Total Visits": 163.0, "Total Visitors": 99.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 11.0, "Total Spend": 4011.0, "Total Transactions": 276.0, "Total Customers": 66.0, "Median Spend per Transaction": 14.49, "Median Spend per Customer": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.219432, 39.953576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-229@63s-dvy-8y9", "Name": "48th Street Grille", "Category": "Restaurants and Other Eating Places", "Address": "310 S 48th St", "LATITUDE": 39.953128, "LONGITUDE": -75.218509, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 51.0, "Total Spend": 1400.0, "Total Transactions": 17.0, "Total Customers": 16.0, "Median Spend per Transaction": 76.68, "Median Spend per Customer": 76.68 }, "geometry": { "type": "Point", "coordinates": [ -75.218509, 39.953128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj6-fzz", "Name": "Papa Nick's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "199 W Godfrey Ave", "LATITUDE": 40.045204, "LONGITUDE": -75.123375, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 178.0, "POI_CBG": 421010272003.0, "Median Dwell Time": 5.0, "Total Spend": 2053.0, "Total Transactions": 87.0, "Total Customers": 68.0, "Median Spend per Transaction": 20.26, "Median Spend per Customer": 21.69 }, "geometry": { "type": "Point", "coordinates": [ -75.123375, 40.045204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm9-zpv", "Name": "Little Fish", "Category": "Restaurants and Other Eating Places", "Address": "746 S 6th St", "LATITUDE": 39.93998, "LONGITUDE": -75.152912, "DATE_RANGE_START": 2024, "Total Visits": 105.0, "Total Visitors": 105.0, "POI_CBG": 421010018001.0, "Median Dwell Time": 69.0, "Total Spend": 101.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 17.55, "Median Spend per Customer": 34.5 }, "geometry": { "type": "Point", "coordinates": [ -75.152912, 39.93998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pp2-2kz", "Name": "Aramingo Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992487, "LONGITUDE": -75.10127, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 13.0, "Total Spend": 684.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.10127, 39.992487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pm7-nkf", "Name": "Culture Exchange", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1450 Point Breeze Ave", "LATITUDE": 39.933425, "LONGITUDE": -75.1808, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 115.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 1.0, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.49, "Median Spend per Customer": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.1808, 39.933425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj2-cdv", "Name": "Paradise Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1363 E Lycoming St", "LATITUDE": 40.009124, "LONGITUDE": -75.100453, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010190004.0, "Median Dwell Time": 9.0, "Total Spend": 1580.0, "Total Transactions": 43.0, "Total Customers": 21.0, "Median Spend per Transaction": 43.49, "Median Spend per Customer": 32.7 }, "geometry": { "type": "Point", "coordinates": [ -75.100453, 40.009124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvz-28v", "Name": "Pasqually's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "200 S 43rd St", "LATITUDE": 39.954486, "LONGITUDE": -75.209007, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 104.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 46.0, "Total Spend": 9092.0, "Total Transactions": 449.0, "Total Customers": 249.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.209007, 39.954486 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-wkz", "Name": "Sassafras Bar", "Category": "Restaurants and Other Eating Places", "Address": "48 S 2nd St", "LATITUDE": 39.948812, "LONGITUDE": -75.144182, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 187.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 29.0, "Total Spend": 602.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 41.18, "Median Spend per Customer": 41.52 }, "geometry": { "type": "Point", "coordinates": [ -75.144182, 39.948812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-7h5", "Name": "Cambria Suites", "Category": "Traveler Accommodation", "Address": "219 S Broad St", "LATITUDE": 39.948732, "LONGITUDE": -75.1641, "DATE_RANGE_START": 2024, "Total Visits": 8563.0, "Total Visitors": 5657.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 2.0, "Total Spend": 9384.0, "Total Transactions": 55.0, "Total Customers": 41.0, "Median Spend per Transaction": 29.7, "Median Spend per Customer": 69.24 }, "geometry": { "type": "Point", "coordinates": [ -75.1641, 39.948732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-whq", "Name": "Pho Xe Lua Viet Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "907 Race St", "LATITUDE": 39.955481, "LONGITUDE": -75.154675, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 245.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 1827.0, "Total Transactions": 43.0, "Total Customers": 43.0, "Median Spend per Transaction": 41.81, "Median Spend per Customer": 41.81 }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pfz-bhq", "Name": "Pizza Jawn", "Category": "Restaurants and Other Eating Places", "Address": "4330 Main St", "LATITUDE": 40.025115, "LONGITUDE": -75.223217, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 14.0, "Total Spend": 795.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 23.02, "Median Spend per Customer": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.223217, 40.025115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj5-435", "Name": "Clock Bar", "Category": "Restaurants and Other Eating Places", "Address": "3649 Germantown Ave", "LATITUDE": 40.008873, "LONGITUDE": -75.15059, "DATE_RANGE_START": 2024, "Total Visits": 462.0, "Total Visitors": 244.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 412.0, "Total Spend": 2433.0, "Total Transactions": 84.0, "Total Customers": 66.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.15059, 40.008873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj7-2p9", "Name": "Jerusalem Furniture", "Category": "Furniture Stores", "Address": "5691 Rising Sun Ave", "LATITUDE": 40.040423, "LONGITUDE": -75.107572, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 161.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 20.0, "Total Spend": 4279.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 1625.0, "Median Spend per Customer": 1625.0 }, "geometry": { "type": "Point", "coordinates": [ -75.107572, 40.040423 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-x5z", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "1575 N 52nd St", "LATITUDE": 39.978529, "LONGITUDE": -75.225621, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 146.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 10.0, "Total Spend": 1167.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 74.3, "Median Spend per Customer": 74.3 }, "geometry": { "type": "Point", "coordinates": [ -75.225621, 39.978529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-5j9", "Name": "Dollar Up & Gifts", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "10833 Bustleton Ave", "LATITUDE": 40.10998, "LONGITUDE": -75.024237, "DATE_RANGE_START": 2024, "Total Visits": 366.0, "Total Visitors": 250.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 3.0, "Total Spend": 140.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 25.6, "Median Spend per Customer": 32.58 }, "geometry": { "type": "Point", "coordinates": [ -75.024237, 40.10998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p8d-bzf", "Name": "Bridesburg Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4254 Richmond St", "LATITUDE": 39.995896, "LONGITUDE": -75.076662, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 95.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 11.0, "Total Spend": 193.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 28.72, "Median Spend per Customer": 27.76 }, "geometry": { "type": "Point", "coordinates": [ -75.076662, 39.995896 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnw-ndv", "Name": "Bottle Bar East", "Category": "Restaurants and Other Eating Places", "Address": "1308 Frankford Ave", "LATITUDE": 39.970523, "LONGITUDE": -75.134598, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 132.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 3.0, "Total Spend": 17331.0, "Total Transactions": 681.0, "Total Customers": 412.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 27.6 }, "geometry": { "type": "Point", "coordinates": [ -75.134598, 39.970523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pm8-kxq", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1100 Pattison Ave", "LATITUDE": 39.904365, "LONGITUDE": -75.169382, "DATE_RANGE_START": 2024, "Total Visits": 2307.0, "Total Visitors": 1904.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 50.0, "Total Spend": 6908.0, "Total Transactions": 294.0, "Total Customers": 271.0, "Median Spend per Transaction": 21.64, "Median Spend per Customer": 21.7 }, "geometry": { "type": "Point", "coordinates": [ -75.169382, 39.904365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pmc-v75", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1601 S Columbus Blvd", "LATITUDE": 39.927199, "LONGITUDE": -75.144501, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 141.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 210.0, "Total Spend": 13061.0, "Total Transactions": 1137.0, "Total Customers": 861.0, "Median Spend per Transaction": 10.24, "Median Spend per Customer": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.144501, 39.927199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-r49", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "3551 Aramingo Ave", "LATITUDE": 39.992343, "LONGITUDE": -75.098014, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 7.0, "Total Spend": 7807.0, "Total Transactions": 429.0, "Total Customers": 315.0, "Median Spend per Transaction": 14.89, "Median Spend per Customer": 18.8 }, "geometry": { "type": "Point", "coordinates": [ -75.098014, 39.992343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-224@628-pnx-ch5", "Name": "Goldie", "Category": "Restaurants and Other Eating Places", "Address": "1601 N Front St", "LATITUDE": 39.974539, "LONGITUDE": -75.134161, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 24.0, "Total Spend": 211.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 15.61, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134161, 39.974539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pm5-bzf", "Name": "Oregon Market", "Category": "Specialty Food Stores", "Address": "320 W Oregon Ave", "LATITUDE": 39.912961, "LONGITUDE": -75.153523, "DATE_RANGE_START": 2024, "Total Visits": 326.0, "Total Visitors": 221.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 10.0, "Total Spend": 16209.0, "Total Transactions": 301.0, "Total Customers": 221.0, "Median Spend per Transaction": 32.6, "Median Spend per Customer": 42.03 }, "geometry": { "type": "Point", "coordinates": [ -75.153523, 39.912961 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-73q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4813 Tacony St # 25", "LATITUDE": 40.007736, "LONGITUDE": -75.073426, "DATE_RANGE_START": 2024, "Total Visits": 1301.0, "Total Visitors": 995.0, "POI_CBG": 421010380002.0, "Median Dwell Time": 3.0, "Total Spend": 2387.0, "Total Transactions": 100.0, "Total Customers": 87.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.073426, 40.007736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-224@628-pmf-tvz", "Name": "Rittenhouse Grill", "Category": "Restaurants and Other Eating Places", "Address": "1701 Locust St", "LATITUDE": 39.948989, "LONGITUDE": -75.169546, "DATE_RANGE_START": 2024, "Total Visits": 1274.0, "Total Visitors": 898.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 173.0, "Total Spend": 3462.0, "Total Transactions": 21.0, "Total Customers": 20.0, "Median Spend per Transaction": 90.36, "Median Spend per Customer": 100.12 }, "geometry": { "type": "Point", "coordinates": [ -75.169546, 39.948989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phz-28v", "Name": "New London Pizza", "Category": "Restaurants and Other Eating Places", "Address": "500 E Wyoming Ave", "LATITUDE": 40.020305, "LONGITUDE": -75.116121, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 107.0, "POI_CBG": 421010289013.0, "Median Dwell Time": 6.0, "Total Spend": 6168.0, "Total Transactions": 211.0, "Total Customers": 109.0, "Median Spend per Transaction": 28.04, "Median Spend per Customer": 38.46 }, "geometry": { "type": "Point", "coordinates": [ -75.116121, 40.020305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7901 Oxford Ave", "LATITUDE": 40.074102, "LONGITUDE": -75.084375, "DATE_RANGE_START": 2024, "Total Visits": 1126.0, "Total Visitors": 560.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 15.0, "Total Spend": 18484.0, "Total Transactions": 1344.0, "Total Customers": 795.0, "Median Spend per Transaction": 11.22, "Median Spend per Customer": 16.28 }, "geometry": { "type": "Point", "coordinates": [ -75.084375, 40.074102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@63s-dvy-mx5", "Name": "Surreal Creamery", "Category": "Restaurants and Other Eating Places", "Address": "3818 Pa-3", "LATITUDE": 39.955025, "LONGITUDE": -75.199293, "DATE_RANGE_START": 2024, "Total Visits": 1736.0, "Total Visitors": 1081.0, "POI_CBG": 421010088012.0, "Median Dwell Time": 22.0, "Total Spend": 4722.0, "Total Transactions": 290.0, "Total Customers": 279.0, "Median Spend per Transaction": 12.52, "Median Spend per Customer": 12.71 }, "geometry": { "type": "Point", "coordinates": [ -75.199293, 39.955025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pj6-n3q", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.037046, "LONGITUDE": -75.119043, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 5.0, "Total Spend": 6168.0, "Total Transactions": 225.0, "Total Customers": 199.0, "Median Spend per Transaction": 17.26, "Median Spend per Customer": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.119043, 40.037046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-73q", "Name": "HipCityVeg", "Category": "Restaurants and Other Eating Places", "Address": "121 S Broad St", "LATITUDE": 39.950321, "LONGITUDE": -75.163776, "DATE_RANGE_START": 2024, "Total Visits": 1024.0, "Total Visitors": 729.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 5.0, "Total Spend": 1629.0, "Total Transactions": 86.0, "Total Customers": 79.0, "Median Spend per Transaction": 18.25, "Median Spend per Customer": 18.25 }, "geometry": { "type": "Point", "coordinates": [ -75.163776, 39.950321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgb-389", "Name": "Callowhill Greens", "Category": "Restaurants and Other Eating Places", "Address": "1800 Callowhill St", "LATITUDE": 39.960302, "LONGITUDE": -75.168617, "DATE_RANGE_START": 2024, "Total Visits": 316.0, "Total Visitors": 271.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 3.0, "Total Spend": 64.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.08, "Median Spend per Customer": 14.08 }, "geometry": { "type": "Point", "coordinates": [ -75.168617, 39.960302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-h5z", "Name": "Ground Up Coffee Shop", "Category": "Restaurants and Other Eating Places", "Address": "1926 E Passyunk Ave", "LATITUDE": 39.926043, "LONGITUDE": -75.168183, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 354.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 26.0, "Total Spend": 389.0, "Total Transactions": 30.0, "Total Customers": 9.0, "Median Spend per Transaction": 12.86, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.168183, 39.926043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7b-kj9", "Name": "Villagio Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9233 Frankford Ave", "LATITUDE": 40.055388, "LONGITUDE": -75.003512, "DATE_RANGE_START": 2024, "Total Visits": 67.0, "Total Visitors": 67.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 14.0, "Total Spend": 477.0, "Total Transactions": 17.0, "Total Customers": 16.0, "Median Spend per Transaction": 25.03, "Median Spend per Customer": 25.03 }, "geometry": { "type": "Point", "coordinates": [ -75.003512, 40.055388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-tvz", "Name": "Via Locusta", "Category": "Restaurants and Other Eating Places", "Address": "1723 Locust St", "LATITUDE": 39.949069, "LONGITUDE": -75.170305, "DATE_RANGE_START": 2024, "Total Visits": 765.0, "Total Visitors": 415.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 106.0, "Total Spend": 6369.0, "Total Transactions": 57.0, "Total Customers": 39.0, "Median Spend per Transaction": 85.9, "Median Spend per Customer": 138.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170305, 39.949069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-789", "Name": "Bayou", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5025 Baltimore Ave", "LATITUDE": 39.948002, "LONGITUDE": -75.22436, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 66.0, "Total Spend": 78.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.06, "Median Spend per Customer": 29.77 }, "geometry": { "type": "Point", "coordinates": [ -75.22436, 39.948002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9p-qj9", "Name": "Tandoori bakery", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd Ste", "LATITUDE": 40.102585, "LONGITUDE": -75.031144, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 155.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 4.0, "Total Spend": 3276.0, "Total Transactions": 109.0, "Total Customers": 67.0, "Median Spend per Transaction": 17.87, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.031144, 40.102585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgd-zvf", "Name": "Nafi Food Express", "Category": "Restaurants and Other Eating Places", "Address": "3400 Market St", "LATITUDE": 39.955563, "LONGITUDE": -75.193294, "DATE_RANGE_START": 2024, "Total Visits": 1958.0, "Total Visitors": 1251.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 58.0, "Total Spend": 51.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.193294, 39.955563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pgf-3dv", "Name": "Sang Kee Noodle House", "Category": "Restaurants and Other Eating Places", "Address": "3549 Chestnut St", "LATITUDE": 39.954847, "LONGITUDE": -75.19368, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 28.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 393.0, "Total Spend": 8928.0, "Total Transactions": 377.0, "Total Customers": 299.0, "Median Spend per Transaction": 17.99, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.19368, 39.954847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p75-6c5", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "8914 Frankford Ave", "LATITUDE": 40.052141, "LONGITUDE": -75.010272, "DATE_RANGE_START": 2024, "Total Visits": 675.0, "Total Visitors": 290.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 6.0, "Total Spend": 4213.0, "Total Transactions": 225.0, "Total Customers": 166.0, "Median Spend per Transaction": 13.92, "Median Spend per Customer": 17.81 }, "geometry": { "type": "Point", "coordinates": [ -75.010272, 40.052141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfz-bzf", "Name": "Palm Tree Market", "Category": "Grocery Stores", "Address": "4368 Cresson St", "LATITUDE": 40.026206, "LONGITUDE": -75.22393, "DATE_RANGE_START": 2024, "Total Visits": 230.0, "Total Visitors": 215.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 2.0, "Total Spend": 3937.0, "Total Transactions": 319.0, "Total Customers": 174.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.22393, 40.026206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-7nq", "Name": "Double Knot", "Category": "Health and Personal Care Stores", "Address": "120 S 13th St", "LATITUDE": 39.949641, "LONGITUDE": -75.16219, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 208.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 15.0, "Total Spend": 7291.0, "Total Transactions": 61.0, "Total Customers": 58.0, "Median Spend per Transaction": 89.18, "Median Spend per Customer": 95.07 }, "geometry": { "type": "Point", "coordinates": [ -75.16219, 39.949641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8m-snq", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "5223 Frankford Ave", "LATITUDE": 40.022472, "LONGITUDE": -75.077322, "DATE_RANGE_START": 2024, "Total Visits": 345.0, "Total Visitors": 246.0, "POI_CBG": 421010300004.0, "Median Dwell Time": 9.0, "Total Spend": 1541.0, "Total Transactions": 55.0, "Total Customers": 41.0, "Median Spend per Transaction": 25.95, "Median Spend per Customer": 35.98 }, "geometry": { "type": "Point", "coordinates": [ -75.077322, 40.022472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-7qz", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7616 Highway City Line Ave @ 1 St", "LATITUDE": 39.978386, "LONGITUDE": -75.27109, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 8.0, "Total Spend": 35554.0, "Total Transactions": 789.0, "Total Customers": 628.0, "Median Spend per Transaction": 31.3, "Median Spend per Customer": 35.99 }, "geometry": { "type": "Point", "coordinates": [ -75.27109, 39.978386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@63s-dvz-2rk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4601 Walnut St", "LATITUDE": 39.95576, "LONGITUDE": -75.214101, "DATE_RANGE_START": 2024, "Total Visits": 502.0, "Total Visitors": 416.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 3.0, "Total Spend": 306.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.214101, 39.95576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pg4-52k", "Name": "Duran Food Market", "Category": "Grocery Stores", "Address": "5355 Lena St", "LATITUDE": 40.034878, "LONGITUDE": -75.168712, "DATE_RANGE_START": 2024, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010246001.0, "Median Dwell Time": 276.0, "Total Spend": 820.0, "Total Transactions": 74.0, "Total Customers": 24.0, "Median Spend per Transaction": 8.61, "Median Spend per Customer": 15.94 }, "geometry": { "type": "Point", "coordinates": [ -75.168712, 40.034878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-6kz", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "2106 S Columbus Blvd", "LATITUDE": 39.919791, "LONGITUDE": -75.143659, "DATE_RANGE_START": 2024, "Total Visits": 2640.0, "Total Visitors": 1780.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 15.0, "Total Spend": 93311.0, "Total Transactions": 519.0, "Total Customers": 325.0, "Median Spend per Transaction": 36.49, "Median Spend per Customer": 46.48 }, "geometry": { "type": "Point", "coordinates": [ -75.143659, 39.919791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-6x5", "Name": "Su Xing House", "Category": "Restaurants and Other Eating Places", "Address": "1508 Sansom St", "LATITUDE": 39.950249, "LONGITUDE": -75.166345, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 172.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 1827.0, "Total Transactions": 49.0, "Total Customers": 37.0, "Median Spend per Transaction": 27.92, "Median Spend per Customer": 40.82 }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p7b-gx5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9101 Frankford Ave", "LATITUDE": 40.052222, "LONGITUDE": -75.006581, "DATE_RANGE_START": 2024, "Total Visits": 1022.0, "Total Visitors": 866.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 6.0, "Total Spend": 6699.0, "Total Transactions": 233.0, "Total Customers": 133.0, "Median Spend per Transaction": 26.76, "Median Spend per Customer": 40.53 }, "geometry": { "type": "Point", "coordinates": [ -75.006581, 40.052222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p8h-75z", "Name": "Jack's place", "Category": "Restaurants and Other Eating Places", "Address": "7167 Hegerman St", "LATITUDE": 40.028178, "LONGITUDE": -75.03579, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 14.0, "POI_CBG": 421010326007.0, "Median Dwell Time": 286.0, "Total Spend": 242.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 14.32, "Median Spend per Customer": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.03579, 40.028178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-n89", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1100 S Delaware Ave", "LATITUDE": 39.932013, "LONGITUDE": -75.144578, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 230.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 6.0, "Total Spend": 448.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 47.49, "Median Spend per Customer": 47.49 }, "geometry": { "type": "Point", "coordinates": [ -75.144578, 39.932013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pm9-5cq", "Name": "Nifty Fifty's", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 10th St", "LATITUDE": 39.915802, "LONGITUDE": -75.164793, "DATE_RANGE_START": 2024, "Total Visits": 174.0, "Total Visitors": 125.0, "POI_CBG": 421010372003.0, "Median Dwell Time": 2.0, "Total Spend": 252.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 40.92, "Median Spend per Customer": 40.92 }, "geometry": { "type": "Point", "coordinates": [ -75.164793, 39.915802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-hdv", "Name": "Naf Naf Middle Eastern Grill", "Category": "Restaurants and Other Eating Places", "Address": "1919 Market St Ste 101", "LATITUDE": 39.953667, "LONGITUDE": -75.172426, "DATE_RANGE_START": 2024, "Total Visits": 326.0, "Total Visitors": 273.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 1.0, "Total Spend": 1421.0, "Total Transactions": 97.0, "Total Customers": 68.0, "Median Spend per Transaction": 12.76, "Median Spend per Customer": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.172426, 39.953667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnt-ty9", "Name": "Somerset Splits", "Category": "Restaurants and Other Eating Places", "Address": "2600 E Somerset St", "LATITUDE": 39.980504, "LONGITUDE": -75.113162, "DATE_RANGE_START": 2024, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010180013.0, "Median Dwell Time": 14.0, "Total Spend": 1076.0, "Total Transactions": 54.0, "Total Customers": 41.0, "Median Spend per Transaction": 17.4, "Median Spend per Customer": 22.8 }, "geometry": { "type": "Point", "coordinates": [ -75.113162, 39.980504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-7qz", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "1234 Locust St", "LATITUDE": 39.947783, "LONGITUDE": -75.162071, "DATE_RANGE_START": 2024, "Total Visits": 1661.0, "Total Visitors": 550.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 1006.0, "Total Spend": 14202.0, "Total Transactions": 215.0, "Total Customers": 197.0, "Median Spend per Transaction": 51.32, "Median Spend per Customer": 52.42 }, "geometry": { "type": "Point", "coordinates": [ -75.162071, 39.947783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@63s-dvy-k9f", "Name": "El Taco", "Category": "Restaurants and Other Eating Places", "Address": "3716 Spruce St", "LATITUDE": 39.951008, "LONGITUDE": -75.198241, "DATE_RANGE_START": 2024, "Total Visits": 1051.0, "Total Visitors": 503.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 7.0, "Total Spend": 159.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.2, "Median Spend per Customer": 25.73 }, "geometry": { "type": "Point", "coordinates": [ -75.198241, 39.951008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2130 S Columbus Blvd", "LATITUDE": 39.918938, "LONGITUDE": -75.140855, "DATE_RANGE_START": 2024, "Total Visits": 540.0, "Total Visitors": 450.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 18.0, "Total Spend": 149.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 10.3, "Median Spend per Customer": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -75.140855, 39.918938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9q-j5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9490 Blue Grass Rd", "LATITUDE": 40.078767, "LONGITUDE": -75.025854, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 395.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 7830.0, "Total Transactions": 939.0, "Total Customers": 482.0, "Median Spend per Transaction": 6.84, "Median Spend per Customer": 10.08 }, "geometry": { "type": "Point", "coordinates": [ -75.025854, 40.078767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-ph6-q4v", "Name": "Lucky Garden", "Category": "Restaurants and Other Eating Places", "Address": "5528 Lansdowne Ave", "LATITUDE": 39.976559, "LONGITUDE": -75.232622, "DATE_RANGE_START": 2024, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010112007.0, "Median Dwell Time": 6.0, "Total Spend": 96.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 17.96, "Median Spend per Customer": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.232622, 39.976559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-zzz", "Name": "Makkah Market", "Category": "Restaurants and Other Eating Places", "Address": "4249 Walnut St", "LATITUDE": 39.955076, "LONGITUDE": -75.20845, "DATE_RANGE_START": 2024, "Total Visits": 215.0, "Total Visitors": 83.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 47.0, "Total Spend": 19362.0, "Total Transactions": 845.0, "Total Customers": 345.0, "Median Spend per Transaction": 12.46, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.20845, 39.955076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-7h5", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "861 N 3rd St", "LATITUDE": 39.964803, "LONGITUDE": -75.14238, "DATE_RANGE_START": 2024, "Total Visits": 344.0, "Total Visitors": 271.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 4.0, "Total Spend": 2741.0, "Total Transactions": 84.0, "Total Customers": 79.0, "Median Spend per Transaction": 23.34, "Median Spend per Customer": 24.57 }, "geometry": { "type": "Point", "coordinates": [ -75.14238, 39.964803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-223@628-p7x-vpv", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "7422 Bustleton Ave", "LATITUDE": 40.052503, "LONGITUDE": -75.058497, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 6.0, "Total Spend": 4832.0, "Total Transactions": 128.0, "Total Customers": 79.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 33.46 }, "geometry": { "type": "Point", "coordinates": [ -75.058497, 40.052503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw4-vcq", "Name": "United Refrigeration", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "8420 Enterprise Ave", "LATITUDE": 39.882256, "LONGITUDE": -75.227642, "DATE_RANGE_START": 2024, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 37.0, "Total Spend": 10470.0, "Total Transactions": 57.0, "Total Customers": 29.0, "Median Spend per Transaction": 99.45, "Median Spend per Customer": 70.74 }, "geometry": { "type": "Point", "coordinates": [ -75.227642, 39.882256 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg3-x5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "35 E Chelten Ave", "LATITUDE": 40.037101, "LONGITUDE": -75.174649, "DATE_RANGE_START": 2024, "Total Visits": 646.0, "Total Visitors": 430.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 6.0, "Total Spend": 2729.0, "Total Transactions": 46.0, "Total Customers": 33.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174649, 40.037101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-22f@628-p9r-28v", "Name": "Lane Bryant", "Category": "Clothing Stores", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.074277, "LONGITUDE": -75.033112, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 30.0, "Total Spend": 785.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 53.41, "Median Spend per Customer": 53.41 }, "geometry": { "type": "Point", "coordinates": [ -75.033112, 40.074277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-wc5", "Name": "Craft Hall", "Category": "Restaurants and Other Eating Places", "Address": "901 N Delaware Ave", "LATITUDE": 39.962391, "LONGITUDE": -75.135889, "DATE_RANGE_START": 2024, "Total Visits": 652.0, "Total Visitors": 307.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 56.0, "Total Spend": 2064.0, "Total Transactions": 30.0, "Total Customers": 29.0, "Median Spend per Transaction": 58.04, "Median Spend per Customer": 70.1 }, "geometry": { "type": "Point", "coordinates": [ -75.135889, 39.962391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-d35", "Name": "honeygrow", "Category": "Restaurants and Other Eating Places", "Address": "1601 N Broad St", "LATITUDE": 39.978435, "LONGITUDE": -75.157453, "DATE_RANGE_START": 2024, "Total Visits": 645.0, "Total Visitors": 344.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 7.0, "Total Spend": 558.0, "Total Transactions": 25.0, "Total Customers": 21.0, "Median Spend per Transaction": 20.17, "Median Spend per Customer": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.157453, 39.978435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-2ff", "Name": "Corner Bakery Cafe", "Category": "Restaurants and Other Eating Places", "Address": "3737 Market St", "LATITUDE": 39.95695, "LONGITUDE": -75.19698, "DATE_RANGE_START": 2024, "Total Visits": 4675.0, "Total Visitors": 2994.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 27.0, "Total Spend": 3909.0, "Total Transactions": 257.0, "Total Customers": 179.0, "Median Spend per Transaction": 13.15, "Median Spend per Customer": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.19698, 39.95695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfv-26k", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "5927 Ridge Ave # 59", "LATITUDE": 40.031707, "LONGITUDE": -75.211248, "DATE_RANGE_START": 2024, "Total Visits": 1386.0, "Total Visitors": 591.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 10.0, "Total Spend": 275881.0, "Total Transactions": 6681.0, "Total Customers": 2387.0, "Median Spend per Transaction": 25.7, "Median Spend per Customer": 58.72 }, "geometry": { "type": "Point", "coordinates": [ -75.211248, 40.031707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjb-6ff", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "6200 N Broad St", "LATITUDE": 40.048119, "LONGITUDE": -75.143076, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010277001.0, "Median Dwell Time": 5.0, "Total Spend": 534.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 28.53, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143076, 40.048119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-gc5", "Name": "Balducci's", "Category": "Grocery Stores", "Address": "1 Garage Access Rd Terminal # C", "LATITUDE": 39.879193, "LONGITUDE": -75.244513, "DATE_RANGE_START": 2024, "Total Visits": 498.0, "Total Visitors": 448.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 7.0, "Total Spend": 5675.0, "Total Transactions": 481.0, "Total Customers": 450.0, "Median Spend per Transaction": 9.1, "Median Spend per Customer": 10.38 }, "geometry": { "type": "Point", "coordinates": [ -75.244513, 39.879193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmf-jgk", "Name": "Uniqlo", "Category": "Clothing Stores", "Address": "1608 Chestnut St", "LATITUDE": 39.951166, "LONGITUDE": -75.167764, "DATE_RANGE_START": 2024, "Total Visits": 1369.0, "Total Visitors": 1055.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 3.0, "Total Spend": 35337.0, "Total Transactions": 648.0, "Total Customers": 578.0, "Median Spend per Transaction": 39.9, "Median Spend per Customer": 39.9 }, "geometry": { "type": "Point", "coordinates": [ -75.167764, 39.951166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-234@628-pmf-jd9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste F1", "LATITUDE": 39.95232, "LONGITUDE": -75.167812, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 869.0, "Total Transactions": 72.0, "Total Customers": 51.0, "Median Spend per Transaction": 9.97, "Median Spend per Customer": 14.01 }, "geometry": { "type": "Point", "coordinates": [ -75.167812, 39.95232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-g8v", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2940 Fox St", "LATITUDE": 40.010731, "LONGITUDE": -75.175377, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 4.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 17.0, "Total Spend": 594.0, "Total Transactions": 37.0, "Total Customers": 28.0, "Median Spend per Transaction": 15.75, "Median Spend per Customer": 16.07 }, "geometry": { "type": "Point", "coordinates": [ -75.175377, 40.010731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pm9-z9f", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "715 S 2nd St", "LATITUDE": 39.940035, "LONGITUDE": -75.145703, "DATE_RANGE_START": 2024, "Total Visits": 72.0, "Total Visitors": 72.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 1.0, "Total Spend": 97.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.940035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-w8v", "Name": "Quails", "Category": "Clothing Stores", "Address": "1428 Franklin Mills Cir", "LATITUDE": 40.08685, "LONGITUDE": -74.962596, "DATE_RANGE_START": 2024, "Total Visits": 286.0, "Total Visitors": 270.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 2929.0, "Total Transactions": 29.0, "Total Customers": 21.0, "Median Spend per Transaction": 55.97, "Median Spend per Customer": 67.98 }, "geometry": { "type": "Point", "coordinates": [ -74.962596, 40.08685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kcq", "Name": "Silver Legends", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "2008 Walnut St", "LATITUDE": 39.950384, "LONGITUDE": -75.174268, "DATE_RANGE_START": 2024, "Total Visits": 337.0, "Total Visitors": 319.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 1.0, "Total Spend": 165.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 22.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174268, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "2gn-222@628-pgb-k9f", "Name": "Dollar Discount", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1246 N Broad St", "LATITUDE": 39.972959, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2024, "Total Visits": 799.0, "Total Visitors": 557.0, "POI_CBG": 421010140003.0, "Median Dwell Time": 607.0, "Total Spend": 156.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 11.92, "Median Spend per Customer": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.972959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-4jv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "327 Spring Garden St", "LATITUDE": 39.961407, "LONGITUDE": -75.144194, "DATE_RANGE_START": 2024, "Total Visits": 398.0, "Total Visitors": 311.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 10.0, "Total Spend": 4530.0, "Total Transactions": 280.0, "Total Customers": 203.0, "Median Spend per Transaction": 12.63, "Median Spend per Customer": 13.86 }, "geometry": { "type": "Point", "coordinates": [ -75.144194, 39.961407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-jgk", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1618 Chestnut St # 22", "LATITUDE": 39.951058, "LONGITUDE": -75.168149, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 45.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 5.0, "Total Spend": 4720.0, "Total Transactions": 118.0, "Total Customers": 95.0, "Median Spend per Transaction": 24.74, "Median Spend per Customer": 28.18 }, "geometry": { "type": "Point", "coordinates": [ -75.168149, 39.951058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22b@628-phd-q75", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4160 Monument Rd", "LATITUDE": 40.002688, "LONGITUDE": -75.214249, "DATE_RANGE_START": 2024, "Total Visits": 1657.0, "Total Visitors": 993.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 17.0, "Total Spend": 5021.0, "Total Transactions": 325.0, "Total Customers": 267.0, "Median Spend per Transaction": 13.26, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.214249, 40.002688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-jd9", "Name": "Westin Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "99 S 17th St @ Liberty Pl", "LATITUDE": 39.952114, "LONGITUDE": -75.168477, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 11078.0, "Total Transactions": 46.0, "Total Customers": 37.0, "Median Spend per Transaction": 108.04, "Median Spend per Customer": 151.93 }, "geometry": { "type": "Point", "coordinates": [ -75.168477, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-dd9", "Name": "Diamond Tool", "Category": "Building Material and Supplies Dealers", "Address": "2800 Grays Ferry Ave", "LATITUDE": 39.938657, "LONGITUDE": -75.19104, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 75.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 9.0, "Total Spend": 2477.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 82.06, "Median Spend per Customer": 54.71 }, "geometry": { "type": "Point", "coordinates": [ -75.19104, 39.938657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pnx-d9z", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "1501 E Susquehanna Ave", "LATITUDE": 39.975982, "LONGITUDE": -75.126766, "DATE_RANGE_START": 2024, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 9.0, "Total Spend": 1949.0, "Total Transactions": 99.0, "Total Customers": 88.0, "Median Spend per Transaction": 15.49, "Median Spend per Customer": 17.76 }, "geometry": { "type": "Point", "coordinates": [ -75.126766, 39.975982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm9-rx5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "150 S Independ Ml # 102", "LATITUDE": 39.948879, "LONGITUDE": -75.151128, "DATE_RANGE_START": 2024, "Total Visits": 2195.0, "Total Visitors": 1621.0, "POI_CBG": 421010010011.0, "Median Dwell Time": 5.0, "Total Spend": 32857.0, "Total Transactions": 3682.0, "Total Customers": 1667.0, "Median Spend per Transaction": 7.43, "Median Spend per Customer": 10.73 }, "geometry": { "type": "Point", "coordinates": [ -75.151128, 39.948879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm9-ffz", "Name": "P&S Ravioli Company", "Category": "Restaurants and Other Eating Places", "Address": "1722 W Oregon Ave", "LATITUDE": 39.917069, "LONGITUDE": -75.177313, "DATE_RANGE_START": 2024, "Total Visits": 363.0, "Total Visitors": 273.0, "POI_CBG": 421010039024.0, "Median Dwell Time": 3.0, "Total Spend": 84.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 31.76, "Median Spend per Customer": 31.76 }, "geometry": { "type": "Point", "coordinates": [ -75.177313, 39.917069 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pjf-tqf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.068131, "LONGITUDE": -75.198479, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 7.0, "Total Spend": 5548.0, "Total Transactions": 261.0, "Total Customers": 167.0, "Median Spend per Transaction": 13.67, "Median Spend per Customer": 18.47 }, "geometry": { "type": "Point", "coordinates": [ -75.198479, 40.068131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8j-bkz", "Name": "Aya Asian Fusion", "Category": "Restaurants and Other Eating Places", "Address": "7313 Frankford Ave # 15", "LATITUDE": 40.036825, "LONGITUDE": -75.03987, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 113.0, "POI_CBG": 421010330006.0, "Median Dwell Time": 4.0, "Total Spend": 1355.0, "Total Transactions": 45.0, "Total Customers": 37.0, "Median Spend per Transaction": 25.92, "Median Spend per Customer": 40.45 }, "geometry": { "type": "Point", "coordinates": [ -75.03987, 40.036825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvr-7bk", "Name": "Woodland Village Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6234 Woodland Ave", "LATITUDE": 39.927328, "LONGITUDE": -75.231404, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 70.0, "POI_CBG": 421010066004.0, "Median Dwell Time": 49.0, "Total Spend": 626.0, "Total Transactions": 57.0, "Total Customers": 20.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.231404, 39.927328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pnw-nh5", "Name": "Kostas Bar Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "15 W Girard Ave", "LATITUDE": 39.968854, "LONGITUDE": -75.13498, "DATE_RANGE_START": 2024, "Total Visits": 783.0, "Total Visitors": 553.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 28.0, "Total Spend": 6729.0, "Total Transactions": 241.0, "Total Customers": 187.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13498, 39.968854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pp4-vfz", "Name": "Franco's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2573 Tulip St", "LATITUDE": 39.982045, "LONGITUDE": -75.121584, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010160004.0, "Median Dwell Time": 4.0, "Total Spend": 2060.0, "Total Transactions": 66.0, "Total Customers": 42.0, "Median Spend per Transaction": 30.5, "Median Spend per Customer": 33.48 }, "geometry": { "type": "Point", "coordinates": [ -75.121584, 39.982045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-p82-nqz", "Name": "On Charcoal", "Category": "Restaurants and Other Eating Places", "Address": "6516 Castor Ave", "LATITUDE": 40.041319, "LONGITUDE": -75.075986, "DATE_RANGE_START": 2024, "Total Visits": 137.0, "Total Visitors": 121.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 46.0, "Total Spend": 1758.0, "Total Transactions": 36.0, "Total Customers": 32.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 57.16 }, "geometry": { "type": "Point", "coordinates": [ -75.075986, 40.041319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p8v-8y9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "12301 Knights Rd", "LATITUDE": 40.088382, "LONGITUDE": -74.969584, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 306.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 24.5, "Median Spend per Customer": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -74.969584, 40.088382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-phd-94v", "Name": "Einstein Brothers", "Category": "Restaurants and Other Eating Places", "Address": "5600 City Ave", "LATITUDE": 39.995332, "LONGITUDE": -75.240201, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 420912045002.0, "Median Dwell Time": 5.0, "Total Spend": 13.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240201, 39.995332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pj3-wc5", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "4700 N 15th St", "LATITUDE": 40.025459, "LONGITUDE": -75.149625, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 187.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 4.0, "Total Spend": 486.0, "Total Transactions": 45.0, "Total Customers": 37.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 10.38 }, "geometry": { "type": "Point", "coordinates": [ -75.149625, 40.025459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pzp-2zf", "Name": "Station Pizza", "Category": "Restaurants and Other Eating Places", "Address": "14102 Bustleton Ave", "LATITUDE": 40.132001, "LONGITUDE": -75.01221, "DATE_RANGE_START": 2024, "Total Visits": 196.0, "Total Visitors": 138.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 52.0, "Total Spend": 2203.0, "Total Transactions": 93.0, "Total Customers": 59.0, "Median Spend per Transaction": 18.67, "Median Spend per Customer": 27.9 }, "geometry": { "type": "Point", "coordinates": [ -75.01221, 40.132001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-dqf", "Name": "Asian Palace", "Category": "Restaurants and Other Eating Places", "Address": "2001 W Oregon Ave", "LATITUDE": 39.918335, "LONGITUDE": -75.181058, "DATE_RANGE_START": 2024, "Total Visits": 257.0, "Total Visitors": 245.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 47.0, "Total Spend": 1108.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 413.34, "Median Spend per Customer": 420.84 }, "geometry": { "type": "Point", "coordinates": [ -75.181058, 39.918335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-wc5", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "29 Snyder Ave", "LATITUDE": 39.923331, "LONGITUDE": -75.144837, "DATE_RANGE_START": 2024, "Total Visits": 1865.0, "Total Visitors": 1047.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 12.0, "Total Spend": 2878.0, "Total Transactions": 299.0, "Total Customers": 203.0, "Median Spend per Transaction": 7.13, "Median Spend per Customer": 11.39 }, "geometry": { "type": "Point", "coordinates": [ -75.144837, 39.923331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm5-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2715 S Front St", "LATITUDE": 39.913049, "LONGITUDE": -75.149591, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 17.0, "Total Spend": 658.0, "Total Transactions": 36.0, "Total Customers": 25.0, "Median Spend per Transaction": 10.77, "Median Spend per Customer": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.149591, 39.913049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj2-qvf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4113 G St", "LATITUDE": 40.011111, "LONGITUDE": -75.111766, "DATE_RANGE_START": 2024, "Total Visits": 244.0, "Total Visitors": 161.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 6.0, "Total Spend": 208.0, "Total Transactions": 11.0, "Total Customers": 7.0, "Median Spend per Transaction": 22.58, "Median Spend per Customer": 25.66 }, "geometry": { "type": "Point", "coordinates": [ -75.111766, 40.011111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-p9z", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.03106, "LONGITUDE": -75.09906, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 33.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 8.0, "Total Spend": 1272.0, "Total Transactions": 26.0, "Total Customers": 26.0, "Median Spend per Transaction": 31.03, "Median Spend per Customer": 31.03 }, "geometry": { "type": "Point", "coordinates": [ -75.09906, 40.03106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-49z", "Name": "Greek From Greece", "Category": "Restaurants and Other Eating Places", "Address": "107 N 33rd St", "LATITUDE": 39.957875, "LONGITUDE": -75.188864, "DATE_RANGE_START": 2024, "Total Visits": 625.0, "Total Visitors": 325.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 39.0, "Total Spend": 187.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 13.47 }, "geometry": { "type": "Point", "coordinates": [ -75.188864, 39.957875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p82-92k", "Name": "Pharmacy of America II", "Category": "Health and Personal Care Stores", "Address": "5872 Oxford Ave", "LATITUDE": 40.034445, "LONGITUDE": -75.08703, "DATE_RANGE_START": 2024, "Total Visits": 900.0, "Total Visitors": 769.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 2.0, "Total Spend": 842.0, "Total Transactions": 38.0, "Total Customers": 34.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.08703, 40.034445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph6-pqf", "Name": "Ace Diner", "Category": "Restaurants and Other Eating Places", "Address": "5517 Lancaster Ave", "LATITUDE": 39.980407, "LONGITUDE": -75.233631, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010118003.0, "Median Dwell Time": 5.0, "Total Spend": 1177.0, "Total Transactions": 67.0, "Total Customers": 39.0, "Median Spend per Transaction": 15.31, "Median Spend per Customer": 19.95 }, "geometry": { "type": "Point", "coordinates": [ -75.233631, 39.980407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-wrk", "Name": "Abyssinia", "Category": "Restaurants and Other Eating Places", "Address": "229 S 45th St", "LATITUDE": 39.954175, "LONGITUDE": -75.211664, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 146.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 2.0, "Total Spend": 5791.0, "Total Transactions": 150.0, "Total Customers": 118.0, "Median Spend per Transaction": 30.28, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.211664, 39.954175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-h89", "Name": "Gyu-Kaku", "Category": "Restaurants and Other Eating Places", "Address": "1901 Callowhill St", "LATITUDE": 39.960778, "LONGITUDE": -75.170103, "DATE_RANGE_START": 2024, "Total Visits": 1062.0, "Total Visitors": 490.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 706.0, "Total Spend": 211.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 80.11, "Median Spend per Customer": 80.11 }, "geometry": { "type": "Point", "coordinates": [ -75.170103, 39.960778 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-223@628-pm3-vpv", "Name": "Asian Fusion", "Category": "Restaurants and Other Eating Places", "Address": "1739 E Passyunk Ave", "LATITUDE": 39.927745, "LONGITUDE": -75.16578, "DATE_RANGE_START": 2024, "Total Visits": 115.0, "Total Visitors": 115.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 1.0, "Total Spend": 38.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.6, "Median Spend per Customer": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -75.16578, 39.927745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm4-hnq", "Name": "Los Cuatro Soles", "Category": "Restaurants and Other Eating Places", "Address": "1801 S Chadwick St", "LATITUDE": 39.928485, "LONGITUDE": -75.173061, "DATE_RANGE_START": 2024, "Total Visits": 92.0, "Total Visitors": 92.0, "POI_CBG": 421010030013.0, "Median Dwell Time": 50.0, "Total Spend": 1153.0, "Total Transactions": 34.0, "Total Customers": 26.0, "Median Spend per Transaction": 27.86, "Median Spend per Customer": 37.03 }, "geometry": { "type": "Point", "coordinates": [ -75.173061, 39.928485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-d7q", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "401 N 21st St", "LATITUDE": 39.962248, "LONGITUDE": -75.172948, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 17.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 5.0, "Total Spend": 13528.0, "Total Transactions": 458.0, "Total Customers": 334.0, "Median Spend per Transaction": 28.13, "Median Spend per Customer": 30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172948, 39.962248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgf-dvz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4301 Market St", "LATITUDE": 39.958298, "LONGITUDE": -75.208207, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 4.0, "Total Spend": 601.0, "Total Transactions": 33.0, "Total Customers": 32.0, "Median Spend per Transaction": 15.49, "Median Spend per Customer": 15.82 }, "geometry": { "type": "Point", "coordinates": [ -75.208207, 39.958298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dw2-2ff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "416 N 63rd St # 36", "LATITUDE": 39.96951, "LONGITUDE": -75.245724, "DATE_RANGE_START": 2024, "Total Visits": 427.0, "Total Visitors": 199.0, "POI_CBG": 421010101005.0, "Median Dwell Time": 3.0, "Total Spend": 6857.0, "Total Transactions": 849.0, "Total Customers": 404.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 10.13 }, "geometry": { "type": "Point", "coordinates": [ -75.245724, 39.96951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-sqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4501 Castor Ave", "LATITUDE": 40.016697, "LONGITUDE": -75.096363, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 77.0, "Total Spend": 222.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 14.7, "Median Spend per Customer": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.096363, 40.016697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pm3-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2101 S 10th St", "LATITUDE": 39.923287, "LONGITUDE": -75.162679, "DATE_RANGE_START": 2024, "Total Visits": 477.0, "Total Visitors": 183.0, "POI_CBG": 421010041013.0, "Median Dwell Time": 5.0, "Total Spend": 785.0, "Total Transactions": 61.0, "Total Customers": 26.0, "Median Spend per Transaction": 8.54, "Median Spend per Customer": 16.66 }, "geometry": { "type": "Point", "coordinates": [ -75.162679, 39.923287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pmc-psq", "Name": "BJ Kitchen Floor", "Category": "Home Furnishings Stores", "Address": "299 Washington Ave @ 3rd St", "LATITUDE": 39.934285, "LONGITUDE": -75.148882, "DATE_RANGE_START": 2024, "Total Visits": 283.0, "Total Visitors": 248.0, "POI_CBG": 421010025001.0, "Median Dwell Time": 1.0, "Total Spend": 11422.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 200.0, "Median Spend per Customer": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148882, 39.934285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-vs5", "Name": "Tommy Hilfiger", "Category": "Clothing Stores", "Address": "1800 Franklin Mills Cir", "LATITUDE": 40.089955, "LONGITUDE": -74.96205, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 786.0, "Total Transactions": 17.0, "Total Customers": 16.0, "Median Spend per Transaction": 40.54, "Median Spend per Customer": 35.18 }, "geometry": { "type": "Point", "coordinates": [ -74.96205, 40.089955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-22n@628-pnw-psq", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "180 W Girard Ave", "LATITUDE": 39.968442, "LONGITUDE": -75.13901, "DATE_RANGE_START": 2024, "Total Visits": 2222.0, "Total Visitors": 1319.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 12.0, "Total Spend": 17625.0, "Total Transactions": 261.0, "Total Customers": 188.0, "Median Spend per Transaction": 52.6, "Median Spend per Customer": 49.68 }, "geometry": { "type": "Point", "coordinates": [ -75.13901, 39.968442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "27s-222@628-pgj-28v", "Name": "Raising Cane's", "Category": "Restaurants and Other Eating Places", "Address": "1717 N 12th St Unit D", "LATITUDE": 39.978822, "LONGITUDE": -75.153265, "DATE_RANGE_START": 2024, "Total Visits": 2767.0, "Total Visitors": 1513.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 36.0, "Total Spend": 17735.0, "Total Transactions": 1156.0, "Total Customers": 883.0, "Median Spend per Transaction": 12.73, "Median Spend per Customer": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.153265, 39.978822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-phy-qcq", "Name": "Lucky Garden", "Category": "Restaurants and Other Eating Places", "Address": "4361 N 8th St", "LATITUDE": 40.018677, "LONGITUDE": -75.139721, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 125.0, "POI_CBG": 421010197006.0, "Median Dwell Time": 1.0, "Total Spend": 168.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 34.43, "Median Spend per Customer": 27.81 }, "geometry": { "type": "Point", "coordinates": [ -75.139721, 40.018677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pgj-xkf", "Name": "Sunny's Diner", "Category": "Restaurants and Other Eating Places", "Address": "2501 N Broad St", "LATITUDE": 39.990908, "LONGITUDE": -75.154807, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 200.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 5.0, "Total Spend": 413.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 16.52, "Median Spend per Customer": 20.41 }, "geometry": { "type": "Point", "coordinates": [ -75.154807, 39.990908 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-grk", "Name": "Nick's Charcoal Pit", "Category": "Restaurants and Other Eating Places", "Address": "1242 Snyder Ave", "LATITUDE": 39.923906, "LONGITUDE": -75.167451, "DATE_RANGE_START": 2024, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010040013.0, "Median Dwell Time": null, "Total Spend": 615.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 24.65, "Median Spend per Customer": 29.37 }, "geometry": { "type": "Point", "coordinates": [ -75.167451, 39.923906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-pjv", "Name": "Ekta Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "106 S 40th St", "LATITUDE": 39.95512, "LONGITUDE": -75.202675, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 129.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 1.0, "Total Spend": 2391.0, "Total Transactions": 58.0, "Total Customers": 51.0, "Median Spend per Transaction": 40.12, "Median Spend per Customer": 48.07 }, "geometry": { "type": "Point", "coordinates": [ -75.202675, 39.95512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-zs5", "Name": "Love Vape", "Category": "Other Miscellaneous Store Retailers", "Address": "608 S 5th St", "LATITUDE": 39.94159, "LONGITUDE": -75.150927, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 93.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 3.0, "Total Spend": 5270.0, "Total Transactions": 182.0, "Total Customers": 124.0, "Median Spend per Transaction": 26.24, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 39.94159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pjf-jvz", "Name": "Laurel Hill Gardens", "Category": "Lawn and Garden Equipment and Supplies Stores", "Address": "8125 Germantown Ave", "LATITUDE": 40.073009, "LONGITUDE": -75.201894, "DATE_RANGE_START": 2024, "Total Visits": 17.0, "Total Visitors": 17.0, "POI_CBG": 421010257003.0, "Median Dwell Time": 5.0, "Total Spend": 1194.0, "Total Transactions": 29.0, "Total Customers": 28.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.201894, 40.073009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5fz", "Name": "Spice 28", "Category": "Restaurants and Other Eating Places", "Address": "1228 Chestnut St", "LATITUDE": 39.950367, "LONGITUDE": -75.161572, "DATE_RANGE_START": 2024, "Total Visits": 259.0, "Total Visitors": 246.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 8687.0, "Total Transactions": 178.0, "Total Customers": 140.0, "Median Spend per Transaction": 39.83, "Median Spend per Customer": 42.11 }, "geometry": { "type": "Point", "coordinates": [ -75.161572, 39.950367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-47q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Spring Garden St", "LATITUDE": 39.962523, "LONGITUDE": -75.163702, "DATE_RANGE_START": 2024, "Total Visits": 1592.0, "Total Visitors": 843.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 38.0, "Total Spend": 6592.0, "Total Transactions": 979.0, "Total Customers": 425.0, "Median Spend per Transaction": 5.79, "Median Spend per Customer": 10.02 }, "geometry": { "type": "Point", "coordinates": [ -75.163702, 39.962523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-yqf", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "942 Race St", "LATITUDE": 39.955168, "LONGITUDE": -75.155663, "DATE_RANGE_START": 2024, "Total Visits": 795.0, "Total Visitors": 629.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 4.0, "Total Spend": 1559.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 41.64, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155663, 39.955168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-228@628-pjf-jvz", "Name": "Tokyo Sushi", "Category": "Restaurants and Other Eating Places", "Address": "8229 Germantown Ave", "LATITUDE": 40.074121, "LONGITUDE": -75.202557, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 296.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 13.0, "Total Spend": 12067.0, "Total Transactions": 204.0, "Total Customers": 146.0, "Median Spend per Transaction": 40.8, "Median Spend per Customer": 40.15 }, "geometry": { "type": "Point", "coordinates": [ -75.202557, 40.074121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pg4-dy9", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "5901 Wayne Ave", "LATITUDE": 40.033456, "LONGITUDE": -75.181127, "DATE_RANGE_START": 2024, "Total Visits": 57.0, "Total Visitors": 57.0, "POI_CBG": 421010238003.0, "Median Dwell Time": 1.0, "Total Spend": 3529.0, "Total Transactions": 336.0, "Total Customers": 242.0, "Median Spend per Transaction": 8.58, "Median Spend per Customer": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.181127, 40.033456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvv-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7000 Chester Ave", "LATITUDE": 39.923566, "LONGITUDE": -75.245262, "DATE_RANGE_START": 2024, "Total Visits": 491.0, "Total Visitors": 336.0, "POI_CBG": 421010064003.0, "Median Dwell Time": 6.0, "Total Spend": 4302.0, "Total Transactions": 487.0, "Total Customers": 270.0, "Median Spend per Transaction": 7.71, "Median Spend per Customer": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.245262, 39.923566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-php-zzz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1325 E Washington Ln", "LATITUDE": 40.058652, "LONGITUDE": -75.165465, "DATE_RANGE_START": 2024, "Total Visits": 405.0, "Total Visitors": 316.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 3.0, "Total Spend": 6332.0, "Total Transactions": 794.0, "Total Customers": 363.0, "Median Spend per Transaction": 6.64, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.165465, 40.058652 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm3-vzz", "Name": "Boys Town Girls Town", "Category": "Clothing Stores", "Address": "1708 E Passyunk Ave", "LATITUDE": 39.92858, "LONGITUDE": -75.165355, "DATE_RANGE_START": 2024, "Total Visits": 512.0, "Total Visitors": 349.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 5.0, "Total Spend": 691.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 163.7, "Median Spend per Customer": 163.7 }, "geometry": { "type": "Point", "coordinates": [ -75.165355, 39.92858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-mc5", "Name": "Mole Poblano Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1144 S 9th St", "LATITUDE": 39.935124, "LONGITUDE": -75.158821, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 147.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 49.0, "Total Spend": 1627.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 45.8, "Median Spend per Customer": 45.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158821, 39.935124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pj4-35z", "Name": "Danny's Wok 3", "Category": "Restaurants and Other Eating Places", "Address": "4322 N Broad St", "LATITUDE": 40.019257, "LONGITUDE": -75.14949, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 204.0, "POI_CBG": 421010204002.0, "Median Dwell Time": 4.0, "Total Spend": 1664.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 56.0, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14949, 40.019257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfz-bx5", "Name": "Ryan's Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4301 Main St", "LATITUDE": 40.024966, "LONGITUDE": -75.221869, "DATE_RANGE_START": 2024, "Total Visits": 275.0, "Total Visitors": 263.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 18.0, "Total Spend": 15932.0, "Total Transactions": 612.0, "Total Customers": 384.0, "Median Spend per Transaction": 18.05, "Median Spend per Customer": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.221869, 40.024966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pg9-wff", "Name": "Philadelphia Bikesmith", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1822 Spring Garden St", "LATITUDE": 39.962887, "LONGITUDE": -75.169323, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 1.0, "Total Spend": 2474.0, "Total Transactions": 45.0, "Total Customers": 39.0, "Median Spend per Transaction": 45.9, "Median Spend per Customer": 53.97 }, "geometry": { "type": "Point", "coordinates": [ -75.169323, 39.962887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2ff", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2615 N American St", "LATITUDE": 39.99066, "LONGITUDE": -75.135816, "DATE_RANGE_START": 2024, "Total Visits": 502.0, "Total Visitors": 449.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 9.0, "Total Spend": 38.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 10.2, "Median Spend per Customer": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.135816, 39.99066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-ks5", "Name": "Elwood", "Category": "Restaurants and Other Eating Places", "Address": "1007 Frankford Ave", "LATITUDE": 39.96637, "LONGITUDE": -75.134125, "DATE_RANGE_START": 2024, "Total Visits": 270.0, "Total Visitors": 270.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 131.0, "Total Spend": 372.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 141.3, "Median Spend per Customer": 141.3 }, "geometry": { "type": "Point", "coordinates": [ -75.134125, 39.96637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-v75", "Name": "Linsky Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1701 S 2nd St", "LATITUDE": 39.926603, "LONGITUDE": -75.14901, "DATE_RANGE_START": 2024, "Total Visits": 1114.0, "Total Visitors": 978.0, "POI_CBG": 421010027022.0, "Median Dwell Time": 1.0, "Total Spend": 780.0, "Total Transactions": 34.0, "Total Customers": 25.0, "Median Spend per Transaction": 16.89, "Median Spend per Customer": 27.36 }, "geometry": { "type": "Point", "coordinates": [ -75.14901, 39.926603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-p7w-wzf", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "7000 Frankford Ave", "LATITUDE": 40.034002, "LONGITUDE": -75.046571, "DATE_RANGE_START": 2024, "Total Visits": 612.0, "Total Visitors": 388.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 3.0, "Total Spend": 51.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.046571, 40.034002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8m-bff", "Name": "Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5801 Torresdale Ave", "LATITUDE": 40.016286, "LONGITUDE": -75.061606, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 29.0, "POI_CBG": 421010321001.0, "Median Dwell Time": 5.0, "Total Spend": 205.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 21.08, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.061606, 40.016286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-22f@628-pgj-cqz", "Name": "Touch Down Wings", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St", "LATITUDE": 39.978146, "LONGITUDE": -75.158332, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 7.0, "Total Spend": 72.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.158332, 39.978146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9q-w6k", "Name": "Macaroni's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "9315 Old Bustleton Ave", "LATITUDE": 40.081752, "LONGITUDE": -75.038299, "DATE_RANGE_START": 2024, "Total Visits": 232.0, "Total Visitors": 180.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 74.0, "Total Spend": 10649.0, "Total Transactions": 84.0, "Total Customers": 76.0, "Median Spend per Transaction": 116.68, "Median Spend per Customer": 119.83 }, "geometry": { "type": "Point", "coordinates": [ -75.038299, 40.081752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pp5-7wk", "Name": "La Esquina del Bronco", "Category": "Restaurants and Other Eating Places", "Address": "2265 N Howard St", "LATITUDE": 39.984824, "LONGITUDE": -75.133049, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 117.0, "POI_CBG": 421010162001.0, "Median Dwell Time": 13.0, "Total Spend": 566.0, "Total Transactions": 29.0, "Total Customers": 12.0, "Median Spend per Transaction": 18.9, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.133049, 39.984824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-tgk", "Name": "Dragon City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "923 Levick St", "LATITUDE": 40.04497, "LONGITUDE": -75.086446, "DATE_RANGE_START": 2024, "Total Visits": 178.0, "Total Visitors": 155.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 12.0, "Total Spend": 3792.0, "Total Transactions": 159.0, "Total Customers": 104.0, "Median Spend per Transaction": 22.8, "Median Spend per Customer": 30.05 }, "geometry": { "type": "Point", "coordinates": [ -75.086446, 40.04497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-xt9", "Name": "La Colombe Coffee", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.878148, "LONGITUDE": -75.237782, "DATE_RANGE_START": 2024, "Total Visits": 2118.0, "Total Visitors": 1871.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 3.0, "Total Spend": 7566.0, "Total Transactions": 446.0, "Total Customers": 305.0, "Median Spend per Transaction": 10.87, "Median Spend per Customer": 13.89 }, "geometry": { "type": "Point", "coordinates": [ -75.237782, 39.878148 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph9-cyv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7730 City Ave", "LATITUDE": 39.977115, "LONGITUDE": -75.274328, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010098022.0, "Median Dwell Time": 6.0, "Total Spend": 2405.0, "Total Transactions": 50.0, "Total Customers": 39.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 38.33 }, "geometry": { "type": "Point", "coordinates": [ -75.274328, 39.977115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmb-6tv", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "1527 Chestnut St", "LATITUDE": 39.951478, "LONGITUDE": -75.166517, "DATE_RANGE_START": 2024, "Total Visits": 37.0, "Total Visitors": 29.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 10358.0, "Total Transactions": 563.0, "Total Customers": 440.0, "Median Spend per Transaction": 17.68, "Median Spend per Customer": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.166517, 39.951478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjf-tqf", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7700 Germantown Ave", "LATITUDE": 40.068105, "LONGITUDE": -75.198516, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 7.0, "Total Spend": 2102.0, "Total Transactions": 68.0, "Total Customers": 53.0, "Median Spend per Transaction": 23.15, "Median Spend per Customer": 30.02 }, "geometry": { "type": "Point", "coordinates": [ -75.198516, 40.068105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p8h-td9", "Name": "Bravo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6702 Torresdale Ave", "LATITUDE": 40.024518, "LONGITUDE": -75.046521, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 137.0, "POI_CBG": 421010325002.0, "Median Dwell Time": 1.0, "Total Spend": 1163.0, "Total Transactions": 50.0, "Total Customers": 45.0, "Median Spend per Transaction": 25.23, "Median Spend per Customer": 26.38 }, "geometry": { "type": "Point", "coordinates": [ -75.046521, 40.024518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmd-tsq", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2400 Lombard St", "LATITUDE": 39.946479, "LONGITUDE": -75.180675, "DATE_RANGE_START": 2024, "Total Visits": 373.0, "Total Visitors": 344.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 4.0, "Total Spend": 5965.0, "Total Transactions": 661.0, "Total Customers": 421.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.180675, 39.946479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-d35", "Name": "Dipinto Guitars", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "407 E Girard Ave", "LATITUDE": 39.970499, "LONGITUDE": -75.13019, "DATE_RANGE_START": 2024, "Total Visits": 96.0, "Total Visitors": 83.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 1.0, "Total Spend": 733.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.13019, 39.970499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg2-zmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7065 Lincoln Dr", "LATITUDE": 40.053982, "LONGITUDE": -75.193188, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 4.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 4.0, "Total Spend": 3811.0, "Total Transactions": 219.0, "Total Customers": 126.0, "Median Spend per Transaction": 11.16, "Median Spend per Customer": 20.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193188, 40.053982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-229@628-pj2-mrk", "Name": "Universal Dollar", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3908 Kensington Ave", "LATITUDE": 40.006684, "LONGITUDE": -75.096267, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 762.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 9.0, "Total Spend": 577.0, "Total Transactions": 39.0, "Total Customers": 34.0, "Median Spend per Transaction": 11.58, "Median Spend per Customer": 11.58 }, "geometry": { "type": "Point", "coordinates": [ -75.096267, 40.006684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-789", "Name": "Thunderbird Salvage", "Category": "Used Merchandise Stores", "Address": "2441 Frankford Ave", "LATITUDE": 39.982453, "LONGITUDE": -75.126223, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 141.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 7.0, "Total Spend": 563.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.126223, 39.982453 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pgm-hwk", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "4268 Ridge Ave", "LATITUDE": 40.009599, "LONGITUDE": -75.196284, "DATE_RANGE_START": 2024, "Total Visits": 821.0, "Total Visitors": 665.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 3.0, "Total Spend": 1145.0, "Total Transactions": 87.0, "Total Customers": 30.0, "Median Spend per Transaction": 6.98, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.196284, 40.009599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-btv", "Name": "Express Fuel", "Category": "Gasoline Stations", "Address": "5201 Oxford Ave", "LATITUDE": 40.026572, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 199.0, "POI_CBG": 421010302004.0, "Median Dwell Time": 3.0, "Total Spend": 34114.0, "Total Transactions": 1739.0, "Total Customers": 640.0, "Median Spend per Transaction": 19.08, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.026572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-p7w-x3q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3301 Tyson Ave", "LATITUDE": 40.035421, "LONGITUDE": -75.049037, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 5.0, "POI_CBG": 421010315012.0, "Median Dwell Time": 2.0, "Total Spend": 3591.0, "Total Transactions": 130.0, "Total Customers": 80.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 32.46 }, "geometry": { "type": "Point", "coordinates": [ -75.049037, 40.035421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-227@628-p9k-2zf", "Name": "Beer Center", "Category": "Beer, Wine, and Liquor Stores", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103141, "LONGITUDE": -75.010331, "DATE_RANGE_START": 2024, "Total Visits": 617.0, "Total Visitors": 494.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 14.0, "Total Spend": 874.0, "Total Transactions": 46.0, "Total Customers": 24.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 19.25 }, "geometry": { "type": "Point", "coordinates": [ -75.010331, 40.103141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pg4-fvf", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "138 W Chelten Ave", "LATITUDE": 40.0328, "LONGITUDE": -75.177311, "DATE_RANGE_START": 2024, "Total Visits": 333.0, "Total Visitors": 295.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 8.0, "Total Spend": 5509.0, "Total Transactions": 126.0, "Total Customers": 87.0, "Median Spend per Transaction": 31.99, "Median Spend per Customer": 29.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177311, 40.0328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pj4-swk", "Name": "Rodriguez Food Market", "Category": "Grocery Stores", "Address": "2900 N Fairhill St", "LATITUDE": 39.995495, "LONGITUDE": -75.140993, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 63.0, "POI_CBG": 421010175002.0, "Median Dwell Time": 1.0, "Total Spend": 20.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 7.75 }, "geometry": { "type": "Point", "coordinates": [ -75.140993, 39.995495 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-tsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2034 N Broad St", "LATITUDE": 39.984478, "LONGITUDE": -75.157096, "DATE_RANGE_START": 2024, "Total Visits": 473.0, "Total Visitors": 298.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 5.0, "Total Spend": 2210.0, "Total Transactions": 117.0, "Total Customers": 62.0, "Median Spend per Transaction": 6.89, "Median Spend per Customer": 11.91 }, "geometry": { "type": "Point", "coordinates": [ -75.157096, 39.984478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-n5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1707 Arch St", "LATITUDE": 39.955163, "LONGITUDE": -75.168339, "DATE_RANGE_START": 2024, "Total Visits": 854.0, "Total Visitors": 512.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 5.0, "Total Spend": 6702.0, "Total Transactions": 746.0, "Total Customers": 524.0, "Median Spend per Transaction": 6.92, "Median Spend per Customer": 9.57 }, "geometry": { "type": "Point", "coordinates": [ -75.168339, 39.955163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@63s-dvy-wrk", "Name": "Philly Halal Food Market", "Category": "Specialty Food Stores", "Address": "217 S 45th St", "LATITUDE": 39.954527, "LONGITUDE": -75.211575, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 91.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 251.0, "Total Spend": 111.0, "Total Transactions": 12.0, "Total Customers": 11.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.211575, 39.954527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3925 Walnut St", "LATITUDE": 39.95427, "LONGITUDE": -75.201494, "DATE_RANGE_START": 2024, "Total Visits": 2150.0, "Total Visitors": 1315.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 6.0, "Total Spend": 6461.0, "Total Transactions": 394.0, "Total Customers": 229.0, "Median Spend per Transaction": 10.49, "Median Spend per Customer": 19.61 }, "geometry": { "type": "Point", "coordinates": [ -75.201494, 39.95427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pj2-mkz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3900 Castor Ave", "LATITUDE": 40.006322, "LONGITUDE": -75.0995, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 14.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 4.0, "Total Spend": 1405.0, "Total Transactions": 32.0, "Total Customers": 25.0, "Median Spend per Transaction": 17.24, "Median Spend per Customer": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.0995, 40.006322 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-v2k", "Name": "Original Village Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1006 Sandmeyer Ln", "LATITUDE": 40.107293, "LONGITUDE": -75.037623, "DATE_RANGE_START": 2024, "Total Visits": 233.0, "Total Visitors": 209.0, "POI_CBG": 421010357021.0, "Median Dwell Time": 6.0, "Total Spend": 1113.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 36.16, "Median Spend per Customer": 40.47 }, "geometry": { "type": "Point", "coordinates": [ -75.037623, 40.107293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-zj9", "Name": "Evo Brickoven Pizza", "Category": "Restaurants and Other Eating Places", "Address": "277 W Mount Pleasant Ave", "LATITUDE": 40.054623, "LONGITUDE": -75.193966, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 95.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 25.0, "Total Spend": 884.0, "Total Transactions": 33.0, "Total Customers": 22.0, "Median Spend per Transaction": 20.38, "Median Spend per Customer": 39.49 }, "geometry": { "type": "Point", "coordinates": [ -75.193966, 40.054623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p85-hkf", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2417 Welsh Rd", "LATITUDE": 40.071847, "LONGITUDE": -75.030442, "DATE_RANGE_START": 2024, "Total Visits": 1593.0, "Total Visitors": 923.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 11.0, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 9.97, "Median Spend per Customer": 9.97 }, "geometry": { "type": "Point", "coordinates": [ -75.030442, 40.071847 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pgg-b8v", "Name": "Fingers & Wings Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3032 N 22nd St", "LATITUDE": 40.001078, "LONGITUDE": -75.166601, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 72.0, "POI_CBG": 421010172013.0, "Median Dwell Time": 37.0, "Total Spend": 1063.0, "Total Transactions": 36.0, "Total Customers": 18.0, "Median Spend per Transaction": 27.4, "Median Spend per Customer": 49.26 }, "geometry": { "type": "Point", "coordinates": [ -75.166601, 40.001078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-p5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3668 Aramingo Ave Ste 9A", "LATITUDE": 39.995094, "LONGITUDE": -75.095646, "DATE_RANGE_START": 2024, "Total Visits": 411.0, "Total Visitors": 291.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 13.0, "Total Spend": 248.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 8.38, "Median Spend per Customer": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.095646, 39.995094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-6tv", "Name": "Buffalo Exchange", "Category": "Used Merchandise Stores", "Address": "1520 Chestnut St", "LATITUDE": 39.951062, "LONGITUDE": -75.166599, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 2291.0, "Total Transactions": 72.0, "Total Customers": 70.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166599, 39.951062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmf-sbk", "Name": "Jomici Apothecary", "Category": "Health and Personal Care Stores", "Address": "273 S 15th St", "LATITUDE": 39.947303, "LONGITUDE": -75.166301, "DATE_RANGE_START": 2024, "Total Visits": 326.0, "Total Visitors": 99.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 335.0, "Total Spend": 95.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 28.78, "Median Spend per Customer": 36.14 }, "geometry": { "type": "Point", "coordinates": [ -75.166301, 39.947303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p72-hqz", "Name": "Dagwood's Pub", "Category": "Restaurants and Other Eating Places", "Address": "4625 Linden Ave", "LATITUDE": 40.05063, "LONGITUDE": -74.999822, "DATE_RANGE_START": 2024, "Total Visits": 225.0, "Total Visitors": 201.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 34.0, "Total Spend": 226.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 85.86, "Median Spend per Customer": 85.86 }, "geometry": { "type": "Point", "coordinates": [ -74.999822, 40.05063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pgh-vcq", "Name": "The Creperie", "Category": "Restaurants and Other Eating Places", "Address": "1291 W Norris St Temple Univ", "LATITUDE": 39.983041, "LONGITUDE": -75.154389, "DATE_RANGE_START": 2024, "Total Visits": 669.0, "Total Visitors": 288.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 54.0, "Total Spend": 52.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 13.3, "Median Spend per Customer": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.154389, 39.983041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-sh5", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Butler St", "LATITUDE": 39.9973, "LONGITUDE": -75.092737, "DATE_RANGE_START": 2024, "Total Visits": 1919.0, "Total Visitors": 1319.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 6.0, "Total Spend": 7913.0, "Total Transactions": 407.0, "Total Customers": 341.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 18.86 }, "geometry": { "type": "Point", "coordinates": [ -75.092737, 39.9973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pmb-yqf", "Name": "Vivi Bubble Tea", "Category": "Restaurants and Other Eating Places", "Address": "145 N 10th St", "LATITUDE": 39.954838, "LONGITUDE": -75.155858, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 180.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 7.0, "Total Spend": 2369.0, "Total Transactions": 246.0, "Total Customers": 229.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 7.56 }, "geometry": { "type": "Point", "coordinates": [ -75.155858, 39.954838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-4d9", "Name": "No 1 Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2731 E Allegheny Ave", "LATITUDE": 39.983465, "LONGITUDE": -75.10151, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 18.0, "Total Spend": 494.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 19.06, "Median Spend per Customer": 19.16 }, "geometry": { "type": "Point", "coordinates": [ -75.10151, 39.983465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm3-zpv", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "2354 S 7th St", "LATITUDE": 39.919286, "LONGITUDE": -75.159152, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 121.0, "POI_CBG": 421010041021.0, "Median Dwell Time": 10.0, "Total Spend": 105.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.159152, 39.919286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pnx-7bk", "Name": "Cafe La Maude", "Category": "Restaurants and Other Eating Places", "Address": "816 N 4th St", "LATITUDE": 39.964277, "LONGITUDE": -75.144509, "DATE_RANGE_START": 2024, "Total Visits": 125.0, "Total Visitors": 125.0, "POI_CBG": 421010367002.0, "Median Dwell Time": 17.0, "Total Spend": 3260.0, "Total Transactions": 46.0, "Total Customers": 45.0, "Median Spend per Transaction": 63.08, "Median Spend per Customer": 60.96 }, "geometry": { "type": "Point", "coordinates": [ -75.144509, 39.964277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-fpv", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "7010 Germantown Ave", "LATITUDE": 40.056636, "LONGITUDE": -75.189574, "DATE_RANGE_START": 2024, "Total Visits": 1731.0, "Total Visitors": 1010.0, "POI_CBG": 421010388003.0, "Median Dwell Time": 16.0, "Total Spend": 110627.0, "Total Transactions": 3289.0, "Total Customers": 1384.0, "Median Spend per Transaction": 21.24, "Median Spend per Customer": 36.1 }, "geometry": { "type": "Point", "coordinates": [ -75.189574, 40.056636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-php-ygk", "Name": "Stop One Food Market & Deli", "Category": "Grocery Stores", "Address": "6510 N 21st St", "LATITUDE": 40.053727, "LONGITUDE": -75.155505, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 155.0, "POI_CBG": 421010277006.0, "Median Dwell Time": 4.0, "Total Spend": 3615.0, "Total Transactions": 320.0, "Total Customers": 126.0, "Median Spend per Transaction": 10.08, "Median Spend per Customer": 13.39 }, "geometry": { "type": "Point", "coordinates": [ -75.155505, 40.053727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-p7q", "Name": "Rsc", "Category": "Furniture Stores", "Address": "461 N 3rd St Ste 500", "LATITUDE": 39.958926, "LONGITUDE": -75.143623, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 352.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 119.0, "Total Spend": 176.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143623, 39.958926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-rkz", "Name": "Sue's Market", "Category": "Grocery Stores", "Address": "275 Saint James Pl", "LATITUDE": 39.946236, "LONGITUDE": -75.145477, "DATE_RANGE_START": 2024, "Total Visits": 502.0, "Total Visitors": 184.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 462.0, "Total Spend": 4777.0, "Total Transactions": 342.0, "Total Customers": 111.0, "Median Spend per Transaction": 10.95, "Median Spend per Customer": 28.09 }, "geometry": { "type": "Point", "coordinates": [ -75.145477, 39.946236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-223@628-pp5-cnq", "Name": "Amancio Dollar Outlet", "Category": "Grocery Stores", "Address": "3101 Kensington Ave", "LATITUDE": 39.995089, "LONGITUDE": -75.115558, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 92.0, "POI_CBG": 421010178001.0, "Median Dwell Time": 31.0, "Total Spend": 63.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 3.75, "Median Spend per Customer": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -75.115558, 39.995089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj6-tvz", "Name": "C & J Produce Market", "Category": "Grocery Stores", "Address": "5908 Rising Sun Ave", "LATITUDE": 40.044549, "LONGITUDE": -75.102417, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 154.0, "POI_CBG": 421010305021.0, "Median Dwell Time": 4.0, "Total Spend": 12.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 4.5, "Median Spend per Customer": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102417, 40.044549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-k9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3724 Spruce St # 3744", "LATITUDE": 39.950972, "LONGITUDE": -75.198395, "DATE_RANGE_START": 2024, "Total Visits": 1051.0, "Total Visitors": 503.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 7.0, "Total Spend": 8262.0, "Total Transactions": 916.0, "Total Customers": 573.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 11.22 }, "geometry": { "type": "Point", "coordinates": [ -75.198395, 39.950972 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-7nq", "Name": "Charlie Was a Sinner", "Category": "Restaurants and Other Eating Places", "Address": "131 S 13th St", "LATITUDE": 39.949548, "LONGITUDE": -75.161811, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 174.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 31.0, "Total Spend": 9498.0, "Total Transactions": 125.0, "Total Customers": 118.0, "Median Spend per Transaction": 66.1, "Median Spend per Customer": 69.4 }, "geometry": { "type": "Point", "coordinates": [ -75.161811, 39.949548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@63s-dvp-bff", "Name": "Total Beauty Supplies", "Category": "Health and Personal Care Stores", "Address": "5746 Baltimore Ave", "LATITUDE": 39.945299, "LONGITUDE": -75.238685, "DATE_RANGE_START": 2024, "Total Visits": 619.0, "Total Visitors": 359.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 14.0, "Total Spend": 4810.0, "Total Transactions": 161.0, "Total Customers": 112.0, "Median Spend per Transaction": 24.67, "Median Spend per Customer": 25.04 }, "geometry": { "type": "Point", "coordinates": [ -75.238685, 39.945299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4156 Ridge Ave # 78", "LATITUDE": 40.008547, "LONGITUDE": -75.193814, "DATE_RANGE_START": 2024, "Total Visits": 111.0, "Total Visitors": 79.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 4.0, "Total Spend": 176.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 34.03, "Median Spend per Customer": 34.03 }, "geometry": { "type": "Point", "coordinates": [ -75.193814, 40.008547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pm9-y9z", "Name": "Eyes Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "402 South St", "LATITUDE": 39.94148, "LONGITUDE": -75.149374, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 237.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 11.0, "Total Spend": 3090.0, "Total Transactions": 65.0, "Total Customers": 62.0, "Median Spend per Transaction": 22.14, "Median Spend per Customer": 22.14 }, "geometry": { "type": "Point", "coordinates": [ -75.149374, 39.94148 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-jd9", "Name": "Liberty Time", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951694, "LONGITUDE": -75.168931, "DATE_RANGE_START": 2024, "Total Visits": 1611.0, "Total Visitors": 1219.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 334.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 18.36, "Median Spend per Customer": 22.65 }, "geometry": { "type": "Point", "coordinates": [ -75.168931, 39.951694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-phd-q75", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4160 Monument Rd", "LATITUDE": 40.002803, "LONGITUDE": -75.213933, "DATE_RANGE_START": 2024, "Total Visits": 627.0, "Total Visitors": 445.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 7.0, "Total Spend": 296.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 9.45, "Median Spend per Customer": 10.98 }, "geometry": { "type": "Point", "coordinates": [ -75.213933, 40.002803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgj-cbk", "Name": "Pazzo Pazzo", "Category": "Restaurants and Other Eating Places", "Address": "1614 Cecil B Moore Ave", "LATITUDE": 39.979011, "LONGITUDE": -75.161757, "DATE_RANGE_START": 2024, "Total Visits": 1407.0, "Total Visitors": 850.0, "POI_CBG": 421010147001.0, "Median Dwell Time": 41.0, "Total Spend": 1405.0, "Total Transactions": 63.0, "Total Customers": 61.0, "Median Spend per Transaction": 19.07, "Median Spend per Customer": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.161757, 39.979011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-mzf", "Name": "Tir na nOg Irish Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1600 Arch St", "LATITUDE": 39.954415, "LONGITUDE": -75.16676, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 262.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 35.0, "Total Spend": 741.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 30.03, "Median Spend per Customer": 30.03 }, "geometry": { "type": "Point", "coordinates": [ -75.16676, 39.954415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-225@628-p85-p35", "Name": "Cafe Carmela", "Category": "Restaurants and Other Eating Places", "Address": "2859 Holme Ave", "LATITUDE": 40.05717, "LONGITUDE": -75.030373, "DATE_RANGE_START": 2024, "Total Visits": 251.0, "Total Visitors": 240.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 43.0, "Total Spend": 938.0, "Total Transactions": 20.0, "Total Customers": 20.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.030373, 40.05717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-9vf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4849 Market St", "LATITUDE": 39.959622, "LONGITUDE": -75.218403, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010104004.0, "Median Dwell Time": 5.0, "Total Spend": 2041.0, "Total Transactions": 92.0, "Total Customers": 65.0, "Median Spend per Transaction": 15.04, "Median Spend per Customer": 17.37 }, "geometry": { "type": "Point", "coordinates": [ -75.218403, 39.959622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-6ff", "Name": "P.C. Richard & Son", "Category": "Electronics and Appliance Stores", "Address": "2420 Cottman Ave", "LATITUDE": 40.046246, "LONGITUDE": -75.059899, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 178.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 9.0, "Total Spend": 10589.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 150.0, "Median Spend per Customer": 200.0 }, "geometry": { "type": "Point", "coordinates": [ -75.059899, 40.046246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvq-ygk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5800 Woodland Ave", "LATITUDE": 39.931605, "LONGITUDE": -75.224478, "DATE_RANGE_START": 2024, "Total Visits": 504.0, "Total Visitors": 303.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 11.0, "Total Spend": 1778.0, "Total Transactions": 79.0, "Total Customers": 58.0, "Median Spend per Transaction": 12.39, "Median Spend per Customer": 23.28 }, "geometry": { "type": "Point", "coordinates": [ -75.224478, 39.931605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp4-xbk", "Name": "Gear N Up", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2326 N Front St", "LATITUDE": 39.985537, "LONGITUDE": -75.132208, "DATE_RANGE_START": 2024, "Total Visits": 3736.0, "Total Visitors": 1398.0, "POI_CBG": 421010163004.0, "Median Dwell Time": 40.0, "Total Spend": 825.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 64.0, "Median Spend per Customer": 72.0 }, "geometry": { "type": "Point", "coordinates": [ -75.132208, 39.985537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-5mk", "Name": "Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1309 Sansom St", "LATITUDE": 39.950042, "LONGITUDE": -75.162364, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 29.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 12.0, "Total Spend": 113726.0, "Total Transactions": 3017.0, "Total Customers": 1909.0, "Median Spend per Transaction": 25.29, "Median Spend per Customer": 39.38 }, "geometry": { "type": "Point", "coordinates": [ -75.162364, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pm9-wkz", "Name": "Viva Pizzas", "Category": "Restaurants and Other Eating Places", "Address": "215 Chestnut St", "LATITUDE": 39.948646, "LONGITUDE": -75.144734, "DATE_RANGE_START": 2024, "Total Visits": 2309.0, "Total Visitors": 1785.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 26.0, "Total Spend": 326.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 21.41 }, "geometry": { "type": "Point", "coordinates": [ -75.144734, 39.948646 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@63s-dvx-ghq", "Name": "Lebel Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5601 W Girard Ave", "LATITUDE": 39.970927, "LONGITUDE": -75.232773, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 118.0, "POI_CBG": 421010112003.0, "Median Dwell Time": 20.0, "Total Spend": 2313.0, "Total Transactions": 90.0, "Total Customers": 74.0, "Median Spend per Transaction": 25.14, "Median Spend per Customer": 28.55 }, "geometry": { "type": "Point", "coordinates": [ -75.232773, 39.970927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pj4-xqz", "Name": "Pho Don", "Category": "Restaurants and Other Eating Places", "Address": "3528 Germantown Ave", "LATITUDE": 40.00681, "LONGITUDE": -75.15036, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 128.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 102.0, "Total Spend": 1158.0, "Total Transactions": 58.0, "Total Customers": 34.0, "Median Spend per Transaction": 16.08, "Median Spend per Customer": 24.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 40.00681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-yd9", "Name": "Kungfu Hotpot", "Category": "Restaurants and Other Eating Places", "Address": "1008 Cherry St Fl 3", "LATITUDE": 39.954413, "LONGITUDE": -75.156594, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 13.0, "Total Spend": 6629.0, "Total Transactions": 65.0, "Total Customers": 59.0, "Median Spend per Transaction": 96.38, "Median Spend per Customer": 100.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156594, 39.954413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-g8v", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "4037 N 5th St", "LATITUDE": 40.013377, "LONGITUDE": -75.134846, "DATE_RANGE_START": 2024, "Total Visits": 644.0, "Total Visitors": 413.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 11.0, "Total Spend": 1608.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 18.19, "Median Spend per Customer": 22.35 }, "geometry": { "type": "Point", "coordinates": [ -75.134846, 40.013377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-3wk", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2437 S 24th St", "LATITUDE": 39.920309, "LONGITUDE": -75.186404, "DATE_RANGE_START": 2024, "Total Visits": 1035.0, "Total Visitors": 642.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 20.0, "Total Spend": 2376.0, "Total Transactions": 70.0, "Total Customers": 62.0, "Median Spend per Transaction": 22.96, "Median Spend per Customer": 24.98 }, "geometry": { "type": "Point", "coordinates": [ -75.186404, 39.920309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-qxq", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992514, "LONGITUDE": -75.100052, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 321.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 7.0, "Total Spend": 6399.0, "Total Transactions": 140.0, "Total Customers": 118.0, "Median Spend per Transaction": 33.25, "Median Spend per Customer": 37.73 }, "geometry": { "type": "Point", "coordinates": [ -75.100052, 39.992514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-dvz", "Name": "Pietro Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1501 Packer Ave", "LATITUDE": 39.912309, "LONGITUDE": -75.174217, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 19.0, "Total Spend": 556.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 48.6, "Median Spend per Customer": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174217, 39.912309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-p9q-yn5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1619 Grant Ave", "LATITUDE": 40.088065, "LONGITUDE": -75.037683, "DATE_RANGE_START": 2024, "Total Visits": 1058.0, "Total Visitors": 865.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 70.0, "Total Spend": 257.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.33, "Median Spend per Customer": 9.25 }, "geometry": { "type": "Point", "coordinates": [ -75.037683, 40.088065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmb-nkf", "Name": "Dave & Buster's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "325 N Columbus Blvd", "LATITUDE": 39.956234, "LONGITUDE": -75.138549, "DATE_RANGE_START": 2024, "Total Visits": 2865.0, "Total Visitors": 2089.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 118.0, "Total Spend": 5402.0, "Total Transactions": 79.0, "Total Customers": 58.0, "Median Spend per Transaction": 28.0, "Median Spend per Customer": 37.19 }, "geometry": { "type": "Point", "coordinates": [ -75.138549, 39.956234 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-jsq", "Name": "Anastasi Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1039 S 9th St", "LATITUDE": 39.936108, "LONGITUDE": -75.158261, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 259.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 3.0, "Total Spend": 7323.0, "Total Transactions": 157.0, "Total Customers": 121.0, "Median Spend per Transaction": 28.29, "Median Spend per Customer": 36.86 }, "geometry": { "type": "Point", "coordinates": [ -75.158261, 39.936108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-td9", "Name": "Jamaica Way", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave Ste 2930", "LATITUDE": 39.90332, "LONGITUDE": -75.240643, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 170.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 9.0, "Total Spend": 879.0, "Total Transactions": 38.0, "Total Customers": 28.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.240643, 39.90332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-c89", "Name": "Adobe Cafe", "Category": "Restaurants and Other Eating Places", "Address": "800 Fitzwater St", "LATITUDE": 39.940502, "LONGITUDE": -75.156063, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010018002.0, "Median Dwell Time": null, "Total Spend": 1164.0, "Total Transactions": 33.0, "Total Customers": 22.0, "Median Spend per Transaction": 33.8, "Median Spend per Customer": 40.84 }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.940502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-vcq", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1851 S Columbus Blvd Ste G", "LATITUDE": 39.923624, "LONGITUDE": -75.139475, "DATE_RANGE_START": 2024, "Total Visits": 814.0, "Total Visitors": 579.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 14.0, "Total Spend": 4989.0, "Total Transactions": 109.0, "Total Customers": 101.0, "Median Spend per Transaction": 28.99, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.139475, 39.923624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm4-k2k", "Name": "Shing Kee", "Category": "Restaurants and Other Eating Places", "Address": "600 Washington Ave Ste 18A", "LATITUDE": 39.935058, "LONGITUDE": -75.155076, "DATE_RANGE_START": 2024, "Total Visits": 196.0, "Total Visitors": 133.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 16.0, "Total Spend": 1155.0, "Total Transactions": 21.0, "Total Customers": 20.0, "Median Spend per Transaction": 45.07, "Median Spend per Customer": 52.47 }, "geometry": { "type": "Point", "coordinates": [ -75.155076, 39.935058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p82-rkz", "Name": "China City Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6612 Castor Ave", "LATITUDE": 40.042476, "LONGITUDE": -75.074927, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 153.0, "POI_CBG": 421010311011.0, "Median Dwell Time": 4.0, "Total Spend": 1145.0, "Total Transactions": 46.0, "Total Customers": 39.0, "Median Spend per Transaction": 23.75, "Median Spend per Customer": 24.75 }, "geometry": { "type": "Point", "coordinates": [ -75.074927, 40.042476 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgf-52k", "Name": "Indian Sizzler", "Category": "Restaurants and Other Eating Places", "Address": "3651 Lancaster Ave", "LATITUDE": 39.959458, "LONGITUDE": -75.194962, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 125.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 11.0, "Total Spend": 515.0, "Total Transactions": 25.0, "Total Customers": 20.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 24.58 }, "geometry": { "type": "Point", "coordinates": [ -75.194962, 39.959458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pj7-5cq", "Name": "The Shake Seafood", "Category": "Restaurants and Other Eating Places", "Address": "5717 Rising Sun Ave", "LATITUDE": 40.041679, "LONGITUDE": -75.105772, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 241.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 4.0, "Total Spend": 8448.0, "Total Transactions": 129.0, "Total Customers": 118.0, "Median Spend per Transaction": 51.22, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 40.041679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg3-x89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "29 E Chelten Ave", "LATITUDE": 40.036683, "LONGITUDE": -75.174279, "DATE_RANGE_START": 2024, "Total Visits": 789.0, "Total Visitors": 660.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 6.0, "Total Spend": 7020.0, "Total Transactions": 561.0, "Total Customers": 403.0, "Median Spend per Transaction": 11.08, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174279, 40.036683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pj8-rp9", "Name": "Kid City", "Category": "Clothing Stores", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.032633, "LONGITUDE": -75.101129, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 9.0, "Total Spend": 4506.0, "Total Transactions": 107.0, "Total Customers": 93.0, "Median Spend per Transaction": 29.76, "Median Spend per Customer": 33.71 }, "geometry": { "type": "Point", "coordinates": [ -75.101129, 40.032633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "254-222@628-pm9-zmk", "Name": "Dudes Boutique", "Category": "Clothing Stores", "Address": "646 South St", "LATITUDE": 39.941935, "LONGITUDE": -75.153683, "DATE_RANGE_START": 2024, "Total Visits": 774.0, "Total Visitors": 669.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 6.0, "Total Spend": 2509.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 595.0, "Median Spend per Customer": 595.0 }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 39.941935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@628-pm4-2c5", "Name": "Not Just Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2240 S 11th St", "LATITUDE": 39.921357, "LONGITUDE": -75.16514, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 87.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 433.0, "Total Spend": 315.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 12.91, "Median Spend per Customer": 19.37 }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.921357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvr-b8v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5945 Woodland Ave", "LATITUDE": 39.930794, "LONGITUDE": -75.227679, "DATE_RANGE_START": 2024, "Total Visits": 1577.0, "Total Visitors": 1285.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 8.0, "Total Spend": 10974.0, "Total Transactions": 852.0, "Total Customers": 496.0, "Median Spend per Transaction": 10.88, "Median Spend per Customer": 15.18 }, "geometry": { "type": "Point", "coordinates": [ -75.227679, 39.930794 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-5mk", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "313 Spring Garden St", "LATITUDE": 39.961206, "LONGITUDE": -75.1437, "DATE_RANGE_START": 2024, "Total Visits": 448.0, "Total Visitors": 378.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 2.0, "Total Spend": 1755.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 67.64, "Median Spend per Customer": 72.07 }, "geometry": { "type": "Point", "coordinates": [ -75.1437, 39.961206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8h-789", "Name": "New Pizza Villa", "Category": "Restaurants and Other Eating Places", "Address": "7159 Torresdale Ave", "LATITUDE": 40.0291, "LONGITUDE": -75.036793, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 55.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 11.0, "Total Spend": 785.0, "Total Transactions": 33.0, "Total Customers": 22.0, "Median Spend per Transaction": 22.98, "Median Spend per Customer": 22.63 }, "geometry": { "type": "Point", "coordinates": [ -75.036793, 40.0291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-skf", "Name": "Elixr Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "207 S Sydenham St", "LATITUDE": 39.949308, "LONGITUDE": -75.166715, "DATE_RANGE_START": 2024, "Total Visits": 2043.0, "Total Visitors": 1291.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 5.0, "Total Spend": 126.0, "Total Transactions": 17.0, "Total Customers": 9.0, "Median Spend per Transaction": 5.32, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.166715, 39.949308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pm9-zxq", "Name": "Scoop Deville", "Category": "Restaurants and Other Eating Places", "Address": "538 South St", "LATITUDE": 39.941848, "LONGITUDE": -75.152208, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 6.0, "Total Spend": 576.0, "Total Transactions": 50.0, "Total Customers": 47.0, "Median Spend per Transaction": 8.88, "Median Spend per Customer": 9.38 }, "geometry": { "type": "Point", "coordinates": [ -75.152208, 39.941848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pm4-yjv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1700 Washington Ave", "LATITUDE": 39.938124, "LONGITUDE": -75.171879, "DATE_RANGE_START": 2024, "Total Visits": 320.0, "Total Visitors": 237.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 7.0, "Total Spend": 465.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 20.04, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.171879, 39.938124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j7q", "Name": "Boyds Philadelphia", "Category": "Clothing Stores", "Address": "1818 Chestnut St", "LATITUDE": 39.951667, "LONGITUDE": -75.171279, "DATE_RANGE_START": 2024, "Total Visits": 370.0, "Total Visitors": 175.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 307.0, "Total Spend": 6091.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 143.0, "Median Spend per Customer": 256.0 }, "geometry": { "type": "Point", "coordinates": [ -75.171279, 39.951667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "266-222@628-pm4-sh5", "Name": "Ramayana Store", "Category": "Specialty Food Stores", "Address": "1941 S 8th St", "LATITUDE": 39.924377, "LONGITUDE": -75.159369, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 225.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 1.0, "Total Spend": 137.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159369, 39.924377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-jjv", "Name": "Nom Nom Ramen", "Category": "Restaurants and Other Eating Places", "Address": "20 S 18th St", "LATITUDE": 39.952487, "LONGITUDE": -75.170369, "DATE_RANGE_START": 2024, "Total Visits": 282.0, "Total Visitors": 224.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 2098.0, "Total Transactions": 54.0, "Total Customers": 50.0, "Median Spend per Transaction": 29.61, "Median Spend per Customer": 31.63 }, "geometry": { "type": "Point", "coordinates": [ -75.170369, 39.952487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pmb-gp9", "Name": "Jay's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1228 Spruce St", "LATITUDE": 39.94661, "LONGITUDE": -75.16252, "DATE_RANGE_START": 2024, "Total Visits": 412.0, "Total Visitors": 300.0, "POI_CBG": 421010011014.0, "Median Dwell Time": 1.0, "Total Spend": 114.0, "Total Transactions": 13.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.9, "Median Spend per Customer": 43.32 }, "geometry": { "type": "Point", "coordinates": [ -75.16252, 39.94661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@63s-dwf-wkz", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "3000 Island Ave", "LATITUDE": 39.902552, "LONGITUDE": -75.240445, "DATE_RANGE_START": 2024, "Total Visits": 405.0, "Total Visitors": 305.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 8.0, "Total Spend": 8854.0, "Total Transactions": 226.0, "Total Customers": 174.0, "Median Spend per Transaction": 25.2, "Median Spend per Customer": 31.22 }, "geometry": { "type": "Point", "coordinates": [ -75.240445, 39.902552 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-224@628-pm9-whq", "Name": "Hangry Joe's Hot Chicken", "Category": "Restaurants and Other Eating Places", "Address": "300 Market St", "LATITUDE": 39.949932, "LONGITUDE": -75.145867, "DATE_RANGE_START": 2024, "Total Visits": 748.0, "Total Visitors": 673.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 4313.0, "Total Transactions": 245.0, "Total Customers": 183.0, "Median Spend per Transaction": 15.07, "Median Spend per Customer": 16.42 }, "geometry": { "type": "Point", "coordinates": [ -75.145867, 39.949932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-phn-7wk", "Name": "Wadsworth Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Wadsworth Ave", "LATITUDE": 40.079912, "LONGITUDE": -75.173572, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 3.0, "Total Spend": 3930.0, "Total Transactions": 165.0, "Total Customers": 99.0, "Median Spend per Transaction": 21.54, "Median Spend per Customer": 20.73 }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 40.079912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pg2-2zf", "Name": "The Goat's Beard", "Category": "Restaurants and Other Eating Places", "Address": "4201 Main St", "LATITUDE": 40.023836, "LONGITUDE": -75.220118, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 183.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 25.0, "Total Spend": 6189.0, "Total Transactions": 118.0, "Total Customers": 99.0, "Median Spend per Transaction": 34.38, "Median Spend per Customer": 44.64 }, "geometry": { "type": "Point", "coordinates": [ -75.220118, 40.023836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvy-9cq", "Name": "Vietnam Cafe", "Category": "Restaurants and Other Eating Places", "Address": "816 S 47th St", "LATITUDE": 39.948111, "LONGITUDE": -75.216995, "DATE_RANGE_START": 2024, "Total Visits": 317.0, "Total Visitors": 282.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 52.0, "Total Spend": 739.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 40.54, "Median Spend per Customer": 40.54 }, "geometry": { "type": "Point", "coordinates": [ -75.216995, 39.948111 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pm4-pn5", "Name": "Charlie's Produce", "Category": "Grocery Stores", "Address": "1001 S 9th St", "LATITUDE": 39.93743, "LONGITUDE": -75.158033, "DATE_RANGE_START": 2024, "Total Visits": 491.0, "Total Visitors": 408.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 3.0, "Total Spend": 228.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 24.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158033, 39.93743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-c89", "Name": "Liberty Smokes", "Category": "Other Miscellaneous Store Retailers", "Address": "2740 S Front St", "LATITUDE": 39.912433, "LONGITUDE": -75.151003, "DATE_RANGE_START": 2024, "Total Visits": 524.0, "Total Visitors": 217.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 179.0, "Total Spend": 774.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 31.67, "Median Spend per Customer": 34.1 }, "geometry": { "type": "Point", "coordinates": [ -75.151003, 39.912433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "255-222@628-pm9-y9z", "Name": "Milkboy", "Category": "Restaurants and Other Eating Places", "Address": "401 South St", "LATITUDE": 39.941731, "LONGITUDE": -75.1493, "DATE_RANGE_START": 2024, "Total Visits": 482.0, "Total Visitors": 453.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 2348.0, "Total Transactions": 57.0, "Total Customers": 42.0, "Median Spend per Transaction": 31.4, "Median Spend per Customer": 43.69 }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.941731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-n5z", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St Ste 128", "LATITUDE": 39.954062, "LONGITUDE": -75.200766, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 308.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 4.0, "Total Spend": 11617.0, "Total Transactions": 843.0, "Total Customers": 475.0, "Median Spend per Transaction": 12.75, "Median Spend per Customer": 16.47 }, "geometry": { "type": "Point", "coordinates": [ -75.200766, 39.954062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pm3-wkz", "Name": "The Tasty", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 12th St", "LATITUDE": 39.932319, "LONGITUDE": -75.164001, "DATE_RANGE_START": 2024, "Total Visits": 79.0, "Total Visitors": 71.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 1.0, "Total Spend": 2901.0, "Total Transactions": 111.0, "Total Customers": 72.0, "Median Spend per Transaction": 22.21, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.164001, 39.932319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm9-swk", "Name": "Frieda", "Category": "Restaurants and Other Eating Places", "Address": "320 Walnut St", "LATITUDE": 39.947095, "LONGITUDE": -75.14703, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 158.0, "POI_CBG": 421010010023.0, "Median Dwell Time": 11.0, "Total Spend": 2865.0, "Total Transactions": 92.0, "Total Customers": 66.0, "Median Spend per Transaction": 26.6, "Median Spend per Customer": 32.95 }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.947095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-phz-z4v", "Name": "BooksRun com", "Category": "Book Stores and News Dealers", "Address": "620 E Erie Ave", "LATITUDE": 40.005848, "LONGITUDE": -75.117861, "DATE_RANGE_START": 2024, "Total Visits": 269.0, "Total Visitors": 107.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 495.0, "Total Spend": 6309.0, "Total Transactions": 146.0, "Total Customers": 121.0, "Median Spend per Transaction": 29.47, "Median Spend per Customer": 39.35 }, "geometry": { "type": "Point", "coordinates": [ -75.117861, 40.005848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmc-2ff", "Name": "Vox Populi", "Category": "Other Miscellaneous Store Retailers", "Address": "319 N 11th St Fl 3", "LATITUDE": 39.958325, "LONGITUDE": -75.156612, "DATE_RANGE_START": 2024, "Total Visits": 219.0, "Total Visitors": 176.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 95.0, "Total Spend": 163.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.156612, 39.958325 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj9-54v", "Name": "Smooth Like That", "Category": "Clothing Stores", "Address": "5705 N Broad St", "LATITUDE": 40.040013, "LONGITUDE": -75.144022, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 219.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 13.0, "Total Spend": 2406.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 134.99, "Median Spend per Customer": 134.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144022, 40.040013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pg4-fj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "161 W Chelten Ave", "LATITUDE": 40.032488, "LONGITUDE": -75.178548, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 180.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 7.0, "Total Spend": 1363.0, "Total Transactions": 95.0, "Total Customers": 71.0, "Median Spend per Transaction": 11.44, "Median Spend per Customer": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.178548, 40.032488 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pm9-wp9", "Name": "Charlie's", "Category": "Clothing Stores", "Address": "302 Market St Fl 2", "LATITUDE": 39.950465, "LONGITUDE": -75.146104, "DATE_RANGE_START": 2024, "Total Visits": 1195.0, "Total Visitors": 972.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 3575.0, "Total Transactions": 312.0, "Total Customers": 196.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.146104, 39.950465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-phd-q75", "Name": "Hair Gallery", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "4160 Monument Rd", "LATITUDE": 40.002741, "LONGITUDE": -75.214235, "DATE_RANGE_START": 2024, "Total Visits": 1657.0, "Total Visitors": 993.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 17.0, "Total Spend": 5474.0, "Total Transactions": 196.0, "Total Customers": 170.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.214235, 40.002741 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phc-vmk", "Name": "Produce Junction", "Category": "Florists", "Address": "2241 Bryn Mawr Ave", "LATITUDE": 39.992553, "LONGITUDE": -75.226064, "DATE_RANGE_START": 2024, "Total Visits": 220.0, "Total Visitors": 133.0, "POI_CBG": 421010120001.0, "Median Dwell Time": 22.0, "Total Spend": 464.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226064, 39.992553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgf-33q", "Name": "Dig Inn", "Category": "Restaurants and Other Eating Places", "Address": "140 S 36th St", "LATITUDE": 39.953554, "LONGITUDE": -75.195062, "DATE_RANGE_START": 2024, "Total Visits": 3740.0, "Total Visitors": 1981.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 117.0, "Total Spend": 232.0, "Total Transactions": 14.0, "Total Customers": 12.0, "Median Spend per Transaction": 15.06, "Median Spend per Customer": 15.61 }, "geometry": { "type": "Point", "coordinates": [ -75.195062, 39.953554 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pfz-bx5", "Name": "Smiley's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4251 Main St", "LATITUDE": 40.024762, "LONGITUDE": -75.221438, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 176.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 11.0, "Total Spend": 922.0, "Total Transactions": 41.0, "Total Customers": 36.0, "Median Spend per Transaction": 19.4, "Median Spend per Customer": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.221438, 40.024762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pp4-qmk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2560 Aramingo Ave", "LATITUDE": 39.978751, "LONGITUDE": -75.119167, "DATE_RANGE_START": 2024, "Total Visits": 527.0, "Total Visitors": 482.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 4.0, "Total Spend": 160.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 10.83, "Median Spend per Customer": 16.41 }, "geometry": { "type": "Point", "coordinates": [ -75.119167, 39.978751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pg4-2p9", "Name": "Bargain Thrift Center", "Category": "Used Merchandise Stores", "Address": "5245 Germantown Ave", "LATITUDE": 40.031821, "LONGITUDE": -75.167835, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 162.0, "POI_CBG": 421010245004.0, "Median Dwell Time": 44.0, "Total Spend": 221.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 17.12 }, "geometry": { "type": "Point", "coordinates": [ -75.167835, 40.031821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-qpv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4201 N Marshall St", "LATITUDE": 40.015674, "LONGITUDE": -75.137715, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010197004.0, "Median Dwell Time": 5.0, "Total Spend": 2363.0, "Total Transactions": 45.0, "Total Customers": 36.0, "Median Spend per Transaction": 19.86, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.137715, 40.015674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-233@628-pmf-jd9", "Name": "Victoria Secret", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.951702, "LONGITUDE": -75.168166, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 211.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 80.16, "Median Spend per Customer": 80.16 }, "geometry": { "type": "Point", "coordinates": [ -75.168166, 39.951702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-ty9", "Name": "Medical Tower Pharmacy", "Category": "Health and Personal Care Stores", "Address": "255 S 17th St", "LATITUDE": 39.948045, "LONGITUDE": -75.169407, "DATE_RANGE_START": 2024, "Total Visits": 1089.0, "Total Visitors": 712.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 22.0, "Total Spend": 2972.0, "Total Transactions": 92.0, "Total Customers": 63.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 19.03 }, "geometry": { "type": "Point", "coordinates": [ -75.169407, 39.948045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-68v", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "2101 Cottman Ave # 41", "LATITUDE": 40.050558, "LONGITUDE": -75.061669, "DATE_RANGE_START": 2024, "Total Visits": 1893.0, "Total Visitors": 1085.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 10.0, "Total Spend": 89288.0, "Total Transactions": 2172.0, "Total Customers": 1040.0, "Median Spend per Transaction": 20.45, "Median Spend per Customer": 32.94 }, "geometry": { "type": "Point", "coordinates": [ -75.061669, 40.050558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-q75", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9808 Bustleton Ave", "LATITUDE": 40.093159, "LONGITUDE": -75.032892, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 6.0, "Total Spend": 904.0, "Total Transactions": 28.0, "Total Customers": 21.0, "Median Spend per Transaction": 21.6, "Median Spend per Customer": 21.54 }, "geometry": { "type": "Point", "coordinates": [ -75.032892, 40.093159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-223@628-pmb-5mk", "Name": "Paper On Pine", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1310 Sansom St", "LATITUDE": 39.949779, "LONGITUDE": -75.162653, "DATE_RANGE_START": 2024, "Total Visits": 4462.0, "Total Visitors": 2680.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 26.0, "Total Spend": 565.0, "Total Transactions": 33.0, "Total Customers": 30.0, "Median Spend per Transaction": 14.58, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.162653, 39.949779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pj4-y35", "Name": "Checo Grocery", "Category": "Grocery Stores", "Address": "1227 W Venango St", "LATITUDE": 40.007608, "LONGITUDE": -75.14884, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 138.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 19.0, "Total Spend": 105.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 8.0 }, "geometry": { "type": "Point", "coordinates": [ -75.14884, 40.007608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-j9z", "Name": "A Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "135 S 18th St", "LATITUDE": 39.950401, "LONGITUDE": -75.170434, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 5.0, "Total Spend": 5060.0, "Total Transactions": 315.0, "Total Customers": 259.0, "Median Spend per Transaction": 13.93, "Median Spend per Customer": 14.85 }, "geometry": { "type": "Point", "coordinates": [ -75.170434, 39.950401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-224@628-pg3-x89", "Name": "Dynamic Dollar", "Category": "Grocery Stores", "Address": "35 E Chelten Ave", "LATITUDE": 40.036919, "LONGITUDE": -75.174629, "DATE_RANGE_START": 2024, "Total Visits": 646.0, "Total Visitors": 430.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 6.0, "Total Spend": 479.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 82.5, "Median Spend per Customer": 181.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174629, 40.036919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-yqf", "Name": "Cily Chicken Rice", "Category": "Restaurants and Other Eating Places", "Address": "933 Race St", "LATITUDE": 39.955428, "LONGITUDE": -75.155481, "DATE_RANGE_START": 2024, "Total Visits": 19620.0, "Total Visitors": 13494.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 4.0, "Total Spend": 260.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 43.87, "Median Spend per Customer": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -75.155481, 39.955428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-2ff", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2204 S Columbus Blvd", "LATITUDE": 39.918289, "LONGITUDE": -75.140556, "DATE_RANGE_START": 2024, "Total Visits": 1525.0, "Total Visitors": 1205.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 6.0, "Total Spend": 9961.0, "Total Transactions": 567.0, "Total Customers": 477.0, "Median Spend per Transaction": 13.93, "Median Spend per Customer": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140556, 39.918289 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-224@63s-dvy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954785, "LONGITUDE": -75.20229, "DATE_RANGE_START": 2024, "Total Visits": 375.0, "Total Visitors": 258.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 1.0, "Total Spend": 6991.0, "Total Transactions": 1035.0, "Total Customers": 400.0, "Median Spend per Transaction": 5.71, "Median Spend per Customer": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -75.20229, 39.954785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnw-nnq", "Name": "Kung Fu Necktie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1250 N Front St", "LATITUDE": 39.970272, "LONGITUDE": -75.135925, "DATE_RANGE_START": 2024, "Total Visits": 516.0, "Total Visitors": 440.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 31.0, "Total Spend": 731.0, "Total Transactions": 29.0, "Total Customers": 25.0, "Median Spend per Transaction": 17.5, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 39.970272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm7-swk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2120 S 23rd St", "LATITUDE": 39.925574, "LONGITUDE": -75.184899, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 209.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 6.0, "Total Spend": 537.0, "Total Transactions": 37.0, "Total Customers": 20.0, "Median Spend per Transaction": 10.83, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.184899, 39.925574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-68v", "Name": "Winkel", "Category": "Restaurants and Other Eating Places", "Address": "1119 Locust St", "LATITUDE": 39.947806, "LONGITUDE": -75.160351, "DATE_RANGE_START": 2024, "Total Visits": 495.0, "Total Visitors": 388.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 2.0, "Total Spend": 4735.0, "Total Transactions": 88.0, "Total Customers": 79.0, "Median Spend per Transaction": 50.22, "Median Spend per Customer": 57.26 }, "geometry": { "type": "Point", "coordinates": [ -75.160351, 39.947806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-php-y5f", "Name": "Clark's Tires", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6430 N Beechwood St", "LATITUDE": 40.052584, "LONGITUDE": -75.157104, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 20.0, "POI_CBG": 421010277006.0, "Median Dwell Time": null, "Total Spend": 99.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157104, 40.052584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-n3q", "Name": "RIM Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1172 S 9th St", "LATITUDE": 39.934415, "LONGITUDE": -75.158989, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 171.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 6.0, "Total Spend": 689.0, "Total Transactions": 38.0, "Total Customers": 34.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.158989, 39.934415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "551 Franklin Mills Cir", "LATITUDE": 40.089384, "LONGITUDE": -74.964343, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 7377.0, "Total Transactions": 611.0, "Total Customers": 311.0, "Median Spend per Transaction": 7.15, "Median Spend per Customer": 9.64 }, "geometry": { "type": "Point", "coordinates": [ -74.964343, 40.089384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj6-jsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6190 N Front St", "LATITUDE": 40.044785, "LONGITUDE": -75.118875, "DATE_RANGE_START": 2024, "Total Visits": 571.0, "Total Visitors": 392.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 2.0, "Total Spend": 3680.0, "Total Transactions": 442.0, "Total Customers": 225.0, "Median Spend per Transaction": 7.58, "Median Spend per Customer": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.118875, 40.044785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-dgk", "Name": "AL JANA Halal Food Market", "Category": "Specialty Food Stores", "Address": "6826 Bustleton Ave", "LATITUDE": 40.041135, "LONGITUDE": -75.06532, "DATE_RANGE_START": 2024, "Total Visits": 344.0, "Total Visitors": 197.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 6.0, "Total Spend": 154.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.06532, 40.041135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phq-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6344 Stenton Ave", "LATITUDE": 40.059864, "LONGITUDE": -75.166534, "DATE_RANGE_START": 2024, "Total Visits": 721.0, "Total Visitors": 600.0, "POI_CBG": 421010389002.0, "Median Dwell Time": 8.0, "Total Spend": 2753.0, "Total Transactions": 84.0, "Total Customers": 57.0, "Median Spend per Transaction": 11.39, "Median Spend per Customer": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.166534, 40.059864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pmf-sh5", "Name": "The Print Center", "Category": "Other Miscellaneous Store Retailers", "Address": "1614 Latimer St", "LATITUDE": 39.948081, "LONGITUDE": -75.168567, "DATE_RANGE_START": 2024, "Total Visits": 411.0, "Total Visitors": 352.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 5.0, "Total Spend": 31.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.6, "Median Spend per Customer": 11.6 }, "geometry": { "type": "Point", "coordinates": [ -75.168567, 39.948081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nh5", "Name": "Frankford Hall", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1210 Frankford Ave", "LATITUDE": 39.969519, "LONGITUDE": -75.134716, "DATE_RANGE_START": 2024, "Total Visits": 662.0, "Total Visitors": 482.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 37.0, "Total Spend": 30930.0, "Total Transactions": 1110.0, "Total Customers": 768.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 32.49 }, "geometry": { "type": "Point", "coordinates": [ -75.134716, 39.969519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-pn5", "Name": "U Town", "Category": "Restaurants and Other Eating Places", "Address": "110 S 40th St", "LATITUDE": 39.954979, "LONGITUDE": -75.202634, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 165.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 1.0, "Total Spend": 2178.0, "Total Transactions": 59.0, "Total Customers": 50.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 33.56 }, "geometry": { "type": "Point", "coordinates": [ -75.202634, 39.954979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-9cq", "Name": "Fu Wah Mini Market", "Category": "Grocery Stores", "Address": "810 S 47th St", "LATITUDE": 39.948295, "LONGITUDE": -75.217025, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 8.0, "Total Spend": 7751.0, "Total Transactions": 384.0, "Total Customers": 259.0, "Median Spend per Transaction": 16.56, "Median Spend per Customer": 24.1 }, "geometry": { "type": "Point", "coordinates": [ -75.217025, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-vcq", "Name": "The Dolphin Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1539 S Broad St", "LATITUDE": 39.930579, "LONGITUDE": -75.167937, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 197.0, "POI_CBG": 421010029002.0, "Median Dwell Time": 300.0, "Total Spend": 116.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.7, "Median Spend per Customer": 21.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167937, 39.930579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-wkz", "Name": "Royal Boucherie", "Category": "Restaurants and Other Eating Places", "Address": "52 S 2nd St", "LATITUDE": 39.948704, "LONGITUDE": -75.144309, "DATE_RANGE_START": 2024, "Total Visits": 673.0, "Total Visitors": 579.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 34.0, "Total Spend": 1403.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 71.72, "Median Spend per Customer": 71.72 }, "geometry": { "type": "Point", "coordinates": [ -75.144309, 39.948704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-2zf", "Name": "Axis Pizza", "Category": "Restaurants and Other Eating Places", "Address": "20 S 36th St", "LATITUDE": 39.95523, "LONGITUDE": -75.194652, "DATE_RANGE_START": 2024, "Total Visits": 373.0, "Total Visitors": 300.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 4.0, "Total Spend": 1988.0, "Total Transactions": 153.0, "Total Customers": 99.0, "Median Spend per Transaction": 10.92, "Median Spend per Customer": 12.69 }, "geometry": { "type": "Point", "coordinates": [ -75.194652, 39.95523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pfz-bhq", "Name": "Pitchers Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4326 Main St", "LATITUDE": 40.025101, "LONGITUDE": -75.223018, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 30.0, "Total Spend": 7204.0, "Total Transactions": 292.0, "Total Customers": 220.0, "Median Spend per Transaction": 20.45, "Median Spend per Customer": 21.6 }, "geometry": { "type": "Point", "coordinates": [ -75.223018, 40.025101 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qxq", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992471, "LONGITUDE": -75.101239, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 13.0, "Total Spend": 6414.0, "Total Transactions": 133.0, "Total Customers": 124.0, "Median Spend per Transaction": 51.11, "Median Spend per Customer": 53.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101239, 39.992471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm9-649", "Name": "HomeGrown Coffee and Creations", "Category": "Restaurants and Other Eating Places", "Address": "1515 W Porter St", "LATITUDE": 39.919907, "LONGITUDE": -75.173383, "DATE_RANGE_START": 2024, "Total Visits": 74.0, "Total Visitors": 74.0, "POI_CBG": 421010039021.0, "Median Dwell Time": null, "Total Spend": 46.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.17, "Median Spend per Customer": 17.52 }, "geometry": { "type": "Point", "coordinates": [ -75.173383, 39.919907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-6x5", "Name": "Harp & Crown", "Category": "Restaurants and Other Eating Places", "Address": "1525 Sansom St", "LATITUDE": 39.950579, "LONGITUDE": -75.166788, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 5799.0, "Total Transactions": 57.0, "Total Customers": 55.0, "Median Spend per Transaction": 82.88, "Median Spend per Customer": 88.38 }, "geometry": { "type": "Point", "coordinates": [ -75.166788, 39.950579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@63s-dvy-x89", "Name": "Hadramout", "Category": "Restaurants and Other Eating Places", "Address": "136 S 45th St", "LATITUDE": 39.955742, "LONGITUDE": -75.211837, "DATE_RANGE_START": 2024, "Total Visits": 147.0, "Total Visitors": 45.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 1129.0, "Total Spend": 1453.0, "Total Transactions": 45.0, "Total Customers": 33.0, "Median Spend per Transaction": 28.78, "Median Spend per Customer": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.211837, 39.955742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-vpv", "Name": "Urban Saloon", "Category": "Restaurants and Other Eating Places", "Address": "2120 Fairmount Ave", "LATITUDE": 39.967182, "LONGITUDE": -75.172904, "DATE_RANGE_START": 2024, "Total Visits": 558.0, "Total Visitors": 269.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 29.0, "Total Spend": 29433.0, "Total Transactions": 513.0, "Total Customers": 366.0, "Median Spend per Transaction": 44.78, "Median Spend per Customer": 52.85 }, "geometry": { "type": "Point", "coordinates": [ -75.172904, 39.967182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pp4-r49", "Name": "Pet Supplies Plus", "Category": "Other Miscellaneous Store Retailers", "Address": "2475 Aramingo Ave", "LATITUDE": 39.974037, "LONGITUDE": -75.12038, "DATE_RANGE_START": 2024, "Total Visits": 241.0, "Total Visitors": 187.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 11.0, "Total Spend": 25359.0, "Total Transactions": 591.0, "Total Customers": 399.0, "Median Spend per Transaction": 34.13, "Median Spend per Customer": 50.03 }, "geometry": { "type": "Point", "coordinates": [ -75.12038, 39.974037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgh-vs5", "Name": "Honey Truck", "Category": "Restaurants and Other Eating Places", "Address": "W Norris St @ N 12th St", "LATITUDE": 39.982937, "LONGITUDE": -75.15332, "DATE_RANGE_START": 2024, "Total Visits": 669.0, "Total Visitors": 288.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 54.0, "Total Spend": 53.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 11.88 }, "geometry": { "type": "Point", "coordinates": [ -75.15332, 39.982937 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pg8-d5f", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "1800 N 31st St", "LATITUDE": 39.983854, "LONGITUDE": -75.184956, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 96.0, "POI_CBG": 421010151011.0, "Median Dwell Time": 39.0, "Total Spend": 73.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.58, "Median Spend per Customer": 8.58 }, "geometry": { "type": "Point", "coordinates": [ -75.184956, 39.983854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-wc5", "Name": "Evergreen Deli", "Category": "Grocery Stores", "Address": "46 S 4th St", "LATITUDE": 39.949185, "LONGITUDE": -75.147628, "DATE_RANGE_START": 2024, "Total Visits": 714.0, "Total Visitors": 382.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 27.0, "Total Spend": 2906.0, "Total Transactions": 298.0, "Total Customers": 113.0, "Median Spend per Transaction": 8.98, "Median Spend per Customer": 13.84 }, "geometry": { "type": "Point", "coordinates": [ -75.147628, 39.949185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p9r-q2k", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "9875 Bustleton Ave", "LATITUDE": 40.092791, "LONGITUDE": -75.030852, "DATE_RANGE_START": 2024, "Total Visits": 937.0, "Total Visitors": 482.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 7.0, "Total Spend": 8506.0, "Total Transactions": 307.0, "Total Customers": 126.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 22.42 }, "geometry": { "type": "Point", "coordinates": [ -75.030852, 40.092791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-rp9", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030253, "LONGITUDE": -75.101415, "DATE_RANGE_START": 2024, "Total Visits": 806.0, "Total Visitors": 635.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 19.0, "Total Spend": 43340.0, "Total Transactions": 1003.0, "Total Customers": 827.0, "Median Spend per Transaction": 33.95, "Median Spend per Customer": 38.88 }, "geometry": { "type": "Point", "coordinates": [ -75.101415, 40.030253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9k-dvz", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2044 Red Lion Rd", "LATITUDE": 40.099355, "LONGITUDE": -75.024563, "DATE_RANGE_START": 2024, "Total Visits": 4363.0, "Total Visitors": 2877.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 16.0, "Total Spend": 4820.0, "Total Transactions": 63.0, "Total Customers": 55.0, "Median Spend per Transaction": 53.77, "Median Spend per Customer": 61.32 }, "geometry": { "type": "Point", "coordinates": [ -75.024563, 40.099355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgc-vxq", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "1500 N 50th St", "LATITUDE": 39.977213, "LONGITUDE": -75.22155, "DATE_RANGE_START": 2024, "Total Visits": 2279.0, "Total Visitors": 1474.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 13.0, "Total Spend": 70754.0, "Total Transactions": 731.0, "Total Customers": 411.0, "Median Spend per Transaction": 38.66, "Median Spend per Customer": 50.72 }, "geometry": { "type": "Point", "coordinates": [ -75.22155, 39.977213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8f-djv", "Name": "Neighborhood Market", "Category": "Grocery Stores", "Address": "4676 Frankford Ave", "LATITUDE": 40.016721, "LONGITUDE": -75.084303, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 82.0, "POI_CBG": 421010300006.0, "Median Dwell Time": 3.0, "Total Spend": 765.0, "Total Transactions": 107.0, "Total Customers": 62.0, "Median Spend per Transaction": 5.25, "Median Spend per Customer": 5.75 }, "geometry": { "type": "Point", "coordinates": [ -75.084303, 40.016721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-y9z", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "3020 Market St", "LATITUDE": 39.954522, "LONGITUDE": -75.184483, "DATE_RANGE_START": 2024, "Total Visits": 1037.0, "Total Visitors": 578.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 90.0, "Total Spend": 12732.0, "Total Transactions": 1014.0, "Total Customers": 660.0, "Median Spend per Transaction": 10.98, "Median Spend per Customer": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.184483, 39.954522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgf-33q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3604 Chestnut St", "LATITUDE": 39.954573, "LONGITUDE": -75.19487, "DATE_RANGE_START": 2024, "Total Visits": 573.0, "Total Visitors": 292.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 257.0, "Total Spend": 5975.0, "Total Transactions": 596.0, "Total Customers": 403.0, "Median Spend per Transaction": 7.65, "Median Spend per Customer": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.19487, 39.954573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-59f", "Name": "Girard Meat Market", "Category": "Specialty Food Stores", "Address": "4725 W Girard Ave", "LATITUDE": 39.972904, "LONGITUDE": -75.217558, "DATE_RANGE_START": 2024, "Total Visits": 208.0, "Total Visitors": 184.0, "POI_CBG": 421010111002.0, "Median Dwell Time": 4.0, "Total Spend": 4488.0, "Total Transactions": 107.0, "Total Customers": 83.0, "Median Spend per Transaction": 17.98, "Median Spend per Customer": 24.51 }, "geometry": { "type": "Point", "coordinates": [ -75.217558, 39.972904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvt-zzz", "Name": "Island Food Market Corp", "Category": "Grocery Stores", "Address": "7298 Woodland Ave", "LATITUDE": 39.917141, "LONGITUDE": -75.246113, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 88.0, "POI_CBG": 421010063004.0, "Median Dwell Time": 5.0, "Total Spend": 8.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 1.0, "Median Spend per Customer": 1.5 }, "geometry": { "type": "Point", "coordinates": [ -75.246113, 39.917141 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-225@628-pmb-6hq", "Name": "Top Tomato Bar & Pizza", "Category": "Restaurants and Other Eating Places", "Address": "116 S 11th St", "LATITUDE": 39.949587, "LONGITUDE": -75.158979, "DATE_RANGE_START": 2024, "Total Visits": 5134.0, "Total Visitors": 2192.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 96.0, "Total Spend": 411.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 22.6, "Median Spend per Customer": 42.96 }, "geometry": { "type": "Point", "coordinates": [ -75.158979, 39.949587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-t35", "Name": "Brexel Cafe", "Category": "Restaurants and Other Eating Places", "Address": "305 N 33rd St", "LATITUDE": 39.960745, "LONGITUDE": -75.189369, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 361.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 2.0, "Total Spend": 91.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 34.73, "Median Spend per Customer": 34.73 }, "geometry": { "type": "Point", "coordinates": [ -75.189369, 39.960745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmd-s5z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2132 South St", "LATITUDE": 39.945057, "LONGITUDE": -75.178482, "DATE_RANGE_START": 2024, "Total Visits": 989.0, "Total Visitors": 733.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 3.0, "Total Spend": 10343.0, "Total Transactions": 507.0, "Total Customers": 244.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.178482, 39.945057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-pn5", "Name": "Burlington", "Category": "Clothing Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.9125, "LONGITUDE": -75.156968, "DATE_RANGE_START": 2024, "Total Visits": 74.0, "Total Visitors": 58.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 17.0, "Total Spend": 2282.0, "Total Transactions": 62.0, "Total Customers": 55.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 24.2 }, "geometry": { "type": "Point", "coordinates": [ -75.156968, 39.9125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg4-grk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "301 W Chelten Ave Ste F", "LATITUDE": 40.030388, "LONGITUDE": -75.181136, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 33.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 14.0, "Total Spend": 961.0, "Total Transactions": 53.0, "Total Customers": 42.0, "Median Spend per Transaction": 16.1, "Median Spend per Customer": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.181136, 40.030388 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvw-rzf", "Name": "Just To Serve You", "Category": "Restaurants and Other Eating Places", "Address": "5622 W Girard Ave", "LATITUDE": 39.970379, "LONGITUDE": -75.233466, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010102001.0, "Median Dwell Time": 1.0, "Total Spend": 796.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 43.61, "Median Spend per Customer": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.233466, 39.970379 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-wx5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7700 Island Ave", "LATITUDE": 39.903163, "LONGITUDE": -75.239189, "DATE_RANGE_START": 2024, "Total Visits": 1153.0, "Total Visitors": 949.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 5.0, "Total Spend": 15095.0, "Total Transactions": 1257.0, "Total Customers": 720.0, "Median Spend per Transaction": 10.14, "Median Spend per Customer": 13.89 }, "geometry": { "type": "Point", "coordinates": [ -75.239189, 39.903163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-cwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3320 Grant Ave Unit 18B", "LATITUDE": 40.067938, "LONGITUDE": -75.006861, "DATE_RANGE_START": 2024, "Total Visits": 1143.0, "Total Visitors": 736.0, "POI_CBG": 421010348032.0, "Median Dwell Time": 7.0, "Total Spend": 1429.0, "Total Transactions": 178.0, "Total Customers": 105.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 8.06 }, "geometry": { "type": "Point", "coordinates": [ -75.006861, 40.067938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-223@628-pfz-bzf", "Name": "Yanako", "Category": "Restaurants and Other Eating Places", "Address": "4345 Main St", "LATITUDE": 40.025622, "LONGITUDE": -75.223563, "DATE_RANGE_START": 2024, "Total Visits": 161.0, "Total Visitors": 161.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 2.0, "Total Spend": 2924.0, "Total Transactions": 37.0, "Total Customers": 36.0, "Median Spend per Transaction": 79.1, "Median Spend per Customer": 78.41 }, "geometry": { "type": "Point", "coordinates": [ -75.223563, 40.025622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@628-pm4-ct9", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "2120 S Broad St", "LATITUDE": 39.923865, "LONGITUDE": -75.170182, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 90.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 5.0, "Total Spend": 770.0, "Total Transactions": 42.0, "Total Customers": 29.0, "Median Spend per Transaction": 16.68, "Median Spend per Customer": 25.48 }, "geometry": { "type": "Point", "coordinates": [ -75.170182, 39.923865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgf-ty9", "Name": "Rocky Steps", "Category": "Restaurants and Other Eating Places", "Address": "2600 Benjamin Franklin Pkwy", "LATITUDE": 39.964917, "LONGITUDE": -75.180035, "DATE_RANGE_START": 2024, "Total Visits": 147.0, "Total Visitors": 146.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 3.0, "Total Spend": 1063.0, "Total Transactions": 37.0, "Total Customers": 34.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180035, 39.964917 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-73q", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7613 Castor Ave", "LATITUDE": 40.05636, "LONGITUDE": -75.060529, "DATE_RANGE_START": 2024, "Total Visits": 902.0, "Total Visitors": 724.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 4.0, "Total Spend": 13380.0, "Total Transactions": 1058.0, "Total Customers": 610.0, "Median Spend per Transaction": 10.11, "Median Spend per Customer": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -75.060529, 40.05636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-7yv", "Name": "Bassetts Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "45 N 12th St", "LATITUDE": 39.956389, "LONGITUDE": -75.158811, "DATE_RANGE_START": 2024, "Total Visits": 294.0, "Total Visitors": 265.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 7260.0, "Total Transactions": 534.0, "Total Customers": 475.0, "Median Spend per Transaction": 10.93, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158811, 39.956389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phn-9fz", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "1503 E Wadsworth Ave Ste A", "LATITUDE": 40.079281, "LONGITUDE": -75.174174, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 14.0, "Total Spend": 219.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 21.75, "Median Spend per Customer": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.174174, 40.079281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnx-575", "Name": "Fuzion Grill and Social Club", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "460 N 2nd St", "LATITUDE": 39.959174, "LONGITUDE": -75.142246, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 197.0, "Total Spend": 42442.0, "Total Transactions": 887.0, "Total Customers": 548.0, "Median Spend per Transaction": 25.95, "Median Spend per Customer": 36.69 }, "geometry": { "type": "Point", "coordinates": [ -75.142246, 39.959174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@628-pg9-54v", "Name": "New Star Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2800 W Dauphin St", "LATITUDE": 39.991084, "LONGITUDE": -75.178799, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 359.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 12.0, "Total Spend": 642.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 17.59, "Median Spend per Customer": 17.73 }, "geometry": { "type": "Point", "coordinates": [ -75.178799, 39.991084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm6-jn5", "Name": "Kyoto Japan", "Category": "Restaurants and Other Eating Places", "Address": "37 Snyder Ave", "LATITUDE": 39.921763, "LONGITUDE": -75.14657, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 233.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 7.0, "Total Spend": 1297.0, "Total Transactions": 74.0, "Total Customers": 51.0, "Median Spend per Transaction": 16.6, "Median Spend per Customer": 23.48 }, "geometry": { "type": "Point", "coordinates": [ -75.14657, 39.921763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22h@628-pmb-7t9", "Name": "Jeans Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1334 Walnut St", "LATITUDE": 39.949048, "LONGITUDE": -75.163664, "DATE_RANGE_START": 2024, "Total Visits": 5537.0, "Total Visitors": 3636.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 16.0, "Total Spend": 3367.0, "Total Transactions": 237.0, "Total Customers": 117.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 16.87 }, "geometry": { "type": "Point", "coordinates": [ -75.163664, 39.949048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-ph6-gzf", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1923 N 54th St", "LATITUDE": 39.986613, "LONGITUDE": -75.231837, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010119001.0, "Median Dwell Time": 22.0, "Total Spend": 627.0, "Total Transactions": 24.0, "Total Customers": 20.0, "Median Spend per Transaction": 26.01, "Median Spend per Customer": 28.67 }, "geometry": { "type": "Point", "coordinates": [ -75.231837, 39.986613 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pm9-w6k", "Name": "Cafe Square One", "Category": "Restaurants and Other Eating Places", "Address": "50 S 3rd St", "LATITUDE": 39.948818, "LONGITUDE": -75.146097, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 217.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 2810.0, "Total Transactions": 179.0, "Total Customers": 147.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 16.52 }, "geometry": { "type": "Point", "coordinates": [ -75.146097, 39.948818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "839 N Broad St", "LATITUDE": 39.969384, "LONGITUDE": -75.159456, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 157.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 3.0, "Total Spend": 4105.0, "Total Transactions": 495.0, "Total Customers": 287.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 8.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159456, 39.969384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-9s5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7615 Lindbergh Blvd", "LATITUDE": 39.90506, "LONGITUDE": -75.239431, "DATE_RANGE_START": 2024, "Total Visits": 1725.0, "Total Visitors": 1045.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 9.0, "Total Spend": 1032.0, "Total Transactions": 61.0, "Total Customers": 55.0, "Median Spend per Transaction": 10.68, "Median Spend per Customer": 11.38 }, "geometry": { "type": "Point", "coordinates": [ -75.239431, 39.90506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3951 E Roosevelt Blvd", "LATITUDE": 40.026951, "LONGITUDE": -75.1112, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010292001.0, "Median Dwell Time": 5.0, "Total Spend": 223.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.63, "Median Spend per Customer": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.1112, 40.026951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-j9z", "Name": "Anthropologie", "Category": "Clothing Stores", "Address": "1801 Walnut St", "LATITUDE": 39.950352, "LONGITUDE": -75.170778, "DATE_RANGE_START": 2024, "Total Visits": 2509.0, "Total Visitors": 2009.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 6.0, "Total Spend": 833037.0, "Total Transactions": 6218.0, "Total Customers": 3955.0, "Median Spend per Transaction": 84.8, "Median Spend per Customer": 111.22 }, "geometry": { "type": "Point", "coordinates": [ -75.170778, 39.950352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-z9f", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "2360 W Oregon Ave", "LATITUDE": 39.918084, "LONGITUDE": -75.188913, "DATE_RANGE_START": 2024, "Total Visits": 678.0, "Total Visitors": 415.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 9.0, "Total Spend": 9993.0, "Total Transactions": 209.0, "Total Customers": 138.0, "Median Spend per Transaction": 37.63, "Median Spend per Customer": 50.2 }, "geometry": { "type": "Point", "coordinates": [ -75.188913, 39.918084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-22t@628-pgb-k75", "Name": "Rock N' Rolls", "Category": "Special Food Services", "Address": "1308 W Girard Ave", "LATITUDE": 39.970765, "LONGITUDE": -75.15777, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 304.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 16.0, "Total Spend": 609.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 27.96, "Median Spend per Customer": 28.38 }, "geometry": { "type": "Point", "coordinates": [ -75.15777, 39.970765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-pvz", "Name": "Midnight Iris", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1708 Lombard St", "LATITUDE": 39.945191, "LONGITUDE": -75.170462, "DATE_RANGE_START": 2024, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010012022.0, "Median Dwell Time": null, "Total Spend": 590.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 41.74, "Median Spend per Customer": 50.26 }, "geometry": { "type": "Point", "coordinates": [ -75.170462, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-mrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "101 E Olney Ave", "LATITUDE": 40.036416, "LONGITUDE": -75.120676, "DATE_RANGE_START": 2024, "Total Visits": 358.0, "Total Visitors": 304.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 7.0, "Total Spend": 7898.0, "Total Transactions": 496.0, "Total Customers": 374.0, "Median Spend per Transaction": 13.22, "Median Spend per Customer": 15.29 }, "geometry": { "type": "Point", "coordinates": [ -75.120676, 40.036416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pmf-mrk", "Name": "Gateway Newstand", "Category": "Book Stores and News Dealers", "Address": "1650 Market St Lbby 102", "LATITUDE": 39.952541, "LONGITUDE": -75.167892, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 513.0, "Total Transactions": 75.0, "Total Customers": 55.0, "Median Spend per Transaction": 4.25, "Median Spend per Customer": 6.48 }, "geometry": { "type": "Point", "coordinates": [ -75.167892, 39.952541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-hqz", "Name": "Yummy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1807 John F Kennedy Blvd", "LATITUDE": 39.954445, "LONGITUDE": -75.170031, "DATE_RANGE_START": 2024, "Total Visits": 2503.0, "Total Visitors": 1519.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 4.0, "Total Spend": 939.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 16.79, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.170031, 39.954445 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-649", "Name": "Dollar Mart", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4902 Baltimore Ave", "LATITUDE": 39.947913, "LONGITUDE": -75.221416, "DATE_RANGE_START": 2024, "Total Visits": 629.0, "Total Visitors": 420.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 26.0, "Total Spend": 1920.0, "Total Transactions": 113.0, "Total Customers": 80.0, "Median Spend per Transaction": 12.81, "Median Spend per Customer": 12.67 }, "geometry": { "type": "Point", "coordinates": [ -75.221416, 39.947913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-8n5", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "942 Market St", "LATITUDE": 39.951208, "LONGITUDE": -75.156644, "DATE_RANGE_START": 2024, "Total Visits": 427.0, "Total Visitors": 359.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 5023.0, "Total Transactions": 349.0, "Total Customers": 263.0, "Median Spend per Transaction": 13.07, "Median Spend per Customer": 13.41 }, "geometry": { "type": "Point", "coordinates": [ -75.156644, 39.951208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-wkz", "Name": "Charley's", "Category": "Restaurants and Other Eating Places", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087657, "LONGITUDE": -74.961027, "DATE_RANGE_START": 2024, "Total Visits": 958.0, "Total Visitors": 893.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 1932.0, "Total Transactions": 120.0, "Total Customers": 104.0, "Median Spend per Transaction": 14.84, "Median Spend per Customer": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -74.961027, 40.087657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-6p9", "Name": "W Hotels", "Category": "Traveler Accommodation", "Address": "1439 Chestnut St", "LATITUDE": 39.951547, "LONGITUDE": -75.165268, "DATE_RANGE_START": 2024, "Total Visits": 80.0, "Total Visitors": 55.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 9.0, "Total Spend": 30005.0, "Total Transactions": 101.0, "Total Customers": 88.0, "Median Spend per Transaction": 146.97, "Median Spend per Customer": 161.74 }, "geometry": { "type": "Point", "coordinates": [ -75.165268, 39.951547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-ph5-rkz", "Name": "Hunan Palace", "Category": "Restaurants and Other Eating Places", "Address": "6118 Lancaster Ave", "LATITUDE": 39.983304, "LONGITUDE": -75.244241, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010114006.0, "Median Dwell Time": null, "Total Spend": 2426.0, "Total Transactions": 146.0, "Total Customers": 97.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.244241, 39.983304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-rp9", "Name": "Sunrise Breakfast", "Category": "Restaurants and Other Eating Places", "Address": "1916 E Washington Ln", "LATITUDE": 40.066142, "LONGITUDE": -75.158748, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 11.0, "Total Spend": 2611.0, "Total Transactions": 141.0, "Total Customers": 53.0, "Median Spend per Transaction": 16.9, "Median Spend per Customer": 26.76 }, "geometry": { "type": "Point", "coordinates": [ -75.158748, 40.066142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-p7v-f2k", "Name": "Bob's Discount Furniture", "Category": "Furniture Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051401, "LONGITUDE": -75.065206, "DATE_RANGE_START": 2024, "Total Visits": 1374.0, "Total Visitors": 1081.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 26.0, "Total Spend": 10138.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 950.46, "Median Spend per Customer": 950.46 }, "geometry": { "type": "Point", "coordinates": [ -75.065206, 40.051401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-225@628-pgb-8y9", "Name": "Parkway Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2401 Pennsylvania Ave", "LATITUDE": 39.967017, "LONGITUDE": -75.177953, "DATE_RANGE_START": 2024, "Total Visits": 1342.0, "Total Visitors": 710.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 154.0, "Total Spend": 1563.0, "Total Transactions": 57.0, "Total Customers": 46.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.19 }, "geometry": { "type": "Point", "coordinates": [ -75.177953, 39.967017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pjf-j7q", "Name": "Villavillekula", "Category": "Clothing Stores", "Address": "8419 Germantown Ave", "LATITUDE": 40.075643, "LONGITUDE": -75.205445, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 186.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 107.0, "Total Spend": 94.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.205445, 40.075643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-php-pgk", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "7111 Stenton Ave", "LATITUDE": 40.058721, "LONGITUDE": -75.162779, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 4.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 4.0, "Total Spend": 72.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 27.5, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162779, 40.058721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-brk", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2539 Castor Ave Ste D", "LATITUDE": 39.993994, "LONGITUDE": -75.0915, "DATE_RANGE_START": 2024, "Total Visits": 226.0, "Total Visitors": 175.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 2.0, "Total Spend": 2828.0, "Total Transactions": 43.0, "Total Customers": 39.0, "Median Spend per Transaction": 43.35, "Median Spend per Customer": 50.97 }, "geometry": { "type": "Point", "coordinates": [ -75.0915, 39.993994 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgg-j9z", "Name": "C Town Supermarkets", "Category": "Grocery Stores", "Address": "2438 W Lehigh Ave", "LATITUDE": 39.99594, "LONGITUDE": -75.172136, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 51.0, "POI_CBG": 421010169011.0, "Median Dwell Time": 13.0, "Total Spend": 2212.0, "Total Transactions": 186.0, "Total Customers": 88.0, "Median Spend per Transaction": 8.08, "Median Spend per Customer": 13.88 }, "geometry": { "type": "Point", "coordinates": [ -75.172136, 39.99594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-jgk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "1711 Walnut St", "LATITUDE": 39.950274, "LONGITUDE": -75.169549, "DATE_RANGE_START": 2024, "Total Visits": 1997.0, "Total Visitors": 1618.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 9609.0, "Total Transactions": 90.0, "Total Customers": 80.0, "Median Spend per Transaction": 119.24, "Median Spend per Customer": 120.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169549, 39.950274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-kvf", "Name": "Ruckus Gallery", "Category": "Other Miscellaneous Store Retailers", "Address": "27 N 2nd St", "LATITUDE": 39.950734, "LONGITUDE": -75.143391, "DATE_RANGE_START": 2024, "Total Visits": 556.0, "Total Visitors": 292.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 8.0, "Total Spend": 5385.0, "Total Transactions": 149.0, "Total Customers": 93.0, "Median Spend per Transaction": 26.44, "Median Spend per Customer": 36.68 }, "geometry": { "type": "Point", "coordinates": [ -75.143391, 39.950734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pg8-ks5", "Name": "Girard Mini Market", "Category": "Grocery Stores", "Address": "2901 W Girard Ave", "LATITUDE": 39.974728, "LONGITUDE": -75.183619, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 125.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 5.0, "Total Spend": 2495.0, "Total Transactions": 232.0, "Total Customers": 118.0, "Median Spend per Transaction": 8.71, "Median Spend per Customer": 11.57 }, "geometry": { "type": "Point", "coordinates": [ -75.183619, 39.974728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvr-99f", "Name": "Thirty Eight", "Category": "Grocery Stores", "Address": "6000 Chester Ave", "LATITUDE": 39.933442, "LONGITUDE": -75.231478, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 138.0, "POI_CBG": 421010065001.0, "Median Dwell Time": 5.0, "Total Spend": 159.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 60.4, "Median Spend per Customer": 60.4 }, "geometry": { "type": "Point", "coordinates": [ -75.231478, 39.933442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgy-r6k", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7607 Ridge Ave", "LATITUDE": 40.051051, "LONGITUDE": -75.235773, "DATE_RANGE_START": 2024, "Total Visits": 544.0, "Total Visitors": 341.0, "POI_CBG": 421010218002.0, "Median Dwell Time": 14.0, "Total Spend": 1273.0, "Total Transactions": 42.0, "Total Customers": 29.0, "Median Spend per Transaction": 13.09, "Median Spend per Customer": 12.88 }, "geometry": { "type": "Point", "coordinates": [ -75.235773, 40.051051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pj6-k4v", "Name": "H Mart", "Category": "Grocery Stores", "Address": "6201 N Front St", "LATITUDE": 40.044993, "LONGITUDE": -75.117488, "DATE_RANGE_START": 2024, "Total Visits": 4471.0, "Total Visitors": 2998.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 19.0, "Total Spend": 97549.0, "Total Transactions": 2118.0, "Total Customers": 1338.0, "Median Spend per Transaction": 24.95, "Median Spend per Customer": 46.55 }, "geometry": { "type": "Point", "coordinates": [ -75.117488, 40.044993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-y5f", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "1243 S Broad St", "LATITUDE": 39.934261, "LONGITUDE": -75.167157, "DATE_RANGE_START": 2024, "Total Visits": 1128.0, "Total Visitors": 739.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 3.0, "Total Spend": 5119.0, "Total Transactions": 212.0, "Total Customers": 178.0, "Median Spend per Transaction": 21.04, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.934261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-p82-p5f", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6515 Castor Ave", "LATITUDE": 40.040841, "LONGITUDE": -75.075123, "DATE_RANGE_START": 2024, "Total Visits": 1049.0, "Total Visitors": 577.0, "POI_CBG": 421010313004.0, "Median Dwell Time": 5.0, "Total Spend": 4617.0, "Total Transactions": 182.0, "Total Customers": 117.0, "Median Spend per Transaction": 19.26, "Median Spend per Customer": 19.67 }, "geometry": { "type": "Point", "coordinates": [ -75.075123, 40.040841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8t-wc5", "Name": "Zumiez", "Category": "Clothing Stores", "Address": "1441 Franklin Mills Cir", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2024, "Total Visits": 585.0, "Total Visitors": 570.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 8541.0, "Total Transactions": 120.0, "Total Customers": 88.0, "Median Spend per Transaction": 64.95, "Median Spend per Customer": 55.9 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-j5f", "Name": "Vince.", "Category": "Clothing Stores", "Address": "1701 Walnut St", "LATITUDE": 39.950214, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2024, "Total Visits": 1997.0, "Total Visitors": 1618.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 4810.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 395.0, "Median Spend per Customer": 395.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950214 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-kvf", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "8880 Bartram Ave", "LATITUDE": 39.886278, "LONGITUDE": -75.248108, "DATE_RANGE_START": 2024, "Total Visits": 417.0, "Total Visitors": 90.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1373.0, "Total Spend": 5070.0, "Total Transactions": 32.0, "Total Customers": 16.0, "Median Spend per Transaction": 113.99, "Median Spend per Customer": 254.46 }, "geometry": { "type": "Point", "coordinates": [ -75.248108, 39.886278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p77-y5f", "Name": "China Gate", "Category": "Restaurants and Other Eating Places", "Address": "3822 Morrell Ave", "LATITUDE": 40.064209, "LONGITUDE": -74.986824, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 315.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 21.0, "Total Spend": 2150.0, "Total Transactions": 87.0, "Total Customers": 70.0, "Median Spend per Transaction": 23.42, "Median Spend per Customer": 27.66 }, "geometry": { "type": "Point", "coordinates": [ -74.986824, 40.064209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmc-ndv", "Name": "Ginza", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Front St", "LATITUDE": 39.932489, "LONGITUDE": -75.146123, "DATE_RANGE_START": 2024, "Total Visits": 197.0, "Total Visitors": 197.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 47.0, "Total Spend": 2455.0, "Total Transactions": 49.0, "Total Customers": 42.0, "Median Spend per Transaction": 39.1, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146123, 39.932489 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmf-kcq", "Name": "Melograno", "Category": "Restaurants and Other Eating Places", "Address": "2012 Sansom St", "LATITUDE": 39.950954, "LONGITUDE": -75.17418, "DATE_RANGE_START": 2024, "Total Visits": 1210.0, "Total Visitors": 899.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 6.0, "Total Spend": 805.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 109.64, "Median Spend per Customer": 109.64 }, "geometry": { "type": "Point", "coordinates": [ -75.17418, 39.950954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-zvf", "Name": "Tavern On the Hill", "Category": "Restaurants and Other Eating Places", "Address": "8636 Germantown Ave", "LATITUDE": 40.077151, "LONGITUDE": -75.208916, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 56.0, "Total Spend": 1591.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 43.47, "Median Spend per Customer": 47.41 }, "geometry": { "type": "Point", "coordinates": [ -75.208916, 40.077151 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pgb-grk", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "2101 Pennsylvania Ave", "LATITUDE": 39.962997, "LONGITUDE": -75.174044, "DATE_RANGE_START": 2024, "Total Visits": 2329.0, "Total Visitors": 1156.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 14.0, "Total Spend": 132933.0, "Total Transactions": 3306.0, "Total Customers": 1228.0, "Median Spend per Transaction": 24.12, "Median Spend per Customer": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.174044, 39.962997 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-g6k", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2101 W Oregon Ave", "LATITUDE": 39.91863, "LONGITUDE": -75.182515, "DATE_RANGE_START": 2024, "Total Visits": 1010.0, "Total Visitors": 660.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 13.0, "Total Spend": 15970.0, "Total Transactions": 257.0, "Total Customers": 145.0, "Median Spend per Transaction": 34.54, "Median Spend per Customer": 39.06 }, "geometry": { "type": "Point", "coordinates": [ -75.182515, 39.91863 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-p72-575", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9440 State Rd", "LATITUDE": 40.04935, "LONGITUDE": -74.989527, "DATE_RANGE_START": 2024, "Total Visits": 1536.0, "Total Visitors": 1139.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 3.0, "Total Spend": 5002.0, "Total Transactions": 450.0, "Total Customers": 279.0, "Median Spend per Transaction": 8.7, "Median Spend per Customer": 12.03 }, "geometry": { "type": "Point", "coordinates": [ -74.989527, 40.04935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-cdv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 Castor Ave", "LATITUDE": 39.990988, "LONGITUDE": -75.089442, "DATE_RANGE_START": 2024, "Total Visits": 6439.0, "Total Visitors": 4202.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 19.0, "Total Spend": 33102.0, "Total Transactions": 694.0, "Total Customers": 552.0, "Median Spend per Transaction": 32.84, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.089442, 39.990988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-phy-4vz", "Name": "Paulino Grocery", "Category": "Grocery Stores", "Address": "140 E Wyoming Ave", "LATITUDE": 40.021133, "LONGITUDE": -75.122686, "DATE_RANGE_START": 2024, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010288001.0, "Median Dwell Time": 1.0, "Total Spend": 68.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 5.25, "Median Spend per Customer": 3.75 }, "geometry": { "type": "Point", "coordinates": [ -75.122686, 40.021133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pgg-vpv", "Name": "Martinez Grocery", "Category": "Grocery Stores", "Address": "2655 W Sterner St", "LATITUDE": 39.997199, "LONGITUDE": -75.175295, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 41.0, "POI_CBG": 421010172022.0, "Median Dwell Time": 1.0, "Total Spend": 1324.0, "Total Transactions": 132.0, "Total Customers": 50.0, "Median Spend per Transaction": 9.7, "Median Spend per Customer": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -75.175295, 39.997199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p8j-94v", "Name": "Convenient Food Market", "Category": "Grocery Stores", "Address": "7101 Frankford Ave", "LATITUDE": 40.034583, "LONGITUDE": -75.044296, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 273.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 12.0, "Total Spend": 4013.0, "Total Transactions": 329.0, "Total Customers": 143.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.044296, 40.034583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pfw-hwk", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "3601 Midvale Ave", "LATITUDE": 40.012834, "LONGITUDE": -75.192953, "DATE_RANGE_START": 2024, "Total Visits": 689.0, "Total Visitors": 645.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 4.0, "Total Spend": 2366.0, "Total Transactions": 138.0, "Total Customers": 109.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 14.27 }, "geometry": { "type": "Point", "coordinates": [ -75.192953, 40.012834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-djv", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1901 W Oregon Ave", "LATITUDE": 39.918299, "LONGITUDE": -75.180698, "DATE_RANGE_START": 2024, "Total Visits": 312.0, "Total Visitors": 312.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 1.0, "Total Spend": 6556.0, "Total Transactions": 355.0, "Total Customers": 222.0, "Median Spend per Transaction": 10.79, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.180698, 39.918299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p9r-3qz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "9000 Roosevelt Blvd", "LATITUDE": 40.075107, "LONGITUDE": -75.034947, "DATE_RANGE_START": 2024, "Total Visits": 556.0, "Total Visitors": 436.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 3.0, "Total Spend": 128.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 26.1, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.034947, 40.075107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-s3q", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "701 Chestnut St", "LATITUDE": 39.949547, "LONGITUDE": -75.152456, "DATE_RANGE_START": 2024, "Total Visits": 362.0, "Total Visitors": 342.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 1453.0, "Total Transactions": 113.0, "Total Customers": 101.0, "Median Spend per Transaction": 9.77, "Median Spend per Customer": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.152456, 39.949547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pp5-75z", "Name": "Circle Thrift", "Category": "Used Merchandise Stores", "Address": "2233 Frankford Ave", "LATITUDE": 39.980269, "LONGITUDE": -75.128616, "DATE_RANGE_START": 2024, "Total Visits": 380.0, "Total Visitors": 147.0, "POI_CBG": 421010160005.0, "Median Dwell Time": 92.0, "Total Spend": 3822.0, "Total Transactions": 241.0, "Total Customers": 176.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 16.35 }, "geometry": { "type": "Point", "coordinates": [ -75.128616, 39.980269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7yv", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "48 N 12th St", "LATITUDE": 39.953661, "LONGITUDE": -75.159716, "DATE_RANGE_START": 2024, "Total Visits": 5649.0, "Total Visitors": 4040.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 33.0, "Total Spend": 8066.0, "Total Transactions": 528.0, "Total Customers": 337.0, "Median Spend per Transaction": 12.64, "Median Spend per Customer": 16.83 }, "geometry": { "type": "Point", "coordinates": [ -75.159716, 39.953661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-r6k", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029566, "LONGITUDE": -75.100398, "DATE_RANGE_START": 2024, "Total Visits": 1363.0, "Total Visitors": 679.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 251.0, "Total Spend": 16840.0, "Total Transactions": 307.0, "Total Customers": 244.0, "Median Spend per Transaction": 32.46, "Median Spend per Customer": 39.64 }, "geometry": { "type": "Point", "coordinates": [ -75.100398, 40.029566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm7-zmk", "Name": "The Fresh Grocer", "Category": "Grocery Stores", "Address": "3021 Grays Ferry Ave", "LATITUDE": 39.940294, "LONGITUDE": -75.193174, "DATE_RANGE_START": 2024, "Total Visits": 1127.0, "Total Visitors": 637.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 9.0, "Total Spend": 515727.0, "Total Transactions": 14854.0, "Total Customers": 6138.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 38.17 }, "geometry": { "type": "Point", "coordinates": [ -75.193174, 39.940294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-wx5", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7720 Lindbergh Blvd", "LATITUDE": 39.903623, "LONGITUDE": -75.239124, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 21.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 12.0, "Total Spend": 197.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 74.91, "Median Spend per Customer": 74.91 }, "geometry": { "type": "Point", "coordinates": [ -75.239124, 39.903623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-p82-nyv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6412 Castor Ave # 6422", "LATITUDE": 40.040238, "LONGITUDE": -75.077092, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 270.0, "POI_CBG": 421010311013.0, "Median Dwell Time": 8.0, "Total Spend": 1536.0, "Total Transactions": 51.0, "Total Customers": 36.0, "Median Spend per Transaction": 14.3, "Median Spend per Customer": 18.99 }, "geometry": { "type": "Point", "coordinates": [ -75.077092, 40.040238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-4jv", "Name": "Riverwards Produce", "Category": "Grocery Stores", "Address": "2200 E Norris St", "LATITUDE": 39.977989, "LONGITUDE": -75.130048, "DATE_RANGE_START": 2024, "Total Visits": 287.0, "Total Visitors": 146.0, "POI_CBG": 421010158001.0, "Median Dwell Time": 4.0, "Total Spend": 17423.0, "Total Transactions": 610.0, "Total Customers": 249.0, "Median Spend per Transaction": 20.93, "Median Spend per Customer": 39.75 }, "geometry": { "type": "Point", "coordinates": [ -75.130048, 39.977989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw8-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3000 Island Ave Ste M-P", "LATITUDE": 39.898772, "LONGITUDE": -75.240567, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 14.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 13.0, "Total Spend": 398.0, "Total Transactions": 25.0, "Total Customers": 25.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.240567, 39.898772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj9-grk", "Name": "Nedro Food Market", "Category": "Grocery Stores", "Address": "5900 N 21st St", "LATITUDE": 40.043815, "LONGITUDE": -75.156105, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 59.0, "POI_CBG": 421010279014.0, "Median Dwell Time": 1347.0, "Total Spend": 85.0, "Total Transactions": 11.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.99, "Median Spend per Customer": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.156105, 40.043815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-p82-r49", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6800 Bustleton Ave", "LATITUDE": 40.040921, "LONGITUDE": -75.065658, "DATE_RANGE_START": 2024, "Total Visits": 378.0, "Total Visitors": 230.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 3.0, "Total Spend": 1145.0, "Total Transactions": 65.0, "Total Customers": 36.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 10.33 }, "geometry": { "type": "Point", "coordinates": [ -75.065658, 40.040921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-hbk", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "2000 Hamilton St", "LATITUDE": 39.962004, "LONGITUDE": -75.172229, "DATE_RANGE_START": 2024, "Total Visits": 2757.0, "Total Visitors": 1488.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 11.0, "Total Spend": 1124.0, "Total Transactions": 38.0, "Total Customers": 38.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.172229, 39.962004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-mp9", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1500 E Erie Ave", "LATITUDE": 40.005321, "LONGITUDE": -75.098875, "DATE_RANGE_START": 2024, "Total Visits": 386.0, "Total Visitors": 359.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 36.0, "Total Spend": 38.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.26, "Median Spend per Customer": 14.26 }, "geometry": { "type": "Point", "coordinates": [ -75.098875, 40.005321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj6-k4v", "Name": "So Korean Grill", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St Ste 120", "LATITUDE": 40.044985, "LONGITUDE": -75.117368, "DATE_RANGE_START": 2024, "Total Visits": 375.0, "Total Visitors": 294.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 10.0, "Total Spend": 2307.0, "Total Transactions": 21.0, "Total Customers": 20.0, "Median Spend per Transaction": 89.3, "Median Spend per Customer": 123.67 }, "geometry": { "type": "Point", "coordinates": [ -75.117368, 40.044985 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pg8-jjv", "Name": "Deborah's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2608 W Girard Ave", "LATITUDE": 39.97383, "LONGITUDE": -75.179259, "DATE_RANGE_START": 2024, "Total Visits": 93.0, "Total Visitors": 67.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 51.0, "Total Spend": 201.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 19.85, "Median Spend per Customer": 21.06 }, "geometry": { "type": "Point", "coordinates": [ -75.179259, 39.97383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-v75", "Name": "Buk Chon Korean Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "132 Chestnut St", "LATITUDE": 39.948233, "LONGITUDE": -75.143798, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 170.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 260.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.14, "Median Spend per Customer": 30.14 }, "geometry": { "type": "Point", "coordinates": [ -75.143798, 39.948233 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-snq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1425 Locust St", "LATITUDE": 39.948616, "LONGITUDE": -75.165899, "DATE_RANGE_START": 2024, "Total Visits": 775.0, "Total Visitors": 481.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 4.0, "Total Spend": 9407.0, "Total Transactions": 1490.0, "Total Customers": 440.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 9.37 }, "geometry": { "type": "Point", "coordinates": [ -75.165899, 39.948616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@63s-dvy-pn5", "Name": "Raising Cane's", "Category": "Restaurants and Other Eating Places", "Address": "3925 Walnut St", "LATITUDE": 39.954166, "LONGITUDE": -75.200784, "DATE_RANGE_START": 2024, "Total Visits": 1318.0, "Total Visitors": 997.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 5.0, "Total Spend": 23609.0, "Total Transactions": 1505.0, "Total Customers": 1060.0, "Median Spend per Transaction": 12.73, "Median Spend per Customer": 13.96 }, "geometry": { "type": "Point", "coordinates": [ -75.200784, 39.954166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-8y9", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "917 Filbert St", "LATITUDE": 39.952694, "LONGITUDE": -75.156218, "DATE_RANGE_START": 2024, "Total Visits": 2235.0, "Total Visitors": 1503.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 98.0, "Total Spend": 771.0, "Total Transactions": 67.0, "Total Customers": 54.0, "Median Spend per Transaction": 6.98, "Median Spend per Customer": 9.73 }, "geometry": { "type": "Point", "coordinates": [ -75.156218, 39.952694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-nwk", "Name": "The El Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1356 N Front St", "LATITUDE": 39.971812, "LONGITUDE": -75.135557, "DATE_RANGE_START": 2024, "Total Visits": 250.0, "Total Visitors": 201.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 15.0, "Total Spend": 93.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 1.5, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.135557, 39.971812 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-nwk", "Name": "Louie Louie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3611 Walnut St", "LATITUDE": 39.953483, "LONGITUDE": -75.196032, "DATE_RANGE_START": 2024, "Total Visits": 270.0, "Total Visitors": 241.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 38.0, "Total Spend": 2002.0, "Total Transactions": 28.0, "Total Customers": 20.0, "Median Spend per Transaction": 50.79, "Median Spend per Customer": 65.5 }, "geometry": { "type": "Point", "coordinates": [ -75.196032, 39.953483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-4d9", "Name": "The Pizza Store", "Category": "Restaurants and Other Eating Places", "Address": "2727 E Allegheny Ave", "LATITUDE": 39.983503, "LONGITUDE": -75.10157, "DATE_RANGE_START": 2024, "Total Visits": 158.0, "Total Visitors": 158.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 5.0, "Total Spend": 996.0, "Total Transactions": 87.0, "Total Customers": 22.0, "Median Spend per Transaction": 3.3, "Median Spend per Customer": 27.15 }, "geometry": { "type": "Point", "coordinates": [ -75.10157, 39.983503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-skf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1512 Walnut St", "LATITUDE": 39.949481, "LONGITUDE": -75.166658, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 1.0, "Total Spend": 16014.0, "Total Transactions": 1184.0, "Total Customers": 737.0, "Median Spend per Transaction": 12.75, "Median Spend per Customer": 14.91 }, "geometry": { "type": "Point", "coordinates": [ -75.166658, 39.949481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj2-mp9", "Name": "The Apple Pharmacy", "Category": "Health and Personal Care Stores", "Address": "Erie Ave @ Front St", "LATITUDE": 40.005914, "LONGITUDE": -75.127003, "DATE_RANGE_START": 2024, "Total Visits": 714.0, "Total Visitors": 509.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 54.0, "Total Spend": 184.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.127003, 40.005914 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pmb-dy9", "Name": "Little Italy Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "6 10 Fitzwater St", "LATITUDE": 39.942767, "LONGITUDE": -75.175334, "DATE_RANGE_START": 2024, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 1.0, "Total Spend": 1243.0, "Total Transactions": 76.0, "Total Customers": 63.0, "Median Spend per Transaction": 13.51, "Median Spend per Customer": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -75.175334, 39.942767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgb-hbk", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2001 Pennsylvania Ave", "LATITUDE": 39.96162, "LONGITUDE": -75.172496, "DATE_RANGE_START": 2024, "Total Visits": 1671.0, "Total Visitors": 985.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 9.0, "Total Spend": 35586.0, "Total Transactions": 1060.0, "Total Customers": 879.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 29.17 }, "geometry": { "type": "Point", "coordinates": [ -75.172496, 39.96162 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgb-m49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Girard Ave", "LATITUDE": 39.970493, "LONGITUDE": -75.154788, "DATE_RANGE_START": 2024, "Total Visits": 336.0, "Total Visitors": 267.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 1.0, "Total Spend": 5171.0, "Total Transactions": 291.0, "Total Customers": 238.0, "Median Spend per Transaction": 14.89, "Median Spend per Customer": 16.41 }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.970493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6017 N Broad St", "LATITUDE": 40.044944, "LONGITUDE": -75.142856, "DATE_RANGE_START": 2024, "Total Visits": 434.0, "Total Visitors": 147.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 6.0, "Total Spend": 11955.0, "Total Transactions": 1471.0, "Total Customers": 619.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -75.142856, 40.044944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-94v", "Name": "La tapenade", "Category": "Restaurants and Other Eating Places", "Address": "Terminal Ave", "LATITUDE": 39.87309, "LONGITUDE": -75.252083, "DATE_RANGE_START": 2024, "Total Visits": 10044.0, "Total Visitors": 7538.0, "POI_CBG": 420459800001.0, "Median Dwell Time": 30.0, "Total Spend": 3584.0, "Total Transactions": 149.0, "Total Customers": 117.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 21.2 }, "geometry": { "type": "Point", "coordinates": [ -75.252083, 39.87309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgb-kcq", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "1200 N Broad St", "LATITUDE": 39.971722, "LONGITUDE": -75.159902, "DATE_RANGE_START": 2024, "Total Visits": 207.0, "Total Visitors": 158.0, "POI_CBG": 421010140001.0, "Median Dwell Time": 3.0, "Total Spend": 1195.0, "Total Transactions": 112.0, "Total Customers": 80.0, "Median Spend per Transaction": 10.04, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.971722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pg8-c3q", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "1700 N 28th St", "LATITUDE": 39.981705, "LONGITUDE": -75.180442, "DATE_RANGE_START": 2024, "Total Visits": 138.0, "Total Visitors": 105.0, "POI_CBG": 421010149004.0, "Median Dwell Time": 11.0, "Total Spend": 1329.0, "Total Transactions": 118.0, "Total Customers": 72.0, "Median Spend per Transaction": 8.96, "Median Spend per Customer": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.180442, 39.981705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9j-zj9", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "10740 Roosevelt Blvd", "LATITUDE": 40.099682, "LONGITUDE": -75.01017, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 11.0, "Total Spend": 7804.0, "Total Transactions": 171.0, "Total Customers": 150.0, "Median Spend per Transaction": 43.7, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.01017, 40.099682 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pmd-zcq", "Name": "Los Camaradas", "Category": "Restaurants and Other Eating Places", "Address": "918 S 22nd St", "LATITUDE": 39.940827, "LONGITUDE": -75.179812, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010013003.0, "Median Dwell Time": 95.0, "Total Spend": 2664.0, "Total Transactions": 55.0, "Total Customers": 45.0, "Median Spend per Transaction": 41.36, "Median Spend per Customer": 57.23 }, "geometry": { "type": "Point", "coordinates": [ -75.179812, 39.940827 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7x-68v", "Name": "Gap Factory Store", "Category": "Clothing Stores", "Address": "2123-25 Cottman Avenue And 41 Spc 40", "LATITUDE": 40.049988, "LONGITUDE": -75.062581, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 3.0, "Total Spend": 1368.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 39.47, "Median Spend per Customer": 49.46 }, "geometry": { "type": "Point", "coordinates": [ -75.062581, 40.049988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pm6-jsq", "Name": "Taste of Punjab", "Category": "Restaurants and Other Eating Places", "Address": "2015 E Moyamensing Ave", "LATITUDE": 39.922877, "LONGITUDE": -75.15251, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010042014.0, "Median Dwell Time": 43.0, "Total Spend": 1054.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 49.77, "Median Spend per Customer": 49.77 }, "geometry": { "type": "Point", "coordinates": [ -75.15251, 39.922877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvw-hwk", "Name": "J&P Seafood", "Category": "Restaurants and Other Eating Places", "Address": "4820 Spruce St", "LATITUDE": 39.953499, "LONGITUDE": -75.218972, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 4.0, "Total Spend": 2410.0, "Total Transactions": 72.0, "Total Customers": 54.0, "Median Spend per Transaction": 27.65, "Median Spend per Customer": 32.3 }, "geometry": { "type": "Point", "coordinates": [ -75.218972, 39.953499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-3qz", "Name": "Deluxe Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8749 Frankford Ave", "LATITUDE": 40.048259, "LONGITUDE": -75.01249, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 5.0, "Total Spend": 909.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 68.73, "Median Spend per Customer": 68.73 }, "geometry": { "type": "Point", "coordinates": [ -75.01249, 40.048259 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-sh5", "Name": "La Viola", "Category": "Restaurants and Other Eating Places", "Address": "253 S 16th St Apt 1", "LATITUDE": 39.948024, "LONGITUDE": -75.168108, "DATE_RANGE_START": 2024, "Total Visits": 183.0, "Total Visitors": 169.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 1154.0, "Total Transactions": 13.0, "Total Customers": 9.0, "Median Spend per Transaction": 93.76, "Median Spend per Customer": 93.76 }, "geometry": { "type": "Point", "coordinates": [ -75.168108, 39.948024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-psq", "Name": "Applebee's", "Category": "Restaurants and Other Eating Places", "Address": "2535 Castor Ave # 37", "LATITUDE": 39.993196, "LONGITUDE": -75.092591, "DATE_RANGE_START": 2024, "Total Visits": 673.0, "Total Visitors": 519.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 42.0, "Total Spend": 2718.0, "Total Transactions": 42.0, "Total Customers": 41.0, "Median Spend per Transaction": 55.53, "Median Spend per Customer": 59.34 }, "geometry": { "type": "Point", "coordinates": [ -75.092591, 39.993196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-xkf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2445 N Broad St", "LATITUDE": 39.990664, "LONGITUDE": -75.154878, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 7.0, "Total Spend": 1773.0, "Total Transactions": 54.0, "Total Customers": 45.0, "Median Spend per Transaction": 20.51, "Median Spend per Customer": 25.36 }, "geometry": { "type": "Point", "coordinates": [ -75.154878, 39.990664 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmd-vfz", "Name": "Tsuki Sushi", "Category": "Restaurants and Other Eating Places", "Address": "2135 Walnut St", "LATITUDE": 39.951096, "LONGITUDE": -75.177135, "DATE_RANGE_START": 2024, "Total Visits": 269.0, "Total Visitors": 269.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 1.0, "Total Spend": 2673.0, "Total Transactions": 47.0, "Total Customers": 45.0, "Median Spend per Transaction": 35.58, "Median Spend per Customer": 35.58 }, "geometry": { "type": "Point", "coordinates": [ -75.177135, 39.951096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-qzz", "Name": "Randazzo's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1826 South St", "LATITUDE": 39.944329, "LONGITUDE": -75.172844, "DATE_RANGE_START": 2024, "Total Visits": 1098.0, "Total Visitors": 292.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 272.0, "Total Spend": 2945.0, "Total Transactions": 179.0, "Total Customers": 112.0, "Median Spend per Transaction": 12.23, "Median Spend per Customer": 18.58 }, "geometry": { "type": "Point", "coordinates": [ -75.172844, 39.944329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pgb-hbk", "Name": "Unit Su Vege", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 106", "LATITUDE": 39.962039, "LONGITUDE": -75.172551, "DATE_RANGE_START": 2024, "Total Visits": 354.0, "Total Visitors": 267.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 6.0, "Total Spend": 3749.0, "Total Transactions": 88.0, "Total Customers": 75.0, "Median Spend per Transaction": 42.1, "Median Spend per Customer": 46.26 }, "geometry": { "type": "Point", "coordinates": [ -75.172551, 39.962039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@63s-dvy-pn5", "Name": "Hatch & Coop", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954641, "LONGITUDE": -75.202308, "DATE_RANGE_START": 2024, "Total Visits": 375.0, "Total Visitors": 258.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 1.0, "Total Spend": 8605.0, "Total Transactions": 440.0, "Total Customers": 304.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.202308, 39.954641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-68v", "Name": "Strangelove's", "Category": "Restaurants and Other Eating Places", "Address": "216 S 11th St", "LATITUDE": 39.947987, "LONGITUDE": -75.159475, "DATE_RANGE_START": 2024, "Total Visits": 1402.0, "Total Visitors": 931.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 18.0, "Total Spend": 864.0, "Total Transactions": 21.0, "Total Customers": 18.0, "Median Spend per Transaction": 34.8, "Median Spend per Customer": 44.16 }, "geometry": { "type": "Point", "coordinates": [ -75.159475, 39.947987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-p8j-cqz", "Name": "House of Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "3520 Cottman Ave", "LATITUDE": 40.037182, "LONGITUDE": -75.042196, "DATE_RANGE_START": 2024, "Total Visits": 588.0, "Total Visitors": 421.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 5.0, "Total Spend": 892.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 56.81, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.042196, 40.037182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-phz-85f", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "5134 N 2nd St", "LATITUDE": 40.028399, "LONGITUDE": -75.127425, "DATE_RANGE_START": 2024, "Total Visits": 287.0, "Total Visitors": 159.0, "POI_CBG": 421010286006.0, "Median Dwell Time": 530.0, "Total Spend": 561.0, "Total Transactions": 59.0, "Total Customers": 37.0, "Median Spend per Transaction": 7.24, "Median Spend per Customer": 9.93 }, "geometry": { "type": "Point", "coordinates": [ -75.127425, 40.028399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-y7q", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6602 Frankford Ave @ Magee Ave", "LATITUDE": 40.030974, "LONGITUDE": -75.054824, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 99.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 7.0, "Total Spend": 869.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 14.68, "Median Spend per Customer": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.054824, 40.030974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-vvf", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St Ste 103", "LATITUDE": 39.955743, "LONGITUDE": -75.181883, "DATE_RANGE_START": 2024, "Total Visits": 10761.0, "Total Visitors": 7021.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 14.0, "Total Spend": 1158.0, "Total Transactions": 108.0, "Total Customers": 96.0, "Median Spend per Transaction": 9.16, "Median Spend per Customer": 11.32 }, "geometry": { "type": "Point", "coordinates": [ -75.181883, 39.955743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7x-cyv", "Name": "Dragon Phoenix House", "Category": "Restaurants and Other Eating Places", "Address": "2839 Tyson Ave", "LATITUDE": 40.039529, "LONGITUDE": -75.056431, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 140.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 4.0, "Total Spend": 1140.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 27.97, "Median Spend per Customer": 38.24 }, "geometry": { "type": "Point", "coordinates": [ -75.056431, 40.039529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22n@628-pmf-6x5", "Name": "Jimmy John's", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd # 4", "LATITUDE": 39.947814, "LONGITUDE": -75.193288, "DATE_RANGE_START": 2024, "Total Visits": 14692.0, "Total Visitors": 7742.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 63.0, "Total Spend": 7148.0, "Total Transactions": 531.0, "Total Customers": 371.0, "Median Spend per Transaction": 12.51, "Median Spend per Customer": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.947814 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pm9-zs5", "Name": "South Street Souvlaki", "Category": "Restaurants and Other Eating Places", "Address": "509 South St", "LATITUDE": 39.942005, "LONGITUDE": -75.150978, "DATE_RANGE_START": 2024, "Total Visits": 520.0, "Total Visitors": 469.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 5.0, "Total Spend": 2271.0, "Total Transactions": 62.0, "Total Customers": 51.0, "Median Spend per Transaction": 32.96, "Median Spend per Customer": 35.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.942005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phq-2c5", "Name": "Stenton Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7171 Stenton Ave", "LATITUDE": 40.059667, "LONGITUDE": -75.164815, "DATE_RANGE_START": 2024, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 2.0, "Total Spend": 1536.0, "Total Transactions": 72.0, "Total Customers": 54.0, "Median Spend per Transaction": 16.18, "Median Spend per Customer": 24.23 }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 40.059667 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgb-3nq", "Name": "Capriccio Cafe and Bar", "Category": "Restaurants and Other Eating Places", "Address": "110 N 16th St", "LATITUDE": 39.955441, "LONGITUDE": -75.166519, "DATE_RANGE_START": 2024, "Total Visits": 276.0, "Total Visitors": 241.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 2.0, "Total Spend": 2989.0, "Total Transactions": 261.0, "Total Customers": 163.0, "Median Spend per Transaction": 10.08, "Median Spend per Customer": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.166519, 39.955441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pm3-st9", "Name": "The Bottle Shop", "Category": "Beer, Wine, and Liquor Stores", "Address": "1616 E Passyunk Ave", "LATITUDE": 39.92954, "LONGITUDE": -75.164053, "DATE_RANGE_START": 2024, "Total Visits": 80.0, "Total Visitors": 80.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 1.0, "Total Spend": 1045.0, "Total Transactions": 47.0, "Total Customers": 21.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 25.87 }, "geometry": { "type": "Point", "coordinates": [ -75.164053, 39.92954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8m-wrk", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6401 Harbison Ave", "LATITUDE": 40.032189, "LONGITUDE": -75.063077, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 3.0, "Total Spend": 2866.0, "Total Transactions": 142.0, "Total Customers": 75.0, "Median Spend per Transaction": 15.54, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063077, 40.032189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@63s-dvq-4d9", "Name": "S and J Seafood", "Category": "Specialty Food Stores", "Address": "713 S 52nd St", "LATITUDE": 39.948539, "LONGITUDE": -75.227093, "DATE_RANGE_START": 2024, "Total Visits": 257.0, "Total Visitors": 116.0, "POI_CBG": 421010080002.0, "Median Dwell Time": 56.0, "Total Spend": 2243.0, "Total Transactions": 78.0, "Total Customers": 55.0, "Median Spend per Transaction": 23.73, "Median Spend per Customer": 29.3 }, "geometry": { "type": "Point", "coordinates": [ -75.227093, 39.948539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pm4-hdv", "Name": "Brunics", "Category": "Restaurants and Other Eating Places", "Address": "2000 S 17th St", "LATITUDE": 39.926158, "LONGITUDE": -75.174485, "DATE_RANGE_START": 2024, "Total Visits": 466.0, "Total Visitors": 395.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 100.0, "Total Spend": 63.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 15.66, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.174485, 39.926158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj5-g8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4017 N 5th St # 59", "LATITUDE": 40.012497, "LONGITUDE": -75.135542, "DATE_RANGE_START": 2024, "Total Visits": 537.0, "Total Visitors": 425.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 4.0, "Total Spend": 1750.0, "Total Transactions": 187.0, "Total Customers": 97.0, "Median Spend per Transaction": 8.19, "Median Spend per Customer": 12.23 }, "geometry": { "type": "Point", "coordinates": [ -75.135542, 40.012497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvr-zmk", "Name": "Value Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "5901 Woodland Ave", "LATITUDE": 39.931943, "LONGITUDE": -75.226697, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 149.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 14.0, "Total Spend": 129.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 49.08, "Median Spend per Customer": 49.08 }, "geometry": { "type": "Point", "coordinates": [ -75.226697, 39.931943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-b49", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3300 S Broad St # 10", "LATITUDE": 39.909192, "LONGITUDE": -75.174029, "DATE_RANGE_START": 2024, "Total Visits": 1320.0, "Total Visitors": 1230.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 5.0, "Total Spend": 5249.0, "Total Transactions": 244.0, "Total Customers": 137.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.174029, 39.909192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-sbk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1500 Spruce St", "LATITUDE": 39.947021, "LONGITUDE": -75.166799, "DATE_RANGE_START": 2024, "Total Visits": 810.0, "Total Visitors": 492.0, "POI_CBG": 421010012021.0, "Median Dwell Time": 5.0, "Total Spend": 9733.0, "Total Transactions": 602.0, "Total Customers": 319.0, "Median Spend per Transaction": 11.97, "Median Spend per Customer": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.166799, 39.947021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-66k", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1201 Walnut St", "LATITUDE": 39.949053, "LONGITUDE": -75.160719, "DATE_RANGE_START": 2024, "Total Visits": 2667.0, "Total Visitors": 1723.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 9.0, "Total Spend": 3448.0, "Total Transactions": 203.0, "Total Customers": 128.0, "Median Spend per Transaction": 10.25, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.160719, 39.949053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-d35", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2300 S Broad St", "LATITUDE": 39.921823, "LONGITUDE": -75.170522, "DATE_RANGE_START": 2024, "Total Visits": 928.0, "Total Visitors": 557.0, "POI_CBG": 421010039012.0, "Median Dwell Time": 5.0, "Total Spend": 291.0, "Total Transactions": 37.0, "Total Customers": 26.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 7.28 }, "geometry": { "type": "Point", "coordinates": [ -75.170522, 39.921823 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-94v", "Name": "Torrid", "Category": "Clothing Stores", "Address": "1001 Market St", "LATITUDE": 39.952294, "LONGITUDE": -75.15687, "DATE_RANGE_START": 2024, "Total Visits": 13727.0, "Total Visitors": 7998.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 1129.0, "Total Transactions": 29.0, "Total Customers": 29.0, "Median Spend per Transaction": 30.45, "Median Spend per Customer": 30.45 }, "geometry": { "type": "Point", "coordinates": [ -75.15687, 39.952294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgy-k9f", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8500 Henry Ave Ste 40A", "LATITUDE": 40.063427, "LONGITUDE": -75.236432, "DATE_RANGE_START": 2024, "Total Visits": 116.0, "Total Visitors": 116.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 1.0, "Total Spend": 1233.0, "Total Transactions": 76.0, "Total Customers": 65.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 11.34 }, "geometry": { "type": "Point", "coordinates": [ -75.236432, 40.063427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-ct9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "8525 Frankford Ave", "LATITUDE": 40.045771, "LONGITUDE": -75.015532, "DATE_RANGE_START": 2024, "Total Visits": 694.0, "Total Visitors": 545.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 5.0, "Total Spend": 3068.0, "Total Transactions": 124.0, "Total Customers": 87.0, "Median Spend per Transaction": 13.32, "Median Spend per Customer": 16.67 }, "geometry": { "type": "Point", "coordinates": [ -75.015532, 40.045771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-j7q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1826 Chestnut St # 30", "LATITUDE": 39.9515, "LONGITUDE": -75.171743, "DATE_RANGE_START": 2024, "Total Visits": 1245.0, "Total Visitors": 945.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 6.0, "Total Spend": 11113.0, "Total Transactions": 639.0, "Total Customers": 403.0, "Median Spend per Transaction": 11.52, "Median Spend per Customer": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.171743, 39.9515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvy-tjv", "Name": "Children's Hospital Of Philadelphia", "Category": "Health and Personal Care Stores", "Address": "3401 Civic Center Blvd", "LATITUDE": 39.94747, "LONGITUDE": -75.195382, "DATE_RANGE_START": 2024, "Total Visits": 1253.0, "Total Visitors": 441.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 99.0, "Total Spend": 20.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.46, "Median Spend per Customer": 7.46 }, "geometry": { "type": "Point", "coordinates": [ -75.195382, 39.94747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-jqf", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "2104 Market St", "LATITUDE": 39.953458, "LONGITUDE": -75.175475, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 282.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 3.0, "Total Spend": 256.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 14.88 }, "geometry": { "type": "Point", "coordinates": [ -75.175475, 39.953458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-bzf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.913287, "LONGITUDE": -75.157286, "DATE_RANGE_START": 2024, "Total Visits": 1697.0, "Total Visitors": 1697.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 20.0, "Total Spend": 443.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 64.79, "Median Spend per Customer": 85.84 }, "geometry": { "type": "Point", "coordinates": [ -75.157286, 39.913287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6240 Germantown Ave", "LATITUDE": 40.042919, "LONGITUDE": -75.181039, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010238002.0, "Median Dwell Time": 2.0, "Total Spend": 193.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 11.92, "Median Spend per Customer": 11.92 }, "geometry": { "type": "Point", "coordinates": [ -75.181039, 40.042919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-ph5-qfz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6001 Lancaster Ave Ste A", "LATITUDE": 39.983076, "LONGITUDE": -75.241701, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 3.0, "Total Spend": 6259.0, "Total Transactions": 222.0, "Total Customers": 147.0, "Median Spend per Transaction": 25.72, "Median Spend per Customer": 29.72 }, "geometry": { "type": "Point", "coordinates": [ -75.241701, 39.983076 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pg4-hyv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "42 W Chelten Ave", "LATITUDE": 40.034612, "LONGITUDE": -75.175438, "DATE_RANGE_START": 2024, "Total Visits": 1173.0, "Total Visitors": 616.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 22.0, "Total Spend": 105.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 19.39, "Median Spend per Customer": 32.9 }, "geometry": { "type": "Point", "coordinates": [ -75.175438, 40.034612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-3dv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4424 N Broad St", "LATITUDE": 40.021226, "LONGITUDE": -75.14987, "DATE_RANGE_START": 2024, "Total Visits": 889.0, "Total Visitors": 711.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 12.0, "Total Spend": 333.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 12.33, "Median Spend per Customer": 12.33 }, "geometry": { "type": "Point", "coordinates": [ -75.14987, 40.021226 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p8d-j5f", "Name": "Boulevard Tire Shop", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4102 Paul St", "LATITUDE": 40.00655, "LONGITUDE": -75.08972, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 137.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 6.0, "Total Spend": 3120.0, "Total Transactions": 28.0, "Total Customers": 18.0, "Median Spend per Transaction": 65.0, "Median Spend per Customer": 67.5 }, "geometry": { "type": "Point", "coordinates": [ -75.08972, 40.00655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm4-syv", "Name": "J&J Super Market", "Category": "Grocery Stores", "Address": "1839 S 7th St", "LATITUDE": 39.925365, "LONGITUDE": -75.157449, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 224.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 7.0, "Total Spend": 34.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 4.5, "Median Spend per Customer": 12.75 }, "geometry": { "type": "Point", "coordinates": [ -75.157449, 39.925365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-223@63s-dvx-xh5", "Name": "Joe's Food Market", "Category": "Specialty Food Stores", "Address": "4517 Baltimore Ave", "LATITUDE": 39.949235, "LONGITUDE": -75.21368, "DATE_RANGE_START": 2024, "Total Visits": 386.0, "Total Visitors": 274.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 49.0, "Total Spend": 898.0, "Total Transactions": 50.0, "Total Customers": 39.0, "Median Spend per Transaction": 16.26, "Median Spend per Customer": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.21368, 39.949235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-6zf", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "1356 Franklin Mills Cir", "LATITUDE": 40.085956, "LONGITUDE": -74.963406, "DATE_RANGE_START": 2024, "Total Visits": 1298.0, "Total Visitors": 993.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 15.0, "Total Spend": 10481.0, "Total Transactions": 294.0, "Total Customers": 234.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -74.963406, 40.085956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvy-pjv", "Name": "New Delhi Indian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4004 Chestnut St", "LATITUDE": 39.955405, "LONGITUDE": -75.202622, "DATE_RANGE_START": 2024, "Total Visits": 245.0, "Total Visitors": 216.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 7.0, "Total Spend": 5102.0, "Total Transactions": 130.0, "Total Customers": 104.0, "Median Spend per Transaction": 28.71, "Median Spend per Customer": 43.37 }, "geometry": { "type": "Point", "coordinates": [ -75.202622, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm4-sbk", "Name": "Izzy's 33", "Category": "Restaurants and Other Eating Places", "Address": "1703 S 9th St", "LATITUDE": 39.927844, "LONGITUDE": -75.159073, "DATE_RANGE_START": 2024, "Total Visits": 556.0, "Total Visitors": 353.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 10.0, "Total Spend": 2041.0, "Total Transactions": 50.0, "Total Customers": 43.0, "Median Spend per Transaction": 41.13, "Median Spend per Customer": 47.18 }, "geometry": { "type": "Point", "coordinates": [ -75.159073, 39.927844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phz-435", "Name": "El Punto", "Category": "Restaurants and Other Eating Places", "Address": "4460 Whitaker Ave", "LATITUDE": 40.017185, "LONGITUDE": -75.116902, "DATE_RANGE_START": 2024, "Total Visits": 158.0, "Total Visitors": 158.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 15.0, "Total Spend": 3980.0, "Total Transactions": 166.0, "Total Customers": 130.0, "Median Spend per Transaction": 20.13, "Median Spend per Customer": 27.5 }, "geometry": { "type": "Point", "coordinates": [ -75.116902, 40.017185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnw-m49", "Name": "Apricot Stone", "Category": "Restaurants and Other Eating Places", "Address": "1040 N American St Ste 601", "LATITUDE": 39.967347, "LONGITUDE": -75.140711, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 150.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 1.0, "Total Spend": 3228.0, "Total Transactions": 39.0, "Total Customers": 34.0, "Median Spend per Transaction": 67.06, "Median Spend per Customer": 90.82 }, "geometry": { "type": "Point", "coordinates": [ -75.140711, 39.967347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-rx5", "Name": "A La Mousse", "Category": "Restaurants and Other Eating Places", "Address": "1622 South St", "LATITUDE": 39.943998, "LONGITUDE": -75.169587, "DATE_RANGE_START": 2024, "Total Visits": 103.0, "Total Visitors": 103.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 16.0, "Total Spend": 4668.0, "Total Transactions": 236.0, "Total Customers": 194.0, "Median Spend per Transaction": 16.31, "Median Spend per Customer": 16.91 }, "geometry": { "type": "Point", "coordinates": [ -75.169587, 39.943998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7z-xnq", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "5822 Roosevelt Blvd", "LATITUDE": 40.032765, "LONGITUDE": -75.083361, "DATE_RANGE_START": 2024, "Total Visits": 462.0, "Total Visitors": 415.0, "POI_CBG": 421010312003.0, "Median Dwell Time": 11.0, "Total Spend": 6298.0, "Total Transactions": 438.0, "Total Customers": 316.0, "Median Spend per Transaction": 12.57, "Median Spend per Customer": 14.65 }, "geometry": { "type": "Point", "coordinates": [ -75.083361, 40.032765 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pgb-g8v", "Name": "Peddler Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2100 Spring St", "LATITUDE": 39.958253, "LONGITUDE": -75.174232, "DATE_RANGE_START": 2024, "Total Visits": 309.0, "Total Visitors": 295.0, "POI_CBG": 421010003002.0, "Median Dwell Time": 1.0, "Total Spend": 2624.0, "Total Transactions": 348.0, "Total Customers": 186.0, "Median Spend per Transaction": 6.5, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174232, 39.958253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-kvf", "Name": "DFTI Boutique", "Category": "Clothing Stores", "Address": "2032 Chestnut St", "LATITUDE": 39.951956, "LONGITUDE": -75.174859, "DATE_RANGE_START": 2024, "Total Visits": 1330.0, "Total Visitors": 1065.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 31.0, "Total Spend": 5777.0, "Total Transactions": 51.0, "Total Customers": 50.0, "Median Spend per Transaction": 80.0, "Median Spend per Customer": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174859, 39.951956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22p@628-pmb-8y9", "Name": "Carter's", "Category": "Clothing Stores", "Address": "907-937A Market St # C220", "LATITUDE": 39.952104, "LONGITUDE": -75.155399, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 1518.0, "Total Transactions": 49.0, "Total Customers": 47.0, "Median Spend per Transaction": 25.8, "Median Spend per Customer": 30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155399, 39.952104 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pmb-v4v", "Name": "Charlie's", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "210 Market St", "LATITUDE": 39.949803, "LONGITUDE": -75.144118, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 853.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 2844.0, "Total Transactions": 240.0, "Total Customers": 165.0, "Median Spend per Transaction": 9.36, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.144118, 39.949803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1443 S 7th St", "LATITUDE": 39.930298, "LONGITUDE": -75.155924, "DATE_RANGE_START": 2024, "Total Visits": 613.0, "Total Visitors": 65.0, "POI_CBG": 421010028013.0, "Median Dwell Time": 909.0, "Total Spend": 1651.0, "Total Transactions": 90.0, "Total Customers": 75.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 17.29 }, "geometry": { "type": "Point", "coordinates": [ -75.155924, 39.930298 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-8n5", "Name": "Columbia Sportswear", "Category": "Clothing Stores", "Address": "1001 Market St Unit C205", "LATITUDE": 39.951969, "LONGITUDE": -75.157009, "DATE_RANGE_START": 2024, "Total Visits": 1194.0, "Total Visitors": 928.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 23.0, "Total Spend": 2885.0, "Total Transactions": 75.0, "Total Customers": 72.0, "Median Spend per Transaction": 29.74, "Median Spend per Customer": 32.34 }, "geometry": { "type": "Point", "coordinates": [ -75.157009, 39.951969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pfx-kxq", "Name": "Funny Monk Emporium", "Category": "Other Miscellaneous Store Retailers", "Address": "4369 Cresson St", "LATITUDE": 40.026687, "LONGITUDE": -75.224098, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010214003.0, "Median Dwell Time": 1.0, "Total Spend": 4505.0, "Total Transactions": 132.0, "Total Customers": 105.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.224098, 40.026687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-pn5", "Name": "Tortilleria San Roman", "Category": "Restaurants and Other Eating Places", "Address": "951 S 9th St", "LATITUDE": 39.937643, "LONGITUDE": -75.157989, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 126.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 2.0, "Total Spend": 113.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 20.88 }, "geometry": { "type": "Point", "coordinates": [ -75.157989, 39.937643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pj9-q4v", "Name": "New China", "Category": "Restaurants and Other Eating Places", "Address": "1624 W Olney Ave", "LATITUDE": 40.038791, "LONGITUDE": -75.149331, "DATE_RANGE_START": 2024, "Total Visits": 304.0, "Total Visitors": 278.0, "POI_CBG": 421010278003.0, "Median Dwell Time": 55.0, "Total Spend": 118.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 18.05, "Median Spend per Customer": 18.05 }, "geometry": { "type": "Point", "coordinates": [ -75.149331, 40.038791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@63s-dvw-mzf", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "38 S 52nd St # 42", "LATITUDE": 39.958779, "LONGITUDE": -75.225571, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010085007.0, "Median Dwell Time": 16.0, "Total Spend": 384.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 75.0, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.225571, 39.958779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pnx-8n5", "Name": "7th & Fairmont Market", "Category": "Grocery Stores", "Address": "Fairmount Ave", "LATITUDE": 39.964034, "LONGITUDE": -75.148837, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 180.0, "POI_CBG": 421010131001.0, "Median Dwell Time": 17.0, "Total Spend": 4990.0, "Total Transactions": 453.0, "Total Customers": 134.0, "Median Spend per Transaction": 9.36, "Median Spend per Customer": 11.44 }, "geometry": { "type": "Point", "coordinates": [ -75.148837, 39.964034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-223@628-pmb-fxq", "Name": "Greene Street", "Category": "Clothing Stores", "Address": "700 South St", "LATITUDE": 39.942054, "LONGITUDE": -75.154104, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 1.0, "Total Spend": 437.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 28.95, "Median Spend per Customer": 28.95 }, "geometry": { "type": "Point", "coordinates": [ -75.154104, 39.942054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm3-wff", "Name": "Passyunk Market", "Category": "Grocery Stores", "Address": "1407 E Passyunk Ave", "LATITUDE": 39.931424, "LONGITUDE": -75.161293, "DATE_RANGE_START": 2024, "Total Visits": 367.0, "Total Visitors": 313.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 2.0, "Total Spend": 1301.0, "Total Transactions": 70.0, "Total Customers": 28.0, "Median Spend per Transaction": 16.8, "Median Spend per Customer": 17.97 }, "geometry": { "type": "Point", "coordinates": [ -75.161293, 39.931424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-z75", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2340 W Oregon Ave", "LATITUDE": 39.919174, "LONGITUDE": -75.188615, "DATE_RANGE_START": 2024, "Total Visits": 438.0, "Total Visitors": 361.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 6.0, "Total Spend": 486.0, "Total Transactions": 33.0, "Total Customers": 30.0, "Median Spend per Transaction": 13.72, "Median Spend per Customer": 13.72 }, "geometry": { "type": "Point", "coordinates": [ -75.188615, 39.919174 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6hq", "Name": "MilkBoy", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1100 Chestnut St", "LATITUDE": 39.950114, "LONGITUDE": -75.15876, "DATE_RANGE_START": 2024, "Total Visits": 5134.0, "Total Visitors": 2192.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 96.0, "Total Spend": 1488.0, "Total Transactions": 41.0, "Total Customers": 30.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 29.3 }, "geometry": { "type": "Point", "coordinates": [ -75.15876, 39.950114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7qz", "Name": "Green Eggs Cafe", "Category": "Restaurants and Other Eating Places", "Address": "212 S 13th St", "LATITUDE": 39.9483, "LONGITUDE": -75.162434, "DATE_RANGE_START": 2024, "Total Visits": 288.0, "Total Visitors": 261.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 1.0, "Total Spend": 457.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 91.75, "Median Spend per Customer": 91.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162434, 39.9483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7v-dvz", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "2047 Cottman Ave", "LATITUDE": 40.050579, "LONGITUDE": -75.06439, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 204.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 3.0, "Total Spend": 613.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 99.99, "Median Spend per Customer": 99.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06439, 40.050579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj3-cbk", "Name": "Furniture Mecca", "Category": "Furniture Stores", "Address": "1430 W Hunting Park Ave", "LATITUDE": 40.016867, "LONGITUDE": -75.151062, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 186.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 4.0, "Total Spend": 8206.0, "Total Transactions": 7.0, "Total Customers": 4.0, "Median Spend per Transaction": 1321.92, "Median Spend per Customer": 1321.92 }, "geometry": { "type": "Point", "coordinates": [ -75.151062, 40.016867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phq-rp9", "Name": "Hesaias Wigs", "Category": "Health and Personal Care Stores", "Address": "1905 E Washington Ln", "LATITUDE": 40.066299, "LONGITUDE": -75.159298, "DATE_RANGE_START": 2024, "Total Visits": 72.0, "Total Visitors": 72.0, "POI_CBG": 421010263023.0, "Median Dwell Time": 4.0, "Total Spend": 48.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.15, "Median Spend per Customer": 18.15 }, "geometry": { "type": "Point", "coordinates": [ -75.159298, 40.066299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp2-rp9", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "2200 Wheatsheaf Ln Ste E3", "LATITUDE": 39.998875, "LONGITUDE": -75.091897, "DATE_RANGE_START": 2024, "Total Visits": 5358.0, "Total Visitors": 2950.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 23.0, "Total Spend": 2653.0, "Total Transactions": 86.0, "Total Customers": 78.0, "Median Spend per Transaction": 22.08, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.091897, 39.998875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pnx-g49", "Name": "Fishtown Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1802 Frankford Ave", "LATITUDE": 39.977009, "LONGITUDE": -75.131937, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010157003.0, "Median Dwell Time": null, "Total Spend": 2347.0, "Total Transactions": 66.0, "Total Customers": 55.0, "Median Spend per Transaction": 16.15, "Median Spend per Customer": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.131937, 39.977009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-hkf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1919 Market St Ste 150", "LATITUDE": 39.953725, "LONGITUDE": -75.172706, "DATE_RANGE_START": 2024, "Total Visits": 1357.0, "Total Visitors": 981.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 5.0, "Total Spend": 7373.0, "Total Transactions": 294.0, "Total Customers": 186.0, "Median Spend per Transaction": 11.96, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172706, 39.953725 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pmb-249", "Name": "Jack B Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "748 S 4th St", "LATITUDE": 39.939011, "LONGITUDE": -75.150012, "DATE_RANGE_START": 2024, "Total Visits": 450.0, "Total Visitors": 355.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 7.0, "Total Spend": 697.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 66.96, "Median Spend per Customer": 75.05 }, "geometry": { "type": "Point", "coordinates": [ -75.150012, 39.939011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-phy-hdv", "Name": "Kim's Market", "Category": "Grocery Stores", "Address": "4701 N 5th St", "LATITUDE": 40.022409, "LONGITUDE": -75.133408, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 205.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 16.0, "Total Spend": 30.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 6.82, "Median Spend per Customer": 6.82 }, "geometry": { "type": "Point", "coordinates": [ -75.133408, 40.022409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-2kz", "Name": "Marshalls", "Category": "Clothing Stores", "Address": "9169 Roosevelt Blvd", "LATITUDE": 40.075387, "LONGITUDE": -75.032059, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 39.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 15.0, "Total Spend": 13402.0, "Total Transactions": 262.0, "Total Customers": 225.0, "Median Spend per Transaction": 31.3, "Median Spend per Customer": 31.29 }, "geometry": { "type": "Point", "coordinates": [ -75.032059, 40.075387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-jgk", "Name": "The Foto Club", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3743 Frankford Ave", "LATITUDE": 40.000866, "LONGITUDE": -75.097152, "DATE_RANGE_START": 2024, "Total Visits": 236.0, "Total Visitors": 179.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 47.0, "Total Spend": 2059.0, "Total Transactions": 63.0, "Total Customers": 42.0, "Median Spend per Transaction": 29.42, "Median Spend per Customer": 31.73 }, "geometry": { "type": "Point", "coordinates": [ -75.097152, 40.000866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1334 Windrim Ave", "LATITUDE": 40.029611, "LONGITUDE": -75.145496, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 16.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 7.0, "Total Spend": 5919.0, "Total Transactions": 319.0, "Total Customers": 204.0, "Median Spend per Transaction": 12.71, "Median Spend per Customer": 17.58 }, "geometry": { "type": "Point", "coordinates": [ -75.145496, 40.029611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgj-9cq", "Name": "YOLO Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1632 W Susquehanna Ave # 1662", "LATITUDE": 39.986939, "LONGITUDE": -75.160319, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010167024.0, "Median Dwell Time": 4.0, "Total Spend": 59.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 22.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160319, 39.986939 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7z-7nq", "Name": "Big Ben Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7266 Rising Sun Ave", "LATITUDE": 40.061389, "LONGITUDE": -75.084195, "DATE_RANGE_START": 2024, "Total Visits": 157.0, "Total Visitors": 157.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 13.0, "Total Spend": 4124.0, "Total Transactions": 150.0, "Total Customers": 92.0, "Median Spend per Transaction": 23.43, "Median Spend per Customer": 43.68 }, "geometry": { "type": "Point", "coordinates": [ -75.084195, 40.061389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-phy-kmk", "Name": "El Sabor De Maria", "Category": "Restaurants and Other Eating Places", "Address": "4903 N 5th St", "LATITUDE": 40.025858, "LONGITUDE": -75.132587, "DATE_RANGE_START": 2024, "Total Visits": 2670.0, "Total Visitors": 2150.0, "POI_CBG": 421010286003.0, "Median Dwell Time": 16.0, "Total Spend": 1346.0, "Total Transactions": 32.0, "Total Customers": 24.0, "Median Spend per Transaction": 33.28, "Median Spend per Customer": 44.81 }, "geometry": { "type": "Point", "coordinates": [ -75.132587, 40.025858 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-3t9", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.038389, "LONGITUDE": -75.109165, "DATE_RANGE_START": 2024, "Total Visits": 469.0, "Total Visitors": 429.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 6.0, "Total Spend": 579.0, "Total Transactions": 38.0, "Total Customers": 26.0, "Median Spend per Transaction": 13.77, "Median Spend per Customer": 16.33 }, "geometry": { "type": "Point", "coordinates": [ -75.109165, 40.038389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-575", "Name": "Aldo's Pizzarama", "Category": "Restaurants and Other Eating Places", "Address": "10201 Bustleton Ave", "LATITUDE": 40.108537, "LONGITUDE": -75.025505, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 187.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 1.0, "Total Spend": 2307.0, "Total Transactions": 76.0, "Total Customers": 61.0, "Median Spend per Transaction": 29.18, "Median Spend per Customer": 32.75 }, "geometry": { "type": "Point", "coordinates": [ -75.025505, 40.108537 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-6rk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "6100 Frankford Ave", "LATITUDE": 40.02749, "LONGITUDE": -75.064359, "DATE_RANGE_START": 2024, "Total Visits": 386.0, "Total Visitors": 328.0, "POI_CBG": 421010317003.0, "Median Dwell Time": 4.0, "Total Spend": 7821.0, "Total Transactions": 567.0, "Total Customers": 383.0, "Median Spend per Transaction": 11.92, "Median Spend per Customer": 15.57 }, "geometry": { "type": "Point", "coordinates": [ -75.064359, 40.02749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-9j9", "Name": "Bindlestiff Books", "Category": "Book Stores and News Dealers", "Address": "4530 Baltimore Ave", "LATITUDE": 39.948776, "LONGITUDE": -75.213817, "DATE_RANGE_START": 2024, "Total Visits": 30.0, "Total Visitors": 30.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 13.0, "Total Spend": 68.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 11.87, "Median Spend per Customer": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.213817, 39.948776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-n3q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "701 W Lehigh Ave", "LATITUDE": 39.993434, "LONGITUDE": -75.144057, "DATE_RANGE_START": 2024, "Total Visits": 324.0, "Total Visitors": 241.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 7.0, "Total Spend": 283.0, "Total Transactions": 11.0, "Total Customers": 7.0, "Median Spend per Transaction": 25.87, "Median Spend per Customer": 39.38 }, "geometry": { "type": "Point", "coordinates": [ -75.144057, 39.993434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pp5-5vf", "Name": "Buzz Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1800 N Howard St", "LATITUDE": 39.977401, "LONGITUDE": -75.135043, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010157002.0, "Median Dwell Time": 1.0, "Total Spend": 113.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 34.92, "Median Spend per Customer": 34.92 }, "geometry": { "type": "Point", "coordinates": [ -75.135043, 39.977401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph6-rkz", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "5256 W Jefferson St", "LATITUDE": 39.979897, "LONGITUDE": -75.227236, "DATE_RANGE_START": 2024, "Total Visits": 74.0, "Total Visitors": 55.0, "POI_CBG": 421010119003.0, "Median Dwell Time": 1.0, "Total Spend": 276.0, "Total Transactions": 29.0, "Total Customers": 20.0, "Median Spend per Transaction": 8.88, "Median Spend per Customer": 8.25 }, "geometry": { "type": "Point", "coordinates": [ -75.227236, 39.979897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pft-z9f", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032068, "LONGITUDE": -75.213943, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 12.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 1.0, "Total Spend": 5291.0, "Total Transactions": 494.0, "Total Customers": 304.0, "Median Spend per Transaction": 9.86, "Median Spend per Customer": 12.86 }, "geometry": { "type": "Point", "coordinates": [ -75.213943, 40.032068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-phy-qs5", "Name": "Torres Grocery", "Category": "Grocery Stores", "Address": "4100 N Fairhill St", "LATITUDE": 40.013759, "LONGITUDE": -75.137021, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 18.0, "POI_CBG": 421010197001.0, "Median Dwell Time": 1.0, "Total Spend": 147.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 11.36, "Median Spend per Customer": 11.36 }, "geometry": { "type": "Point", "coordinates": [ -75.137021, 40.013759 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp4-kxq", "Name": "Quick Stop", "Category": "Grocery Stores", "Address": "2518 Frankford Ave", "LATITUDE": 39.983855, "LONGITUDE": -75.125542, "DATE_RANGE_START": 2024, "Total Visits": 463.0, "Total Visitors": 228.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 9.0, "Total Spend": 7993.0, "Total Transactions": 591.0, "Total Customers": 362.0, "Median Spend per Transaction": 10.27, "Median Spend per Customer": 16.66 }, "geometry": { "type": "Point", "coordinates": [ -75.125542, 39.983855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-hnq", "Name": "Dolce Carini", "Category": "Restaurants and Other Eating Places", "Address": "1929 Chestnut St", "LATITUDE": 39.952152, "LONGITUDE": -75.172975, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 303.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 6.0, "Total Spend": 2409.0, "Total Transactions": 186.0, "Total Customers": 103.0, "Median Spend per Transaction": 12.38, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.172975, 39.952152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm9-zs5", "Name": "Ishkabibble's", "Category": "Restaurants and Other Eating Places", "Address": "517 South St", "LATITUDE": 39.942066, "LONGITUDE": -75.151372, "DATE_RANGE_START": 2024, "Total Visits": 241.0, "Total Visitors": 172.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 28.0, "Total Spend": 184.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 69.7, "Median Spend per Customer": 69.7 }, "geometry": { "type": "Point", "coordinates": [ -75.151372, 39.942066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-2zf", "Name": "Union Tap House", "Category": "Restaurants and Other Eating Places", "Address": "4801 Umbria St", "LATITUDE": 40.032584, "LONGITUDE": -75.232438, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 122.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 17.0, "Total Spend": 975.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 52.08, "Median Spend per Customer": 58.93 }, "geometry": { "type": "Point", "coordinates": [ -75.232438, 40.032584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pgb-6p9", "Name": "Bad Brother", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "726 N 24th St", "LATITUDE": 39.968483, "LONGITUDE": -75.176927, "DATE_RANGE_START": 2024, "Total Visits": 46.0, "Total Visitors": 46.0, "POI_CBG": 421010136011.0, "Median Dwell Time": null, "Total Spend": 171.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 29.93, "Median Spend per Customer": 42.68 }, "geometry": { "type": "Point", "coordinates": [ -75.176927, 39.968483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-5vf", "Name": "Mario Brothers Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2224 Cottman Ave", "LATITUDE": 40.048464, "LONGITUDE": -75.061807, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 154.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 8.0, "Total Spend": 3673.0, "Total Transactions": 124.0, "Total Customers": 87.0, "Median Spend per Transaction": 27.04, "Median Spend per Customer": 29.63 }, "geometry": { "type": "Point", "coordinates": [ -75.061807, 40.048464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dvy-zpv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4322 Market St", "LATITUDE": 39.957784, "LONGITUDE": -75.209056, "DATE_RANGE_START": 2024, "Total Visits": 308.0, "Total Visitors": 255.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 5.0, "Total Spend": 16526.0, "Total Transactions": 845.0, "Total Customers": 490.0, "Median Spend per Transaction": 15.05, "Median Spend per Customer": 19.3 }, "geometry": { "type": "Point", "coordinates": [ -75.209056, 39.957784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-php-6kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "8005 Ogontz Ave", "LATITUDE": 40.073726, "LONGITUDE": -75.157954, "DATE_RANGE_START": 2024, "Total Visits": 1003.0, "Total Visitors": 814.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 1.0, "Total Spend": 1663.0, "Total Transactions": 84.0, "Total Customers": 75.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157954, 40.073726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kcq", "Name": "Almaz Cafe", "Category": "Restaurants and Other Eating Places", "Address": "140 S 20th St", "LATITUDE": 39.950811, "LONGITUDE": -75.173919, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 145.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 54.0, "Total Spend": 794.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 30.91, "Median Spend per Customer": 31.51 }, "geometry": { "type": "Point", "coordinates": [ -75.173919, 39.950811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p9w-7t9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "10901C Bustleton Ave", "LATITUDE": 40.112307, "LONGITUDE": -75.022895, "DATE_RANGE_START": 2024, "Total Visits": 854.0, "Total Visitors": 621.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 4.0, "Total Spend": 3847.0, "Total Transactions": 184.0, "Total Customers": 108.0, "Median Spend per Transaction": 11.69, "Median Spend per Customer": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.022895, 40.112307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9k-3dv", "Name": "Jo-Ann Fabric and Craft Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103116, "LONGITUDE": -75.009433, "DATE_RANGE_START": 2024, "Total Visits": 578.0, "Total Visitors": 545.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 7.0, "Total Spend": 6250.0, "Total Transactions": 245.0, "Total Customers": 155.0, "Median Spend per Transaction": 13.86, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.009433, 40.103116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pmb-fxq", "Name": "Wooden Shoe Books", "Category": "Book Stores and News Dealers", "Address": "704 South St", "LATITUDE": 39.94201, "LONGITUDE": -75.154214, "DATE_RANGE_START": 2024, "Total Visits": 752.0, "Total Visitors": 664.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 4.0, "Total Spend": 523.0, "Total Transactions": 17.0, "Total Customers": 16.0, "Median Spend per Transaction": 20.51, "Median Spend per Customer": 22.1 }, "geometry": { "type": "Point", "coordinates": [ -75.154214, 39.94201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@63s-dwf-syv", "Name": "Saladworks", "Category": "Restaurants and Other Eating Places", "Address": "2946 Island Ave", "LATITUDE": 39.899825, "LONGITUDE": -75.241379, "DATE_RANGE_START": 2024, "Total Visits": 1189.0, "Total Visitors": 903.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 13.0, "Total Spend": 9339.0, "Total Transactions": 557.0, "Total Customers": 402.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 16.18 }, "geometry": { "type": "Point", "coordinates": [ -75.241379, 39.899825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-223@628-pmd-skf", "Name": "Social House", "Category": "Restaurants and Other Eating Places", "Address": "2100 South St", "LATITUDE": 39.944966, "LONGITUDE": -75.177113, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 1.0, "Total Spend": 445.0, "Total Transactions": 65.0, "Total Customers": 50.0, "Median Spend per Transaction": 6.16, "Median Spend per Customer": 7.41 }, "geometry": { "type": "Point", "coordinates": [ -75.177113, 39.944966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-zmk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5601 Chestnut St", "LATITUDE": 39.960742, "LONGITUDE": -75.234226, "DATE_RANGE_START": 2024, "Total Visits": 1635.0, "Total Visitors": 918.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 11.0, "Total Spend": 654.0, "Total Transactions": 43.0, "Total Customers": 34.0, "Median Spend per Transaction": 13.68, "Median Spend per Customer": 15.62 }, "geometry": { "type": "Point", "coordinates": [ -75.234226, 39.960742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-b49", "Name": "R.E. Michel", "Category": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers", "Address": "333 E Hunting Park Ave", "LATITUDE": 40.013533, "LONGITUDE": -75.120176, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 100.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 29.0, "Total Spend": 11765.0, "Total Transactions": 26.0, "Total Customers": 8.0, "Median Spend per Transaction": 83.59, "Median Spend per Customer": 422.26 }, "geometry": { "type": "Point", "coordinates": [ -75.120176, 40.013533 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-h3q", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3850 Lancaster Ave", "LATITUDE": 39.96127, "LONGITUDE": -75.199357, "DATE_RANGE_START": 2024, "Total Visits": 259.0, "Total Visitors": 128.0, "POI_CBG": 421010091003.0, "Median Dwell Time": 121.0, "Total Spend": 3175.0, "Total Transactions": 87.0, "Total Customers": 66.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.199357, 39.96127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj7-54v", "Name": "New China Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5815 Rising Sun Ave", "LATITUDE": 40.04309, "LONGITUDE": -75.103706, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010305024.0, "Median Dwell Time": null, "Total Spend": 1456.0, "Total Transactions": 53.0, "Total Customers": 34.0, "Median Spend per Transaction": 27.72, "Median Spend per Customer": 36.91 }, "geometry": { "type": "Point", "coordinates": [ -75.103706, 40.04309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@63s-dvw-cdv", "Name": "Monica Restaurat", "Category": "Restaurants and Other Eating Places", "Address": "5501 Vine St", "LATITUDE": 39.965596, "LONGITUDE": -75.230016, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 121.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 5.0, "Total Spend": 733.0, "Total Transactions": 36.0, "Total Customers": 22.0, "Median Spend per Transaction": 15.66, "Median Spend per Customer": 31.86 }, "geometry": { "type": "Point", "coordinates": [ -75.230016, 39.965596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pj3-tqf", "Name": "Lucky Garden", "Category": "Restaurants and Other Eating Places", "Address": "4901 N Broad St", "LATITUDE": 40.027775, "LONGITUDE": -75.14691, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 107.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 1.0, "Total Spend": 383.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 28.78, "Median Spend per Customer": 28.78 }, "geometry": { "type": "Point", "coordinates": [ -75.14691, 40.027775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pmb-v75", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.948511, "LONGITUDE": -75.143702, "DATE_RANGE_START": 2024, "Total Visits": 250.0, "Total Visitors": 205.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 3676.0, "Total Transactions": 76.0, "Total Customers": 66.0, "Median Spend per Transaction": 36.78, "Median Spend per Customer": 39.81 }, "geometry": { "type": "Point", "coordinates": [ -75.143702, 39.948511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-cqz", "Name": "Milkcrate Cafe", "Category": "Restaurants and Other Eating Places", "Address": "400 E Girard Ave", "LATITUDE": 39.969999, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2024, "Total Visits": 1629.0, "Total Visitors": 991.0, "POI_CBG": 421010143002.0, "Median Dwell Time": 47.0, "Total Spend": 5045.0, "Total Transactions": 350.0, "Total Customers": 228.0, "Median Spend per Transaction": 10.37, "Median Spend per Customer": 15.99 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.969999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgy-kcq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Henry Ave", "LATITUDE": 40.063818, "LONGITUDE": -75.23885, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 7.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 372.0, "Total Spend": 19270.0, "Total Transactions": 1488.0, "Total Customers": 915.0, "Median Spend per Transaction": 11.43, "Median Spend per Customer": 14.73 }, "geometry": { "type": "Point", "coordinates": [ -75.23885, 40.063818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-p8n-btv", "Name": "El New Sunrise Mini Market", "Category": "Grocery Stores", "Address": "2701 Levick St", "LATITUDE": 40.03352, "LONGITUDE": -75.066168, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010317004.0, "Median Dwell Time": null, "Total Spend": 168.0, "Total Transactions": 14.0, "Total Customers": 8.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.066168, 40.03352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pj8-hwk", "Name": "Oxford Food Market", "Category": "Grocery Stores", "Address": "4820 Oxford Ave", "LATITUDE": 40.019429, "LONGITUDE": -75.084382, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010301002.0, "Median Dwell Time": 5.0, "Total Spend": 246.0, "Total Transactions": 37.0, "Total Customers": 9.0, "Median Spend per Transaction": 5.09, "Median Spend per Customer": 12.78 }, "geometry": { "type": "Point", "coordinates": [ -75.084382, 40.019429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvy-k9f", "Name": "Gia Pronto", "Category": "Restaurants and Other Eating Places", "Address": "3736 Spruce St", "LATITUDE": 39.950979, "LONGITUDE": -75.198234, "DATE_RANGE_START": 2024, "Total Visits": 229.0, "Total Visitors": 158.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 5.0, "Total Spend": 2930.0, "Total Transactions": 338.0, "Total Customers": 240.0, "Median Spend per Transaction": 7.51, "Median Spend per Customer": 10.08 }, "geometry": { "type": "Point", "coordinates": [ -75.198234, 39.950979 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pg4-fvf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "122 W Chelten Ave", "LATITUDE": 40.033401, "LONGITUDE": -75.176995, "DATE_RANGE_START": 2024, "Total Visits": 1220.0, "Total Visitors": 671.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 17.0, "Total Spend": 5233.0, "Total Transactions": 305.0, "Total Customers": 212.0, "Median Spend per Transaction": 13.7, "Median Spend per Customer": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.176995, 40.033401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-pgk", "Name": "Walmart Philadelphia Store", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd Bldg G", "LATITUDE": 40.031503, "LONGITUDE": -75.099418, "DATE_RANGE_START": 2024, "Total Visits": 3423.0, "Total Visitors": 2139.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 21.0, "Total Spend": 318148.0, "Total Transactions": 5149.0, "Total Customers": 2906.0, "Median Spend per Transaction": 33.28, "Median Spend per Customer": 51.38 }, "geometry": { "type": "Point", "coordinates": [ -75.099418, 40.031503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3dv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "4430 N Broad St", "LATITUDE": 40.021267, "LONGITUDE": -75.148854, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 2.0, "Total Spend": 4788.0, "Total Transactions": 320.0, "Total Customers": 248.0, "Median Spend per Transaction": 12.14, "Median Spend per Customer": 14.49 }, "geometry": { "type": "Point", "coordinates": [ -75.148854, 40.021267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-m6k", "Name": "Arch Street Lighting", "Category": "Home Furnishings Stores", "Address": "120 Arch St", "LATITUDE": 39.951738, "LONGITUDE": -75.142429, "DATE_RANGE_START": 2024, "Total Visits": 906.0, "Total Visitors": 635.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 3.0, "Total Spend": 762.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 38.88, "Median Spend per Customer": 289.43 }, "geometry": { "type": "Point", "coordinates": [ -75.142429, 39.951738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p84-2hq", "Name": "Kashmir Garden Super Market", "Category": "Grocery Stores", "Address": "9325 Krewstown Rd", "LATITUDE": 40.086209, "LONGITUDE": -75.044927, "DATE_RANGE_START": 2024, "Total Visits": 240.0, "Total Visitors": 211.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 7.0, "Total Spend": 3491.0, "Total Transactions": 91.0, "Total Customers": 50.0, "Median Spend per Transaction": 22.74, "Median Spend per Customer": 46.03 }, "geometry": { "type": "Point", "coordinates": [ -75.044927, 40.086209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-phk-yvz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6771 N 5th St", "LATITUDE": 40.054424, "LONGITUDE": -75.126115, "DATE_RANGE_START": 2024, "Total Visits": 556.0, "Total Visitors": 430.0, "POI_CBG": 421010271001.0, "Median Dwell Time": 2.0, "Total Spend": 244.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 7.08, "Median Spend per Customer": 7.89 }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.054424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-phq-rp9", "Name": "Liberty Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1926 E Washington Ln", "LATITUDE": 40.066348, "LONGITUDE": -75.158578, "DATE_RANGE_START": 2024, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010263022.0, "Median Dwell Time": null, "Total Spend": 26.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158578, 40.066348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-rp9", "Name": "China Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "2842 Saint Vincent St", "LATITUDE": 40.041378, "LONGITUDE": -75.055182, "DATE_RANGE_START": 2024, "Total Visits": 635.0, "Total Visitors": 544.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 22.0, "Total Spend": 2341.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 85.1, "Median Spend per Customer": 76.46 }, "geometry": { "type": "Point", "coordinates": [ -75.055182, 40.041378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-rhq", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "7700 City Ave", "LATITUDE": 39.978329, "LONGITUDE": -75.272475, "DATE_RANGE_START": 2024, "Total Visits": 495.0, "Total Visitors": 402.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 4.0, "Total Spend": 226.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 12.72, "Median Spend per Customer": 12.72 }, "geometry": { "type": "Point", "coordinates": [ -75.272475, 39.978329 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm3-xh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 10th St", "LATITUDE": 39.931588, "LONGITUDE": -75.160638, "DATE_RANGE_START": 2024, "Total Visits": 1007.0, "Total Visitors": 762.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 6.0, "Total Spend": 4059.0, "Total Transactions": 512.0, "Total Customers": 225.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.160638, 39.931588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmf-3nq", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "2149 Catharine St", "LATITUDE": 39.942566, "LONGITUDE": -75.179038, "DATE_RANGE_START": 2024, "Total Visits": 196.0, "Total Visitors": 111.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 2.0, "Total Spend": 8526.0, "Total Transactions": 868.0, "Total Customers": 556.0, "Median Spend per Transaction": 8.04, "Median Spend per Customer": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.179038, 39.942566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-fj9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2726 S Front St", "LATITUDE": 39.913405, "LONGITUDE": -75.150622, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 216.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 71.0, "Total Spend": 1015.0, "Total Transactions": 32.0, "Total Customers": 29.0, "Median Spend per Transaction": 37.5, "Median Spend per Customer": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150622, 39.913405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm4-yd9", "Name": "C & R Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "1600 Washington Ave", "LATITUDE": 39.938173, "LONGITUDE": -75.170563, "DATE_RANGE_START": 2024, "Total Visits": 625.0, "Total Visitors": 353.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 17.0, "Total Spend": 1000.0, "Total Transactions": 9.0, "Total Customers": 3.0, "Median Spend per Transaction": 105.31, "Median Spend per Customer": 379.86 }, "geometry": { "type": "Point", "coordinates": [ -75.170563, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgy-gp9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "518 Port Royal Ave", "LATITUDE": 40.061147, "LONGITUDE": -75.237239, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 24.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 4.0, "Total Spend": 3999.0, "Total Transactions": 184.0, "Total Customers": 122.0, "Median Spend per Transaction": 17.48, "Median Spend per Customer": 22.45 }, "geometry": { "type": "Point", "coordinates": [ -75.237239, 40.061147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-t7q", "Name": "Pamma Tools", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "809 Sansom St", "LATITUDE": 39.948955, "LONGITUDE": -75.154372, "DATE_RANGE_START": 2024, "Total Visits": 828.0, "Total Visitors": 604.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 8.0, "Total Spend": 3421.0, "Total Transactions": 28.0, "Total Customers": 16.0, "Median Spend per Transaction": 42.0, "Median Spend per Customer": 130.25 }, "geometry": { "type": "Point", "coordinates": [ -75.154372, 39.948955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dwf-t9z", "Name": "Citi Trends", "Category": "Department Stores", "Address": "2900 Island Ave Ste 3002", "LATITUDE": 39.9033, "LONGITUDE": -75.240677, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 170.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 9.0, "Total Spend": 3609.0, "Total Transactions": 97.0, "Total Customers": 92.0, "Median Spend per Transaction": 21.04, "Median Spend per Customer": 21.02 }, "geometry": { "type": "Point", "coordinates": [ -75.240677, 39.9033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-tgk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "915 Levick St", "LATITUDE": 40.045215, "LONGITUDE": -75.086673, "DATE_RANGE_START": 2024, "Total Visits": 1161.0, "Total Visitors": 720.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 21.0, "Total Spend": 9886.0, "Total Transactions": 534.0, "Total Customers": 334.0, "Median Spend per Transaction": 15.05, "Median Spend per Customer": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.086673, 40.045215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7b-h5z", "Name": "Linden Italian Market", "Category": "Restaurants and Other Eating Places", "Address": "4011 Linden Ave", "LATITUDE": 40.054575, "LONGITUDE": -75.004237, "DATE_RANGE_START": 2024, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010352003.0, "Median Dwell Time": 6.0, "Total Spend": 958.0, "Total Transactions": 41.0, "Total Customers": 33.0, "Median Spend per Transaction": 18.54, "Median Spend per Customer": 22.67 }, "geometry": { "type": "Point", "coordinates": [ -75.004237, 40.054575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-php-9j9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 W Cheltenham Ave", "LATITUDE": 40.081792, "LONGITUDE": -75.172107, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 3.0, "Total Spend": 1413.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 20.18 }, "geometry": { "type": "Point", "coordinates": [ -75.172107, 40.081792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnx-c5z", "Name": "Suraya", "Category": "Restaurants and Other Eating Places", "Address": "1528 Frankford Ave", "LATITUDE": 39.973702, "LONGITUDE": -75.133914, "DATE_RANGE_START": 2024, "Total Visits": 400.0, "Total Visitors": 338.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 54.0, "Total Spend": 11758.0, "Total Transactions": 71.0, "Total Customers": 63.0, "Median Spend per Transaction": 171.6, "Median Spend per Customer": 195.86 }, "geometry": { "type": "Point", "coordinates": [ -75.133914, 39.973702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj2-94v", "Name": "Classic Pizza", "Category": "Restaurants and Other Eating Places", "Address": "748 E Tioga St", "LATITUDE": 40.001175, "LONGITUDE": -75.114716, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010192002.0, "Median Dwell Time": null, "Total Spend": 714.0, "Total Transactions": 59.0, "Total Customers": 21.0, "Median Spend per Transaction": 5.69, "Median Spend per Customer": 23.14 }, "geometry": { "type": "Point", "coordinates": [ -75.114716, 40.001175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p7z-r49", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "901 Levick St", "LATITUDE": 40.044504, "LONGITUDE": -75.086891, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 3.0, "Total Spend": 49136.0, "Total Transactions": 17.0, "Total Customers": 7.0, "Median Spend per Transaction": 3855.38, "Median Spend per Customer": 131.24 }, "geometry": { "type": "Point", "coordinates": [ -75.086891, 40.044504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-f2k", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7265 Castor Ave", "LATITUDE": 40.050839, "LONGITUDE": -75.066157, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 2.0, "Total Spend": 110.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 41.84, "Median Spend per Customer": 41.84 }, "geometry": { "type": "Point", "coordinates": [ -75.066157, 40.050839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pnx-4jv", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "337 Spring Garden St", "LATITUDE": 39.961452, "LONGITUDE": -75.14456, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 16.0, "Total Spend": 1932.0, "Total Transactions": 74.0, "Total Customers": 63.0, "Median Spend per Transaction": 21.33, "Median Spend per Customer": 24.63 }, "geometry": { "type": "Point", "coordinates": [ -75.14456, 39.961452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-3dv", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "4424 N Broad St", "LATITUDE": 40.021239, "LONGITUDE": -75.149898, "DATE_RANGE_START": 2024, "Total Visits": 889.0, "Total Visitors": 711.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 12.0, "Total Spend": 1402.0, "Total Transactions": 79.0, "Total Customers": 49.0, "Median Spend per Transaction": 12.61, "Median Spend per Customer": 15.43 }, "geometry": { "type": "Point", "coordinates": [ -75.149898, 40.021239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm9-zj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "704 E Passyunk Ave # 20", "LATITUDE": 39.94021, "LONGITUDE": -75.151622, "DATE_RANGE_START": 2024, "Total Visits": 1655.0, "Total Visitors": 965.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 20.0, "Total Spend": 4392.0, "Total Transactions": 208.0, "Total Customers": 165.0, "Median Spend per Transaction": 9.48, "Median Spend per Customer": 10.49 }, "geometry": { "type": "Point", "coordinates": [ -75.151622, 39.94021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pg8-jgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2601 W Girard Ave", "LATITUDE": 39.974281, "LONGITUDE": -75.179079, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 319.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 6.0, "Total Spend": 420.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 7.29, "Median Spend per Customer": 11.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179079, 39.974281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm9-y9z", "Name": "Jim's South St", "Category": "Restaurants and Other Eating Places", "Address": "400 South St", "LATITUDE": 39.941492, "LONGITUDE": -75.149322, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 165.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 12.0, "Total Spend": 595.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 32.72, "Median Spend per Customer": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.149322, 39.941492 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-ks5", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "218 Arch St", "LATITUDE": 39.951718, "LONGITUDE": -75.144312, "DATE_RANGE_START": 2024, "Total Visits": 894.0, "Total Visitors": 365.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 326.0, "Total Spend": 213.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 14.93, "Median Spend per Customer": 14.93 }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 39.951718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25g-222@63s-dw2-9zz", "Name": "Market Grocery", "Category": "Grocery Stores", "Address": "6033 Market St", "LATITUDE": 39.962365, "LONGITUDE": -75.242054, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 115.0, "POI_CBG": 421010096002.0, "Median Dwell Time": 10.0, "Total Spend": 62.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.4, "Median Spend per Customer": 11.43 }, "geometry": { "type": "Point", "coordinates": [ -75.242054, 39.962365 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dwf-zzz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "2900 S 70th St", "LATITUDE": 39.913377, "LONGITUDE": -75.233548, "DATE_RANGE_START": 2024, "Total Visits": 536.0, "Total Visitors": 350.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 4.0, "Total Spend": 1200.0, "Total Transactions": 92.0, "Total Customers": 37.0, "Median Spend per Transaction": 5.0, "Median Spend per Customer": 7.76 }, "geometry": { "type": "Point", "coordinates": [ -75.233548, 39.913377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-6tv", "Name": "Old Navy", "Category": "Clothing Stores", "Address": "1207 Franklin Mills Cir", "LATITUDE": 40.084661, "LONGITUDE": -74.961824, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 2537.0, "Total Transactions": 36.0, "Total Customers": 36.0, "Median Spend per Transaction": 30.84, "Median Spend per Customer": 30.84 }, "geometry": { "type": "Point", "coordinates": [ -74.961824, 40.084661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvy-p9z", "Name": "The Last Word Bookshop", "Category": "Book Stores and News Dealers", "Address": "220 S 40th St", "LATITUDE": 39.953474, "LONGITUDE": -75.203191, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 20.0, "Total Spend": 2613.0, "Total Transactions": 125.0, "Total Customers": 101.0, "Median Spend per Transaction": 16.09, "Median Spend per Customer": 19.57 }, "geometry": { "type": "Point", "coordinates": [ -75.203191, 39.953474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z75", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9920 Bustleton Ave", "LATITUDE": 40.101494, "LONGITUDE": -75.030237, "DATE_RANGE_START": 2024, "Total Visits": 951.0, "Total Visitors": 723.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 5.0, "Total Spend": 141.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 32.38, "Median Spend per Customer": 53.48 }, "geometry": { "type": "Point", "coordinates": [ -75.030237, 40.101494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-kj9", "Name": "Olc", "Category": "Furniture Stores", "Address": "152 N 3rd St", "LATITUDE": 39.953669, "LONGITUDE": -75.145037, "DATE_RANGE_START": 2024, "Total Visits": 509.0, "Total Visitors": 390.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 2.0, "Total Spend": 2327.0, "Total Transactions": 34.0, "Total Customers": 33.0, "Median Spend per Transaction": 52.0, "Median Spend per Customer": 52.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145037, 39.953669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dvy-pn5", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "4001 Walnut St", "LATITUDE": 39.954368, "LONGITUDE": -75.202799, "DATE_RANGE_START": 2024, "Total Visits": 1102.0, "Total Visitors": 562.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 14.0, "Total Spend": 146522.0, "Total Transactions": 6407.0, "Total Customers": 2230.0, "Median Spend per Transaction": 14.65, "Median Spend per Customer": 30.72 }, "geometry": { "type": "Point", "coordinates": [ -75.202799, 39.954368 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p7x-dsq", "Name": "Rapoport Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6934 Bustleton Ave", "LATITUDE": 40.04285, "LONGITUDE": -75.06358, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 126.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 3.0, "Total Spend": 105.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 11.46, "Median Spend per Customer": 11.46 }, "geometry": { "type": "Point", "coordinates": [ -75.06358, 40.04285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pmb-68v", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1101 Locust St", "LATITUDE": 39.947798, "LONGITUDE": -75.1598, "DATE_RANGE_START": 2024, "Total Visits": 1402.0, "Total Visitors": 931.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 18.0, "Total Spend": 4434.0, "Total Transactions": 172.0, "Total Customers": 108.0, "Median Spend per Transaction": 12.94, "Median Spend per Customer": 22.24 }, "geometry": { "type": "Point", "coordinates": [ -75.1598, 39.947798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8n5", "Name": "Primark", "Category": "Clothing Stores", "Address": "1033 Market St", "LATITUDE": 39.951745, "LONGITUDE": -75.15699, "DATE_RANGE_START": 2024, "Total Visits": 13727.0, "Total Visitors": 7998.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 59954.0, "Total Transactions": 1733.0, "Total Customers": 1505.0, "Median Spend per Transaction": 24.24, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15699, 39.951745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pgj-cbk", "Name": "Columbia Fish", "Category": "Specialty Food Stores", "Address": "1701 Cecil B Moore Ave", "LATITUDE": 39.9795, "LONGITUDE": -75.162782, "DATE_RANGE_START": 2024, "Total Visits": 101.0, "Total Visitors": 78.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 1.0, "Total Spend": 1100.0, "Total Transactions": 130.0, "Total Customers": 57.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162782, 39.9795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wzf", "Name": "Bravo Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "1323 Lindley Ave", "LATITUDE": 40.030409, "LONGITUDE": -75.145574, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 104.0, "POI_CBG": 421010282001.0, "Median Dwell Time": 310.0, "Total Spend": 2880.0, "Total Transactions": 129.0, "Total Customers": 90.0, "Median Spend per Transaction": 18.25, "Median Spend per Customer": 26.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145574, 40.030409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvy-9j9", "Name": "Baltimore Pet Shoppe", "Category": "Other Miscellaneous Store Retailers", "Address": "4532 Baltimore Ave", "LATITUDE": 39.948712, "LONGITUDE": -75.213902, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010078005.0, "Median Dwell Time": 8.0, "Total Spend": 397.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 32.42, "Median Spend per Customer": 31.04 }, "geometry": { "type": "Point", "coordinates": [ -75.213902, 39.948712 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pp2-qxq", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "3451 Aramingo Ave", "LATITUDE": 39.991686, "LONGITUDE": -75.099246, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 7.0, "Total Spend": 551.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 85.0, "Median Spend per Customer": 87.5 }, "geometry": { "type": "Point", "coordinates": [ -75.099246, 39.991686 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-pj3-fxq", "Name": "T & N Food Market", "Category": "Grocery Stores", "Address": "4907 Wayne Ave", "LATITUDE": 40.024855, "LONGITUDE": -75.166215, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 16.0, "POI_CBG": 421010244003.0, "Median Dwell Time": null, "Total Spend": 904.0, "Total Transactions": 76.0, "Total Customers": 29.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 9.87 }, "geometry": { "type": "Point", "coordinates": [ -75.166215, 40.024855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj4-vcq", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "400 W Allegheny Ave Ste C2", "LATITUDE": 39.998344, "LONGITUDE": -75.136151, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 146.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 12.0, "Total Spend": 138.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 52.47, "Median Spend per Customer": 52.47 }, "geometry": { "type": "Point", "coordinates": [ -75.136151, 39.998344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-qs5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3501 Cedar St", "LATITUDE": 39.991433, "LONGITUDE": -75.097815, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 6.0, "Total Spend": 625.0, "Total Transactions": 24.0, "Total Customers": 13.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 26.53 }, "geometry": { "type": "Point", "coordinates": [ -75.097815, 39.991433 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pp5-gtv", "Name": "Olde Philly Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2923 E Thompson St", "LATITUDE": 39.981059, "LONGITUDE": -75.10981, "DATE_RANGE_START": 2024, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010180024.0, "Median Dwell Time": 2.0, "Total Spend": 558.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 10.06, "Median Spend per Customer": 13.57 }, "geometry": { "type": "Point", "coordinates": [ -75.10981, 39.981059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-gx5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2701 W Hunting Park Ave", "LATITUDE": 40.008138, "LONGITUDE": -75.173207, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 7.0, "Total Spend": 543.0, "Total Transactions": 29.0, "Total Customers": 16.0, "Median Spend per Transaction": 18.67, "Median Spend per Customer": 24.63 }, "geometry": { "type": "Point", "coordinates": [ -75.173207, 40.008138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-66k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1128 Walnut St", "LATITUDE": 39.948784, "LONGITUDE": -75.160455, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 1.0, "Total Spend": 3417.0, "Total Transactions": 407.0, "Total Customers": 273.0, "Median Spend per Transaction": 6.64, "Median Spend per Customer": 8.21 }, "geometry": { "type": "Point", "coordinates": [ -75.160455, 39.948784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj3-9vf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3900 N Broad St", "LATITUDE": 40.012964, "LONGITUDE": -75.15104, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 10.0, "Total Spend": 2462.0, "Total Transactions": 47.0, "Total Customers": 46.0, "Median Spend per Transaction": 42.64, "Median Spend per Customer": 41.03 }, "geometry": { "type": "Point", "coordinates": [ -75.15104, 40.012964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phy-nkf", "Name": "Ho May House", "Category": "Restaurants and Other Eating Places", "Address": "4401 N 5th St", "LATITUDE": 40.01822, "LONGITUDE": -75.134281, "DATE_RANGE_START": 2024, "Total Visits": 169.0, "Total Visitors": 150.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 47.0, "Total Spend": 387.0, "Total Transactions": 11.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134281, 40.01822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm5-pn5", "Name": "Ross Stores", "Category": "Department Stores", "Address": "424 W Oregon Ave", "LATITUDE": 39.912498, "LONGITUDE": -75.15633, "DATE_RANGE_START": 2024, "Total Visits": 1679.0, "Total Visitors": 1482.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 17.0, "Total Spend": 13307.0, "Total Transactions": 305.0, "Total Customers": 226.0, "Median Spend per Transaction": 35.1, "Median Spend per Customer": 36.53 }, "geometry": { "type": "Point", "coordinates": [ -75.15633, 39.912498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pgk-28v", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1300 W Lehigh Ave", "LATITUDE": 39.993135, "LONGITUDE": -75.152859, "DATE_RANGE_START": 2024, "Total Visits": 329.0, "Total Visitors": 197.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 5.0, "Total Spend": 364.0, "Total Transactions": 22.0, "Total Customers": 17.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.152859, 39.993135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg4-mx5", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "5301 Chew Ave Ste B", "LATITUDE": 40.043579, "LONGITUDE": -75.159459, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010247002.0, "Median Dwell Time": 6.0, "Total Spend": 1212.0, "Total Transactions": 26.0, "Total Customers": 22.0, "Median Spend per Transaction": 23.21, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.159459, 40.043579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg2-hdv", "Name": "Mi Puebla Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7157 Germantown Ave", "LATITUDE": 40.059999, "LONGITUDE": -75.19073, "DATE_RANGE_START": 2024, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 2.0, "Total Spend": 1912.0, "Total Transactions": 50.0, "Total Customers": 43.0, "Median Spend per Transaction": 37.16, "Median Spend per Customer": 41.84 }, "geometry": { "type": "Point", "coordinates": [ -75.19073, 40.059999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8f-6c5", "Name": "Szechuan Garden", "Category": "Restaurants and Other Eating Places", "Address": "2700 Bridge St", "LATITUDE": 40.003122, "LONGITUDE": -75.065788, "DATE_RANGE_START": 2024, "Total Visits": 378.0, "Total Visitors": 278.0, "POI_CBG": 421010184002.0, "Median Dwell Time": 1.0, "Total Spend": 451.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 27.58, "Median Spend per Customer": 27.58 }, "geometry": { "type": "Point", "coordinates": [ -75.065788, 40.003122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-975", "Name": "Goldie", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.952988, "LONGITUDE": -75.192295, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 9.0, "Total Spend": 212.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 19.08, "Median Spend per Customer": 24.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192295, 39.952988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p7w-v4v", "Name": "Foot Locker", "Category": "Shoe Stores", "Address": "2335 Cottman Ave Spc 10", "LATITUDE": 40.047953, "LONGITUDE": -75.055758, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 7.0, "Total Spend": 2904.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 85.0, "Median Spend per Customer": 85.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055758, 40.047953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-gx5", "Name": "Honey Bee Gourmet Deli", "Category": "Restaurants and Other Eating Places", "Address": "1034 Spruce St", "LATITUDE": 39.945912, "LONGITUDE": -75.15944, "DATE_RANGE_START": 2024, "Total Visits": 316.0, "Total Visitors": 280.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 1.0, "Total Spend": 67.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 4.75, "Median Spend per Customer": 4.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15944, 39.945912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-223@628-pg8-ks5", "Name": "Rybrew", "Category": "Restaurants and Other Eating Places", "Address": "2600 W Girard Ave", "LATITUDE": 39.974204, "LONGITUDE": -75.182529, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 29.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 15.0, "Total Spend": 5456.0, "Total Transactions": 316.0, "Total Customers": 187.0, "Median Spend per Transaction": 15.8, "Median Spend per Customer": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.182529, 39.974204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-xnq", "Name": "Mammoth Coffee", "Category": "Restaurants and Other Eating Places", "Address": "534 W Girard Ave", "LATITUDE": 39.970161, "LONGITUDE": -75.146356, "DATE_RANGE_START": 2024, "Total Visits": 333.0, "Total Visitors": 311.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 4.0, "Total Spend": 1498.0, "Total Transactions": 155.0, "Total Customers": 55.0, "Median Spend per Transaction": 8.56, "Median Spend per Customer": 12.73 }, "geometry": { "type": "Point", "coordinates": [ -75.146356, 39.970161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg5-35z", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6301 Chew Ave", "LATITUDE": 40.051138, "LONGITUDE": -75.173674, "DATE_RANGE_START": 2024, "Total Visits": 402.0, "Total Visitors": 263.0, "POI_CBG": 421010389003.0, "Median Dwell Time": 11.0, "Total Spend": 3684.0, "Total Transactions": 179.0, "Total Customers": 108.0, "Median Spend per Transaction": 12.06, "Median Spend per Customer": 15.48 }, "geometry": { "type": "Point", "coordinates": [ -75.173674, 40.051138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-pmf-qpv", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "615 S Broad St", "LATITUDE": 39.94287, "LONGITUDE": -75.165374, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 163.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 4.0, "Total Spend": 735.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 27.44, "Median Spend per Customer": 28.72 }, "geometry": { "type": "Point", "coordinates": [ -75.165374, 39.94287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-223@628-phy-dqf", "Name": "A and B Beer Distributor", "Category": "Beer, Wine, and Liquor Stores", "Address": "4440 Whitaker Ave", "LATITUDE": 40.016766, "LONGITUDE": -75.117111, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 3.0, "Total Spend": 5923.0, "Total Transactions": 178.0, "Total Customers": 117.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 31.31 }, "geometry": { "type": "Point", "coordinates": [ -75.117111, 40.016766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p7x-5s5", "Name": "Party City", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2201 Cottman Ave", "LATITUDE": 40.049609, "LONGITUDE": -75.061385, "DATE_RANGE_START": 2024, "Total Visits": 475.0, "Total Visitors": 425.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 8.0, "Total Spend": 13058.0, "Total Transactions": 382.0, "Total Customers": 311.0, "Median Spend per Transaction": 26.9, "Median Spend per Customer": 31.1 }, "geometry": { "type": "Point", "coordinates": [ -75.061385, 40.049609 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgb-575", "Name": "Cafe Lift", "Category": "Restaurants and Other Eating Places", "Address": "428 N 13th St", "LATITUDE": 39.960463, "LONGITUDE": -75.159871, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 99.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 14.0, "Total Spend": 5870.0, "Total Transactions": 104.0, "Total Customers": 99.0, "Median Spend per Transaction": 51.39, "Median Spend per Customer": 53.2 }, "geometry": { "type": "Point", "coordinates": [ -75.159871, 39.960463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvy-nwk", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "3621 Walnut St", "LATITUDE": 39.953548, "LONGITUDE": -75.196198, "DATE_RANGE_START": 2024, "Total Visits": 305.0, "Total Visitors": 115.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 125.0, "Total Spend": 5441.0, "Total Transactions": 62.0, "Total Customers": 58.0, "Median Spend per Transaction": 82.79, "Median Spend per Customer": 90.45 }, "geometry": { "type": "Point", "coordinates": [ -75.196198, 39.953548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phy-st9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4530 N 5th St", "LATITUDE": 40.020882, "LONGITUDE": -75.134715, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 3.0, "Total Spend": 967.0, "Total Transactions": 51.0, "Total Customers": 38.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.134715, 40.020882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgd-w49", "Name": "Chris'pizza", "Category": "Restaurants and Other Eating Places", "Address": "3701 Haverford Ave", "LATITUDE": 39.963715, "LONGITUDE": -75.196155, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010108003.0, "Median Dwell Time": 1.0, "Total Spend": 71.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.196155, 39.963715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-vj9", "Name": "Tony Luke's", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.880383, "LONGITUDE": -75.237241, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 153.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 6.0, "Total Spend": 95.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 17.66, "Median Spend per Customer": 17.66 }, "geometry": { "type": "Point", "coordinates": [ -75.237241, 39.880383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9m-gtv", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "3200 Red Lion Rd Frnt 5", "LATITUDE": 40.08083, "LONGITUDE": -74.993713, "DATE_RANGE_START": 2024, "Total Visits": 591.0, "Total Visitors": 411.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 3.0, "Total Spend": 67.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 18.79, "Median Spend per Customer": 18.79 }, "geometry": { "type": "Point", "coordinates": [ -74.993713, 40.08083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p8d-yn5", "Name": "Joe's Market", "Category": "Grocery Stores", "Address": "2056 Bridge St", "LATITUDE": 40.014176, "LONGITUDE": -75.07103, "DATE_RANGE_START": 2024, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010299003.0, "Median Dwell Time": 1.0, "Total Spend": 984.0, "Total Transactions": 72.0, "Total Customers": 36.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.07103, 40.014176 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-mtv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "101 S 52nd St", "LATITUDE": 39.958073, "LONGITUDE": -75.225037, "DATE_RANGE_START": 2024, "Total Visits": 1107.0, "Total Visitors": 777.0, "POI_CBG": 421010085001.0, "Median Dwell Time": 8.0, "Total Spend": 10784.0, "Total Transactions": 819.0, "Total Customers": 566.0, "Median Spend per Transaction": 11.6, "Median Spend per Customer": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.225037, 39.958073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg3-wzf", "Name": "New Zem Zem Pizza", "Category": "Restaurants and Other Eating Places", "Address": "117 E Chelten Ave", "LATITUDE": 40.037701, "LONGITUDE": -75.173149, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010246003.0, "Median Dwell Time": 7.0, "Total Spend": 1711.0, "Total Transactions": 67.0, "Total Customers": 34.0, "Median Spend per Transaction": 25.13, "Median Spend per Customer": 30.57 }, "geometry": { "type": "Point", "coordinates": [ -75.173149, 40.037701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7v-f9f", "Name": "Sherwin-Williams", "Category": "Building Material and Supplies Dealers", "Address": "7327 Castor Ave", "LATITUDE": 40.05264, "LONGITUDE": -75.064246, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 87.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 4.0, "Total Spend": 260.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 98.59, "Median Spend per Customer": 98.59 }, "geometry": { "type": "Point", "coordinates": [ -75.064246, 40.05264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm9-y9z", "Name": "Crash Bang Boom", "Category": "Clothing Stores", "Address": "528 S 4th St", "LATITUDE": 39.941883, "LONGITUDE": -75.149235, "DATE_RANGE_START": 2024, "Total Visits": 482.0, "Total Visitors": 453.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 12.0, "Total Spend": 153.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 31.32 }, "geometry": { "type": "Point", "coordinates": [ -75.149235, 39.941883 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c5z", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "555 Adams Ave", "LATITUDE": 40.036515, "LONGITUDE": -75.108096, "DATE_RANGE_START": 2024, "Total Visits": 299.0, "Total Visitors": 230.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 7.0, "Total Spend": 1792.0, "Total Transactions": 51.0, "Total Customers": 37.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.108096, 40.036515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-snq", "Name": "Atlanta Wings", "Category": "Restaurants and Other Eating Places", "Address": "2355 S Bucknell St", "LATITUDE": 39.922758, "LONGITUDE": -75.186158, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 151.0, "POI_CBG": 421010037023.0, "Median Dwell Time": 2.0, "Total Spend": 81.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.186158, 39.922758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pp2-5pv", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2703 E Clearfield St", "LATITUDE": 39.982882, "LONGITUDE": -75.10466, "DATE_RANGE_START": 2024, "Total Visits": 67.0, "Total Visitors": 25.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 431.0, "Total Spend": 2959.0, "Total Transactions": 179.0, "Total Customers": 132.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 18.13 }, "geometry": { "type": "Point", "coordinates": [ -75.10466, 39.982882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-fmk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1301 Rhawn St", "LATITUDE": 40.068928, "LONGITUDE": -75.066705, "DATE_RANGE_START": 2024, "Total Visits": 941.0, "Total Visitors": 664.0, "POI_CBG": 421010337022.0, "Median Dwell Time": 5.0, "Total Spend": 7183.0, "Total Transactions": 358.0, "Total Customers": 195.0, "Median Spend per Transaction": 11.25, "Median Spend per Customer": 15.58 }, "geometry": { "type": "Point", "coordinates": [ -75.066705, 40.068928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7z-7kf", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "901 Cottman Ave", "LATITUDE": 40.062355, "LONGITUDE": -75.08469, "DATE_RANGE_START": 2024, "Total Visits": 413.0, "Total Visitors": 330.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 5.0, "Total Spend": 299.0, "Total Transactions": 16.0, "Total Customers": 12.0, "Median Spend per Transaction": 14.22, "Median Spend per Customer": 25.13 }, "geometry": { "type": "Point", "coordinates": [ -75.08469, 40.062355 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pm6-6hq", "Name": "Greene Street", "Category": "Clothing Stores", "Address": "21 Snyder Ave Spc 2", "LATITUDE": 39.921679, "LONGITUDE": -75.144266, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 169.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 206.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 4.86, "Median Spend per Customer": 15.09 }, "geometry": { "type": "Point", "coordinates": [ -75.144266, 39.921679 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg9-xh5", "Name": "Coffee Cream & Dreams", "Category": "Restaurants and Other Eating Places", "Address": "1500 Fairmount Ave", "LATITUDE": 39.966924, "LONGITUDE": -75.162284, "DATE_RANGE_START": 2024, "Total Visits": 107.0, "Total Visitors": 107.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 1.0, "Total Spend": 161.0, "Total Transactions": 18.0, "Total Customers": 12.0, "Median Spend per Transaction": 8.13, "Median Spend per Customer": 8.88 }, "geometry": { "type": "Point", "coordinates": [ -75.162284, 39.966924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-rc5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4617 N 5th St", "LATITUDE": 40.02134, "LONGITUDE": -75.133414, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 9.0, "Total Spend": 420.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 20.25, "Median Spend per Customer": 54.17 }, "geometry": { "type": "Point", "coordinates": [ -75.133414, 40.02134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8n-92k", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6215 Roosevelt Blvd", "LATITUDE": 40.034029, "LONGITUDE": -75.072579, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 4.0, "POI_CBG": 421010318001.0, "Median Dwell Time": 6.0, "Total Spend": 928.0, "Total Transactions": 43.0, "Total Customers": 37.0, "Median Spend per Transaction": 20.09, "Median Spend per Customer": 25.55 }, "geometry": { "type": "Point", "coordinates": [ -75.072579, 40.034029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "265-222@628-pmb-c89", "Name": "1 Stop Mini Market", "Category": "Grocery Stores", "Address": "700 S 8th St", "LATITUDE": 39.941413, "LONGITUDE": -75.155998, "DATE_RANGE_START": 2024, "Total Visits": 233.0, "Total Visitors": 187.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 1.0, "Total Spend": 18829.0, "Total Transactions": 986.0, "Total Customers": 341.0, "Median Spend per Transaction": 15.97, "Median Spend per Customer": 22.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155998, 39.941413 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-8sq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1046 Market St", "LATITUDE": 39.951327, "LONGITUDE": -75.158193, "DATE_RANGE_START": 2024, "Total Visits": 1534.0, "Total Visitors": 1118.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 7423.0, "Total Transactions": 446.0, "Total Customers": 366.0, "Median Spend per Transaction": 10.62, "Median Spend per Customer": 12.61 }, "geometry": { "type": "Point", "coordinates": [ -75.158193, 39.951327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9w-sdv", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "12050 Bustleton Ave", "LATITUDE": 40.123431, "LONGITUDE": -75.01617, "DATE_RANGE_START": 2024, "Total Visits": 735.0, "Total Visitors": 516.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 8.0, "Total Spend": 257.0, "Total Transactions": 9.0, "Total Customers": 4.0, "Median Spend per Transaction": 24.95, "Median Spend per Customer": 49.1 }, "geometry": { "type": "Point", "coordinates": [ -75.01617, 40.123431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-p77-y5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "3854 Morrell Ave", "LATITUDE": 40.063693, "LONGITUDE": -74.98643, "DATE_RANGE_START": 2024, "Total Visits": 667.0, "Total Visitors": 532.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 5.0, "Total Spend": 84.0, "Total Transactions": 13.0, "Total Customers": 9.0, "Median Spend per Transaction": 4.8, "Median Spend per Customer": 6.55 }, "geometry": { "type": "Point", "coordinates": [ -74.98643, 40.063693 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-p9w-zj9", "Name": "Beer Express", "Category": "Beer, Wine, and Liquor Stores", "Address": "11718 Bustleton Ave", "LATITUDE": 40.119973, "LONGITUDE": -75.017966, "DATE_RANGE_START": 2024, "Total Visits": 162.0, "Total Visitors": 145.0, "POI_CBG": 421010358001.0, "Median Dwell Time": 2.0, "Total Spend": 5749.0, "Total Transactions": 187.0, "Total Customers": 124.0, "Median Spend per Transaction": 22.52, "Median Spend per Customer": 31.63 }, "geometry": { "type": "Point", "coordinates": [ -75.017966, 40.119973 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-st9", "Name": "South", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "600 N Broad St", "LATITUDE": 39.96442, "LONGITUDE": -75.161338, "DATE_RANGE_START": 2024, "Total Visits": 270.0, "Total Visitors": 251.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 56.0, "Total Spend": 847.0, "Total Transactions": 21.0, "Total Customers": 14.0, "Median Spend per Transaction": 22.35, "Median Spend per Customer": 58.24 }, "geometry": { "type": "Point", "coordinates": [ -75.161338, 39.96442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pp4-snq", "Name": "Good Time Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2501 E York St", "LATITUDE": 39.97726, "LONGITUDE": -75.123641, "DATE_RANGE_START": 2024, "Total Visits": 93.0, "Total Visitors": 93.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 1.0, "Total Spend": 1003.0, "Total Transactions": 29.0, "Total Customers": 16.0, "Median Spend per Transaction": 21.77, "Median Spend per Customer": 31.64 }, "geometry": { "type": "Point", "coordinates": [ -75.123641, 39.97726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-y7q", "Name": "Paris Baguette", "Category": "Restaurants and Other Eating Places", "Address": "923 Arch St", "LATITUDE": 39.953873, "LONGITUDE": -75.155694, "DATE_RANGE_START": 2024, "Total Visits": 417.0, "Total Visitors": 242.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 19.0, "Total Spend": 31625.0, "Total Transactions": 2330.0, "Total Customers": 1557.0, "Median Spend per Transaction": 10.62, "Median Spend per Customer": 14.07 }, "geometry": { "type": "Point", "coordinates": [ -75.155694, 39.953873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pm9-wc5", "Name": "Rustica Rosticceria", "Category": "Restaurants and Other Eating Places", "Address": "111 S Independence Mall E", "LATITUDE": 39.949727, "LONGITUDE": -75.148072, "DATE_RANGE_START": 2024, "Total Visits": 1988.0, "Total Visitors": 1381.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 35.0, "Total Spend": 90.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148072, 39.949727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm4-2kz", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "2101 S 11th St", "LATITUDE": 39.92336, "LONGITUDE": -75.164237, "DATE_RANGE_START": 2024, "Total Visits": 1310.0, "Total Visitors": 844.0, "POI_CBG": 421010040012.0, "Median Dwell Time": 5.0, "Total Spend": 2480.0, "Total Transactions": 116.0, "Total Customers": 90.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 22.38 }, "geometry": { "type": "Point", "coordinates": [ -75.164237, 39.92336 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pp2-qzz", "Name": "Cambridge Beauty Supplies", "Category": "Health and Personal Care Stores", "Address": "2313 E Venango St", "LATITUDE": 39.994277, "LONGITUDE": -75.097332, "DATE_RANGE_START": 2024, "Total Visits": 549.0, "Total Visitors": 204.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 391.0, "Total Spend": 124.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 47.23, "Median Spend per Customer": 47.23 }, "geometry": { "type": "Point", "coordinates": [ -75.097332, 39.994277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm5-fvf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "59 E Oregon Ave", "LATITUDE": 39.914321, "LONGITUDE": -75.149506, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 3.0, "Total Spend": 361.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 32.5, "Median Spend per Customer": 32.5 }, "geometry": { "type": "Point", "coordinates": [ -75.149506, 39.914321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmf-rx5", "Name": "Nori Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1636 South St", "LATITUDE": 39.944062, "LONGITUDE": -75.170025, "DATE_RANGE_START": 2024, "Total Visits": 96.0, "Total Visitors": 96.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 1.0, "Total Spend": 371.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 23.4, "Median Spend per Customer": 34.14 }, "geometry": { "type": "Point", "coordinates": [ -75.170025, 39.944062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pnx-bzf", "Name": "Wokworks", "Category": "Restaurants and Other Eating Places", "Address": "1429 Marlborough St", "LATITUDE": 39.97337, "LONGITUDE": -75.133561, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 222.0, "Total Spend": 110.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 16.74, "Median Spend per Customer": 16.74 }, "geometry": { "type": "Point", "coordinates": [ -75.133561, 39.97337 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "117 S 16th St", "LATITUDE": 39.950673, "LONGITUDE": -75.167022, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 6937.0, "Total Transactions": 1027.0, "Total Customers": 361.0, "Median Spend per Transaction": 5.61, "Median Spend per Customer": 8.24 }, "geometry": { "type": "Point", "coordinates": [ -75.167022, 39.950673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-rc5", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "7210 Cresheim Rd", "LATITUDE": 40.057482, "LONGITUDE": -75.194715, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 182.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 4.0, "Total Spend": 873.0, "Total Transactions": 47.0, "Total Customers": 29.0, "Median Spend per Transaction": 12.26, "Median Spend per Customer": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.194715, 40.057482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgf-g49", "Name": "Texas Wiener", "Category": "Restaurants and Other Eating Places", "Address": "3963 Lancaster Ave", "LATITUDE": 39.963218, "LONGITUDE": -75.20203, "DATE_RANGE_START": 2024, "Total Visits": 341.0, "Total Visitors": 178.0, "POI_CBG": 421010108004.0, "Median Dwell Time": 48.0, "Total Spend": 1259.0, "Total Transactions": 91.0, "Total Customers": 59.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 16.81 }, "geometry": { "type": "Point", "coordinates": [ -75.20203, 39.963218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7z-tgk", "Name": "Kitchen B & L", "Category": "Restaurants and Other Eating Places", "Address": "925 Levick St", "LATITUDE": 40.044921, "LONGITUDE": -75.086402, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 165.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 14.0, "Total Spend": 2761.0, "Total Transactions": 133.0, "Total Customers": 90.0, "Median Spend per Transaction": 18.86, "Median Spend per Customer": 21.22 }, "geometry": { "type": "Point", "coordinates": [ -75.086402, 40.044921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-kmk", "Name": "Lucky's Last Chance", "Category": "Restaurants and Other Eating Places", "Address": "4421 Main St", "LATITUDE": 40.02636, "LONGITUDE": -75.225503, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 186.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 27.0, "Total Spend": 790.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 47.22, "Median Spend per Customer": 47.22 }, "geometry": { "type": "Point", "coordinates": [ -75.225503, 40.02636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@63s-dvp-bff", "Name": "Beer Stop", "Category": "Beer, Wine, and Liquor Stores", "Address": "5746 Baltimore Ave", "LATITUDE": 39.945295, "LONGITUDE": -75.238695, "DATE_RANGE_START": 2024, "Total Visits": 619.0, "Total Visitors": 359.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 14.0, "Total Spend": 3095.0, "Total Transactions": 104.0, "Total Customers": 74.0, "Median Spend per Transaction": 28.57, "Median Spend per Customer": 31.88 }, "geometry": { "type": "Point", "coordinates": [ -75.238695, 39.945295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-xwk", "Name": "Local 44", "Category": "Restaurants and Other Eating Places", "Address": "4333 Spruce St", "LATITUDE": 39.952832, "LONGITUDE": -75.210325, "DATE_RANGE_START": 2024, "Total Visits": 692.0, "Total Visitors": 209.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 334.0, "Total Spend": 14921.0, "Total Transactions": 334.0, "Total Customers": 242.0, "Median Spend per Transaction": 37.77, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.210325, 39.952832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-w49", "Name": "The Bakeshop on 20th", "Category": "Restaurants and Other Eating Places", "Address": "269 S 20th St", "LATITUDE": 39.948428, "LONGITUDE": -75.174139, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 187.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 1.0, "Total Spend": 57.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 10.47, "Median Spend per Customer": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.174139, 39.948428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvy-zmk", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4438 Chestnut St", "LATITUDE": 39.956487, "LONGITUDE": -75.211231, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 97.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 29.0, "Total Spend": 10245.0, "Total Transactions": 380.0, "Total Customers": 267.0, "Median Spend per Transaction": 25.36, "Median Spend per Customer": 31.73 }, "geometry": { "type": "Point", "coordinates": [ -75.211231, 39.956487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p6z-tqf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "9001 Frankford Ave", "LATITUDE": 40.051659, "LONGITUDE": -75.008179, "DATE_RANGE_START": 2024, "Total Visits": 617.0, "Total Visitors": 487.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 3.0, "Total Spend": 932.0, "Total Transactions": 46.0, "Total Customers": 21.0, "Median Spend per Transaction": 15.18, "Median Spend per Customer": 36.48 }, "geometry": { "type": "Point", "coordinates": [ -75.008179, 40.051659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnw-k4v", "Name": "Sherwin-Williams", "Category": "Building Material and Supplies Dealers", "Address": "18 W Girard Ave", "LATITUDE": 39.968404, "LONGITUDE": -75.135304, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 116.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 1.0, "Total Spend": 249.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 81.63, "Median Spend per Customer": 94.66 }, "geometry": { "type": "Point", "coordinates": [ -75.135304, 39.968404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pgb-8d9", "Name": "Fair Mart", "Category": "Grocery Stores", "Address": "2601 Pennsylvania Ave", "LATITUDE": 39.968518, "LONGITUDE": -75.180495, "DATE_RANGE_START": 2024, "Total Visits": 345.0, "Total Visitors": 211.0, "POI_CBG": 421010136012.0, "Median Dwell Time": 84.0, "Total Spend": 3536.0, "Total Transactions": 325.0, "Total Customers": 132.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 12.04 }, "geometry": { "type": "Point", "coordinates": [ -75.180495, 39.968518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvq-vpv", "Name": "Four Seasons Market", "Category": "Specialty Food Stores", "Address": "6130 Woodland Ave", "LATITUDE": 39.927999, "LONGITUDE": -75.229253, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 207.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 3.0, "Total Spend": 395.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 22.75, "Median Spend per Customer": 22.75 }, "geometry": { "type": "Point", "coordinates": [ -75.229253, 39.927999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmb-ty9", "Name": "Shane Confectionery", "Category": "Specialty Food Stores", "Address": "110 Market St", "LATITUDE": 39.949497, "LONGITUDE": -75.14262, "DATE_RANGE_START": 2024, "Total Visits": 1380.0, "Total Visitors": 843.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 709.0, "Total Spend": 3599.0, "Total Transactions": 108.0, "Total Customers": 101.0, "Median Spend per Transaction": 26.78, "Median Spend per Customer": 28.5 }, "geometry": { "type": "Point", "coordinates": [ -75.14262, 39.949497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-jsq", "Name": "Monde Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "100 S 21st St", "LATITUDE": 39.952049, "LONGITUDE": -75.175756, "DATE_RANGE_START": 2024, "Total Visits": 516.0, "Total Visitors": 316.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 27.0, "Total Spend": 13783.0, "Total Transactions": 1103.0, "Total Customers": 429.0, "Median Spend per Transaction": 11.03, "Median Spend per Customer": 17.11 }, "geometry": { "type": "Point", "coordinates": [ -75.175756, 39.952049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnx-cwk", "Name": "Nova Star Pharmacy", "Category": "Health and Personal Care Stores", "Address": "301 E Girard Ave", "LATITUDE": 39.969977, "LONGITUDE": -75.131825, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 41.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 6.0, "Total Spend": 346.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.131825, 39.969977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-mx5", "Name": "Jos. A. Bank Clothiers", "Category": "Clothing Stores", "Address": "1650 Market St", "LATITUDE": 39.952606, "LONGITUDE": -75.168302, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 5571.0, "Total Transactions": 38.0, "Total Customers": 36.0, "Median Spend per Transaction": 91.76, "Median Spend per Customer": 91.76 }, "geometry": { "type": "Point", "coordinates": [ -75.168302, 39.952606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-yy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2601 Penrose Ave", "LATITUDE": 39.907731, "LONGITUDE": -75.189099, "DATE_RANGE_START": 2024, "Total Visits": 612.0, "Total Visitors": 561.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 4.0, "Total Spend": 1010.0, "Total Transactions": 59.0, "Total Customers": 30.0, "Median Spend per Transaction": 11.84, "Median Spend per Customer": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.189099, 39.907731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-w8v", "Name": "Journeys", "Category": "Shoe Stores", "Address": "1559 Franklin Mills Cir", "LATITUDE": 40.087721, "LONGITUDE": -74.961785, "DATE_RANGE_START": 2024, "Total Visits": 334.0, "Total Visitors": 328.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 3598.0, "Total Transactions": 32.0, "Total Customers": 29.0, "Median Spend per Transaction": 82.47, "Median Spend per Customer": 97.49 }, "geometry": { "type": "Point", "coordinates": [ -74.961785, 40.087721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-649", "Name": "Mariposa Food Co op", "Category": "Grocery Stores", "Address": "4824 Baltimore Ave", "LATITUDE": 39.947933, "LONGITUDE": -75.220657, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 115.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 174.0, "Total Spend": 24323.0, "Total Transactions": 881.0, "Total Customers": 394.0, "Median Spend per Transaction": 18.71, "Median Spend per Customer": 36.12 }, "geometry": { "type": "Point", "coordinates": [ -75.220657, 39.947933 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgb-7h5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2320 Fairmount Ave # 26", "LATITUDE": 39.96695, "LONGITUDE": -75.176358, "DATE_RANGE_START": 2024, "Total Visits": 1006.0, "Total Visitors": 706.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 6.0, "Total Spend": 10660.0, "Total Transactions": 457.0, "Total Customers": 282.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 21.42 }, "geometry": { "type": "Point", "coordinates": [ -75.176358, 39.96695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pmb-8d9", "Name": "Yamitsuki Ramen", "Category": "Restaurants and Other Eating Places", "Address": "1028 Arch St", "LATITUDE": 39.953465, "LONGITUDE": -75.157455, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 254.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 5861.0, "Total Transactions": 122.0, "Total Customers": 112.0, "Median Spend per Transaction": 37.37, "Median Spend per Customer": 42.64 }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.953465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-22r@628-pmb-6tv", "Name": "Brooklyn Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St", "LATITUDE": 39.952448, "LONGITUDE": -75.167954, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 422.0, "Total Transactions": 32.0, "Total Customers": 25.0, "Median Spend per Transaction": 12.41, "Median Spend per Customer": 12.41 }, "geometry": { "type": "Point", "coordinates": [ -75.167954, 39.952448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22c@628-pj6-jsq", "Name": "Jopok Topokki", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.044523, "LONGITUDE": -75.117651, "DATE_RANGE_START": 2024, "Total Visits": 4471.0, "Total Visitors": 2998.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 19.0, "Total Spend": 980.0, "Total Transactions": 67.0, "Total Customers": 61.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.117651, 40.044523 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfz-ch5", "Name": "La Roca", "Category": "Restaurants and Other Eating Places", "Address": "4161 Main St", "LATITUDE": 40.023561, "LONGITUDE": -75.219763, "DATE_RANGE_START": 2024, "Total Visits": 234.0, "Total Visitors": 203.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 63.0, "Total Spend": 1335.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 30.31, "Median Spend per Customer": 41.48 }, "geometry": { "type": "Point", "coordinates": [ -75.219763, 40.023561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-5mk", "Name": "McGillin's Olde Ale House", "Category": "Restaurants and Other Eating Places", "Address": "1310 Drury St", "LATITUDE": 39.95021, "LONGITUDE": -75.162564, "DATE_RANGE_START": 2024, "Total Visits": 350.0, "Total Visitors": 262.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 49.0, "Total Spend": 48616.0, "Total Transactions": 1710.0, "Total Customers": 1186.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 28.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162564, 39.95021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-cqz", "Name": "Microtel Inn and Suites", "Category": "Traveler Accommodation", "Address": "8840 Tinicum Blvd", "LATITUDE": 39.888926, "LONGITUDE": -75.245619, "DATE_RANGE_START": 2024, "Total Visits": 483.0, "Total Visitors": 305.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 175.0, "Total Spend": 5377.0, "Total Transactions": 34.0, "Total Customers": 32.0, "Median Spend per Transaction": 127.88, "Median Spend per Customer": 135.73 }, "geometry": { "type": "Point", "coordinates": [ -75.245619, 39.888926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-3kf", "Name": "South Side Pizza", "Category": "Restaurants and Other Eating Places", "Address": "740 Mifflin St", "LATITUDE": 39.925364, "LONGITUDE": -75.159106, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 1.0, "Total Spend": 128.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 21.4, "Median Spend per Customer": 21.4 }, "geometry": { "type": "Point", "coordinates": [ -75.159106, 39.925364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pgf-73q", "Name": "Great Taste", "Category": "Restaurants and Other Eating Places", "Address": "4101 Lancaster Ave", "LATITUDE": 39.965401, "LONGITUDE": -75.205637, "DATE_RANGE_START": 2024, "Total Visits": 516.0, "Total Visitors": 445.0, "POI_CBG": 421010107002.0, "Median Dwell Time": 1.0, "Total Spend": 275.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 22.5, "Median Spend per Customer": 43.75 }, "geometry": { "type": "Point", "coordinates": [ -75.205637, 39.965401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pnw-pjv", "Name": "Murph's Bar", "Category": "Restaurants and Other Eating Places", "Address": "202 E Girard Ave", "LATITUDE": 39.968904, "LONGITUDE": -75.133385, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 165.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 24.0, "Total Spend": 882.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 202.5, "Median Spend per Customer": 202.5 }, "geometry": { "type": "Point", "coordinates": [ -75.133385, 39.968904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8f-9cq", "Name": "D & R Food Market", "Category": "Grocery Stores", "Address": "1801 Orthodox St", "LATITUDE": 40.012762, "LONGITUDE": -75.081478, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 12.0, "POI_CBG": 421010300005.0, "Median Dwell Time": 16.0, "Total Spend": 559.0, "Total Transactions": 62.0, "Total Customers": 22.0, "Median Spend per Transaction": 7.74, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.081478, 40.012762 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pj5-435", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3705 Germantown Ave", "LATITUDE": 40.009461, "LONGITUDE": -75.150664, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010203001.0, "Median Dwell Time": 5.0, "Total Spend": 2837.0, "Total Transactions": 378.0, "Total Customers": 118.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 10.83 }, "geometry": { "type": "Point", "coordinates": [ -75.150664, 40.009461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-sdv", "Name": "Warwick Hotel Rittenhouse Square", "Category": "Traveler Accommodation", "Address": "220 S 17th St", "LATITUDE": 39.949172, "LONGITUDE": -75.169434, "DATE_RANGE_START": 2024, "Total Visits": 1274.0, "Total Visitors": 898.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 173.0, "Total Spend": 6880.0, "Total Transactions": 49.0, "Total Customers": 43.0, "Median Spend per Transaction": 34.66, "Median Spend per Customer": 36.54 }, "geometry": { "type": "Point", "coordinates": [ -75.169434, 39.949172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-w6k", "Name": "National Mechanics", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "22 S 3rd St", "LATITUDE": 39.94956, "LONGITUDE": -75.146014, "DATE_RANGE_START": 2024, "Total Visits": 230.0, "Total Visitors": 226.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 35.0, "Total Spend": 1046.0, "Total Transactions": 25.0, "Total Customers": 17.0, "Median Spend per Transaction": 43.96, "Median Spend per Customer": 33.61 }, "geometry": { "type": "Point", "coordinates": [ -75.146014, 39.94956 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-223@628-pp4-xt9", "Name": "Family Food Market", "Category": "Grocery Stores", "Address": "273 W York St", "LATITUDE": 39.987227, "LONGITUDE": -75.138158, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 25.0, "POI_CBG": 421010163004.0, "Median Dwell Time": 46.0, "Total Spend": 521.0, "Total Transactions": 70.0, "Total Customers": 54.0, "Median Spend per Transaction": 7.27, "Median Spend per Customer": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.138158, 39.987227 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pfy-brk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6101 Ridge Ave", "LATITUDE": 40.033879, "LONGITUDE": -75.215248, "DATE_RANGE_START": 2024, "Total Visits": 527.0, "Total Visitors": 348.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 5.0, "Total Spend": 1208.0, "Total Transactions": 97.0, "Total Customers": 39.0, "Median Spend per Transaction": 10.05, "Median Spend per Customer": 15.75 }, "geometry": { "type": "Point", "coordinates": [ -75.215248, 40.033879 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-rkz", "Name": "Cafe Lutecia", "Category": "Restaurants and Other Eating Places", "Address": "2301 Lombard St", "LATITUDE": 39.946587, "LONGITUDE": -75.179627, "DATE_RANGE_START": 2024, "Total Visits": 121.0, "Total Visitors": 121.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 39.0, "Total Spend": 479.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 88.75, "Median Spend per Customer": 59.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179627, 39.946587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phq-gtv", "Name": "Bruno's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1838 W Cheltenham Ave", "LATITUDE": 40.067096, "LONGITUDE": -75.146442, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 93.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 4.0, "Total Spend": 246.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 24.44, "Median Spend per Customer": 24.44 }, "geometry": { "type": "Point", "coordinates": [ -75.146442, 40.067096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@63s-dw9-8n5", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "8800 Essington Ave", "LATITUDE": 39.877273, "LONGITUDE": -75.245918, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 11.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 2647.0, "Total Transactions": 140.0, "Total Customers": 134.0, "Median Spend per Transaction": 17.19, "Median Spend per Customer": 17.55 }, "geometry": { "type": "Point", "coordinates": [ -75.245918, 39.877273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pj6-tqf", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044244, "LONGITUDE": -75.101804, "DATE_RANGE_START": 2024, "Total Visits": 384.0, "Total Visitors": 344.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 8.0, "Total Spend": 3996.0, "Total Transactions": 295.0, "Total Customers": 222.0, "Median Spend per Transaction": 12.3, "Median Spend per Customer": 14.64 }, "geometry": { "type": "Point", "coordinates": [ -75.101804, 40.044244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9m-rhq", "Name": "Beer Baron", "Category": "Beer, Wine, and Liquor Stores", "Address": "3290 Red Lion Rd", "LATITUDE": 40.07923, "LONGITUDE": -74.992868, "DATE_RANGE_START": 2024, "Total Visits": 1875.0, "Total Visitors": 943.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 6.0, "Total Spend": 6080.0, "Total Transactions": 233.0, "Total Customers": 126.0, "Median Spend per Transaction": 22.67, "Median Spend per Customer": 35.59 }, "geometry": { "type": "Point", "coordinates": [ -74.992868, 40.07923 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7w-v2k", "Name": "Macy's", "Category": "Department Stores", "Address": "2399 Cottman Ave", "LATITUDE": 40.046805, "LONGITUDE": -75.05474, "DATE_RANGE_START": 2024, "Total Visits": 2145.0, "Total Visitors": 1576.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 21.0, "Total Spend": 7697.0, "Total Transactions": 65.0, "Total Customers": 53.0, "Median Spend per Transaction": 75.6, "Median Spend per Customer": 87.38 }, "geometry": { "type": "Point", "coordinates": [ -75.05474, 40.046805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7w-xyv", "Name": "Mr. Tire", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6740 Frankford Ave", "LATITUDE": 40.032446, "LONGITUDE": -75.05169, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 61.0, "POI_CBG": 421010316006.0, "Median Dwell Time": 9.0, "Total Spend": 4475.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 682.94, "Median Spend per Customer": 682.94 }, "geometry": { "type": "Point", "coordinates": [ -75.05169, 40.032446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-kj9", "Name": "Fleur De Lis Boutique", "Category": "Clothing Stores", "Address": "2107 Walnut St", "LATITUDE": 39.950913, "LONGITUDE": -75.176137, "DATE_RANGE_START": 2024, "Total Visits": 2941.0, "Total Visitors": 2221.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 1.0, "Total Spend": 585.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.176137, 39.950913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-zs5", "Name": "Repo Records", "Category": "Electronics and Appliance Stores", "Address": "506 South St", "LATITUDE": 39.941623, "LONGITUDE": -75.151148, "DATE_RANGE_START": 2024, "Total Visits": 610.0, "Total Visitors": 515.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 5.0, "Total Spend": 12765.0, "Total Transactions": 309.0, "Total Customers": 284.0, "Median Spend per Transaction": 30.23, "Median Spend per Customer": 33.47 }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.941623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pp2-pqf", "Name": "Total Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "2431 Castor Ave Ste A", "LATITUDE": 39.993803, "LONGITUDE": -75.093019, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 53.0, "Total Spend": 4558.0, "Total Transactions": 158.0, "Total Customers": 99.0, "Median Spend per Transaction": 22.98, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.093019, 39.993803 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmf-pqf", "Name": "Senoj Clothing", "Category": "Clothing Stores", "Address": "1609 South St", "LATITUDE": 39.944292, "LONGITUDE": -75.169204, "DATE_RANGE_START": 2024, "Total Visits": 499.0, "Total Visitors": 391.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 1.0, "Total Spend": 205.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 78.0, "Median Spend per Customer": 78.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169204, 39.944292 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-6hq", "Name": "Nurses Uniform Place", "Category": "Clothing Stores", "Address": "1104 Chestnut St", "LATITUDE": 39.950135, "LONGITUDE": -75.158882, "DATE_RANGE_START": 2024, "Total Visits": 5134.0, "Total Visitors": 2192.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 96.0, "Total Spend": 99.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 37.5, "Median Spend per Customer": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.158882, 39.950135 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-p7x-bff", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6501 Harbison Ave", "LATITUDE": 40.034596, "LONGITUDE": -75.063312, "DATE_RANGE_START": 2024, "Total Visits": 951.0, "Total Visitors": 637.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 7.0, "Total Spend": 11352.0, "Total Transactions": 487.0, "Total Customers": 352.0, "Median Spend per Transaction": 13.99, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.063312, 40.034596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pj8-rkz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "4670 E Roosevelt Blvd", "LATITUDE": 40.029034, "LONGITUDE": -75.099595, "DATE_RANGE_START": 2024, "Total Visits": 2468.0, "Total Visitors": 1871.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 5.0, "Total Spend": 8423.0, "Total Transactions": 459.0, "Total Customers": 407.0, "Median Spend per Transaction": 15.56, "Median Spend per Customer": 18.13 }, "geometry": { "type": "Point", "coordinates": [ -75.099595, 40.029034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pm9-yd9", "Name": "Queen Village Food Market & Deli", "Category": "Restaurants and Other Eating Places", "Address": "629 S 4th St", "LATITUDE": 39.940822, "LONGITUDE": -75.149126, "DATE_RANGE_START": 2024, "Total Visits": 78.0, "Total Visitors": 22.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 528.0, "Total Spend": 84.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 10.25 }, "geometry": { "type": "Point", "coordinates": [ -75.149126, 39.940822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 Walnut St", "LATITUDE": 39.948451, "LONGITUDE": -75.159308, "DATE_RANGE_START": 2024, "Total Visits": 440.0, "Total Visitors": 396.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 8.0, "Total Spend": 6332.0, "Total Transactions": 1030.0, "Total Customers": 411.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 8.62 }, "geometry": { "type": "Point", "coordinates": [ -75.159308, 39.948451 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-w49", "Name": "Seafood Unlimited", "Category": "Restaurants and Other Eating Places", "Address": "270 S 20th St", "LATITUDE": 39.948416, "LONGITUDE": -75.174494, "DATE_RANGE_START": 2024, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 6.0, "Total Spend": 481.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 45.24, "Median Spend per Customer": 48.58 }, "geometry": { "type": "Point", "coordinates": [ -75.174494, 39.948416 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pmb-v75", "Name": "Mei Mei Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "33 S 2nd St", "LATITUDE": 39.948931, "LONGITUDE": -75.143532, "DATE_RANGE_START": 2024, "Total Visits": 286.0, "Total Visitors": 262.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 8.0, "Total Spend": 541.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 97.34, "Median Spend per Customer": 97.34 }, "geometry": { "type": "Point", "coordinates": [ -75.143532, 39.948931 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-6ff", "Name": "sweetgreen", "Category": "Restaurants and Other Eating Places", "Address": "924 Walnut St", "LATITUDE": 39.9484, "LONGITUDE": -75.157078, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 2.0, "Total Spend": 16401.0, "Total Transactions": 868.0, "Total Customers": 607.0, "Median Spend per Transaction": 16.96, "Median Spend per Customer": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.157078, 39.9484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-5fz", "Name": "Easy Pickins", "Category": "Clothing Stores", "Address": "1207 Chestnut St", "LATITUDE": 39.950726, "LONGITUDE": -75.160596, "DATE_RANGE_START": 2024, "Total Visits": 2597.0, "Total Visitors": 2089.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 3354.0, "Total Transactions": 124.0, "Total Customers": 103.0, "Median Spend per Transaction": 21.99, "Median Spend per Customer": 20.19 }, "geometry": { "type": "Point", "coordinates": [ -75.160596, 39.950726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pfy-brk", "Name": "Morrison Pharmacy", "Category": "Health and Personal Care Stores", "Address": "6113 Ridge Ave", "LATITUDE": 40.033993, "LONGITUDE": -75.215651, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 279.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 5.0, "Total Spend": 42.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 15.77, "Median Spend per Customer": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.215651, 40.033993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-php-r8v", "Name": "Moonlight Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "6834 Limekiln Pike", "LATITUDE": 40.058373, "LONGITUDE": -75.152857, "DATE_RANGE_START": 2024, "Total Visits": 270.0, "Total Visitors": 219.0, "POI_CBG": 421010265004.0, "Median Dwell Time": 22.0, "Total Spend": 3064.0, "Total Transactions": 93.0, "Total Customers": 68.0, "Median Spend per Transaction": 30.16, "Median Spend per Customer": 37.44 }, "geometry": { "type": "Point", "coordinates": [ -75.152857, 40.058373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pnw-mhq", "Name": "El Camino Real", "Category": "Restaurants and Other Eating Places", "Address": "1040 N 2nd St", "LATITUDE": 39.967356, "LONGITUDE": -75.140166, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 116.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 36.0, "Total Spend": 3461.0, "Total Transactions": 45.0, "Total Customers": 39.0, "Median Spend per Transaction": 62.56, "Median Spend per Customer": 71.93 }, "geometry": { "type": "Point", "coordinates": [ -75.140166, 39.967356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pg8-ks5", "Name": "Lee's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "930 N 29th St", "LATITUDE": 39.974096, "LONGITUDE": -75.183793, "DATE_RANGE_START": 2024, "Total Visits": 103.0, "Total Visitors": 93.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 1.0, "Total Spend": 903.0, "Total Transactions": 68.0, "Total Customers": 45.0, "Median Spend per Transaction": 12.85, "Median Spend per Customer": 15.98 }, "geometry": { "type": "Point", "coordinates": [ -75.183793, 39.974096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm9-wx5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "634 Market St", "LATITUDE": 39.950694, "LONGITUDE": -75.151921, "DATE_RANGE_START": 2024, "Total Visits": 582.0, "Total Visitors": 467.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 1.0, "Total Spend": 4672.0, "Total Transactions": 599.0, "Total Customers": 298.0, "Median Spend per Transaction": 6.53, "Median Spend per Customer": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.151921, 39.950694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-p85-8vz", "Name": "Pinoy Groseri", "Category": "Grocery Stores", "Address": "7925 Bustleton Ave", "LATITUDE": 40.057456, "LONGITUDE": -75.052586, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010334002.0, "Median Dwell Time": null, "Total Spend": 544.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 72.49, "Median Spend per Customer": 72.49 }, "geometry": { "type": "Point", "coordinates": [ -75.052586, 40.057456 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-223@628-pnx-2p9", "Name": "Reggae Reggae Vibes", "Category": "Restaurants and Other Eating Places", "Address": "517 W Girard Ave", "LATITUDE": 39.970507, "LONGITUDE": -75.145707, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 51.0, "POI_CBG": 421010144003.0, "Median Dwell Time": 2.0, "Total Spend": 745.0, "Total Transactions": 45.0, "Total Customers": 33.0, "Median Spend per Transaction": 16.41, "Median Spend per Customer": 17.19 }, "geometry": { "type": "Point", "coordinates": [ -75.145707, 39.970507 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pmb-xyv", "Name": "Pho 20", "Category": "Restaurants and Other Eating Places", "Address": "234 N 10th St # 236", "LATITUDE": 39.956547, "LONGITUDE": -75.15583, "DATE_RANGE_START": 2024, "Total Visits": 201.0, "Total Visitors": 183.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 5.0, "Total Spend": 2410.0, "Total Transactions": 82.0, "Total Customers": 70.0, "Median Spend per Transaction": 21.94, "Median Spend per Customer": 27.54 }, "geometry": { "type": "Point", "coordinates": [ -75.15583, 39.956547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8m-y7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6608 Frankford Ave", "LATITUDE": 40.03121, "LONGITUDE": -75.054698, "DATE_RANGE_START": 2024, "Total Visits": 741.0, "Total Visitors": 537.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 6.0, "Total Spend": 5068.0, "Total Transactions": 570.0, "Total Customers": 199.0, "Median Spend per Transaction": 7.16, "Median Spend per Customer": 9.59 }, "geometry": { "type": "Point", "coordinates": [ -75.054698, 40.03121 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pnx-7yv", "Name": "Soy Cafe", "Category": "Restaurants and Other Eating Places", "Address": "630 N 2nd St", "LATITUDE": 39.961777, "LONGITUDE": -75.141347, "DATE_RANGE_START": 2024, "Total Visits": 423.0, "Total Visitors": 305.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 13.0, "Total Spend": 1262.0, "Total Transactions": 86.0, "Total Customers": 68.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 10.96 }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.961777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p82-nqz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6430 Castor Ave", "LATITUDE": 40.040675, "LONGITUDE": -75.076814, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 8.0, "POI_CBG": 421010311012.0, "Median Dwell Time": 8.0, "Total Spend": 231.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 19.35, "Median Spend per Customer": 29.16 }, "geometry": { "type": "Point", "coordinates": [ -75.076814, 40.040675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pj2-p35", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "3901 M St # 29", "LATITUDE": 40.006464, "LONGITUDE": -75.100401, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 25.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 11.0, "Total Spend": 376.0, "Total Transactions": 25.0, "Total Customers": 22.0, "Median Spend per Transaction": 12.93, "Median Spend per Customer": 12.98 }, "geometry": { "type": "Point", "coordinates": [ -75.100401, 40.006464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pj5-hh5", "Name": "HKS pharmacy", "Category": "Health and Personal Care Stores", "Address": "3357 N Front St", "LATITUDE": 40.00139, "LONGITUDE": -75.128466, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 41.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 11.0, "Total Spend": 7524.0, "Total Transactions": 288.0, "Total Customers": 220.0, "Median Spend per Transaction": 11.22, "Median Spend per Customer": 17.91 }, "geometry": { "type": "Point", "coordinates": [ -75.128466, 40.00139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmc-v2k", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "1851 S Columbus Blvd Ste 7", "LATITUDE": 39.923381, "LONGITUDE": -75.140521, "DATE_RANGE_START": 2024, "Total Visits": 850.0, "Total Visitors": 557.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 6.0, "Total Spend": 31463.0, "Total Transactions": 556.0, "Total Customers": 492.0, "Median Spend per Transaction": 38.34, "Median Spend per Customer": 42.12 }, "geometry": { "type": "Point", "coordinates": [ -75.140521, 39.923381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgb-kmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1300 N Broad St", "LATITUDE": 39.973478, "LONGITUDE": -75.159321, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010140003.0, "Median Dwell Time": 3.0, "Total Spend": 80.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.67, "Median Spend per Customer": 12.67 }, "geometry": { "type": "Point", "coordinates": [ -75.159321, 39.973478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-5mk", "Name": "Barbuzzo", "Category": "Restaurants and Other Eating Places", "Address": "110 S 13th St", "LATITUDE": 39.950022, "LONGITUDE": -75.162126, "DATE_RANGE_START": 2024, "Total Visits": 2534.0, "Total Visitors": 1894.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 21.0, "Total Spend": 3025.0, "Total Transactions": 36.0, "Total Customers": 32.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 98.1 }, "geometry": { "type": "Point", "coordinates": [ -75.162126, 39.950022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgy-ks5", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "701 E Cathedral Rd", "LATITUDE": 40.064334, "LONGITUDE": -75.23681, "DATE_RANGE_START": 2024, "Total Visits": 571.0, "Total Visitors": 241.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 37.0, "Total Spend": 13866.0, "Total Transactions": 837.0, "Total Customers": 541.0, "Median Spend per Transaction": 14.77, "Median Spend per Customer": 17.82 }, "geometry": { "type": "Point", "coordinates": [ -75.23681, 40.064334 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmd-vvf", "Name": "Rittenhouse Hardware", "Category": "Building Material and Supplies Dealers", "Address": "2001 Pine St", "LATITUDE": 39.946924, "LONGITUDE": -75.174732, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 47.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 724.0, "Total Spend": 1052.0, "Total Transactions": 29.0, "Total Customers": 29.0, "Median Spend per Transaction": 25.24, "Median Spend per Customer": 25.24 }, "geometry": { "type": "Point", "coordinates": [ -75.174732, 39.946924 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-6tv", "Name": "LIDS", "Category": "Clothing Stores", "Address": "1301 Franklin Mills Cir", "LATITUDE": 40.085645, "LONGITUDE": -74.96201, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 1688.0, "Total Transactions": 33.0, "Total Customers": 32.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 41.59 }, "geometry": { "type": "Point", "coordinates": [ -74.96201, 40.085645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvw-9pv", "Name": "Race Supermarket", "Category": "Grocery Stores", "Address": "156 N 52nd St", "LATITUDE": 39.963026, "LONGITUDE": -75.224526, "DATE_RANGE_START": 2024, "Total Visits": 125.0, "Total Visitors": 72.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 6.0, "Total Spend": 827.0, "Total Transactions": 72.0, "Total Customers": 41.0, "Median Spend per Transaction": 8.84, "Median Spend per Customer": 17.17 }, "geometry": { "type": "Point", "coordinates": [ -75.224526, 39.963026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgg-p5f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3100 W Allegheny Ave", "LATITUDE": 40.004813, "LONGITUDE": -75.179813, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 5.0, "Total Spend": 8828.0, "Total Transactions": 749.0, "Total Customers": 490.0, "Median Spend per Transaction": 10.22, "Median Spend per Customer": 12.85 }, "geometry": { "type": "Point", "coordinates": [ -75.179813, 40.004813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pft-z9f", "Name": "Yiro Yiro", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032317, "LONGITUDE": -75.214274, "DATE_RANGE_START": 2024, "Total Visits": 986.0, "Total Visitors": 582.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 6.0, "Total Spend": 1687.0, "Total Transactions": 65.0, "Total Customers": 53.0, "Median Spend per Transaction": 23.71, "Median Spend per Customer": 24.01 }, "geometry": { "type": "Point", "coordinates": [ -75.214274, 40.032317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-t5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5272 Frankford Ave", "LATITUDE": 40.023458, "LONGITUDE": -75.077163, "DATE_RANGE_START": 2024, "Total Visits": 358.0, "Total Visitors": 182.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 1.0, "Total Spend": 4737.0, "Total Transactions": 736.0, "Total Customers": 240.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 10.61 }, "geometry": { "type": "Point", "coordinates": [ -75.077163, 40.023458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph6-nbk", "Name": "Ibis Lounge", "Category": "Restaurants and Other Eating Places", "Address": "5420 Lancaster Ave", "LATITUDE": 39.979153, "LONGITUDE": -75.231302, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010113002.0, "Median Dwell Time": null, "Total Spend": 783.0, "Total Transactions": 34.0, "Total Customers": 22.0, "Median Spend per Transaction": 17.42, "Median Spend per Customer": 17.43 }, "geometry": { "type": "Point", "coordinates": [ -75.231302, 39.979153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5zz", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "128 S 11th St", "LATITUDE": 39.949084, "LONGITUDE": -75.159155, "DATE_RANGE_START": 2024, "Total Visits": 2542.0, "Total Visitors": 1748.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 4.0, "Total Spend": 1785.0, "Total Transactions": 88.0, "Total Customers": 83.0, "Median Spend per Transaction": 16.07, "Median Spend per Customer": 16.12 }, "geometry": { "type": "Point", "coordinates": [ -75.159155, 39.949084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pmd-vmk", "Name": "Erawan Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "123 S 23rd St", "LATITUDE": 39.951764, "LONGITUDE": -75.178105, "DATE_RANGE_START": 2024, "Total Visits": 215.0, "Total Visitors": 166.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 1.0, "Total Spend": 739.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 53.2, "Median Spend per Customer": 53.2 }, "geometry": { "type": "Point", "coordinates": [ -75.178105, 39.951764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-975", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.953116, "LONGITUDE": -75.19225, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 1.0, "Total Spend": 5305.0, "Total Transactions": 570.0, "Total Customers": 369.0, "Median Spend per Transaction": 7.51, "Median Spend per Customer": 10.43 }, "geometry": { "type": "Point", "coordinates": [ -75.19225, 39.953116 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dw2-bc5", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "100 N Edgewood St", "LATITUDE": 39.963748, "LONGITUDE": -75.241226, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010096002.0, "Median Dwell Time": null, "Total Spend": 49.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.241226, 39.963748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pm6-hbk", "Name": "La Canasta Mexican Food", "Category": "Restaurants and Other Eating Places", "Address": "2341 S 4th St", "LATITUDE": 39.91868, "LONGITUDE": -75.15377, "DATE_RANGE_START": 2024, "Total Visits": 483.0, "Total Visitors": 432.0, "POI_CBG": 421010042024.0, "Median Dwell Time": 37.0, "Total Spend": 154.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.36, "Median Spend per Customer": 17.36 }, "geometry": { "type": "Point", "coordinates": [ -75.15377, 39.91868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-n5z", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1617 John F Kennedy Blvd", "LATITUDE": 39.954271, "LONGITUDE": -75.167991, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 37.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 5.0, "Total Spend": 4600.0, "Total Transactions": 224.0, "Total Customers": 155.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.167991, 39.954271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pmf-s3q", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1800 South St", "LATITUDE": 39.944247, "LONGITUDE": -75.172187, "DATE_RANGE_START": 2024, "Total Visits": 769.0, "Total Visitors": 579.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 1.0, "Total Spend": 7154.0, "Total Transactions": 342.0, "Total Customers": 163.0, "Median Spend per Transaction": 14.53, "Median Spend per Customer": 25.08 }, "geometry": { "type": "Point", "coordinates": [ -75.172187, 39.944247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "258-222@628-pm3-t7q", "Name": "Bertolinos Pharmacy", "Category": "Health and Personal Care Stores", "Address": "1500 S 12th St", "LATITUDE": 39.931136, "LONGITUDE": -75.164562, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 84.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 1.0, "Total Spend": 407.0, "Total Transactions": 38.0, "Total Customers": 25.0, "Median Spend per Transaction": 5.94, "Median Spend per Customer": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164562, 39.931136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pm3-vpv", "Name": "Arctic Scoop", "Category": "Restaurants and Other Eating Places", "Address": "1812 E Passyunk Ave", "LATITUDE": 39.927463, "LONGITUDE": -75.166549, "DATE_RANGE_START": 2024, "Total Visits": 105.0, "Total Visitors": 105.0, "POI_CBG": 421010029001.0, "Median Dwell Time": null, "Total Spend": 2480.0, "Total Transactions": 225.0, "Total Customers": 207.0, "Median Spend per Transaction": 9.72, "Median Spend per Customer": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166549, 39.927463 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-wp9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "315 Market St", "LATITUDE": 39.950469, "LONGITUDE": -75.146233, "DATE_RANGE_START": 2024, "Total Visits": 1195.0, "Total Visitors": 972.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 4567.0, "Total Transactions": 137.0, "Total Customers": 108.0, "Median Spend per Transaction": 25.17, "Median Spend per Customer": 21.01 }, "geometry": { "type": "Point", "coordinates": [ -75.146233, 39.950469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pfy-h3q", "Name": "Accent on Animals", "Category": "Other Miscellaneous Store Retailers", "Address": "7142 Ridge Ave", "LATITUDE": 40.044128, "LONGITUDE": -75.232181, "DATE_RANGE_START": 2024, "Total Visits": 294.0, "Total Visitors": 201.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 3.0, "Total Spend": 1393.0, "Total Transactions": 58.0, "Total Customers": 58.0, "Median Spend per Transaction": 19.97, "Median Spend per Customer": 19.97 }, "geometry": { "type": "Point", "coordinates": [ -75.232181, 40.044128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-fmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2654 S 18th St", "LATITUDE": 39.918024, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2024, "Total Visits": 542.0, "Total Visitors": 390.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 3.0, "Total Spend": 4069.0, "Total Transactions": 536.0, "Total Customers": 250.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 11.63 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.918024 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-snq", "Name": "Locust Rendezvous", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1415 Locust St", "LATITUDE": 39.948574, "LONGITUDE": -75.165905, "DATE_RANGE_START": 2024, "Total Visits": 775.0, "Total Visitors": 481.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 4.0, "Total Spend": 12844.0, "Total Transactions": 253.0, "Total Customers": 171.0, "Median Spend per Transaction": 37.46, "Median Spend per Customer": 51.73 }, "geometry": { "type": "Point", "coordinates": [ -75.165905, 39.948574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm9-whq", "Name": "Sonny's Famous Steaks", "Category": "Restaurants and Other Eating Places", "Address": "228 Market St", "LATITUDE": 39.949809, "LONGITUDE": -75.144793, "DATE_RANGE_START": 2024, "Total Visits": 2309.0, "Total Visitors": 1785.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 26.0, "Total Spend": 9352.0, "Total Transactions": 329.0, "Total Customers": 292.0, "Median Spend per Transaction": 21.88, "Median Spend per Customer": 25.4 }, "geometry": { "type": "Point", "coordinates": [ -75.144793, 39.949809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pmf-mrk", "Name": "Elixr Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "1600 Market St", "LATITUDE": 39.952527, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2024, "Total Visits": 1827.0, "Total Visitors": 868.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 140.0, "Total Spend": 125.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 6.4 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.952527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-py9", "Name": "George's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 W Girard Ave", "LATITUDE": 39.969756, "LONGITUDE": -75.139771, "DATE_RANGE_START": 2024, "Total Visits": 162.0, "Total Visitors": 136.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 7.0, "Total Spend": 1880.0, "Total Transactions": 113.0, "Total Customers": 51.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 13.95 }, "geometry": { "type": "Point", "coordinates": [ -75.139771, 39.969756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-phz-xbk", "Name": "Premium Pizza", "Category": "Restaurants and Other Eating Places", "Address": "953 E Tioga St", "LATITUDE": 40.001089, "LONGITUDE": -75.110473, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 5.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 356.0, "Total Spend": 1638.0, "Total Transactions": 78.0, "Total Customers": 61.0, "Median Spend per Transaction": 18.04, "Median Spend per Customer": 22.79 }, "geometry": { "type": "Point", "coordinates": [ -75.110473, 40.001089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-xkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1630 E Wadsworth Ave", "LATITUDE": 40.081221, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2024, "Total Visits": 527.0, "Total Visitors": 475.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 4.0, "Total Spend": 4309.0, "Total Transactions": 481.0, "Total Customers": 267.0, "Median Spend per Transaction": 7.43, "Median Spend per Customer": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 40.081221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pm4-gtv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2027 S Broad St", "LATITUDE": 39.924715, "LONGITUDE": -75.169142, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 13.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 47.0, "Total Spend": 3734.0, "Total Transactions": 236.0, "Total Customers": 169.0, "Median Spend per Transaction": 13.06, "Median Spend per Customer": 16.35 }, "geometry": { "type": "Point", "coordinates": [ -75.169142, 39.924715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1820 Torresdale Ave", "LATITUDE": 40.005662, "LONGITUDE": -75.0958, "DATE_RANGE_START": 2024, "Total Visits": 465.0, "Total Visitors": 133.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 335.0, "Total Spend": 6339.0, "Total Transactions": 690.0, "Total Customers": 269.0, "Median Spend per Transaction": 7.86, "Median Spend per Customer": 12.27 }, "geometry": { "type": "Point", "coordinates": [ -75.0958, 40.005662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvr-9zz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6110 Woodland Ave", "LATITUDE": 39.928884, "LONGITUDE": -75.229306, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 222.0, "Total Spend": 3300.0, "Total Transactions": 395.0, "Total Customers": 196.0, "Median Spend per Transaction": 6.81, "Median Spend per Customer": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.229306, 39.928884 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgg-p35", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3101 W Allegheny Ave", "LATITUDE": 40.005524, "LONGITUDE": -75.179334, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 320.0, "POI_CBG": 421010170003.0, "Median Dwell Time": 5.0, "Total Spend": 1714.0, "Total Transactions": 39.0, "Total Customers": 38.0, "Median Spend per Transaction": 25.9, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.179334, 40.005524 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8n-6kz", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6301 Frankford Ave", "LATITUDE": 40.027244, "LONGITUDE": -75.059172, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 217.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 7.0, "Total Spend": 101.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.059172, 40.027244 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-fcq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5801 Roosevelt Blvd", "LATITUDE": 40.031374, "LONGITUDE": -75.083487, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 4.0, "POI_CBG": 421010318004.0, "Median Dwell Time": 4.0, "Total Spend": 461.0, "Total Transactions": 13.0, "Total Customers": 9.0, "Median Spend per Transaction": 22.45, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.083487, 40.031374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm4-ct9", "Name": "Hibachi 2 Go", "Category": "Restaurants and Other Eating Places", "Address": "1414 Snyder Ave", "LATITUDE": 39.924257, "LONGITUDE": -75.170377, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 134.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 243.0, "Total Spend": 219.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 33.33, "Median Spend per Customer": 25.42 }, "geometry": { "type": "Point", "coordinates": [ -75.170377, 39.924257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmb-3nq", "Name": "Headhouse Farmers' Market", "Category": "Specialty Food Stores", "Address": "South St @ S 2nd St", "LATITUDE": 39.940978, "LONGITUDE": -75.145396, "DATE_RANGE_START": 2024, "Total Visits": 536.0, "Total Visitors": 509.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 22.0, "Total Spend": 45.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.145396, 39.940978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp5-2p9", "Name": "Pharmacy of America III", "Category": "Health and Personal Care Stores", "Address": "217 W Lehigh Ave Ste", "LATITUDE": 39.992041, "LONGITUDE": -75.135673, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 22.0, "POI_CBG": 421010176015.0, "Median Dwell Time": 7.0, "Total Spend": 44.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 3.0, "Median Spend per Customer": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -75.135673, 39.992041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pmb-cwk", "Name": "Sushi Poke", "Category": "Restaurants and Other Eating Places", "Address": "1310 South St", "LATITUDE": 39.943263, "LONGITUDE": -75.163741, "DATE_RANGE_START": 2024, "Total Visits": 444.0, "Total Visitors": 394.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 1.0, "Total Spend": 1357.0, "Total Transactions": 45.0, "Total Customers": 30.0, "Median Spend per Transaction": 19.38, "Median Spend per Customer": 33.57 }, "geometry": { "type": "Point", "coordinates": [ -75.163741, 39.943263 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnx-6ff", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "456 N 5th St", "LATITUDE": 39.959702, "LONGITUDE": -75.147615, "DATE_RANGE_START": 2024, "Total Visits": 1080.0, "Total Visitors": 854.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 5.0, "Total Spend": 34305.0, "Total Transactions": 910.0, "Total Customers": 702.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 30.28 }, "geometry": { "type": "Point", "coordinates": [ -75.147615, 39.959702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-k75", "Name": "Best Buy", "Category": "Electronics and Appliance Stores", "Address": "9733 Roosevelt Blvd", "LATITUDE": 40.082306, "LONGITUDE": -75.023635, "DATE_RANGE_START": 2024, "Total Visits": 1510.0, "Total Visitors": 1368.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 11.0, "Total Spend": 146072.0, "Total Transactions": 719.0, "Total Customers": 639.0, "Median Spend per Transaction": 70.17, "Median Spend per Customer": 78.81 }, "geometry": { "type": "Point", "coordinates": [ -75.023635, 40.082306 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-v4v", "Name": "Food Point Deli", "Category": "Grocery Stores", "Address": "1711 S Broad St", "LATITUDE": 39.928702, "LONGITUDE": -75.168281, "DATE_RANGE_START": 2024, "Total Visits": 336.0, "Total Visitors": 275.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 7.0, "Total Spend": 150.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 19.87, "Median Spend per Customer": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.168281, 39.928702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnz-nbk", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2539 Castor Ave", "LATITUDE": 39.99218, "LONGITUDE": -75.091122, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 80.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 15.0, "Total Spend": 78908.0, "Total Transactions": 465.0, "Total Customers": 242.0, "Median Spend per Transaction": 64.67, "Median Spend per Customer": 87.9 }, "geometry": { "type": "Point", "coordinates": [ -75.091122, 39.99218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-xyv", "Name": "Little Saigon Cafe", "Category": "Restaurants and Other Eating Places", "Address": "220 N 10th St", "LATITUDE": 39.956146, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2024, "Total Visits": 987.0, "Total Visitors": 778.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 11.0, "Total Spend": 1144.0, "Total Transactions": 26.0, "Total Customers": 22.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 44.13 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.956146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-h3q", "Name": "Gennaro's Famous Pizza", "Category": "Restaurants and Other Eating Places", "Address": "210 W Chelten Ave", "LATITUDE": 40.031242, "LONGITUDE": -75.179104, "DATE_RANGE_START": 2024, "Total Visits": 333.0, "Total Visitors": 212.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 33.0, "Total Spend": 3650.0, "Total Transactions": 146.0, "Total Customers": 96.0, "Median Spend per Transaction": 21.51, "Median Spend per Customer": 29.2 }, "geometry": { "type": "Point", "coordinates": [ -75.179104, 40.031242 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pj8-tgk", "Name": "New Ben City Supermarket", "Category": "Grocery Stores", "Address": "5520 Whitaker Ave", "LATITUDE": 40.035691, "LONGITUDE": -75.100546, "DATE_RANGE_START": 2024, "Total Visits": 673.0, "Total Visitors": 429.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 10.0, "Total Spend": 39.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 14.72 }, "geometry": { "type": "Point", "coordinates": [ -75.100546, 40.035691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pnx-8n5", "Name": "Fairmart", "Category": "Grocery Stores", "Address": "623 Fairmount Ave", "LATITUDE": 39.964035, "LONGITUDE": -75.148838, "DATE_RANGE_START": 2024, "Total Visits": 251.0, "Total Visitors": 182.0, "POI_CBG": 421010131001.0, "Median Dwell Time": 17.0, "Total Spend": 2582.0, "Total Transactions": 242.0, "Total Customers": 113.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.148838, 39.964035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-p8d-8y9", "Name": "T & J Food Market", "Category": "Grocery Stores", "Address": "1900 Church St", "LATITUDE": 40.009294, "LONGITUDE": -75.084921, "DATE_RANGE_START": 2024, "Total Visits": 78.0, "Total Visitors": 78.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 3.0, "Total Spend": 40.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.57, "Median Spend per Customer": 6.57 }, "geometry": { "type": "Point", "coordinates": [ -75.084921, 40.009294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p8j-6hq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7383 State Rd @ Bleigh St", "LATITUDE": 40.026795, "LONGITUDE": -75.028895, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010381002.0, "Median Dwell Time": null, "Total Spend": 95.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 36.16, "Median Spend per Customer": 36.16 }, "geometry": { "type": "Point", "coordinates": [ -75.028895, 40.026795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-pj4-3qz", "Name": "Crazy Wave", "Category": "Health and Personal Care Stores", "Address": "4229 N Broad St", "LATITUDE": 40.017645, "LONGITUDE": -75.148812, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 136.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 6.0, "Total Spend": 2666.0, "Total Transactions": 111.0, "Total Customers": 99.0, "Median Spend per Transaction": 16.16, "Median Spend per Customer": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.148812, 40.017645 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7w-tvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2327 Cottman Ave", "LATITUDE": 40.046202, "LONGITUDE": -75.056569, "DATE_RANGE_START": 2024, "Total Visits": 795.0, "Total Visitors": 532.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 10.0, "Total Spend": 12051.0, "Total Transactions": 1519.0, "Total Customers": 642.0, "Median Spend per Transaction": 6.78, "Median Spend per Customer": 9.95 }, "geometry": { "type": "Point", "coordinates": [ -75.056569, 40.046202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-f75", "Name": "Cloud 9 One Stop Shop", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "3090 Ruth St", "LATITUDE": 39.994594, "LONGITUDE": -75.116007, "DATE_RANGE_START": 2024, "Total Visits": 469.0, "Total Visitors": 308.0, "POI_CBG": 421010178005.0, "Median Dwell Time": 2.0, "Total Spend": 111.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 13.55, "Median Spend per Customer": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.116007, 39.994594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmb-6x5", "Name": "Brandy Melville", "Category": "Clothing Stores", "Address": "1527 Walnut St", "LATITUDE": 39.949991, "LONGITUDE": -75.167149, "DATE_RANGE_START": 2024, "Total Visits": 669.0, "Total Visitors": 565.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 48108.0, "Total Transactions": 771.0, "Total Customers": 657.0, "Median Spend per Transaction": 48.0, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167149, 39.949991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kpv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "8515 Germantown Ave", "LATITUDE": 40.076442, "LONGITUDE": -75.206646, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 7.0, "Total Spend": 59558.0, "Total Transactions": 345.0, "Total Customers": 249.0, "Median Spend per Transaction": 7.72, "Median Spend per Customer": 9.72 }, "geometry": { "type": "Point", "coordinates": [ -75.206646, 40.076442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnw-psq", "Name": "Street Side", "Category": "Restaurants and Other Eating Places", "Address": "165 W Girard Ave", "LATITUDE": 39.969569, "LONGITUDE": -75.138652, "DATE_RANGE_START": 2024, "Total Visits": 87.0, "Total Visitors": 87.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 55.0, "Total Spend": 1085.0, "Total Transactions": 42.0, "Total Customers": 39.0, "Median Spend per Transaction": 16.63, "Median Spend per Customer": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.138652, 39.969569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-p7x-6ff", "Name": "Goubaa Grub", "Category": "Restaurants and Other Eating Places", "Address": "2300 Cottman Ave", "LATITUDE": 40.047077, "LONGITUDE": -75.05972, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 373.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 8.0, "Total Spend": 209.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.32, "Median Spend per Customer": 13.32 }, "geometry": { "type": "Point", "coordinates": [ -75.05972, 40.047077 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-snq", "Name": "East Coast Tropicals", "Category": "Grocery Stores", "Address": "1615 N Hancock St", "LATITUDE": 39.974935, "LONGITUDE": -75.136754, "DATE_RANGE_START": 2024, "Total Visits": 295.0, "Total Visitors": 295.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 1.0, "Total Spend": 1950.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 167.83, "Median Spend per Customer": 167.83 }, "geometry": { "type": "Point", "coordinates": [ -75.136754, 39.974935 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwd-zj9", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2600 Penrose Ave", "LATITUDE": 39.903872, "LONGITUDE": -75.196507, "DATE_RANGE_START": 2024, "Total Visits": 962.0, "Total Visitors": 847.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 4.0, "Total Spend": 136019.0, "Total Transactions": 7566.0, "Total Customers": 3965.0, "Median Spend per Transaction": 12.63, "Median Spend per Customer": 20.3 }, "geometry": { "type": "Point", "coordinates": [ -75.196507, 39.903872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj2-q4v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4200 G St", "LATITUDE": 40.012393, "LONGITUDE": -75.112599, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 20.0, "POI_CBG": 421010289012.0, "Median Dwell Time": 9.0, "Total Spend": 3593.0, "Total Transactions": 165.0, "Total Customers": 113.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.112599, 40.012393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7x-py9", "Name": "Friendship Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "3300 Cottman Ave", "LATITUDE": 40.039276, "LONGITUDE": -75.045861, "DATE_RANGE_START": 2024, "Total Visits": 283.0, "Total Visitors": 283.0, "POI_CBG": 421010315011.0, "Median Dwell Time": null, "Total Spend": 646.0, "Total Transactions": 21.0, "Total Customers": 12.0, "Median Spend per Transaction": 22.59, "Median Spend per Customer": 44.12 }, "geometry": { "type": "Point", "coordinates": [ -75.045861, 40.039276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-wc5", "Name": "Finish Line", "Category": "Shoe Stores", "Address": "1449 Franklin Mills Cir", "LATITUDE": 40.086764, "LONGITUDE": -74.961911, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 258.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 138.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 52.5, "Median Spend per Customer": 52.5 }, "geometry": { "type": "Point", "coordinates": [ -74.961911, 40.086764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-9j9", "Name": "ALDI", "Category": "Grocery Stores", "Address": "7900 Roosevelt Blvd", "LATITUDE": 40.055307, "LONGITUDE": -75.049818, "DATE_RANGE_START": 2024, "Total Visits": 894.0, "Total Visitors": 588.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 8.0, "Total Spend": 732.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 42.41, "Median Spend per Customer": 62.3 }, "geometry": { "type": "Point", "coordinates": [ -75.049818, 40.055307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pm4-t9z", "Name": "Moore Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "601 Moore St", "LATITUDE": 39.926601, "LONGITUDE": -75.156132, "DATE_RANGE_START": 2024, "Total Visits": 278.0, "Total Visitors": 66.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 292.0, "Total Spend": 5262.0, "Total Transactions": 234.0, "Total Customers": 107.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 28.36 }, "geometry": { "type": "Point", "coordinates": [ -75.156132, 39.926601 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7v-f2k", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "7301 Castor Ave", "LATITUDE": 40.051204, "LONGITUDE": -75.065107, "DATE_RANGE_START": 2024, "Total Visits": 1443.0, "Total Visitors": 1168.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 9.0, "Total Spend": 22512.0, "Total Transactions": 494.0, "Total Customers": 395.0, "Median Spend per Transaction": 31.28, "Median Spend per Customer": 40.71 }, "geometry": { "type": "Point", "coordinates": [ -75.065107, 40.051204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-223@628-pm9-whq", "Name": "Las Bugambilias", "Category": "Restaurants and Other Eating Places", "Address": "15 S 3rd St", "LATITUDE": 39.949706, "LONGITUDE": -75.145565, "DATE_RANGE_START": 2024, "Total Visits": 632.0, "Total Visitors": 554.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 4016.0, "Total Transactions": 51.0, "Total Customers": 49.0, "Median Spend per Transaction": 66.08, "Median Spend per Customer": 66.16 }, "geometry": { "type": "Point", "coordinates": [ -75.145565, 39.949706 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgk-sqz", "Name": "DJ Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4040 City Ave", "LATITUDE": 40.007382, "LONGITUDE": -75.21246, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 212.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 6.0, "Total Spend": 1881.0, "Total Transactions": 42.0, "Total Customers": 38.0, "Median Spend per Transaction": 31.21, "Median Spend per Customer": 31.13 }, "geometry": { "type": "Point", "coordinates": [ -75.21246, 40.007382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pgb-7t9", "Name": "La Calaca Feliz", "Category": "Restaurants and Other Eating Places", "Address": "2321 Fairmount Ave", "LATITUDE": 39.967539, "LONGITUDE": -75.17608, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 175.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 25.0, "Total Spend": 1819.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 67.98, "Median Spend per Customer": 64.69 }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.967539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pjb-3wk", "Name": "Old English Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6015 N 5th St", "LATITUDE": 40.042947, "LONGITUDE": -75.128855, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 158.0, "POI_CBG": 421010274011.0, "Median Dwell Time": 1.0, "Total Spend": 2192.0, "Total Transactions": 76.0, "Total Customers": 58.0, "Median Spend per Transaction": 26.27, "Median Spend per Customer": 31.58 }, "geometry": { "type": "Point", "coordinates": [ -75.128855, 40.042947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-6p9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1509 Chestnut St", "LATITUDE": 39.951268, "LONGITUDE": -75.165979, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 279.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 12.0, "Total Spend": 5606.0, "Total Transactions": 1016.0, "Total Customers": 266.0, "Median Spend per Transaction": 4.59, "Median Spend per Customer": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.165979, 39.951268 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p7z-6x5", "Name": "Rising Sun Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6919 Rising Sun Ave", "LATITUDE": 40.056616, "LONGITUDE": -75.08836, "DATE_RANGE_START": 2024, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010307001.0, "Median Dwell Time": null, "Total Spend": 1241.0, "Total Transactions": 50.0, "Total Customers": 37.0, "Median Spend per Transaction": 19.87, "Median Spend per Customer": 28.97 }, "geometry": { "type": "Point", "coordinates": [ -75.08836, 40.056616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pfz-bx5", "Name": "The Bayou Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "4245 Main St", "LATITUDE": 40.024594, "LONGITUDE": -75.22105, "DATE_RANGE_START": 2024, "Total Visits": 157.0, "Total Visitors": 100.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 25.0, "Total Spend": 9545.0, "Total Transactions": 390.0, "Total Customers": 225.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 34.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 40.024594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-nh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7300 Rising Sun Ave", "LATITUDE": 40.061829, "LONGITUDE": -75.084028, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 5.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 5.0, "Total Spend": 2852.0, "Total Transactions": 357.0, "Total Customers": 184.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 8.55 }, "geometry": { "type": "Point", "coordinates": [ -75.084028, 40.061829 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pnw-nh5", "Name": "Johnny Brenda's", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1201 Frankford Ave", "LATITUDE": 39.969072, "LONGITUDE": -75.134263, "DATE_RANGE_START": 2024, "Total Visits": 255.0, "Total Visitors": 253.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 32.0, "Total Spend": 1907.0, "Total Transactions": 45.0, "Total Customers": 37.0, "Median Spend per Transaction": 26.45, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.134263, 39.969072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvy-p9z", "Name": "Smokey Joe's Tavern", "Category": "Restaurants and Other Eating Places", "Address": "210 S 40th St", "LATITUDE": 39.953696, "LONGITUDE": -75.202974, "DATE_RANGE_START": 2024, "Total Visits": 232.0, "Total Visitors": 207.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 3.0, "Total Spend": 5230.0, "Total Transactions": 140.0, "Total Customers": 104.0, "Median Spend per Transaction": 26.4, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.202974, 39.953696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgb-hdv", "Name": "Pizzeria Vetri", "Category": "Restaurants and Other Eating Places", "Address": "1939 Callowhill St", "LATITUDE": 39.960945, "LONGITUDE": -75.171242, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 134.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 15.0, "Total Spend": 4622.0, "Total Transactions": 82.0, "Total Customers": 80.0, "Median Spend per Transaction": 41.58, "Median Spend per Customer": 41.58 }, "geometry": { "type": "Point", "coordinates": [ -75.171242, 39.960945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmb-yqf", "Name": "Matcha Cafe Maiko", "Category": "Restaurants and Other Eating Places", "Address": "923 Race St", "LATITUDE": 39.95548, "LONGITUDE": -75.155132, "DATE_RANGE_START": 2024, "Total Visits": 19620.0, "Total Visitors": 13494.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 4.0, "Total Spend": 2242.0, "Total Transactions": 208.0, "Total Customers": 191.0, "Median Spend per Transaction": 8.48, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.155132, 39.95548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgf-xnq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3750 W Girard Ave", "LATITUDE": 39.974455, "LONGITUDE": -75.199174, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010110001.0, "Median Dwell Time": 2.0, "Total Spend": 347.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 30.98, "Median Spend per Customer": 23.04 }, "geometry": { "type": "Point", "coordinates": [ -75.199174, 39.974455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-yqf", "Name": "New Cira", "Category": "Grocery Stores", "Address": "2929 Arch St", "LATITUDE": 39.957407, "LONGITUDE": -75.181491, "DATE_RANGE_START": 2024, "Total Visits": 10296.0, "Total Visitors": 7634.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 3.0, "Total Spend": 540.0, "Total Transactions": 95.0, "Total Customers": 33.0, "Median Spend per Transaction": 5.13, "Median Spend per Customer": 8.69 }, "geometry": { "type": "Point", "coordinates": [ -75.181491, 39.957407 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@63s-dvw-mx5", "Name": "Steve's Sports Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5300 Market St", "LATITUDE": 39.960011, "LONGITUDE": -75.227074, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 176.0, "POI_CBG": 421010085007.0, "Median Dwell Time": null, "Total Spend": 268.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 38.68 }, "geometry": { "type": "Point", "coordinates": [ -75.227074, 39.960011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-zxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "809 S Broad St", "LATITUDE": 39.940137, "LONGITUDE": -75.165799, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 12.0, "Total Spend": 5790.0, "Total Transactions": 764.0, "Total Customers": 317.0, "Median Spend per Transaction": 6.35, "Median Spend per Customer": 10.67 }, "geometry": { "type": "Point", "coordinates": [ -75.165799, 39.940137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm4-zzz", "Name": "Quetzally", "Category": "Restaurants and Other Eating Places", "Address": "1225 Fitzwater St", "LATITUDE": 39.941598, "LONGITUDE": -75.163087, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 7.0, "Total Spend": 263.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 41.88, "Median Spend per Customer": 48.89 }, "geometry": { "type": "Point", "coordinates": [ -75.163087, 39.941598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-t7q", "Name": "Vetri Cucina", "Category": "Restaurants and Other Eating Places", "Address": "1312 Spruce St", "LATITUDE": 39.946687, "LONGITUDE": -75.163203, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 200.0, "POI_CBG": 421010011014.0, "Median Dwell Time": 1.0, "Total Spend": 4573.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 620.7, "Median Spend per Customer": 620.7 }, "geometry": { "type": "Point", "coordinates": [ -75.163203, 39.946687 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-5xq", "Name": "The Gold Standard Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4800 Baltimore Ave", "LATITUDE": 39.948188, "LONGITUDE": -75.219646, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 162.0, "POI_CBG": 421010078004.0, "Median Dwell Time": 1.0, "Total Spend": 658.0, "Total Transactions": 25.0, "Total Customers": 22.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 32.92 }, "geometry": { "type": "Point", "coordinates": [ -75.219646, 39.948188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-qs5", "Name": "Jet Wine Bar", "Category": "Restaurants and Other Eating Places", "Address": "1525 South St", "LATITUDE": 39.944107, "LONGITUDE": -75.168005, "DATE_RANGE_START": 2024, "Total Visits": 613.0, "Total Visitors": 383.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 3.0, "Total Spend": 1561.0, "Total Transactions": 38.0, "Total Customers": 34.0, "Median Spend per Transaction": 29.4, "Median Spend per Customer": 30.25 }, "geometry": { "type": "Point", "coordinates": [ -75.168005, 39.944107 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8m-st9", "Name": "E Z Brunch", "Category": "Restaurants and Other Eating Places", "Address": "1540 Pratt St", "LATITUDE": 40.022624, "LONGITUDE": -75.078903, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 41.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 574.0, "Total Spend": 73.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 21.75, "Median Spend per Customer": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.078903, 40.022624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmb-yd9", "Name": "Sleep Inn", "Category": "Traveler Accommodation", "Address": "1020 Cherry St", "LATITUDE": 39.954446, "LONGITUDE": -75.157043, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 240.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 66.0, "Total Spend": 2513.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 253.65, "Median Spend per Customer": 238.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157043, 39.954446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-sqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1528 Walnut St", "LATITUDE": 39.94965, "LONGITUDE": -75.167379, "DATE_RANGE_START": 2024, "Total Visits": 53.0, "Total Visitors": 43.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 1.0, "Total Spend": 5616.0, "Total Transactions": 662.0, "Total Customers": 436.0, "Median Spend per Transaction": 6.96, "Median Spend per Customer": 8.13 }, "geometry": { "type": "Point", "coordinates": [ -75.167379, 39.94965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-m8v", "Name": "Four Seasons Hotels and Resorts", "Category": "Traveler Accommodation", "Address": "1 N 19th St", "LATITUDE": 39.95506, "LONGITUDE": -75.170758, "DATE_RANGE_START": 2024, "Total Visits": 457.0, "Total Visitors": 184.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 215.0, "Total Spend": 44794.0, "Total Transactions": 829.0, "Total Customers": 649.0, "Median Spend per Transaction": 15.64, "Median Spend per Customer": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.170758, 39.95506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xh5", "Name": "Colonial Pizza", "Category": "Restaurants and Other Eating Places", "Address": "400 S 43rd St", "LATITUDE": 39.951342, "LONGITUDE": -75.20954, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010087011.0, "Median Dwell Time": 1.0, "Total Spend": 1225.0, "Total Transactions": 59.0, "Total Customers": 42.0, "Median Spend per Transaction": 17.27, "Median Spend per Customer": 27.38 }, "geometry": { "type": "Point", "coordinates": [ -75.20954, 39.951342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm4-h5z", "Name": "Pistola's Del Sur", "Category": "Restaurants and Other Eating Places", "Address": "1934 E Passyunk Ave", "LATITUDE": 39.925885, "LONGITUDE": -75.168342, "DATE_RANGE_START": 2024, "Total Visits": 257.0, "Total Visitors": 228.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 7.0, "Total Spend": 8623.0, "Total Transactions": 155.0, "Total Customers": 117.0, "Median Spend per Transaction": 47.36, "Median Spend per Customer": 63.4 }, "geometry": { "type": "Point", "coordinates": [ -75.168342, 39.925885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnx-cqz", "Name": "Stock", "Category": "Restaurants and Other Eating Places", "Address": "308 E Girard Ave", "LATITUDE": 39.969657, "LONGITUDE": -75.131315, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 12.0, "Total Spend": 1152.0, "Total Transactions": 7.0, "Total Customers": 4.0, "Median Spend per Transaction": 135.79, "Median Spend per Customer": 289.6 }, "geometry": { "type": "Point", "coordinates": [ -75.131315, 39.969657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-dsq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7325 Castor Ave", "LATITUDE": 40.052255, "LONGITUDE": -75.064656, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 109.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 16.0, "Total Spend": 3389.0, "Total Transactions": 155.0, "Total Customers": 111.0, "Median Spend per Transaction": 20.37, "Median Spend per Customer": 26.32 }, "geometry": { "type": "Point", "coordinates": [ -75.064656, 40.052255 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgh-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3032 N Broad St", "LATITUDE": 39.999763, "LONGITUDE": -75.153659, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010201012.0, "Median Dwell Time": 4.0, "Total Spend": 3846.0, "Total Transactions": 244.0, "Total Customers": 205.0, "Median Spend per Transaction": 12.85, "Median Spend per Customer": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.153659, 39.999763 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgf-3h5", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "3675 Market St", "LATITUDE": 39.956509, "LONGITUDE": -75.195045, "DATE_RANGE_START": 2024, "Total Visits": 6012.0, "Total Visitors": 2975.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 10.0, "Total Spend": 3615.0, "Total Transactions": 444.0, "Total Customers": 334.0, "Median Spend per Transaction": 6.86, "Median Spend per Customer": 8.06 }, "geometry": { "type": "Point", "coordinates": [ -75.195045, 39.956509 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmb-7h5", "Name": "CB2", "Category": "Furniture Stores", "Address": "1422 Walnut St", "LATITUDE": 39.949136, "LONGITUDE": -75.165384, "DATE_RANGE_START": 2024, "Total Visits": 995.0, "Total Visitors": 675.0, "POI_CBG": 421010008042.0, "Median Dwell Time": 1.0, "Total Spend": 1315.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 43.15, "Median Spend per Customer": 43.15 }, "geometry": { "type": "Point", "coordinates": [ -75.165384, 39.949136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pgj-cqz", "Name": "Hair Fashion & Beyond", "Category": "Health and Personal Care Stores", "Address": "1600 N Broad St Ste 9", "LATITUDE": 39.978105, "LONGITUDE": -75.158429, "DATE_RANGE_START": 2024, "Total Visits": 2316.0, "Total Visitors": 1748.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 9.0, "Total Spend": 8053.0, "Total Transactions": 298.0, "Total Customers": 230.0, "Median Spend per Transaction": 18.34, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.158429, 39.978105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm6-zmk", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2310 W Oregon Ave", "LATITUDE": 39.918236, "LONGITUDE": -75.186738, "DATE_RANGE_START": 2024, "Total Visits": 844.0, "Total Visitors": 550.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 6.0, "Total Spend": 3639.0, "Total Transactions": 158.0, "Total Customers": 104.0, "Median Spend per Transaction": 13.72, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.186738, 39.918236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-r8v", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Roosevelt Blvd", "LATITUDE": 40.104631, "LONGITUDE": -75.000802, "DATE_RANGE_START": 2024, "Total Visits": 1796.0, "Total Visitors": 1575.0, "POI_CBG": 421010361002.0, "Median Dwell Time": 4.0, "Total Spend": 1173.0, "Total Transactions": 46.0, "Total Customers": 39.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 28.92 }, "geometry": { "type": "Point", "coordinates": [ -75.000802, 40.104631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-jjv", "Name": "Allen Edmonds", "Category": "Shoe Stores", "Address": "1731 Chestnut St", "LATITUDE": 39.951392, "LONGITUDE": -75.170139, "DATE_RANGE_START": 2024, "Total Visits": 1203.0, "Total Visitors": 831.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 11.0, "Total Spend": 28.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -75.170139, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pmd-sbk", "Name": "Woven Treasures", "Category": "Used Merchandise Stores", "Address": "2221 Grays Ferry Ave", "LATITUDE": 39.945195, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 79.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 18.0, "Total Spend": 350.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.945195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-q2k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.030294, "LONGITUDE": -75.097997, "DATE_RANGE_START": 2024, "Total Visits": 101.0, "Total Visitors": 63.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 11.0, "Total Spend": 98119.0, "Total Transactions": 532.0, "Total Customers": 263.0, "Median Spend per Transaction": 72.62, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.097997, 40.030294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm9-w6k", "Name": "Old City Flowers", "Category": "Florists", "Address": "31 S 3rd St", "LATITUDE": 39.949403, "LONGITUDE": -75.145661, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 62.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 2.0, "Total Spend": 1170.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 100.27, "Median Spend per Customer": 100.27 }, "geometry": { "type": "Point", "coordinates": [ -75.145661, 39.949403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm9-wkz", "Name": "Lucha Cartel", "Category": "Restaurants and Other Eating Places", "Address": "207 Chestnut St", "LATITUDE": 39.948561, "LONGITUDE": -75.144331, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 205.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 21.0, "Total Spend": 4747.0, "Total Transactions": 171.0, "Total Customers": 112.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144331, 39.948561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pj7-st9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "4501 Castor Ave", "LATITUDE": 40.01658, "LONGITUDE": -75.096378, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010293001.0, "Median Dwell Time": 19.0, "Total Spend": 4541.0, "Total Transactions": 215.0, "Total Customers": 179.0, "Median Spend per Transaction": 14.99, "Median Spend per Customer": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.096378, 40.01658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-3nq", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "399 Franklin Mills Cir", "LATITUDE": 40.084019, "LONGITUDE": -74.96509, "DATE_RANGE_START": 2024, "Total Visits": 519.0, "Total Visitors": 491.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 7.0, "Total Spend": 24.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.98, "Median Spend per Customer": 8.98 }, "geometry": { "type": "Point", "coordinates": [ -74.96509, 40.084019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pj8-qs5", "Name": "Panasian Buffet", "Category": "Restaurants and Other Eating Places", "Address": "833 Adams Ave", "LATITUDE": 40.030993, "LONGITUDE": -75.10376, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 326.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 34.0, "Total Spend": 6656.0, "Total Transactions": 151.0, "Total Customers": 116.0, "Median Spend per Transaction": 43.15, "Median Spend per Customer": 46.81 }, "geometry": { "type": "Point", "coordinates": [ -75.10376, 40.030993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pmb-fpv", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "237 S 10th St", "LATITUDE": 39.947184, "LONGITUDE": -75.157462, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 6.0, "Total Spend": 1754.0, "Total Transactions": 61.0, "Total Customers": 47.0, "Median Spend per Transaction": 25.22, "Median Spend per Customer": 29.46 }, "geometry": { "type": "Point", "coordinates": [ -75.157462, 39.947184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phn-87q", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1600 E Wadsworth Ave", "LATITUDE": 40.080435, "LONGITUDE": -75.172037, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 4.0, "Total Spend": 1658.0, "Total Transactions": 68.0, "Total Customers": 49.0, "Median Spend per Transaction": 11.95, "Median Spend per Customer": 18.65 }, "geometry": { "type": "Point", "coordinates": [ -75.172037, 40.080435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-6p9", "Name": "DelFrisco's Double Eagle Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "1428 Chestnut St # 1432", "LATITUDE": 39.950867, "LONGITUDE": -75.165431, "DATE_RANGE_START": 2024, "Total Visits": 45.0, "Total Visitors": 39.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 22711.0, "Total Transactions": 130.0, "Total Customers": 118.0, "Median Spend per Transaction": 124.16, "Median Spend per Customer": 140.35 }, "geometry": { "type": "Point", "coordinates": [ -75.165431, 39.950867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-qzz", "Name": "For Pete's Sake", "Category": "Restaurants and Other Eating Places", "Address": "900 S Front St", "LATITUDE": 39.935493, "LONGITUDE": -75.145382, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 147.0, "POI_CBG": 421010025002.0, "Median Dwell Time": 133.0, "Total Spend": 1283.0, "Total Transactions": 13.0, "Total Customers": 9.0, "Median Spend per Transaction": 73.1, "Median Spend per Customer": 86.66 }, "geometry": { "type": "Point", "coordinates": [ -75.145382, 39.935493 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-gkz", "Name": "Nifty Fifty's", "Category": "Restaurants and Other Eating Places", "Address": "2491 Grant Ave", "LATITUDE": 40.079457, "LONGITUDE": -75.025402, "DATE_RANGE_START": 2024, "Total Visits": 278.0, "Total Visitors": 251.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 13.0, "Total Spend": 479.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 54.43, "Median Spend per Customer": 54.43 }, "geometry": { "type": "Point", "coordinates": [ -75.025402, 40.079457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-rx5", "Name": "Choice Beer Deli", "Category": "Restaurants and Other Eating Places", "Address": "1642 South St", "LATITUDE": 39.944126, "LONGITUDE": -75.170213, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 4.0, "Total Spend": 243.0, "Total Transactions": 26.0, "Total Customers": 16.0, "Median Spend per Transaction": 7.88, "Median Spend per Customer": 11.38 }, "geometry": { "type": "Point", "coordinates": [ -75.170213, 39.944126 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-p9p-z2k", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "9979 Bustleton Ave", "LATITUDE": 40.101374, "LONGITUDE": -75.028594, "DATE_RANGE_START": 2024, "Total Visits": 1149.0, "Total Visitors": 835.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 12.0, "Total Spend": 173.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.028594, 40.101374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmf-jjv", "Name": "Green Eggs Cafe", "Category": "Restaurants and Other Eating Places", "Address": "33 S 18th St", "LATITUDE": 39.952196, "LONGITUDE": -75.169546, "DATE_RANGE_START": 2024, "Total Visits": 2231.0, "Total Visitors": 1162.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 227.0, "Total Spend": 167.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 31.75, "Median Spend per Customer": 41.75 }, "geometry": { "type": "Point", "coordinates": [ -75.169546, 39.952196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pmf-vvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2951 Market St", "LATITUDE": 39.955569, "LONGITUDE": -75.181925, "DATE_RANGE_START": 2024, "Total Visits": 10761.0, "Total Visitors": 7021.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 14.0, "Total Spend": 4262.0, "Total Transactions": 746.0, "Total Customers": 412.0, "Median Spend per Transaction": 4.61, "Median Spend per Customer": 7.28 }, "geometry": { "type": "Point", "coordinates": [ -75.181925, 39.955569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-225@628-pft-z4v", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6001 Ridge Ave", "LATITUDE": 40.031983, "LONGITUDE": -75.213303, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 1.0, "Total Spend": 142.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 23.74 }, "geometry": { "type": "Point", "coordinates": [ -75.213303, 40.031983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-ndv", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "9990 Roosevelt Blvd", "LATITUDE": 40.094236, "LONGITUDE": -75.016653, "DATE_RANGE_START": 2024, "Total Visits": 484.0, "Total Visitors": 409.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 3.0, "Total Spend": 1592.0, "Total Transactions": 97.0, "Total Customers": 91.0, "Median Spend per Transaction": 14.45, "Median Spend per Customer": 14.54 }, "geometry": { "type": "Point", "coordinates": [ -75.016653, 40.094236 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-225@628-pmf-j7q", "Name": "Van Leeuwen Artisan Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "115 S 18th St", "LATITUDE": 39.951193, "LONGITUDE": -75.170331, "DATE_RANGE_START": 2024, "Total Visits": 1203.0, "Total Visitors": 831.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 11.0, "Total Spend": 4646.0, "Total Transactions": 320.0, "Total Customers": 284.0, "Median Spend per Transaction": 11.15, "Median Spend per Customer": 11.83 }, "geometry": { "type": "Point", "coordinates": [ -75.170331, 39.951193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pmb-49z", "Name": "Dottie's Donuts", "Category": "Restaurants and Other Eating Places", "Address": "509 S 6th St", "LATITUDE": 39.942717, "LONGITUDE": -75.151702, "DATE_RANGE_START": 2024, "Total Visits": 624.0, "Total Visitors": 240.0, "POI_CBG": 421010010012.0, "Median Dwell Time": 774.0, "Total Spend": 28.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.74, "Median Spend per Customer": 10.74 }, "geometry": { "type": "Point", "coordinates": [ -75.151702, 39.942717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-pvz", "Name": "Red Lion Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "737 Red Lion Rd", "LATITUDE": 40.105639, "LONGITUDE": -75.033118, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 155.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 7.0, "Total Spend": 1755.0, "Total Transactions": 46.0, "Total Customers": 13.0, "Median Spend per Transaction": 36.71, "Median Spend per Customer": 46.52 }, "geometry": { "type": "Point", "coordinates": [ -75.033118, 40.105639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmd-vxq", "Name": "Trattoria Carina", "Category": "Restaurants and Other Eating Places", "Address": "2201 Spruce St", "LATITUDE": 39.948772, "LONGITUDE": -75.177968, "DATE_RANGE_START": 2024, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010008011.0, "Median Dwell Time": null, "Total Spend": 2545.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 141.38, "Median Spend per Customer": 141.38 }, "geometry": { "type": "Point", "coordinates": [ -75.177968, 39.948772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7y-djv", "Name": "Quality Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6438 Rising Sun Ave", "LATITUDE": 40.050951, "LONGITUDE": -75.094665, "DATE_RANGE_START": 2024, "Total Visits": 1273.0, "Total Visitors": 731.0, "POI_CBG": 421010306007.0, "Median Dwell Time": 12.0, "Total Spend": 1358.0, "Total Transactions": 65.0, "Total Customers": 47.0, "Median Spend per Transaction": 17.01, "Median Spend per Customer": 27.88 }, "geometry": { "type": "Point", "coordinates": [ -75.094665, 40.050951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-tn5", "Name": "Knead Bagels", "Category": "Restaurants and Other Eating Places", "Address": "725 Walnut St", "LATITUDE": 39.948382, "LONGITUDE": -75.153598, "DATE_RANGE_START": 2024, "Total Visits": 1069.0, "Total Visitors": 473.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 192.0, "Total Spend": 3752.0, "Total Transactions": 225.0, "Total Customers": 165.0, "Median Spend per Transaction": 14.1, "Median Spend per Customer": 17.54 }, "geometry": { "type": "Point", "coordinates": [ -75.153598, 39.948382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-yjv", "Name": "Ray's Cafe & Teahouse", "Category": "Restaurants and Other Eating Places", "Address": "141 N 9th St", "LATITUDE": 39.954635, "LONGITUDE": -75.154276, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 195.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 50.0, "Total Spend": 340.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.17, "Median Spend per Customer": 11.17 }, "geometry": { "type": "Point", "coordinates": [ -75.154276, 39.954635 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-phz-c5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5401 N 5th St", "LATITUDE": 40.03351, "LONGITUDE": -75.130893, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 353.0, "POI_CBG": 421010274013.0, "Median Dwell Time": 3.0, "Total Spend": 6499.0, "Total Transactions": 836.0, "Total Customers": 369.0, "Median Spend per Transaction": 6.04, "Median Spend per Customer": 10.92 }, "geometry": { "type": "Point", "coordinates": [ -75.130893, 40.03351 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnt-435", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2401 Aramingo Ave", "LATITUDE": 39.974852, "LONGITUDE": -75.120942, "DATE_RANGE_START": 2024, "Total Visits": 736.0, "Total Visitors": 486.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 7.0, "Total Spend": 10075.0, "Total Transactions": 893.0, "Total Customers": 507.0, "Median Spend per Transaction": 9.86, "Median Spend per Customer": 13.77 }, "geometry": { "type": "Point", "coordinates": [ -75.120942, 39.974852 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phd-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4160 Monument Rd", "LATITUDE": 40.002735, "LONGITUDE": -75.214447, "DATE_RANGE_START": 2024, "Total Visits": 1657.0, "Total Visitors": 993.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 17.0, "Total Spend": 10295.0, "Total Transactions": 1356.0, "Total Customers": 500.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -75.214447, 40.002735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pnx-c89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1575 N 52nd St", "LATITUDE": 39.979965, "LONGITUDE": -75.224332, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 9.0, "POI_CBG": 421010111001.0, "Median Dwell Time": 11.0, "Total Spend": 13723.0, "Total Transactions": 1203.0, "Total Customers": 800.0, "Median Spend per Transaction": 9.8, "Median Spend per Customer": 11.64 }, "geometry": { "type": "Point", "coordinates": [ -75.224332, 39.979965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pjf-kvf", "Name": "Kitchen Kapers", "Category": "Home Furnishings Stores", "Address": "8530 Germantown Ave", "LATITUDE": 40.076354, "LONGITUDE": -75.207444, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 340.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 8.0, "Total Spend": 609.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 39.98, "Median Spend per Customer": 39.98 }, "geometry": { "type": "Point", "coordinates": [ -75.207444, 40.076354 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7v-v75", "Name": "Northeast Sandwich Co", "Category": "Restaurants and Other Eating Places", "Address": "1342 Bleigh Ave", "LATITUDE": 40.059019, "LONGITUDE": -75.075391, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 95.0, "POI_CBG": 421010338003.0, "Median Dwell Time": 4.0, "Total Spend": 988.0, "Total Transactions": 46.0, "Total Customers": 42.0, "Median Spend per Transaction": 20.31, "Median Spend per Customer": 20.31 }, "geometry": { "type": "Point", "coordinates": [ -75.075391, 40.059019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwf-t9z", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "2900 Island Ave", "LATITUDE": 39.903301, "LONGITUDE": -75.240669, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 170.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 9.0, "Total Spend": 20410.0, "Total Transactions": 599.0, "Total Customers": 516.0, "Median Spend per Transaction": 22.79, "Median Spend per Customer": 26.41 }, "geometry": { "type": "Point", "coordinates": [ -75.240669, 39.903301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-rhq", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "101 E Olney Ave", "LATITUDE": 40.038338, "LONGITUDE": -75.116711, "DATE_RANGE_START": 2024, "Total Visits": 844.0, "Total Visitors": 571.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 10.0, "Total Spend": 493.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 24.28 }, "geometry": { "type": "Point", "coordinates": [ -75.116711, 40.038338 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw7-g49", "Name": "Extended Stay America", "Category": "Traveler Accommodation", "Address": "9000 Tinicum Blvd", "LATITUDE": 39.883836, "LONGITUDE": -75.248205, "DATE_RANGE_START": 2024, "Total Visits": 491.0, "Total Visitors": 380.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 123.0, "Total Spend": 8442.0, "Total Transactions": 34.0, "Total Customers": 20.0, "Median Spend per Transaction": 165.17, "Median Spend per Customer": 100.0 }, "geometry": { "type": "Point", "coordinates": [ -75.248205, 39.883836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm4-x5z", "Name": "Broad Street Diner", "Category": "Restaurants and Other Eating Places", "Address": "1135 S Broad St", "LATITUDE": 39.936504, "LONGITUDE": -75.166668, "DATE_RANGE_START": 2024, "Total Visits": 220.0, "Total Visitors": 161.0, "POI_CBG": 421010023001.0, "Median Dwell Time": 5.0, "Total Spend": 4861.0, "Total Transactions": 142.0, "Total Customers": 117.0, "Median Spend per Transaction": 31.32, "Median Spend per Customer": 35.02 }, "geometry": { "type": "Point", "coordinates": [ -75.166668, 39.936504 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-kj9", "Name": "Vernick Food & Drink", "Category": "Restaurants and Other Eating Places", "Address": "2031 Walnut St", "LATITUDE": 39.951035, "LONGITUDE": -75.17484, "DATE_RANGE_START": 2024, "Total Visits": 1210.0, "Total Visitors": 899.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 6.0, "Total Spend": 7754.0, "Total Transactions": 39.0, "Total Customers": 36.0, "Median Spend per Transaction": 157.6, "Median Spend per Customer": 241.85 }, "geometry": { "type": "Point", "coordinates": [ -75.17484, 39.951035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-x5z", "Name": "Dancewear On Broad LLC", "Category": "Clothing Stores", "Address": "1129 S Broad St", "LATITUDE": 39.936951, "LONGITUDE": -75.166764, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010024005.0, "Median Dwell Time": null, "Total Spend": 545.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.4, "Median Spend per Customer": 113.72 }, "geometry": { "type": "Point", "coordinates": [ -75.166764, 39.936951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9k-k75", "Name": "Burlington", "Category": "Clothing Stores", "Address": "9940 Roosevelt Blvd", "LATITUDE": 40.09398, "LONGITUDE": -75.018934, "DATE_RANGE_START": 2024, "Total Visits": 1403.0, "Total Visitors": 1215.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 11.0, "Total Spend": 5535.0, "Total Transactions": 103.0, "Total Customers": 84.0, "Median Spend per Transaction": 36.26, "Median Spend per Customer": 35.45 }, "geometry": { "type": "Point", "coordinates": [ -75.018934, 40.09398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-3qz", "Name": "Dick's Sporting Goods", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "20 Franklin Mills Blvd", "LATITUDE": 40.085722, "LONGITUDE": -74.967122, "DATE_RANGE_START": 2024, "Total Visits": 608.0, "Total Visitors": 483.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 17722.0, "Total Transactions": 328.0, "Total Customers": 224.0, "Median Spend per Transaction": 43.91, "Median Spend per Customer": 45.74 }, "geometry": { "type": "Point", "coordinates": [ -74.967122, 40.085722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-9cq", "Name": "Lee Korman Discount", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2163 Ridge Ave", "LATITUDE": 39.979685, "LONGITUDE": -75.170878, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 133.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 14.0, "Total Spend": 119.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 17.53, "Median Spend per Customer": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.170878, 39.979685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-cwk", "Name": "VaporFi", "Category": "Other Miscellaneous Store Retailers", "Address": "1240 South St Unit B", "LATITUDE": 39.943188, "LONGITUDE": -75.162917, "DATE_RANGE_START": 2024, "Total Visits": 719.0, "Total Visitors": 571.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 3.0, "Total Spend": 210.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 36.71 }, "geometry": { "type": "Point", "coordinates": [ -75.162917, 39.943188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p9w-7t9", "Name": "Wawa", "Category": "Grocery Stores", "Address": "10901A Bustleton Ave", "LATITUDE": 40.11156, "LONGITUDE": -75.023472, "DATE_RANGE_START": 2024, "Total Visits": 3057.0, "Total Visitors": 1817.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 3.0, "Total Spend": 58834.0, "Total Transactions": 3580.0, "Total Customers": 1323.0, "Median Spend per Transaction": 10.4, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.023472, 40.11156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-223@628-pg8-k9f", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "1350 N 29th St", "LATITUDE": 39.977506, "LONGITUDE": -75.1831, "DATE_RANGE_START": 2024, "Total Visits": 456.0, "Total Visitors": 90.0, "POI_CBG": 421010137001.0, "Median Dwell Time": 523.0, "Total Spend": 371.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 6.75, "Median Spend per Customer": 6.7 }, "geometry": { "type": "Point", "coordinates": [ -75.1831, 39.977506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pg9-xt9", "Name": "Francisville Farmers Market", "Category": "Specialty Food Stores", "Address": "1400 Ridge Ave", "LATITUDE": 39.966715, "LONGITUDE": -75.160748, "DATE_RANGE_START": 2024, "Total Visits": 269.0, "Total Visitors": 249.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 2.0, "Total Spend": 81.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 30.77 }, "geometry": { "type": "Point", "coordinates": [ -75.160748, 39.966715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgh-h5z", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2749 W Hunting Park Ave", "LATITUDE": 40.007766, "LONGITUDE": -75.174356, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 6.0, "Total Spend": 7731.0, "Total Transactions": 408.0, "Total Customers": 311.0, "Median Spend per Transaction": 14.34, "Median Spend per Customer": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.174356, 40.007766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pfv-94v", "Name": "High Point Cafe", "Category": "Restaurants and Other Eating Places", "Address": "602 Carpenter Ln", "LATITUDE": 40.04622, "LONGITUDE": -75.195937, "DATE_RANGE_START": 2024, "Total Visits": 279.0, "Total Visitors": 230.0, "POI_CBG": 421010236003.0, "Median Dwell Time": 10.0, "Total Spend": 1136.0, "Total Transactions": 74.0, "Total Customers": 42.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 20.49 }, "geometry": { "type": "Point", "coordinates": [ -75.195937, 40.04622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-4d9", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "309 S 5th St", "LATITUDE": 39.944406, "LONGITUDE": -75.149898, "DATE_RANGE_START": 2024, "Total Visits": 534.0, "Total Visitors": 367.0, "POI_CBG": 421010010022.0, "Median Dwell Time": 5.0, "Total Spend": 84808.0, "Total Transactions": 2869.0, "Total Customers": 1114.0, "Median Spend per Transaction": 18.56, "Median Spend per Customer": 32.56 }, "geometry": { "type": "Point", "coordinates": [ -75.149898, 39.944406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vs5", "Name": "Victoria's Secret", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087771, "LONGITUDE": -74.961418, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 141.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 985.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 41.23, "Median Spend per Customer": 41.23 }, "geometry": { "type": "Point", "coordinates": [ -74.961418, 40.087771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-5cq", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "35 S 13th St", "LATITUDE": 39.951005, "LONGITUDE": -75.161407, "DATE_RANGE_START": 2024, "Total Visits": 515.0, "Total Visitors": 495.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 1370.0, "Total Transactions": 104.0, "Total Customers": 88.0, "Median Spend per Transaction": 10.67, "Median Spend per Customer": 12.46 }, "geometry": { "type": "Point", "coordinates": [ -75.161407, 39.951005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pgh-45f", "Name": "City Food Market", "Category": "Grocery Stores", "Address": "3601 N 22nd St", "LATITUDE": 40.009428, "LONGITUDE": -75.164387, "DATE_RANGE_START": 2024, "Total Visits": 371.0, "Total Visitors": 143.0, "POI_CBG": 421010202004.0, "Median Dwell Time": 5.0, "Total Spend": 1438.0, "Total Transactions": 126.0, "Total Customers": 34.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 15.02 }, "geometry": { "type": "Point", "coordinates": [ -75.164387, 40.009428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-p85-p7q", "Name": "Kim's General Store", "Category": "Other Miscellaneous Store Retailers", "Address": "2849 Holme Ave", "LATITUDE": 40.057219, "LONGITUDE": -75.030765, "DATE_RANGE_START": 2024, "Total Visits": 839.0, "Total Visitors": 658.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 8.0, "Total Spend": 925.0, "Total Transactions": 42.0, "Total Customers": 28.0, "Median Spend per Transaction": 14.19, "Median Spend per Customer": 14.89 }, "geometry": { "type": "Point", "coordinates": [ -75.030765, 40.057219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-mrk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2100 Red Lion Rd", "LATITUDE": 40.096618, "LONGITUDE": -75.018034, "DATE_RANGE_START": 2024, "Total Visits": 354.0, "Total Visitors": 325.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 3.0, "Total Spend": 5912.0, "Total Transactions": 442.0, "Total Customers": 312.0, "Median Spend per Transaction": 11.06, "Median Spend per Customer": 13.74 }, "geometry": { "type": "Point", "coordinates": [ -75.018034, 40.096618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pnx-ch5", "Name": "Van Leeuwen Artisan Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "1601 Frankford Ave", "LATITUDE": 39.974071, "LONGITUDE": -75.133134, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 50.0, "Total Spend": 15311.0, "Total Transactions": 1060.0, "Total Customers": 915.0, "Median Spend per Transaction": 11.64, "Median Spend per Customer": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.133134, 39.974071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9r-4y9", "Name": "Menchie's", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd Unit 4", "LATITUDE": 40.07619, "LONGITUDE": -75.031421, "DATE_RANGE_START": 2024, "Total Visits": 294.0, "Total Visitors": 271.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 4752.0, "Total Transactions": 371.0, "Total Customers": 317.0, "Median Spend per Transaction": 10.35, "Median Spend per Customer": 11.65 }, "geometry": { "type": "Point", "coordinates": [ -75.031421, 40.07619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phq-2ff", "Name": "Service Station", "Category": "Gasoline Stations", "Address": "1324 E Washington Ln", "LATITUDE": 40.058045, "LONGITUDE": -75.165189, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 25.0, "POI_CBG": 421010389001.0, "Median Dwell Time": null, "Total Spend": 940.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 90.0, "Median Spend per Customer": 90.0 }, "geometry": { "type": "Point", "coordinates": [ -75.165189, 40.058045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvv-249", "Name": "Advance Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2210 Island Ave", "LATITUDE": 39.916025, "LONGITUDE": -75.24632, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010055001.0, "Median Dwell Time": 25.0, "Total Spend": 295.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 28.6, "Median Spend per Customer": 28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.24632, 39.916025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-v9f", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "400 W Allegheny Ave", "LATITUDE": 39.999251, "LONGITUDE": -75.136535, "DATE_RANGE_START": 2024, "Total Visits": 765.0, "Total Visitors": 696.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 2.0, "Total Spend": 711.0, "Total Transactions": 30.0, "Total Customers": 17.0, "Median Spend per Transaction": 12.53, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136535, 39.999251 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pjb-3dv", "Name": "Ganaan Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "5909 N 5th St", "LATITUDE": 40.041302, "LONGITUDE": -75.129189, "DATE_RANGE_START": 2024, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010274011.0, "Median Dwell Time": 25.0, "Total Spend": 4804.0, "Total Transactions": 128.0, "Total Customers": 83.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 35.7 }, "geometry": { "type": "Point", "coordinates": [ -75.129189, 40.041302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pgd-zfz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3401 Lancaster Ave", "LATITUDE": 39.957683, "LONGITUDE": -75.191416, "DATE_RANGE_START": 2024, "Total Visits": 494.0, "Total Visitors": 307.0, "POI_CBG": 421010090004.0, "Median Dwell Time": 4.0, "Total Spend": 6318.0, "Total Transactions": 560.0, "Total Customers": 232.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 10.18 }, "geometry": { "type": "Point", "coordinates": [ -75.191416, 39.957683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-6x5", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "2301 Cottman Ave", "LATITUDE": 40.047818, "LONGITUDE": -75.059422, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 5.0, "Total Spend": 192.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 18.86, "Median Spend per Customer": 18.86 }, "geometry": { "type": "Point", "coordinates": [ -75.059422, 40.047818 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-235@628-pmf-jd9", "Name": "The Men's Wearhouse", "Category": "Clothing Stores", "Address": "1624 Chestnut St # 1626", "LATITUDE": 39.951245, "LONGITUDE": -75.168347, "DATE_RANGE_START": 2024, "Total Visits": 594.0, "Total Visitors": 398.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 50.0, "Total Spend": 1164.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 144.99, "Median Spend per Customer": 61.56 }, "geometry": { "type": "Point", "coordinates": [ -75.168347, 39.951245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pp5-2p9", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "201 W Lehigh Ave", "LATITUDE": 39.991824, "LONGITUDE": -75.135122, "DATE_RANGE_START": 2024, "Total Visits": 769.0, "Total Visitors": 508.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 3.0, "Total Spend": 1476.0, "Total Transactions": 70.0, "Total Customers": 63.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.02 }, "geometry": { "type": "Point", "coordinates": [ -75.135122, 39.991824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p9q-kj9", "Name": "Walmart Philadelphia Store", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9745 Roosevelt Blvd Ste A", "LATITUDE": 40.082982, "LONGITUDE": -75.022614, "DATE_RANGE_START": 2024, "Total Visits": 8316.0, "Total Visitors": 5444.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 18.0, "Total Spend": 284923.0, "Total Transactions": 4971.0, "Total Customers": 3004.0, "Median Spend per Transaction": 34.89, "Median Spend per Customer": 54.47 }, "geometry": { "type": "Point", "coordinates": [ -75.022614, 40.082982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-5mk", "Name": "Blick Art Materials", "Category": "Other Miscellaneous Store Retailers", "Address": "1330 Chestnut St", "LATITUDE": 39.950627, "LONGITUDE": -75.163055, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 18780.0, "Total Transactions": 500.0, "Total Customers": 436.0, "Median Spend per Transaction": 25.77, "Median Spend per Customer": 26.23 }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-wkz", "Name": "Xenos Candy 'N' Gifts", "Category": "Specialty Food Stores", "Address": "231 Chestnut St", "LATITUDE": 39.948713, "LONGITUDE": -75.145327, "DATE_RANGE_START": 2024, "Total Visits": 2309.0, "Total Visitors": 1785.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 26.0, "Total Spend": 170.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 22.49, "Median Spend per Customer": 22.49 }, "geometry": { "type": "Point", "coordinates": [ -75.145327, 39.948713 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@63s-dvy-xwk", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4314 Locust St", "LATITUDE": 39.953382, "LONGITUDE": -75.2097, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 6.0, "Total Spend": 15083.0, "Total Transactions": 836.0, "Total Customers": 363.0, "Median Spend per Transaction": 12.73, "Median Spend per Customer": 20.79 }, "geometry": { "type": "Point", "coordinates": [ -75.2097, 39.953382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgh-xh5", "Name": "Cure Discount Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2310 N Broad St Frnt A", "LATITUDE": 39.988199, "LONGITUDE": -75.156168, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 1.0, "Total Spend": 23.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 8.75 }, "geometry": { "type": "Point", "coordinates": [ -75.156168, 39.988199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p9t-rc5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "12311 Academy Rd", "LATITUDE": 40.095209, "LONGITUDE": -74.975929, "DATE_RANGE_START": 2024, "Total Visits": 17.0, "Total Visitors": 14.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 1395.0, "Total Transactions": 80.0, "Total Customers": 71.0, "Median Spend per Transaction": 11.06, "Median Spend per Customer": 16.36 }, "geometry": { "type": "Point", "coordinates": [ -74.975929, 40.095209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-w49", "Name": "Claire's", "Category": "Clothing Stores", "Address": "2329 Cottman Ave", "LATITUDE": 40.048389, "LONGITUDE": -75.057333, "DATE_RANGE_START": 2024, "Total Visits": 442.0, "Total Visitors": 420.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 4.0, "Total Spend": 2968.0, "Total Transactions": 86.0, "Total Customers": 68.0, "Median Spend per Transaction": 16.08, "Median Spend per Customer": 27.86 }, "geometry": { "type": "Point", "coordinates": [ -75.057333, 40.048389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-224@628-pg4-fvf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "138 W Chelten Ave", "LATITUDE": 40.032688, "LONGITUDE": -75.17744, "DATE_RANGE_START": 2024, "Total Visits": 317.0, "Total Visitors": 273.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 8.0, "Total Spend": 322.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 12.58, "Median Spend per Customer": 12.89 }, "geometry": { "type": "Point", "coordinates": [ -75.17744, 40.032688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfx-rtv", "Name": "Manayunk Timber", "Category": "Building Material and Supplies Dealers", "Address": "5100 Umbria St", "LATITUDE": 40.03675, "LONGITUDE": -75.238495, "DATE_RANGE_START": 2024, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 9.0, "Total Spend": 213.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 81.03, "Median Spend per Customer": 81.03 }, "geometry": { "type": "Point", "coordinates": [ -75.238495, 40.03675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvx-w49", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4100 Chester Ave", "LATITUDE": 39.94836, "LONGITUDE": -75.206362, "DATE_RANGE_START": 2024, "Total Visits": 378.0, "Total Visitors": 237.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 67.0, "Total Spend": 4614.0, "Total Transactions": 520.0, "Total Customers": 237.0, "Median Spend per Transaction": 6.58, "Median Spend per Customer": 11.06 }, "geometry": { "type": "Point", "coordinates": [ -75.206362, 39.94836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-75z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1500 Market St", "LATITUDE": 39.952311, "LONGITUDE": -75.166474, "DATE_RANGE_START": 2024, "Total Visits": 4047.0, "Total Visitors": 2230.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 25.0, "Total Spend": 2584.0, "Total Transactions": 432.0, "Total Customers": 216.0, "Median Spend per Transaction": 5.47, "Median Spend per Customer": 7.27 }, "geometry": { "type": "Point", "coordinates": [ -75.166474, 39.952311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnz-zpv", "Name": "Wickwire Warehouse", "Category": "Building Material and Supplies Dealers", "Address": "3300 Tulip St", "LATITUDE": 39.99115, "LONGITUDE": -75.104759, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 90.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 75.0, "Total Spend": 152.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 38.9, "Median Spend per Customer": 38.9 }, "geometry": { "type": "Point", "coordinates": [ -75.104759, 39.99115 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-92k", "Name": "Ruby Tuesday", "Category": "Restaurants and Other Eating Places", "Address": "8680 Bartram Ave", "LATITUDE": 39.887825, "LONGITUDE": -75.24699, "DATE_RANGE_START": 2024, "Total Visits": 500.0, "Total Visitors": 412.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 40.0, "Total Spend": 8310.0, "Total Transactions": 171.0, "Total Customers": 134.0, "Median Spend per Transaction": 41.96, "Median Spend per Customer": 50.29 }, "geometry": { "type": "Point", "coordinates": [ -75.24699, 39.887825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-pmf-vvf", "Name": "Beck's Cajun Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2955 Market St", "LATITUDE": 39.95538, "LONGITUDE": -75.182231, "DATE_RANGE_START": 2024, "Total Visits": 10761.0, "Total Visitors": 7021.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 14.0, "Total Spend": 6110.0, "Total Transactions": 245.0, "Total Customers": 229.0, "Median Spend per Transaction": 20.12, "Median Spend per Customer": 20.66 }, "geometry": { "type": "Point", "coordinates": [ -75.182231, 39.95538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-85f", "Name": "Tony Luke's", "Category": "Restaurants and Other Eating Places", "Address": "1 Citizens Bank Way", "LATITUDE": 39.906965, "LONGITUDE": -75.166723, "DATE_RANGE_START": 2024, "Total Visits": 2224.0, "Total Visitors": 1975.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 13.0, "Total Spend": 543.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 20.36, "Median Spend per Customer": 22.03 }, "geometry": { "type": "Point", "coordinates": [ -75.166723, 39.906965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmb-8n5", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "940 Market St", "LATITUDE": 39.951212, "LONGITUDE": -75.156618, "DATE_RANGE_START": 2024, "Total Visits": 1344.0, "Total Visitors": 976.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 5593.0, "Total Transactions": 416.0, "Total Customers": 325.0, "Median Spend per Transaction": 11.93, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.156618, 39.951212 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p77-pvz", "Name": "Crown Deli", "Category": "Restaurants and Other Eating Places", "Address": "3806 Morrell Ave", "LATITUDE": 40.064549, "LONGITUDE": -74.987124, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 315.0, "POI_CBG": 421010353013.0, "Median Dwell Time": 21.0, "Total Spend": 1383.0, "Total Transactions": 58.0, "Total Customers": 38.0, "Median Spend per Transaction": 20.19, "Median Spend per Customer": 29.03 }, "geometry": { "type": "Point", "coordinates": [ -74.987124, 40.064549 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pp2-pvz", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2400 Castor Ave", "LATITUDE": 39.993714, "LONGITUDE": -75.094533, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 326.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 5.0, "Total Spend": 9494.0, "Total Transactions": 641.0, "Total Customers": 466.0, "Median Spend per Transaction": 12.77, "Median Spend per Customer": 16.1 }, "geometry": { "type": "Point", "coordinates": [ -75.094533, 39.993714 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-kvf", "Name": "Old Nelson Food Market", "Category": "Grocery Stores", "Address": "2000 Chestnut St", "LATITUDE": 39.951938, "LONGITUDE": -75.173689, "DATE_RANGE_START": 2024, "Total Visits": 37.0, "Total Visitors": 26.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 29.0, "Total Spend": 40397.0, "Total Transactions": 2963.0, "Total Customers": 1123.0, "Median Spend per Transaction": 10.94, "Median Spend per Customer": 18.92 }, "geometry": { "type": "Point", "coordinates": [ -75.173689, 39.951938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjf-vmk", "Name": "Windfall Gallery", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7944 Germantown Ave", "LATITUDE": 40.070411, "LONGITUDE": -75.200819, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 105.0, "POI_CBG": 421010231001.0, "Median Dwell Time": 27.0, "Total Spend": 686.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 33.48, "Median Spend per Customer": 55.08 }, "geometry": { "type": "Point", "coordinates": [ -75.200819, 40.070411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-224@628-pmd-rtv", "Name": "Sally", "Category": "Restaurants and Other Eating Places", "Address": "2229 Spruce St", "LATITUDE": 39.948932, "LONGITUDE": -75.178843, "DATE_RANGE_START": 2024, "Total Visits": 440.0, "Total Visitors": 267.0, "POI_CBG": 421010008011.0, "Median Dwell Time": 65.0, "Total Spend": 668.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 67.84, "Median Spend per Customer": 67.84 }, "geometry": { "type": "Point", "coordinates": [ -75.178843, 39.948932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-99f", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "710 Adams Ave", "LATITUDE": 40.032391, "LONGITUDE": -75.106539, "DATE_RANGE_START": 2024, "Total Visits": 1041.0, "Total Visitors": 816.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 6.0, "Total Spend": 16988.0, "Total Transactions": 1032.0, "Total Customers": 700.0, "Median Spend per Transaction": 13.62, "Median Spend per Customer": 17.56 }, "geometry": { "type": "Point", "coordinates": [ -75.106539, 40.032391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmd-sbk", "Name": "Falafel Time", "Category": "Restaurants and Other Eating Places", "Address": "2214 South St", "LATITUDE": 39.945205, "LONGITUDE": -75.179141, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 68.0, "Total Spend": 644.0, "Total Transactions": 37.0, "Total Customers": 33.0, "Median Spend per Transaction": 14.41, "Median Spend per Customer": 16.49 }, "geometry": { "type": "Point", "coordinates": [ -75.179141, 39.945205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm4-pjv", "Name": "Blue Corn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "940 S 9th St", "LATITUDE": 39.937808, "LONGITUDE": -75.158204, "DATE_RANGE_START": 2024, "Total Visits": 481.0, "Total Visitors": 407.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 9.0, "Total Spend": 447.0, "Total Transactions": 14.0, "Total Customers": 8.0, "Median Spend per Transaction": 31.1, "Median Spend per Customer": 36.83 }, "geometry": { "type": "Point", "coordinates": [ -75.158204, 39.937808 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-6rk", "Name": "The Bishop's Collar", "Category": "Restaurants and Other Eating Places", "Address": "2349 Fairmount Ave", "LATITUDE": 39.967569, "LONGITUDE": -75.176669, "DATE_RANGE_START": 2024, "Total Visits": 511.0, "Total Visitors": 283.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 97.0, "Total Spend": 10799.0, "Total Transactions": 251.0, "Total Customers": 166.0, "Median Spend per Transaction": 35.4, "Median Spend per Customer": 42.86 }, "geometry": { "type": "Point", "coordinates": [ -75.176669, 39.967569 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dwg-cbk", "Name": "Hot Spot Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7000 Elmwood Ave", "LATITUDE": 39.916984, "LONGITUDE": -75.237394, "DATE_RANGE_START": 2024, "Total Visits": 78.0, "Total Visitors": 57.0, "POI_CBG": 421010060005.0, "Median Dwell Time": 5.0, "Total Spend": 72.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 27.28, "Median Spend per Customer": 27.28 }, "geometry": { "type": "Point", "coordinates": [ -75.237394, 39.916984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@63s-dvy-9j9", "Name": "Desi Village", "Category": "Restaurants and Other Eating Places", "Address": "4527 Baltimore Ave", "LATITUDE": 39.949138, "LONGITUDE": -75.214217, "DATE_RANGE_START": 2024, "Total Visits": 116.0, "Total Visitors": 116.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 1.0, "Total Spend": 169.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 26.25, "Median Spend per Customer": 26.25 }, "geometry": { "type": "Point", "coordinates": [ -75.214217, 39.949138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-nqz", "Name": "Pizza Boli's", "Category": "Restaurants and Other Eating Places", "Address": "3883 Glendale St", "LATITUDE": 40.005833, "LONGITUDE": -75.10164, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010190001.0, "Median Dwell Time": 1.0, "Total Spend": 514.0, "Total Transactions": 25.0, "Total Customers": 21.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 19.67 }, "geometry": { "type": "Point", "coordinates": [ -75.10164, 40.005833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pj8-rkz", "Name": "Panda Express", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.029727, "LONGITUDE": -75.09938, "DATE_RANGE_START": 2024, "Total Visits": 549.0, "Total Visitors": 428.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 10.0, "Total Spend": 5159.0, "Total Transactions": 284.0, "Total Customers": 236.0, "Median Spend per Transaction": 14.49, "Median Spend per Customer": 15.44 }, "geometry": { "type": "Point", "coordinates": [ -75.09938, 40.029727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7x-68v", "Name": "Virgin Hair Outlet", "Category": "Clothing Stores", "Address": "2117 Cottman Ave", "LATITUDE": 40.050173, "LONGITUDE": -75.06287, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 3.0, "Total Spend": 721.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.06287, 40.050173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pg8-grk", "Name": "Norris Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "2003 N 31st St # 05", "LATITUDE": 39.986859, "LONGITUDE": -75.183863, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 153.0, "POI_CBG": 421010151023.0, "Median Dwell Time": 7.0, "Total Spend": 771.0, "Total Transactions": 67.0, "Total Customers": 17.0, "Median Spend per Transaction": 7.8, "Median Spend per Customer": 23.4 }, "geometry": { "type": "Point", "coordinates": [ -75.183863, 39.986859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-975", "Name": "New Deck Tavern", "Category": "Restaurants and Other Eating Places", "Address": "3408 Sansom St", "LATITUDE": 39.953506, "LONGITUDE": -75.192591, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 9.0, "Total Spend": 14054.0, "Total Transactions": 299.0, "Total Customers": 251.0, "Median Spend per Transaction": 38.62, "Median Spend per Customer": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.192591, 39.953506 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pnx-7qz", "Name": "Bourbon & Branch", "Category": "Restaurants and Other Eating Places", "Address": "705 N 2nd St", "LATITUDE": 39.962064, "LONGITUDE": -75.140896, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 134.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 78.0, "Total Spend": 1127.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 61.1, "Median Spend per Customer": 68.6 }, "geometry": { "type": "Point", "coordinates": [ -75.140896, 39.962064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pm9-whq", "Name": "Old City Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "240 Market St", "LATITUDE": 39.949752, "LONGITUDE": -75.145531, "DATE_RANGE_START": 2024, "Total Visits": 632.0, "Total Visitors": 554.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 6600.0, "Total Transactions": 291.0, "Total Customers": 213.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 19.64 }, "geometry": { "type": "Point", "coordinates": [ -75.145531, 39.949752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-jsq", "Name": "Danny's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.045112, "LONGITUDE": -75.117134, "DATE_RANGE_START": 2024, "Total Visits": 4471.0, "Total Visitors": 2998.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 19.0, "Total Spend": 298.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 25.98 }, "geometry": { "type": "Point", "coordinates": [ -75.117134, 40.045112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvq-435", "Name": "Atlas Pizza & Steaks", "Category": "Restaurants and Other Eating Places", "Address": "736 S 52nd St", "LATITUDE": 39.947544, "LONGITUDE": -75.227506, "DATE_RANGE_START": 2024, "Total Visits": 96.0, "Total Visitors": 75.0, "POI_CBG": 421010073004.0, "Median Dwell Time": 4.0, "Total Spend": 446.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 24.96, "Median Spend per Customer": 26.03 }, "geometry": { "type": "Point", "coordinates": [ -75.227506, 39.947544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@63s-dvq-8jv", "Name": "Two Brothers", "Category": "Grocery Stores", "Address": "5400 Willows Ave", "LATITUDE": 39.943904, "LONGITUDE": -75.228136, "DATE_RANGE_START": 2024, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010071024.0, "Median Dwell Time": 2.0, "Total Spend": 150.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 15.77 }, "geometry": { "type": "Point", "coordinates": [ -75.228136, 39.943904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-p8m-b49", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5536 Torresdale Ave", "LATITUDE": 40.01535, "LONGITUDE": -75.06418, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010298002.0, "Median Dwell Time": null, "Total Spend": 424.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.06418, 40.01535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-7t9", "Name": "Sahara Grill", "Category": "Restaurants and Other Eating Places", "Address": "1334 Walnut St", "LATITUDE": 39.949149, "LONGITUDE": -75.163661, "DATE_RANGE_START": 2024, "Total Visits": 5537.0, "Total Visitors": 3636.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 16.0, "Total Spend": 2276.0, "Total Transactions": 45.0, "Total Customers": 45.0, "Median Spend per Transaction": 38.54, "Median Spend per Customer": 38.54 }, "geometry": { "type": "Point", "coordinates": [ -75.163661, 39.949149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-pjv", "Name": "Claudio's Specialty Foods", "Category": "Specialty Food Stores", "Address": "924 S 9th St # 26", "LATITUDE": 39.938173, "LONGITUDE": -75.158183, "DATE_RANGE_START": 2024, "Total Visits": 104.0, "Total Visitors": 104.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 2.0, "Total Spend": 6617.0, "Total Transactions": 175.0, "Total Customers": 142.0, "Median Spend per Transaction": 23.78, "Median Spend per Customer": 24.48 }, "geometry": { "type": "Point", "coordinates": [ -75.158183, 39.938173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p77-c3q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9900 Frankford Ave", "LATITUDE": 40.064918, "LONGITUDE": -74.983169, "DATE_RANGE_START": 2024, "Total Visits": 594.0, "Total Visitors": 454.0, "POI_CBG": 421010353011.0, "Median Dwell Time": 5.0, "Total Spend": 5766.0, "Total Transactions": 746.0, "Total Customers": 307.0, "Median Spend per Transaction": 6.38, "Median Spend per Customer": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -74.983169, 40.064918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-jy9", "Name": "The Dive Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "947 E Passyunk Ave", "LATITUDE": 39.936867, "LONGITUDE": -75.154753, "DATE_RANGE_START": 2024, "Total Visits": 358.0, "Total Visitors": 103.0, "POI_CBG": 421010024001.0, "Median Dwell Time": 99.0, "Total Spend": 757.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 43.5, "Median Spend per Customer": 83.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154753, 39.936867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm6-j5f", "Name": "Uncle Oogie's", "Category": "Restaurants and Other Eating Places", "Address": "36 Snyder Ave", "LATITUDE": 39.920876, "LONGITUDE": -75.146568, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 141.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 295.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 18.88, "Median Spend per Customer": 26.29 }, "geometry": { "type": "Point", "coordinates": [ -75.146568, 39.920876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pnw-nnq", "Name": "DAWA Sushi & Ramen Bar", "Category": "Restaurants and Other Eating Places", "Address": "1204 N Front St", "LATITUDE": 39.969247, "LONGITUDE": -75.136377, "DATE_RANGE_START": 2024, "Total Visits": 637.0, "Total Visitors": 446.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 2.0, "Total Spend": 1976.0, "Total Transactions": 34.0, "Total Customers": 34.0, "Median Spend per Transaction": 49.2, "Median Spend per Customer": 49.2 }, "geometry": { "type": "Point", "coordinates": [ -75.136377, 39.969247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-cdv", "Name": "Venu", "Category": "Restaurants and Other Eating Places", "Address": "13th @ Packer Ave", "LATITUDE": 39.911206, "LONGITUDE": -75.170107, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 186.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 26.0, "Total Spend": 3466.0, "Total Transactions": 109.0, "Total Customers": 91.0, "Median Spend per Transaction": 19.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170107, 39.911206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-h89", "Name": "King of Tandoor", "Category": "Restaurants and Other Eating Places", "Address": "1824 Callowhill St", "LATITUDE": 39.960321, "LONGITUDE": -75.169299, "DATE_RANGE_START": 2024, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 4.0, "Total Spend": 560.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 41.36, "Median Spend per Customer": 47.03 }, "geometry": { "type": "Point", "coordinates": [ -75.169299, 39.960321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm9-y7q", "Name": "Cry Baby Pasta", "Category": "Restaurants and Other Eating Places", "Address": "627 S 3rd St", "LATITUDE": 39.940605, "LONGITUDE": -75.147562, "DATE_RANGE_START": 2024, "Total Visits": 760.0, "Total Visitors": 610.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 20.0, "Total Spend": 2858.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 129.14, "Median Spend per Customer": 129.14 }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 39.940605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@63s-dvr-5pv", "Name": "Jim's Food Market", "Category": "Restaurants and Other Eating Places", "Address": "2900 S 61st St", "LATITUDE": 39.923383, "LONGITUDE": -75.221531, "DATE_RANGE_START": 2024, "Total Visits": 71.0, "Total Visitors": 62.0, "POI_CBG": 421010067001.0, "Median Dwell Time": 43.0, "Total Spend": 1103.0, "Total Transactions": 63.0, "Total Customers": 55.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.221531, 39.923383 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-p7v-whq", "Name": "NAPA Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1215 Cottman Ave", "LATITUDE": 40.059386, "LONGITUDE": -75.079587, "DATE_RANGE_START": 2024, "Total Visits": 80.0, "Total Visitors": 75.0, "POI_CBG": 421010338004.0, "Median Dwell Time": 2.0, "Total Spend": 19900.0, "Total Transactions": 162.0, "Total Customers": 103.0, "Median Spend per Transaction": 73.44, "Median Spend per Customer": 113.12 }, "geometry": { "type": "Point", "coordinates": [ -75.079587, 40.059386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-bkz", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "1001 South St", "LATITUDE": 39.943074, "LONGITUDE": -75.158893, "DATE_RANGE_START": 2024, "Total Visits": 933.0, "Total Visitors": 573.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 6.0, "Total Spend": 112378.0, "Total Transactions": 4341.0, "Total Customers": 1639.0, "Median Spend per Transaction": 16.02, "Median Spend per Customer": 32.81 }, "geometry": { "type": "Point", "coordinates": [ -75.158893, 39.943074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-c5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "4371 Richmond St", "LATITUDE": 39.996467, "LONGITUDE": -75.074419, "DATE_RANGE_START": 2024, "Total Visits": 1718.0, "Total Visitors": 632.0, "POI_CBG": 421010183001.0, "Median Dwell Time": 5.0, "Total Spend": 4112.0, "Total Transactions": 373.0, "Total Customers": 203.0, "Median Spend per Transaction": 8.39, "Median Spend per Customer": 12.29 }, "geometry": { "type": "Point", "coordinates": [ -75.074419, 39.996467 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgd-zpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3300 Market St", "LATITUDE": 39.955374, "LONGITUDE": -75.191309, "DATE_RANGE_START": 2024, "Total Visits": 1914.0, "Total Visitors": 1260.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 9.0, "Total Spend": 20477.0, "Total Transactions": 2392.0, "Total Customers": 1216.0, "Median Spend per Transaction": 7.01, "Median Spend per Customer": 10.15 }, "geometry": { "type": "Point", "coordinates": [ -75.191309, 39.955374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-bzf", "Name": "Whole Foods Market", "Category": "Grocery Stores", "Address": "929 South St", "LATITUDE": 39.942891, "LONGITUDE": -75.157697, "DATE_RANGE_START": 2024, "Total Visits": 2101.0, "Total Visitors": 1365.0, "POI_CBG": 421010011021.0, "Median Dwell Time": 11.0, "Total Spend": 58982.0, "Total Transactions": 1702.0, "Total Customers": 706.0, "Median Spend per Transaction": 23.13, "Median Spend per Customer": 39.19 }, "geometry": { "type": "Point", "coordinates": [ -75.157697, 39.942891 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm9-y5f", "Name": "Ox Coffee", "Category": "Restaurants and Other Eating Places", "Address": "616 S 3rd St", "LATITUDE": 39.940912, "LONGITUDE": -75.147839, "DATE_RANGE_START": 2024, "Total Visits": 937.0, "Total Visitors": 681.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 45.0, "Total Spend": 2403.0, "Total Transactions": 259.0, "Total Customers": 112.0, "Median Spend per Transaction": 7.2, "Median Spend per Customer": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.147839, 39.940912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-kpv", "Name": "Banana Republic Outlet", "Category": "Clothing Stores", "Address": "1911 Chestnut St", "LATITUDE": 39.952114, "LONGITUDE": -75.172439, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 18.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 2184.0, "Total Transactions": 39.0, "Total Customers": 34.0, "Median Spend per Transaction": 41.25, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172439, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-q2k", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912266, "LONGITUDE": -75.155082, "DATE_RANGE_START": 2024, "Total Visits": 315.0, "Total Visitors": 284.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 10.0, "Total Spend": 55.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155082, 39.912266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-224@628-pm9-zj9", "Name": "Ham Bone", "Category": "Other Miscellaneous Store Retailers", "Address": "715 E Passyunk Ave", "LATITUDE": 39.939791, "LONGITUDE": -75.151446, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 262.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 1.0, "Total Spend": 631.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 56.5, "Median Spend per Customer": 56.5 }, "geometry": { "type": "Point", "coordinates": [ -75.151446, 39.939791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnx-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "717 E Girard Ave", "LATITUDE": 39.972302, "LONGITUDE": -75.125646, "DATE_RANGE_START": 2024, "Total Visits": 687.0, "Total Visitors": 296.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 119.0, "Total Spend": 2225.0, "Total Transactions": 317.0, "Total Customers": 179.0, "Median Spend per Transaction": 5.65, "Median Spend per Customer": 10.01 }, "geometry": { "type": "Point", "coordinates": [ -75.125646, 39.972302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-td9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "2900 Island Ave Ste 2936", "LATITUDE": 39.902277, "LONGITUDE": -75.241975, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010056001.0, "Median Dwell Time": 1.0, "Total Spend": 231.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 16.73, "Median Spend per Customer": 16.73 }, "geometry": { "type": "Point", "coordinates": [ -75.241975, 39.902277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pmf-qfz", "Name": "Tio Flores", "Category": "Restaurants and Other Eating Places", "Address": "1600 South St", "LATITUDE": 39.943809, "LONGITUDE": -75.168965, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 1.0, "Total Spend": 572.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 57.99, "Median Spend per Customer": 57.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168965, 39.943809 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg4-fvf", "Name": "Az Budget", "Category": "Furniture Stores", "Address": "126 W Chelten Ave", "LATITUDE": 40.033309, "LONGITUDE": -75.176923, "DATE_RANGE_START": 2024, "Total Visits": 1220.0, "Total Visitors": 671.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 17.0, "Total Spend": 293.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 23.18, "Median Spend per Customer": 23.18 }, "geometry": { "type": "Point", "coordinates": [ -75.176923, 40.033309 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dw2-j5f", "Name": "Annies Seafood", "Category": "Specialty Food Stores", "Address": "6600 Haverford Ave", "LATITUDE": 39.971934, "LONGITUDE": -75.251565, "DATE_RANGE_START": 2024, "Total Visits": 66.0, "Total Visitors": 66.0, "POI_CBG": 421010100004.0, "Median Dwell Time": 3.0, "Total Spend": 765.0, "Total Transactions": 25.0, "Total Customers": 25.0, "Median Spend per Transaction": 29.48, "Median Spend per Customer": 29.48 }, "geometry": { "type": "Point", "coordinates": [ -75.251565, 39.971934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-d5f", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1334 Bainbridge St", "LATITUDE": 39.942529, "LONGITUDE": -75.164834, "DATE_RANGE_START": 2024, "Total Visits": 862.0, "Total Visitors": 587.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 100.0, "Total Spend": 462.0, "Total Transactions": 25.0, "Total Customers": 18.0, "Median Spend per Transaction": 17.11, "Median Spend per Customer": 24.25 }, "geometry": { "type": "Point", "coordinates": [ -75.164834, 39.942529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-sqz", "Name": "Marine Layer", "Category": "Clothing Stores", "Address": "1604 Walnut St", "LATITUDE": 39.949562, "LONGITUDE": -75.167784, "DATE_RANGE_START": 2024, "Total Visits": 929.0, "Total Visitors": 592.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 3.0, "Total Spend": 1643.0, "Total Transactions": 25.0, "Total Customers": 22.0, "Median Spend per Transaction": 68.0, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167784, 39.949562 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pm4-pn5", "Name": "Cappuccio's Meats", "Category": "Specialty Food Stores", "Address": "1019 S 9th St", "LATITUDE": 39.93711, "LONGITUDE": -75.15808, "DATE_RANGE_START": 2024, "Total Visits": 128.0, "Total Visitors": 128.0, "POI_CBG": 421010024004.0, "Median Dwell Time": 1.0, "Total Spend": 1936.0, "Total Transactions": 45.0, "Total Customers": 34.0, "Median Spend per Transaction": 38.37, "Median Spend per Customer": 32.17 }, "geometry": { "type": "Point", "coordinates": [ -75.15808, 39.93711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgd-xdv", "Name": "Wingstop", "Category": "Restaurants and Other Eating Places", "Address": "3300 Fairmount Ave # K30", "LATITUDE": 39.966157, "LONGITUDE": -75.191069, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 14.0, "POI_CBG": 421010109001.0, "Median Dwell Time": 370.0, "Total Spend": 102.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 26.42, "Median Spend per Customer": 26.42 }, "geometry": { "type": "Point", "coordinates": [ -75.191069, 39.966157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p7v-nh5", "Name": "Mr Sushi", "Category": "Restaurants and Other Eating Places", "Address": "7324 Oxford Ave", "LATITUDE": 40.062377, "LONGITUDE": -75.083766, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 237.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 2.0, "Total Spend": 665.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 23.67, "Median Spend per Customer": 41.23 }, "geometry": { "type": "Point", "coordinates": [ -75.083766, 40.062377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-dvz", "Name": "Quick Stop", "Category": "Grocery Stores", "Address": "3001 Kensington Ave", "LATITUDE": 39.993791, "LONGITUDE": -75.117865, "DATE_RANGE_START": 2024, "Total Visits": 382.0, "Total Visitors": 238.0, "POI_CBG": 421010178005.0, "Median Dwell Time": 4.0, "Total Spend": 6055.0, "Total Transactions": 413.0, "Total Customers": 271.0, "Median Spend per Transaction": 11.71, "Median Spend per Customer": 14.12 }, "geometry": { "type": "Point", "coordinates": [ -75.117865, 39.993791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfy-vj9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3780 Main St", "LATITUDE": 40.018604, "LONGITUDE": -75.214313, "DATE_RANGE_START": 2024, "Total Visits": 575.0, "Total Visitors": 430.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 5.0, "Total Spend": 4808.0, "Total Transactions": 269.0, "Total Customers": 187.0, "Median Spend per Transaction": 12.2, "Median Spend per Customer": 18.37 }, "geometry": { "type": "Point", "coordinates": [ -75.214313, 40.018604 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-qzz", "Name": "Neighborhood Books", "Category": "Book Stores and News Dealers", "Address": "1906 South St", "LATITUDE": 39.944496, "LONGITUDE": -75.173828, "DATE_RANGE_START": 2024, "Total Visits": 304.0, "Total Visitors": 121.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 610.0, "Total Spend": 106.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 40.34, "Median Spend per Customer": 40.34 }, "geometry": { "type": "Point", "coordinates": [ -75.173828, 39.944496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pgy-kcq", "Name": "Kohl's", "Category": "Department Stores", "Address": "8500 Henry Ave", "LATITUDE": 40.063862, "LONGITUDE": -75.238823, "DATE_RANGE_START": 2024, "Total Visits": 233.0, "Total Visitors": 137.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 316.0, "Total Spend": 22974.0, "Total Transactions": 456.0, "Total Customers": 388.0, "Median Spend per Transaction": 38.88, "Median Spend per Customer": 41.58 }, "geometry": { "type": "Point", "coordinates": [ -75.238823, 40.063862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8n-c3q", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6417 Harbison Ave", "LATITUDE": 40.032694, "LONGITUDE": -75.063231, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 5.0, "Total Spend": 5726.0, "Total Transactions": 284.0, "Total Customers": 254.0, "Median Spend per Transaction": 16.5, "Median Spend per Customer": 18.12 }, "geometry": { "type": "Point", "coordinates": [ -75.063231, 40.032694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pjf-zvf", "Name": "Chestnut Hill Sports", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "8628 Germantown Ave", "LATITUDE": 40.077007, "LONGITUDE": -75.208666, "DATE_RANGE_START": 2024, "Total Visits": 434.0, "Total Visitors": 254.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 43.0, "Total Spend": 364.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 34.0, "Median Spend per Customer": 34.99 }, "geometry": { "type": "Point", "coordinates": [ -75.208666, 40.077007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8m-d5f", "Name": "Allen Tire & Service", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "4410 E Howell St", "LATITUDE": 40.019598, "LONGITUDE": -75.06328, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010319003.0, "Median Dwell Time": null, "Total Spend": 1761.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 108.27, "Median Spend per Customer": 108.27 }, "geometry": { "type": "Point", "coordinates": [ -75.06328, 40.019598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-73q", "Name": "The Ritz-Carlton", "Category": "Traveler Accommodation", "Address": "10 Avenue of the Arts", "LATITUDE": 39.951155, "LONGITUDE": -75.16432, "DATE_RANGE_START": 2024, "Total Visits": 3274.0, "Total Visitors": 2441.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 9271.0, "Total Transactions": 32.0, "Total Customers": 29.0, "Median Spend per Transaction": 218.14, "Median Spend per Customer": 371.38 }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.951155 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-pnw-xyv", "Name": "Bardot Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "447 Poplar St", "LATITUDE": 39.96648, "LONGITUDE": -75.145414, "DATE_RANGE_START": 2024, "Total Visits": 642.0, "Total Visitors": 499.0, "POI_CBG": 421010142001.0, "Median Dwell Time": 60.0, "Total Spend": 3602.0, "Total Transactions": 101.0, "Total Customers": 83.0, "Median Spend per Transaction": 28.75, "Median Spend per Customer": 39.0 }, "geometry": { "type": "Point", "coordinates": [ -75.145414, 39.96648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-phn-qmk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "8261 Stenton Ave", "LATITUDE": 40.069067, "LONGITUDE": -75.181235, "DATE_RANGE_START": 2024, "Total Visits": 1239.0, "Total Visitors": 918.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 4.0, "Total Spend": 615.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 20.77, "Median Spend per Customer": 20.77 }, "geometry": { "type": "Point", "coordinates": [ -75.181235, 40.069067 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pg8-kxq", "Name": "Italian Express", "Category": "Restaurants and Other Eating Places", "Address": "2641 W Girard Ave", "LATITUDE": 39.974374, "LONGITUDE": -75.180277, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 143.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 1.0, "Total Spend": 3026.0, "Total Transactions": 149.0, "Total Customers": 108.0, "Median Spend per Transaction": 17.53, "Median Spend per Customer": 16.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180277, 39.974374 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm8-djv", "Name": "Celebre Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1536 Packer Ave", "LATITUDE": 39.911364, "LONGITUDE": -75.175337, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 153.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 4.0, "Total Spend": 1485.0, "Total Transactions": 51.0, "Total Customers": 41.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 36.75 }, "geometry": { "type": "Point", "coordinates": [ -75.175337, 39.911364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pg9-54v", "Name": "Triple Joy", "Category": "Restaurants and Other Eating Places", "Address": "2301 N 29th St", "LATITUDE": 39.991066, "LONGITUDE": -75.178614, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 191.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 13.0, "Total Spend": 1447.0, "Total Transactions": 80.0, "Total Customers": 49.0, "Median Spend per Transaction": 15.23, "Median Spend per Customer": 22.33 }, "geometry": { "type": "Point", "coordinates": [ -75.178614, 39.991066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-649", "Name": "Hibiscus Cafe", "Category": "Restaurants and Other Eating Places", "Address": "4907 Catharine St", "LATITUDE": 39.948466, "LONGITUDE": -75.221573, "DATE_RANGE_START": 2024, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010079003.0, "Median Dwell Time": 10.0, "Total Spend": 1755.0, "Total Transactions": 72.0, "Total Customers": 53.0, "Median Spend per Transaction": 20.51, "Median Spend per Customer": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.221573, 39.948466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmf-mrk", "Name": "Auntie Anne's", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste 206", "LATITUDE": 39.952011, "LONGITUDE": -75.167506, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 53.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.05, "Median Spend per Customer": 14.05 }, "geometry": { "type": "Point", "coordinates": [ -75.167506, 39.952011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-3nq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2640 S Carlisle St", "LATITUDE": 39.917267, "LONGITUDE": -75.172584, "DATE_RANGE_START": 2024, "Total Visits": 1178.0, "Total Visitors": 400.0, "POI_CBG": 421010039022.0, "Median Dwell Time": 207.0, "Total Spend": 238.0, "Total Transactions": 20.0, "Total Customers": 12.0, "Median Spend per Transaction": 10.12, "Median Spend per Customer": 21.64 }, "geometry": { "type": "Point", "coordinates": [ -75.172584, 39.917267 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-5mk", "Name": "Drury Beer Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1311 Sansom St", "LATITUDE": 39.950178, "LONGITUDE": -75.162123, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 255.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 24569.0, "Total Transactions": 787.0, "Total Customers": 536.0, "Median Spend per Transaction": 22.3, "Median Spend per Customer": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.162123, 39.950178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pgm-68v", "Name": "Golden Crust Pizza III", "Category": "Restaurants and Other Eating Places", "Address": "3732 Midvale Ave", "LATITUDE": 40.009054, "LONGITUDE": -75.193572, "DATE_RANGE_START": 2024, "Total Visits": 84.0, "Total Visitors": 47.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 5.0, "Total Spend": 1176.0, "Total Transactions": 59.0, "Total Customers": 50.0, "Median Spend per Transaction": 17.01, "Median Spend per Customer": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -75.193572, 40.009054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@63s-dw9-wtv", "Name": "Revive 21", "Category": "Restaurants and Other Eating Places", "Address": "Phildelphia Airport Terminal # F", "LATITUDE": 39.88045, "LONGITUDE": -75.241472, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 121.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 759.0, "Total Transactions": 24.0, "Total Customers": 16.0, "Median Spend per Transaction": 22.16, "Median Spend per Customer": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.241472, 39.88045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dw9-7wk", "Name": "Aldo Lamberti Trattoria", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave", "LATITUDE": 39.874826, "LONGITUDE": -75.241153, "DATE_RANGE_START": 2024, "Total Visits": 5801.0, "Total Visitors": 5038.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 18.0, "Total Spend": 191.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.241153, 39.874826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-p75-3dv", "Name": "RB's Chocolate Revenge", "Category": "Specialty Food Stores", "Address": "8733 Frankford Ave", "LATITUDE": 40.047943, "LONGITUDE": -75.012861, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 99.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 1.0, "Total Spend": 293.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 63.72, "Median Spend per Customer": 63.72 }, "geometry": { "type": "Point", "coordinates": [ -75.012861, 40.047943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph8-pn5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "7520 City Ave", "LATITUDE": 39.97969, "LONGITUDE": -75.2698, "DATE_RANGE_START": 2024, "Total Visits": 976.0, "Total Visitors": 739.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 5.0, "Total Spend": 4748.0, "Total Transactions": 238.0, "Total Customers": 162.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 17.99 }, "geometry": { "type": "Point", "coordinates": [ -75.2698, 39.97969 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pfy-zj9", "Name": "Castle Roxx", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "105 Shurs Ln", "LATITUDE": 40.022745, "LONGITUDE": -75.217327, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 140.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 1.0, "Total Spend": 4832.0, "Total Transactions": 262.0, "Total Customers": 136.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 26.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217327, 40.022745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm4-ckf", "Name": "Romeo Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1608 W Passyunk Ave", "LATITUDE": 39.924602, "LONGITUDE": -75.173119, "DATE_RANGE_START": 2024, "Total Visits": 440.0, "Total Visitors": 334.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 16.0, "Total Spend": 1604.0, "Total Transactions": 83.0, "Total Customers": 53.0, "Median Spend per Transaction": 16.73, "Median Spend per Customer": 21.36 }, "geometry": { "type": "Point", "coordinates": [ -75.173119, 39.924602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgb-gkz", "Name": "Dim Sum & Noodle", "Category": "Restaurants and Other Eating Places", "Address": "2000 Hamilton St Ste 104", "LATITUDE": 39.962299, "LONGITUDE": -75.17267, "DATE_RANGE_START": 2024, "Total Visits": 2757.0, "Total Visitors": 1488.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 11.0, "Total Spend": 2419.0, "Total Transactions": 66.0, "Total Customers": 59.0, "Median Spend per Transaction": 29.05, "Median Spend per Customer": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.17267, 39.962299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8j-ct9", "Name": "Dress Up Time", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "7240 Frankford Ave", "LATITUDE": 40.036339, "LONGITUDE": -75.042117, "DATE_RANGE_START": 2024, "Total Visits": 278.0, "Total Visitors": 176.0, "POI_CBG": 421010315011.0, "Median Dwell Time": 6.0, "Total Spend": 930.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 353.3, "Median Spend per Customer": 353.3 }, "geometry": { "type": "Point", "coordinates": [ -75.042117, 40.036339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmb-yqf", "Name": "Canto House", "Category": "Restaurants and Other Eating Places", "Address": "941 Race St", "LATITUDE": 39.955547, "LONGITUDE": -75.15551, "DATE_RANGE_START": 2024, "Total Visits": 19620.0, "Total Visitors": 13494.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 4.0, "Total Spend": 2214.0, "Total Transactions": 66.0, "Total Customers": 49.0, "Median Spend per Transaction": 19.66, "Median Spend per Customer": 20.6 }, "geometry": { "type": "Point", "coordinates": [ -75.15551, 39.955547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-b6k", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "8200 Roosevelt Blvd", "LATITUDE": 40.060291, "LONGITUDE": -75.045502, "DATE_RANGE_START": 2024, "Total Visits": 986.0, "Total Visitors": 785.0, "POI_CBG": 421010337013.0, "Median Dwell Time": 7.0, "Total Spend": 75219.0, "Total Transactions": 2008.0, "Total Customers": 868.0, "Median Spend per Transaction": 22.99, "Median Spend per Customer": 38.17 }, "geometry": { "type": "Point", "coordinates": [ -75.045502, 40.060291 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmd-tvz", "Name": "GIANT Heirloom Market", "Category": "Beer, Wine, and Liquor Stores", "Address": "2303 Bainbridge St", "LATITUDE": 39.944771, "LONGITUDE": -75.180795, "DATE_RANGE_START": 2024, "Total Visits": 910.0, "Total Visitors": 319.0, "POI_CBG": 421010013005.0, "Median Dwell Time": 6.0, "Total Spend": 14048.0, "Total Transactions": 594.0, "Total Customers": 354.0, "Median Spend per Transaction": 17.17, "Median Spend per Customer": 26.38 }, "geometry": { "type": "Point", "coordinates": [ -75.180795, 39.944771 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@63s-dvx-j35", "Name": "Yo Mamas Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1459 N 52nd St", "LATITUDE": 39.976498, "LONGITUDE": -75.226564, "DATE_RANGE_START": 2024, "Total Visits": 138.0, "Total Visitors": 138.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 1.0, "Total Spend": 84.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.226564, 39.976498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zj9", "Name": "A Z Budget", "Category": "Department Stores", "Address": "2914 N Broad St", "LATITUDE": 39.996866, "LONGITUDE": -75.155131, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 307.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 1.0, "Total Spend": 745.0, "Total Transactions": 25.0, "Total Customers": 21.0, "Median Spend per Transaction": 22.04, "Median Spend per Customer": 28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.155131, 39.996866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pgk-sqz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "4040 City Ave", "LATITUDE": 40.007434, "LONGITUDE": -75.212469, "DATE_RANGE_START": 2024, "Total Visits": 1131.0, "Total Visitors": 870.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 5.0, "Total Spend": 38173.0, "Total Transactions": 2097.0, "Total Customers": 1586.0, "Median Spend per Transaction": 13.86, "Median Spend per Customer": 17.53 }, "geometry": { "type": "Point", "coordinates": [ -75.212469, 40.007434 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pp5-2hq", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "314 W Lehigh Ave", "LATITUDE": 39.99156, "LONGITUDE": -75.138071, "DATE_RANGE_START": 2024, "Total Visits": 311.0, "Total Visitors": 259.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 4.0, "Total Spend": 5360.0, "Total Transactions": 266.0, "Total Customers": 211.0, "Median Spend per Transaction": 16.13, "Median Spend per Customer": 21.89 }, "geometry": { "type": "Point", "coordinates": [ -75.138071, 39.99156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-73q", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.947698, "LONGITUDE": -75.193491, "DATE_RANGE_START": 2024, "Total Visits": 908.0, "Total Visitors": 653.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 1.0, "Total Spend": 5094.0, "Total Transactions": 528.0, "Total Customers": 379.0, "Median Spend per Transaction": 7.97, "Median Spend per Customer": 10.85 }, "geometry": { "type": "Point", "coordinates": [ -75.193491, 39.947698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvw-vs5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5627 Chestnut St # 99", "LATITUDE": 39.96018, "LONGITUDE": -75.234273, "DATE_RANGE_START": 2024, "Total Visits": 413.0, "Total Visitors": 352.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 5.0, "Total Spend": 1973.0, "Total Transactions": 126.0, "Total Customers": 62.0, "Median Spend per Transaction": 16.49, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.234273, 39.96018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-ph8-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7520 City Ave", "LATITUDE": 39.979568, "LONGITUDE": -75.27024, "DATE_RANGE_START": 2024, "Total Visits": 567.0, "Total Visitors": 492.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 8.0, "Total Spend": 9254.0, "Total Transactions": 1040.0, "Total Customers": 509.0, "Median Spend per Transaction": 7.08, "Median Spend per Customer": 10.89 }, "geometry": { "type": "Point", "coordinates": [ -75.27024, 39.979568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pgj-sh5", "Name": "Cousin's Supermarket", "Category": "Grocery Stores", "Address": "1900 N 5th St", "LATITUDE": 39.980929, "LONGITUDE": -75.144184, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 37.0, "POI_CBG": 421010156002.0, "Median Dwell Time": 12.0, "Total Spend": 4336.0, "Total Transactions": 116.0, "Total Customers": 91.0, "Median Spend per Transaction": 25.15, "Median Spend per Customer": 28.03 }, "geometry": { "type": "Point", "coordinates": [ -75.144184, 39.980929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pp2-r49", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3541 Aramingo Ave", "LATITUDE": 39.992773, "LONGITUDE": -75.097642, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 15.0, "Total Spend": 8723.0, "Total Transactions": 421.0, "Total Customers": 338.0, "Median Spend per Transaction": 17.47, "Median Spend per Customer": 19.2 }, "geometry": { "type": "Point", "coordinates": [ -75.097642, 39.992773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-p8h-5zz", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "6919 Torresdale Ave # 27", "LATITUDE": 40.026137, "LONGITUDE": -75.042321, "DATE_RANGE_START": 2024, "Total Visits": 542.0, "Total Visitors": 132.0, "POI_CBG": 421010325003.0, "Median Dwell Time": 37.0, "Total Spend": 454.0, "Total Transactions": 38.0, "Total Customers": 14.0, "Median Spend per Transaction": 8.39, "Median Spend per Customer": 25.19 }, "geometry": { "type": "Point", "coordinates": [ -75.042321, 40.026137 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmf-mzf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1601 John F Kennedy Blvd", "LATITUDE": 39.954224, "LONGITUDE": -75.167482, "DATE_RANGE_START": 2024, "Total Visits": 2364.0, "Total Visitors": 1328.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 6.0, "Total Spend": 2657.0, "Total Transactions": 316.0, "Total Customers": 126.0, "Median Spend per Transaction": 6.52, "Median Spend per Customer": 8.81 }, "geometry": { "type": "Point", "coordinates": [ -75.167482, 39.954224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-224@63s-dvy-8y9", "Name": "Brewer's Outlet", "Category": "Beer, Wine, and Liquor Stores", "Address": "309 S 48th St", "LATITUDE": 39.953064, "LONGITUDE": -75.217898, "DATE_RANGE_START": 2024, "Total Visits": 465.0, "Total Visitors": 307.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 21.0, "Total Spend": 22985.0, "Total Transactions": 678.0, "Total Customers": 444.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.217898, 39.953064 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-qvf", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992707, "LONGITUDE": -75.100219, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 13.0, "Total Spend": 6272.0, "Total Transactions": 178.0, "Total Customers": 149.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.100219, 39.992707 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23n-222@628-pm3-xh5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1405 S 10th St", "LATITUDE": 39.93143, "LONGITUDE": -75.160456, "DATE_RANGE_START": 2024, "Total Visits": 1007.0, "Total Visitors": 762.0, "POI_CBG": 421010028025.0, "Median Dwell Time": 6.0, "Total Spend": 7868.0, "Total Transactions": 483.0, "Total Customers": 263.0, "Median Spend per Transaction": 11.11, "Median Spend per Customer": 21.34 }, "geometry": { "type": "Point", "coordinates": [ -75.160456, 39.93143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-hh5", "Name": "Drinker's Pub", "Category": "Restaurants and Other Eating Places", "Address": "1903 Chestnut St", "LATITUDE": 39.952102, "LONGITUDE": -75.172078, "DATE_RANGE_START": 2024, "Total Visits": 4467.0, "Total Visitors": 2948.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 22021.0, "Total Transactions": 789.0, "Total Customers": 490.0, "Median Spend per Transaction": 19.01, "Median Spend per Customer": 31.02 }, "geometry": { "type": "Point", "coordinates": [ -75.172078, 39.952102 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9j-yqf", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11000 Roosevelt Blvd Ste 3", "LATITUDE": 40.102248, "LONGITUDE": -75.01103, "DATE_RANGE_START": 2024, "Total Visits": 1327.0, "Total Visitors": 1016.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 12.0, "Total Spend": 1589128.0, "Total Transactions": 40210.0, "Total Customers": 21231.0, "Median Spend per Transaction": 24.99, "Median Spend per Customer": 43.75 }, "geometry": { "type": "Point", "coordinates": [ -75.01103, 40.102248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pnz-zj9", "Name": "Flower Shop", "Category": "Florists", "Address": "3399 Agate St", "LATITUDE": 39.991576, "LONGITUDE": -75.102383, "DATE_RANGE_START": 2024, "Total Visits": 207.0, "Total Visitors": 155.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 37.0, "Total Spend": 1117.0, "Total Transactions": 132.0, "Total Customers": 39.0, "Median Spend per Transaction": 7.83, "Median Spend per Customer": 15.51 }, "geometry": { "type": "Point", "coordinates": [ -75.102383, 39.991576 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p72-9vf", "Name": "Maggie's Waterfront Cafe", "Category": "Restaurants and Other Eating Places", "Address": "9242 N Delaware Ave", "LATITUDE": 40.043662, "LONGITUDE": -74.989639, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 377.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 44.0, "Total Spend": 1144.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 38.56, "Median Spend per Customer": 52.89 }, "geometry": { "type": "Point", "coordinates": [ -74.989639, 40.043662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2801 Cottman Ave", "LATITUDE": 40.044475, "LONGITUDE": -75.053372, "DATE_RANGE_START": 2024, "Total Visits": 977.0, "Total Visitors": 825.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 5.0, "Total Spend": 17326.0, "Total Transactions": 1114.0, "Total Customers": 732.0, "Median Spend per Transaction": 11.59, "Median Spend per Customer": 15.14 }, "geometry": { "type": "Point", "coordinates": [ -75.053372, 40.044475 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-223@628-p8h-nbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "6801 Frankford Ave", "LATITUDE": 40.032001, "LONGITUDE": -75.050379, "DATE_RANGE_START": 2024, "Total Visits": 454.0, "Total Visitors": 295.0, "POI_CBG": 421010325001.0, "Median Dwell Time": 9.0, "Total Spend": 2212.0, "Total Transactions": 57.0, "Total Customers": 38.0, "Median Spend per Transaction": 23.89, "Median Spend per Customer": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050379, 40.032001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-vs5", "Name": "Calvin Klein", "Category": "Clothing Stores", "Address": "1889 Franklin Mills Cir", "LATITUDE": 40.090472, "LONGITUDE": -74.961136, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 273.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 950.0, "Total Transactions": 14.0, "Total Customers": 14.0, "Median Spend per Transaction": 59.36, "Median Spend per Customer": 59.36 }, "geometry": { "type": "Point", "coordinates": [ -74.961136, 40.090472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj6-3yv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5680 Rising Sun Ave", "LATITUDE": 40.039108, "LONGITUDE": -75.110396, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 2.0, "Total Spend": 497.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.110396, 40.039108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pg9-x89", "Name": "Spicy Masala Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1601 Parrish St", "LATITUDE": 39.969531, "LONGITUDE": -75.163321, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 353.0, "POI_CBG": 421010133002.0, "Median Dwell Time": 4.0, "Total Spend": 2606.0, "Total Transactions": 147.0, "Total Customers": 128.0, "Median Spend per Transaction": 14.17, "Median Spend per Customer": 16.02 }, "geometry": { "type": "Point", "coordinates": [ -75.163321, 39.969531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-m49", "Name": "Misconduct Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1801 John F Kennedy Blvd", "LATITUDE": 39.95437, "LONGITUDE": -75.16983, "DATE_RANGE_START": 2024, "Total Visits": 244.0, "Total Visitors": 159.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 7243.0, "Total Transactions": 140.0, "Total Customers": 104.0, "Median Spend per Transaction": 39.82, "Median Spend per Customer": 48.88 }, "geometry": { "type": "Point", "coordinates": [ -75.16983, 39.95437 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p84-2hq", "Name": "Station Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9319 Krewstown Rd", "LATITUDE": 40.086053, "LONGITUDE": -75.045094, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 221.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 6.0, "Total Spend": 2407.0, "Total Transactions": 92.0, "Total Customers": 67.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 26.89 }, "geometry": { "type": "Point", "coordinates": [ -75.045094, 40.086053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-p72-575", "Name": "Asian Bamboo House", "Category": "Restaurants and Other Eating Places", "Address": "9456 State Rd", "LATITUDE": 40.050061, "LONGITUDE": -74.989512, "DATE_RANGE_START": 2024, "Total Visits": 259.0, "Total Visitors": 232.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 1.0, "Total Spend": 3769.0, "Total Transactions": 100.0, "Total Customers": 79.0, "Median Spend per Transaction": 31.29, "Median Spend per Customer": 46.11 }, "geometry": { "type": "Point", "coordinates": [ -74.989512, 40.050061 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-ph6-pd9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5601 Lancaster Ave", "LATITUDE": 39.980157, "LONGITUDE": -75.235047, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 13.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 18.0, "Total Spend": 4237.0, "Total Transactions": 232.0, "Total Customers": 196.0, "Median Spend per Transaction": 14.49, "Median Spend per Customer": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.235047, 39.980157 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8d-zj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5233 Torresdale Ave # 45", "LATITUDE": 40.013559, "LONGITUDE": -75.067924, "DATE_RANGE_START": 2024, "Total Visits": 350.0, "Total Visitors": 270.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 2.0, "Total Spend": 2117.0, "Total Transactions": 283.0, "Total Customers": 143.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.067924, 40.013559 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm7-yd9", "Name": "Ciocca Subaru of Philadelphia", "Category": "Automobile Dealers", "Address": "1400 S 33rd St", "LATITUDE": 39.936465, "LONGITUDE": -75.198692, "DATE_RANGE_START": 2024, "Total Visits": 394.0, "Total Visitors": 266.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 13.0, "Total Spend": 962.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.198692, 39.936465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-7qz", "Name": "Sdc", "Category": "Health and Personal Care Stores", "Address": "1228 Locust St", "LATITUDE": 39.948004, "LONGITUDE": -75.161861, "DATE_RANGE_START": 2024, "Total Visits": 844.0, "Total Visitors": 531.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 8.0, "Total Spend": 221.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 19.24, "Median Spend per Customer": 19.24 }, "geometry": { "type": "Point", "coordinates": [ -75.161861, 39.948004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-y7q", "Name": "The Post", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "129 S 30th St", "LATITUDE": 39.952733, "LONGITUDE": -75.18366, "DATE_RANGE_START": 2024, "Total Visits": 367.0, "Total Visitors": 188.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 37.0, "Total Spend": 660.0, "Total Transactions": 25.0, "Total Customers": 18.0, "Median Spend per Transaction": 24.32, "Median Spend per Customer": 32.96 }, "geometry": { "type": "Point", "coordinates": [ -75.18366, 39.952733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9r-4y9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9171 Roosevelt Blvd", "LATITUDE": 40.076014, "LONGITUDE": -75.031366, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 34.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 9.0, "Total Spend": 13396.0, "Total Transactions": 640.0, "Total Customers": 481.0, "Median Spend per Transaction": 16.26, "Median Spend per Customer": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.031366, 40.076014 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@628-pmb-y9z", "Name": "Vape O2 Chinatown", "Category": "Other Miscellaneous Store Retailers", "Address": "56 N 9th St", "LATITUDE": 39.953112, "LONGITUDE": -75.154901, "DATE_RANGE_START": 2024, "Total Visits": 2235.0, "Total Visitors": 1503.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 98.0, "Total Spend": 422.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 54.19, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154901, 39.953112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-k4v", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "2043 Chestnut St", "LATITUDE": 39.95261, "LONGITUDE": -75.174958, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 1.0, "Total Spend": 114.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 13.6, "Median Spend per Customer": 13.6 }, "geometry": { "type": "Point", "coordinates": [ -75.174958, 39.95261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj2-btv", "Name": "Bentoulis Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1226 E Hunting Park Ave", "LATITUDE": 40.01065, "LONGITUDE": -75.102956, "DATE_RANGE_START": 2024, "Total Visits": 199.0, "Total Visitors": 188.0, "POI_CBG": 421010191002.0, "Median Dwell Time": 4.0, "Total Spend": 87.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 33.07, "Median Spend per Customer": 33.07 }, "geometry": { "type": "Point", "coordinates": [ -75.102956, 40.01065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p74-wtv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7500 Frankford Ave", "LATITUDE": 40.038745, "LONGITUDE": -75.036203, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 317.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 2.0, "Total Spend": 8937.0, "Total Transactions": 962.0, "Total Customers": 315.0, "Median Spend per Transaction": 8.19, "Median Spend per Customer": 13.56 }, "geometry": { "type": "Point", "coordinates": [ -75.036203, 40.038745 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm3-td9", "Name": "Watkins Drinkery", "Category": "Restaurants and Other Eating Places", "Address": "1712 S 10th St", "LATITUDE": 39.927952, "LONGITUDE": -75.162075, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 76.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 66.0, "Total Spend": 37.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.9, "Median Spend per Customer": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.162075, 39.927952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-rzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "301 S Columbus Blvd", "LATITUDE": 39.94428, "LONGITUDE": -75.141509, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 334.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 8.0, "Total Spend": 651.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 49.04, "Median Spend per Customer": 49.04 }, "geometry": { "type": "Point", "coordinates": [ -75.141509, 39.94428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cnq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4200 N Broad St", "LATITUDE": 40.017442, "LONGITUDE": -75.149872, "DATE_RANGE_START": 2024, "Total Visits": 910.0, "Total Visitors": 785.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 6.0, "Total Spend": 14179.0, "Total Transactions": 1066.0, "Total Customers": 669.0, "Median Spend per Transaction": 10.86, "Median Spend per Customer": 13.53 }, "geometry": { "type": "Point", "coordinates": [ -75.149872, 40.017442 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgg-rzf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "2800 Fox St", "LATITUDE": 40.008742, "LONGITUDE": -75.17653, "DATE_RANGE_START": 2024, "Total Visits": 762.0, "Total Visitors": 353.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 71.0, "Total Spend": 17021.0, "Total Transactions": 429.0, "Total Customers": 325.0, "Median Spend per Transaction": 28.85, "Median Spend per Customer": 30.46 }, "geometry": { "type": "Point", "coordinates": [ -75.17653, 40.008742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pnx-g49", "Name": "Ham Bone", "Category": "Other Miscellaneous Store Retailers", "Address": "1824 Frankford Ave", "LATITUDE": 39.977503, "LONGITUDE": -75.13156, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 200.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 1.0, "Total Spend": 364.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 138.22, "Median Spend per Customer": 138.22 }, "geometry": { "type": "Point", "coordinates": [ -75.13156, 39.977503 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-6x5", "Name": "Oyster House", "Category": "Restaurants and Other Eating Places", "Address": "1516 Sansom St", "LATITUDE": 39.95023, "LONGITUDE": -75.16658, "DATE_RANGE_START": 2024, "Total Visits": 290.0, "Total Visitors": 265.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 22.0, "Total Spend": 26806.0, "Total Transactions": 180.0, "Total Customers": 172.0, "Median Spend per Transaction": 118.96, "Median Spend per Customer": 124.2 }, "geometry": { "type": "Point", "coordinates": [ -75.16658, 39.95023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-7yv", "Name": "Home2 Suites", "Category": "Traveler Accommodation", "Address": "1200 Arch St", "LATITUDE": 39.953662, "LONGITUDE": -75.15975, "DATE_RANGE_START": 2024, "Total Visits": 3755.0, "Total Visitors": 2779.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 18.0, "Total Spend": 3924.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 442.57, "Median Spend per Customer": 442.57 }, "geometry": { "type": "Point", "coordinates": [ -75.15975, 39.953662 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmb-j35", "Name": "Tuna Bar", "Category": "Restaurants and Other Eating Places", "Address": "205 Race St", "LATITUDE": 39.954039, "LONGITUDE": -75.143175, "DATE_RANGE_START": 2024, "Total Visits": 291.0, "Total Visitors": 233.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 59.0, "Total Spend": 2776.0, "Total Transactions": 25.0, "Total Customers": 22.0, "Median Spend per Transaction": 96.84, "Median Spend per Customer": 112.28 }, "geometry": { "type": "Point", "coordinates": [ -75.143175, 39.954039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pjk-3nq", "Name": "Pina's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8919 Ridge Ave", "LATITUDE": 40.06943, "LONGITUDE": -75.239988, "DATE_RANGE_START": 2024, "Total Visits": 446.0, "Total Visitors": 391.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 8.0, "Total Spend": 2464.0, "Total Transactions": 80.0, "Total Customers": 58.0, "Median Spend per Transaction": 28.64, "Median Spend per Customer": 30.53 }, "geometry": { "type": "Point", "coordinates": [ -75.239988, 40.06943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p75-3qz", "Name": "No 1 China", "Category": "Restaurants and Other Eating Places", "Address": "8743 Frankford Ave", "LATITUDE": 40.048222, "LONGITUDE": -75.012593, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 162.0, "POI_CBG": 421010349002.0, "Median Dwell Time": 13.0, "Total Spend": 887.0, "Total Transactions": 32.0, "Total Customers": 30.0, "Median Spend per Transaction": 20.85, "Median Spend per Customer": 22.57 }, "geometry": { "type": "Point", "coordinates": [ -75.012593, 40.048222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-y5f", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "11701 Bustleton Ave", "LATITUDE": 40.118942, "LONGITUDE": -75.016787, "DATE_RANGE_START": 2024, "Total Visits": 2339.0, "Total Visitors": 1417.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 10.0, "Total Spend": 62980.0, "Total Transactions": 1193.0, "Total Customers": 633.0, "Median Spend per Transaction": 28.77, "Median Spend per Customer": 49.85 }, "geometry": { "type": "Point", "coordinates": [ -75.016787, 40.118942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgg-rzf", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "2800 Fox St Ste 110 Unit D", "LATITUDE": 40.008773, "LONGITUDE": -75.176588, "DATE_RANGE_START": 2024, "Total Visits": 762.0, "Total Visitors": 353.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 71.0, "Total Spend": 124.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 23.73, "Median Spend per Customer": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.176588, 40.008773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pp2-pvz", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "2400 Castor Ave", "LATITUDE": 39.994229, "LONGITUDE": -75.094658, "DATE_RANGE_START": 2024, "Total Visits": 2220.0, "Total Visitors": 1538.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 5.0, "Total Spend": 3491.0, "Total Transactions": 259.0, "Total Customers": 143.0, "Median Spend per Transaction": 8.03, "Median Spend per Customer": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.094658, 39.994229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgf-33q", "Name": "Hello World", "Category": "Home Furnishings Stores", "Address": "3610 Sansom St", "LATITUDE": 39.953734, "LONGITUDE": -75.19539, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010369001.0, "Median Dwell Time": 3.0, "Total Spend": 1287.0, "Total Transactions": 54.0, "Total Customers": 49.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.19539, 39.953734 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgj-d7q", "Name": "Owl Breakfast & Lunch", "Category": "Restaurants and Other Eating Places", "Address": "1424 Cecil B Moore Ave", "LATITUDE": 39.978638, "LONGITUDE": -75.159162, "DATE_RANGE_START": 2024, "Total Visits": 2270.0, "Total Visitors": 832.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 349.0, "Total Spend": 4049.0, "Total Transactions": 238.0, "Total Customers": 149.0, "Median Spend per Transaction": 14.41, "Median Spend per Customer": 18.46 }, "geometry": { "type": "Point", "coordinates": [ -75.159162, 39.978638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvr-d5f", "Name": "Chillin Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6545 Elmwood Ave", "LATITUDE": 39.921595, "LONGITUDE": -75.231567, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 109.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 1.0, "Total Spend": 116.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 13.65, "Median Spend per Customer": 13.65 }, "geometry": { "type": "Point", "coordinates": [ -75.231567, 39.921595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmf-sqz", "Name": "Bellini", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "220 S 16th St", "LATITUDE": 39.949112, "LONGITUDE": -75.167774, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 166.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 5145.0, "Total Transactions": 49.0, "Total Customers": 39.0, "Median Spend per Transaction": 84.86, "Median Spend per Customer": 88.84 }, "geometry": { "type": "Point", "coordinates": [ -75.167774, 39.949112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj6-3qz", "Name": "Forman Mills", "Category": "Clothing Stores", "Address": "5694 Rising Sun Ave", "LATITUDE": 40.040096, "LONGITUDE": -75.109829, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 3.0, "Total Spend": 14636.0, "Total Transactions": 276.0, "Total Customers": 225.0, "Median Spend per Transaction": 33.86, "Median Spend per Customer": 38.86 }, "geometry": { "type": "Point", "coordinates": [ -75.109829, 40.040096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-hnq", "Name": "TyeMeka's Soul Food", "Category": "Restaurants and Other Eating Places", "Address": "5920 Germantown Ave", "LATITUDE": 40.038113, "LONGITUDE": -75.176919, "DATE_RANGE_START": 2024, "Total Visits": 228.0, "Total Visitors": 55.0, "POI_CBG": 421010238003.0, "Median Dwell Time": 30.0, "Total Spend": 352.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 21.06, "Median Spend per Customer": 30.78 }, "geometry": { "type": "Point", "coordinates": [ -75.176919, 40.038113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9pv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2743 S Front St", "LATITUDE": 39.912513, "LONGITUDE": -75.150009, "DATE_RANGE_START": 2024, "Total Visits": 265.0, "Total Visitors": 213.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 6455.0, "Total Transactions": 392.0, "Total Customers": 279.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.150009, 39.912513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-227@628-phd-btv", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "5110 City Ave", "LATITUDE": 39.998022, "LONGITUDE": -75.232795, "DATE_RANGE_START": 2024, "Total Visits": 544.0, "Total Visitors": 477.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 3.0, "Total Spend": 165.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 15.01, "Median Spend per Customer": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.232795, 39.998022 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-66k", "Name": "Pac A Deli", "Category": "Grocery Stores", "Address": "1200 Walnut St", "LATITUDE": 39.948688, "LONGITUDE": -75.160761, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 99.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 5.0, "Total Spend": 7496.0, "Total Transactions": 411.0, "Total Customers": 221.0, "Median Spend per Transaction": 15.75, "Median Spend per Customer": 18.09 }, "geometry": { "type": "Point", "coordinates": [ -75.160761, 39.948688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgd-zvf", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "3440 Market St", "LATITUDE": 39.955622, "LONGITUDE": -75.192214, "DATE_RANGE_START": 2024, "Total Visits": 1958.0, "Total Visitors": 1251.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 58.0, "Total Spend": 1798.0, "Total Transactions": 209.0, "Total Customers": 124.0, "Median Spend per Transaction": 5.49, "Median Spend per Customer": 9.48 }, "geometry": { "type": "Point", "coordinates": [ -75.192214, 39.955622 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8m-djv", "Name": "Sweet Creations Unlimited", "Category": "Specialty Food Stores", "Address": "5940 Torresdale Ave", "LATITUDE": 40.017723, "LONGITUDE": -75.059702, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010321003.0, "Median Dwell Time": null, "Total Spend": 626.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 23.35, "Median Spend per Customer": 20.82 }, "geometry": { "type": "Point", "coordinates": [ -75.059702, 40.017723 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-f9f", "Name": "Northeast Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "7324 Castor Ave", "LATITUDE": 40.052912, "LONGITUDE": -75.064964, "DATE_RANGE_START": 2024, "Total Visits": 179.0, "Total Visitors": 158.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 4.0, "Total Spend": 3330.0, "Total Transactions": 128.0, "Total Customers": 70.0, "Median Spend per Transaction": 23.5, "Median Spend per Customer": 35.75 }, "geometry": { "type": "Point", "coordinates": [ -75.064964, 40.052912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pg8-x5z", "Name": "iMunch Cafe", "Category": "Health and Personal Care Stores", "Address": "1233 N 31st St", "LATITUDE": 39.975895, "LONGITUDE": -75.186313, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 187.0, "POI_CBG": 421010137005.0, "Median Dwell Time": null, "Total Spend": 3399.0, "Total Transactions": 170.0, "Total Customers": 118.0, "Median Spend per Transaction": 14.9, "Median Spend per Customer": 17.39 }, "geometry": { "type": "Point", "coordinates": [ -75.186313, 39.975895 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pfx-s89", "Name": "Eagle Mart", "Category": "Gasoline Stations", "Address": "5125 Umbria St", "LATITUDE": 40.038436, "LONGITUDE": -75.239356, "DATE_RANGE_START": 2024, "Total Visits": 276.0, "Total Visitors": 276.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 4.0, "Total Spend": 1712.0, "Total Transactions": 105.0, "Total Customers": 82.0, "Median Spend per Transaction": 13.4, "Median Spend per Customer": 16.63 }, "geometry": { "type": "Point", "coordinates": [ -75.239356, 40.038436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmc-v2k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1851 S Columbus Blvd Ste 3", "LATITUDE": 39.923461, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2024, "Total Visits": 667.0, "Total Visitors": 531.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 16384.0, "Total Transactions": 844.0, "Total Customers": 646.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 17.28 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmd-w49", "Name": "The Royal Indian Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "272 S 20th St", "LATITUDE": 39.948373, "LONGITUDE": -75.174503, "DATE_RANGE_START": 2024, "Total Visits": 115.0, "Total Visitors": 115.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 144.0, "Total Spend": 302.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 19.59, "Median Spend per Customer": 42.22 }, "geometry": { "type": "Point", "coordinates": [ -75.174503, 39.948373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvy-jjv", "Name": "Allegro Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3942 Spruce St", "LATITUDE": 39.951482, "LONGITUDE": -75.202904, "DATE_RANGE_START": 2024, "Total Visits": 330.0, "Total Visitors": 146.0, "POI_CBG": 421010088024.0, "Median Dwell Time": 40.0, "Total Spend": 9328.0, "Total Transactions": 611.0, "Total Customers": 354.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 15.98 }, "geometry": { "type": "Point", "coordinates": [ -75.202904, 39.951482 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pmb-gtv", "Name": "Middle Child", "Category": "Restaurants and Other Eating Places", "Address": "248 S 11th St", "LATITUDE": 39.947198, "LONGITUDE": -75.159468, "DATE_RANGE_START": 2024, "Total Visits": 461.0, "Total Visitors": 353.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 5.0, "Total Spend": 2102.0, "Total Transactions": 46.0, "Total Customers": 39.0, "Median Spend per Transaction": 32.28, "Median Spend per Customer": 39.65 }, "geometry": { "type": "Point", "coordinates": [ -75.159468, 39.947198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-p89-nt9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "5597 Tulip St", "LATITUDE": 40.012382, "LONGITUDE": -75.067917, "DATE_RANGE_START": 2024, "Total Visits": 298.0, "Total Visitors": 241.0, "POI_CBG": 421010298004.0, "Median Dwell Time": 74.0, "Total Spend": 7399.0, "Total Transactions": 383.0, "Total Customers": 273.0, "Median Spend per Transaction": 15.33, "Median Spend per Customer": 22.55 }, "geometry": { "type": "Point", "coordinates": [ -75.067917, 40.012382 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p7v-wx5", "Name": "Galaxy Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1239 Cottman Ave", "LATITUDE": 40.058776, "LONGITUDE": -75.078707, "DATE_RANGE_START": 2024, "Total Visits": 63.0, "Total Visitors": 54.0, "POI_CBG": 421010338004.0, "Median Dwell Time": 10.0, "Total Spend": 2214.0, "Total Transactions": 97.0, "Total Customers": 63.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 31.72 }, "geometry": { "type": "Point", "coordinates": [ -75.078707, 40.058776 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-6p9", "Name": "Pret A Manger", "Category": "Restaurants and Other Eating Places", "Address": "30 S 15th St", "LATITUDE": 39.951392, "LONGITUDE": -75.16582, "DATE_RANGE_START": 2024, "Total Visits": 8743.0, "Total Visitors": 5302.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 19291.0, "Total Transactions": 1521.0, "Total Customers": 1159.0, "Median Spend per Transaction": 11.8, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.16582, 39.951392 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmf-kvf", "Name": "El Rey", "Category": "Restaurants and Other Eating Places", "Address": "2013 Chestnut St", "LATITUDE": 39.952257, "LONGITUDE": -75.174024, "DATE_RANGE_START": 2024, "Total Visits": 226.0, "Total Visitors": 222.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 3.0, "Total Spend": 13675.0, "Total Transactions": 208.0, "Total Customers": 186.0, "Median Spend per Transaction": 52.9, "Median Spend per Customer": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174024, 39.952257 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pmf-mff", "Name": "Asia On the Parkway", "Category": "Restaurants and Other Eating Places", "Address": "1700 Benjamin Franklin Pkwy", "LATITUDE": 39.95574, "LONGITUDE": -75.168366, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 640.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 57.0, "Total Spend": 2022.0, "Total Transactions": 43.0, "Total Customers": 37.0, "Median Spend per Transaction": 39.4, "Median Spend per Customer": 31.2 }, "geometry": { "type": "Point", "coordinates": [ -75.168366, 39.95574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8d-kzz", "Name": "Paisas Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4263 Frankford Ave", "LATITUDE": 40.010216, "LONGITUDE": -75.088851, "DATE_RANGE_START": 2024, "Total Visits": 806.0, "Total Visitors": 474.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 3.0, "Total Spend": 959.0, "Total Transactions": 50.0, "Total Customers": 32.0, "Median Spend per Transaction": 17.14, "Median Spend per Customer": 25.75 }, "geometry": { "type": "Point", "coordinates": [ -75.088851, 40.010216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9r-q75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "9834 Bustleton Ave", "LATITUDE": 40.09314, "LONGITUDE": -75.03203, "DATE_RANGE_START": 2024, "Total Visits": 627.0, "Total Visitors": 521.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 6.0, "Total Spend": 6580.0, "Total Transactions": 835.0, "Total Customers": 354.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 11.82 }, "geometry": { "type": "Point", "coordinates": [ -75.03203, 40.09314 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7z-ygk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6323 Castor Ave", "LATITUDE": 40.038845, "LONGITUDE": -75.077478, "DATE_RANGE_START": 2024, "Total Visits": 462.0, "Total Visitors": 317.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 4.0, "Total Spend": 1830.0, "Total Transactions": 238.0, "Total Customers": 112.0, "Median Spend per Transaction": 6.79, "Median Spend per Customer": 10.79 }, "geometry": { "type": "Point", "coordinates": [ -75.077478, 40.038845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-rrk", "Name": "Provenance", "Category": "Building Material and Supplies Dealers", "Address": "1801 N American St", "LATITUDE": 39.978215, "LONGITUDE": -75.138171, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010157003.0, "Median Dwell Time": 9.0, "Total Spend": 711.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 270.0, "Median Spend per Customer": 270.0 }, "geometry": { "type": "Point", "coordinates": [ -75.138171, 39.978215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-brk", "Name": "East Coast Wings + Grill", "Category": "Restaurants and Other Eating Places", "Address": "2539 Castor Ave", "LATITUDE": 39.993916, "LONGITUDE": -75.091363, "DATE_RANGE_START": 2024, "Total Visits": 498.0, "Total Visitors": 388.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 38.0, "Total Spend": 3237.0, "Total Transactions": 62.0, "Total Customers": 42.0, "Median Spend per Transaction": 47.49, "Median Spend per Customer": 53.04 }, "geometry": { "type": "Point", "coordinates": [ -75.091363, 39.993916 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-223@628-pnx-7qz", "Name": "Dolce & Caffe", "Category": "Restaurants and Other Eating Places", "Address": "708 N 2nd St", "LATITUDE": 39.962218, "LONGITUDE": -75.141391, "DATE_RANGE_START": 2024, "Total Visits": 137.0, "Total Visitors": 137.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 39.0, "Total Spend": 3874.0, "Total Transactions": 290.0, "Total Customers": 162.0, "Median Spend per Transaction": 9.46, "Median Spend per Customer": 15.12 }, "geometry": { "type": "Point", "coordinates": [ -75.141391, 39.962218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pm9-yjv", "Name": "Mustard Greens Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "622 S 2nd St", "LATITUDE": 39.940547, "LONGITUDE": -75.145983, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 153.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 11.0, "Total Spend": 1098.0, "Total Transactions": 14.0, "Total Customers": 9.0, "Median Spend per Transaction": 74.52, "Median Spend per Customer": 69.4 }, "geometry": { "type": "Point", "coordinates": [ -75.145983, 39.940547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvs-2ff", "Name": "Kim's Market", "Category": "Grocery Stores", "Address": "5548 Chester Ave", "LATITUDE": 39.93806, "LONGITUDE": -75.22561, "DATE_RANGE_START": 2024, "Total Visits": 408.0, "Total Visitors": 203.0, "POI_CBG": 421010071012.0, "Median Dwell Time": 52.0, "Total Spend": 80.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.65, "Median Spend per Customer": 8.65 }, "geometry": { "type": "Point", "coordinates": [ -75.22561, 39.93806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-66k", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2201 Cottman Ave Ste 245", "LATITUDE": 40.048965, "LONGITUDE": -75.060361, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 3.0, "Total Spend": 608.0, "Total Transactions": 12.0, "Total Customers": 11.0, "Median Spend per Transaction": 54.99, "Median Spend per Customer": 55.45 }, "geometry": { "type": "Point", "coordinates": [ -75.060361, 40.048965 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-x89", "Name": "Suit Corner", "Category": "Clothing Stores", "Address": "302 Market St", "LATITUDE": 39.950042, "LONGITUDE": -75.146012, "DATE_RANGE_START": 2024, "Total Visits": 748.0, "Total Visitors": 673.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 5.0, "Total Spend": 1834.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 60.0, "Median Spend per Customer": 60.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146012, 39.950042 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9s-j9z", "Name": "Room Service 360", "Category": "Furniture Stores", "Address": "2031 Byberry Rd", "LATITUDE": 40.11123, "LONGITUDE": -75.003126, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 151.0, "POI_CBG": 421010364001.0, "Median Dwell Time": 2.0, "Total Spend": 2722.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 33.9, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.003126, 40.11123 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfx-tsq", "Name": "Riverside Cycles", "Category": "Other Motor Vehicle Dealers", "Address": "360 Domino Ln", "LATITUDE": 40.041642, "LONGITUDE": -75.237869, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 67.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 17.0, "Total Spend": 2235.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 175.83, "Median Spend per Customer": 175.83 }, "geometry": { "type": "Point", "coordinates": [ -75.237869, 40.041642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23v@63s-dw9-7nq", "Name": "InMotion", "Category": "Electronics and Appliance Stores", "Address": "8500 Essington Ave Uppr", "LATITUDE": 39.894631, "LONGITUDE": -75.2293, "DATE_RANGE_START": 2024, "Total Visits": 5521.0, "Total Visitors": 3994.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 4404.0, "Total Transactions": 79.0, "Total Customers": 74.0, "Median Spend per Transaction": 37.79, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.2293, 39.894631 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-rkz", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028748, "LONGITUDE": -75.099161, "DATE_RANGE_START": 2024, "Total Visits": 806.0, "Total Visitors": 669.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 48.0, "Total Spend": 14983.0, "Total Transactions": 437.0, "Total Customers": 379.0, "Median Spend per Transaction": 26.05, "Median Spend per Customer": 26.98 }, "geometry": { "type": "Point", "coordinates": [ -75.099161, 40.028748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj4-5s5", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4421 N Broad St", "LATITUDE": 40.0213, "LONGITUDE": -75.148234, "DATE_RANGE_START": 2024, "Total Visits": 671.0, "Total Visitors": 532.0, "POI_CBG": 421010204003.0, "Median Dwell Time": 4.0, "Total Spend": 2064.0, "Total Transactions": 107.0, "Total Customers": 88.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.148234, 40.0213 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-94v", "Name": "Burlington", "Category": "Clothing Stores", "Address": "833 Market St", "LATITUDE": 39.952369, "LONGITUDE": -75.157745, "DATE_RANGE_START": 2024, "Total Visits": 11779.0, "Total Visitors": 6947.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 16.0, "Total Spend": 3977.0, "Total Transactions": 124.0, "Total Customers": 100.0, "Median Spend per Transaction": 22.79, "Median Spend per Customer": 24.51 }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.952369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-92k", "Name": "Francesca's", "Category": "Clothing Stores", "Address": "901 Market St # 2045", "LATITUDE": 39.952109, "LONGITUDE": -75.155803, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 195.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 4.0, "Total Spend": 2216.0, "Total Transactions": 53.0, "Total Customers": 50.0, "Median Spend per Transaction": 31.81, "Median Spend per Customer": 31.81 }, "geometry": { "type": "Point", "coordinates": [ -75.155803, 39.952109 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-pgj-grk", "Name": "Mexican Grill Stand", "Category": "Restaurants and Other Eating Places", "Address": "1736 N 13th St", "LATITUDE": 39.979536, "LONGITUDE": -75.155265, "DATE_RANGE_START": 2024, "Total Visits": 2364.0, "Total Visitors": 1045.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 14.0, "Total Spend": 375.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 12.96 }, "geometry": { "type": "Point", "coordinates": [ -75.155265, 39.979536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-jd9", "Name": "LongHorn Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "9769 Roosevelt Blvd", "LATITUDE": 40.084409, "LONGITUDE": -75.024098, "DATE_RANGE_START": 2024, "Total Visits": 1036.0, "Total Visitors": 976.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 52.0, "Total Spend": 31473.0, "Total Transactions": 424.0, "Total Customers": 345.0, "Median Spend per Transaction": 67.46, "Median Spend per Customer": 78.98 }, "geometry": { "type": "Point", "coordinates": [ -75.024098, 40.084409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgf-2ff", "Name": "Han Dynasty", "Category": "Restaurants and Other Eating Places", "Address": "3711 Market St", "LATITUDE": 39.956959, "LONGITUDE": -75.197017, "DATE_RANGE_START": 2024, "Total Visits": 4675.0, "Total Visitors": 2994.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 27.0, "Total Spend": 4485.0, "Total Transactions": 75.0, "Total Customers": 62.0, "Median Spend per Transaction": 45.16, "Median Spend per Customer": 47.7 }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.956959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7z-8d9", "Name": "Quaker Diner", "Category": "Restaurants and Other Eating Places", "Address": "7241 Rising Sun Ave", "LATITUDE": 40.060575, "LONGITUDE": -75.084417, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 5.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 37.0, "Total Spend": 4840.0, "Total Transactions": 140.0, "Total Customers": 86.0, "Median Spend per Transaction": 35.4, "Median Spend per Customer": 43.14 }, "geometry": { "type": "Point", "coordinates": [ -75.084417, 40.060575 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p9q-j5f", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "2552 Grant Ave", "LATITUDE": 40.079219, "LONGITUDE": -75.026617, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 5167.0, "Total Transactions": 205.0, "Total Customers": 179.0, "Median Spend per Transaction": 20.92, "Median Spend per Customer": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.026617, 40.079219 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm6-zpv", "Name": "Reef", "Category": "Restaurants and Other Eating Places", "Address": "2820 W Oregon Ave", "LATITUDE": 39.917091, "LONGITUDE": -75.187282, "DATE_RANGE_START": 2024, "Total Visits": 24854.0, "Total Visitors": 12271.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 25.0, "Total Spend": 747.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 101.1, "Median Spend per Customer": 101.1 }, "geometry": { "type": "Point", "coordinates": [ -75.187282, 39.917091 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmb-fxq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "716 South St", "LATITUDE": 39.942192, "LONGITUDE": -75.154562, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 14.0, "Total Spend": 14399.0, "Total Transactions": 437.0, "Total Customers": 317.0, "Median Spend per Transaction": 30.59, "Median Spend per Customer": 36.88 }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.942192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-rhq", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5711 Ridge Ave", "LATITUDE": 40.027513, "LONGITUDE": -75.209445, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 128.0, "Total Spend": 7625.0, "Total Transactions": 296.0, "Total Customers": 224.0, "Median Spend per Transaction": 25.88, "Median Spend per Customer": 27.76 }, "geometry": { "type": "Point", "coordinates": [ -75.209445, 40.027513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pmb-8y9", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "901 Market St", "LATITUDE": 39.951633, "LONGITUDE": -75.156013, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 1860.0, "Total Transactions": 204.0, "Total Customers": 166.0, "Median Spend per Transaction": 8.29, "Median Spend per Customer": 10.05 }, "geometry": { "type": "Point", "coordinates": [ -75.156013, 39.951633 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pgb-2c5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "150 N Broad St", "LATITUDE": 39.956158, "LONGITUDE": -75.163073, "DATE_RANGE_START": 2024, "Total Visits": 487.0, "Total Visitors": 413.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 2.0, "Total Spend": 1214.0, "Total Transactions": 84.0, "Total Customers": 61.0, "Median Spend per Transaction": 9.06, "Median Spend per Customer": 10.05 }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.956158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg2-v9f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7236 Germantown Ave # 40", "LATITUDE": 40.060844, "LONGITUDE": -75.192031, "DATE_RANGE_START": 2024, "Total Visits": 948.0, "Total Visitors": 677.0, "POI_CBG": 421010388002.0, "Median Dwell Time": 5.0, "Total Spend": 6827.0, "Total Transactions": 632.0, "Total Customers": 453.0, "Median Spend per Transaction": 8.46, "Median Spend per Customer": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.192031, 40.060844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pfy-brk", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6138 Ridge Ave", "LATITUDE": 40.034172, "LONGITUDE": -75.216364, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 163.0, "POI_CBG": 421010213002.0, "Median Dwell Time": 6.0, "Total Spend": 35.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.216364, 40.034172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-gtv", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1812 W Cheltenham Ave", "LATITUDE": 40.066964, "LONGITUDE": -75.146044, "DATE_RANGE_START": 2024, "Total Visits": 271.0, "Total Visitors": 188.0, "POI_CBG": 421010266002.0, "Median Dwell Time": 5.0, "Total Spend": 546.0, "Total Transactions": 21.0, "Total Customers": 13.0, "Median Spend per Transaction": 13.84, "Median Spend per Customer": 18.67 }, "geometry": { "type": "Point", "coordinates": [ -75.146044, 40.066964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-v75", "Name": "Buffalo Billiards", "Category": "Restaurants and Other Eating Places", "Address": "118 Chestnut St", "LATITUDE": 39.948005, "LONGITUDE": -75.143329, "DATE_RANGE_START": 2024, "Total Visits": 920.0, "Total Visitors": 703.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 26.0, "Total Spend": 27189.0, "Total Transactions": 939.0, "Total Customers": 619.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 30.41 }, "geometry": { "type": "Point", "coordinates": [ -75.143329, 39.948005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pjg-249", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "51 Bethlehem Pike", "LATITUDE": 40.078229, "LONGITUDE": -75.208232, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 72.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 7.0, "Total Spend": 2131.0, "Total Transactions": 86.0, "Total Customers": 79.0, "Median Spend per Transaction": 16.12, "Median Spend per Customer": 17.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208232, 40.078229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-ffz", "Name": "Hoagie Factory", "Category": "Restaurants and Other Eating Places", "Address": "2121 72nd Ave", "LATITUDE": 40.064556, "LONGITUDE": -75.152964, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 96.0, "POI_CBG": 421010266007.0, "Median Dwell Time": 5.0, "Total Spend": 3362.0, "Total Transactions": 184.0, "Total Customers": 111.0, "Median Spend per Transaction": 15.91, "Median Spend per Customer": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.152964, 40.064556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-mrk", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St Ste F6", "LATITUDE": 39.952106, "LONGITUDE": -75.16843, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 9.0, "Total Spend": 7947.0, "Total Transactions": 600.0, "Total Customers": 413.0, "Median Spend per Transaction": 12.53, "Median Spend per Customer": 13.94 }, "geometry": { "type": "Point", "coordinates": [ -75.16843, 39.952106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pgb-hdv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1945 Callowhill St", "LATITUDE": 39.960967, "LONGITUDE": -75.17143, "DATE_RANGE_START": 2024, "Total Visits": 881.0, "Total Visitors": 799.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 4.0, "Total Spend": 2382.0, "Total Transactions": 225.0, "Total Customers": 166.0, "Median Spend per Transaction": 8.54, "Median Spend per Customer": 10.47 }, "geometry": { "type": "Point", "coordinates": [ -75.17143, 39.960967 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-wrk", "Name": "Triangle Tavern", "Category": "Restaurants and Other Eating Places", "Address": "1338 S 10th St", "LATITUDE": 39.932347, "LONGITUDE": -75.161123, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 146.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 51.0, "Total Spend": 22955.0, "Total Transactions": 487.0, "Total Customers": 354.0, "Median Spend per Transaction": 40.42, "Median Spend per Customer": 51.1 }, "geometry": { "type": "Point", "coordinates": [ -75.161123, 39.932347 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-75z", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6151 N Broad St", "LATITUDE": 40.047172, "LONGITUDE": -75.142507, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 8.0, "POI_CBG": 421010276004.0, "Median Dwell Time": 4.0, "Total Spend": 5472.0, "Total Transactions": 199.0, "Total Customers": 128.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142507, 40.047172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-7h5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2801 W Dauphin St", "LATITUDE": 39.991919, "LONGITUDE": -75.178907, "DATE_RANGE_START": 2024, "Total Visits": 972.0, "Total Visitors": 567.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 31.0, "Total Spend": 703.0, "Total Transactions": 37.0, "Total Customers": 33.0, "Median Spend per Transaction": 10.45, "Median Spend per Customer": 10.55 }, "geometry": { "type": "Point", "coordinates": [ -75.178907, 39.991919 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8f-djv", "Name": "Kim's Market", "Category": "Grocery Stores", "Address": "4708 Oxford Ave", "LATITUDE": 40.01711, "LONGITUDE": -75.084033, "DATE_RANGE_START": 2024, "Total Visits": 445.0, "Total Visitors": 244.0, "POI_CBG": 421010300006.0, "Median Dwell Time": 200.0, "Total Spend": 230.0, "Total Transactions": 13.0, "Total Customers": 9.0, "Median Spend per Transaction": 11.04, "Median Spend per Customer": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.084033, 40.01711 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p86-835", "Name": "Rieker's Prime Meats", "Category": "Specialty Food Stores", "Address": "7979 Oxford Ave", "LATITUDE": 40.076892, "LONGITUDE": -75.084902, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 155.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 6.0, "Total Spend": 986.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 38.42, "Median Spend per Customer": 38.42 }, "geometry": { "type": "Point", "coordinates": [ -75.084902, 40.076892 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9p-q9f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "10000 Verree Rd", "LATITUDE": 40.105522, "LONGITUDE": -75.032843, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 16.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 3.0, "Total Spend": 146.0, "Total Transactions": 16.0, "Total Customers": 4.0, "Median Spend per Transaction": 4.31, "Median Spend per Customer": 41.62 }, "geometry": { "type": "Point", "coordinates": [ -75.032843, 40.105522 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-yqf", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2751 W Passyunk Ave", "LATITUDE": 39.92153, "LONGITUDE": -75.193325, "DATE_RANGE_START": 2024, "Total Visits": 774.0, "Total Visitors": 625.0, "POI_CBG": 421010036003.0, "Median Dwell Time": 4.0, "Total Spend": 543.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 27.19, "Median Spend per Customer": 29.38 }, "geometry": { "type": "Point", "coordinates": [ -75.193325, 39.92153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-6tv", "Name": "Shell Oil", "Category": "Gasoline Stations", "Address": "2901 Abbottsford Ave", "LATITUDE": 40.015035, "LONGITUDE": -75.178463, "DATE_RANGE_START": 2024, "Total Visits": 803.0, "Total Visitors": 681.0, "POI_CBG": 421010206001.0, "Median Dwell Time": 3.0, "Total Spend": 626.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 25.41, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.178463, 40.015035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfx-ks5", "Name": "Main Street Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4444 Main St", "LATITUDE": 40.026401, "LONGITUDE": -75.226197, "DATE_RANGE_START": 2024, "Total Visits": 533.0, "Total Visitors": 420.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 1792.0, "Total Transactions": 45.0, "Total Customers": 42.0, "Median Spend per Transaction": 31.85, "Median Spend per Customer": 32.43 }, "geometry": { "type": "Point", "coordinates": [ -75.226197, 40.026401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmf-kpv", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1900 Chestnut St", "LATITUDE": 39.951681, "LONGITUDE": -75.17226, "DATE_RANGE_START": 2024, "Total Visits": 2412.0, "Total Visitors": 1765.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 5.0, "Total Spend": 16345.0, "Total Transactions": 768.0, "Total Customers": 595.0, "Median Spend per Transaction": 16.22, "Median Spend per Customer": 21.13 }, "geometry": { "type": "Point", "coordinates": [ -75.17226, 39.951681 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-g49", "Name": "Accent On Animals", "Category": "Other Miscellaneous Store Retailers", "Address": "804 South St", "LATITUDE": 39.94229, "LONGITUDE": -75.155755, "DATE_RANGE_START": 2024, "Total Visits": 853.0, "Total Visitors": 735.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 1.0, "Total Spend": 3861.0, "Total Transactions": 134.0, "Total Customers": 120.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 24.3 }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.94229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm9-tjv", "Name": "Golden Nugget Jewelers III", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "800 Chestnut St", "LATITUDE": 39.949573, "LONGITUDE": -75.154285, "DATE_RANGE_START": 2024, "Total Visits": 828.0, "Total Visitors": 604.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 8.0, "Total Spend": 27597.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 593.5, "Median Spend per Customer": 843.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154285, 39.949573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm4-xh5", "Name": "C & R Building Supplies", "Category": "Building Material and Supplies Dealers", "Address": "1322 Washington Ave", "LATITUDE": 39.937501, "LONGITUDE": -75.165521, "DATE_RANGE_START": 2024, "Total Visits": 835.0, "Total Visitors": 670.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 15.0, "Total Spend": 508.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 145.8, "Median Spend per Customer": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.165521, 39.937501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pg8-z2k", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1701 N 33rd St", "LATITUDE": 39.982903, "LONGITUDE": -75.187839, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 172.0, "POI_CBG": 421010149006.0, "Median Dwell Time": 4.0, "Total Spend": 91.0, "Total Transactions": 11.0, "Total Customers": 4.0, "Median Spend per Transaction": 6.84, "Median Spend per Customer": 26.49 }, "geometry": { "type": "Point", "coordinates": [ -75.187839, 39.982903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgd-zj9", "Name": "Redcap's Corner", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "3617 Lancaster Ave Fl 1", "LATITUDE": 39.959084, "LONGITUDE": -75.194138, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 221.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 397.0, "Total Spend": 920.0, "Total Transactions": 49.0, "Total Customers": 37.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.194138, 39.959084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pnw-t5f", "Name": "Cavanaugh's Riverdeck", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "417 N Columbus Blvd", "LATITUDE": 39.957727, "LONGITUDE": -75.137243, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 179.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 59.0, "Total Spend": 32229.0, "Total Transactions": 1309.0, "Total Customers": 714.0, "Median Spend per Transaction": 19.92, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.137243, 39.957727 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-223@628-phy-rc5", "Name": "Tierra Colombiana Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "4535 N 5th St", "LATITUDE": 40.020572, "LONGITUDE": -75.133736, "DATE_RANGE_START": 2024, "Total Visits": 300.0, "Total Visitors": 197.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 43.0, "Total Spend": 851.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 29.67, "Median Spend per Customer": 81.53 }, "geometry": { "type": "Point", "coordinates": [ -75.133736, 40.020572 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pjf-j5f", "Name": "Saigon Noodle Bar", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074096, "LONGITUDE": -75.202561, "DATE_RANGE_START": 2024, "Total Visits": 377.0, "Total Visitors": 296.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 13.0, "Total Spend": 1053.0, "Total Transactions": 63.0, "Total Customers": 50.0, "Median Spend per Transaction": 15.26, "Median Spend per Customer": 18.77 }, "geometry": { "type": "Point", "coordinates": [ -75.202561, 40.074096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pjf-jvz", "Name": "El Poquito", "Category": "Restaurants and Other Eating Places", "Address": "8201 Germantown Ave", "LATITUDE": 40.073588, "LONGITUDE": -75.202607, "DATE_RANGE_START": 2024, "Total Visits": 249.0, "Total Visitors": 234.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 3.0, "Total Spend": 1795.0, "Total Transactions": 25.0, "Total Customers": 25.0, "Median Spend per Transaction": 68.8, "Median Spend per Customer": 68.8 }, "geometry": { "type": "Point", "coordinates": [ -75.202607, 40.073588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-225@628-pfx-kmk", "Name": "Blondie", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4417 Main St", "LATITUDE": 40.026272, "LONGITUDE": -75.225359, "DATE_RANGE_START": 2024, "Total Visits": 1607.0, "Total Visitors": 1027.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 14.0, "Total Spend": 316.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 71.1, "Median Spend per Customer": 71.1 }, "geometry": { "type": "Point", "coordinates": [ -75.225359, 40.026272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-p7z-vpv", "Name": "Castor Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6038 Castor Ave", "LATITUDE": 40.035282, "LONGITUDE": -75.081796, "DATE_RANGE_START": 2024, "Total Visits": 67.0, "Total Visitors": 67.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 39.0, "Total Spend": 3460.0, "Total Transactions": 145.0, "Total Customers": 95.0, "Median Spend per Transaction": 22.46, "Median Spend per Customer": 25.63 }, "geometry": { "type": "Point", "coordinates": [ -75.081796, 40.035282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pm3-vpv", "Name": "P'unk Burger", "Category": "Restaurants and Other Eating Places", "Address": "1823 E Passyunk Ave", "LATITUDE": 39.927124, "LONGITUDE": -75.166327, "DATE_RANGE_START": 2024, "Total Visits": 658.0, "Total Visitors": 508.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 7.0, "Total Spend": 184.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 69.74, "Median Spend per Customer": 69.74 }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.927124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmc-n89", "Name": "Ruby Buffet", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.932215, "LONGITUDE": -75.144611, "DATE_RANGE_START": 2024, "Total Visits": 348.0, "Total Visitors": 315.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 32.0, "Total Spend": 12223.0, "Total Transactions": 283.0, "Total Customers": 221.0, "Median Spend per Transaction": 39.93, "Median Spend per Customer": 43.16 }, "geometry": { "type": "Point", "coordinates": [ -75.144611, 39.932215 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvz-2ff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "4201 Walnut St # 59", "LATITUDE": 39.954962, "LONGITUDE": -75.206929, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 14.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 3.0, "Total Spend": 1844.0, "Total Transactions": 169.0, "Total Customers": 75.0, "Median Spend per Transaction": 9.78, "Median Spend per Customer": 7.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206929, 39.954962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pzp-q4v", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "15500 Bustleton Ave", "LATITUDE": 40.134542, "LONGITUDE": -75.009973, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 5.0, "Total Spend": 3442.0, "Total Transactions": 147.0, "Total Customers": 78.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 22.87 }, "geometry": { "type": "Point", "coordinates": [ -75.009973, 40.134542 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-dsq", "Name": "BP", "Category": "Gasoline Stations", "Address": "5801 Oxford Ave", "LATITUDE": 40.032529, "LONGITUDE": -75.084542, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 162.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 5.0, "Total Spend": 684.0, "Total Transactions": 65.0, "Total Customers": 16.0, "Median Spend per Transaction": 4.0, "Median Spend per Customer": 22.05 }, "geometry": { "type": "Point", "coordinates": [ -75.084542, 40.032529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yqf", "Name": "David's Mai Lai Wah", "Category": "Restaurants and Other Eating Places", "Address": "1001 Race St", "LATITUDE": 39.955614, "LONGITUDE": -75.156138, "DATE_RANGE_START": 2024, "Total Visits": 1923.0, "Total Visitors": 1384.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 3.0, "Total Spend": 8717.0, "Total Transactions": 249.0, "Total Customers": 192.0, "Median Spend per Transaction": 30.1, "Median Spend per Customer": 30.1 }, "geometry": { "type": "Point", "coordinates": [ -75.156138, 39.955614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9p-qxq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "842 Red Lion Rd", "LATITUDE": 40.103041, "LONGITUDE": -75.030239, "DATE_RANGE_START": 2024, "Total Visits": 446.0, "Total Visitors": 377.0, "POI_CBG": 421010356012.0, "Median Dwell Time": 3.0, "Total Spend": 5784.0, "Total Transactions": 686.0, "Total Customers": 267.0, "Median Spend per Transaction": 6.78, "Median Spend per Customer": 10.81 }, "geometry": { "type": "Point", "coordinates": [ -75.030239, 40.103041 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm4-99f", "Name": "American Sardine Bar", "Category": "Restaurants and Other Eating Places", "Address": "1800 Federal St", "LATITUDE": 39.936621, "LONGITUDE": -75.173737, "DATE_RANGE_START": 2024, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010021002.0, "Median Dwell Time": 1.0, "Total Spend": 1746.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 49.46, "Median Spend per Customer": 88.44 }, "geometry": { "type": "Point", "coordinates": [ -75.173737, 39.936621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-wkz", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "31 Snyder Ave", "LATITUDE": 39.921804, "LONGITUDE": -75.146278, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 30.0, "Total Spend": 275.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 15.65 }, "geometry": { "type": "Point", "coordinates": [ -75.146278, 39.921804 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-phz-vs5", "Name": "Ys Market", "Category": "Restaurants and Other Eating Places", "Address": "3468 Kensington Ave", "LATITUDE": 40.000195, "LONGITUDE": -75.106917, "DATE_RANGE_START": 2024, "Total Visits": 220.0, "Total Visitors": 204.0, "POI_CBG": 421010192004.0, "Median Dwell Time": 1.0, "Total Spend": 147.0, "Total Transactions": 16.0, "Total Customers": 5.0, "Median Spend per Transaction": 5.25, "Median Spend per Customer": 11.78 }, "geometry": { "type": "Point", "coordinates": [ -75.106917, 40.000195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pnx-btv", "Name": "Fishtown Pizza", "Category": "Restaurants and Other Eating Places", "Address": "607 E Girard Ave", "LATITUDE": 39.971654, "LONGITUDE": -75.126934, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 115.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 1.0, "Total Spend": 1460.0, "Total Transactions": 54.0, "Total Customers": 33.0, "Median Spend per Transaction": 22.35, "Median Spend per Customer": 28.11 }, "geometry": { "type": "Point", "coordinates": [ -75.126934, 39.971654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-d5f", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7001 Roosevelt Blvd", "LATITUDE": 40.040156, "LONGITUDE": -75.057245, "DATE_RANGE_START": 2024, "Total Visits": 2156.0, "Total Visitors": 1330.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 4.0, "Total Spend": 66438.0, "Total Transactions": 3111.0, "Total Customers": 1681.0, "Median Spend per Transaction": 14.89, "Median Spend per Customer": 23.68 }, "geometry": { "type": "Point", "coordinates": [ -75.057245, 40.040156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pmb-c3q", "Name": "Foodery", "Category": "Restaurants and Other Eating Places", "Address": "324 S 10th St", "LATITUDE": 39.944856, "LONGITUDE": -75.158469, "DATE_RANGE_START": 2024, "Total Visits": 230.0, "Total Visitors": 186.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 5.0, "Total Spend": 6751.0, "Total Transactions": 384.0, "Total Customers": 207.0, "Median Spend per Transaction": 15.09, "Median Spend per Customer": 19.01 }, "geometry": { "type": "Point", "coordinates": [ -75.158469, 39.944856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-t9z", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "7500 Bustleton Ave", "LATITUDE": 40.051367, "LONGITUDE": -75.05751, "DATE_RANGE_START": 2024, "Total Visits": 666.0, "Total Visitors": 548.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 5.0, "Total Spend": 265.0, "Total Transactions": 22.0, "Total Customers": 13.0, "Median Spend per Transaction": 9.04, "Median Spend per Customer": 15.52 }, "geometry": { "type": "Point", "coordinates": [ -75.05751, 40.051367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pmb-5zz", "Name": "HiLo Taco", "Category": "Restaurants and Other Eating Places", "Address": "1109 Walnut St", "LATITUDE": 39.949027, "LONGITUDE": -75.159503, "DATE_RANGE_START": 2024, "Total Visits": 2542.0, "Total Visitors": 1748.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 4.0, "Total Spend": 4464.0, "Total Transactions": 116.0, "Total Customers": 101.0, "Median Spend per Transaction": 26.19, "Median Spend per Customer": 33.66 }, "geometry": { "type": "Point", "coordinates": [ -75.159503, 39.949027 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pmf-jjv", "Name": "Just Salad", "Category": "Restaurants and Other Eating Places", "Address": "1729 Chestnut St", "LATITUDE": 39.951824, "LONGITUDE": -75.169805, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 257.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 6305.0, "Total Transactions": 378.0, "Total Customers": 208.0, "Median Spend per Transaction": 16.03, "Median Spend per Customer": 17.39 }, "geometry": { "type": "Point", "coordinates": [ -75.169805, 39.951824 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@63s-dvx-2kz", "Name": "Rising Sun", "Category": "Restaurants and Other Eating Places", "Address": "4800 Westminster Ave", "LATITUDE": 39.968785, "LONGITUDE": -75.217282, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 166.0, "POI_CBG": 421010104003.0, "Median Dwell Time": null, "Total Spend": 317.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.217282, 39.968785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-p7w-wtv", "Name": "Twistee Treat", "Category": "Restaurants and Other Eating Places", "Address": "3401 Longshore Ave", "LATITUDE": 40.033208, "LONGITUDE": -75.048855, "DATE_RANGE_START": 2024, "Total Visits": 124.0, "Total Visitors": 107.0, "POI_CBG": 421010315013.0, "Median Dwell Time": 3.0, "Total Spend": 981.0, "Total Transactions": 74.0, "Total Customers": 55.0, "Median Spend per Transaction": 11.18, "Median Spend per Customer": 14.75 }, "geometry": { "type": "Point", "coordinates": [ -75.048855, 40.033208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9n-cbk", "Name": "Sahara Enterprise", "Category": "Specialty Food Stores", "Address": "10981 Decatur Rd Ste 4", "LATITUDE": 40.092708, "LONGITUDE": -74.990003, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 7.0, "Total Spend": 5011.0, "Total Transactions": 55.0, "Total Customers": 42.0, "Median Spend per Transaction": 38.58, "Median Spend per Customer": 39.39 }, "geometry": { "type": "Point", "coordinates": [ -74.990003, 40.092708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p75-kj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2998A Welsh Rd", "LATITUDE": 40.057246, "LONGITUDE": -75.029448, "DATE_RANGE_START": 2024, "Total Visits": 495.0, "Total Visitors": 174.0, "POI_CBG": 421010347011.0, "Median Dwell Time": 332.0, "Total Spend": 5360.0, "Total Transactions": 687.0, "Total Customers": 240.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.029448, 40.057246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pgj-p7q", "Name": "Turning Heads", "Category": "Clothing Stores", "Address": "2731 Germantown Ave", "LATITUDE": 39.993848, "LONGITUDE": -75.147504, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 39.0, "POI_CBG": 421010175003.0, "Median Dwell Time": null, "Total Spend": 176.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 67.0, "Median Spend per Customer": 67.0 }, "geometry": { "type": "Point", "coordinates": [ -75.147504, 39.993848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm5-sh5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914428, "LONGITUDE": -75.156268, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 3.0, "Total Spend": 9089.0, "Total Transactions": 1101.0, "Total Customers": 473.0, "Median Spend per Transaction": 7.09, "Median Spend per Customer": 10.21 }, "geometry": { "type": "Point", "coordinates": [ -75.156268, 39.914428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p8m-7t9", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6137 Frankford Ave", "LATITUDE": 40.027118, "LONGITUDE": -75.063023, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 12.0, "POI_CBG": 421010319001.0, "Median Dwell Time": 6.0, "Total Spend": 3153.0, "Total Transactions": 63.0, "Total Customers": 58.0, "Median Spend per Transaction": 30.1, "Median Spend per Customer": 31.84 }, "geometry": { "type": "Point", "coordinates": [ -75.063023, 40.027118 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgg-n3q", "Name": "Wine & Spirits Stores", "Category": "Beer, Wine, and Liquor Stores", "Address": "2913 N 22nd St", "LATITUDE": 39.998975, "LONGITUDE": -75.166581, "DATE_RANGE_START": 2024, "Total Visits": 403.0, "Total Visitors": 330.0, "POI_CBG": 421010173001.0, "Median Dwell Time": 3.0, "Total Spend": 4396.0, "Total Transactions": 125.0, "Total Customers": 83.0, "Median Spend per Transaction": 25.26, "Median Spend per Customer": 42.97 }, "geometry": { "type": "Point", "coordinates": [ -75.166581, 39.998975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22b@628-p8n-cnq", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6400 Bustleton Ave", "LATITUDE": 40.036246, "LONGITUDE": -75.070259, "DATE_RANGE_START": 2024, "Total Visits": 1359.0, "Total Visitors": 983.0, "POI_CBG": 421010313003.0, "Median Dwell Time": 4.0, "Total Spend": 13590.0, "Total Transactions": 736.0, "Total Customers": 421.0, "Median Spend per Transaction": 12.56, "Median Spend per Customer": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.070259, 40.036246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-8jv", "Name": "Newmans Grill", "Category": "Restaurants and Other Eating Places", "Address": "5946 Germantown Ave", "LATITUDE": 40.038927, "LONGITUDE": -75.177558, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010238003.0, "Median Dwell Time": null, "Total Spend": 477.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 16.12, "Median Spend per Customer": 28.58 }, "geometry": { "type": "Point", "coordinates": [ -75.177558, 40.038927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pm3-x89", "Name": "Fountain Porter", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1601 S 10th St", "LATITUDE": 39.929485, "LONGITUDE": -75.161385, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 246.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 14.0, "Total Spend": 1070.0, "Total Transactions": 28.0, "Total Customers": 25.0, "Median Spend per Transaction": 28.6, "Median Spend per Customer": 28.6 }, "geometry": { "type": "Point", "coordinates": [ -75.161385, 39.929485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm4-ct9", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "2014 S Broad St", "LATITUDE": 39.924744, "LONGITUDE": -75.170211, "DATE_RANGE_START": 2024, "Total Visits": 1722.0, "Total Visitors": 875.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 178.0, "Total Spend": 1457.0, "Total Transactions": 83.0, "Total Customers": 54.0, "Median Spend per Transaction": 9.99, "Median Spend per Customer": 18.26 }, "geometry": { "type": "Point", "coordinates": [ -75.170211, 39.924744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pm6-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "10 Snyder Ave", "LATITUDE": 39.921208, "LONGITUDE": -75.146432, "DATE_RANGE_START": 2024, "Total Visits": 915.0, "Total Visitors": 700.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 3.0, "Total Spend": 2276.0, "Total Transactions": 145.0, "Total Customers": 68.0, "Median Spend per Transaction": 12.74, "Median Spend per Customer": 18.56 }, "geometry": { "type": "Point", "coordinates": [ -75.146432, 39.921208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-22g@628-p85-hkf", "Name": "New England Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2417 Welsh Rd", "LATITUDE": 40.072294, "LONGITUDE": -75.031105, "DATE_RANGE_START": 2024, "Total Visits": 321.0, "Total Visitors": 292.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 114.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 14.06, "Median Spend per Customer": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.031105, 40.072294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-pgj-fzz", "Name": "Yummy Pho", "Category": "Restaurants and Other Eating Places", "Address": "2012 N Broad St", "LATITUDE": 39.983786, "LONGITUDE": -75.157223, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 179.0, "POI_CBG": 421010153001.0, "Median Dwell Time": 1.0, "Total Spend": 972.0, "Total Transactions": 57.0, "Total Customers": 41.0, "Median Spend per Transaction": 14.32, "Median Spend per Customer": 14.76 }, "geometry": { "type": "Point", "coordinates": [ -75.157223, 39.983786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-w6k", "Name": "Buddakan", "Category": "Restaurants and Other Eating Places", "Address": "325 Chestnut St", "LATITUDE": 39.949021, "LONGITUDE": -75.147193, "DATE_RANGE_START": 2024, "Total Visits": 3170.0, "Total Visitors": 2184.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 41.0, "Total Spend": 29381.0, "Total Transactions": 170.0, "Total Customers": 147.0, "Median Spend per Transaction": 141.58, "Median Spend per Customer": 158.67 }, "geometry": { "type": "Point", "coordinates": [ -75.147193, 39.949021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pm4-h5z", "Name": "Ristorante Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1915 S Broad St", "LATITUDE": 39.926328, "LONGITUDE": -75.168834, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 32.0, "Total Spend": 2665.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 130.45, "Median Spend per Customer": 130.45 }, "geometry": { "type": "Point", "coordinates": [ -75.168834, 39.926328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p9w-yd9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "11749 Bustleton Ave Ste 14", "LATITUDE": 40.120321, "LONGITUDE": -75.016067, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 4.0, "Total Spend": 928.0, "Total Transactions": 80.0, "Total Customers": 29.0, "Median Spend per Transaction": 9.85, "Median Spend per Customer": 17.86 }, "geometry": { "type": "Point", "coordinates": [ -75.016067, 40.120321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6409 Torresdale Ave # 13", "LATITUDE": 40.02154, "LONGITUDE": -75.051107, "DATE_RANGE_START": 2024, "Total Visits": 691.0, "Total Visitors": 525.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 3.0, "Total Spend": 7307.0, "Total Transactions": 891.0, "Total Customers": 282.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.051107, 40.02154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgf-ghq", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "3914 Lancaster Ave", "LATITUDE": 39.962152, "LONGITUDE": -75.2011, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010108004.0, "Median Dwell Time": 1.0, "Total Spend": 383.0, "Total Transactions": 38.0, "Total Customers": 34.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.2011, 39.962152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p8t-vvf", "Name": "Forever 21", "Category": "Clothing Stores", "Address": "1706 Franklin Mills Cir", "LATITUDE": 40.089371, "LONGITUDE": -74.962099, "DATE_RANGE_START": 2024, "Total Visits": 1930.0, "Total Visitors": 1640.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 8160.0, "Total Transactions": 219.0, "Total Customers": 200.0, "Median Spend per Transaction": 27.8, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -74.962099, 40.089371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9q-hqz", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "9475 Roosevelt Blvd Ste 8", "LATITUDE": 40.079127, "LONGITUDE": -75.027686, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 3.0, "Total Spend": 222.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 64.31, "Median Spend per Customer": 64.31 }, "geometry": { "type": "Point", "coordinates": [ -75.027686, 40.079127 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj8-mp9", "Name": "Crown Chicken & Grill", "Category": "Restaurants and Other Eating Places", "Address": "5106 Frankford Ave", "LATITUDE": 40.021661, "LONGITUDE": -75.079451, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 2.0, "Total Spend": 3019.0, "Total Transactions": 234.0, "Total Customers": 171.0, "Median Spend per Transaction": 11.1, "Median Spend per Customer": 14.18 }, "geometry": { "type": "Point", "coordinates": [ -75.079451, 40.021661 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-223@628-pmb-kzz", "Name": "Perfumology", "Category": "Health and Personal Care Stores", "Address": "25 N 3rd St", "LATITUDE": 39.950987, "LONGITUDE": -75.145262, "DATE_RANGE_START": 2024, "Total Visits": 798.0, "Total Visitors": 377.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 143.0, "Total Spend": 5295.0, "Total Transactions": 33.0, "Total Customers": 26.0, "Median Spend per Transaction": 145.8, "Median Spend per Customer": 145.8 }, "geometry": { "type": "Point", "coordinates": [ -75.145262, 39.950987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj4-wtv", "Name": "Legacy Furniture", "Category": "Furniture Stores", "Address": "432 W Allegheny Ave", "LATITUDE": 39.999295, "LONGITUDE": -75.13741, "DATE_RANGE_START": 2024, "Total Visits": 103.0, "Total Visitors": 88.0, "POI_CBG": 421010176023.0, "Median Dwell Time": 7.0, "Total Spend": 5266.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 2000.0, "Median Spend per Customer": 2000.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13741, 39.999295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dvw-dy9", "Name": "A& A Grocery Store", "Category": "Grocery Stores", "Address": "5030 Haverford Ave", "LATITUDE": 39.96381, "LONGITUDE": -75.221134, "DATE_RANGE_START": 2024, "Total Visits": 103.0, "Total Visitors": 80.0, "POI_CBG": 421010093001.0, "Median Dwell Time": 7.0, "Total Spend": 1141.0, "Total Transactions": 132.0, "Total Customers": 57.0, "Median Spend per Transaction": 5.91, "Median Spend per Customer": 12.72 }, "geometry": { "type": "Point", "coordinates": [ -75.221134, 39.96381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjf-jvz", "Name": "The Fresh Market", "Category": "Grocery Stores", "Address": "8208 Germantown Ave # 18", "LATITUDE": 40.073248, "LONGITUDE": -75.203019, "DATE_RANGE_START": 2024, "Total Visits": 594.0, "Total Visitors": 449.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 7.0, "Total Spend": 31414.0, "Total Transactions": 637.0, "Total Customers": 392.0, "Median Spend per Transaction": 30.93, "Median Spend per Customer": 39.77 }, "geometry": { "type": "Point", "coordinates": [ -75.203019, 40.073248 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm9-wp9", "Name": "Artist & Craftsman Supply", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "307 Market St", "LATITUDE": 39.950359, "LONGITUDE": -75.146021, "DATE_RANGE_START": 2024, "Total Visits": 1195.0, "Total Visitors": 972.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 568.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 33.81, "Median Spend per Customer": 33.81 }, "geometry": { "type": "Point", "coordinates": [ -75.146021, 39.950359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-p8m-v2k", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6429 Sackett St", "LATITUDE": 40.029845, "LONGITUDE": -75.058936, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 13.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 7.0, "Total Spend": 209.0, "Total Transactions": 16.0, "Total Customers": 11.0, "Median Spend per Transaction": 9.2, "Median Spend per Customer": 14.12 }, "geometry": { "type": "Point", "coordinates": [ -75.058936, 40.029845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p74-x5z", "Name": "Cottman Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "7544 Frankford Ave", "LATITUDE": 40.039466, "LONGITUDE": -75.034278, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 151.0, "POI_CBG": 421010331013.0, "Median Dwell Time": 4.0, "Total Spend": 2728.0, "Total Transactions": 197.0, "Total Customers": 66.0, "Median Spend per Transaction": 7.72, "Median Spend per Customer": 27.53 }, "geometry": { "type": "Point", "coordinates": [ -75.034278, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p9w-4sq", "Name": "Suburban Pharmacy", "Category": "Health and Personal Care Stores", "Address": "10875 Bustleton Ave", "LATITUDE": 40.110819, "LONGITUDE": -75.023726, "DATE_RANGE_START": 2024, "Total Visits": 249.0, "Total Visitors": 221.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 2.0, "Total Spend": 1276.0, "Total Transactions": 43.0, "Total Customers": 21.0, "Median Spend per Transaction": 17.81, "Median Spend per Customer": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.023726, 40.110819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-b6k", "Name": "Al Sham Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6738 Bustleton Ave", "LATITUDE": 40.040285, "LONGITUDE": -75.066132, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 136.0, "POI_CBG": 421010313001.0, "Median Dwell Time": 55.0, "Total Spend": 10673.0, "Total Transactions": 312.0, "Total Customers": 146.0, "Median Spend per Transaction": 19.93, "Median Spend per Customer": 22.17 }, "geometry": { "type": "Point", "coordinates": [ -75.066132, 40.040285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pgj-d7q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1420 Cecil B Moore Ave", "LATITUDE": 39.978641, "LONGITUDE": -75.159005, "DATE_RANGE_START": 2024, "Total Visits": 2270.0, "Total Visitors": 832.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 349.0, "Total Spend": 5383.0, "Total Transactions": 796.0, "Total Customers": 394.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 9.47 }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.978641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm9-tn5", "Name": "Cafe Walnut", "Category": "Restaurants and Other Eating Places", "Address": "703 Walnut St", "LATITUDE": 39.948274, "LONGITUDE": -75.152798, "DATE_RANGE_START": 2024, "Total Visits": 1069.0, "Total Visitors": 473.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 192.0, "Total Spend": 1942.0, "Total Transactions": 170.0, "Total Customers": 118.0, "Median Spend per Transaction": 8.43, "Median Spend per Customer": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.152798, 39.948274 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-kj9", "Name": "Mr Wish", "Category": "Restaurants and Other Eating Places", "Address": "2100 Walnut St", "LATITUDE": 39.950618, "LONGITUDE": -75.175914, "DATE_RANGE_START": 2024, "Total Visits": 945.0, "Total Visitors": 706.0, "POI_CBG": 421010008031.0, "Median Dwell Time": 10.0, "Total Spend": 17.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 6.54, "Median Spend per Customer": 6.54 }, "geometry": { "type": "Point", "coordinates": [ -75.175914, 39.950618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p9q-y5f", "Name": "Perkins Restaurant & Bakery", "Category": "Restaurants and Other Eating Places", "Address": "1681 Grant Ave", "LATITUDE": 40.087005, "LONGITUDE": -75.039087, "DATE_RANGE_START": 2024, "Total Visits": 571.0, "Total Visitors": 440.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 26.0, "Total Spend": 1339.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 44.73, "Median Spend per Customer": 52.39 }, "geometry": { "type": "Point", "coordinates": [ -75.039087, 40.087005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23v-222@628-phy-kmk", "Name": "Hong Kong", "Category": "Restaurants and Other Eating Places", "Address": "4901 N 5th St", "LATITUDE": 40.02599, "LONGITUDE": -75.132553, "DATE_RANGE_START": 2024, "Total Visits": 2670.0, "Total Visitors": 2150.0, "POI_CBG": 421010286003.0, "Median Dwell Time": 16.0, "Total Spend": 12760.0, "Total Transactions": 374.0, "Total Customers": 263.0, "Median Spend per Transaction": 22.85, "Median Spend per Customer": 27.92 }, "geometry": { "type": "Point", "coordinates": [ -75.132553, 40.02599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9m-gtv", "Name": "Bi Rite Deli", "Category": "Restaurants and Other Eating Places", "Address": "3220 Red Lion Rd", "LATITUDE": 40.080432, "LONGITUDE": -74.994729, "DATE_RANGE_START": 2024, "Total Visits": 365.0, "Total Visitors": 276.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 5.0, "Total Spend": 94.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 35.68 }, "geometry": { "type": "Point", "coordinates": [ -74.994729, 40.080432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-sbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.011206, "LONGITUDE": -75.113008, "DATE_RANGE_START": 2024, "Total Visits": 487.0, "Total Visitors": 298.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 4.0, "Total Spend": 10416.0, "Total Transactions": 1130.0, "Total Customers": 477.0, "Median Spend per Transaction": 7.77, "Median Spend per Customer": 12.36 }, "geometry": { "type": "Point", "coordinates": [ -75.113008, 40.011206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@63s-dvw-skf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "5601 Vine St # 55", "LATITUDE": 39.966, "LONGITUDE": -75.233618, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 150.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 31.0, "Total Spend": 4481.0, "Total Transactions": 70.0, "Total Customers": 57.0, "Median Spend per Transaction": 38.87, "Median Spend per Customer": 42.75 }, "geometry": { "type": "Point", "coordinates": [ -75.233618, 39.966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7w-pqf", "Name": "Four Seasons Diner", "Category": "Restaurants and Other Eating Places", "Address": "2811 Cottman Ave", "LATITUDE": 40.044117, "LONGITUDE": -75.05302, "DATE_RANGE_START": 2024, "Total Visits": 399.0, "Total Visitors": 255.0, "POI_CBG": 421010332001.0, "Median Dwell Time": 50.0, "Total Spend": 11710.0, "Total Transactions": 254.0, "Total Customers": 211.0, "Median Spend per Transaction": 42.1, "Median Spend per Customer": 47.39 }, "geometry": { "type": "Point", "coordinates": [ -75.05302, 40.044117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-yn5", "Name": "Golden Dragon", "Category": "Restaurants and Other Eating Places", "Address": "4004 W Girard Ave", "LATITUDE": 39.973846, "LONGITUDE": -75.204608, "DATE_RANGE_START": 2024, "Total Visits": 143.0, "Total Visitors": 108.0, "POI_CBG": 421010110003.0, "Median Dwell Time": 1.0, "Total Spend": 338.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 41.25, "Median Spend per Customer": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.204608, 39.973846 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7b-kpv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9212 Frankford Ave", "LATITUDE": 40.055982, "LONGITUDE": -75.005099, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 4.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 4.0, "Total Spend": 782.0, "Total Transactions": 33.0, "Total Customers": 25.0, "Median Spend per Transaction": 21.14, "Median Spend per Customer": 21.93 }, "geometry": { "type": "Point", "coordinates": [ -75.005099, 40.055982 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-kvf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2001 Chestnut St", "LATITUDE": 39.952358, "LONGITUDE": -75.17353, "DATE_RANGE_START": 2024, "Total Visits": 2130.0, "Total Visitors": 1413.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 6.0, "Total Spend": 5675.0, "Total Transactions": 958.0, "Total Customers": 391.0, "Median Spend per Transaction": 4.74, "Median Spend per Customer": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.17353, 39.952358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pnz-p5f", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3670 Richmond St", "LATITUDE": 39.989246, "LONGITUDE": -75.090206, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 29.0, "POI_CBG": 421010379006.0, "Median Dwell Time": 4.0, "Total Spend": 308.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 35.0 }, "geometry": { "type": "Point", "coordinates": [ -75.090206, 39.989246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pft-zpv", "Name": "Beijing Garden", "Category": "Restaurants and Other Eating Places", "Address": "5911 Ridge Ave", "LATITUDE": 40.030653, "LONGITUDE": -75.211268, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 150.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 3.0, "Total Spend": 220.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 20.38, "Median Spend per Customer": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.211268, 40.030653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-223@628-pmb-7bk", "Name": "Attico Rooftop Lounge", "Category": "Restaurants and Other Eating Places", "Address": "219 S Broad St", "LATITUDE": 39.948632, "LONGITUDE": -75.164198, "DATE_RANGE_START": 2024, "Total Visits": 5537.0, "Total Visitors": 3636.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 16.0, "Total Spend": 4429.0, "Total Transactions": 66.0, "Total Customers": 59.0, "Median Spend per Transaction": 41.5, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.164198, 39.948632 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-ph8-rkz", "Name": "Applebee's", "Category": "Restaurants and Other Eating Places", "Address": "7650 City Ave", "LATITUDE": 39.977513, "LONGITUDE": -75.272635, "DATE_RANGE_START": 2024, "Total Visits": 233.0, "Total Visitors": 171.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 43.0, "Total Spend": 1817.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 44.99, "Median Spend per Customer": 41.24 }, "geometry": { "type": "Point", "coordinates": [ -75.272635, 39.977513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-pvz", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2620 Cottman Ave", "LATITUDE": 40.044584, "LONGITUDE": -75.055417, "DATE_RANGE_START": 2024, "Total Visits": 417.0, "Total Visitors": 228.0, "POI_CBG": 421010314021.0, "Median Dwell Time": 18.0, "Total Spend": 2768.0, "Total Transactions": 84.0, "Total Customers": 50.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 24.82 }, "geometry": { "type": "Point", "coordinates": [ -75.055417, 40.044584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7kf", "Name": "Harbor Freight Tools", "Category": "Building Material and Supplies Dealers", "Address": "151 Franklin Mills Blvd", "LATITUDE": 40.089903, "LONGITUDE": -74.966627, "DATE_RANGE_START": 2024, "Total Visits": 537.0, "Total Visitors": 474.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 7.0, "Total Spend": 34412.0, "Total Transactions": 583.0, "Total Customers": 465.0, "Median Spend per Transaction": 30.2, "Median Spend per Customer": 37.78 }, "geometry": { "type": "Point", "coordinates": [ -74.966627, 40.089903 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-pfx-kmk", "Name": "Boostin' Bowls", "Category": "Restaurants and Other Eating Places", "Address": "100 Levering St", "LATITUDE": 40.026143, "LONGITUDE": -75.224636, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 99.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 1.0, "Total Spend": 4632.0, "Total Transactions": 275.0, "Total Customers": 192.0, "Median Spend per Transaction": 14.91, "Median Spend per Customer": 18.05 }, "geometry": { "type": "Point", "coordinates": [ -75.224636, 40.026143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7b-vmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3218 Willits Rd", "LATITUDE": 40.056893, "LONGITUDE": -75.014118, "DATE_RANGE_START": 2024, "Total Visits": 719.0, "Total Visitors": 427.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 6.0, "Total Spend": 1204.0, "Total Transactions": 186.0, "Total Customers": 72.0, "Median Spend per Transaction": 5.49, "Median Spend per Customer": 7.69 }, "geometry": { "type": "Point", "coordinates": [ -75.014118, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-223@628-p8d-yd9", "Name": "Tavares Grocery", "Category": "Grocery Stores", "Address": "5200 Burton St", "LATITUDE": 40.015008, "LONGITUDE": -75.070982, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010298005.0, "Median Dwell Time": null, "Total Spend": 201.0, "Total Transactions": 22.0, "Total Customers": 16.0, "Median Spend per Transaction": 6.94, "Median Spend per Customer": 12.09 }, "geometry": { "type": "Point", "coordinates": [ -75.070982, 40.015008 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmf-t9z", "Name": "Giorgio On Pine", "Category": "Restaurants and Other Eating Places", "Address": "1328 Pine St", "LATITUDE": 39.94532, "LONGITUDE": -75.164064, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 23.0, "Total Spend": 7466.0, "Total Transactions": 88.0, "Total Customers": 87.0, "Median Spend per Transaction": 76.68, "Median Spend per Customer": 75.53 }, "geometry": { "type": "Point", "coordinates": [ -75.164064, 39.94532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pgj-8qf", "Name": "Delgado Grocery", "Category": "Grocery Stores", "Address": "2368 N Cleveland St", "LATITUDE": 39.990198, "LONGITUDE": -75.162651, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 42.0, "POI_CBG": 421010167013.0, "Median Dwell Time": 52.0, "Total Spend": 50.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.162651, 39.990198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgb-h89", "Name": "Franklin Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "1830 Callowhill St", "LATITUDE": 39.960337, "LONGITUDE": -75.169538, "DATE_RANGE_START": 2024, "Total Visits": 225.0, "Total Visitors": 195.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 5.0, "Total Spend": 4722.0, "Total Transactions": 186.0, "Total Customers": 118.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.169538, 39.960337 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm6-w49", "Name": "777 Supermarket", "Category": "Grocery Stores", "Address": "2849 Morris St", "LATITUDE": 39.9327, "LONGITUDE": -75.19274, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 84.0, "POI_CBG": 421010033005.0, "Median Dwell Time": 2.0, "Total Spend": 1167.0, "Total Transactions": 59.0, "Total Customers": 32.0, "Median Spend per Transaction": 10.92, "Median Spend per Customer": 18.33 }, "geometry": { "type": "Point", "coordinates": [ -75.19274, 39.9327 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-p35", "Name": "Jhoandra Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3661 N 6th St", "LATITUDE": 40.007461, "LONGITUDE": -75.138722, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 84.0, "POI_CBG": 421010199001.0, "Median Dwell Time": 296.0, "Total Spend": 408.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 16.64, "Median Spend per Customer": 27.04 }, "geometry": { "type": "Point", "coordinates": [ -75.138722, 40.007461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@628-pmd-vfz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2201 Walnut St", "LATITUDE": 39.95129, "LONGITUDE": -75.177478, "DATE_RANGE_START": 2024, "Total Visits": 50.0, "Total Visitors": 41.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 3.0, "Total Spend": 629.0, "Total Transactions": 26.0, "Total Customers": 22.0, "Median Spend per Transaction": 19.52, "Median Spend per Customer": 22.26 }, "geometry": { "type": "Point", "coordinates": [ -75.177478, 39.95129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-4d9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "3200 Richmond St", "LATITUDE": 39.98332, "LONGITUDE": -75.101162, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 17.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 2.0, "Total Spend": 583.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 15.15, "Median Spend per Customer": 23.71 }, "geometry": { "type": "Point", "coordinates": [ -75.101162, 39.98332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj9-54v", "Name": "Wilson's Market", "Category": "Grocery Stores", "Address": "1337 W Olney Ave", "LATITUDE": 40.039048, "LONGITUDE": -75.1438, "DATE_RANGE_START": 2024, "Total Visits": 208.0, "Total Visitors": 159.0, "POI_CBG": 421010282003.0, "Median Dwell Time": 5.0, "Total Spend": 850.0, "Total Transactions": 57.0, "Total Customers": 32.0, "Median Spend per Transaction": 11.64, "Median Spend per Customer": 13.07 }, "geometry": { "type": "Point", "coordinates": [ -75.1438, 40.039048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-z4v", "Name": "Beer Hut", "Category": "Beer, Wine, and Liquor Stores", "Address": "9911 Northeast Ave", "LATITUDE": 40.100508, "LONGITUDE": -75.028029, "DATE_RANGE_START": 2024, "Total Visits": 207.0, "Total Visitors": 191.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 1.0, "Total Spend": 92.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.95, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.028029, 40.100508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-p87-7yv", "Name": "Chubby's Fox Chase Deli", "Category": "Restaurants and Other Eating Places", "Address": "537 Hoffnagle St", "LATITUDE": 40.079605, "LONGITUDE": -75.077384, "DATE_RANGE_START": 2024, "Total Visits": 130.0, "Total Visitors": 59.0, "POI_CBG": 421010341006.0, "Median Dwell Time": 3.0, "Total Spend": 1546.0, "Total Transactions": 61.0, "Total Customers": 49.0, "Median Spend per Transaction": 23.61, "Median Spend per Customer": 25.11 }, "geometry": { "type": "Point", "coordinates": [ -75.077384, 40.079605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg9-ty9", "Name": "Milano Di Rouge", "Category": "Clothing Stores", "Address": "1509 Spring Garden St", "LATITUDE": 39.962944, "LONGITUDE": -75.163384, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 170.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 5.0, "Total Spend": 4821.0, "Total Transactions": 53.0, "Total Customers": 51.0, "Median Spend per Transaction": 80.48, "Median Spend per Customer": 83.36 }, "geometry": { "type": "Point", "coordinates": [ -75.163384, 39.962944 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-kpv", "Name": "Eye Encounters", "Category": "Health and Personal Care Stores", "Address": "1925 Chestnut St", "LATITUDE": 39.952134, "LONGITUDE": -75.172814, "DATE_RANGE_START": 2024, "Total Visits": 4467.0, "Total Visitors": 2948.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 2549.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 164.5, "Median Spend per Customer": 180.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172814, 39.952134 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-zvf", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "2906 N Broad St # 08", "LATITUDE": 39.997217, "LONGITUDE": -75.154386, "DATE_RANGE_START": 2024, "Total Visits": 92.0, "Total Visitors": 71.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 47.0, "Total Spend": 1205.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 59.46, "Median Spend per Customer": 65.55 }, "geometry": { "type": "Point", "coordinates": [ -75.154386, 39.997217 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pp2-qzz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "3600 Aramingo Ave", "LATITUDE": 39.993907, "LONGITUDE": -75.096856, "DATE_RANGE_START": 2024, "Total Visits": 540.0, "Total Visitors": 413.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 5.0, "Total Spend": 439.0, "Total Transactions": 21.0, "Total Customers": 20.0, "Median Spend per Transaction": 16.9, "Median Spend per Customer": 16.37 }, "geometry": { "type": "Point", "coordinates": [ -75.096856, 39.993907 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-cnq", "Name": "Vape O2", "Category": "Other Miscellaneous Store Retailers", "Address": "411 E Girard Ave", "LATITUDE": 39.970583, "LONGITUDE": -75.130203, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 134.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 4.0, "Total Spend": 1812.0, "Total Transactions": 41.0, "Total Customers": 22.0, "Median Spend per Transaction": 42.67, "Median Spend per Customer": 56.99 }, "geometry": { "type": "Point", "coordinates": [ -75.130203, 39.970583 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p8m-v2k", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "6406 Sackett St", "LATITUDE": 40.029454, "LONGITUDE": -75.058288, "DATE_RANGE_START": 2024, "Total Visits": 315.0, "Total Visitors": 226.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 7.0, "Total Spend": 1318.0, "Total Transactions": 22.0, "Total Customers": 21.0, "Median Spend per Transaction": 48.59, "Median Spend per Customer": 39.41 }, "geometry": { "type": "Point", "coordinates": [ -75.058288, 40.029454 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj2-sh5", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "700 E Hunting Park Ave", "LATITUDE": 40.012182, "LONGITUDE": -75.115173, "DATE_RANGE_START": 2024, "Total Visits": 159.0, "Total Visitors": 153.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 5.0, "Total Spend": 4661.0, "Total Transactions": 101.0, "Total Customers": 82.0, "Median Spend per Transaction": 33.96, "Median Spend per Customer": 35.7 }, "geometry": { "type": "Point", "coordinates": [ -75.115173, 40.012182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-p74-z75", "Name": "Seafood Bay Inc", "Category": "Restaurants and Other Eating Places", "Address": "8006 Frankford Ave", "LATITUDE": 40.041659, "LONGITUDE": -75.028001, "DATE_RANGE_START": 2024, "Total Visits": 204.0, "Total Visitors": 133.0, "POI_CBG": 421010331022.0, "Median Dwell Time": 2.0, "Total Spend": 148.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.028001, 40.041659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-226@628-pmb-6x5", "Name": "Goldie", "Category": "Restaurants and Other Eating Places", "Address": "1911 Sansom St", "LATITUDE": 39.950344, "LONGITUDE": -75.166847, "DATE_RANGE_START": 2024, "Total Visits": 255.0, "Total Visitors": 221.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 20.0, "Total Spend": 386.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 18.45, "Median Spend per Customer": 22.52 }, "geometry": { "type": "Point", "coordinates": [ -75.166847, 39.950344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-jd9", "Name": "CAVA", "Category": "Restaurants and Other Eating Places", "Address": "1713 Chestnut St", "LATITUDE": 39.951854, "LONGITUDE": -75.169241, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 32.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 21495.0, "Total Transactions": 1257.0, "Total Customers": 985.0, "Median Spend per Transaction": 15.39, "Median Spend per Customer": 16.36 }, "geometry": { "type": "Point", "coordinates": [ -75.169241, 39.951854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pzn-zfz", "Name": "Domenic's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "14258 Bustleton Ave", "LATITUDE": 40.132751, "LONGITUDE": -75.011958, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 112.0, "POI_CBG": 421010365012.0, "Median Dwell Time": 18.0, "Total Spend": 181.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 33.45, "Median Spend per Customer": 47.53 }, "geometry": { "type": "Point", "coordinates": [ -75.011958, 40.132751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgb-gp9", "Name": "Umai Umai", "Category": "Restaurants and Other Eating Places", "Address": "533 N 22nd St", "LATITUDE": 39.964683, "LONGITUDE": -75.174102, "DATE_RANGE_START": 2024, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 3.0, "Total Spend": 262.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 48.89, "Median Spend per Customer": 48.89 }, "geometry": { "type": "Point", "coordinates": [ -75.174102, 39.964683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg2-pqf", "Name": "Hong Kong Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "6749 Germantown Ave", "LATITUDE": 40.05323, "LONGITUDE": -75.185876, "DATE_RANGE_START": 2024, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010253003.0, "Median Dwell Time": 3.0, "Total Spend": 128.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 13.3, "Median Spend per Customer": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -75.185876, 40.05323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-q4v", "Name": "Los Potrillos", "Category": "Restaurants and Other Eating Places", "Address": "4200 G St", "LATITUDE": 40.012389, "LONGITUDE": -75.11245, "DATE_RANGE_START": 2024, "Total Visits": 226.0, "Total Visitors": 184.0, "POI_CBG": 421010289012.0, "Median Dwell Time": 3.0, "Total Spend": 72.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 18.36, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.11245, 40.012389 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-v4v", "Name": "CrayTaste", "Category": "Restaurants and Other Eating Places", "Address": "118 Market St # 22", "LATITUDE": 39.949612, "LONGITUDE": -75.143186, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 3.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 2.0, "Total Spend": 394.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 56.16, "Median Spend per Customer": 56.16 }, "geometry": { "type": "Point", "coordinates": [ -75.143186, 39.949612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-py9", "Name": "OfficeMax", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "7231 Roosevelt Blvd", "LATITUDE": 40.043406, "LONGITUDE": -75.054428, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010315022.0, "Median Dwell Time": 9.0, "Total Spend": 6119.0, "Total Transactions": 321.0, "Total Customers": 217.0, "Median Spend per Transaction": 3.52, "Median Spend per Customer": 8.64 }, "geometry": { "type": "Point", "coordinates": [ -75.054428, 40.043406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p8j-9fz", "Name": "Pizza City", "Category": "Restaurants and Other Eating Places", "Address": "7129 Frankford Ave", "LATITUDE": 40.035114, "LONGITUDE": -75.043621, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 82.0, "POI_CBG": 421010326001.0, "Median Dwell Time": null, "Total Spend": 3571.0, "Total Transactions": 130.0, "Total Customers": 99.0, "Median Spend per Transaction": 26.9, "Median Spend per Customer": 28.48 }, "geometry": { "type": "Point", "coordinates": [ -75.043621, 40.035114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg4-f4v", "Name": "Quality Donuts", "Category": "Restaurants and Other Eating Places", "Address": "101 W Chelten Ave", "LATITUDE": 40.034201, "LONGITUDE": -75.176939, "DATE_RANGE_START": 2024, "Total Visits": 205.0, "Total Visitors": 172.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 11.0, "Total Spend": 40.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 7.06, "Median Spend per Customer": 7.06 }, "geometry": { "type": "Point", "coordinates": [ -75.176939, 40.034201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-h5z", "Name": "Pizzeria Pesto", "Category": "Restaurants and Other Eating Places", "Address": "1925 S Broad St", "LATITUDE": 39.926114, "LONGITUDE": -75.168982, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 23.0, "Total Spend": 1458.0, "Total Transactions": 61.0, "Total Customers": 39.0, "Median Spend per Transaction": 16.47, "Median Spend per Customer": 24.49 }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.926114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfy-2ff", "Name": "Tasty Twisters Bakery", "Category": "Restaurants and Other Eating Places", "Address": "5002 Umbria St", "LATITUDE": 40.035673, "LONGITUDE": -75.236122, "DATE_RANGE_START": 2024, "Total Visits": 124.0, "Total Visitors": 124.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 5.0, "Total Spend": 313.0, "Total Transactions": 39.0, "Total Customers": 34.0, "Median Spend per Transaction": 6.76, "Median Spend per Customer": 7.93 }, "geometry": { "type": "Point", "coordinates": [ -75.236122, 40.035673 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj9-4d9", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5715 N Broad St", "LATITUDE": 40.040308, "LONGITUDE": -75.143944, "DATE_RANGE_START": 2024, "Total Visits": 479.0, "Total Visitors": 336.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 12.0, "Total Spend": 193.0, "Total Transactions": 16.0, "Total Customers": 13.0, "Median Spend per Transaction": 5.63, "Median Spend per Customer": 9.12 }, "geometry": { "type": "Point", "coordinates": [ -75.143944, 40.040308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p7v-mrk", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "7350 Oxford Ave", "LATITUDE": 40.06269, "LONGITUDE": -75.083714, "DATE_RANGE_START": 2024, "Total Visits": 951.0, "Total Visitors": 741.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 9.0, "Total Spend": 1457.0, "Total Transactions": 45.0, "Total Customers": 42.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 22.13 }, "geometry": { "type": "Point", "coordinates": [ -75.083714, 40.06269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-sdv", "Name": "P S & Co", "Category": "Specialty Food Stores", "Address": "1706 Locust St", "LATITUDE": 39.94866, "LONGITUDE": -75.16974, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 420.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 27.0, "Total Spend": 625.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 23.58, "Median Spend per Customer": 23.58 }, "geometry": { "type": "Point", "coordinates": [ -75.16974, 39.94866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phc-xbk", "Name": "Wynnecare Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2230 Bryn Mawr Ave", "LATITUDE": 39.991173, "LONGITUDE": -75.226907, "DATE_RANGE_START": 2024, "Total Visits": 1244.0, "Total Visitors": 1028.0, "POI_CBG": 421010119004.0, "Median Dwell Time": 8.0, "Total Spend": 264.0, "Total Transactions": 13.0, "Total Customers": 5.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.226907, 39.991173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pgb-d7q", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2000 Hamilton St", "LATITUDE": 39.962304, "LONGITUDE": -75.173026, "DATE_RANGE_START": 2024, "Total Visits": 292.0, "Total Visitors": 162.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 4.0, "Total Spend": 9235.0, "Total Transactions": 764.0, "Total Customers": 548.0, "Median Spend per Transaction": 9.3, "Median Spend per Customer": 11.38 }, "geometry": { "type": "Point", "coordinates": [ -75.173026, 39.962304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pgh-h3q", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2800 Fox St", "LATITUDE": 40.008821, "LONGITUDE": -75.175673, "DATE_RANGE_START": 2024, "Total Visits": 945.0, "Total Visitors": 681.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 6.0, "Total Spend": 1383.0, "Total Transactions": 103.0, "Total Customers": 82.0, "Median Spend per Transaction": 9.94, "Median Spend per Customer": 11.79 }, "geometry": { "type": "Point", "coordinates": [ -75.175673, 40.008821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pm9-yd9", "Name": "Brickbat Books", "Category": "Used Merchandise Stores", "Address": "709 S 4th St", "LATITUDE": 39.940225, "LONGITUDE": -75.149308, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 31.0, "Total Spend": 1553.0, "Total Transactions": 51.0, "Total Customers": 47.0, "Median Spend per Transaction": 21.55, "Median Spend per Customer": 23.17 }, "geometry": { "type": "Point", "coordinates": [ -75.149308, 39.940225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-rhq", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7600 City Ave Ste 1", "LATITUDE": 39.978964, "LONGITUDE": -75.271417, "DATE_RANGE_START": 2024, "Total Visits": 886.0, "Total Visitors": 799.0, "POI_CBG": 421010098023.0, "Median Dwell Time": 5.0, "Total Spend": 2249.0, "Total Transactions": 122.0, "Total Customers": 109.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 14.98 }, "geometry": { "type": "Point", "coordinates": [ -75.271417, 39.978964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pfz-bzf", "Name": "The Little Apple", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "4361 Main St", "LATITUDE": 40.025728, "LONGITUDE": -75.223969, "DATE_RANGE_START": 2024, "Total Visits": 75.0, "Total Visitors": 75.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 23.0, "Total Spend": 1762.0, "Total Transactions": 57.0, "Total Customers": 57.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 30.24 }, "geometry": { "type": "Point", "coordinates": [ -75.223969, 40.025728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfz-bzf", "Name": "Jake's & Cooper's Wine Bar & Wine Shop", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "4365 Main St", "LATITUDE": 40.02595, "LONGITUDE": -75.224164, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 170.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 5.0, "Total Spend": 7321.0, "Total Transactions": 115.0, "Total Customers": 92.0, "Median Spend per Transaction": 50.36, "Median Spend per Customer": 57.42 }, "geometry": { "type": "Point", "coordinates": [ -75.224164, 40.02595 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm4-rhq", "Name": "Moonshine Philly", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1825 E Moyamensing Ave", "LATITUDE": 39.925012, "LONGITUDE": -75.151601, "DATE_RANGE_START": 2024, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010027024.0, "Median Dwell Time": null, "Total Spend": 4728.0, "Total Transactions": 84.0, "Total Customers": 70.0, "Median Spend per Transaction": 38.24, "Median Spend per Customer": 50.73 }, "geometry": { "type": "Point", "coordinates": [ -75.151601, 39.925012 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-jn5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7700 Crittenden St", "LATITUDE": 40.072443, "LONGITUDE": -75.194946, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010257001.0, "Median Dwell Time": 5.0, "Total Spend": 9029.0, "Total Transactions": 437.0, "Total Customers": 241.0, "Median Spend per Transaction": 14.53, "Median Spend per Customer": 21.9 }, "geometry": { "type": "Point", "coordinates": [ -75.194946, 40.072443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-pm3-t5f", "Name": "Stateside", "Category": "Restaurants and Other Eating Places", "Address": "1536 E Passyunk Ave", "LATITUDE": 39.930239, "LONGITUDE": -75.163225, "DATE_RANGE_START": 2024, "Total Visits": 96.0, "Total Visitors": 96.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 1.0, "Total Spend": 5829.0, "Total Transactions": 111.0, "Total Customers": 96.0, "Median Spend per Transaction": 40.16, "Median Spend per Customer": 44.04 }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.930239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pj2-n3q", "Name": "Pete's Clown House", "Category": "Restaurants and Other Eating Places", "Address": "3878 Frankford Ave", "LATITUDE": 40.003738, "LONGITUDE": -75.094646, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 122.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 9.0, "Total Spend": 1415.0, "Total Transactions": 46.0, "Total Customers": 39.0, "Median Spend per Transaction": 28.53, "Median Spend per Customer": 28.34 }, "geometry": { "type": "Point", "coordinates": [ -75.094646, 40.003738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@63s-dw4-rzf", "Name": "Bud & Marilyn's", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895166, "LONGITUDE": -75.227974, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 21.0, "Total Spend": 13914.0, "Total Transactions": 232.0, "Total Customers": 221.0, "Median Spend per Transaction": 46.34, "Median Spend per Customer": 46.34 }, "geometry": { "type": "Point", "coordinates": [ -75.227974, 39.895166 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pfw-6p9", "Name": "Exxon Mobil", "Category": "Gasoline Stations", "Address": "3281 Fox St", "LATITUDE": 40.01419, "LONGITUDE": -75.177685, "DATE_RANGE_START": 2024, "Total Visits": 316.0, "Total Visitors": 295.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 4.0, "Total Spend": 3522.0, "Total Transactions": 121.0, "Total Customers": 92.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 31.4 }, "geometry": { "type": "Point", "coordinates": [ -75.177685, 40.01419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p9k-k75", "Name": "Ross Stores", "Category": "Department Stores", "Address": "9906 Roosevelt Blvd", "LATITUDE": 40.094474, "LONGITUDE": -75.018213, "DATE_RANGE_START": 2024, "Total Visits": 745.0, "Total Visitors": 745.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 6.0, "Total Spend": 8621.0, "Total Transactions": 176.0, "Total Customers": 154.0, "Median Spend per Transaction": 38.87, "Median Spend per Customer": 39.99 }, "geometry": { "type": "Point", "coordinates": [ -75.018213, 40.094474 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-rkz", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.028739, "LONGITUDE": -75.099173, "DATE_RANGE_START": 2024, "Total Visits": 806.0, "Total Visitors": 669.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 48.0, "Total Spend": 53499.0, "Total Transactions": 2160.0, "Total Customers": 1833.0, "Median Spend per Transaction": 16.54, "Median Spend per Customer": 18.88 }, "geometry": { "type": "Point", "coordinates": [ -75.099173, 40.028739 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvx-3dv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "801 N 48th St", "LATITUDE": 39.967246, "LONGITUDE": -75.215954, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 11.0, "POI_CBG": 421010105001.0, "Median Dwell Time": 8.0, "Total Spend": 896.0, "Total Transactions": 51.0, "Total Customers": 34.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 19.26 }, "geometry": { "type": "Point", "coordinates": [ -75.215954, 39.967246 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9q-zfz", "Name": "Applebee's", "Category": "Restaurants and Other Eating Places", "Address": "9142 Roosevelt Blvd", "LATITUDE": 40.076701, "LONGITUDE": -75.033636, "DATE_RANGE_START": 2024, "Total Visits": 685.0, "Total Visitors": 661.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 56.0, "Total Spend": 3628.0, "Total Transactions": 53.0, "Total Customers": 53.0, "Median Spend per Transaction": 75.0, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.033636, 40.076701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-227@628-pft-z9f", "Name": "PrimoHoagies", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave", "LATITUDE": 40.032496, "LONGITUDE": -75.21442, "DATE_RANGE_START": 2024, "Total Visits": 986.0, "Total Visitors": 582.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 6.0, "Total Spend": 2043.0, "Total Transactions": 83.0, "Total Customers": 71.0, "Median Spend per Transaction": 16.85, "Median Spend per Customer": 17.65 }, "geometry": { "type": "Point", "coordinates": [ -75.21442, 40.032496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-ph5-py9", "Name": "Papp's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "6001 Hazelhurst St", "LATITUDE": 39.982659, "LONGITUDE": -75.241682, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 1.0, "Total Spend": 117.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 12.68, "Median Spend per Customer": 14.58 }, "geometry": { "type": "Point", "coordinates": [ -75.241682, 39.982659 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pp5-rff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "321 E Allegheny Ave # 25", "LATITUDE": 39.998161, "LONGITUDE": -75.124518, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421010177025.0, "Median Dwell Time": 9.0, "Total Spend": 84.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 32.04, "Median Spend per Customer": 32.04 }, "geometry": { "type": "Point", "coordinates": [ -75.124518, 39.998161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pgb-2hq", "Name": "Premium Steap", "Category": "Restaurants and Other Eating Places", "Address": "211 N 13th St Ste 304", "LATITUDE": 39.956535, "LONGITUDE": -75.160142, "DATE_RANGE_START": 2024, "Total Visits": 1074.0, "Total Visitors": 808.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 14.0, "Total Spend": 288.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 47.6, "Median Spend per Customer": 56.76 }, "geometry": { "type": "Point", "coordinates": [ -75.160142, 39.956535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmb-ty9", "Name": "Franklin Ice Cream Bar", "Category": "Restaurants and Other Eating Places", "Address": "112 Market St", "LATITUDE": 39.949566, "LONGITUDE": -75.142866, "DATE_RANGE_START": 2024, "Total Visits": 225.0, "Total Visitors": 178.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 686.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142866, 39.949566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-p35", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "501 W Lehigh Ave", "LATITUDE": 39.992372, "LONGITUDE": -75.140437, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 3.0, "Total Spend": 1316.0, "Total Transactions": 61.0, "Total Customers": 50.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -75.140437, 39.992372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg3-vcq", "Name": "Tavares Grocery", "Category": "Grocery Stores", "Address": "364 E Chelten Ave", "LATITUDE": 40.040293, "LONGITUDE": -75.169911, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 183.0, "POI_CBG": 421010247005.0, "Median Dwell Time": 5.0, "Total Spend": 52.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 5.98, "Median Spend per Customer": 5.98 }, "geometry": { "type": "Point", "coordinates": [ -75.169911, 40.040293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pjf-kvf", "Name": "Tailored Home", "Category": "Home Furnishings Stores", "Address": "8528 Germantown Ave", "LATITUDE": 40.076272, "LONGITUDE": -75.207332, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 340.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 8.0, "Total Spend": 100.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 38.07 }, "geometry": { "type": "Point", "coordinates": [ -75.207332, 40.076272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p75-9pv", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8445 Frankford Ave Ste C", "LATITUDE": 40.043786, "LONGITUDE": -75.017617, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010349004.0, "Median Dwell Time": 4.0, "Total Spend": 468.0, "Total Transactions": 24.0, "Total Customers": 17.0, "Median Spend per Transaction": 13.08, "Median Spend per Customer": 21.55 }, "geometry": { "type": "Point", "coordinates": [ -75.017617, 40.043786 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmf-7wk", "Name": "The Board & Brew", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3200 Chestnut St", "LATITUDE": 39.953697, "LONGITUDE": -75.189364, "DATE_RANGE_START": 2024, "Total Visits": 687.0, "Total Visitors": 452.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 10.0, "Total Spend": 669.0, "Total Transactions": 18.0, "Total Customers": 17.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 29.6 }, "geometry": { "type": "Point", "coordinates": [ -75.189364, 39.953697 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm9-vcq", "Name": "Talula's Daily", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "208 W Washington Sq", "LATITUDE": 39.947344, "LONGITUDE": -75.153493, "DATE_RANGE_START": 2024, "Total Visits": 764.0, "Total Visitors": 558.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 9.0, "Total Spend": 2900.0, "Total Transactions": 167.0, "Total Customers": 108.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 39.947344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgj-cqz", "Name": "Tropical Smoothie Café", "Category": "Restaurants and Other Eating Places", "Address": "1600 N Broad St Ste 4", "LATITUDE": 39.977828, "LONGITUDE": -75.158485, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 7.0, "Total Spend": 12704.0, "Total Transactions": 986.0, "Total Customers": 586.0, "Median Spend per Transaction": 9.67, "Median Spend per Customer": 13.8 }, "geometry": { "type": "Point", "coordinates": [ -75.158485, 39.977828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phq-v75", "Name": "In & Out Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7600 Ogontz Ave", "LATITUDE": 40.070058, "LONGITUDE": -75.157539, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 82.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 26.0, "Total Spend": 7382.0, "Total Transactions": 295.0, "Total Customers": 219.0, "Median Spend per Transaction": 21.45, "Median Spend per Customer": 28.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157539, 40.070058 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phz-nnq", "Name": "El Coqui Panaderia", "Category": "Restaurants and Other Eating Places", "Address": "3528 I St", "LATITUDE": 40.00269, "LONGITUDE": -75.111221, "DATE_RANGE_START": 2024, "Total Visits": 204.0, "Total Visitors": 178.0, "POI_CBG": 421010192002.0, "Median Dwell Time": 10.0, "Total Spend": 6406.0, "Total Transactions": 300.0, "Total Customers": 211.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 23.1 }, "geometry": { "type": "Point", "coordinates": [ -75.111221, 40.00269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvw-hwk", "Name": "Quick Stop Deli", "Category": "Grocery Stores", "Address": "4832 Spruce St", "LATITUDE": 39.953566, "LONGITUDE": -75.219295, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 125.0, "POI_CBG": 421010086011.0, "Median Dwell Time": 7.0, "Total Spend": 47.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219295, 39.953566 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnw-k4v", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "22 W Girard Ave", "LATITUDE": 39.968335, "LONGITUDE": -75.135692, "DATE_RANGE_START": 2024, "Total Visits": 903.0, "Total Visitors": 756.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 3.0, "Total Spend": 18194.0, "Total Transactions": 1522.0, "Total Customers": 1030.0, "Median Spend per Transaction": 10.03, "Median Spend per Customer": 12.81 }, "geometry": { "type": "Point", "coordinates": [ -75.135692, 39.968335 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-php-9j9", "Name": "Omega Optical", "Category": "Health and Personal Care Stores", "Address": "3212 W Cheltenham Ave", "LATITUDE": 40.081963, "LONGITUDE": -75.17243, "DATE_RANGE_START": 2024, "Total Visits": 220.0, "Total Visitors": 162.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 79.0, "Total Spend": 1205.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 457.5, "Median Spend per Customer": 457.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17243, 40.081963 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7y-dn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6429 Rising Sun Ave", "LATITUDE": 40.050261, "LONGITUDE": -75.094573, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 5.0, "POI_CBG": 421010306003.0, "Median Dwell Time": 7.0, "Total Spend": 510.0, "Total Transactions": 24.0, "Total Customers": 14.0, "Median Spend per Transaction": 14.5, "Median Spend per Customer": 37.91 }, "geometry": { "type": "Point", "coordinates": [ -75.094573, 40.050261 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-j9z", "Name": "Loco Dollar", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "201 E Allegheny Ave", "LATITUDE": 39.998868, "LONGITUDE": -75.126992, "DATE_RANGE_START": 2024, "Total Visits": 635.0, "Total Visitors": 348.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 8.0, "Total Spend": 1242.0, "Total Transactions": 58.0, "Total Customers": 43.0, "Median Spend per Transaction": 15.65, "Median Spend per Customer": 23.97 }, "geometry": { "type": "Point", "coordinates": [ -75.126992, 39.998868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8j-bx5", "Name": "Penn Hardware", "Category": "Building Material and Supplies Dealers", "Address": "7404 Frankford Ave", "LATITUDE": 40.038136, "LONGITUDE": -75.037844, "DATE_RANGE_START": 2024, "Total Visits": 96.0, "Total Visitors": 92.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 5.0, "Total Spend": 888.0, "Total Transactions": 38.0, "Total Customers": 37.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 20.67 }, "geometry": { "type": "Point", "coordinates": [ -75.037844, 40.038136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pjf-kvf", "Name": "Greene Street", "Category": "Clothing Stores", "Address": "8524 Germantown Ave", "LATITUDE": 40.076299, "LONGITUDE": -75.207197, "DATE_RANGE_START": 2024, "Total Visits": 357.0, "Total Visitors": 340.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 8.0, "Total Spend": 321.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 121.93, "Median Spend per Customer": 121.93 }, "geometry": { "type": "Point", "coordinates": [ -75.207197, 40.076299 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-223@628-pp5-2p9", "Name": "Izlas Latin Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "2725 N American St", "LATITUDE": 39.992269, "LONGITUDE": -75.135579, "DATE_RANGE_START": 2024, "Total Visits": 699.0, "Total Visitors": 441.0, "POI_CBG": 421010176015.0, "Median Dwell Time": 8.0, "Total Spend": 4140.0, "Total Transactions": 62.0, "Total Customers": 53.0, "Median Spend per Transaction": 50.58, "Median Spend per Customer": 79.7 }, "geometry": { "type": "Point", "coordinates": [ -75.135579, 39.992269 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pnx-bhq", "Name": "Tommy's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "465 E Girard Ave", "LATITUDE": 39.971034, "LONGITUDE": -75.128711, "DATE_RANGE_START": 2024, "Total Visits": 438.0, "Total Visitors": 246.0, "POI_CBG": 421010158003.0, "Median Dwell Time": 56.0, "Total Spend": 722.0, "Total Transactions": 39.0, "Total Customers": 28.0, "Median Spend per Transaction": 17.08, "Median Spend per Customer": 18.68 }, "geometry": { "type": "Point", "coordinates": [ -75.128711, 39.971034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phm-89z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6601 N Broad St", "LATITUDE": 40.053968, "LONGITUDE": -75.140772, "DATE_RANGE_START": 2024, "Total Visits": 749.0, "Total Visitors": 525.0, "POI_CBG": 421010268002.0, "Median Dwell Time": 7.0, "Total Spend": 1573.0, "Total Transactions": 112.0, "Total Customers": 78.0, "Median Spend per Transaction": 8.23, "Median Spend per Customer": 16.99 }, "geometry": { "type": "Point", "coordinates": [ -75.140772, 40.053968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pm3-vxq", "Name": "Lucky 13 Pub", "Category": "Restaurants and Other Eating Places", "Address": "1820 S 13th St", "LATITUDE": 39.927169, "LONGITUDE": -75.167128, "DATE_RANGE_START": 2024, "Total Visits": 79.0, "Total Visitors": 79.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 44.0, "Total Spend": 5122.0, "Total Transactions": 126.0, "Total Customers": 92.0, "Median Spend per Transaction": 35.02, "Median Spend per Customer": 33.72 }, "geometry": { "type": "Point", "coordinates": [ -75.167128, 39.927169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-d9z", "Name": "Jade Harbor", "Category": "Restaurants and Other Eating Places", "Address": "6863 Bustleton Ave", "LATITUDE": 40.041343, "LONGITUDE": -75.064361, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 32.0, "POI_CBG": 421010314022.0, "Median Dwell Time": null, "Total Spend": 5825.0, "Total Transactions": 78.0, "Total Customers": 74.0, "Median Spend per Transaction": 48.13, "Median Spend per Customer": 47.27 }, "geometry": { "type": "Point", "coordinates": [ -75.064361, 40.041343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8n-c5z", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6543 Roosevelt Blvd Unit 18A", "LATITUDE": 40.034777, "LONGITUDE": -75.066117, "DATE_RANGE_START": 2024, "Total Visits": 704.0, "Total Visitors": 417.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 7.0, "Total Spend": 311.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 19.53, "Median Spend per Customer": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.066117, 40.034777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-225@628-pmf-sqz", "Name": "Rag & Bone", "Category": "Clothing Stores", "Address": "1601 Walnut St", "LATITUDE": 39.950021, "LONGITUDE": -75.167636, "DATE_RANGE_START": 2024, "Total Visits": 151.0, "Total Visitors": 93.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 2316.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 231.25, "Median Spend per Customer": 252.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167636, 39.950021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-ks5", "Name": "New Quality Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "105 E Allegheny Ave", "LATITUDE": 39.998751, "LONGITUDE": -75.128955, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 17.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 503.0, "Total Spend": 517.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 23.88, "Median Spend per Customer": 27.82 }, "geometry": { "type": "Point", "coordinates": [ -75.128955, 39.998751 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm9-zfz", "Name": "Bistrot La Minette", "Category": "Restaurants and Other Eating Places", "Address": "623 S 6th St", "LATITUDE": 39.941317, "LONGITUDE": -75.152245, "DATE_RANGE_START": 2024, "Total Visits": 212.0, "Total Visitors": 157.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 62.0, "Total Spend": 4596.0, "Total Transactions": 30.0, "Total Customers": 29.0, "Median Spend per Transaction": 125.26, "Median Spend per Customer": 122.99 }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.941317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-pg2-2zf", "Name": "Mi 'N Tea", "Category": "Restaurants and Other Eating Places", "Address": "4229 Main St", "LATITUDE": 40.024353, "LONGITUDE": -75.220723, "DATE_RANGE_START": 2024, "Total Visits": 121.0, "Total Visitors": 101.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 11.0, "Total Spend": 2398.0, "Total Transactions": 76.0, "Total Customers": 71.0, "Median Spend per Transaction": 18.06, "Median Spend per Customer": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.220723, 40.024353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pm4-b6k", "Name": "Two Eagles Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1401 S 20th St", "LATITUDE": 39.934031, "LONGITUDE": -75.177208, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 132.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 5.0, "Total Spend": 777.0, "Total Transactions": 36.0, "Total Customers": 30.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 23.63 }, "geometry": { "type": "Point", "coordinates": [ -75.177208, 39.934031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pj8-pgk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.031655, "LONGITUDE": -75.099529, "DATE_RANGE_START": 2024, "Total Visits": 3423.0, "Total Visitors": 2139.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 21.0, "Total Spend": 713.0, "Total Transactions": 36.0, "Total Customers": 30.0, "Median Spend per Transaction": 16.04, "Median Spend per Customer": 15.45 }, "geometry": { "type": "Point", "coordinates": [ -75.099529, 40.031655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pm9-zvf", "Name": "Philly AIDS Thrift", "Category": "Used Merchandise Stores", "Address": "710 S 5th St", "LATITUDE": 39.940647, "LONGITUDE": -75.151165, "DATE_RANGE_START": 2024, "Total Visits": 1655.0, "Total Visitors": 965.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 20.0, "Total Spend": 15451.0, "Total Transactions": 748.0, "Total Customers": 625.0, "Median Spend per Transaction": 13.96, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151165, 39.940647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p75-3nq", "Name": "Torresdale Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4315 Megargee St", "LATITUDE": 40.048663, "LONGITUDE": -75.011484, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 151.0, "POI_CBG": 421010349001.0, "Median Dwell Time": 2.0, "Total Spend": 518.0, "Total Transactions": 26.0, "Total Customers": 20.0, "Median Spend per Transaction": 13.76, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.011484, 40.048663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-75z", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "4090 Lancaster Ave", "LATITUDE": 39.964719, "LONGITUDE": -75.205291, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010106002.0, "Median Dwell Time": 3.0, "Total Spend": 416.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 11.27, "Median Spend per Customer": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.205291, 39.964719 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-6rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3230 Richmond St", "LATITUDE": 39.983619, "LONGITUDE": -75.100787, "DATE_RANGE_START": 2024, "Total Visits": 1676.0, "Total Visitors": 1176.0, "POI_CBG": 421010379004.0, "Median Dwell Time": 3.0, "Total Spend": 3891.0, "Total Transactions": 349.0, "Total Customers": 250.0, "Median Spend per Transaction": 8.72, "Median Spend per Customer": 11.86 }, "geometry": { "type": "Point", "coordinates": [ -75.100787, 39.983619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8m-y9z", "Name": "Roll's Auto Sales", "Category": "Automobile Dealers", "Address": "6550 Frankford Ave", "LATITUDE": 40.030621, "LONGITUDE": -75.055332, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 29.0, "Total Spend": 4147.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 475.0, "Median Spend per Customer": 475.0 }, "geometry": { "type": "Point", "coordinates": [ -75.055332, 40.030621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pfz-q4v", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "630 Walnut Ln", "LATITUDE": 40.028767, "LONGITUDE": -75.206205, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 29.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 3.0, "Total Spend": 620.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 20.13, "Median Spend per Customer": 20.13 }, "geometry": { "type": "Point", "coordinates": [ -75.206205, 40.028767 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-qmk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.97806, "LONGITUDE": -75.119535, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 4.0, "Total Spend": 4192.0, "Total Transactions": 487.0, "Total Customers": 325.0, "Median Spend per Transaction": 7.38, "Median Spend per Customer": 9.26 }, "geometry": { "type": "Point", "coordinates": [ -75.119535, 39.97806 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmf-j9z", "Name": "lululemon athletica", "Category": "Clothing Stores", "Address": "1720 Walnut St", "LATITUDE": 39.950004, "LONGITUDE": -75.170235, "DATE_RANGE_START": 2024, "Total Visits": 349.0, "Total Visitors": 338.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 20286.0, "Total Transactions": 207.0, "Total Customers": 192.0, "Median Spend per Transaction": 88.0, "Median Spend per Customer": 88.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170235, 39.950004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvp-bff", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945319, "LONGITUDE": -75.238386, "DATE_RANGE_START": 2024, "Total Visits": 619.0, "Total Visitors": 359.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 14.0, "Total Spend": 328.0, "Total Transactions": 21.0, "Total Customers": 13.0, "Median Spend per Transaction": 16.51, "Median Spend per Customer": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -75.238386, 39.945319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-p7z-6tv", "Name": "Dollar Discount", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6812 Rising Sun Ave", "LATITUDE": 40.055124, "LONGITUDE": -75.090736, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010307003.0, "Median Dwell Time": 1.0, "Total Spend": 63.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 17.25, "Median Spend per Customer": 17.25 }, "geometry": { "type": "Point", "coordinates": [ -75.090736, 40.055124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm5-bzf", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "320 W Oregon Ave Ste 1", "LATITUDE": 39.91312, "LONGITUDE": -75.153834, "DATE_RANGE_START": 2024, "Total Visits": 685.0, "Total Visitors": 461.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 15.0, "Total Spend": 3521.0, "Total Transactions": 120.0, "Total Customers": 101.0, "Median Spend per Transaction": 25.84, "Median Spend per Customer": 29.84 }, "geometry": { "type": "Point", "coordinates": [ -75.153834, 39.91312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pm9-wkz", "Name": "Amada", "Category": "Restaurants and Other Eating Places", "Address": "217 Chestnut St", "LATITUDE": 39.948735, "LONGITUDE": -75.144865, "DATE_RANGE_START": 2024, "Total Visits": 315.0, "Total Visitors": 307.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 95.0, "Total Spend": 12721.0, "Total Transactions": 104.0, "Total Customers": 95.0, "Median Spend per Transaction": 99.06, "Median Spend per Customer": 108.84 }, "geometry": { "type": "Point", "coordinates": [ -75.144865, 39.948735 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pnx-cwk", "Name": "Sunrise 2 Authentic Thai Food", "Category": "Restaurants and Other Eating Places", "Address": "250 E Girard Ave", "LATITUDE": 39.969357, "LONGITUDE": -75.132076, "DATE_RANGE_START": 2024, "Total Visits": 307.0, "Total Visitors": 307.0, "POI_CBG": 421010143001.0, "Median Dwell Time": 1.0, "Total Spend": 446.0, "Total Transactions": 49.0, "Total Customers": 33.0, "Median Spend per Transaction": 8.25, "Median Spend per Customer": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.132076, 39.969357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-3qz", "Name": "The Sidecar Bar & Grille", "Category": "Restaurants and Other Eating Places", "Address": "2201 Christian St", "LATITUDE": 39.941828, "LONGITUDE": -75.179491, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 138.0, "POI_CBG": 421010013002.0, "Median Dwell Time": 21.0, "Total Spend": 1541.0, "Total Transactions": 26.0, "Total Customers": 21.0, "Median Spend per Transaction": 46.84, "Median Spend per Customer": 63.46 }, "geometry": { "type": "Point", "coordinates": [ -75.179491, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-bx5", "Name": "Penrose Diner", "Category": "Restaurants and Other Eating Places", "Address": "2016 Penrose Ave", "LATITUDE": 39.912279, "LONGITUDE": -75.182755, "DATE_RANGE_START": 2024, "Total Visits": 384.0, "Total Visitors": 303.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 27.0, "Total Spend": 680.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 45.3, "Median Spend per Customer": 45.3 }, "geometry": { "type": "Point", "coordinates": [ -75.182755, 39.912279 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24v-222@63s-dvw-f2k", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "5143 Haverford Ave", "LATITUDE": 39.964788, "LONGITUDE": -75.22346, "DATE_RANGE_START": 2024, "Total Visits": 140.0, "Total Visitors": 112.0, "POI_CBG": 421010103002.0, "Median Dwell Time": 12.0, "Total Spend": 125.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 11.8, "Median Spend per Customer": 21.0 }, "geometry": { "type": "Point", "coordinates": [ -75.22346, 39.964788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-y5f", "Name": "O'Neals Pub", "Category": "Restaurants and Other Eating Places", "Address": "611 S 3rd St", "LATITUDE": 39.941045, "LONGITUDE": -75.147423, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 141.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 52.0, "Total Spend": 6889.0, "Total Transactions": 194.0, "Total Customers": 115.0, "Median Spend per Transaction": 28.92, "Median Spend per Customer": 38.27 }, "geometry": { "type": "Point", "coordinates": [ -75.147423, 39.941045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmf-hnq", "Name": "The Ranstead Room", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2013 Ranstead St", "LATITUDE": 39.952421, "LONGITUDE": -75.17382, "DATE_RANGE_START": 2024, "Total Visits": 2130.0, "Total Visitors": 1413.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 6.0, "Total Spend": 1839.0, "Total Transactions": 34.0, "Total Customers": 32.0, "Median Spend per Transaction": 51.95, "Median Spend per Customer": 52.45 }, "geometry": { "type": "Point", "coordinates": [ -75.17382, 39.952421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmb-whq", "Name": "Sang Kee Peking Duck House", "Category": "Restaurants and Other Eating Places", "Address": "238 N 9th St", "LATITUDE": 39.956403, "LONGITUDE": -75.154295, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 236.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 17.0, "Total Spend": 10748.0, "Total Transactions": 283.0, "Total Customers": 241.0, "Median Spend per Transaction": 19.44, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 39.956403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p83-x3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9280 Krewstown Rd", "LATITUDE": 40.086019, "LONGITUDE": -75.046799, "DATE_RANGE_START": 2024, "Total Visits": 1043.0, "Total Visitors": 850.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 6.0, "Total Spend": 1785.0, "Total Transactions": 107.0, "Total Customers": 72.0, "Median Spend per Transaction": 15.32, "Median Spend per Customer": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.046799, 40.086019 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-yqf", "Name": "Lau Kee Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "934 Race St", "LATITUDE": 39.955193, "LONGITUDE": -75.155565, "DATE_RANGE_START": 2024, "Total Visits": 301.0, "Total Visitors": 282.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 78.0, "Total Spend": 52.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 19.79, "Median Spend per Customer": 19.79 }, "geometry": { "type": "Point", "coordinates": [ -75.155565, 39.955193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7x-7kf", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "7201 Castor Ave", "LATITUDE": 40.050139, "LONGITUDE": -75.066802, "DATE_RANGE_START": 2024, "Total Visits": 591.0, "Total Visitors": 509.0, "POI_CBG": 421010314011.0, "Median Dwell Time": 4.0, "Total Spend": 1321.0, "Total Transactions": 116.0, "Total Customers": 37.0, "Median Spend per Transaction": 4.63, "Median Spend per Customer": 22.3 }, "geometry": { "type": "Point", "coordinates": [ -75.066802, 40.050139 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-php-y9z", "Name": "Jamaican D's", "Category": "Restaurants and Other Eating Places", "Address": "1265 E Chelten Ave", "LATITUDE": 40.052429, "LONGITUDE": -75.157999, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 21.0, "POI_CBG": 421010249002.0, "Median Dwell Time": 660.0, "Total Spend": 222.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 62.75, "Median Spend per Customer": 62.75 }, "geometry": { "type": "Point", "coordinates": [ -75.157999, 40.052429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmb-5mk", "Name": "Open House", "Category": "Home Furnishings Stores", "Address": "107 S 13th St", "LATITUDE": 39.950281, "LONGITUDE": -75.161742, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 11102.0, "Total Transactions": 305.0, "Total Customers": 275.0, "Median Spend per Transaction": 30.24, "Median Spend per Customer": 32.0 }, "geometry": { "type": "Point", "coordinates": [ -75.161742, 39.950281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-235@628-pmf-6x5", "Name": "Gia Pronto", "Category": "Restaurants and Other Eating Places", "Address": "3400 Civic Center Blvd", "LATITUDE": 39.94766, "LONGITUDE": -75.192915, "DATE_RANGE_START": 2024, "Total Visits": 14692.0, "Total Visitors": 7742.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 63.0, "Total Spend": 5702.0, "Total Transactions": 636.0, "Total Customers": 427.0, "Median Spend per Transaction": 7.2, "Median Spend per Customer": 9.69 }, "geometry": { "type": "Point", "coordinates": [ -75.192915, 39.94766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-232@628-p8t-w49", "Name": "SNIPES", "Category": "Shoe Stores", "Address": "1455 Franklin Mills Cir", "LATITUDE": 40.087656, "LONGITUDE": -74.961053, "DATE_RANGE_START": 2024, "Total Visits": 958.0, "Total Visitors": 893.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 3743.0, "Total Transactions": 28.0, "Total Customers": 24.0, "Median Spend per Transaction": 108.0, "Median Spend per Customer": 119.37 }, "geometry": { "type": "Point", "coordinates": [ -74.961053, 40.087656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-kfz", "Name": "Ultimo Coffee", "Category": "Restaurants and Other Eating Places", "Address": "238 S 20th St", "LATITUDE": 39.949526, "LONGITUDE": -75.174328, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 263.0, "POI_CBG": 421010008032.0, "Median Dwell Time": 5.0, "Total Spend": 4028.0, "Total Transactions": 413.0, "Total Customers": 298.0, "Median Spend per Transaction": 7.97, "Median Spend per Customer": 9.74 }, "geometry": { "type": "Point", "coordinates": [ -75.174328, 39.949526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfw-tgk", "Name": "Far East Chinese Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "5043 Wissahickon Ave", "LATITUDE": 40.019736, "LONGITUDE": -75.174288, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010243002.0, "Median Dwell Time": 3.0, "Total Spend": 184.0, "Total Transactions": 7.0, "Total Customers": 3.0, "Median Spend per Transaction": 33.24, "Median Spend per Customer": 69.99 }, "geometry": { "type": "Point", "coordinates": [ -75.174288, 40.019736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fvf", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "9701 Roosevelt Blvd", "LATITUDE": 40.080948, "LONGITUDE": -75.025099, "DATE_RANGE_START": 2024, "Total Visits": 4106.0, "Total Visitors": 2738.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 11.0, "Total Spend": 35452.0, "Total Transactions": 354.0, "Total Customers": 255.0, "Median Spend per Transaction": 34.52, "Median Spend per Customer": 43.14 }, "geometry": { "type": "Point", "coordinates": [ -75.025099, 40.080948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9v-fpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "12375 Academy Rd", "LATITUDE": 40.096466, "LONGITUDE": -74.975004, "DATE_RANGE_START": 2024, "Total Visits": 783.0, "Total Visitors": 635.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 7295.0, "Total Transactions": 875.0, "Total Customers": 324.0, "Median Spend per Transaction": 6.69, "Median Spend per Customer": 11.93 }, "geometry": { "type": "Point", "coordinates": [ -74.975004, 40.096466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmf-y7q", "Name": "Sunset Social", "Category": "Restaurants and Other Eating Places", "Address": "129 S 30th St", "LATITUDE": 39.952424, "LONGITUDE": -75.183701, "DATE_RANGE_START": 2024, "Total Visits": 1505.0, "Total Visitors": 810.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 56.0, "Total Spend": 1298.0, "Total Transactions": 66.0, "Total Customers": 51.0, "Median Spend per Transaction": 18.64, "Median Spend per Customer": 19.68 }, "geometry": { "type": "Point", "coordinates": [ -75.183701, 39.952424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-pmf-kpv", "Name": "The Goat Rittenhouse", "Category": "Restaurants and Other Eating Places", "Address": "1907 Sansom St", "LATITUDE": 39.951177, "LONGITUDE": -75.172386, "DATE_RANGE_START": 2024, "Total Visits": 241.0, "Total Visitors": 215.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 14.0, "Total Spend": 768.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 30.9, "Median Spend per Customer": 30.9 }, "geometry": { "type": "Point", "coordinates": [ -75.172386, 39.951177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-fpv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3901 Aramingo Ave", "LATITUDE": 39.997308, "LONGITUDE": -75.088342, "DATE_RANGE_START": 2024, "Total Visits": 1775.0, "Total Visitors": 1231.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 6.0, "Total Spend": 93954.0, "Total Transactions": 5088.0, "Total Customers": 2401.0, "Median Spend per Transaction": 11.86, "Median Spend per Customer": 21.47 }, "geometry": { "type": "Point", "coordinates": [ -75.088342, 39.997308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-6hq", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6701 Ridge Ave", "LATITUDE": 40.040588, "LONGITUDE": -75.223534, "DATE_RANGE_START": 2024, "Total Visits": 2517.0, "Total Visitors": 1908.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 4.0, "Total Spend": 139073.0, "Total Transactions": 7986.0, "Total Customers": 3064.0, "Median Spend per Transaction": 12.08, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.223534, 40.040588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pm9-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "242 Market St # 244", "LATITUDE": 39.949855, "LONGITUDE": -75.145525, "DATE_RANGE_START": 2024, "Total Visits": 632.0, "Total Visitors": 554.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 1508.0, "Total Transactions": 162.0, "Total Customers": 109.0, "Median Spend per Transaction": 8.23, "Median Spend per Customer": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.145525, 39.949855 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmf-t9z", "Name": "Last Drop", "Category": "Restaurants and Other Eating Places", "Address": "1300 Pine St", "LATITUDE": 39.945156, "LONGITUDE": -75.163064, "DATE_RANGE_START": 2024, "Total Visits": 288.0, "Total Visitors": 215.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1.0, "Total Spend": 71.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 6.15, "Median Spend per Customer": 6.42 }, "geometry": { "type": "Point", "coordinates": [ -75.163064, 39.945156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvy-kfz", "Name": "Gigi and Big R", "Category": "Restaurants and Other Eating Places", "Address": "38th @ Spruce", "LATITUDE": 39.95108, "LONGITUDE": -75.198957, "DATE_RANGE_START": 2024, "Total Visits": 1051.0, "Total Visitors": 503.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 7.0, "Total Spend": 680.0, "Total Transactions": 29.0, "Total Customers": 28.0, "Median Spend per Transaction": 19.56, "Median Spend per Customer": 19.56 }, "geometry": { "type": "Point", "coordinates": [ -75.198957, 39.95108 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-wc5", "Name": "Jini Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "1319 Franklin Mills Cir", "LATITUDE": 40.085911, "LONGITUDE": -74.962082, "DATE_RANGE_START": 2024, "Total Visits": 333.0, "Total Visitors": 315.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 2.0, "Total Spend": 3842.0, "Total Transactions": 97.0, "Total Customers": 80.0, "Median Spend per Transaction": 21.57, "Median Spend per Customer": 21.56 }, "geometry": { "type": "Point", "coordinates": [ -74.962082, 40.085911 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p8t-6c5", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "501 Franklin Mills Cir", "LATITUDE": 40.088404, "LONGITUDE": -74.964975, "DATE_RANGE_START": 2024, "Total Visits": 957.0, "Total Visitors": 739.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 14302.0, "Total Transactions": 1036.0, "Total Customers": 704.0, "Median Spend per Transaction": 10.98, "Median Spend per Customer": 13.15 }, "geometry": { "type": "Point", "coordinates": [ -74.964975, 40.088404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pm4-nbk", "Name": "Shot Tower Coffee", "Category": "Restaurants and Other Eating Places", "Address": "542 Christian St", "LATITUDE": 39.937563, "LONGITUDE": -75.153189, "DATE_RANGE_START": 2024, "Total Visits": 303.0, "Total Visitors": 169.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 40.0, "Total Spend": 3025.0, "Total Transactions": 396.0, "Total Customers": 226.0, "Median Spend per Transaction": 6.21, "Median Spend per Customer": 9.82 }, "geometry": { "type": "Point", "coordinates": [ -75.153189, 39.937563 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgd-z9f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3601 Market St", "LATITUDE": 39.956702, "LONGITUDE": -75.194283, "DATE_RANGE_START": 2024, "Total Visits": 6012.0, "Total Visitors": 2975.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 10.0, "Total Spend": 9292.0, "Total Transactions": 1393.0, "Total Customers": 565.0, "Median Spend per Transaction": 5.61, "Median Spend per Customer": 10.04 }, "geometry": { "type": "Point", "coordinates": [ -75.194283, 39.956702 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm8-pgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2201 Penrose Ave", "LATITUDE": 39.910143, "LONGITUDE": -75.187072, "DATE_RANGE_START": 2024, "Total Visits": 429.0, "Total Visitors": 315.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 2.0, "Total Spend": 8979.0, "Total Transactions": 1118.0, "Total Customers": 525.0, "Median Spend per Transaction": 6.42, "Median Spend per Customer": 10.23 }, "geometry": { "type": "Point", "coordinates": [ -75.187072, 39.910143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnt-3wk", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2489 Aramingo Ave", "LATITUDE": 39.974266, "LONGITUDE": -75.119833, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 11.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 8.0, "Total Spend": 661.0, "Total Transactions": 38.0, "Total Customers": 32.0, "Median Spend per Transaction": 9.68, "Median Spend per Customer": 13.71 }, "geometry": { "type": "Point", "coordinates": [ -75.119833, 39.974266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-pmd-sbk", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "2201 South St", "LATITUDE": 39.945484, "LONGITUDE": -75.178667, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010012014.0, "Median Dwell Time": 6.0, "Total Spend": 2909.0, "Total Transactions": 326.0, "Total Customers": 201.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 10.48 }, "geometry": { "type": "Point", "coordinates": [ -75.178667, 39.945484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmf-kvf", "Name": "1 Tippling Place", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2006 Chestnut St", "LATITUDE": 39.951925, "LONGITUDE": -75.173807, "DATE_RANGE_START": 2024, "Total Visits": 303.0, "Total Visitors": 275.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 21.0, "Total Spend": 1502.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 51.83, "Median Spend per Customer": 51.83 }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.951925 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p86-gkz", "Name": "Keller Market", "Category": "Restaurants and Other Eating Places", "Address": "7964 Verree Rd", "LATITUDE": 40.072464, "LONGITUDE": -75.076664, "DATE_RANGE_START": 2024, "Total Visits": 405.0, "Total Visitors": 129.0, "POI_CBG": 421010341002.0, "Median Dwell Time": 114.0, "Total Spend": 1891.0, "Total Transactions": 91.0, "Total Customers": 66.0, "Median Spend per Transaction": 16.84, "Median Spend per Customer": 20.61 }, "geometry": { "type": "Point", "coordinates": [ -75.076664, 40.072464 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p9p-q9f", "Name": "1 Stop Smoke Shop", "Category": "Other Miscellaneous Store Retailers", "Address": "10103 Verree Rd Unit C", "LATITUDE": 40.10518, "LONGITUDE": -75.032067, "DATE_RANGE_START": 2024, "Total Visits": 134.0, "Total Visitors": 120.0, "POI_CBG": 421010357011.0, "Median Dwell Time": 3.0, "Total Spend": 1066.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 28.32 }, "geometry": { "type": "Point", "coordinates": [ -75.032067, 40.10518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pgg-sdv", "Name": "Neighbors Supermarket", "Category": "Grocery Stores", "Address": "2724 W Allegheny Ave", "LATITUDE": 40.004231, "LONGITUDE": -75.174942, "DATE_RANGE_START": 2024, "Total Visits": 146.0, "Total Visitors": 125.0, "POI_CBG": 421010171001.0, "Median Dwell Time": 25.0, "Total Spend": 361.0, "Total Transactions": 37.0, "Total Customers": 20.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 14.56 }, "geometry": { "type": "Point", "coordinates": [ -75.174942, 40.004231 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmd-vmk", "Name": "Bonner's Irish Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "120 S 23rd St", "LATITUDE": 39.952025, "LONGITUDE": -75.1785, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 254.0, "POI_CBG": 421010007003.0, "Median Dwell Time": 12.0, "Total Spend": 5162.0, "Total Transactions": 207.0, "Total Customers": 101.0, "Median Spend per Transaction": 16.8, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.1785, 39.952025 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-dqf", "Name": "Pulaski Hall", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1653 W Hunting Park Ave", "LATITUDE": 40.015833, "LONGITUDE": -75.154849, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 120.0, "Total Spend": 641.0, "Total Transactions": 16.0, "Total Customers": 13.0, "Median Spend per Transaction": 39.2, "Median Spend per Customer": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.154849, 40.015833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p74-wzf", "Name": "King Food Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7426 Frankford Ave", "LATITUDE": 40.038528, "LONGITUDE": -75.036845, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 128.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 13.0, "Total Spend": 802.0, "Total Transactions": 34.0, "Total Customers": 26.0, "Median Spend per Transaction": 19.49, "Median Spend per Customer": 28.88 }, "geometry": { "type": "Point", "coordinates": [ -75.036845, 40.038528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj7-tsq", "Name": "J's Mini Market", "Category": "Grocery Stores", "Address": "4601 Horrocks St", "LATITUDE": 40.017868, "LONGITUDE": -75.091027, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 170.0, "POI_CBG": 421010301003.0, "Median Dwell Time": 3.0, "Total Spend": 9.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 3.38, "Median Spend per Customer": 3.38 }, "geometry": { "type": "Point", "coordinates": [ -75.091027, 40.017868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-223@628-p8d-c3q", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4390 Richmond St", "LATITUDE": 39.997394, "LONGITUDE": -75.074105, "DATE_RANGE_START": 2024, "Total Visits": 219.0, "Total Visitors": 132.0, "POI_CBG": 421010183004.0, "Median Dwell Time": 7.0, "Total Spend": 708.0, "Total Transactions": 34.0, "Total Customers": 28.0, "Median Spend per Transaction": 17.04, "Median Spend per Customer": 23.3 }, "geometry": { "type": "Point", "coordinates": [ -75.074105, 39.997394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8j-ct9", "Name": "Hunan Star", "Category": "Restaurants and Other Eating Places", "Address": "7203 Frankford Ave", "LATITUDE": 40.035881, "LONGITUDE": -75.042073, "DATE_RANGE_START": 2024, "Total Visits": 103.0, "Total Visitors": 103.0, "POI_CBG": 421010326001.0, "Median Dwell Time": 3.0, "Total Spend": 816.0, "Total Transactions": 29.0, "Total Customers": 21.0, "Median Spend per Transaction": 29.27, "Median Spend per Customer": 36.54 }, "geometry": { "type": "Point", "coordinates": [ -75.042073, 40.035881 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-ty9", "Name": "Sakura Japanese Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "1521 Spring Garden St", "LATITUDE": 39.962988, "LONGITUDE": -75.163765, "DATE_RANGE_START": 2024, "Total Visits": 101.0, "Total Visitors": 101.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 26.0, "Total Spend": 189.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 25.5, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.163765, 39.962988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p7v-w49", "Name": "China Ruby", "Category": "Restaurants and Other Eating Places", "Address": "1535 Cottman Ave", "LATITUDE": 40.055952, "LONGITUDE": -75.07383, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 50.0, "POI_CBG": 421010338002.0, "Median Dwell Time": null, "Total Spend": 83.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 13.64, "Median Spend per Customer": 13.64 }, "geometry": { "type": "Point", "coordinates": [ -75.07383, 40.055952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj8-qs5", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "716 Adams Ave", "LATITUDE": 40.031545, "LONGITUDE": -75.104813, "DATE_RANGE_START": 2024, "Total Visits": 211.0, "Total Visitors": 203.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 6.0, "Total Spend": 2492.0, "Total Transactions": 130.0, "Total Customers": 111.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 18.83 }, "geometry": { "type": "Point", "coordinates": [ -75.104813, 40.031545 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9r-45f", "Name": "Olive Garden", "Category": "Restaurants and Other Eating Places", "Address": "9280 Roosevelt Blvd", "LATITUDE": 40.078514, "LONGITUDE": -75.031991, "DATE_RANGE_START": 2024, "Total Visits": 1269.0, "Total Visitors": 1212.0, "POI_CBG": 421010345022.0, "Median Dwell Time": 26.0, "Total Spend": 19374.0, "Total Transactions": 313.0, "Total Customers": 266.0, "Median Spend per Transaction": 55.84, "Median Spend per Customer": 67.32 }, "geometry": { "type": "Point", "coordinates": [ -75.031991, 40.078514 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg2-jgk", "Name": "Grocery Outlet", "Category": "Grocery Stores", "Address": "25 W Hortter St Unit B", "LATITUDE": 40.05001, "LONGITUDE": -75.1853, "DATE_RANGE_START": 2024, "Total Visits": 556.0, "Total Visitors": 556.0, "POI_CBG": 421010237004.0, "Median Dwell Time": 10.0, "Total Spend": 105599.0, "Total Transactions": 3487.0, "Total Customers": 1638.0, "Median Spend per Transaction": 19.37, "Median Spend per Customer": 37.73 }, "geometry": { "type": "Point", "coordinates": [ -75.1853, 40.05001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pm5-2rk", "Name": "Le Viet Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1019 S 11th St", "LATITUDE": 39.937704, "LONGITUDE": -75.161163, "DATE_RANGE_START": 2024, "Total Visits": 640.0, "Total Visitors": 494.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 33.0, "Total Spend": 665.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 51.05, "Median Spend per Customer": 60.46 }, "geometry": { "type": "Point", "coordinates": [ -75.161163, 39.937704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pnw-ndv", "Name": "Cake Life Bake Shop", "Category": "Restaurants and Other Eating Places", "Address": "1306 Frankford Ave", "LATITUDE": 39.970543, "LONGITUDE": -75.134645, "DATE_RANGE_START": 2024, "Total Visits": 478.0, "Total Visitors": 349.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 6.0, "Total Spend": 5154.0, "Total Transactions": 278.0, "Total Customers": 190.0, "Median Spend per Transaction": 14.85, "Median Spend per Customer": 20.43 }, "geometry": { "type": "Point", "coordinates": [ -75.134645, 39.970543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm3-x5z", "Name": "Produce Truck", "Category": "Grocery Stores", "Address": "Dickinson St @ 10th St", "LATITUDE": 39.93094, "LONGITUDE": -75.161476, "DATE_RANGE_START": 2024, "Total Visits": 367.0, "Total Visitors": 313.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 2.0, "Total Spend": 28.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 10.74, "Median Spend per Customer": 10.74 }, "geometry": { "type": "Point", "coordinates": [ -75.161476, 39.93094 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "259-222@628-pm3-vxq", "Name": "Big Catch Poke", "Category": "Restaurants and Other Eating Places", "Address": "1840 E Passyunk Ave", "LATITUDE": 39.926743, "LONGITUDE": -75.16739, "DATE_RANGE_START": 2024, "Total Visits": 419.0, "Total Visitors": 155.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 367.0, "Total Spend": 729.0, "Total Transactions": 29.0, "Total Customers": 28.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.16739, 39.926743 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pg4-hyv", "Name": "City Blue", "Category": "Shoe Stores", "Address": "40 W Chelten Ave", "LATITUDE": 40.034851, "LONGITUDE": -75.17549, "DATE_RANGE_START": 2024, "Total Visits": 1173.0, "Total Visitors": 616.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 22.0, "Total Spend": 2787.0, "Total Transactions": 43.0, "Total Customers": 41.0, "Median Spend per Transaction": 49.24, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17549, 40.034851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-b8v", "Name": "Pennypack Beer Distributor", "Category": "Beer, Wine, and Liquor Stores", "Address": "8120 Roosevelt Blvd", "LATITUDE": 40.058813, "LONGITUDE": -75.045527, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 178.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 9.0, "Total Spend": 303.0, "Total Transactions": 13.0, "Total Customers": 3.0, "Median Spend per Transaction": 22.0, "Median Spend per Customer": 115.0 }, "geometry": { "type": "Point", "coordinates": [ -75.045527, 40.058813 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm4-gtv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2017 S Broad St # 2023", "LATITUDE": 39.92494, "LONGITUDE": -75.169059, "DATE_RANGE_START": 2024, "Total Visits": 1588.0, "Total Visitors": 754.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 21.0, "Total Spend": 1748.0, "Total Transactions": 103.0, "Total Customers": 86.0, "Median Spend per Transaction": 12.0, "Median Spend per Customer": 11.87 }, "geometry": { "type": "Point", "coordinates": [ -75.169059, 39.92494 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-p8h-73q", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7221 Torresdale Ave", "LATITUDE": 40.029636, "LONGITUDE": -75.035701, "DATE_RANGE_START": 2024, "Total Visits": 666.0, "Total Visitors": 490.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 3.0, "Total Spend": 7436.0, "Total Transactions": 902.0, "Total Customers": 379.0, "Median Spend per Transaction": 6.55, "Median Spend per Customer": 11.85 }, "geometry": { "type": "Point", "coordinates": [ -75.035701, 40.029636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "257-222@628-pmb-f75", "Name": "Franklin Drug Center", "Category": "Health and Personal Care Stores", "Address": "829 Spruce St Ste 100", "LATITUDE": 39.945968, "LONGITUDE": -75.155895, "DATE_RANGE_START": 2024, "Total Visits": 291.0, "Total Visitors": 192.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 1.0, "Total Spend": 632.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 165.0, "Median Spend per Customer": 240.0 }, "geometry": { "type": "Point", "coordinates": [ -75.155895, 39.945968 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm8-rhq", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2290 W Oregon Ave", "LATITUDE": 39.917209, "LONGITUDE": -75.185417, "DATE_RANGE_START": 2024, "Total Visits": 552.0, "Total Visitors": 428.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 10.0, "Total Spend": 5734.0, "Total Transactions": 187.0, "Total Customers": 171.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 20.37 }, "geometry": { "type": "Point", "coordinates": [ -75.185417, 39.917209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-mrk", "Name": "ALDO", "Category": "Shoe Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.951749, "LONGITUDE": -75.168187, "DATE_RANGE_START": 2024, "Total Visits": 642.0, "Total Visitors": 407.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 27.0, "Total Spend": 1064.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 75.17, "Median Spend per Customer": 74.57 }, "geometry": { "type": "Point", "coordinates": [ -75.168187, 39.951749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pm9-yd9", "Name": "Beer Love", "Category": "Beer, Wine, and Liquor Stores", "Address": "714 S 4th St", "LATITUDE": 39.940184, "LONGITUDE": -75.149747, "DATE_RANGE_START": 2024, "Total Visits": 380.0, "Total Visitors": 350.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 13.0, "Total Spend": 2172.0, "Total Transactions": 95.0, "Total Customers": 63.0, "Median Spend per Transaction": 16.49, "Median Spend per Customer": 25.45 }, "geometry": { "type": "Point", "coordinates": [ -75.149747, 39.940184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-jd9", "Name": "Watch Co", "Category": "Clothing Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952218, "LONGITUDE": -75.168358, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 334.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.168358, 39.952218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-pm9-y9z", "Name": "Shyne Jewelers", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "339 South St", "LATITUDE": 39.941833, "LONGITUDE": -75.148783, "DATE_RANGE_START": 2024, "Total Visits": 1340.0, "Total Visitors": 1206.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 5.0, "Total Spend": 774.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 108.0, "Median Spend per Customer": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.148783, 39.941833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-rp9", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "11500 Roosevelt Blvd", "LATITUDE": 40.104996, "LONGITUDE": -75.007889, "DATE_RANGE_START": 2024, "Total Visits": 76.0, "Total Visitors": 65.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 52.0, "Total Spend": 17595.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 149.25, "Median Spend per Customer": 864.81 }, "geometry": { "type": "Point", "coordinates": [ -75.007889, 40.104996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-389", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2116 S Columbus Blvd", "LATITUDE": 39.915658, "LONGITUDE": -75.139581, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 22.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 716.0, "Total Transactions": 49.0, "Total Customers": 38.0, "Median Spend per Transaction": 12.26, "Median Spend per Customer": 12.31 }, "geometry": { "type": "Point", "coordinates": [ -75.139581, 39.915658 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj3-9cq", "Name": "Yummy Garden", "Category": "Restaurants and Other Eating Places", "Address": "3901 N Broad St", "LATITUDE": 40.0124, "LONGITUDE": -75.15023, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 104.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 11.0, "Total Spend": 216.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 82.0, "Median Spend per Customer": 82.0 }, "geometry": { "type": "Point", "coordinates": [ -75.15023, 40.0124 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-p9r-28v", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "9173 Roosevelt Blvd Ste 10", "LATITUDE": 40.075169, "LONGITUDE": -75.032131, "DATE_RANGE_START": 2024, "Total Visits": 445.0, "Total Visitors": 390.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 8.0, "Total Spend": 26178.0, "Total Transactions": 471.0, "Total Customers": 420.0, "Median Spend per Transaction": 39.99, "Median Spend per Customer": 45.35 }, "geometry": { "type": "Point", "coordinates": [ -75.032131, 40.075169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-224@628-pm9-td9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "910 Chestnut St", "LATITUDE": 39.949653, "LONGITUDE": -75.156434, "DATE_RANGE_START": 2024, "Total Visits": 321.0, "Total Visitors": 184.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 345.0, "Total Transactions": 33.0, "Total Customers": 32.0, "Median Spend per Transaction": 8.83, "Median Spend per Customer": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156434, 39.949653 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23k-222@628-pfy-wkz", "Name": "Dawson Street Pub", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "100 Dawson St", "LATITUDE": 40.018548, "LONGITUDE": -75.21277, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 149.0, "POI_CBG": 421010209004.0, "Median Dwell Time": 41.0, "Total Spend": 8270.0, "Total Transactions": 299.0, "Total Customers": 128.0, "Median Spend per Transaction": 20.11, "Median Spend per Customer": 42.87 }, "geometry": { "type": "Point", "coordinates": [ -75.21277, 40.018548 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p7x-45f", "Name": "Las Maraca Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2100 Saint Vincent St", "LATITUDE": 40.045072, "LONGITUDE": -75.060626, "DATE_RANGE_START": 2024, "Total Visits": 234.0, "Total Visitors": 138.0, "POI_CBG": 421010314023.0, "Median Dwell Time": 187.0, "Total Spend": 380.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.060626, 40.045072 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pm7-3yv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "2422 W Passyunk Ave", "LATITUDE": 39.921816, "LONGITUDE": -75.187838, "DATE_RANGE_START": 2024, "Total Visits": 169.0, "Total Visitors": 147.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 5273.0, "Total Transactions": 336.0, "Total Customers": 257.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 16.33 }, "geometry": { "type": "Point", "coordinates": [ -75.187838, 39.921816 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-222@628-pg3-c3q", "Name": "Pizza & Steak Master", "Category": "Restaurants and Other Eating Places", "Address": "6627 Chew Ave", "LATITUDE": 40.054899, "LONGITUDE": -75.179749, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 17.0, "POI_CBG": 421010253001.0, "Median Dwell Time": 9.0, "Total Spend": 602.0, "Total Transactions": 29.0, "Total Customers": 21.0, "Median Spend per Transaction": 18.73, "Median Spend per Customer": 21.91 }, "geometry": { "type": "Point", "coordinates": [ -75.179749, 40.054899 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm3-wc5", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "1400 E Passyunk Ave", "LATITUDE": 39.932286, "LONGITUDE": -75.162307, "DATE_RANGE_START": 2024, "Total Visits": 2102.0, "Total Visitors": 969.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 12.0, "Total Spend": 199763.0, "Total Transactions": 6211.0, "Total Customers": 2043.0, "Median Spend per Transaction": 20.98, "Median Spend per Customer": 49.65 }, "geometry": { "type": "Point", "coordinates": [ -75.162307, 39.932286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pnw-py9", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "1138 N 2nd St Unit 1", "LATITUDE": 39.969281, "LONGITUDE": -75.140143, "DATE_RANGE_START": 2024, "Total Visits": 866.0, "Total Visitors": 837.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 1.0, "Total Spend": 2483.0, "Total Transactions": 116.0, "Total Customers": 76.0, "Median Spend per Transaction": 16.8, "Median Spend per Customer": 27.9 }, "geometry": { "type": "Point", "coordinates": [ -75.140143, 39.969281 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@63s-dvz-2p9", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "4640 Chestnut St", "LATITUDE": 39.957038, "LONGITUDE": -75.215038, "DATE_RANGE_START": 2024, "Total Visits": 473.0, "Total Visitors": 430.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 2.0, "Total Spend": 1098.0, "Total Transactions": 39.0, "Total Customers": 30.0, "Median Spend per Transaction": 22.62, "Median Spend per Customer": 26.2 }, "geometry": { "type": "Point", "coordinates": [ -75.215038, 39.957038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pgj-4qf", "Name": "Eddie's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1200 W Berks St", "LATITUDE": 39.980774, "LONGITUDE": -75.153402, "DATE_RANGE_START": 2024, "Total Visits": 153.0, "Total Visitors": 105.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 2.0, "Total Spend": 50.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 9.1, "Median Spend per Customer": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -75.153402, 39.980774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-p8m-ygk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6506 Frankford Ave", "LATITUDE": 40.030074, "LONGITUDE": -75.056159, "DATE_RANGE_START": 2024, "Total Visits": 1819.0, "Total Visitors": 1078.0, "POI_CBG": 421010316002.0, "Median Dwell Time": 5.0, "Total Spend": 23210.0, "Total Transactions": 2027.0, "Total Customers": 840.0, "Median Spend per Transaction": 9.61, "Median Spend per Customer": 14.33 }, "geometry": { "type": "Point", "coordinates": [ -75.056159, 40.030074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9t-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "12301 Academy Rd", "LATITUDE": 40.095744, "LONGITUDE": -74.976099, "DATE_RANGE_START": 2024, "Total Visits": 2359.0, "Total Visitors": 1360.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 90596.0, "Total Transactions": 4822.0, "Total Customers": 1551.0, "Median Spend per Transaction": 13.05, "Median Spend per Customer": 27.1 }, "geometry": { "type": "Point", "coordinates": [ -74.976099, 40.095744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p85-hnq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2503 Welsh Rd # 05", "LATITUDE": 40.070241, "LONGITUDE": -75.030693, "DATE_RANGE_START": 2024, "Total Visits": 1006.0, "Total Visitors": 716.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 1668.0, "Total Transactions": 126.0, "Total Customers": 87.0, "Median Spend per Transaction": 10.03, "Median Spend per Customer": 14.57 }, "geometry": { "type": "Point", "coordinates": [ -75.030693, 40.070241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pmb-68v", "Name": "J'aime French Bakery", "Category": "Restaurants and Other Eating Places", "Address": "212 S 12th St", "LATITUDE": 39.948054, "LONGITUDE": -75.160847, "DATE_RANGE_START": 2024, "Total Visits": 291.0, "Total Visitors": 250.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 1.0, "Total Spend": 445.0, "Total Transactions": 30.0, "Total Customers": 18.0, "Median Spend per Transaction": 10.45, "Median Spend per Customer": 14.11 }, "geometry": { "type": "Point", "coordinates": [ -75.160847, 39.948054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pnt-435", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2427 Aramingo Ave Ste 8", "LATITUDE": 39.974417, "LONGITUDE": -75.121241, "DATE_RANGE_START": 2024, "Total Visits": 1677.0, "Total Visitors": 1161.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 8.0, "Total Spend": 295.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 12.94, "Median Spend per Customer": 23.73 }, "geometry": { "type": "Point", "coordinates": [ -75.121241, 39.974417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pgf-6x5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4061 Lancaster Ave", "LATITUDE": 39.964844, "LONGITUDE": -75.204389, "DATE_RANGE_START": 2024, "Total Visits": 519.0, "Total Visitors": 279.0, "POI_CBG": 421010107002.0, "Median Dwell Time": 13.0, "Total Spend": 281.0, "Total Transactions": 13.0, "Total Customers": 7.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 12.55 }, "geometry": { "type": "Point", "coordinates": [ -75.204389, 39.964844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-226@628-pgb-2tv", "Name": "Local", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "201 N 17th St", "LATITUDE": 39.957095, "LONGITUDE": -75.167019, "DATE_RANGE_START": 2024, "Total Visits": 4813.0, "Total Visitors": 2753.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 288.0, "Total Spend": 262.0, "Total Transactions": 32.0, "Total Customers": 17.0, "Median Spend per Transaction": 6.08, "Median Spend per Customer": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167019, 39.957095 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-ygk", "Name": "Banana Leaf", "Category": "Restaurants and Other Eating Places", "Address": "1009 Arch St", "LATITUDE": 39.953737, "LONGITUDE": -75.156751, "DATE_RANGE_START": 2024, "Total Visits": 271.0, "Total Visitors": 246.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 34.0, "Total Spend": 4069.0, "Total Transactions": 83.0, "Total Customers": 75.0, "Median Spend per Transaction": 46.81, "Median Spend per Customer": 46.81 }, "geometry": { "type": "Point", "coordinates": [ -75.156751, 39.953737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-249", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3401 Aramingo Ave", "LATITUDE": 39.991221, "LONGITUDE": -75.100297, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 1.0, "Total Spend": 287.0, "Total Transactions": 12.0, "Total Customers": 11.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 18.45 }, "geometry": { "type": "Point", "coordinates": [ -75.100297, 39.991221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmb-3kf", "Name": "The Twisted Tail", "Category": "Restaurants and Other Eating Places", "Address": "509 S 2nd St", "LATITUDE": 39.941828, "LONGITUDE": -75.145203, "DATE_RANGE_START": 2024, "Total Visits": 290.0, "Total Visitors": 240.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 126.0, "Total Spend": 1383.0, "Total Transactions": 25.0, "Total Customers": 21.0, "Median Spend per Transaction": 44.0, "Median Spend per Customer": 42.82 }, "geometry": { "type": "Point", "coordinates": [ -75.145203, 39.941828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvp-bff", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5752 Baltimore Ave", "LATITUDE": 39.946253, "LONGITUDE": -75.239448, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010081012.0, "Median Dwell Time": 1.0, "Total Spend": 3859.0, "Total Transactions": 128.0, "Total Customers": 92.0, "Median Spend per Transaction": 28.48, "Median Spend per Customer": 34.22 }, "geometry": { "type": "Point", "coordinates": [ -75.239448, 39.946253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-phn-87q", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1600 E Wadsworth Ave Ste B", "LATITUDE": 40.080332, "LONGITUDE": -75.171849, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 8.0, "Total Spend": 271.0, "Total Transactions": 18.0, "Total Customers": 13.0, "Median Spend per Transaction": 12.03, "Median Spend per Customer": 12.23 }, "geometry": { "type": "Point", "coordinates": [ -75.171849, 40.080332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmb-7yv", "Name": "Hatville Deli", "Category": "Restaurants and Other Eating Places", "Address": "1136 Arch St", "LATITUDE": 39.953671, "LONGITUDE": -75.159299, "DATE_RANGE_START": 2024, "Total Visits": 320.0, "Total Visitors": 296.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 4153.0, "Total Transactions": 244.0, "Total Customers": 216.0, "Median Spend per Transaction": 14.25, "Median Spend per Customer": 15.62 }, "geometry": { "type": "Point", "coordinates": [ -75.159299, 39.953671 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pj2-j35", "Name": "ABC Supply", "Category": "Lumber and Other Construction Materials Merchant Wholesalers", "Address": "4501 Aramingo Ave", "LATITUDE": 40.002303, "LONGITUDE": -75.079252, "DATE_RANGE_START": 2024, "Total Visits": 333.0, "Total Visitors": 329.0, "POI_CBG": 421010183003.0, "Median Dwell Time": 3.0, "Total Spend": 118843.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 558.9, "Median Spend per Customer": 1031.45 }, "geometry": { "type": "Point", "coordinates": [ -75.079252, 40.002303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phc-rkz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "5020 City Ave", "LATITUDE": 39.999421, "LONGITUDE": -75.229459, "DATE_RANGE_START": 2024, "Total Visits": 1340.0, "Total Visitors": 1089.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 5.0, "Total Spend": 21685.0, "Total Transactions": 1759.0, "Total Customers": 1001.0, "Median Spend per Transaction": 10.36, "Median Spend per Customer": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.229459, 39.999421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg9-btv", "Name": "Fresh Donuts", "Category": "Restaurants and Other Eating Places", "Address": "2237 Cecil B Moore Ave", "LATITUDE": 39.980729, "LONGITUDE": -75.172287, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 142.0, "POI_CBG": 421010148001.0, "Median Dwell Time": null, "Total Spend": 167.0, "Total Transactions": 16.0, "Total Customers": 14.0, "Median Spend per Transaction": 9.13, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.980729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-223@628-phn-qj9", "Name": "Uptown Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "8131 Stenton Ave", "LATITUDE": 40.067574, "LONGITUDE": -75.179009, "DATE_RANGE_START": 2024, "Total Visits": 146.0, "Total Visitors": 103.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 28.0, "Total Spend": 319.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.179009, 40.067574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@63s-dvy-p9z", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "200 S 40th St", "LATITUDE": 39.953836, "LONGITUDE": -75.203059, "DATE_RANGE_START": 2024, "Total Visits": 39.0, "Total Visitors": 30.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 5.0, "Total Spend": 4603.0, "Total Transactions": 325.0, "Total Customers": 216.0, "Median Spend per Transaction": 10.84, "Median Spend per Customer": 14.13 }, "geometry": { "type": "Point", "coordinates": [ -75.203059, 39.953836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25s-222@628-pm6-f2k", "Name": "Bobs Food Market", "Category": "Specialty Food Stores", "Address": "2200 S 3rd St", "LATITUDE": 39.920704, "LONGITUDE": -75.15184, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010042012.0, "Median Dwell Time": null, "Total Spend": 55.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 19.75, "Median Spend per Customer": 19.75 }, "geometry": { "type": "Point", "coordinates": [ -75.15184, 39.920704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-tsq", "Name": "Chaes Food LLC", "Category": "Specialty Food Stores", "Address": "2100 N American St", "LATITUDE": 39.983616, "LONGITUDE": -75.138499, "DATE_RANGE_START": 2024, "Total Visits": 433.0, "Total Visitors": 342.0, "POI_CBG": 421010162002.0, "Median Dwell Time": 10.0, "Total Spend": 6071.0, "Total Transactions": 21.0, "Total Customers": 13.0, "Median Spend per Transaction": 128.01, "Median Spend per Customer": 259.46 }, "geometry": { "type": "Point", "coordinates": [ -75.138499, 39.983616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pfw-tgk", "Name": "Southside Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5043 Wissahickon Ave", "LATITUDE": 40.019691, "LONGITUDE": -75.174271, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 22.0, "POI_CBG": 421010243002.0, "Median Dwell Time": null, "Total Spend": 458.0, "Total Transactions": 20.0, "Total Customers": 11.0, "Median Spend per Transaction": 16.67, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.174271, 40.019691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pj5-3nq", "Name": "New York Deli", "Category": "Restaurants and Other Eating Places", "Address": "1416 W Erie Ave", "LATITUDE": 40.009138, "LONGITUDE": -75.152203, "DATE_RANGE_START": 2024, "Total Visits": 442.0, "Total Visitors": 217.0, "POI_CBG": 421010201022.0, "Median Dwell Time": 96.0, "Total Spend": 4530.0, "Total Transactions": 265.0, "Total Customers": 79.0, "Median Spend per Transaction": 20.48, "Median Spend per Customer": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.152203, 40.009138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-y9z", "Name": "Xi'an Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "902 Arch St", "LATITUDE": 39.953264, "LONGITUDE": -75.154923, "DATE_RANGE_START": 2024, "Total Visits": 2235.0, "Total Visitors": 1503.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 98.0, "Total Spend": 814.0, "Total Transactions": 21.0, "Total Customers": 18.0, "Median Spend per Transaction": 21.01, "Median Spend per Customer": 22.15 }, "geometry": { "type": "Point", "coordinates": [ -75.154923, 39.953264 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm4-ct9", "Name": "La Rosa Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2106 S Broad St", "LATITUDE": 39.924168, "LONGITUDE": -75.170097, "DATE_RANGE_START": 2024, "Total Visits": 188.0, "Total Visitors": 88.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 22.0, "Total Spend": 167.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 17.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170097, 39.924168 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7kf", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "265 S Broad St", "LATITUDE": 39.947381, "LONGITUDE": -75.164227, "DATE_RANGE_START": 2024, "Total Visits": 2853.0, "Total Visitors": 1556.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 232.0, "Total Spend": 3031.0, "Total Transactions": 271.0, "Total Customers": 184.0, "Median Spend per Transaction": 8.41, "Median Spend per Customer": 10.93 }, "geometry": { "type": "Point", "coordinates": [ -75.164227, 39.947381 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dw9-835", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "8500 Essington Ave # E8A", "LATITUDE": 39.878273, "LONGITUDE": -75.238948, "DATE_RANGE_START": 2024, "Total Visits": 532.0, "Total Visitors": 459.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 2794.0, "Total Transactions": 154.0, "Total Customers": 146.0, "Median Spend per Transaction": 16.25, "Median Spend per Customer": 16.98 }, "geometry": { "type": "Point", "coordinates": [ -75.238948, 39.878273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pg2-hdv", "Name": "Golden Crust Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "7153 Germantown Ave", "LATITUDE": 40.059871, "LONGITUDE": -75.190661, "DATE_RANGE_START": 2024, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010255003.0, "Median Dwell Time": 9.0, "Total Spend": 3703.0, "Total Transactions": 171.0, "Total Customers": 117.0, "Median Spend per Transaction": 16.82, "Median Spend per Customer": 18.72 }, "geometry": { "type": "Point", "coordinates": [ -75.190661, 40.059871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj2-p5f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1440 E Erie Ave", "LATITUDE": 40.005468, "LONGITUDE": -75.099359, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 171.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 4.0, "Total Spend": 2592.0, "Total Transactions": 53.0, "Total Customers": 43.0, "Median Spend per Transaction": 28.87, "Median Spend per Customer": 29.66 }, "geometry": { "type": "Point", "coordinates": [ -75.099359, 40.005468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@63s-dvw-zj9", "Name": "Lucky Seven Food Market", "Category": "Grocery Stores", "Address": "54 N 57th St", "LATITUDE": 39.962742, "LONGITUDE": -75.234853, "DATE_RANGE_START": 2024, "Total Visits": 137.0, "Total Visitors": 90.0, "POI_CBG": 421010094004.0, "Median Dwell Time": 2.0, "Total Spend": 139.0, "Total Transactions": 11.0, "Total Customers": 5.0, "Median Spend per Transaction": 7.41, "Median Spend per Customer": 18.59 }, "geometry": { "type": "Point", "coordinates": [ -75.234853, 39.962742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-389", "Name": "Wawa", "Category": "Grocery Stores", "Address": "3341 Grant Ave", "LATITUDE": 40.068966, "LONGITUDE": -75.005145, "DATE_RANGE_START": 2024, "Total Visits": 57.0, "Total Visitors": 34.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 3.0, "Total Spend": 52341.0, "Total Transactions": 3161.0, "Total Customers": 1424.0, "Median Spend per Transaction": 11.21, "Median Spend per Customer": 20.24 }, "geometry": { "type": "Point", "coordinates": [ -75.005145, 40.068966 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgm-249", "Name": "East Falls Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4024 Ridge Ave", "LATITUDE": 40.007345, "LONGITUDE": -75.189913, "DATE_RANGE_START": 2024, "Total Visits": 83.0, "Total Visitors": 83.0, "POI_CBG": 421010170001.0, "Median Dwell Time": 2.0, "Total Spend": 7374.0, "Total Transactions": 258.0, "Total Customers": 169.0, "Median Spend per Transaction": 23.0, "Median Spend per Customer": 26.5 }, "geometry": { "type": "Point", "coordinates": [ -75.189913, 40.007345 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-68v", "Name": "Gaffney Fabrics", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "5401 Germantown Ave", "LATITUDE": 40.033419, "LONGITUDE": -75.170579, "DATE_RANGE_START": 2024, "Total Visits": 116.0, "Total Visitors": 82.0, "POI_CBG": 421010246001.0, "Median Dwell Time": 6.0, "Total Spend": 3510.0, "Total Transactions": 107.0, "Total Customers": 79.0, "Median Spend per Transaction": 19.55, "Median Spend per Customer": 26.78 }, "geometry": { "type": "Point", "coordinates": [ -75.170579, 40.033419 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-6hq", "Name": "Auntie Anne's", "Category": "Restaurants and Other Eating Places", "Address": "1568 Franklin Mills Cir Spc 647", "LATITUDE": 40.084404, "LONGITUDE": -74.962397, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 278.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 8.7, "Median Spend per Customer": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -74.962397, 40.084404 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pmb-6p9", "Name": "Dolce Italian Philadelphia", "Category": "Restaurants and Other Eating Places", "Address": "1437 Chestnut St", "LATITUDE": 39.951188, "LONGITUDE": -75.165178, "DATE_RANGE_START": 2024, "Total Visits": 2339.0, "Total Visitors": 1455.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 125.0, "Total Spend": 487.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 59.84, "Median Spend per Customer": 59.84 }, "geometry": { "type": "Point", "coordinates": [ -75.165178, 39.951188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pj9-4d9", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "5723 N Broad St", "LATITUDE": 40.04031, "LONGITUDE": -75.143956, "DATE_RANGE_START": 2024, "Total Visits": 370.0, "Total Visitors": 254.0, "POI_CBG": 421010276002.0, "Median Dwell Time": 12.0, "Total Spend": 186.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 18.31, "Median Spend per Customer": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.143956, 40.04031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj4-nwk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "500 W Erie Ave", "LATITUDE": 40.00722, "LONGITUDE": -75.137234, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010199001.0, "Median Dwell Time": 2.0, "Total Spend": 242.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 32.5, "Median Spend per Customer": 39.25 }, "geometry": { "type": "Point", "coordinates": [ -75.137234, 40.00722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7z-7nq", "Name": "Gallelli Formal Wear", "Category": "Clothing Stores", "Address": "904 Cottman Ave", "LATITUDE": 40.061777, "LONGITUDE": -75.084657, "DATE_RANGE_START": 2024, "Total Visits": 143.0, "Total Visitors": 140.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 1.0, "Total Spend": 843.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 145.0, "Median Spend per Customer": 145.0 }, "geometry": { "type": "Point", "coordinates": [ -75.084657, 40.061777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pm4-dsq", "Name": "Barrel's Fine Food", "Category": "Restaurants and Other Eating Places", "Address": "1725 Wolf St", "LATITUDE": 39.922841, "LONGITUDE": -75.17594, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 61.0, "POI_CBG": 421010039013.0, "Median Dwell Time": 176.0, "Total Spend": 673.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 45.1, "Median Spend per Customer": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.17594, 39.922841 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pmb-p7q", "Name": "The Wardrobe Philadelphia", "Category": "Clothing Stores", "Address": "413 N 4th St", "LATITUDE": 39.958203, "LONGITUDE": -75.145206, "DATE_RANGE_START": 2024, "Total Visits": 461.0, "Total Visitors": 292.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1315.0, "Total Spend": 645.0, "Total Transactions": 34.0, "Total Customers": 20.0, "Median Spend per Transaction": 12.28, "Median Spend per Customer": 21.96 }, "geometry": { "type": "Point", "coordinates": [ -75.145206, 39.958203 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-rrk", "Name": "Lowe's", "Category": "Building Material and Supplies Dealers", "Address": "3800 Aramingo Ave", "LATITUDE": 39.99756, "LONGITUDE": -75.091212, "DATE_RANGE_START": 2024, "Total Visits": 2561.0, "Total Visitors": 1752.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 13.0, "Total Spend": 42211.0, "Total Transactions": 416.0, "Total Customers": 234.0, "Median Spend per Transaction": 43.64, "Median Spend per Customer": 62.74 }, "geometry": { "type": "Point", "coordinates": [ -75.091212, 39.99756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p8d-zj9", "Name": "A Plus", "Category": "Grocery Stores", "Address": "5240 Torresdale Ave", "LATITUDE": 40.013685, "LONGITUDE": -75.069008, "DATE_RANGE_START": 2024, "Total Visits": 617.0, "Total Visitors": 516.0, "POI_CBG": 421010298005.0, "Median Dwell Time": 2.0, "Total Spend": 462.0, "Total Transactions": 45.0, "Total Customers": 30.0, "Median Spend per Transaction": 10.81, "Median Spend per Customer": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.069008, 40.013685 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pm4-p5f", "Name": "Skyline Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "505 Washington Ave", "LATITUDE": 39.935005, "LONGITUDE": -75.152632, "DATE_RANGE_START": 2024, "Total Visits": 496.0, "Total Visitors": 473.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 1.0, "Total Spend": 665.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 252.6, "Median Spend per Customer": 252.6 }, "geometry": { "type": "Point", "coordinates": [ -75.152632, 39.935005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-ph8-yvz", "Name": "Green Leaf Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7522 Haverford Ave", "LATITUDE": 39.97744, "LONGITUDE": -75.266357, "DATE_RANGE_START": 2024, "Total Visits": 308.0, "Total Visitors": 228.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 21.0, "Total Spend": 665.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 18.11, "Median Spend per Customer": 23.96 }, "geometry": { "type": "Point", "coordinates": [ -75.266357, 39.97744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgj-4n5", "Name": "Old Nelson Food Company", "Category": "Beer, Wine, and Liquor Stores", "Address": "1100 W Montgomery Ave Ste D", "LATITUDE": 39.979391, "LONGITUDE": -75.152636, "DATE_RANGE_START": 2024, "Total Visits": 706.0, "Total Visitors": 336.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 6.0, "Total Spend": 11833.0, "Total Transactions": 856.0, "Total Customers": 583.0, "Median Spend per Transaction": 12.04, "Median Spend per Customer": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -75.152636, 39.979391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnw-yvz", "Name": "Girard Beer Distributors", "Category": "Beer, Wine, and Liquor Stores", "Address": "820 W Girard Ave", "LATITUDE": 39.970277, "LONGITUDE": -75.150793, "DATE_RANGE_START": 2024, "Total Visits": 199.0, "Total Visitors": 192.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 1.0, "Total Spend": 4848.0, "Total Transactions": 232.0, "Total Customers": 138.0, "Median Spend per Transaction": 19.99, "Median Spend per Customer": 25.5 }, "geometry": { "type": "Point", "coordinates": [ -75.150793, 39.970277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dwc-6x5", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "2650 Penrose Ave", "LATITUDE": 39.903294, "LONGITUDE": -75.198054, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 20.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 41161.0, "Total Transactions": 2462.0, "Total Customers": 1694.0, "Median Spend per Transaction": 13.48, "Median Spend per Customer": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.198054, 39.903294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp5-2rk", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2 Lehigh Ave", "LATITUDE": 39.991023, "LONGITUDE": -75.135293, "DATE_RANGE_START": 2024, "Total Visits": 1255.0, "Total Visitors": 789.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 3.0, "Total Spend": 16461.0, "Total Transactions": 1148.0, "Total Customers": 681.0, "Median Spend per Transaction": 11.77, "Median Spend per Customer": 17.61 }, "geometry": { "type": "Point", "coordinates": [ -75.135293, 39.991023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p7x-vfz", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7400 Bustleton Ave", "LATITUDE": 40.051188, "LONGITUDE": -75.059494, "DATE_RANGE_START": 2024, "Total Visits": 3470.0, "Total Visitors": 2384.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 13.0, "Total Spend": 37514.0, "Total Transactions": 907.0, "Total Customers": 739.0, "Median Spend per Transaction": 26.06, "Median Spend per Customer": 33.46 }, "geometry": { "type": "Point", "coordinates": [ -75.059494, 40.051188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-2zf", "Name": "Helm", "Category": "Restaurants and Other Eating Places", "Address": "1303 N 5th St", "LATITUDE": 39.971556, "LONGITUDE": -75.144508, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010144001.0, "Median Dwell Time": 9.0, "Total Spend": 550.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 209.04, "Median Spend per Customer": 209.04 }, "geometry": { "type": "Point", "coordinates": [ -75.144508, 39.971556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp5-nbk", "Name": "Nunez Grocery", "Category": "Grocery Stores", "Address": "3000 B St", "LATITUDE": 39.995073, "LONGITUDE": -75.126158, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 70.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 3.0, "Total Spend": 1066.0, "Total Transactions": 112.0, "Total Customers": 58.0, "Median Spend per Transaction": 8.83, "Median Spend per Customer": 10.62 }, "geometry": { "type": "Point", "coordinates": [ -75.126158, 39.995073 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23z-222@628-pm5-q4v", "Name": "Skechers", "Category": "Shoe Stores", "Address": "330 W Oregon Ave Ste 210A", "LATITUDE": 39.913849, "LONGITUDE": -75.154434, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 489.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 99.86, "Median Spend per Customer": 99.86 }, "geometry": { "type": "Point", "coordinates": [ -75.154434, 39.913849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-2x5", "Name": "LongHorn Steakhouse", "Category": "Restaurants and Other Eating Places", "Address": "2120 S Columbus Blvd", "LATITUDE": 39.919428, "LONGITUDE": -75.14118, "DATE_RANGE_START": 2024, "Total Visits": 1232.0, "Total Visitors": 953.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 61.0, "Total Spend": 326.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 85.03, "Median Spend per Customer": 85.03 }, "geometry": { "type": "Point", "coordinates": [ -75.14118, 39.919428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dw4-rzf", "Name": "La Tapenade Mediterranean Cafe", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895188, "LONGITUDE": -75.227951, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 21.0, "Total Spend": 5839.0, "Total Transactions": 248.0, "Total Customers": 215.0, "Median Spend per Transaction": 15.75, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.227951, 39.895188 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "252-222@628-pmf-qs5", "Name": "The Quick Fixx", "Category": "Restaurants and Other Eating Places", "Address": "1511 South St", "LATITUDE": 39.944054, "LONGITUDE": -75.167608, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 165.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 28.0, "Total Spend": 1797.0, "Total Transactions": 90.0, "Total Customers": 58.0, "Median Spend per Transaction": 18.31, "Median Spend per Customer": 20.43 }, "geometry": { "type": "Point", "coordinates": [ -75.167608, 39.944054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm4-b8v", "Name": "Hyon's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "1320 S 21st St", "LATITUDE": 39.935029, "LONGITUDE": -75.179358, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 41.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 2.0, "Total Spend": 2384.0, "Total Transactions": 126.0, "Total Customers": 63.0, "Median Spend per Transaction": 17.16, "Median Spend per Customer": 20.19 }, "geometry": { "type": "Point", "coordinates": [ -75.179358, 39.935029 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm4-yjv", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1730 Washington Ave", "LATITUDE": 39.93815, "LONGITUDE": -75.172716, "DATE_RANGE_START": 2024, "Total Visits": 155.0, "Total Visitors": 50.0, "POI_CBG": 421010022003.0, "Median Dwell Time": 118.0, "Total Spend": 1396.0, "Total Transactions": 30.0, "Total Customers": 30.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 19.43 }, "geometry": { "type": "Point", "coordinates": [ -75.172716, 39.93815 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-zs5", "Name": "SquareBurger", "Category": "Restaurants and Other Eating Places", "Address": "200 N 6th St", "LATITUDE": 39.955657, "LONGITUDE": -75.150134, "DATE_RANGE_START": 2024, "Total Visits": 300.0, "Total Visitors": 157.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 27.0, "Total Spend": 345.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 13.2, "Median Spend per Customer": 14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.150134, 39.955657 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pm4-xkf", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1000 S Broad St", "LATITUDE": 39.938638, "LONGITUDE": -75.166964, "DATE_RANGE_START": 2024, "Total Visits": 804.0, "Total Visitors": 470.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 7.0, "Total Spend": 15704.0, "Total Transactions": 918.0, "Total Customers": 620.0, "Median Spend per Transaction": 14.97, "Median Spend per Customer": 18.04 }, "geometry": { "type": "Point", "coordinates": [ -75.166964, 39.938638 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7v-hwk", "Name": "Cantinho Brasileiro Restaurante", "Category": "Restaurants and Other Eating Places", "Address": "7536 Castor Ave", "LATITUDE": 40.055435, "LONGITUDE": -75.062661, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 104.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 4.0, "Total Spend": 1149.0, "Total Transactions": 45.0, "Total Customers": 32.0, "Median Spend per Transaction": 23.66, "Median Spend per Customer": 28.19 }, "geometry": { "type": "Point", "coordinates": [ -75.062661, 40.055435 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgm-6ff", "Name": "Fiorino", "Category": "Restaurants and Other Eating Places", "Address": "3572 Indian Queen Ln", "LATITUDE": 40.009811, "LONGITUDE": -75.190476, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010207004.0, "Median Dwell Time": null, "Total Spend": 2397.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 97.28, "Median Spend per Customer": 97.28 }, "geometry": { "type": "Point", "coordinates": [ -75.190476, 40.009811 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pj5-swk", "Name": "John's Pizza Express", "Category": "Restaurants and Other Eating Places", "Address": "626 W Luzerne St", "LATITUDE": 40.01218, "LONGITUDE": -75.138578, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 413.0, "POI_CBG": 421010198004.0, "Median Dwell Time": 21.0, "Total Spend": 73.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 17.71, "Median Spend per Customer": 17.71 }, "geometry": { "type": "Point", "coordinates": [ -75.138578, 40.01218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24g-222@628-pj5-t9z", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "4001 N 5th St", "LATITUDE": 40.012253, "LONGITUDE": -75.135583, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 190.0, "POI_CBG": 421010383003.0, "Median Dwell Time": 9.0, "Total Spend": 3096.0, "Total Transactions": 166.0, "Total Customers": 138.0, "Median Spend per Transaction": 15.9, "Median Spend per Customer": 17.48 }, "geometry": { "type": "Point", "coordinates": [ -75.135583, 40.012253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pj3-vs5", "Name": "Crab Shack", "Category": "Specialty Food Stores", "Address": "4800 N 16th St", "LATITUDE": 40.027026, "LONGITUDE": -75.15079, "DATE_RANGE_START": 2024, "Total Visits": 58.0, "Total Visitors": 58.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 6.0, "Total Spend": 4998.0, "Total Transactions": 143.0, "Total Customers": 103.0, "Median Spend per Transaction": 32.0, "Median Spend per Customer": 37.5 }, "geometry": { "type": "Point", "coordinates": [ -75.15079, 40.027026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-p8m-st9", "Name": "Philly Pretzel Factory", "Category": "Specialty Food Stores", "Address": "5200 Frankford Ave", "LATITUDE": 40.022444, "LONGITUDE": -75.07849, "DATE_RANGE_START": 2024, "Total Visits": 97.0, "Total Visitors": 49.0, "POI_CBG": 421010302001.0, "Median Dwell Time": 1.0, "Total Spend": 5195.0, "Total Transactions": 627.0, "Total Customers": 456.0, "Median Spend per Transaction": 6.31, "Median Spend per Customer": 8.83 }, "geometry": { "type": "Point", "coordinates": [ -75.07849, 40.022444 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-223@628-pm4-mff", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1034 Washington Ave # 38", "LATITUDE": 39.936758, "LONGITUDE": -75.161139, "DATE_RANGE_START": 2024, "Total Visits": 482.0, "Total Visitors": 445.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 3.0, "Total Spend": 1809.0, "Total Transactions": 126.0, "Total Customers": 76.0, "Median Spend per Transaction": 12.62, "Median Spend per Customer": 15.49 }, "geometry": { "type": "Point", "coordinates": [ -75.161139, 39.936758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgk-sqz", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "4030 City Ave", "LATITUDE": 40.007466, "LONGITUDE": -75.212296, "DATE_RANGE_START": 2024, "Total Visits": 764.0, "Total Visitors": 599.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 7.0, "Total Spend": 14220.0, "Total Transactions": 894.0, "Total Customers": 689.0, "Median Spend per Transaction": 14.26, "Median Spend per Customer": 15.45 }, "geometry": { "type": "Point", "coordinates": [ -75.212296, 40.007466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm3-xwk", "Name": "Hive Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1444 S Broad St", "LATITUDE": 39.931825, "LONGITUDE": -75.168368, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010030021.0, "Median Dwell Time": 8.0, "Total Spend": 3175.0, "Total Transactions": 286.0, "Total Customers": 140.0, "Median Spend per Transaction": 9.18, "Median Spend per Customer": 16.85 }, "geometry": { "type": "Point", "coordinates": [ -75.168368, 39.931825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pj8-qs5", "Name": "Cafe Saigon", "Category": "Restaurants and Other Eating Places", "Address": "827 Adams Ave", "LATITUDE": 40.031457, "LONGITUDE": -75.103796, "DATE_RANGE_START": 2024, "Total Visits": 279.0, "Total Visitors": 186.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 3.0, "Total Spend": 1264.0, "Total Transactions": 38.0, "Total Customers": 30.0, "Median Spend per Transaction": 27.0, "Median Spend per Customer": 25.38 }, "geometry": { "type": "Point", "coordinates": [ -75.103796, 40.031457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj5-c89", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "100 W Erie Ave", "LATITUDE": 40.007079, "LONGITUDE": -75.128063, "DATE_RANGE_START": 2024, "Total Visits": 383.0, "Total Visitors": 357.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 5.0, "Total Spend": 10392.0, "Total Transactions": 687.0, "Total Customers": 440.0, "Median Spend per Transaction": 12.05, "Median Spend per Customer": 16.88 }, "geometry": { "type": "Point", "coordinates": [ -75.128063, 40.007079 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-224@628-pg8-ks5", "Name": "Harper's Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "2827 W Girard Ave", "LATITUDE": 39.974726, "LONGITUDE": -75.182771, "DATE_RANGE_START": 2024, "Total Visits": 515.0, "Total Visitors": 308.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 47.0, "Total Spend": 2256.0, "Total Transactions": 186.0, "Total Customers": 147.0, "Median Spend per Transaction": 10.72, "Median Spend per Customer": 12.63 }, "geometry": { "type": "Point", "coordinates": [ -75.182771, 39.974726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pfy-d7q", "Name": "Alex's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "400 Leverington Ave", "LATITUDE": 40.034052, "LONGITUDE": -75.220933, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010213001.0, "Median Dwell Time": 1.0, "Total Spend": 1113.0, "Total Transactions": 59.0, "Total Customers": 49.0, "Median Spend per Transaction": 16.45, "Median Spend per Customer": 19.04 }, "geometry": { "type": "Point", "coordinates": [ -75.220933, 40.034052 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-p8f-djv", "Name": "Happy Garden", "Category": "Restaurants and Other Eating Places", "Address": "4710 Oxford Ave", "LATITUDE": 40.017133, "LONGITUDE": -75.084023, "DATE_RANGE_START": 2024, "Total Visits": 445.0, "Total Visitors": 244.0, "POI_CBG": 421010300006.0, "Median Dwell Time": 200.0, "Total Spend": 427.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 16.04, "Median Spend per Customer": 16.04 }, "geometry": { "type": "Point", "coordinates": [ -75.084023, 40.017133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pp2-q75", "Name": "Kensington Pub", "Category": "Restaurants and Other Eating Places", "Address": "2116 E Tioga St", "LATITUDE": 39.995547, "LONGITUDE": -75.102511, "DATE_RANGE_START": 2024, "Total Visits": 125.0, "Total Visitors": 125.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 5.0, "Total Spend": 539.0, "Total Transactions": 21.0, "Total Customers": 16.0, "Median Spend per Transaction": 10.62, "Median Spend per Customer": 18.5 }, "geometry": { "type": "Point", "coordinates": [ -75.102511, 39.995547 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dvw-tgk", "Name": "Gigi & Big R", "Category": "Restaurants and Other Eating Places", "Address": "5943 Haverford Ave", "LATITUDE": 39.969832, "LONGITUDE": -75.238723, "DATE_RANGE_START": 2024, "Total Visits": 232.0, "Total Visitors": 201.0, "POI_CBG": 421010095004.0, "Median Dwell Time": 1.0, "Total Spend": 649.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 17.68, "Median Spend per Customer": 22.7 }, "geometry": { "type": "Point", "coordinates": [ -75.238723, 39.969832 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22d@628-pmf-sqz", "Name": "Real Food Eatery", "Category": "Restaurants and Other Eating Places", "Address": "207 S 16th St", "LATITUDE": 39.949411, "LONGITUDE": -75.16733, "DATE_RANGE_START": 2024, "Total Visits": 295.0, "Total Visitors": 253.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 6.0, "Total Spend": 782.0, "Total Transactions": 42.0, "Total Customers": 38.0, "Median Spend per Transaction": 16.58, "Median Spend per Customer": 18.23 }, "geometry": { "type": "Point", "coordinates": [ -75.16733, 39.949411 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pm9-5xq", "Name": "The Pizza Shack", "Category": "Restaurants and Other Eating Places", "Address": "1500 W Porter St", "LATITUDE": 39.919497, "LONGITUDE": -75.172624, "DATE_RANGE_START": 2024, "Total Visits": 157.0, "Total Visitors": 124.0, "POI_CBG": 421010039021.0, "Median Dwell Time": 5.0, "Total Spend": 314.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 54.0, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.172624, 39.919497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8t-4vz", "Name": "Asian Chopsticks", "Category": "Restaurants and Other Eating Places", "Address": "4044 Woodhaven Rd", "LATITUDE": 40.084798, "LONGITUDE": -74.970671, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 149.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 22.0, "Total Spend": 3993.0, "Total Transactions": 205.0, "Total Customers": 53.0, "Median Spend per Transaction": 19.66, "Median Spend per Customer": 30.75 }, "geometry": { "type": "Point", "coordinates": [ -74.970671, 40.084798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmb-5pv", "Name": "Hard Rock Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1113 Market St", "LATITUDE": 39.952216, "LONGITUDE": -75.159642, "DATE_RANGE_START": 2024, "Total Visits": 983.0, "Total Visitors": 694.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 43.0, "Total Spend": 18810.0, "Total Transactions": 308.0, "Total Customers": 274.0, "Median Spend per Transaction": 44.34, "Median Spend per Customer": 52.19 }, "geometry": { "type": "Point", "coordinates": [ -75.159642, 39.952216 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-223@628-pnw-pjv", "Name": "Pizza Shackamaxon", "Category": "Restaurants and Other Eating Places", "Address": "115 E Girard Ave", "LATITUDE": 39.969232, "LONGITUDE": -75.13394, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 165.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 2.0, "Total Spend": 512.0, "Total Transactions": 24.0, "Total Customers": 20.0, "Median Spend per Transaction": 20.21, "Median Spend per Customer": 25.84 }, "geometry": { "type": "Point", "coordinates": [ -75.13394, 39.969232 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-223@628-pm4-p5f", "Name": "Sophie's Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "522 Washington Ave", "LATITUDE": 39.934749, "LONGITUDE": -75.153259, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010025004.0, "Median Dwell Time": 10.0, "Total Spend": 1036.0, "Total Transactions": 26.0, "Total Customers": 25.0, "Median Spend per Transaction": 36.71, "Median Spend per Customer": 40.24 }, "geometry": { "type": "Point", "coordinates": [ -75.153259, 39.934749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@63s-dvy-xwk", "Name": "Tampopo", "Category": "Restaurants and Other Eating Places", "Address": "269 S 44th St", "LATITUDE": 39.953009, "LONGITUDE": -75.210311, "DATE_RANGE_START": 2024, "Total Visits": 692.0, "Total Visitors": 209.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 334.0, "Total Spend": 1432.0, "Total Transactions": 59.0, "Total Customers": 46.0, "Median Spend per Transaction": 19.17, "Median Spend per Customer": 28.08 }, "geometry": { "type": "Point", "coordinates": [ -75.210311, 39.953009 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-y7q", "Name": "Bubblefish", "Category": "Restaurants and Other Eating Places", "Address": "909 Arch St", "LATITUDE": 39.953571, "LONGITUDE": -75.155163, "DATE_RANGE_START": 2024, "Total Visits": 4262.0, "Total Visitors": 2963.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 9709.0, "Total Transactions": 149.0, "Total Customers": 140.0, "Median Spend per Transaction": 50.47, "Median Spend per Customer": 51.88 }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.953571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5s5", "Name": "Loews Philadelphia Hotel", "Category": "Traveler Accommodation", "Address": "1200 Market St", "LATITUDE": 39.951431, "LONGITUDE": -75.160166, "DATE_RANGE_START": 2024, "Total Visits": 13022.0, "Total Visitors": 8378.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 16.0, "Total Spend": 55473.0, "Total Transactions": 656.0, "Total Customers": 370.0, "Median Spend per Transaction": 22.19, "Median Spend per Customer": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.160166, 39.951431 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pjg-26k", "Name": "Thai Kuu", "Category": "Restaurants and Other Eating Places", "Address": "35 Bethlehem Pike Ste 109A", "LATITUDE": 40.077987, "LONGITUDE": -75.208561, "DATE_RANGE_START": 2024, "Total Visits": 246.0, "Total Visitors": 150.0, "POI_CBG": 421010387002.0, "Median Dwell Time": 5.0, "Total Spend": 1279.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 55.08, "Median Spend per Customer": 55.08 }, "geometry": { "type": "Point", "coordinates": [ -75.208561, 40.077987 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24x-222@628-pm4-n3q", "Name": "Geno's Steaks", "Category": "Restaurants and Other Eating Places", "Address": "1219 S 9th St", "LATITUDE": 39.933795, "LONGITUDE": -75.158835, "DATE_RANGE_START": 2024, "Total Visits": 421.0, "Total Visitors": 396.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 5.0, "Total Spend": 3969.0, "Total Transactions": 161.0, "Total Customers": 155.0, "Median Spend per Transaction": 21.7, "Median Spend per Customer": 22.1 }, "geometry": { "type": "Point", "coordinates": [ -75.158835, 39.933795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-224@628-ph6-p5f", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1501 N 52nd St", "LATITUDE": 39.977332, "LONGITUDE": -75.226013, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010111005.0, "Median Dwell Time": 4.0, "Total Spend": 2842.0, "Total Transactions": 399.0, "Total Customers": 196.0, "Median Spend per Transaction": 5.8, "Median Spend per Customer": 10.12 }, "geometry": { "type": "Point", "coordinates": [ -75.226013, 39.977332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-5vf", "Name": "Kung Fu Tea", "Category": "Restaurants and Other Eating Places", "Address": "2222 Cottman Ave", "LATITUDE": 40.048498, "LONGITUDE": -75.061863, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 163.0, "POI_CBG": 421010314012.0, "Median Dwell Time": 3.0, "Total Spend": 174.0, "Total Transactions": 16.0, "Total Customers": 13.0, "Median Spend per Transaction": 7.56, "Median Spend per Customer": 10.11 }, "geometry": { "type": "Point", "coordinates": [ -75.061863, 40.048498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj8-dsq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5700 Roosevelt Blvd", "LATITUDE": 40.032452, "LONGITUDE": -75.085235, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010390004.0, "Median Dwell Time": 3.0, "Total Spend": 168.0, "Total Transactions": 11.0, "Total Customers": 5.0, "Median Spend per Transaction": 15.54, "Median Spend per Customer": 11.29 }, "geometry": { "type": "Point", "coordinates": [ -75.085235, 40.032452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p82-8y9", "Name": "Casa Del Mofongo", "Category": "Restaurants and Other Eating Places", "Address": "1059 Van Kirk St", "LATITUDE": 40.036175, "LONGITUDE": -75.088212, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010390002.0, "Median Dwell Time": 81.0, "Total Spend": 2023.0, "Total Transactions": 54.0, "Total Customers": 38.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.088212, 40.036175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-hh5", "Name": "Crazy Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1837 Chestnut St", "LATITUDE": 39.952033, "LONGITUDE": -75.171681, "DATE_RANGE_START": 2024, "Total Visits": 283.0, "Total Visitors": 270.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 2135.0, "Total Transactions": 66.0, "Total Customers": 62.0, "Median Spend per Transaction": 23.44, "Median Spend per Customer": 20.52 }, "geometry": { "type": "Point", "coordinates": [ -75.171681, 39.952033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p8h-vvf", "Name": "Lee's Deli", "Category": "Restaurants and Other Eating Places", "Address": "7601 Torresdale Ave", "LATITUDE": 40.032772, "LONGITUDE": -75.029499, "DATE_RANGE_START": 2024, "Total Visits": 71.0, "Total Visitors": 71.0, "POI_CBG": 421010330004.0, "Median Dwell Time": null, "Total Spend": 780.0, "Total Transactions": 43.0, "Total Customers": 38.0, "Median Spend per Transaction": 17.55, "Median Spend per Customer": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.029499, 40.032772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-6p9", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "1515 Chestnut St", "LATITUDE": 39.951312, "LONGITUDE": -75.166086, "DATE_RANGE_START": 2024, "Total Visits": 503.0, "Total Visitors": 353.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 101.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 17.31, "Median Spend per Customer": 17.31 }, "geometry": { "type": "Point", "coordinates": [ -75.166086, 39.951312 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pgb-st9", "Name": "South", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1410 Mount Vernon St", "LATITUDE": 39.964359, "LONGITUDE": -75.161465, "DATE_RANGE_START": 2024, "Total Visits": 567.0, "Total Visitors": 355.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 171.0, "Total Spend": 239.0, "Total Transactions": 11.0, "Total Customers": 7.0, "Median Spend per Transaction": 12.06, "Median Spend per Customer": 29.92 }, "geometry": { "type": "Point", "coordinates": [ -75.161465, 39.964359 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pgj-n5z", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "701 W Lehigh Ave", "LATITUDE": 39.992946, "LONGITUDE": -75.144703, "DATE_RANGE_START": 2024, "Total Visits": 345.0, "Total Visitors": 309.0, "POI_CBG": 421010175003.0, "Median Dwell Time": 4.0, "Total Spend": 3484.0, "Total Transactions": 242.0, "Total Customers": 197.0, "Median Spend per Transaction": 12.55, "Median Spend per Customer": 14.06 }, "geometry": { "type": "Point", "coordinates": [ -75.144703, 39.992946 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p8t-vmk", "Name": "Arby's", "Category": "Restaurants and Other Eating Places", "Address": "577 Franklin Mills Cir", "LATITUDE": 40.089864, "LONGITUDE": -74.964163, "DATE_RANGE_START": 2024, "Total Visits": 323.0, "Total Visitors": 295.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 10.0, "Total Spend": 3772.0, "Total Transactions": 234.0, "Total Customers": 183.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 15.97 }, "geometry": { "type": "Point", "coordinates": [ -74.964163, 40.089864 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p8t-6kz", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4301 Byberry Rd # 2650", "LATITUDE": 40.085677, "LONGITUDE": -74.967871, "DATE_RANGE_START": 2024, "Total Visits": 1363.0, "Total Visitors": 882.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 22.0, "Total Spend": 549.0, "Total Transactions": 46.0, "Total Customers": 42.0, "Median Spend per Transaction": 9.27, "Median Spend per Customer": 9.1 }, "geometry": { "type": "Point", "coordinates": [ -74.967871, 40.085677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvp-bff", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5716 Baltimore Ave", "LATITUDE": 39.945921, "LONGITUDE": -75.239017, "DATE_RANGE_START": 2024, "Total Visits": 402.0, "Total Visitors": 273.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 4.0, "Total Spend": 7557.0, "Total Transactions": 944.0, "Total Customers": 358.0, "Median Spend per Transaction": 6.79, "Median Spend per Customer": 11.69 }, "geometry": { "type": "Point", "coordinates": [ -75.239017, 39.945921 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvx-w49", "Name": "Grindcore House", "Category": "Restaurants and Other Eating Places", "Address": "4134 Chester Ave", "LATITUDE": 39.948198, "LONGITUDE": -75.206865, "DATE_RANGE_START": 2024, "Total Visits": 378.0, "Total Visitors": 237.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 67.0, "Total Spend": 4701.0, "Total Transactions": 353.0, "Total Customers": 246.0, "Median Spend per Transaction": 10.72, "Median Spend per Customer": 14.28 }, "geometry": { "type": "Point", "coordinates": [ -75.206865, 39.948198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-223@628-pfz-bhq", "Name": "Valerio Coffee Roasters", "Category": "Restaurants and Other Eating Places", "Address": "4373 Main St", "LATITUDE": 40.025342, "LONGITUDE": -75.222719, "DATE_RANGE_START": 2024, "Total Visits": 233.0, "Total Visitors": 187.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 41.0, "Total Spend": 569.0, "Total Transactions": 68.0, "Total Customers": 47.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 8.95 }, "geometry": { "type": "Point", "coordinates": [ -75.222719, 40.025342 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pm6-hkf", "Name": "City Pizza", "Category": "Restaurants and Other Eating Places", "Address": "100 Snyder Ave", "LATITUDE": 39.921478, "LONGITUDE": -75.148705, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010042013.0, "Median Dwell Time": 241.0, "Total Spend": 1916.0, "Total Transactions": 68.0, "Total Customers": 63.0, "Median Spend per Transaction": 26.05, "Median Spend per Customer": 28.79 }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.921478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm4-kzz", "Name": "Slice", "Category": "Restaurants and Other Eating Places", "Address": "1180 S 10th St", "LATITUDE": 39.934663, "LONGITUDE": -75.160581, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 142.0, "POI_CBG": 421010023001.0, "Median Dwell Time": 2.0, "Total Spend": 5332.0, "Total Transactions": 180.0, "Total Customers": 157.0, "Median Spend per Transaction": 22.68, "Median Spend per Customer": 22.68 }, "geometry": { "type": "Point", "coordinates": [ -75.160581, 39.934663 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7x-cyv", "Name": "El Provocon", "Category": "Restaurants and Other Eating Places", "Address": "2843 Tyson Ave", "LATITUDE": 40.039466, "LONGITUDE": -75.056309, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 113.0, "POI_CBG": 421010315021.0, "Median Dwell Time": 3.0, "Total Spend": 1932.0, "Total Transactions": 66.0, "Total Customers": 55.0, "Median Spend per Transaction": 23.37, "Median Spend per Customer": 28.54 }, "geometry": { "type": "Point", "coordinates": [ -75.056309, 40.039466 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24y-222@628-pnx-d9z", "Name": "Reanimator Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1523 E Susquehanna Ave", "LATITUDE": 39.976459, "LONGITUDE": -75.126998, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010158002.0, "Median Dwell Time": 1.0, "Total Spend": 91.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 9.1, "Median Spend per Customer": 13.59 }, "geometry": { "type": "Point", "coordinates": [ -75.126998, 39.976459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-p35", "Name": "Staples", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "1300 S Columbus Blvd", "LATITUDE": 39.93016, "LONGITUDE": -75.144771, "DATE_RANGE_START": 2024, "Total Visits": 660.0, "Total Visitors": 524.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 4.0, "Total Spend": 1908.0, "Total Transactions": 47.0, "Total Customers": 41.0, "Median Spend per Transaction": 20.84, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.144771, 39.93016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgg-f2k", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "2201 W Allegheny Ave", "LATITUDE": 40.003683, "LONGITUDE": -75.166326, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 111.0, "POI_CBG": 421010171003.0, "Median Dwell Time": 6.0, "Total Spend": 614.0, "Total Transactions": 41.0, "Total Customers": 32.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 9.81 }, "geometry": { "type": "Point", "coordinates": [ -75.166326, 40.003683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p7w-gc5", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "7965 Verree Rd", "LATITUDE": 40.072472, "LONGITUDE": -75.075745, "DATE_RANGE_START": 2024, "Total Visits": 681.0, "Total Visitors": 512.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 3.0, "Total Spend": 403.0, "Total Transactions": 37.0, "Total Customers": 22.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 18.87 }, "geometry": { "type": "Point", "coordinates": [ -75.075745, 40.072472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfy-f75", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "6201 Ridge Ave", "LATITUDE": 40.036034, "LONGITUDE": -75.217348, "DATE_RANGE_START": 2024, "Total Visits": 611.0, "Total Visitors": 377.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 1.0, "Total Spend": 547.0, "Total Transactions": 18.0, "Total Customers": 14.0, "Median Spend per Transaction": 38.43, "Median Spend per Customer": 40.94 }, "geometry": { "type": "Point", "coordinates": [ -75.217348, 40.036034 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22r@628-p7x-5s5", "Name": "Hair Buzz", "Category": "Health and Personal Care Stores", "Address": "2201 Cottman Ave", "LATITUDE": 40.04942, "LONGITUDE": -75.061163, "DATE_RANGE_START": 2024, "Total Visits": 3520.0, "Total Visitors": 1902.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 16.0, "Total Spend": 81317.0, "Total Transactions": 2413.0, "Total Customers": 1938.0, "Median Spend per Transaction": 23.31, "Median Spend per Customer": 28.95 }, "geometry": { "type": "Point", "coordinates": [ -75.061163, 40.04942 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22x@628-pmf-jd9", "Name": "Sunglass Hut", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.952006, "LONGITUDE": -75.16828, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 1446.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 272.16, "Median Spend per Customer": 272.16 }, "geometry": { "type": "Point", "coordinates": [ -75.16828, 39.952006 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-229@628-pmf-mff", "Name": "Federal Donuts", "Category": "Restaurants and Other Eating Places", "Address": "1776 Benjamin Franklin Pkwy", "LATITUDE": 39.956193, "LONGITUDE": -75.1692, "DATE_RANGE_START": 2024, "Total Visits": 2138.0, "Total Visitors": 1428.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 31.0, "Total Spend": 1971.0, "Total Transactions": 120.0, "Total Customers": 103.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 13.27 }, "geometry": { "type": "Point", "coordinates": [ -75.1692, 39.956193 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p8n-b8v", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6401 Roosevelt Blvd", "LATITUDE": 40.034949, "LONGITUDE": -75.06865, "DATE_RANGE_START": 2024, "Total Visits": 438.0, "Total Visitors": 300.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 3.0, "Total Spend": 2845.0, "Total Transactions": 333.0, "Total Customers": 183.0, "Median Spend per Transaction": 7.49, "Median Spend per Customer": 12.48 }, "geometry": { "type": "Point", "coordinates": [ -75.06865, 40.034949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-cqz", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "600 S 9th St", "LATITUDE": 39.942512, "LONGITUDE": -75.157213, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 1.0, "Total Spend": 2900.0, "Total Transactions": 311.0, "Total Customers": 192.0, "Median Spend per Transaction": 7.15, "Median Spend per Customer": 8.23 }, "geometry": { "type": "Point", "coordinates": [ -75.157213, 39.942512 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p7c-fcq", "Name": "Don Panchito Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "3180 Grant Ave", "LATITUDE": 40.069387, "LONGITUDE": -75.008547, "DATE_RANGE_START": 2024, "Total Visits": 342.0, "Total Visitors": 207.0, "POI_CBG": 421010348022.0, "Median Dwell Time": 7.0, "Total Spend": 54.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.008547, 40.069387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-47q", "Name": "Beauty Time", "Category": "Health and Personal Care Stores", "Address": "5694 Rising Sun Ave Ste 9", "LATITUDE": 40.040779, "LONGITUDE": -75.109561, "DATE_RANGE_START": 2024, "Total Visits": 326.0, "Total Visitors": 276.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 11.0, "Total Spend": 5127.0, "Total Transactions": 174.0, "Total Customers": 137.0, "Median Spend per Transaction": 19.66, "Median Spend per Customer": 23.97 }, "geometry": { "type": "Point", "coordinates": [ -75.109561, 40.040779 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-x3q", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1002 S Broad St", "LATITUDE": 39.938273, "LONGITUDE": -75.166962, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 2.0, "Total Spend": 2901.0, "Total Transactions": 307.0, "Total Customers": 195.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 11.37 }, "geometry": { "type": "Point", "coordinates": [ -75.166962, 39.938273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj2-ndv", "Name": "Angelo's Pizza House", "Category": "Restaurants and Other Eating Places", "Address": "3901 Frankford Ave", "LATITUDE": 40.0038, "LONGITUDE": -75.094018, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010382003.0, "Median Dwell Time": null, "Total Spend": 584.0, "Total Transactions": 32.0, "Total Customers": 26.0, "Median Spend per Transaction": 15.63, "Median Spend per Customer": 19.44 }, "geometry": { "type": "Point", "coordinates": [ -75.094018, 40.0038 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pm9-tn5", "Name": "El Fuego", "Category": "Restaurants and Other Eating Places", "Address": "723 Walnut St", "LATITUDE": 39.948156, "LONGITUDE": -75.153552, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 3.0, "Total Spend": 307.0, "Total Transactions": 18.0, "Total Customers": 12.0, "Median Spend per Transaction": 15.72, "Median Spend per Customer": 24.59 }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.948156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pm9-zs5", "Name": "Tattooed Mom", "Category": "Restaurants and Other Eating Places", "Address": "530 South St", "LATITUDE": 39.941873, "LONGITUDE": -75.151859, "DATE_RANGE_START": 2024, "Total Visits": 361.0, "Total Visitors": 328.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 51.0, "Total Spend": 17661.0, "Total Transactions": 516.0, "Total Customers": 423.0, "Median Spend per Transaction": 25.94, "Median Spend per Customer": 33.76 }, "geometry": { "type": "Point", "coordinates": [ -75.151859, 39.941873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmb-5vf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1 Penn Sq E", "LATITUDE": 39.952459, "LONGITUDE": -75.162267, "DATE_RANGE_START": 2024, "Total Visits": 1519.0, "Total Visitors": 1112.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 6.0, "Total Spend": 6119.0, "Total Transactions": 853.0, "Total Customers": 457.0, "Median Spend per Transaction": 6.48, "Median Spend per Customer": 9.02 }, "geometry": { "type": "Point", "coordinates": [ -75.162267, 39.952459 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-4qf", "Name": "Burrito Feliz Philly", "Category": "Restaurants and Other Eating Places", "Address": "2000 S 7th St", "LATITUDE": 39.924044, "LONGITUDE": -75.158163, "DATE_RANGE_START": 2024, "Total Visits": 383.0, "Total Visitors": 147.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 329.0, "Total Spend": 2146.0, "Total Transactions": 96.0, "Total Customers": 88.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 18.36 }, "geometry": { "type": "Point", "coordinates": [ -75.158163, 39.924044 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-2kz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "245 N Broad St", "LATITUDE": 39.957343, "LONGITUDE": -75.162062, "DATE_RANGE_START": 2024, "Total Visits": 232.0, "Total Visitors": 212.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 9.0, "Total Spend": 990.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.162062, 39.957343 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-ph8-q75", "Name": "Dollar Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7578 Haverford Ave", "LATITUDE": 39.978795, "LONGITUDE": -75.268288, "DATE_RANGE_START": 2024, "Total Visits": 449.0, "Total Visitors": 316.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 16.0, "Total Spend": 2770.0, "Total Transactions": 134.0, "Total Customers": 117.0, "Median Spend per Transaction": 12.59, "Median Spend per Customer": 14.62 }, "geometry": { "type": "Point", "coordinates": [ -75.268288, 39.978795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pnw-m6k", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1018 N 2nd St", "LATITUDE": 39.966836, "LONGITUDE": -75.140319, "DATE_RANGE_START": 2024, "Total Visits": 919.0, "Total Visitors": 889.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 5.0, "Total Spend": 2171.0, "Total Transactions": 254.0, "Total Customers": 171.0, "Median Spend per Transaction": 7.1, "Median Spend per Customer": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -75.140319, 39.966836 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pgf-3dv", "Name": "Roses Florist", "Category": "Florists", "Address": "3551 Chestnut St", "LATITUDE": 39.955128, "LONGITUDE": -75.194246, "DATE_RANGE_START": 2024, "Total Visits": 421.0, "Total Visitors": 290.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 87.0, "Total Spend": 826.0, "Total Transactions": 13.0, "Total Customers": 9.0, "Median Spend per Transaction": 32.94, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194246, 39.955128 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-p8v-9xq", "Name": "2nd Ave Thrift Superstore", "Category": "Used Merchandise Stores", "Address": "163 Franklin Mls Blvd", "LATITUDE": 40.09062, "LONGITUDE": -74.965338, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 18.0, "Total Spend": 287.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 43.87, "Median Spend per Customer": 43.87 }, "geometry": { "type": "Point", "coordinates": [ -74.965338, 40.09062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@63s-dvx-jjv", "Name": "Paulino Grocery", "Category": "Grocery Stores", "Address": "4984 W Thompson St", "LATITUDE": 39.973271, "LONGITUDE": -75.222149, "DATE_RANGE_START": 2024, "Total Visits": 42.0, "Total Visitors": 25.0, "POI_CBG": 421010111002.0, "Median Dwell Time": null, "Total Spend": 317.0, "Total Transactions": 50.0, "Total Customers": 17.0, "Median Spend per Transaction": 5.38, "Median Spend per Customer": 11.73 }, "geometry": { "type": "Point", "coordinates": [ -75.222149, 39.973271 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-phz-3qz", "Name": "Pizza Point", "Category": "Restaurants and Other Eating Places", "Address": "400 E Wyoming Ave", "LATITUDE": 40.02059, "LONGITUDE": -75.118155, "DATE_RANGE_START": 2024, "Total Visits": 78.0, "Total Visitors": 78.0, "POI_CBG": 421010289011.0, "Median Dwell Time": 112.0, "Total Spend": 383.0, "Total Transactions": 22.0, "Total Customers": 20.0, "Median Spend per Transaction": 15.44, "Median Spend per Customer": 19.32 }, "geometry": { "type": "Point", "coordinates": [ -75.118155, 40.02059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-pmf-kj9", "Name": "First Foods Market", "Category": "Grocery Stores", "Address": "2101 Walnut St", "LATITUDE": 39.950929, "LONGITUDE": -75.17586, "DATE_RANGE_START": 2024, "Total Visits": 2941.0, "Total Visitors": 2221.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 1.0, "Total Spend": 34.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 8.49, "Median Spend per Customer": 12.74 }, "geometry": { "type": "Point", "coordinates": [ -75.17586, 39.950929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pzn-zs5", "Name": "Pho Palace", "Category": "Restaurants and Other Eating Places", "Address": "15501 Bustleton Ave", "LATITUDE": 40.133252, "LONGITUDE": -75.009875, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 195.0, "POI_CBG": 421010365011.0, "Median Dwell Time": 8.0, "Total Spend": 2598.0, "Total Transactions": 58.0, "Total Customers": 51.0, "Median Spend per Transaction": 43.64, "Median Spend per Customer": 45.86 }, "geometry": { "type": "Point", "coordinates": [ -75.009875, 40.133252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-phy-4vz", "Name": "Prince Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 E Wyoming Ave", "LATITUDE": 40.021528, "LONGITUDE": -75.122232, "DATE_RANGE_START": 2024, "Total Visits": 199.0, "Total Visitors": 151.0, "POI_CBG": 421010288002.0, "Median Dwell Time": 11.0, "Total Spend": 2159.0, "Total Transactions": 90.0, "Total Customers": 68.0, "Median Spend per Transaction": 20.01, "Median Spend per Customer": 22.22 }, "geometry": { "type": "Point", "coordinates": [ -75.122232, 40.021528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pgf-t35", "Name": "El Taco", "Category": "Restaurants and Other Eating Places", "Address": "3233 Powelton Ave", "LATITUDE": 39.960642, "LONGITUDE": -75.189158, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 124.0, "POI_CBG": 421010090003.0, "Median Dwell Time": 1.0, "Total Spend": 398.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 17.12, "Median Spend per Customer": 19.07 }, "geometry": { "type": "Point", "coordinates": [ -75.189158, 39.960642 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24j-222@628-pnz-kpv", "Name": "3 Brothers Pizza & Pasta", "Category": "Restaurants and Other Eating Places", "Address": "2621 E Ontario St", "LATITUDE": 39.987648, "LONGITUDE": -75.098411, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 9.0, "POI_CBG": 421010379002.0, "Median Dwell Time": 1.0, "Total Spend": 583.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 25.27, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.098411, 39.987648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9r-2kz", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9163 Roosevelt Blvd @ Welsh Rd", "LATITUDE": 40.074724, "LONGITUDE": -75.032595, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 5.0, "Total Spend": 490.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 14.2 }, "geometry": { "type": "Point", "coordinates": [ -75.032595, 40.074724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj2-mff", "Name": "Family Food Market", "Category": "Grocery Stores", "Address": "1607 E Erie Ave", "LATITUDE": 40.006057, "LONGITUDE": -75.096664, "DATE_RANGE_START": 2024, "Total Visits": 417.0, "Total Visitors": 254.0, "POI_CBG": 421010190005.0, "Median Dwell Time": 3.0, "Total Spend": 859.0, "Total Transactions": 88.0, "Total Customers": 59.0, "Median Spend per Transaction": 6.4, "Median Spend per Customer": 7.53 }, "geometry": { "type": "Point", "coordinates": [ -75.096664, 40.006057 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pp4-sbk", "Name": "Green Eggs Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2327 Gaul St", "LATITUDE": 39.977, "LONGITUDE": -75.124082, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 194.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 41.0, "Total Spend": 356.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 31.75, "Median Spend per Customer": 41.75 }, "geometry": { "type": "Point", "coordinates": [ -75.124082, 39.977 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-7yv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8000 Pine Rd", "LATITUDE": 40.077596, "LONGITUDE": -75.085369, "DATE_RANGE_START": 2024, "Total Visits": 536.0, "Total Visitors": 203.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 8.0, "Total Spend": 8880.0, "Total Transactions": 1157.0, "Total Customers": 456.0, "Median Spend per Transaction": 6.33, "Median Spend per Customer": 11.15 }, "geometry": { "type": "Point", "coordinates": [ -75.085369, 40.077596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p9k-k2k", "Name": "Panera Bread", "Category": "Restaurants and Other Eating Places", "Address": "9898 Roosevelt Blvd Ste 101", "LATITUDE": 40.093766, "LONGITUDE": -75.017142, "DATE_RANGE_START": 2024, "Total Visits": 995.0, "Total Visitors": 754.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 9.0, "Total Spend": 3789.0, "Total Transactions": 312.0, "Total Customers": 233.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 12.78 }, "geometry": { "type": "Point", "coordinates": [ -75.017142, 40.093766 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pmf-tjv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1801 Spruce St", "LATITUDE": 39.947898, "LONGITUDE": -75.171322, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 1.0, "Total Spend": 3648.0, "Total Transactions": 430.0, "Total Customers": 242.0, "Median Spend per Transaction": 6.89, "Median Spend per Customer": 8.36 }, "geometry": { "type": "Point", "coordinates": [ -75.171322, 39.947898 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pmd-sdv", "Name": "My Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2200 South St", "LATITUDE": 39.945125, "LONGITUDE": -75.178759, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010013001.0, "Median Dwell Time": 1.0, "Total Spend": 531.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 38.37, "Median Spend per Customer": 38.37 }, "geometry": { "type": "Point", "coordinates": [ -75.178759, 39.945125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg9-k4v", "Name": "Kingstone Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2250 N 29th St", "LATITUDE": 39.990889, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 129.0, "POI_CBG": 421010169022.0, "Median Dwell Time": 7.0, "Total Spend": 209.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 27.19, "Median Spend per Customer": 27.19 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.990889 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v4v", "Name": "Bleu Martini", "Category": "Restaurants and Other Eating Places", "Address": "24 S 2nd St", "LATITUDE": 39.949349, "LONGITUDE": -75.144205, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 853.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 11.0, "Total Spend": 11194.0, "Total Transactions": 175.0, "Total Customers": 132.0, "Median Spend per Transaction": 33.04, "Median Spend per Customer": 56.28 }, "geometry": { "type": "Point", "coordinates": [ -75.144205, 39.949349 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-hwk", "Name": "Miller's Ale House", "Category": "Restaurants and Other Eating Places", "Address": "9495 Roosevelt Blvd", "LATITUDE": 40.079795, "LONGITUDE": -75.028682, "DATE_RANGE_START": 2024, "Total Visits": 903.0, "Total Visitors": 810.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 39.0, "Total Spend": 4412.0, "Total Transactions": 79.0, "Total Customers": 74.0, "Median Spend per Transaction": 56.85, "Median Spend per Customer": 59.51 }, "geometry": { "type": "Point", "coordinates": [ -75.028682, 40.079795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22k@628-pmf-n3q", "Name": "NAYA Market St", "Category": "Restaurants and Other Eating Places", "Address": "1601 Market St", "LATITUDE": 39.953238, "LONGITUDE": -75.167055, "DATE_RANGE_START": 2024, "Total Visits": 248.0, "Total Visitors": 183.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 547.0, "Total Transactions": 228.0, "Total Customers": 111.0, "Median Spend per Transaction": 1.5, "Median Spend per Customer": 3.38 }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.953238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dwf-q9f", "Name": "Shotz", "Category": "Restaurants and Other Eating Places", "Address": "7417 Buist Ave", "LATITUDE": 39.911065, "LONGITUDE": -75.243379, "DATE_RANGE_START": 2024, "Total Visits": 65.0, "Total Visitors": 65.0, "POI_CBG": 421010055001.0, "Median Dwell Time": null, "Total Spend": 208.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 23.5, "Median Spend per Customer": 63.0 }, "geometry": { "type": "Point", "coordinates": [ -75.243379, 39.911065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-2ff", "Name": "Fleishman Fabrics & Supplies", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "737 S 4th St", "LATITUDE": 39.93943, "LONGITUDE": -75.149516, "DATE_RANGE_START": 2024, "Total Visits": 442.0, "Total Visitors": 348.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 12.0, "Total Spend": 2924.0, "Total Transactions": 84.0, "Total Customers": 71.0, "Median Spend per Transaction": 29.5, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.149516, 39.93943 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-p7z-7nq", "Name": "Crown Chicken and Grill", "Category": "Restaurants and Other Eating Places", "Address": "7275 Rising Sun Ave", "LATITUDE": 40.061205, "LONGITUDE": -75.083812, "DATE_RANGE_START": 2024, "Total Visits": 213.0, "Total Visitors": 157.0, "POI_CBG": 421010307001.0, "Median Dwell Time": 7.0, "Total Spend": 2283.0, "Total Transactions": 208.0, "Total Customers": 140.0, "Median Spend per Transaction": 10.41, "Median Spend per Customer": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.083812, 40.061205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pm8-zzz", "Name": "Asian Fusion & Steak", "Category": "Restaurants and Other Eating Places", "Address": "2647 S 13th St", "LATITUDE": 39.916708, "LONGITUDE": -75.169015, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 163.0, "POI_CBG": 421010040023.0, "Median Dwell Time": 1.0, "Total Spend": 678.0, "Total Transactions": 20.0, "Total Customers": 14.0, "Median Spend per Transaction": 30.78, "Median Spend per Customer": 43.74 }, "geometry": { "type": "Point", "coordinates": [ -75.169015, 39.916708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgh-cdv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Broad St", "LATITUDE": 40.001165, "LONGITUDE": -75.152629, "DATE_RANGE_START": 2024, "Total Visits": 1027.0, "Total Visitors": 893.0, "POI_CBG": 421010200001.0, "Median Dwell Time": 4.0, "Total Spend": 7894.0, "Total Transactions": 683.0, "Total Customers": 416.0, "Median Spend per Transaction": 9.03, "Median Spend per Customer": 13.69 }, "geometry": { "type": "Point", "coordinates": [ -75.152629, 40.001165 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-p8m-99f", "Name": "Harbison Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "5725 Harbison Ave", "LATITUDE": 40.017878, "LONGITUDE": -75.063893, "DATE_RANGE_START": 2024, "Total Visits": 124.0, "Total Visitors": 103.0, "POI_CBG": 421010321003.0, "Median Dwell Time": 6.0, "Total Spend": 6404.0, "Total Transactions": 232.0, "Total Customers": 111.0, "Median Spend per Transaction": 26.9, "Median Spend per Customer": 29.87 }, "geometry": { "type": "Point", "coordinates": [ -75.063893, 40.017878 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-23p@63s-dw9-7nq", "Name": "InMotion", "Category": "Electronics and Appliance Stores", "Address": "8500 Essington Ave", "LATITUDE": 39.87912, "LONGITUDE": -75.239453, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 2723.0, "Total Transactions": 46.0, "Total Customers": 43.0, "Median Spend per Transaction": 37.79, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.239453, 39.87912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-227@628-pm4-mff", "Name": "APlus", "Category": "Grocery Stores", "Address": "1100 S 10th St", "LATITUDE": 39.936496, "LONGITUDE": -75.160414, "DATE_RANGE_START": 2024, "Total Visits": 923.0, "Total Visitors": 824.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 3.0, "Total Spend": 240.0, "Total Transactions": 22.0, "Total Customers": 21.0, "Median Spend per Transaction": 8.63, "Median Spend per Customer": 8.16 }, "geometry": { "type": "Point", "coordinates": [ -75.160414, 39.936496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23w-222@628-pg8-kmk", "Name": "Young's Sneaker City", "Category": "Shoe Stores", "Address": "2735 W Girard Ave", "LATITUDE": 39.974536, "LONGITUDE": -75.181586, "DATE_RANGE_START": 2024, "Total Visits": 163.0, "Total Visitors": 163.0, "POI_CBG": 421010137002.0, "Median Dwell Time": 7.0, "Total Spend": 849.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 70.0, "Median Spend per Customer": 70.0 }, "geometry": { "type": "Point", "coordinates": [ -75.181586, 39.974536 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pj4-v4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "229 W Allegheny Ave", "LATITUDE": 39.999585, "LONGITUDE": -75.134861, "DATE_RANGE_START": 2024, "Total Visits": 307.0, "Total Visitors": 265.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 6.0, "Total Spend": 81.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 27.14, "Median Spend per Customer": 30.65 }, "geometry": { "type": "Point", "coordinates": [ -75.134861, 39.999585 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph8-q75", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7564 Haverford Ave", "LATITUDE": 39.978744, "LONGITUDE": -75.268394, "DATE_RANGE_START": 2024, "Total Visits": 238.0, "Total Visitors": 204.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 60.0, "Total Spend": 639.0, "Total Transactions": 32.0, "Total Customers": 26.0, "Median Spend per Transaction": 15.13, "Median Spend per Customer": 18.62 }, "geometry": { "type": "Point", "coordinates": [ -75.268394, 39.978744 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-p8d-8d9", "Name": "General Tso", "Category": "Restaurants and Other Eating Places", "Address": "2350 Orthodox St", "LATITUDE": 40.006142, "LONGITUDE": -75.078117, "DATE_RANGE_START": 2024, "Total Visits": 72.0, "Total Visitors": 51.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 600.0, "Total Spend": 2104.0, "Total Transactions": 70.0, "Total Customers": 54.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 29.97 }, "geometry": { "type": "Point", "coordinates": [ -75.078117, 40.006142 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dwf-9mk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7601 Lindbergh Blvd", "LATITUDE": 39.904877, "LONGITUDE": -75.238379, "DATE_RANGE_START": 2024, "Total Visits": 704.0, "Total Visitors": 520.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 5.0, "Total Spend": 4524.0, "Total Transactions": 558.0, "Total Customers": 298.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 10.09 }, "geometry": { "type": "Point", "coordinates": [ -75.238379, 39.904877 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phn-qj9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8113 Stenton Ave", "LATITUDE": 40.067211, "LONGITUDE": -75.178268, "DATE_RANGE_START": 2024, "Total Visits": 481.0, "Total Visitors": 296.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 4.0, "Total Spend": 6859.0, "Total Transactions": 802.0, "Total Customers": 384.0, "Median Spend per Transaction": 7.65, "Median Spend per Customer": 10.14 }, "geometry": { "type": "Point", "coordinates": [ -75.178268, 40.067211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-sbk", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.913286, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2024, "Total Visits": 1697.0, "Total Visitors": 1697.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 20.0, "Total Spend": 295.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 111.89, "Median Spend per Customer": 111.89 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.913286 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22g@628-phd-q75", "Name": "Monument Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4160 Monument Rd", "LATITUDE": 40.002596, "LONGITUDE": -75.214314, "DATE_RANGE_START": 2024, "Total Visits": 1657.0, "Total Visitors": 993.0, "POI_CBG": 421010122011.0, "Median Dwell Time": 17.0, "Total Spend": 128.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 26.15 }, "geometry": { "type": "Point", "coordinates": [ -75.214314, 40.002596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-7nq", "Name": "Scoop Deville", "Category": "Restaurants and Other Eating Places", "Address": "1315 Walnut St", "LATITUDE": 39.949587, "LONGITUDE": -75.16288, "DATE_RANGE_START": 2024, "Total Visits": 4462.0, "Total Visitors": 2680.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 26.0, "Total Spend": 2840.0, "Total Transactions": 197.0, "Total Customers": 186.0, "Median Spend per Transaction": 10.5, "Median Spend per Customer": 10.5 }, "geometry": { "type": "Point", "coordinates": [ -75.16288, 39.949587 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvr-d5f", "Name": "Y & B Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "6547 Elmwood Ave", "LATITUDE": 39.921556, "LONGITUDE": -75.231623, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 46.0, "POI_CBG": 421010062004.0, "Median Dwell Time": 72.0, "Total Spend": 45292.0, "Total Transactions": 1395.0, "Total Customers": 9.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 61.0 }, "geometry": { "type": "Point", "coordinates": [ -75.231623, 39.921556 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pg4-hyv", "Name": "Al Arafat Store", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "6 W Chelten Ave", "LATITUDE": 40.035544, "LONGITUDE": -75.174799, "DATE_RANGE_START": 2024, "Total Visits": 1173.0, "Total Visitors": 616.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 22.0, "Total Spend": 109.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 20.8, "Median Spend per Customer": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -75.174799, 40.035544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p75-6c5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "8902 Frankford Ave", "LATITUDE": 40.050992, "LONGITUDE": -75.010133, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 3.0, "Total Spend": 5137.0, "Total Transactions": 582.0, "Total Customers": 255.0, "Median Spend per Transaction": 7.86, "Median Spend per Customer": 11.42 }, "geometry": { "type": "Point", "coordinates": [ -75.010133, 40.050992 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmb-y7q", "Name": "Penang", "Category": "Restaurants and Other Eating Places", "Address": "117 N 10th St", "LATITUDE": 39.954054, "LONGITUDE": -75.155967, "DATE_RANGE_START": 2024, "Total Visits": 4262.0, "Total Visitors": 2963.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 21.0, "Total Spend": 7892.0, "Total Transactions": 121.0, "Total Customers": 97.0, "Median Spend per Transaction": 63.46, "Median Spend per Customer": 51.44 }, "geometry": { "type": "Point", "coordinates": [ -75.155967, 39.954054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pmf-j35", "Name": "Bar Bombon", "Category": "Restaurants and Other Eating Places", "Address": "133 S 18th St", "LATITUDE": 39.950602, "LONGITUDE": -75.170292, "DATE_RANGE_START": 2024, "Total Visits": 251.0, "Total Visitors": 251.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 2475.0, "Total Transactions": 30.0, "Total Customers": 28.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 58.76 }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.950602 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-c5z", "Name": "Pho Ha Saigon", "Category": "Restaurants and Other Eating Places", "Address": "575 Adams Ave", "LATITUDE": 40.035941, "LONGITUDE": -75.10827, "DATE_RANGE_START": 2024, "Total Visits": 332.0, "Total Visitors": 294.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 20.0, "Total Spend": 7250.0, "Total Transactions": 204.0, "Total Customers": 172.0, "Median Spend per Transaction": 31.64, "Median Spend per Customer": 35.64 }, "geometry": { "type": "Point", "coordinates": [ -75.10827, 40.035941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgb-gx5", "Name": "Mccrossens Tavern", "Category": "Restaurants and Other Eating Places", "Address": "529 N 20th St", "LATITUDE": 39.963099, "LONGITUDE": -75.170927, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 130.0, "POI_CBG": 421010125002.0, "Median Dwell Time": 36.0, "Total Spend": 13539.0, "Total Transactions": 240.0, "Total Customers": 170.0, "Median Spend per Transaction": 46.44, "Median Spend per Customer": 55.65 }, "geometry": { "type": "Point", "coordinates": [ -75.170927, 39.963099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-228@628-pg8-zfz", "Name": "Bagel & Co Brewerytown", "Category": "Restaurants and Other Eating Places", "Address": "1363 N 31st St", "LATITUDE": 39.977531, "LONGITUDE": -75.18557, "DATE_RANGE_START": 2024, "Total Visits": 727.0, "Total Visitors": 490.0, "POI_CBG": 421010137005.0, "Median Dwell Time": 45.0, "Total Spend": 70.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 12.08, "Median Spend per Customer": 12.08 }, "geometry": { "type": "Point", "coordinates": [ -75.18557, 39.977531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phd-btv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5100 City Ave", "LATITUDE": 39.998156, "LONGITUDE": -75.232068, "DATE_RANGE_START": 2024, "Total Visits": 735.0, "Total Visitors": 509.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 4.0, "Total Spend": 13037.0, "Total Transactions": 1539.0, "Total Customers": 691.0, "Median Spend per Transaction": 7.44, "Median Spend per Customer": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.232068, 39.998156 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9w-4sq", "Name": "Marcello's Pizza Grill", "Category": "Restaurants and Other Eating Places", "Address": "10849 Bustleton Ave", "LATITUDE": 40.110252, "LONGITUDE": -75.024138, "DATE_RANGE_START": 2024, "Total Visits": 2278.0, "Total Visitors": 1286.0, "POI_CBG": 421010359002.0, "Median Dwell Time": 7.0, "Total Spend": 775.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 24.44, "Median Spend per Customer": 24.44 }, "geometry": { "type": "Point", "coordinates": [ -75.024138, 40.110252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pp2-qs5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3501 Aramingo Ave", "LATITUDE": 39.991991, "LONGITUDE": -75.09886, "DATE_RANGE_START": 2024, "Total Visits": 552.0, "Total Visitors": 465.0, "POI_CBG": 421010382001.0, "Median Dwell Time": 4.0, "Total Spend": 9442.0, "Total Transactions": 1057.0, "Total Customers": 531.0, "Median Spend per Transaction": 7.49, "Median Spend per Customer": 11.05 }, "geometry": { "type": "Point", "coordinates": [ -75.09886, 39.991991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-94v", "Name": "Philly Auto", "Category": "Automobile Dealers", "Address": "4530 Torresdale Ave", "LATITUDE": 40.010175, "LONGITUDE": -75.080992, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010294003.0, "Median Dwell Time": 20.0, "Total Spend": 10167.0, "Total Transactions": 61.0, "Total Customers": 30.0, "Median Spend per Transaction": 22.55, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.080992, 40.010175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-j35", "Name": "Barnes and Noble", "Category": "Book Stores and News Dealers", "Address": "1708 Chestnut St", "LATITUDE": 39.951378, "LONGITUDE": -75.169175, "DATE_RANGE_START": 2024, "Total Visits": 723.0, "Total Visitors": 544.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 16.0, "Total Spend": 475.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 60.21, "Median Spend per Customer": 60.21 }, "geometry": { "type": "Point", "coordinates": [ -75.169175, 39.951378 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p84-2ff", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "9355 Krewstown Rd", "LATITUDE": 40.086984, "LONGITUDE": -75.044184, "DATE_RANGE_START": 2024, "Total Visits": 515.0, "Total Visitors": 240.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 218.0, "Total Spend": 357.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 11.88, "Median Spend per Customer": 13.23 }, "geometry": { "type": "Point", "coordinates": [ -75.044184, 40.086984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-vvf", "Name": "Wyndham", "Category": "Traveler Accommodation", "Address": "400 Arch St", "LATITUDE": 39.952204, "LONGITUDE": -75.146959, "DATE_RANGE_START": 2024, "Total Visits": 2256.0, "Total Visitors": 1415.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 224.0, "Total Spend": 32296.0, "Total Transactions": 129.0, "Total Customers": 105.0, "Median Spend per Transaction": 42.88, "Median Spend per Customer": 42.88 }, "geometry": { "type": "Point", "coordinates": [ -75.146959, 39.952204 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pj3-gx5", "Name": "Beijing Garden", "Category": "Restaurants and Other Eating Places", "Address": "4527 Wayne Ave", "LATITUDE": 40.022567, "LONGITUDE": -75.162046, "DATE_RANGE_START": 2024, "Total Visits": 130.0, "Total Visitors": 130.0, "POI_CBG": 421010244002.0, "Median Dwell Time": null, "Total Spend": 533.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 28.2, "Median Spend per Customer": 23.65 }, "geometry": { "type": "Point", "coordinates": [ -75.162046, 40.022567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-fcq", "Name": "Bleu Sushi", "Category": "Restaurants and Other Eating Places", "Address": "262 S 10th St", "LATITUDE": 39.946502, "LONGITUDE": -75.158023, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 192.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 31.0, "Total Spend": 309.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 79.95, "Median Spend per Customer": 79.95 }, "geometry": { "type": "Point", "coordinates": [ -75.158023, 39.946502 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgh-vmk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "1936 Liacouras Walk", "LATITUDE": 39.982441, "LONGITUDE": -75.155993, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 1.0, "Total Spend": 290.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 14.09, "Median Spend per Customer": 14.09 }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 39.982441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pp4-m6k", "Name": "OG Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2500 Frankford Ave", "LATITUDE": 39.983648, "LONGITUDE": -75.125756, "DATE_RANGE_START": 2024, "Total Visits": 346.0, "Total Visitors": 254.0, "POI_CBG": 421010161001.0, "Median Dwell Time": 1.0, "Total Spend": 6455.0, "Total Transactions": 379.0, "Total Customers": 246.0, "Median Spend per Transaction": 13.9, "Median Spend per Customer": 16.65 }, "geometry": { "type": "Point", "coordinates": [ -75.125756, 39.983648 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-v75", "Name": "Khyber Pass Pub", "Category": "Restaurants and Other Eating Places", "Address": "56 S 2nd St", "LATITUDE": 39.948644, "LONGITUDE": -75.144112, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 158.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 2833.0, "Total Transactions": 59.0, "Total Customers": 53.0, "Median Spend per Transaction": 35.06, "Median Spend per Customer": 44.33 }, "geometry": { "type": "Point", "coordinates": [ -75.144112, 39.948644 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-bp9", "Name": "Volo Coffeehouse", "Category": "Restaurants and Other Eating Places", "Address": "4360 Main St", "LATITUDE": 40.025544, "LONGITUDE": -75.224182, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 95.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 22.0, "Total Spend": 12905.0, "Total Transactions": 929.0, "Total Customers": 496.0, "Median Spend per Transaction": 11.13, "Median Spend per Customer": 18.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224182, 40.025544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-ph8-qpv", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.979849, "LONGITUDE": -75.269307, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010098012.0, "Median Dwell Time": 4.0, "Total Spend": 21707.0, "Total Transactions": 1180.0, "Total Customers": 791.0, "Median Spend per Transaction": 15.64, "Median Spend per Customer": 19.89 }, "geometry": { "type": "Point", "coordinates": [ -75.269307, 39.979849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-8qf", "Name": "China Royal", "Category": "Restaurants and Other Eating Places", "Address": "2620 Rhawn St", "LATITUDE": 40.055885, "LONGITUDE": -75.045692, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 109.0, "POI_CBG": 421010333003.0, "Median Dwell Time": 1.0, "Total Spend": 544.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 26.6, "Median Spend per Customer": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -75.045692, 40.055885 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-jd9", "Name": "The Children's Boutique", "Category": "Clothing Stores", "Address": "128 S 17th St", "LATITUDE": 39.950539, "LONGITUDE": -75.169161, "DATE_RANGE_START": 2024, "Total Visits": 478.0, "Total Visitors": 408.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 1118.0, "Total Transactions": 16.0, "Total Customers": 16.0, "Median Spend per Transaction": 34.56, "Median Spend per Customer": 34.56 }, "geometry": { "type": "Point", "coordinates": [ -75.169161, 39.950539 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p82-6ff", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "6399 Oxford Ave", "LATITUDE": 40.04511, "LONGITUDE": -75.088239, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 3.0, "Total Spend": 3162.0, "Total Transactions": 126.0, "Total Customers": 91.0, "Median Spend per Transaction": 19.86, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.088239, 40.04511 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pg2-n5z", "Name": "Torres Grocery", "Category": "Grocery Stores", "Address": "152 E Sharpnack St", "LATITUDE": 40.051691, "LONGITUDE": -75.181363, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 9.0, "POI_CBG": 421010253002.0, "Median Dwell Time": null, "Total Spend": 123.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 11.36, "Median Spend per Customer": 12.13 }, "geometry": { "type": "Point", "coordinates": [ -75.181363, 40.051691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-wx5", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6150 N 5th St", "LATITUDE": 40.045398, "LONGITUDE": -75.128883, "DATE_RANGE_START": 2024, "Total Visits": 737.0, "Total Visitors": 499.0, "POI_CBG": 421010275001.0, "Median Dwell Time": 8.0, "Total Spend": 5520.0, "Total Transactions": 222.0, "Total Customers": 130.0, "Median Spend per Transaction": 9.66, "Median Spend per Customer": 22.64 }, "geometry": { "type": "Point", "coordinates": [ -75.128883, 40.045398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-wx5", "Name": "Gap Factory Store", "Category": "Clothing Stores", "Address": "1875 Franklin Mills Cir Spc NO163", "LATITUDE": 40.09026, "LONGITUDE": -74.960858, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 6.0, "Total Spend": 916.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 78.96, "Median Spend per Customer": 78.96 }, "geometry": { "type": "Point", "coordinates": [ -74.960858, 40.09026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-223@628-pmb-xnq", "Name": "Sakura Mandarin", "Category": "Restaurants and Other Eating Places", "Address": "1038 Race St", "LATITUDE": 39.955481, "LONGITUDE": -75.157295, "DATE_RANGE_START": 2024, "Total Visits": 3782.0, "Total Visitors": 2650.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 14.0, "Total Spend": 3242.0, "Total Transactions": 51.0, "Total Customers": 45.0, "Median Spend per Transaction": 42.74, "Median Spend per Customer": 47.73 }, "geometry": { "type": "Point", "coordinates": [ -75.157295, 39.955481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvy-pjv", "Name": "Mizu", "Category": "Restaurants and Other Eating Places", "Address": "111 S 40th St", "LATITUDE": 39.955254, "LONGITUDE": -75.202132, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 34.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 1.0, "Total Spend": 394.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 50.27, "Median Spend per Customer": 50.27 }, "geometry": { "type": "Point", "coordinates": [ -75.202132, 39.955254 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pnx-4vz", "Name": "Higher Grounds", "Category": "Restaurants and Other Eating Places", "Address": "631 N 3rd St", "LATITUDE": 39.962071, "LONGITUDE": -75.142935, "DATE_RANGE_START": 2024, "Total Visits": 217.0, "Total Visitors": 59.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 56.0, "Total Spend": 2422.0, "Total Transactions": 250.0, "Total Customers": 124.0, "Median Spend per Transaction": 8.66, "Median Spend per Customer": 13.55 }, "geometry": { "type": "Point", "coordinates": [ -75.142935, 39.962071 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-ks5", "Name": "Mulberry Market", "Category": "Grocery Stores", "Address": "236 Arch St", "LATITUDE": 39.951954, "LONGITUDE": -75.144617, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 12526.0, "Total Transactions": 686.0, "Total Customers": 305.0, "Median Spend per Transaction": 15.6, "Median Spend per Customer": 25.84 }, "geometry": { "type": "Point", "coordinates": [ -75.144617, 39.951954 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-223@628-pm4-mc5", "Name": "Meat Market El Pueblo", "Category": "Specialty Food Stores", "Address": "1141 S 9th St", "LATITUDE": 39.935181, "LONGITUDE": -75.158839, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 113.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 2.0, "Total Spend": 262.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 76.3, "Median Spend per Customer": 76.3 }, "geometry": { "type": "Point", "coordinates": [ -75.158839, 39.935181 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23t-222@628-pj4-t7q", "Name": "Nexcare Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2941 N 5th St", "LATITUDE": 39.996106, "LONGITUDE": -75.13916, "DATE_RANGE_START": 2024, "Total Visits": 70.0, "Total Visitors": 70.0, "POI_CBG": 421010176012.0, "Median Dwell Time": 5.0, "Total Spend": 488.0, "Total Transactions": 20.0, "Total Customers": 17.0, "Median Spend per Transaction": 17.9, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.13916, 39.996106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-223@628-pj2-dsq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1190 E Luzerne St", "LATITUDE": 40.007768, "LONGITUDE": -75.105273, "DATE_RANGE_START": 2024, "Total Visits": 552.0, "Total Visitors": 209.0, "POI_CBG": 421010191003.0, "Median Dwell Time": 2.0, "Total Spend": 1058.0, "Total Transactions": 65.0, "Total Customers": 25.0, "Median Spend per Transaction": 12.66, "Median Spend per Customer": 19.9 }, "geometry": { "type": "Point", "coordinates": [ -75.105273, 40.007768 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-2p9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4600 Chestnut St", "LATITUDE": 39.956854, "LONGITUDE": -75.213954, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 320.0, "POI_CBG": 421010086021.0, "Median Dwell Time": 3.0, "Total Spend": 205.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 7.6, "Median Spend per Customer": 15.2 }, "geometry": { "type": "Point", "coordinates": [ -75.213954, 39.956854 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pj4-y7q", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "3610 Germantown Ave", "LATITUDE": 40.007869, "LONGITUDE": -75.15062, "DATE_RANGE_START": 2024, "Total Visits": 1165.0, "Total Visitors": 903.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 25.0, "Total Spend": 1322.0, "Total Transactions": 39.0, "Total Customers": 33.0, "Median Spend per Transaction": 28.77, "Median Spend per Customer": 28.77 }, "geometry": { "type": "Point", "coordinates": [ -75.15062, 40.007869 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pj8-fcq", "Name": "Sam's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5450 Rutland St", "LATITUDE": 40.031005, "LONGITUDE": -75.083605, "DATE_RANGE_START": 2024, "Total Visits": 129.0, "Total Visitors": 29.0, "POI_CBG": 421010302005.0, "Median Dwell Time": 421.0, "Total Spend": 250.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 35.28, "Median Spend per Customer": 37.23 }, "geometry": { "type": "Point", "coordinates": [ -75.083605, 40.031005 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-5mk", "Name": "Tradesman's", "Category": "Restaurants and Other Eating Places", "Address": "1322 Chestnut St", "LATITUDE": 39.950487, "LONGITUDE": -75.162708, "DATE_RANGE_START": 2024, "Total Visits": 350.0, "Total Visitors": 325.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 4.0, "Total Spend": 16801.0, "Total Transactions": 486.0, "Total Customers": 371.0, "Median Spend per Transaction": 25.08, "Median Spend per Customer": 32.64 }, "geometry": { "type": "Point", "coordinates": [ -75.162708, 39.950487 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pj9-73q", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044951, "LONGITUDE": -75.143775, "DATE_RANGE_START": 2024, "Total Visits": 336.0, "Total Visitors": 197.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 19.0, "Total Spend": 9693.0, "Total Transactions": 565.0, "Total Customers": 419.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 16.77 }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.044951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pfz-rkz", "Name": "Henry James Saloon", "Category": "Restaurants and Other Eating Places", "Address": "577 Jamestown St", "LATITUDE": 40.029199, "LONGITUDE": -75.206666, "DATE_RANGE_START": 2024, "Total Visits": 163.0, "Total Visitors": 147.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 99.0, "Total Spend": 3347.0, "Total Transactions": 72.0, "Total Customers": 38.0, "Median Spend per Transaction": 48.88, "Median Spend per Customer": 54.0 }, "geometry": { "type": "Point", "coordinates": [ -75.206666, 40.029199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-phq-4qf", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1434 E Washington Ln", "LATITUDE": 40.060398, "LONGITUDE": -75.164249, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010264003.0, "Median Dwell Time": 6.0, "Total Spend": 363.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.164249, 40.060398 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-td9", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "1651 S Columbus Blvd", "LATITUDE": 39.925926, "LONGITUDE": -75.143002, "DATE_RANGE_START": 2024, "Total Visits": 2790.0, "Total Visitors": 1760.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 20.0, "Total Spend": 91274.0, "Total Transactions": 652.0, "Total Customers": 374.0, "Median Spend per Transaction": 55.02, "Median Spend per Customer": 81.21 }, "geometry": { "type": "Point", "coordinates": [ -75.143002, 39.925926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9r-26k", "Name": "Net Cost Market", "Category": "Grocery Stores", "Address": "2417 Welsh Rd", "LATITUDE": 40.072501, "LONGITUDE": -75.031259, "DATE_RANGE_START": 2024, "Total Visits": 1078.0, "Total Visitors": 711.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 10.0, "Total Spend": 54905.0, "Total Transactions": 1132.0, "Total Customers": 574.0, "Median Spend per Transaction": 24.19, "Median Spend per Customer": 55.08 }, "geometry": { "type": "Point", "coordinates": [ -75.031259, 40.072501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-phc-r8v", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5040 City Ave", "LATITUDE": 39.998573, "LONGITUDE": -75.231013, "DATE_RANGE_START": 2024, "Total Visits": 365.0, "Total Visitors": 249.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 8.0, "Total Spend": 2314.0, "Total Transactions": 87.0, "Total Customers": 68.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 16.62 }, "geometry": { "type": "Point", "coordinates": [ -75.231013, 39.998573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg4-fj9", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "164 W Chelten Ave", "LATITUDE": 40.032293, "LONGITUDE": -75.178131, "DATE_RANGE_START": 2024, "Total Visits": 991.0, "Total Visitors": 620.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 15.0, "Total Spend": 1457.0, "Total Transactions": 103.0, "Total Customers": 71.0, "Median Spend per Transaction": 9.25, "Median Spend per Customer": 14.79 }, "geometry": { "type": "Point", "coordinates": [ -75.178131, 40.032293 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-p8t-w49", "Name": "Burlington", "Category": "Clothing Stores", "Address": "1563 Franklin Mills Cir", "LATITUDE": 40.08701, "LONGITUDE": -74.96055, "DATE_RANGE_START": 2024, "Total Visits": 61.0, "Total Visitors": 55.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 17.0, "Total Spend": 2176.0, "Total Transactions": 50.0, "Total Customers": 47.0, "Median Spend per Transaction": 31.02, "Median Spend per Customer": 29.95 }, "geometry": { "type": "Point", "coordinates": [ -74.96055, 40.08701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zxq", "Name": "Sky Store", "Category": "Other Miscellaneous Store Retailers", "Address": "632 South St", "LATITUDE": 39.941905, "LONGITUDE": -75.153237, "DATE_RANGE_START": 2024, "Total Visits": 774.0, "Total Visitors": 669.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 6.0, "Total Spend": 1976.0, "Total Transactions": 96.0, "Total Customers": 67.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 19.93 }, "geometry": { "type": "Point", "coordinates": [ -75.153237, 39.941905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pgf-54v", "Name": "Spring Chinese Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3739 Lancaster Ave", "LATITUDE": 39.960303, "LONGITUDE": -75.196597, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 134.0, "POI_CBG": 421010091002.0, "Median Dwell Time": 9.0, "Total Spend": 2230.0, "Total Transactions": 113.0, "Total Customers": 79.0, "Median Spend per Transaction": 16.74, "Median Spend per Customer": 21.74 }, "geometry": { "type": "Point", "coordinates": [ -75.196597, 39.960303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgm-hwk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4268 Ridge Ave", "LATITUDE": 40.009412, "LONGITUDE": -75.196512, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 12.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 14.0, "Total Spend": 6526.0, "Total Transactions": 868.0, "Total Customers": 471.0, "Median Spend per Transaction": 6.47, "Median Spend per Customer": 9.5 }, "geometry": { "type": "Point", "coordinates": [ -75.196512, 40.009412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pj8-rkz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.029731, "LONGITUDE": -75.099365, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 16.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 7.0, "Total Spend": 2291.0, "Total Transactions": 72.0, "Total Customers": 57.0, "Median Spend per Transaction": 28.58, "Median Spend per Customer": 34.49 }, "geometry": { "type": "Point", "coordinates": [ -75.099365, 40.029731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@63s-dvy-pjv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "3939 Chestnut St Fl 2", "LATITUDE": 39.955756, "LONGITUDE": -75.201691, "DATE_RANGE_START": 2024, "Total Visits": 1995.0, "Total Visitors": 847.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 299.0, "Total Spend": 3771.0, "Total Transactions": 67.0, "Total Customers": 63.0, "Median Spend per Transaction": 54.28, "Median Spend per Customer": 54.68 }, "geometry": { "type": "Point", "coordinates": [ -75.201691, 39.955756 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-yd9", "Name": "Tai Lake Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "134 N 10th St", "LATITUDE": 39.954672, "LONGITUDE": -75.156344, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 197.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 22.0, "Total Spend": 3532.0, "Total Transactions": 33.0, "Total Customers": 32.0, "Median Spend per Transaction": 72.45, "Median Spend per Customer": 76.7 }, "geometry": { "type": "Point", "coordinates": [ -75.156344, 39.954672 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pnw-ndv", "Name": "Front Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1253 N Front St", "LATITUDE": 39.970177, "LONGITUDE": -75.135546, "DATE_RANGE_START": 2024, "Total Visits": 29.0, "Total Visitors": 26.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 8.0, "Total Spend": 30983.0, "Total Transactions": 519.0, "Total Customers": 423.0, "Median Spend per Transaction": 50.57, "Median Spend per Customer": 60.18 }, "geometry": { "type": "Point", "coordinates": [ -75.135546, 39.970177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23m-223@628-pm4-mc5", "Name": "Casa Mexico", "Category": "Restaurants and Other Eating Places", "Address": "1134 S 9th St", "LATITUDE": 39.935496, "LONGITUDE": -75.15875, "DATE_RANGE_START": 2024, "Total Visits": 974.0, "Total Visitors": 717.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 7.0, "Total Spend": 238.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 65.56, "Median Spend per Customer": 65.56 }, "geometry": { "type": "Point", "coordinates": [ -75.15875, 39.935496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@63s-dvx-xkf", "Name": "Dottie's Donuts", "Category": "Restaurants and Other Eating Places", "Address": "4529 Springfield Ave", "LATITUDE": 39.948402, "LONGITUDE": -75.213616, "DATE_RANGE_START": 2024, "Total Visits": 59.0, "Total Visitors": 59.0, "POI_CBG": 421010078005.0, "Median Dwell Time": null, "Total Spend": 42.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 8.1, "Median Spend per Customer": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -75.213616, 39.948402 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-phy-gzf", "Name": "Pharmacy of America VII", "Category": "Health and Personal Care Stores", "Address": "4654 N 5th St", "LATITUDE": 40.022541, "LONGITUDE": -75.13383, "DATE_RANGE_START": 2024, "Total Visits": 762.0, "Total Visitors": 612.0, "POI_CBG": 421010287001.0, "Median Dwell Time": 8.0, "Total Spend": 251.0, "Total Transactions": 33.0, "Total Customers": 30.0, "Median Spend per Transaction": 6.28, "Median Spend per Customer": 6.74 }, "geometry": { "type": "Point", "coordinates": [ -75.13383, 40.022541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-m6k", "Name": "Brave New Worlds", "Category": "Book Stores and News Dealers", "Address": "55 N 2nd St", "LATITUDE": 39.951384, "LONGITUDE": -75.143026, "DATE_RANGE_START": 2024, "Total Visits": 906.0, "Total Visitors": 635.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 3.0, "Total Spend": 712.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 45.81, "Median Spend per Customer": 47.49 }, "geometry": { "type": "Point", "coordinates": [ -75.143026, 39.951384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm6-6hq", "Name": "Monster Pets", "Category": "Other Miscellaneous Store Retailers", "Address": "1946 S Columbus Blvd", "LATITUDE": 39.92138, "LONGITUDE": -75.144128, "DATE_RANGE_START": 2024, "Total Visits": 315.0, "Total Visitors": 242.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 10.0, "Total Spend": 1354.0, "Total Transactions": 22.0, "Total Customers": 18.0, "Median Spend per Transaction": 56.12, "Median Spend per Customer": 62.22 }, "geometry": { "type": "Point", "coordinates": [ -75.144128, 39.92138 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22r@628-pmf-mrk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St Ste 214", "LATITUDE": 39.951934, "LONGITUDE": -75.16752, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 131.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 6.13 }, "geometry": { "type": "Point", "coordinates": [ -75.16752, 39.951934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pm9-5j9", "Name": "Oregon Express", "Category": "Restaurants and Other Eating Places", "Address": "2700 S Marvine St", "LATITUDE": 39.91608, "LONGITUDE": -75.16714, "DATE_RANGE_START": 2024, "Total Visits": 57.0, "Total Visitors": 47.0, "POI_CBG": 421010372001.0, "Median Dwell Time": 5.0, "Total Spend": 124.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 9.23, "Median Spend per Customer": 9.62 }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.91608 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmf-kvf", "Name": "JJ Thai Cuisine", "Category": "Restaurants and Other Eating Places", "Address": "2028 Chestnut St", "LATITUDE": 39.952114, "LONGITUDE": -75.174664, "DATE_RANGE_START": 2024, "Total Visits": 1330.0, "Total Visitors": 1065.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 31.0, "Total Spend": 2591.0, "Total Transactions": 61.0, "Total Customers": 53.0, "Median Spend per Transaction": 33.78, "Median Spend per Customer": 36.72 }, "geometry": { "type": "Point", "coordinates": [ -75.174664, 39.952114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-bzf", "Name": "Gallo's Seafood", "Category": "Restaurants and Other Eating Places", "Address": "8101 Roosevelt Blvd", "LATITUDE": 40.057752, "LONGITUDE": -75.04466, "DATE_RANGE_START": 2024, "Total Visits": 565.0, "Total Visitors": 398.0, "POI_CBG": 421010333001.0, "Median Dwell Time": 72.0, "Total Spend": 5859.0, "Total Transactions": 74.0, "Total Customers": 58.0, "Median Spend per Transaction": 58.32, "Median Spend per Customer": 74.91 }, "geometry": { "type": "Point", "coordinates": [ -75.04466, 40.057752 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-7qz", "Name": "Pizzeria Cappelli", "Category": "Restaurants and Other Eating Places", "Address": "209 S 13th St", "LATITUDE": 39.948424, "LONGITUDE": -75.162117, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 1.0, "Total Spend": 8358.0, "Total Transactions": 391.0, "Total Customers": 332.0, "Median Spend per Transaction": 19.07, "Median Spend per Customer": 19.86 }, "geometry": { "type": "Point", "coordinates": [ -75.162117, 39.948424 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phy-pn5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "221 W Hunting Park Ave", "LATITUDE": 40.014677, "LONGITUDE": -75.130343, "DATE_RANGE_START": 2024, "Total Visits": 496.0, "Total Visitors": 421.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 4.0, "Total Spend": 1546.0, "Total Transactions": 166.0, "Total Customers": 97.0, "Median Spend per Transaction": 7.76, "Median Spend per Customer": 10.84 }, "geometry": { "type": "Point", "coordinates": [ -75.130343, 40.014677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pmb-7nq", "Name": "Sampan", "Category": "Traveler Accommodation", "Address": "124 S 13th St", "LATITUDE": 39.949535, "LONGITUDE": -75.16221, "DATE_RANGE_START": 2024, "Total Visits": 4462.0, "Total Visitors": 2680.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 26.0, "Total Spend": 6256.0, "Total Transactions": 88.0, "Total Customers": 82.0, "Median Spend per Transaction": 50.3, "Median Spend per Customer": 50.9 }, "geometry": { "type": "Point", "coordinates": [ -75.16221, 39.949535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-y9z", "Name": "Delightful Garden", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "906 Arch St", "LATITUDE": 39.953218, "LONGITUDE": -75.155064, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 195.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 442.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 28.81, "Median Spend per Customer": 28.81 }, "geometry": { "type": "Point", "coordinates": [ -75.155064, 39.953218 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phc-pd9", "Name": "Bala Inn", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5004 City Ave", "LATITUDE": 40.000059, "LONGITUDE": -75.228471, "DATE_RANGE_START": 2024, "Total Visits": 474.0, "Total Visitors": 454.0, "POI_CBG": 421010120002.0, "Median Dwell Time": 11.0, "Total Spend": 432.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 102.5, "Median Spend per Customer": 164.25 }, "geometry": { "type": "Point", "coordinates": [ -75.228471, 40.000059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pgm-68v", "Name": "The Black Squirrel Pub and Haunt", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3749 Midvale Ave", "LATITUDE": 40.009228, "LONGITUDE": -75.193913, "DATE_RANGE_START": 2024, "Total Visits": 481.0, "Total Visitors": 224.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 1033.0, "Total Spend": 4240.0, "Total Transactions": 50.0, "Total Customers": 38.0, "Median Spend per Transaction": 83.64, "Median Spend per Customer": 91.6 }, "geometry": { "type": "Point", "coordinates": [ -75.193913, 40.009228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-phz-q4v", "Name": "Jj's Cafe", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3800 J St", "LATITUDE": 40.005715, "LONGITUDE": -75.107525, "DATE_RANGE_START": 2024, "Total Visits": 249.0, "Total Visitors": 240.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 20.0, "Total Spend": 2865.0, "Total Transactions": 75.0, "Total Customers": 53.0, "Median Spend per Transaction": 31.0, "Median Spend per Customer": 41.5 }, "geometry": { "type": "Point", "coordinates": [ -75.107525, 40.005715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-223@628-pm4-n3q", "Name": "Los Taquitos de Puebla", "Category": "Restaurants and Other Eating Places", "Address": "1201 S 9th St", "LATITUDE": 39.93412, "LONGITUDE": -75.158732, "DATE_RANGE_START": 2024, "Total Visits": 228.0, "Total Visitors": 183.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 6.0, "Total Spend": 142.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 26.95, "Median Spend per Customer": 26.95 }, "geometry": { "type": "Point", "coordinates": [ -75.158732, 39.93412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgy-mzf", "Name": "Applebee's", "Category": "Restaurants and Other Eating Places", "Address": "701 Cathedral Road Andorra Ctr Unit 15", "LATITUDE": 40.063399, "LONGITUDE": -75.23819, "DATE_RANGE_START": 2024, "Total Visits": 748.0, "Total Visitors": 635.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 47.0, "Total Spend": 1286.0, "Total Transactions": 36.0, "Total Customers": 33.0, "Median Spend per Transaction": 29.83, "Median Spend per Customer": 29.83 }, "geometry": { "type": "Point", "coordinates": [ -75.23819, 40.063399 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pmb-v75", "Name": "Spasso Italian Grill", "Category": "Restaurants and Other Eating Places", "Address": "34 S Front St", "LATITUDE": 39.948747, "LONGITUDE": -75.142649, "DATE_RANGE_START": 2024, "Total Visits": 308.0, "Total Visitors": 303.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 31.0, "Total Spend": 10917.0, "Total Transactions": 63.0, "Total Customers": 54.0, "Median Spend per Transaction": 101.86, "Median Spend per Customer": 103.68 }, "geometry": { "type": "Point", "coordinates": [ -75.142649, 39.948747 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@63s-dvp-bff", "Name": "Danny's Wok", "Category": "Restaurants and Other Eating Places", "Address": "5750 Baltimore Ave", "LATITUDE": 39.945196, "LONGITUDE": -75.238961, "DATE_RANGE_START": 2024, "Total Visits": 166.0, "Total Visitors": 79.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 56.0, "Total Spend": 2629.0, "Total Transactions": 76.0, "Total Customers": 71.0, "Median Spend per Transaction": 25.38, "Median Spend per Customer": 32.19 }, "geometry": { "type": "Point", "coordinates": [ -75.238961, 39.945196 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm5-9s5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2805 S Front St # 2809", "LATITUDE": 39.911792, "LONGITUDE": -75.15005, "DATE_RANGE_START": 2024, "Total Visits": 75.0, "Total Visitors": 67.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 3.0, "Total Spend": 6526.0, "Total Transactions": 779.0, "Total Customers": 369.0, "Median Spend per Transaction": 6.79, "Median Spend per Customer": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.15005, 39.911792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-p9q-j7q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "9499 Roosevelt Blvd", "LATITUDE": 40.080258, "LONGITUDE": -75.028454, "DATE_RANGE_START": 2024, "Total Visits": 1147.0, "Total Visitors": 1039.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 2036.0, "Total Transactions": 65.0, "Total Customers": 58.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 32.28 }, "geometry": { "type": "Point", "coordinates": [ -75.028454, 40.080258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-p86-ghq", "Name": "Exxon Mobil", "Category": "Gasoline Stations", "Address": "7980 Verree Rd", "LATITUDE": 40.072821, "LONGITUDE": -75.076468, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 12.0, "POI_CBG": 421010341002.0, "Median Dwell Time": 6.0, "Total Spend": 3595.0, "Total Transactions": 133.0, "Total Customers": 74.0, "Median Spend per Transaction": 30.0, "Median Spend per Customer": 36.61 }, "geometry": { "type": "Point", "coordinates": [ -75.076468, 40.072821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-222@628-pnx-dsq", "Name": "Loco Pez", "Category": "Restaurants and Other Eating Places", "Address": "2401 E Norris St", "LATITUDE": 39.976842, "LONGITUDE": -75.127118, "DATE_RANGE_START": 2024, "Total Visits": 33.0, "Total Visitors": 12.0, "POI_CBG": 421010160002.0, "Median Dwell Time": 22.0, "Total Spend": 7067.0, "Total Transactions": 126.0, "Total Customers": 91.0, "Median Spend per Transaction": 39.11, "Median Spend per Customer": 47.03 }, "geometry": { "type": "Point", "coordinates": [ -75.127118, 39.976842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "246-222@628-phq-hdv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1700 W Cheltenham Ave", "LATITUDE": 40.065978, "LONGITUDE": -75.144349, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010266001.0, "Median Dwell Time": 2.0, "Total Spend": 262.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 17.03, "Median Spend per Customer": 25.22 }, "geometry": { "type": "Point", "coordinates": [ -75.144349, 40.065978 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pm9-t9z", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "200 W Washington Sq", "LATITUDE": 39.9479, "LONGITUDE": -75.154009, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 8.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 12.0, "Total Spend": 3110.0, "Total Transactions": 355.0, "Total Customers": 263.0, "Median Spend per Transaction": 6.89, "Median Spend per Customer": 8.32 }, "geometry": { "type": "Point", "coordinates": [ -75.154009, 39.9479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-phz-yn5", "Name": "Beacon Building Products", "Category": "Building Material and Supplies Dealers", "Address": "3939 Whitaker Ave", "LATITUDE": 40.009409, "LONGITUDE": -75.121452, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 75.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 11.0, "Total Spend": 16972.0, "Total Transactions": 382.0, "Total Customers": 309.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121452, 40.009409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24q-223@628-pm4-bc5", "Name": "Philly Tacos", "Category": "Restaurants and Other Eating Places", "Address": "2011 Reed St", "LATITUDE": 39.934393, "LONGITUDE": -75.177723, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010031001.0, "Median Dwell Time": 4.0, "Total Spend": 7554.0, "Total Transactions": 405.0, "Total Customers": 329.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 18.2 }, "geometry": { "type": "Point", "coordinates": [ -75.177723, 39.934393 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pmb-7nq", "Name": "Mitchell & Ness", "Category": "Clothing Stores", "Address": "1306 Walnut St", "LATITUDE": 39.948835, "LONGITUDE": -75.162377, "DATE_RANGE_START": 2024, "Total Visits": 1721.0, "Total Visitors": 957.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 54.0, "Total Spend": 2260.0, "Total Transactions": 14.0, "Total Customers": 13.0, "Median Spend per Transaction": 145.8, "Median Spend per Customer": 125.55 }, "geometry": { "type": "Point", "coordinates": [ -75.162377, 39.948835 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pmd-w6k", "Name": "Food & Friends", "Category": "Grocery Stores", "Address": "1933 Spruce St", "LATITUDE": 39.948295, "LONGITUDE": -75.174192, "DATE_RANGE_START": 2024, "Total Visits": 409.0, "Total Visitors": 352.0, "POI_CBG": 421010008033.0, "Median Dwell Time": 1.0, "Total Spend": 6966.0, "Total Transactions": 388.0, "Total Customers": 250.0, "Median Spend per Transaction": 14.44, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.174192, 39.948295 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-224@628-pmb-9mk", "Name": "Trader Joe's", "Category": "Grocery Stores", "Address": "1324 Arch St", "LATITUDE": 39.954113, "LONGITUDE": -75.16243, "DATE_RANGE_START": 2024, "Total Visits": 1963.0, "Total Visitors": 1392.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 9.0, "Total Spend": 497.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 22.83, "Median Spend per Customer": 23.04 }, "geometry": { "type": "Point", "coordinates": [ -75.16243, 39.954113 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p85-9cq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7941 Bustleton Ave @ Loney St", "LATITUDE": 40.058173, "LONGITUDE": -75.052406, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010334003.0, "Median Dwell Time": 2.0, "Total Spend": 130.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 26.99, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.052406, 40.058173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmf-kvf", "Name": "Butcher Bar", "Category": "Restaurants and Other Eating Places", "Address": "2034 Chestnut St", "LATITUDE": 39.95199, "LONGITUDE": -75.174938, "DATE_RANGE_START": 2024, "Total Visits": 1330.0, "Total Visitors": 1065.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 31.0, "Total Spend": 12572.0, "Total Transactions": 154.0, "Total Customers": 138.0, "Median Spend per Transaction": 61.34, "Median Spend per Customer": 63.48 }, "geometry": { "type": "Point", "coordinates": [ -75.174938, 39.95199 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pft-z9f", "Name": "Bob's Diner", "Category": "Restaurants and Other Eating Places", "Address": "6053 Ridge Ave", "LATITUDE": 40.032848, "LONGITUDE": -75.21422, "DATE_RANGE_START": 2024, "Total Visits": 244.0, "Total Visitors": 179.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 92.0, "Total Spend": 163.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 62.0, "Median Spend per Customer": 62.0 }, "geometry": { "type": "Point", "coordinates": [ -75.21422, 40.032848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pgg-f2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2145 W Allegheny Ave", "LATITUDE": 40.003544, "LONGITUDE": -75.165622, "DATE_RANGE_START": 2024, "Total Visits": 500.0, "Total Visitors": 448.0, "POI_CBG": 421010202001.0, "Median Dwell Time": 2.0, "Total Spend": 3004.0, "Total Transactions": 345.0, "Total Customers": 207.0, "Median Spend per Transaction": 7.54, "Median Spend per Customer": 8.29 }, "geometry": { "type": "Point", "coordinates": [ -75.165622, 40.003544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pp5-pn5", "Name": "Sam's Super Market", "Category": "Grocery Stores", "Address": "2852 N Front St", "LATITUDE": 39.993874, "LONGITUDE": -75.130398, "DATE_RANGE_START": 2024, "Total Visits": 504.0, "Total Visitors": 324.0, "POI_CBG": 421010176014.0, "Median Dwell Time": 3.0, "Total Spend": 3554.0, "Total Transactions": 257.0, "Total Customers": 78.0, "Median Spend per Transaction": 14.45, "Median Spend per Customer": 10.4 }, "geometry": { "type": "Point", "coordinates": [ -75.130398, 39.993874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pp2-2kz", "Name": "dd's DISCOUNTS", "Category": "Clothing Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992485, "LONGITUDE": -75.101233, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 13.0, "Total Spend": 4303.0, "Total Transactions": 129.0, "Total Customers": 111.0, "Median Spend per Transaction": 23.94, "Median Spend per Customer": 30.02 }, "geometry": { "type": "Point", "coordinates": [ -75.101233, 39.992485 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-2p9", "Name": "IKEA", "Category": "Furniture Stores", "Address": "2206 S Columbus Blvd", "LATITUDE": 39.917103, "LONGITUDE": -75.141625, "DATE_RANGE_START": 2024, "Total Visits": 251.0, "Total Visitors": 178.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 61.0, "Total Spend": 344233.0, "Total Transactions": 4347.0, "Total Customers": 2827.0, "Median Spend per Transaction": 26.5, "Median Spend per Customer": 49.62 }, "geometry": { "type": "Point", "coordinates": [ -75.141625, 39.917103 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvr-7nq", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6140 Woodland Ave", "LATITUDE": 39.928144, "LONGITUDE": -75.230166, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 14.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 10.0, "Total Spend": 143.0, "Total Transactions": 14.0, "Total Customers": 8.0, "Median Spend per Transaction": 8.64, "Median Spend per Customer": 13.74 }, "geometry": { "type": "Point", "coordinates": [ -75.230166, 39.928144 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-73q", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7241 Torresdale Ave", "LATITUDE": 40.029718, "LONGITUDE": -75.035335, "DATE_RANGE_START": 2024, "Total Visits": 207.0, "Total Visitors": 157.0, "POI_CBG": 421010326005.0, "Median Dwell Time": 5.0, "Total Spend": 71.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 12.54, "Median Spend per Customer": 10.07 }, "geometry": { "type": "Point", "coordinates": [ -75.035335, 40.029718 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pfz-bp9", "Name": "Philadelphia Runner", "Category": "Shoe Stores", "Address": "4358 Main St", "LATITUDE": 40.02544, "LONGITUDE": -75.22391, "DATE_RANGE_START": 2024, "Total Visits": 531.0, "Total Visitors": 452.0, "POI_CBG": 421010214001.0, "Median Dwell Time": 10.0, "Total Spend": 12340.0, "Total Transactions": 105.0, "Total Customers": 95.0, "Median Spend per Transaction": 125.99, "Median Spend per Customer": 130.5 }, "geometry": { "type": "Point", "coordinates": [ -75.22391, 40.02544 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-6tv", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1529 Chestnut St", "LATITUDE": 39.951515, "LONGITUDE": -75.166659, "DATE_RANGE_START": 2024, "Total Visits": 8743.0, "Total Visitors": 5302.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 7.0, "Total Spend": 15791.0, "Total Transactions": 1147.0, "Total Customers": 883.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 12.42 }, "geometry": { "type": "Point", "coordinates": [ -75.166659, 39.951515 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-bp9", "Name": "Brown Street Coffee & Banhery", "Category": "Restaurants and Other Eating Places", "Address": "2545 Brown St", "LATITUDE": 39.970469, "LONGITUDE": -75.179503, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 195.0, "POI_CBG": 421010136023.0, "Median Dwell Time": 14.0, "Total Spend": 757.0, "Total Transactions": 62.0, "Total Customers": 34.0, "Median Spend per Transaction": 10.01, "Median Spend per Customer": 18.68 }, "geometry": { "type": "Point", "coordinates": [ -75.179503, 39.970469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-3yv", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.101772, "LONGITUDE": -75.007116, "DATE_RANGE_START": 2024, "Total Visits": 1455.0, "Total Visitors": 1162.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 39.0, "Total Spend": 1732.0, "Total Transactions": 29.0, "Total Customers": 26.0, "Median Spend per Transaction": 52.36, "Median Spend per Customer": 63.59 }, "geometry": { "type": "Point", "coordinates": [ -75.007116, 40.101772 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-p75-6c5", "Name": "Smoothie King", "Category": "Restaurants and Other Eating Places", "Address": "8922 Frankford Ave", "LATITUDE": 40.051341, "LONGITUDE": -75.009746, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 182.0, "POI_CBG": 421010348013.0, "Median Dwell Time": null, "Total Spend": 74.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 28.16, "Median Spend per Customer": 28.16 }, "geometry": { "type": "Point", "coordinates": [ -75.009746, 40.051341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgh-xt9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2344 N Broad St", "LATITUDE": 39.989122, "LONGITUDE": -75.155937, "DATE_RANGE_START": 2024, "Total Visits": 408.0, "Total Visitors": 276.0, "POI_CBG": 421010167023.0, "Median Dwell Time": 3.0, "Total Spend": 5380.0, "Total Transactions": 691.0, "Total Customers": 395.0, "Median Spend per Transaction": 6.45, "Median Spend per Customer": 9.28 }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.989122 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm7-49z", "Name": "Little Caesars", "Category": "Restaurants and Other Eating Places", "Address": "2400 W Passyunk Ave", "LATITUDE": 39.921993, "LONGITUDE": -75.187376, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 6.0, "Total Spend": 32191.0, "Total Transactions": 2109.0, "Total Customers": 1535.0, "Median Spend per Transaction": 12.19, "Median Spend per Customer": 15.76 }, "geometry": { "type": "Point", "coordinates": [ -75.187376, 39.921993 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-pjv", "Name": "Beer Stop", "Category": "Beer, Wine, and Liquor Stores", "Address": "4252 Rising Sun Ave", "LATITUDE": 40.015837, "LONGITUDE": -75.130275, "DATE_RANGE_START": 2024, "Total Visits": 307.0, "Total Visitors": 138.0, "POI_CBG": 421010383002.0, "Median Dwell Time": 11.0, "Total Spend": 2525.0, "Total Transactions": 90.0, "Total Customers": 65.0, "Median Spend per Transaction": 28.28, "Median Spend per Customer": 28.57 }, "geometry": { "type": "Point", "coordinates": [ -75.130275, 40.015837 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-mx5", "Name": "Pickwick Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "1700 Market St", "LATITUDE": 39.952867, "LONGITUDE": -75.169475, "DATE_RANGE_START": 2024, "Total Visits": 2231.0, "Total Visitors": 1162.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 227.0, "Total Spend": 2988.0, "Total Transactions": 63.0, "Total Customers": 34.0, "Median Spend per Transaction": 6.98, "Median Spend per Customer": 18.54 }, "geometry": { "type": "Point", "coordinates": [ -75.169475, 39.952867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@628-phd-h3q", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "4400 City Ave", "LATITUDE": 40.003394, "LONGITUDE": -75.221061, "DATE_RANGE_START": 2024, "Total Visits": 1293.0, "Total Visitors": 1012.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 5.0, "Total Spend": 6620.0, "Total Transactions": 298.0, "Total Customers": 246.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 21.78 }, "geometry": { "type": "Point", "coordinates": [ -75.221061, 40.003394 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@628-pm4-gtv", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2009 S Broad St", "LATITUDE": 39.925222, "LONGITUDE": -75.169039, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 120.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 23.0, "Total Spend": 531.0, "Total Transactions": 20.0, "Total Customers": 16.0, "Median Spend per Transaction": 28.96, "Median Spend per Customer": 24.8 }, "geometry": { "type": "Point", "coordinates": [ -75.169039, 39.925222 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-vfz", "Name": "The Book Trader", "Category": "Book Stores and News Dealers", "Address": "7 N 2nd St", "LATITUDE": 39.950249, "LONGITUDE": -75.143327, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 159.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 4.0, "Total Spend": 1949.0, "Total Transactions": 97.0, "Total Customers": 95.0, "Median Spend per Transaction": 18.25, "Median Spend per Customer": 17.71 }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.950249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pg4-2c5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5200 Germantown Ave", "LATITUDE": 40.030953, "LONGITUDE": -75.16755, "DATE_RANGE_START": 2024, "Total Visits": 292.0, "Total Visitors": 209.0, "POI_CBG": 421010242001.0, "Median Dwell Time": 9.0, "Total Spend": 2058.0, "Total Transactions": 76.0, "Total Customers": 58.0, "Median Spend per Transaction": 19.47, "Median Spend per Customer": 22.8 }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 40.030953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-pft-zpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5911 Ridge Ave # 5933", "LATITUDE": 40.03081, "LONGITUDE": -75.21132, "DATE_RANGE_START": 2024, "Total Visits": 856.0, "Total Visitors": 637.0, "POI_CBG": 421010212002.0, "Median Dwell Time": 5.0, "Total Spend": 1911.0, "Total Transactions": 90.0, "Total Customers": 79.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 13.51 }, "geometry": { "type": "Point", "coordinates": [ -75.21132, 40.03081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-p74-ct9", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "8045 Frankford Ave Ste 1", "LATITUDE": 40.041865, "LONGITUDE": -75.026033, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010329001.0, "Median Dwell Time": 3.0, "Total Spend": 471.0, "Total Transactions": 17.0, "Total Customers": 14.0, "Median Spend per Transaction": 22.97, "Median Spend per Customer": 40.93 }, "geometry": { "type": "Point", "coordinates": [ -75.026033, 40.041865 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phm-8gk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6620 N Broad St", "LATITUDE": 40.054321, "LONGITUDE": -75.141856, "DATE_RANGE_START": 2024, "Total Visits": 482.0, "Total Visitors": 452.0, "POI_CBG": 421010268003.0, "Median Dwell Time": 6.0, "Total Spend": 4295.0, "Total Transactions": 491.0, "Total Customers": 213.0, "Median Spend per Transaction": 7.52, "Median Spend per Customer": 11.45 }, "geometry": { "type": "Point", "coordinates": [ -75.141856, 40.054321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-r6k", "Name": "The Home Depot", "Category": "Building Material and Supplies Dealers", "Address": "2200 W Oregon Ave", "LATITUDE": 39.918002, "LONGITUDE": -75.185107, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 4.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 15.0, "Total Spend": 75458.0, "Total Transactions": 521.0, "Total Customers": 265.0, "Median Spend per Transaction": 63.25, "Median Spend per Customer": 67.98 }, "geometry": { "type": "Point", "coordinates": [ -75.185107, 39.918002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj8-2ff", "Name": "IHOP", "Category": "Restaurants and Other Eating Places", "Address": "4310 E Roosevelt Blvd", "LATITUDE": 40.030252, "LONGITUDE": -75.104943, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010291003.0, "Median Dwell Time": 23.0, "Total Spend": 5576.0, "Total Transactions": 116.0, "Total Customers": 109.0, "Median Spend per Transaction": 44.58, "Median Spend per Customer": 44.58 }, "geometry": { "type": "Point", "coordinates": [ -75.104943, 40.030252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pmb-gzf", "Name": "Tavern On Camac", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "243 S Camac St", "LATITUDE": 39.947272, "LONGITUDE": -75.161618, "DATE_RANGE_START": 2024, "Total Visits": 236.0, "Total Visitors": 118.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 43.0, "Total Spend": 995.0, "Total Transactions": 45.0, "Total Customers": 20.0, "Median Spend per Transaction": 19.18, "Median Spend per Customer": 37.8 }, "geometry": { "type": "Point", "coordinates": [ -75.161618, 39.947272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22d@628-pmf-7yv", "Name": "Lemon Grass Thai", "Category": "Restaurants and Other Eating Places", "Address": "3131 Walnut St", "LATITUDE": 39.952691, "LONGITUDE": -75.186998, "DATE_RANGE_START": 2024, "Total Visits": 66.0, "Total Visitors": 39.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 45.0, "Total Spend": 1878.0, "Total Transactions": 65.0, "Total Customers": 43.0, "Median Spend per Transaction": 20.2, "Median Spend per Customer": 37.56 }, "geometry": { "type": "Point", "coordinates": [ -75.186998, 39.952691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-phj-rrk", "Name": "BBQ Town", "Category": "Restaurants and Other Eating Places", "Address": "7711 Ogontz Ave", "LATITUDE": 40.071208, "LONGITUDE": -75.157221, "DATE_RANGE_START": 2024, "Total Visits": 65.0, "Total Visitors": 59.0, "POI_CBG": 421010263024.0, "Median Dwell Time": 236.0, "Total Spend": 324.0, "Total Transactions": 12.0, "Total Customers": 9.0, "Median Spend per Transaction": 25.2, "Median Spend per Customer": 25.2 }, "geometry": { "type": "Point", "coordinates": [ -75.157221, 40.071208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pmb-6p9", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1516 Chestnut St", "LATITUDE": 39.951018, "LONGITUDE": -75.166333, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 7194.0, "Total Transactions": 528.0, "Total Customers": 394.0, "Median Spend per Transaction": 12.52, "Median Spend per Customer": 13.26 }, "geometry": { "type": "Point", "coordinates": [ -75.166333, 39.951018 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@628-pmd-rx5", "Name": "Good Karma Cafe", "Category": "Restaurants and Other Eating Places", "Address": "331 S 22nd St", "LATITUDE": 39.947387, "LONGITUDE": -75.177972, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 183.0, "POI_CBG": 421010012012.0, "Median Dwell Time": 13.0, "Total Spend": 535.0, "Total Transactions": 51.0, "Total Customers": 46.0, "Median Spend per Transaction": 8.78, "Median Spend per Customer": 9.86 }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.947387 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfw-6tv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2901 Abbottsford Ave", "LATITUDE": 40.01513, "LONGITUDE": -75.178205, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 25.0, "POI_CBG": 421010206001.0, "Median Dwell Time": 4.0, "Total Spend": 2875.0, "Total Transactions": 409.0, "Total Customers": 191.0, "Median Spend per Transaction": 5.79, "Median Spend per Customer": 9.16 }, "geometry": { "type": "Point", "coordinates": [ -75.178205, 40.01513 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pfz-5fz", "Name": "Bark Social Philadelphia", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3720 Main St", "LATITUDE": 40.015531, "LONGITUDE": -75.211164, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 13.0, "POI_CBG": 421010209003.0, "Median Dwell Time": 14.0, "Total Spend": 97.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 36.66, "Median Spend per Customer": 36.66 }, "geometry": { "type": "Point", "coordinates": [ -75.211164, 40.015531 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-229@628-pnw-v4v", "Name": "Jack's Bar Grill", "Category": "Restaurants and Other Eating Places", "Address": "1001 N Delaware Ave", "LATITUDE": 39.963822, "LONGITUDE": -75.13244, "DATE_RANGE_START": 2024, "Total Visits": 3081.0, "Total Visitors": 1301.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 121.0, "Total Spend": 3422.0, "Total Transactions": 109.0, "Total Customers": 84.0, "Median Spend per Transaction": 24.3, "Median Spend per Customer": 30.79 }, "geometry": { "type": "Point", "coordinates": [ -75.13244, 39.963822 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p9q-y9z", "Name": "Dairy Queen", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave", "LATITUDE": 40.087367, "LONGITUDE": -75.039942, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 3.0, "Total Spend": 1598.0, "Total Transactions": 145.0, "Total Customers": 124.0, "Median Spend per Transaction": 8.73, "Median Spend per Customer": 9.71 }, "geometry": { "type": "Point", "coordinates": [ -75.039942, 40.087367 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pmc-v2k", "Name": "Lane Bryant", "Category": "Clothing Stores", "Address": "1851 S Columbus Blvd", "LATITUDE": 39.923469, "LONGITUDE": -75.140666, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 919.0, "Total Transactions": 26.0, "Total Customers": 24.0, "Median Spend per Transaction": 24.07, "Median Spend per Customer": 27.74 }, "geometry": { "type": "Point", "coordinates": [ -75.140666, 39.923469 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfy-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7106 Ridge Ave", "LATITUDE": 40.043958, "LONGITUDE": -75.231219, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 7.0, "Total Spend": 547.0, "Total Transactions": 34.0, "Total Customers": 22.0, "Median Spend per Transaction": 9.35, "Median Spend per Customer": 21.33 }, "geometry": { "type": "Point", "coordinates": [ -75.231219, 40.043958 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pmf-rff", "Name": "Palm Tree Gourmet", "Category": "Grocery Stores", "Address": "1940 Pine St", "LATITUDE": 39.946607, "LONGITUDE": -75.174549, "DATE_RANGE_START": 2024, "Total Visits": 162.0, "Total Visitors": 141.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 1.0, "Total Spend": 10670.0, "Total Transactions": 808.0, "Total Customers": 433.0, "Median Spend per Transaction": 10.99, "Median Spend per Customer": 16.82 }, "geometry": { "type": "Point", "coordinates": [ -75.174549, 39.946607 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pjb-8qf", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6337 N Broad St", "LATITUDE": 40.050125, "LONGITUDE": -75.141867, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 175.0, "POI_CBG": 421010268004.0, "Median Dwell Time": 10.0, "Total Spend": 398.0, "Total Transactions": 16.0, "Total Customers": 9.0, "Median Spend per Transaction": 15.45, "Median Spend per Customer": 25.27 }, "geometry": { "type": "Point", "coordinates": [ -75.141867, 40.050125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p9k-dy9", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "920 Red Lion Rd", "LATITUDE": 40.10065, "LONGITUDE": -75.026815, "DATE_RANGE_START": 2024, "Total Visits": 2516.0, "Total Visitors": 1449.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 7.0, "Total Spend": 77793.0, "Total Transactions": 1890.0, "Total Customers": 868.0, "Median Spend per Transaction": 23.74, "Median Spend per Customer": 38.99 }, "geometry": { "type": "Point", "coordinates": [ -75.026815, 40.10065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-z9f", "Name": "Neighborhood Pharmacy", "Category": "Health and Personal Care Stores", "Address": "5701 Chestnut St", "LATITUDE": 39.959949, "LONGITUDE": -75.235332, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 93.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 9.0, "Total Spend": 330.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 27.25, "Median Spend per Customer": 27.25 }, "geometry": { "type": "Point", "coordinates": [ -75.235332, 39.959949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p82-6ff", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6401 Oxford Ave", "LATITUDE": 40.045462, "LONGITUDE": -75.087593, "DATE_RANGE_START": 2024, "Total Visits": 966.0, "Total Visitors": 591.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 6.0, "Total Spend": 1894.0, "Total Transactions": 101.0, "Total Customers": 93.0, "Median Spend per Transaction": 10.78, "Median Spend per Customer": 10.78 }, "geometry": { "type": "Point", "coordinates": [ -75.087593, 40.045462 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22t@628-pmf-n5z", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1601 Market St", "LATITUDE": 39.954249, "LONGITUDE": -75.167916, "DATE_RANGE_START": 2024, "Total Visits": 2364.0, "Total Visitors": 1328.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 6.0, "Total Spend": 380.0, "Total Transactions": 37.0, "Total Customers": 20.0, "Median Spend per Transaction": 7.65, "Median Spend per Customer": 11.55 }, "geometry": { "type": "Point", "coordinates": [ -75.167916, 39.954249 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9r-2kz", "Name": "Skechers", "Category": "Shoe Stores", "Address": "9161 Roosevelt Blvd # 17", "LATITUDE": 40.074571, "LONGITUDE": -75.032796, "DATE_RANGE_START": 2024, "Total Visits": 383.0, "Total Visitors": 358.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 10.0, "Total Spend": 953.0, "Total Transactions": 12.0, "Total Customers": 12.0, "Median Spend per Transaction": 69.99, "Median Spend per Customer": 69.99 }, "geometry": { "type": "Point", "coordinates": [ -75.032796, 40.074571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm3-vpv", "Name": "Nice Things Handmade", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1731 E Passyunk Ave", "LATITUDE": 39.927868, "LONGITUDE": -75.165592, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 176.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 13.0, "Total Spend": 146.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 55.62, "Median Spend per Customer": 55.62 }, "geometry": { "type": "Point", "coordinates": [ -75.165592, 39.927868 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pnx-6rk", "Name": "Spring Garden Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "400 Spring Garden St", "LATITUDE": 39.960773, "LONGITUDE": -75.145489, "DATE_RANGE_START": 2024, "Total Visits": 474.0, "Total Visitors": 312.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 33.0, "Total Spend": 3420.0, "Total Transactions": 161.0, "Total Customers": 90.0, "Median Spend per Transaction": 12.96, "Median Spend per Customer": 19.72 }, "geometry": { "type": "Point", "coordinates": [ -75.145489, 39.960773 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm5-2ff", "Name": "Nam Phuong", "Category": "Restaurants and Other Eating Places", "Address": "1100 Washington Ave", "LATITUDE": 39.936528, "LONGITUDE": -75.161971, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 11.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 13.0, "Total Spend": 6208.0, "Total Transactions": 101.0, "Total Customers": 93.0, "Median Spend per Transaction": 55.2, "Median Spend per Customer": 57.36 }, "geometry": { "type": "Point", "coordinates": [ -75.161971, 39.936528 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-dsq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5801 Oxford Ave", "LATITUDE": 40.032656, "LONGITUDE": -75.084461, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 28.0, "POI_CBG": 421010311023.0, "Median Dwell Time": 4.0, "Total Spend": 2780.0, "Total Transactions": 311.0, "Total Customers": 138.0, "Median Spend per Transaction": 7.8, "Median Spend per Customer": 9.15 }, "geometry": { "type": "Point", "coordinates": [ -75.084461, 40.032656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-p35", "Name": "Fiore Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2608 Kensington Ave", "LATITUDE": 39.989223, "LONGITUDE": -75.127044, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 170.0, "POI_CBG": 421010163001.0, "Median Dwell Time": 1.0, "Total Spend": 840.0, "Total Transactions": 36.0, "Total Customers": 32.0, "Median Spend per Transaction": 21.51, "Median Spend per Customer": 21.76 }, "geometry": { "type": "Point", "coordinates": [ -75.127044, 39.989223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-224@628-pgj-cwk", "Name": "Fast Shack", "Category": "Restaurants and Other Eating Places", "Address": "1601 N 15th St", "LATITUDE": 39.977849, "LONGITUDE": -75.159344, "DATE_RANGE_START": 2024, "Total Visits": 2270.0, "Total Visitors": 832.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 349.0, "Total Spend": 210.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 18.94, "Median Spend per Customer": 13.12 }, "geometry": { "type": "Point", "coordinates": [ -75.159344, 39.977849 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-233@628-pm9-y9z", "Name": "Ishkabibble's", "Category": "Restaurants and Other Eating Places", "Address": "337 South St", "LATITUDE": 39.941689, "LONGITUDE": -75.148774, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 4.0, "Total Spend": 136.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 28.5, "Median Spend per Customer": 37.95 }, "geometry": { "type": "Point", "coordinates": [ -75.148774, 39.941689 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pmb-6rk", "Name": "Le Pain Quotidien", "Category": "Restaurants and Other Eating Places", "Address": "1425 Walnut St", "LATITUDE": 39.949701, "LONGITUDE": -75.165264, "DATE_RANGE_START": 2024, "Total Visits": 752.0, "Total Visitors": 409.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 18.0, "Total Spend": 10376.0, "Total Transactions": 498.0, "Total Customers": 386.0, "Median Spend per Transaction": 16.93, "Median Spend per Customer": 20.57 }, "geometry": { "type": "Point", "coordinates": [ -75.165264, 39.949701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj9-73q", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6000 N Broad St Ste", "LATITUDE": 40.044989, "LONGITUDE": -75.144293, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 8.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 5.0, "Total Spend": 1568.0, "Total Transactions": 115.0, "Total Customers": 43.0, "Median Spend per Transaction": 9.65, "Median Spend per Customer": 20.02 }, "geometry": { "type": "Point", "coordinates": [ -75.144293, 40.044989 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j9z", "Name": "aka.", "Category": "Traveler Accommodation", "Address": "135 S 18th St", "LATITUDE": 39.95037, "LONGITUDE": -75.17042, "DATE_RANGE_START": 2024, "Total Visits": 1997.0, "Total Visitors": 1618.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 7690.0, "Total Transactions": 63.0, "Total Customers": 50.0, "Median Spend per Transaction": 36.88, "Median Spend per Customer": 42.0 }, "geometry": { "type": "Point", "coordinates": [ -75.17042, 39.95037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-n3q", "Name": "Morgan's Pier", "Category": "Restaurants and Other Eating Places", "Address": "221 N Columbus Blvd", "LATITUDE": 39.955033, "LONGITUDE": -75.13891, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 220.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 24.0, "Total Spend": 14825.0, "Total Transactions": 474.0, "Total Customers": 248.0, "Median Spend per Transaction": 20.7, "Median Spend per Customer": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13891, 39.955033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pgb-t5f", "Name": "Sum Dim Sum", "Category": "Restaurants and Other Eating Places", "Address": "679 N Broad St", "LATITUDE": 39.965955, "LONGITUDE": -75.160323, "DATE_RANGE_START": 2024, "Total Visits": 229.0, "Total Visitors": 213.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 1.0, "Total Spend": 589.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 85.2, "Median Spend per Customer": 97.5 }, "geometry": { "type": "Point", "coordinates": [ -75.160323, 39.965955 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@63s-dvy-zs5", "Name": "Kumo Hibachi Sushi", "Category": "Restaurants and Other Eating Places", "Address": "17 S 43rd St", "LATITUDE": 39.957205, "LONGITUDE": -75.208061, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 45.0, "POI_CBG": 421010087021.0, "Median Dwell Time": 2.0, "Total Spend": 495.0, "Total Transactions": 17.0, "Total Customers": 13.0, "Median Spend per Transaction": 30.13, "Median Spend per Customer": 23.99 }, "geometry": { "type": "Point", "coordinates": [ -75.208061, 39.957205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pfz-nyv", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "5632 Ridge Ave", "LATITUDE": 40.026277, "LONGITUDE": -75.209499, "DATE_RANGE_START": 2024, "Total Visits": 524.0, "Total Visitors": 279.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 7.0, "Total Spend": 3241.0, "Total Transactions": 216.0, "Total Customers": 91.0, "Median Spend per Transaction": 11.11, "Median Spend per Customer": 13.17 }, "geometry": { "type": "Point", "coordinates": [ -75.209499, 40.026277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp2-75z", "Name": "A And W Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "2623 E Westmoreland St", "LATITUDE": 39.986409, "LONGITUDE": -75.100667, "DATE_RANGE_START": 2024, "Total Visits": 46.0, "Total Visitors": 42.0, "POI_CBG": 421010379002.0, "Median Dwell Time": 13.0, "Total Spend": 280.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 40.9, "Median Spend per Customer": 46.84 }, "geometry": { "type": "Point", "coordinates": [ -75.100667, 39.986409 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmb-7nq", "Name": "Vintage Wine Bar", "Category": "Restaurants and Other Eating Places", "Address": "129 S 13th St", "LATITUDE": 39.949538, "LONGITUDE": -75.161728, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 8.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 16.0, "Total Spend": 5292.0, "Total Transactions": 100.0, "Total Customers": 79.0, "Median Spend per Transaction": 42.89, "Median Spend per Customer": 49.5 }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.949538 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm3-x5z", "Name": "Pub On Passyunk East", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1501 E Passyunk Ave", "LATITUDE": 39.930838, "LONGITUDE": -75.162038, "DATE_RANGE_START": 2024, "Total Visits": 257.0, "Total Visitors": 220.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 44.0, "Total Spend": 356.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 20.75, "Median Spend per Customer": 20.75 }, "geometry": { "type": "Point", "coordinates": [ -75.162038, 39.930838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pmf-sh5", "Name": "Monk's Cafe", "Category": "Restaurants and Other Eating Places", "Address": "264 S 16th St", "LATITUDE": 39.947708, "LONGITUDE": -75.168254, "DATE_RANGE_START": 2024, "Total Visits": 269.0, "Total Visitors": 234.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 63.0, "Total Spend": 19529.0, "Total Transactions": 288.0, "Total Customers": 238.0, "Median Spend per Transaction": 51.23, "Median Spend per Customer": 60.38 }, "geometry": { "type": "Point", "coordinates": [ -75.168254, 39.947708 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pm6-gx5", "Name": "King Food", "Category": "Restaurants and Other Eating Places", "Address": "2554 S American St", "LATITUDE": 39.915882, "LONGITUDE": -75.152424, "DATE_RANGE_START": 2024, "Total Visits": 90.0, "Total Visitors": 75.0, "POI_CBG": 421010042022.0, "Median Dwell Time": 13.0, "Total Spend": 195.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 11.33 }, "geometry": { "type": "Point", "coordinates": [ -75.152424, 39.915882 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pj7-3h5", "Name": "El Balconcito", "Category": "Restaurants and Other Eating Places", "Address": "658 E Godfrey Ave", "LATITUDE": 40.038206, "LONGITUDE": -75.101901, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 116.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 4.0, "Total Spend": 455.0, "Total Transactions": 7.0, "Total Customers": 4.0, "Median Spend per Transaction": 75.88, "Median Spend per Customer": 139.32 }, "geometry": { "type": "Point", "coordinates": [ -75.101901, 40.038206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9t-r6k", "Name": "Pat's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "12317 Academy Rd", "LATITUDE": 40.095478, "LONGITUDE": -74.975404, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 163.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 56.0, "Total Spend": 1960.0, "Total Transactions": 141.0, "Total Customers": 83.0, "Median Spend per Transaction": 9.38, "Median Spend per Customer": 17.8 }, "geometry": { "type": "Point", "coordinates": [ -74.975404, 40.095478 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-224@628-pg8-jgk", "Name": "Over The Moon Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "2623 W Girard Ave", "LATITUDE": 39.974318, "LONGITUDE": -75.179761, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010138002.0, "Median Dwell Time": 1.0, "Total Spend": 927.0, "Total Transactions": 92.0, "Total Customers": 79.0, "Median Spend per Transaction": 10.15, "Median Spend per Customer": 10.83 }, "geometry": { "type": "Point", "coordinates": [ -75.179761, 39.974318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmc-pn5", "Name": "Taco Loco", "Category": "Restaurants and Other Eating Places", "Address": "400 Washington Ave", "LATITUDE": 39.933764, "LONGITUDE": -75.151088, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010025004.0, "Median Dwell Time": null, "Total Spend": 331.0, "Total Transactions": 16.0, "Total Customers": 8.0, "Median Spend per Transaction": 16.75, "Median Spend per Customer": 38.0 }, "geometry": { "type": "Point", "coordinates": [ -75.151088, 39.933764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7x-brk", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "6601 Roosevelt Blvd", "LATITUDE": 40.035926, "LONGITUDE": -75.062302, "DATE_RANGE_START": 2024, "Total Visits": 1012.0, "Total Visitors": 637.0, "POI_CBG": 421010316007.0, "Median Dwell Time": 9.0, "Total Spend": 60218.0, "Total Transactions": 1701.0, "Total Customers": 904.0, "Median Spend per Transaction": 21.91, "Median Spend per Customer": 31.09 }, "geometry": { "type": "Point", "coordinates": [ -75.062302, 40.035926 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmf-ty9", "Name": "Rittenhouse Market", "Category": "Grocery Stores", "Address": "1733 Spruce St", "LATITUDE": 39.947871, "LONGITUDE": -75.170958, "DATE_RANGE_START": 2024, "Total Visits": 828.0, "Total Visitors": 604.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 18157.0, "Total Transactions": 951.0, "Total Customers": 413.0, "Median Spend per Transaction": 13.32, "Median Spend per Customer": 19.88 }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.947871 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pmb-yd9", "Name": "Xun Yu Si Kao", "Category": "Restaurants and Other Eating Places", "Address": "140 N 10th St", "LATITUDE": 39.954791, "LONGITUDE": -75.156153, "DATE_RANGE_START": 2024, "Total Visits": 3782.0, "Total Visitors": 2650.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 14.0, "Total Spend": 2117.0, "Total Transactions": 32.0, "Total Customers": 28.0, "Median Spend per Transaction": 59.11, "Median Spend per Customer": 67.04 }, "geometry": { "type": "Point", "coordinates": [ -75.156153, 39.954791 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pmb-xqz", "Name": "The Original Turkey", "Category": "Restaurants and Other Eating Places", "Address": "45 N 12th St", "LATITUDE": 39.956427, "LONGITUDE": -75.158805, "DATE_RANGE_START": 2024, "Total Visits": 294.0, "Total Visitors": 265.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 2622.0, "Total Transactions": 155.0, "Total Customers": 138.0, "Median Spend per Transaction": 14.95, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.158805, 39.956427 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm5-2ff", "Name": "Sky Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1122-38 Washington Ave Ste B", "LATITUDE": 39.937032, "LONGITUDE": -75.162871, "DATE_RANGE_START": 2024, "Total Visits": 203.0, "Total Visitors": 200.0, "POI_CBG": 421010024005.0, "Median Dwell Time": 8.0, "Total Spend": 1962.0, "Total Transactions": 39.0, "Total Customers": 37.0, "Median Spend per Transaction": 38.19, "Median Spend per Customer": 39.15 }, "geometry": { "type": "Point", "coordinates": [ -75.162871, 39.937032 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-fmk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "1624 Cottman Ave", "LATITUDE": 40.054375, "LONGITUDE": -75.072167, "DATE_RANGE_START": 2024, "Total Visits": 344.0, "Total Visitors": 278.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 11.0, "Total Spend": 7825.0, "Total Transactions": 557.0, "Total Customers": 333.0, "Median Spend per Transaction": 12.57, "Median Spend per Customer": 16.17 }, "geometry": { "type": "Point", "coordinates": [ -75.072167, 40.054375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@628-pm9-wkz", "Name": "European Republic", "Category": "Restaurants and Other Eating Places", "Address": "213 Chestnut St", "LATITUDE": 39.94862, "LONGITUDE": -75.144686, "DATE_RANGE_START": 2024, "Total Visits": 2309.0, "Total Visitors": 1785.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 26.0, "Total Spend": 613.0, "Total Transactions": 34.0, "Total Customers": 25.0, "Median Spend per Transaction": 15.27, "Median Spend per Customer": 23.25 }, "geometry": { "type": "Point", "coordinates": [ -75.144686, 39.94862 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-66k", "Name": "Rice & Mix", "Category": "Restaurants and Other Eating Places", "Address": "128 S 12th St", "LATITUDE": 39.949129, "LONGITUDE": -75.160796, "DATE_RANGE_START": 2024, "Total Visits": 226.0, "Total Visitors": 176.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 1.0, "Total Spend": 2072.0, "Total Transactions": 80.0, "Total Customers": 55.0, "Median Spend per Transaction": 24.67, "Median Spend per Customer": 26.51 }, "geometry": { "type": "Point", "coordinates": [ -75.160796, 39.949129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pmb-5s5", "Name": "Schmear It", "Category": "Restaurants and Other Eating Places", "Address": "19 S 12th St", "LATITUDE": 39.94245, "LONGITUDE": -75.161634, "DATE_RANGE_START": 2024, "Total Visits": 249.0, "Total Visitors": 249.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 1.0, "Total Spend": 373.0, "Total Transactions": 37.0, "Total Customers": 25.0, "Median Spend per Transaction": 7.02, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.161634, 39.94245 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pg9-ty9", "Name": "Kelliann's Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "1549 Spring Garden St", "LATITUDE": 39.963093, "LONGITUDE": -75.164491, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 182.0, "POI_CBG": 421010133001.0, "Median Dwell Time": 10.0, "Total Spend": 188.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 71.34, "Median Spend per Customer": 71.34 }, "geometry": { "type": "Point", "coordinates": [ -75.164491, 39.963093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-k2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2100 Market St", "LATITUDE": 39.953598, "LONGITUDE": -75.175248, "DATE_RANGE_START": 2024, "Total Visits": 353.0, "Total Visitors": 276.0, "POI_CBG": 421010004011.0, "Median Dwell Time": 7.0, "Total Spend": 7224.0, "Total Transactions": 1089.0, "Total Customers": 403.0, "Median Spend per Transaction": 5.93, "Median Spend per Customer": 10.45 }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.953598 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p9p-z75", "Name": "Prince Of Pizza & Falafel", "Category": "Restaurants and Other Eating Places", "Address": "9987 Bustleton Ave", "LATITUDE": 40.101596, "LONGITUDE": -75.028395, "DATE_RANGE_START": 2024, "Total Visits": 1149.0, "Total Visitors": 835.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 12.0, "Total Spend": 444.0, "Total Transactions": 21.0, "Total Customers": 13.0, "Median Spend per Transaction": 22.89, "Median Spend per Customer": 23.47 }, "geometry": { "type": "Point", "coordinates": [ -75.028395, 40.101596 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmb-xnq", "Name": "Yakitori Boy", "Category": "Restaurants and Other Eating Places", "Address": "211 N 11th St", "LATITUDE": 39.955959, "LONGITUDE": -75.157136, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 179.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 40.0, "Total Spend": 17907.0, "Total Transactions": 225.0, "Total Customers": 175.0, "Median Spend per Transaction": 45.0, "Median Spend per Customer": 55.12 }, "geometry": { "type": "Point", "coordinates": [ -75.157136, 39.955959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7w-v4v", "Name": "Easy Pickins", "Category": "Clothing Stores", "Address": "2311 Cottman Ave", "LATITUDE": 40.048272, "LONGITUDE": -75.05631, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 236.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 5.0, "Total Spend": 2810.0, "Total Transactions": 79.0, "Total Customers": 74.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 29.99 }, "geometry": { "type": "Point", "coordinates": [ -75.05631, 40.048272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-p8t-w8v", "Name": "Levi's Outlet Store", "Category": "Clothing Stores", "Address": "1808 Franklin Mills Cir", "LATITUDE": 40.087253, "LONGITUDE": -74.962095, "DATE_RANGE_START": 2024, "Total Visits": 323.0, "Total Visitors": 317.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 5.0, "Total Spend": 1164.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 33.39, "Median Spend per Customer": 44.94 }, "geometry": { "type": "Point", "coordinates": [ -74.962095, 40.087253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm9-2c5", "Name": "SouthHouse", "Category": "Restaurants and Other Eating Places", "Address": "2535 S 13th St", "LATITUDE": 39.918078, "LONGITUDE": -75.168643, "DATE_RANGE_START": 2024, "Total Visits": 441.0, "Total Visitors": 267.0, "POI_CBG": 421010040023.0, "Median Dwell Time": 45.0, "Total Spend": 5359.0, "Total Transactions": 138.0, "Total Customers": 113.0, "Median Spend per Transaction": 34.36, "Median Spend per Customer": 38.45 }, "geometry": { "type": "Point", "coordinates": [ -75.168643, 39.918078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-85f", "Name": "Pho Street", "Category": "Restaurants and Other Eating Places", "Address": "1230 Arch St", "LATITUDE": 39.954004, "LONGITUDE": -75.160896, "DATE_RANGE_START": 2024, "Total Visits": 290.0, "Total Visitors": 254.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 1.0, "Total Spend": 538.0, "Total Transactions": 39.0, "Total Customers": 32.0, "Median Spend per Transaction": 13.75, "Median Spend per Customer": 13.75 }, "geometry": { "type": "Point", "coordinates": [ -75.160896, 39.954004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pp4-z75", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2701 N 2nd St", "LATITUDE": 39.991624, "LONGITUDE": -75.134388, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 6.0, "Total Spend": 1647.0, "Total Transactions": 36.0, "Total Customers": 34.0, "Median Spend per Transaction": 21.04, "Median Spend per Customer": 20.24 }, "geometry": { "type": "Point", "coordinates": [ -75.134388, 39.991624 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-c5z", "Name": "A One Auto Sales & Repair", "Category": "Automobile Dealers", "Address": "2433 Washington Ave", "LATITUDE": 39.940358, "LONGITUDE": -75.184467, "DATE_RANGE_START": 2024, "Total Visits": 49.0, "Total Visitors": 49.0, "POI_CBG": 421010013005.0, "Median Dwell Time": 20.0, "Total Spend": 620.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 235.44, "Median Spend per Customer": 235.44 }, "geometry": { "type": "Point", "coordinates": [ -75.184467, 39.940358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@63s-dvw-n89", "Name": "Southside Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "5213 Market St", "LATITUDE": 39.960357, "LONGITUDE": -75.225351, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010093004.0, "Median Dwell Time": 8.0, "Total Spend": 364.0, "Total Transactions": 18.0, "Total Customers": 12.0, "Median Spend per Transaction": 13.03, "Median Spend per Customer": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.225351, 39.960357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7c-35z", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "3331 Grant Ave", "LATITUDE": 40.069344, "LONGITUDE": -75.005902, "DATE_RANGE_START": 2024, "Total Visits": 883.0, "Total Visitors": 621.0, "POI_CBG": 421010353022.0, "Median Dwell Time": 5.0, "Total Spend": 3826.0, "Total Transactions": 151.0, "Total Customers": 117.0, "Median Spend per Transaction": 14.98, "Median Spend per Customer": 13.99 }, "geometry": { "type": "Point", "coordinates": [ -75.005902, 40.069344 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-vs5", "Name": "Polo Ralph Lauren Factory Store", "Category": "Clothing Stores", "Address": "1455 Franklin Mills Cir Ste 92", "LATITUDE": 40.087665, "LONGITUDE": -74.961032, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 109.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 13657.0, "Total Transactions": 150.0, "Total Customers": 120.0, "Median Spend per Transaction": 57.75, "Median Spend per Customer": 73.11 }, "geometry": { "type": "Point", "coordinates": [ -74.961032, 40.087665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p8m-v2k", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6438 Sackett St Unit 19", "LATITUDE": 40.029571, "LONGITUDE": -75.058564, "DATE_RANGE_START": 2024, "Total Visits": 147.0, "Total Visitors": 147.0, "POI_CBG": 421010316003.0, "Median Dwell Time": 9.0, "Total Spend": 264.0, "Total Transactions": 13.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.71, "Median Spend per Customer": 48.47 }, "geometry": { "type": "Point", "coordinates": [ -75.058564, 40.029571 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm8-2kz", "Name": "Joe's Kwik Mart", "Category": "Grocery Stores", "Address": "3300 Grays Ferry Ave", "LATITUDE": 39.939239, "LONGITUDE": -75.197843, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 353.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 3.0, "Total Spend": 715.0, "Total Transactions": 30.0, "Total Customers": 22.0, "Median Spend per Transaction": 20.46, "Median Spend per Customer": 33.25 }, "geometry": { "type": "Point", "coordinates": [ -75.197843, 39.939239 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-7bk", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4001 Woodhaven Rd", "LATITUDE": 40.087573, "LONGITUDE": -74.970531, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 20.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 163.0, "Total Transactions": 11.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.34, "Median Spend per Customer": 20.07 }, "geometry": { "type": "Point", "coordinates": [ -74.970531, 40.087573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-p7z-tgk", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "919A Levick St", "LATITUDE": 40.04525, "LONGITUDE": -75.086615, "DATE_RANGE_START": 2024, "Total Visits": 25.0, "Total Visitors": 16.0, "POI_CBG": 421010309003.0, "Median Dwell Time": 8.0, "Total Spend": 1033.0, "Total Transactions": 51.0, "Total Customers": 26.0, "Median Spend per Transaction": 15.17, "Median Spend per Customer": 21.44 }, "geometry": { "type": "Point", "coordinates": [ -75.086615, 40.04525 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-x89", "Name": "PetSmart", "Category": "Other Miscellaneous Store Retailers", "Address": "1415 Washington Ave", "LATITUDE": 39.93826, "LONGITUDE": -75.16773, "DATE_RANGE_START": 2024, "Total Visits": 552.0, "Total Visitors": 411.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 4.0, "Total Spend": 45671.0, "Total Transactions": 1051.0, "Total Customers": 660.0, "Median Spend per Transaction": 32.38, "Median Spend per Customer": 40.85 }, "geometry": { "type": "Point", "coordinates": [ -75.16773, 39.93826 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj2-qvf", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "4133 G St", "LATITUDE": 40.011535, "LONGITUDE": -75.111696, "DATE_RANGE_START": 2024, "Total Visits": 829.0, "Total Visitors": 581.0, "POI_CBG": 421010191001.0, "Median Dwell Time": 5.0, "Total Spend": 3793.0, "Total Transactions": 196.0, "Total Customers": 134.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 17.89 }, "geometry": { "type": "Point", "coordinates": [ -75.111696, 40.011535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-phz-bhq", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "143 W Fisher Ave", "LATITUDE": 40.031189, "LONGITUDE": -75.124489, "DATE_RANGE_START": 2024, "Total Visits": 229.0, "Total Visitors": 211.0, "POI_CBG": 421010286005.0, "Median Dwell Time": 4.0, "Total Spend": 192.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 21.77, "Median Spend per Customer": 21.75 }, "geometry": { "type": "Point", "coordinates": [ -75.124489, 40.031189 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj6-45f", "Name": "Roses", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "501 Adams Ave", "LATITUDE": 40.039098, "LONGITUDE": -75.107749, "DATE_RANGE_START": 2024, "Total Visits": 515.0, "Total Visitors": 258.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 228.0, "Total Spend": 6905.0, "Total Transactions": 186.0, "Total Customers": 154.0, "Median Spend per Transaction": 26.26, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.107749, 40.039098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-228@628-pj9-73q", "Name": "Crab Du Jour", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044904, "LONGITUDE": -75.144393, "DATE_RANGE_START": 2024, "Total Visits": 225.0, "Total Visitors": 192.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 5.0, "Total Spend": 2337.0, "Total Transactions": 57.0, "Total Customers": 54.0, "Median Spend per Transaction": 29.15, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.144393, 40.044904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnw-mzf", "Name": "The Foodery", "Category": "Restaurants and Other Eating Places", "Address": "837 N 2nd St", "LATITUDE": 39.963844, "LONGITUDE": -75.140384, "DATE_RANGE_START": 2024, "Total Visits": 649.0, "Total Visitors": 508.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 1.0, "Total Spend": 9880.0, "Total Transactions": 567.0, "Total Customers": 275.0, "Median Spend per Transaction": 14.34, "Median Spend per Customer": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.140384, 39.963844 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pmf-mp9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1600 John F Kennedy Blvd", "LATITUDE": 39.953634, "LONGITUDE": -75.166885, "DATE_RANGE_START": 2024, "Total Visits": 2713.0, "Total Visitors": 1823.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 4.0, "Total Spend": 5477.0, "Total Transactions": 977.0, "Total Customers": 481.0, "Median Spend per Transaction": 5.05, "Median Spend per Customer": 6.51 }, "geometry": { "type": "Point", "coordinates": [ -75.166885, 39.953634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-228@628-pgf-ty9", "Name": "Rocky Water Ice", "Category": "Restaurants and Other Eating Places", "Address": "2600 Benjamin Franklin Pkwy", "LATITUDE": 39.965106, "LONGITUDE": -75.1793, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 186.0, "POI_CBG": 421019800001.0, "Median Dwell Time": 5.0, "Total Spend": 373.0, "Total Transactions": 21.0, "Total Customers": 21.0, "Median Spend per Transaction": 14.04, "Median Spend per Customer": 14.04 }, "geometry": { "type": "Point", "coordinates": [ -75.1793, 39.965106 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pmf-9cq", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3437 Walnut St", "LATITUDE": 39.95317, "LONGITUDE": -75.193541, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 9.0, "Total Spend": 8217.0, "Total Transactions": 1348.0, "Total Customers": 475.0, "Median Spend per Transaction": 5.26, "Median Spend per Customer": 9.36 }, "geometry": { "type": "Point", "coordinates": [ -75.193541, 39.95317 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pj6-q2k", "Name": "On & Sons Seafood", "Category": "Restaurants and Other Eating Places", "Address": "100 W Olney Ave", "LATITUDE": 40.035163, "LONGITUDE": -75.121651, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 157.0, "POI_CBG": 421010273002.0, "Median Dwell Time": 7.0, "Total Spend": 92.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 14.03, "Median Spend per Customer": 34.98 }, "geometry": { "type": "Point", "coordinates": [ -75.121651, 40.035163 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-2tv", "Name": "Bloomsday Cafe", "Category": "Restaurants and Other Eating Places", "Address": "414 S 2nd St", "LATITUDE": 39.942783, "LONGITUDE": -75.145644, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 121.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 79.0, "Total Spend": 1534.0, "Total Transactions": 33.0, "Total Customers": 25.0, "Median Spend per Transaction": 43.97, "Median Spend per Customer": 60.12 }, "geometry": { "type": "Point", "coordinates": [ -75.145644, 39.942783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@628-pg2-zs5", "Name": "Mount Airy Tap Room", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "300 W Mount Pleasant Ave", "LATITUDE": 40.053904, "LONGITUDE": -75.194197, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 113.0, "POI_CBG": 421010388004.0, "Median Dwell Time": 66.0, "Total Spend": 786.0, "Total Transactions": 12.0, "Total Customers": 8.0, "Median Spend per Transaction": 61.08, "Median Spend per Customer": 83.13 }, "geometry": { "type": "Point", "coordinates": [ -75.194197, 40.053904 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pmf-hwk", "Name": "Kennedy Food Garden", "Category": "Grocery Stores", "Address": "1901 John F Kennedy Blvd", "LATITUDE": 39.954655, "LONGITUDE": -75.171826, "DATE_RANGE_START": 2024, "Total Visits": 336.0, "Total Visitors": 145.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 38.0, "Total Spend": 3411.0, "Total Transactions": 225.0, "Total Customers": 128.0, "Median Spend per Transaction": 12.9, "Median Spend per Customer": 16.04 }, "geometry": { "type": "Point", "coordinates": [ -75.171826, 39.954655 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-p86-gx5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "7855 Oxford Ave", "LATITUDE": 40.073287, "LONGITUDE": -75.084286, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 369.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 27.0, "Total Spend": 7196.0, "Total Transactions": 428.0, "Total Customers": 313.0, "Median Spend per Transaction": 14.56, "Median Spend per Customer": 18.29 }, "geometry": { "type": "Point", "coordinates": [ -75.084286, 40.073287 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pj8-pgk", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "4600 E Roosevelt Blvd # 5103", "LATITUDE": 40.031694, "LONGITUDE": -75.099517, "DATE_RANGE_START": 2024, "Total Visits": 3423.0, "Total Visitors": 2139.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 21.0, "Total Spend": 435.0, "Total Transactions": 34.0, "Total Customers": 26.0, "Median Spend per Transaction": 8.62, "Median Spend per Customer": 14.03 }, "geometry": { "type": "Point", "coordinates": [ -75.099517, 40.031694 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-ph5-rhq", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "1105 N 63rd St # 09", "LATITUDE": 39.981614, "LONGITUDE": -75.246302, "DATE_RANGE_START": 2024, "Total Visits": 282.0, "Total Visitors": 186.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 8.0, "Total Spend": 1716.0, "Total Transactions": 86.0, "Total Customers": 71.0, "Median Spend per Transaction": 12.32, "Median Spend per Customer": 16.59 }, "geometry": { "type": "Point", "coordinates": [ -75.246302, 39.981614 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9m-hbk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "3200 Red Lion Rd", "LATITUDE": 40.081209, "LONGITUDE": -74.994945, "DATE_RANGE_START": 2024, "Total Visits": 187.0, "Total Visitors": 133.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 3.0, "Total Spend": 3440.0, "Total Transactions": 461.0, "Total Customers": 149.0, "Median Spend per Transaction": 6.57, "Median Spend per Customer": 12.16 }, "geometry": { "type": "Point", "coordinates": [ -74.994945, 40.081209 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22s@628-pmb-7t9", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1324 Walnut St", "LATITUDE": 39.949016, "LONGITUDE": -75.163281, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 9.0, "POI_CBG": 421010009012.0, "Median Dwell Time": 1.0, "Total Spend": 1650.0, "Total Transactions": 295.0, "Total Customers": 161.0, "Median Spend per Transaction": 4.84, "Median Spend per Customer": 6.89 }, "geometry": { "type": "Point", "coordinates": [ -75.163281, 39.949016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvw-vpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5506 Chestnut St # 12", "LATITUDE": 39.95906, "LONGITUDE": -75.231541, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 197.0, "POI_CBG": 421010084004.0, "Median Dwell Time": 3.0, "Total Spend": 8738.0, "Total Transactions": 1065.0, "Total Customers": 363.0, "Median Spend per Transaction": 6.56, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.231541, 39.95906 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-phy-49z", "Name": "The Ranchito", "Category": "Restaurants and Other Eating Places", "Address": "4745 Rising Sun Ave", "LATITUDE": 40.022875, "LONGITUDE": -75.124228, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 112.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 4.0, "Total Spend": 3462.0, "Total Transactions": 171.0, "Total Customers": 97.0, "Median Spend per Transaction": 16.25, "Median Spend per Customer": 23.75 }, "geometry": { "type": "Point", "coordinates": [ -75.124228, 40.022875 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfy-5xq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "6758 Ridge Ave", "LATITUDE": 40.041628, "LONGITUDE": -75.22595, "DATE_RANGE_START": 2024, "Total Visits": 429.0, "Total Visitors": 344.0, "POI_CBG": 421010215001.0, "Median Dwell Time": 5.0, "Total Spend": 393.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 22.12, "Median Spend per Customer": 22.12 }, "geometry": { "type": "Point", "coordinates": [ -75.22595, 40.041628 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pp4-jn5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2132 E Lehigh Ave", "LATITUDE": 39.984484, "LONGITUDE": -75.121386, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 17.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 9.0, "Total Spend": 1157.0, "Total Transactions": 68.0, "Total Customers": 37.0, "Median Spend per Transaction": 10.75, "Median Spend per Customer": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -75.121386, 39.984484 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p82-g8v", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6919 Castor Ave # 6935", "LATITUDE": 40.045974, "LONGITUDE": -75.070637, "DATE_RANGE_START": 2024, "Total Visits": 819.0, "Total Visitors": 641.0, "POI_CBG": 421010314015.0, "Median Dwell Time": 4.0, "Total Spend": 4167.0, "Total Transactions": 304.0, "Total Customers": 242.0, "Median Spend per Transaction": 9.6, "Median Spend per Customer": 11.43 }, "geometry": { "type": "Point", "coordinates": [ -75.070637, 40.045974 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pfv-94v", "Name": "Wild Hand", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "606 Carpenter Ln", "LATITUDE": 40.046119, "LONGITUDE": -75.195912, "DATE_RANGE_START": 2024, "Total Visits": 279.0, "Total Visitors": 230.0, "POI_CBG": 421010236003.0, "Median Dwell Time": 10.0, "Total Spend": 279.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 68.52, "Median Spend per Customer": 68.52 }, "geometry": { "type": "Point", "coordinates": [ -75.195912, 40.046119 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-pp4-qvf", "Name": "Capital Beer", "Category": "Restaurants and Other Eating Places", "Address": "2661 E Cumberland St", "LATITUDE": 39.976143, "LONGITUDE": -75.119217, "DATE_RANGE_START": 2024, "Total Visits": 178.0, "Total Visitors": 128.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 4.0, "Total Spend": 8066.0, "Total Transactions": 311.0, "Total Customers": 153.0, "Median Spend per Transaction": 24.38, "Median Spend per Customer": 33.28 }, "geometry": { "type": "Point", "coordinates": [ -75.119217, 39.976143 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgg-p5f", "Name": "Mimmo's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3000 W Allegheny Ave", "LATITUDE": 40.004649, "LONGITUDE": -75.17882, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010171004.0, "Median Dwell Time": null, "Total Spend": 1506.0, "Total Transactions": 67.0, "Total Customers": 58.0, "Median Spend per Transaction": 19.25, "Median Spend per Customer": 25.9 }, "geometry": { "type": "Point", "coordinates": [ -75.17882, 40.004649 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pg4-gx5", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5834 Pulaski Ave", "LATITUDE": 40.03136, "LONGITUDE": -75.182448, "DATE_RANGE_START": 2024, "Total Visits": 428.0, "Total Visitors": 298.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 8.0, "Total Spend": 155761.0, "Total Transactions": 5623.0, "Total Customers": 2959.0, "Median Spend per Transaction": 16.3, "Median Spend per Customer": 25.72 }, "geometry": { "type": "Point", "coordinates": [ -75.182448, 40.03136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-225@628-pfy-h3q", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7162 Ridge Ave", "LATITUDE": 40.044352, "LONGITUDE": -75.232829, "DATE_RANGE_START": 2024, "Total Visits": 2565.0, "Total Visitors": 1602.0, "POI_CBG": 421010216002.0, "Median Dwell Time": 6.0, "Total Spend": 25876.0, "Total Transactions": 744.0, "Total Customers": 560.0, "Median Spend per Transaction": 21.75, "Median Spend per Customer": 31.49 }, "geometry": { "type": "Point", "coordinates": [ -75.232829, 40.044352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pg4-fj9", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "171 W Chelten Ave", "LATITUDE": 40.03211, "LONGITUDE": -75.179055, "DATE_RANGE_START": 2024, "Total Visits": 482.0, "Total Visitors": 340.0, "POI_CBG": 421010241001.0, "Median Dwell Time": 11.0, "Total Spend": 8676.0, "Total Transactions": 633.0, "Total Customers": 409.0, "Median Spend per Transaction": 12.03, "Median Spend per Customer": 15.06 }, "geometry": { "type": "Point", "coordinates": [ -75.179055, 40.03211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-q4v", "Name": "Jean's Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "3252 Ryan Ave", "LATITUDE": 40.040436, "LONGITUDE": -75.043681, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010332002.0, "Median Dwell Time": 4.0, "Total Spend": 52.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.61, "Median Spend per Customer": 19.77 }, "geometry": { "type": "Point", "coordinates": [ -75.043681, 40.040436 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-php-xdv", "Name": "Mega Mart", "Category": "Grocery Stores", "Address": "6340 Ogontz Ave", "LATITUDE": 40.051173, "LONGITUDE": -75.15065, "DATE_RANGE_START": 2024, "Total Visits": 346.0, "Total Visitors": 312.0, "POI_CBG": 421010277003.0, "Median Dwell Time": 18.0, "Total Spend": 1255.0, "Total Transactions": 87.0, "Total Customers": 53.0, "Median Spend per Transaction": 9.43, "Median Spend per Customer": 18.49 }, "geometry": { "type": "Point", "coordinates": [ -75.15065, 40.051173 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm4-4y9", "Name": "Ez Dollar Plus", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1013 Snyder Ave", "LATITUDE": 39.923795, "LONGITUDE": -75.163033, "DATE_RANGE_START": 2024, "Total Visits": 150.0, "Total Visitors": 130.0, "POI_CBG": 421010040011.0, "Median Dwell Time": 12.0, "Total Spend": 83.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 7.27, "Median Spend per Customer": 8.07 }, "geometry": { "type": "Point", "coordinates": [ -75.163033, 39.923795 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pfw-gc5", "Name": "Vault Vine", "Category": "Florists", "Address": "3507 Midvale Ave", "LATITUDE": 40.013647, "LONGITUDE": -75.192647, "DATE_RANGE_START": 2024, "Total Visits": 124.0, "Total Visitors": 95.0, "POI_CBG": 421010207001.0, "Median Dwell Time": 3.0, "Total Spend": 522.0, "Total Transactions": 29.0, "Total Customers": 28.0, "Median Spend per Transaction": 14.33, "Median Spend per Customer": 15.21 }, "geometry": { "type": "Point", "coordinates": [ -75.192647, 40.013647 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p9p-z75", "Name": "Goodwill Industries", "Category": "Used Merchandise Stores", "Address": "9920 Bustleton Ave", "LATITUDE": 40.101328, "LONGITUDE": -75.030148, "DATE_RANGE_START": 2024, "Total Visits": 951.0, "Total Visitors": 723.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 5.0, "Total Spend": 3970.0, "Total Transactions": 112.0, "Total Customers": 99.0, "Median Spend per Transaction": 26.8, "Median Spend per Customer": 30.23 }, "geometry": { "type": "Point", "coordinates": [ -75.030148, 40.101328 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmf-j5f", "Name": "Tiffany & Co.", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "1715 Walnut St", "LATITUDE": 39.950221, "LONGITUDE": -75.169775, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 34.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 6164.0, "Total Transactions": 20.0, "Total Customers": 18.0, "Median Spend per Transaction": 237.6, "Median Spend per Customer": 267.3 }, "geometry": { "type": "Point", "coordinates": [ -75.169775, 39.950221 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-224@628-pmb-6tv", "Name": "Kiehl's", "Category": "Health and Personal Care Stores", "Address": "1625 Chestnut St", "LATITUDE": 39.951508, "LONGITUDE": -75.167303, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 155.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 2781.0, "Total Transactions": 53.0, "Total Customers": 49.0, "Median Spend per Transaction": 46.44, "Median Spend per Customer": 44.28 }, "geometry": { "type": "Point", "coordinates": [ -75.167303, 39.951508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-94v", "Name": "Journeys", "Category": "Shoe Stores", "Address": "1001 Market St", "LATITUDE": 39.951984, "LONGITUDE": -75.157154, "DATE_RANGE_START": 2024, "Total Visits": 13727.0, "Total Visitors": 7998.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 5838.0, "Total Transactions": 75.0, "Total Customers": 74.0, "Median Spend per Transaction": 70.2, "Median Spend per Customer": 70.1 }, "geometry": { "type": "Point", "coordinates": [ -75.157154, 39.951984 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj8-r6k", "Name": "Ross Stores", "Category": "Department Stores", "Address": "4640 E Roosevelt Blvd", "LATITUDE": 40.029581, "LONGITUDE": -75.100406, "DATE_RANGE_START": 2024, "Total Visits": 1363.0, "Total Visitors": 679.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 251.0, "Total Spend": 18491.0, "Total Transactions": 415.0, "Total Customers": 333.0, "Median Spend per Transaction": 27.45, "Median Spend per Customer": 37.11 }, "geometry": { "type": "Point", "coordinates": [ -75.100406, 40.029581 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfw-zj9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5901 Wissahickon Ave", "LATITUDE": 40.030016, "LONGITUDE": -75.186071, "DATE_RANGE_START": 2024, "Total Visits": 550.0, "Total Visitors": 453.0, "POI_CBG": 421010239002.0, "Median Dwell Time": 5.0, "Total Spend": 554.0, "Total Transactions": 32.0, "Total Customers": 14.0, "Median Spend per Transaction": 10.62, "Median Spend per Customer": 24.13 }, "geometry": { "type": "Point", "coordinates": [ -75.186071, 40.030016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvq-yn5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5814 Woodland Ave", "LATITUDE": 39.931159, "LONGITUDE": -75.225635, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010066001.0, "Median Dwell Time": 9.0, "Total Spend": 101.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 8.74, "Median Spend per Customer": 10.42 }, "geometry": { "type": "Point", "coordinates": [ -75.225635, 39.931159 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-pgb-7nq", "Name": "Bookhaven", "Category": "Book Stores and News Dealers", "Address": "2202 Fairmount Ave", "LATITUDE": 39.967149, "LONGITUDE": -75.17401, "DATE_RANGE_START": 2024, "Total Visits": 108.0, "Total Visitors": 108.0, "POI_CBG": 421010134012.0, "Median Dwell Time": 1.0, "Total Spend": 1900.0, "Total Transactions": 63.0, "Total Customers": 58.0, "Median Spend per Transaction": 23.76, "Median Spend per Customer": 29.43 }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.967149 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-224@628-pj6-tqf", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5921 Rising Sun Ave", "LATITUDE": 40.044605, "LONGITUDE": -75.101135, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 11.0, "POI_CBG": 421010305024.0, "Median Dwell Time": 6.0, "Total Spend": 439.0, "Total Transactions": 53.0, "Total Customers": 22.0, "Median Spend per Transaction": 5.41, "Median Spend per Customer": 7.04 }, "geometry": { "type": "Point", "coordinates": [ -75.101135, 40.044605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-p7b-qfz", "Name": "Salvito's Pizza Palace", "Category": "Restaurants and Other Eating Places", "Address": "9045 Ashton Rd", "LATITUDE": 40.062458, "LONGITUDE": -75.022048, "DATE_RANGE_START": 2024, "Total Visits": 395.0, "Total Visitors": 245.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 10.0, "Total Spend": 1262.0, "Total Transactions": 47.0, "Total Customers": 34.0, "Median Spend per Transaction": 18.66, "Median Spend per Customer": 27.65 }, "geometry": { "type": "Point", "coordinates": [ -75.022048, 40.062458 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9p-8sq", "Name": "House of Kosher", "Category": "Restaurants and Other Eating Places", "Address": "9806 Bustleton Ave", "LATITUDE": 40.092797, "LONGITUDE": -75.033386, "DATE_RANGE_START": 2024, "Total Visits": 466.0, "Total Visitors": 390.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 9.0, "Total Spend": 10807.0, "Total Transactions": 154.0, "Total Customers": 78.0, "Median Spend per Transaction": 37.71, "Median Spend per Customer": 41.68 }, "geometry": { "type": "Point", "coordinates": [ -75.033386, 40.092797 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-225@628-pp2-qxq", "Name": "Aramingo Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "3451 Aramingo Ave", "LATITUDE": 39.991517, "LONGITUDE": -75.099487, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 254.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 2.0, "Total Spend": 2148.0, "Total Transactions": 97.0, "Total Customers": 62.0, "Median Spend per Transaction": 24.13, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.099487, 39.991517 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-pgk-psq", "Name": "West Village Pharmacy Inc", "Category": "Health and Personal Care Stores", "Address": "3901 Conshohocken Ave", "LATITUDE": 40.003357, "LONGITUDE": -75.206899, "DATE_RANGE_START": 2024, "Total Visits": 508.0, "Total Visitors": 184.0, "POI_CBG": 421010122012.0, "Median Dwell Time": 232.0, "Total Spend": 96.0, "Total Transactions": 11.0, "Total Customers": 7.0, "Median Spend per Transaction": 7.38, "Median Spend per Customer": 14.3 }, "geometry": { "type": "Point", "coordinates": [ -75.206899, 40.003357 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-pjv", "Name": "Thai Singha House", "Category": "Restaurants and Other Eating Places", "Address": "3906B Chestnut St", "LATITUDE": 39.95527, "LONGITUDE": -75.20037, "DATE_RANGE_START": 2024, "Total Visits": 714.0, "Total Visitors": 470.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 1.0, "Total Spend": 164.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 23.23, "Median Spend per Customer": 23.23 }, "geometry": { "type": "Point", "coordinates": [ -75.20037, 39.95527 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22f@628-p8t-wkz", "Name": "Boss Outlet", "Category": "Clothing Stores", "Address": "1613 Franklin Mills Cir", "LATITUDE": 40.088099, "LONGITUDE": -74.961033, "DATE_RANGE_START": 2024, "Total Visits": 781.0, "Total Visitors": 758.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 15839.0, "Total Transactions": 184.0, "Total Customers": 162.0, "Median Spend per Transaction": 54.99, "Median Spend per Customer": 58.0 }, "geometry": { "type": "Point", "coordinates": [ -74.961033, 40.088099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8h-w49", "Name": "Sweet Lucy's Smokehouse", "Category": "Restaurants and Other Eating Places", "Address": "7500 State Rd", "LATITUDE": 40.028508, "LONGITUDE": -75.027023, "DATE_RANGE_START": 2024, "Total Visits": 434.0, "Total Visitors": 405.0, "POI_CBG": 421010381002.0, "Median Dwell Time": 11.0, "Total Spend": 312.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 25.53, "Median Spend per Customer": 33.68 }, "geometry": { "type": "Point", "coordinates": [ -75.027023, 40.028508 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgj-6hq", "Name": "Diamond Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1700 W Diamond St", "LATITUDE": 39.985195, "LONGITUDE": -75.161525, "DATE_RANGE_START": 2024, "Total Visits": 63.0, "Total Visitors": 63.0, "POI_CBG": 421010153002.0, "Median Dwell Time": 1.0, "Total Spend": 199.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.0, "Median Spend per Customer": 22.54 }, "geometry": { "type": "Point", "coordinates": [ -75.161525, 39.985195 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmb-v75", "Name": "The Plough & the Stars", "Category": "Restaurants and Other Eating Places", "Address": "123 Chestnut St", "LATITUDE": 39.94867, "LONGITUDE": -75.143678, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 248.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 39.0, "Total Spend": 1483.0, "Total Transactions": 34.0, "Total Customers": 25.0, "Median Spend per Transaction": 33.13, "Median Spend per Customer": 38.74 }, "geometry": { "type": "Point", "coordinates": [ -75.143678, 39.94867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-phn-7wk", "Name": "Green Garden", "Category": "Restaurants and Other Eating Places", "Address": "1556 E Wadsworth Ave", "LATITUDE": 40.080068, "LONGITUDE": -75.17264, "DATE_RANGE_START": 2024, "Total Visits": 116.0, "Total Visitors": 116.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 11.0, "Total Spend": 688.0, "Total Transactions": 26.0, "Total Customers": 22.0, "Median Spend per Transaction": 16.45, "Median Spend per Customer": 16.52 }, "geometry": { "type": "Point", "coordinates": [ -75.17264, 40.080068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pgb-tn5", "Name": "JC Food Market", "Category": "Grocery Stores", "Address": "600 N 11th St", "LATITUDE": 39.962905, "LONGITUDE": -75.15611, "DATE_RANGE_START": 2024, "Total Visits": 536.0, "Total Visitors": 387.0, "POI_CBG": 421010132002.0, "Median Dwell Time": 2.0, "Total Spend": 3040.0, "Total Transactions": 263.0, "Total Customers": 86.0, "Median Spend per Transaction": 10.0, "Median Spend per Customer": 15.25 }, "geometry": { "type": "Point", "coordinates": [ -75.15611, 39.962905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-223@628-pm4-pvz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "801 S 9th St", "LATITUDE": 39.93927, "LONGITUDE": -75.157304, "DATE_RANGE_START": 2024, "Total Visits": 960.0, "Total Visitors": 735.0, "POI_CBG": 421010018002.0, "Median Dwell Time": 6.0, "Total Spend": 3640.0, "Total Transactions": 212.0, "Total Customers": 150.0, "Median Spend per Transaction": 11.79, "Median Spend per Customer": 16.46 }, "geometry": { "type": "Point", "coordinates": [ -75.157304, 39.93927 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p7x-6rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "2311 Cottman Ave", "LATITUDE": 40.047932, "LONGITUDE": -75.058477, "DATE_RANGE_START": 2024, "Total Visits": 137.0, "Total Visitors": 130.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 3.0, "Total Spend": 7851.0, "Total Transactions": 440.0, "Total Customers": 319.0, "Median Spend per Transaction": 14.63, "Median Spend per Customer": 19.15 }, "geometry": { "type": "Point", "coordinates": [ -75.058477, 40.047932 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg2-pqf", "Name": "Malelani Cafe", "Category": "Restaurants and Other Eating Places", "Address": "6734 Germantown Ave", "LATITUDE": 40.05294, "LONGITUDE": -75.186129, "DATE_RANGE_START": 2024, "Total Visits": 125.0, "Total Visitors": 125.0, "POI_CBG": 421010237002.0, "Median Dwell Time": 109.0, "Total Spend": 2407.0, "Total Transactions": 90.0, "Total Customers": 71.0, "Median Spend per Transaction": 22.85, "Median Spend per Customer": 27.78 }, "geometry": { "type": "Point", "coordinates": [ -75.186129, 40.05294 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-d7q", "Name": "Crunchik'n", "Category": "Restaurants and Other Eating Places", "Address": "1428 Cecil B Moore Ave", "LATITUDE": 39.978678, "LONGITUDE": -75.159295, "DATE_RANGE_START": 2024, "Total Visits": 2270.0, "Total Visitors": 832.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 349.0, "Total Spend": 160.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 16.67, "Median Spend per Customer": 16.67 }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.978678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pmf-y7q", "Name": "Old Nelson Food Company", "Category": "Restaurants and Other Eating Places", "Address": "129 S 30th St", "LATITUDE": 39.952403, "LONGITUDE": -75.183415, "DATE_RANGE_START": 2024, "Total Visits": 607.0, "Total Visitors": 402.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 63.0, "Total Spend": 10511.0, "Total Transactions": 760.0, "Total Customers": 531.0, "Median Spend per Transaction": 11.82, "Median Spend per Customer": 14.21 }, "geometry": { "type": "Point", "coordinates": [ -75.183415, 39.952403 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22d@628-pmb-5s5", "Name": "Halal Gyro King", "Category": "Restaurants and Other Eating Places", "Address": "1 S 12th St", "LATITUDE": 39.951726, "LONGITUDE": -75.159671, "DATE_RANGE_START": 2024, "Total Visits": 6955.0, "Total Visitors": 4739.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 32.0, "Total Spend": 36.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.0, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.159671, 39.951726 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-225@628-pm4-djv", "Name": "Kiku sushi", "Category": "Restaurants and Other Eating Places", "Address": "2146 S Broad St", "LATITUDE": 39.923305, "LONGITUDE": -75.170389, "DATE_RANGE_START": 2024, "Total Visits": 878.0, "Total Visitors": 467.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 91.0, "Total Spend": 4110.0, "Total Transactions": 87.0, "Total Customers": 72.0, "Median Spend per Transaction": 41.08, "Median Spend per Customer": 45.31 }, "geometry": { "type": "Point", "coordinates": [ -75.170389, 39.923305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9k-2zf", "Name": "NO 1 China", "Category": "Restaurants and Other Eating Places", "Address": "11000 Roosevelt Blvd", "LATITUDE": 40.103277, "LONGITUDE": -75.010106, "DATE_RANGE_START": 2024, "Total Visits": 617.0, "Total Visitors": 494.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 14.0, "Total Spend": 929.0, "Total Transactions": 41.0, "Total Customers": 32.0, "Median Spend per Transaction": 22.14, "Median Spend per Customer": 29.78 }, "geometry": { "type": "Point", "coordinates": [ -75.010106, 40.103277 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-225@628-pjf-j5f", "Name": "Chicko Tako", "Category": "Restaurants and Other Eating Places", "Address": "8221 Germantown Ave", "LATITUDE": 40.074201, "LONGITUDE": -75.202447, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 112.0, "POI_CBG": 421010387001.0, "Median Dwell Time": 8.0, "Total Spend": 1652.0, "Total Transactions": 78.0, "Total Customers": 71.0, "Median Spend per Transaction": 16.19, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.202447, 40.074201 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@63s-dvx-fcq", "Name": "Veganish", "Category": "Restaurants and Other Eating Places", "Address": "1214 N 52nd St", "LATITUDE": 39.971859, "LONGITUDE": -75.226167, "DATE_RANGE_START": 2024, "Total Visits": 21.0, "Total Visitors": 21.0, "POI_CBG": 421010111003.0, "Median Dwell Time": null, "Total Spend": 81.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 30.84, "Median Spend per Customer": 30.84 }, "geometry": { "type": "Point", "coordinates": [ -75.226167, 39.971859 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-phy-b6k", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "4163 Whitaker Ave", "LATITUDE": 40.012417, "LONGITUDE": -75.118991, "DATE_RANGE_START": 2024, "Total Visits": 952.0, "Total Visitors": 812.0, "POI_CBG": 421010383001.0, "Median Dwell Time": 5.0, "Total Spend": 17146.0, "Total Transactions": 1145.0, "Total Customers": 691.0, "Median Spend per Transaction": 12.16, "Median Spend per Customer": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.118991, 40.012417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24s-222@628-pfw-hh5", "Name": "Frank's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3600 Fisk Ave", "LATITUDE": 40.013147, "LONGITUDE": -75.194294, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 47.0, "POI_CBG": 421010207001.0, "Median Dwell Time": null, "Total Spend": 1216.0, "Total Transactions": 59.0, "Total Customers": 28.0, "Median Spend per Transaction": 20.18, "Median Spend per Customer": 31.48 }, "geometry": { "type": "Point", "coordinates": [ -75.194294, 40.013147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pp4-jqf", "Name": "Cook and Shaker", "Category": "Restaurants and Other Eating Places", "Address": "2301 E Albert St", "LATITUDE": 39.982654, "LONGITUDE": -75.120508, "DATE_RANGE_START": 2024, "Total Visits": 180.0, "Total Visitors": 180.0, "POI_CBG": 421010160001.0, "Median Dwell Time": 3.0, "Total Spend": 4524.0, "Total Transactions": 86.0, "Total Customers": 72.0, "Median Spend per Transaction": 40.76, "Median Spend per Customer": 46.41 }, "geometry": { "type": "Point", "coordinates": [ -75.120508, 39.982654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pm4-pvz", "Name": "George's Sandwich Shop", "Category": "Restaurants and Other Eating Places", "Address": "900 S 9th St", "LATITUDE": 39.938819, "LONGITUDE": -75.157978, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 226.0, "POI_CBG": 421010024003.0, "Median Dwell Time": 4.0, "Total Spend": 265.0, "Total Transactions": 17.0, "Total Customers": 17.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.157978, 39.938819 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pmf-qs5", "Name": "Sawatdee Thai Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "534 S 15th St", "LATITUDE": 39.943975, "LONGITUDE": -75.167314, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 165.0, "POI_CBG": 421010012024.0, "Median Dwell Time": 1.0, "Total Spend": 305.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 17.25, "Median Spend per Customer": 17.25 }, "geometry": { "type": "Point", "coordinates": [ -75.167314, 39.943975 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-pmf-ht9", "Name": "Devon & Blakely", "Category": "Restaurants and Other Eating Places", "Address": "1801 Market St", "LATITUDE": 39.953611, "LONGITUDE": -75.170322, "DATE_RANGE_START": 2024, "Total Visits": 1248.0, "Total Visitors": 862.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 3.0, "Total Spend": 3707.0, "Total Transactions": 286.0, "Total Customers": 184.0, "Median Spend per Transaction": 12.64, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 39.953611 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgj-d7q", "Name": "City View Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1434 Cecil B Moore Ave", "LATITUDE": 39.978722, "LONGITUDE": -75.159474, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 128.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 10.0, "Total Spend": 8263.0, "Total Transactions": 391.0, "Total Customers": 298.0, "Median Spend per Transaction": 16.74, "Median Spend per Customer": 19.27 }, "geometry": { "type": "Point", "coordinates": [ -75.159474, 39.978722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-223@63s-dvy-pjv", "Name": "Xi'an Sizzling Woks", "Category": "Restaurants and Other Eating Places", "Address": "4000 Chestnut St", "LATITUDE": 39.955384, "LONGITUDE": -75.202479, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 126.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 15.0, "Total Spend": 1096.0, "Total Transactions": 26.0, "Total Customers": 22.0, "Median Spend per Transaction": 40.97, "Median Spend per Customer": 23.6 }, "geometry": { "type": "Point", "coordinates": [ -75.202479, 39.955384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pm4-grk", "Name": "La Tienda MiniMarket", "Category": "Restaurants and Other Eating Places", "Address": "1247 Snyder Ave", "LATITUDE": 39.924253, "LONGITUDE": -75.167419, "DATE_RANGE_START": 2024, "Total Visits": 76.0, "Total Visitors": 76.0, "POI_CBG": 421010040014.0, "Median Dwell Time": null, "Total Spend": 283.0, "Total Transactions": 13.0, "Total Customers": 9.0, "Median Spend per Transaction": 14.31, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.167419, 39.924253 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pgb-m49", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1100 W Girard Ave", "LATITUDE": 39.970561, "LONGITUDE": -75.155313, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 342.0, "POI_CBG": 421010141002.0, "Median Dwell Time": 5.0, "Total Spend": 333.0, "Total Transactions": 24.0, "Total Customers": 16.0, "Median Spend per Transaction": 8.7, "Median Spend per Customer": 17.9 }, "geometry": { "type": "Point", "coordinates": [ -75.155313, 39.970561 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-xdv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "713 W Girard Ave", "LATITUDE": 39.970677, "LONGITUDE": -75.148624, "DATE_RANGE_START": 2024, "Total Visits": 57.0, "Total Visitors": 49.0, "POI_CBG": 421010141001.0, "Median Dwell Time": null, "Total Spend": 1339.0, "Total Transactions": 42.0, "Total Customers": 38.0, "Median Spend per Transaction": 31.21, "Median Spend per Customer": 36.57 }, "geometry": { "type": "Point", "coordinates": [ -75.148624, 39.970677 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22p-222@628-p74-wtv", "Name": "Oteri's Italian Bakery Frankford Ave", "Category": "Restaurants and Other Eating Places", "Address": "7518 Frankford Ave", "LATITUDE": 40.038952, "LONGITUDE": -75.035677, "DATE_RANGE_START": 2024, "Total Visits": 234.0, "Total Visitors": 191.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 9.0, "Total Spend": 182.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 25.95, "Median Spend per Customer": 25.95 }, "geometry": { "type": "Point", "coordinates": [ -75.035677, 40.038952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-22f@628-p9q-hqz", "Name": "Domino's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "9475 Roosevelt Blvd", "LATITUDE": 40.07905, "LONGITUDE": -75.028048, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 12.0, "POI_CBG": 421010346001.0, "Median Dwell Time": null, "Total Spend": 2015.0, "Total Transactions": 92.0, "Total Customers": 54.0, "Median Spend per Transaction": 15.06, "Median Spend per Customer": 34.06 }, "geometry": { "type": "Point", "coordinates": [ -75.028048, 40.07905 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvx-vzz", "Name": "Royal Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4200 Baltimore Ave", "LATITUDE": 39.949674, "LONGITUDE": -75.20729, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010077001.0, "Median Dwell Time": 1.0, "Total Spend": 580.0, "Total Transactions": 34.0, "Total Customers": 25.0, "Median Spend per Transaction": 12.65, "Median Spend per Customer": 17.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20729, 39.949674 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmd-zfz", "Name": "Small Oven Pastry Shop", "Category": "Restaurants and Other Eating Places", "Address": "2204 Washington Ave", "LATITUDE": 39.939225, "LONGITUDE": -75.180201, "DATE_RANGE_START": 2024, "Total Visits": 382.0, "Total Visitors": 230.0, "POI_CBG": 421010020001.0, "Median Dwell Time": 14.0, "Total Spend": 73.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 9.3, "Median Spend per Customer": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -75.180201, 39.939225 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pm3-vxq", "Name": "Fuel", "Category": "Restaurants and Other Eating Places", "Address": "1917 E Passyunk Ave", "LATITUDE": 39.926178, "LONGITUDE": -75.167569, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 93.0, "POI_CBG": 421010040014.0, "Median Dwell Time": 97.0, "Total Spend": 2386.0, "Total Transactions": 150.0, "Total Customers": 97.0, "Median Spend per Transaction": 12.68, "Median Spend per Customer": 15.01 }, "geometry": { "type": "Point", "coordinates": [ -75.167569, 39.926178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23g-222@628-pmb-3kf", "Name": "Red Poke Express", "Category": "Restaurants and Other Eating Places", "Address": "135 South St", "LATITUDE": 39.941276, "LONGITUDE": -75.145318, "DATE_RANGE_START": 2024, "Total Visits": 50.0, "Total Visitors": 50.0, "POI_CBG": 421010010021.0, "Median Dwell Time": null, "Total Spend": 850.0, "Total Transactions": 49.0, "Total Customers": 39.0, "Median Spend per Transaction": 16.15, "Median Spend per Customer": 17.57 }, "geometry": { "type": "Point", "coordinates": [ -75.145318, 39.941276 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-224@628-pm9-hkf", "Name": "Enzos Pizzata", "Category": "Restaurants and Other Eating Places", "Address": "1849 Wolf St", "LATITUDE": 39.923017, "LONGITUDE": -75.17798, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010038003.0, "Median Dwell Time": 1.0, "Total Spend": 76.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 20.66, "Median Spend per Customer": 20.66 }, "geometry": { "type": "Point", "coordinates": [ -75.17798, 39.923017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pjf-kpv", "Name": "Artisans On the Avenue", "Category": "Clothing Stores", "Address": "8440 Germantown Ave", "LATITUDE": 40.075656, "LONGITUDE": -75.206288, "DATE_RANGE_START": 2024, "Total Visits": 118.0, "Total Visitors": 118.0, "POI_CBG": 421010385001.0, "Median Dwell Time": 1.0, "Total Spend": 835.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 56.16, "Median Spend per Customer": 56.16 }, "geometry": { "type": "Point", "coordinates": [ -75.206288, 40.075656 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pnx-btv", "Name": "Kraftwork", "Category": "Restaurants and Other Eating Places", "Address": "541 E Girard Ave", "LATITUDE": 39.971499, "LONGITUDE": -75.127358, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 54.0, "POI_CBG": 421010158003.0, "Median Dwell Time": null, "Total Spend": 411.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 37.98, "Median Spend per Customer": 37.98 }, "geometry": { "type": "Point", "coordinates": [ -75.127358, 39.971499 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvw-9zz", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5158 Haverford Ave", "LATITUDE": 39.964619, "LONGITUDE": -75.224116, "DATE_RANGE_START": 2024, "Total Visits": 34.0, "Total Visitors": 22.0, "POI_CBG": 421010093005.0, "Median Dwell Time": 1.0, "Total Spend": 465.0, "Total Transactions": 32.0, "Total Customers": 29.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 13.0 }, "geometry": { "type": "Point", "coordinates": [ -75.224116, 39.964619 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pm3-xqz", "Name": "Green Eggs Cafe", "Category": "Restaurants and Other Eating Places", "Address": "1306 Dickinson St", "LATITUDE": 39.931348, "LONGITUDE": -75.166497, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 137.0, "POI_CBG": 421010029002.0, "Median Dwell Time": 27.0, "Total Spend": 481.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 101.75, "Median Spend per Customer": 101.75 }, "geometry": { "type": "Point", "coordinates": [ -75.166497, 39.931348 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p83-y5f", "Name": "Judah Mediterranean Grill", "Category": "Restaurants and Other Eating Places", "Address": "9311 Krewstown Rd", "LATITUDE": 40.085623, "LONGITUDE": -75.045445, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 167.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 74.0, "Total Spend": 1203.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 51.3, "Median Spend per Customer": 124.32 }, "geometry": { "type": "Point", "coordinates": [ -75.045445, 40.085623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24w-222@628-pm4-k2k", "Name": "Four Seasons", "Category": "Restaurants and Other Eating Places", "Address": "612 Washington Ave", "LATITUDE": 39.934372, "LONGITUDE": -75.154357, "DATE_RANGE_START": 2024, "Total Visits": 1983.0, "Total Visitors": 1393.0, "POI_CBG": 421010024002.0, "Median Dwell Time": 15.0, "Total Spend": 27.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.2, "Median Spend per Customer": 10.42 }, "geometry": { "type": "Point", "coordinates": [ -75.154357, 39.934372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p8t-3qz", "Name": "Grand China Buffet", "Category": "Restaurants and Other Eating Places", "Address": "29 Franklin Mills Blvd", "LATITUDE": 40.085175, "LONGITUDE": -74.967524, "DATE_RANGE_START": 2024, "Total Visits": 945.0, "Total Visitors": 868.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 28.0, "Total Spend": 11831.0, "Total Transactions": 208.0, "Total Customers": 191.0, "Median Spend per Transaction": 47.48, "Median Spend per Customer": 50.32 }, "geometry": { "type": "Point", "coordinates": [ -74.967524, 40.085175 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dw7-94v", "Name": "Fairfield Inn & Suites by Marriott", "Category": "Traveler Accommodation", "Address": "8800 Bartram Ave", "LATITUDE": 39.886839, "LONGITUDE": -75.247575, "DATE_RANGE_START": 2024, "Total Visits": 877.0, "Total Visitors": 445.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 278.0, "Total Spend": 1416.0, "Total Transactions": 9.0, "Total Customers": 3.0, "Median Spend per Transaction": 146.48, "Median Spend per Customer": 537.68 }, "geometry": { "type": "Point", "coordinates": [ -75.247575, 39.886839 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-pm7-r6k", "Name": "King of Wings", "Category": "Restaurants and Other Eating Places", "Address": "2233 S Woodstock St", "LATITUDE": 39.923754, "LONGITUDE": -75.180132, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 28.0, "POI_CBG": 421010037021.0, "Median Dwell Time": 22.0, "Total Spend": 129.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 48.98, "Median Spend per Customer": 48.98 }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.923754 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pm9-zvf", "Name": "M2O Burgers & Salads", "Category": "Restaurants and Other Eating Places", "Address": "701 S 5th St", "LATITUDE": 39.940282, "LONGITUDE": -75.150883, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 158.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 19.0, "Total Spend": 161.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 18.0, "Median Spend per Customer": 21.99 }, "geometry": { "type": "Point", "coordinates": [ -75.150883, 39.940282 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg8-f4v", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2815 Ridge Ave Ste A", "LATITUDE": 39.986364, "LONGITUDE": -75.179578, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010151021.0, "Median Dwell Time": 8.0, "Total Spend": 81.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 7.48 }, "geometry": { "type": "Point", "coordinates": [ -75.179578, 39.986364 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p8t-vvf", "Name": "Skechers", "Category": "Shoe Stores", "Address": "1701 Franklin Mills Cir # 202", "LATITUDE": 40.089192, "LONGITUDE": -74.961438, "DATE_RANGE_START": 2024, "Total Visits": 429.0, "Total Visitors": 404.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 537.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 53.48, "Median Spend per Customer": 79.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961438, 40.089192 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-3nq", "Name": "Head House Books", "Category": "Book Stores and News Dealers", "Address": "619 S 2nd St", "LATITUDE": 39.940589, "LONGITUDE": -75.145463, "DATE_RANGE_START": 2024, "Total Visits": 536.0, "Total Visitors": 509.0, "POI_CBG": 421010016002.0, "Median Dwell Time": 22.0, "Total Spend": 223.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 14.59 }, "geometry": { "type": "Point", "coordinates": [ -75.145463, 39.940589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-223@628-pmf-j35", "Name": "Luke's Lobster", "Category": "Restaurants and Other Eating Places", "Address": "130 S 17th St", "LATITUDE": 39.950518, "LONGITUDE": -75.169188, "DATE_RANGE_START": 2024, "Total Visits": 200.0, "Total Visitors": 200.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 3283.0, "Total Transactions": 70.0, "Total Customers": 65.0, "Median Spend per Transaction": 44.04, "Median Spend per Customer": 48.6 }, "geometry": { "type": "Point", "coordinates": [ -75.169188, 39.950518 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@628-pgb-8y9", "Name": "Little Pete's Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2401 Pennsylvania Ave", "LATITUDE": 39.967097, "LONGITUDE": -75.177474, "DATE_RANGE_START": 2024, "Total Visits": 1342.0, "Total Visitors": 710.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 154.0, "Total Spend": 558.0, "Total Transactions": 16.0, "Total Customers": 13.0, "Median Spend per Transaction": 34.63, "Median Spend per Customer": 34.63 }, "geometry": { "type": "Point", "coordinates": [ -75.177474, 39.967097 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-pmf-ht9", "Name": "Ruth's Chris Steak House", "Category": "Restaurants and Other Eating Places", "Address": "1800 Market St", "LATITUDE": 39.952962, "LONGITUDE": -75.170263, "DATE_RANGE_START": 2024, "Total Visits": 1594.0, "Total Visitors": 886.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 145.0, "Total Spend": 8567.0, "Total Transactions": 62.0, "Total Customers": 55.0, "Median Spend per Transaction": 113.19, "Median Spend per Customer": 126.72 }, "geometry": { "type": "Point", "coordinates": [ -75.170263, 39.952962 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-pmb-whq", "Name": "Terakawa Ramen", "Category": "Restaurants and Other Eating Places", "Address": "204 N 9th St", "LATITUDE": 39.955405, "LONGITUDE": -75.15447, "DATE_RANGE_START": 2024, "Total Visits": 19620.0, "Total Visitors": 13494.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 4.0, "Total Spend": 1819.0, "Total Transactions": 45.0, "Total Customers": 43.0, "Median Spend per Transaction": 35.03, "Median Spend per Customer": 36.95 }, "geometry": { "type": "Point", "coordinates": [ -75.15447, 39.955405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pmb-v75", "Name": "Margherita Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "60 S 2nd St", "LATITUDE": 39.948535, "LONGITUDE": -75.144159, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 169.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 2564.0, "Total Transactions": 219.0, "Total Customers": 162.0, "Median Spend per Transaction": 10.4, "Median Spend per Customer": 12.99 }, "geometry": { "type": "Point", "coordinates": [ -75.144159, 39.948535 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg4-fmk", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "5534 Wayne Ave", "LATITUDE": 40.031043, "LONGITUDE": -75.17823, "DATE_RANGE_START": 2024, "Total Visits": 517.0, "Total Visitors": 315.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 11.0, "Total Spend": 506.0, "Total Transactions": 30.0, "Total Customers": 24.0, "Median Spend per Transaction": 14.2, "Median Spend per Customer": 14.84 }, "geometry": { "type": "Point", "coordinates": [ -75.17823, 40.031043 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@63s-dvw-bhq", "Name": "Yummy Diner", "Category": "Restaurants and Other Eating Places", "Address": "34 N 52nd St", "LATITUDE": 39.961114, "LONGITUDE": -75.224901, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010093004.0, "Median Dwell Time": null, "Total Spend": 449.0, "Total Transactions": 18.0, "Total Customers": 16.0, "Median Spend per Transaction": 17.99, "Median Spend per Customer": 24.29 }, "geometry": { "type": "Point", "coordinates": [ -75.224901, 39.961114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pfz-z4v", "Name": "Hilltown Tavern", "Category": "Restaurants and Other Eating Places", "Address": "326 Roxborough Ave", "LATITUDE": 40.028179, "LONGITUDE": -75.215829, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 157.0, "POI_CBG": 421010213004.0, "Median Dwell Time": 59.0, "Total Spend": 28558.0, "Total Transactions": 578.0, "Total Customers": 365.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 53.28 }, "geometry": { "type": "Point", "coordinates": [ -75.215829, 40.028179 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pgj-4sq", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1100 W Montgomery Ave Ste A", "LATITUDE": 39.979521, "LONGITUDE": -75.15368, "DATE_RANGE_START": 2024, "Total Visits": 433.0, "Total Visitors": 344.0, "POI_CBG": 421010146001.0, "Median Dwell Time": 2.0, "Total Spend": 20273.0, "Total Transactions": 1370.0, "Total Customers": 916.0, "Median Spend per Transaction": 13.18, "Median Spend per Customer": 16.45 }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.979521 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p7b-j7q", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "8966 Frankford Ave", "LATITUDE": 40.052417, "LONGITUDE": -75.008753, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 17.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 4.0, "Total Spend": 1650.0, "Total Transactions": 43.0, "Total Customers": 38.0, "Median Spend per Transaction": 18.35, "Median Spend per Customer": 17.26 }, "geometry": { "type": "Point", "coordinates": [ -75.008753, 40.052417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p85-2tv", "Name": "S S Pharmacy", "Category": "Health and Personal Care Stores", "Address": "8275 Bustleton Ave", "LATITUDE": 40.066075, "LONGITUDE": -75.050826, "DATE_RANGE_START": 2024, "Total Visits": 241.0, "Total Visitors": 133.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 2.0, "Total Spend": 66.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.050826, 40.066075 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23g@628-pmf-sqz", "Name": "New Balance Philadelphia", "Category": "Shoe Stores", "Address": "1615 Walnut St", "LATITUDE": 39.950046, "LONGITUDE": -75.168022, "DATE_RANGE_START": 2024, "Total Visits": 2525.0, "Total Visitors": 1840.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 5329.0, "Total Transactions": 47.0, "Total Customers": 45.0, "Median Spend per Transaction": 99.99, "Median Spend per Customer": 99.99 }, "geometry": { "type": "Point", "coordinates": [ -75.168022, 39.950046 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pnw-psq", "Name": "Unleashed by Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "180 W Girard Ave Ste 7", "LATITUDE": 39.969275, "LONGITUDE": -75.139207, "DATE_RANGE_START": 2024, "Total Visits": 2222.0, "Total Visitors": 1319.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 12.0, "Total Spend": 7917.0, "Total Transactions": 194.0, "Total Customers": 170.0, "Median Spend per Transaction": 31.3, "Median Spend per Customer": 33.44 }, "geometry": { "type": "Point", "coordinates": [ -75.139207, 39.969275 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23p-222@628-p7z-vj9", "Name": "Xin Xing House", "Category": "Restaurants and Other Eating Places", "Address": "6057 Castor Ave", "LATITUDE": 40.035461, "LONGITUDE": -75.080869, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 155.0, "POI_CBG": 421010312001.0, "Median Dwell Time": 10.0, "Total Spend": 1145.0, "Total Transactions": 8.0, "Total Customers": 4.0, "Median Spend per Transaction": 105.0, "Median Spend per Customer": 300.0 }, "geometry": { "type": "Point", "coordinates": [ -75.080869, 40.035461 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-224@628-p7v-sqz", "Name": "Sloane Toyota of Philadelphia", "Category": "Automobile Dealers", "Address": "1546 Cottman Ave", "LATITUDE": 40.054964, "LONGITUDE": -75.075228, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 12.0, "POI_CBG": 421010310002.0, "Median Dwell Time": 25.0, "Total Spend": 35703.0, "Total Transactions": 128.0, "Total Customers": 101.0, "Median Spend per Transaction": 118.94, "Median Spend per Customer": 154.94 }, "geometry": { "type": "Point", "coordinates": [ -75.075228, 40.054964 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p75-68v", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "8920 Frankford Ave", "LATITUDE": 40.052252, "LONGITUDE": -75.010446, "DATE_RANGE_START": 2024, "Total Visits": 675.0, "Total Visitors": 290.0, "POI_CBG": 421010348013.0, "Median Dwell Time": 6.0, "Total Spend": 42556.0, "Total Transactions": 1205.0, "Total Customers": 674.0, "Median Spend per Transaction": 23.72, "Median Spend per Customer": 35.25 }, "geometry": { "type": "Point", "coordinates": [ -75.010446, 40.052252 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm9-grk", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "1901 Johnston St", "LATITUDE": 39.917059, "LONGITUDE": -75.180598, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 26.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 5.0, "Total Spend": 152424.0, "Total Transactions": 3749.0, "Total Customers": 1499.0, "Median Spend per Transaction": 24.61, "Median Spend per Customer": 46.24 }, "geometry": { "type": "Point", "coordinates": [ -75.180598, 39.917059 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pgh-vmk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1912 Liacouras Walk", "LATITUDE": 39.982036, "LONGITUDE": -75.156118, "DATE_RANGE_START": 2024, "Total Visits": 717.0, "Total Visitors": 317.0, "POI_CBG": 421010377001.0, "Median Dwell Time": 9.0, "Total Spend": 2433.0, "Total Transactions": 253.0, "Total Customers": 143.0, "Median Spend per Transaction": 6.63, "Median Spend per Customer": 10.04 }, "geometry": { "type": "Point", "coordinates": [ -75.156118, 39.982036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmd-s5z", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2131 South St", "LATITUDE": 39.945425, "LONGITUDE": -75.17838, "DATE_RANGE_START": 2024, "Total Visits": 307.0, "Total Visitors": 146.0, "POI_CBG": 421010012013.0, "Median Dwell Time": 5.0, "Total Spend": 38289.0, "Total Transactions": 3610.0, "Total Customers": 1489.0, "Median Spend per Transaction": 8.15, "Median Spend per Customer": 13.37 }, "geometry": { "type": "Point", "coordinates": [ -75.17838, 39.945425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pnw-py9", "Name": "Pharmacy of America V", "Category": "Health and Personal Care Stores", "Address": "232 W Girard Ave", "LATITUDE": 39.969421, "LONGITUDE": -75.140859, "DATE_RANGE_START": 2024, "Total Visits": 500.0, "Total Visitors": 500.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 1.0, "Total Spend": 232.0, "Total Transactions": 18.0, "Total Customers": 18.0, "Median Spend per Transaction": 5.26, "Median Spend per Customer": 5.26 }, "geometry": { "type": "Point", "coordinates": [ -75.140859, 39.969421 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pj8-pgk", "Name": "GNC (General Nutrition Centers)", "Category": "Health and Personal Care Stores", "Address": "4640 E Roosevelt Blvd Ste F2", "LATITUDE": 40.031543, "LONGITUDE": -75.100254, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 9.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 27.0, "Total Spend": 344.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 59.99, "Median Spend per Customer": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.100254, 40.031543 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmc-v2k", "Name": "Michaels Stores", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "1851 S Columbus Blvd Ste F", "LATITUDE": 39.923501, "LONGITUDE": -75.140646, "DATE_RANGE_START": 2024, "Total Visits": 553.0, "Total Visitors": 441.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 11.0, "Total Spend": 111.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 20.51, "Median Spend per Customer": 20.51 }, "geometry": { "type": "Point", "coordinates": [ -75.140646, 39.923501 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pm4-hkf", "Name": "San Lucas Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "2000 S Bouvier St", "LATITUDE": 39.926278, "LONGITUDE": -75.175428, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010039014.0, "Median Dwell Time": 2.0, "Total Spend": 2316.0, "Total Transactions": 72.0, "Total Customers": 59.0, "Median Spend per Transaction": 24.21, "Median Spend per Customer": 29.95 }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.926278 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dvz-28v", "Name": "Evan's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "4311 Locust St", "LATITUDE": 39.953996, "LONGITUDE": -75.209746, "DATE_RANGE_START": 2024, "Total Visits": 66.0, "Total Visitors": 55.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 16.0, "Total Spend": 1613.0, "Total Transactions": 67.0, "Total Customers": 50.0, "Median Spend per Transaction": 22.05, "Median Spend per Customer": 22.29 }, "geometry": { "type": "Point", "coordinates": [ -75.209746, 39.953996 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-226@63s-dvy-pn5", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "125 S 40th St", "LATITUDE": 39.954683, "LONGITUDE": -75.202161, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 155.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 4.0, "Total Spend": 1757.0, "Total Transactions": 120.0, "Total Customers": 91.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -75.202161, 39.954683 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8h-qxq", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "6470 Torresdale Ave", "LATITUDE": 40.022302, "LONGITUDE": -75.050755, "DATE_RANGE_START": 2024, "Total Visits": 1270.0, "Total Visitors": 1101.0, "POI_CBG": 421010323003.0, "Median Dwell Time": 5.0, "Total Spend": 15312.0, "Total Transactions": 1028.0, "Total Customers": 613.0, "Median Spend per Transaction": 12.08, "Median Spend per Customer": 18.08 }, "geometry": { "type": "Point", "coordinates": [ -75.050755, 40.022302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p85-7yv", "Name": "Ritz Diner", "Category": "Restaurants and Other Eating Places", "Address": "8000 Roosevelt Blvd", "LATITUDE": 40.057296, "LONGITUDE": -75.047003, "DATE_RANGE_START": 2024, "Total Visits": 391.0, "Total Visitors": 312.0, "POI_CBG": 421010334001.0, "Median Dwell Time": 44.0, "Total Spend": 8907.0, "Total Transactions": 221.0, "Total Customers": 175.0, "Median Spend per Transaction": 34.11, "Median Spend per Customer": 43.17 }, "geometry": { "type": "Point", "coordinates": [ -75.047003, 40.057296 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dwc-dy9", "Name": "LKQ", "Category": "Miscellaneous Durable Goods Merchant Wholesalers", "Address": "3350 S 61st St", "LATITUDE": 39.919049, "LONGITUDE": -75.212329, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 187.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 17.0, "Total Spend": 10050.0, "Total Transactions": 26.0, "Total Customers": 25.0, "Median Spend per Transaction": 98.8, "Median Spend per Customer": 108.0 }, "geometry": { "type": "Point", "coordinates": [ -75.212329, 39.919049 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-223@628-pm4-syv", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "1839 S 7th St", "LATITUDE": 39.925363, "LONGITUDE": -75.15743, "DATE_RANGE_START": 2024, "Total Visits": 338.0, "Total Visitors": 224.0, "POI_CBG": 421010028012.0, "Median Dwell Time": 7.0, "Total Spend": 207.0, "Total Transactions": 24.0, "Total Customers": 13.0, "Median Spend per Transaction": 9.58, "Median Spend per Customer": 12.58 }, "geometry": { "type": "Point", "coordinates": [ -75.15743, 39.925363 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@628-pgj-pgk", "Name": "Best Sunny Diner", "Category": "Restaurants and Other Eating Places", "Address": "2650 Germantown Ave", "LATITUDE": 39.992784, "LONGITUDE": -75.148123, "DATE_RANGE_START": 2024, "Total Visits": 72.0, "Total Visitors": 58.0, "POI_CBG": 421010165003.0, "Median Dwell Time": 4.0, "Total Spend": 218.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 25.87, "Median Spend per Customer": 15.95 }, "geometry": { "type": "Point", "coordinates": [ -75.148123, 39.992784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23r-222@628-pnw-mzf", "Name": "Rustica", "Category": "Restaurants and Other Eating Places", "Address": "903 N 2nd St", "LATITUDE": 39.964223, "LONGITUDE": -75.140493, "DATE_RANGE_START": 2024, "Total Visits": 768.0, "Total Visitors": 357.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 197.0, "Total Spend": 1527.0, "Total Transactions": 108.0, "Total Customers": 74.0, "Median Spend per Transaction": 11.55, "Median Spend per Customer": 14.78 }, "geometry": { "type": "Point", "coordinates": [ -75.140493, 39.964223 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pmf-r49", "Name": "Pub & Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1946 Lombard St", "LATITUDE": 39.945654, "LONGITUDE": -75.174772, "DATE_RANGE_START": 2024, "Total Visits": 172.0, "Total Visitors": 105.0, "POI_CBG": 421010012023.0, "Median Dwell Time": 167.0, "Total Spend": 1859.0, "Total Transactions": 29.0, "Total Customers": 21.0, "Median Spend per Transaction": 58.75, "Median Spend per Customer": 84.19 }, "geometry": { "type": "Point", "coordinates": [ -75.174772, 39.945654 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-7qz", "Name": "Best In Town Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7971 Castor Ave", "LATITUDE": 40.061553, "LONGITUDE": -75.055989, "DATE_RANGE_START": 2024, "Total Visits": 167.0, "Total Visitors": 167.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 53.0, "Total Spend": 1496.0, "Total Transactions": 53.0, "Total Customers": 38.0, "Median Spend per Transaction": 24.71, "Median Spend per Customer": 32.09 }, "geometry": { "type": "Point", "coordinates": [ -75.055989, 40.061553 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmb-6x5", "Name": "Giuseppe & Sons", "Category": "Restaurants and Other Eating Places", "Address": "1523 Sansom St", "LATITUDE": 39.950627, "LONGITUDE": -75.166809, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 4123.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 80.12, "Median Spend per Customer": 93.22 }, "geometry": { "type": "Point", "coordinates": [ -75.166809, 39.950627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj4-vj9", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "177 W Allegheny Ave", "LATITUDE": 39.999377, "LONGITUDE": -75.132935, "DATE_RANGE_START": 2024, "Total Visits": 498.0, "Total Visitors": 450.0, "POI_CBG": 421010195011.0, "Median Dwell Time": 4.0, "Total Spend": 2889.0, "Total Transactions": 153.0, "Total Customers": 125.0, "Median Spend per Transaction": 14.36, "Median Spend per Customer": 19.52 }, "geometry": { "type": "Point", "coordinates": [ -75.132935, 39.999377 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22n@628-pmf-mrk", "Name": "Bain's Deli", "Category": "Restaurants and Other Eating Places", "Address": "1625 Chestnut St", "LATITUDE": 39.952352, "LONGITUDE": -75.168112, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 503.0, "Total Transactions": 45.0, "Total Customers": 37.0, "Median Spend per Transaction": 11.42, "Median Spend per Customer": 12.57 }, "geometry": { "type": "Point", "coordinates": [ -75.168112, 39.952352 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p7z-6tv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "6858 Rising Sun Ave", "LATITUDE": 40.055749, "LONGITUDE": -75.090525, "DATE_RANGE_START": 2024, "Total Visits": 1887.0, "Total Visitors": 1103.0, "POI_CBG": 421010307003.0, "Median Dwell Time": 4.0, "Total Spend": 95672.0, "Total Transactions": 5503.0, "Total Customers": 1919.0, "Median Spend per Transaction": 11.39, "Median Spend per Customer": 22.78 }, "geometry": { "type": "Point", "coordinates": [ -75.090525, 40.055749 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pj7-w8v", "Name": "Wawa", "Category": "Grocery Stores", "Address": "4510 Castor Ave", "LATITUDE": 40.018928, "LONGITUDE": -75.097108, "DATE_RANGE_START": 2024, "Total Visits": 1847.0, "Total Visitors": 1315.0, "POI_CBG": 421010292002.0, "Median Dwell Time": 4.0, "Total Spend": 51.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 4.08, "Median Spend per Customer": 4.08 }, "geometry": { "type": "Point", "coordinates": [ -75.097108, 40.018928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm4-z9f", "Name": "Rosario's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "1256 S 15th St Fl 1", "LATITUDE": 39.934479, "LONGITUDE": -75.16945, "DATE_RANGE_START": 2024, "Total Visits": 137.0, "Total Visitors": 137.0, "POI_CBG": 421010022002.0, "Median Dwell Time": 136.0, "Total Spend": 57.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 16.95, "Median Spend per Customer": 16.95 }, "geometry": { "type": "Point", "coordinates": [ -75.16945, 39.934479 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@63s-dvy-p9z", "Name": "Greek Lady", "Category": "Restaurants and Other Eating Places", "Address": "224 S 40th St", "LATITUDE": 39.953395, "LONGITUDE": -75.203043, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 263.0, "POI_CBG": 421010088023.0, "Median Dwell Time": 8.0, "Total Spend": 9910.0, "Total Transactions": 411.0, "Total Customers": 308.0, "Median Spend per Transaction": 18.85, "Median Spend per Customer": 24.52 }, "geometry": { "type": "Point", "coordinates": [ -75.203043, 39.953395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pm9-whq", "Name": "Menagerie Coffee", "Category": "Restaurants and Other Eating Places", "Address": "18 S 3rd St", "LATITUDE": 39.949715, "LONGITUDE": -75.145929, "DATE_RANGE_START": 2024, "Total Visits": 130.0, "Total Visitors": 120.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 27.0, "Total Spend": 5601.0, "Total Transactions": 603.0, "Total Customers": 395.0, "Median Spend per Transaction": 7.48, "Median Spend per Customer": 10.32 }, "geometry": { "type": "Point", "coordinates": [ -75.145929, 39.949715 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@63s-dvy-pjv", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "104 S 40th St", "LATITUDE": 39.955177, "LONGITUDE": -75.202596, "DATE_RANGE_START": 2024, "Total Visits": 86.0, "Total Visitors": 86.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 6.0, "Total Spend": 489.0, "Total Transactions": 30.0, "Total Customers": 26.0, "Median Spend per Transaction": 14.3, "Median Spend per Customer": 15.1 }, "geometry": { "type": "Point", "coordinates": [ -75.202596, 39.955177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj4-zzz", "Name": "Wok Works", "Category": "Restaurants and Other Eating Places", "Address": "3401 N Broad St", "LATITUDE": 40.005065, "LONGITUDE": -75.150775, "DATE_RANGE_START": 2024, "Total Visits": 3137.0, "Total Visitors": 1393.0, "POI_CBG": 421010200002.0, "Median Dwell Time": 167.0, "Total Spend": 451.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 15.12, "Median Spend per Customer": 15.66 }, "geometry": { "type": "Point", "coordinates": [ -75.150775, 40.005065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@63s-dw4-rzf", "Name": "Independence Prime", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.895177, "LONGITUDE": -75.227978, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 21.0, "Total Spend": 863.0, "Total Transactions": 29.0, "Total Customers": 24.0, "Median Spend per Transaction": 25.86, "Median Spend per Customer": 31.17 }, "geometry": { "type": "Point", "coordinates": [ -75.227978, 39.895177 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8j-bx5", "Name": "Moe's Deli Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "7360 Frankford Ave", "LATITUDE": 40.037856, "LONGITUDE": -75.038561, "DATE_RANGE_START": 2024, "Total Visits": 100.0, "Total Visitors": 100.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 5.0, "Total Spend": 715.0, "Total Transactions": 66.0, "Total Customers": 17.0, "Median Spend per Transaction": 8.38, "Median Spend per Customer": 23.0 }, "geometry": { "type": "Point", "coordinates": [ -75.038561, 40.037856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm8-gzf", "Name": "Shake Shack", "Category": "Restaurants and Other Eating Places", "Address": "3601 S Broad St", "LATITUDE": 39.901198, "LONGITUDE": -75.171974, "DATE_RANGE_START": 2024, "Total Visits": 3453.0, "Total Visitors": 2587.0, "POI_CBG": 421019806001.0, "Median Dwell Time": 166.0, "Total Spend": 1043.0, "Total Transactions": 49.0, "Total Customers": 41.0, "Median Spend per Transaction": 17.58, "Median Spend per Customer": 18.11 }, "geometry": { "type": "Point", "coordinates": [ -75.171974, 39.901198 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "243-222@628-pm4-v75", "Name": "2nd Street Brew House", "Category": "Restaurants and Other Eating Places", "Address": "1700 S 2nd St", "LATITUDE": 39.926641, "LONGITUDE": -75.149383, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 65.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 90.0, "Total Spend": 4708.0, "Total Transactions": 109.0, "Total Customers": 26.0, "Median Spend per Transaction": 42.5, "Median Spend per Customer": 45.63 }, "geometry": { "type": "Point", "coordinates": [ -75.149383, 39.926641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-222@63s-dvq-435", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5214 Baltimore Ave # 30", "LATITUDE": 39.947353, "LONGITUDE": -75.228782, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010073004.0, "Median Dwell Time": 4.0, "Total Spend": 2196.0, "Total Transactions": 96.0, "Total Customers": 75.0, "Median Spend per Transaction": 16.3, "Median Spend per Customer": 17.68 }, "geometry": { "type": "Point", "coordinates": [ -75.228782, 39.947353 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfw-rtv", "Name": "Takka Grill and Pizza", "Category": "Restaurants and Other Eating Places", "Address": "324 W Chelten Ave", "LATITUDE": 40.029529, "LONGITUDE": -75.180791, "DATE_RANGE_START": 2024, "Total Visits": 140.0, "Total Visitors": 124.0, "POI_CBG": 421010240002.0, "Median Dwell Time": 3.0, "Total Spend": 354.0, "Total Transactions": 12.0, "Total Customers": 11.0, "Median Spend per Transaction": 25.0, "Median Spend per Customer": 30.28 }, "geometry": { "type": "Point", "coordinates": [ -75.180791, 40.029529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pmf-s3q", "Name": "South Deli and Grocery", "Category": "Restaurants and Other Eating Places", "Address": "1739 South St", "LATITUDE": 39.944603, "LONGITUDE": -75.17157, "DATE_RANGE_START": 2024, "Total Visits": 492.0, "Total Visitors": 388.0, "POI_CBG": 421010012022.0, "Median Dwell Time": 3.0, "Total Spend": 516.0, "Total Transactions": 46.0, "Total Customers": 22.0, "Median Spend per Transaction": 11.0, "Median Spend per Customer": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -75.17157, 39.944603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-nkf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1100 S Columbus Blvd", "LATITUDE": 39.933013, "LONGITUDE": -75.144591, "DATE_RANGE_START": 2024, "Total Visits": 315.0, "Total Visitors": 274.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 3.0, "Total Spend": 12666.0, "Total Transactions": 1602.0, "Total Customers": 739.0, "Median Spend per Transaction": 6.78, "Median Spend per Customer": 10.11 }, "geometry": { "type": "Point", "coordinates": [ -75.144591, 39.933013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-ph6-vvf", "Name": "Debreaux's", "Category": "Restaurants and Other Eating Places", "Address": "2135 N 63rd St", "LATITUDE": 39.989238, "LONGITUDE": -75.24979, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010375001.0, "Median Dwell Time": null, "Total Spend": 274.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 33.75, "Median Spend per Customer": 47.93 }, "geometry": { "type": "Point", "coordinates": [ -75.24979, 39.989238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvy-zpv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4301 Market St", "LATITUDE": 39.958186, "LONGITUDE": -75.208259, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 7.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 18.0, "Total Spend": 6613.0, "Total Transactions": 933.0, "Total Customers": 446.0, "Median Spend per Transaction": 5.69, "Median Spend per Customer": 10.26 }, "geometry": { "type": "Point", "coordinates": [ -75.208259, 39.958186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-223@63s-dvr-qj9", "Name": "Trendsetters Bar & Lounge", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "5301 Woodland Ave", "LATITUDE": 39.937385, "LONGITUDE": -75.217901, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 91.0, "POI_CBG": 421010070001.0, "Median Dwell Time": 1358.0, "Total Spend": 47.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 17.96, "Median Spend per Customer": 17.96 }, "geometry": { "type": "Point", "coordinates": [ -75.217901, 39.937385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25m-222@628-pmf-jgk", "Name": "Square 1682", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "121 S 17th St", "LATITUDE": 39.950845, "LONGITUDE": -75.168603, "DATE_RANGE_START": 2024, "Total Visits": 746.0, "Total Visitors": 371.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 169.0, "Total Spend": 3925.0, "Total Transactions": 68.0, "Total Customers": 65.0, "Median Spend per Transaction": 51.12, "Median Spend per Customer": 55.36 }, "geometry": { "type": "Point", "coordinates": [ -75.168603, 39.950845 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-pft-z9f", "Name": "Zesto Pizza & Grill", "Category": "Restaurants and Other Eating Places", "Address": "6024 Ridge Ave Ste 104", "LATITUDE": 40.032146, "LONGITUDE": -75.21395, "DATE_RANGE_START": 2024, "Total Visits": 986.0, "Total Visitors": 582.0, "POI_CBG": 421010213003.0, "Median Dwell Time": 6.0, "Total Spend": 1787.0, "Total Transactions": 101.0, "Total Customers": 83.0, "Median Spend per Transaction": 11.22, "Median Spend per Customer": 18.24 }, "geometry": { "type": "Point", "coordinates": [ -75.21395, 40.032146 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm4-yqf", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1551 Washington Ave", "LATITUDE": 39.938612, "LONGITUDE": -75.169722, "DATE_RANGE_START": 2024, "Total Visits": 411.0, "Total Visitors": 303.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 5.0, "Total Spend": 3205.0, "Total Transactions": 403.0, "Total Customers": 250.0, "Median Spend per Transaction": 6.76, "Median Spend per Customer": 8.94 }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.938612 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-p8f-ct9", "Name": "Rosario Deli Grocery", "Category": "Grocery Stores", "Address": "4801 Mulberry St", "LATITUDE": 40.015606, "LONGITUDE": -75.078196, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 62.0, "POI_CBG": 421010300003.0, "Median Dwell Time": 8.0, "Total Spend": 192.0, "Total Transactions": 16.0, "Total Customers": 5.0, "Median Spend per Transaction": 13.52, "Median Spend per Customer": 34.58 }, "geometry": { "type": "Point", "coordinates": [ -75.078196, 40.015606 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-222@628-pmb-7qz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "1227 Locust St", "LATITUDE": 39.948017, "LONGITUDE": -75.161653, "DATE_RANGE_START": 2024, "Total Visits": 844.0, "Total Visitors": 531.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 8.0, "Total Spend": 230.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 14.22, "Median Spend per Customer": 24.09 }, "geometry": { "type": "Point", "coordinates": [ -75.161653, 39.948017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmf-j5f", "Name": "Urban Outfitters", "Category": "Clothing Stores", "Address": "1627 Walnut St", "LATITUDE": 39.950062, "LONGITUDE": -75.168741, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 49.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 2.0, "Total Spend": 28521.0, "Total Transactions": 602.0, "Total Customers": 490.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 39.85 }, "geometry": { "type": "Point", "coordinates": [ -75.168741, 39.950062 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm5-pd9", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "330 W Oregon Ave", "LATITUDE": 39.914496, "LONGITUDE": -75.156757, "DATE_RANGE_START": 2024, "Total Visits": 171.0, "Total Visitors": 154.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 21.0, "Total Spend": 183.0, "Total Transactions": 13.0, "Total Customers": 11.0, "Median Spend per Transaction": 15.52, "Median Spend per Customer": 18.21 }, "geometry": { "type": "Point", "coordinates": [ -75.156757, 39.914496 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p7x-t9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "7512 Bustleton Ave", "LATITUDE": 40.051567, "LONGITUDE": -75.057117, "DATE_RANGE_START": 2024, "Total Visits": 412.0, "Total Visitors": 344.0, "POI_CBG": 421010334004.0, "Median Dwell Time": 4.0, "Total Spend": 8288.0, "Total Transactions": 1024.0, "Total Customers": 440.0, "Median Spend per Transaction": 7.07, "Median Spend per Customer": 9.63 }, "geometry": { "type": "Point", "coordinates": [ -75.057117, 40.051567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-223@628-pnx-7yv", "Name": "Creep Records", "Category": "Electronics and Appliance Stores", "Address": "608 N 2nd St", "LATITUDE": 39.961361, "LONGITUDE": -75.141595, "DATE_RANGE_START": 2024, "Total Visits": 332.0, "Total Visitors": 250.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 9.0, "Total Spend": 1471.0, "Total Transactions": 57.0, "Total Customers": 46.0, "Median Spend per Transaction": 23.32, "Median Spend per Customer": 28.07 }, "geometry": { "type": "Point", "coordinates": [ -75.141595, 39.961361 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kpv", "Name": "Citi Gas", "Category": "Gasoline Stations", "Address": "4067 Frankford Ave", "LATITUDE": 40.006375, "LONGITUDE": -75.09134, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 18.0, "POI_CBG": 421010294002.0, "Median Dwell Time": 4.0, "Total Spend": 15468.0, "Total Transactions": 645.0, "Total Customers": 370.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 30.0 }, "geometry": { "type": "Point", "coordinates": [ -75.09134, 40.006375 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pmb-fpv", "Name": "Locust Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "235 S 10th St", "LATITUDE": 39.947237, "LONGITUDE": -75.157431, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 41.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 102.0, "Total Spend": 216.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 24.38, "Median Spend per Customer": 24.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157431, 39.947237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23y-222@628-pj5-j9z", "Name": "Pizza Power", "Category": "Restaurants and Other Eating Places", "Address": "123 E Allegheny Ave", "LATITUDE": 39.998737, "LONGITUDE": -75.128356, "DATE_RANGE_START": 2024, "Total Visits": 62.0, "Total Visitors": 51.0, "POI_CBG": 421010195012.0, "Median Dwell Time": 1.0, "Total Spend": 147.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 8.0, "Median Spend per Customer": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -75.128356, 39.998737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmd-y5f", "Name": "Southside Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "917 S 20th St", "LATITUDE": 39.940448, "LONGITUDE": -75.17585, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010019002.0, "Median Dwell Time": null, "Total Spend": 190.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 28.88, "Median Spend per Customer": 19.17 }, "geometry": { "type": "Point", "coordinates": [ -75.17585, 39.940448 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p72-5s5", "Name": "Three Monkeys Cafe", "Category": "Restaurants and Other Eating Places", "Address": "9645 James St", "LATITUDE": 40.053948, "LONGITUDE": -74.983889, "DATE_RANGE_START": 2024, "Total Visits": 354.0, "Total Visitors": 140.0, "POI_CBG": 421010351001.0, "Median Dwell Time": 38.0, "Total Spend": 884.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 97.16, "Median Spend per Customer": 98.58 }, "geometry": { "type": "Point", "coordinates": [ -74.983889, 40.053948 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmf-fmk", "Name": "Thai Square Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2521 Christian St", "LATITUDE": 39.942574, "LONGITUDE": -75.185328, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 20.0, "POI_CBG": 421010013005.0, "Median Dwell Time": null, "Total Spend": 837.0, "Total Transactions": 17.0, "Total Customers": 16.0, "Median Spend per Transaction": 50.99, "Median Spend per Customer": 54.17 }, "geometry": { "type": "Point", "coordinates": [ -75.185328, 39.942574 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm4-yvz", "Name": "L'anima", "Category": "Restaurants and Other Eating Places", "Address": "1001 S 17th St", "LATITUDE": 39.939133, "LONGITUDE": -75.171282, "DATE_RANGE_START": 2024, "Total Visits": 689.0, "Total Visitors": 625.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 1.0, "Total Spend": 343.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 130.1, "Median Spend per Customer": 130.1 }, "geometry": { "type": "Point", "coordinates": [ -75.171282, 39.939133 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pmb-7nq", "Name": "El Vez", "Category": "Restaurants and Other Eating Places", "Address": "121 S 13th St", "LATITUDE": 39.949717, "LONGITUDE": -75.161689, "DATE_RANGE_START": 2024, "Total Visits": 292.0, "Total Visitors": 175.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 44.0, "Total Spend": 63810.0, "Total Transactions": 768.0, "Total Customers": 657.0, "Median Spend per Transaction": 66.33, "Median Spend per Customer": 75.17 }, "geometry": { "type": "Point", "coordinates": [ -75.161689, 39.949717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-22h@628-pmf-n3q", "Name": "Genji", "Category": "Specialty Food Stores", "Address": "1500 John F Kennedy Blvd", "LATITUDE": 39.953358, "LONGITUDE": -75.165439, "DATE_RANGE_START": 2024, "Total Visits": 270.0, "Total Visitors": 234.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 5.0, "Total Spend": 80.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -75.165439, 39.953358 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23x-222@628-pnx-cbk", "Name": "Philly Style Bagels", "Category": "Restaurants and Other Eating Places", "Address": "1451 E Columbia Ave", "LATITUDE": 39.97443, "LONGITUDE": -75.13265, "DATE_RANGE_START": 2024, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010158005.0, "Median Dwell Time": 1.0, "Total Spend": 122.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 15.4, "Median Spend per Customer": 15.4 }, "geometry": { "type": "Point", "coordinates": [ -75.13265, 39.97443 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmb-yd9", "Name": "Heng Fa Food Market", "Category": "Grocery Stores", "Address": "130 N 10th St", "LATITUDE": 39.954397, "LONGITUDE": -75.156277, "DATE_RANGE_START": 2024, "Total Visits": 294.0, "Total Visitors": 219.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 3.0, "Total Spend": 20943.0, "Total Transactions": 546.0, "Total Customers": 391.0, "Median Spend per Transaction": 17.99, "Median Spend per Customer": 18.57 }, "geometry": { "type": "Point", "coordinates": [ -75.156277, 39.954397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-224@628-pm9-whq", "Name": "Penzeys Spices", "Category": "Specialty Food Stores", "Address": "233 Market St", "LATITUDE": 39.95039, "LONGITUDE": -75.144816, "DATE_RANGE_START": 2024, "Total Visits": 931.0, "Total Visitors": 761.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 3.0, "Total Spend": 623.0, "Total Transactions": 25.0, "Total Customers": 24.0, "Median Spend per Transaction": 19.78, "Median Spend per Customer": 21.92 }, "geometry": { "type": "Point", "coordinates": [ -75.144816, 39.95039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-223@628-pm9-zs5", "Name": "Retrospect", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "508 South St", "LATITUDE": 39.941639, "LONGITUDE": -75.151247, "DATE_RANGE_START": 2024, "Total Visits": 610.0, "Total Visitors": 515.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 5.0, "Total Spend": 15421.0, "Total Transactions": 469.0, "Total Customers": 415.0, "Median Spend per Transaction": 24.0, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.151247, 39.941639 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgg-jsq", "Name": "BBQ Town", "Category": "Restaurants and Other Eating Places", "Address": "2150 W Sedge Ave", "LATITUDE": 39.995114, "LONGITUDE": -75.167387, "DATE_RANGE_START": 2024, "Total Visits": 20.0, "Total Visitors": 9.0, "POI_CBG": 421010168006.0, "Median Dwell Time": 327.0, "Total Spend": 356.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 22.39, "Median Spend per Customer": 32.47 }, "geometry": { "type": "Point", "coordinates": [ -75.167387, 39.995114 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8t-6c5", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "499 Franklin Mills Cir", "LATITUDE": 40.087567, "LONGITUDE": -74.965278, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 1981.0, "Total Transactions": 124.0, "Total Customers": 116.0, "Median Spend per Transaction": 14.24, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -74.965278, 40.087567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-223@63s-dvy-k9f", "Name": "Five Guys", "Category": "Restaurants and Other Eating Places", "Address": "3714 Spruce St", "LATITUDE": 39.951004, "LONGITUDE": -75.198123, "DATE_RANGE_START": 2024, "Total Visits": 1051.0, "Total Visitors": 503.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 7.0, "Total Spend": 5297.0, "Total Transactions": 255.0, "Total Customers": 205.0, "Median Spend per Transaction": 18.63, "Median Spend per Customer": 20.99 }, "geometry": { "type": "Point", "coordinates": [ -75.198123, 39.951004 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p9q-y9z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "1619 Grant Ave Ste 5", "LATITUDE": 40.087323, "LONGITUDE": -75.039984, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 9.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 3.0, "Total Spend": 849.0, "Total Transactions": 101.0, "Total Customers": 82.0, "Median Spend per Transaction": 6.46, "Median Spend per Customer": 8.57 }, "geometry": { "type": "Point", "coordinates": [ -75.039984, 40.087323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-s3q", "Name": "ShopRite", "Category": "Grocery Stores", "Address": "3745 Aramingo Ave", "LATITUDE": 39.994586, "LONGITUDE": -75.091606, "DATE_RANGE_START": 2024, "Total Visits": 2763.0, "Total Visitors": 1569.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 14.0, "Total Spend": 1452719.0, "Total Transactions": 33531.0, "Total Customers": 13615.0, "Median Spend per Transaction": 24.55, "Median Spend per Customer": 49.64 }, "geometry": { "type": "Point", "coordinates": [ -75.091606, 39.994586 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p85-3qz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "8144 Castor Ave # 8152", "LATITUDE": 40.064171, "LONGITUDE": -75.054427, "DATE_RANGE_START": 2024, "Total Visits": 1489.0, "Total Visitors": 873.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 3.0, "Total Spend": 22491.0, "Total Transactions": 1343.0, "Total Customers": 883.0, "Median Spend per Transaction": 11.18, "Median Spend per Customer": 16.75 }, "geometry": { "type": "Point", "coordinates": [ -75.054427, 40.064171 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp2-fcq", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "3899 Aramingo Ave", "LATITUDE": 39.996643, "LONGITUDE": -75.089519, "DATE_RANGE_START": 2024, "Total Visits": 342.0, "Total Visitors": 313.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 9.0, "Total Spend": 18912.0, "Total Transactions": 449.0, "Total Customers": 340.0, "Median Spend per Transaction": 19.98, "Median Spend per Customer": 30.5 }, "geometry": { "type": "Point", "coordinates": [ -75.089519, 39.996643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-p9q-qs5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2600 Grant Ave", "LATITUDE": 40.077273, "LONGITUDE": -75.023692, "DATE_RANGE_START": 2024, "Total Visits": 2328.0, "Total Visitors": 1347.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 4.0, "Total Spend": 73295.0, "Total Transactions": 4406.0, "Total Customers": 1914.0, "Median Spend per Transaction": 10.78, "Median Spend per Customer": 21.51 }, "geometry": { "type": "Point", "coordinates": [ -75.023692, 40.077273 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pmb-8n5", "Name": "ULTA Beauty", "Category": "Health and Personal Care Stores", "Address": "1021 Market St # 1175", "LATITUDE": 39.951999, "LONGITUDE": -75.157711, "DATE_RANGE_START": 2024, "Total Visits": 13727.0, "Total Visitors": 7998.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 20.0, "Total Spend": 42812.0, "Total Transactions": 953.0, "Total Customers": 819.0, "Median Spend per Transaction": 31.31, "Median Spend per Customer": 35.38 }, "geometry": { "type": "Point", "coordinates": [ -75.157711, 39.951999 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-224@628-pgf-3bk", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "3550 Market St", "LATITUDE": 39.955764, "LONGITUDE": -75.194013, "DATE_RANGE_START": 2024, "Total Visits": 1958.0, "Total Visitors": 1251.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 58.0, "Total Spend": 109.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 7.5, "Median Spend per Customer": 5.0 }, "geometry": { "type": "Point", "coordinates": [ -75.194013, 39.955764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-pfv-94v", "Name": "Weavers Way Co Op", "Category": "Grocery Stores", "Address": "559 Carpenter Ln", "LATITUDE": 40.046555, "LONGITUDE": -75.196001, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 74.0, "POI_CBG": 421010236001.0, "Median Dwell Time": 6.0, "Total Spend": 4262.0, "Total Transactions": 117.0, "Total Customers": 62.0, "Median Spend per Transaction": 21.0, "Median Spend per Customer": 36.31 }, "geometry": { "type": "Point", "coordinates": [ -75.196001, 40.046555 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmc-vzz", "Name": "Wawa", "Category": "Grocery Stores", "Address": "1602 S Columbus Blvd # 04", "LATITUDE": 39.926446, "LONGITUDE": -75.145402, "DATE_RANGE_START": 2024, "Total Visits": 1266.0, "Total Visitors": 828.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 4.0, "Total Spend": 12912.0, "Total Transactions": 1030.0, "Total Customers": 700.0, "Median Spend per Transaction": 9.58, "Median Spend per Customer": 13.82 }, "geometry": { "type": "Point", "coordinates": [ -75.145402, 39.926446 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pg3-789", "Name": "China Garden", "Category": "Restaurants and Other Eating Places", "Address": "8103 Stenton Ave", "LATITUDE": 40.067023, "LONGITUDE": -75.178027, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 5.0, "Total Spend": 227.0, "Total Transactions": 12.0, "Total Customers": 9.0, "Median Spend per Transaction": 15.25, "Median Spend per Customer": 13.45 }, "geometry": { "type": "Point", "coordinates": [ -75.178027, 40.067023 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dwf-bhq", "Name": "Rena's Pharmacy", "Category": "Health and Personal Care Stores", "Address": "2904 S 70th St Unit 3", "LATITUDE": 39.912331, "LONGITUDE": -75.233407, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 250.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 8.0, "Total Spend": 616.0, "Total Transactions": 12.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.77, "Median Spend per Customer": 233.84 }, "geometry": { "type": "Point", "coordinates": [ -75.233407, 39.912331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-s89", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "3725 Aramingo Ave", "LATITUDE": 39.99465, "LONGITUDE": -75.093622, "DATE_RANGE_START": 2024, "Total Visits": 954.0, "Total Visitors": 836.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 5.0, "Total Spend": 18474.0, "Total Transactions": 1164.0, "Total Customers": 761.0, "Median Spend per Transaction": 13.12, "Median Spend per Customer": 16.93 }, "geometry": { "type": "Point", "coordinates": [ -75.093622, 39.99465 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pnw-nnq", "Name": "Liberty Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1244 N Front St", "LATITUDE": 39.970136, "LONGITUDE": -75.136058, "DATE_RANGE_START": 2024, "Total Visits": 516.0, "Total Visitors": 440.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 31.0, "Total Spend": 6378.0, "Total Transactions": 250.0, "Total Customers": 207.0, "Median Spend per Transaction": 20.4, "Median Spend per Customer": 21.52 }, "geometry": { "type": "Point", "coordinates": [ -75.136058, 39.970136 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmf-s89", "Name": "Pen and Pencil", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1522 Latimer St", "LATITUDE": 39.948013, "LONGITUDE": -75.167208, "DATE_RANGE_START": 2024, "Total Visits": 275.0, "Total Visitors": 234.0, "POI_CBG": 421010008043.0, "Median Dwell Time": 11.0, "Total Spend": 304.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 19.5, "Median Spend per Customer": 19.5 }, "geometry": { "type": "Point", "coordinates": [ -75.167208, 39.948013 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pnw-z2k", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "917 W Girard Ave # 31", "LATITUDE": 39.970951, "LONGITUDE": -75.152123, "DATE_RANGE_START": 2024, "Total Visits": 417.0, "Total Visitors": 269.0, "POI_CBG": 421010141001.0, "Median Dwell Time": 4.0, "Total Spend": 14532.0, "Total Transactions": 1706.0, "Total Customers": 710.0, "Median Spend per Transaction": 6.99, "Median Spend per Customer": 12.05 }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.970951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pp4-qvf", "Name": "Applebee's", "Category": "Restaurants and Other Eating Places", "Address": "2501 Aramingo Ave", "LATITUDE": 39.976851, "LONGITUDE": -75.11886, "DATE_RANGE_START": 2024, "Total Visits": 728.0, "Total Visitors": 552.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 51.0, "Total Spend": 2717.0, "Total Transactions": 46.0, "Total Customers": 46.0, "Median Spend per Transaction": 59.4, "Median Spend per Customer": 59.4 }, "geometry": { "type": "Point", "coordinates": [ -75.11886, 39.976851 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pmb-d5f", "Name": "Gennaro's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1315 Bainbridge St", "LATITUDE": 39.942866, "LONGITUDE": -75.16404, "DATE_RANGE_START": 2024, "Total Visits": 342.0, "Total Visitors": 307.0, "POI_CBG": 421010015002.0, "Median Dwell Time": 5.0, "Total Spend": 479.0, "Total Transactions": 39.0, "Total Customers": 30.0, "Median Spend per Transaction": 11.95, "Median Spend per Customer": 13.34 }, "geometry": { "type": "Point", "coordinates": [ -75.16404, 39.942866 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9w-yd9", "Name": "Art of Perfume", "Category": "Health and Personal Care Stores", "Address": "11801 Bustleton Ave", "LATITUDE": 40.120376, "LONGITUDE": -75.016141, "DATE_RANGE_START": 2024, "Total Visits": 12.0, "Total Visitors": 11.0, "POI_CBG": 421010359001.0, "Median Dwell Time": 4.0, "Total Spend": 155.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 58.97, "Median Spend per Customer": 58.97 }, "geometry": { "type": "Point", "coordinates": [ -75.016141, 40.120376 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pg9-7h5", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "2301 N 29th St", "LATITUDE": 39.991208, "LONGITUDE": -75.177977, "DATE_RANGE_START": 2024, "Total Visits": 332.0, "Total Visitors": 182.0, "POI_CBG": 421010169013.0, "Median Dwell Time": 39.0, "Total Spend": 1608.0, "Total Transactions": 42.0, "Total Customers": 36.0, "Median Spend per Transaction": 26.48, "Median Spend per Customer": 28.15 }, "geometry": { "type": "Point", "coordinates": [ -75.177977, 39.991208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-fcq", "Name": "Rustic Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "259 S 10th St", "LATITUDE": 39.946665, "LONGITUDE": -75.157591, "DATE_RANGE_START": 2024, "Total Visits": 133.0, "Total Visitors": 122.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 5.0, "Total Spend": 78.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 16.15, "Median Spend per Customer": 16.15 }, "geometry": { "type": "Point", "coordinates": [ -75.157591, 39.946665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pgf-6zf", "Name": "Lets Grub", "Category": "Restaurants and Other Eating Places", "Address": "4040 Lancaster Ave", "LATITUDE": 39.963789, "LONGITUDE": -75.20375, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 24.0, "POI_CBG": 421010106002.0, "Median Dwell Time": null, "Total Spend": 531.0, "Total Transactions": 43.0, "Total Customers": 28.0, "Median Spend per Transaction": 11.34, "Median Spend per Customer": 19.7 }, "geometry": { "type": "Point", "coordinates": [ -75.20375, 39.963789 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "244-222@628-pnx-75z", "Name": "North Third", "Category": "Restaurants and Other Eating Places", "Address": "801 N 3rd St", "LATITUDE": 39.963481, "LONGITUDE": -75.142676, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 31.0, "Total Spend": 752.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 88.84, "Median Spend per Customer": 88.84 }, "geometry": { "type": "Point", "coordinates": [ -75.142676, 39.963481 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-pm3-vpv", "Name": "Frame Fatale", "Category": "Home Furnishings Stores", "Address": "1813 E Passyunk Ave", "LATITUDE": 39.92733, "LONGITUDE": -75.166218, "DATE_RANGE_START": 2024, "Total Visits": 658.0, "Total Visitors": 508.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 7.0, "Total Spend": 846.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 105.2, "Median Spend per Customer": 154.33 }, "geometry": { "type": "Point", "coordinates": [ -75.166218, 39.92733 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-phy-ty9", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "5201 Rising Sun Ave", "LATITUDE": 40.029093, "LONGITUDE": -75.118871, "DATE_RANGE_START": 2024, "Total Visits": 491.0, "Total Visitors": 354.0, "POI_CBG": 421010290004.0, "Median Dwell Time": 11.0, "Total Spend": 642.0, "Total Transactions": 43.0, "Total Customers": 29.0, "Median Spend per Transaction": 11.66, "Median Spend per Customer": 12.37 }, "geometry": { "type": "Point", "coordinates": [ -75.118871, 40.029093 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg5-35z", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "800 E Washington Ln", "LATITUDE": 40.050874, "LONGITUDE": -75.172737, "DATE_RANGE_START": 2024, "Total Visits": 729.0, "Total Visitors": 467.0, "POI_CBG": 421010389001.0, "Median Dwell Time": 5.0, "Total Spend": 2159.0, "Total Transactions": 124.0, "Total Customers": 86.0, "Median Spend per Transaction": 13.68, "Median Spend per Customer": 23.66 }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 40.050874 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7bk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "90 Franklin Mills Blvd", "LATITUDE": 40.087934, "LONGITUDE": -74.96714, "DATE_RANGE_START": 2024, "Total Visits": 529.0, "Total Visitors": 462.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 3572.0, "Total Transactions": 332.0, "Total Customers": 171.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 16.44 }, "geometry": { "type": "Point", "coordinates": [ -74.96714, 40.087934 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-j9z", "Name": "Athleta", "Category": "Clothing Stores", "Address": "1722 Walnut St", "LATITUDE": 39.949833, "LONGITUDE": -75.170282, "DATE_RANGE_START": 2024, "Total Visits": 54.0, "Total Visitors": 41.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 7.0, "Total Spend": 3960.0, "Total Transactions": 49.0, "Total Customers": 43.0, "Median Spend per Transaction": 67.94, "Median Spend per Customer": 67.94 }, "geometry": { "type": "Point", "coordinates": [ -75.170282, 39.949833 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22p@628-pmf-jd9", "Name": "Bloomingdale's Outlet Philadelphia", "Category": "Department Stores", "Address": "1625 Chestnut St Ste 240-248", "LATITUDE": 39.951567, "LONGITUDE": -75.167995, "DATE_RANGE_START": 2024, "Total Visits": 8635.0, "Total Visitors": 4920.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 31.0, "Total Spend": 4404.0, "Total Transactions": 49.0, "Total Customers": 46.0, "Median Spend per Transaction": 74.98, "Median Spend per Customer": 79.99 }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.951567 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-hkf", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "1900 Market St", "LATITUDE": 39.953319, "LONGITUDE": -75.17307, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 20.0, "POI_CBG": 421010004021.0, "Median Dwell Time": 1.0, "Total Spend": 929.0, "Total Transactions": 53.0, "Total Customers": 43.0, "Median Spend per Transaction": 6.43, "Median Spend per Customer": 6.97 }, "geometry": { "type": "Point", "coordinates": [ -75.17307, 39.953319 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p7x-68v", "Name": "Shoe Carnival", "Category": "Shoe Stores", "Address": "2135 Cottman Ave", "LATITUDE": 40.049912, "LONGITUDE": -75.06237, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 13.0, "POI_CBG": 421010335002.0, "Median Dwell Time": 9.0, "Total Spend": 8177.0, "Total Transactions": 128.0, "Total Customers": 118.0, "Median Spend per Transaction": 59.96, "Median Spend per Customer": 59.99 }, "geometry": { "type": "Point", "coordinates": [ -75.06237, 40.049912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pg9-cyv", "Name": "Mercado Food Market", "Category": "Grocery Stores", "Address": "1859 N Van Pelt St", "LATITUDE": 39.983185, "LONGITUDE": -75.169254, "DATE_RANGE_START": 2024, "Total Visits": 146.0, "Total Visitors": 112.0, "POI_CBG": 421010152004.0, "Median Dwell Time": 5.0, "Total Spend": 1975.0, "Total Transactions": 161.0, "Total Customers": 66.0, "Median Spend per Transaction": 11.65, "Median Spend per Customer": 18.39 }, "geometry": { "type": "Point", "coordinates": [ -75.169254, 39.983185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-c89", "Name": "Pjp Marketplace", "Category": "Grocery Stores", "Address": "537 Adams Ave", "LATITUDE": 40.038428, "LONGITUDE": -75.106684, "DATE_RANGE_START": 2024, "Total Visits": 222.0, "Total Visitors": 222.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 63.0, "Total Spend": 23455.0, "Total Transactions": 725.0, "Total Customers": 424.0, "Median Spend per Transaction": 14.53, "Median Spend per Customer": 29.38 }, "geometry": { "type": "Point", "coordinates": [ -75.106684, 40.038428 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pnz-x5z", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "3300 Aramingo Ave", "LATITUDE": 39.990623, "LONGITUDE": -75.103002, "DATE_RANGE_START": 2024, "Total Visits": 508.0, "Total Visitors": 312.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 25.0, "Total Spend": 23119.0, "Total Transactions": 467.0, "Total Customers": 369.0, "Median Spend per Transaction": 35.68, "Median Spend per Customer": 47.5 }, "geometry": { "type": "Point", "coordinates": [ -75.103002, 39.990623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p85-9j9", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7912 Roosevelt Blvd", "LATITUDE": 40.055386, "LONGITUDE": -75.049698, "DATE_RANGE_START": 2024, "Total Visits": 894.0, "Total Visitors": 588.0, "POI_CBG": 421010334002.0, "Median Dwell Time": 8.0, "Total Spend": 86055.0, "Total Transactions": 4521.0, "Total Customers": 1823.0, "Median Spend per Transaction": 13.93, "Median Spend per Customer": 22.22 }, "geometry": { "type": "Point", "coordinates": [ -75.049698, 40.055386 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-phy-4vz", "Name": "Cafe Tinto", "Category": "Restaurants and Other Eating Places", "Address": "143 E Wyoming Ave", "LATITUDE": 40.02153, "LONGITUDE": -75.122622, "DATE_RANGE_START": 2024, "Total Visits": 240.0, "Total Visitors": 159.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 5.0, "Total Spend": 2197.0, "Total Transactions": 176.0, "Total Customers": 90.0, "Median Spend per Transaction": 9.59, "Median Spend per Customer": 14.72 }, "geometry": { "type": "Point", "coordinates": [ -75.122622, 40.02153 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-p7b-kpv", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "9200 Frankford Ave", "LATITUDE": 40.055425, "LONGITUDE": -75.00482, "DATE_RANGE_START": 2024, "Total Visits": 1418.0, "Total Visitors": 849.0, "POI_CBG": 421010348031.0, "Median Dwell Time": 7.0, "Total Spend": 793.0, "Total Transactions": 42.0, "Total Customers": 32.0, "Median Spend per Transaction": 13.46, "Median Spend per Customer": 9.41 }, "geometry": { "type": "Point", "coordinates": [ -75.00482, 40.055425 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp4-zcq", "Name": "Rodriguez Grocery", "Category": "Grocery Stores", "Address": "2801 N Howard St", "LATITUDE": 39.992691, "LONGITUDE": -75.131414, "DATE_RANGE_START": 2024, "Total Visits": 93.0, "Total Visitors": 72.0, "POI_CBG": 421010176014.0, "Median Dwell Time": 45.0, "Total Spend": 350.0, "Total Transactions": 34.0, "Total Customers": 24.0, "Median Spend per Transaction": 8.56, "Median Spend per Customer": 9.41 }, "geometry": { "type": "Point", "coordinates": [ -75.131414, 39.992691 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p9m-rhq", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "3200 Red Lion Rd # 09", "LATITUDE": 40.079417, "LONGITUDE": -74.992984, "DATE_RANGE_START": 2024, "Total Visits": 1875.0, "Total Visitors": 943.0, "POI_CBG": 421010353021.0, "Median Dwell Time": 6.0, "Total Spend": 58875.0, "Total Transactions": 1676.0, "Total Customers": 615.0, "Median Spend per Transaction": 21.24, "Median Spend per Customer": 38.66 }, "geometry": { "type": "Point", "coordinates": [ -74.992984, 40.079417 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgg-hbk", "Name": "Save-A-Lot", "Category": "Grocery Stores", "Address": "2101 W Lehigh Ave", "LATITUDE": 39.996497, "LONGITUDE": -75.16664, "DATE_RANGE_START": 2024, "Total Visits": 1016.0, "Total Visitors": 816.0, "POI_CBG": 421010173002.0, "Median Dwell Time": 16.0, "Total Spend": 1825.0, "Total Transactions": 146.0, "Total Customers": 42.0, "Median Spend per Transaction": 8.35, "Median Spend per Customer": 22.31 }, "geometry": { "type": "Point", "coordinates": [ -75.16664, 39.996497 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-ph6-p5f", "Name": "New Star Express Pizza", "Category": "Restaurants and Other Eating Places", "Address": "5202 Lancaster Ave", "LATITUDE": 39.977172, "LONGITUDE": -75.227109, "DATE_RANGE_START": 2024, "Total Visits": 146.0, "Total Visitors": 141.0, "POI_CBG": 421010111004.0, "Median Dwell Time": 18.0, "Total Spend": 3481.0, "Total Transactions": 130.0, "Total Customers": 75.0, "Median Spend per Transaction": 22.42, "Median Spend per Customer": 34.8 }, "geometry": { "type": "Point", "coordinates": [ -75.227109, 39.977172 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@628-phy-v9f", "Name": "Liberty", "Category": "Gasoline Stations", "Address": "5302 Rising Sun Ave", "LATITUDE": 40.030432, "LONGITUDE": -75.118462, "DATE_RANGE_START": 2024, "Total Visits": 262.0, "Total Visitors": 167.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 7.0, "Total Spend": 200.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 56.0, "Median Spend per Customer": 56.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118462, 40.030432 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24n-222@628-pmb-c3q", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1032 Pine St", "LATITUDE": 39.944626, "LONGITUDE": -75.159411, "DATE_RANGE_START": 2024, "Total Visits": 686.0, "Total Visitors": 348.0, "POI_CBG": 421010011022.0, "Median Dwell Time": 697.0, "Total Spend": 7410.0, "Total Transactions": 242.0, "Total Customers": 219.0, "Median Spend per Transaction": 26.75, "Median Spend per Customer": 28.06 }, "geometry": { "type": "Point", "coordinates": [ -75.159411, 39.944626 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p8t-yjv", "Name": "Tires Plus", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "800 Franklin Mills Cir", "LATITUDE": 40.093415, "LONGITUDE": -74.961403, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 107.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 7.0, "Total Spend": 2034.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 70.6, "Median Spend per Customer": 70.6 }, "geometry": { "type": "Point", "coordinates": [ -74.961403, 40.093415 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pm8-bx5", "Name": "Popi's Italian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "3120 S 20th St", "LATITUDE": 39.911799, "LONGITUDE": -75.18252, "DATE_RANGE_START": 2024, "Total Visits": 82.0, "Total Visitors": 82.0, "POI_CBG": 421010373002.0, "Median Dwell Time": 110.0, "Total Spend": 295.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 56.44, "Median Spend per Customer": 112.16 }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.911799 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p85-4d9", "Name": "Solly Pizza", "Category": "Restaurants and Other Eating Places", "Address": "8108 Bustleton Ave", "LATITUDE": 40.06186, "LONGITUDE": -75.052063, "DATE_RANGE_START": 2024, "Total Visits": 26.0, "Total Visitors": 26.0, "POI_CBG": 421010336001.0, "Median Dwell Time": null, "Total Spend": 683.0, "Total Transactions": 24.0, "Total Customers": 20.0, "Median Spend per Transaction": 23.41, "Median Spend per Customer": 34.88 }, "geometry": { "type": "Point", "coordinates": [ -75.052063, 40.06186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23s-222@628-p8m-wzf", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "4010 Robbins Ave", "LATITUDE": 40.027331, "LONGITUDE": -75.060048, "DATE_RANGE_START": 2024, "Total Visits": 445.0, "Total Visitors": 423.0, "POI_CBG": 421010320005.0, "Median Dwell Time": 18.0, "Total Spend": 1396.0, "Total Transactions": 33.0, "Total Customers": 30.0, "Median Spend per Transaction": 36.24, "Median Spend per Customer": 36.24 }, "geometry": { "type": "Point", "coordinates": [ -75.060048, 40.027331 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-phd-h89", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "4600 City Ave", "LATITUDE": 40.002558, "LONGITUDE": -75.222575, "DATE_RANGE_START": 2024, "Total Visits": 32.0, "Total Visitors": 25.0, "POI_CBG": 421010121001.0, "Median Dwell Time": 32.0, "Total Spend": 7666.0, "Total Transactions": 648.0, "Total Customers": 390.0, "Median Spend per Transaction": 11.21, "Median Spend per Customer": 12.92 }, "geometry": { "type": "Point", "coordinates": [ -75.222575, 40.002558 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-q9f", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "2524 Aramingo Ave", "LATITUDE": 39.97774, "LONGITUDE": -75.119822, "DATE_RANGE_START": 2024, "Total Visits": 213.0, "Total Visitors": 192.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 7.0, "Total Spend": 1496.0, "Total Transactions": 45.0, "Total Customers": 36.0, "Median Spend per Transaction": 19.43, "Median Spend per Customer": 32.36 }, "geometry": { "type": "Point", "coordinates": [ -75.119822, 39.97774 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p9w-4gk", "Name": "Green Farm", "Category": "Specialty Food Stores", "Address": "10690 Bustleton Ave", "LATITUDE": 40.109872, "LONGITUDE": -75.025591, "DATE_RANGE_START": 2024, "Total Visits": 216.0, "Total Visitors": 163.0, "POI_CBG": 421010357012.0, "Median Dwell Time": 5.0, "Total Spend": 506.0, "Total Transactions": 20.0, "Total Customers": 7.0, "Median Spend per Transaction": 20.5, "Median Spend per Customer": 70.73 }, "geometry": { "type": "Point", "coordinates": [ -75.025591, 40.109872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-223@628-pmf-jjv", "Name": "Kura Revolving Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "1721 Chestnut St", "LATITUDE": 39.951729, "LONGITUDE": -75.169617, "DATE_RANGE_START": 2024, "Total Visits": 50.0, "Total Visitors": 45.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 2.0, "Total Spend": 8034.0, "Total Transactions": 109.0, "Total Customers": 96.0, "Median Spend per Transaction": 61.47, "Median Spend per Customer": 62.64 }, "geometry": { "type": "Point", "coordinates": [ -75.169617, 39.951729 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm8-2kz", "Name": "Exxon Mobil", "Category": "Gasoline Stations", "Address": "3300 Grays Ferry Ave", "LATITUDE": 39.93922, "LONGITUDE": -75.197844, "DATE_RANGE_START": 2024, "Total Visits": 404.0, "Total Visitors": 353.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 3.0, "Total Spend": 29.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 11.09, "Median Spend per Customer": 11.09 }, "geometry": { "type": "Point", "coordinates": [ -75.197844, 39.93922 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-p7w-gc5", "Name": "Verree Express Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7959 Verree Rd", "LATITUDE": 40.07247, "LONGITUDE": -75.076116, "DATE_RANGE_START": 2024, "Total Visits": 399.0, "Total Visitors": 171.0, "POI_CBG": 421010340003.0, "Median Dwell Time": 54.0, "Total Spend": 243.0, "Total Transactions": 13.0, "Total Customers": 8.0, "Median Spend per Transaction": 13.49, "Median Spend per Customer": 15.08 }, "geometry": { "type": "Point", "coordinates": [ -75.076116, 40.07247 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pm8-djv", "Name": "Chickie's & Pete's", "Category": "Restaurants and Other Eating Places", "Address": "1526 Packer Ave", "LATITUDE": 39.911588, "LONGITUDE": -75.17455, "DATE_RANGE_START": 2024, "Total Visits": 2483.0, "Total Visitors": 2284.0, "POI_CBG": 421010373001.0, "Median Dwell Time": 17.0, "Total Spend": 473.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 30.57, "Median Spend per Customer": 36.37 }, "geometry": { "type": "Point", "coordinates": [ -75.17455, 39.911588 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9k-k75", "Name": "Angela's Pizzeria", "Category": "Restaurants and Other Eating Places", "Address": "9918 Roosevelt Blvd", "LATITUDE": 40.0945, "LONGITUDE": -75.018316, "DATE_RANGE_START": 2024, "Total Visits": 133.0, "Total Visitors": 121.0, "POI_CBG": 421010355001.0, "Median Dwell Time": 6.0, "Total Spend": 106.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 19.42 }, "geometry": { "type": "Point", "coordinates": [ -75.018316, 40.0945 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-224@628-p82-swk", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "6640 Oxford Ave", "LATITUDE": 40.050065, "LONGITUDE": -75.086882, "DATE_RANGE_START": 2024, "Total Visits": 1152.0, "Total Visitors": 546.0, "POI_CBG": 421010306001.0, "Median Dwell Time": 9.0, "Total Spend": 56504.0, "Total Transactions": 1788.0, "Total Customers": 803.0, "Median Spend per Transaction": 19.42, "Median Spend per Customer": 32.92 }, "geometry": { "type": "Point", "coordinates": [ -75.086882, 40.050065 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pmf-j5f", "Name": "Vans", "Category": "Shoe Stores", "Address": "1702 Walnut St", "LATITUDE": 39.949842, "LONGITUDE": -75.169276, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 14.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 15636.0, "Total Transactions": 159.0, "Total Customers": 117.0, "Median Spend per Transaction": 65.92, "Median Spend per Customer": 75.0 }, "geometry": { "type": "Point", "coordinates": [ -75.169276, 39.949842 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-grk", "Name": "Sumo Sushi", "Category": "Restaurants and Other Eating Places", "Address": "401 S 13th St", "LATITUDE": 39.945191, "LONGITUDE": -75.162814, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 71.0, "POI_CBG": 421010011014.0, "Median Dwell Time": null, "Total Spend": 973.0, "Total Transactions": 36.0, "Total Customers": 28.0, "Median Spend per Transaction": 22.63, "Median Spend per Customer": 27.0 }, "geometry": { "type": "Point", "coordinates": [ -75.162814, 39.945191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pmb-v75", "Name": "Oishii", "Category": "Restaurants and Other Eating Places", "Address": "138 Chestnut St", "LATITUDE": 39.948099, "LONGITUDE": -75.143818, "DATE_RANGE_START": 2024, "Total Visits": 920.0, "Total Visitors": 703.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 26.0, "Total Spend": 8979.0, "Total Transactions": 448.0, "Total Customers": 378.0, "Median Spend per Transaction": 16.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.143818, 39.948099 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-p8n-cbk", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "6350 Roosevelt Blvd", "LATITUDE": 40.035584, "LONGITUDE": -75.071123, "DATE_RANGE_START": 2024, "Total Visits": 117.0, "Total Visitors": 108.0, "POI_CBG": 421010312002.0, "Median Dwell Time": 11.0, "Total Spend": 1598.0, "Total Transactions": 54.0, "Total Customers": 47.0, "Median Spend per Transaction": 26.98, "Median Spend per Customer": 28.64 }, "geometry": { "type": "Point", "coordinates": [ -75.071123, 40.035584 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phq-vzz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "7434 Ogontz Ave", "LATITUDE": 40.068123, "LONGITUDE": -75.156862, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010263022.0, "Median Dwell Time": 3.0, "Total Spend": 263.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 35.05, "Median Spend per Customer": 35.05 }, "geometry": { "type": "Point", "coordinates": [ -75.156862, 40.068123 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pfy-2c5", "Name": "Javies Beverages", "Category": "Beer, Wine, and Liquor Stores", "Address": "4901 Umbria St", "LATITUDE": 40.034848, "LONGITUDE": -75.234562, "DATE_RANGE_START": 2024, "Total Visits": 242.0, "Total Visitors": 170.0, "POI_CBG": 421010215004.0, "Median Dwell Time": 3.0, "Total Spend": 5651.0, "Total Transactions": 190.0, "Total Customers": 134.0, "Median Spend per Transaction": 24.72, "Median Spend per Customer": 36.82 }, "geometry": { "type": "Point", "coordinates": [ -75.234562, 40.034848 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p86-gtv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "7913 Oxford Ave # 29", "LATITUDE": 40.074901, "LONGITUDE": -75.084189, "DATE_RANGE_START": 2024, "Total Visits": 1215.0, "Total Visitors": 831.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 4.0, "Total Spend": 16737.0, "Total Transactions": 965.0, "Total Customers": 604.0, "Median Spend per Transaction": 11.76, "Median Spend per Customer": 18.53 }, "geometry": { "type": "Point", "coordinates": [ -75.084189, 40.074901 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-p7w-7qz", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "7972 Castor Ave", "LATITUDE": 40.06154, "LONGITUDE": -75.05684, "DATE_RANGE_START": 2024, "Total Visits": 1048.0, "Total Visitors": 808.0, "POI_CBG": 421010336001.0, "Median Dwell Time": 5.0, "Total Spend": 1143.0, "Total Transactions": 49.0, "Total Customers": 43.0, "Median Spend per Transaction": 17.0, "Median Spend per Customer": 22.76 }, "geometry": { "type": "Point", "coordinates": [ -75.05684, 40.06154 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmd-j7q", "Name": "Chart House", "Category": "Restaurants and Other Eating Places", "Address": "555 S Columbus Blvd", "LATITUDE": 39.941147, "LONGITUDE": -75.140478, "DATE_RANGE_START": 2024, "Total Visits": 487.0, "Total Visitors": 487.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 38.0, "Total Spend": 373.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 141.77, "Median Spend per Customer": 141.77 }, "geometry": { "type": "Point", "coordinates": [ -75.140478, 39.941147 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-223@628-pnt-3qz", "Name": "Jr's Place", "Category": "Restaurants and Other Eating Places", "Address": "2663 E Norris St", "LATITUDE": 39.974112, "LONGITUDE": -75.122728, "DATE_RANGE_START": 2024, "Total Visits": 176.0, "Total Visitors": 41.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 95.0, "Total Spend": 532.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 202.0, "Median Spend per Customer": 202.0 }, "geometry": { "type": "Point", "coordinates": [ -75.122728, 39.974112 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pg9-xbk", "Name": "Yellow Front", "Category": "Specialty Food Stores", "Address": "1700 Ridge Ave", "LATITUDE": 39.970311, "LONGITUDE": -75.165314, "DATE_RANGE_START": 2024, "Total Visits": 175.0, "Total Visitors": 111.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 9.0, "Total Spend": 5267.0, "Total Transactions": 317.0, "Total Customers": 121.0, "Median Spend per Transaction": 14.79, "Median Spend per Customer": 22.17 }, "geometry": { "type": "Point", "coordinates": [ -75.165314, 39.970311 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@628-p7x-q4v", "Name": "Tom's Corner Grill & Pizza", "Category": "Restaurants and Other Eating Places", "Address": "7375 Crabtree St", "LATITUDE": 40.04063, "LONGITUDE": -75.043816, "DATE_RANGE_START": 2024, "Total Visits": 47.0, "Total Visitors": 32.0, "POI_CBG": 421010332002.0, "Median Dwell Time": 53.0, "Total Spend": 157.0, "Total Transactions": 12.0, "Total Customers": 9.0, "Median Spend per Transaction": 14.6, "Median Spend per Customer": 16.9 }, "geometry": { "type": "Point", "coordinates": [ -75.043816, 40.04063 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-pmc-tqf", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1675 S Columbus Blvd", "LATITUDE": 39.926372, "LONGITUDE": -75.141603, "DATE_RANGE_START": 2024, "Total Visits": 7276.0, "Total Visitors": 4262.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 26.0, "Total Spend": 4002.0, "Total Transactions": 454.0, "Total Customers": 208.0, "Median Spend per Transaction": 8.22, "Median Spend per Customer": 10.88 }, "geometry": { "type": "Point", "coordinates": [ -75.141603, 39.926372 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-222@628-pmb-5fz", "Name": "Van Leeuwen Artisan Ice Cream", "Category": "Restaurants and Other Eating Places", "Address": "119 S 13th St", "LATITUDE": 39.950007, "LONGITUDE": -75.161725, "DATE_RANGE_START": 2024, "Total Visits": 588.0, "Total Visitors": 467.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 10.0, "Total Spend": 751.0, "Total Transactions": 63.0, "Total Customers": 59.0, "Median Spend per Transaction": 9.5, "Median Spend per Customer": 9.75 }, "geometry": { "type": "Point", "coordinates": [ -75.161725, 39.950007 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24t-222@628-pmb-26k", "Name": "The Bagel Place", "Category": "Restaurants and Other Eating Places", "Address": "404 Queen St", "LATITUDE": 39.937457, "LONGITUDE": -75.15033, "DATE_RANGE_START": 2024, "Total Visits": 340.0, "Total Visitors": 180.0, "POI_CBG": 421010017002.0, "Median Dwell Time": 4.0, "Total Spend": 3435.0, "Total Transactions": 241.0, "Total Customers": 171.0, "Median Spend per Transaction": 12.42, "Median Spend per Customer": 16.56 }, "geometry": { "type": "Point", "coordinates": [ -75.15033, 39.937457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25k-222@628-pm3-vpv", "Name": "Flannel", "Category": "Restaurants and Other Eating Places", "Address": "1819 E Passyunk Ave", "LATITUDE": 39.927131, "LONGITUDE": -75.166347, "DATE_RANGE_START": 2024, "Total Visits": 159.0, "Total Visitors": 130.0, "POI_CBG": 421010028022.0, "Median Dwell Time": 7.0, "Total Spend": 5574.0, "Total Transactions": 107.0, "Total Customers": 95.0, "Median Spend per Transaction": 42.93, "Median Spend per Customer": 53.18 }, "geometry": { "type": "Point", "coordinates": [ -75.166347, 39.927131 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pj9-q4v", "Name": "Sorrento's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1624 W Olney Ave", "LATITUDE": 40.038775, "LONGITUDE": -75.149469, "DATE_RANGE_START": 2024, "Total Visits": 88.0, "Total Visitors": 88.0, "POI_CBG": 421010278003.0, "Median Dwell Time": null, "Total Spend": 2097.0, "Total Transactions": 100.0, "Total Customers": 62.0, "Median Spend per Transaction": 15.64, "Median Spend per Customer": 25.91 }, "geometry": { "type": "Point", "coordinates": [ -75.149469, 40.038775 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-7qz", "Name": "Palm Tree Market", "Category": "Restaurants and Other Eating Places", "Address": "717 N 2nd St", "LATITUDE": 39.962307, "LONGITUDE": -75.140733, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 132.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 5.0, "Total Spend": 99.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 18.69, "Median Spend per Customer": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.140733, 39.962307 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pgj-nqz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "532 W Lehigh Ave # 46", "LATITUDE": 39.99207, "LONGITUDE": -75.141836, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 217.0, "POI_CBG": 421010164001.0, "Median Dwell Time": 4.0, "Total Spend": 4107.0, "Total Transactions": 444.0, "Total Customers": 237.0, "Median Spend per Transaction": 7.74, "Median Spend per Customer": 10.27 }, "geometry": { "type": "Point", "coordinates": [ -75.141836, 39.99207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-phy-6x5", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5001 Rising Sun Ave", "LATITUDE": 40.02541, "LONGITUDE": -75.121751, "DATE_RANGE_START": 2024, "Total Visits": 409.0, "Total Visitors": 175.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 4.0, "Total Spend": 5789.0, "Total Transactions": 757.0, "Total Customers": 309.0, "Median Spend per Transaction": 6.39, "Median Spend per Customer": 10.32 }, "geometry": { "type": "Point", "coordinates": [ -75.121751, 40.02541 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pgb-4jv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "490 N Broad St", "LATITUDE": 39.962356, "LONGITUDE": -75.16195, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 3.0, "Total Spend": 2837.0, "Total Transactions": 317.0, "Total Customers": 199.0, "Median Spend per Transaction": 8.24, "Median Spend per Customer": 10.32 }, "geometry": { "type": "Point", "coordinates": [ -75.16195, 39.962356 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmf-mp9", "Name": "Concourse Dance Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1635 Market St", "LATITUDE": 39.95318, "LONGITUDE": -75.167893, "DATE_RANGE_START": 2024, "Total Visits": 786.0, "Total Visitors": 552.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 102.0, "Total Spend": 17718.0, "Total Transactions": 852.0, "Total Customers": 405.0, "Median Spend per Transaction": 15.2, "Median Spend per Customer": 32.55 }, "geometry": { "type": "Point", "coordinates": [ -75.167893, 39.95318 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p74-xt9", "Name": "Taproom", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "7701 Walker St", "LATITUDE": 40.036887, "LONGITUDE": -75.031645, "DATE_RANGE_START": 2024, "Total Visits": 132.0, "Total Visitors": 132.0, "POI_CBG": 421010329004.0, "Median Dwell Time": 70.0, "Total Spend": 209.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 44.38, "Median Spend per Customer": 79.3 }, "geometry": { "type": "Point", "coordinates": [ -75.031645, 40.036887 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-php-435", "Name": "Royal's Restaurants", "Category": "Restaurants and Other Eating Places", "Address": "7802 Limekiln Pike", "LATITUDE": 40.071952, "LONGITUDE": -75.161451, "DATE_RANGE_START": 2024, "Total Visits": 130.0, "Total Visitors": 130.0, "POI_CBG": 421010263013.0, "Median Dwell Time": 7.0, "Total Spend": 894.0, "Total Transactions": 25.0, "Total Customers": 20.0, "Median Spend per Transaction": 34.91, "Median Spend per Customer": 39.94 }, "geometry": { "type": "Point", "coordinates": [ -75.161451, 40.071952 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-pmf-hnq", "Name": "Good Day Deli", "Category": "Restaurants and Other Eating Places", "Address": "37 S 20th St", "LATITUDE": 39.952441, "LONGITUDE": -75.173275, "DATE_RANGE_START": 2024, "Total Visits": 288.0, "Total Visitors": 255.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 1855.0, "Total Transactions": 129.0, "Total Customers": 76.0, "Median Spend per Transaction": 13.34, "Median Spend per Customer": 17.54 }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.952441 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pjg-j5f", "Name": "Acme Markets", "Category": "Grocery Stores", "Address": "7700 Crittenden St", "LATITUDE": 40.071186, "LONGITUDE": -75.194058, "DATE_RANGE_START": 2024, "Total Visits": 1685.0, "Total Visitors": 760.0, "POI_CBG": 421010257001.0, "Median Dwell Time": 12.0, "Total Spend": 132299.0, "Total Transactions": 3562.0, "Total Customers": 1336.0, "Median Spend per Transaction": 23.97, "Median Spend per Customer": 44.46 }, "geometry": { "type": "Point", "coordinates": [ -75.194058, 40.071186 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "232-222@628-pm7-nwk", "Name": "Point Crab's & Seafood", "Category": "Specialty Food Stores", "Address": "1324 S 21st St", "LATITUDE": 39.934951, "LONGITUDE": -75.1794, "DATE_RANGE_START": 2024, "Total Visits": 53.0, "Total Visitors": 53.0, "POI_CBG": 421010031006.0, "Median Dwell Time": 1.0, "Total Spend": 402.0, "Total Transactions": 16.0, "Total Customers": 13.0, "Median Spend per Transaction": 24.33, "Median Spend per Customer": 28.21 }, "geometry": { "type": "Point", "coordinates": [ -75.1794, 39.934951 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwg-2hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6900 Lindbergh Blvd", "LATITUDE": 39.910912, "LONGITUDE": -75.229452, "DATE_RANGE_START": 2024, "Total Visits": 848.0, "Total Visitors": 558.0, "POI_CBG": 421010061001.0, "Median Dwell Time": 9.0, "Total Spend": 2274.0, "Total Transactions": 142.0, "Total Customers": 90.0, "Median Spend per Transaction": 11.55, "Median Spend per Customer": 14.66 }, "geometry": { "type": "Point", "coordinates": [ -75.229452, 39.910912 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23b-222@628-phy-7bk", "Name": "Front Street Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4823 N Front St", "LATITUDE": 40.023755, "LONGITUDE": -75.123669, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010288003.0, "Median Dwell Time": 1.0, "Total Spend": 158.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 33.16, "Median Spend per Customer": 33.16 }, "geometry": { "type": "Point", "coordinates": [ -75.123669, 40.023755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@63s-dvr-7bk", "Name": "Rainbow Shops", "Category": "Clothing Stores", "Address": "6309 Woodland Ave", "LATITUDE": 39.927395, "LONGITUDE": -75.232174, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010066004.0, "Median Dwell Time": 26.0, "Total Spend": 1020.0, "Total Transactions": 29.0, "Total Customers": 22.0, "Median Spend per Transaction": 31.93, "Median Spend per Customer": 46.12 }, "geometry": { "type": "Point", "coordinates": [ -75.232174, 39.927395 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pj6-k4v", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6201 N Front St", "LATITUDE": 40.045021, "LONGITUDE": -75.117483, "DATE_RANGE_START": 2024, "Total Visits": 4471.0, "Total Visitors": 2998.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 19.0, "Total Spend": 256.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 16.71, "Median Spend per Customer": 16.71 }, "geometry": { "type": "Point", "coordinates": [ -75.117483, 40.045021 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "233-222@628-pm4-3t9", "Name": "A Lin Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "1942 S 9th St", "LATITUDE": 39.924617, "LONGITUDE": -75.161194, "DATE_RANGE_START": 2024, "Total Visits": 122.0, "Total Visitors": 122.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 1.0, "Total Spend": 451.0, "Total Transactions": 17.0, "Total Customers": 12.0, "Median Spend per Transaction": 20.8, "Median Spend per Customer": 31.3 }, "geometry": { "type": "Point", "coordinates": [ -75.161194, 39.924617 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pgb-3kf", "Name": "Sheraton Hotels & Resorts", "Category": "Traveler Accommodation", "Address": "201 N 17th St", "LATITUDE": 39.957083, "LONGITUDE": -75.167351, "DATE_RANGE_START": 2024, "Total Visits": 2064.0, "Total Visitors": 1251.0, "POI_CBG": 421010003001.0, "Median Dwell Time": 296.0, "Total Spend": 37.0, "Total Transactions": 5.0, "Total Customers": 3.0, "Median Spend per Transaction": 7.0, "Median Spend per Customer": 14.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167351, 39.957083 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-fcq", "Name": "Varga Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "941 Spruce St", "LATITUDE": 39.946229, "LONGITUDE": -75.157746, "DATE_RANGE_START": 2024, "Total Visits": 250.0, "Total Visitors": 197.0, "POI_CBG": 421010009022.0, "Median Dwell Time": 1.0, "Total Spend": 5238.0, "Total Transactions": 100.0, "Total Customers": 82.0, "Median Spend per Transaction": 41.82, "Median Spend per Customer": 51.6 }, "geometry": { "type": "Point", "coordinates": [ -75.157746, 39.946229 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-p7v-ghq", "Name": "Asia Express", "Category": "Restaurants and Other Eating Places", "Address": "7246 Castor Ave", "LATITUDE": 40.050928, "LONGITUDE": -75.066726, "DATE_RANGE_START": 2024, "Total Visits": 169.0, "Total Visitors": 155.0, "POI_CBG": 421010310001.0, "Median Dwell Time": 7.0, "Total Spend": 383.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 28.89, "Median Spend per Customer": 28.89 }, "geometry": { "type": "Point", "coordinates": [ -75.066726, 40.050928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p7z-7kf", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "7350 Oxford Ave", "LATITUDE": 40.062599, "LONGITUDE": -75.085048, "DATE_RANGE_START": 2024, "Total Visits": 145.0, "Total Visitors": 145.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 5.0, "Total Spend": 3663.0, "Total Transactions": 205.0, "Total Customers": 167.0, "Median Spend per Transaction": 14.3, "Median Spend per Customer": 16.72 }, "geometry": { "type": "Point", "coordinates": [ -75.085048, 40.062599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-ph5-rkz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "6114 Lancaster Ave", "LATITUDE": 39.98323, "LONGITUDE": -75.243832, "DATE_RANGE_START": 2024, "Total Visits": 219.0, "Total Visitors": 219.0, "POI_CBG": 421010114006.0, "Median Dwell Time": 10.0, "Total Spend": 2282.0, "Total Transactions": 136.0, "Total Customers": 117.0, "Median Spend per Transaction": 13.22, "Median Spend per Customer": 14.68 }, "geometry": { "type": "Point", "coordinates": [ -75.243832, 39.98323 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-227@628-pgh-h3q", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "2800 Fox St", "LATITUDE": 40.00873, "LONGITUDE": -75.176539, "DATE_RANGE_START": 2024, "Total Visits": 762.0, "Total Visitors": 353.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 71.0, "Total Spend": 10053.0, "Total Transactions": 600.0, "Total Customers": 421.0, "Median Spend per Transaction": 15.17, "Median Spend per Customer": 16.64 }, "geometry": { "type": "Point", "coordinates": [ -75.176539, 40.00873 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-tvz", "Name": "Esposito's Porchetta", "Category": "Special Food Services", "Address": "1627 S 10th St", "LATITUDE": 39.928698, "LONGITUDE": -75.16155, "DATE_RANGE_START": 2024, "Total Visits": 37.0, "Total Visitors": 28.0, "POI_CBG": 421010028023.0, "Median Dwell Time": 321.0, "Total Spend": 456.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 41.0, "Median Spend per Customer": 173.0 }, "geometry": { "type": "Point", "coordinates": [ -75.16155, 39.928698 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p85-k75", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "2550 Welsh Rd", "LATITUDE": 40.0722, "LONGITUDE": -75.033623, "DATE_RANGE_START": 2024, "Total Visits": 488.0, "Total Visitors": 436.0, "POI_CBG": 421010347013.0, "Median Dwell Time": 3.0, "Total Spend": 6525.0, "Total Transactions": 504.0, "Total Customers": 305.0, "Median Spend per Transaction": 12.98, "Median Spend per Customer": 14.87 }, "geometry": { "type": "Point", "coordinates": [ -75.033623, 40.0722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22j-24z@628-pm9-td9", "Name": "Jefferson Atrium Cafeteria", "Category": "Restaurants and Other Eating Places", "Address": "111 S 11th St", "LATITUDE": 39.950074, "LONGITUDE": -75.158524, "DATE_RANGE_START": 2024, "Total Visits": 10001.0, "Total Visitors": 4760.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 127.0, "Total Spend": 922.0, "Total Transactions": 230.0, "Total Customers": 86.0, "Median Spend per Transaction": 4.27, "Median Spend per Customer": 6.38 }, "geometry": { "type": "Point", "coordinates": [ -75.158524, 39.950074 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pgh-6kz", "Name": "Time Out Sports Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "3709 Schuyler St", "LATITUDE": 40.011621, "LONGITUDE": -75.164422, "DATE_RANGE_START": 2024, "Total Visits": 109.0, "Total Visitors": 86.0, "POI_CBG": 421010205002.0, "Median Dwell Time": 38.0, "Total Spend": 3293.0, "Total Transactions": 74.0, "Total Customers": 39.0, "Median Spend per Transaction": 37.84, "Median Spend per Customer": 55.5 }, "geometry": { "type": "Point", "coordinates": [ -75.164422, 40.011621 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pgy-kj9", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "701 E Cathedral Rd Ste 7", "LATITUDE": 40.062838, "LONGITUDE": -75.23752, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 249.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 2.0, "Total Spend": 296.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.23752, 40.062838 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-8vz", "Name": "Taco Bell", "Category": "Restaurants and Other Eating Places", "Address": "1037 Chestnut St", "LATITUDE": 39.95033, "LONGITUDE": -75.158429, "DATE_RANGE_START": 2024, "Total Visits": 1328.0, "Total Visitors": 966.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 15000.0, "Total Transactions": 895.0, "Total Customers": 586.0, "Median Spend per Transaction": 13.79, "Median Spend per Customer": 14.44 }, "geometry": { "type": "Point", "coordinates": [ -75.158429, 39.95033 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "235-222@628-pmb-66k", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "1200 Walnut St Ste B", "LATITUDE": 39.948755, "LONGITUDE": -75.160687, "DATE_RANGE_START": 2024, "Total Visits": 22.0, "Total Visitors": 17.0, "POI_CBG": 421010009011.0, "Median Dwell Time": 2.0, "Total Spend": 13196.0, "Total Transactions": 941.0, "Total Customers": 615.0, "Median Spend per Transaction": 13.61, "Median Spend per Customer": 15.61 }, "geometry": { "type": "Point", "coordinates": [ -75.160687, 39.948755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "238-223@628-pp5-jgk", "Name": "Tin Can Bar", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "2537 E Somerset St", "LATITUDE": 39.981701, "LONGITUDE": -75.113705, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 307.0, "POI_CBG": 421010180013.0, "Median Dwell Time": 14.0, "Total Spend": 7990.0, "Total Transactions": 169.0, "Total Customers": 97.0, "Median Spend per Transaction": 42.27, "Median Spend per Customer": 52.47 }, "geometry": { "type": "Point", "coordinates": [ -75.113705, 39.981701 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pft-ygk", "Name": "Fiesta Pizza II", "Category": "Restaurants and Other Eating Places", "Address": "600 Jamestown St", "LATITUDE": 40.030087, "LONGITUDE": -75.206412, "DATE_RANGE_START": 2024, "Total Visits": 55.0, "Total Visitors": 55.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 17.0, "Total Spend": 2031.0, "Total Transactions": 83.0, "Total Customers": 65.0, "Median Spend per Transaction": 20.52, "Median Spend per Customer": 23.22 }, "geometry": { "type": "Point", "coordinates": [ -75.206412, 40.030087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-ph6-6c5", "Name": "Overbrook Pizza Shop", "Category": "Restaurants and Other Eating Places", "Address": "2099 N 63rd St", "LATITUDE": 39.988308, "LONGITUDE": -75.249562, "DATE_RANGE_START": 2024, "Total Visits": 115.0, "Total Visitors": 115.0, "POI_CBG": 421010375001.0, "Median Dwell Time": 3.0, "Total Spend": 4336.0, "Total Transactions": 169.0, "Total Customers": 117.0, "Median Spend per Transaction": 21.93, "Median Spend per Customer": 28.78 }, "geometry": { "type": "Point", "coordinates": [ -75.249562, 39.988308 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pmb-66k", "Name": "Xiandu Thai", "Category": "Restaurants and Other Eating Places", "Address": "1119 Walnut St", "LATITUDE": 39.949056, "LONGITUDE": -75.15988, "DATE_RANGE_START": 2024, "Total Visits": 2542.0, "Total Visitors": 1748.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 4.0, "Total Spend": 4536.0, "Total Transactions": 93.0, "Total Customers": 74.0, "Median Spend per Transaction": 48.78, "Median Spend per Customer": 57.52 }, "geometry": { "type": "Point", "coordinates": [ -75.15988, 39.949056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pnw-p9z", "Name": "Barcade", "Category": "Restaurants and Other Eating Places", "Address": "1114 Frankford Ave", "LATITUDE": 39.96746, "LONGITUDE": -75.134594, "DATE_RANGE_START": 2024, "Total Visits": 615.0, "Total Visitors": 490.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 32.0, "Total Spend": 940.0, "Total Transactions": 30.0, "Total Customers": 26.0, "Median Spend per Transaction": 23.8, "Median Spend per Customer": 23.8 }, "geometry": { "type": "Point", "coordinates": [ -75.134594, 39.96746 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgj-gkz", "Name": "Wendy's", "Category": "Restaurants and Other Eating Places", "Address": "1708 N Broad St", "LATITUDE": 39.979202, "LONGITUDE": -75.158278, "DATE_RANGE_START": 2024, "Total Visits": 1080.0, "Total Visitors": 528.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 97.0, "Total Spend": 50.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 9.12, "Median Spend per Customer": 11.98 }, "geometry": { "type": "Point", "coordinates": [ -75.158278, 39.979202 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22x-222@628-pjf-kvf", "Name": "Hideaway Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "8232 Germantown Ave", "LATITUDE": 40.076825, "LONGITUDE": -75.208128, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 115.0, "POI_CBG": 421010385002.0, "Median Dwell Time": 3.0, "Total Spend": 1999.0, "Total Transactions": 42.0, "Total Customers": 38.0, "Median Spend per Transaction": 32.39, "Median Spend per Customer": 32.39 }, "geometry": { "type": "Point", "coordinates": [ -75.208128, 40.076825 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-pnx-4jv", "Name": "Museum Deli", "Category": "Restaurants and Other Eating Places", "Address": "333 Spring Garden St", "LATITUDE": 39.961429, "LONGITUDE": -75.144435, "DATE_RANGE_START": 2024, "Total Visits": 154.0, "Total Visitors": 109.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 2.0, "Total Spend": 3185.0, "Total Transactions": 203.0, "Total Customers": 138.0, "Median Spend per Transaction": 13.83, "Median Spend per Customer": 15.93 }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.961429 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm6-j5f", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "56 Snyder Ave Spc 25", "LATITUDE": 39.920405, "LONGITUDE": -75.146687, "DATE_RANGE_START": 2024, "Total Visits": 433.0, "Total Visitors": 379.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 6.0, "Total Spend": 756.0, "Total Transactions": 33.0, "Total Customers": 28.0, "Median Spend per Transaction": 12.15, "Median Spend per Customer": 12.15 }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 39.920405 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmf-6p9", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "3400 Spruce St", "LATITUDE": 39.950048, "LONGITUDE": -75.193086, "DATE_RANGE_START": 2024, "Total Visits": 41.0, "Total Visitors": 21.0, "POI_CBG": 421010369002.0, "Median Dwell Time": 7.0, "Total Spend": 4986.0, "Total Transactions": 632.0, "Total Customers": 254.0, "Median Spend per Transaction": 6.6, "Median Spend per Customer": 12.58 }, "geometry": { "type": "Point", "coordinates": [ -75.193086, 39.950048 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-227@628-ph6-pd9", "Name": "Beauty Point", "Category": "Health and Personal Care Stores", "Address": "5610 Lancaster Ave Ste 600", "LATITUDE": 39.980056, "LONGITUDE": -75.235035, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010113001.0, "Median Dwell Time": 5.0, "Total Spend": 2282.0, "Total Transactions": 76.0, "Total Customers": 66.0, "Median Spend per Transaction": 21.16, "Median Spend per Customer": 30.21 }, "geometry": { "type": "Point", "coordinates": [ -75.235035, 39.980056 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "249-222@628-pp4-zfz", "Name": "Philadelphia Pharmacy", "Category": "Health and Personal Care Stores", "Address": "101 E Lehigh Ave # 03", "LATITUDE": 39.991178, "LONGITUDE": -75.130621, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010176013.0, "Median Dwell Time": 41.0, "Total Spend": 82.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 5.85, "Median Spend per Customer": 5.85 }, "geometry": { "type": "Point", "coordinates": [ -75.130621, 39.991178 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmf-j5f", "Name": "Spice Finch", "Category": "Restaurants and Other Eating Places", "Address": "220 S 17th St", "LATITUDE": 39.949305, "LONGITUDE": -75.169358, "DATE_RANGE_START": 2024, "Total Visits": 1274.0, "Total Visitors": 898.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 173.0, "Total Spend": 6455.0, "Total Transactions": 67.0, "Total Customers": 59.0, "Median Spend per Transaction": 66.98, "Median Spend per Customer": 78.01 }, "geometry": { "type": "Point", "coordinates": [ -75.169358, 39.949305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm7-rc5", "Name": "Wolf Street Pizza & Pasta House", "Category": "Restaurants and Other Eating Places", "Address": "2135 Wolf St", "LATITUDE": 39.923579, "LONGITUDE": -75.182546, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 103.0, "POI_CBG": 421010037022.0, "Median Dwell Time": 5.0, "Total Spend": 800.0, "Total Transactions": 28.0, "Total Customers": 25.0, "Median Spend per Transaction": 26.15, "Median Spend per Customer": 26.15 }, "geometry": { "type": "Point", "coordinates": [ -75.182546, 39.923579 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-p8d-kfz", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "1801 Torresdale Ave", "LATITUDE": 40.006301, "LONGITUDE": -75.094615, "DATE_RANGE_START": 2024, "Total Visits": 958.0, "Total Visitors": 765.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 3.0, "Total Spend": 10034.0, "Total Transactions": 768.0, "Total Customers": 413.0, "Median Spend per Transaction": 11.64, "Median Spend per Customer": 16.28 }, "geometry": { "type": "Point", "coordinates": [ -75.094615, 40.006301 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pj3-x89", "Name": "The Flavor Spot", "Category": "Restaurants and Other Eating Places", "Address": "5013 N Broad St", "LATITUDE": 40.029498, "LONGITUDE": -75.146435, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010283007.0, "Median Dwell Time": null, "Total Spend": 1208.0, "Total Transactions": 47.0, "Total Customers": 36.0, "Median Spend per Transaction": 21.36, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.146435, 40.029498 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-p9k-dvz", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2054 Red Lion Rd", "LATITUDE": 40.09959, "LONGITUDE": -75.024533, "DATE_RANGE_START": 2024, "Total Visits": 196.0, "Total Visitors": 142.0, "POI_CBG": 421010355003.0, "Median Dwell Time": 10.0, "Total Spend": 1235.0, "Total Transactions": 137.0, "Total Customers": 95.0, "Median Spend per Transaction": 5.5, "Median Spend per Customer": 7.65 }, "geometry": { "type": "Point", "coordinates": [ -75.024533, 40.09959 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p84-2rk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "9377 Krewstown Rd", "LATITUDE": 40.087578, "LONGITUDE": -75.044247, "DATE_RANGE_START": 2024, "Total Visits": 1630.0, "Total Visitors": 1201.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 5.0, "Total Spend": 78213.0, "Total Transactions": 4492.0, "Total Customers": 1655.0, "Median Spend per Transaction": 12.18, "Median Spend per Customer": 24.17 }, "geometry": { "type": "Point", "coordinates": [ -75.044247, 40.087578 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-222@628-pj5-qpv", "Name": "Sunrise Pizza", "Category": "Restaurants and Other Eating Places", "Address": "528 W Butler St", "LATITUDE": 40.009015, "LONGITUDE": -75.137692, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 36.0, "POI_CBG": 421010198006.0, "Median Dwell Time": null, "Total Spend": 760.0, "Total Transactions": 37.0, "Total Customers": 20.0, "Median Spend per Transaction": 15.93, "Median Spend per Customer": 34.01 }, "geometry": { "type": "Point", "coordinates": [ -75.137692, 40.009015 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-223@628-pj3-wrk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St", "LATITUDE": 40.024675, "LONGITUDE": -75.147531, "DATE_RANGE_START": 2024, "Total Visits": 11.0, "Total Visitors": 7.0, "POI_CBG": 421010283003.0, "Median Dwell Time": 5.0, "Total Spend": 2736.0, "Total Transactions": 362.0, "Total Customers": 196.0, "Median Spend per Transaction": 6.55, "Median Spend per Customer": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -75.147531, 40.024675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-yjv", "Name": "Prince Tea House", "Category": "Restaurants and Other Eating Places", "Address": "203 N 9th St", "LATITUDE": 39.955371, "LONGITUDE": -75.154071, "DATE_RANGE_START": 2024, "Total Visits": 303.0, "Total Visitors": 303.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 1.0, "Total Spend": 2468.0, "Total Transactions": 57.0, "Total Customers": 55.0, "Median Spend per Transaction": 38.43, "Median Spend per Customer": 38.03 }, "geometry": { "type": "Point", "coordinates": [ -75.154071, 39.955371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8d-ghq", "Name": "Royal Farms", "Category": "Grocery Stores", "Address": "2501 Church St", "LATITUDE": 40.002471, "LONGITUDE": -75.081243, "DATE_RANGE_START": 2024, "Total Visits": 1160.0, "Total Visitors": 637.0, "POI_CBG": 421010380001.0, "Median Dwell Time": 4.0, "Total Spend": 38462.0, "Total Transactions": 2037.0, "Total Customers": 895.0, "Median Spend per Transaction": 12.69, "Median Spend per Customer": 21.38 }, "geometry": { "type": "Point", "coordinates": [ -75.081243, 40.002471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@63s-dvw-qj9", "Name": "Mack Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "6120 Vine St", "LATITUDE": 39.966784, "LONGITUDE": -75.242585, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 184.0, "POI_CBG": 421010096005.0, "Median Dwell Time": 7.0, "Total Spend": 2345.0, "Total Transactions": 132.0, "Total Customers": 71.0, "Median Spend per Transaction": 12.48, "Median Spend per Customer": 25.22 }, "geometry": { "type": "Point", "coordinates": [ -75.242585, 39.966784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp2-rp9", "Name": "Five Below", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2200 Wheatsheaf Ln Ste E6", "LATITUDE": 39.999031, "LONGITUDE": -75.093539, "DATE_RANGE_START": 2024, "Total Visits": 910.0, "Total Visitors": 694.0, "POI_CBG": 421010382003.0, "Median Dwell Time": 11.0, "Total Spend": 12552.0, "Total Transactions": 536.0, "Total Customers": 477.0, "Median Spend per Transaction": 17.23, "Median Spend per Customer": 18.19 }, "geometry": { "type": "Point", "coordinates": [ -75.093539, 39.999031 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22g@628-pmf-j7q", "Name": "Smokin Stogies N Stuff", "Category": "Other Miscellaneous Store Retailers", "Address": "102 S 18th St", "LATITUDE": 39.951529, "LONGITUDE": -75.170525, "DATE_RANGE_START": 2024, "Total Visits": 237.0, "Total Visitors": 230.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 990.0, "Total Transactions": 41.0, "Total Customers": 26.0, "Median Spend per Transaction": 17.88, "Median Spend per Customer": 34.1 }, "geometry": { "type": "Point", "coordinates": [ -75.170525, 39.951529 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-223@628-pm4-xkf", "Name": "Sprouts Farmers Market", "Category": "Grocery Stores", "Address": "1000 S Broad St", "LATITUDE": 39.938995, "LONGITUDE": -75.167658, "DATE_RANGE_START": 2024, "Total Visits": 866.0, "Total Visitors": 432.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 16.0, "Total Spend": 327261.0, "Total Transactions": 9085.0, "Total Customers": 4260.0, "Median Spend per Transaction": 21.97, "Median Spend per Customer": 41.0 }, "geometry": { "type": "Point", "coordinates": [ -75.167658, 39.938995 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pm6-jgk", "Name": "John's Roast Pork", "Category": "Restaurants and Other Eating Places", "Address": "14 Snyder Ave", "LATITUDE": 39.92105, "LONGITUDE": -75.145001, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 190.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 10.0, "Total Spend": 6691.0, "Total Transactions": 229.0, "Total Customers": 217.0, "Median Spend per Transaction": 23.79, "Median Spend per Customer": 25.65 }, "geometry": { "type": "Point", "coordinates": [ -75.145001, 39.92105 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "253-222@628-pp2-4jv", "Name": "M & M Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "2736 E Allegheny Ave", "LATITUDE": 39.983129, "LONGITUDE": -75.101954, "DATE_RANGE_START": 2024, "Total Visits": 112.0, "Total Visitors": 112.0, "POI_CBG": 421010180022.0, "Median Dwell Time": 16.0, "Total Spend": 941.0, "Total Transactions": 47.0, "Total Customers": 12.0, "Median Spend per Transaction": 15.5, "Median Spend per Customer": 71.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101954, 39.983129 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pj3-wrk", "Name": "Burger King", "Category": "Restaurants and Other Eating Places", "Address": "4700 N Broad St # 08", "LATITUDE": 40.024792, "LONGITUDE": -75.148251, "DATE_RANGE_START": 2024, "Total Visits": 358.0, "Total Visitors": 321.0, "POI_CBG": 421010281003.0, "Median Dwell Time": 5.0, "Total Spend": 4498.0, "Total Transactions": 348.0, "Total Customers": 271.0, "Median Spend per Transaction": 11.68, "Median Spend per Customer": 12.95 }, "geometry": { "type": "Point", "coordinates": [ -75.148251, 40.024792 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmb-87q", "Name": "Kabuki Sushi", "Category": "Restaurants and Other Eating Places", "Address": "45 N 13th St", "LATITUDE": 39.953616, "LONGITUDE": -75.160916, "DATE_RANGE_START": 2024, "Total Visits": 254.0, "Total Visitors": 234.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 2.0, "Total Spend": 952.0, "Total Transactions": 33.0, "Total Customers": 30.0, "Median Spend per Transaction": 20.23, "Median Spend per Customer": 28.62 }, "geometry": { "type": "Point", "coordinates": [ -75.160916, 39.953616 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "25h-222@628-pj5-hqz", "Name": "CLo", "Category": "Shoe Stores", "Address": "3511 N Lee St", "LATITUDE": 40.003321, "LONGITUDE": -75.127455, "DATE_RANGE_START": 2024, "Total Visits": 38.0, "Total Visitors": 38.0, "POI_CBG": 421010195022.0, "Median Dwell Time": 1.0, "Total Spend": 67.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 25.47, "Median Spend per Customer": 25.47 }, "geometry": { "type": "Point", "coordinates": [ -75.127455, 40.003321 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pnx-p5f", "Name": "Beaty American", "Category": "Furniture Stores", "Address": "1800 N American St Unit G", "LATITUDE": 39.978949, "LONGITUDE": -75.139763, "DATE_RANGE_START": 2024, "Total Visits": 219.0, "Total Visitors": 201.0, "POI_CBG": 421010156001.0, "Median Dwell Time": 29.0, "Total Spend": 624.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 101.52, "Median Spend per Customer": 237.06 }, "geometry": { "type": "Point", "coordinates": [ -75.139763, 39.978949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-p7v-ndv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "1115 Cottman Ave", "LATITUDE": 40.060452, "LONGITUDE": -75.08143, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 5.0, "POI_CBG": 421010338005.0, "Median Dwell Time": 4.0, "Total Spend": 116.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 44.05 }, "geometry": { "type": "Point", "coordinates": [ -75.08143, 40.060452 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pfw-tgk", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "5051 Wissahickon Ave", "LATITUDE": 40.019938, "LONGITUDE": -75.174444, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010243002.0, "Median Dwell Time": 4.0, "Total Spend": 1488.0, "Total Transactions": 161.0, "Total Customers": 103.0, "Median Spend per Transaction": 7.09, "Median Spend per Customer": 8.73 }, "geometry": { "type": "Point", "coordinates": [ -75.174444, 40.019938 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-228@628-pm9-tgk", "Name": "Wawa", "Category": "Grocery Stores", "Address": "912 Walnut St # 916", "LATITUDE": 39.948238, "LONGITUDE": -75.156641, "DATE_RANGE_START": 2024, "Total Visits": 777.0, "Total Visitors": 607.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 5.0, "Total Spend": 8931.0, "Total Transactions": 965.0, "Total Customers": 661.0, "Median Spend per Transaction": 7.79, "Median Spend per Customer": 10.15 }, "geometry": { "type": "Point", "coordinates": [ -75.156641, 39.948238 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-sqz", "Name": "Apple Retail Store", "Category": "Electronics and Appliance Stores", "Address": "1607 Walnut St", "LATITUDE": 39.949983, "LONGITUDE": -75.167905, "DATE_RANGE_START": 2024, "Total Visits": 814.0, "Total Visitors": 673.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 5.0, "Total Spend": 103090.0, "Total Transactions": 463.0, "Total Customers": 403.0, "Median Spend per Transaction": 73.44, "Median Spend per Customer": 85.32 }, "geometry": { "type": "Point", "coordinates": [ -75.167905, 39.949983 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pm9-vcq", "Name": "Talula's Garden", "Category": "Restaurants and Other Eating Places", "Address": "210 W Washington Sq", "LATITUDE": 39.947258, "LONGITUDE": -75.153629, "DATE_RANGE_START": 2024, "Total Visits": 764.0, "Total Visitors": 558.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 9.0, "Total Spend": 38251.0, "Total Transactions": 864.0, "Total Customers": 556.0, "Median Spend per Transaction": 17.01, "Median Spend per Customer": 28.83 }, "geometry": { "type": "Point", "coordinates": [ -75.153629, 39.947258 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-wx5", "Name": "Sam's Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1000 Franklin Mills Cir", "LATITUDE": 40.093002, "LONGITUDE": -74.958736, "DATE_RANGE_START": 2024, "Total Visits": 3938.0, "Total Visitors": 2291.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 18.0, "Total Spend": 271273.0, "Total Transactions": 4146.0, "Total Customers": 1812.0, "Median Spend per Transaction": 45.03, "Median Spend per Customer": 92.37 }, "geometry": { "type": "Point", "coordinates": [ -74.958736, 40.093002 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-226@628-pm4-x89", "Name": "Target", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "1020 S Broad St", "LATITUDE": 39.938304, "LONGITUDE": -75.168038, "DATE_RANGE_START": 2024, "Total Visits": 972.0, "Total Visitors": 721.0, "POI_CBG": 421010019003.0, "Median Dwell Time": 5.0, "Total Spend": 11175.0, "Total Transactions": 517.0, "Total Customers": 369.0, "Median Spend per Transaction": 17.4, "Median Spend per Customer": 24.97 }, "geometry": { "type": "Point", "coordinates": [ -75.168038, 39.938304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-23b@63s-dw4-rzf", "Name": "Bar Symon", "Category": "Restaurants and Other Eating Places", "Address": "8000 Essington Ave", "LATITUDE": 39.89519, "LONGITUDE": -75.22796, "DATE_RANGE_START": 2024, "Total Visits": 506.0, "Total Visitors": 506.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 21.0, "Total Spend": 246.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 46.39, "Median Spend per Customer": 46.39 }, "geometry": { "type": "Point", "coordinates": [ -75.22796, 39.89519 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-p9p-qxq", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "9990 Bustleton Ave", "LATITUDE": 40.102641, "LONGITUDE": -75.029658, "DATE_RANGE_START": 2024, "Total Visits": 248.0, "Total Visitors": 221.0, "POI_CBG": 421010356014.0, "Median Dwell Time": 3.0, "Total Spend": 2528.0, "Total Transactions": 22.0, "Total Customers": 21.0, "Median Spend per Transaction": 25.91, "Median Spend per Customer": 33.46 }, "geometry": { "type": "Point", "coordinates": [ -75.029658, 40.102641 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22b-222@628-pnx-4jv", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "329 Spring Garden St", "LATITUDE": 39.961412, "LONGITUDE": -75.144253, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 5.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 9.0, "Total Spend": 4944.0, "Total Transactions": 648.0, "Total Customers": 251.0, "Median Spend per Transaction": 5.81, "Median Spend per Customer": 8.18 }, "geometry": { "type": "Point", "coordinates": [ -75.144253, 39.961412 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pg9-zvf", "Name": "Palm Tree Gourmet", "Category": "Restaurants and Other Eating Places", "Address": "322 N Broad St", "LATITUDE": 39.959117, "LONGITUDE": -75.162552, "DATE_RANGE_START": 2024, "Total Visits": 908.0, "Total Visitors": 554.0, "POI_CBG": 421010125001.0, "Median Dwell Time": 36.0, "Total Spend": 14225.0, "Total Transactions": 1147.0, "Total Customers": 519.0, "Median Spend per Transaction": 10.89, "Median Spend per Customer": 18.31 }, "geometry": { "type": "Point", "coordinates": [ -75.162552, 39.959117 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pmf-kvf", "Name": "Vic Sushi Bar", "Category": "Restaurants and Other Eating Places", "Address": "2035 Sansom St", "LATITUDE": 39.951643, "LONGITUDE": -75.174777, "DATE_RANGE_START": 2024, "Total Visits": 369.0, "Total Visitors": 319.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 17.0, "Total Spend": 2859.0, "Total Transactions": 74.0, "Total Customers": 62.0, "Median Spend per Transaction": 29.2, "Median Spend per Customer": 40.26 }, "geometry": { "type": "Point", "coordinates": [ -75.174777, 39.951643 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-phz-m49", "Name": "Speedway", "Category": "Gasoline Stations", "Address": "1000 E Erie Ave", "LATITUDE": 40.005152, "LONGITUDE": -75.109029, "DATE_RANGE_START": 2024, "Total Visits": 9.0, "Total Visitors": 7.0, "POI_CBG": 421010191005.0, "Median Dwell Time": 3.0, "Total Spend": 3636.0, "Total Transactions": 220.0, "Total Customers": 80.0, "Median Spend per Transaction": 12.01, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.109029, 40.005152 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pmb-f75", "Name": "Taqueria Dos Hermanos", "Category": "Restaurants and Other Eating Places", "Address": "37 Spruce St", "LATITUDE": 39.946087, "LONGITUDE": -75.156048, "DATE_RANGE_START": 2024, "Total Visits": 291.0, "Total Visitors": 192.0, "POI_CBG": 421010009021.0, "Median Dwell Time": 1.0, "Total Spend": 2171.0, "Total Transactions": 99.0, "Total Customers": 91.0, "Median Spend per Transaction": 19.87, "Median Spend per Customer": 20.74 }, "geometry": { "type": "Point", "coordinates": [ -75.156048, 39.946087 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmb-j35", "Name": "Race Street Cafe", "Category": "Restaurants and Other Eating Places", "Address": "208 Race St", "LATITUDE": 39.95371, "LONGITUDE": -75.143332, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 174.0, "POI_CBG": 421010001002.0, "Median Dwell Time": 1.0, "Total Spend": 1718.0, "Total Transactions": 36.0, "Total Customers": 20.0, "Median Spend per Transaction": 39.07, "Median Spend per Customer": 62.22 }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 39.95371 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22r-225@628-pmf-kpv", "Name": "Dim Sum House by Jane G's", "Category": "Restaurants and Other Eating Places", "Address": "1930 Chestnut St", "LATITUDE": 39.951834, "LONGITUDE": -75.173356, "DATE_RANGE_START": 2024, "Total Visits": 2010.0, "Total Visitors": 1676.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 9846.0, "Total Transactions": 165.0, "Total Customers": 143.0, "Median Spend per Transaction": 45.26, "Median Spend per Customer": 54.36 }, "geometry": { "type": "Point", "coordinates": [ -75.173356, 39.951834 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-hh5", "Name": "Mandarin Palace", "Category": "Restaurants and Other Eating Places", "Address": "1835 Chestnut St", "LATITUDE": 39.952035, "LONGITUDE": -75.171616, "DATE_RANGE_START": 2024, "Total Visits": 245.0, "Total Visitors": 225.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 2676.0, "Total Transactions": 97.0, "Total Customers": 72.0, "Median Spend per Transaction": 21.55, "Median Spend per Customer": 31.05 }, "geometry": { "type": "Point", "coordinates": [ -75.171616, 39.952035 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-224@628-pnw-k4v", "Name": "Humpty's Dumplings", "Category": "Restaurants and Other Eating Places", "Address": "102 W Girard Ave", "LATITUDE": 39.96876, "LONGITUDE": -75.136611, "DATE_RANGE_START": 2024, "Total Visits": 484.0, "Total Visitors": 315.0, "POI_CBG": 421010142002.0, "Median Dwell Time": 26.0, "Total Spend": 710.0, "Total Transactions": 42.0, "Total Customers": 39.0, "Median Spend per Transaction": 14.22, "Median Spend per Customer": 14.22 }, "geometry": { "type": "Point", "coordinates": [ -75.136611, 39.96876 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-232@628-pm9-tqf", "Name": "Wetzel's Pretzels", "Category": "Restaurants and Other Eating Places", "Address": "1101 Market St Spc 2025", "LATITUDE": 39.952391, "LONGITUDE": -75.157424, "DATE_RANGE_START": 2024, "Total Visits": 694.0, "Total Visitors": 486.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 3.0, "Total Spend": 2850.0, "Total Transactions": 291.0, "Total Customers": 246.0, "Median Spend per Transaction": 8.09, "Median Spend per Customer": 9.7 }, "geometry": { "type": "Point", "coordinates": [ -75.157424, 39.952391 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-227@628-pgj-x3q", "Name": "Broad and Lehigh", "Category": "Grocery Stores", "Address": "Broad St @ Lehigh Ave", "LATITUDE": 39.993627, "LONGITUDE": -75.154337, "DATE_RANGE_START": 2024, "Total Visits": 141.0, "Total Visitors": 132.0, "POI_CBG": 421010166001.0, "Median Dwell Time": 91.0, "Total Spend": 55.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.154337, 39.993627 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pgb-54v", "Name": "Night Market Callowhill", "Category": "Specialty Food Stores", "Address": "1200 Callowhill St Ste 900", "LATITUDE": 39.959051, "LONGITUDE": -75.158731, "DATE_RANGE_START": 2024, "Total Visits": 710.0, "Total Visitors": 417.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 114.0, "Total Spend": 40.0, "Total Transactions": 25.0, "Total Customers": 13.0, "Median Spend per Transaction": 1.0, "Median Spend per Customer": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -75.158731, 39.959051 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj3-cqz", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4140 N Broad St", "LATITUDE": 40.01665, "LONGITUDE": -75.149977, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 186.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 4.0, "Total Spend": 178.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.7, "Median Spend per Customer": 12.7 }, "geometry": { "type": "Point", "coordinates": [ -75.149977, 40.01665 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pnw-nt9", "Name": "Fishtown Tavern", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "1301 Frankford Ave", "LATITUDE": 39.970532, "LONGITUDE": -75.134266, "DATE_RANGE_START": 2024, "Total Visits": 250.0, "Total Visitors": 240.0, "POI_CBG": 421010158004.0, "Median Dwell Time": 14.0, "Total Spend": 13023.0, "Total Transactions": 494.0, "Total Customers": 283.0, "Median Spend per Transaction": 24.78, "Median Spend per Customer": 25.2 }, "geometry": { "type": "Point", "coordinates": [ -75.134266, 39.970532 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24h-222@628-pm4-djv", "Name": "Pho Cyclo Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2124 S Broad St", "LATITUDE": 39.923798, "LONGITUDE": -75.170269, "DATE_RANGE_START": 2024, "Total Visits": 878.0, "Total Visitors": 467.0, "POI_CBG": 421010039011.0, "Median Dwell Time": 91.0, "Total Spend": 889.0, "Total Transactions": 22.0, "Total Customers": 17.0, "Median Spend per Transaction": 26.24, "Median Spend per Customer": 48.99 }, "geometry": { "type": "Point", "coordinates": [ -75.170269, 39.923798 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p8t-4qf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "4000 Woodhaven Rd", "LATITUDE": 40.084831, "LONGITUDE": -74.972304, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 2.0, "Total Spend": 5477.0, "Total Transactions": 279.0, "Total Customers": 170.0, "Median Spend per Transaction": 12.55, "Median Spend per Customer": 20.18 }, "geometry": { "type": "Point", "coordinates": [ -74.972304, 40.084831 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22m-222@628-pm9-zmk", "Name": "The Good King Tavern", "Category": "Restaurants and Other Eating Places", "Address": "614 S 7th St", "LATITUDE": 39.941737, "LONGITUDE": -75.15419, "DATE_RANGE_START": 2024, "Total Visits": 107.0, "Total Visitors": 93.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 1.0, "Total Spend": 12324.0, "Total Transactions": 161.0, "Total Customers": 125.0, "Median Spend per Transaction": 57.71, "Median Spend per Customer": 74.22 }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 39.941737 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp2-pvz", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "3655 Aramingo Ave", "LATITUDE": 39.994039, "LONGITUDE": -75.094958, "DATE_RANGE_START": 2024, "Total Visits": 209.0, "Total Visitors": 196.0, "POI_CBG": 421010379003.0, "Median Dwell Time": 11.0, "Total Spend": 4393.0, "Total Transactions": 233.0, "Total Customers": 188.0, "Median Spend per Transaction": 14.68, "Median Spend per Customer": 18.35 }, "geometry": { "type": "Point", "coordinates": [ -75.094958, 39.994039 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-222@63s-dvy-9j9", "Name": "Davis Pharmacy", "Category": "Health and Personal Care Stores", "Address": "4523 Baltimore Ave", "LATITUDE": 39.949182, "LONGITUDE": -75.214123, "DATE_RANGE_START": 2024, "Total Visits": 90.0, "Total Visitors": 90.0, "POI_CBG": 421010079002.0, "Median Dwell Time": 5.0, "Total Spend": 1766.0, "Total Transactions": 66.0, "Total Customers": 49.0, "Median Spend per Transaction": 13.98, "Median Spend per Customer": 10.99 }, "geometry": { "type": "Point", "coordinates": [ -75.214123, 39.949182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-whq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1900 Welsh Rd # 10", "LATITUDE": 40.081872, "LONGITUDE": -75.037836, "DATE_RANGE_START": 2024, "Total Visits": 288.0, "Total Visitors": 190.0, "POI_CBG": 421010345023.0, "Median Dwell Time": 5.0, "Total Spend": 501.0, "Total Transactions": 42.0, "Total Customers": 14.0, "Median Spend per Transaction": 5.59, "Median Spend per Customer": 5.79 }, "geometry": { "type": "Point", "coordinates": [ -75.037836, 40.081872 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@63s-dvp-bff", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "5756 Baltimore Ave # 74", "LATITUDE": 39.9457, "LONGITUDE": -75.239574, "DATE_RANGE_START": 2024, "Total Visits": 1139.0, "Total Visitors": 861.0, "POI_CBG": 421010072006.0, "Median Dwell Time": 3.0, "Total Spend": 2017.0, "Total Transactions": 111.0, "Total Customers": 96.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239574, 39.9457 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-pp5-2c5", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "260 W Lehigh Ave Ste 80", "LATITUDE": 39.991068, "LONGITUDE": -75.136896, "DATE_RANGE_START": 2024, "Total Visits": 696.0, "Total Visitors": 404.0, "POI_CBG": 421010163002.0, "Median Dwell Time": 13.0, "Total Spend": 599.0, "Total Transactions": 45.0, "Total Customers": 38.0, "Median Spend per Transaction": 7.75, "Median Spend per Customer": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -75.136896, 39.991068 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pgm-68v", "Name": "Shan Chuan", "Category": "Restaurants and Other Eating Places", "Address": "4211 Ridge Ave", "LATITUDE": 40.009211, "LONGITUDE": -75.194127, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 121.0, "POI_CBG": 421010207004.0, "Median Dwell Time": 18.0, "Total Spend": 386.0, "Total Transactions": 11.0, "Total Customers": 9.0, "Median Spend per Transaction": 35.24, "Median Spend per Customer": 33.81 }, "geometry": { "type": "Point", "coordinates": [ -75.194127, 40.009211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pnz-zvf", "Name": "Ross Stores", "Category": "Department Stores", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992468, "LONGITUDE": -75.101245, "DATE_RANGE_START": 2024, "Total Visits": 28.0, "Total Visitors": 20.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 13.0, "Total Spend": 14519.0, "Total Transactions": 283.0, "Total Customers": 244.0, "Median Spend per Transaction": 37.79, "Median Spend per Customer": 39.96 }, "geometry": { "type": "Point", "coordinates": [ -75.101245, 39.992468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pgh-h5z", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "2749 W Hunting Park Ave Ste 130", "LATITUDE": 40.007696, "LONGITUDE": -75.174522, "DATE_RANGE_START": 2024, "Total Visits": 16.0, "Total Visitors": 9.0, "POI_CBG": 421010170002.0, "Median Dwell Time": 5.0, "Total Spend": 6464.0, "Total Transactions": 719.0, "Total Customers": 448.0, "Median Spend per Transaction": 7.85, "Median Spend per Customer": 9.96 }, "geometry": { "type": "Point", "coordinates": [ -75.174522, 40.007696 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qzz", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "2640 E Cumberland St # A", "LATITUDE": 39.97637, "LONGITUDE": -75.120368, "DATE_RANGE_START": 2024, "Total Visits": 907.0, "Total Visitors": 639.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 7.0, "Total Spend": 9436.0, "Total Transactions": 461.0, "Total Customers": 286.0, "Median Spend per Transaction": 12.64, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.120368, 39.97637 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-223@63s-dwf-wx5", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7620 Lindbergh Blvd Ste B", "LATITUDE": 39.903636, "LONGITUDE": -75.239376, "DATE_RANGE_START": 2024, "Total Visits": 245.0, "Total Visitors": 219.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 6.0, "Total Spend": 747.0, "Total Transactions": 51.0, "Total Customers": 30.0, "Median Spend per Transaction": 10.8, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.239376, 39.903636 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-223@628-pmb-xyv", "Name": "M S Mart", "Category": "Health and Personal Care Stores", "Address": "222 N 10th St", "LATITUDE": 39.95623, "LONGITUDE": -75.155785, "DATE_RANGE_START": 2024, "Total Visits": 987.0, "Total Visitors": 778.0, "POI_CBG": 421010002001.0, "Median Dwell Time": 11.0, "Total Spend": 3847.0, "Total Transactions": 244.0, "Total Customers": 154.0, "Median Spend per Transaction": 12.94, "Median Spend per Customer": 17.75 }, "geometry": { "type": "Point", "coordinates": [ -75.155785, 39.95623 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@628-p75-kcq", "Name": "Holme Style Pizza", "Category": "Restaurants and Other Eating Places", "Address": "2907 Holme Ave", "LATITUDE": 40.056893, "LONGITUDE": -75.027632, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 53.0, "POI_CBG": 421010347021.0, "Median Dwell Time": 26.0, "Total Spend": 1107.0, "Total Transactions": 47.0, "Total Customers": 39.0, "Median Spend per Transaction": 17.13, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.027632, 40.056893 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-p8t-4qf", "Name": "LUKOIL", "Category": "Gasoline Stations", "Address": "12001 Knights Rd", "LATITUDE": 40.084603, "LONGITUDE": -74.973182, "DATE_RANGE_START": 2024, "Total Visits": 1456.0, "Total Visitors": 1123.0, "POI_CBG": 421010362031.0, "Median Dwell Time": 3.0, "Total Spend": 825.0, "Total Transactions": 28.0, "Total Customers": 21.0, "Median Spend per Transaction": 27.08, "Median Spend per Customer": 26.07 }, "geometry": { "type": "Point", "coordinates": [ -74.973182, 40.084603 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22z-223@628-pm3-t5f", "Name": "River Twice", "Category": "Restaurants and Other Eating Places", "Address": "1601 E Passyunk Ave", "LATITUDE": 39.929748, "LONGITUDE": -75.163402, "DATE_RANGE_START": 2024, "Total Visits": 113.0, "Total Visitors": 113.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 102.0, "Total Spend": 1176.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 342.44, "Median Spend per Customer": 342.44 }, "geometry": { "type": "Point", "coordinates": [ -75.163402, 39.929748 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-225@628-pj9-73q", "Name": "Papa John's", "Category": "Restaurants and Other Eating Places", "Address": "6000 N Broad St", "LATITUDE": 40.044953, "LONGITUDE": -75.143968, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010278004.0, "Median Dwell Time": 60.0, "Total Spend": 468.0, "Total Transactions": 24.0, "Total Customers": 24.0, "Median Spend per Transaction": 19.54, "Median Spend per Customer": 19.54 }, "geometry": { "type": "Point", "coordinates": [ -75.143968, 40.044953 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pj8-qvf", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4600 E Roosevelt Blvd", "LATITUDE": 40.03237, "LONGITUDE": -75.101559, "DATE_RANGE_START": 2024, "Total Visits": 273.0, "Total Visitors": 257.0, "POI_CBG": 421010390001.0, "Median Dwell Time": 3.0, "Total Spend": 1124.0, "Total Transactions": 22.0, "Total Customers": 22.0, "Median Spend per Transaction": 50.0, "Median Spend per Customer": 50.0 }, "geometry": { "type": "Point", "coordinates": [ -75.101559, 40.03237 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23h-222@628-pg4-pvz", "Name": "Torres Grocery", "Category": "Grocery Stores", "Address": "1048 E Chelten Ave", "LATITUDE": 40.049468, "LONGITUDE": -75.160392, "DATE_RANGE_START": 2024, "Total Visits": 43.0, "Total Visitors": 43.0, "POI_CBG": 421010249003.0, "Median Dwell Time": 2.0, "Total Spend": 253.0, "Total Transactions": 13.0, "Total Customers": 13.0, "Median Spend per Transaction": 15.49, "Median Spend per Customer": 15.49 }, "geometry": { "type": "Point", "coordinates": [ -75.160392, 40.049468 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p7v-ghq", "Name": "New Olympia House", "Category": "Restaurants and Other Eating Places", "Address": "7242 Castor Ave", "LATITUDE": 40.050867, "LONGITUDE": -75.066941, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010310001.0, "Median Dwell Time": 16.0, "Total Spend": 98.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 37.38, "Median Spend per Customer": 37.38 }, "geometry": { "type": "Point", "coordinates": [ -75.066941, 40.050867 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-222@628-pmf-j7q", "Name": "The Dandelion", "Category": "Restaurants and Other Eating Places", "Address": "124 S 18th St", "LATITUDE": 39.951011, "LONGITUDE": -75.170702, "DATE_RANGE_START": 2024, "Total Visits": 250.0, "Total Visitors": 246.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 27.0, "Total Spend": 305.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 115.81, "Median Spend per Customer": 115.81 }, "geometry": { "type": "Point", "coordinates": [ -75.170702, 39.951011 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmb-5mk", "Name": "Fogo de Chão", "Category": "Restaurants and Other Eating Places", "Address": "1337 Chestnut St", "LATITUDE": 39.950928, "LONGITUDE": -75.162963, "DATE_RANGE_START": 2024, "Total Visits": 10572.0, "Total Visitors": 6846.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 5.0, "Total Spend": 28496.0, "Total Transactions": 180.0, "Total Customers": 166.0, "Median Spend per Transaction": 145.0, "Median Spend per Customer": 155.12 }, "geometry": { "type": "Point", "coordinates": [ -75.162963, 39.950928 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-p7x-dgk", "Name": "Pho Saigon", "Category": "Restaurants and Other Eating Places", "Address": "6842 Bustleton Ave", "LATITUDE": 40.041625, "LONGITUDE": -75.064814, "DATE_RANGE_START": 2024, "Total Visits": 182.0, "Total Visitors": 130.0, "POI_CBG": 421010314013.0, "Median Dwell Time": 2.0, "Total Spend": 3024.0, "Total Transactions": 70.0, "Total Customers": 62.0, "Median Spend per Transaction": 41.54, "Median Spend per Customer": 40.23 }, "geometry": { "type": "Point", "coordinates": [ -75.064814, 40.041625 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmv-tjv", "Name": "Jetro Cash & Carry", "Category": "Grocery and Related Product Merchant Wholesalers", "Address": "700 Pattison Ave", "LATITUDE": 39.901802, "LONGITUDE": -75.16345, "DATE_RANGE_START": 2024, "Total Visits": 1834.0, "Total Visitors": 1349.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 40.0, "Total Spend": 345592.0, "Total Transactions": 635.0, "Total Customers": 179.0, "Median Spend per Transaction": 349.67, "Median Spend per Customer": 420.89 }, "geometry": { "type": "Point", "coordinates": [ -75.16345, 39.901802 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pj4-qj9", "Name": "Erietronics", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "722 W Erie Ave", "LATITUDE": 40.007758, "LONGITUDE": -75.141073, "DATE_RANGE_START": 2024, "Total Visits": 105.0, "Total Visitors": 100.0, "POI_CBG": 421010199002.0, "Median Dwell Time": 3.0, "Total Spend": 355.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 135.0, "Median Spend per Customer": 135.0 }, "geometry": { "type": "Point", "coordinates": [ -75.141073, 40.007758 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24d-222@63s-dvr-hyv", "Name": "Woodland and Conveince", "Category": "Grocery Stores", "Address": "6524 Woodland Ave", "LATITUDE": 39.925089, "LONGITUDE": -75.23477, "DATE_RANGE_START": 2024, "Total Visits": 142.0, "Total Visitors": 80.0, "POI_CBG": 421010063001.0, "Median Dwell Time": 26.0, "Total Spend": 140.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 52.0, "Median Spend per Customer": 53.25 }, "geometry": { "type": "Point", "coordinates": [ -75.23477, 39.925089 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@63s-dvy-xdv", "Name": "Pho & Cafe Saigon", "Category": "Restaurants and Other Eating Places", "Address": "4248 Spruce St", "LATITUDE": 39.952304, "LONGITUDE": -75.20911, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010087022.0, "Median Dwell Time": 1.0, "Total Spend": 122.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 46.17, "Median Spend per Customer": 46.17 }, "geometry": { "type": "Point", "coordinates": [ -75.20911, 39.952304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmf-jd9", "Name": "The Vitamin Shoppe", "Category": "Health and Personal Care Stores", "Address": "1701 Chestnut St", "LATITUDE": 39.951605, "LONGITUDE": -75.168872, "DATE_RANGE_START": 2024, "Total Visits": 13.0, "Total Visitors": 13.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 486.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 79.96, "Median Spend per Customer": 79.96 }, "geometry": { "type": "Point", "coordinates": [ -75.168872, 39.951605 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgy-mzf", "Name": "Doc's World of Beer", "Category": "Beer, Wine, and Liquor Stores", "Address": "701 E Cathedral Rd", "LATITUDE": 40.063477, "LONGITUDE": -75.238345, "DATE_RANGE_START": 2024, "Total Visits": 99.0, "Total Visitors": 99.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 1.0, "Total Spend": 7725.0, "Total Transactions": 309.0, "Total Customers": 151.0, "Median Spend per Transaction": 21.59, "Median Spend per Customer": 34.02 }, "geometry": { "type": "Point", "coordinates": [ -75.238345, 40.063477 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pmc-tn5", "Name": "S & S Foods", "Category": "Grocery Stores", "Address": "1800 S Columbus Blvd", "LATITUDE": 39.924738, "LONGITUDE": -75.144356, "DATE_RANGE_START": 2024, "Total Visits": 337.0, "Total Visitors": 158.0, "POI_CBG": 421019807001.0, "Median Dwell Time": 465.0, "Total Spend": 5154.0, "Total Transactions": 32.0, "Total Customers": 17.0, "Median Spend per Transaction": 54.75, "Median Spend per Customer": 93.27 }, "geometry": { "type": "Point", "coordinates": [ -75.144356, 39.924738 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p86-5xq", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "8101 Oxford Ave", "LATITUDE": 40.078717, "LONGITUDE": -75.086448, "DATE_RANGE_START": 2024, "Total Visits": 666.0, "Total Visitors": 506.0, "POI_CBG": 421010341005.0, "Median Dwell Time": 4.0, "Total Spend": 527.0, "Total Transactions": 37.0, "Total Customers": 26.0, "Median Spend per Transaction": 11.26, "Median Spend per Customer": 16.26 }, "geometry": { "type": "Point", "coordinates": [ -75.086448, 40.078717 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-223@628-p8m-vvf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "6363 Frankford Ave", "LATITUDE": 40.028037, "LONGITUDE": -75.058001, "DATE_RANGE_START": 2024, "Total Visits": 274.0, "Total Visitors": 138.0, "POI_CBG": 421010320003.0, "Median Dwell Time": 5.0, "Total Spend": 1706.0, "Total Transactions": 70.0, "Total Customers": 55.0, "Median Spend per Transaction": 15.35, "Median Spend per Customer": 18.63 }, "geometry": { "type": "Point", "coordinates": [ -75.058001, 40.028037 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p86-gtv", "Name": "All In Time", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "7948 Oxford Ave Ste 101", "LATITUDE": 40.075731, "LONGITUDE": -75.085308, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 192.0, "POI_CBG": 421010341004.0, "Median Dwell Time": 9.0, "Total Spend": 189.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 16.2, "Median Spend per Customer": 16.2 }, "geometry": { "type": "Point", "coordinates": [ -75.085308, 40.075731 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22k-222@628-pnx-c89", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1434 Frankford Ave", "LATITUDE": 39.972618, "LONGITUDE": -75.134489, "DATE_RANGE_START": 2024, "Total Visits": 1147.0, "Total Visitors": 334.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 71.0, "Total Spend": 11758.0, "Total Transactions": 353.0, "Total Customers": 296.0, "Median Spend per Transaction": 24.83, "Median Spend per Customer": 26.99 }, "geometry": { "type": "Point", "coordinates": [ -75.134489, 39.972618 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pg2-2zf", "Name": "Vapor Funky Monkey", "Category": "Other Miscellaneous Store Retailers", "Address": "4221 Main St", "LATITUDE": 40.024206, "LONGITUDE": -75.220514, "DATE_RANGE_START": 2024, "Total Visits": 658.0, "Total Visitors": 462.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 9.0, "Total Spend": 409.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 28.02, "Median Spend per Customer": 44.81 }, "geometry": { "type": "Point", "coordinates": [ -75.220514, 40.024206 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pmf-kvf", "Name": "Bolo", "Category": "Restaurants and Other Eating Places", "Address": "2025 Sansom St", "LATITUDE": 39.951589, "LONGITUDE": -75.174566, "DATE_RANGE_START": 2024, "Total Visits": 1330.0, "Total Visitors": 1065.0, "POI_CBG": 421010007001.0, "Median Dwell Time": 31.0, "Total Spend": 511.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 66.72, "Median Spend per Customer": 66.72 }, "geometry": { "type": "Point", "coordinates": [ -75.174566, 39.951589 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-222@628-p8m-dn5", "Name": "King Wok's", "Category": "Restaurants and Other Eating Places", "Address": "5901 Torresdale Ave", "LATITUDE": 40.01692, "LONGITUDE": -75.060392, "DATE_RANGE_START": 2024, "Total Visits": 51.0, "Total Visitors": 51.0, "POI_CBG": 421010321001.0, "Median Dwell Time": null, "Total Spend": 2337.0, "Total Transactions": 68.0, "Total Customers": 55.0, "Median Spend per Transaction": 33.65, "Median Spend per Customer": 42.75 }, "geometry": { "type": "Point", "coordinates": [ -75.060392, 40.01692 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-ph8-qpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "7500 City Ave", "LATITUDE": 39.980066, "LONGITUDE": -75.26859, "DATE_RANGE_START": 2024, "Total Visits": 1036.0, "Total Visitors": 839.0, "POI_CBG": 421010098011.0, "Median Dwell Time": 3.0, "Total Spend": 10198.0, "Total Transactions": 920.0, "Total Customers": 586.0, "Median Spend per Transaction": 9.44, "Median Spend per Customer": 12.21 }, "geometry": { "type": "Point", "coordinates": [ -75.26859, 39.980066 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-223@628-pnx-2hq", "Name": "CARQUEST Auto Parts", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "401 W Girard Ave", "LATITUDE": 39.97016, "LONGITUDE": -75.143294, "DATE_RANGE_START": 2024, "Total Visits": 263.0, "Total Visitors": 126.0, "POI_CBG": 421010144001.0, "Median Dwell Time": 10.0, "Total Spend": 282.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 106.98, "Median Spend per Customer": 106.98 }, "geometry": { "type": "Point", "coordinates": [ -75.143294, 39.97016 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22b@628-pmf-975", "Name": "DK Sushi", "Category": "Restaurants and Other Eating Places", "Address": "3401 Walnut St", "LATITUDE": 39.952998, "LONGITUDE": -75.192279, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 9.0, "Total Spend": 649.0, "Total Transactions": 38.0, "Total Customers": 18.0, "Median Spend per Transaction": 15.99, "Median Spend per Customer": 18.69 }, "geometry": { "type": "Point", "coordinates": [ -75.192279, 39.952998 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23q-222@628-pmf-rx5", "Name": "Indian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "1634 South St", "LATITUDE": 39.944053, "LONGITUDE": -75.169964, "DATE_RANGE_START": 2024, "Total Visits": 87.0, "Total Visitors": 58.0, "POI_CBG": 421010014003.0, "Median Dwell Time": 15.0, "Total Spend": 964.0, "Total Transactions": 13.0, "Total Customers": 12.0, "Median Spend per Transaction": 69.67, "Median Spend per Customer": 76.48 }, "geometry": { "type": "Point", "coordinates": [ -75.169964, 39.944053 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pm3-t5f", "Name": "Rival Bros Coffee", "Category": "Restaurants and Other Eating Places", "Address": "1100 Tasker St", "LATITUDE": 39.929728, "LONGITUDE": -75.163271, "DATE_RANGE_START": 2024, "Total Visits": 228.0, "Total Visitors": 190.0, "POI_CBG": 421010028024.0, "Median Dwell Time": 9.0, "Total Spend": 5179.0, "Total Transactions": 542.0, "Total Customers": 350.0, "Median Spend per Transaction": 7.25, "Median Spend per Customer": 12.13 }, "geometry": { "type": "Point", "coordinates": [ -75.163271, 39.929728 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm9-zxq", "Name": "Atomic City Comics", "Category": "Book Stores and News Dealers", "Address": "638 South St", "LATITUDE": 39.94191, "LONGITUDE": -75.153432, "DATE_RANGE_START": 2024, "Total Visits": 774.0, "Total Visitors": 669.0, "POI_CBG": 421010015001.0, "Median Dwell Time": 6.0, "Total Spend": 733.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 31.22, "Median Spend per Customer": 32.38 }, "geometry": { "type": "Point", "coordinates": [ -75.153432, 39.94191 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-224@63s-dwf-bhq", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2910 S 70th St Unit 3B", "LATITUDE": 39.912346, "LONGITUDE": -75.233779, "DATE_RANGE_START": 2024, "Total Visits": 416.0, "Total Visitors": 250.0, "POI_CBG": 421010060001.0, "Median Dwell Time": 8.0, "Total Spend": 524.0, "Total Transactions": 24.0, "Total Customers": 18.0, "Median Spend per Transaction": 15.53, "Median Spend per Customer": 15.53 }, "geometry": { "type": "Point", "coordinates": [ -75.233779, 39.912346 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-227@628-pj6-qfz", "Name": "Ashley Stewart", "Category": "Clothing Stores", "Address": "101 E Olney Ave", "LATITUDE": 40.037805, "LONGITUDE": -75.117799, "DATE_RANGE_START": 2024, "Total Visits": 5.0, "Total Visitors": 4.0, "POI_CBG": 421010273001.0, "Median Dwell Time": 38.0, "Total Spend": 803.0, "Total Transactions": 12.0, "Total Customers": 11.0, "Median Spend per Transaction": 81.94, "Median Spend per Customer": 84.16 }, "geometry": { "type": "Point", "coordinates": [ -75.117799, 40.037805 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-pg9-btv", "Name": "Tomorrow Gift", "Category": "Office Supplies, Stationery, and Gift Stores", "Address": "2246 Ridge Ave", "LATITUDE": 39.980373, "LONGITUDE": -75.17232, "DATE_RANGE_START": 2024, "Total Visits": 295.0, "Total Visitors": 188.0, "POI_CBG": 421010148001.0, "Median Dwell Time": 59.0, "Total Spend": 253.0, "Total Transactions": 12.0, "Total Customers": 7.0, "Median Spend per Transaction": 19.18, "Median Spend per Customer": 48.64 }, "geometry": { "type": "Point", "coordinates": [ -75.17232, 39.980373 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23j-222@628-pm3-wrk", "Name": "El Paisano Supermarket 1", "Category": "Grocery Stores", "Address": "1356 E Passyunk Ave", "LATITUDE": 39.932161, "LONGITUDE": -75.160824, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 429.0, "POI_CBG": 421010029003.0, "Median Dwell Time": 2.0, "Total Spend": 740.0, "Total Transactions": 38.0, "Total Customers": 33.0, "Median Spend per Transaction": 16.66, "Median Spend per Customer": 24.77 }, "geometry": { "type": "Point", "coordinates": [ -75.160824, 39.932161 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-hqz", "Name": "Old Nelson Food Company", "Category": "Grocery Stores", "Address": "1833 John F Kennedy Blvd", "LATITUDE": 39.954526, "LONGITUDE": -75.17109, "DATE_RANGE_START": 2024, "Total Visits": 325.0, "Total Visitors": 213.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 1.0, "Total Spend": 11332.0, "Total Transactions": 874.0, "Total Customers": 571.0, "Median Spend per Transaction": 11.5, "Median Spend per Customer": 14.99 }, "geometry": { "type": "Point", "coordinates": [ -75.17109, 39.954526 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dwd-v9f", "Name": "RevZilla", "Category": "Other Motor Vehicle Dealers", "Address": "4020 S 26th St", "LATITUDE": 39.900369, "LONGITUDE": -75.195065, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 147.0, "POI_CBG": 421010050001.0, "Median Dwell Time": 2.0, "Total Spend": 419.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 158.97, "Median Spend per Customer": 158.97 }, "geometry": { "type": "Point", "coordinates": [ -75.195065, 39.900369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pm9-whq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "259 Market St", "LATITUDE": 39.950384, "LONGITUDE": -75.145481, "DATE_RANGE_START": 2024, "Total Visits": 519.0, "Total Visitors": 478.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 8623.0, "Total Transactions": 516.0, "Total Customers": 315.0, "Median Spend per Transaction": 11.33, "Median Spend per Customer": 13.49 }, "geometry": { "type": "Point", "coordinates": [ -75.145481, 39.950384 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8v-7kf", "Name": "Big Lots Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "199 Franklin Mills Blvd Ste A", "LATITUDE": 40.090339, "LONGITUDE": -74.965675, "DATE_RANGE_START": 2024, "Total Visits": 756.0, "Total Visitors": 628.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 11.0, "Total Spend": 153.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 26.6, "Median Spend per Customer": 26.6 }, "geometry": { "type": "Point", "coordinates": [ -74.965675, 40.090339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pgb-7t9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "2300 Fairmount Ave # 16", "LATITUDE": 39.967205, "LONGITUDE": -75.175753, "DATE_RANGE_START": 2024, "Total Visits": 430.0, "Total Visitors": 357.0, "POI_CBG": 421010134011.0, "Median Dwell Time": 1.0, "Total Spend": 397.0, "Total Transactions": 28.0, "Total Customers": 21.0, "Median Spend per Transaction": 8.94, "Median Spend per Customer": 8.47 }, "geometry": { "type": "Point", "coordinates": [ -75.175753, 39.967205 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@63s-dvw-jy9", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "301 S 52nd St", "LATITUDE": 39.954266, "LONGITUDE": -75.225768, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 20.0, "POI_CBG": 421010085003.0, "Median Dwell Time": 4.0, "Total Spend": 421.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 12.5 }, "geometry": { "type": "Point", "coordinates": [ -75.225768, 39.954266 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22w-222@628-pmf-ty9", "Name": "Doggie Style", "Category": "Other Miscellaneous Store Retailers", "Address": "1635 Spruce St", "LATITUDE": 39.947695, "LONGITUDE": -75.169461, "DATE_RANGE_START": 2024, "Total Visits": 192.0, "Total Visitors": 190.0, "POI_CBG": 421010008041.0, "Median Dwell Time": 1.0, "Total Spend": 1181.0, "Total Transactions": 45.0, "Total Customers": 42.0, "Median Spend per Transaction": 18.98, "Median Spend per Customer": 21.58 }, "geometry": { "type": "Point", "coordinates": [ -75.169461, 39.947695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22c@628-pmf-jjv", "Name": "Pastrami & Things", "Category": "Restaurants and Other Eating Places", "Address": "1234 Market St Ste LL1", "LATITUDE": 39.952406, "LONGITUDE": -75.170418, "DATE_RANGE_START": 2024, "Total Visits": 255.0, "Total Visitors": 176.0, "POI_CBG": 421010004022.0, "Median Dwell Time": 118.0, "Total Spend": 2204.0, "Total Transactions": 309.0, "Total Customers": 108.0, "Median Spend per Transaction": 7.01, "Median Spend per Customer": 10.71 }, "geometry": { "type": "Point", "coordinates": [ -75.170418, 39.952406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p8t-w49", "Name": "Off Broadway Shoe Warehouse", "Category": "Shoe Stores", "Address": "1477 Franklin Mills Cir", "LATITUDE": 40.086918, "LONGITUDE": -74.961539, "DATE_RANGE_START": 2024, "Total Visits": 423.0, "Total Visitors": 415.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 7.0, "Total Spend": 2896.0, "Total Transactions": 47.0, "Total Customers": 39.0, "Median Spend per Transaction": 65.49, "Median Spend per Customer": 61.24 }, "geometry": { "type": "Point", "coordinates": [ -74.961539, 40.086918 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24b-222@628-pgb-6rk", "Name": "Luigi's Pizza Fresca", "Category": "Restaurants and Other Eating Places", "Address": "2401 Fairmount Ave", "LATITUDE": 39.967573, "LONGITUDE": -75.177118, "DATE_RANGE_START": 2024, "Total Visits": 461.0, "Total Visitors": 320.0, "POI_CBG": 421010136011.0, "Median Dwell Time": 19.0, "Total Spend": 834.0, "Total Transactions": 26.0, "Total Customers": 18.0, "Median Spend per Transaction": 21.58, "Median Spend per Customer": 27.05 }, "geometry": { "type": "Point", "coordinates": [ -75.177118, 39.967573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "245-222@628-pj2-7dv", "Name": "Guzman Grocery", "Category": "Grocery Stores", "Address": "3100 E St", "LATITUDE": 39.995788, "LONGITUDE": -75.119819, "DATE_RANGE_START": 2024, "Total Visits": 126.0, "Total Visitors": 29.0, "POI_CBG": 421010177023.0, "Median Dwell Time": 6.0, "Total Spend": 320.0, "Total Transactions": 34.0, "Total Customers": 24.0, "Median Spend per Transaction": 8.5, "Median Spend per Customer": 11.13 }, "geometry": { "type": "Point", "coordinates": [ -75.119819, 39.995788 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j35", "Name": "Her Place", "Category": "Restaurants and Other Eating Places", "Address": "1740 Sansom St", "LATITUDE": 39.950724, "LONGITUDE": -75.170177, "DATE_RANGE_START": 2024, "Total Visits": 415.0, "Total Visitors": 394.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 1.0, "Total Spend": 1265.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 250.93, "Median Spend per Customer": 250.93 }, "geometry": { "type": "Point", "coordinates": [ -75.170177, 39.950724 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-pmb-v4v", "Name": "Revolution House", "Category": "Restaurants and Other Eating Places", "Address": "200 Market St", "LATITUDE": 39.949783, "LONGITUDE": -75.143927, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 162.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 1.0, "Total Spend": 10213.0, "Total Transactions": 174.0, "Total Customers": 137.0, "Median Spend per Transaction": 47.0, "Median Spend per Customer": 59.34 }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.949783 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pj4-3qz", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "4201 N Broad St", "LATITUDE": 40.017303, "LONGITUDE": -75.148704, "DATE_RANGE_START": 2024, "Total Visits": 1032.0, "Total Visitors": 732.0, "POI_CBG": 421010203002.0, "Median Dwell Time": 7.0, "Total Spend": 1959.0, "Total Transactions": 86.0, "Total Customers": 62.0, "Median Spend per Transaction": 11.27, "Median Spend per Customer": 16.73 }, "geometry": { "type": "Point", "coordinates": [ -75.148704, 40.017303 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-223@628-pfy-6hq", "Name": "CVS", "Category": "Health and Personal Care Stores", "Address": "6701 Ridge Ave Ste 1", "LATITUDE": 40.041026, "LONGITUDE": -75.223821, "DATE_RANGE_START": 2024, "Total Visits": 641.0, "Total Visitors": 498.0, "POI_CBG": 421010217003.0, "Median Dwell Time": 5.0, "Total Spend": 7981.0, "Total Transactions": 399.0, "Total Customers": 238.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 19.32 }, "geometry": { "type": "Point", "coordinates": [ -75.223821, 40.041026 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pj7-2rk", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "501 Adams Ave", "LATITUDE": 40.039125, "LONGITUDE": -75.107746, "DATE_RANGE_START": 2024, "Total Visits": 515.0, "Total Visitors": 258.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 228.0, "Total Spend": 5418.0, "Total Transactions": 286.0, "Total Customers": 230.0, "Median Spend per Transaction": 15.11, "Median Spend per Customer": 17.27 }, "geometry": { "type": "Point", "coordinates": [ -75.107746, 40.039125 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23d-222@628-pnw-nh5", "Name": "Fette Sau", "Category": "Restaurants and Other Eating Places", "Address": "1208 Frankford Ave", "LATITUDE": 39.969285, "LONGITUDE": -75.13481, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 191.0, "POI_CBG": 421010144002.0, "Median Dwell Time": 17.0, "Total Spend": 8457.0, "Total Transactions": 213.0, "Total Customers": 162.0, "Median Spend per Transaction": 31.41, "Median Spend per Customer": 44.5 }, "geometry": { "type": "Point", "coordinates": [ -75.13481, 39.969285 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22j@628-pj6-k4v", "Name": "Pelicana", "Category": "Restaurants and Other Eating Places", "Address": "6201 N Front St", "LATITUDE": 40.044988, "LONGITUDE": -75.117527, "DATE_RANGE_START": 2024, "Total Visits": 4471.0, "Total Visitors": 2998.0, "POI_CBG": 421010272002.0, "Median Dwell Time": 19.0, "Total Spend": 127.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 25.51, "Median Spend per Customer": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.117527, 40.044988 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24c-222@63s-dvw-s5z", "Name": "Rodriguez Supermarket", "Category": "Grocery Stores", "Address": "5642 W Girard Ave", "LATITUDE": 39.970341, "LONGITUDE": -75.233962, "DATE_RANGE_START": 2024, "Total Visits": 45.0, "Total Visitors": 45.0, "POI_CBG": 421010102001.0, "Median Dwell Time": null, "Total Spend": 956.0, "Total Transactions": 88.0, "Total Customers": 65.0, "Median Spend per Transaction": 10.74, "Median Spend per Customer": 11.75 }, "geometry": { "type": "Point", "coordinates": [ -75.233962, 39.970341 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22t-222@628-p82-4jv", "Name": "Jc Mini Market", "Category": "Grocery Stores", "Address": "500 Devereaux Ave", "LATITUDE": 40.04695, "LONGITUDE": -75.097959, "DATE_RANGE_START": 2024, "Total Visits": 178.0, "Total Visitors": 138.0, "POI_CBG": 421010305011.0, "Median Dwell Time": 9.0, "Total Spend": 65.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 6.13, "Median Spend per Customer": 7.38 }, "geometry": { "type": "Point", "coordinates": [ -75.097959, 40.04695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-226@628-pm9-tn5", "Name": "Unclaimed Diamonds", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "113 S 8th St", "LATITUDE": 39.949045, "LONGITUDE": -75.153751, "DATE_RANGE_START": 2024, "Total Visits": 309.0, "Total Visitors": 258.0, "POI_CBG": 421010006001.0, "Median Dwell Time": 119.0, "Total Spend": 200.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 76.13, "Median Spend per Customer": 76.13 }, "geometry": { "type": "Point", "coordinates": [ -75.153751, 39.949045 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-228@628-p8t-w8v", "Name": "Famous Footwear", "Category": "Shoe Stores", "Address": "1464 Philadelphia Mls", "LATITUDE": 40.087684, "LONGITUDE": -74.961421, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 1.0, "Total Spend": 132.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 49.99, "Median Spend per Customer": 49.99 }, "geometry": { "type": "Point", "coordinates": [ -74.961421, 40.087684 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@628-pp2-2c5", "Name": "AutoZone", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "3301 Aramingo Ave", "LATITUDE": 39.989096, "LONGITUDE": -75.10224, "DATE_RANGE_START": 2024, "Total Visits": 36.0, "Total Visitors": 21.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 12.0, "Total Spend": 6073.0, "Total Transactions": 91.0, "Total Customers": 78.0, "Median Spend per Transaction": 36.99, "Median Spend per Customer": 43.18 }, "geometry": { "type": "Point", "coordinates": [ -75.10224, 39.989096 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "228-222@628-phn-xkf", "Name": "Popeyes Louisiana Kitchen", "Category": "Restaurants and Other Eating Places", "Address": "3110 W Cheltenham Ave", "LATITUDE": 40.081017, "LONGITUDE": -75.170814, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010259001.0, "Median Dwell Time": 5.0, "Total Spend": 10667.0, "Total Transactions": 563.0, "Total Customers": 442.0, "Median Spend per Transaction": 15.22, "Median Spend per Customer": 18.55 }, "geometry": { "type": "Point", "coordinates": [ -75.170814, 40.081017 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22c-223@628-pgj-d7q", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "1501 Cecil B Moore Ave", "LATITUDE": 39.979092, "LONGITUDE": -75.159657, "DATE_RANGE_START": 2024, "Total Visits": 852.0, "Total Visitors": 621.0, "POI_CBG": 421010147002.0, "Median Dwell Time": 5.0, "Total Spend": 1466.0, "Total Transactions": 97.0, "Total Customers": 70.0, "Median Spend per Transaction": 7.34, "Median Spend per Customer": 7.79 }, "geometry": { "type": "Point", "coordinates": [ -75.159657, 39.979092 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pgb-tqf", "Name": "Gulf Oil", "Category": "Gasoline Stations", "Address": "1101 Spring Garden St # 9", "LATITUDE": 39.961991, "LONGITUDE": -75.156364, "DATE_RANGE_START": 2024, "Total Visits": 224.0, "Total Visitors": 183.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 2.0, "Total Spend": 246.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 69.12, "Median Spend per Customer": 69.12 }, "geometry": { "type": "Point", "coordinates": [ -75.156364, 39.961991 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-p8v-7h5", "Name": "Dollar Tree", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "101 Franklin Mills Blvd", "LATITUDE": 40.088705, "LONGITUDE": -74.967825, "DATE_RANGE_START": 2024, "Total Visits": 424.0, "Total Visitors": 357.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 3.0, "Total Spend": 145.0, "Total Transactions": 11.0, "Total Customers": 8.0, "Median Spend per Transaction": 7.28, "Median Spend per Customer": 14.7 }, "geometry": { "type": "Point", "coordinates": [ -74.967825, 40.088705 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pnw-st9", "Name": "Aura", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "628 N Front St", "LATITUDE": 39.961228, "LONGITUDE": -75.138826, "DATE_RANGE_START": 2024, "Total Visits": 334.0, "Total Visitors": 241.0, "POI_CBG": 421010367001.0, "Median Dwell Time": 82.0, "Total Spend": 103128.0, "Total Transactions": 1184.0, "Total Customers": 998.0, "Median Spend per Transaction": 64.51, "Median Spend per Customer": 76.18 }, "geometry": { "type": "Point", "coordinates": [ -75.138826, 39.961228 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22v-222@628-phz-6c5", "Name": "L & M Food Market", "Category": "Grocery Stores", "Address": "4863 D St", "LATITUDE": 40.0235, "LONGITUDE": -75.115742, "DATE_RANGE_START": 2024, "Total Visits": 14.0, "Total Visitors": 14.0, "POI_CBG": 421010289023.0, "Median Dwell Time": 5.0, "Total Spend": 165.0, "Total Transactions": 22.0, "Total Customers": 12.0, "Median Spend per Transaction": 5.6, "Median Spend per Customer": 7.1 }, "geometry": { "type": "Point", "coordinates": [ -75.115742, 40.0235 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@63s-dw9-54v", "Name": "Minute Suites", "Category": "Drinking Places (Alcoholic Beverages)", "Address": "Terminal A-B Link", "LATITUDE": 39.877241, "LONGITUDE": -75.244122, "DATE_RANGE_START": 2024, "Total Visits": 823.0, "Total Visitors": 808.0, "POI_CBG": 421019804001.0, "Median Dwell Time": 1.0, "Total Spend": 112.0, "Total Transactions": 4.0, "Total Customers": 3.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 42.5 }, "geometry": { "type": "Point", "coordinates": [ -75.244122, 39.877241 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvx-ysq", "Name": "C & R Building Supply", "Category": "Building Material and Supplies Dealers", "Address": "1601 S 49th St", "LATITUDE": 39.93947, "LONGITUDE": -75.209529, "DATE_RANGE_START": 2024, "Total Visits": 184.0, "Total Visitors": 158.0, "POI_CBG": 421019809001.0, "Median Dwell Time": 1.0, "Total Spend": 469.0, "Total Transactions": 9.0, "Total Customers": 5.0, "Median Spend per Transaction": 35.62, "Median Spend per Customer": 80.2 }, "geometry": { "type": "Point", "coordinates": [ -75.209529, 39.93947 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22c@628-pm4-3kf", "Name": "Miles Table", "Category": "Restaurants and Other Eating Places", "Address": "821 Dudley St", "LATITUDE": 39.925054, "LONGITUDE": -75.160226, "DATE_RANGE_START": 2024, "Total Visits": 843.0, "Total Visitors": 656.0, "POI_CBG": 421010041014.0, "Median Dwell Time": 73.0, "Total Spend": 3917.0, "Total Transactions": 230.0, "Total Customers": 147.0, "Median Spend per Transaction": 16.04, "Median Spend per Customer": 19.87 }, "geometry": { "type": "Point", "coordinates": [ -75.160226, 39.925054 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-223@628-p8t-5xq", "Name": "Pho Nam Giang", "Category": "Restaurants and Other Eating Places", "Address": "427 Franklin Mills Cir", "LATITUDE": 40.086078, "LONGITUDE": -74.964941, "DATE_RANGE_START": 2024, "Total Visits": 366.0, "Total Visitors": 303.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 17.0, "Total Spend": 2875.0, "Total Transactions": 71.0, "Total Customers": 67.0, "Median Spend per Transaction": 37.78, "Median Spend per Customer": 37.64 }, "geometry": { "type": "Point", "coordinates": [ -74.964941, 40.086078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "236-223@628-pm9-zs5", "Name": "Fat Tuesday", "Category": "Specialty Food Stores", "Address": "431 South St", "LATITUDE": 39.941949, "LONGITUDE": -75.150252, "DATE_RANGE_START": 2024, "Total Visits": 1519.0, "Total Visitors": 1418.0, "POI_CBG": 421010010021.0, "Median Dwell Time": 15.0, "Total Spend": 9441.0, "Total Transactions": 369.0, "Total Customers": 296.0, "Median Spend per Transaction": 21.5, "Median Spend per Customer": 26.4 }, "geometry": { "type": "Point", "coordinates": [ -75.150252, 39.941949 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23f-222@628-pgb-7t9", "Name": "Rybread", "Category": "Restaurants and Other Eating Places", "Address": "1711 Fairmount Ave", "LATITUDE": 39.967471, "LONGITUDE": -75.165645, "DATE_RANGE_START": 2024, "Total Visits": 24.0, "Total Visitors": 17.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 3.0, "Total Spend": 8452.0, "Total Transactions": 561.0, "Total Customers": 317.0, "Median Spend per Transaction": 13.5, "Median Spend per Customer": 19.65 }, "geometry": { "type": "Point", "coordinates": [ -75.165645, 39.967471 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-222@628-pm8-ffz", "Name": "Phil's Battery Service", "Category": "Electronics and Appliance Stores", "Address": "1854 E Moyamensing Ave", "LATITUDE": 39.924742, "LONGITUDE": -75.152309, "DATE_RANGE_START": 2024, "Total Visits": 334.0, "Total Visitors": 267.0, "POI_CBG": 421010027024.0, "Median Dwell Time": 1.0, "Total Spend": 197.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 40.0 }, "geometry": { "type": "Point", "coordinates": [ -75.152309, 39.924742 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9r-28v", "Name": "Chipotle Mexican Grill", "Category": "Restaurants and Other Eating Places", "Address": "9173 Roosevelt Blvd", "LATITUDE": 40.074472, "LONGITUDE": -75.033015, "DATE_RANGE_START": 2024, "Total Visits": 486.0, "Total Visitors": 411.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 2.0, "Total Spend": 12478.0, "Total Transactions": 692.0, "Total Customers": 427.0, "Median Spend per Transaction": 14.91, "Median Spend per Customer": 20.98 }, "geometry": { "type": "Point", "coordinates": [ -75.033015, 40.074472 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pgk-t35", "Name": "TGI Fridays", "Category": "Restaurants and Other Eating Places", "Address": "4000 City Ave", "LATITUDE": 40.007897, "LONGITUDE": -75.211125, "DATE_RANGE_START": 2024, "Total Visits": 646.0, "Total Visitors": 467.0, "POI_CBG": 421010122031.0, "Median Dwell Time": 49.0, "Total Spend": 17259.0, "Total Transactions": 305.0, "Total Customers": 241.0, "Median Spend per Transaction": 45.78, "Median Spend per Customer": 55.29 }, "geometry": { "type": "Point", "coordinates": [ -75.211125, 40.007897 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@63s-dw2-7yv", "Name": "Pete's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "201 S 60th St", "LATITUDE": 39.958784, "LONGITUDE": -75.241349, "DATE_RANGE_START": 2024, "Total Visits": 408.0, "Total Visitors": 337.0, "POI_CBG": 421010083022.0, "Median Dwell Time": 60.0, "Total Spend": 336.0, "Total Transactions": 24.0, "Total Customers": 21.0, "Median Spend per Transaction": 13.23, "Median Spend per Customer": 15.36 }, "geometry": { "type": "Point", "coordinates": [ -75.241349, 39.958784 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-p7v-ghq", "Name": "Buccann", "Category": "Restaurants and Other Eating Places", "Address": "7254 Castor Ave", "LATITUDE": 40.051098, "LONGITUDE": -75.066611, "DATE_RANGE_START": 2024, "Total Visits": 197.0, "Total Visitors": 197.0, "POI_CBG": 421010310001.0, "Median Dwell Time": 9.0, "Total Spend": 741.0, "Total Transactions": 7.0, "Total Customers": 7.0, "Median Spend per Transaction": 128.0, "Median Spend per Customer": 128.0 }, "geometry": { "type": "Point", "coordinates": [ -75.066611, 40.051098 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "23c-222@63s-dvy-zcq", "Name": "Kaffa Crossing", "Category": "Restaurants and Other Eating Places", "Address": "4421 Chestnut St", "LATITUDE": 39.956913, "LONGITUDE": -75.210358, "DATE_RANGE_START": 2024, "Total Visits": 440.0, "Total Visitors": 240.0, "POI_CBG": 421010087012.0, "Median Dwell Time": 150.0, "Total Spend": 2087.0, "Total Transactions": 82.0, "Total Customers": 16.0, "Median Spend per Transaction": 22.14, "Median Spend per Customer": 34.44 }, "geometry": { "type": "Point", "coordinates": [ -75.210358, 39.956913 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-222@628-pmb-ty9", "Name": "La Famiglia Ristorante", "Category": "Restaurants and Other Eating Places", "Address": "8 S Front St", "LATITUDE": 39.949369, "LONGITUDE": -75.142406, "DATE_RANGE_START": 2024, "Total Visits": 190.0, "Total Visitors": 190.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 13.0, "Total Spend": 2256.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 190.0, "Median Spend per Customer": 190.0 }, "geometry": { "type": "Point", "coordinates": [ -75.142406, 39.949369 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-22j@628-pmf-8vz", "Name": "University Of Penn Food Court", "Category": "Restaurants and Other Eating Places", "Address": "3401-3509 Sansom St Univ Of", "LATITUDE": 39.95305, "LONGITUDE": -75.192581, "DATE_RANGE_START": 2024, "Total Visits": 3440.0, "Total Visitors": 2176.0, "POI_CBG": 421010369003.0, "Median Dwell Time": 9.0, "Total Spend": 299.0, "Total Transactions": 5.0, "Total Customers": 5.0, "Median Spend per Transaction": 58.61, "Median Spend per Customer": 58.61 }, "geometry": { "type": "Point", "coordinates": [ -75.192581, 39.95305 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8t-vpv", "Name": "KFC", "Category": "Restaurants and Other Eating Places", "Address": "527 Franklin Mills Cir", "LATITUDE": 40.088941, "LONGITUDE": -74.964649, "DATE_RANGE_START": 2024, "Total Visits": 221.0, "Total Visitors": 211.0, "POI_CBG": 421010363011.0, "Median Dwell Time": 4.0, "Total Spend": 3761.0, "Total Transactions": 215.0, "Total Customers": 179.0, "Median Spend per Transaction": 14.89, "Median Spend per Customer": 15.11 }, "geometry": { "type": "Point", "coordinates": [ -74.964649, 40.088941 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22y-222@628-pmf-qzz", "Name": "Bistro SouthEast", "Category": "Restaurants and Other Eating Places", "Address": "1824 South St", "LATITUDE": 39.944332, "LONGITUDE": -75.172758, "DATE_RANGE_START": 2024, "Total Visits": 1098.0, "Total Visitors": 292.0, "POI_CBG": 421010014001.0, "Median Dwell Time": 272.0, "Total Spend": 1353.0, "Total Transactions": 63.0, "Total Customers": 43.0, "Median Spend per Transaction": 17.28, "Median Spend per Customer": 26.14 }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.944332 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pp4-sbk", "Name": "Coffee House Too", "Category": "Restaurants and Other Eating Places", "Address": "2514 E York St", "LATITUDE": 39.97675, "LONGITUDE": -75.123708, "DATE_RANGE_START": 2024, "Total Visits": 196.0, "Total Visitors": 196.0, "POI_CBG": 421010160006.0, "Median Dwell Time": 6.0, "Total Spend": 1015.0, "Total Transactions": 43.0, "Total Customers": 39.0, "Median Spend per Transaction": 14.72, "Median Spend per Customer": 19.69 }, "geometry": { "type": "Point", "coordinates": [ -75.123708, 39.97675 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pmc-n89", "Name": "CosmoProf", "Category": "Machinery, Equipment, and Supplies Merchant Wholesalers", "Address": "1100 S Columbus Blvd # 20", "LATITUDE": 39.932573, "LONGITUDE": -75.144459, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 7.0, "POI_CBG": 421010366001.0, "Median Dwell Time": 6.0, "Total Spend": 435.0, "Total Transactions": 8.0, "Total Customers": 7.0, "Median Spend per Transaction": 38.61, "Median Spend per Customer": 46.87 }, "geometry": { "type": "Point", "coordinates": [ -75.144459, 39.932573 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-22y@628-pmf-jd9", "Name": "Nordstrom Rack", "Category": "Clothing Stores", "Address": "1700 Chestnut St", "LATITUDE": 39.951362, "LONGITUDE": -75.169014, "DATE_RANGE_START": 2024, "Total Visits": 33.0, "Total Visitors": 30.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 6.0, "Total Spend": 53748.0, "Total Transactions": 823.0, "Total Customers": 704.0, "Median Spend per Transaction": 46.5, "Median Spend per Customer": 53.97 }, "geometry": { "type": "Point", "coordinates": [ -75.169014, 39.951362 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pmb-6p9", "Name": "Samsun Footwear", "Category": "Shoe Stores", "Address": "1514 Chestnut St", "LATITUDE": 39.95084, "LONGITUDE": -75.166508, "DATE_RANGE_START": 2024, "Total Visits": 5381.0, "Total Visitors": 3846.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 9.0, "Total Spend": 481.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 110.0, "Median Spend per Customer": 110.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166508, 39.95084 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22d-222@628-pg9-tqf", "Name": "Engimono Sushi", "Category": "Restaurants and Other Eating Places", "Address": "1811 Fairmount Ave", "LATITUDE": 39.967426, "LONGITUDE": -75.167384, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 341.0, "POI_CBG": 421010135004.0, "Median Dwell Time": 14.0, "Total Spend": 1132.0, "Total Transactions": 24.0, "Total Customers": 22.0, "Median Spend per Transaction": 47.4, "Median Spend per Customer": 45.7 }, "geometry": { "type": "Point", "coordinates": [ -75.167384, 39.967426 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@63s-dvy-89z", "Name": "Common Beat Music", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "4916 Baltimore Ave", "LATITUDE": 39.947856, "LONGITUDE": -75.222011, "DATE_RANGE_START": 2024, "Total Visits": 95.0, "Total Visitors": 90.0, "POI_CBG": 421010078003.0, "Median Dwell Time": 14.0, "Total Spend": 3077.0, "Total Transactions": 53.0, "Total Customers": 38.0, "Median Spend per Transaction": 34.02, "Median Spend per Customer": 45.0 }, "geometry": { "type": "Point", "coordinates": [ -75.222011, 39.947856 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-pmf-dd9", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "2901 Grays Ferry Ave", "LATITUDE": 39.939546, "LONGITUDE": -75.191189, "DATE_RANGE_START": 2024, "Total Visits": 18.0, "Total Visitors": 11.0, "POI_CBG": 421010033002.0, "Median Dwell Time": 5.0, "Total Spend": 21631.0, "Total Transactions": 1646.0, "Total Customers": 982.0, "Median Spend per Transaction": 11.15, "Median Spend per Customer": 15.54 }, "geometry": { "type": "Point", "coordinates": [ -75.191189, 39.939546 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "229-222@628-p7b-vmk", "Name": "Out of Wack Jacks Bar & Grill", "Category": "Restaurants and Other Eating Places", "Address": "3156 Willits Rd", "LATITUDE": 40.057001, "LONGITUDE": -75.014587, "DATE_RANGE_START": 2024, "Total Visits": 453.0, "Total Visitors": 428.0, "POI_CBG": 421010348012.0, "Median Dwell Time": 24.0, "Total Spend": 2079.0, "Total Transactions": 38.0, "Total Customers": 22.0, "Median Spend per Transaction": 43.72, "Median Spend per Customer": 43.72 }, "geometry": { "type": "Point", "coordinates": [ -75.014587, 40.057001 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9q-fs5", "Name": "Petco", "Category": "Other Miscellaneous Store Retailers", "Address": "9717 Roosevelt Blvd", "LATITUDE": 40.08158, "LONGITUDE": -75.02629, "DATE_RANGE_START": 2024, "Total Visits": 552.0, "Total Visitors": 352.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 23.0, "Total Spend": 9757.0, "Total Transactions": 224.0, "Total Customers": 172.0, "Median Spend per Transaction": 35.0, "Median Spend per Customer": 42.01 }, "geometry": { "type": "Point", "coordinates": [ -75.02629, 40.08158 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pfy-f75", "Name": "Dunkin'", "Category": "Restaurants and Other Eating Places", "Address": "6191 Ridge Ave", "LATITUDE": 40.035455, "LONGITUDE": -75.216949, "DATE_RANGE_START": 2024, "Total Visits": 191.0, "Total Visitors": 151.0, "POI_CBG": 421010212001.0, "Median Dwell Time": 1.0, "Total Spend": 5225.0, "Total Transactions": 596.0, "Total Customers": 270.0, "Median Spend per Transaction": 7.42, "Median Spend per Customer": 9.69 }, "geometry": { "type": "Point", "coordinates": [ -75.216949, 40.035455 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p9q-fzz", "Name": "Chick-fil-A", "Category": "Restaurants and Other Eating Places", "Address": "9711 Roosevelt Blvd", "LATITUDE": 40.081704, "LONGITUDE": -75.026789, "DATE_RANGE_START": 2024, "Total Visits": 1656.0, "Total Visitors": 1294.0, "POI_CBG": 421019803001.0, "Median Dwell Time": 3.0, "Total Spend": 7770.0, "Total Transactions": 446.0, "Total Customers": 330.0, "Median Spend per Transaction": 13.8, "Median Spend per Customer": 19.71 }, "geometry": { "type": "Point", "coordinates": [ -75.026789, 40.081704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pfz-ch5", "Name": "Pilgrim Roasters", "Category": "Restaurants and Other Eating Places", "Address": "4120 Main St", "LATITUDE": 40.022764, "LONGITUDE": -75.219439, "DATE_RANGE_START": 2024, "Total Visits": 253.0, "Total Visitors": 241.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 7.0, "Total Spend": 2871.0, "Total Transactions": 258.0, "Total Customers": 157.0, "Median Spend per Transaction": 7.38, "Median Spend per Customer": 11.0 }, "geometry": { "type": "Point", "coordinates": [ -75.219439, 40.022764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pmb-y35", "Name": "Elixr Coffee", "Category": "Restaurants and Other Eating Places", "Address": "315 N 12th St", "LATITUDE": 39.958169, "LONGITUDE": -75.158307, "DATE_RANGE_START": 2024, "Total Visits": 307.0, "Total Visitors": 166.0, "POI_CBG": 421010376002.0, "Median Dwell Time": 18.0, "Total Spend": 10640.0, "Total Transactions": 1211.0, "Total Customers": 770.0, "Median Spend per Transaction": 7.17, "Median Spend per Customer": 8.67 }, "geometry": { "type": "Point", "coordinates": [ -75.158307, 39.958169 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-224@628-pgy-ks5", "Name": "T.J. Maxx", "Category": "Department Stores", "Address": "701 E Cathedral Rd", "LATITUDE": 40.064304, "LONGITUDE": -75.236768, "DATE_RANGE_START": 2024, "Total Visits": 571.0, "Total Visitors": 241.0, "POI_CBG": 421010384002.0, "Median Dwell Time": 37.0, "Total Spend": 13274.0, "Total Transactions": 316.0, "Total Customers": 249.0, "Median Spend per Transaction": 29.99, "Median Spend per Customer": 34.54 }, "geometry": { "type": "Point", "coordinates": [ -75.236768, 40.064304 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm4-zfz", "Name": "Pep Boys", "Category": "Automotive Parts, Accessories, and Tire Stores", "Address": "1201 S Broad St", "LATITUDE": 39.935385, "LONGITUDE": -75.166759, "DATE_RANGE_START": 2024, "Total Visits": 213.0, "Total Visitors": 163.0, "POI_CBG": 421010023002.0, "Median Dwell Time": 143.0, "Total Spend": 2026.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 87.0, "Median Spend per Customer": 87.0 }, "geometry": { "type": "Point", "coordinates": [ -75.166759, 39.935385 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pj6-bx5", "Name": "Hong Kong Supermarket", "Category": "Grocery Stores", "Address": "571 Adams Ave Ste 4", "LATITUDE": 40.037272, "LONGITUDE": -75.107829, "DATE_RANGE_START": 2024, "Total Visits": 641.0, "Total Visitors": 473.0, "POI_CBG": 421010291001.0, "Median Dwell Time": 13.0, "Total Spend": 3622.0, "Total Transactions": 57.0, "Total Customers": 43.0, "Median Spend per Transaction": 51.0, "Median Spend per Customer": 54.23 }, "geometry": { "type": "Point", "coordinates": [ -75.107829, 40.037272 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22q-222@628-phy-ks5", "Name": "Ribs R' Us", "Category": "Restaurants and Other Eating Places", "Address": "4912 N 5th St", "LATITUDE": 40.026224, "LONGITUDE": -75.133, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 120.0, "POI_CBG": 421010285001.0, "Median Dwell Time": 5.0, "Total Spend": 1037.0, "Total Transactions": 21.0, "Total Customers": 17.0, "Median Spend per Transaction": 46.97, "Median Spend per Customer": 48.58 }, "geometry": { "type": "Point", "coordinates": [ -75.133, 40.026224 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22n-223@63s-dw2-26k", "Name": "Walgreens", "Category": "Health and Personal Care Stores", "Address": "300 N 63rd St", "LATITUDE": 39.967678, "LONGITUDE": -75.246391, "DATE_RANGE_START": 2024, "Total Visits": 588.0, "Total Visitors": 478.0, "POI_CBG": 421010096001.0, "Median Dwell Time": 5.0, "Total Spend": 1993.0, "Total Transactions": 115.0, "Total Customers": 78.0, "Median Spend per Transaction": 10.3, "Median Spend per Customer": 13.48 }, "geometry": { "type": "Point", "coordinates": [ -75.246391, 39.967678 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22h-222@63s-dvz-26k", "Name": "University City Beverage", "Category": "Beer, Wine, and Liquor Stores", "Address": "4300 Walnut St", "LATITUDE": 39.954688, "LONGITUDE": -75.208966, "DATE_RANGE_START": 2024, "Total Visits": 194.0, "Total Visitors": 153.0, "POI_CBG": 421010087013.0, "Median Dwell Time": 1.0, "Total Spend": 77.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 12.5, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.208966, 39.954688 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-pp2-qxq", "Name": "Subway", "Category": "Restaurants and Other Eating Places", "Address": "3400 Aramingo Ave", "LATITUDE": 39.992302, "LONGITUDE": -75.09981, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 3.0, "POI_CBG": 421010382002.0, "Median Dwell Time": 11.0, "Total Spend": 39778.0, "Total Transactions": 2370.0, "Total Customers": 1922.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 15.68 }, "geometry": { "type": "Point", "coordinates": [ -75.09981, 39.992302 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24k-222@628-pm4-s5z", "Name": "The Pizza Place", "Category": "Restaurants and Other Eating Places", "Address": "1648 S 7th St", "LATITUDE": 39.927861, "LONGITUDE": -75.157274, "DATE_RANGE_START": 2024, "Total Visits": 149.0, "Total Visitors": 112.0, "POI_CBG": 421010028011.0, "Median Dwell Time": 3.0, "Total Spend": 185.0, "Total Transactions": 12.0, "Total Customers": 11.0, "Median Spend per Transaction": 8.75, "Median Spend per Customer": 9.92 }, "geometry": { "type": "Point", "coordinates": [ -75.157274, 39.927861 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-222@628-pmf-syv", "Name": "Tacodelphia", "Category": "Restaurants and Other Eating Places", "Address": "427 S Broad St", "LATITUDE": 39.944722, "LONGITUDE": -75.164898, "DATE_RANGE_START": 2024, "Total Visits": 170.0, "Total Visitors": 170.0, "POI_CBG": 421010011011.0, "Median Dwell Time": 1.0, "Total Spend": 2570.0, "Total Transactions": 180.0, "Total Customers": 128.0, "Median Spend per Transaction": 13.0, "Median Spend per Customer": 16.01 }, "geometry": { "type": "Point", "coordinates": [ -75.164898, 39.944722 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-pm5-fpv", "Name": "McDonald's", "Category": "Restaurants and Other Eating Places", "Address": "120 W Oregon Ave", "LATITUDE": 39.913732, "LONGITUDE": -75.151158, "DATE_RANGE_START": 2024, "Total Visits": 390.0, "Total Visitors": 374.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 2.0, "Total Spend": 13550.0, "Total Transactions": 949.0, "Total Customers": 579.0, "Median Spend per Transaction": 11.74, "Median Spend per Customer": 14.54 }, "geometry": { "type": "Point", "coordinates": [ -75.151158, 39.913732 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm5-bzf", "Name": "Sally Beauty Supply", "Category": "Health and Personal Care Stores", "Address": "330 W Oregon Ave", "LATITUDE": 39.912755, "LONGITUDE": -75.154842, "DATE_RANGE_START": 2024, "Total Visits": 1.0, "Total Visitors": 1.0, "POI_CBG": 421010372004.0, "Median Dwell Time": 5.0, "Total Spend": 1918.0, "Total Transactions": 90.0, "Total Customers": 72.0, "Median Spend per Transaction": 14.34, "Median Spend per Customer": 21.59 }, "geometry": { "type": "Point", "coordinates": [ -75.154842, 39.912755 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pg8-kmk", "Name": "Green Eggs Cafe", "Category": "Restaurants and Other Eating Places", "Address": "2800 W Girard Ave", "LATITUDE": 39.974211, "LONGITUDE": -75.182048, "DATE_RANGE_START": 2024, "Total Visits": 165.0, "Total Visitors": 142.0, "POI_CBG": 421010137004.0, "Median Dwell Time": 33.0, "Total Spend": 859.0, "Total Transactions": 9.0, "Total Customers": 9.0, "Median Spend per Transaction": 81.75, "Median Spend per Customer": 81.75 }, "geometry": { "type": "Point", "coordinates": [ -75.182048, 39.974211 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pp4-qmk", "Name": "Cold Stone Creamery", "Category": "Restaurants and Other Eating Places", "Address": "2530 Aramingo Ave", "LATITUDE": 39.978055, "LONGITUDE": -75.11947, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 5.0, "POI_CBG": 421010160003.0, "Median Dwell Time": 4.0, "Total Spend": 5734.0, "Total Transactions": 288.0, "Total Customers": 250.0, "Median Spend per Transaction": 18.06, "Median Spend per Customer": 19.27 }, "geometry": { "type": "Point", "coordinates": [ -75.11947, 39.978055 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-p8d-kxq", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4334 Frankford Ave", "LATITUDE": 40.012036, "LONGITUDE": -75.088981, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 12.0, "Total Spend": 108.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 19.06, "Median Spend per Customer": 30.03 }, "geometry": { "type": "Point", "coordinates": [ -75.088981, 40.012036 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "227-222@628-pgb-yd9", "Name": "Garden's Pizza", "Category": "Restaurants and Other Eating Places", "Address": "1902 W Girard Ave", "LATITUDE": 39.972326, "LONGITUDE": -75.167646, "DATE_RANGE_START": 2024, "Total Visits": 120.0, "Total Visitors": 92.0, "POI_CBG": 421010139003.0, "Median Dwell Time": 2.0, "Total Spend": 106.0, "Total Transactions": 8.0, "Total Customers": 5.0, "Median Spend per Transaction": 12.35, "Median Spend per Customer": 15.72 }, "geometry": { "type": "Point", "coordinates": [ -75.167646, 39.972326 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22g-223@628-pfy-zfz", "Name": "The Rook Manayunk", "Category": "Restaurants and Other Eating Places", "Address": "4001 Cresson St", "LATITUDE": 40.021721, "LONGITUDE": -75.215726, "DATE_RANGE_START": 2024, "Total Visits": 349.0, "Total Visitors": 316.0, "POI_CBG": 421010210004.0, "Median Dwell Time": 24.0, "Total Spend": 16258.0, "Total Transactions": 245.0, "Total Customers": 207.0, "Median Spend per Transaction": 48.01, "Median Spend per Customer": 57.76 }, "geometry": { "type": "Point", "coordinates": [ -75.215726, 40.021721 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-p9k-tjv", "Name": "Wawa", "Category": "Grocery Stores", "Address": "12004 E Roosevelt Blvd", "LATITUDE": 40.106695, "LONGITUDE": -75.000071, "DATE_RANGE_START": 2024, "Total Visits": 2640.0, "Total Visitors": 2260.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 3.0, "Total Spend": 59046.0, "Total Transactions": 3315.0, "Total Customers": 1596.0, "Median Spend per Transaction": 10.85, "Median Spend per Customer": 18.9 }, "geometry": { "type": "Point", "coordinates": [ -75.000071, 40.106695 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@63s-dvw-sh5", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "5601 Vine St", "LATITUDE": 39.966704, "LONGITUDE": -75.232937, "DATE_RANGE_START": 2024, "Total Visits": 1887.0, "Total Visitors": 856.0, "POI_CBG": 421010102002.0, "Median Dwell Time": 40.0, "Total Spend": 705.0, "Total Transactions": 25.0, "Total Customers": 13.0, "Median Spend per Transaction": 28.08, "Median Spend per Customer": 44.3 }, "geometry": { "type": "Point", "coordinates": [ -75.232937, 39.966704 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pm3-vxq", "Name": "Stargazy", "Category": "Restaurants and Other Eating Places", "Address": "1838 E Passyunk Ave", "LATITUDE": 39.926764, "LONGITUDE": -75.167323, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 49.0, "POI_CBG": 421010029001.0, "Median Dwell Time": 202.0, "Total Spend": 720.0, "Total Transactions": 32.0, "Total Customers": 22.0, "Median Spend per Transaction": 17.24, "Median Spend per Customer": 25.92 }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.926764 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24z-222@628-pp5-sqz", "Name": "DiNapoli Pizza", "Category": "Restaurants and Other Eating Places", "Address": "3137 N Front St", "LATITUDE": 39.998081, "LONGITUDE": -75.129216, "DATE_RANGE_START": 2024, "Total Visits": 261.0, "Total Visitors": 151.0, "POI_CBG": 421010176021.0, "Median Dwell Time": 95.0, "Total Spend": 1302.0, "Total Transactions": 49.0, "Total Customers": 34.0, "Median Spend per Transaction": 25.08, "Median Spend per Customer": 29.89 }, "geometry": { "type": "Point", "coordinates": [ -75.129216, 39.998081 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "237-222@628-pfz-nyv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "5650 Ridge Ave", "LATITUDE": 40.026568, "LONGITUDE": -75.209601, "DATE_RANGE_START": 2024, "Total Visits": 236.0, "Total Visitors": 133.0, "POI_CBG": 421010210003.0, "Median Dwell Time": 50.0, "Total Spend": 155.0, "Total Transactions": 7.0, "Total Customers": 5.0, "Median Spend per Transaction": 31.51, "Median Spend per Customer": 31.55 }, "geometry": { "type": "Point", "coordinates": [ -75.209601, 40.026568 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-224@628-p83-xdv", "Name": "Mayura Indian Restaurant", "Category": "Restaurants and Other Eating Places", "Address": "9321 Krewstown Rd # 23", "LATITUDE": 40.086185, "LONGITUDE": -75.045124, "DATE_RANGE_START": 2024, "Total Visits": 1892.0, "Total Visitors": 902.0, "POI_CBG": 421010344001.0, "Median Dwell Time": 28.0, "Total Spend": 1102.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 418.61, "Median Spend per Customer": 418.61 }, "geometry": { "type": "Point", "coordinates": [ -75.045124, 40.086185 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-pm9-zs5", "Name": "Lady Love", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "510 South St", "LATITUDE": 39.941785, "LONGITUDE": -75.151232, "DATE_RANGE_START": 2024, "Total Visits": 186.0, "Total Visitors": 180.0, "POI_CBG": 421010016001.0, "Median Dwell Time": 1.0, "Total Spend": 449.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 37.79, "Median Spend per Customer": 37.79 }, "geometry": { "type": "Point", "coordinates": [ -75.151232, 39.941785 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-229@628-pmb-8y9", "Name": "Nike Factory Store", "Category": "Shoe Stores", "Address": "901 Market St Unit 1095", "LATITUDE": 39.951929, "LONGITUDE": -75.155338, "DATE_RANGE_START": 2024, "Total Visits": 652.0, "Total Visitors": 577.0, "POI_CBG": 421010005001.0, "Median Dwell Time": 7.0, "Total Spend": 28687.0, "Total Transactions": 391.0, "Total Customers": 353.0, "Median Spend per Transaction": 57.99, "Median Spend per Customer": 59.98 }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.951929 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@63s-dvy-ndv", "Name": "Boston Market", "Category": "Restaurants and Other Eating Places", "Address": "3901 Chestnut St", "LATITUDE": 39.955736, "LONGITUDE": -75.200256, "DATE_RANGE_START": 2024, "Total Visits": 136.0, "Total Visitors": 111.0, "POI_CBG": 421010088022.0, "Median Dwell Time": 4.0, "Total Spend": 743.0, "Total Transactions": 33.0, "Total Customers": 29.0, "Median Spend per Transaction": 14.57, "Median Spend per Customer": 16.19 }, "geometry": { "type": "Point", "coordinates": [ -75.200256, 39.955736 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-223@628-pm8-rp9", "Name": "GameStop", "Category": "Sporting Goods, Hobby, and Musical Instrument Stores", "Address": "2308 W Oregon Ave Ste A", "LATITUDE": 39.917828, "LONGITUDE": -75.186813, "DATE_RANGE_START": 2024, "Total Visits": 7.0, "Total Visitors": 7.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 1.0, "Total Spend": 1440.0, "Total Transactions": 9.0, "Total Customers": 7.0, "Median Spend per Transaction": 19.48, "Median Spend per Customer": 81.37 }, "geometry": { "type": "Point", "coordinates": [ -75.186813, 39.917828 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "248-222@628-p8d-kxq", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "4342 Frankford Ave", "LATITUDE": 40.012669, "LONGITUDE": -75.088277, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 1.0, "POI_CBG": 421010293002.0, "Median Dwell Time": 3.0, "Total Spend": 290.0, "Total Transactions": 14.0, "Total Customers": 11.0, "Median Spend per Transaction": 13.15, "Median Spend per Customer": 10.17 }, "geometry": { "type": "Point", "coordinates": [ -75.088277, 40.012669 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "24f-222@628-pp4-hyv", "Name": "US Gas", "Category": "Gasoline Stations", "Address": "2652 Frankford Ave", "LATITUDE": 39.986483, "LONGITUDE": -75.123176, "DATE_RANGE_START": 2024, "Total Visits": 317.0, "Total Visitors": 174.0, "POI_CBG": 421010161002.0, "Median Dwell Time": 2.0, "Total Spend": 2272.0, "Total Transactions": 86.0, "Total Customers": 54.0, "Median Spend per Transaction": 20.0, "Median Spend per Customer": 20.0 }, "geometry": { "type": "Point", "coordinates": [ -75.123176, 39.986483 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-225@628-p9k-45f", "Name": "Tandy Leather Factory", "Category": "Jewelry, Luggage, and Leather Goods Stores", "Address": "11000 Roosevelt Blvd Ste 300", "LATITUDE": 40.102565, "LONGITUDE": -75.008773, "DATE_RANGE_START": 2024, "Total Visits": 195.0, "Total Visitors": 174.0, "POI_CBG": 421010360001.0, "Median Dwell Time": 12.0, "Total Spend": 1016.0, "Total Transactions": 8.0, "Total Customers": 8.0, "Median Spend per Transaction": 52.56, "Median Spend per Customer": 52.56 }, "geometry": { "type": "Point", "coordinates": [ -75.008773, 40.102565 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22f-222@628-pmf-j7q", "Name": "Cleavers", "Category": "Restaurants and Other Eating Places", "Address": "108 S 18th St", "LATITUDE": 39.951401, "LONGITUDE": -75.170622, "DATE_RANGE_START": 2024, "Total Visits": 4.0, "Total Visitors": 4.0, "POI_CBG": 421010007002.0, "Median Dwell Time": 6.0, "Total Spend": 6362.0, "Total Transactions": 249.0, "Total Customers": 220.0, "Median Spend per Transaction": 21.49, "Median Spend per Customer": 23.59 }, "geometry": { "type": "Point", "coordinates": [ -75.170622, 39.951401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "22s-222@628-pfz-mhq", "Name": "Stanley's Hardware", "Category": "Building Material and Supplies Dealers", "Address": "5555 Ridge Ave", "LATITUDE": 40.025634, "LONGITUDE": -75.208228, "DATE_RANGE_START": 2024, "Total Visits": 228.0, "Total Visitors": 141.0, "POI_CBG": 421010211002.0, "Median Dwell Time": 6.0, "Total Spend": 11156.0, "Total Transactions": 282.0, "Total Customers": 180.0, "Median Spend per Transaction": 22.92, "Median Spend per Customer": 32.4 }, "geometry": { "type": "Point", "coordinates": [ -75.208228, 40.025634 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-p7x-bkz", "Name": "Dollar General", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "6587 Roosevelt Blvd", "LATITUDE": 40.035406, "LONGITUDE": -75.064931, "DATE_RANGE_START": 2024, "Total Visits": 3.0, "Total Visitors": 3.0, "POI_CBG": 421010317004.0, "Median Dwell Time": 18.0, "Total Spend": 497.0, "Total Transactions": 28.0, "Total Customers": 21.0, "Median Spend per Transaction": 12.85, "Median Spend per Customer": 17.03 }, "geometry": { "type": "Point", "coordinates": [ -75.064931, 40.035406 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-p9r-4y9", "Name": "Carter's", "Category": "Clothing Stores", "Address": "9171 Roosevelt Blvd Ste C", "LATITUDE": 40.07594, "LONGITUDE": -75.031523, "DATE_RANGE_START": 2024, "Total Visits": 8.0, "Total Visitors": 8.0, "POI_CBG": 421010346001.0, "Median Dwell Time": 11.0, "Total Spend": 1688.0, "Total Transactions": 32.0, "Total Customers": 32.0, "Median Spend per Transaction": 40.7, "Median Spend per Customer": 40.7 }, "geometry": { "type": "Point", "coordinates": [ -75.031523, 40.07594 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-223@63s-dvx-8n5", "Name": "ALDI", "Category": "Grocery Stores", "Address": "4421 Market St", "LATITUDE": 39.959397, "LONGITUDE": -75.213118, "DATE_RANGE_START": 2024, "Total Visits": 587.0, "Total Visitors": 411.0, "POI_CBG": 421010092001.0, "Median Dwell Time": 9.0, "Total Spend": 440.0, "Total Transactions": 4.0, "Total Customers": 4.0, "Median Spend per Transaction": 105.0, "Median Spend per Customer": 105.0 }, "geometry": { "type": "Point", "coordinates": [ -75.213118, 39.959397 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzy-225@628-phn-qmk", "Name": "7-Eleven", "Category": "Grocery Stores", "Address": "8261 Stenton Ave", "LATITUDE": 40.069208, "LONGITUDE": -75.181115, "DATE_RANGE_START": 2024, "Total Visits": 582.0, "Total Visitors": 433.0, "POI_CBG": 421010261002.0, "Median Dwell Time": 3.0, "Total Spend": 199.0, "Total Transactions": 5.0, "Total Customers": 4.0, "Median Spend per Transaction": 43.5, "Median Spend per Customer": 43.5 }, "geometry": { "type": "Point", "coordinates": [ -75.181115, 40.069208 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "234-222@63s-dw2-2x5", "Name": "Exxon Mobil", "Category": "Gasoline Stations", "Address": "234 N 63rd St", "LATITUDE": 39.967078, "LONGITUDE": -75.246264, "DATE_RANGE_START": 2024, "Total Visits": 1327.0, "Total Visitors": 832.0, "POI_CBG": 421010096005.0, "Median Dwell Time": 5.0, "Total Spend": 399.0, "Total Transactions": 39.0, "Total Customers": 12.0, "Median Spend per Transaction": 3.25, "Median Spend per Customer": 40.68 }, "geometry": { "type": "Point", "coordinates": [ -75.246264, 39.967078 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "223-222@628-pmb-m6k", "Name": "Grossman Furniture", "Category": "Furniture Stores", "Address": "206 Arch St", "LATITUDE": 39.951777, "LONGITUDE": -75.14359, "DATE_RANGE_START": 2024, "Total Visits": 258.0, "Total Visitors": 155.0, "POI_CBG": 421010001001.0, "Median Dwell Time": 2.0, "Total Spend": 5468.0, "Total Transactions": 3.0, "Total Customers": 3.0, "Median Spend per Transaction": 2076.54, "Median Spend per Customer": 2076.54 }, "geometry": { "type": "Point", "coordinates": [ -75.14359, 39.951777 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "225-226@628-p85-6kz", "Name": "IGA", "Category": "Grocery Stores", "Address": "8330 Bustleton Ave", "LATITUDE": 40.068401, "LONGITUDE": -75.051737, "DATE_RANGE_START": 2024, "Total Visits": 1871.0, "Total Visitors": 1193.0, "POI_CBG": 421010337012.0, "Median Dwell Time": 8.0, "Total Spend": 245.0, "Total Transactions": 11.0, "Total Customers": 11.0, "Median Spend per Transaction": 21.28, "Median Spend per Customer": 21.28 }, "geometry": { "type": "Point", "coordinates": [ -75.051737, 40.068401 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-223@628-phc-pjv", "Name": "Sunoco", "Category": "Gasoline Stations", "Address": "4900 City Ave", "LATITUDE": 40.000821, "LONGITUDE": -75.226777, "DATE_RANGE_START": 2024, "Total Visits": 1045.0, "Total Visitors": 778.0, "POI_CBG": 421010121002.0, "Median Dwell Time": 3.0, "Total Spend": 551.0, "Total Transactions": 9.0, "Total Customers": 8.0, "Median Spend per Transaction": 40.0, "Median Spend per Customer": 46.25 }, "geometry": { "type": "Point", "coordinates": [ -75.226777, 40.000821 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "239-222@628-p8j-bkz", "Name": "Family Dollar Stores", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "7310 Frankford Ave # 14", "LATITUDE": 40.037339, "LONGITUDE": -75.040377, "DATE_RANGE_START": 2024, "Total Visits": 380.0, "Total Visitors": 307.0, "POI_CBG": 421010331012.0, "Median Dwell Time": 6.0, "Total Spend": 683.0, "Total Transactions": 12.0, "Total Customers": 5.0, "Median Spend per Transaction": 18.18, "Median Spend per Customer": 130.99 }, "geometry": { "type": "Point", "coordinates": [ -75.040377, 40.037339 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pp4-rc5", "Name": "Wawa", "Category": "Grocery Stores", "Address": "2535 Aramingo Ave", "LATITUDE": 39.977182, "LONGITUDE": -75.118429, "DATE_RANGE_START": 2024, "Total Visits": 1859.0, "Total Visitors": 1372.0, "POI_CBG": 421010378001.0, "Median Dwell Time": 5.0, "Total Spend": 118256.0, "Total Transactions": 5926.0, "Total Customers": 2795.0, "Median Spend per Transaction": 14.25, "Median Spend per Customer": 25.0 }, "geometry": { "type": "Point", "coordinates": [ -75.118429, 39.977182 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "222-222@628-pj3-x89", "Name": "Kim's Seafood", "Category": "Specialty Food Stores", "Address": "1336 Windrim Ave", "LATITUDE": 40.029599, "LONGITUDE": -75.146407, "DATE_RANGE_START": 2024, "Total Visits": 68.0, "Total Visitors": 68.0, "POI_CBG": 421010283007.0, "Median Dwell Time": 3.0, "Total Spend": 372.0, "Total Transactions": 22.0, "Total Customers": 17.0, "Median Spend per Transaction": 15.0, "Median Spend per Customer": 15.0 }, "geometry": { "type": "Point", "coordinates": [ -75.146407, 40.029599 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "224-222@628-p7c-3dv", "Name": "Starbucks", "Category": "Restaurants and Other Eating Places", "Address": "9430 Academy Rd", "LATITUDE": 40.069184, "LONGITUDE": -75.008093, "DATE_RANGE_START": 2024, "Total Visits": 829.0, "Total Visitors": 639.0, "POI_CBG": 421010348022.0, "Median Dwell Time": 4.0, "Total Spend": 4288.0, "Total Transactions": 420.0, "Total Customers": 250.0, "Median Spend per Transaction": 8.32, "Median Spend per Customer": 11.15 }, "geometry": { "type": "Point", "coordinates": [ -75.008093, 40.069184 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "226-222@628-phy-xkf", "Name": "Rite Aid", "Category": "Health and Personal Care Stores", "Address": "5400 Rising Sun Ave", "LATITUDE": 40.03207, "LONGITUDE": -75.117665, "DATE_RANGE_START": 2024, "Total Visits": 390.0, "Total Visitors": 280.0, "POI_CBG": 421010290003.0, "Median Dwell Time": 4.0, "Total Spend": 1176.0, "Total Transactions": 63.0, "Total Customers": 51.0, "Median Spend per Transaction": 12.07, "Median Spend per Customer": 16.88 }, "geometry": { "type": "Point", "coordinates": [ -75.117665, 40.03207 ] } }, +{ "type": "Feature", "properties": { "PLACEKEY": "zzw-222@628-pm8-rc5", "Name": "BJ's Wholesale Club", "Category": "General Merchandise Stores, including Warehouse Clubs and Supercenters", "Address": "2300 W Oregon Ave", "LATITUDE": 39.916033, "LONGITUDE": -75.188037, "DATE_RANGE_START": 2024, "Total Visits": 2127.0, "Total Visitors": 1534.0, "POI_CBG": 421010038002.0, "Median Dwell Time": 13.0, "Total Spend": 6711.0, "Total Transactions": 74.0, "Total Customers": 57.0, "Median Spend per Transaction": 51.98, "Median Spend per Customer": 73.61 }, "geometry": { "type": "Point", "coordinates": [ -75.188037, 39.916033 ] } } +] +} diff --git a/assets/image/background-2.jpg b/assets/image/background-2.jpg new file mode 100644 index 0000000..815c1c3 Binary files /dev/null and b/assets/image/background-2.jpg differ diff --git a/assets/image/background-3.jpg b/assets/image/background-3.jpg new file mode 100644 index 0000000..711e5cf Binary files /dev/null and b/assets/image/background-3.jpg differ diff --git a/assets/image/background-4.jpg b/assets/image/background-4.jpg new file mode 100644 index 0000000..3571156 Binary files /dev/null and b/assets/image/background-4.jpg differ diff --git a/assets/image/background-5.jpg b/assets/image/background-5.jpg new file mode 100644 index 0000000..94b08c2 Binary files /dev/null and b/assets/image/background-5.jpg differ diff --git a/assets/image/background-6.jpg b/assets/image/background-6.jpg new file mode 100644 index 0000000..99490b2 Binary files /dev/null and b/assets/image/background-6.jpg differ diff --git a/assets/image/background.jpg b/assets/image/background.jpg new file mode 100644 index 0000000..4f239a6 Binary files /dev/null and b/assets/image/background.jpg differ diff --git a/assets/image/intro-background-1.png b/assets/image/intro-background-1.png new file mode 100644 index 0000000..9b3829f Binary files /dev/null and b/assets/image/intro-background-1.png differ diff --git a/assets/image/intro-background.jpg b/assets/image/intro-background.jpg new file mode 100644 index 0000000..b88e048 Binary files /dev/null and b/assets/image/intro-background.jpg differ diff --git a/assets/image/intro-background.png b/assets/image/intro-background.png new file mode 100644 index 0000000..7f9224a Binary files /dev/null and b/assets/image/intro-background.png differ diff --git a/assets/js/colors.js b/assets/js/colors.js new file mode 100644 index 0000000..d0c13c8 --- /dev/null +++ b/assets/js/colors.js @@ -0,0 +1,10 @@ +const columnColors = { + 'Total Spend': '#4e79a7', + 'Total Transactions': '#f28e20', + 'Total Customers': '#e15759', + 'Median Dwell Time': '#76b7b2', + 'Median Spend per Transaction': '#b07aa1', + 'Median Spend per Customer': '#9c755f' +}; + +export { columnColors }; \ No newline at end of file diff --git a/assets/js/dashboard.js b/assets/js/dashboard.js new file mode 100644 index 0000000..71926ed --- /dev/null +++ b/assets/js/dashboard.js @@ -0,0 +1,112 @@ +// assets/js/dashboard.js +import { Vismap } from './vismap.js'; +import { visualizeCharts } from './vischarts.js'; +import { initializeSearch } from './search.js'; +import { populateInfoTable } from './infoTable.js'; +import { setupEventListeners } from './events.js'; + +console.log('Initializing dashboard.'); + +// Initialize the map +const map = L.map('map', { scrollWheelZoom: true }).setView([39.9800, -75.1200], 11); + +// Add tile layer +L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token={accessToken}', { + maxZoom: 18, + id: 'mapbox/light-v11', + tileSize: 512, + zoomOffset: -1, + accessToken: 'pk.eyJ1IjoiZnJhbmtjaCIsImEiOiJjbG95aTZhbGQwM2ZwMmhxb3BvOGE3cjExIn0.9FCYx6xJ-wp8YEgk7VpG0Q' // Replace with your actual access token +}).addTo(map); + +// Define column and breaks +const columnName = 'Total Spend'; +const customBreaks = [500, 1000, 1500, 2000, 3000, 5000, 8000, 10000]; + +// Initialize Vismap +const vismapInstance = new Vismap(map, customBreaks, columnName); +vismapInstance.fetchData(document.getElementById('year-selector').value); + +// Define column display mapping +const columnDisplayMapping = { + 'Name': 'Name', + 'Address': 'Address', + 'Category': 'Category', + 'Total Spend': 'Total Spend', + 'Total Customers': 'Total Customers', + 'Total Transactions': 'Total Transactions', + 'Median Dwell Time': 'Median Dwell Time (min)', + 'Median Spend per Transaction': 'Median Spend per Transaction', + 'Median Spend per Customer': 'Median Spend per Customer' +}; + +// Setup event listeners and retrieve location names +const locationNamesRef = setupEventListeners( + map, + vismapInstance, + 'year-selector', + visualizeCharts, + (properties) => populateInfoTable(properties, columnDisplayMapping) +); + +// Initialize search functionality with a getter for locationNames +initializeSearch( + 'search-input', + 'suggestions-list', + () => locationNamesRef.current, // Getter function for current locationNames + (name) => { + highlightLocation(name); + } +); + +// Initialize charts with a default state (no data) +visualizeCharts(null); + +function highlightLocation(locationName) { + const layer = vismapInstance.findLayerByLocationName(locationName); + if (layer) { + // Pan and zoom to the selected location + const latlng = layer.getLatLng(); + const targetZoom = 16; + map.flyTo(latlng, targetZoom, { duration: 1 }); + + // After fly animation completes, trigger the click event + map.once('moveend', () => { + console.log(`Simulating click for location: "${locationName}"`); + layer.fire('click'); // Simulate a click event on the layer + }); + } else { + console.warn(`Layer for LOCATION_NAME "${locationName}" not found.`); + } +} + +document.addEventListener('DOMContentLoaded', () => { + const surveyButton = document.getElementById('survey-button'); + const popup = document.getElementById('survey-popup'); + const closePopupButton = document.getElementById('close-popup'); + const surveyForm = document.getElementById('survey-form'); + + // Open popup + surveyButton.addEventListener('click', () => { + popup.classList.remove('hidden'); + }); + + // Close popup + closePopupButton.addEventListener('click', () => { + popup.classList.add('hidden'); + }); + + // Handle survey submission + surveyForm.addEventListener('submit', (e) => { + e.preventDefault(); + const spend = document.getElementById('spend-input').value; + const stay = document.getElementById('stay-input').value; + + console.log(`Survey Data: Spend = $${spend}, Stay = ${stay} minutes`); + alert('Thank you for your feedback!'); + + // Reset form and close popup + surveyForm.reset(); + popup.classList.add('hidden'); + }); +}); diff --git a/assets/js/effect.js b/assets/js/effect.js new file mode 100644 index 0000000..9ae7b58 --- /dev/null +++ b/assets/js/effect.js @@ -0,0 +1,64 @@ +function applyTitleFadeEffect(sectionClass) { + const introSection = document.querySelector(sectionClass); + const introTextElements = introSection.querySelectorAll('h1, p'); + + const scrollPosition = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0; + + const sectionTop = introSection.getBoundingClientRect().top + scrollPosition; + const fadeOutStart = sectionTop; + const fadeOutEnd = sectionTop + introSection.offsetHeight; + + introTextElements.forEach(element => { + if (scrollPosition < fadeOutStart) { + element.style.opacity = 1; + } + else if (scrollPosition >= fadeOutStart && scrollPosition < fadeOutEnd) { + const progress = (scrollPosition - fadeOutStart) / (fadeOutEnd - fadeOutStart); + element.style.opacity = 1 - progress; + } + else { + element.style.opacity = 0; + } + }); +} + +window.addEventListener('scroll', () => applyTitleFadeEffect('.title')); + + +function applyTextFadeEffect(sectionClass, inOutPosition) { + const sections = document.querySelectorAll(sectionClass); + if (!sections) return; + + sections.forEach(section => { + const textElements = section.querySelectorAll('h1, h2, p'); + const viewportHeight = window.innerHeight; + const scrollPosition = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0; + + const sectionTop = section.getBoundingClientRect().top + scrollPosition; + const fadeInStart = sectionTop - viewportHeight * (1 - inOutPosition); + const fadeOutStart = sectionTop - viewportHeight * inOutPosition; + const fadeOutEnd = sectionTop + section.offsetHeight; + + textElements.forEach(element => { + if (scrollPosition < fadeInStart) { + element.style.opacity = 0; + } else if (scrollPosition >= fadeInStart && scrollPosition < fadeOutStart) { + const emergeProgress = (scrollPosition - fadeInStart) / (fadeOutStart - fadeInStart); + element.style.opacity = emergeProgress; + } else if (scrollPosition >= fadeOutStart && scrollPosition < fadeOutEnd) { + const fadeProgress = (scrollPosition - fadeOutStart) / (fadeOutEnd - fadeOutStart); + element.style.opacity = 1 - fadeProgress; + } else { + element.style.opacity = 0; + } + }); + }); +} + +window.addEventListener('scroll', () => applyTextFadeEffect('.intro', 1/8)); + +window.addEventListener('scroll', () => applyTextFadeEffect('.slide-section .slide', 1/8)); + +window.addEventListener('scroll', () => applyTextFadeEffect('.ending', 1/8)); + + diff --git a/assets/js/events.js b/assets/js/events.js new file mode 100644 index 0000000..a1593bd --- /dev/null +++ b/assets/js/events.js @@ -0,0 +1,32 @@ +export function setupEventListeners(map, vismapInstance, yearSelectorId, visualizeChartsCallback, populateInfoTableCallback) { + const yearSelector = document.getElementById(yearSelectorId); + + // Reference object to store locationNames + const locationNamesRef = { + current: [] + }; + + function updateLocationNames() { + locationNamesRef.current = vismapInstance.getLocationNames(); + console.log('Location Names updated:', locationNamesRef.current); + } + + // Listen for the 'dataLoaded' event to update LOCATION_NAMEs + map.on('dataLoaded', updateLocationNames); + + // Handle year selection changes + yearSelector.addEventListener('change', function () { + const selectedYear = this.value; + console.log(`Year selected: ${selectedYear}`); + vismapInstance.fetchData(selectedYear); + }); + + // Listen for feature selection events to populate the info table + map.on('featureSelected', function(event) { + const properties = event.properties; + populateInfoTableCallback(properties); + visualizeChartsCallback(properties ? properties['PLACEKEY'] : null); + }); + + return locationNamesRef; // Return reference for search initialization +} diff --git a/assets/js/infoTable.js b/assets/js/infoTable.js new file mode 100644 index 0000000..bdb2c5f --- /dev/null +++ b/assets/js/infoTable.js @@ -0,0 +1,27 @@ +export function populateInfoTable(properties, columnDisplayMapping) { + const infoTableBody = document.querySelector('#info-table tbody'); + infoTableBody.innerHTML = ''; + + if (!properties) { + const row = document.createElement('tr'); + const cell = document.createElement('td'); + cell.colSpan = 2; + cell.textContent = 'No location selected.'; + row.appendChild(cell); + infoTableBody.appendChild(row); + return; + } + + Object.keys(columnDisplayMapping).forEach(key => { + const row = document.createElement('tr'); + const propCell = document.createElement('td'); + const valueCell = document.createElement('td'); + + propCell.textContent = columnDisplayMapping[key]; + valueCell.textContent = properties[key] || 'N/A'; + + row.appendChild(propCell); + row.appendChild(valueCell); + infoTableBody.appendChild(row); + }); +} diff --git a/assets/js/search.js b/assets/js/search.js new file mode 100644 index 0000000..60e9a5c --- /dev/null +++ b/assets/js/search.js @@ -0,0 +1,45 @@ +export function initializeSearch(searchInputId, suggestionsListId, getLocationNames, highlightLocationCallback) { + const searchInput = document.getElementById(searchInputId); + const suggestionsList = document.getElementById(suggestionsListId); + + function handleSearchInput() { + const query = this.value.toLowerCase(); + suggestionsList.innerHTML = ''; // Clear previous suggestions + + if (query === '') { + return; + } + + // Retrieve the latest locationNames using the getter function + const locationNames = getLocationNames(); + + // Filter locationNames based on the query + const filtered = locationNames.filter(name => name.toLowerCase().includes(query)); + + // Limit to top 10 suggestions + filtered.slice(0, 10).forEach(name => { + const li = document.createElement('li'); + li.textContent = name; + li.addEventListener('click', () => { + searchInput.value = name; + suggestionsList.innerHTML = ''; + highlightLocationCallback(name); + }); + suggestionsList.appendChild(li); + }); + } + + /** + * Closes the suggestions list when clicking outside the search container. + */ + function closeSuggestions(e) { + if (!e.target.closest('.search-container')) { + suggestionsList.innerHTML = ''; + } + } + + searchInput.addEventListener('input', handleSearchInput); + document.addEventListener('click', closeSuggestions); + + +} diff --git a/assets/js/sidebar.js b/assets/js/sidebar.js new file mode 100644 index 0000000..c435e9a --- /dev/null +++ b/assets/js/sidebar.js @@ -0,0 +1,86 @@ +document.addEventListener('DOMContentLoaded', function () { + const sidebar = document.getElementById('sidebar'); + const toggleButton = document.createElement('button'); + toggleButton.innerText = '☰'; // Hamburger icon + toggleButton.id = 'sidebar-toggle'; + toggleButton.style.position = 'fixed'; + toggleButton.style.top = '15px'; + toggleButton.style.left = '15px'; + toggleButton.style.zIndex = '1100'; + document.body.appendChild(toggleButton); + + // Toggle sidebar visibility + toggleButton.addEventListener('click', function (e) { + e.stopPropagation(); // Prevent the event from bubbling up + sidebar.classList.toggle('open'); + }); + + // Close sidebar if clicking outside of it + document.addEventListener('click', function (e) { + if (!sidebar.contains(e.target) && e.target !== toggleButton) { + sidebar.classList.remove('open'); + } + }); + + const links = document.querySelectorAll('#sidebar nav ul li a'); + + // Function to reset underline to default state for inactive links + function resetUnderline(link) { + link.classList.remove('active-link'); + } + + // Add click event to update the active link when navigating + links.forEach(link => { + link.addEventListener('click', function (e) { + e.preventDefault(); // Prevent default link behavior for smooth scrolling + + // Get target section based on the href attribute + const targetId = link.getAttribute('href'); + const targetSection = document.querySelector(targetId); + + if (targetSection) { + // Smooth scrolling to the section + window.scrollTo({ + top: targetSection.offsetTop, + behavior: 'smooth' + }); + } + + // Temporarily keep the clicked link as active until scroll completes + link.classList.add('active-link'); + }); + }); + + // Add scroll event to update the active link based on the section in view + window.addEventListener('scroll', function () { + let currentSection = ''; + + // Loop through each section to determine which one is currently in view + links.forEach(link => { + const section = document.querySelector(link.getAttribute('href')); + const sectionTop = section.offsetTop; + const sectionHeight = section.offsetHeight; + const scrollPos = window.scrollY + window.innerHeight / 2; // Get the middle of the screen + + // Check if the current scroll position is within the section bounds + if (scrollPos >= sectionTop && scrollPos < sectionTop + sectionHeight) { + currentSection = link.getAttribute('href'); + } + }); + + // Remove active class and reset underline from all links + links.forEach(link => { + if (link.getAttribute('href') !== currentSection) { + resetUnderline(link); + } + }); + + // Set the active link for the current section + if (currentSection) { + const currentLink = document.querySelector(`a[href="${currentSection}"]`); + if (currentLink) { + currentLink.classList.add('active-link'); + } + } + }); +}); diff --git a/assets/js/vischarts.js b/assets/js/vischarts.js new file mode 100644 index 0000000..d5c6732 --- /dev/null +++ b/assets/js/vischarts.js @@ -0,0 +1,210 @@ +import * as d3 from 'https://cdn.skypack.dev/d3'; +import { columnColors } from './colors.js'; // Import shared column colors + +const years = [2019, 2020, 2021, 2022, 2023, 2024]; +const chartColnames = [ + 'Total Spend', + 'Total Transactions', + 'Total Customers', + 'Median Dwell Time', + 'Median Spend per Transaction', + 'Median Spend per Customer' +]; + +function fetchDataForCharts(placeKey) { + if (!placeKey) { + console.log('Clearing all charts.'); + clearAllCharts(); + return Promise.resolve(null); + } + + console.log(`Fetching data for PLACE_KEY: ${placeKey}`); + return Promise.all( + years.map(year => + fetch(`assets/data/data_${year}.geojson`) + .then(response => { + if (!response.ok) { + throw new Error(`HTTP error! Status: ${response.status}`); + } + return response.json(); + }) + .then(data => { + const filtered = data.features.filter(feature => feature.properties['PLACEKEY'] === placeKey); + console.log(`Year ${year}: Found ${filtered.length} features for PLACE_KEY ${placeKey}`); + return filtered; + }) + .catch(error => { + console.error(`Error fetching data for year ${year}:`, error); + return []; + }) + ) + ); +} + +function prepareChartData(filteredData) { + if (!filteredData) { + console.warn('No data provided to prepareChartData.'); + return {}; + } + const chartData = {}; + chartColnames.forEach(column => { + chartData[column] = years.map((year, index) => { + const yearData = filteredData[index]; + const value = yearData.length > 0 ? yearData[0].properties[column] : 0; + console.log(`Chart "${column}" - Year ${year}: ${value}`); + return value; + }); + }); + return chartData; +} + +function createColumnChart(container, title, data, labels) { + console.log(`Creating chart for "${title}"`); + + // Clear any existing SVG + d3.select(container).selectAll('svg').remove(); + + const margin = { top: 60, right: 30, bottom: 60, left: 60 }; + const containerWidth = container.clientWidth; + const containerHeight = container.clientHeight; + + const width = containerWidth - margin.left - margin.right; + const height = containerHeight - margin.top - margin.bottom; + + // Create SVG with responsive viewBox + const svg = d3.select(container) + .append('svg') + .attr('width', containerWidth) + .attr('height', containerHeight) + .attr('viewBox', `0 0 ${containerWidth} ${containerHeight}`) + .append('g') + .attr('transform', `translate(${margin.left},${margin.top})`); + + // X scale with increased padding for slimmer bars + const x = d3.scaleBand() + .domain(labels) + .range([0, width]) + .padding(0.5); // Increased padding for slimmer bars + + // Y scale + const yMax = d3.max(data, d => d) || 1; + const y = d3.scaleLinear() + .domain([0, yMax * 1.1]) // Add some padding on top + .range([height, 0]); + + // Add X axis + svg.append('g') + .attr('transform', `translate(0,${height})`) + .call(d3.axisBottom(x)) + .selectAll("text") + .style("font-size", "12px") + .style("font-family", "Lato"); + + // Add Y axis + svg.append('g') + .call(d3.axisLeft(y)) + .selectAll("text") + .style("font-size", "12px"); + + // Add gridlines + svg.append('g') + .attr('class', 'grid') + .call(d3.axisLeft(y) + .tickSize(-width) + .tickFormat('') + ) + .selectAll(".tick line") + .attr("stroke", "#e0e0e0"); + + // Add bars with shared color from columnColors + const barColor = columnColors[title] || 'steelblue'; + + // Tooltip div + const tooltip = d3.select("body") + .append("div") + .attr("class", "tooltip") + .style("opacity", 0); + + svg.selectAll(".bar") + .data(data) + .enter() + .append("rect") + .attr("class", "bar") + .attr("x", (d, i) => x(labels[i])) + .attr("y", height) // Start from bottom for transition + .attr("width", x.bandwidth()) + .attr("height", 0) // Initial height zero for transition + .attr("fill", barColor) + .on("mouseover", function(event, d) { + tooltip.transition() + .duration(200) + .style("opacity", .9); + tooltip.html(`${d}`) + .style("left", (event.pageX) + "px") + .style("top", (event.pageY - 28) + "px"); + d3.select(this).attr("fill", barColor).attr("fill-opacity", 0.7); + }) + .on("mouseout", function(event, d) { + tooltip.transition() + .duration(500) + .style("opacity", 0); + d3.select(this).attr("fill", barColor).attr("fill-opacity", 1); // Reset color on hover out + }) + .transition() // Animate bars + .duration(800) + .attr("y", d => y(d)) + .attr("height", d => height - y(d)); + + + // Add chart title + svg.append("text") + .attr("x", width / 2) + .attr("y", -20) + .attr("text-anchor", "middle") + .style("font-size", "16px") + .style("font-weight", "bold") + .text(title); + + // Add X axis label + svg.append("text") + .attr("x", width / 2) + .attr("y", height + 40) + .attr("text-anchor", "middle") + .style("font-size", "14px") + .text("Year"); +} + +function visualizeCharts(placeKey) { + console.log(`Visualizing charts for PLACE_KEY: ${placeKey}`); + fetchDataForCharts(placeKey).then(filteredData => { + if (!filteredData) { + console.warn('No filtered data received.'); + return; // If placeKey is null, charts are cleared + } + + const chartData = prepareChartData(filteredData); + console.log('Prepared chart data:', chartData); + + chartColnames.forEach((column, index) => { + const container = document.getElementById(`chart${index + 1}`); + if (container) { + createColumnChart(container, column, chartData[column], years); + } else { + console.warn(`Container for chart${index + 1} not found.`); + } + }); + }); +} + +function clearAllCharts() { + console.log('Clearing all charts.'); + chartColnames.forEach((_, index) => { + const container = document.getElementById(`chart${index + 1}`); + if (container) { + d3.select(container).selectAll('svg').remove(); + d3.select(container).selectAll('.tooltip').remove(); + } + }); +} + +export { visualizeCharts }; diff --git a/assets/js/vismap.js b/assets/js/vismap.js new file mode 100644 index 0000000..71f27f7 --- /dev/null +++ b/assets/js/vismap.js @@ -0,0 +1,259 @@ +import * as d3 from 'https://cdn.skypack.dev/d3'; +import { visualizeCharts } from './vischarts.js'; // Ensure this import exists + +class Vismap { + constructor(map, customBreaks, columnName) { + this.map = map; + this.currentLayer = null; + this.legendItems = []; + this.geojsonLayer = null; + this.customBreaks = customBreaks; + this.columnName = columnName; + this.geojsonData = null; + + // Mapping from normalized LOCATION_NAME to layer + this.locationNameToLayer = {}; + + // Listen for clicks inside the map to reset highlights + this.map.on('click', (e) => { + const originalEvent = e.originalEvent; + if (!originalEvent.target.closest('.leaflet-interactive') && this.currentLayer) { + console.log('Clicked inside map but outside features.'); + this.resetHighlight(); + visualizeCharts(null); // Clear charts when clicking outside + this.map.fire('featureSelected', { properties: null }); + } + }); + } + + fetchData(year) { + const path = `assets/data/data_${year}.geojson`; + console.log(`Fetching GeoJSON data from: ${path}`); + fetch(path) + .then(response => { + if (!response.ok) { + throw new Error(`HTTP error! Status: ${response.status}`); + } + return response.json(); + }) + .then(data => { + console.log(`Fetched data for year ${year}`); + this.geojsonData = data; + this.processData(data); + this.visualize(this.columnName); + this.map.fire('dataLoaded'); // Emit custom event after data is loaded + }) + .catch(error => { + console.error(`Error fetching data for year ${year}:`, error); + }); + } + + processData(data) { + const column = this.columnName; + data.features.forEach(feature => { + const value = feature.properties[column]; + if (value == null) return; + let categoryIndex = this.customBreaks.length - 1; + for (let i = 0; i < this.customBreaks.length; i++) { + if (value <= this.customBreaks[i]) { + categoryIndex = i; + break; + } + } + feature.properties.category = categoryIndex; + }); + } + + generateViridisPalette() { + return d3.scaleSequential(d3.interpolateViridis); + } + + resetHighlight() { + if (this.currentLayer) { + this.geojsonLayer.resetStyle(this.currentLayer); + console.log('Resetting highlight for:', this.currentLayer.feature.properties['Name']); + this.currentLayer = null; + } + + this.legendItems.forEach(item => item.classList.remove('highlight')); + } + + highlightFeature(layer, value) { + layer.setStyle({ + fillColor: 'red', // Set fill color to red + color: 'red', // Set stroke color to red + weight: 3 + }); + + const index = this.findLegendIndex(value); + if (index !== -1 && this.legendItems[index]) { + this.legendItems[index].classList.add('highlight'); + } + + // Bring the layer to front to ensure it's above other layers + if (!L.Browser.ie && !L.Browser.opera && !L.Browser.edge) { + layer.bringToFront(); + } + } + + findLegendIndex(value) { + for (let i = 0; i < this.customBreaks.length; i++) { + if (value <= this.customBreaks[i]) { + return i; + } + } + return this.customBreaks.length - 1; + } + + onEachFeature(feature, layer, colname) { + layer.on('click', () => { + console.log('Feature clicked:', feature.properties); + if (this.currentLayer !== layer) { + this.resetHighlight(); + } + + const value = feature.properties[colname]; + if (value == null) { + console.log('Value is null. Clearing charts.'); + visualizeCharts(null); // Clear charts if value is null + this.map.fire('featureSelected', { properties: null }); + return; + } + + this.highlightFeature(layer, value); + this.currentLayer = layer; + + const placeKey = feature.properties['PLACEKEY']; // Ensure this matches your data + console.log(`PLACE_KEY for clicked feature: ${placeKey}`); + visualizeCharts(placeKey); // Generate charts for the selected place + + const locationName = feature.properties['Name']; + if (locationName) { + const normalizedName = this.normalizeLocationName(locationName); + this.locationNameToLayer[normalizedName] = layer; + } + + // Emit a custom event with the feature's properties + this.map.fire('featureSelected', { properties: feature.properties }); + }); + + // Populate the mapping from normalized LOCATION_NAME to layer + const locationName = feature.properties['Name']; + if (locationName) { + const normalizedName = this.normalizeLocationName(locationName); + this.locationNameToLayer[normalizedName] = layer; + } + } + + generateLegend(colname) { + const existingLegend = document.querySelector('.legend-box'); + if (existingLegend) existingLegend.remove(); + + const legend = L.DomUtil.create('div', 'legend-box'); + const colorScale = this.generateViridisPalette(); + + this.legendItems = []; + + const title = document.createElement('div'); + title.className = 'legend-title'; + title.innerHTML = `${colname}`; + legend.appendChild(title); + + for (let i = 0; i < this.customBreaks.length; i++) { + const legendItem = document.createElement('div'); + legendItem.className = 'legend-item'; + + const colorBox = document.createElement('div'); + colorBox.className = 'legend-color'; + const normalizedValue = i / (this.customBreaks.length - 1); + colorBox.style.backgroundColor = colorScale(normalizedValue); + + let label; + if (i === 0) { + label = `≤ ${'$' + this.customBreaks[i]}`; + } else if (i < this.customBreaks.length - 1) { + label = `${'$' + this.customBreaks[i - 1]} - ${'$' + this.customBreaks[i]}`; + } else { + label = `> ${'$' + this.customBreaks[i - 1]}`; + } + + legendItem.appendChild(colorBox); + legendItem.appendChild(document.createTextNode(label)); + legend.appendChild(legendItem); + + this.legendItems.push(legendItem); + } + + this.map.getContainer().appendChild(legend); + } + + getFeatureStyle(feature) { + const colname = this.columnName; + const value = feature.properties[colname]; + + const colorScale = this.generateViridisPalette(); + let color = '#ccc'; + if (value != null) { + const index = this.findLegendIndex(value); + const normalizedValue = index / (this.customBreaks.length - 1); + color = colorScale(normalizedValue); + } + + return { + radius: 5, + fillColor: color, + color: '#fff', + weight: 1, + opacity: 1, + fillOpacity: 0.7 + }; + } + + visualize(colname) { + if (this.geojsonLayer) { + this.map.removeLayer(this.geojsonLayer); + } + + this.geojsonLayer = L.geoJson(this.geojsonData, { + pointToLayer: (feature, latlng) => L.circleMarker(latlng, this.getFeatureStyle(feature)), + onEachFeature: (feature, layer) => this.onEachFeature(feature, layer, colname) + }).addTo(this.map); + + this.generateLegend(colname); + } + + // Method to get all LOCATION_NAMEs + getLocationNames() { + return Object.keys(this.locationNameToLayer); + } + + // Method to find a layer by LOCATION_NAME (case-insensitive and trimmed) + findLayerByLocationName(locationName) { + console.log(`Finding layer for Name: "${locationName}"`); + const normalizedName = this.normalizeLocationName(locationName); + const layer = this.locationNameToLayer[normalizedName]; + if (layer) { + console.log(`Layer found for "${locationName}":`, layer); + return layer; + } + console.warn(`No layer found for Name: "${locationName}"`); + return null; + } + + // Helper method to normalize LOCATION_NAME (trim and lowercase) + normalizeLocationName(name) { + return name.trim().toLowerCase(); + } + + highlightByLocationName(locationName) { + const layer = this.findLayerByLocationName(locationName); + if (layer) { + console.log(`Highlighting layer for "${locationName}"`); + layer.fire('click'); // Simulate a click to trigger existing handlers + } else { + console.warn(`Cannot highlight. Layer for "${locationName}" not found.`); + } + } +} + +export { Vismap }; diff --git a/dashboard.html b/dashboard.html new file mode 100644 index 0000000..1321eab --- /dev/null +++ b/dashboard.html @@ -0,0 +1,85 @@ + + + + + + Dashboard + + + + + + +
+ + + + +
+ + +
+ + + +
+ + + + +
+ +
+
+
+ + +
+

Selected Location Details

+ + + + + + +
Search by name or click on map.
+
+
+ + +
+
+
+
+
+
+
+
+ + + + + diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..6d1eeba --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,9 @@ +import globals from "globals"; +import pluginJs from "@eslint/js"; + + +/** @type {import('eslint').Linter.Config[]} */ +export default [ + {languageOptions: { globals: globals.browser }}, + pluginJs.configs.recommended, +]; \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..a293587 --- /dev/null +++ b/index.html @@ -0,0 +1,57 @@ + + + + + + + Story + + + + + + + + + + + + +
+ + +
+

Retail Insights

+
+ + +
+

Introduction

+

Welcome to Retail Insights 2019-2024, an interactive platform that visualizes key trends in local economies and consumer behavior over the past five years. By mapping income changes, customer numbers, median spending, and store dwell time, our tool offers valuable insights for small business owners, urban planners, researchers, and consumers. What sets us apart is our community-driven approach—users can contribute their own spending habits and in-store experiences, enhancing the data and fostering collaboration. Retail Insights empowers businesses and policymakers with data-driven decisions while boosting consumer awareness and participation in shaping the local economy. Join us in creating a real-time picture of our community's economic health through your contributions.

+ + +
+ +
+ + + + + + \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 9f99c26..77a2cd9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,8 +9,10 @@ "version": "1.0.0", "license": "ISC", "devDependencies": { - "eslint": "^8.48.0", + "@eslint/js": "^9.17.0", + "eslint": "^8.57.1", "eslint-config-google": "^0.14.0", + "globals": "^15.13.0", "stylelint": "^15.10.3", "stylelint-config-standard": "^34.0.0" } @@ -174,13 +176,30 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/@eslint/js": { - "version": "8.57.1", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", - "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "version": "9.17.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.17.0.tgz", + "integrity": "sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==", "dev": true, + "license": "MIT", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@humanwhocodes/config-array": { @@ -517,10 +536,11 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -690,6 +710,7 @@ "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", "dev": true, + "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", @@ -780,6 +801,32 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/eslint/node_modules/@eslint/js": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/espree": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", @@ -1056,15 +1103,13 @@ } }, "node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "version": "15.13.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.13.0.tgz", + "integrity": "sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -1581,9 +1626,9 @@ "dev": true }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "dev": true, "funding": [ { @@ -1591,6 +1636,7 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -2431,6 +2477,7 @@ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -2609,12 +2656,23 @@ "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + } } }, "@eslint/js": { - "version": "8.57.1", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", - "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "version": "9.17.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.17.0.tgz", + "integrity": "sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==", "dev": true }, "@humanwhocodes/config-array": { @@ -2855,9 +2913,9 @@ } }, "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "requires": { "path-key": "^3.1.0", @@ -3015,6 +3073,23 @@ "optionator": "^0.9.3", "strip-ansi": "^6.0.1", "text-table": "^0.2.0" + }, + "dependencies": { + "@eslint/js": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "dev": true + }, + "globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + } } }, "eslint-config-google": { @@ -3256,13 +3331,10 @@ } }, "globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } + "version": "15.13.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.13.0.tgz", + "integrity": "sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==", + "dev": true }, "globby": { "version": "11.1.0", @@ -3649,9 +3721,9 @@ "dev": true }, "nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "dev": true }, "natural-compare": { diff --git a/package.json b/package.json index 72a1821..7a4ec35 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,10 @@ "author": "", "license": "ISC", "devDependencies": { - "eslint": "^8.48.0", + "@eslint/js": "^9.17.0", + "eslint": "^8.57.1", "eslint-config-google": "^0.14.0", + "globals": "^15.13.0", "stylelint": "^15.10.3", "stylelint-config-standard": "^34.0.0" }